diff --git a/pom.xml b/pom.xml
index a5bf495..764fa30 100644
--- a/pom.xml
+++ b/pom.xml
@@ -24,7 +24,7 @@
com.loohp
Limbo
Limbo
- 0.7.2-ALPHA
+ 0.7.4-ALPHA
Standalone Limbo Minecraft Server.
https://github.com/LOOHP/Limbo
@@ -136,7 +136,7 @@
- ${project.artifactId}-${project.version}-1.19.3
+ ${project.artifactId}-${project.version}-1.19.4
diff --git a/src/main/java/com/loohp/limbo/Limbo.java b/src/main/java/com/loohp/limbo/Limbo.java
index 1f4192f..8e56a83 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.3";
- public final int SERVER_IMPLEMENTATION_PROTOCOL = 761;
+ public final String SERVER_IMPLEMENTATION_VERSION = "1.19.4";
+ public final int SERVER_IMPLEMENTATION_PROTOCOL = 762;
public final String LIMBO_IMPLEMENTATION_VERSION;
private final AtomicBoolean isRunning;
diff --git a/src/main/java/com/loohp/limbo/network/Channel.java b/src/main/java/com/loohp/limbo/network/Channel.java
index d206374..7d7ccfd 100644
--- a/src/main/java/com/loohp/limbo/network/Channel.java
+++ b/src/main/java/com/loohp/limbo/network/Channel.java
@@ -99,10 +99,14 @@ public class Channel implements AutoCloseable {
}
packet = write.getPacket();
byte[] packetByte = packet.serializePacket();
+ writePacketRaw(packetByte);
+ return true;
+ }
+
+ public void writePacketRaw(byte[] packetByte) throws IOException {
DataTypeIO.writeVarInt(output, packetByte.length);
output.write(packetByte);
output.flush();
- return true;
}
@Override
diff --git a/src/main/java/com/loohp/limbo/network/ClientConnection.java b/src/main/java/com/loohp/limbo/network/ClientConnection.java
index 7895716..97f2329 100644
--- a/src/main/java/com/loohp/limbo/network/ClientConnection.java
+++ b/src/main/java/com/loohp/limbo/network/ClientConnection.java
@@ -404,12 +404,12 @@ public class ClientConnection extends Thread {
int state = 0;
for (int i = 0; i < data.length; i++) {
if (!properties.isReducedDebugInfo()) {
- Limbo.getInstance().getConsole().sendMessage(String.valueOf(i) + ": " + data[i]);
+ Limbo.getInstance().getConsole().sendMessage(i + ": " + data[i]);
}
switch (state) {
default:
- Limbo.getInstance().getConsole().sendMessage(String.valueOf(i) + ": ignore data: State: " + String.valueOf(state));
+ Limbo.getInstance().getConsole().sendMessage(i + ": ignore data: State: " + state);
break;
case 0:
host = data[i];
@@ -437,7 +437,7 @@ public class ClientConnection extends Thread {
}
}
if (state != 6) {
- throw new IllegalStateException("Illegal bungee state: " + String.valueOf(state));
+ throw new IllegalStateException("Illegal bungee state: " + state);
}
if (!properties.isReducedDebugInfo()) {
@@ -580,12 +580,12 @@ public class ClientConnection extends Thread {
ByteArrayOutputStream brandOut = new ByteArrayOutputStream();
DataTypeIO.writeString(new DataOutputStream(brandOut), properties.getServerModName(), StandardCharsets.UTF_8);
sendPluginMessage(BRAND_ANNOUNCE_CHANNEL, brandOut.toByteArray());
-
+
SkinResponse skinresponce = (isVelocityModern || isBungeeGuard || isBungeecord) && forwardedSkin != null ? forwardedSkin : MojangAPIUtils.getSkinFromMojangServer(player.getName());
PlayerSkinProperty skin = skinresponce != null ? new PlayerSkinProperty(skinresponce.getSkin(), skinresponce.getSignature()) : null;
PacketPlayOutPlayerInfo info = new PacketPlayOutPlayerInfo(EnumSet.of(PlayerInfoAction.ADD_PLAYER, PlayerInfoAction.UPDATE_GAME_MODE, PlayerInfoAction.UPDATE_LISTED, PlayerInfoAction.UPDATE_LATENCY, PlayerInfoAction.UPDATE_DISPLAY_NAME), player.getUniqueId(), new PlayerInfoData.PlayerInfoDataAddPlayer(player.getName(), true, Optional.ofNullable(skin), properties.getDefaultGamemode(), 0, false, Optional.empty()));
sendPacket(info);
-
+
Set flags = new HashSet<>();
if (properties.isAllowFlight()) {
flags.add(PlayerAbilityFlags.FLY);
@@ -598,21 +598,21 @@ 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);
}
-
+
PacketPlayOutSpawnPosition spawnPos = new PacketPlayOutSpawnPosition(BlockPosition.from(worldSpawn), worldSpawn.getPitch());
sendPacket(spawnPos);
-
- PacketPlayOutPositionAndLook positionLook = new PacketPlayOutPositionAndLook(worldSpawn.getX(), worldSpawn.getY(), worldSpawn.getZ(), worldSpawn.getYaw(), worldSpawn.getPitch(), 1, false);
+
+ PacketPlayOutPositionAndLook positionLook = new PacketPlayOutPositionAndLook(worldSpawn.getX(), worldSpawn.getY(), worldSpawn.getZ(), worldSpawn.getYaw(), worldSpawn.getPitch(), 1);
Limbo.getInstance().getUnsafe().a(player, new Location(world, worldSpawn.getX(), worldSpawn.getY(), worldSpawn.getZ(), worldSpawn.getYaw(), worldSpawn.getPitch()));
sendPacket(positionLook);
-
+
player.getDataWatcher().update();
PacketPlayOutEntityMetadata show = new PacketPlayOutEntityMetadata(player, false, Player.class.getDeclaredField("skinLayers"));
sendPacket(show);
@@ -667,14 +667,14 @@ public class ClientConnection extends Thread {
CheckedBiConsumer processMoveEvent = (event, originalTo) -> {
if (event.isCancelled()) {
Location returnTo = event.getFrom();
- PacketPlayOutPositionAndLook cancel = new PacketPlayOutPositionAndLook(returnTo.getX(), returnTo.getY(), returnTo.getZ(), returnTo.getYaw(), returnTo.getPitch(), 1, false);
+ PacketPlayOutPositionAndLook cancel = new PacketPlayOutPositionAndLook(returnTo.getX(), returnTo.getY(), returnTo.getZ(), returnTo.getYaw(), returnTo.getPitch(), 1);
sendPacket(cancel);
} else {
Location to = event.getTo();
Limbo.getInstance().getUnsafe().a(player, to);
// If an event handler used setTo, let's make sure we tell the player about it.
if (!originalTo.equals(to)) {
- PacketPlayOutPositionAndLook pos = new PacketPlayOutPositionAndLook(to.getX(), to.getY(), to.getZ(), to.getYaw(), to.getPitch(), 1, false);
+ PacketPlayOutPositionAndLook pos = new PacketPlayOutPositionAndLook(to.getX(), to.getY(), to.getZ(), to.getYaw(), to.getPitch(), 1);
sendPacket(pos);
}
PacketPlayOutUpdateViewPosition response = new PacketPlayOutUpdateViewPosition((int) player.getLocation().getX() >> 4, (int) player.getLocation().getZ() >> 4);
diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutPlayerAbilities.java b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutPlayerAbilities.java
index b78f4ae..85f065a 100644
--- a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutPlayerAbilities.java
+++ b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutPlayerAbilities.java
@@ -70,9 +70,9 @@ public class PacketPlayOutPlayerAbilities extends PacketOut {
DataOutputStream output = new DataOutputStream(buffer);
output.writeByte(Packet.getPlayOut().get(getClass()));
- int value = 0;
+ byte value = 0;
for (PlayerAbilityFlags flag : flags) {
- value = value | flag.getValue();
+ value = (byte) (value | flag.getValue());
}
output.writeByte(value);
diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutPositionAndLook.java b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutPositionAndLook.java
index 73dd04f..044c24c 100644
--- a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutPositionAndLook.java
+++ b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutPositionAndLook.java
@@ -55,9 +55,8 @@ public class PacketPlayOutPositionAndLook extends PacketOut {
private float pitch;
private Set flags;
private int teleportId;
- private boolean dismountVehicle;
- public PacketPlayOutPositionAndLook(double x, double y, double z, float yaw, float pitch, int teleportId, boolean dismountVehicle, PlayerTeleportFlags... flags) {
+ public PacketPlayOutPositionAndLook(double x, double y, double z, float yaw, float pitch, int teleportId, PlayerTeleportFlags... flags) {
this.x = x;
this.y = y;
this.z = z;
@@ -65,7 +64,6 @@ public class PacketPlayOutPositionAndLook extends PacketOut {
this.pitch = pitch;
this.teleportId = teleportId;
this.flags = new HashSet<>(Arrays.asList(flags));
- this.dismountVehicle = dismountVehicle;
}
public double getX() {
@@ -96,10 +94,6 @@ public class PacketPlayOutPositionAndLook extends PacketOut {
return teleportId;
}
- public boolean isDismountVehicle() {
- return dismountVehicle;
- }
-
@Override
public byte[] serializePacket() throws IOException {
ByteArrayOutputStream buffer = new ByteArrayOutputStream();
@@ -119,7 +113,6 @@ public class PacketPlayOutPositionAndLook extends PacketOut {
output.writeByte(flag);
DataTypeIO.writeVarInt(output, teleportId);
- output.writeBoolean(dismountVehicle);
return buffer.toByteArray();
}
diff --git a/src/main/java/com/loohp/limbo/player/Player.java b/src/main/java/com/loohp/limbo/player/Player.java
index 091ee8e..986dcce 100644
--- a/src/main/java/com/loohp/limbo/player/Player.java
+++ b/src/main/java/com/loohp/limbo/player/Player.java
@@ -251,7 +251,7 @@ public class Player extends LivingEntity implements CommandSender, InventoryHold
PacketPlayOutRespawn respawn = new PacketPlayOutRespawn(location.getWorld(), Limbo.getInstance().getDimensionRegistry().getCodec(), 0, gamemode, false, false, true);
clientConnection.sendPacket(respawn);
}
- PacketPlayOutPositionAndLook positionLook = new PacketPlayOutPositionAndLook(location.getX(), location.getY(), location.getZ(), location.getYaw(), location.getPitch(), 1, false);
+ PacketPlayOutPositionAndLook positionLook = new PacketPlayOutPositionAndLook(location.getX(), location.getY(), location.getZ(), location.getYaw(), location.getPitch(), 1);
clientConnection.sendPacket(positionLook);
} catch (IOException e) {}
}
diff --git a/src/main/java/com/loohp/limbo/utils/MojangAPIUtils.java b/src/main/java/com/loohp/limbo/utils/MojangAPIUtils.java
index fb0c0d7..d678c90 100644
--- a/src/main/java/com/loohp/limbo/utils/MojangAPIUtils.java
+++ b/src/main/java/com/loohp/limbo/utils/MojangAPIUtils.java
@@ -59,7 +59,7 @@ public class MojangAPIUtils {
connection.addRequestProperty("Cache-Control", "no-cache, no-store, must-revalidate");
connection.addRequestProperty("Pragma", "no-cache");
if (connection.getResponseCode() == HttpsURLConnection.HTTP_OK) {
- String reply = new BufferedReader(new InputStreamReader(connection.getInputStream())).readLine();
+ String reply = new BufferedReader(new InputStreamReader(connection.getInputStream())).lines().collect(Collectors.joining()).replace(" ", "");
if (!reply.contains("\"error\":\"BadRequestException\"")) {
String uuid = reply.split("\"id\":\"")[1].split("\"")[0];
return UUID.fromString(uuid.replaceFirst("([0-9a-fA-F]{8})([0-9a-fA-F]{4})([0-9a-fA-F]{4})([0-9a-fA-F]{4})([0-9a-fA-F]+)", "$1-$2-$3-$4-$5"));
diff --git a/src/main/resources/blocks.json b/src/main/resources/blocks.json
index bc902c1..50e033c 100644
--- a/src/main/resources/blocks.json
+++ b/src/main/resources/blocks.json
@@ -19,7 +19,7 @@
},
"states": [
{
- "id": 8475,
+ "id": 8703,
"properties": {
"face": "floor",
"facing": "north",
@@ -27,7 +27,7 @@
}
},
{
- "id": 8476,
+ "id": 8704,
"properties": {
"face": "floor",
"facing": "north",
@@ -35,7 +35,7 @@
}
},
{
- "id": 8477,
+ "id": 8705,
"properties": {
"face": "floor",
"facing": "south",
@@ -43,7 +43,7 @@
}
},
{
- "id": 8478,
+ "id": 8706,
"properties": {
"face": "floor",
"facing": "south",
@@ -51,7 +51,7 @@
}
},
{
- "id": 8479,
+ "id": 8707,
"properties": {
"face": "floor",
"facing": "west",
@@ -59,7 +59,7 @@
}
},
{
- "id": 8480,
+ "id": 8708,
"properties": {
"face": "floor",
"facing": "west",
@@ -67,7 +67,7 @@
}
},
{
- "id": 8481,
+ "id": 8709,
"properties": {
"face": "floor",
"facing": "east",
@@ -75,7 +75,7 @@
}
},
{
- "id": 8482,
+ "id": 8710,
"properties": {
"face": "floor",
"facing": "east",
@@ -83,7 +83,7 @@
}
},
{
- "id": 8483,
+ "id": 8711,
"properties": {
"face": "wall",
"facing": "north",
@@ -92,7 +92,7 @@
},
{
"default": true,
- "id": 8484,
+ "id": 8712,
"properties": {
"face": "wall",
"facing": "north",
@@ -100,7 +100,7 @@
}
},
{
- "id": 8485,
+ "id": 8713,
"properties": {
"face": "wall",
"facing": "south",
@@ -108,7 +108,7 @@
}
},
{
- "id": 8486,
+ "id": 8714,
"properties": {
"face": "wall",
"facing": "south",
@@ -116,7 +116,7 @@
}
},
{
- "id": 8487,
+ "id": 8715,
"properties": {
"face": "wall",
"facing": "west",
@@ -124,7 +124,7 @@
}
},
{
- "id": 8488,
+ "id": 8716,
"properties": {
"face": "wall",
"facing": "west",
@@ -132,7 +132,7 @@
}
},
{
- "id": 8489,
+ "id": 8717,
"properties": {
"face": "wall",
"facing": "east",
@@ -140,7 +140,7 @@
}
},
{
- "id": 8490,
+ "id": 8718,
"properties": {
"face": "wall",
"facing": "east",
@@ -148,7 +148,7 @@
}
},
{
- "id": 8491,
+ "id": 8719,
"properties": {
"face": "ceiling",
"facing": "north",
@@ -156,7 +156,7 @@
}
},
{
- "id": 8492,
+ "id": 8720,
"properties": {
"face": "ceiling",
"facing": "north",
@@ -164,7 +164,7 @@
}
},
{
- "id": 8493,
+ "id": 8721,
"properties": {
"face": "ceiling",
"facing": "south",
@@ -172,7 +172,7 @@
}
},
{
- "id": 8494,
+ "id": 8722,
"properties": {
"face": "ceiling",
"facing": "south",
@@ -180,7 +180,7 @@
}
},
{
- "id": 8495,
+ "id": 8723,
"properties": {
"face": "ceiling",
"facing": "west",
@@ -188,7 +188,7 @@
}
},
{
- "id": 8496,
+ "id": 8724,
"properties": {
"face": "ceiling",
"facing": "west",
@@ -196,7 +196,7 @@
}
},
{
- "id": 8497,
+ "id": 8725,
"properties": {
"face": "ceiling",
"facing": "east",
@@ -204,7 +204,7 @@
}
},
{
- "id": 8498,
+ "id": 8726,
"properties": {
"face": "ceiling",
"facing": "east",
@@ -240,7 +240,7 @@
},
"states": [
{
- "id": 11467,
+ "id": 11869,
"properties": {
"facing": "north",
"half": "upper",
@@ -250,7 +250,7 @@
}
},
{
- "id": 11468,
+ "id": 11870,
"properties": {
"facing": "north",
"half": "upper",
@@ -260,7 +260,7 @@
}
},
{
- "id": 11469,
+ "id": 11871,
"properties": {
"facing": "north",
"half": "upper",
@@ -270,7 +270,7 @@
}
},
{
- "id": 11470,
+ "id": 11872,
"properties": {
"facing": "north",
"half": "upper",
@@ -280,7 +280,7 @@
}
},
{
- "id": 11471,
+ "id": 11873,
"properties": {
"facing": "north",
"half": "upper",
@@ -290,7 +290,7 @@
}
},
{
- "id": 11472,
+ "id": 11874,
"properties": {
"facing": "north",
"half": "upper",
@@ -300,7 +300,7 @@
}
},
{
- "id": 11473,
+ "id": 11875,
"properties": {
"facing": "north",
"half": "upper",
@@ -310,7 +310,7 @@
}
},
{
- "id": 11474,
+ "id": 11876,
"properties": {
"facing": "north",
"half": "upper",
@@ -320,7 +320,7 @@
}
},
{
- "id": 11475,
+ "id": 11877,
"properties": {
"facing": "north",
"half": "lower",
@@ -330,7 +330,7 @@
}
},
{
- "id": 11476,
+ "id": 11878,
"properties": {
"facing": "north",
"half": "lower",
@@ -340,7 +340,7 @@
}
},
{
- "id": 11477,
+ "id": 11879,
"properties": {
"facing": "north",
"half": "lower",
@@ -351,7 +351,7 @@
},
{
"default": true,
- "id": 11478,
+ "id": 11880,
"properties": {
"facing": "north",
"half": "lower",
@@ -361,7 +361,7 @@
}
},
{
- "id": 11479,
+ "id": 11881,
"properties": {
"facing": "north",
"half": "lower",
@@ -371,7 +371,7 @@
}
},
{
- "id": 11480,
+ "id": 11882,
"properties": {
"facing": "north",
"half": "lower",
@@ -381,7 +381,7 @@
}
},
{
- "id": 11481,
+ "id": 11883,
"properties": {
"facing": "north",
"half": "lower",
@@ -391,7 +391,7 @@
}
},
{
- "id": 11482,
+ "id": 11884,
"properties": {
"facing": "north",
"half": "lower",
@@ -401,7 +401,7 @@
}
},
{
- "id": 11483,
+ "id": 11885,
"properties": {
"facing": "south",
"half": "upper",
@@ -411,7 +411,7 @@
}
},
{
- "id": 11484,
+ "id": 11886,
"properties": {
"facing": "south",
"half": "upper",
@@ -421,7 +421,7 @@
}
},
{
- "id": 11485,
+ "id": 11887,
"properties": {
"facing": "south",
"half": "upper",
@@ -431,7 +431,7 @@
}
},
{
- "id": 11486,
+ "id": 11888,
"properties": {
"facing": "south",
"half": "upper",
@@ -441,7 +441,7 @@
}
},
{
- "id": 11487,
+ "id": 11889,
"properties": {
"facing": "south",
"half": "upper",
@@ -451,7 +451,7 @@
}
},
{
- "id": 11488,
+ "id": 11890,
"properties": {
"facing": "south",
"half": "upper",
@@ -461,7 +461,7 @@
}
},
{
- "id": 11489,
+ "id": 11891,
"properties": {
"facing": "south",
"half": "upper",
@@ -471,7 +471,7 @@
}
},
{
- "id": 11490,
+ "id": 11892,
"properties": {
"facing": "south",
"half": "upper",
@@ -481,7 +481,7 @@
}
},
{
- "id": 11491,
+ "id": 11893,
"properties": {
"facing": "south",
"half": "lower",
@@ -491,7 +491,7 @@
}
},
{
- "id": 11492,
+ "id": 11894,
"properties": {
"facing": "south",
"half": "lower",
@@ -501,7 +501,7 @@
}
},
{
- "id": 11493,
+ "id": 11895,
"properties": {
"facing": "south",
"half": "lower",
@@ -511,7 +511,7 @@
}
},
{
- "id": 11494,
+ "id": 11896,
"properties": {
"facing": "south",
"half": "lower",
@@ -521,7 +521,7 @@
}
},
{
- "id": 11495,
+ "id": 11897,
"properties": {
"facing": "south",
"half": "lower",
@@ -531,7 +531,7 @@
}
},
{
- "id": 11496,
+ "id": 11898,
"properties": {
"facing": "south",
"half": "lower",
@@ -541,7 +541,7 @@
}
},
{
- "id": 11497,
+ "id": 11899,
"properties": {
"facing": "south",
"half": "lower",
@@ -551,7 +551,7 @@
}
},
{
- "id": 11498,
+ "id": 11900,
"properties": {
"facing": "south",
"half": "lower",
@@ -561,7 +561,7 @@
}
},
{
- "id": 11499,
+ "id": 11901,
"properties": {
"facing": "west",
"half": "upper",
@@ -571,7 +571,7 @@
}
},
{
- "id": 11500,
+ "id": 11902,
"properties": {
"facing": "west",
"half": "upper",
@@ -581,7 +581,7 @@
}
},
{
- "id": 11501,
+ "id": 11903,
"properties": {
"facing": "west",
"half": "upper",
@@ -591,7 +591,7 @@
}
},
{
- "id": 11502,
+ "id": 11904,
"properties": {
"facing": "west",
"half": "upper",
@@ -601,7 +601,7 @@
}
},
{
- "id": 11503,
+ "id": 11905,
"properties": {
"facing": "west",
"half": "upper",
@@ -611,7 +611,7 @@
}
},
{
- "id": 11504,
+ "id": 11906,
"properties": {
"facing": "west",
"half": "upper",
@@ -621,7 +621,7 @@
}
},
{
- "id": 11505,
+ "id": 11907,
"properties": {
"facing": "west",
"half": "upper",
@@ -631,7 +631,7 @@
}
},
{
- "id": 11506,
+ "id": 11908,
"properties": {
"facing": "west",
"half": "upper",
@@ -641,7 +641,7 @@
}
},
{
- "id": 11507,
+ "id": 11909,
"properties": {
"facing": "west",
"half": "lower",
@@ -651,7 +651,7 @@
}
},
{
- "id": 11508,
+ "id": 11910,
"properties": {
"facing": "west",
"half": "lower",
@@ -661,7 +661,7 @@
}
},
{
- "id": 11509,
+ "id": 11911,
"properties": {
"facing": "west",
"half": "lower",
@@ -671,7 +671,7 @@
}
},
{
- "id": 11510,
+ "id": 11912,
"properties": {
"facing": "west",
"half": "lower",
@@ -681,7 +681,7 @@
}
},
{
- "id": 11511,
+ "id": 11913,
"properties": {
"facing": "west",
"half": "lower",
@@ -691,7 +691,7 @@
}
},
{
- "id": 11512,
+ "id": 11914,
"properties": {
"facing": "west",
"half": "lower",
@@ -701,7 +701,7 @@
}
},
{
- "id": 11513,
+ "id": 11915,
"properties": {
"facing": "west",
"half": "lower",
@@ -711,7 +711,7 @@
}
},
{
- "id": 11514,
+ "id": 11916,
"properties": {
"facing": "west",
"half": "lower",
@@ -721,7 +721,7 @@
}
},
{
- "id": 11515,
+ "id": 11917,
"properties": {
"facing": "east",
"half": "upper",
@@ -731,7 +731,7 @@
}
},
{
- "id": 11516,
+ "id": 11918,
"properties": {
"facing": "east",
"half": "upper",
@@ -741,7 +741,7 @@
}
},
{
- "id": 11517,
+ "id": 11919,
"properties": {
"facing": "east",
"half": "upper",
@@ -751,7 +751,7 @@
}
},
{
- "id": 11518,
+ "id": 11920,
"properties": {
"facing": "east",
"half": "upper",
@@ -761,7 +761,7 @@
}
},
{
- "id": 11519,
+ "id": 11921,
"properties": {
"facing": "east",
"half": "upper",
@@ -771,7 +771,7 @@
}
},
{
- "id": 11520,
+ "id": 11922,
"properties": {
"facing": "east",
"half": "upper",
@@ -781,7 +781,7 @@
}
},
{
- "id": 11521,
+ "id": 11923,
"properties": {
"facing": "east",
"half": "upper",
@@ -791,7 +791,7 @@
}
},
{
- "id": 11522,
+ "id": 11924,
"properties": {
"facing": "east",
"half": "upper",
@@ -801,7 +801,7 @@
}
},
{
- "id": 11523,
+ "id": 11925,
"properties": {
"facing": "east",
"half": "lower",
@@ -811,7 +811,7 @@
}
},
{
- "id": 11524,
+ "id": 11926,
"properties": {
"facing": "east",
"half": "lower",
@@ -821,7 +821,7 @@
}
},
{
- "id": 11525,
+ "id": 11927,
"properties": {
"facing": "east",
"half": "lower",
@@ -831,7 +831,7 @@
}
},
{
- "id": 11526,
+ "id": 11928,
"properties": {
"facing": "east",
"half": "lower",
@@ -841,7 +841,7 @@
}
},
{
- "id": 11527,
+ "id": 11929,
"properties": {
"facing": "east",
"half": "lower",
@@ -851,7 +851,7 @@
}
},
{
- "id": 11528,
+ "id": 11930,
"properties": {
"facing": "east",
"half": "lower",
@@ -861,7 +861,7 @@
}
},
{
- "id": 11529,
+ "id": 11931,
"properties": {
"facing": "east",
"half": "lower",
@@ -871,7 +871,7 @@
}
},
{
- "id": 11530,
+ "id": 11932,
"properties": {
"facing": "east",
"half": "lower",
@@ -907,7 +907,7 @@
},
"states": [
{
- "id": 11147,
+ "id": 11517,
"properties": {
"east": "true",
"north": "true",
@@ -917,7 +917,7 @@
}
},
{
- "id": 11148,
+ "id": 11518,
"properties": {
"east": "true",
"north": "true",
@@ -927,7 +927,7 @@
}
},
{
- "id": 11149,
+ "id": 11519,
"properties": {
"east": "true",
"north": "true",
@@ -937,7 +937,7 @@
}
},
{
- "id": 11150,
+ "id": 11520,
"properties": {
"east": "true",
"north": "true",
@@ -947,7 +947,7 @@
}
},
{
- "id": 11151,
+ "id": 11521,
"properties": {
"east": "true",
"north": "true",
@@ -957,7 +957,7 @@
}
},
{
- "id": 11152,
+ "id": 11522,
"properties": {
"east": "true",
"north": "true",
@@ -967,7 +967,7 @@
}
},
{
- "id": 11153,
+ "id": 11523,
"properties": {
"east": "true",
"north": "true",
@@ -977,7 +977,7 @@
}
},
{
- "id": 11154,
+ "id": 11524,
"properties": {
"east": "true",
"north": "true",
@@ -987,7 +987,7 @@
}
},
{
- "id": 11155,
+ "id": 11525,
"properties": {
"east": "true",
"north": "false",
@@ -997,7 +997,7 @@
}
},
{
- "id": 11156,
+ "id": 11526,
"properties": {
"east": "true",
"north": "false",
@@ -1007,7 +1007,7 @@
}
},
{
- "id": 11157,
+ "id": 11527,
"properties": {
"east": "true",
"north": "false",
@@ -1017,7 +1017,7 @@
}
},
{
- "id": 11158,
+ "id": 11528,
"properties": {
"east": "true",
"north": "false",
@@ -1027,7 +1027,7 @@
}
},
{
- "id": 11159,
+ "id": 11529,
"properties": {
"east": "true",
"north": "false",
@@ -1037,7 +1037,7 @@
}
},
{
- "id": 11160,
+ "id": 11530,
"properties": {
"east": "true",
"north": "false",
@@ -1047,7 +1047,7 @@
}
},
{
- "id": 11161,
+ "id": 11531,
"properties": {
"east": "true",
"north": "false",
@@ -1057,7 +1057,7 @@
}
},
{
- "id": 11162,
+ "id": 11532,
"properties": {
"east": "true",
"north": "false",
@@ -1067,7 +1067,7 @@
}
},
{
- "id": 11163,
+ "id": 11533,
"properties": {
"east": "false",
"north": "true",
@@ -1077,7 +1077,7 @@
}
},
{
- "id": 11164,
+ "id": 11534,
"properties": {
"east": "false",
"north": "true",
@@ -1087,7 +1087,7 @@
}
},
{
- "id": 11165,
+ "id": 11535,
"properties": {
"east": "false",
"north": "true",
@@ -1097,7 +1097,7 @@
}
},
{
- "id": 11166,
+ "id": 11536,
"properties": {
"east": "false",
"north": "true",
@@ -1107,7 +1107,7 @@
}
},
{
- "id": 11167,
+ "id": 11537,
"properties": {
"east": "false",
"north": "true",
@@ -1117,7 +1117,7 @@
}
},
{
- "id": 11168,
+ "id": 11538,
"properties": {
"east": "false",
"north": "true",
@@ -1127,7 +1127,7 @@
}
},
{
- "id": 11169,
+ "id": 11539,
"properties": {
"east": "false",
"north": "true",
@@ -1137,7 +1137,7 @@
}
},
{
- "id": 11170,
+ "id": 11540,
"properties": {
"east": "false",
"north": "true",
@@ -1147,7 +1147,7 @@
}
},
{
- "id": 11171,
+ "id": 11541,
"properties": {
"east": "false",
"north": "false",
@@ -1157,7 +1157,7 @@
}
},
{
- "id": 11172,
+ "id": 11542,
"properties": {
"east": "false",
"north": "false",
@@ -1167,7 +1167,7 @@
}
},
{
- "id": 11173,
+ "id": 11543,
"properties": {
"east": "false",
"north": "false",
@@ -1177,7 +1177,7 @@
}
},
{
- "id": 11174,
+ "id": 11544,
"properties": {
"east": "false",
"north": "false",
@@ -1187,7 +1187,7 @@
}
},
{
- "id": 11175,
+ "id": 11545,
"properties": {
"east": "false",
"north": "false",
@@ -1197,7 +1197,7 @@
}
},
{
- "id": 11176,
+ "id": 11546,
"properties": {
"east": "false",
"north": "false",
@@ -1207,7 +1207,7 @@
}
},
{
- "id": 11177,
+ "id": 11547,
"properties": {
"east": "false",
"north": "false",
@@ -1218,7 +1218,7 @@
},
{
"default": true,
- "id": 11178,
+ "id": 11548,
"properties": {
"east": "false",
"north": "false",
@@ -1252,7 +1252,7 @@
},
"states": [
{
- "id": 10923,
+ "id": 11261,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -1261,7 +1261,7 @@
}
},
{
- "id": 10924,
+ "id": 11262,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -1270,7 +1270,7 @@
}
},
{
- "id": 10925,
+ "id": 11263,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -1279,7 +1279,7 @@
}
},
{
- "id": 10926,
+ "id": 11264,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -1288,7 +1288,7 @@
}
},
{
- "id": 10927,
+ "id": 11265,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -1297,7 +1297,7 @@
}
},
{
- "id": 10928,
+ "id": 11266,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -1306,7 +1306,7 @@
}
},
{
- "id": 10929,
+ "id": 11267,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -1316,7 +1316,7 @@
},
{
"default": true,
- "id": 10930,
+ "id": 11268,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -1325,7 +1325,7 @@
}
},
{
- "id": 10931,
+ "id": 11269,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -1334,7 +1334,7 @@
}
},
{
- "id": 10932,
+ "id": 11270,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -1343,7 +1343,7 @@
}
},
{
- "id": 10933,
+ "id": 11271,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -1352,7 +1352,7 @@
}
},
{
- "id": 10934,
+ "id": 11272,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -1361,7 +1361,7 @@
}
},
{
- "id": 10935,
+ "id": 11273,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -1370,7 +1370,7 @@
}
},
{
- "id": 10936,
+ "id": 11274,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -1379,7 +1379,7 @@
}
},
{
- "id": 10937,
+ "id": 11275,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -1388,7 +1388,7 @@
}
},
{
- "id": 10938,
+ "id": 11276,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -1397,7 +1397,7 @@
}
},
{
- "id": 10939,
+ "id": 11277,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -1406,7 +1406,7 @@
}
},
{
- "id": 10940,
+ "id": 11278,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -1415,7 +1415,7 @@
}
},
{
- "id": 10941,
+ "id": 11279,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -1424,7 +1424,7 @@
}
},
{
- "id": 10942,
+ "id": 11280,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -1433,7 +1433,7 @@
}
},
{
- "id": 10943,
+ "id": 11281,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -1442,7 +1442,7 @@
}
},
{
- "id": 10944,
+ "id": 11282,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -1451,7 +1451,7 @@
}
},
{
- "id": 10945,
+ "id": 11283,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -1460,7 +1460,7 @@
}
},
{
- "id": 10946,
+ "id": 11284,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -1469,7 +1469,7 @@
}
},
{
- "id": 10947,
+ "id": 11285,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -1478,7 +1478,7 @@
}
},
{
- "id": 10948,
+ "id": 11286,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -1487,7 +1487,7 @@
}
},
{
- "id": 10949,
+ "id": 11287,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -1496,7 +1496,7 @@
}
},
{
- "id": 10950,
+ "id": 11288,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -1505,7 +1505,7 @@
}
},
{
- "id": 10951,
+ "id": 11289,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -1514,7 +1514,7 @@
}
},
{
- "id": 10952,
+ "id": 11290,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -1523,7 +1523,7 @@
}
},
{
- "id": 10953,
+ "id": 11291,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -1532,7 +1532,7 @@
}
},
{
- "id": 10954,
+ "id": 11292,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -1573,7 +1573,7 @@
},
"states": [
{
- "id": 4934,
+ "id": 5022,
"properties": {
"attached": "true",
"rotation": "0",
@@ -1581,7 +1581,7 @@
}
},
{
- "id": 4935,
+ "id": 5023,
"properties": {
"attached": "true",
"rotation": "0",
@@ -1589,7 +1589,7 @@
}
},
{
- "id": 4936,
+ "id": 5024,
"properties": {
"attached": "true",
"rotation": "1",
@@ -1597,7 +1597,7 @@
}
},
{
- "id": 4937,
+ "id": 5025,
"properties": {
"attached": "true",
"rotation": "1",
@@ -1605,7 +1605,7 @@
}
},
{
- "id": 4938,
+ "id": 5026,
"properties": {
"attached": "true",
"rotation": "2",
@@ -1613,7 +1613,7 @@
}
},
{
- "id": 4939,
+ "id": 5027,
"properties": {
"attached": "true",
"rotation": "2",
@@ -1621,7 +1621,7 @@
}
},
{
- "id": 4940,
+ "id": 5028,
"properties": {
"attached": "true",
"rotation": "3",
@@ -1629,7 +1629,7 @@
}
},
{
- "id": 4941,
+ "id": 5029,
"properties": {
"attached": "true",
"rotation": "3",
@@ -1637,7 +1637,7 @@
}
},
{
- "id": 4942,
+ "id": 5030,
"properties": {
"attached": "true",
"rotation": "4",
@@ -1645,7 +1645,7 @@
}
},
{
- "id": 4943,
+ "id": 5031,
"properties": {
"attached": "true",
"rotation": "4",
@@ -1653,7 +1653,7 @@
}
},
{
- "id": 4944,
+ "id": 5032,
"properties": {
"attached": "true",
"rotation": "5",
@@ -1661,7 +1661,7 @@
}
},
{
- "id": 4945,
+ "id": 5033,
"properties": {
"attached": "true",
"rotation": "5",
@@ -1669,7 +1669,7 @@
}
},
{
- "id": 4946,
+ "id": 5034,
"properties": {
"attached": "true",
"rotation": "6",
@@ -1677,7 +1677,7 @@
}
},
{
- "id": 4947,
+ "id": 5035,
"properties": {
"attached": "true",
"rotation": "6",
@@ -1685,7 +1685,7 @@
}
},
{
- "id": 4948,
+ "id": 5036,
"properties": {
"attached": "true",
"rotation": "7",
@@ -1693,7 +1693,7 @@
}
},
{
- "id": 4949,
+ "id": 5037,
"properties": {
"attached": "true",
"rotation": "7",
@@ -1701,7 +1701,7 @@
}
},
{
- "id": 4950,
+ "id": 5038,
"properties": {
"attached": "true",
"rotation": "8",
@@ -1709,7 +1709,7 @@
}
},
{
- "id": 4951,
+ "id": 5039,
"properties": {
"attached": "true",
"rotation": "8",
@@ -1717,7 +1717,7 @@
}
},
{
- "id": 4952,
+ "id": 5040,
"properties": {
"attached": "true",
"rotation": "9",
@@ -1725,7 +1725,7 @@
}
},
{
- "id": 4953,
+ "id": 5041,
"properties": {
"attached": "true",
"rotation": "9",
@@ -1733,7 +1733,7 @@
}
},
{
- "id": 4954,
+ "id": 5042,
"properties": {
"attached": "true",
"rotation": "10",
@@ -1741,7 +1741,7 @@
}
},
{
- "id": 4955,
+ "id": 5043,
"properties": {
"attached": "true",
"rotation": "10",
@@ -1749,7 +1749,7 @@
}
},
{
- "id": 4956,
+ "id": 5044,
"properties": {
"attached": "true",
"rotation": "11",
@@ -1757,7 +1757,7 @@
}
},
{
- "id": 4957,
+ "id": 5045,
"properties": {
"attached": "true",
"rotation": "11",
@@ -1765,7 +1765,7 @@
}
},
{
- "id": 4958,
+ "id": 5046,
"properties": {
"attached": "true",
"rotation": "12",
@@ -1773,7 +1773,7 @@
}
},
{
- "id": 4959,
+ "id": 5047,
"properties": {
"attached": "true",
"rotation": "12",
@@ -1781,7 +1781,7 @@
}
},
{
- "id": 4960,
+ "id": 5048,
"properties": {
"attached": "true",
"rotation": "13",
@@ -1789,7 +1789,7 @@
}
},
{
- "id": 4961,
+ "id": 5049,
"properties": {
"attached": "true",
"rotation": "13",
@@ -1797,7 +1797,7 @@
}
},
{
- "id": 4962,
+ "id": 5050,
"properties": {
"attached": "true",
"rotation": "14",
@@ -1805,7 +1805,7 @@
}
},
{
- "id": 4963,
+ "id": 5051,
"properties": {
"attached": "true",
"rotation": "14",
@@ -1813,7 +1813,7 @@
}
},
{
- "id": 4964,
+ "id": 5052,
"properties": {
"attached": "true",
"rotation": "15",
@@ -1821,7 +1821,7 @@
}
},
{
- "id": 4965,
+ "id": 5053,
"properties": {
"attached": "true",
"rotation": "15",
@@ -1829,7 +1829,7 @@
}
},
{
- "id": 4966,
+ "id": 5054,
"properties": {
"attached": "false",
"rotation": "0",
@@ -1838,7 +1838,7 @@
},
{
"default": true,
- "id": 4967,
+ "id": 5055,
"properties": {
"attached": "false",
"rotation": "0",
@@ -1846,7 +1846,7 @@
}
},
{
- "id": 4968,
+ "id": 5056,
"properties": {
"attached": "false",
"rotation": "1",
@@ -1854,7 +1854,7 @@
}
},
{
- "id": 4969,
+ "id": 5057,
"properties": {
"attached": "false",
"rotation": "1",
@@ -1862,7 +1862,7 @@
}
},
{
- "id": 4970,
+ "id": 5058,
"properties": {
"attached": "false",
"rotation": "2",
@@ -1870,7 +1870,7 @@
}
},
{
- "id": 4971,
+ "id": 5059,
"properties": {
"attached": "false",
"rotation": "2",
@@ -1878,7 +1878,7 @@
}
},
{
- "id": 4972,
+ "id": 5060,
"properties": {
"attached": "false",
"rotation": "3",
@@ -1886,7 +1886,7 @@
}
},
{
- "id": 4973,
+ "id": 5061,
"properties": {
"attached": "false",
"rotation": "3",
@@ -1894,7 +1894,7 @@
}
},
{
- "id": 4974,
+ "id": 5062,
"properties": {
"attached": "false",
"rotation": "4",
@@ -1902,7 +1902,7 @@
}
},
{
- "id": 4975,
+ "id": 5063,
"properties": {
"attached": "false",
"rotation": "4",
@@ -1910,7 +1910,7 @@
}
},
{
- "id": 4976,
+ "id": 5064,
"properties": {
"attached": "false",
"rotation": "5",
@@ -1918,7 +1918,7 @@
}
},
{
- "id": 4977,
+ "id": 5065,
"properties": {
"attached": "false",
"rotation": "5",
@@ -1926,7 +1926,7 @@
}
},
{
- "id": 4978,
+ "id": 5066,
"properties": {
"attached": "false",
"rotation": "6",
@@ -1934,7 +1934,7 @@
}
},
{
- "id": 4979,
+ "id": 5067,
"properties": {
"attached": "false",
"rotation": "6",
@@ -1942,7 +1942,7 @@
}
},
{
- "id": 4980,
+ "id": 5068,
"properties": {
"attached": "false",
"rotation": "7",
@@ -1950,7 +1950,7 @@
}
},
{
- "id": 4981,
+ "id": 5069,
"properties": {
"attached": "false",
"rotation": "7",
@@ -1958,7 +1958,7 @@
}
},
{
- "id": 4982,
+ "id": 5070,
"properties": {
"attached": "false",
"rotation": "8",
@@ -1966,7 +1966,7 @@
}
},
{
- "id": 4983,
+ "id": 5071,
"properties": {
"attached": "false",
"rotation": "8",
@@ -1974,7 +1974,7 @@
}
},
{
- "id": 4984,
+ "id": 5072,
"properties": {
"attached": "false",
"rotation": "9",
@@ -1982,7 +1982,7 @@
}
},
{
- "id": 4985,
+ "id": 5073,
"properties": {
"attached": "false",
"rotation": "9",
@@ -1990,7 +1990,7 @@
}
},
{
- "id": 4986,
+ "id": 5074,
"properties": {
"attached": "false",
"rotation": "10",
@@ -1998,7 +1998,7 @@
}
},
{
- "id": 4987,
+ "id": 5075,
"properties": {
"attached": "false",
"rotation": "10",
@@ -2006,7 +2006,7 @@
}
},
{
- "id": 4988,
+ "id": 5076,
"properties": {
"attached": "false",
"rotation": "11",
@@ -2014,7 +2014,7 @@
}
},
{
- "id": 4989,
+ "id": 5077,
"properties": {
"attached": "false",
"rotation": "11",
@@ -2022,7 +2022,7 @@
}
},
{
- "id": 4990,
+ "id": 5078,
"properties": {
"attached": "false",
"rotation": "12",
@@ -2030,7 +2030,7 @@
}
},
{
- "id": 4991,
+ "id": 5079,
"properties": {
"attached": "false",
"rotation": "12",
@@ -2038,7 +2038,7 @@
}
},
{
- "id": 4992,
+ "id": 5080,
"properties": {
"attached": "false",
"rotation": "13",
@@ -2046,7 +2046,7 @@
}
},
{
- "id": 4993,
+ "id": 5081,
"properties": {
"attached": "false",
"rotation": "13",
@@ -2054,7 +2054,7 @@
}
},
{
- "id": 4994,
+ "id": 5082,
"properties": {
"attached": "false",
"rotation": "14",
@@ -2062,7 +2062,7 @@
}
},
{
- "id": 4995,
+ "id": 5083,
"properties": {
"attached": "false",
"rotation": "14",
@@ -2070,7 +2070,7 @@
}
},
{
- "id": 4996,
+ "id": 5084,
"properties": {
"attached": "false",
"rotation": "15",
@@ -2078,7 +2078,7 @@
}
},
{
- "id": 4997,
+ "id": 5085,
"properties": {
"attached": "false",
"rotation": "15",
@@ -2108,192 +2108,192 @@
]
},
"states": [
- {
- "id": 326,
- "properties": {
- "distance": "1",
- "persistent": "true",
- "waterlogged": "true"
- }
- },
- {
- "id": 327,
- "properties": {
- "distance": "1",
- "persistent": "true",
- "waterlogged": "false"
- }
- },
- {
- "id": 328,
- "properties": {
- "distance": "1",
- "persistent": "false",
- "waterlogged": "true"
- }
- },
- {
- "id": 329,
- "properties": {
- "distance": "1",
- "persistent": "false",
- "waterlogged": "false"
- }
- },
- {
- "id": 330,
- "properties": {
- "distance": "2",
- "persistent": "true",
- "waterlogged": "true"
- }
- },
- {
- "id": 331,
- "properties": {
- "distance": "2",
- "persistent": "true",
- "waterlogged": "false"
- }
- },
- {
- "id": 332,
- "properties": {
- "distance": "2",
- "persistent": "false",
- "waterlogged": "true"
- }
- },
- {
- "id": 333,
- "properties": {
- "distance": "2",
- "persistent": "false",
- "waterlogged": "false"
- }
- },
- {
- "id": 334,
- "properties": {
- "distance": "3",
- "persistent": "true",
- "waterlogged": "true"
- }
- },
- {
- "id": 335,
- "properties": {
- "distance": "3",
- "persistent": "true",
- "waterlogged": "false"
- }
- },
- {
- "id": 336,
- "properties": {
- "distance": "3",
- "persistent": "false",
- "waterlogged": "true"
- }
- },
- {
- "id": 337,
- "properties": {
- "distance": "3",
- "persistent": "false",
- "waterlogged": "false"
- }
- },
- {
- "id": 338,
- "properties": {
- "distance": "4",
- "persistent": "true",
- "waterlogged": "true"
- }
- },
- {
- "id": 339,
- "properties": {
- "distance": "4",
- "persistent": "true",
- "waterlogged": "false"
- }
- },
- {
- "id": 340,
- "properties": {
- "distance": "4",
- "persistent": "false",
- "waterlogged": "true"
- }
- },
- {
- "id": 341,
- "properties": {
- "distance": "4",
- "persistent": "false",
- "waterlogged": "false"
- }
- },
- {
- "id": 342,
- "properties": {
- "distance": "5",
- "persistent": "true",
- "waterlogged": "true"
- }
- },
- {
- "id": 343,
- "properties": {
- "distance": "5",
- "persistent": "true",
- "waterlogged": "false"
- }
- },
- {
- "id": 344,
- "properties": {
- "distance": "5",
- "persistent": "false",
- "waterlogged": "true"
- }
- },
{
"id": 345,
"properties": {
- "distance": "5",
- "persistent": "false",
- "waterlogged": "false"
+ "distance": "1",
+ "persistent": "true",
+ "waterlogged": "true"
}
},
{
"id": 346,
"properties": {
- "distance": "6",
+ "distance": "1",
"persistent": "true",
- "waterlogged": "true"
+ "waterlogged": "false"
}
},
{
"id": 347,
"properties": {
- "distance": "6",
- "persistent": "true",
- "waterlogged": "false"
+ "distance": "1",
+ "persistent": "false",
+ "waterlogged": "true"
}
},
{
"id": 348,
"properties": {
- "distance": "6",
+ "distance": "1",
"persistent": "false",
- "waterlogged": "true"
+ "waterlogged": "false"
}
},
{
"id": 349,
+ "properties": {
+ "distance": "2",
+ "persistent": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 350,
+ "properties": {
+ "distance": "2",
+ "persistent": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 351,
+ "properties": {
+ "distance": "2",
+ "persistent": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 352,
+ "properties": {
+ "distance": "2",
+ "persistent": "false",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 353,
+ "properties": {
+ "distance": "3",
+ "persistent": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 354,
+ "properties": {
+ "distance": "3",
+ "persistent": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 355,
+ "properties": {
+ "distance": "3",
+ "persistent": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 356,
+ "properties": {
+ "distance": "3",
+ "persistent": "false",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 357,
+ "properties": {
+ "distance": "4",
+ "persistent": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 358,
+ "properties": {
+ "distance": "4",
+ "persistent": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 359,
+ "properties": {
+ "distance": "4",
+ "persistent": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 360,
+ "properties": {
+ "distance": "4",
+ "persistent": "false",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 361,
+ "properties": {
+ "distance": "5",
+ "persistent": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 362,
+ "properties": {
+ "distance": "5",
+ "persistent": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 363,
+ "properties": {
+ "distance": "5",
+ "persistent": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 364,
+ "properties": {
+ "distance": "5",
+ "persistent": "false",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 365,
+ "properties": {
+ "distance": "6",
+ "persistent": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 366,
+ "properties": {
+ "distance": "6",
+ "persistent": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 367,
+ "properties": {
+ "distance": "6",
+ "persistent": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 368,
"properties": {
"distance": "6",
"persistent": "false",
@@ -2301,7 +2301,7 @@
}
},
{
- "id": 350,
+ "id": 369,
"properties": {
"distance": "7",
"persistent": "true",
@@ -2309,7 +2309,7 @@
}
},
{
- "id": 351,
+ "id": 370,
"properties": {
"distance": "7",
"persistent": "true",
@@ -2317,7 +2317,7 @@
}
},
{
- "id": 352,
+ "id": 371,
"properties": {
"distance": "7",
"persistent": "false",
@@ -2326,7 +2326,7 @@
},
{
"default": true,
- "id": 353,
+ "id": 372,
"properties": {
"distance": "7",
"persistent": "false",
@@ -2345,20 +2345,20 @@
},
"states": [
{
- "id": 131,
+ "id": 138,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 132,
+ "id": 139,
"properties": {
"axis": "y"
}
},
{
- "id": 133,
+ "id": 140,
"properties": {
"axis": "z"
}
@@ -2382,14 +2382,14 @@
},
"states": [
{
- "id": 5560,
+ "id": 5720,
"properties": {
"powered": "true"
}
},
{
"default": true,
- "id": 5561,
+ "id": 5721,
"properties": {
"powered": "false"
}
@@ -2406,13 +2406,13 @@
"states": [
{
"default": true,
- "id": 32,
+ "id": 33,
"properties": {
"stage": "0"
}
},
{
- "id": 33,
+ "id": 34,
"properties": {
"stage": "1"
}
@@ -2446,7 +2446,7 @@
},
"states": [
{
- "id": 4346,
+ "id": 4394,
"properties": {
"rotation": "0",
"waterlogged": "true"
@@ -2454,217 +2454,217 @@
},
{
"default": true,
- "id": 4347,
+ "id": 4395,
"properties": {
"rotation": "0",
"waterlogged": "false"
}
},
{
- "id": 4348,
+ "id": 4396,
"properties": {
"rotation": "1",
"waterlogged": "true"
}
},
{
- "id": 4349,
+ "id": 4397,
"properties": {
"rotation": "1",
"waterlogged": "false"
}
},
{
- "id": 4350,
+ "id": 4398,
"properties": {
"rotation": "2",
"waterlogged": "true"
}
},
{
- "id": 4351,
+ "id": 4399,
"properties": {
"rotation": "2",
"waterlogged": "false"
}
},
{
- "id": 4352,
+ "id": 4400,
"properties": {
"rotation": "3",
"waterlogged": "true"
}
},
{
- "id": 4353,
+ "id": 4401,
"properties": {
"rotation": "3",
"waterlogged": "false"
}
},
{
- "id": 4354,
+ "id": 4402,
"properties": {
"rotation": "4",
"waterlogged": "true"
}
},
{
- "id": 4355,
+ "id": 4403,
"properties": {
"rotation": "4",
"waterlogged": "false"
}
},
{
- "id": 4356,
+ "id": 4404,
"properties": {
"rotation": "5",
"waterlogged": "true"
}
},
{
- "id": 4357,
+ "id": 4405,
"properties": {
"rotation": "5",
"waterlogged": "false"
}
},
{
- "id": 4358,
+ "id": 4406,
"properties": {
"rotation": "6",
"waterlogged": "true"
}
},
{
- "id": 4359,
+ "id": 4407,
"properties": {
"rotation": "6",
"waterlogged": "false"
}
},
{
- "id": 4360,
+ "id": 4408,
"properties": {
"rotation": "7",
"waterlogged": "true"
}
},
{
- "id": 4361,
+ "id": 4409,
"properties": {
"rotation": "7",
"waterlogged": "false"
}
},
{
- "id": 4362,
+ "id": 4410,
"properties": {
"rotation": "8",
"waterlogged": "true"
}
},
{
- "id": 4363,
+ "id": 4411,
"properties": {
"rotation": "8",
"waterlogged": "false"
}
},
{
- "id": 4364,
+ "id": 4412,
"properties": {
"rotation": "9",
"waterlogged": "true"
}
},
{
- "id": 4365,
+ "id": 4413,
"properties": {
"rotation": "9",
"waterlogged": "false"
}
},
{
- "id": 4366,
+ "id": 4414,
"properties": {
"rotation": "10",
"waterlogged": "true"
}
},
{
- "id": 4367,
+ "id": 4415,
"properties": {
"rotation": "10",
"waterlogged": "false"
}
},
{
- "id": 4368,
+ "id": 4416,
"properties": {
"rotation": "11",
"waterlogged": "true"
}
},
{
- "id": 4369,
+ "id": 4417,
"properties": {
"rotation": "11",
"waterlogged": "false"
}
},
{
- "id": 4370,
+ "id": 4418,
"properties": {
"rotation": "12",
"waterlogged": "true"
}
},
{
- "id": 4371,
+ "id": 4419,
"properties": {
"rotation": "12",
"waterlogged": "false"
}
},
{
- "id": 4372,
+ "id": 4420,
"properties": {
"rotation": "13",
"waterlogged": "true"
}
},
{
- "id": 4373,
+ "id": 4421,
"properties": {
"rotation": "13",
"waterlogged": "false"
}
},
{
- "id": 4374,
+ "id": 4422,
"properties": {
"rotation": "14",
"waterlogged": "true"
}
},
{
- "id": 4375,
+ "id": 4423,
"properties": {
"rotation": "14",
"waterlogged": "false"
}
},
{
- "id": 4376,
+ "id": 4424,
"properties": {
"rotation": "15",
"waterlogged": "true"
}
},
{
- "id": 4377,
+ "id": 4425,
"properties": {
"rotation": "15",
"waterlogged": "false"
@@ -2686,21 +2686,21 @@
},
"states": [
{
- "id": 10709,
+ "id": 11041,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 10710,
+ "id": 11042,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 10711,
+ "id": 11043,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -2708,21 +2708,21 @@
},
{
"default": true,
- "id": 10712,
+ "id": 11044,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 10713,
+ "id": 11045,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 10714,
+ "id": 11046,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -2756,7 +2756,7 @@
},
"states": [
{
- "id": 9488,
+ "id": 9740,
"properties": {
"facing": "north",
"half": "top",
@@ -2765,7 +2765,7 @@
}
},
{
- "id": 9489,
+ "id": 9741,
"properties": {
"facing": "north",
"half": "top",
@@ -2774,7 +2774,7 @@
}
},
{
- "id": 9490,
+ "id": 9742,
"properties": {
"facing": "north",
"half": "top",
@@ -2783,7 +2783,7 @@
}
},
{
- "id": 9491,
+ "id": 9743,
"properties": {
"facing": "north",
"half": "top",
@@ -2792,7 +2792,7 @@
}
},
{
- "id": 9492,
+ "id": 9744,
"properties": {
"facing": "north",
"half": "top",
@@ -2801,7 +2801,7 @@
}
},
{
- "id": 9493,
+ "id": 9745,
"properties": {
"facing": "north",
"half": "top",
@@ -2810,7 +2810,7 @@
}
},
{
- "id": 9494,
+ "id": 9746,
"properties": {
"facing": "north",
"half": "top",
@@ -2819,7 +2819,7 @@
}
},
{
- "id": 9495,
+ "id": 9747,
"properties": {
"facing": "north",
"half": "top",
@@ -2828,7 +2828,7 @@
}
},
{
- "id": 9496,
+ "id": 9748,
"properties": {
"facing": "north",
"half": "top",
@@ -2837,7 +2837,7 @@
}
},
{
- "id": 9497,
+ "id": 9749,
"properties": {
"facing": "north",
"half": "top",
@@ -2846,7 +2846,7 @@
}
},
{
- "id": 9498,
+ "id": 9750,
"properties": {
"facing": "north",
"half": "bottom",
@@ -2856,7 +2856,7 @@
},
{
"default": true,
- "id": 9499,
+ "id": 9751,
"properties": {
"facing": "north",
"half": "bottom",
@@ -2865,7 +2865,7 @@
}
},
{
- "id": 9500,
+ "id": 9752,
"properties": {
"facing": "north",
"half": "bottom",
@@ -2874,7 +2874,7 @@
}
},
{
- "id": 9501,
+ "id": 9753,
"properties": {
"facing": "north",
"half": "bottom",
@@ -2883,7 +2883,7 @@
}
},
{
- "id": 9502,
+ "id": 9754,
"properties": {
"facing": "north",
"half": "bottom",
@@ -2892,7 +2892,7 @@
}
},
{
- "id": 9503,
+ "id": 9755,
"properties": {
"facing": "north",
"half": "bottom",
@@ -2901,7 +2901,7 @@
}
},
{
- "id": 9504,
+ "id": 9756,
"properties": {
"facing": "north",
"half": "bottom",
@@ -2910,7 +2910,7 @@
}
},
{
- "id": 9505,
+ "id": 9757,
"properties": {
"facing": "north",
"half": "bottom",
@@ -2919,7 +2919,7 @@
}
},
{
- "id": 9506,
+ "id": 9758,
"properties": {
"facing": "north",
"half": "bottom",
@@ -2928,7 +2928,7 @@
}
},
{
- "id": 9507,
+ "id": 9759,
"properties": {
"facing": "north",
"half": "bottom",
@@ -2937,7 +2937,7 @@
}
},
{
- "id": 9508,
+ "id": 9760,
"properties": {
"facing": "south",
"half": "top",
@@ -2946,7 +2946,7 @@
}
},
{
- "id": 9509,
+ "id": 9761,
"properties": {
"facing": "south",
"half": "top",
@@ -2955,7 +2955,7 @@
}
},
{
- "id": 9510,
+ "id": 9762,
"properties": {
"facing": "south",
"half": "top",
@@ -2964,7 +2964,7 @@
}
},
{
- "id": 9511,
+ "id": 9763,
"properties": {
"facing": "south",
"half": "top",
@@ -2973,7 +2973,7 @@
}
},
{
- "id": 9512,
+ "id": 9764,
"properties": {
"facing": "south",
"half": "top",
@@ -2982,7 +2982,7 @@
}
},
{
- "id": 9513,
+ "id": 9765,
"properties": {
"facing": "south",
"half": "top",
@@ -2991,7 +2991,7 @@
}
},
{
- "id": 9514,
+ "id": 9766,
"properties": {
"facing": "south",
"half": "top",
@@ -3000,7 +3000,7 @@
}
},
{
- "id": 9515,
+ "id": 9767,
"properties": {
"facing": "south",
"half": "top",
@@ -3009,7 +3009,7 @@
}
},
{
- "id": 9516,
+ "id": 9768,
"properties": {
"facing": "south",
"half": "top",
@@ -3018,7 +3018,7 @@
}
},
{
- "id": 9517,
+ "id": 9769,
"properties": {
"facing": "south",
"half": "top",
@@ -3027,7 +3027,7 @@
}
},
{
- "id": 9518,
+ "id": 9770,
"properties": {
"facing": "south",
"half": "bottom",
@@ -3036,7 +3036,7 @@
}
},
{
- "id": 9519,
+ "id": 9771,
"properties": {
"facing": "south",
"half": "bottom",
@@ -3045,7 +3045,7 @@
}
},
{
- "id": 9520,
+ "id": 9772,
"properties": {
"facing": "south",
"half": "bottom",
@@ -3054,7 +3054,7 @@
}
},
{
- "id": 9521,
+ "id": 9773,
"properties": {
"facing": "south",
"half": "bottom",
@@ -3063,7 +3063,7 @@
}
},
{
- "id": 9522,
+ "id": 9774,
"properties": {
"facing": "south",
"half": "bottom",
@@ -3072,7 +3072,7 @@
}
},
{
- "id": 9523,
+ "id": 9775,
"properties": {
"facing": "south",
"half": "bottom",
@@ -3081,7 +3081,7 @@
}
},
{
- "id": 9524,
+ "id": 9776,
"properties": {
"facing": "south",
"half": "bottom",
@@ -3090,7 +3090,7 @@
}
},
{
- "id": 9525,
+ "id": 9777,
"properties": {
"facing": "south",
"half": "bottom",
@@ -3099,7 +3099,7 @@
}
},
{
- "id": 9526,
+ "id": 9778,
"properties": {
"facing": "south",
"half": "bottom",
@@ -3108,7 +3108,7 @@
}
},
{
- "id": 9527,
+ "id": 9779,
"properties": {
"facing": "south",
"half": "bottom",
@@ -3117,7 +3117,7 @@
}
},
{
- "id": 9528,
+ "id": 9780,
"properties": {
"facing": "west",
"half": "top",
@@ -3126,7 +3126,7 @@
}
},
{
- "id": 9529,
+ "id": 9781,
"properties": {
"facing": "west",
"half": "top",
@@ -3135,7 +3135,7 @@
}
},
{
- "id": 9530,
+ "id": 9782,
"properties": {
"facing": "west",
"half": "top",
@@ -3144,7 +3144,7 @@
}
},
{
- "id": 9531,
+ "id": 9783,
"properties": {
"facing": "west",
"half": "top",
@@ -3153,7 +3153,7 @@
}
},
{
- "id": 9532,
+ "id": 9784,
"properties": {
"facing": "west",
"half": "top",
@@ -3162,7 +3162,7 @@
}
},
{
- "id": 9533,
+ "id": 9785,
"properties": {
"facing": "west",
"half": "top",
@@ -3171,7 +3171,7 @@
}
},
{
- "id": 9534,
+ "id": 9786,
"properties": {
"facing": "west",
"half": "top",
@@ -3180,7 +3180,7 @@
}
},
{
- "id": 9535,
+ "id": 9787,
"properties": {
"facing": "west",
"half": "top",
@@ -3189,7 +3189,7 @@
}
},
{
- "id": 9536,
+ "id": 9788,
"properties": {
"facing": "west",
"half": "top",
@@ -3198,7 +3198,7 @@
}
},
{
- "id": 9537,
+ "id": 9789,
"properties": {
"facing": "west",
"half": "top",
@@ -3207,7 +3207,7 @@
}
},
{
- "id": 9538,
+ "id": 9790,
"properties": {
"facing": "west",
"half": "bottom",
@@ -3216,7 +3216,7 @@
}
},
{
- "id": 9539,
+ "id": 9791,
"properties": {
"facing": "west",
"half": "bottom",
@@ -3225,7 +3225,7 @@
}
},
{
- "id": 9540,
+ "id": 9792,
"properties": {
"facing": "west",
"half": "bottom",
@@ -3234,7 +3234,7 @@
}
},
{
- "id": 9541,
+ "id": 9793,
"properties": {
"facing": "west",
"half": "bottom",
@@ -3243,7 +3243,7 @@
}
},
{
- "id": 9542,
+ "id": 9794,
"properties": {
"facing": "west",
"half": "bottom",
@@ -3252,7 +3252,7 @@
}
},
{
- "id": 9543,
+ "id": 9795,
"properties": {
"facing": "west",
"half": "bottom",
@@ -3261,7 +3261,7 @@
}
},
{
- "id": 9544,
+ "id": 9796,
"properties": {
"facing": "west",
"half": "bottom",
@@ -3270,7 +3270,7 @@
}
},
{
- "id": 9545,
+ "id": 9797,
"properties": {
"facing": "west",
"half": "bottom",
@@ -3279,7 +3279,7 @@
}
},
{
- "id": 9546,
+ "id": 9798,
"properties": {
"facing": "west",
"half": "bottom",
@@ -3288,7 +3288,7 @@
}
},
{
- "id": 9547,
+ "id": 9799,
"properties": {
"facing": "west",
"half": "bottom",
@@ -3297,7 +3297,7 @@
}
},
{
- "id": 9548,
+ "id": 9800,
"properties": {
"facing": "east",
"half": "top",
@@ -3306,7 +3306,7 @@
}
},
{
- "id": 9549,
+ "id": 9801,
"properties": {
"facing": "east",
"half": "top",
@@ -3315,7 +3315,7 @@
}
},
{
- "id": 9550,
+ "id": 9802,
"properties": {
"facing": "east",
"half": "top",
@@ -3324,7 +3324,7 @@
}
},
{
- "id": 9551,
+ "id": 9803,
"properties": {
"facing": "east",
"half": "top",
@@ -3333,7 +3333,7 @@
}
},
{
- "id": 9552,
+ "id": 9804,
"properties": {
"facing": "east",
"half": "top",
@@ -3342,7 +3342,7 @@
}
},
{
- "id": 9553,
+ "id": 9805,
"properties": {
"facing": "east",
"half": "top",
@@ -3351,7 +3351,7 @@
}
},
{
- "id": 9554,
+ "id": 9806,
"properties": {
"facing": "east",
"half": "top",
@@ -3360,7 +3360,7 @@
}
},
{
- "id": 9555,
+ "id": 9807,
"properties": {
"facing": "east",
"half": "top",
@@ -3369,7 +3369,7 @@
}
},
{
- "id": 9556,
+ "id": 9808,
"properties": {
"facing": "east",
"half": "top",
@@ -3378,7 +3378,7 @@
}
},
{
- "id": 9557,
+ "id": 9809,
"properties": {
"facing": "east",
"half": "top",
@@ -3387,7 +3387,7 @@
}
},
{
- "id": 9558,
+ "id": 9810,
"properties": {
"facing": "east",
"half": "bottom",
@@ -3396,7 +3396,7 @@
}
},
{
- "id": 9559,
+ "id": 9811,
"properties": {
"facing": "east",
"half": "bottom",
@@ -3405,7 +3405,7 @@
}
},
{
- "id": 9560,
+ "id": 9812,
"properties": {
"facing": "east",
"half": "bottom",
@@ -3414,7 +3414,7 @@
}
},
{
- "id": 9561,
+ "id": 9813,
"properties": {
"facing": "east",
"half": "bottom",
@@ -3423,7 +3423,7 @@
}
},
{
- "id": 9562,
+ "id": 9814,
"properties": {
"facing": "east",
"half": "bottom",
@@ -3432,7 +3432,7 @@
}
},
{
- "id": 9563,
+ "id": 9815,
"properties": {
"facing": "east",
"half": "bottom",
@@ -3441,7 +3441,7 @@
}
},
{
- "id": 9564,
+ "id": 9816,
"properties": {
"facing": "east",
"half": "bottom",
@@ -3450,7 +3450,7 @@
}
},
{
- "id": 9565,
+ "id": 9817,
"properties": {
"facing": "east",
"half": "bottom",
@@ -3459,7 +3459,7 @@
}
},
{
- "id": 9566,
+ "id": 9818,
"properties": {
"facing": "east",
"half": "bottom",
@@ -3468,7 +3468,7 @@
}
},
{
- "id": 9567,
+ "id": 9819,
"properties": {
"facing": "east",
"half": "bottom",
@@ -3505,7 +3505,7 @@
},
"states": [
{
- "id": 6052,
+ "id": 6214,
"properties": {
"facing": "north",
"half": "top",
@@ -3515,7 +3515,7 @@
}
},
{
- "id": 6053,
+ "id": 6215,
"properties": {
"facing": "north",
"half": "top",
@@ -3525,7 +3525,7 @@
}
},
{
- "id": 6054,
+ "id": 6216,
"properties": {
"facing": "north",
"half": "top",
@@ -3535,7 +3535,7 @@
}
},
{
- "id": 6055,
+ "id": 6217,
"properties": {
"facing": "north",
"half": "top",
@@ -3545,7 +3545,7 @@
}
},
{
- "id": 6056,
+ "id": 6218,
"properties": {
"facing": "north",
"half": "top",
@@ -3555,7 +3555,7 @@
}
},
{
- "id": 6057,
+ "id": 6219,
"properties": {
"facing": "north",
"half": "top",
@@ -3565,7 +3565,7 @@
}
},
{
- "id": 6058,
+ "id": 6220,
"properties": {
"facing": "north",
"half": "top",
@@ -3575,7 +3575,7 @@
}
},
{
- "id": 6059,
+ "id": 6221,
"properties": {
"facing": "north",
"half": "top",
@@ -3585,7 +3585,7 @@
}
},
{
- "id": 6060,
+ "id": 6222,
"properties": {
"facing": "north",
"half": "bottom",
@@ -3595,7 +3595,7 @@
}
},
{
- "id": 6061,
+ "id": 6223,
"properties": {
"facing": "north",
"half": "bottom",
@@ -3605,7 +3605,7 @@
}
},
{
- "id": 6062,
+ "id": 6224,
"properties": {
"facing": "north",
"half": "bottom",
@@ -3615,7 +3615,7 @@
}
},
{
- "id": 6063,
+ "id": 6225,
"properties": {
"facing": "north",
"half": "bottom",
@@ -3625,7 +3625,7 @@
}
},
{
- "id": 6064,
+ "id": 6226,
"properties": {
"facing": "north",
"half": "bottom",
@@ -3635,7 +3635,7 @@
}
},
{
- "id": 6065,
+ "id": 6227,
"properties": {
"facing": "north",
"half": "bottom",
@@ -3645,7 +3645,7 @@
}
},
{
- "id": 6066,
+ "id": 6228,
"properties": {
"facing": "north",
"half": "bottom",
@@ -3656,7 +3656,7 @@
},
{
"default": true,
- "id": 6067,
+ "id": 6229,
"properties": {
"facing": "north",
"half": "bottom",
@@ -3666,7 +3666,7 @@
}
},
{
- "id": 6068,
+ "id": 6230,
"properties": {
"facing": "south",
"half": "top",
@@ -3676,7 +3676,7 @@
}
},
{
- "id": 6069,
+ "id": 6231,
"properties": {
"facing": "south",
"half": "top",
@@ -3686,7 +3686,7 @@
}
},
{
- "id": 6070,
+ "id": 6232,
"properties": {
"facing": "south",
"half": "top",
@@ -3696,7 +3696,7 @@
}
},
{
- "id": 6071,
+ "id": 6233,
"properties": {
"facing": "south",
"half": "top",
@@ -3706,7 +3706,7 @@
}
},
{
- "id": 6072,
+ "id": 6234,
"properties": {
"facing": "south",
"half": "top",
@@ -3716,7 +3716,7 @@
}
},
{
- "id": 6073,
+ "id": 6235,
"properties": {
"facing": "south",
"half": "top",
@@ -3726,7 +3726,7 @@
}
},
{
- "id": 6074,
+ "id": 6236,
"properties": {
"facing": "south",
"half": "top",
@@ -3736,7 +3736,7 @@
}
},
{
- "id": 6075,
+ "id": 6237,
"properties": {
"facing": "south",
"half": "top",
@@ -3746,7 +3746,7 @@
}
},
{
- "id": 6076,
+ "id": 6238,
"properties": {
"facing": "south",
"half": "bottom",
@@ -3756,7 +3756,7 @@
}
},
{
- "id": 6077,
+ "id": 6239,
"properties": {
"facing": "south",
"half": "bottom",
@@ -3766,7 +3766,7 @@
}
},
{
- "id": 6078,
+ "id": 6240,
"properties": {
"facing": "south",
"half": "bottom",
@@ -3776,7 +3776,7 @@
}
},
{
- "id": 6079,
+ "id": 6241,
"properties": {
"facing": "south",
"half": "bottom",
@@ -3786,7 +3786,7 @@
}
},
{
- "id": 6080,
+ "id": 6242,
"properties": {
"facing": "south",
"half": "bottom",
@@ -3796,7 +3796,7 @@
}
},
{
- "id": 6081,
+ "id": 6243,
"properties": {
"facing": "south",
"half": "bottom",
@@ -3806,7 +3806,7 @@
}
},
{
- "id": 6082,
+ "id": 6244,
"properties": {
"facing": "south",
"half": "bottom",
@@ -3816,7 +3816,7 @@
}
},
{
- "id": 6083,
+ "id": 6245,
"properties": {
"facing": "south",
"half": "bottom",
@@ -3826,7 +3826,7 @@
}
},
{
- "id": 6084,
+ "id": 6246,
"properties": {
"facing": "west",
"half": "top",
@@ -3836,7 +3836,7 @@
}
},
{
- "id": 6085,
+ "id": 6247,
"properties": {
"facing": "west",
"half": "top",
@@ -3846,7 +3846,7 @@
}
},
{
- "id": 6086,
+ "id": 6248,
"properties": {
"facing": "west",
"half": "top",
@@ -3856,7 +3856,7 @@
}
},
{
- "id": 6087,
+ "id": 6249,
"properties": {
"facing": "west",
"half": "top",
@@ -3866,7 +3866,7 @@
}
},
{
- "id": 6088,
+ "id": 6250,
"properties": {
"facing": "west",
"half": "top",
@@ -3876,7 +3876,7 @@
}
},
{
- "id": 6089,
+ "id": 6251,
"properties": {
"facing": "west",
"half": "top",
@@ -3886,7 +3886,7 @@
}
},
{
- "id": 6090,
+ "id": 6252,
"properties": {
"facing": "west",
"half": "top",
@@ -3896,7 +3896,7 @@
}
},
{
- "id": 6091,
+ "id": 6253,
"properties": {
"facing": "west",
"half": "top",
@@ -3906,7 +3906,7 @@
}
},
{
- "id": 6092,
+ "id": 6254,
"properties": {
"facing": "west",
"half": "bottom",
@@ -3916,7 +3916,7 @@
}
},
{
- "id": 6093,
+ "id": 6255,
"properties": {
"facing": "west",
"half": "bottom",
@@ -3926,7 +3926,7 @@
}
},
{
- "id": 6094,
+ "id": 6256,
"properties": {
"facing": "west",
"half": "bottom",
@@ -3936,7 +3936,7 @@
}
},
{
- "id": 6095,
+ "id": 6257,
"properties": {
"facing": "west",
"half": "bottom",
@@ -3946,7 +3946,7 @@
}
},
{
- "id": 6096,
+ "id": 6258,
"properties": {
"facing": "west",
"half": "bottom",
@@ -3956,7 +3956,7 @@
}
},
{
- "id": 6097,
+ "id": 6259,
"properties": {
"facing": "west",
"half": "bottom",
@@ -3966,7 +3966,7 @@
}
},
{
- "id": 6098,
+ "id": 6260,
"properties": {
"facing": "west",
"half": "bottom",
@@ -3976,7 +3976,7 @@
}
},
{
- "id": 6099,
+ "id": 6261,
"properties": {
"facing": "west",
"half": "bottom",
@@ -3986,7 +3986,7 @@
}
},
{
- "id": 6100,
+ "id": 6262,
"properties": {
"facing": "east",
"half": "top",
@@ -3996,7 +3996,7 @@
}
},
{
- "id": 6101,
+ "id": 6263,
"properties": {
"facing": "east",
"half": "top",
@@ -4006,7 +4006,7 @@
}
},
{
- "id": 6102,
+ "id": 6264,
"properties": {
"facing": "east",
"half": "top",
@@ -4016,7 +4016,7 @@
}
},
{
- "id": 6103,
+ "id": 6265,
"properties": {
"facing": "east",
"half": "top",
@@ -4026,7 +4026,7 @@
}
},
{
- "id": 6104,
+ "id": 6266,
"properties": {
"facing": "east",
"half": "top",
@@ -4036,7 +4036,7 @@
}
},
{
- "id": 6105,
+ "id": 6267,
"properties": {
"facing": "east",
"half": "top",
@@ -4046,7 +4046,7 @@
}
},
{
- "id": 6106,
+ "id": 6268,
"properties": {
"facing": "east",
"half": "top",
@@ -4056,7 +4056,7 @@
}
},
{
- "id": 6107,
+ "id": 6269,
"properties": {
"facing": "east",
"half": "top",
@@ -4066,7 +4066,7 @@
}
},
{
- "id": 6108,
+ "id": 6270,
"properties": {
"facing": "east",
"half": "bottom",
@@ -4076,7 +4076,7 @@
}
},
{
- "id": 6109,
+ "id": 6271,
"properties": {
"facing": "east",
"half": "bottom",
@@ -4086,7 +4086,7 @@
}
},
{
- "id": 6110,
+ "id": 6272,
"properties": {
"facing": "east",
"half": "bottom",
@@ -4096,7 +4096,7 @@
}
},
{
- "id": 6111,
+ "id": 6273,
"properties": {
"facing": "east",
"half": "bottom",
@@ -4106,7 +4106,7 @@
}
},
{
- "id": 6112,
+ "id": 6274,
"properties": {
"facing": "east",
"half": "bottom",
@@ -4116,7 +4116,7 @@
}
},
{
- "id": 6113,
+ "id": 6275,
"properties": {
"facing": "east",
"half": "bottom",
@@ -4126,7 +4126,7 @@
}
},
{
- "id": 6114,
+ "id": 6276,
"properties": {
"facing": "east",
"half": "bottom",
@@ -4136,7 +4136,7 @@
}
},
{
- "id": 6115,
+ "id": 6277,
"properties": {
"facing": "east",
"half": "bottom",
@@ -4162,7 +4162,7 @@
},
"states": [
{
- "id": 5406,
+ "id": 5558,
"properties": {
"facing": "north",
"waterlogged": "true"
@@ -4170,49 +4170,49 @@
},
{
"default": true,
- "id": 5407,
+ "id": 5559,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 5408,
+ "id": 5560,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 5409,
+ "id": 5561,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 5410,
+ "id": 5562,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 5411,
+ "id": 5563,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 5412,
+ "id": 5564,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 5413,
+ "id": 5565,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -4235,7 +4235,7 @@
},
"states": [
{
- "id": 4702,
+ "id": 4782,
"properties": {
"facing": "north",
"waterlogged": "true"
@@ -4243,49 +4243,49 @@
},
{
"default": true,
- "id": 4703,
+ "id": 4783,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 4704,
+ "id": 4784,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 4705,
+ "id": 4785,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 4706,
+ "id": 4786,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 4707,
+ "id": 4787,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 4708,
+ "id": 4788,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 4709,
+ "id": 4789,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -4303,20 +4303,20 @@
},
"states": [
{
- "id": 184,
+ "id": 197,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 185,
+ "id": 198,
"properties": {
"axis": "y"
}
},
{
- "id": 186,
+ "id": 199,
"properties": {
"axis": "z"
}
@@ -4344,7 +4344,7 @@
},
"states": [
{
- "id": 8924,
+ "id": 9176,
"properties": {
"powered": "true",
"shape": "north_south",
@@ -4352,7 +4352,7 @@
}
},
{
- "id": 8925,
+ "id": 9177,
"properties": {
"powered": "true",
"shape": "north_south",
@@ -4360,7 +4360,7 @@
}
},
{
- "id": 8926,
+ "id": 9178,
"properties": {
"powered": "true",
"shape": "east_west",
@@ -4368,7 +4368,7 @@
}
},
{
- "id": 8927,
+ "id": 9179,
"properties": {
"powered": "true",
"shape": "east_west",
@@ -4376,7 +4376,7 @@
}
},
{
- "id": 8928,
+ "id": 9180,
"properties": {
"powered": "true",
"shape": "ascending_east",
@@ -4384,7 +4384,7 @@
}
},
{
- "id": 8929,
+ "id": 9181,
"properties": {
"powered": "true",
"shape": "ascending_east",
@@ -4392,7 +4392,7 @@
}
},
{
- "id": 8930,
+ "id": 9182,
"properties": {
"powered": "true",
"shape": "ascending_west",
@@ -4400,7 +4400,7 @@
}
},
{
- "id": 8931,
+ "id": 9183,
"properties": {
"powered": "true",
"shape": "ascending_west",
@@ -4408,7 +4408,7 @@
}
},
{
- "id": 8932,
+ "id": 9184,
"properties": {
"powered": "true",
"shape": "ascending_north",
@@ -4416,7 +4416,7 @@
}
},
{
- "id": 8933,
+ "id": 9185,
"properties": {
"powered": "true",
"shape": "ascending_north",
@@ -4424,7 +4424,7 @@
}
},
{
- "id": 8934,
+ "id": 9186,
"properties": {
"powered": "true",
"shape": "ascending_south",
@@ -4432,7 +4432,7 @@
}
},
{
- "id": 8935,
+ "id": 9187,
"properties": {
"powered": "true",
"shape": "ascending_south",
@@ -4440,7 +4440,7 @@
}
},
{
- "id": 8936,
+ "id": 9188,
"properties": {
"powered": "false",
"shape": "north_south",
@@ -4449,7 +4449,7 @@
},
{
"default": true,
- "id": 8937,
+ "id": 9189,
"properties": {
"powered": "false",
"shape": "north_south",
@@ -4457,7 +4457,7 @@
}
},
{
- "id": 8938,
+ "id": 9190,
"properties": {
"powered": "false",
"shape": "east_west",
@@ -4465,7 +4465,7 @@
}
},
{
- "id": 8939,
+ "id": 9191,
"properties": {
"powered": "false",
"shape": "east_west",
@@ -4473,7 +4473,7 @@
}
},
{
- "id": 8940,
+ "id": 9192,
"properties": {
"powered": "false",
"shape": "ascending_east",
@@ -4481,7 +4481,7 @@
}
},
{
- "id": 8941,
+ "id": 9193,
"properties": {
"powered": "false",
"shape": "ascending_east",
@@ -4489,7 +4489,7 @@
}
},
{
- "id": 8942,
+ "id": 9194,
"properties": {
"powered": "false",
"shape": "ascending_west",
@@ -4497,7 +4497,7 @@
}
},
{
- "id": 8943,
+ "id": 9195,
"properties": {
"powered": "false",
"shape": "ascending_west",
@@ -4505,7 +4505,7 @@
}
},
{
- "id": 8944,
+ "id": 9196,
"properties": {
"powered": "false",
"shape": "ascending_north",
@@ -4513,7 +4513,7 @@
}
},
{
- "id": 8945,
+ "id": 9197,
"properties": {
"powered": "false",
"shape": "ascending_north",
@@ -4521,7 +4521,7 @@
}
},
{
- "id": 8946,
+ "id": 9198,
"properties": {
"powered": "false",
"shape": "ascending_south",
@@ -4529,7 +4529,7 @@
}
},
{
- "id": 8947,
+ "id": 9199,
"properties": {
"powered": "false",
"shape": "ascending_south",
@@ -4550,7 +4550,7 @@
"states": [
{
"default": true,
- "id": 2027
+ "id": 2075
}
]
},
@@ -4558,7 +4558,7 @@
"states": [
{
"default": true,
- "id": 20403
+ "id": 20872
}
]
},
@@ -4579,63 +4579,63 @@
},
"states": [
{
- "id": 20405,
+ "id": 20874,
"properties": {
"facing": "north",
"waterlogged": "true"
}
},
{
- "id": 20406,
+ "id": 20875,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 20407,
+ "id": 20876,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 20408,
+ "id": 20877,
"properties": {
"facing": "east",
"waterlogged": "false"
}
},
{
- "id": 20409,
+ "id": 20878,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 20410,
+ "id": 20879,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 20411,
+ "id": 20880,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 20412,
+ "id": 20881,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 20413,
+ "id": 20882,
"properties": {
"facing": "up",
"waterlogged": "true"
@@ -4643,21 +4643,21 @@
},
{
"default": true,
- "id": 20414,
+ "id": 20883,
"properties": {
"facing": "up",
"waterlogged": "false"
}
},
{
- "id": 20415,
+ "id": 20884,
"properties": {
"facing": "down",
"waterlogged": "true"
}
},
{
- "id": 20416,
+ "id": 20885,
"properties": {
"facing": "down",
"waterlogged": "false"
@@ -4669,7 +4669,7 @@
"states": [
{
"default": true,
- "id": 18820
+ "id": 19289
}
]
},
@@ -4695,21 +4695,21 @@
},
"states": [
{
- "id": 13508,
+ "id": 13977,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 13509,
+ "id": 13978,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 13510,
+ "id": 13979,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -4717,21 +4717,21 @@
},
{
"default": true,
- "id": 13511,
+ "id": 13980,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 13512,
+ "id": 13981,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 13513,
+ "id": 13982,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -4765,7 +4765,7 @@
},
"states": [
{
- "id": 13134,
+ "id": 13603,
"properties": {
"facing": "north",
"half": "top",
@@ -4774,7 +4774,7 @@
}
},
{
- "id": 13135,
+ "id": 13604,
"properties": {
"facing": "north",
"half": "top",
@@ -4783,7 +4783,7 @@
}
},
{
- "id": 13136,
+ "id": 13605,
"properties": {
"facing": "north",
"half": "top",
@@ -4792,7 +4792,7 @@
}
},
{
- "id": 13137,
+ "id": 13606,
"properties": {
"facing": "north",
"half": "top",
@@ -4801,7 +4801,7 @@
}
},
{
- "id": 13138,
+ "id": 13607,
"properties": {
"facing": "north",
"half": "top",
@@ -4810,7 +4810,7 @@
}
},
{
- "id": 13139,
+ "id": 13608,
"properties": {
"facing": "north",
"half": "top",
@@ -4819,7 +4819,7 @@
}
},
{
- "id": 13140,
+ "id": 13609,
"properties": {
"facing": "north",
"half": "top",
@@ -4828,7 +4828,7 @@
}
},
{
- "id": 13141,
+ "id": 13610,
"properties": {
"facing": "north",
"half": "top",
@@ -4837,7 +4837,7 @@
}
},
{
- "id": 13142,
+ "id": 13611,
"properties": {
"facing": "north",
"half": "top",
@@ -4846,7 +4846,7 @@
}
},
{
- "id": 13143,
+ "id": 13612,
"properties": {
"facing": "north",
"half": "top",
@@ -4855,7 +4855,7 @@
}
},
{
- "id": 13144,
+ "id": 13613,
"properties": {
"facing": "north",
"half": "bottom",
@@ -4865,7 +4865,7 @@
},
{
"default": true,
- "id": 13145,
+ "id": 13614,
"properties": {
"facing": "north",
"half": "bottom",
@@ -4874,7 +4874,7 @@
}
},
{
- "id": 13146,
+ "id": 13615,
"properties": {
"facing": "north",
"half": "bottom",
@@ -4883,7 +4883,7 @@
}
},
{
- "id": 13147,
+ "id": 13616,
"properties": {
"facing": "north",
"half": "bottom",
@@ -4892,7 +4892,7 @@
}
},
{
- "id": 13148,
+ "id": 13617,
"properties": {
"facing": "north",
"half": "bottom",
@@ -4901,7 +4901,7 @@
}
},
{
- "id": 13149,
+ "id": 13618,
"properties": {
"facing": "north",
"half": "bottom",
@@ -4910,7 +4910,7 @@
}
},
{
- "id": 13150,
+ "id": 13619,
"properties": {
"facing": "north",
"half": "bottom",
@@ -4919,7 +4919,7 @@
}
},
{
- "id": 13151,
+ "id": 13620,
"properties": {
"facing": "north",
"half": "bottom",
@@ -4928,7 +4928,7 @@
}
},
{
- "id": 13152,
+ "id": 13621,
"properties": {
"facing": "north",
"half": "bottom",
@@ -4937,7 +4937,7 @@
}
},
{
- "id": 13153,
+ "id": 13622,
"properties": {
"facing": "north",
"half": "bottom",
@@ -4946,7 +4946,7 @@
}
},
{
- "id": 13154,
+ "id": 13623,
"properties": {
"facing": "south",
"half": "top",
@@ -4955,7 +4955,7 @@
}
},
{
- "id": 13155,
+ "id": 13624,
"properties": {
"facing": "south",
"half": "top",
@@ -4964,7 +4964,7 @@
}
},
{
- "id": 13156,
+ "id": 13625,
"properties": {
"facing": "south",
"half": "top",
@@ -4973,7 +4973,7 @@
}
},
{
- "id": 13157,
+ "id": 13626,
"properties": {
"facing": "south",
"half": "top",
@@ -4982,7 +4982,7 @@
}
},
{
- "id": 13158,
+ "id": 13627,
"properties": {
"facing": "south",
"half": "top",
@@ -4991,7 +4991,7 @@
}
},
{
- "id": 13159,
+ "id": 13628,
"properties": {
"facing": "south",
"half": "top",
@@ -5000,7 +5000,7 @@
}
},
{
- "id": 13160,
+ "id": 13629,
"properties": {
"facing": "south",
"half": "top",
@@ -5009,7 +5009,7 @@
}
},
{
- "id": 13161,
+ "id": 13630,
"properties": {
"facing": "south",
"half": "top",
@@ -5018,7 +5018,7 @@
}
},
{
- "id": 13162,
+ "id": 13631,
"properties": {
"facing": "south",
"half": "top",
@@ -5027,7 +5027,7 @@
}
},
{
- "id": 13163,
+ "id": 13632,
"properties": {
"facing": "south",
"half": "top",
@@ -5036,7 +5036,7 @@
}
},
{
- "id": 13164,
+ "id": 13633,
"properties": {
"facing": "south",
"half": "bottom",
@@ -5045,7 +5045,7 @@
}
},
{
- "id": 13165,
+ "id": 13634,
"properties": {
"facing": "south",
"half": "bottom",
@@ -5054,7 +5054,7 @@
}
},
{
- "id": 13166,
+ "id": 13635,
"properties": {
"facing": "south",
"half": "bottom",
@@ -5063,7 +5063,7 @@
}
},
{
- "id": 13167,
+ "id": 13636,
"properties": {
"facing": "south",
"half": "bottom",
@@ -5072,7 +5072,7 @@
}
},
{
- "id": 13168,
+ "id": 13637,
"properties": {
"facing": "south",
"half": "bottom",
@@ -5081,7 +5081,7 @@
}
},
{
- "id": 13169,
+ "id": 13638,
"properties": {
"facing": "south",
"half": "bottom",
@@ -5090,7 +5090,7 @@
}
},
{
- "id": 13170,
+ "id": 13639,
"properties": {
"facing": "south",
"half": "bottom",
@@ -5099,7 +5099,7 @@
}
},
{
- "id": 13171,
+ "id": 13640,
"properties": {
"facing": "south",
"half": "bottom",
@@ -5108,7 +5108,7 @@
}
},
{
- "id": 13172,
+ "id": 13641,
"properties": {
"facing": "south",
"half": "bottom",
@@ -5117,7 +5117,7 @@
}
},
{
- "id": 13173,
+ "id": 13642,
"properties": {
"facing": "south",
"half": "bottom",
@@ -5126,7 +5126,7 @@
}
},
{
- "id": 13174,
+ "id": 13643,
"properties": {
"facing": "west",
"half": "top",
@@ -5135,7 +5135,7 @@
}
},
{
- "id": 13175,
+ "id": 13644,
"properties": {
"facing": "west",
"half": "top",
@@ -5144,7 +5144,7 @@
}
},
{
- "id": 13176,
+ "id": 13645,
"properties": {
"facing": "west",
"half": "top",
@@ -5153,7 +5153,7 @@
}
},
{
- "id": 13177,
+ "id": 13646,
"properties": {
"facing": "west",
"half": "top",
@@ -5162,7 +5162,7 @@
}
},
{
- "id": 13178,
+ "id": 13647,
"properties": {
"facing": "west",
"half": "top",
@@ -5171,7 +5171,7 @@
}
},
{
- "id": 13179,
+ "id": 13648,
"properties": {
"facing": "west",
"half": "top",
@@ -5180,7 +5180,7 @@
}
},
{
- "id": 13180,
+ "id": 13649,
"properties": {
"facing": "west",
"half": "top",
@@ -5189,7 +5189,7 @@
}
},
{
- "id": 13181,
+ "id": 13650,
"properties": {
"facing": "west",
"half": "top",
@@ -5198,7 +5198,7 @@
}
},
{
- "id": 13182,
+ "id": 13651,
"properties": {
"facing": "west",
"half": "top",
@@ -5207,7 +5207,7 @@
}
},
{
- "id": 13183,
+ "id": 13652,
"properties": {
"facing": "west",
"half": "top",
@@ -5216,7 +5216,7 @@
}
},
{
- "id": 13184,
+ "id": 13653,
"properties": {
"facing": "west",
"half": "bottom",
@@ -5225,7 +5225,7 @@
}
},
{
- "id": 13185,
+ "id": 13654,
"properties": {
"facing": "west",
"half": "bottom",
@@ -5234,7 +5234,7 @@
}
},
{
- "id": 13186,
+ "id": 13655,
"properties": {
"facing": "west",
"half": "bottom",
@@ -5243,7 +5243,7 @@
}
},
{
- "id": 13187,
+ "id": 13656,
"properties": {
"facing": "west",
"half": "bottom",
@@ -5252,7 +5252,7 @@
}
},
{
- "id": 13188,
+ "id": 13657,
"properties": {
"facing": "west",
"half": "bottom",
@@ -5261,7 +5261,7 @@
}
},
{
- "id": 13189,
+ "id": 13658,
"properties": {
"facing": "west",
"half": "bottom",
@@ -5270,7 +5270,7 @@
}
},
{
- "id": 13190,
+ "id": 13659,
"properties": {
"facing": "west",
"half": "bottom",
@@ -5279,7 +5279,7 @@
}
},
{
- "id": 13191,
+ "id": 13660,
"properties": {
"facing": "west",
"half": "bottom",
@@ -5288,7 +5288,7 @@
}
},
{
- "id": 13192,
+ "id": 13661,
"properties": {
"facing": "west",
"half": "bottom",
@@ -5297,7 +5297,7 @@
}
},
{
- "id": 13193,
+ "id": 13662,
"properties": {
"facing": "west",
"half": "bottom",
@@ -5306,7 +5306,7 @@
}
},
{
- "id": 13194,
+ "id": 13663,
"properties": {
"facing": "east",
"half": "top",
@@ -5315,7 +5315,7 @@
}
},
{
- "id": 13195,
+ "id": 13664,
"properties": {
"facing": "east",
"half": "top",
@@ -5324,7 +5324,7 @@
}
},
{
- "id": 13196,
+ "id": 13665,
"properties": {
"facing": "east",
"half": "top",
@@ -5333,7 +5333,7 @@
}
},
{
- "id": 13197,
+ "id": 13666,
"properties": {
"facing": "east",
"half": "top",
@@ -5342,7 +5342,7 @@
}
},
{
- "id": 13198,
+ "id": 13667,
"properties": {
"facing": "east",
"half": "top",
@@ -5351,7 +5351,7 @@
}
},
{
- "id": 13199,
+ "id": 13668,
"properties": {
"facing": "east",
"half": "top",
@@ -5360,7 +5360,7 @@
}
},
{
- "id": 13200,
+ "id": 13669,
"properties": {
"facing": "east",
"half": "top",
@@ -5369,7 +5369,7 @@
}
},
{
- "id": 13201,
+ "id": 13670,
"properties": {
"facing": "east",
"half": "top",
@@ -5378,7 +5378,7 @@
}
},
{
- "id": 13202,
+ "id": 13671,
"properties": {
"facing": "east",
"half": "top",
@@ -5387,7 +5387,7 @@
}
},
{
- "id": 13203,
+ "id": 13672,
"properties": {
"facing": "east",
"half": "top",
@@ -5396,7 +5396,7 @@
}
},
{
- "id": 13204,
+ "id": 13673,
"properties": {
"facing": "east",
"half": "bottom",
@@ -5405,7 +5405,7 @@
}
},
{
- "id": 13205,
+ "id": 13674,
"properties": {
"facing": "east",
"half": "bottom",
@@ -5414,7 +5414,7 @@
}
},
{
- "id": 13206,
+ "id": 13675,
"properties": {
"facing": "east",
"half": "bottom",
@@ -5423,7 +5423,7 @@
}
},
{
- "id": 13207,
+ "id": 13676,
"properties": {
"facing": "east",
"half": "bottom",
@@ -5432,7 +5432,7 @@
}
},
{
- "id": 13208,
+ "id": 13677,
"properties": {
"facing": "east",
"half": "bottom",
@@ -5441,7 +5441,7 @@
}
},
{
- "id": 13209,
+ "id": 13678,
"properties": {
"facing": "east",
"half": "bottom",
@@ -5450,7 +5450,7 @@
}
},
{
- "id": 13210,
+ "id": 13679,
"properties": {
"facing": "east",
"half": "bottom",
@@ -5459,7 +5459,7 @@
}
},
{
- "id": 13211,
+ "id": 13680,
"properties": {
"facing": "east",
"half": "bottom",
@@ -5468,7 +5468,7 @@
}
},
{
- "id": 13212,
+ "id": 13681,
"properties": {
"facing": "east",
"half": "bottom",
@@ -5477,7 +5477,7 @@
}
},
{
- "id": 13213,
+ "id": 13682,
"properties": {
"facing": "east",
"half": "bottom",
@@ -5520,7 +5520,7 @@
},
"states": [
{
- "id": 16124,
+ "id": 16593,
"properties": {
"east": "none",
"north": "none",
@@ -5531,7 +5531,7 @@
}
},
{
- "id": 16125,
+ "id": 16594,
"properties": {
"east": "none",
"north": "none",
@@ -5542,7 +5542,7 @@
}
},
{
- "id": 16126,
+ "id": 16595,
"properties": {
"east": "none",
"north": "none",
@@ -5554,7 +5554,7 @@
},
{
"default": true,
- "id": 16127,
+ "id": 16596,
"properties": {
"east": "none",
"north": "none",
@@ -5565,7 +5565,7 @@
}
},
{
- "id": 16128,
+ "id": 16597,
"properties": {
"east": "none",
"north": "none",
@@ -5576,7 +5576,7 @@
}
},
{
- "id": 16129,
+ "id": 16598,
"properties": {
"east": "none",
"north": "none",
@@ -5587,7 +5587,7 @@
}
},
{
- "id": 16130,
+ "id": 16599,
"properties": {
"east": "none",
"north": "none",
@@ -5598,7 +5598,7 @@
}
},
{
- "id": 16131,
+ "id": 16600,
"properties": {
"east": "none",
"north": "none",
@@ -5609,7 +5609,7 @@
}
},
{
- "id": 16132,
+ "id": 16601,
"properties": {
"east": "none",
"north": "none",
@@ -5620,7 +5620,7 @@
}
},
{
- "id": 16133,
+ "id": 16602,
"properties": {
"east": "none",
"north": "none",
@@ -5631,7 +5631,7 @@
}
},
{
- "id": 16134,
+ "id": 16603,
"properties": {
"east": "none",
"north": "none",
@@ -5642,7 +5642,7 @@
}
},
{
- "id": 16135,
+ "id": 16604,
"properties": {
"east": "none",
"north": "none",
@@ -5653,7 +5653,7 @@
}
},
{
- "id": 16136,
+ "id": 16605,
"properties": {
"east": "none",
"north": "none",
@@ -5664,7 +5664,7 @@
}
},
{
- "id": 16137,
+ "id": 16606,
"properties": {
"east": "none",
"north": "none",
@@ -5675,7 +5675,7 @@
}
},
{
- "id": 16138,
+ "id": 16607,
"properties": {
"east": "none",
"north": "none",
@@ -5686,7 +5686,7 @@
}
},
{
- "id": 16139,
+ "id": 16608,
"properties": {
"east": "none",
"north": "none",
@@ -5697,7 +5697,7 @@
}
},
{
- "id": 16140,
+ "id": 16609,
"properties": {
"east": "none",
"north": "none",
@@ -5708,7 +5708,7 @@
}
},
{
- "id": 16141,
+ "id": 16610,
"properties": {
"east": "none",
"north": "none",
@@ -5719,7 +5719,7 @@
}
},
{
- "id": 16142,
+ "id": 16611,
"properties": {
"east": "none",
"north": "none",
@@ -5730,7 +5730,7 @@
}
},
{
- "id": 16143,
+ "id": 16612,
"properties": {
"east": "none",
"north": "none",
@@ -5741,7 +5741,7 @@
}
},
{
- "id": 16144,
+ "id": 16613,
"properties": {
"east": "none",
"north": "none",
@@ -5752,7 +5752,7 @@
}
},
{
- "id": 16145,
+ "id": 16614,
"properties": {
"east": "none",
"north": "none",
@@ -5763,7 +5763,7 @@
}
},
{
- "id": 16146,
+ "id": 16615,
"properties": {
"east": "none",
"north": "none",
@@ -5774,7 +5774,7 @@
}
},
{
- "id": 16147,
+ "id": 16616,
"properties": {
"east": "none",
"north": "none",
@@ -5785,7 +5785,7 @@
}
},
{
- "id": 16148,
+ "id": 16617,
"properties": {
"east": "none",
"north": "none",
@@ -5796,7 +5796,7 @@
}
},
{
- "id": 16149,
+ "id": 16618,
"properties": {
"east": "none",
"north": "none",
@@ -5807,7 +5807,7 @@
}
},
{
- "id": 16150,
+ "id": 16619,
"properties": {
"east": "none",
"north": "none",
@@ -5818,7 +5818,7 @@
}
},
{
- "id": 16151,
+ "id": 16620,
"properties": {
"east": "none",
"north": "none",
@@ -5829,7 +5829,7 @@
}
},
{
- "id": 16152,
+ "id": 16621,
"properties": {
"east": "none",
"north": "none",
@@ -5840,7 +5840,7 @@
}
},
{
- "id": 16153,
+ "id": 16622,
"properties": {
"east": "none",
"north": "none",
@@ -5851,7 +5851,7 @@
}
},
{
- "id": 16154,
+ "id": 16623,
"properties": {
"east": "none",
"north": "none",
@@ -5862,7 +5862,7 @@
}
},
{
- "id": 16155,
+ "id": 16624,
"properties": {
"east": "none",
"north": "none",
@@ -5873,7 +5873,7 @@
}
},
{
- "id": 16156,
+ "id": 16625,
"properties": {
"east": "none",
"north": "none",
@@ -5884,7 +5884,7 @@
}
},
{
- "id": 16157,
+ "id": 16626,
"properties": {
"east": "none",
"north": "none",
@@ -5895,7 +5895,7 @@
}
},
{
- "id": 16158,
+ "id": 16627,
"properties": {
"east": "none",
"north": "none",
@@ -5906,7 +5906,7 @@
}
},
{
- "id": 16159,
+ "id": 16628,
"properties": {
"east": "none",
"north": "none",
@@ -5917,7 +5917,7 @@
}
},
{
- "id": 16160,
+ "id": 16629,
"properties": {
"east": "none",
"north": "low",
@@ -5928,7 +5928,7 @@
}
},
{
- "id": 16161,
+ "id": 16630,
"properties": {
"east": "none",
"north": "low",
@@ -5939,7 +5939,7 @@
}
},
{
- "id": 16162,
+ "id": 16631,
"properties": {
"east": "none",
"north": "low",
@@ -5950,7 +5950,7 @@
}
},
{
- "id": 16163,
+ "id": 16632,
"properties": {
"east": "none",
"north": "low",
@@ -5961,7 +5961,7 @@
}
},
{
- "id": 16164,
+ "id": 16633,
"properties": {
"east": "none",
"north": "low",
@@ -5972,7 +5972,7 @@
}
},
{
- "id": 16165,
+ "id": 16634,
"properties": {
"east": "none",
"north": "low",
@@ -5983,7 +5983,7 @@
}
},
{
- "id": 16166,
+ "id": 16635,
"properties": {
"east": "none",
"north": "low",
@@ -5994,7 +5994,7 @@
}
},
{
- "id": 16167,
+ "id": 16636,
"properties": {
"east": "none",
"north": "low",
@@ -6005,7 +6005,7 @@
}
},
{
- "id": 16168,
+ "id": 16637,
"properties": {
"east": "none",
"north": "low",
@@ -6016,7 +6016,7 @@
}
},
{
- "id": 16169,
+ "id": 16638,
"properties": {
"east": "none",
"north": "low",
@@ -6027,7 +6027,7 @@
}
},
{
- "id": 16170,
+ "id": 16639,
"properties": {
"east": "none",
"north": "low",
@@ -6038,7 +6038,7 @@
}
},
{
- "id": 16171,
+ "id": 16640,
"properties": {
"east": "none",
"north": "low",
@@ -6049,7 +6049,7 @@
}
},
{
- "id": 16172,
+ "id": 16641,
"properties": {
"east": "none",
"north": "low",
@@ -6060,7 +6060,7 @@
}
},
{
- "id": 16173,
+ "id": 16642,
"properties": {
"east": "none",
"north": "low",
@@ -6071,7 +6071,7 @@
}
},
{
- "id": 16174,
+ "id": 16643,
"properties": {
"east": "none",
"north": "low",
@@ -6082,7 +6082,7 @@
}
},
{
- "id": 16175,
+ "id": 16644,
"properties": {
"east": "none",
"north": "low",
@@ -6093,7 +6093,7 @@
}
},
{
- "id": 16176,
+ "id": 16645,
"properties": {
"east": "none",
"north": "low",
@@ -6104,7 +6104,7 @@
}
},
{
- "id": 16177,
+ "id": 16646,
"properties": {
"east": "none",
"north": "low",
@@ -6115,7 +6115,7 @@
}
},
{
- "id": 16178,
+ "id": 16647,
"properties": {
"east": "none",
"north": "low",
@@ -6126,7 +6126,7 @@
}
},
{
- "id": 16179,
+ "id": 16648,
"properties": {
"east": "none",
"north": "low",
@@ -6137,7 +6137,7 @@
}
},
{
- "id": 16180,
+ "id": 16649,
"properties": {
"east": "none",
"north": "low",
@@ -6148,7 +6148,7 @@
}
},
{
- "id": 16181,
+ "id": 16650,
"properties": {
"east": "none",
"north": "low",
@@ -6159,7 +6159,7 @@
}
},
{
- "id": 16182,
+ "id": 16651,
"properties": {
"east": "none",
"north": "low",
@@ -6170,7 +6170,7 @@
}
},
{
- "id": 16183,
+ "id": 16652,
"properties": {
"east": "none",
"north": "low",
@@ -6181,7 +6181,7 @@
}
},
{
- "id": 16184,
+ "id": 16653,
"properties": {
"east": "none",
"north": "low",
@@ -6192,7 +6192,7 @@
}
},
{
- "id": 16185,
+ "id": 16654,
"properties": {
"east": "none",
"north": "low",
@@ -6203,7 +6203,7 @@
}
},
{
- "id": 16186,
+ "id": 16655,
"properties": {
"east": "none",
"north": "low",
@@ -6214,7 +6214,7 @@
}
},
{
- "id": 16187,
+ "id": 16656,
"properties": {
"east": "none",
"north": "low",
@@ -6225,7 +6225,7 @@
}
},
{
- "id": 16188,
+ "id": 16657,
"properties": {
"east": "none",
"north": "low",
@@ -6236,7 +6236,7 @@
}
},
{
- "id": 16189,
+ "id": 16658,
"properties": {
"east": "none",
"north": "low",
@@ -6247,7 +6247,7 @@
}
},
{
- "id": 16190,
+ "id": 16659,
"properties": {
"east": "none",
"north": "low",
@@ -6258,7 +6258,7 @@
}
},
{
- "id": 16191,
+ "id": 16660,
"properties": {
"east": "none",
"north": "low",
@@ -6269,7 +6269,7 @@
}
},
{
- "id": 16192,
+ "id": 16661,
"properties": {
"east": "none",
"north": "low",
@@ -6280,7 +6280,7 @@
}
},
{
- "id": 16193,
+ "id": 16662,
"properties": {
"east": "none",
"north": "low",
@@ -6291,7 +6291,7 @@
}
},
{
- "id": 16194,
+ "id": 16663,
"properties": {
"east": "none",
"north": "low",
@@ -6302,7 +6302,7 @@
}
},
{
- "id": 16195,
+ "id": 16664,
"properties": {
"east": "none",
"north": "low",
@@ -6313,7 +6313,7 @@
}
},
{
- "id": 16196,
+ "id": 16665,
"properties": {
"east": "none",
"north": "tall",
@@ -6324,7 +6324,7 @@
}
},
{
- "id": 16197,
+ "id": 16666,
"properties": {
"east": "none",
"north": "tall",
@@ -6335,7 +6335,7 @@
}
},
{
- "id": 16198,
+ "id": 16667,
"properties": {
"east": "none",
"north": "tall",
@@ -6346,7 +6346,7 @@
}
},
{
- "id": 16199,
+ "id": 16668,
"properties": {
"east": "none",
"north": "tall",
@@ -6357,7 +6357,7 @@
}
},
{
- "id": 16200,
+ "id": 16669,
"properties": {
"east": "none",
"north": "tall",
@@ -6368,7 +6368,7 @@
}
},
{
- "id": 16201,
+ "id": 16670,
"properties": {
"east": "none",
"north": "tall",
@@ -6379,7 +6379,7 @@
}
},
{
- "id": 16202,
+ "id": 16671,
"properties": {
"east": "none",
"north": "tall",
@@ -6390,7 +6390,7 @@
}
},
{
- "id": 16203,
+ "id": 16672,
"properties": {
"east": "none",
"north": "tall",
@@ -6401,7 +6401,7 @@
}
},
{
- "id": 16204,
+ "id": 16673,
"properties": {
"east": "none",
"north": "tall",
@@ -6412,7 +6412,7 @@
}
},
{
- "id": 16205,
+ "id": 16674,
"properties": {
"east": "none",
"north": "tall",
@@ -6423,7 +6423,7 @@
}
},
{
- "id": 16206,
+ "id": 16675,
"properties": {
"east": "none",
"north": "tall",
@@ -6434,7 +6434,7 @@
}
},
{
- "id": 16207,
+ "id": 16676,
"properties": {
"east": "none",
"north": "tall",
@@ -6445,7 +6445,7 @@
}
},
{
- "id": 16208,
+ "id": 16677,
"properties": {
"east": "none",
"north": "tall",
@@ -6456,7 +6456,7 @@
}
},
{
- "id": 16209,
+ "id": 16678,
"properties": {
"east": "none",
"north": "tall",
@@ -6467,7 +6467,7 @@
}
},
{
- "id": 16210,
+ "id": 16679,
"properties": {
"east": "none",
"north": "tall",
@@ -6478,7 +6478,7 @@
}
},
{
- "id": 16211,
+ "id": 16680,
"properties": {
"east": "none",
"north": "tall",
@@ -6489,7 +6489,7 @@
}
},
{
- "id": 16212,
+ "id": 16681,
"properties": {
"east": "none",
"north": "tall",
@@ -6500,7 +6500,7 @@
}
},
{
- "id": 16213,
+ "id": 16682,
"properties": {
"east": "none",
"north": "tall",
@@ -6511,7 +6511,7 @@
}
},
{
- "id": 16214,
+ "id": 16683,
"properties": {
"east": "none",
"north": "tall",
@@ -6522,7 +6522,7 @@
}
},
{
- "id": 16215,
+ "id": 16684,
"properties": {
"east": "none",
"north": "tall",
@@ -6533,7 +6533,7 @@
}
},
{
- "id": 16216,
+ "id": 16685,
"properties": {
"east": "none",
"north": "tall",
@@ -6544,7 +6544,7 @@
}
},
{
- "id": 16217,
+ "id": 16686,
"properties": {
"east": "none",
"north": "tall",
@@ -6555,7 +6555,7 @@
}
},
{
- "id": 16218,
+ "id": 16687,
"properties": {
"east": "none",
"north": "tall",
@@ -6566,7 +6566,7 @@
}
},
{
- "id": 16219,
+ "id": 16688,
"properties": {
"east": "none",
"north": "tall",
@@ -6577,7 +6577,7 @@
}
},
{
- "id": 16220,
+ "id": 16689,
"properties": {
"east": "none",
"north": "tall",
@@ -6588,7 +6588,7 @@
}
},
{
- "id": 16221,
+ "id": 16690,
"properties": {
"east": "none",
"north": "tall",
@@ -6599,7 +6599,7 @@
}
},
{
- "id": 16222,
+ "id": 16691,
"properties": {
"east": "none",
"north": "tall",
@@ -6610,7 +6610,7 @@
}
},
{
- "id": 16223,
+ "id": 16692,
"properties": {
"east": "none",
"north": "tall",
@@ -6621,7 +6621,7 @@
}
},
{
- "id": 16224,
+ "id": 16693,
"properties": {
"east": "none",
"north": "tall",
@@ -6632,7 +6632,7 @@
}
},
{
- "id": 16225,
+ "id": 16694,
"properties": {
"east": "none",
"north": "tall",
@@ -6643,7 +6643,7 @@
}
},
{
- "id": 16226,
+ "id": 16695,
"properties": {
"east": "none",
"north": "tall",
@@ -6654,7 +6654,7 @@
}
},
{
- "id": 16227,
+ "id": 16696,
"properties": {
"east": "none",
"north": "tall",
@@ -6665,7 +6665,7 @@
}
},
{
- "id": 16228,
+ "id": 16697,
"properties": {
"east": "none",
"north": "tall",
@@ -6676,7 +6676,7 @@
}
},
{
- "id": 16229,
+ "id": 16698,
"properties": {
"east": "none",
"north": "tall",
@@ -6687,7 +6687,7 @@
}
},
{
- "id": 16230,
+ "id": 16699,
"properties": {
"east": "none",
"north": "tall",
@@ -6698,7 +6698,7 @@
}
},
{
- "id": 16231,
+ "id": 16700,
"properties": {
"east": "none",
"north": "tall",
@@ -6709,7 +6709,7 @@
}
},
{
- "id": 16232,
+ "id": 16701,
"properties": {
"east": "low",
"north": "none",
@@ -6720,7 +6720,7 @@
}
},
{
- "id": 16233,
+ "id": 16702,
"properties": {
"east": "low",
"north": "none",
@@ -6731,7 +6731,7 @@
}
},
{
- "id": 16234,
+ "id": 16703,
"properties": {
"east": "low",
"north": "none",
@@ -6742,7 +6742,7 @@
}
},
{
- "id": 16235,
+ "id": 16704,
"properties": {
"east": "low",
"north": "none",
@@ -6753,7 +6753,7 @@
}
},
{
- "id": 16236,
+ "id": 16705,
"properties": {
"east": "low",
"north": "none",
@@ -6764,7 +6764,7 @@
}
},
{
- "id": 16237,
+ "id": 16706,
"properties": {
"east": "low",
"north": "none",
@@ -6775,7 +6775,7 @@
}
},
{
- "id": 16238,
+ "id": 16707,
"properties": {
"east": "low",
"north": "none",
@@ -6786,7 +6786,7 @@
}
},
{
- "id": 16239,
+ "id": 16708,
"properties": {
"east": "low",
"north": "none",
@@ -6797,7 +6797,7 @@
}
},
{
- "id": 16240,
+ "id": 16709,
"properties": {
"east": "low",
"north": "none",
@@ -6808,7 +6808,7 @@
}
},
{
- "id": 16241,
+ "id": 16710,
"properties": {
"east": "low",
"north": "none",
@@ -6819,7 +6819,7 @@
}
},
{
- "id": 16242,
+ "id": 16711,
"properties": {
"east": "low",
"north": "none",
@@ -6830,7 +6830,7 @@
}
},
{
- "id": 16243,
+ "id": 16712,
"properties": {
"east": "low",
"north": "none",
@@ -6841,7 +6841,7 @@
}
},
{
- "id": 16244,
+ "id": 16713,
"properties": {
"east": "low",
"north": "none",
@@ -6852,7 +6852,7 @@
}
},
{
- "id": 16245,
+ "id": 16714,
"properties": {
"east": "low",
"north": "none",
@@ -6863,7 +6863,7 @@
}
},
{
- "id": 16246,
+ "id": 16715,
"properties": {
"east": "low",
"north": "none",
@@ -6874,7 +6874,7 @@
}
},
{
- "id": 16247,
+ "id": 16716,
"properties": {
"east": "low",
"north": "none",
@@ -6885,7 +6885,7 @@
}
},
{
- "id": 16248,
+ "id": 16717,
"properties": {
"east": "low",
"north": "none",
@@ -6896,7 +6896,7 @@
}
},
{
- "id": 16249,
+ "id": 16718,
"properties": {
"east": "low",
"north": "none",
@@ -6907,7 +6907,7 @@
}
},
{
- "id": 16250,
+ "id": 16719,
"properties": {
"east": "low",
"north": "none",
@@ -6918,7 +6918,7 @@
}
},
{
- "id": 16251,
+ "id": 16720,
"properties": {
"east": "low",
"north": "none",
@@ -6929,7 +6929,7 @@
}
},
{
- "id": 16252,
+ "id": 16721,
"properties": {
"east": "low",
"north": "none",
@@ -6940,7 +6940,7 @@
}
},
{
- "id": 16253,
+ "id": 16722,
"properties": {
"east": "low",
"north": "none",
@@ -6951,7 +6951,7 @@
}
},
{
- "id": 16254,
+ "id": 16723,
"properties": {
"east": "low",
"north": "none",
@@ -6962,7 +6962,7 @@
}
},
{
- "id": 16255,
+ "id": 16724,
"properties": {
"east": "low",
"north": "none",
@@ -6973,7 +6973,7 @@
}
},
{
- "id": 16256,
+ "id": 16725,
"properties": {
"east": "low",
"north": "none",
@@ -6984,7 +6984,7 @@
}
},
{
- "id": 16257,
+ "id": 16726,
"properties": {
"east": "low",
"north": "none",
@@ -6995,7 +6995,7 @@
}
},
{
- "id": 16258,
+ "id": 16727,
"properties": {
"east": "low",
"north": "none",
@@ -7006,7 +7006,7 @@
}
},
{
- "id": 16259,
+ "id": 16728,
"properties": {
"east": "low",
"north": "none",
@@ -7017,7 +7017,7 @@
}
},
{
- "id": 16260,
+ "id": 16729,
"properties": {
"east": "low",
"north": "none",
@@ -7028,7 +7028,7 @@
}
},
{
- "id": 16261,
+ "id": 16730,
"properties": {
"east": "low",
"north": "none",
@@ -7039,7 +7039,7 @@
}
},
{
- "id": 16262,
+ "id": 16731,
"properties": {
"east": "low",
"north": "none",
@@ -7050,7 +7050,7 @@
}
},
{
- "id": 16263,
+ "id": 16732,
"properties": {
"east": "low",
"north": "none",
@@ -7061,7 +7061,7 @@
}
},
{
- "id": 16264,
+ "id": 16733,
"properties": {
"east": "low",
"north": "none",
@@ -7072,7 +7072,7 @@
}
},
{
- "id": 16265,
+ "id": 16734,
"properties": {
"east": "low",
"north": "none",
@@ -7083,7 +7083,7 @@
}
},
{
- "id": 16266,
+ "id": 16735,
"properties": {
"east": "low",
"north": "none",
@@ -7094,7 +7094,7 @@
}
},
{
- "id": 16267,
+ "id": 16736,
"properties": {
"east": "low",
"north": "none",
@@ -7105,7 +7105,7 @@
}
},
{
- "id": 16268,
+ "id": 16737,
"properties": {
"east": "low",
"north": "low",
@@ -7116,7 +7116,7 @@
}
},
{
- "id": 16269,
+ "id": 16738,
"properties": {
"east": "low",
"north": "low",
@@ -7127,7 +7127,7 @@
}
},
{
- "id": 16270,
+ "id": 16739,
"properties": {
"east": "low",
"north": "low",
@@ -7138,7 +7138,7 @@
}
},
{
- "id": 16271,
+ "id": 16740,
"properties": {
"east": "low",
"north": "low",
@@ -7149,7 +7149,7 @@
}
},
{
- "id": 16272,
+ "id": 16741,
"properties": {
"east": "low",
"north": "low",
@@ -7160,7 +7160,7 @@
}
},
{
- "id": 16273,
+ "id": 16742,
"properties": {
"east": "low",
"north": "low",
@@ -7171,7 +7171,7 @@
}
},
{
- "id": 16274,
+ "id": 16743,
"properties": {
"east": "low",
"north": "low",
@@ -7182,7 +7182,7 @@
}
},
{
- "id": 16275,
+ "id": 16744,
"properties": {
"east": "low",
"north": "low",
@@ -7193,7 +7193,7 @@
}
},
{
- "id": 16276,
+ "id": 16745,
"properties": {
"east": "low",
"north": "low",
@@ -7204,7 +7204,7 @@
}
},
{
- "id": 16277,
+ "id": 16746,
"properties": {
"east": "low",
"north": "low",
@@ -7215,7 +7215,7 @@
}
},
{
- "id": 16278,
+ "id": 16747,
"properties": {
"east": "low",
"north": "low",
@@ -7226,7 +7226,7 @@
}
},
{
- "id": 16279,
+ "id": 16748,
"properties": {
"east": "low",
"north": "low",
@@ -7237,7 +7237,7 @@
}
},
{
- "id": 16280,
+ "id": 16749,
"properties": {
"east": "low",
"north": "low",
@@ -7248,7 +7248,7 @@
}
},
{
- "id": 16281,
+ "id": 16750,
"properties": {
"east": "low",
"north": "low",
@@ -7259,7 +7259,7 @@
}
},
{
- "id": 16282,
+ "id": 16751,
"properties": {
"east": "low",
"north": "low",
@@ -7270,7 +7270,7 @@
}
},
{
- "id": 16283,
+ "id": 16752,
"properties": {
"east": "low",
"north": "low",
@@ -7281,7 +7281,7 @@
}
},
{
- "id": 16284,
+ "id": 16753,
"properties": {
"east": "low",
"north": "low",
@@ -7292,7 +7292,7 @@
}
},
{
- "id": 16285,
+ "id": 16754,
"properties": {
"east": "low",
"north": "low",
@@ -7303,7 +7303,7 @@
}
},
{
- "id": 16286,
+ "id": 16755,
"properties": {
"east": "low",
"north": "low",
@@ -7314,7 +7314,7 @@
}
},
{
- "id": 16287,
+ "id": 16756,
"properties": {
"east": "low",
"north": "low",
@@ -7325,7 +7325,7 @@
}
},
{
- "id": 16288,
+ "id": 16757,
"properties": {
"east": "low",
"north": "low",
@@ -7336,7 +7336,7 @@
}
},
{
- "id": 16289,
+ "id": 16758,
"properties": {
"east": "low",
"north": "low",
@@ -7347,7 +7347,7 @@
}
},
{
- "id": 16290,
+ "id": 16759,
"properties": {
"east": "low",
"north": "low",
@@ -7358,7 +7358,7 @@
}
},
{
- "id": 16291,
+ "id": 16760,
"properties": {
"east": "low",
"north": "low",
@@ -7369,7 +7369,7 @@
}
},
{
- "id": 16292,
+ "id": 16761,
"properties": {
"east": "low",
"north": "low",
@@ -7380,7 +7380,7 @@
}
},
{
- "id": 16293,
+ "id": 16762,
"properties": {
"east": "low",
"north": "low",
@@ -7391,7 +7391,7 @@
}
},
{
- "id": 16294,
+ "id": 16763,
"properties": {
"east": "low",
"north": "low",
@@ -7402,7 +7402,7 @@
}
},
{
- "id": 16295,
+ "id": 16764,
"properties": {
"east": "low",
"north": "low",
@@ -7413,7 +7413,7 @@
}
},
{
- "id": 16296,
+ "id": 16765,
"properties": {
"east": "low",
"north": "low",
@@ -7424,7 +7424,7 @@
}
},
{
- "id": 16297,
+ "id": 16766,
"properties": {
"east": "low",
"north": "low",
@@ -7435,7 +7435,7 @@
}
},
{
- "id": 16298,
+ "id": 16767,
"properties": {
"east": "low",
"north": "low",
@@ -7446,7 +7446,7 @@
}
},
{
- "id": 16299,
+ "id": 16768,
"properties": {
"east": "low",
"north": "low",
@@ -7457,7 +7457,7 @@
}
},
{
- "id": 16300,
+ "id": 16769,
"properties": {
"east": "low",
"north": "low",
@@ -7468,7 +7468,7 @@
}
},
{
- "id": 16301,
+ "id": 16770,
"properties": {
"east": "low",
"north": "low",
@@ -7479,7 +7479,7 @@
}
},
{
- "id": 16302,
+ "id": 16771,
"properties": {
"east": "low",
"north": "low",
@@ -7490,7 +7490,7 @@
}
},
{
- "id": 16303,
+ "id": 16772,
"properties": {
"east": "low",
"north": "low",
@@ -7501,7 +7501,7 @@
}
},
{
- "id": 16304,
+ "id": 16773,
"properties": {
"east": "low",
"north": "tall",
@@ -7512,7 +7512,7 @@
}
},
{
- "id": 16305,
+ "id": 16774,
"properties": {
"east": "low",
"north": "tall",
@@ -7523,7 +7523,7 @@
}
},
{
- "id": 16306,
+ "id": 16775,
"properties": {
"east": "low",
"north": "tall",
@@ -7534,7 +7534,7 @@
}
},
{
- "id": 16307,
+ "id": 16776,
"properties": {
"east": "low",
"north": "tall",
@@ -7545,7 +7545,7 @@
}
},
{
- "id": 16308,
+ "id": 16777,
"properties": {
"east": "low",
"north": "tall",
@@ -7556,7 +7556,7 @@
}
},
{
- "id": 16309,
+ "id": 16778,
"properties": {
"east": "low",
"north": "tall",
@@ -7567,7 +7567,7 @@
}
},
{
- "id": 16310,
+ "id": 16779,
"properties": {
"east": "low",
"north": "tall",
@@ -7578,7 +7578,7 @@
}
},
{
- "id": 16311,
+ "id": 16780,
"properties": {
"east": "low",
"north": "tall",
@@ -7589,7 +7589,7 @@
}
},
{
- "id": 16312,
+ "id": 16781,
"properties": {
"east": "low",
"north": "tall",
@@ -7600,7 +7600,7 @@
}
},
{
- "id": 16313,
+ "id": 16782,
"properties": {
"east": "low",
"north": "tall",
@@ -7611,7 +7611,7 @@
}
},
{
- "id": 16314,
+ "id": 16783,
"properties": {
"east": "low",
"north": "tall",
@@ -7622,7 +7622,7 @@
}
},
{
- "id": 16315,
+ "id": 16784,
"properties": {
"east": "low",
"north": "tall",
@@ -7633,7 +7633,7 @@
}
},
{
- "id": 16316,
+ "id": 16785,
"properties": {
"east": "low",
"north": "tall",
@@ -7644,7 +7644,7 @@
}
},
{
- "id": 16317,
+ "id": 16786,
"properties": {
"east": "low",
"north": "tall",
@@ -7655,7 +7655,7 @@
}
},
{
- "id": 16318,
+ "id": 16787,
"properties": {
"east": "low",
"north": "tall",
@@ -7666,7 +7666,7 @@
}
},
{
- "id": 16319,
+ "id": 16788,
"properties": {
"east": "low",
"north": "tall",
@@ -7677,7 +7677,7 @@
}
},
{
- "id": 16320,
+ "id": 16789,
"properties": {
"east": "low",
"north": "tall",
@@ -7688,7 +7688,7 @@
}
},
{
- "id": 16321,
+ "id": 16790,
"properties": {
"east": "low",
"north": "tall",
@@ -7699,7 +7699,7 @@
}
},
{
- "id": 16322,
+ "id": 16791,
"properties": {
"east": "low",
"north": "tall",
@@ -7710,7 +7710,7 @@
}
},
{
- "id": 16323,
+ "id": 16792,
"properties": {
"east": "low",
"north": "tall",
@@ -7721,7 +7721,7 @@
}
},
{
- "id": 16324,
+ "id": 16793,
"properties": {
"east": "low",
"north": "tall",
@@ -7732,7 +7732,7 @@
}
},
{
- "id": 16325,
+ "id": 16794,
"properties": {
"east": "low",
"north": "tall",
@@ -7743,7 +7743,7 @@
}
},
{
- "id": 16326,
+ "id": 16795,
"properties": {
"east": "low",
"north": "tall",
@@ -7754,7 +7754,7 @@
}
},
{
- "id": 16327,
+ "id": 16796,
"properties": {
"east": "low",
"north": "tall",
@@ -7765,7 +7765,7 @@
}
},
{
- "id": 16328,
+ "id": 16797,
"properties": {
"east": "low",
"north": "tall",
@@ -7776,7 +7776,7 @@
}
},
{
- "id": 16329,
+ "id": 16798,
"properties": {
"east": "low",
"north": "tall",
@@ -7787,7 +7787,7 @@
}
},
{
- "id": 16330,
+ "id": 16799,
"properties": {
"east": "low",
"north": "tall",
@@ -7798,7 +7798,7 @@
}
},
{
- "id": 16331,
+ "id": 16800,
"properties": {
"east": "low",
"north": "tall",
@@ -7809,7 +7809,7 @@
}
},
{
- "id": 16332,
+ "id": 16801,
"properties": {
"east": "low",
"north": "tall",
@@ -7820,7 +7820,7 @@
}
},
{
- "id": 16333,
+ "id": 16802,
"properties": {
"east": "low",
"north": "tall",
@@ -7831,7 +7831,7 @@
}
},
{
- "id": 16334,
+ "id": 16803,
"properties": {
"east": "low",
"north": "tall",
@@ -7842,7 +7842,7 @@
}
},
{
- "id": 16335,
+ "id": 16804,
"properties": {
"east": "low",
"north": "tall",
@@ -7853,7 +7853,7 @@
}
},
{
- "id": 16336,
+ "id": 16805,
"properties": {
"east": "low",
"north": "tall",
@@ -7864,7 +7864,7 @@
}
},
{
- "id": 16337,
+ "id": 16806,
"properties": {
"east": "low",
"north": "tall",
@@ -7875,7 +7875,7 @@
}
},
{
- "id": 16338,
+ "id": 16807,
"properties": {
"east": "low",
"north": "tall",
@@ -7886,7 +7886,7 @@
}
},
{
- "id": 16339,
+ "id": 16808,
"properties": {
"east": "low",
"north": "tall",
@@ -7897,7 +7897,7 @@
}
},
{
- "id": 16340,
+ "id": 16809,
"properties": {
"east": "tall",
"north": "none",
@@ -7908,7 +7908,7 @@
}
},
{
- "id": 16341,
+ "id": 16810,
"properties": {
"east": "tall",
"north": "none",
@@ -7919,7 +7919,7 @@
}
},
{
- "id": 16342,
+ "id": 16811,
"properties": {
"east": "tall",
"north": "none",
@@ -7930,7 +7930,7 @@
}
},
{
- "id": 16343,
+ "id": 16812,
"properties": {
"east": "tall",
"north": "none",
@@ -7941,7 +7941,7 @@
}
},
{
- "id": 16344,
+ "id": 16813,
"properties": {
"east": "tall",
"north": "none",
@@ -7952,7 +7952,7 @@
}
},
{
- "id": 16345,
+ "id": 16814,
"properties": {
"east": "tall",
"north": "none",
@@ -7963,7 +7963,7 @@
}
},
{
- "id": 16346,
+ "id": 16815,
"properties": {
"east": "tall",
"north": "none",
@@ -7974,7 +7974,7 @@
}
},
{
- "id": 16347,
+ "id": 16816,
"properties": {
"east": "tall",
"north": "none",
@@ -7985,7 +7985,7 @@
}
},
{
- "id": 16348,
+ "id": 16817,
"properties": {
"east": "tall",
"north": "none",
@@ -7996,7 +7996,7 @@
}
},
{
- "id": 16349,
+ "id": 16818,
"properties": {
"east": "tall",
"north": "none",
@@ -8007,7 +8007,7 @@
}
},
{
- "id": 16350,
+ "id": 16819,
"properties": {
"east": "tall",
"north": "none",
@@ -8018,7 +8018,7 @@
}
},
{
- "id": 16351,
+ "id": 16820,
"properties": {
"east": "tall",
"north": "none",
@@ -8029,7 +8029,7 @@
}
},
{
- "id": 16352,
+ "id": 16821,
"properties": {
"east": "tall",
"north": "none",
@@ -8040,7 +8040,7 @@
}
},
{
- "id": 16353,
+ "id": 16822,
"properties": {
"east": "tall",
"north": "none",
@@ -8051,7 +8051,7 @@
}
},
{
- "id": 16354,
+ "id": 16823,
"properties": {
"east": "tall",
"north": "none",
@@ -8062,7 +8062,7 @@
}
},
{
- "id": 16355,
+ "id": 16824,
"properties": {
"east": "tall",
"north": "none",
@@ -8073,7 +8073,7 @@
}
},
{
- "id": 16356,
+ "id": 16825,
"properties": {
"east": "tall",
"north": "none",
@@ -8084,7 +8084,7 @@
}
},
{
- "id": 16357,
+ "id": 16826,
"properties": {
"east": "tall",
"north": "none",
@@ -8095,7 +8095,7 @@
}
},
{
- "id": 16358,
+ "id": 16827,
"properties": {
"east": "tall",
"north": "none",
@@ -8106,7 +8106,7 @@
}
},
{
- "id": 16359,
+ "id": 16828,
"properties": {
"east": "tall",
"north": "none",
@@ -8117,7 +8117,7 @@
}
},
{
- "id": 16360,
+ "id": 16829,
"properties": {
"east": "tall",
"north": "none",
@@ -8128,7 +8128,7 @@
}
},
{
- "id": 16361,
+ "id": 16830,
"properties": {
"east": "tall",
"north": "none",
@@ -8139,7 +8139,7 @@
}
},
{
- "id": 16362,
+ "id": 16831,
"properties": {
"east": "tall",
"north": "none",
@@ -8150,7 +8150,7 @@
}
},
{
- "id": 16363,
+ "id": 16832,
"properties": {
"east": "tall",
"north": "none",
@@ -8161,7 +8161,7 @@
}
},
{
- "id": 16364,
+ "id": 16833,
"properties": {
"east": "tall",
"north": "none",
@@ -8172,7 +8172,7 @@
}
},
{
- "id": 16365,
+ "id": 16834,
"properties": {
"east": "tall",
"north": "none",
@@ -8183,7 +8183,7 @@
}
},
{
- "id": 16366,
+ "id": 16835,
"properties": {
"east": "tall",
"north": "none",
@@ -8194,7 +8194,7 @@
}
},
{
- "id": 16367,
+ "id": 16836,
"properties": {
"east": "tall",
"north": "none",
@@ -8205,7 +8205,7 @@
}
},
{
- "id": 16368,
+ "id": 16837,
"properties": {
"east": "tall",
"north": "none",
@@ -8216,7 +8216,7 @@
}
},
{
- "id": 16369,
+ "id": 16838,
"properties": {
"east": "tall",
"north": "none",
@@ -8227,7 +8227,7 @@
}
},
{
- "id": 16370,
+ "id": 16839,
"properties": {
"east": "tall",
"north": "none",
@@ -8238,7 +8238,7 @@
}
},
{
- "id": 16371,
+ "id": 16840,
"properties": {
"east": "tall",
"north": "none",
@@ -8249,7 +8249,7 @@
}
},
{
- "id": 16372,
+ "id": 16841,
"properties": {
"east": "tall",
"north": "none",
@@ -8260,7 +8260,7 @@
}
},
{
- "id": 16373,
+ "id": 16842,
"properties": {
"east": "tall",
"north": "none",
@@ -8271,7 +8271,7 @@
}
},
{
- "id": 16374,
+ "id": 16843,
"properties": {
"east": "tall",
"north": "none",
@@ -8282,7 +8282,7 @@
}
},
{
- "id": 16375,
+ "id": 16844,
"properties": {
"east": "tall",
"north": "none",
@@ -8293,7 +8293,7 @@
}
},
{
- "id": 16376,
+ "id": 16845,
"properties": {
"east": "tall",
"north": "low",
@@ -8304,7 +8304,7 @@
}
},
{
- "id": 16377,
+ "id": 16846,
"properties": {
"east": "tall",
"north": "low",
@@ -8315,7 +8315,7 @@
}
},
{
- "id": 16378,
+ "id": 16847,
"properties": {
"east": "tall",
"north": "low",
@@ -8326,7 +8326,7 @@
}
},
{
- "id": 16379,
+ "id": 16848,
"properties": {
"east": "tall",
"north": "low",
@@ -8337,7 +8337,7 @@
}
},
{
- "id": 16380,
+ "id": 16849,
"properties": {
"east": "tall",
"north": "low",
@@ -8348,7 +8348,7 @@
}
},
{
- "id": 16381,
+ "id": 16850,
"properties": {
"east": "tall",
"north": "low",
@@ -8359,7 +8359,7 @@
}
},
{
- "id": 16382,
+ "id": 16851,
"properties": {
"east": "tall",
"north": "low",
@@ -8370,7 +8370,7 @@
}
},
{
- "id": 16383,
+ "id": 16852,
"properties": {
"east": "tall",
"north": "low",
@@ -8381,7 +8381,7 @@
}
},
{
- "id": 16384,
+ "id": 16853,
"properties": {
"east": "tall",
"north": "low",
@@ -8392,7 +8392,7 @@
}
},
{
- "id": 16385,
+ "id": 16854,
"properties": {
"east": "tall",
"north": "low",
@@ -8403,7 +8403,7 @@
}
},
{
- "id": 16386,
+ "id": 16855,
"properties": {
"east": "tall",
"north": "low",
@@ -8414,7 +8414,7 @@
}
},
{
- "id": 16387,
+ "id": 16856,
"properties": {
"east": "tall",
"north": "low",
@@ -8425,7 +8425,7 @@
}
},
{
- "id": 16388,
+ "id": 16857,
"properties": {
"east": "tall",
"north": "low",
@@ -8436,7 +8436,7 @@
}
},
{
- "id": 16389,
+ "id": 16858,
"properties": {
"east": "tall",
"north": "low",
@@ -8447,7 +8447,7 @@
}
},
{
- "id": 16390,
+ "id": 16859,
"properties": {
"east": "tall",
"north": "low",
@@ -8458,7 +8458,7 @@
}
},
{
- "id": 16391,
+ "id": 16860,
"properties": {
"east": "tall",
"north": "low",
@@ -8469,7 +8469,7 @@
}
},
{
- "id": 16392,
+ "id": 16861,
"properties": {
"east": "tall",
"north": "low",
@@ -8480,7 +8480,7 @@
}
},
{
- "id": 16393,
+ "id": 16862,
"properties": {
"east": "tall",
"north": "low",
@@ -8491,7 +8491,7 @@
}
},
{
- "id": 16394,
+ "id": 16863,
"properties": {
"east": "tall",
"north": "low",
@@ -8502,7 +8502,7 @@
}
},
{
- "id": 16395,
+ "id": 16864,
"properties": {
"east": "tall",
"north": "low",
@@ -8513,7 +8513,7 @@
}
},
{
- "id": 16396,
+ "id": 16865,
"properties": {
"east": "tall",
"north": "low",
@@ -8524,7 +8524,7 @@
}
},
{
- "id": 16397,
+ "id": 16866,
"properties": {
"east": "tall",
"north": "low",
@@ -8535,7 +8535,7 @@
}
},
{
- "id": 16398,
+ "id": 16867,
"properties": {
"east": "tall",
"north": "low",
@@ -8546,7 +8546,7 @@
}
},
{
- "id": 16399,
+ "id": 16868,
"properties": {
"east": "tall",
"north": "low",
@@ -8557,7 +8557,7 @@
}
},
{
- "id": 16400,
+ "id": 16869,
"properties": {
"east": "tall",
"north": "low",
@@ -8568,7 +8568,7 @@
}
},
{
- "id": 16401,
+ "id": 16870,
"properties": {
"east": "tall",
"north": "low",
@@ -8579,7 +8579,7 @@
}
},
{
- "id": 16402,
+ "id": 16871,
"properties": {
"east": "tall",
"north": "low",
@@ -8590,7 +8590,7 @@
}
},
{
- "id": 16403,
+ "id": 16872,
"properties": {
"east": "tall",
"north": "low",
@@ -8601,7 +8601,7 @@
}
},
{
- "id": 16404,
+ "id": 16873,
"properties": {
"east": "tall",
"north": "low",
@@ -8612,7 +8612,7 @@
}
},
{
- "id": 16405,
+ "id": 16874,
"properties": {
"east": "tall",
"north": "low",
@@ -8623,7 +8623,7 @@
}
},
{
- "id": 16406,
+ "id": 16875,
"properties": {
"east": "tall",
"north": "low",
@@ -8634,7 +8634,7 @@
}
},
{
- "id": 16407,
+ "id": 16876,
"properties": {
"east": "tall",
"north": "low",
@@ -8645,7 +8645,7 @@
}
},
{
- "id": 16408,
+ "id": 16877,
"properties": {
"east": "tall",
"north": "low",
@@ -8656,7 +8656,7 @@
}
},
{
- "id": 16409,
+ "id": 16878,
"properties": {
"east": "tall",
"north": "low",
@@ -8667,7 +8667,7 @@
}
},
{
- "id": 16410,
+ "id": 16879,
"properties": {
"east": "tall",
"north": "low",
@@ -8678,7 +8678,7 @@
}
},
{
- "id": 16411,
+ "id": 16880,
"properties": {
"east": "tall",
"north": "low",
@@ -8689,7 +8689,7 @@
}
},
{
- "id": 16412,
+ "id": 16881,
"properties": {
"east": "tall",
"north": "tall",
@@ -8700,7 +8700,7 @@
}
},
{
- "id": 16413,
+ "id": 16882,
"properties": {
"east": "tall",
"north": "tall",
@@ -8711,7 +8711,7 @@
}
},
{
- "id": 16414,
+ "id": 16883,
"properties": {
"east": "tall",
"north": "tall",
@@ -8722,7 +8722,7 @@
}
},
{
- "id": 16415,
+ "id": 16884,
"properties": {
"east": "tall",
"north": "tall",
@@ -8733,7 +8733,7 @@
}
},
{
- "id": 16416,
+ "id": 16885,
"properties": {
"east": "tall",
"north": "tall",
@@ -8744,7 +8744,7 @@
}
},
{
- "id": 16417,
+ "id": 16886,
"properties": {
"east": "tall",
"north": "tall",
@@ -8755,7 +8755,7 @@
}
},
{
- "id": 16418,
+ "id": 16887,
"properties": {
"east": "tall",
"north": "tall",
@@ -8766,7 +8766,7 @@
}
},
{
- "id": 16419,
+ "id": 16888,
"properties": {
"east": "tall",
"north": "tall",
@@ -8777,7 +8777,7 @@
}
},
{
- "id": 16420,
+ "id": 16889,
"properties": {
"east": "tall",
"north": "tall",
@@ -8788,7 +8788,7 @@
}
},
{
- "id": 16421,
+ "id": 16890,
"properties": {
"east": "tall",
"north": "tall",
@@ -8799,7 +8799,7 @@
}
},
{
- "id": 16422,
+ "id": 16891,
"properties": {
"east": "tall",
"north": "tall",
@@ -8810,7 +8810,7 @@
}
},
{
- "id": 16423,
+ "id": 16892,
"properties": {
"east": "tall",
"north": "tall",
@@ -8821,7 +8821,7 @@
}
},
{
- "id": 16424,
+ "id": 16893,
"properties": {
"east": "tall",
"north": "tall",
@@ -8832,7 +8832,7 @@
}
},
{
- "id": 16425,
+ "id": 16894,
"properties": {
"east": "tall",
"north": "tall",
@@ -8843,7 +8843,7 @@
}
},
{
- "id": 16426,
+ "id": 16895,
"properties": {
"east": "tall",
"north": "tall",
@@ -8854,7 +8854,7 @@
}
},
{
- "id": 16427,
+ "id": 16896,
"properties": {
"east": "tall",
"north": "tall",
@@ -8865,7 +8865,7 @@
}
},
{
- "id": 16428,
+ "id": 16897,
"properties": {
"east": "tall",
"north": "tall",
@@ -8876,7 +8876,7 @@
}
},
{
- "id": 16429,
+ "id": 16898,
"properties": {
"east": "tall",
"north": "tall",
@@ -8887,7 +8887,7 @@
}
},
{
- "id": 16430,
+ "id": 16899,
"properties": {
"east": "tall",
"north": "tall",
@@ -8898,7 +8898,7 @@
}
},
{
- "id": 16431,
+ "id": 16900,
"properties": {
"east": "tall",
"north": "tall",
@@ -8909,7 +8909,7 @@
}
},
{
- "id": 16432,
+ "id": 16901,
"properties": {
"east": "tall",
"north": "tall",
@@ -8920,7 +8920,7 @@
}
},
{
- "id": 16433,
+ "id": 16902,
"properties": {
"east": "tall",
"north": "tall",
@@ -8931,7 +8931,7 @@
}
},
{
- "id": 16434,
+ "id": 16903,
"properties": {
"east": "tall",
"north": "tall",
@@ -8942,7 +8942,7 @@
}
},
{
- "id": 16435,
+ "id": 16904,
"properties": {
"east": "tall",
"north": "tall",
@@ -8953,7 +8953,7 @@
}
},
{
- "id": 16436,
+ "id": 16905,
"properties": {
"east": "tall",
"north": "tall",
@@ -8964,7 +8964,7 @@
}
},
{
- "id": 16437,
+ "id": 16906,
"properties": {
"east": "tall",
"north": "tall",
@@ -8975,7 +8975,7 @@
}
},
{
- "id": 16438,
+ "id": 16907,
"properties": {
"east": "tall",
"north": "tall",
@@ -8986,7 +8986,7 @@
}
},
{
- "id": 16439,
+ "id": 16908,
"properties": {
"east": "tall",
"north": "tall",
@@ -8997,7 +8997,7 @@
}
},
{
- "id": 16440,
+ "id": 16909,
"properties": {
"east": "tall",
"north": "tall",
@@ -9008,7 +9008,7 @@
}
},
{
- "id": 16441,
+ "id": 16910,
"properties": {
"east": "tall",
"north": "tall",
@@ -9019,7 +9019,7 @@
}
},
{
- "id": 16442,
+ "id": 16911,
"properties": {
"east": "tall",
"north": "tall",
@@ -9030,7 +9030,7 @@
}
},
{
- "id": 16443,
+ "id": 16912,
"properties": {
"east": "tall",
"north": "tall",
@@ -9041,7 +9041,7 @@
}
},
{
- "id": 16444,
+ "id": 16913,
"properties": {
"east": "tall",
"north": "tall",
@@ -9052,7 +9052,7 @@
}
},
{
- "id": 16445,
+ "id": 16914,
"properties": {
"east": "tall",
"north": "tall",
@@ -9063,7 +9063,7 @@
}
},
{
- "id": 16446,
+ "id": 16915,
"properties": {
"east": "tall",
"north": "tall",
@@ -9074,7 +9074,7 @@
}
},
{
- "id": 16447,
+ "id": 16916,
"properties": {
"east": "tall",
"north": "tall",
@@ -9098,25 +9098,25 @@
"states": [
{
"default": true,
- "id": 8711,
+ "id": 8963,
"properties": {
"facing": "north"
}
},
{
- "id": 8712,
+ "id": 8964,
"properties": {
"facing": "south"
}
},
{
- "id": 8713,
+ "id": 8965,
"properties": {
"facing": "west"
}
},
{
- "id": 8714,
+ "id": 8966,
"properties": {
"facing": "east"
}
@@ -9135,25 +9135,25 @@
"states": [
{
"default": true,
- "id": 6587,
+ "id": 6813,
"properties": {
"facing": "north"
}
},
{
- "id": 6588,
+ "id": 6814,
"properties": {
"facing": "south"
}
},
{
- "id": 6589,
+ "id": 6815,
"properties": {
"facing": "west"
}
},
{
- "id": 6590,
+ "id": 6816,
"properties": {
"facing": "east"
}
@@ -9172,25 +9172,25 @@
"states": [
{
"default": true,
- "id": 6583,
+ "id": 6809,
"properties": {
"facing": "north"
}
},
{
- "id": 6584,
+ "id": 6810,
"properties": {
"facing": "south"
}
},
{
- "id": 6585,
+ "id": 6811,
"properties": {
"facing": "west"
}
},
{
- "id": 6586,
+ "id": 6812,
"properties": {
"facing": "east"
}
@@ -9201,7 +9201,7 @@
"states": [
{
"default": true,
- "id": 21498
+ "id": 21967
}
]
},
@@ -9227,7 +9227,7 @@
},
"states": [
{
- "id": 410,
+ "id": 457,
"properties": {
"distance": "1",
"persistent": "true",
@@ -9235,7 +9235,7 @@
}
},
{
- "id": 411,
+ "id": 458,
"properties": {
"distance": "1",
"persistent": "true",
@@ -9243,7 +9243,7 @@
}
},
{
- "id": 412,
+ "id": 459,
"properties": {
"distance": "1",
"persistent": "false",
@@ -9251,7 +9251,7 @@
}
},
{
- "id": 413,
+ "id": 460,
"properties": {
"distance": "1",
"persistent": "false",
@@ -9259,7 +9259,7 @@
}
},
{
- "id": 414,
+ "id": 461,
"properties": {
"distance": "2",
"persistent": "true",
@@ -9267,7 +9267,7 @@
}
},
{
- "id": 415,
+ "id": 462,
"properties": {
"distance": "2",
"persistent": "true",
@@ -9275,7 +9275,7 @@
}
},
{
- "id": 416,
+ "id": 463,
"properties": {
"distance": "2",
"persistent": "false",
@@ -9283,7 +9283,7 @@
}
},
{
- "id": 417,
+ "id": 464,
"properties": {
"distance": "2",
"persistent": "false",
@@ -9291,7 +9291,7 @@
}
},
{
- "id": 418,
+ "id": 465,
"properties": {
"distance": "3",
"persistent": "true",
@@ -9299,7 +9299,7 @@
}
},
{
- "id": 419,
+ "id": 466,
"properties": {
"distance": "3",
"persistent": "true",
@@ -9307,7 +9307,7 @@
}
},
{
- "id": 420,
+ "id": 467,
"properties": {
"distance": "3",
"persistent": "false",
@@ -9315,7 +9315,7 @@
}
},
{
- "id": 421,
+ "id": 468,
"properties": {
"distance": "3",
"persistent": "false",
@@ -9323,7 +9323,7 @@
}
},
{
- "id": 422,
+ "id": 469,
"properties": {
"distance": "4",
"persistent": "true",
@@ -9331,7 +9331,7 @@
}
},
{
- "id": 423,
+ "id": 470,
"properties": {
"distance": "4",
"persistent": "true",
@@ -9339,7 +9339,7 @@
}
},
{
- "id": 424,
+ "id": 471,
"properties": {
"distance": "4",
"persistent": "false",
@@ -9347,7 +9347,7 @@
}
},
{
- "id": 425,
+ "id": 472,
"properties": {
"distance": "4",
"persistent": "false",
@@ -9355,7 +9355,7 @@
}
},
{
- "id": 426,
+ "id": 473,
"properties": {
"distance": "5",
"persistent": "true",
@@ -9363,7 +9363,7 @@
}
},
{
- "id": 427,
+ "id": 474,
"properties": {
"distance": "5",
"persistent": "true",
@@ -9371,7 +9371,7 @@
}
},
{
- "id": 428,
+ "id": 475,
"properties": {
"distance": "5",
"persistent": "false",
@@ -9379,7 +9379,7 @@
}
},
{
- "id": 429,
+ "id": 476,
"properties": {
"distance": "5",
"persistent": "false",
@@ -9387,7 +9387,7 @@
}
},
{
- "id": 430,
+ "id": 477,
"properties": {
"distance": "6",
"persistent": "true",
@@ -9395,7 +9395,7 @@
}
},
{
- "id": 431,
+ "id": 478,
"properties": {
"distance": "6",
"persistent": "true",
@@ -9403,7 +9403,7 @@
}
},
{
- "id": 432,
+ "id": 479,
"properties": {
"distance": "6",
"persistent": "false",
@@ -9411,7 +9411,7 @@
}
},
{
- "id": 433,
+ "id": 480,
"properties": {
"distance": "6",
"persistent": "false",
@@ -9419,7 +9419,7 @@
}
},
{
- "id": 434,
+ "id": 481,
"properties": {
"distance": "7",
"persistent": "true",
@@ -9427,7 +9427,7 @@
}
},
{
- "id": 435,
+ "id": 482,
"properties": {
"distance": "7",
"persistent": "true",
@@ -9435,7 +9435,7 @@
}
},
{
- "id": 436,
+ "id": 483,
"properties": {
"distance": "7",
"persistent": "false",
@@ -9444,7 +9444,7 @@
},
{
"default": true,
- "id": 437,
+ "id": 484,
"properties": {
"distance": "7",
"persistent": "false",
@@ -9457,7 +9457,7 @@
"states": [
{
"default": true,
- "id": 2028
+ "id": 2076
}
]
},
@@ -9480,7 +9480,7 @@
"states": [
{
"default": true,
- "id": 12317,
+ "id": 12786,
"properties": {
"age": "0",
"leaves": "none",
@@ -9488,7 +9488,7 @@
}
},
{
- "id": 12318,
+ "id": 12787,
"properties": {
"age": "0",
"leaves": "none",
@@ -9496,7 +9496,7 @@
}
},
{
- "id": 12319,
+ "id": 12788,
"properties": {
"age": "0",
"leaves": "small",
@@ -9504,7 +9504,7 @@
}
},
{
- "id": 12320,
+ "id": 12789,
"properties": {
"age": "0",
"leaves": "small",
@@ -9512,7 +9512,7 @@
}
},
{
- "id": 12321,
+ "id": 12790,
"properties": {
"age": "0",
"leaves": "large",
@@ -9520,7 +9520,7 @@
}
},
{
- "id": 12322,
+ "id": 12791,
"properties": {
"age": "0",
"leaves": "large",
@@ -9528,7 +9528,7 @@
}
},
{
- "id": 12323,
+ "id": 12792,
"properties": {
"age": "1",
"leaves": "none",
@@ -9536,7 +9536,7 @@
}
},
{
- "id": 12324,
+ "id": 12793,
"properties": {
"age": "1",
"leaves": "none",
@@ -9544,7 +9544,7 @@
}
},
{
- "id": 12325,
+ "id": 12794,
"properties": {
"age": "1",
"leaves": "small",
@@ -9552,7 +9552,7 @@
}
},
{
- "id": 12326,
+ "id": 12795,
"properties": {
"age": "1",
"leaves": "small",
@@ -9560,7 +9560,7 @@
}
},
{
- "id": 12327,
+ "id": 12796,
"properties": {
"age": "1",
"leaves": "large",
@@ -9568,7 +9568,7 @@
}
},
{
- "id": 12328,
+ "id": 12797,
"properties": {
"age": "1",
"leaves": "large",
@@ -9587,20 +9587,20 @@
},
"states": [
{
- "id": 145,
+ "id": 155,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 146,
+ "id": 156,
"properties": {
"axis": "y"
}
},
{
- "id": 147,
+ "id": 157,
"properties": {
"axis": "z"
}
@@ -9627,7 +9627,7 @@
},
"states": [
{
- "id": 8547,
+ "id": 8799,
"properties": {
"face": "floor",
"facing": "north",
@@ -9635,7 +9635,7 @@
}
},
{
- "id": 8548,
+ "id": 8800,
"properties": {
"face": "floor",
"facing": "north",
@@ -9643,7 +9643,7 @@
}
},
{
- "id": 8549,
+ "id": 8801,
"properties": {
"face": "floor",
"facing": "south",
@@ -9651,7 +9651,7 @@
}
},
{
- "id": 8550,
+ "id": 8802,
"properties": {
"face": "floor",
"facing": "south",
@@ -9659,7 +9659,7 @@
}
},
{
- "id": 8551,
+ "id": 8803,
"properties": {
"face": "floor",
"facing": "west",
@@ -9667,7 +9667,7 @@
}
},
{
- "id": 8552,
+ "id": 8804,
"properties": {
"face": "floor",
"facing": "west",
@@ -9675,7 +9675,7 @@
}
},
{
- "id": 8553,
+ "id": 8805,
"properties": {
"face": "floor",
"facing": "east",
@@ -9683,7 +9683,7 @@
}
},
{
- "id": 8554,
+ "id": 8806,
"properties": {
"face": "floor",
"facing": "east",
@@ -9691,7 +9691,7 @@
}
},
{
- "id": 8555,
+ "id": 8807,
"properties": {
"face": "wall",
"facing": "north",
@@ -9700,7 +9700,7 @@
},
{
"default": true,
- "id": 8556,
+ "id": 8808,
"properties": {
"face": "wall",
"facing": "north",
@@ -9708,7 +9708,7 @@
}
},
{
- "id": 8557,
+ "id": 8809,
"properties": {
"face": "wall",
"facing": "south",
@@ -9716,7 +9716,7 @@
}
},
{
- "id": 8558,
+ "id": 8810,
"properties": {
"face": "wall",
"facing": "south",
@@ -9724,7 +9724,7 @@
}
},
{
- "id": 8559,
+ "id": 8811,
"properties": {
"face": "wall",
"facing": "west",
@@ -9732,7 +9732,7 @@
}
},
{
- "id": 8560,
+ "id": 8812,
"properties": {
"face": "wall",
"facing": "west",
@@ -9740,7 +9740,7 @@
}
},
{
- "id": 8561,
+ "id": 8813,
"properties": {
"face": "wall",
"facing": "east",
@@ -9748,7 +9748,7 @@
}
},
{
- "id": 8562,
+ "id": 8814,
"properties": {
"face": "wall",
"facing": "east",
@@ -9756,7 +9756,7 @@
}
},
{
- "id": 8563,
+ "id": 8815,
"properties": {
"face": "ceiling",
"facing": "north",
@@ -9764,7 +9764,7 @@
}
},
{
- "id": 8564,
+ "id": 8816,
"properties": {
"face": "ceiling",
"facing": "north",
@@ -9772,7 +9772,7 @@
}
},
{
- "id": 8565,
+ "id": 8817,
"properties": {
"face": "ceiling",
"facing": "south",
@@ -9780,7 +9780,7 @@
}
},
{
- "id": 8566,
+ "id": 8818,
"properties": {
"face": "ceiling",
"facing": "south",
@@ -9788,7 +9788,7 @@
}
},
{
- "id": 8567,
+ "id": 8819,
"properties": {
"face": "ceiling",
"facing": "west",
@@ -9796,7 +9796,7 @@
}
},
{
- "id": 8568,
+ "id": 8820,
"properties": {
"face": "ceiling",
"facing": "west",
@@ -9804,7 +9804,7 @@
}
},
{
- "id": 8569,
+ "id": 8821,
"properties": {
"face": "ceiling",
"facing": "east",
@@ -9812,7 +9812,7 @@
}
},
{
- "id": 8570,
+ "id": 8822,
"properties": {
"face": "ceiling",
"facing": "east",
@@ -9848,7 +9848,7 @@
},
"states": [
{
- "id": 11659,
+ "id": 12125,
"properties": {
"facing": "north",
"half": "upper",
@@ -9858,7 +9858,7 @@
}
},
{
- "id": 11660,
+ "id": 12126,
"properties": {
"facing": "north",
"half": "upper",
@@ -9868,7 +9868,7 @@
}
},
{
- "id": 11661,
+ "id": 12127,
"properties": {
"facing": "north",
"half": "upper",
@@ -9878,7 +9878,7 @@
}
},
{
- "id": 11662,
+ "id": 12128,
"properties": {
"facing": "north",
"half": "upper",
@@ -9888,7 +9888,7 @@
}
},
{
- "id": 11663,
+ "id": 12129,
"properties": {
"facing": "north",
"half": "upper",
@@ -9898,7 +9898,7 @@
}
},
{
- "id": 11664,
+ "id": 12130,
"properties": {
"facing": "north",
"half": "upper",
@@ -9908,7 +9908,7 @@
}
},
{
- "id": 11665,
+ "id": 12131,
"properties": {
"facing": "north",
"half": "upper",
@@ -9918,7 +9918,7 @@
}
},
{
- "id": 11666,
+ "id": 12132,
"properties": {
"facing": "north",
"half": "upper",
@@ -9928,7 +9928,7 @@
}
},
{
- "id": 11667,
+ "id": 12133,
"properties": {
"facing": "north",
"half": "lower",
@@ -9938,7 +9938,7 @@
}
},
{
- "id": 11668,
+ "id": 12134,
"properties": {
"facing": "north",
"half": "lower",
@@ -9948,7 +9948,7 @@
}
},
{
- "id": 11669,
+ "id": 12135,
"properties": {
"facing": "north",
"half": "lower",
@@ -9959,7 +9959,7 @@
},
{
"default": true,
- "id": 11670,
+ "id": 12136,
"properties": {
"facing": "north",
"half": "lower",
@@ -9969,7 +9969,7 @@
}
},
{
- "id": 11671,
+ "id": 12137,
"properties": {
"facing": "north",
"half": "lower",
@@ -9979,7 +9979,7 @@
}
},
{
- "id": 11672,
+ "id": 12138,
"properties": {
"facing": "north",
"half": "lower",
@@ -9989,7 +9989,7 @@
}
},
{
- "id": 11673,
+ "id": 12139,
"properties": {
"facing": "north",
"half": "lower",
@@ -9999,7 +9999,7 @@
}
},
{
- "id": 11674,
+ "id": 12140,
"properties": {
"facing": "north",
"half": "lower",
@@ -10009,7 +10009,7 @@
}
},
{
- "id": 11675,
+ "id": 12141,
"properties": {
"facing": "south",
"half": "upper",
@@ -10019,7 +10019,7 @@
}
},
{
- "id": 11676,
+ "id": 12142,
"properties": {
"facing": "south",
"half": "upper",
@@ -10029,7 +10029,7 @@
}
},
{
- "id": 11677,
+ "id": 12143,
"properties": {
"facing": "south",
"half": "upper",
@@ -10039,7 +10039,7 @@
}
},
{
- "id": 11678,
+ "id": 12144,
"properties": {
"facing": "south",
"half": "upper",
@@ -10049,7 +10049,7 @@
}
},
{
- "id": 11679,
+ "id": 12145,
"properties": {
"facing": "south",
"half": "upper",
@@ -10059,7 +10059,7 @@
}
},
{
- "id": 11680,
+ "id": 12146,
"properties": {
"facing": "south",
"half": "upper",
@@ -10069,7 +10069,7 @@
}
},
{
- "id": 11681,
+ "id": 12147,
"properties": {
"facing": "south",
"half": "upper",
@@ -10079,7 +10079,7 @@
}
},
{
- "id": 11682,
+ "id": 12148,
"properties": {
"facing": "south",
"half": "upper",
@@ -10089,7 +10089,7 @@
}
},
{
- "id": 11683,
+ "id": 12149,
"properties": {
"facing": "south",
"half": "lower",
@@ -10099,7 +10099,7 @@
}
},
{
- "id": 11684,
+ "id": 12150,
"properties": {
"facing": "south",
"half": "lower",
@@ -10109,7 +10109,7 @@
}
},
{
- "id": 11685,
+ "id": 12151,
"properties": {
"facing": "south",
"half": "lower",
@@ -10119,7 +10119,7 @@
}
},
{
- "id": 11686,
+ "id": 12152,
"properties": {
"facing": "south",
"half": "lower",
@@ -10129,7 +10129,7 @@
}
},
{
- "id": 11687,
+ "id": 12153,
"properties": {
"facing": "south",
"half": "lower",
@@ -10139,7 +10139,7 @@
}
},
{
- "id": 11688,
+ "id": 12154,
"properties": {
"facing": "south",
"half": "lower",
@@ -10149,7 +10149,7 @@
}
},
{
- "id": 11689,
+ "id": 12155,
"properties": {
"facing": "south",
"half": "lower",
@@ -10159,7 +10159,7 @@
}
},
{
- "id": 11690,
+ "id": 12156,
"properties": {
"facing": "south",
"half": "lower",
@@ -10169,7 +10169,7 @@
}
},
{
- "id": 11691,
+ "id": 12157,
"properties": {
"facing": "west",
"half": "upper",
@@ -10179,7 +10179,7 @@
}
},
{
- "id": 11692,
+ "id": 12158,
"properties": {
"facing": "west",
"half": "upper",
@@ -10189,7 +10189,7 @@
}
},
{
- "id": 11693,
+ "id": 12159,
"properties": {
"facing": "west",
"half": "upper",
@@ -10199,7 +10199,7 @@
}
},
{
- "id": 11694,
+ "id": 12160,
"properties": {
"facing": "west",
"half": "upper",
@@ -10209,7 +10209,7 @@
}
},
{
- "id": 11695,
+ "id": 12161,
"properties": {
"facing": "west",
"half": "upper",
@@ -10219,7 +10219,7 @@
}
},
{
- "id": 11696,
+ "id": 12162,
"properties": {
"facing": "west",
"half": "upper",
@@ -10229,7 +10229,7 @@
}
},
{
- "id": 11697,
+ "id": 12163,
"properties": {
"facing": "west",
"half": "upper",
@@ -10239,7 +10239,7 @@
}
},
{
- "id": 11698,
+ "id": 12164,
"properties": {
"facing": "west",
"half": "upper",
@@ -10249,7 +10249,7 @@
}
},
{
- "id": 11699,
+ "id": 12165,
"properties": {
"facing": "west",
"half": "lower",
@@ -10259,7 +10259,7 @@
}
},
{
- "id": 11700,
+ "id": 12166,
"properties": {
"facing": "west",
"half": "lower",
@@ -10269,7 +10269,7 @@
}
},
{
- "id": 11701,
+ "id": 12167,
"properties": {
"facing": "west",
"half": "lower",
@@ -10279,7 +10279,7 @@
}
},
{
- "id": 11702,
+ "id": 12168,
"properties": {
"facing": "west",
"half": "lower",
@@ -10289,7 +10289,7 @@
}
},
{
- "id": 11703,
+ "id": 12169,
"properties": {
"facing": "west",
"half": "lower",
@@ -10299,7 +10299,7 @@
}
},
{
- "id": 11704,
+ "id": 12170,
"properties": {
"facing": "west",
"half": "lower",
@@ -10309,7 +10309,7 @@
}
},
{
- "id": 11705,
+ "id": 12171,
"properties": {
"facing": "west",
"half": "lower",
@@ -10319,7 +10319,7 @@
}
},
{
- "id": 11706,
+ "id": 12172,
"properties": {
"facing": "west",
"half": "lower",
@@ -10329,7 +10329,7 @@
}
},
{
- "id": 11707,
+ "id": 12173,
"properties": {
"facing": "east",
"half": "upper",
@@ -10339,7 +10339,7 @@
}
},
{
- "id": 11708,
+ "id": 12174,
"properties": {
"facing": "east",
"half": "upper",
@@ -10349,7 +10349,7 @@
}
},
{
- "id": 11709,
+ "id": 12175,
"properties": {
"facing": "east",
"half": "upper",
@@ -10359,7 +10359,7 @@
}
},
{
- "id": 11710,
+ "id": 12176,
"properties": {
"facing": "east",
"half": "upper",
@@ -10369,7 +10369,7 @@
}
},
{
- "id": 11711,
+ "id": 12177,
"properties": {
"facing": "east",
"half": "upper",
@@ -10379,7 +10379,7 @@
}
},
{
- "id": 11712,
+ "id": 12178,
"properties": {
"facing": "east",
"half": "upper",
@@ -10389,7 +10389,7 @@
}
},
{
- "id": 11713,
+ "id": 12179,
"properties": {
"facing": "east",
"half": "upper",
@@ -10399,7 +10399,7 @@
}
},
{
- "id": 11714,
+ "id": 12180,
"properties": {
"facing": "east",
"half": "upper",
@@ -10409,7 +10409,7 @@
}
},
{
- "id": 11715,
+ "id": 12181,
"properties": {
"facing": "east",
"half": "lower",
@@ -10419,7 +10419,7 @@
}
},
{
- "id": 11716,
+ "id": 12182,
"properties": {
"facing": "east",
"half": "lower",
@@ -10429,7 +10429,7 @@
}
},
{
- "id": 11717,
+ "id": 12183,
"properties": {
"facing": "east",
"half": "lower",
@@ -10439,7 +10439,7 @@
}
},
{
- "id": 11718,
+ "id": 12184,
"properties": {
"facing": "east",
"half": "lower",
@@ -10449,7 +10449,7 @@
}
},
{
- "id": 11719,
+ "id": 12185,
"properties": {
"facing": "east",
"half": "lower",
@@ -10459,7 +10459,7 @@
}
},
{
- "id": 11720,
+ "id": 12186,
"properties": {
"facing": "east",
"half": "lower",
@@ -10469,7 +10469,7 @@
}
},
{
- "id": 11721,
+ "id": 12187,
"properties": {
"facing": "east",
"half": "lower",
@@ -10479,7 +10479,7 @@
}
},
{
- "id": 11722,
+ "id": 12188,
"properties": {
"facing": "east",
"half": "lower",
@@ -10515,7 +10515,7 @@
},
"states": [
{
- "id": 11243,
+ "id": 11645,
"properties": {
"east": "true",
"north": "true",
@@ -10525,7 +10525,7 @@
}
},
{
- "id": 11244,
+ "id": 11646,
"properties": {
"east": "true",
"north": "true",
@@ -10535,7 +10535,7 @@
}
},
{
- "id": 11245,
+ "id": 11647,
"properties": {
"east": "true",
"north": "true",
@@ -10545,7 +10545,7 @@
}
},
{
- "id": 11246,
+ "id": 11648,
"properties": {
"east": "true",
"north": "true",
@@ -10555,7 +10555,7 @@
}
},
{
- "id": 11247,
+ "id": 11649,
"properties": {
"east": "true",
"north": "true",
@@ -10565,7 +10565,7 @@
}
},
{
- "id": 11248,
+ "id": 11650,
"properties": {
"east": "true",
"north": "true",
@@ -10575,7 +10575,7 @@
}
},
{
- "id": 11249,
+ "id": 11651,
"properties": {
"east": "true",
"north": "true",
@@ -10585,7 +10585,7 @@
}
},
{
- "id": 11250,
+ "id": 11652,
"properties": {
"east": "true",
"north": "true",
@@ -10595,7 +10595,7 @@
}
},
{
- "id": 11251,
+ "id": 11653,
"properties": {
"east": "true",
"north": "false",
@@ -10605,7 +10605,7 @@
}
},
{
- "id": 11252,
+ "id": 11654,
"properties": {
"east": "true",
"north": "false",
@@ -10615,7 +10615,7 @@
}
},
{
- "id": 11253,
+ "id": 11655,
"properties": {
"east": "true",
"north": "false",
@@ -10625,7 +10625,7 @@
}
},
{
- "id": 11254,
+ "id": 11656,
"properties": {
"east": "true",
"north": "false",
@@ -10635,7 +10635,7 @@
}
},
{
- "id": 11255,
+ "id": 11657,
"properties": {
"east": "true",
"north": "false",
@@ -10645,7 +10645,7 @@
}
},
{
- "id": 11256,
+ "id": 11658,
"properties": {
"east": "true",
"north": "false",
@@ -10655,7 +10655,7 @@
}
},
{
- "id": 11257,
+ "id": 11659,
"properties": {
"east": "true",
"north": "false",
@@ -10665,7 +10665,7 @@
}
},
{
- "id": 11258,
+ "id": 11660,
"properties": {
"east": "true",
"north": "false",
@@ -10675,7 +10675,7 @@
}
},
{
- "id": 11259,
+ "id": 11661,
"properties": {
"east": "false",
"north": "true",
@@ -10685,7 +10685,7 @@
}
},
{
- "id": 11260,
+ "id": 11662,
"properties": {
"east": "false",
"north": "true",
@@ -10695,7 +10695,7 @@
}
},
{
- "id": 11261,
+ "id": 11663,
"properties": {
"east": "false",
"north": "true",
@@ -10705,7 +10705,7 @@
}
},
{
- "id": 11262,
+ "id": 11664,
"properties": {
"east": "false",
"north": "true",
@@ -10715,7 +10715,7 @@
}
},
{
- "id": 11263,
+ "id": 11665,
"properties": {
"east": "false",
"north": "true",
@@ -10725,7 +10725,7 @@
}
},
{
- "id": 11264,
+ "id": 11666,
"properties": {
"east": "false",
"north": "true",
@@ -10735,7 +10735,7 @@
}
},
{
- "id": 11265,
+ "id": 11667,
"properties": {
"east": "false",
"north": "true",
@@ -10745,7 +10745,7 @@
}
},
{
- "id": 11266,
+ "id": 11668,
"properties": {
"east": "false",
"north": "true",
@@ -10755,7 +10755,7 @@
}
},
{
- "id": 11267,
+ "id": 11669,
"properties": {
"east": "false",
"north": "false",
@@ -10765,7 +10765,7 @@
}
},
{
- "id": 11268,
+ "id": 11670,
"properties": {
"east": "false",
"north": "false",
@@ -10775,7 +10775,7 @@
}
},
{
- "id": 11269,
+ "id": 11671,
"properties": {
"east": "false",
"north": "false",
@@ -10785,7 +10785,7 @@
}
},
{
- "id": 11270,
+ "id": 11672,
"properties": {
"east": "false",
"north": "false",
@@ -10795,7 +10795,7 @@
}
},
{
- "id": 11271,
+ "id": 11673,
"properties": {
"east": "false",
"north": "false",
@@ -10805,7 +10805,7 @@
}
},
{
- "id": 11272,
+ "id": 11674,
"properties": {
"east": "false",
"north": "false",
@@ -10815,7 +10815,7 @@
}
},
{
- "id": 11273,
+ "id": 11675,
"properties": {
"east": "false",
"north": "false",
@@ -10826,7 +10826,7 @@
},
{
"default": true,
- "id": 11274,
+ "id": 11676,
"properties": {
"east": "false",
"north": "false",
@@ -10860,7 +10860,7 @@
},
"states": [
{
- "id": 11019,
+ "id": 11389,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -10869,7 +10869,7 @@
}
},
{
- "id": 11020,
+ "id": 11390,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -10878,7 +10878,7 @@
}
},
{
- "id": 11021,
+ "id": 11391,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -10887,7 +10887,7 @@
}
},
{
- "id": 11022,
+ "id": 11392,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -10896,7 +10896,7 @@
}
},
{
- "id": 11023,
+ "id": 11393,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -10905,7 +10905,7 @@
}
},
{
- "id": 11024,
+ "id": 11394,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -10914,7 +10914,7 @@
}
},
{
- "id": 11025,
+ "id": 11395,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -10924,7 +10924,7 @@
},
{
"default": true,
- "id": 11026,
+ "id": 11396,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -10933,7 +10933,7 @@
}
},
{
- "id": 11027,
+ "id": 11397,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -10942,7 +10942,7 @@
}
},
{
- "id": 11028,
+ "id": 11398,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -10951,7 +10951,7 @@
}
},
{
- "id": 11029,
+ "id": 11399,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -10960,7 +10960,7 @@
}
},
{
- "id": 11030,
+ "id": 11400,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -10969,7 +10969,7 @@
}
},
{
- "id": 11031,
+ "id": 11401,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -10978,7 +10978,7 @@
}
},
{
- "id": 11032,
+ "id": 11402,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -10987,7 +10987,7 @@
}
},
{
- "id": 11033,
+ "id": 11403,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -10996,7 +10996,7 @@
}
},
{
- "id": 11034,
+ "id": 11404,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -11005,7 +11005,7 @@
}
},
{
- "id": 11035,
+ "id": 11405,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -11014,7 +11014,7 @@
}
},
{
- "id": 11036,
+ "id": 11406,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -11023,7 +11023,7 @@
}
},
{
- "id": 11037,
+ "id": 11407,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -11032,7 +11032,7 @@
}
},
{
- "id": 11038,
+ "id": 11408,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -11041,7 +11041,7 @@
}
},
{
- "id": 11039,
+ "id": 11409,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -11050,7 +11050,7 @@
}
},
{
- "id": 11040,
+ "id": 11410,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -11059,7 +11059,7 @@
}
},
{
- "id": 11041,
+ "id": 11411,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -11068,7 +11068,7 @@
}
},
{
- "id": 11042,
+ "id": 11412,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -11077,7 +11077,7 @@
}
},
{
- "id": 11043,
+ "id": 11413,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -11086,7 +11086,7 @@
}
},
{
- "id": 11044,
+ "id": 11414,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -11095,7 +11095,7 @@
}
},
{
- "id": 11045,
+ "id": 11415,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -11104,7 +11104,7 @@
}
},
{
- "id": 11046,
+ "id": 11416,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -11113,7 +11113,7 @@
}
},
{
- "id": 11047,
+ "id": 11417,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -11122,7 +11122,7 @@
}
},
{
- "id": 11048,
+ "id": 11418,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -11131,7 +11131,7 @@
}
},
{
- "id": 11049,
+ "id": 11419,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -11140,7 +11140,7 @@
}
},
{
- "id": 11050,
+ "id": 11420,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -11181,7 +11181,7 @@
},
"states": [
{
- "id": 5318,
+ "id": 5470,
"properties": {
"attached": "true",
"rotation": "0",
@@ -11189,7 +11189,7 @@
}
},
{
- "id": 5319,
+ "id": 5471,
"properties": {
"attached": "true",
"rotation": "0",
@@ -11197,7 +11197,7 @@
}
},
{
- "id": 5320,
+ "id": 5472,
"properties": {
"attached": "true",
"rotation": "1",
@@ -11205,7 +11205,7 @@
}
},
{
- "id": 5321,
+ "id": 5473,
"properties": {
"attached": "true",
"rotation": "1",
@@ -11213,7 +11213,7 @@
}
},
{
- "id": 5322,
+ "id": 5474,
"properties": {
"attached": "true",
"rotation": "2",
@@ -11221,7 +11221,7 @@
}
},
{
- "id": 5323,
+ "id": 5475,
"properties": {
"attached": "true",
"rotation": "2",
@@ -11229,7 +11229,7 @@
}
},
{
- "id": 5324,
+ "id": 5476,
"properties": {
"attached": "true",
"rotation": "3",
@@ -11237,7 +11237,7 @@
}
},
{
- "id": 5325,
+ "id": 5477,
"properties": {
"attached": "true",
"rotation": "3",
@@ -11245,7 +11245,7 @@
}
},
{
- "id": 5326,
+ "id": 5478,
"properties": {
"attached": "true",
"rotation": "4",
@@ -11253,7 +11253,7 @@
}
},
{
- "id": 5327,
+ "id": 5479,
"properties": {
"attached": "true",
"rotation": "4",
@@ -11261,7 +11261,7 @@
}
},
{
- "id": 5328,
+ "id": 5480,
"properties": {
"attached": "true",
"rotation": "5",
@@ -11269,7 +11269,7 @@
}
},
{
- "id": 5329,
+ "id": 5481,
"properties": {
"attached": "true",
"rotation": "5",
@@ -11277,7 +11277,7 @@
}
},
{
- "id": 5330,
+ "id": 5482,
"properties": {
"attached": "true",
"rotation": "6",
@@ -11285,7 +11285,7 @@
}
},
{
- "id": 5331,
+ "id": 5483,
"properties": {
"attached": "true",
"rotation": "6",
@@ -11293,7 +11293,7 @@
}
},
{
- "id": 5332,
+ "id": 5484,
"properties": {
"attached": "true",
"rotation": "7",
@@ -11301,7 +11301,7 @@
}
},
{
- "id": 5333,
+ "id": 5485,
"properties": {
"attached": "true",
"rotation": "7",
@@ -11309,7 +11309,7 @@
}
},
{
- "id": 5334,
+ "id": 5486,
"properties": {
"attached": "true",
"rotation": "8",
@@ -11317,7 +11317,7 @@
}
},
{
- "id": 5335,
+ "id": 5487,
"properties": {
"attached": "true",
"rotation": "8",
@@ -11325,7 +11325,7 @@
}
},
{
- "id": 5336,
+ "id": 5488,
"properties": {
"attached": "true",
"rotation": "9",
@@ -11333,7 +11333,7 @@
}
},
{
- "id": 5337,
+ "id": 5489,
"properties": {
"attached": "true",
"rotation": "9",
@@ -11341,7 +11341,7 @@
}
},
{
- "id": 5338,
+ "id": 5490,
"properties": {
"attached": "true",
"rotation": "10",
@@ -11349,7 +11349,7 @@
}
},
{
- "id": 5339,
+ "id": 5491,
"properties": {
"attached": "true",
"rotation": "10",
@@ -11357,7 +11357,7 @@
}
},
{
- "id": 5340,
+ "id": 5492,
"properties": {
"attached": "true",
"rotation": "11",
@@ -11365,7 +11365,7 @@
}
},
{
- "id": 5341,
+ "id": 5493,
"properties": {
"attached": "true",
"rotation": "11",
@@ -11373,7 +11373,7 @@
}
},
{
- "id": 5342,
+ "id": 5494,
"properties": {
"attached": "true",
"rotation": "12",
@@ -11381,7 +11381,7 @@
}
},
{
- "id": 5343,
+ "id": 5495,
"properties": {
"attached": "true",
"rotation": "12",
@@ -11389,7 +11389,7 @@
}
},
{
- "id": 5344,
+ "id": 5496,
"properties": {
"attached": "true",
"rotation": "13",
@@ -11397,7 +11397,7 @@
}
},
{
- "id": 5345,
+ "id": 5497,
"properties": {
"attached": "true",
"rotation": "13",
@@ -11405,7 +11405,7 @@
}
},
{
- "id": 5346,
+ "id": 5498,
"properties": {
"attached": "true",
"rotation": "14",
@@ -11413,7 +11413,7 @@
}
},
{
- "id": 5347,
+ "id": 5499,
"properties": {
"attached": "true",
"rotation": "14",
@@ -11421,7 +11421,7 @@
}
},
{
- "id": 5348,
+ "id": 5500,
"properties": {
"attached": "true",
"rotation": "15",
@@ -11429,7 +11429,7 @@
}
},
{
- "id": 5349,
+ "id": 5501,
"properties": {
"attached": "true",
"rotation": "15",
@@ -11437,7 +11437,7 @@
}
},
{
- "id": 5350,
+ "id": 5502,
"properties": {
"attached": "false",
"rotation": "0",
@@ -11446,7 +11446,7 @@
},
{
"default": true,
- "id": 5351,
+ "id": 5503,
"properties": {
"attached": "false",
"rotation": "0",
@@ -11454,7 +11454,7 @@
}
},
{
- "id": 5352,
+ "id": 5504,
"properties": {
"attached": "false",
"rotation": "1",
@@ -11462,7 +11462,7 @@
}
},
{
- "id": 5353,
+ "id": 5505,
"properties": {
"attached": "false",
"rotation": "1",
@@ -11470,7 +11470,7 @@
}
},
{
- "id": 5354,
+ "id": 5506,
"properties": {
"attached": "false",
"rotation": "2",
@@ -11478,7 +11478,7 @@
}
},
{
- "id": 5355,
+ "id": 5507,
"properties": {
"attached": "false",
"rotation": "2",
@@ -11486,7 +11486,7 @@
}
},
{
- "id": 5356,
+ "id": 5508,
"properties": {
"attached": "false",
"rotation": "3",
@@ -11494,7 +11494,7 @@
}
},
{
- "id": 5357,
+ "id": 5509,
"properties": {
"attached": "false",
"rotation": "3",
@@ -11502,7 +11502,7 @@
}
},
{
- "id": 5358,
+ "id": 5510,
"properties": {
"attached": "false",
"rotation": "4",
@@ -11510,7 +11510,7 @@
}
},
{
- "id": 5359,
+ "id": 5511,
"properties": {
"attached": "false",
"rotation": "4",
@@ -11518,7 +11518,7 @@
}
},
{
- "id": 5360,
+ "id": 5512,
"properties": {
"attached": "false",
"rotation": "5",
@@ -11526,7 +11526,7 @@
}
},
{
- "id": 5361,
+ "id": 5513,
"properties": {
"attached": "false",
"rotation": "5",
@@ -11534,7 +11534,7 @@
}
},
{
- "id": 5362,
+ "id": 5514,
"properties": {
"attached": "false",
"rotation": "6",
@@ -11542,7 +11542,7 @@
}
},
{
- "id": 5363,
+ "id": 5515,
"properties": {
"attached": "false",
"rotation": "6",
@@ -11550,7 +11550,7 @@
}
},
{
- "id": 5364,
+ "id": 5516,
"properties": {
"attached": "false",
"rotation": "7",
@@ -11558,7 +11558,7 @@
}
},
{
- "id": 5365,
+ "id": 5517,
"properties": {
"attached": "false",
"rotation": "7",
@@ -11566,7 +11566,7 @@
}
},
{
- "id": 5366,
+ "id": 5518,
"properties": {
"attached": "false",
"rotation": "8",
@@ -11574,7 +11574,7 @@
}
},
{
- "id": 5367,
+ "id": 5519,
"properties": {
"attached": "false",
"rotation": "8",
@@ -11582,7 +11582,7 @@
}
},
{
- "id": 5368,
+ "id": 5520,
"properties": {
"attached": "false",
"rotation": "9",
@@ -11590,7 +11590,7 @@
}
},
{
- "id": 5369,
+ "id": 5521,
"properties": {
"attached": "false",
"rotation": "9",
@@ -11598,7 +11598,7 @@
}
},
{
- "id": 5370,
+ "id": 5522,
"properties": {
"attached": "false",
"rotation": "10",
@@ -11606,7 +11606,7 @@
}
},
{
- "id": 5371,
+ "id": 5523,
"properties": {
"attached": "false",
"rotation": "10",
@@ -11614,7 +11614,7 @@
}
},
{
- "id": 5372,
+ "id": 5524,
"properties": {
"attached": "false",
"rotation": "11",
@@ -11622,7 +11622,7 @@
}
},
{
- "id": 5373,
+ "id": 5525,
"properties": {
"attached": "false",
"rotation": "11",
@@ -11630,7 +11630,7 @@
}
},
{
- "id": 5374,
+ "id": 5526,
"properties": {
"attached": "false",
"rotation": "12",
@@ -11638,7 +11638,7 @@
}
},
{
- "id": 5375,
+ "id": 5527,
"properties": {
"attached": "false",
"rotation": "12",
@@ -11646,7 +11646,7 @@
}
},
{
- "id": 5376,
+ "id": 5528,
"properties": {
"attached": "false",
"rotation": "13",
@@ -11654,7 +11654,7 @@
}
},
{
- "id": 5377,
+ "id": 5529,
"properties": {
"attached": "false",
"rotation": "13",
@@ -11662,7 +11662,7 @@
}
},
{
- "id": 5378,
+ "id": 5530,
"properties": {
"attached": "false",
"rotation": "14",
@@ -11670,7 +11670,7 @@
}
},
{
- "id": 5379,
+ "id": 5531,
"properties": {
"attached": "false",
"rotation": "14",
@@ -11678,7 +11678,7 @@
}
},
{
- "id": 5380,
+ "id": 5532,
"properties": {
"attached": "false",
"rotation": "15",
@@ -11686,7 +11686,7 @@
}
},
{
- "id": 5381,
+ "id": 5533,
"properties": {
"attached": "false",
"rotation": "15",
@@ -11699,7 +11699,7 @@
"states": [
{
"default": true,
- "id": 23
+ "id": 24
}
]
},
@@ -11717,21 +11717,21 @@
},
"states": [
{
- "id": 10733,
+ "id": 11071,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 10734,
+ "id": 11072,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 10735,
+ "id": 11073,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -11739,21 +11739,21 @@
},
{
"default": true,
- "id": 10736,
+ "id": 11074,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 10737,
+ "id": 11075,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 10738,
+ "id": 11076,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -11787,7 +11787,7 @@
},
"states": [
{
- "id": 9808,
+ "id": 10140,
"properties": {
"facing": "north",
"half": "top",
@@ -11796,7 +11796,7 @@
}
},
{
- "id": 9809,
+ "id": 10141,
"properties": {
"facing": "north",
"half": "top",
@@ -11805,7 +11805,7 @@
}
},
{
- "id": 9810,
+ "id": 10142,
"properties": {
"facing": "north",
"half": "top",
@@ -11814,7 +11814,7 @@
}
},
{
- "id": 9811,
+ "id": 10143,
"properties": {
"facing": "north",
"half": "top",
@@ -11823,7 +11823,7 @@
}
},
{
- "id": 9812,
+ "id": 10144,
"properties": {
"facing": "north",
"half": "top",
@@ -11832,7 +11832,7 @@
}
},
{
- "id": 9813,
+ "id": 10145,
"properties": {
"facing": "north",
"half": "top",
@@ -11841,7 +11841,7 @@
}
},
{
- "id": 9814,
+ "id": 10146,
"properties": {
"facing": "north",
"half": "top",
@@ -11850,7 +11850,7 @@
}
},
{
- "id": 9815,
+ "id": 10147,
"properties": {
"facing": "north",
"half": "top",
@@ -11859,7 +11859,7 @@
}
},
{
- "id": 9816,
+ "id": 10148,
"properties": {
"facing": "north",
"half": "top",
@@ -11868,7 +11868,7 @@
}
},
{
- "id": 9817,
+ "id": 10149,
"properties": {
"facing": "north",
"half": "top",
@@ -11877,7 +11877,7 @@
}
},
{
- "id": 9818,
+ "id": 10150,
"properties": {
"facing": "north",
"half": "bottom",
@@ -11887,7 +11887,7 @@
},
{
"default": true,
- "id": 9819,
+ "id": 10151,
"properties": {
"facing": "north",
"half": "bottom",
@@ -11896,7 +11896,7 @@
}
},
{
- "id": 9820,
+ "id": 10152,
"properties": {
"facing": "north",
"half": "bottom",
@@ -11905,7 +11905,7 @@
}
},
{
- "id": 9821,
+ "id": 10153,
"properties": {
"facing": "north",
"half": "bottom",
@@ -11914,7 +11914,7 @@
}
},
{
- "id": 9822,
+ "id": 10154,
"properties": {
"facing": "north",
"half": "bottom",
@@ -11923,7 +11923,7 @@
}
},
{
- "id": 9823,
+ "id": 10155,
"properties": {
"facing": "north",
"half": "bottom",
@@ -11932,7 +11932,7 @@
}
},
{
- "id": 9824,
+ "id": 10156,
"properties": {
"facing": "north",
"half": "bottom",
@@ -11941,7 +11941,7 @@
}
},
{
- "id": 9825,
+ "id": 10157,
"properties": {
"facing": "north",
"half": "bottom",
@@ -11950,7 +11950,7 @@
}
},
{
- "id": 9826,
+ "id": 10158,
"properties": {
"facing": "north",
"half": "bottom",
@@ -11959,7 +11959,7 @@
}
},
{
- "id": 9827,
+ "id": 10159,
"properties": {
"facing": "north",
"half": "bottom",
@@ -11968,7 +11968,7 @@
}
},
{
- "id": 9828,
+ "id": 10160,
"properties": {
"facing": "south",
"half": "top",
@@ -11977,7 +11977,7 @@
}
},
{
- "id": 9829,
+ "id": 10161,
"properties": {
"facing": "south",
"half": "top",
@@ -11986,7 +11986,7 @@
}
},
{
- "id": 9830,
+ "id": 10162,
"properties": {
"facing": "south",
"half": "top",
@@ -11995,7 +11995,7 @@
}
},
{
- "id": 9831,
+ "id": 10163,
"properties": {
"facing": "south",
"half": "top",
@@ -12004,7 +12004,7 @@
}
},
{
- "id": 9832,
+ "id": 10164,
"properties": {
"facing": "south",
"half": "top",
@@ -12013,7 +12013,7 @@
}
},
{
- "id": 9833,
+ "id": 10165,
"properties": {
"facing": "south",
"half": "top",
@@ -12022,7 +12022,7 @@
}
},
{
- "id": 9834,
+ "id": 10166,
"properties": {
"facing": "south",
"half": "top",
@@ -12031,7 +12031,7 @@
}
},
{
- "id": 9835,
+ "id": 10167,
"properties": {
"facing": "south",
"half": "top",
@@ -12040,7 +12040,7 @@
}
},
{
- "id": 9836,
+ "id": 10168,
"properties": {
"facing": "south",
"half": "top",
@@ -12049,7 +12049,7 @@
}
},
{
- "id": 9837,
+ "id": 10169,
"properties": {
"facing": "south",
"half": "top",
@@ -12058,7 +12058,7 @@
}
},
{
- "id": 9838,
+ "id": 10170,
"properties": {
"facing": "south",
"half": "bottom",
@@ -12067,7 +12067,7 @@
}
},
{
- "id": 9839,
+ "id": 10171,
"properties": {
"facing": "south",
"half": "bottom",
@@ -12076,7 +12076,7 @@
}
},
{
- "id": 9840,
+ "id": 10172,
"properties": {
"facing": "south",
"half": "bottom",
@@ -12085,7 +12085,7 @@
}
},
{
- "id": 9841,
+ "id": 10173,
"properties": {
"facing": "south",
"half": "bottom",
@@ -12094,7 +12094,7 @@
}
},
{
- "id": 9842,
+ "id": 10174,
"properties": {
"facing": "south",
"half": "bottom",
@@ -12103,7 +12103,7 @@
}
},
{
- "id": 9843,
+ "id": 10175,
"properties": {
"facing": "south",
"half": "bottom",
@@ -12112,7 +12112,7 @@
}
},
{
- "id": 9844,
+ "id": 10176,
"properties": {
"facing": "south",
"half": "bottom",
@@ -12121,7 +12121,7 @@
}
},
{
- "id": 9845,
+ "id": 10177,
"properties": {
"facing": "south",
"half": "bottom",
@@ -12130,7 +12130,7 @@
}
},
{
- "id": 9846,
+ "id": 10178,
"properties": {
"facing": "south",
"half": "bottom",
@@ -12139,7 +12139,7 @@
}
},
{
- "id": 9847,
+ "id": 10179,
"properties": {
"facing": "south",
"half": "bottom",
@@ -12148,7 +12148,7 @@
}
},
{
- "id": 9848,
+ "id": 10180,
"properties": {
"facing": "west",
"half": "top",
@@ -12157,7 +12157,7 @@
}
},
{
- "id": 9849,
+ "id": 10181,
"properties": {
"facing": "west",
"half": "top",
@@ -12166,7 +12166,7 @@
}
},
{
- "id": 9850,
+ "id": 10182,
"properties": {
"facing": "west",
"half": "top",
@@ -12175,7 +12175,7 @@
}
},
{
- "id": 9851,
+ "id": 10183,
"properties": {
"facing": "west",
"half": "top",
@@ -12184,7 +12184,7 @@
}
},
{
- "id": 9852,
+ "id": 10184,
"properties": {
"facing": "west",
"half": "top",
@@ -12193,7 +12193,7 @@
}
},
{
- "id": 9853,
+ "id": 10185,
"properties": {
"facing": "west",
"half": "top",
@@ -12202,7 +12202,7 @@
}
},
{
- "id": 9854,
+ "id": 10186,
"properties": {
"facing": "west",
"half": "top",
@@ -12211,7 +12211,7 @@
}
},
{
- "id": 9855,
+ "id": 10187,
"properties": {
"facing": "west",
"half": "top",
@@ -12220,7 +12220,7 @@
}
},
{
- "id": 9856,
+ "id": 10188,
"properties": {
"facing": "west",
"half": "top",
@@ -12229,7 +12229,7 @@
}
},
{
- "id": 9857,
+ "id": 10189,
"properties": {
"facing": "west",
"half": "top",
@@ -12238,7 +12238,7 @@
}
},
{
- "id": 9858,
+ "id": 10190,
"properties": {
"facing": "west",
"half": "bottom",
@@ -12247,7 +12247,7 @@
}
},
{
- "id": 9859,
+ "id": 10191,
"properties": {
"facing": "west",
"half": "bottom",
@@ -12256,7 +12256,7 @@
}
},
{
- "id": 9860,
+ "id": 10192,
"properties": {
"facing": "west",
"half": "bottom",
@@ -12265,7 +12265,7 @@
}
},
{
- "id": 9861,
+ "id": 10193,
"properties": {
"facing": "west",
"half": "bottom",
@@ -12274,7 +12274,7 @@
}
},
{
- "id": 9862,
+ "id": 10194,
"properties": {
"facing": "west",
"half": "bottom",
@@ -12283,7 +12283,7 @@
}
},
{
- "id": 9863,
+ "id": 10195,
"properties": {
"facing": "west",
"half": "bottom",
@@ -12292,7 +12292,7 @@
}
},
{
- "id": 9864,
+ "id": 10196,
"properties": {
"facing": "west",
"half": "bottom",
@@ -12301,7 +12301,7 @@
}
},
{
- "id": 9865,
+ "id": 10197,
"properties": {
"facing": "west",
"half": "bottom",
@@ -12310,7 +12310,7 @@
}
},
{
- "id": 9866,
+ "id": 10198,
"properties": {
"facing": "west",
"half": "bottom",
@@ -12319,7 +12319,7 @@
}
},
{
- "id": 9867,
+ "id": 10199,
"properties": {
"facing": "west",
"half": "bottom",
@@ -12328,7 +12328,7 @@
}
},
{
- "id": 9868,
+ "id": 10200,
"properties": {
"facing": "east",
"half": "top",
@@ -12337,7 +12337,7 @@
}
},
{
- "id": 9869,
+ "id": 10201,
"properties": {
"facing": "east",
"half": "top",
@@ -12346,7 +12346,7 @@
}
},
{
- "id": 9870,
+ "id": 10202,
"properties": {
"facing": "east",
"half": "top",
@@ -12355,7 +12355,7 @@
}
},
{
- "id": 9871,
+ "id": 10203,
"properties": {
"facing": "east",
"half": "top",
@@ -12364,7 +12364,7 @@
}
},
{
- "id": 9872,
+ "id": 10204,
"properties": {
"facing": "east",
"half": "top",
@@ -12373,7 +12373,7 @@
}
},
{
- "id": 9873,
+ "id": 10205,
"properties": {
"facing": "east",
"half": "top",
@@ -12382,7 +12382,7 @@
}
},
{
- "id": 9874,
+ "id": 10206,
"properties": {
"facing": "east",
"half": "top",
@@ -12391,7 +12391,7 @@
}
},
{
- "id": 9875,
+ "id": 10207,
"properties": {
"facing": "east",
"half": "top",
@@ -12400,7 +12400,7 @@
}
},
{
- "id": 9876,
+ "id": 10208,
"properties": {
"facing": "east",
"half": "top",
@@ -12409,7 +12409,7 @@
}
},
{
- "id": 9877,
+ "id": 10209,
"properties": {
"facing": "east",
"half": "top",
@@ -12418,7 +12418,7 @@
}
},
{
- "id": 9878,
+ "id": 10210,
"properties": {
"facing": "east",
"half": "bottom",
@@ -12427,7 +12427,7 @@
}
},
{
- "id": 9879,
+ "id": 10211,
"properties": {
"facing": "east",
"half": "bottom",
@@ -12436,7 +12436,7 @@
}
},
{
- "id": 9880,
+ "id": 10212,
"properties": {
"facing": "east",
"half": "bottom",
@@ -12445,7 +12445,7 @@
}
},
{
- "id": 9881,
+ "id": 10213,
"properties": {
"facing": "east",
"half": "bottom",
@@ -12454,7 +12454,7 @@
}
},
{
- "id": 9882,
+ "id": 10214,
"properties": {
"facing": "east",
"half": "bottom",
@@ -12463,7 +12463,7 @@
}
},
{
- "id": 9883,
+ "id": 10215,
"properties": {
"facing": "east",
"half": "bottom",
@@ -12472,7 +12472,7 @@
}
},
{
- "id": 9884,
+ "id": 10216,
"properties": {
"facing": "east",
"half": "bottom",
@@ -12481,7 +12481,7 @@
}
},
{
- "id": 9885,
+ "id": 10217,
"properties": {
"facing": "east",
"half": "bottom",
@@ -12490,7 +12490,7 @@
}
},
{
- "id": 9886,
+ "id": 10218,
"properties": {
"facing": "east",
"half": "bottom",
@@ -12499,7 +12499,7 @@
}
},
{
- "id": 9887,
+ "id": 10219,
"properties": {
"facing": "east",
"half": "bottom",
@@ -12513,7 +12513,7 @@
"states": [
{
"default": true,
- "id": 22
+ "id": 23
}
]
},
@@ -12526,14 +12526,14 @@
},
"states": [
{
- "id": 5566,
+ "id": 5728,
"properties": {
"powered": "true"
}
},
{
"default": true,
- "id": 5567,
+ "id": 5729,
"properties": {
"powered": "false"
}
@@ -12544,7 +12544,7 @@
"states": [
{
"default": true,
- "id": 12316
+ "id": 12785
}
]
},
@@ -12575,7 +12575,7 @@
},
"states": [
{
- "id": 4474,
+ "id": 4554,
"properties": {
"rotation": "0",
"waterlogged": "true"
@@ -12583,217 +12583,217 @@
},
{
"default": true,
- "id": 4475,
+ "id": 4555,
"properties": {
"rotation": "0",
"waterlogged": "false"
}
},
{
- "id": 4476,
+ "id": 4556,
"properties": {
"rotation": "1",
"waterlogged": "true"
}
},
{
- "id": 4477,
+ "id": 4557,
"properties": {
"rotation": "1",
"waterlogged": "false"
}
},
{
- "id": 4478,
+ "id": 4558,
"properties": {
"rotation": "2",
"waterlogged": "true"
}
},
{
- "id": 4479,
+ "id": 4559,
"properties": {
"rotation": "2",
"waterlogged": "false"
}
},
{
- "id": 4480,
+ "id": 4560,
"properties": {
"rotation": "3",
"waterlogged": "true"
}
},
{
- "id": 4481,
+ "id": 4561,
"properties": {
"rotation": "3",
"waterlogged": "false"
}
},
{
- "id": 4482,
+ "id": 4562,
"properties": {
"rotation": "4",
"waterlogged": "true"
}
},
{
- "id": 4483,
+ "id": 4563,
"properties": {
"rotation": "4",
"waterlogged": "false"
}
},
{
- "id": 4484,
+ "id": 4564,
"properties": {
"rotation": "5",
"waterlogged": "true"
}
},
{
- "id": 4485,
+ "id": 4565,
"properties": {
"rotation": "5",
"waterlogged": "false"
}
},
{
- "id": 4486,
+ "id": 4566,
"properties": {
"rotation": "6",
"waterlogged": "true"
}
},
{
- "id": 4487,
+ "id": 4567,
"properties": {
"rotation": "6",
"waterlogged": "false"
}
},
{
- "id": 4488,
+ "id": 4568,
"properties": {
"rotation": "7",
"waterlogged": "true"
}
},
{
- "id": 4489,
+ "id": 4569,
"properties": {
"rotation": "7",
"waterlogged": "false"
}
},
{
- "id": 4490,
+ "id": 4570,
"properties": {
"rotation": "8",
"waterlogged": "true"
}
},
{
- "id": 4491,
+ "id": 4571,
"properties": {
"rotation": "8",
"waterlogged": "false"
}
},
{
- "id": 4492,
+ "id": 4572,
"properties": {
"rotation": "9",
"waterlogged": "true"
}
},
{
- "id": 4493,
+ "id": 4573,
"properties": {
"rotation": "9",
"waterlogged": "false"
}
},
{
- "id": 4494,
+ "id": 4574,
"properties": {
"rotation": "10",
"waterlogged": "true"
}
},
{
- "id": 4495,
+ "id": 4575,
"properties": {
"rotation": "10",
"waterlogged": "false"
}
},
{
- "id": 4496,
+ "id": 4576,
"properties": {
"rotation": "11",
"waterlogged": "true"
}
},
{
- "id": 4497,
+ "id": 4577,
"properties": {
"rotation": "11",
"waterlogged": "false"
}
},
{
- "id": 4498,
+ "id": 4578,
"properties": {
"rotation": "12",
"waterlogged": "true"
}
},
{
- "id": 4499,
+ "id": 4579,
"properties": {
"rotation": "12",
"waterlogged": "false"
}
},
{
- "id": 4500,
+ "id": 4580,
"properties": {
"rotation": "13",
"waterlogged": "true"
}
},
{
- "id": 4501,
+ "id": 4581,
"properties": {
"rotation": "13",
"waterlogged": "false"
}
},
{
- "id": 4502,
+ "id": 4582,
"properties": {
"rotation": "14",
"waterlogged": "true"
}
},
{
- "id": 4503,
+ "id": 4583,
"properties": {
"rotation": "14",
"waterlogged": "false"
}
},
{
- "id": 4504,
+ "id": 4584,
"properties": {
"rotation": "15",
"waterlogged": "true"
}
},
{
- "id": 4505,
+ "id": 4585,
"properties": {
"rotation": "15",
"waterlogged": "false"
@@ -12815,21 +12815,21 @@
},
"states": [
{
- "id": 10727,
+ "id": 11065,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 10728,
+ "id": 11066,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 10729,
+ "id": 11067,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -12837,21 +12837,21 @@
},
{
"default": true,
- "id": 10730,
+ "id": 11068,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 10731,
+ "id": 11069,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 10732,
+ "id": 11070,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -12885,7 +12885,7 @@
},
"states": [
{
- "id": 9728,
+ "id": 10060,
"properties": {
"facing": "north",
"half": "top",
@@ -12894,7 +12894,7 @@
}
},
{
- "id": 9729,
+ "id": 10061,
"properties": {
"facing": "north",
"half": "top",
@@ -12903,7 +12903,7 @@
}
},
{
- "id": 9730,
+ "id": 10062,
"properties": {
"facing": "north",
"half": "top",
@@ -12912,7 +12912,7 @@
}
},
{
- "id": 9731,
+ "id": 10063,
"properties": {
"facing": "north",
"half": "top",
@@ -12921,7 +12921,7 @@
}
},
{
- "id": 9732,
+ "id": 10064,
"properties": {
"facing": "north",
"half": "top",
@@ -12930,7 +12930,7 @@
}
},
{
- "id": 9733,
+ "id": 10065,
"properties": {
"facing": "north",
"half": "top",
@@ -12939,7 +12939,7 @@
}
},
{
- "id": 9734,
+ "id": 10066,
"properties": {
"facing": "north",
"half": "top",
@@ -12948,7 +12948,7 @@
}
},
{
- "id": 9735,
+ "id": 10067,
"properties": {
"facing": "north",
"half": "top",
@@ -12957,7 +12957,7 @@
}
},
{
- "id": 9736,
+ "id": 10068,
"properties": {
"facing": "north",
"half": "top",
@@ -12966,7 +12966,7 @@
}
},
{
- "id": 9737,
+ "id": 10069,
"properties": {
"facing": "north",
"half": "top",
@@ -12975,7 +12975,7 @@
}
},
{
- "id": 9738,
+ "id": 10070,
"properties": {
"facing": "north",
"half": "bottom",
@@ -12985,7 +12985,7 @@
},
{
"default": true,
- "id": 9739,
+ "id": 10071,
"properties": {
"facing": "north",
"half": "bottom",
@@ -12994,7 +12994,7 @@
}
},
{
- "id": 9740,
+ "id": 10072,
"properties": {
"facing": "north",
"half": "bottom",
@@ -13003,7 +13003,7 @@
}
},
{
- "id": 9741,
+ "id": 10073,
"properties": {
"facing": "north",
"half": "bottom",
@@ -13012,7 +13012,7 @@
}
},
{
- "id": 9742,
+ "id": 10074,
"properties": {
"facing": "north",
"half": "bottom",
@@ -13021,7 +13021,7 @@
}
},
{
- "id": 9743,
+ "id": 10075,
"properties": {
"facing": "north",
"half": "bottom",
@@ -13030,7 +13030,7 @@
}
},
{
- "id": 9744,
+ "id": 10076,
"properties": {
"facing": "north",
"half": "bottom",
@@ -13039,7 +13039,7 @@
}
},
{
- "id": 9745,
+ "id": 10077,
"properties": {
"facing": "north",
"half": "bottom",
@@ -13048,7 +13048,7 @@
}
},
{
- "id": 9746,
+ "id": 10078,
"properties": {
"facing": "north",
"half": "bottom",
@@ -13057,7 +13057,7 @@
}
},
{
- "id": 9747,
+ "id": 10079,
"properties": {
"facing": "north",
"half": "bottom",
@@ -13066,7 +13066,7 @@
}
},
{
- "id": 9748,
+ "id": 10080,
"properties": {
"facing": "south",
"half": "top",
@@ -13075,7 +13075,7 @@
}
},
{
- "id": 9749,
+ "id": 10081,
"properties": {
"facing": "south",
"half": "top",
@@ -13084,7 +13084,7 @@
}
},
{
- "id": 9750,
+ "id": 10082,
"properties": {
"facing": "south",
"half": "top",
@@ -13093,7 +13093,7 @@
}
},
{
- "id": 9751,
+ "id": 10083,
"properties": {
"facing": "south",
"half": "top",
@@ -13102,7 +13102,7 @@
}
},
{
- "id": 9752,
+ "id": 10084,
"properties": {
"facing": "south",
"half": "top",
@@ -13111,7 +13111,7 @@
}
},
{
- "id": 9753,
+ "id": 10085,
"properties": {
"facing": "south",
"half": "top",
@@ -13120,7 +13120,7 @@
}
},
{
- "id": 9754,
+ "id": 10086,
"properties": {
"facing": "south",
"half": "top",
@@ -13129,7 +13129,7 @@
}
},
{
- "id": 9755,
+ "id": 10087,
"properties": {
"facing": "south",
"half": "top",
@@ -13138,7 +13138,7 @@
}
},
{
- "id": 9756,
+ "id": 10088,
"properties": {
"facing": "south",
"half": "top",
@@ -13147,7 +13147,7 @@
}
},
{
- "id": 9757,
+ "id": 10089,
"properties": {
"facing": "south",
"half": "top",
@@ -13156,7 +13156,7 @@
}
},
{
- "id": 9758,
+ "id": 10090,
"properties": {
"facing": "south",
"half": "bottom",
@@ -13165,7 +13165,7 @@
}
},
{
- "id": 9759,
+ "id": 10091,
"properties": {
"facing": "south",
"half": "bottom",
@@ -13174,7 +13174,7 @@
}
},
{
- "id": 9760,
+ "id": 10092,
"properties": {
"facing": "south",
"half": "bottom",
@@ -13183,7 +13183,7 @@
}
},
{
- "id": 9761,
+ "id": 10093,
"properties": {
"facing": "south",
"half": "bottom",
@@ -13192,7 +13192,7 @@
}
},
{
- "id": 9762,
+ "id": 10094,
"properties": {
"facing": "south",
"half": "bottom",
@@ -13201,7 +13201,7 @@
}
},
{
- "id": 9763,
+ "id": 10095,
"properties": {
"facing": "south",
"half": "bottom",
@@ -13210,7 +13210,7 @@
}
},
{
- "id": 9764,
+ "id": 10096,
"properties": {
"facing": "south",
"half": "bottom",
@@ -13219,7 +13219,7 @@
}
},
{
- "id": 9765,
+ "id": 10097,
"properties": {
"facing": "south",
"half": "bottom",
@@ -13228,7 +13228,7 @@
}
},
{
- "id": 9766,
+ "id": 10098,
"properties": {
"facing": "south",
"half": "bottom",
@@ -13237,7 +13237,7 @@
}
},
{
- "id": 9767,
+ "id": 10099,
"properties": {
"facing": "south",
"half": "bottom",
@@ -13246,7 +13246,7 @@
}
},
{
- "id": 9768,
+ "id": 10100,
"properties": {
"facing": "west",
"half": "top",
@@ -13255,7 +13255,7 @@
}
},
{
- "id": 9769,
+ "id": 10101,
"properties": {
"facing": "west",
"half": "top",
@@ -13264,7 +13264,7 @@
}
},
{
- "id": 9770,
+ "id": 10102,
"properties": {
"facing": "west",
"half": "top",
@@ -13273,7 +13273,7 @@
}
},
{
- "id": 9771,
+ "id": 10103,
"properties": {
"facing": "west",
"half": "top",
@@ -13282,7 +13282,7 @@
}
},
{
- "id": 9772,
+ "id": 10104,
"properties": {
"facing": "west",
"half": "top",
@@ -13291,7 +13291,7 @@
}
},
{
- "id": 9773,
+ "id": 10105,
"properties": {
"facing": "west",
"half": "top",
@@ -13300,7 +13300,7 @@
}
},
{
- "id": 9774,
+ "id": 10106,
"properties": {
"facing": "west",
"half": "top",
@@ -13309,7 +13309,7 @@
}
},
{
- "id": 9775,
+ "id": 10107,
"properties": {
"facing": "west",
"half": "top",
@@ -13318,7 +13318,7 @@
}
},
{
- "id": 9776,
+ "id": 10108,
"properties": {
"facing": "west",
"half": "top",
@@ -13327,7 +13327,7 @@
}
},
{
- "id": 9777,
+ "id": 10109,
"properties": {
"facing": "west",
"half": "top",
@@ -13336,7 +13336,7 @@
}
},
{
- "id": 9778,
+ "id": 10110,
"properties": {
"facing": "west",
"half": "bottom",
@@ -13345,7 +13345,7 @@
}
},
{
- "id": 9779,
+ "id": 10111,
"properties": {
"facing": "west",
"half": "bottom",
@@ -13354,7 +13354,7 @@
}
},
{
- "id": 9780,
+ "id": 10112,
"properties": {
"facing": "west",
"half": "bottom",
@@ -13363,7 +13363,7 @@
}
},
{
- "id": 9781,
+ "id": 10113,
"properties": {
"facing": "west",
"half": "bottom",
@@ -13372,7 +13372,7 @@
}
},
{
- "id": 9782,
+ "id": 10114,
"properties": {
"facing": "west",
"half": "bottom",
@@ -13381,7 +13381,7 @@
}
},
{
- "id": 9783,
+ "id": 10115,
"properties": {
"facing": "west",
"half": "bottom",
@@ -13390,7 +13390,7 @@
}
},
{
- "id": 9784,
+ "id": 10116,
"properties": {
"facing": "west",
"half": "bottom",
@@ -13399,7 +13399,7 @@
}
},
{
- "id": 9785,
+ "id": 10117,
"properties": {
"facing": "west",
"half": "bottom",
@@ -13408,7 +13408,7 @@
}
},
{
- "id": 9786,
+ "id": 10118,
"properties": {
"facing": "west",
"half": "bottom",
@@ -13417,7 +13417,7 @@
}
},
{
- "id": 9787,
+ "id": 10119,
"properties": {
"facing": "west",
"half": "bottom",
@@ -13426,7 +13426,7 @@
}
},
{
- "id": 9788,
+ "id": 10120,
"properties": {
"facing": "east",
"half": "top",
@@ -13435,7 +13435,7 @@
}
},
{
- "id": 9789,
+ "id": 10121,
"properties": {
"facing": "east",
"half": "top",
@@ -13444,7 +13444,7 @@
}
},
{
- "id": 9790,
+ "id": 10122,
"properties": {
"facing": "east",
"half": "top",
@@ -13453,7 +13453,7 @@
}
},
{
- "id": 9791,
+ "id": 10123,
"properties": {
"facing": "east",
"half": "top",
@@ -13462,7 +13462,7 @@
}
},
{
- "id": 9792,
+ "id": 10124,
"properties": {
"facing": "east",
"half": "top",
@@ -13471,7 +13471,7 @@
}
},
{
- "id": 9793,
+ "id": 10125,
"properties": {
"facing": "east",
"half": "top",
@@ -13480,7 +13480,7 @@
}
},
{
- "id": 9794,
+ "id": 10126,
"properties": {
"facing": "east",
"half": "top",
@@ -13489,7 +13489,7 @@
}
},
{
- "id": 9795,
+ "id": 10127,
"properties": {
"facing": "east",
"half": "top",
@@ -13498,7 +13498,7 @@
}
},
{
- "id": 9796,
+ "id": 10128,
"properties": {
"facing": "east",
"half": "top",
@@ -13507,7 +13507,7 @@
}
},
{
- "id": 9797,
+ "id": 10129,
"properties": {
"facing": "east",
"half": "top",
@@ -13516,7 +13516,7 @@
}
},
{
- "id": 9798,
+ "id": 10130,
"properties": {
"facing": "east",
"half": "bottom",
@@ -13525,7 +13525,7 @@
}
},
{
- "id": 9799,
+ "id": 10131,
"properties": {
"facing": "east",
"half": "bottom",
@@ -13534,7 +13534,7 @@
}
},
{
- "id": 9800,
+ "id": 10132,
"properties": {
"facing": "east",
"half": "bottom",
@@ -13543,7 +13543,7 @@
}
},
{
- "id": 9801,
+ "id": 10133,
"properties": {
"facing": "east",
"half": "bottom",
@@ -13552,7 +13552,7 @@
}
},
{
- "id": 9802,
+ "id": 10134,
"properties": {
"facing": "east",
"half": "bottom",
@@ -13561,7 +13561,7 @@
}
},
{
- "id": 9803,
+ "id": 10135,
"properties": {
"facing": "east",
"half": "bottom",
@@ -13570,7 +13570,7 @@
}
},
{
- "id": 9804,
+ "id": 10136,
"properties": {
"facing": "east",
"half": "bottom",
@@ -13579,7 +13579,7 @@
}
},
{
- "id": 9805,
+ "id": 10137,
"properties": {
"facing": "east",
"half": "bottom",
@@ -13588,7 +13588,7 @@
}
},
{
- "id": 9806,
+ "id": 10138,
"properties": {
"facing": "east",
"half": "bottom",
@@ -13597,7 +13597,7 @@
}
},
{
- "id": 9807,
+ "id": 10139,
"properties": {
"facing": "east",
"half": "bottom",
@@ -13634,7 +13634,7 @@
},
"states": [
{
- "id": 6244,
+ "id": 6470,
"properties": {
"facing": "north",
"half": "top",
@@ -13644,7 +13644,7 @@
}
},
{
- "id": 6245,
+ "id": 6471,
"properties": {
"facing": "north",
"half": "top",
@@ -13654,7 +13654,7 @@
}
},
{
- "id": 6246,
+ "id": 6472,
"properties": {
"facing": "north",
"half": "top",
@@ -13664,7 +13664,7 @@
}
},
{
- "id": 6247,
+ "id": 6473,
"properties": {
"facing": "north",
"half": "top",
@@ -13674,7 +13674,7 @@
}
},
{
- "id": 6248,
+ "id": 6474,
"properties": {
"facing": "north",
"half": "top",
@@ -13684,7 +13684,7 @@
}
},
{
- "id": 6249,
+ "id": 6475,
"properties": {
"facing": "north",
"half": "top",
@@ -13694,7 +13694,7 @@
}
},
{
- "id": 6250,
+ "id": 6476,
"properties": {
"facing": "north",
"half": "top",
@@ -13704,7 +13704,7 @@
}
},
{
- "id": 6251,
+ "id": 6477,
"properties": {
"facing": "north",
"half": "top",
@@ -13714,7 +13714,7 @@
}
},
{
- "id": 6252,
+ "id": 6478,
"properties": {
"facing": "north",
"half": "bottom",
@@ -13724,7 +13724,7 @@
}
},
{
- "id": 6253,
+ "id": 6479,
"properties": {
"facing": "north",
"half": "bottom",
@@ -13734,7 +13734,7 @@
}
},
{
- "id": 6254,
+ "id": 6480,
"properties": {
"facing": "north",
"half": "bottom",
@@ -13744,7 +13744,7 @@
}
},
{
- "id": 6255,
+ "id": 6481,
"properties": {
"facing": "north",
"half": "bottom",
@@ -13754,7 +13754,7 @@
}
},
{
- "id": 6256,
+ "id": 6482,
"properties": {
"facing": "north",
"half": "bottom",
@@ -13764,7 +13764,7 @@
}
},
{
- "id": 6257,
+ "id": 6483,
"properties": {
"facing": "north",
"half": "bottom",
@@ -13774,7 +13774,7 @@
}
},
{
- "id": 6258,
+ "id": 6484,
"properties": {
"facing": "north",
"half": "bottom",
@@ -13785,7 +13785,7 @@
},
{
"default": true,
- "id": 6259,
+ "id": 6485,
"properties": {
"facing": "north",
"half": "bottom",
@@ -13795,7 +13795,7 @@
}
},
{
- "id": 6260,
+ "id": 6486,
"properties": {
"facing": "south",
"half": "top",
@@ -13805,7 +13805,7 @@
}
},
{
- "id": 6261,
+ "id": 6487,
"properties": {
"facing": "south",
"half": "top",
@@ -13815,7 +13815,7 @@
}
},
{
- "id": 6262,
+ "id": 6488,
"properties": {
"facing": "south",
"half": "top",
@@ -13825,7 +13825,7 @@
}
},
{
- "id": 6263,
+ "id": 6489,
"properties": {
"facing": "south",
"half": "top",
@@ -13835,7 +13835,7 @@
}
},
{
- "id": 6264,
+ "id": 6490,
"properties": {
"facing": "south",
"half": "top",
@@ -13845,7 +13845,7 @@
}
},
{
- "id": 6265,
+ "id": 6491,
"properties": {
"facing": "south",
"half": "top",
@@ -13855,7 +13855,7 @@
}
},
{
- "id": 6266,
+ "id": 6492,
"properties": {
"facing": "south",
"half": "top",
@@ -13865,7 +13865,7 @@
}
},
{
- "id": 6267,
+ "id": 6493,
"properties": {
"facing": "south",
"half": "top",
@@ -13875,7 +13875,7 @@
}
},
{
- "id": 6268,
+ "id": 6494,
"properties": {
"facing": "south",
"half": "bottom",
@@ -13885,7 +13885,7 @@
}
},
{
- "id": 6269,
+ "id": 6495,
"properties": {
"facing": "south",
"half": "bottom",
@@ -13895,7 +13895,7 @@
}
},
{
- "id": 6270,
+ "id": 6496,
"properties": {
"facing": "south",
"half": "bottom",
@@ -13905,7 +13905,7 @@
}
},
{
- "id": 6271,
+ "id": 6497,
"properties": {
"facing": "south",
"half": "bottom",
@@ -13915,7 +13915,7 @@
}
},
{
- "id": 6272,
+ "id": 6498,
"properties": {
"facing": "south",
"half": "bottom",
@@ -13925,7 +13925,7 @@
}
},
{
- "id": 6273,
+ "id": 6499,
"properties": {
"facing": "south",
"half": "bottom",
@@ -13935,7 +13935,7 @@
}
},
{
- "id": 6274,
+ "id": 6500,
"properties": {
"facing": "south",
"half": "bottom",
@@ -13945,7 +13945,7 @@
}
},
{
- "id": 6275,
+ "id": 6501,
"properties": {
"facing": "south",
"half": "bottom",
@@ -13955,7 +13955,7 @@
}
},
{
- "id": 6276,
+ "id": 6502,
"properties": {
"facing": "west",
"half": "top",
@@ -13965,7 +13965,7 @@
}
},
{
- "id": 6277,
+ "id": 6503,
"properties": {
"facing": "west",
"half": "top",
@@ -13975,7 +13975,7 @@
}
},
{
- "id": 6278,
+ "id": 6504,
"properties": {
"facing": "west",
"half": "top",
@@ -13985,7 +13985,7 @@
}
},
{
- "id": 6279,
+ "id": 6505,
"properties": {
"facing": "west",
"half": "top",
@@ -13995,7 +13995,7 @@
}
},
{
- "id": 6280,
+ "id": 6506,
"properties": {
"facing": "west",
"half": "top",
@@ -14005,7 +14005,7 @@
}
},
{
- "id": 6281,
+ "id": 6507,
"properties": {
"facing": "west",
"half": "top",
@@ -14015,7 +14015,7 @@
}
},
{
- "id": 6282,
+ "id": 6508,
"properties": {
"facing": "west",
"half": "top",
@@ -14025,7 +14025,7 @@
}
},
{
- "id": 6283,
+ "id": 6509,
"properties": {
"facing": "west",
"half": "top",
@@ -14035,7 +14035,7 @@
}
},
{
- "id": 6284,
+ "id": 6510,
"properties": {
"facing": "west",
"half": "bottom",
@@ -14045,7 +14045,7 @@
}
},
{
- "id": 6285,
+ "id": 6511,
"properties": {
"facing": "west",
"half": "bottom",
@@ -14055,7 +14055,7 @@
}
},
{
- "id": 6286,
+ "id": 6512,
"properties": {
"facing": "west",
"half": "bottom",
@@ -14065,7 +14065,7 @@
}
},
{
- "id": 6287,
+ "id": 6513,
"properties": {
"facing": "west",
"half": "bottom",
@@ -14075,7 +14075,7 @@
}
},
{
- "id": 6288,
+ "id": 6514,
"properties": {
"facing": "west",
"half": "bottom",
@@ -14085,7 +14085,7 @@
}
},
{
- "id": 6289,
+ "id": 6515,
"properties": {
"facing": "west",
"half": "bottom",
@@ -14095,7 +14095,7 @@
}
},
{
- "id": 6290,
+ "id": 6516,
"properties": {
"facing": "west",
"half": "bottom",
@@ -14105,7 +14105,7 @@
}
},
{
- "id": 6291,
+ "id": 6517,
"properties": {
"facing": "west",
"half": "bottom",
@@ -14115,7 +14115,7 @@
}
},
{
- "id": 6292,
+ "id": 6518,
"properties": {
"facing": "east",
"half": "top",
@@ -14125,7 +14125,7 @@
}
},
{
- "id": 6293,
+ "id": 6519,
"properties": {
"facing": "east",
"half": "top",
@@ -14135,7 +14135,7 @@
}
},
{
- "id": 6294,
+ "id": 6520,
"properties": {
"facing": "east",
"half": "top",
@@ -14145,7 +14145,7 @@
}
},
{
- "id": 6295,
+ "id": 6521,
"properties": {
"facing": "east",
"half": "top",
@@ -14155,7 +14155,7 @@
}
},
{
- "id": 6296,
+ "id": 6522,
"properties": {
"facing": "east",
"half": "top",
@@ -14165,7 +14165,7 @@
}
},
{
- "id": 6297,
+ "id": 6523,
"properties": {
"facing": "east",
"half": "top",
@@ -14175,7 +14175,7 @@
}
},
{
- "id": 6298,
+ "id": 6524,
"properties": {
"facing": "east",
"half": "top",
@@ -14185,7 +14185,7 @@
}
},
{
- "id": 6299,
+ "id": 6525,
"properties": {
"facing": "east",
"half": "top",
@@ -14195,7 +14195,7 @@
}
},
{
- "id": 6300,
+ "id": 6526,
"properties": {
"facing": "east",
"half": "bottom",
@@ -14205,7 +14205,7 @@
}
},
{
- "id": 6301,
+ "id": 6527,
"properties": {
"facing": "east",
"half": "bottom",
@@ -14215,7 +14215,7 @@
}
},
{
- "id": 6302,
+ "id": 6528,
"properties": {
"facing": "east",
"half": "bottom",
@@ -14225,7 +14225,7 @@
}
},
{
- "id": 6303,
+ "id": 6529,
"properties": {
"facing": "east",
"half": "bottom",
@@ -14235,7 +14235,7 @@
}
},
{
- "id": 6304,
+ "id": 6530,
"properties": {
"facing": "east",
"half": "bottom",
@@ -14245,7 +14245,7 @@
}
},
{
- "id": 6305,
+ "id": 6531,
"properties": {
"facing": "east",
"half": "bottom",
@@ -14255,7 +14255,7 @@
}
},
{
- "id": 6306,
+ "id": 6532,
"properties": {
"facing": "east",
"half": "bottom",
@@ -14265,7 +14265,7 @@
}
},
{
- "id": 6307,
+ "id": 6533,
"properties": {
"facing": "east",
"half": "bottom",
@@ -14291,7 +14291,7 @@
},
"states": [
{
- "id": 5454,
+ "id": 5614,
"properties": {
"facing": "north",
"waterlogged": "true"
@@ -14299,49 +14299,49 @@
},
{
"default": true,
- "id": 5455,
+ "id": 5615,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 5456,
+ "id": 5616,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 5457,
+ "id": 5617,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 5458,
+ "id": 5618,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 5459,
+ "id": 5619,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 5460,
+ "id": 5620,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 5461,
+ "id": 5621,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -14364,7 +14364,7 @@
},
"states": [
{
- "id": 4734,
+ "id": 4822,
"properties": {
"facing": "north",
"waterlogged": "true"
@@ -14372,49 +14372,49 @@
},
{
"default": true,
- "id": 4735,
+ "id": 4823,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 4736,
+ "id": 4824,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 4737,
+ "id": 4825,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 4738,
+ "id": 4826,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 4739,
+ "id": 4827,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 4740,
+ "id": 4828,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 4741,
+ "id": 4829,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -14439,7 +14439,7 @@
},
"states": [
{
- "id": 17780,
+ "id": 18249,
"properties": {
"facing": "north",
"open": "true"
@@ -14447,77 +14447,77 @@
},
{
"default": true,
- "id": 17781,
+ "id": 18250,
"properties": {
"facing": "north",
"open": "false"
}
},
{
- "id": 17782,
+ "id": 18251,
"properties": {
"facing": "east",
"open": "true"
}
},
{
- "id": 17783,
+ "id": 18252,
"properties": {
"facing": "east",
"open": "false"
}
},
{
- "id": 17784,
+ "id": 18253,
"properties": {
"facing": "south",
"open": "true"
}
},
{
- "id": 17785,
+ "id": 18254,
"properties": {
"facing": "south",
"open": "false"
}
},
{
- "id": 17786,
+ "id": 18255,
"properties": {
"facing": "west",
"open": "true"
}
},
{
- "id": 17787,
+ "id": 18256,
"properties": {
"facing": "west",
"open": "false"
}
},
{
- "id": 17788,
+ "id": 18257,
"properties": {
"facing": "up",
"open": "true"
}
},
{
- "id": 17789,
+ "id": 18258,
"properties": {
"facing": "up",
"open": "false"
}
},
{
- "id": 17790,
+ "id": 18259,
"properties": {
"facing": "down",
"open": "true"
}
},
{
- "id": 17791,
+ "id": 18260,
"properties": {
"facing": "down",
"open": "false"
@@ -14529,7 +14529,7 @@
"states": [
{
"default": true,
- "id": 9889
+ "id": 10221
}
]
},
@@ -14543,20 +14543,20 @@
},
"states": [
{
- "id": 5687,
+ "id": 5849,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 5688,
+ "id": 5850,
"properties": {
"axis": "y"
}
},
{
- "id": 5689,
+ "id": 5851,
"properties": {
"axis": "z"
}
@@ -14567,7 +14567,7 @@
"states": [
{
"default": true,
- "id": 7688
+ "id": 7914
}
]
},
@@ -14575,7 +14575,7 @@
"states": [
{
"default": true,
- "id": 76
+ "id": 79
}
]
},
@@ -14599,168 +14599,168 @@
"states": [
{
"default": true,
- "id": 18769,
+ "id": 19238,
"properties": {
"facing": "north",
"honey_level": "0"
}
},
{
- "id": 18770,
+ "id": 19239,
"properties": {
"facing": "north",
"honey_level": "1"
}
},
{
- "id": 18771,
+ "id": 19240,
"properties": {
"facing": "north",
"honey_level": "2"
}
},
{
- "id": 18772,
+ "id": 19241,
"properties": {
"facing": "north",
"honey_level": "3"
}
},
{
- "id": 18773,
+ "id": 19242,
"properties": {
"facing": "north",
"honey_level": "4"
}
},
{
- "id": 18774,
+ "id": 19243,
"properties": {
"facing": "north",
"honey_level": "5"
}
},
{
- "id": 18775,
+ "id": 19244,
"properties": {
"facing": "south",
"honey_level": "0"
}
},
{
- "id": 18776,
+ "id": 19245,
"properties": {
"facing": "south",
"honey_level": "1"
}
},
{
- "id": 18777,
+ "id": 19246,
"properties": {
"facing": "south",
"honey_level": "2"
}
},
{
- "id": 18778,
+ "id": 19247,
"properties": {
"facing": "south",
"honey_level": "3"
}
},
{
- "id": 18779,
+ "id": 19248,
"properties": {
"facing": "south",
"honey_level": "4"
}
},
{
- "id": 18780,
+ "id": 19249,
"properties": {
"facing": "south",
"honey_level": "5"
}
},
{
- "id": 18781,
+ "id": 19250,
"properties": {
"facing": "west",
"honey_level": "0"
}
},
{
- "id": 18782,
+ "id": 19251,
"properties": {
"facing": "west",
"honey_level": "1"
}
},
{
- "id": 18783,
+ "id": 19252,
"properties": {
"facing": "west",
"honey_level": "2"
}
},
{
- "id": 18784,
+ "id": 19253,
"properties": {
"facing": "west",
"honey_level": "3"
}
},
{
- "id": 18785,
+ "id": 19254,
"properties": {
"facing": "west",
"honey_level": "4"
}
},
{
- "id": 18786,
+ "id": 19255,
"properties": {
"facing": "west",
"honey_level": "5"
}
},
{
- "id": 18787,
+ "id": 19256,
"properties": {
"facing": "east",
"honey_level": "0"
}
},
{
- "id": 18788,
+ "id": 19257,
"properties": {
"facing": "east",
"honey_level": "1"
}
},
{
- "id": 18789,
+ "id": 19258,
"properties": {
"facing": "east",
"honey_level": "2"
}
},
{
- "id": 18790,
+ "id": 19259,
"properties": {
"facing": "east",
"honey_level": "3"
}
},
{
- "id": 18791,
+ "id": 19260,
"properties": {
"facing": "east",
"honey_level": "4"
}
},
{
- "id": 18792,
+ "id": 19261,
"properties": {
"facing": "east",
"honey_level": "5"
@@ -14788,168 +14788,168 @@
"states": [
{
"default": true,
- "id": 18793,
+ "id": 19262,
"properties": {
"facing": "north",
"honey_level": "0"
}
},
{
- "id": 18794,
+ "id": 19263,
"properties": {
"facing": "north",
"honey_level": "1"
}
},
{
- "id": 18795,
+ "id": 19264,
"properties": {
"facing": "north",
"honey_level": "2"
}
},
{
- "id": 18796,
+ "id": 19265,
"properties": {
"facing": "north",
"honey_level": "3"
}
},
{
- "id": 18797,
+ "id": 19266,
"properties": {
"facing": "north",
"honey_level": "4"
}
},
{
- "id": 18798,
+ "id": 19267,
"properties": {
"facing": "north",
"honey_level": "5"
}
},
{
- "id": 18799,
+ "id": 19268,
"properties": {
"facing": "south",
"honey_level": "0"
}
},
{
- "id": 18800,
+ "id": 19269,
"properties": {
"facing": "south",
"honey_level": "1"
}
},
{
- "id": 18801,
+ "id": 19270,
"properties": {
"facing": "south",
"honey_level": "2"
}
},
{
- "id": 18802,
+ "id": 19271,
"properties": {
"facing": "south",
"honey_level": "3"
}
},
{
- "id": 18803,
+ "id": 19272,
"properties": {
"facing": "south",
"honey_level": "4"
}
},
{
- "id": 18804,
+ "id": 19273,
"properties": {
"facing": "south",
"honey_level": "5"
}
},
{
- "id": 18805,
+ "id": 19274,
"properties": {
"facing": "west",
"honey_level": "0"
}
},
{
- "id": 18806,
+ "id": 19275,
"properties": {
"facing": "west",
"honey_level": "1"
}
},
{
- "id": 18807,
+ "id": 19276,
"properties": {
"facing": "west",
"honey_level": "2"
}
},
{
- "id": 18808,
+ "id": 19277,
"properties": {
"facing": "west",
"honey_level": "3"
}
},
{
- "id": 18809,
+ "id": 19278,
"properties": {
"facing": "west",
"honey_level": "4"
}
},
{
- "id": 18810,
+ "id": 19279,
"properties": {
"facing": "west",
"honey_level": "5"
}
},
{
- "id": 18811,
+ "id": 19280,
"properties": {
"facing": "east",
"honey_level": "0"
}
},
{
- "id": 18812,
+ "id": 19281,
"properties": {
"facing": "east",
"honey_level": "1"
}
},
{
- "id": 18813,
+ "id": 19282,
"properties": {
"facing": "east",
"honey_level": "2"
}
},
{
- "id": 18814,
+ "id": 19283,
"properties": {
"facing": "east",
"honey_level": "3"
}
},
{
- "id": 18815,
+ "id": 19284,
"properties": {
"facing": "east",
"honey_level": "4"
}
},
{
- "id": 18816,
+ "id": 19285,
"properties": {
"facing": "east",
"honey_level": "5"
@@ -14969,25 +14969,25 @@
"states": [
{
"default": true,
- "id": 11884,
+ "id": 12353,
"properties": {
"age": "0"
}
},
{
- "id": 11885,
+ "id": 12354,
"properties": {
"age": "1"
}
},
{
- "id": 11886,
+ "id": 12355,
"properties": {
"age": "2"
}
},
{
- "id": 11887,
+ "id": 12356,
"properties": {
"age": "3"
}
@@ -15015,7 +15015,7 @@
},
"states": [
{
- "id": 17843,
+ "id": 18312,
"properties": {
"attachment": "floor",
"facing": "north",
@@ -15024,7 +15024,7 @@
},
{
"default": true,
- "id": 17844,
+ "id": 18313,
"properties": {
"attachment": "floor",
"facing": "north",
@@ -15032,7 +15032,7 @@
}
},
{
- "id": 17845,
+ "id": 18314,
"properties": {
"attachment": "floor",
"facing": "south",
@@ -15040,7 +15040,7 @@
}
},
{
- "id": 17846,
+ "id": 18315,
"properties": {
"attachment": "floor",
"facing": "south",
@@ -15048,7 +15048,7 @@
}
},
{
- "id": 17847,
+ "id": 18316,
"properties": {
"attachment": "floor",
"facing": "west",
@@ -15056,7 +15056,7 @@
}
},
{
- "id": 17848,
+ "id": 18317,
"properties": {
"attachment": "floor",
"facing": "west",
@@ -15064,7 +15064,7 @@
}
},
{
- "id": 17849,
+ "id": 18318,
"properties": {
"attachment": "floor",
"facing": "east",
@@ -15072,7 +15072,7 @@
}
},
{
- "id": 17850,
+ "id": 18319,
"properties": {
"attachment": "floor",
"facing": "east",
@@ -15080,7 +15080,7 @@
}
},
{
- "id": 17851,
+ "id": 18320,
"properties": {
"attachment": "ceiling",
"facing": "north",
@@ -15088,7 +15088,7 @@
}
},
{
- "id": 17852,
+ "id": 18321,
"properties": {
"attachment": "ceiling",
"facing": "north",
@@ -15096,7 +15096,7 @@
}
},
{
- "id": 17853,
+ "id": 18322,
"properties": {
"attachment": "ceiling",
"facing": "south",
@@ -15104,7 +15104,7 @@
}
},
{
- "id": 17854,
+ "id": 18323,
"properties": {
"attachment": "ceiling",
"facing": "south",
@@ -15112,7 +15112,7 @@
}
},
{
- "id": 17855,
+ "id": 18324,
"properties": {
"attachment": "ceiling",
"facing": "west",
@@ -15120,7 +15120,7 @@
}
},
{
- "id": 17856,
+ "id": 18325,
"properties": {
"attachment": "ceiling",
"facing": "west",
@@ -15128,7 +15128,7 @@
}
},
{
- "id": 17857,
+ "id": 18326,
"properties": {
"attachment": "ceiling",
"facing": "east",
@@ -15136,7 +15136,7 @@
}
},
{
- "id": 17858,
+ "id": 18327,
"properties": {
"attachment": "ceiling",
"facing": "east",
@@ -15144,7 +15144,7 @@
}
},
{
- "id": 17859,
+ "id": 18328,
"properties": {
"attachment": "single_wall",
"facing": "north",
@@ -15152,7 +15152,7 @@
}
},
{
- "id": 17860,
+ "id": 18329,
"properties": {
"attachment": "single_wall",
"facing": "north",
@@ -15160,7 +15160,7 @@
}
},
{
- "id": 17861,
+ "id": 18330,
"properties": {
"attachment": "single_wall",
"facing": "south",
@@ -15168,7 +15168,7 @@
}
},
{
- "id": 17862,
+ "id": 18331,
"properties": {
"attachment": "single_wall",
"facing": "south",
@@ -15176,7 +15176,7 @@
}
},
{
- "id": 17863,
+ "id": 18332,
"properties": {
"attachment": "single_wall",
"facing": "west",
@@ -15184,7 +15184,7 @@
}
},
{
- "id": 17864,
+ "id": 18333,
"properties": {
"attachment": "single_wall",
"facing": "west",
@@ -15192,7 +15192,7 @@
}
},
{
- "id": 17865,
+ "id": 18334,
"properties": {
"attachment": "single_wall",
"facing": "east",
@@ -15200,7 +15200,7 @@
}
},
{
- "id": 17866,
+ "id": 18335,
"properties": {
"attachment": "single_wall",
"facing": "east",
@@ -15208,7 +15208,7 @@
}
},
{
- "id": 17867,
+ "id": 18336,
"properties": {
"attachment": "double_wall",
"facing": "north",
@@ -15216,7 +15216,7 @@
}
},
{
- "id": 17868,
+ "id": 18337,
"properties": {
"attachment": "double_wall",
"facing": "north",
@@ -15224,7 +15224,7 @@
}
},
{
- "id": 17869,
+ "id": 18338,
"properties": {
"attachment": "double_wall",
"facing": "south",
@@ -15232,7 +15232,7 @@
}
},
{
- "id": 17870,
+ "id": 18339,
"properties": {
"attachment": "double_wall",
"facing": "south",
@@ -15240,7 +15240,7 @@
}
},
{
- "id": 17871,
+ "id": 18340,
"properties": {
"attachment": "double_wall",
"facing": "west",
@@ -15248,7 +15248,7 @@
}
},
{
- "id": 17872,
+ "id": 18341,
"properties": {
"attachment": "double_wall",
"facing": "west",
@@ -15256,7 +15256,7 @@
}
},
{
- "id": 17873,
+ "id": 18342,
"properties": {
"attachment": "double_wall",
"facing": "east",
@@ -15264,7 +15264,7 @@
}
},
{
- "id": 17874,
+ "id": 18343,
"properties": {
"attachment": "double_wall",
"facing": "east",
@@ -15294,7 +15294,7 @@
},
"states": [
{
- "id": 21502,
+ "id": 21987,
"properties": {
"facing": "north",
"tilt": "none",
@@ -15303,7 +15303,7 @@
},
{
"default": true,
- "id": 21503,
+ "id": 21988,
"properties": {
"facing": "north",
"tilt": "none",
@@ -15311,7 +15311,7 @@
}
},
{
- "id": 21504,
+ "id": 21989,
"properties": {
"facing": "north",
"tilt": "unstable",
@@ -15319,7 +15319,7 @@
}
},
{
- "id": 21505,
+ "id": 21990,
"properties": {
"facing": "north",
"tilt": "unstable",
@@ -15327,7 +15327,7 @@
}
},
{
- "id": 21506,
+ "id": 21991,
"properties": {
"facing": "north",
"tilt": "partial",
@@ -15335,7 +15335,7 @@
}
},
{
- "id": 21507,
+ "id": 21992,
"properties": {
"facing": "north",
"tilt": "partial",
@@ -15343,7 +15343,7 @@
}
},
{
- "id": 21508,
+ "id": 21993,
"properties": {
"facing": "north",
"tilt": "full",
@@ -15351,7 +15351,7 @@
}
},
{
- "id": 21509,
+ "id": 21994,
"properties": {
"facing": "north",
"tilt": "full",
@@ -15359,7 +15359,7 @@
}
},
{
- "id": 21510,
+ "id": 21995,
"properties": {
"facing": "south",
"tilt": "none",
@@ -15367,7 +15367,7 @@
}
},
{
- "id": 21511,
+ "id": 21996,
"properties": {
"facing": "south",
"tilt": "none",
@@ -15375,7 +15375,7 @@
}
},
{
- "id": 21512,
+ "id": 21997,
"properties": {
"facing": "south",
"tilt": "unstable",
@@ -15383,7 +15383,7 @@
}
},
{
- "id": 21513,
+ "id": 21998,
"properties": {
"facing": "south",
"tilt": "unstable",
@@ -15391,7 +15391,7 @@
}
},
{
- "id": 21514,
+ "id": 21999,
"properties": {
"facing": "south",
"tilt": "partial",
@@ -15399,7 +15399,7 @@
}
},
{
- "id": 21515,
+ "id": 22000,
"properties": {
"facing": "south",
"tilt": "partial",
@@ -15407,7 +15407,7 @@
}
},
{
- "id": 21516,
+ "id": 22001,
"properties": {
"facing": "south",
"tilt": "full",
@@ -15415,7 +15415,7 @@
}
},
{
- "id": 21517,
+ "id": 22002,
"properties": {
"facing": "south",
"tilt": "full",
@@ -15423,7 +15423,7 @@
}
},
{
- "id": 21518,
+ "id": 22003,
"properties": {
"facing": "west",
"tilt": "none",
@@ -15431,7 +15431,7 @@
}
},
{
- "id": 21519,
+ "id": 22004,
"properties": {
"facing": "west",
"tilt": "none",
@@ -15439,7 +15439,7 @@
}
},
{
- "id": 21520,
+ "id": 22005,
"properties": {
"facing": "west",
"tilt": "unstable",
@@ -15447,7 +15447,7 @@
}
},
{
- "id": 21521,
+ "id": 22006,
"properties": {
"facing": "west",
"tilt": "unstable",
@@ -15455,7 +15455,7 @@
}
},
{
- "id": 21522,
+ "id": 22007,
"properties": {
"facing": "west",
"tilt": "partial",
@@ -15463,7 +15463,7 @@
}
},
{
- "id": 21523,
+ "id": 22008,
"properties": {
"facing": "west",
"tilt": "partial",
@@ -15471,7 +15471,7 @@
}
},
{
- "id": 21524,
+ "id": 22009,
"properties": {
"facing": "west",
"tilt": "full",
@@ -15479,7 +15479,7 @@
}
},
{
- "id": 21525,
+ "id": 22010,
"properties": {
"facing": "west",
"tilt": "full",
@@ -15487,7 +15487,7 @@
}
},
{
- "id": 21526,
+ "id": 22011,
"properties": {
"facing": "east",
"tilt": "none",
@@ -15495,7 +15495,7 @@
}
},
{
- "id": 21527,
+ "id": 22012,
"properties": {
"facing": "east",
"tilt": "none",
@@ -15503,7 +15503,7 @@
}
},
{
- "id": 21528,
+ "id": 22013,
"properties": {
"facing": "east",
"tilt": "unstable",
@@ -15511,7 +15511,7 @@
}
},
{
- "id": 21529,
+ "id": 22014,
"properties": {
"facing": "east",
"tilt": "unstable",
@@ -15519,7 +15519,7 @@
}
},
{
- "id": 21530,
+ "id": 22015,
"properties": {
"facing": "east",
"tilt": "partial",
@@ -15527,7 +15527,7 @@
}
},
{
- "id": 21531,
+ "id": 22016,
"properties": {
"facing": "east",
"tilt": "partial",
@@ -15535,7 +15535,7 @@
}
},
{
- "id": 21532,
+ "id": 22017,
"properties": {
"facing": "east",
"tilt": "full",
@@ -15543,7 +15543,7 @@
}
},
{
- "id": 21533,
+ "id": 22018,
"properties": {
"facing": "east",
"tilt": "full",
@@ -15567,7 +15567,7 @@
},
"states": [
{
- "id": 21534,
+ "id": 22019,
"properties": {
"facing": "north",
"waterlogged": "true"
@@ -15575,49 +15575,49 @@
},
{
"default": true,
- "id": 21535,
+ "id": 22020,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 21536,
+ "id": 22021,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 21537,
+ "id": 22022,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 21538,
+ "id": 22023,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 21539,
+ "id": 22024,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 21540,
+ "id": 22025,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 21541,
+ "id": 22026,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -15645,7 +15645,7 @@
},
"states": [
{
- "id": 8427,
+ "id": 8655,
"properties": {
"face": "floor",
"facing": "north",
@@ -15653,7 +15653,7 @@
}
},
{
- "id": 8428,
+ "id": 8656,
"properties": {
"face": "floor",
"facing": "north",
@@ -15661,7 +15661,7 @@
}
},
{
- "id": 8429,
+ "id": 8657,
"properties": {
"face": "floor",
"facing": "south",
@@ -15669,7 +15669,7 @@
}
},
{
- "id": 8430,
+ "id": 8658,
"properties": {
"face": "floor",
"facing": "south",
@@ -15677,7 +15677,7 @@
}
},
{
- "id": 8431,
+ "id": 8659,
"properties": {
"face": "floor",
"facing": "west",
@@ -15685,7 +15685,7 @@
}
},
{
- "id": 8432,
+ "id": 8660,
"properties": {
"face": "floor",
"facing": "west",
@@ -15693,7 +15693,7 @@
}
},
{
- "id": 8433,
+ "id": 8661,
"properties": {
"face": "floor",
"facing": "east",
@@ -15701,7 +15701,7 @@
}
},
{
- "id": 8434,
+ "id": 8662,
"properties": {
"face": "floor",
"facing": "east",
@@ -15709,7 +15709,7 @@
}
},
{
- "id": 8435,
+ "id": 8663,
"properties": {
"face": "wall",
"facing": "north",
@@ -15718,7 +15718,7 @@
},
{
"default": true,
- "id": 8436,
+ "id": 8664,
"properties": {
"face": "wall",
"facing": "north",
@@ -15726,7 +15726,7 @@
}
},
{
- "id": 8437,
+ "id": 8665,
"properties": {
"face": "wall",
"facing": "south",
@@ -15734,7 +15734,7 @@
}
},
{
- "id": 8438,
+ "id": 8666,
"properties": {
"face": "wall",
"facing": "south",
@@ -15742,7 +15742,7 @@
}
},
{
- "id": 8439,
+ "id": 8667,
"properties": {
"face": "wall",
"facing": "west",
@@ -15750,7 +15750,7 @@
}
},
{
- "id": 8440,
+ "id": 8668,
"properties": {
"face": "wall",
"facing": "west",
@@ -15758,7 +15758,7 @@
}
},
{
- "id": 8441,
+ "id": 8669,
"properties": {
"face": "wall",
"facing": "east",
@@ -15766,7 +15766,7 @@
}
},
{
- "id": 8442,
+ "id": 8670,
"properties": {
"face": "wall",
"facing": "east",
@@ -15774,7 +15774,7 @@
}
},
{
- "id": 8443,
+ "id": 8671,
"properties": {
"face": "ceiling",
"facing": "north",
@@ -15782,7 +15782,7 @@
}
},
{
- "id": 8444,
+ "id": 8672,
"properties": {
"face": "ceiling",
"facing": "north",
@@ -15790,7 +15790,7 @@
}
},
{
- "id": 8445,
+ "id": 8673,
"properties": {
"face": "ceiling",
"facing": "south",
@@ -15798,7 +15798,7 @@
}
},
{
- "id": 8446,
+ "id": 8674,
"properties": {
"face": "ceiling",
"facing": "south",
@@ -15806,7 +15806,7 @@
}
},
{
- "id": 8447,
+ "id": 8675,
"properties": {
"face": "ceiling",
"facing": "west",
@@ -15814,7 +15814,7 @@
}
},
{
- "id": 8448,
+ "id": 8676,
"properties": {
"face": "ceiling",
"facing": "west",
@@ -15822,7 +15822,7 @@
}
},
{
- "id": 8449,
+ "id": 8677,
"properties": {
"face": "ceiling",
"facing": "east",
@@ -15830,7 +15830,7 @@
}
},
{
- "id": 8450,
+ "id": 8678,
"properties": {
"face": "ceiling",
"facing": "east",
@@ -15866,7 +15866,7 @@
},
"states": [
{
- "id": 11339,
+ "id": 11741,
"properties": {
"facing": "north",
"half": "upper",
@@ -15876,7 +15876,7 @@
}
},
{
- "id": 11340,
+ "id": 11742,
"properties": {
"facing": "north",
"half": "upper",
@@ -15886,7 +15886,7 @@
}
},
{
- "id": 11341,
+ "id": 11743,
"properties": {
"facing": "north",
"half": "upper",
@@ -15896,7 +15896,7 @@
}
},
{
- "id": 11342,
+ "id": 11744,
"properties": {
"facing": "north",
"half": "upper",
@@ -15906,7 +15906,7 @@
}
},
{
- "id": 11343,
+ "id": 11745,
"properties": {
"facing": "north",
"half": "upper",
@@ -15916,7 +15916,7 @@
}
},
{
- "id": 11344,
+ "id": 11746,
"properties": {
"facing": "north",
"half": "upper",
@@ -15926,7 +15926,7 @@
}
},
{
- "id": 11345,
+ "id": 11747,
"properties": {
"facing": "north",
"half": "upper",
@@ -15936,7 +15936,7 @@
}
},
{
- "id": 11346,
+ "id": 11748,
"properties": {
"facing": "north",
"half": "upper",
@@ -15946,7 +15946,7 @@
}
},
{
- "id": 11347,
+ "id": 11749,
"properties": {
"facing": "north",
"half": "lower",
@@ -15956,7 +15956,7 @@
}
},
{
- "id": 11348,
+ "id": 11750,
"properties": {
"facing": "north",
"half": "lower",
@@ -15966,7 +15966,7 @@
}
},
{
- "id": 11349,
+ "id": 11751,
"properties": {
"facing": "north",
"half": "lower",
@@ -15977,7 +15977,7 @@
},
{
"default": true,
- "id": 11350,
+ "id": 11752,
"properties": {
"facing": "north",
"half": "lower",
@@ -15987,7 +15987,7 @@
}
},
{
- "id": 11351,
+ "id": 11753,
"properties": {
"facing": "north",
"half": "lower",
@@ -15997,7 +15997,7 @@
}
},
{
- "id": 11352,
+ "id": 11754,
"properties": {
"facing": "north",
"half": "lower",
@@ -16007,7 +16007,7 @@
}
},
{
- "id": 11353,
+ "id": 11755,
"properties": {
"facing": "north",
"half": "lower",
@@ -16017,7 +16017,7 @@
}
},
{
- "id": 11354,
+ "id": 11756,
"properties": {
"facing": "north",
"half": "lower",
@@ -16027,7 +16027,7 @@
}
},
{
- "id": 11355,
+ "id": 11757,
"properties": {
"facing": "south",
"half": "upper",
@@ -16037,7 +16037,7 @@
}
},
{
- "id": 11356,
+ "id": 11758,
"properties": {
"facing": "south",
"half": "upper",
@@ -16047,7 +16047,7 @@
}
},
{
- "id": 11357,
+ "id": 11759,
"properties": {
"facing": "south",
"half": "upper",
@@ -16057,7 +16057,7 @@
}
},
{
- "id": 11358,
+ "id": 11760,
"properties": {
"facing": "south",
"half": "upper",
@@ -16067,7 +16067,7 @@
}
},
{
- "id": 11359,
+ "id": 11761,
"properties": {
"facing": "south",
"half": "upper",
@@ -16077,7 +16077,7 @@
}
},
{
- "id": 11360,
+ "id": 11762,
"properties": {
"facing": "south",
"half": "upper",
@@ -16087,7 +16087,7 @@
}
},
{
- "id": 11361,
+ "id": 11763,
"properties": {
"facing": "south",
"half": "upper",
@@ -16097,7 +16097,7 @@
}
},
{
- "id": 11362,
+ "id": 11764,
"properties": {
"facing": "south",
"half": "upper",
@@ -16107,7 +16107,7 @@
}
},
{
- "id": 11363,
+ "id": 11765,
"properties": {
"facing": "south",
"half": "lower",
@@ -16117,7 +16117,7 @@
}
},
{
- "id": 11364,
+ "id": 11766,
"properties": {
"facing": "south",
"half": "lower",
@@ -16127,7 +16127,7 @@
}
},
{
- "id": 11365,
+ "id": 11767,
"properties": {
"facing": "south",
"half": "lower",
@@ -16137,7 +16137,7 @@
}
},
{
- "id": 11366,
+ "id": 11768,
"properties": {
"facing": "south",
"half": "lower",
@@ -16147,7 +16147,7 @@
}
},
{
- "id": 11367,
+ "id": 11769,
"properties": {
"facing": "south",
"half": "lower",
@@ -16157,7 +16157,7 @@
}
},
{
- "id": 11368,
+ "id": 11770,
"properties": {
"facing": "south",
"half": "lower",
@@ -16167,7 +16167,7 @@
}
},
{
- "id": 11369,
+ "id": 11771,
"properties": {
"facing": "south",
"half": "lower",
@@ -16177,7 +16177,7 @@
}
},
{
- "id": 11370,
+ "id": 11772,
"properties": {
"facing": "south",
"half": "lower",
@@ -16187,7 +16187,7 @@
}
},
{
- "id": 11371,
+ "id": 11773,
"properties": {
"facing": "west",
"half": "upper",
@@ -16197,7 +16197,7 @@
}
},
{
- "id": 11372,
+ "id": 11774,
"properties": {
"facing": "west",
"half": "upper",
@@ -16207,7 +16207,7 @@
}
},
{
- "id": 11373,
+ "id": 11775,
"properties": {
"facing": "west",
"half": "upper",
@@ -16217,7 +16217,7 @@
}
},
{
- "id": 11374,
+ "id": 11776,
"properties": {
"facing": "west",
"half": "upper",
@@ -16227,7 +16227,7 @@
}
},
{
- "id": 11375,
+ "id": 11777,
"properties": {
"facing": "west",
"half": "upper",
@@ -16237,7 +16237,7 @@
}
},
{
- "id": 11376,
+ "id": 11778,
"properties": {
"facing": "west",
"half": "upper",
@@ -16247,7 +16247,7 @@
}
},
{
- "id": 11377,
+ "id": 11779,
"properties": {
"facing": "west",
"half": "upper",
@@ -16257,7 +16257,7 @@
}
},
{
- "id": 11378,
+ "id": 11780,
"properties": {
"facing": "west",
"half": "upper",
@@ -16267,7 +16267,7 @@
}
},
{
- "id": 11379,
+ "id": 11781,
"properties": {
"facing": "west",
"half": "lower",
@@ -16277,7 +16277,7 @@
}
},
{
- "id": 11380,
+ "id": 11782,
"properties": {
"facing": "west",
"half": "lower",
@@ -16287,7 +16287,7 @@
}
},
{
- "id": 11381,
+ "id": 11783,
"properties": {
"facing": "west",
"half": "lower",
@@ -16297,7 +16297,7 @@
}
},
{
- "id": 11382,
+ "id": 11784,
"properties": {
"facing": "west",
"half": "lower",
@@ -16307,7 +16307,7 @@
}
},
{
- "id": 11383,
+ "id": 11785,
"properties": {
"facing": "west",
"half": "lower",
@@ -16317,7 +16317,7 @@
}
},
{
- "id": 11384,
+ "id": 11786,
"properties": {
"facing": "west",
"half": "lower",
@@ -16327,7 +16327,7 @@
}
},
{
- "id": 11385,
+ "id": 11787,
"properties": {
"facing": "west",
"half": "lower",
@@ -16337,7 +16337,7 @@
}
},
{
- "id": 11386,
+ "id": 11788,
"properties": {
"facing": "west",
"half": "lower",
@@ -16347,7 +16347,7 @@
}
},
{
- "id": 11387,
+ "id": 11789,
"properties": {
"facing": "east",
"half": "upper",
@@ -16357,7 +16357,7 @@
}
},
{
- "id": 11388,
+ "id": 11790,
"properties": {
"facing": "east",
"half": "upper",
@@ -16367,7 +16367,7 @@
}
},
{
- "id": 11389,
+ "id": 11791,
"properties": {
"facing": "east",
"half": "upper",
@@ -16377,7 +16377,7 @@
}
},
{
- "id": 11390,
+ "id": 11792,
"properties": {
"facing": "east",
"half": "upper",
@@ -16387,7 +16387,7 @@
}
},
{
- "id": 11391,
+ "id": 11793,
"properties": {
"facing": "east",
"half": "upper",
@@ -16397,7 +16397,7 @@
}
},
{
- "id": 11392,
+ "id": 11794,
"properties": {
"facing": "east",
"half": "upper",
@@ -16407,7 +16407,7 @@
}
},
{
- "id": 11393,
+ "id": 11795,
"properties": {
"facing": "east",
"half": "upper",
@@ -16417,7 +16417,7 @@
}
},
{
- "id": 11394,
+ "id": 11796,
"properties": {
"facing": "east",
"half": "upper",
@@ -16427,7 +16427,7 @@
}
},
{
- "id": 11395,
+ "id": 11797,
"properties": {
"facing": "east",
"half": "lower",
@@ -16437,7 +16437,7 @@
}
},
{
- "id": 11396,
+ "id": 11798,
"properties": {
"facing": "east",
"half": "lower",
@@ -16447,7 +16447,7 @@
}
},
{
- "id": 11397,
+ "id": 11799,
"properties": {
"facing": "east",
"half": "lower",
@@ -16457,7 +16457,7 @@
}
},
{
- "id": 11398,
+ "id": 11800,
"properties": {
"facing": "east",
"half": "lower",
@@ -16467,7 +16467,7 @@
}
},
{
- "id": 11399,
+ "id": 11801,
"properties": {
"facing": "east",
"half": "lower",
@@ -16477,7 +16477,7 @@
}
},
{
- "id": 11400,
+ "id": 11802,
"properties": {
"facing": "east",
"half": "lower",
@@ -16487,7 +16487,7 @@
}
},
{
- "id": 11401,
+ "id": 11803,
"properties": {
"facing": "east",
"half": "lower",
@@ -16497,7 +16497,7 @@
}
},
{
- "id": 11402,
+ "id": 11804,
"properties": {
"facing": "east",
"half": "lower",
@@ -16533,7 +16533,7 @@
},
"states": [
{
- "id": 11083,
+ "id": 11453,
"properties": {
"east": "true",
"north": "true",
@@ -16543,7 +16543,7 @@
}
},
{
- "id": 11084,
+ "id": 11454,
"properties": {
"east": "true",
"north": "true",
@@ -16553,7 +16553,7 @@
}
},
{
- "id": 11085,
+ "id": 11455,
"properties": {
"east": "true",
"north": "true",
@@ -16563,7 +16563,7 @@
}
},
{
- "id": 11086,
+ "id": 11456,
"properties": {
"east": "true",
"north": "true",
@@ -16573,7 +16573,7 @@
}
},
{
- "id": 11087,
+ "id": 11457,
"properties": {
"east": "true",
"north": "true",
@@ -16583,7 +16583,7 @@
}
},
{
- "id": 11088,
+ "id": 11458,
"properties": {
"east": "true",
"north": "true",
@@ -16593,7 +16593,7 @@
}
},
{
- "id": 11089,
+ "id": 11459,
"properties": {
"east": "true",
"north": "true",
@@ -16603,7 +16603,7 @@
}
},
{
- "id": 11090,
+ "id": 11460,
"properties": {
"east": "true",
"north": "true",
@@ -16613,7 +16613,7 @@
}
},
{
- "id": 11091,
+ "id": 11461,
"properties": {
"east": "true",
"north": "false",
@@ -16623,7 +16623,7 @@
}
},
{
- "id": 11092,
+ "id": 11462,
"properties": {
"east": "true",
"north": "false",
@@ -16633,7 +16633,7 @@
}
},
{
- "id": 11093,
+ "id": 11463,
"properties": {
"east": "true",
"north": "false",
@@ -16643,7 +16643,7 @@
}
},
{
- "id": 11094,
+ "id": 11464,
"properties": {
"east": "true",
"north": "false",
@@ -16653,7 +16653,7 @@
}
},
{
- "id": 11095,
+ "id": 11465,
"properties": {
"east": "true",
"north": "false",
@@ -16663,7 +16663,7 @@
}
},
{
- "id": 11096,
+ "id": 11466,
"properties": {
"east": "true",
"north": "false",
@@ -16673,7 +16673,7 @@
}
},
{
- "id": 11097,
+ "id": 11467,
"properties": {
"east": "true",
"north": "false",
@@ -16683,7 +16683,7 @@
}
},
{
- "id": 11098,
+ "id": 11468,
"properties": {
"east": "true",
"north": "false",
@@ -16693,7 +16693,7 @@
}
},
{
- "id": 11099,
+ "id": 11469,
"properties": {
"east": "false",
"north": "true",
@@ -16703,7 +16703,7 @@
}
},
{
- "id": 11100,
+ "id": 11470,
"properties": {
"east": "false",
"north": "true",
@@ -16713,7 +16713,7 @@
}
},
{
- "id": 11101,
+ "id": 11471,
"properties": {
"east": "false",
"north": "true",
@@ -16723,7 +16723,7 @@
}
},
{
- "id": 11102,
+ "id": 11472,
"properties": {
"east": "false",
"north": "true",
@@ -16733,7 +16733,7 @@
}
},
{
- "id": 11103,
+ "id": 11473,
"properties": {
"east": "false",
"north": "true",
@@ -16743,7 +16743,7 @@
}
},
{
- "id": 11104,
+ "id": 11474,
"properties": {
"east": "false",
"north": "true",
@@ -16753,7 +16753,7 @@
}
},
{
- "id": 11105,
+ "id": 11475,
"properties": {
"east": "false",
"north": "true",
@@ -16763,7 +16763,7 @@
}
},
{
- "id": 11106,
+ "id": 11476,
"properties": {
"east": "false",
"north": "true",
@@ -16773,7 +16773,7 @@
}
},
{
- "id": 11107,
+ "id": 11477,
"properties": {
"east": "false",
"north": "false",
@@ -16783,7 +16783,7 @@
}
},
{
- "id": 11108,
+ "id": 11478,
"properties": {
"east": "false",
"north": "false",
@@ -16793,7 +16793,7 @@
}
},
{
- "id": 11109,
+ "id": 11479,
"properties": {
"east": "false",
"north": "false",
@@ -16803,7 +16803,7 @@
}
},
{
- "id": 11110,
+ "id": 11480,
"properties": {
"east": "false",
"north": "false",
@@ -16813,7 +16813,7 @@
}
},
{
- "id": 11111,
+ "id": 11481,
"properties": {
"east": "false",
"north": "false",
@@ -16823,7 +16823,7 @@
}
},
{
- "id": 11112,
+ "id": 11482,
"properties": {
"east": "false",
"north": "false",
@@ -16833,7 +16833,7 @@
}
},
{
- "id": 11113,
+ "id": 11483,
"properties": {
"east": "false",
"north": "false",
@@ -16844,7 +16844,7 @@
},
{
"default": true,
- "id": 11114,
+ "id": 11484,
"properties": {
"east": "false",
"north": "false",
@@ -16878,7 +16878,7 @@
},
"states": [
{
- "id": 10859,
+ "id": 11197,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -16887,7 +16887,7 @@
}
},
{
- "id": 10860,
+ "id": 11198,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -16896,7 +16896,7 @@
}
},
{
- "id": 10861,
+ "id": 11199,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -16905,7 +16905,7 @@
}
},
{
- "id": 10862,
+ "id": 11200,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -16914,7 +16914,7 @@
}
},
{
- "id": 10863,
+ "id": 11201,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -16923,7 +16923,7 @@
}
},
{
- "id": 10864,
+ "id": 11202,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -16932,7 +16932,7 @@
}
},
{
- "id": 10865,
+ "id": 11203,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -16942,7 +16942,7 @@
},
{
"default": true,
- "id": 10866,
+ "id": 11204,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -16951,7 +16951,7 @@
}
},
{
- "id": 10867,
+ "id": 11205,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -16960,7 +16960,7 @@
}
},
{
- "id": 10868,
+ "id": 11206,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -16969,7 +16969,7 @@
}
},
{
- "id": 10869,
+ "id": 11207,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -16978,7 +16978,7 @@
}
},
{
- "id": 10870,
+ "id": 11208,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -16987,7 +16987,7 @@
}
},
{
- "id": 10871,
+ "id": 11209,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -16996,7 +16996,7 @@
}
},
{
- "id": 10872,
+ "id": 11210,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -17005,7 +17005,7 @@
}
},
{
- "id": 10873,
+ "id": 11211,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -17014,7 +17014,7 @@
}
},
{
- "id": 10874,
+ "id": 11212,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -17023,7 +17023,7 @@
}
},
{
- "id": 10875,
+ "id": 11213,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -17032,7 +17032,7 @@
}
},
{
- "id": 10876,
+ "id": 11214,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -17041,7 +17041,7 @@
}
},
{
- "id": 10877,
+ "id": 11215,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -17050,7 +17050,7 @@
}
},
{
- "id": 10878,
+ "id": 11216,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -17059,7 +17059,7 @@
}
},
{
- "id": 10879,
+ "id": 11217,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -17068,7 +17068,7 @@
}
},
{
- "id": 10880,
+ "id": 11218,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -17077,7 +17077,7 @@
}
},
{
- "id": 10881,
+ "id": 11219,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -17086,7 +17086,7 @@
}
},
{
- "id": 10882,
+ "id": 11220,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -17095,7 +17095,7 @@
}
},
{
- "id": 10883,
+ "id": 11221,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -17104,7 +17104,7 @@
}
},
{
- "id": 10884,
+ "id": 11222,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -17113,7 +17113,7 @@
}
},
{
- "id": 10885,
+ "id": 11223,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -17122,7 +17122,7 @@
}
},
{
- "id": 10886,
+ "id": 11224,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -17131,7 +17131,7 @@
}
},
{
- "id": 10887,
+ "id": 11225,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -17140,7 +17140,7 @@
}
},
{
- "id": 10888,
+ "id": 11226,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -17149,7 +17149,7 @@
}
},
{
- "id": 10889,
+ "id": 11227,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -17158,7 +17158,7 @@
}
},
{
- "id": 10890,
+ "id": 11228,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -17199,7 +17199,7 @@
},
"states": [
{
- "id": 4870,
+ "id": 4958,
"properties": {
"attached": "true",
"rotation": "0",
@@ -17207,7 +17207,7 @@
}
},
{
- "id": 4871,
+ "id": 4959,
"properties": {
"attached": "true",
"rotation": "0",
@@ -17215,7 +17215,7 @@
}
},
{
- "id": 4872,
+ "id": 4960,
"properties": {
"attached": "true",
"rotation": "1",
@@ -17223,7 +17223,7 @@
}
},
{
- "id": 4873,
+ "id": 4961,
"properties": {
"attached": "true",
"rotation": "1",
@@ -17231,7 +17231,7 @@
}
},
{
- "id": 4874,
+ "id": 4962,
"properties": {
"attached": "true",
"rotation": "2",
@@ -17239,7 +17239,7 @@
}
},
{
- "id": 4875,
+ "id": 4963,
"properties": {
"attached": "true",
"rotation": "2",
@@ -17247,7 +17247,7 @@
}
},
{
- "id": 4876,
+ "id": 4964,
"properties": {
"attached": "true",
"rotation": "3",
@@ -17255,7 +17255,7 @@
}
},
{
- "id": 4877,
+ "id": 4965,
"properties": {
"attached": "true",
"rotation": "3",
@@ -17263,7 +17263,7 @@
}
},
{
- "id": 4878,
+ "id": 4966,
"properties": {
"attached": "true",
"rotation": "4",
@@ -17271,7 +17271,7 @@
}
},
{
- "id": 4879,
+ "id": 4967,
"properties": {
"attached": "true",
"rotation": "4",
@@ -17279,7 +17279,7 @@
}
},
{
- "id": 4880,
+ "id": 4968,
"properties": {
"attached": "true",
"rotation": "5",
@@ -17287,7 +17287,7 @@
}
},
{
- "id": 4881,
+ "id": 4969,
"properties": {
"attached": "true",
"rotation": "5",
@@ -17295,7 +17295,7 @@
}
},
{
- "id": 4882,
+ "id": 4970,
"properties": {
"attached": "true",
"rotation": "6",
@@ -17303,7 +17303,7 @@
}
},
{
- "id": 4883,
+ "id": 4971,
"properties": {
"attached": "true",
"rotation": "6",
@@ -17311,7 +17311,7 @@
}
},
{
- "id": 4884,
+ "id": 4972,
"properties": {
"attached": "true",
"rotation": "7",
@@ -17319,7 +17319,7 @@
}
},
{
- "id": 4885,
+ "id": 4973,
"properties": {
"attached": "true",
"rotation": "7",
@@ -17327,7 +17327,7 @@
}
},
{
- "id": 4886,
+ "id": 4974,
"properties": {
"attached": "true",
"rotation": "8",
@@ -17335,7 +17335,7 @@
}
},
{
- "id": 4887,
+ "id": 4975,
"properties": {
"attached": "true",
"rotation": "8",
@@ -17343,7 +17343,7 @@
}
},
{
- "id": 4888,
+ "id": 4976,
"properties": {
"attached": "true",
"rotation": "9",
@@ -17351,7 +17351,7 @@
}
},
{
- "id": 4889,
+ "id": 4977,
"properties": {
"attached": "true",
"rotation": "9",
@@ -17359,7 +17359,7 @@
}
},
{
- "id": 4890,
+ "id": 4978,
"properties": {
"attached": "true",
"rotation": "10",
@@ -17367,7 +17367,7 @@
}
},
{
- "id": 4891,
+ "id": 4979,
"properties": {
"attached": "true",
"rotation": "10",
@@ -17375,7 +17375,7 @@
}
},
{
- "id": 4892,
+ "id": 4980,
"properties": {
"attached": "true",
"rotation": "11",
@@ -17383,7 +17383,7 @@
}
},
{
- "id": 4893,
+ "id": 4981,
"properties": {
"attached": "true",
"rotation": "11",
@@ -17391,7 +17391,7 @@
}
},
{
- "id": 4894,
+ "id": 4982,
"properties": {
"attached": "true",
"rotation": "12",
@@ -17399,7 +17399,7 @@
}
},
{
- "id": 4895,
+ "id": 4983,
"properties": {
"attached": "true",
"rotation": "12",
@@ -17407,7 +17407,7 @@
}
},
{
- "id": 4896,
+ "id": 4984,
"properties": {
"attached": "true",
"rotation": "13",
@@ -17415,7 +17415,7 @@
}
},
{
- "id": 4897,
+ "id": 4985,
"properties": {
"attached": "true",
"rotation": "13",
@@ -17423,7 +17423,7 @@
}
},
{
- "id": 4898,
+ "id": 4986,
"properties": {
"attached": "true",
"rotation": "14",
@@ -17431,7 +17431,7 @@
}
},
{
- "id": 4899,
+ "id": 4987,
"properties": {
"attached": "true",
"rotation": "14",
@@ -17439,7 +17439,7 @@
}
},
{
- "id": 4900,
+ "id": 4988,
"properties": {
"attached": "true",
"rotation": "15",
@@ -17447,7 +17447,7 @@
}
},
{
- "id": 4901,
+ "id": 4989,
"properties": {
"attached": "true",
"rotation": "15",
@@ -17455,7 +17455,7 @@
}
},
{
- "id": 4902,
+ "id": 4990,
"properties": {
"attached": "false",
"rotation": "0",
@@ -17464,7 +17464,7 @@
},
{
"default": true,
- "id": 4903,
+ "id": 4991,
"properties": {
"attached": "false",
"rotation": "0",
@@ -17472,7 +17472,7 @@
}
},
{
- "id": 4904,
+ "id": 4992,
"properties": {
"attached": "false",
"rotation": "1",
@@ -17480,7 +17480,7 @@
}
},
{
- "id": 4905,
+ "id": 4993,
"properties": {
"attached": "false",
"rotation": "1",
@@ -17488,7 +17488,7 @@
}
},
{
- "id": 4906,
+ "id": 4994,
"properties": {
"attached": "false",
"rotation": "2",
@@ -17496,7 +17496,7 @@
}
},
{
- "id": 4907,
+ "id": 4995,
"properties": {
"attached": "false",
"rotation": "2",
@@ -17504,7 +17504,7 @@
}
},
{
- "id": 4908,
+ "id": 4996,
"properties": {
"attached": "false",
"rotation": "3",
@@ -17512,7 +17512,7 @@
}
},
{
- "id": 4909,
+ "id": 4997,
"properties": {
"attached": "false",
"rotation": "3",
@@ -17520,7 +17520,7 @@
}
},
{
- "id": 4910,
+ "id": 4998,
"properties": {
"attached": "false",
"rotation": "4",
@@ -17528,7 +17528,7 @@
}
},
{
- "id": 4911,
+ "id": 4999,
"properties": {
"attached": "false",
"rotation": "4",
@@ -17536,7 +17536,7 @@
}
},
{
- "id": 4912,
+ "id": 5000,
"properties": {
"attached": "false",
"rotation": "5",
@@ -17544,7 +17544,7 @@
}
},
{
- "id": 4913,
+ "id": 5001,
"properties": {
"attached": "false",
"rotation": "5",
@@ -17552,7 +17552,7 @@
}
},
{
- "id": 4914,
+ "id": 5002,
"properties": {
"attached": "false",
"rotation": "6",
@@ -17560,7 +17560,7 @@
}
},
{
- "id": 4915,
+ "id": 5003,
"properties": {
"attached": "false",
"rotation": "6",
@@ -17568,7 +17568,7 @@
}
},
{
- "id": 4916,
+ "id": 5004,
"properties": {
"attached": "false",
"rotation": "7",
@@ -17576,7 +17576,7 @@
}
},
{
- "id": 4917,
+ "id": 5005,
"properties": {
"attached": "false",
"rotation": "7",
@@ -17584,7 +17584,7 @@
}
},
{
- "id": 4918,
+ "id": 5006,
"properties": {
"attached": "false",
"rotation": "8",
@@ -17592,7 +17592,7 @@
}
},
{
- "id": 4919,
+ "id": 5007,
"properties": {
"attached": "false",
"rotation": "8",
@@ -17600,7 +17600,7 @@
}
},
{
- "id": 4920,
+ "id": 5008,
"properties": {
"attached": "false",
"rotation": "9",
@@ -17608,7 +17608,7 @@
}
},
{
- "id": 4921,
+ "id": 5009,
"properties": {
"attached": "false",
"rotation": "9",
@@ -17616,7 +17616,7 @@
}
},
{
- "id": 4922,
+ "id": 5010,
"properties": {
"attached": "false",
"rotation": "10",
@@ -17624,7 +17624,7 @@
}
},
{
- "id": 4923,
+ "id": 5011,
"properties": {
"attached": "false",
"rotation": "10",
@@ -17632,7 +17632,7 @@
}
},
{
- "id": 4924,
+ "id": 5012,
"properties": {
"attached": "false",
"rotation": "11",
@@ -17640,7 +17640,7 @@
}
},
{
- "id": 4925,
+ "id": 5013,
"properties": {
"attached": "false",
"rotation": "11",
@@ -17648,7 +17648,7 @@
}
},
{
- "id": 4926,
+ "id": 5014,
"properties": {
"attached": "false",
"rotation": "12",
@@ -17656,7 +17656,7 @@
}
},
{
- "id": 4927,
+ "id": 5015,
"properties": {
"attached": "false",
"rotation": "12",
@@ -17664,7 +17664,7 @@
}
},
{
- "id": 4928,
+ "id": 5016,
"properties": {
"attached": "false",
"rotation": "13",
@@ -17672,7 +17672,7 @@
}
},
{
- "id": 4929,
+ "id": 5017,
"properties": {
"attached": "false",
"rotation": "13",
@@ -17680,7 +17680,7 @@
}
},
{
- "id": 4930,
+ "id": 5018,
"properties": {
"attached": "false",
"rotation": "14",
@@ -17688,7 +17688,7 @@
}
},
{
- "id": 4931,
+ "id": 5019,
"properties": {
"attached": "false",
"rotation": "14",
@@ -17696,7 +17696,7 @@
}
},
{
- "id": 4932,
+ "id": 5020,
"properties": {
"attached": "false",
"rotation": "15",
@@ -17704,7 +17704,7 @@
}
},
{
- "id": 4933,
+ "id": 5021,
"properties": {
"attached": "false",
"rotation": "15",
@@ -17734,192 +17734,192 @@
]
},
"states": [
- {
- "id": 270,
- "properties": {
- "distance": "1",
- "persistent": "true",
- "waterlogged": "true"
- }
- },
- {
- "id": 271,
- "properties": {
- "distance": "1",
- "persistent": "true",
- "waterlogged": "false"
- }
- },
- {
- "id": 272,
- "properties": {
- "distance": "1",
- "persistent": "false",
- "waterlogged": "true"
- }
- },
- {
- "id": 273,
- "properties": {
- "distance": "1",
- "persistent": "false",
- "waterlogged": "false"
- }
- },
- {
- "id": 274,
- "properties": {
- "distance": "2",
- "persistent": "true",
- "waterlogged": "true"
- }
- },
- {
- "id": 275,
- "properties": {
- "distance": "2",
- "persistent": "true",
- "waterlogged": "false"
- }
- },
- {
- "id": 276,
- "properties": {
- "distance": "2",
- "persistent": "false",
- "waterlogged": "true"
- }
- },
- {
- "id": 277,
- "properties": {
- "distance": "2",
- "persistent": "false",
- "waterlogged": "false"
- }
- },
- {
- "id": 278,
- "properties": {
- "distance": "3",
- "persistent": "true",
- "waterlogged": "true"
- }
- },
- {
- "id": 279,
- "properties": {
- "distance": "3",
- "persistent": "true",
- "waterlogged": "false"
- }
- },
- {
- "id": 280,
- "properties": {
- "distance": "3",
- "persistent": "false",
- "waterlogged": "true"
- }
- },
- {
- "id": 281,
- "properties": {
- "distance": "3",
- "persistent": "false",
- "waterlogged": "false"
- }
- },
- {
- "id": 282,
- "properties": {
- "distance": "4",
- "persistent": "true",
- "waterlogged": "true"
- }
- },
- {
- "id": 283,
- "properties": {
- "distance": "4",
- "persistent": "true",
- "waterlogged": "false"
- }
- },
- {
- "id": 284,
- "properties": {
- "distance": "4",
- "persistent": "false",
- "waterlogged": "true"
- }
- },
- {
- "id": 285,
- "properties": {
- "distance": "4",
- "persistent": "false",
- "waterlogged": "false"
- }
- },
- {
- "id": 286,
- "properties": {
- "distance": "5",
- "persistent": "true",
- "waterlogged": "true"
- }
- },
- {
- "id": 287,
- "properties": {
- "distance": "5",
- "persistent": "true",
- "waterlogged": "false"
- }
- },
- {
- "id": 288,
- "properties": {
- "distance": "5",
- "persistent": "false",
- "waterlogged": "true"
- }
- },
{
"id": 289,
"properties": {
- "distance": "5",
- "persistent": "false",
- "waterlogged": "false"
+ "distance": "1",
+ "persistent": "true",
+ "waterlogged": "true"
}
},
{
"id": 290,
"properties": {
- "distance": "6",
+ "distance": "1",
"persistent": "true",
- "waterlogged": "true"
+ "waterlogged": "false"
}
},
{
"id": 291,
"properties": {
- "distance": "6",
- "persistent": "true",
- "waterlogged": "false"
+ "distance": "1",
+ "persistent": "false",
+ "waterlogged": "true"
}
},
{
"id": 292,
"properties": {
- "distance": "6",
+ "distance": "1",
"persistent": "false",
- "waterlogged": "true"
+ "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",
@@ -17927,7 +17927,7 @@
}
},
{
- "id": 294,
+ "id": 313,
"properties": {
"distance": "7",
"persistent": "true",
@@ -17935,7 +17935,7 @@
}
},
{
- "id": 295,
+ "id": 314,
"properties": {
"distance": "7",
"persistent": "true",
@@ -17943,7 +17943,7 @@
}
},
{
- "id": 296,
+ "id": 315,
"properties": {
"distance": "7",
"persistent": "false",
@@ -17952,7 +17952,7 @@
},
{
"default": true,
- "id": 297,
+ "id": 316,
"properties": {
"distance": "7",
"persistent": "false",
@@ -17971,20 +17971,20 @@
},
"states": [
{
- "id": 125,
+ "id": 132,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 126,
+ "id": 133,
"properties": {
"axis": "y"
}
},
{
- "id": 127,
+ "id": 134,
"properties": {
"axis": "z"
}
@@ -18008,14 +18008,14 @@
},
"states": [
{
- "id": 5556,
+ "id": 5716,
"properties": {
"powered": "true"
}
},
{
"default": true,
- "id": 5557,
+ "id": 5717,
"properties": {
"powered": "false"
}
@@ -18032,13 +18032,13 @@
"states": [
{
"default": true,
- "id": 28,
+ "id": 29,
"properties": {
"stage": "0"
}
},
{
- "id": 29,
+ "id": 30,
"properties": {
"stage": "1"
}
@@ -18072,7 +18072,7 @@
},
"states": [
{
- "id": 4314,
+ "id": 4362,
"properties": {
"rotation": "0",
"waterlogged": "true"
@@ -18080,217 +18080,217 @@
},
{
"default": true,
- "id": 4315,
+ "id": 4363,
"properties": {
"rotation": "0",
"waterlogged": "false"
}
},
{
- "id": 4316,
+ "id": 4364,
"properties": {
"rotation": "1",
"waterlogged": "true"
}
},
{
- "id": 4317,
+ "id": 4365,
"properties": {
"rotation": "1",
"waterlogged": "false"
}
},
{
- "id": 4318,
+ "id": 4366,
"properties": {
"rotation": "2",
"waterlogged": "true"
}
},
{
- "id": 4319,
+ "id": 4367,
"properties": {
"rotation": "2",
"waterlogged": "false"
}
},
{
- "id": 4320,
+ "id": 4368,
"properties": {
"rotation": "3",
"waterlogged": "true"
}
},
{
- "id": 4321,
+ "id": 4369,
"properties": {
"rotation": "3",
"waterlogged": "false"
}
},
{
- "id": 4322,
+ "id": 4370,
"properties": {
"rotation": "4",
"waterlogged": "true"
}
},
{
- "id": 4323,
+ "id": 4371,
"properties": {
"rotation": "4",
"waterlogged": "false"
}
},
{
- "id": 4324,
+ "id": 4372,
"properties": {
"rotation": "5",
"waterlogged": "true"
}
},
{
- "id": 4325,
+ "id": 4373,
"properties": {
"rotation": "5",
"waterlogged": "false"
}
},
{
- "id": 4326,
+ "id": 4374,
"properties": {
"rotation": "6",
"waterlogged": "true"
}
},
{
- "id": 4327,
+ "id": 4375,
"properties": {
"rotation": "6",
"waterlogged": "false"
}
},
{
- "id": 4328,
+ "id": 4376,
"properties": {
"rotation": "7",
"waterlogged": "true"
}
},
{
- "id": 4329,
+ "id": 4377,
"properties": {
"rotation": "7",
"waterlogged": "false"
}
},
{
- "id": 4330,
+ "id": 4378,
"properties": {
"rotation": "8",
"waterlogged": "true"
}
},
{
- "id": 4331,
+ "id": 4379,
"properties": {
"rotation": "8",
"waterlogged": "false"
}
},
{
- "id": 4332,
+ "id": 4380,
"properties": {
"rotation": "9",
"waterlogged": "true"
}
},
{
- "id": 4333,
+ "id": 4381,
"properties": {
"rotation": "9",
"waterlogged": "false"
}
},
{
- "id": 4334,
+ "id": 4382,
"properties": {
"rotation": "10",
"waterlogged": "true"
}
},
{
- "id": 4335,
+ "id": 4383,
"properties": {
"rotation": "10",
"waterlogged": "false"
}
},
{
- "id": 4336,
+ "id": 4384,
"properties": {
"rotation": "11",
"waterlogged": "true"
}
},
{
- "id": 4337,
+ "id": 4385,
"properties": {
"rotation": "11",
"waterlogged": "false"
}
},
{
- "id": 4338,
+ "id": 4386,
"properties": {
"rotation": "12",
"waterlogged": "true"
}
},
{
- "id": 4339,
+ "id": 4387,
"properties": {
"rotation": "12",
"waterlogged": "false"
}
},
{
- "id": 4340,
+ "id": 4388,
"properties": {
"rotation": "13",
"waterlogged": "true"
}
},
{
- "id": 4341,
+ "id": 4389,
"properties": {
"rotation": "13",
"waterlogged": "false"
}
},
{
- "id": 4342,
+ "id": 4390,
"properties": {
"rotation": "14",
"waterlogged": "true"
}
},
{
- "id": 4343,
+ "id": 4391,
"properties": {
"rotation": "14",
"waterlogged": "false"
}
},
{
- "id": 4344,
+ "id": 4392,
"properties": {
"rotation": "15",
"waterlogged": "true"
}
},
{
- "id": 4345,
+ "id": 4393,
"properties": {
"rotation": "15",
"waterlogged": "false"
@@ -18312,21 +18312,21 @@
},
"states": [
{
- "id": 10697,
+ "id": 11029,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 10698,
+ "id": 11030,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 10699,
+ "id": 11031,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -18334,21 +18334,21 @@
},
{
"default": true,
- "id": 10700,
+ "id": 11032,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 10701,
+ "id": 11033,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 10702,
+ "id": 11034,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -18382,7 +18382,7 @@
},
"states": [
{
- "id": 7516,
+ "id": 7742,
"properties": {
"facing": "north",
"half": "top",
@@ -18391,7 +18391,7 @@
}
},
{
- "id": 7517,
+ "id": 7743,
"properties": {
"facing": "north",
"half": "top",
@@ -18400,7 +18400,7 @@
}
},
{
- "id": 7518,
+ "id": 7744,
"properties": {
"facing": "north",
"half": "top",
@@ -18409,7 +18409,7 @@
}
},
{
- "id": 7519,
+ "id": 7745,
"properties": {
"facing": "north",
"half": "top",
@@ -18418,7 +18418,7 @@
}
},
{
- "id": 7520,
+ "id": 7746,
"properties": {
"facing": "north",
"half": "top",
@@ -18427,7 +18427,7 @@
}
},
{
- "id": 7521,
+ "id": 7747,
"properties": {
"facing": "north",
"half": "top",
@@ -18436,7 +18436,7 @@
}
},
{
- "id": 7522,
+ "id": 7748,
"properties": {
"facing": "north",
"half": "top",
@@ -18445,7 +18445,7 @@
}
},
{
- "id": 7523,
+ "id": 7749,
"properties": {
"facing": "north",
"half": "top",
@@ -18454,7 +18454,7 @@
}
},
{
- "id": 7524,
+ "id": 7750,
"properties": {
"facing": "north",
"half": "top",
@@ -18463,7 +18463,7 @@
}
},
{
- "id": 7525,
+ "id": 7751,
"properties": {
"facing": "north",
"half": "top",
@@ -18472,7 +18472,7 @@
}
},
{
- "id": 7526,
+ "id": 7752,
"properties": {
"facing": "north",
"half": "bottom",
@@ -18482,7 +18482,7 @@
},
{
"default": true,
- "id": 7527,
+ "id": 7753,
"properties": {
"facing": "north",
"half": "bottom",
@@ -18491,7 +18491,7 @@
}
},
{
- "id": 7528,
+ "id": 7754,
"properties": {
"facing": "north",
"half": "bottom",
@@ -18500,7 +18500,7 @@
}
},
{
- "id": 7529,
+ "id": 7755,
"properties": {
"facing": "north",
"half": "bottom",
@@ -18509,7 +18509,7 @@
}
},
{
- "id": 7530,
+ "id": 7756,
"properties": {
"facing": "north",
"half": "bottom",
@@ -18518,7 +18518,7 @@
}
},
{
- "id": 7531,
+ "id": 7757,
"properties": {
"facing": "north",
"half": "bottom",
@@ -18527,7 +18527,7 @@
}
},
{
- "id": 7532,
+ "id": 7758,
"properties": {
"facing": "north",
"half": "bottom",
@@ -18536,7 +18536,7 @@
}
},
{
- "id": 7533,
+ "id": 7759,
"properties": {
"facing": "north",
"half": "bottom",
@@ -18545,7 +18545,7 @@
}
},
{
- "id": 7534,
+ "id": 7760,
"properties": {
"facing": "north",
"half": "bottom",
@@ -18554,7 +18554,7 @@
}
},
{
- "id": 7535,
+ "id": 7761,
"properties": {
"facing": "north",
"half": "bottom",
@@ -18563,7 +18563,7 @@
}
},
{
- "id": 7536,
+ "id": 7762,
"properties": {
"facing": "south",
"half": "top",
@@ -18572,7 +18572,7 @@
}
},
{
- "id": 7537,
+ "id": 7763,
"properties": {
"facing": "south",
"half": "top",
@@ -18581,7 +18581,7 @@
}
},
{
- "id": 7538,
+ "id": 7764,
"properties": {
"facing": "south",
"half": "top",
@@ -18590,7 +18590,7 @@
}
},
{
- "id": 7539,
+ "id": 7765,
"properties": {
"facing": "south",
"half": "top",
@@ -18599,7 +18599,7 @@
}
},
{
- "id": 7540,
+ "id": 7766,
"properties": {
"facing": "south",
"half": "top",
@@ -18608,7 +18608,7 @@
}
},
{
- "id": 7541,
+ "id": 7767,
"properties": {
"facing": "south",
"half": "top",
@@ -18617,7 +18617,7 @@
}
},
{
- "id": 7542,
+ "id": 7768,
"properties": {
"facing": "south",
"half": "top",
@@ -18626,7 +18626,7 @@
}
},
{
- "id": 7543,
+ "id": 7769,
"properties": {
"facing": "south",
"half": "top",
@@ -18635,7 +18635,7 @@
}
},
{
- "id": 7544,
+ "id": 7770,
"properties": {
"facing": "south",
"half": "top",
@@ -18644,7 +18644,7 @@
}
},
{
- "id": 7545,
+ "id": 7771,
"properties": {
"facing": "south",
"half": "top",
@@ -18653,7 +18653,7 @@
}
},
{
- "id": 7546,
+ "id": 7772,
"properties": {
"facing": "south",
"half": "bottom",
@@ -18662,7 +18662,7 @@
}
},
{
- "id": 7547,
+ "id": 7773,
"properties": {
"facing": "south",
"half": "bottom",
@@ -18671,7 +18671,7 @@
}
},
{
- "id": 7548,
+ "id": 7774,
"properties": {
"facing": "south",
"half": "bottom",
@@ -18680,7 +18680,7 @@
}
},
{
- "id": 7549,
+ "id": 7775,
"properties": {
"facing": "south",
"half": "bottom",
@@ -18689,7 +18689,7 @@
}
},
{
- "id": 7550,
+ "id": 7776,
"properties": {
"facing": "south",
"half": "bottom",
@@ -18698,7 +18698,7 @@
}
},
{
- "id": 7551,
+ "id": 7777,
"properties": {
"facing": "south",
"half": "bottom",
@@ -18707,7 +18707,7 @@
}
},
{
- "id": 7552,
+ "id": 7778,
"properties": {
"facing": "south",
"half": "bottom",
@@ -18716,7 +18716,7 @@
}
},
{
- "id": 7553,
+ "id": 7779,
"properties": {
"facing": "south",
"half": "bottom",
@@ -18725,7 +18725,7 @@
}
},
{
- "id": 7554,
+ "id": 7780,
"properties": {
"facing": "south",
"half": "bottom",
@@ -18734,7 +18734,7 @@
}
},
{
- "id": 7555,
+ "id": 7781,
"properties": {
"facing": "south",
"half": "bottom",
@@ -18743,7 +18743,7 @@
}
},
{
- "id": 7556,
+ "id": 7782,
"properties": {
"facing": "west",
"half": "top",
@@ -18752,7 +18752,7 @@
}
},
{
- "id": 7557,
+ "id": 7783,
"properties": {
"facing": "west",
"half": "top",
@@ -18761,7 +18761,7 @@
}
},
{
- "id": 7558,
+ "id": 7784,
"properties": {
"facing": "west",
"half": "top",
@@ -18770,7 +18770,7 @@
}
},
{
- "id": 7559,
+ "id": 7785,
"properties": {
"facing": "west",
"half": "top",
@@ -18779,7 +18779,7 @@
}
},
{
- "id": 7560,
+ "id": 7786,
"properties": {
"facing": "west",
"half": "top",
@@ -18788,7 +18788,7 @@
}
},
{
- "id": 7561,
+ "id": 7787,
"properties": {
"facing": "west",
"half": "top",
@@ -18797,7 +18797,7 @@
}
},
{
- "id": 7562,
+ "id": 7788,
"properties": {
"facing": "west",
"half": "top",
@@ -18806,7 +18806,7 @@
}
},
{
- "id": 7563,
+ "id": 7789,
"properties": {
"facing": "west",
"half": "top",
@@ -18815,7 +18815,7 @@
}
},
{
- "id": 7564,
+ "id": 7790,
"properties": {
"facing": "west",
"half": "top",
@@ -18824,7 +18824,7 @@
}
},
{
- "id": 7565,
+ "id": 7791,
"properties": {
"facing": "west",
"half": "top",
@@ -18833,7 +18833,7 @@
}
},
{
- "id": 7566,
+ "id": 7792,
"properties": {
"facing": "west",
"half": "bottom",
@@ -18842,7 +18842,7 @@
}
},
{
- "id": 7567,
+ "id": 7793,
"properties": {
"facing": "west",
"half": "bottom",
@@ -18851,7 +18851,7 @@
}
},
{
- "id": 7568,
+ "id": 7794,
"properties": {
"facing": "west",
"half": "bottom",
@@ -18860,7 +18860,7 @@
}
},
{
- "id": 7569,
+ "id": 7795,
"properties": {
"facing": "west",
"half": "bottom",
@@ -18869,7 +18869,7 @@
}
},
{
- "id": 7570,
+ "id": 7796,
"properties": {
"facing": "west",
"half": "bottom",
@@ -18878,7 +18878,7 @@
}
},
{
- "id": 7571,
+ "id": 7797,
"properties": {
"facing": "west",
"half": "bottom",
@@ -18887,7 +18887,7 @@
}
},
{
- "id": 7572,
+ "id": 7798,
"properties": {
"facing": "west",
"half": "bottom",
@@ -18896,7 +18896,7 @@
}
},
{
- "id": 7573,
+ "id": 7799,
"properties": {
"facing": "west",
"half": "bottom",
@@ -18905,7 +18905,7 @@
}
},
{
- "id": 7574,
+ "id": 7800,
"properties": {
"facing": "west",
"half": "bottom",
@@ -18914,7 +18914,7 @@
}
},
{
- "id": 7575,
+ "id": 7801,
"properties": {
"facing": "west",
"half": "bottom",
@@ -18923,7 +18923,7 @@
}
},
{
- "id": 7576,
+ "id": 7802,
"properties": {
"facing": "east",
"half": "top",
@@ -18932,7 +18932,7 @@
}
},
{
- "id": 7577,
+ "id": 7803,
"properties": {
"facing": "east",
"half": "top",
@@ -18941,7 +18941,7 @@
}
},
{
- "id": 7578,
+ "id": 7804,
"properties": {
"facing": "east",
"half": "top",
@@ -18950,7 +18950,7 @@
}
},
{
- "id": 7579,
+ "id": 7805,
"properties": {
"facing": "east",
"half": "top",
@@ -18959,7 +18959,7 @@
}
},
{
- "id": 7580,
+ "id": 7806,
"properties": {
"facing": "east",
"half": "top",
@@ -18968,7 +18968,7 @@
}
},
{
- "id": 7581,
+ "id": 7807,
"properties": {
"facing": "east",
"half": "top",
@@ -18977,7 +18977,7 @@
}
},
{
- "id": 7582,
+ "id": 7808,
"properties": {
"facing": "east",
"half": "top",
@@ -18986,7 +18986,7 @@
}
},
{
- "id": 7583,
+ "id": 7809,
"properties": {
"facing": "east",
"half": "top",
@@ -18995,7 +18995,7 @@
}
},
{
- "id": 7584,
+ "id": 7810,
"properties": {
"facing": "east",
"half": "top",
@@ -19004,7 +19004,7 @@
}
},
{
- "id": 7585,
+ "id": 7811,
"properties": {
"facing": "east",
"half": "top",
@@ -19013,7 +19013,7 @@
}
},
{
- "id": 7586,
+ "id": 7812,
"properties": {
"facing": "east",
"half": "bottom",
@@ -19022,7 +19022,7 @@
}
},
{
- "id": 7587,
+ "id": 7813,
"properties": {
"facing": "east",
"half": "bottom",
@@ -19031,7 +19031,7 @@
}
},
{
- "id": 7588,
+ "id": 7814,
"properties": {
"facing": "east",
"half": "bottom",
@@ -19040,7 +19040,7 @@
}
},
{
- "id": 7589,
+ "id": 7815,
"properties": {
"facing": "east",
"half": "bottom",
@@ -19049,7 +19049,7 @@
}
},
{
- "id": 7590,
+ "id": 7816,
"properties": {
"facing": "east",
"half": "bottom",
@@ -19058,7 +19058,7 @@
}
},
{
- "id": 7591,
+ "id": 7817,
"properties": {
"facing": "east",
"half": "bottom",
@@ -19067,7 +19067,7 @@
}
},
{
- "id": 7592,
+ "id": 7818,
"properties": {
"facing": "east",
"half": "bottom",
@@ -19076,7 +19076,7 @@
}
},
{
- "id": 7593,
+ "id": 7819,
"properties": {
"facing": "east",
"half": "bottom",
@@ -19085,7 +19085,7 @@
}
},
{
- "id": 7594,
+ "id": 7820,
"properties": {
"facing": "east",
"half": "bottom",
@@ -19094,7 +19094,7 @@
}
},
{
- "id": 7595,
+ "id": 7821,
"properties": {
"facing": "east",
"half": "bottom",
@@ -19131,7 +19131,7 @@
},
"states": [
{
- "id": 5924,
+ "id": 6086,
"properties": {
"facing": "north",
"half": "top",
@@ -19141,7 +19141,7 @@
}
},
{
- "id": 5925,
+ "id": 6087,
"properties": {
"facing": "north",
"half": "top",
@@ -19151,7 +19151,7 @@
}
},
{
- "id": 5926,
+ "id": 6088,
"properties": {
"facing": "north",
"half": "top",
@@ -19161,7 +19161,7 @@
}
},
{
- "id": 5927,
+ "id": 6089,
"properties": {
"facing": "north",
"half": "top",
@@ -19171,7 +19171,7 @@
}
},
{
- "id": 5928,
+ "id": 6090,
"properties": {
"facing": "north",
"half": "top",
@@ -19181,7 +19181,7 @@
}
},
{
- "id": 5929,
+ "id": 6091,
"properties": {
"facing": "north",
"half": "top",
@@ -19191,7 +19191,7 @@
}
},
{
- "id": 5930,
+ "id": 6092,
"properties": {
"facing": "north",
"half": "top",
@@ -19201,7 +19201,7 @@
}
},
{
- "id": 5931,
+ "id": 6093,
"properties": {
"facing": "north",
"half": "top",
@@ -19211,7 +19211,7 @@
}
},
{
- "id": 5932,
+ "id": 6094,
"properties": {
"facing": "north",
"half": "bottom",
@@ -19221,7 +19221,7 @@
}
},
{
- "id": 5933,
+ "id": 6095,
"properties": {
"facing": "north",
"half": "bottom",
@@ -19231,7 +19231,7 @@
}
},
{
- "id": 5934,
+ "id": 6096,
"properties": {
"facing": "north",
"half": "bottom",
@@ -19241,7 +19241,7 @@
}
},
{
- "id": 5935,
+ "id": 6097,
"properties": {
"facing": "north",
"half": "bottom",
@@ -19251,7 +19251,7 @@
}
},
{
- "id": 5936,
+ "id": 6098,
"properties": {
"facing": "north",
"half": "bottom",
@@ -19261,7 +19261,7 @@
}
},
{
- "id": 5937,
+ "id": 6099,
"properties": {
"facing": "north",
"half": "bottom",
@@ -19271,7 +19271,7 @@
}
},
{
- "id": 5938,
+ "id": 6100,
"properties": {
"facing": "north",
"half": "bottom",
@@ -19282,7 +19282,7 @@
},
{
"default": true,
- "id": 5939,
+ "id": 6101,
"properties": {
"facing": "north",
"half": "bottom",
@@ -19292,7 +19292,7 @@
}
},
{
- "id": 5940,
+ "id": 6102,
"properties": {
"facing": "south",
"half": "top",
@@ -19302,7 +19302,7 @@
}
},
{
- "id": 5941,
+ "id": 6103,
"properties": {
"facing": "south",
"half": "top",
@@ -19312,7 +19312,7 @@
}
},
{
- "id": 5942,
+ "id": 6104,
"properties": {
"facing": "south",
"half": "top",
@@ -19322,7 +19322,7 @@
}
},
{
- "id": 5943,
+ "id": 6105,
"properties": {
"facing": "south",
"half": "top",
@@ -19332,7 +19332,7 @@
}
},
{
- "id": 5944,
+ "id": 6106,
"properties": {
"facing": "south",
"half": "top",
@@ -19342,7 +19342,7 @@
}
},
{
- "id": 5945,
+ "id": 6107,
"properties": {
"facing": "south",
"half": "top",
@@ -19352,7 +19352,7 @@
}
},
{
- "id": 5946,
+ "id": 6108,
"properties": {
"facing": "south",
"half": "top",
@@ -19362,7 +19362,7 @@
}
},
{
- "id": 5947,
+ "id": 6109,
"properties": {
"facing": "south",
"half": "top",
@@ -19372,7 +19372,7 @@
}
},
{
- "id": 5948,
+ "id": 6110,
"properties": {
"facing": "south",
"half": "bottom",
@@ -19382,7 +19382,7 @@
}
},
{
- "id": 5949,
+ "id": 6111,
"properties": {
"facing": "south",
"half": "bottom",
@@ -19392,7 +19392,7 @@
}
},
{
- "id": 5950,
+ "id": 6112,
"properties": {
"facing": "south",
"half": "bottom",
@@ -19402,7 +19402,7 @@
}
},
{
- "id": 5951,
+ "id": 6113,
"properties": {
"facing": "south",
"half": "bottom",
@@ -19412,7 +19412,7 @@
}
},
{
- "id": 5952,
+ "id": 6114,
"properties": {
"facing": "south",
"half": "bottom",
@@ -19422,7 +19422,7 @@
}
},
{
- "id": 5953,
+ "id": 6115,
"properties": {
"facing": "south",
"half": "bottom",
@@ -19432,7 +19432,7 @@
}
},
{
- "id": 5954,
+ "id": 6116,
"properties": {
"facing": "south",
"half": "bottom",
@@ -19442,7 +19442,7 @@
}
},
{
- "id": 5955,
+ "id": 6117,
"properties": {
"facing": "south",
"half": "bottom",
@@ -19452,7 +19452,7 @@
}
},
{
- "id": 5956,
+ "id": 6118,
"properties": {
"facing": "west",
"half": "top",
@@ -19462,7 +19462,7 @@
}
},
{
- "id": 5957,
+ "id": 6119,
"properties": {
"facing": "west",
"half": "top",
@@ -19472,7 +19472,7 @@
}
},
{
- "id": 5958,
+ "id": 6120,
"properties": {
"facing": "west",
"half": "top",
@@ -19482,7 +19482,7 @@
}
},
{
- "id": 5959,
+ "id": 6121,
"properties": {
"facing": "west",
"half": "top",
@@ -19492,7 +19492,7 @@
}
},
{
- "id": 5960,
+ "id": 6122,
"properties": {
"facing": "west",
"half": "top",
@@ -19502,7 +19502,7 @@
}
},
{
- "id": 5961,
+ "id": 6123,
"properties": {
"facing": "west",
"half": "top",
@@ -19512,7 +19512,7 @@
}
},
{
- "id": 5962,
+ "id": 6124,
"properties": {
"facing": "west",
"half": "top",
@@ -19522,7 +19522,7 @@
}
},
{
- "id": 5963,
+ "id": 6125,
"properties": {
"facing": "west",
"half": "top",
@@ -19532,7 +19532,7 @@
}
},
{
- "id": 5964,
+ "id": 6126,
"properties": {
"facing": "west",
"half": "bottom",
@@ -19542,7 +19542,7 @@
}
},
{
- "id": 5965,
+ "id": 6127,
"properties": {
"facing": "west",
"half": "bottom",
@@ -19552,7 +19552,7 @@
}
},
{
- "id": 5966,
+ "id": 6128,
"properties": {
"facing": "west",
"half": "bottom",
@@ -19562,7 +19562,7 @@
}
},
{
- "id": 5967,
+ "id": 6129,
"properties": {
"facing": "west",
"half": "bottom",
@@ -19572,7 +19572,7 @@
}
},
{
- "id": 5968,
+ "id": 6130,
"properties": {
"facing": "west",
"half": "bottom",
@@ -19582,7 +19582,7 @@
}
},
{
- "id": 5969,
+ "id": 6131,
"properties": {
"facing": "west",
"half": "bottom",
@@ -19592,7 +19592,7 @@
}
},
{
- "id": 5970,
+ "id": 6132,
"properties": {
"facing": "west",
"half": "bottom",
@@ -19602,7 +19602,7 @@
}
},
{
- "id": 5971,
+ "id": 6133,
"properties": {
"facing": "west",
"half": "bottom",
@@ -19612,7 +19612,7 @@
}
},
{
- "id": 5972,
+ "id": 6134,
"properties": {
"facing": "east",
"half": "top",
@@ -19622,7 +19622,7 @@
}
},
{
- "id": 5973,
+ "id": 6135,
"properties": {
"facing": "east",
"half": "top",
@@ -19632,7 +19632,7 @@
}
},
{
- "id": 5974,
+ "id": 6136,
"properties": {
"facing": "east",
"half": "top",
@@ -19642,7 +19642,7 @@
}
},
{
- "id": 5975,
+ "id": 6137,
"properties": {
"facing": "east",
"half": "top",
@@ -19652,7 +19652,7 @@
}
},
{
- "id": 5976,
+ "id": 6138,
"properties": {
"facing": "east",
"half": "top",
@@ -19662,7 +19662,7 @@
}
},
{
- "id": 5977,
+ "id": 6139,
"properties": {
"facing": "east",
"half": "top",
@@ -19672,7 +19672,7 @@
}
},
{
- "id": 5978,
+ "id": 6140,
"properties": {
"facing": "east",
"half": "top",
@@ -19682,7 +19682,7 @@
}
},
{
- "id": 5979,
+ "id": 6141,
"properties": {
"facing": "east",
"half": "top",
@@ -19692,7 +19692,7 @@
}
},
{
- "id": 5980,
+ "id": 6142,
"properties": {
"facing": "east",
"half": "bottom",
@@ -19702,7 +19702,7 @@
}
},
{
- "id": 5981,
+ "id": 6143,
"properties": {
"facing": "east",
"half": "bottom",
@@ -19712,7 +19712,7 @@
}
},
{
- "id": 5982,
+ "id": 6144,
"properties": {
"facing": "east",
"half": "bottom",
@@ -19722,7 +19722,7 @@
}
},
{
- "id": 5983,
+ "id": 6145,
"properties": {
"facing": "east",
"half": "bottom",
@@ -19732,7 +19732,7 @@
}
},
{
- "id": 5984,
+ "id": 6146,
"properties": {
"facing": "east",
"half": "bottom",
@@ -19742,7 +19742,7 @@
}
},
{
- "id": 5985,
+ "id": 6147,
"properties": {
"facing": "east",
"half": "bottom",
@@ -19752,7 +19752,7 @@
}
},
{
- "id": 5986,
+ "id": 6148,
"properties": {
"facing": "east",
"half": "bottom",
@@ -19762,7 +19762,7 @@
}
},
{
- "id": 5987,
+ "id": 6149,
"properties": {
"facing": "east",
"half": "bottom",
@@ -19788,7 +19788,7 @@
},
"states": [
{
- "id": 5398,
+ "id": 5550,
"properties": {
"facing": "north",
"waterlogged": "true"
@@ -19796,49 +19796,49 @@
},
{
"default": true,
- "id": 5399,
+ "id": 5551,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 5400,
+ "id": 5552,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 5401,
+ "id": 5553,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 5402,
+ "id": 5554,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 5403,
+ "id": 5555,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 5404,
+ "id": 5556,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 5405,
+ "id": 5557,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -19861,7 +19861,7 @@
},
"states": [
{
- "id": 4694,
+ "id": 4774,
"properties": {
"facing": "north",
"waterlogged": "true"
@@ -19869,49 +19869,49 @@
},
{
"default": true,
- "id": 4695,
+ "id": 4775,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 4696,
+ "id": 4776,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 4697,
+ "id": 4777,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 4698,
+ "id": 4778,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 4699,
+ "id": 4779,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 4700,
+ "id": 4780,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 4701,
+ "id": 4781,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -19929,20 +19929,20 @@
},
"states": [
{
- "id": 178,
+ "id": 191,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 179,
+ "id": 192,
"properties": {
"axis": "y"
}
},
{
- "id": 180,
+ "id": 193,
"properties": {
"axis": "z"
}
@@ -19973,97 +19973,97 @@
"states": [
{
"default": true,
- "id": 10522,
+ "id": 10854,
"properties": {
"rotation": "0"
}
},
{
- "id": 10523,
+ "id": 10855,
"properties": {
"rotation": "1"
}
},
{
- "id": 10524,
+ "id": 10856,
"properties": {
"rotation": "2"
}
},
{
- "id": 10525,
+ "id": 10857,
"properties": {
"rotation": "3"
}
},
{
- "id": 10526,
+ "id": 10858,
"properties": {
"rotation": "4"
}
},
{
- "id": 10527,
+ "id": 10859,
"properties": {
"rotation": "5"
}
},
{
- "id": 10528,
+ "id": 10860,
"properties": {
"rotation": "6"
}
},
{
- "id": 10529,
+ "id": 10861,
"properties": {
"rotation": "7"
}
},
{
- "id": 10530,
+ "id": 10862,
"properties": {
"rotation": "8"
}
},
{
- "id": 10531,
+ "id": 10863,
"properties": {
"rotation": "9"
}
},
{
- "id": 10532,
+ "id": 10864,
"properties": {
"rotation": "10"
}
},
{
- "id": 10533,
+ "id": 10865,
"properties": {
"rotation": "11"
}
},
{
- "id": 10534,
+ "id": 10866,
"properties": {
"rotation": "12"
}
},
{
- "id": 10535,
+ "id": 10867,
"properties": {
"rotation": "13"
}
},
{
- "id": 10536,
+ "id": 10868,
"properties": {
"rotation": "14"
}
},
{
- "id": 10537,
+ "id": 10869,
"properties": {
"rotation": "15"
}
@@ -20089,7 +20089,7 @@
},
"states": [
{
- "id": 1877,
+ "id": 1924,
"properties": {
"facing": "north",
"occupied": "true",
@@ -20097,7 +20097,7 @@
}
},
{
- "id": 1878,
+ "id": 1925,
"properties": {
"facing": "north",
"occupied": "true",
@@ -20105,7 +20105,7 @@
}
},
{
- "id": 1879,
+ "id": 1926,
"properties": {
"facing": "north",
"occupied": "false",
@@ -20114,7 +20114,7 @@
},
{
"default": true,
- "id": 1880,
+ "id": 1927,
"properties": {
"facing": "north",
"occupied": "false",
@@ -20122,7 +20122,7 @@
}
},
{
- "id": 1881,
+ "id": 1928,
"properties": {
"facing": "south",
"occupied": "true",
@@ -20130,7 +20130,7 @@
}
},
{
- "id": 1882,
+ "id": 1929,
"properties": {
"facing": "south",
"occupied": "true",
@@ -20138,7 +20138,7 @@
}
},
{
- "id": 1883,
+ "id": 1930,
"properties": {
"facing": "south",
"occupied": "false",
@@ -20146,7 +20146,7 @@
}
},
{
- "id": 1884,
+ "id": 1931,
"properties": {
"facing": "south",
"occupied": "false",
@@ -20154,7 +20154,7 @@
}
},
{
- "id": 1885,
+ "id": 1932,
"properties": {
"facing": "west",
"occupied": "true",
@@ -20162,7 +20162,7 @@
}
},
{
- "id": 1886,
+ "id": 1933,
"properties": {
"facing": "west",
"occupied": "true",
@@ -20170,7 +20170,7 @@
}
},
{
- "id": 1887,
+ "id": 1934,
"properties": {
"facing": "west",
"occupied": "false",
@@ -20178,7 +20178,7 @@
}
},
{
- "id": 1888,
+ "id": 1935,
"properties": {
"facing": "west",
"occupied": "false",
@@ -20186,7 +20186,7 @@
}
},
{
- "id": 1889,
+ "id": 1936,
"properties": {
"facing": "east",
"occupied": "true",
@@ -20194,7 +20194,7 @@
}
},
{
- "id": 1890,
+ "id": 1937,
"properties": {
"facing": "east",
"occupied": "true",
@@ -20202,7 +20202,7 @@
}
},
{
- "id": 1891,
+ "id": 1938,
"properties": {
"facing": "east",
"occupied": "false",
@@ -20210,7 +20210,7 @@
}
},
{
- "id": 1892,
+ "id": 1939,
"properties": {
"facing": "east",
"occupied": "false",
@@ -20238,7 +20238,7 @@
},
"states": [
{
- "id": 20353,
+ "id": 20822,
"properties": {
"candles": "1",
"lit": "true",
@@ -20246,7 +20246,7 @@
}
},
{
- "id": 20354,
+ "id": 20823,
"properties": {
"candles": "1",
"lit": "true",
@@ -20254,7 +20254,7 @@
}
},
{
- "id": 20355,
+ "id": 20824,
"properties": {
"candles": "1",
"lit": "false",
@@ -20263,7 +20263,7 @@
},
{
"default": true,
- "id": 20356,
+ "id": 20825,
"properties": {
"candles": "1",
"lit": "false",
@@ -20271,7 +20271,7 @@
}
},
{
- "id": 20357,
+ "id": 20826,
"properties": {
"candles": "2",
"lit": "true",
@@ -20279,7 +20279,7 @@
}
},
{
- "id": 20358,
+ "id": 20827,
"properties": {
"candles": "2",
"lit": "true",
@@ -20287,7 +20287,7 @@
}
},
{
- "id": 20359,
+ "id": 20828,
"properties": {
"candles": "2",
"lit": "false",
@@ -20295,7 +20295,7 @@
}
},
{
- "id": 20360,
+ "id": 20829,
"properties": {
"candles": "2",
"lit": "false",
@@ -20303,7 +20303,7 @@
}
},
{
- "id": 20361,
+ "id": 20830,
"properties": {
"candles": "3",
"lit": "true",
@@ -20311,7 +20311,7 @@
}
},
{
- "id": 20362,
+ "id": 20831,
"properties": {
"candles": "3",
"lit": "true",
@@ -20319,7 +20319,7 @@
}
},
{
- "id": 20363,
+ "id": 20832,
"properties": {
"candles": "3",
"lit": "false",
@@ -20327,7 +20327,7 @@
}
},
{
- "id": 20364,
+ "id": 20833,
"properties": {
"candles": "3",
"lit": "false",
@@ -20335,7 +20335,7 @@
}
},
{
- "id": 20365,
+ "id": 20834,
"properties": {
"candles": "4",
"lit": "true",
@@ -20343,7 +20343,7 @@
}
},
{
- "id": 20366,
+ "id": 20835,
"properties": {
"candles": "4",
"lit": "true",
@@ -20351,7 +20351,7 @@
}
},
{
- "id": 20367,
+ "id": 20836,
"properties": {
"candles": "4",
"lit": "false",
@@ -20359,7 +20359,7 @@
}
},
{
- "id": 20368,
+ "id": 20837,
"properties": {
"candles": "4",
"lit": "false",
@@ -20377,14 +20377,14 @@
},
"states": [
{
- "id": 20401,
+ "id": 20870,
"properties": {
"lit": "true"
}
},
{
"default": true,
- "id": 20402,
+ "id": 20871,
"properties": {
"lit": "false"
}
@@ -20395,7 +20395,7 @@
"states": [
{
"default": true,
- "id": 10266
+ "id": 10598
}
]
},
@@ -20403,7 +20403,7 @@
"states": [
{
"default": true,
- "id": 12118
+ "id": 12587
}
]
},
@@ -20411,7 +20411,7 @@
"states": [
{
"default": true,
- "id": 12134
+ "id": 12603
}
]
},
@@ -20427,25 +20427,25 @@
"states": [
{
"default": true,
- "id": 12099,
+ "id": 12568,
"properties": {
"facing": "north"
}
},
{
- "id": 12100,
+ "id": 12569,
"properties": {
"facing": "south"
}
},
{
- "id": 12101,
+ "id": 12570,
"properties": {
"facing": "west"
}
},
{
- "id": 12102,
+ "id": 12571,
"properties": {
"facing": "east"
}
@@ -20465,38 +20465,38 @@
},
"states": [
{
- "id": 12033,
+ "id": 12502,
"properties": {
"facing": "north"
}
},
{
- "id": 12034,
+ "id": 12503,
"properties": {
"facing": "east"
}
},
{
- "id": 12035,
+ "id": 12504,
"properties": {
"facing": "south"
}
},
{
- "id": 12036,
+ "id": 12505,
"properties": {
"facing": "west"
}
},
{
"default": true,
- "id": 12037,
+ "id": 12506,
"properties": {
"facing": "up"
}
},
{
- "id": 12038,
+ "id": 12507,
"properties": {
"facing": "down"
}
@@ -20507,7 +20507,7 @@
"states": [
{
"default": true,
- "id": 5795
+ "id": 5957
}
]
},
@@ -20536,7 +20536,7 @@
},
"states": [
{
- "id": 9456,
+ "id": 9708,
"properties": {
"east": "true",
"north": "true",
@@ -20546,7 +20546,7 @@
}
},
{
- "id": 9457,
+ "id": 9709,
"properties": {
"east": "true",
"north": "true",
@@ -20556,7 +20556,7 @@
}
},
{
- "id": 9458,
+ "id": 9710,
"properties": {
"east": "true",
"north": "true",
@@ -20566,7 +20566,7 @@
}
},
{
- "id": 9459,
+ "id": 9711,
"properties": {
"east": "true",
"north": "true",
@@ -20576,7 +20576,7 @@
}
},
{
- "id": 9460,
+ "id": 9712,
"properties": {
"east": "true",
"north": "true",
@@ -20586,7 +20586,7 @@
}
},
{
- "id": 9461,
+ "id": 9713,
"properties": {
"east": "true",
"north": "true",
@@ -20596,7 +20596,7 @@
}
},
{
- "id": 9462,
+ "id": 9714,
"properties": {
"east": "true",
"north": "true",
@@ -20606,7 +20606,7 @@
}
},
{
- "id": 9463,
+ "id": 9715,
"properties": {
"east": "true",
"north": "true",
@@ -20616,7 +20616,7 @@
}
},
{
- "id": 9464,
+ "id": 9716,
"properties": {
"east": "true",
"north": "false",
@@ -20626,7 +20626,7 @@
}
},
{
- "id": 9465,
+ "id": 9717,
"properties": {
"east": "true",
"north": "false",
@@ -20636,7 +20636,7 @@
}
},
{
- "id": 9466,
+ "id": 9718,
"properties": {
"east": "true",
"north": "false",
@@ -20646,7 +20646,7 @@
}
},
{
- "id": 9467,
+ "id": 9719,
"properties": {
"east": "true",
"north": "false",
@@ -20656,7 +20656,7 @@
}
},
{
- "id": 9468,
+ "id": 9720,
"properties": {
"east": "true",
"north": "false",
@@ -20666,7 +20666,7 @@
}
},
{
- "id": 9469,
+ "id": 9721,
"properties": {
"east": "true",
"north": "false",
@@ -20676,7 +20676,7 @@
}
},
{
- "id": 9470,
+ "id": 9722,
"properties": {
"east": "true",
"north": "false",
@@ -20686,7 +20686,7 @@
}
},
{
- "id": 9471,
+ "id": 9723,
"properties": {
"east": "true",
"north": "false",
@@ -20696,7 +20696,7 @@
}
},
{
- "id": 9472,
+ "id": 9724,
"properties": {
"east": "false",
"north": "true",
@@ -20706,7 +20706,7 @@
}
},
{
- "id": 9473,
+ "id": 9725,
"properties": {
"east": "false",
"north": "true",
@@ -20716,7 +20716,7 @@
}
},
{
- "id": 9474,
+ "id": 9726,
"properties": {
"east": "false",
"north": "true",
@@ -20726,7 +20726,7 @@
}
},
{
- "id": 9475,
+ "id": 9727,
"properties": {
"east": "false",
"north": "true",
@@ -20736,7 +20736,7 @@
}
},
{
- "id": 9476,
+ "id": 9728,
"properties": {
"east": "false",
"north": "true",
@@ -20746,7 +20746,7 @@
}
},
{
- "id": 9477,
+ "id": 9729,
"properties": {
"east": "false",
"north": "true",
@@ -20756,7 +20756,7 @@
}
},
{
- "id": 9478,
+ "id": 9730,
"properties": {
"east": "false",
"north": "true",
@@ -20766,7 +20766,7 @@
}
},
{
- "id": 9479,
+ "id": 9731,
"properties": {
"east": "false",
"north": "true",
@@ -20776,7 +20776,7 @@
}
},
{
- "id": 9480,
+ "id": 9732,
"properties": {
"east": "false",
"north": "false",
@@ -20786,7 +20786,7 @@
}
},
{
- "id": 9481,
+ "id": 9733,
"properties": {
"east": "false",
"north": "false",
@@ -20796,7 +20796,7 @@
}
},
{
- "id": 9482,
+ "id": 9734,
"properties": {
"east": "false",
"north": "false",
@@ -20806,7 +20806,7 @@
}
},
{
- "id": 9483,
+ "id": 9735,
"properties": {
"east": "false",
"north": "false",
@@ -20816,7 +20816,7 @@
}
},
{
- "id": 9484,
+ "id": 9736,
"properties": {
"east": "false",
"north": "false",
@@ -20826,7 +20826,7 @@
}
},
{
- "id": 9485,
+ "id": 9737,
"properties": {
"east": "false",
"north": "false",
@@ -20836,7 +20836,7 @@
}
},
{
- "id": 9486,
+ "id": 9738,
"properties": {
"east": "false",
"north": "false",
@@ -20847,7 +20847,7 @@
},
{
"default": true,
- "id": 9487,
+ "id": 9739,
"properties": {
"east": "false",
"north": "false",
@@ -20862,7 +20862,7 @@
"states": [
{
"default": true,
- "id": 8975
+ "id": 9227
}
]
},
@@ -20878,25 +20878,25 @@
"states": [
{
"default": true,
- "id": 10598,
+ "id": 10930,
"properties": {
"facing": "north"
}
},
{
- "id": 10599,
+ "id": 10931,
"properties": {
"facing": "south"
}
},
{
- "id": 10600,
+ "id": 10932,
"properties": {
"facing": "west"
}
},
{
- "id": 10601,
+ "id": 10933,
"properties": {
"facing": "east"
}
@@ -20907,7 +20907,7 @@
"states": [
{
"default": true,
- "id": 2011
+ "id": 2058
}
]
},
@@ -20915,7 +20915,7 @@
"states": [
{
"default": true,
- "id": 18832
+ "id": 19301
}
]
},
@@ -20933,21 +20933,21 @@
},
"states": [
{
- "id": 19237,
+ "id": 19706,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 19238,
+ "id": 19707,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 19239,
+ "id": 19708,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -20955,21 +20955,21 @@
},
{
"default": true,
- "id": 19240,
+ "id": 19709,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 19241,
+ "id": 19710,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 19242,
+ "id": 19711,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -21003,7 +21003,7 @@
},
"states": [
{
- "id": 18833,
+ "id": 19302,
"properties": {
"facing": "north",
"half": "top",
@@ -21012,7 +21012,7 @@
}
},
{
- "id": 18834,
+ "id": 19303,
"properties": {
"facing": "north",
"half": "top",
@@ -21021,7 +21021,7 @@
}
},
{
- "id": 18835,
+ "id": 19304,
"properties": {
"facing": "north",
"half": "top",
@@ -21030,7 +21030,7 @@
}
},
{
- "id": 18836,
+ "id": 19305,
"properties": {
"facing": "north",
"half": "top",
@@ -21039,7 +21039,7 @@
}
},
{
- "id": 18837,
+ "id": 19306,
"properties": {
"facing": "north",
"half": "top",
@@ -21048,7 +21048,7 @@
}
},
{
- "id": 18838,
+ "id": 19307,
"properties": {
"facing": "north",
"half": "top",
@@ -21057,7 +21057,7 @@
}
},
{
- "id": 18839,
+ "id": 19308,
"properties": {
"facing": "north",
"half": "top",
@@ -21066,7 +21066,7 @@
}
},
{
- "id": 18840,
+ "id": 19309,
"properties": {
"facing": "north",
"half": "top",
@@ -21075,7 +21075,7 @@
}
},
{
- "id": 18841,
+ "id": 19310,
"properties": {
"facing": "north",
"half": "top",
@@ -21084,7 +21084,7 @@
}
},
{
- "id": 18842,
+ "id": 19311,
"properties": {
"facing": "north",
"half": "top",
@@ -21093,7 +21093,7 @@
}
},
{
- "id": 18843,
+ "id": 19312,
"properties": {
"facing": "north",
"half": "bottom",
@@ -21103,7 +21103,7 @@
},
{
"default": true,
- "id": 18844,
+ "id": 19313,
"properties": {
"facing": "north",
"half": "bottom",
@@ -21112,7 +21112,7 @@
}
},
{
- "id": 18845,
+ "id": 19314,
"properties": {
"facing": "north",
"half": "bottom",
@@ -21121,7 +21121,7 @@
}
},
{
- "id": 18846,
+ "id": 19315,
"properties": {
"facing": "north",
"half": "bottom",
@@ -21130,7 +21130,7 @@
}
},
{
- "id": 18847,
+ "id": 19316,
"properties": {
"facing": "north",
"half": "bottom",
@@ -21139,7 +21139,7 @@
}
},
{
- "id": 18848,
+ "id": 19317,
"properties": {
"facing": "north",
"half": "bottom",
@@ -21148,7 +21148,7 @@
}
},
{
- "id": 18849,
+ "id": 19318,
"properties": {
"facing": "north",
"half": "bottom",
@@ -21157,7 +21157,7 @@
}
},
{
- "id": 18850,
+ "id": 19319,
"properties": {
"facing": "north",
"half": "bottom",
@@ -21166,7 +21166,7 @@
}
},
{
- "id": 18851,
+ "id": 19320,
"properties": {
"facing": "north",
"half": "bottom",
@@ -21175,7 +21175,7 @@
}
},
{
- "id": 18852,
+ "id": 19321,
"properties": {
"facing": "north",
"half": "bottom",
@@ -21184,7 +21184,7 @@
}
},
{
- "id": 18853,
+ "id": 19322,
"properties": {
"facing": "south",
"half": "top",
@@ -21193,7 +21193,7 @@
}
},
{
- "id": 18854,
+ "id": 19323,
"properties": {
"facing": "south",
"half": "top",
@@ -21202,7 +21202,7 @@
}
},
{
- "id": 18855,
+ "id": 19324,
"properties": {
"facing": "south",
"half": "top",
@@ -21211,7 +21211,7 @@
}
},
{
- "id": 18856,
+ "id": 19325,
"properties": {
"facing": "south",
"half": "top",
@@ -21220,7 +21220,7 @@
}
},
{
- "id": 18857,
+ "id": 19326,
"properties": {
"facing": "south",
"half": "top",
@@ -21229,7 +21229,7 @@
}
},
{
- "id": 18858,
+ "id": 19327,
"properties": {
"facing": "south",
"half": "top",
@@ -21238,7 +21238,7 @@
}
},
{
- "id": 18859,
+ "id": 19328,
"properties": {
"facing": "south",
"half": "top",
@@ -21247,7 +21247,7 @@
}
},
{
- "id": 18860,
+ "id": 19329,
"properties": {
"facing": "south",
"half": "top",
@@ -21256,7 +21256,7 @@
}
},
{
- "id": 18861,
+ "id": 19330,
"properties": {
"facing": "south",
"half": "top",
@@ -21265,7 +21265,7 @@
}
},
{
- "id": 18862,
+ "id": 19331,
"properties": {
"facing": "south",
"half": "top",
@@ -21274,7 +21274,7 @@
}
},
{
- "id": 18863,
+ "id": 19332,
"properties": {
"facing": "south",
"half": "bottom",
@@ -21283,7 +21283,7 @@
}
},
{
- "id": 18864,
+ "id": 19333,
"properties": {
"facing": "south",
"half": "bottom",
@@ -21292,7 +21292,7 @@
}
},
{
- "id": 18865,
+ "id": 19334,
"properties": {
"facing": "south",
"half": "bottom",
@@ -21301,7 +21301,7 @@
}
},
{
- "id": 18866,
+ "id": 19335,
"properties": {
"facing": "south",
"half": "bottom",
@@ -21310,7 +21310,7 @@
}
},
{
- "id": 18867,
+ "id": 19336,
"properties": {
"facing": "south",
"half": "bottom",
@@ -21319,7 +21319,7 @@
}
},
{
- "id": 18868,
+ "id": 19337,
"properties": {
"facing": "south",
"half": "bottom",
@@ -21328,7 +21328,7 @@
}
},
{
- "id": 18869,
+ "id": 19338,
"properties": {
"facing": "south",
"half": "bottom",
@@ -21337,7 +21337,7 @@
}
},
{
- "id": 18870,
+ "id": 19339,
"properties": {
"facing": "south",
"half": "bottom",
@@ -21346,7 +21346,7 @@
}
},
{
- "id": 18871,
+ "id": 19340,
"properties": {
"facing": "south",
"half": "bottom",
@@ -21355,7 +21355,7 @@
}
},
{
- "id": 18872,
+ "id": 19341,
"properties": {
"facing": "south",
"half": "bottom",
@@ -21364,7 +21364,7 @@
}
},
{
- "id": 18873,
+ "id": 19342,
"properties": {
"facing": "west",
"half": "top",
@@ -21373,7 +21373,7 @@
}
},
{
- "id": 18874,
+ "id": 19343,
"properties": {
"facing": "west",
"half": "top",
@@ -21382,7 +21382,7 @@
}
},
{
- "id": 18875,
+ "id": 19344,
"properties": {
"facing": "west",
"half": "top",
@@ -21391,7 +21391,7 @@
}
},
{
- "id": 18876,
+ "id": 19345,
"properties": {
"facing": "west",
"half": "top",
@@ -21400,7 +21400,7 @@
}
},
{
- "id": 18877,
+ "id": 19346,
"properties": {
"facing": "west",
"half": "top",
@@ -21409,7 +21409,7 @@
}
},
{
- "id": 18878,
+ "id": 19347,
"properties": {
"facing": "west",
"half": "top",
@@ -21418,7 +21418,7 @@
}
},
{
- "id": 18879,
+ "id": 19348,
"properties": {
"facing": "west",
"half": "top",
@@ -21427,7 +21427,7 @@
}
},
{
- "id": 18880,
+ "id": 19349,
"properties": {
"facing": "west",
"half": "top",
@@ -21436,7 +21436,7 @@
}
},
{
- "id": 18881,
+ "id": 19350,
"properties": {
"facing": "west",
"half": "top",
@@ -21445,7 +21445,7 @@
}
},
{
- "id": 18882,
+ "id": 19351,
"properties": {
"facing": "west",
"half": "top",
@@ -21454,7 +21454,7 @@
}
},
{
- "id": 18883,
+ "id": 19352,
"properties": {
"facing": "west",
"half": "bottom",
@@ -21463,7 +21463,7 @@
}
},
{
- "id": 18884,
+ "id": 19353,
"properties": {
"facing": "west",
"half": "bottom",
@@ -21472,7 +21472,7 @@
}
},
{
- "id": 18885,
+ "id": 19354,
"properties": {
"facing": "west",
"half": "bottom",
@@ -21481,7 +21481,7 @@
}
},
{
- "id": 18886,
+ "id": 19355,
"properties": {
"facing": "west",
"half": "bottom",
@@ -21490,7 +21490,7 @@
}
},
{
- "id": 18887,
+ "id": 19356,
"properties": {
"facing": "west",
"half": "bottom",
@@ -21499,7 +21499,7 @@
}
},
{
- "id": 18888,
+ "id": 19357,
"properties": {
"facing": "west",
"half": "bottom",
@@ -21508,7 +21508,7 @@
}
},
{
- "id": 18889,
+ "id": 19358,
"properties": {
"facing": "west",
"half": "bottom",
@@ -21517,7 +21517,7 @@
}
},
{
- "id": 18890,
+ "id": 19359,
"properties": {
"facing": "west",
"half": "bottom",
@@ -21526,7 +21526,7 @@
}
},
{
- "id": 18891,
+ "id": 19360,
"properties": {
"facing": "west",
"half": "bottom",
@@ -21535,7 +21535,7 @@
}
},
{
- "id": 18892,
+ "id": 19361,
"properties": {
"facing": "west",
"half": "bottom",
@@ -21544,7 +21544,7 @@
}
},
{
- "id": 18893,
+ "id": 19362,
"properties": {
"facing": "east",
"half": "top",
@@ -21553,7 +21553,7 @@
}
},
{
- "id": 18894,
+ "id": 19363,
"properties": {
"facing": "east",
"half": "top",
@@ -21562,7 +21562,7 @@
}
},
{
- "id": 18895,
+ "id": 19364,
"properties": {
"facing": "east",
"half": "top",
@@ -21571,7 +21571,7 @@
}
},
{
- "id": 18896,
+ "id": 19365,
"properties": {
"facing": "east",
"half": "top",
@@ -21580,7 +21580,7 @@
}
},
{
- "id": 18897,
+ "id": 19366,
"properties": {
"facing": "east",
"half": "top",
@@ -21589,7 +21589,7 @@
}
},
{
- "id": 18898,
+ "id": 19367,
"properties": {
"facing": "east",
"half": "top",
@@ -21598,7 +21598,7 @@
}
},
{
- "id": 18899,
+ "id": 19368,
"properties": {
"facing": "east",
"half": "top",
@@ -21607,7 +21607,7 @@
}
},
{
- "id": 18900,
+ "id": 19369,
"properties": {
"facing": "east",
"half": "top",
@@ -21616,7 +21616,7 @@
}
},
{
- "id": 18901,
+ "id": 19370,
"properties": {
"facing": "east",
"half": "top",
@@ -21625,7 +21625,7 @@
}
},
{
- "id": 18902,
+ "id": 19371,
"properties": {
"facing": "east",
"half": "top",
@@ -21634,7 +21634,7 @@
}
},
{
- "id": 18903,
+ "id": 19372,
"properties": {
"facing": "east",
"half": "bottom",
@@ -21643,7 +21643,7 @@
}
},
{
- "id": 18904,
+ "id": 19373,
"properties": {
"facing": "east",
"half": "bottom",
@@ -21652,7 +21652,7 @@
}
},
{
- "id": 18905,
+ "id": 19374,
"properties": {
"facing": "east",
"half": "bottom",
@@ -21661,7 +21661,7 @@
}
},
{
- "id": 18906,
+ "id": 19375,
"properties": {
"facing": "east",
"half": "bottom",
@@ -21670,7 +21670,7 @@
}
},
{
- "id": 18907,
+ "id": 19376,
"properties": {
"facing": "east",
"half": "bottom",
@@ -21679,7 +21679,7 @@
}
},
{
- "id": 18908,
+ "id": 19377,
"properties": {
"facing": "east",
"half": "bottom",
@@ -21688,7 +21688,7 @@
}
},
{
- "id": 18909,
+ "id": 19378,
"properties": {
"facing": "east",
"half": "bottom",
@@ -21697,7 +21697,7 @@
}
},
{
- "id": 18910,
+ "id": 19379,
"properties": {
"facing": "east",
"half": "bottom",
@@ -21706,7 +21706,7 @@
}
},
{
- "id": 18911,
+ "id": 19380,
"properties": {
"facing": "east",
"half": "bottom",
@@ -21715,7 +21715,7 @@
}
},
{
- "id": 18912,
+ "id": 19381,
"properties": {
"facing": "east",
"half": "bottom",
@@ -21758,7 +21758,7 @@
},
"states": [
{
- "id": 18913,
+ "id": 19382,
"properties": {
"east": "none",
"north": "none",
@@ -21769,7 +21769,7 @@
}
},
{
- "id": 18914,
+ "id": 19383,
"properties": {
"east": "none",
"north": "none",
@@ -21780,7 +21780,7 @@
}
},
{
- "id": 18915,
+ "id": 19384,
"properties": {
"east": "none",
"north": "none",
@@ -21792,7 +21792,7 @@
},
{
"default": true,
- "id": 18916,
+ "id": 19385,
"properties": {
"east": "none",
"north": "none",
@@ -21803,7 +21803,7 @@
}
},
{
- "id": 18917,
+ "id": 19386,
"properties": {
"east": "none",
"north": "none",
@@ -21814,7 +21814,7 @@
}
},
{
- "id": 18918,
+ "id": 19387,
"properties": {
"east": "none",
"north": "none",
@@ -21825,7 +21825,7 @@
}
},
{
- "id": 18919,
+ "id": 19388,
"properties": {
"east": "none",
"north": "none",
@@ -21836,7 +21836,7 @@
}
},
{
- "id": 18920,
+ "id": 19389,
"properties": {
"east": "none",
"north": "none",
@@ -21847,7 +21847,7 @@
}
},
{
- "id": 18921,
+ "id": 19390,
"properties": {
"east": "none",
"north": "none",
@@ -21858,7 +21858,7 @@
}
},
{
- "id": 18922,
+ "id": 19391,
"properties": {
"east": "none",
"north": "none",
@@ -21869,7 +21869,7 @@
}
},
{
- "id": 18923,
+ "id": 19392,
"properties": {
"east": "none",
"north": "none",
@@ -21880,7 +21880,7 @@
}
},
{
- "id": 18924,
+ "id": 19393,
"properties": {
"east": "none",
"north": "none",
@@ -21891,7 +21891,7 @@
}
},
{
- "id": 18925,
+ "id": 19394,
"properties": {
"east": "none",
"north": "none",
@@ -21902,7 +21902,7 @@
}
},
{
- "id": 18926,
+ "id": 19395,
"properties": {
"east": "none",
"north": "none",
@@ -21913,7 +21913,7 @@
}
},
{
- "id": 18927,
+ "id": 19396,
"properties": {
"east": "none",
"north": "none",
@@ -21924,7 +21924,7 @@
}
},
{
- "id": 18928,
+ "id": 19397,
"properties": {
"east": "none",
"north": "none",
@@ -21935,7 +21935,7 @@
}
},
{
- "id": 18929,
+ "id": 19398,
"properties": {
"east": "none",
"north": "none",
@@ -21946,7 +21946,7 @@
}
},
{
- "id": 18930,
+ "id": 19399,
"properties": {
"east": "none",
"north": "none",
@@ -21957,7 +21957,7 @@
}
},
{
- "id": 18931,
+ "id": 19400,
"properties": {
"east": "none",
"north": "none",
@@ -21968,7 +21968,7 @@
}
},
{
- "id": 18932,
+ "id": 19401,
"properties": {
"east": "none",
"north": "none",
@@ -21979,7 +21979,7 @@
}
},
{
- "id": 18933,
+ "id": 19402,
"properties": {
"east": "none",
"north": "none",
@@ -21990,7 +21990,7 @@
}
},
{
- "id": 18934,
+ "id": 19403,
"properties": {
"east": "none",
"north": "none",
@@ -22001,7 +22001,7 @@
}
},
{
- "id": 18935,
+ "id": 19404,
"properties": {
"east": "none",
"north": "none",
@@ -22012,7 +22012,7 @@
}
},
{
- "id": 18936,
+ "id": 19405,
"properties": {
"east": "none",
"north": "none",
@@ -22023,7 +22023,7 @@
}
},
{
- "id": 18937,
+ "id": 19406,
"properties": {
"east": "none",
"north": "none",
@@ -22034,7 +22034,7 @@
}
},
{
- "id": 18938,
+ "id": 19407,
"properties": {
"east": "none",
"north": "none",
@@ -22045,7 +22045,7 @@
}
},
{
- "id": 18939,
+ "id": 19408,
"properties": {
"east": "none",
"north": "none",
@@ -22056,7 +22056,7 @@
}
},
{
- "id": 18940,
+ "id": 19409,
"properties": {
"east": "none",
"north": "none",
@@ -22067,7 +22067,7 @@
}
},
{
- "id": 18941,
+ "id": 19410,
"properties": {
"east": "none",
"north": "none",
@@ -22078,7 +22078,7 @@
}
},
{
- "id": 18942,
+ "id": 19411,
"properties": {
"east": "none",
"north": "none",
@@ -22089,7 +22089,7 @@
}
},
{
- "id": 18943,
+ "id": 19412,
"properties": {
"east": "none",
"north": "none",
@@ -22100,7 +22100,7 @@
}
},
{
- "id": 18944,
+ "id": 19413,
"properties": {
"east": "none",
"north": "none",
@@ -22111,7 +22111,7 @@
}
},
{
- "id": 18945,
+ "id": 19414,
"properties": {
"east": "none",
"north": "none",
@@ -22122,7 +22122,7 @@
}
},
{
- "id": 18946,
+ "id": 19415,
"properties": {
"east": "none",
"north": "none",
@@ -22133,7 +22133,7 @@
}
},
{
- "id": 18947,
+ "id": 19416,
"properties": {
"east": "none",
"north": "none",
@@ -22144,7 +22144,7 @@
}
},
{
- "id": 18948,
+ "id": 19417,
"properties": {
"east": "none",
"north": "none",
@@ -22155,7 +22155,7 @@
}
},
{
- "id": 18949,
+ "id": 19418,
"properties": {
"east": "none",
"north": "low",
@@ -22166,7 +22166,7 @@
}
},
{
- "id": 18950,
+ "id": 19419,
"properties": {
"east": "none",
"north": "low",
@@ -22177,7 +22177,7 @@
}
},
{
- "id": 18951,
+ "id": 19420,
"properties": {
"east": "none",
"north": "low",
@@ -22188,7 +22188,7 @@
}
},
{
- "id": 18952,
+ "id": 19421,
"properties": {
"east": "none",
"north": "low",
@@ -22199,7 +22199,7 @@
}
},
{
- "id": 18953,
+ "id": 19422,
"properties": {
"east": "none",
"north": "low",
@@ -22210,7 +22210,7 @@
}
},
{
- "id": 18954,
+ "id": 19423,
"properties": {
"east": "none",
"north": "low",
@@ -22221,7 +22221,7 @@
}
},
{
- "id": 18955,
+ "id": 19424,
"properties": {
"east": "none",
"north": "low",
@@ -22232,7 +22232,7 @@
}
},
{
- "id": 18956,
+ "id": 19425,
"properties": {
"east": "none",
"north": "low",
@@ -22243,7 +22243,7 @@
}
},
{
- "id": 18957,
+ "id": 19426,
"properties": {
"east": "none",
"north": "low",
@@ -22254,7 +22254,7 @@
}
},
{
- "id": 18958,
+ "id": 19427,
"properties": {
"east": "none",
"north": "low",
@@ -22265,7 +22265,7 @@
}
},
{
- "id": 18959,
+ "id": 19428,
"properties": {
"east": "none",
"north": "low",
@@ -22276,7 +22276,7 @@
}
},
{
- "id": 18960,
+ "id": 19429,
"properties": {
"east": "none",
"north": "low",
@@ -22287,7 +22287,7 @@
}
},
{
- "id": 18961,
+ "id": 19430,
"properties": {
"east": "none",
"north": "low",
@@ -22298,7 +22298,7 @@
}
},
{
- "id": 18962,
+ "id": 19431,
"properties": {
"east": "none",
"north": "low",
@@ -22309,7 +22309,7 @@
}
},
{
- "id": 18963,
+ "id": 19432,
"properties": {
"east": "none",
"north": "low",
@@ -22320,7 +22320,7 @@
}
},
{
- "id": 18964,
+ "id": 19433,
"properties": {
"east": "none",
"north": "low",
@@ -22331,7 +22331,7 @@
}
},
{
- "id": 18965,
+ "id": 19434,
"properties": {
"east": "none",
"north": "low",
@@ -22342,7 +22342,7 @@
}
},
{
- "id": 18966,
+ "id": 19435,
"properties": {
"east": "none",
"north": "low",
@@ -22353,7 +22353,7 @@
}
},
{
- "id": 18967,
+ "id": 19436,
"properties": {
"east": "none",
"north": "low",
@@ -22364,7 +22364,7 @@
}
},
{
- "id": 18968,
+ "id": 19437,
"properties": {
"east": "none",
"north": "low",
@@ -22375,7 +22375,7 @@
}
},
{
- "id": 18969,
+ "id": 19438,
"properties": {
"east": "none",
"north": "low",
@@ -22386,7 +22386,7 @@
}
},
{
- "id": 18970,
+ "id": 19439,
"properties": {
"east": "none",
"north": "low",
@@ -22397,7 +22397,7 @@
}
},
{
- "id": 18971,
+ "id": 19440,
"properties": {
"east": "none",
"north": "low",
@@ -22408,7 +22408,7 @@
}
},
{
- "id": 18972,
+ "id": 19441,
"properties": {
"east": "none",
"north": "low",
@@ -22419,7 +22419,7 @@
}
},
{
- "id": 18973,
+ "id": 19442,
"properties": {
"east": "none",
"north": "low",
@@ -22430,7 +22430,7 @@
}
},
{
- "id": 18974,
+ "id": 19443,
"properties": {
"east": "none",
"north": "low",
@@ -22441,7 +22441,7 @@
}
},
{
- "id": 18975,
+ "id": 19444,
"properties": {
"east": "none",
"north": "low",
@@ -22452,7 +22452,7 @@
}
},
{
- "id": 18976,
+ "id": 19445,
"properties": {
"east": "none",
"north": "low",
@@ -22463,7 +22463,7 @@
}
},
{
- "id": 18977,
+ "id": 19446,
"properties": {
"east": "none",
"north": "low",
@@ -22474,7 +22474,7 @@
}
},
{
- "id": 18978,
+ "id": 19447,
"properties": {
"east": "none",
"north": "low",
@@ -22485,7 +22485,7 @@
}
},
{
- "id": 18979,
+ "id": 19448,
"properties": {
"east": "none",
"north": "low",
@@ -22496,7 +22496,7 @@
}
},
{
- "id": 18980,
+ "id": 19449,
"properties": {
"east": "none",
"north": "low",
@@ -22507,7 +22507,7 @@
}
},
{
- "id": 18981,
+ "id": 19450,
"properties": {
"east": "none",
"north": "low",
@@ -22518,7 +22518,7 @@
}
},
{
- "id": 18982,
+ "id": 19451,
"properties": {
"east": "none",
"north": "low",
@@ -22529,7 +22529,7 @@
}
},
{
- "id": 18983,
+ "id": 19452,
"properties": {
"east": "none",
"north": "low",
@@ -22540,7 +22540,7 @@
}
},
{
- "id": 18984,
+ "id": 19453,
"properties": {
"east": "none",
"north": "low",
@@ -22551,7 +22551,7 @@
}
},
{
- "id": 18985,
+ "id": 19454,
"properties": {
"east": "none",
"north": "tall",
@@ -22562,7 +22562,7 @@
}
},
{
- "id": 18986,
+ "id": 19455,
"properties": {
"east": "none",
"north": "tall",
@@ -22573,7 +22573,7 @@
}
},
{
- "id": 18987,
+ "id": 19456,
"properties": {
"east": "none",
"north": "tall",
@@ -22584,7 +22584,7 @@
}
},
{
- "id": 18988,
+ "id": 19457,
"properties": {
"east": "none",
"north": "tall",
@@ -22595,7 +22595,7 @@
}
},
{
- "id": 18989,
+ "id": 19458,
"properties": {
"east": "none",
"north": "tall",
@@ -22606,7 +22606,7 @@
}
},
{
- "id": 18990,
+ "id": 19459,
"properties": {
"east": "none",
"north": "tall",
@@ -22617,7 +22617,7 @@
}
},
{
- "id": 18991,
+ "id": 19460,
"properties": {
"east": "none",
"north": "tall",
@@ -22628,7 +22628,7 @@
}
},
{
- "id": 18992,
+ "id": 19461,
"properties": {
"east": "none",
"north": "tall",
@@ -22639,7 +22639,7 @@
}
},
{
- "id": 18993,
+ "id": 19462,
"properties": {
"east": "none",
"north": "tall",
@@ -22650,7 +22650,7 @@
}
},
{
- "id": 18994,
+ "id": 19463,
"properties": {
"east": "none",
"north": "tall",
@@ -22661,7 +22661,7 @@
}
},
{
- "id": 18995,
+ "id": 19464,
"properties": {
"east": "none",
"north": "tall",
@@ -22672,7 +22672,7 @@
}
},
{
- "id": 18996,
+ "id": 19465,
"properties": {
"east": "none",
"north": "tall",
@@ -22683,7 +22683,7 @@
}
},
{
- "id": 18997,
+ "id": 19466,
"properties": {
"east": "none",
"north": "tall",
@@ -22694,7 +22694,7 @@
}
},
{
- "id": 18998,
+ "id": 19467,
"properties": {
"east": "none",
"north": "tall",
@@ -22705,7 +22705,7 @@
}
},
{
- "id": 18999,
+ "id": 19468,
"properties": {
"east": "none",
"north": "tall",
@@ -22716,7 +22716,7 @@
}
},
{
- "id": 19000,
+ "id": 19469,
"properties": {
"east": "none",
"north": "tall",
@@ -22727,7 +22727,7 @@
}
},
{
- "id": 19001,
+ "id": 19470,
"properties": {
"east": "none",
"north": "tall",
@@ -22738,7 +22738,7 @@
}
},
{
- "id": 19002,
+ "id": 19471,
"properties": {
"east": "none",
"north": "tall",
@@ -22749,7 +22749,7 @@
}
},
{
- "id": 19003,
+ "id": 19472,
"properties": {
"east": "none",
"north": "tall",
@@ -22760,7 +22760,7 @@
}
},
{
- "id": 19004,
+ "id": 19473,
"properties": {
"east": "none",
"north": "tall",
@@ -22771,7 +22771,7 @@
}
},
{
- "id": 19005,
+ "id": 19474,
"properties": {
"east": "none",
"north": "tall",
@@ -22782,7 +22782,7 @@
}
},
{
- "id": 19006,
+ "id": 19475,
"properties": {
"east": "none",
"north": "tall",
@@ -22793,7 +22793,7 @@
}
},
{
- "id": 19007,
+ "id": 19476,
"properties": {
"east": "none",
"north": "tall",
@@ -22804,7 +22804,7 @@
}
},
{
- "id": 19008,
+ "id": 19477,
"properties": {
"east": "none",
"north": "tall",
@@ -22815,7 +22815,7 @@
}
},
{
- "id": 19009,
+ "id": 19478,
"properties": {
"east": "none",
"north": "tall",
@@ -22826,7 +22826,7 @@
}
},
{
- "id": 19010,
+ "id": 19479,
"properties": {
"east": "none",
"north": "tall",
@@ -22837,7 +22837,7 @@
}
},
{
- "id": 19011,
+ "id": 19480,
"properties": {
"east": "none",
"north": "tall",
@@ -22848,7 +22848,7 @@
}
},
{
- "id": 19012,
+ "id": 19481,
"properties": {
"east": "none",
"north": "tall",
@@ -22859,7 +22859,7 @@
}
},
{
- "id": 19013,
+ "id": 19482,
"properties": {
"east": "none",
"north": "tall",
@@ -22870,7 +22870,7 @@
}
},
{
- "id": 19014,
+ "id": 19483,
"properties": {
"east": "none",
"north": "tall",
@@ -22881,7 +22881,7 @@
}
},
{
- "id": 19015,
+ "id": 19484,
"properties": {
"east": "none",
"north": "tall",
@@ -22892,7 +22892,7 @@
}
},
{
- "id": 19016,
+ "id": 19485,
"properties": {
"east": "none",
"north": "tall",
@@ -22903,7 +22903,7 @@
}
},
{
- "id": 19017,
+ "id": 19486,
"properties": {
"east": "none",
"north": "tall",
@@ -22914,7 +22914,7 @@
}
},
{
- "id": 19018,
+ "id": 19487,
"properties": {
"east": "none",
"north": "tall",
@@ -22925,7 +22925,7 @@
}
},
{
- "id": 19019,
+ "id": 19488,
"properties": {
"east": "none",
"north": "tall",
@@ -22936,7 +22936,7 @@
}
},
{
- "id": 19020,
+ "id": 19489,
"properties": {
"east": "none",
"north": "tall",
@@ -22947,7 +22947,7 @@
}
},
{
- "id": 19021,
+ "id": 19490,
"properties": {
"east": "low",
"north": "none",
@@ -22958,7 +22958,7 @@
}
},
{
- "id": 19022,
+ "id": 19491,
"properties": {
"east": "low",
"north": "none",
@@ -22969,7 +22969,7 @@
}
},
{
- "id": 19023,
+ "id": 19492,
"properties": {
"east": "low",
"north": "none",
@@ -22980,7 +22980,7 @@
}
},
{
- "id": 19024,
+ "id": 19493,
"properties": {
"east": "low",
"north": "none",
@@ -22991,7 +22991,7 @@
}
},
{
- "id": 19025,
+ "id": 19494,
"properties": {
"east": "low",
"north": "none",
@@ -23002,7 +23002,7 @@
}
},
{
- "id": 19026,
+ "id": 19495,
"properties": {
"east": "low",
"north": "none",
@@ -23013,7 +23013,7 @@
}
},
{
- "id": 19027,
+ "id": 19496,
"properties": {
"east": "low",
"north": "none",
@@ -23024,7 +23024,7 @@
}
},
{
- "id": 19028,
+ "id": 19497,
"properties": {
"east": "low",
"north": "none",
@@ -23035,7 +23035,7 @@
}
},
{
- "id": 19029,
+ "id": 19498,
"properties": {
"east": "low",
"north": "none",
@@ -23046,7 +23046,7 @@
}
},
{
- "id": 19030,
+ "id": 19499,
"properties": {
"east": "low",
"north": "none",
@@ -23057,7 +23057,7 @@
}
},
{
- "id": 19031,
+ "id": 19500,
"properties": {
"east": "low",
"north": "none",
@@ -23068,7 +23068,7 @@
}
},
{
- "id": 19032,
+ "id": 19501,
"properties": {
"east": "low",
"north": "none",
@@ -23079,7 +23079,7 @@
}
},
{
- "id": 19033,
+ "id": 19502,
"properties": {
"east": "low",
"north": "none",
@@ -23090,7 +23090,7 @@
}
},
{
- "id": 19034,
+ "id": 19503,
"properties": {
"east": "low",
"north": "none",
@@ -23101,7 +23101,7 @@
}
},
{
- "id": 19035,
+ "id": 19504,
"properties": {
"east": "low",
"north": "none",
@@ -23112,7 +23112,7 @@
}
},
{
- "id": 19036,
+ "id": 19505,
"properties": {
"east": "low",
"north": "none",
@@ -23123,7 +23123,7 @@
}
},
{
- "id": 19037,
+ "id": 19506,
"properties": {
"east": "low",
"north": "none",
@@ -23134,7 +23134,7 @@
}
},
{
- "id": 19038,
+ "id": 19507,
"properties": {
"east": "low",
"north": "none",
@@ -23145,7 +23145,7 @@
}
},
{
- "id": 19039,
+ "id": 19508,
"properties": {
"east": "low",
"north": "none",
@@ -23156,7 +23156,7 @@
}
},
{
- "id": 19040,
+ "id": 19509,
"properties": {
"east": "low",
"north": "none",
@@ -23167,7 +23167,7 @@
}
},
{
- "id": 19041,
+ "id": 19510,
"properties": {
"east": "low",
"north": "none",
@@ -23178,7 +23178,7 @@
}
},
{
- "id": 19042,
+ "id": 19511,
"properties": {
"east": "low",
"north": "none",
@@ -23189,7 +23189,7 @@
}
},
{
- "id": 19043,
+ "id": 19512,
"properties": {
"east": "low",
"north": "none",
@@ -23200,7 +23200,7 @@
}
},
{
- "id": 19044,
+ "id": 19513,
"properties": {
"east": "low",
"north": "none",
@@ -23211,7 +23211,7 @@
}
},
{
- "id": 19045,
+ "id": 19514,
"properties": {
"east": "low",
"north": "none",
@@ -23222,7 +23222,7 @@
}
},
{
- "id": 19046,
+ "id": 19515,
"properties": {
"east": "low",
"north": "none",
@@ -23233,7 +23233,7 @@
}
},
{
- "id": 19047,
+ "id": 19516,
"properties": {
"east": "low",
"north": "none",
@@ -23244,7 +23244,7 @@
}
},
{
- "id": 19048,
+ "id": 19517,
"properties": {
"east": "low",
"north": "none",
@@ -23255,7 +23255,7 @@
}
},
{
- "id": 19049,
+ "id": 19518,
"properties": {
"east": "low",
"north": "none",
@@ -23266,7 +23266,7 @@
}
},
{
- "id": 19050,
+ "id": 19519,
"properties": {
"east": "low",
"north": "none",
@@ -23277,7 +23277,7 @@
}
},
{
- "id": 19051,
+ "id": 19520,
"properties": {
"east": "low",
"north": "none",
@@ -23288,7 +23288,7 @@
}
},
{
- "id": 19052,
+ "id": 19521,
"properties": {
"east": "low",
"north": "none",
@@ -23299,7 +23299,7 @@
}
},
{
- "id": 19053,
+ "id": 19522,
"properties": {
"east": "low",
"north": "none",
@@ -23310,7 +23310,7 @@
}
},
{
- "id": 19054,
+ "id": 19523,
"properties": {
"east": "low",
"north": "none",
@@ -23321,7 +23321,7 @@
}
},
{
- "id": 19055,
+ "id": 19524,
"properties": {
"east": "low",
"north": "none",
@@ -23332,7 +23332,7 @@
}
},
{
- "id": 19056,
+ "id": 19525,
"properties": {
"east": "low",
"north": "none",
@@ -23343,7 +23343,7 @@
}
},
{
- "id": 19057,
+ "id": 19526,
"properties": {
"east": "low",
"north": "low",
@@ -23354,7 +23354,7 @@
}
},
{
- "id": 19058,
+ "id": 19527,
"properties": {
"east": "low",
"north": "low",
@@ -23365,7 +23365,7 @@
}
},
{
- "id": 19059,
+ "id": 19528,
"properties": {
"east": "low",
"north": "low",
@@ -23376,7 +23376,7 @@
}
},
{
- "id": 19060,
+ "id": 19529,
"properties": {
"east": "low",
"north": "low",
@@ -23387,7 +23387,7 @@
}
},
{
- "id": 19061,
+ "id": 19530,
"properties": {
"east": "low",
"north": "low",
@@ -23398,7 +23398,7 @@
}
},
{
- "id": 19062,
+ "id": 19531,
"properties": {
"east": "low",
"north": "low",
@@ -23409,7 +23409,7 @@
}
},
{
- "id": 19063,
+ "id": 19532,
"properties": {
"east": "low",
"north": "low",
@@ -23420,7 +23420,7 @@
}
},
{
- "id": 19064,
+ "id": 19533,
"properties": {
"east": "low",
"north": "low",
@@ -23431,7 +23431,7 @@
}
},
{
- "id": 19065,
+ "id": 19534,
"properties": {
"east": "low",
"north": "low",
@@ -23442,7 +23442,7 @@
}
},
{
- "id": 19066,
+ "id": 19535,
"properties": {
"east": "low",
"north": "low",
@@ -23453,7 +23453,7 @@
}
},
{
- "id": 19067,
+ "id": 19536,
"properties": {
"east": "low",
"north": "low",
@@ -23464,7 +23464,7 @@
}
},
{
- "id": 19068,
+ "id": 19537,
"properties": {
"east": "low",
"north": "low",
@@ -23475,7 +23475,7 @@
}
},
{
- "id": 19069,
+ "id": 19538,
"properties": {
"east": "low",
"north": "low",
@@ -23486,7 +23486,7 @@
}
},
{
- "id": 19070,
+ "id": 19539,
"properties": {
"east": "low",
"north": "low",
@@ -23497,7 +23497,7 @@
}
},
{
- "id": 19071,
+ "id": 19540,
"properties": {
"east": "low",
"north": "low",
@@ -23508,7 +23508,7 @@
}
},
{
- "id": 19072,
+ "id": 19541,
"properties": {
"east": "low",
"north": "low",
@@ -23519,7 +23519,7 @@
}
},
{
- "id": 19073,
+ "id": 19542,
"properties": {
"east": "low",
"north": "low",
@@ -23530,7 +23530,7 @@
}
},
{
- "id": 19074,
+ "id": 19543,
"properties": {
"east": "low",
"north": "low",
@@ -23541,7 +23541,7 @@
}
},
{
- "id": 19075,
+ "id": 19544,
"properties": {
"east": "low",
"north": "low",
@@ -23552,7 +23552,7 @@
}
},
{
- "id": 19076,
+ "id": 19545,
"properties": {
"east": "low",
"north": "low",
@@ -23563,7 +23563,7 @@
}
},
{
- "id": 19077,
+ "id": 19546,
"properties": {
"east": "low",
"north": "low",
@@ -23574,7 +23574,7 @@
}
},
{
- "id": 19078,
+ "id": 19547,
"properties": {
"east": "low",
"north": "low",
@@ -23585,7 +23585,7 @@
}
},
{
- "id": 19079,
+ "id": 19548,
"properties": {
"east": "low",
"north": "low",
@@ -23596,7 +23596,7 @@
}
},
{
- "id": 19080,
+ "id": 19549,
"properties": {
"east": "low",
"north": "low",
@@ -23607,7 +23607,7 @@
}
},
{
- "id": 19081,
+ "id": 19550,
"properties": {
"east": "low",
"north": "low",
@@ -23618,7 +23618,7 @@
}
},
{
- "id": 19082,
+ "id": 19551,
"properties": {
"east": "low",
"north": "low",
@@ -23629,7 +23629,7 @@
}
},
{
- "id": 19083,
+ "id": 19552,
"properties": {
"east": "low",
"north": "low",
@@ -23640,7 +23640,7 @@
}
},
{
- "id": 19084,
+ "id": 19553,
"properties": {
"east": "low",
"north": "low",
@@ -23651,7 +23651,7 @@
}
},
{
- "id": 19085,
+ "id": 19554,
"properties": {
"east": "low",
"north": "low",
@@ -23662,7 +23662,7 @@
}
},
{
- "id": 19086,
+ "id": 19555,
"properties": {
"east": "low",
"north": "low",
@@ -23673,7 +23673,7 @@
}
},
{
- "id": 19087,
+ "id": 19556,
"properties": {
"east": "low",
"north": "low",
@@ -23684,7 +23684,7 @@
}
},
{
- "id": 19088,
+ "id": 19557,
"properties": {
"east": "low",
"north": "low",
@@ -23695,7 +23695,7 @@
}
},
{
- "id": 19089,
+ "id": 19558,
"properties": {
"east": "low",
"north": "low",
@@ -23706,7 +23706,7 @@
}
},
{
- "id": 19090,
+ "id": 19559,
"properties": {
"east": "low",
"north": "low",
@@ -23717,7 +23717,7 @@
}
},
{
- "id": 19091,
+ "id": 19560,
"properties": {
"east": "low",
"north": "low",
@@ -23728,7 +23728,7 @@
}
},
{
- "id": 19092,
+ "id": 19561,
"properties": {
"east": "low",
"north": "low",
@@ -23739,7 +23739,7 @@
}
},
{
- "id": 19093,
+ "id": 19562,
"properties": {
"east": "low",
"north": "tall",
@@ -23750,7 +23750,7 @@
}
},
{
- "id": 19094,
+ "id": 19563,
"properties": {
"east": "low",
"north": "tall",
@@ -23761,7 +23761,7 @@
}
},
{
- "id": 19095,
+ "id": 19564,
"properties": {
"east": "low",
"north": "tall",
@@ -23772,7 +23772,7 @@
}
},
{
- "id": 19096,
+ "id": 19565,
"properties": {
"east": "low",
"north": "tall",
@@ -23783,7 +23783,7 @@
}
},
{
- "id": 19097,
+ "id": 19566,
"properties": {
"east": "low",
"north": "tall",
@@ -23794,7 +23794,7 @@
}
},
{
- "id": 19098,
+ "id": 19567,
"properties": {
"east": "low",
"north": "tall",
@@ -23805,7 +23805,7 @@
}
},
{
- "id": 19099,
+ "id": 19568,
"properties": {
"east": "low",
"north": "tall",
@@ -23816,7 +23816,7 @@
}
},
{
- "id": 19100,
+ "id": 19569,
"properties": {
"east": "low",
"north": "tall",
@@ -23827,7 +23827,7 @@
}
},
{
- "id": 19101,
+ "id": 19570,
"properties": {
"east": "low",
"north": "tall",
@@ -23838,7 +23838,7 @@
}
},
{
- "id": 19102,
+ "id": 19571,
"properties": {
"east": "low",
"north": "tall",
@@ -23849,7 +23849,7 @@
}
},
{
- "id": 19103,
+ "id": 19572,
"properties": {
"east": "low",
"north": "tall",
@@ -23860,7 +23860,7 @@
}
},
{
- "id": 19104,
+ "id": 19573,
"properties": {
"east": "low",
"north": "tall",
@@ -23871,7 +23871,7 @@
}
},
{
- "id": 19105,
+ "id": 19574,
"properties": {
"east": "low",
"north": "tall",
@@ -23882,7 +23882,7 @@
}
},
{
- "id": 19106,
+ "id": 19575,
"properties": {
"east": "low",
"north": "tall",
@@ -23893,7 +23893,7 @@
}
},
{
- "id": 19107,
+ "id": 19576,
"properties": {
"east": "low",
"north": "tall",
@@ -23904,7 +23904,7 @@
}
},
{
- "id": 19108,
+ "id": 19577,
"properties": {
"east": "low",
"north": "tall",
@@ -23915,7 +23915,7 @@
}
},
{
- "id": 19109,
+ "id": 19578,
"properties": {
"east": "low",
"north": "tall",
@@ -23926,7 +23926,7 @@
}
},
{
- "id": 19110,
+ "id": 19579,
"properties": {
"east": "low",
"north": "tall",
@@ -23937,7 +23937,7 @@
}
},
{
- "id": 19111,
+ "id": 19580,
"properties": {
"east": "low",
"north": "tall",
@@ -23948,7 +23948,7 @@
}
},
{
- "id": 19112,
+ "id": 19581,
"properties": {
"east": "low",
"north": "tall",
@@ -23959,7 +23959,7 @@
}
},
{
- "id": 19113,
+ "id": 19582,
"properties": {
"east": "low",
"north": "tall",
@@ -23970,7 +23970,7 @@
}
},
{
- "id": 19114,
+ "id": 19583,
"properties": {
"east": "low",
"north": "tall",
@@ -23981,7 +23981,7 @@
}
},
{
- "id": 19115,
+ "id": 19584,
"properties": {
"east": "low",
"north": "tall",
@@ -23992,7 +23992,7 @@
}
},
{
- "id": 19116,
+ "id": 19585,
"properties": {
"east": "low",
"north": "tall",
@@ -24003,7 +24003,7 @@
}
},
{
- "id": 19117,
+ "id": 19586,
"properties": {
"east": "low",
"north": "tall",
@@ -24014,7 +24014,7 @@
}
},
{
- "id": 19118,
+ "id": 19587,
"properties": {
"east": "low",
"north": "tall",
@@ -24025,7 +24025,7 @@
}
},
{
- "id": 19119,
+ "id": 19588,
"properties": {
"east": "low",
"north": "tall",
@@ -24036,7 +24036,7 @@
}
},
{
- "id": 19120,
+ "id": 19589,
"properties": {
"east": "low",
"north": "tall",
@@ -24047,7 +24047,7 @@
}
},
{
- "id": 19121,
+ "id": 19590,
"properties": {
"east": "low",
"north": "tall",
@@ -24058,7 +24058,7 @@
}
},
{
- "id": 19122,
+ "id": 19591,
"properties": {
"east": "low",
"north": "tall",
@@ -24069,7 +24069,7 @@
}
},
{
- "id": 19123,
+ "id": 19592,
"properties": {
"east": "low",
"north": "tall",
@@ -24080,7 +24080,7 @@
}
},
{
- "id": 19124,
+ "id": 19593,
"properties": {
"east": "low",
"north": "tall",
@@ -24091,7 +24091,7 @@
}
},
{
- "id": 19125,
+ "id": 19594,
"properties": {
"east": "low",
"north": "tall",
@@ -24102,7 +24102,7 @@
}
},
{
- "id": 19126,
+ "id": 19595,
"properties": {
"east": "low",
"north": "tall",
@@ -24113,7 +24113,7 @@
}
},
{
- "id": 19127,
+ "id": 19596,
"properties": {
"east": "low",
"north": "tall",
@@ -24124,7 +24124,7 @@
}
},
{
- "id": 19128,
+ "id": 19597,
"properties": {
"east": "low",
"north": "tall",
@@ -24135,7 +24135,7 @@
}
},
{
- "id": 19129,
+ "id": 19598,
"properties": {
"east": "tall",
"north": "none",
@@ -24146,7 +24146,7 @@
}
},
{
- "id": 19130,
+ "id": 19599,
"properties": {
"east": "tall",
"north": "none",
@@ -24157,7 +24157,7 @@
}
},
{
- "id": 19131,
+ "id": 19600,
"properties": {
"east": "tall",
"north": "none",
@@ -24168,7 +24168,7 @@
}
},
{
- "id": 19132,
+ "id": 19601,
"properties": {
"east": "tall",
"north": "none",
@@ -24179,7 +24179,7 @@
}
},
{
- "id": 19133,
+ "id": 19602,
"properties": {
"east": "tall",
"north": "none",
@@ -24190,7 +24190,7 @@
}
},
{
- "id": 19134,
+ "id": 19603,
"properties": {
"east": "tall",
"north": "none",
@@ -24201,7 +24201,7 @@
}
},
{
- "id": 19135,
+ "id": 19604,
"properties": {
"east": "tall",
"north": "none",
@@ -24212,7 +24212,7 @@
}
},
{
- "id": 19136,
+ "id": 19605,
"properties": {
"east": "tall",
"north": "none",
@@ -24223,7 +24223,7 @@
}
},
{
- "id": 19137,
+ "id": 19606,
"properties": {
"east": "tall",
"north": "none",
@@ -24234,7 +24234,7 @@
}
},
{
- "id": 19138,
+ "id": 19607,
"properties": {
"east": "tall",
"north": "none",
@@ -24245,7 +24245,7 @@
}
},
{
- "id": 19139,
+ "id": 19608,
"properties": {
"east": "tall",
"north": "none",
@@ -24256,7 +24256,7 @@
}
},
{
- "id": 19140,
+ "id": 19609,
"properties": {
"east": "tall",
"north": "none",
@@ -24267,7 +24267,7 @@
}
},
{
- "id": 19141,
+ "id": 19610,
"properties": {
"east": "tall",
"north": "none",
@@ -24278,7 +24278,7 @@
}
},
{
- "id": 19142,
+ "id": 19611,
"properties": {
"east": "tall",
"north": "none",
@@ -24289,7 +24289,7 @@
}
},
{
- "id": 19143,
+ "id": 19612,
"properties": {
"east": "tall",
"north": "none",
@@ -24300,7 +24300,7 @@
}
},
{
- "id": 19144,
+ "id": 19613,
"properties": {
"east": "tall",
"north": "none",
@@ -24311,7 +24311,7 @@
}
},
{
- "id": 19145,
+ "id": 19614,
"properties": {
"east": "tall",
"north": "none",
@@ -24322,7 +24322,7 @@
}
},
{
- "id": 19146,
+ "id": 19615,
"properties": {
"east": "tall",
"north": "none",
@@ -24333,7 +24333,7 @@
}
},
{
- "id": 19147,
+ "id": 19616,
"properties": {
"east": "tall",
"north": "none",
@@ -24344,7 +24344,7 @@
}
},
{
- "id": 19148,
+ "id": 19617,
"properties": {
"east": "tall",
"north": "none",
@@ -24355,7 +24355,7 @@
}
},
{
- "id": 19149,
+ "id": 19618,
"properties": {
"east": "tall",
"north": "none",
@@ -24366,7 +24366,7 @@
}
},
{
- "id": 19150,
+ "id": 19619,
"properties": {
"east": "tall",
"north": "none",
@@ -24377,7 +24377,7 @@
}
},
{
- "id": 19151,
+ "id": 19620,
"properties": {
"east": "tall",
"north": "none",
@@ -24388,7 +24388,7 @@
}
},
{
- "id": 19152,
+ "id": 19621,
"properties": {
"east": "tall",
"north": "none",
@@ -24399,7 +24399,7 @@
}
},
{
- "id": 19153,
+ "id": 19622,
"properties": {
"east": "tall",
"north": "none",
@@ -24410,7 +24410,7 @@
}
},
{
- "id": 19154,
+ "id": 19623,
"properties": {
"east": "tall",
"north": "none",
@@ -24421,7 +24421,7 @@
}
},
{
- "id": 19155,
+ "id": 19624,
"properties": {
"east": "tall",
"north": "none",
@@ -24432,7 +24432,7 @@
}
},
{
- "id": 19156,
+ "id": 19625,
"properties": {
"east": "tall",
"north": "none",
@@ -24443,7 +24443,7 @@
}
},
{
- "id": 19157,
+ "id": 19626,
"properties": {
"east": "tall",
"north": "none",
@@ -24454,7 +24454,7 @@
}
},
{
- "id": 19158,
+ "id": 19627,
"properties": {
"east": "tall",
"north": "none",
@@ -24465,7 +24465,7 @@
}
},
{
- "id": 19159,
+ "id": 19628,
"properties": {
"east": "tall",
"north": "none",
@@ -24476,7 +24476,7 @@
}
},
{
- "id": 19160,
+ "id": 19629,
"properties": {
"east": "tall",
"north": "none",
@@ -24487,7 +24487,7 @@
}
},
{
- "id": 19161,
+ "id": 19630,
"properties": {
"east": "tall",
"north": "none",
@@ -24498,7 +24498,7 @@
}
},
{
- "id": 19162,
+ "id": 19631,
"properties": {
"east": "tall",
"north": "none",
@@ -24509,7 +24509,7 @@
}
},
{
- "id": 19163,
+ "id": 19632,
"properties": {
"east": "tall",
"north": "none",
@@ -24520,7 +24520,7 @@
}
},
{
- "id": 19164,
+ "id": 19633,
"properties": {
"east": "tall",
"north": "none",
@@ -24531,7 +24531,7 @@
}
},
{
- "id": 19165,
+ "id": 19634,
"properties": {
"east": "tall",
"north": "low",
@@ -24542,7 +24542,7 @@
}
},
{
- "id": 19166,
+ "id": 19635,
"properties": {
"east": "tall",
"north": "low",
@@ -24553,7 +24553,7 @@
}
},
{
- "id": 19167,
+ "id": 19636,
"properties": {
"east": "tall",
"north": "low",
@@ -24564,7 +24564,7 @@
}
},
{
- "id": 19168,
+ "id": 19637,
"properties": {
"east": "tall",
"north": "low",
@@ -24575,7 +24575,7 @@
}
},
{
- "id": 19169,
+ "id": 19638,
"properties": {
"east": "tall",
"north": "low",
@@ -24586,7 +24586,7 @@
}
},
{
- "id": 19170,
+ "id": 19639,
"properties": {
"east": "tall",
"north": "low",
@@ -24597,7 +24597,7 @@
}
},
{
- "id": 19171,
+ "id": 19640,
"properties": {
"east": "tall",
"north": "low",
@@ -24608,7 +24608,7 @@
}
},
{
- "id": 19172,
+ "id": 19641,
"properties": {
"east": "tall",
"north": "low",
@@ -24619,7 +24619,7 @@
}
},
{
- "id": 19173,
+ "id": 19642,
"properties": {
"east": "tall",
"north": "low",
@@ -24630,7 +24630,7 @@
}
},
{
- "id": 19174,
+ "id": 19643,
"properties": {
"east": "tall",
"north": "low",
@@ -24641,7 +24641,7 @@
}
},
{
- "id": 19175,
+ "id": 19644,
"properties": {
"east": "tall",
"north": "low",
@@ -24652,7 +24652,7 @@
}
},
{
- "id": 19176,
+ "id": 19645,
"properties": {
"east": "tall",
"north": "low",
@@ -24663,7 +24663,7 @@
}
},
{
- "id": 19177,
+ "id": 19646,
"properties": {
"east": "tall",
"north": "low",
@@ -24674,7 +24674,7 @@
}
},
{
- "id": 19178,
+ "id": 19647,
"properties": {
"east": "tall",
"north": "low",
@@ -24685,7 +24685,7 @@
}
},
{
- "id": 19179,
+ "id": 19648,
"properties": {
"east": "tall",
"north": "low",
@@ -24696,7 +24696,7 @@
}
},
{
- "id": 19180,
+ "id": 19649,
"properties": {
"east": "tall",
"north": "low",
@@ -24707,7 +24707,7 @@
}
},
{
- "id": 19181,
+ "id": 19650,
"properties": {
"east": "tall",
"north": "low",
@@ -24718,7 +24718,7 @@
}
},
{
- "id": 19182,
+ "id": 19651,
"properties": {
"east": "tall",
"north": "low",
@@ -24729,7 +24729,7 @@
}
},
{
- "id": 19183,
+ "id": 19652,
"properties": {
"east": "tall",
"north": "low",
@@ -24740,7 +24740,7 @@
}
},
{
- "id": 19184,
+ "id": 19653,
"properties": {
"east": "tall",
"north": "low",
@@ -24751,7 +24751,7 @@
}
},
{
- "id": 19185,
+ "id": 19654,
"properties": {
"east": "tall",
"north": "low",
@@ -24762,7 +24762,7 @@
}
},
{
- "id": 19186,
+ "id": 19655,
"properties": {
"east": "tall",
"north": "low",
@@ -24773,7 +24773,7 @@
}
},
{
- "id": 19187,
+ "id": 19656,
"properties": {
"east": "tall",
"north": "low",
@@ -24784,7 +24784,7 @@
}
},
{
- "id": 19188,
+ "id": 19657,
"properties": {
"east": "tall",
"north": "low",
@@ -24795,7 +24795,7 @@
}
},
{
- "id": 19189,
+ "id": 19658,
"properties": {
"east": "tall",
"north": "low",
@@ -24806,7 +24806,7 @@
}
},
{
- "id": 19190,
+ "id": 19659,
"properties": {
"east": "tall",
"north": "low",
@@ -24817,7 +24817,7 @@
}
},
{
- "id": 19191,
+ "id": 19660,
"properties": {
"east": "tall",
"north": "low",
@@ -24828,7 +24828,7 @@
}
},
{
- "id": 19192,
+ "id": 19661,
"properties": {
"east": "tall",
"north": "low",
@@ -24839,7 +24839,7 @@
}
},
{
- "id": 19193,
+ "id": 19662,
"properties": {
"east": "tall",
"north": "low",
@@ -24850,7 +24850,7 @@
}
},
{
- "id": 19194,
+ "id": 19663,
"properties": {
"east": "tall",
"north": "low",
@@ -24861,7 +24861,7 @@
}
},
{
- "id": 19195,
+ "id": 19664,
"properties": {
"east": "tall",
"north": "low",
@@ -24872,7 +24872,7 @@
}
},
{
- "id": 19196,
+ "id": 19665,
"properties": {
"east": "tall",
"north": "low",
@@ -24883,7 +24883,7 @@
}
},
{
- "id": 19197,
+ "id": 19666,
"properties": {
"east": "tall",
"north": "low",
@@ -24894,7 +24894,7 @@
}
},
{
- "id": 19198,
+ "id": 19667,
"properties": {
"east": "tall",
"north": "low",
@@ -24905,7 +24905,7 @@
}
},
{
- "id": 19199,
+ "id": 19668,
"properties": {
"east": "tall",
"north": "low",
@@ -24916,7 +24916,7 @@
}
},
{
- "id": 19200,
+ "id": 19669,
"properties": {
"east": "tall",
"north": "low",
@@ -24927,7 +24927,7 @@
}
},
{
- "id": 19201,
+ "id": 19670,
"properties": {
"east": "tall",
"north": "tall",
@@ -24938,7 +24938,7 @@
}
},
{
- "id": 19202,
+ "id": 19671,
"properties": {
"east": "tall",
"north": "tall",
@@ -24949,7 +24949,7 @@
}
},
{
- "id": 19203,
+ "id": 19672,
"properties": {
"east": "tall",
"north": "tall",
@@ -24960,7 +24960,7 @@
}
},
{
- "id": 19204,
+ "id": 19673,
"properties": {
"east": "tall",
"north": "tall",
@@ -24971,7 +24971,7 @@
}
},
{
- "id": 19205,
+ "id": 19674,
"properties": {
"east": "tall",
"north": "tall",
@@ -24982,7 +24982,7 @@
}
},
{
- "id": 19206,
+ "id": 19675,
"properties": {
"east": "tall",
"north": "tall",
@@ -24993,7 +24993,7 @@
}
},
{
- "id": 19207,
+ "id": 19676,
"properties": {
"east": "tall",
"north": "tall",
@@ -25004,7 +25004,7 @@
}
},
{
- "id": 19208,
+ "id": 19677,
"properties": {
"east": "tall",
"north": "tall",
@@ -25015,7 +25015,7 @@
}
},
{
- "id": 19209,
+ "id": 19678,
"properties": {
"east": "tall",
"north": "tall",
@@ -25026,7 +25026,7 @@
}
},
{
- "id": 19210,
+ "id": 19679,
"properties": {
"east": "tall",
"north": "tall",
@@ -25037,7 +25037,7 @@
}
},
{
- "id": 19211,
+ "id": 19680,
"properties": {
"east": "tall",
"north": "tall",
@@ -25048,7 +25048,7 @@
}
},
{
- "id": 19212,
+ "id": 19681,
"properties": {
"east": "tall",
"north": "tall",
@@ -25059,7 +25059,7 @@
}
},
{
- "id": 19213,
+ "id": 19682,
"properties": {
"east": "tall",
"north": "tall",
@@ -25070,7 +25070,7 @@
}
},
{
- "id": 19214,
+ "id": 19683,
"properties": {
"east": "tall",
"north": "tall",
@@ -25081,7 +25081,7 @@
}
},
{
- "id": 19215,
+ "id": 19684,
"properties": {
"east": "tall",
"north": "tall",
@@ -25092,7 +25092,7 @@
}
},
{
- "id": 19216,
+ "id": 19685,
"properties": {
"east": "tall",
"north": "tall",
@@ -25103,7 +25103,7 @@
}
},
{
- "id": 19217,
+ "id": 19686,
"properties": {
"east": "tall",
"north": "tall",
@@ -25114,7 +25114,7 @@
}
},
{
- "id": 19218,
+ "id": 19687,
"properties": {
"east": "tall",
"north": "tall",
@@ -25125,7 +25125,7 @@
}
},
{
- "id": 19219,
+ "id": 19688,
"properties": {
"east": "tall",
"north": "tall",
@@ -25136,7 +25136,7 @@
}
},
{
- "id": 19220,
+ "id": 19689,
"properties": {
"east": "tall",
"north": "tall",
@@ -25147,7 +25147,7 @@
}
},
{
- "id": 19221,
+ "id": 19690,
"properties": {
"east": "tall",
"north": "tall",
@@ -25158,7 +25158,7 @@
}
},
{
- "id": 19222,
+ "id": 19691,
"properties": {
"east": "tall",
"north": "tall",
@@ -25169,7 +25169,7 @@
}
},
{
- "id": 19223,
+ "id": 19692,
"properties": {
"east": "tall",
"north": "tall",
@@ -25180,7 +25180,7 @@
}
},
{
- "id": 19224,
+ "id": 19693,
"properties": {
"east": "tall",
"north": "tall",
@@ -25191,7 +25191,7 @@
}
},
{
- "id": 19225,
+ "id": 19694,
"properties": {
"east": "tall",
"north": "tall",
@@ -25202,7 +25202,7 @@
}
},
{
- "id": 19226,
+ "id": 19695,
"properties": {
"east": "tall",
"north": "tall",
@@ -25213,7 +25213,7 @@
}
},
{
- "id": 19227,
+ "id": 19696,
"properties": {
"east": "tall",
"north": "tall",
@@ -25224,7 +25224,7 @@
}
},
{
- "id": 19228,
+ "id": 19697,
"properties": {
"east": "tall",
"north": "tall",
@@ -25235,7 +25235,7 @@
}
},
{
- "id": 19229,
+ "id": 19698,
"properties": {
"east": "tall",
"north": "tall",
@@ -25246,7 +25246,7 @@
}
},
{
- "id": 19230,
+ "id": 19699,
"properties": {
"east": "tall",
"north": "tall",
@@ -25257,7 +25257,7 @@
}
},
{
- "id": 19231,
+ "id": 19700,
"properties": {
"east": "tall",
"north": "tall",
@@ -25268,7 +25268,7 @@
}
},
{
- "id": 19232,
+ "id": 19701,
"properties": {
"east": "tall",
"north": "tall",
@@ -25279,7 +25279,7 @@
}
},
{
- "id": 19233,
+ "id": 19702,
"properties": {
"east": "tall",
"north": "tall",
@@ -25290,7 +25290,7 @@
}
},
{
- "id": 19234,
+ "id": 19703,
"properties": {
"east": "tall",
"north": "tall",
@@ -25301,7 +25301,7 @@
}
},
{
- "id": 19235,
+ "id": 19704,
"properties": {
"east": "tall",
"north": "tall",
@@ -25312,7 +25312,7 @@
}
},
{
- "id": 19236,
+ "id": 19705,
"properties": {
"east": "tall",
"north": "tall",
@@ -25339,7 +25339,7 @@
},
"states": [
{
- "id": 17800,
+ "id": 18269,
"properties": {
"facing": "north",
"lit": "true"
@@ -25347,49 +25347,49 @@
},
{
"default": true,
- "id": 17801,
+ "id": 18270,
"properties": {
"facing": "north",
"lit": "false"
}
},
{
- "id": 17802,
+ "id": 18271,
"properties": {
"facing": "south",
"lit": "true"
}
},
{
- "id": 17803,
+ "id": 18272,
"properties": {
"facing": "south",
"lit": "false"
}
},
{
- "id": 17804,
+ "id": 18273,
"properties": {
"facing": "west",
"lit": "true"
}
},
{
- "id": 17805,
+ "id": 18274,
"properties": {
"facing": "west",
"lit": "false"
}
},
{
- "id": 17806,
+ "id": 18275,
"properties": {
"facing": "east",
"lit": "true"
}
},
{
- "id": 17807,
+ "id": 18276,
"properties": {
"facing": "east",
"lit": "false"
@@ -25421,97 +25421,97 @@
"states": [
{
"default": true,
- "id": 10458,
+ "id": 10790,
"properties": {
"rotation": "0"
}
},
{
- "id": 10459,
+ "id": 10791,
"properties": {
"rotation": "1"
}
},
{
- "id": 10460,
+ "id": 10792,
"properties": {
"rotation": "2"
}
},
{
- "id": 10461,
+ "id": 10793,
"properties": {
"rotation": "3"
}
},
{
- "id": 10462,
+ "id": 10794,
"properties": {
"rotation": "4"
}
},
{
- "id": 10463,
+ "id": 10795,
"properties": {
"rotation": "5"
}
},
{
- "id": 10464,
+ "id": 10796,
"properties": {
"rotation": "6"
}
},
{
- "id": 10465,
+ "id": 10797,
"properties": {
"rotation": "7"
}
},
{
- "id": 10466,
+ "id": 10798,
"properties": {
"rotation": "8"
}
},
{
- "id": 10467,
+ "id": 10799,
"properties": {
"rotation": "9"
}
},
{
- "id": 10468,
+ "id": 10800,
"properties": {
"rotation": "10"
}
},
{
- "id": 10469,
+ "id": 10801,
"properties": {
"rotation": "11"
}
},
{
- "id": 10470,
+ "id": 10802,
"properties": {
"rotation": "12"
}
},
{
- "id": 10471,
+ "id": 10803,
"properties": {
"rotation": "13"
}
},
{
- "id": 10472,
+ "id": 10804,
"properties": {
"rotation": "14"
}
},
{
- "id": 10473,
+ "id": 10805,
"properties": {
"rotation": "15"
}
@@ -25537,7 +25537,7 @@
},
"states": [
{
- "id": 1813,
+ "id": 1860,
"properties": {
"facing": "north",
"occupied": "true",
@@ -25545,7 +25545,7 @@
}
},
{
- "id": 1814,
+ "id": 1861,
"properties": {
"facing": "north",
"occupied": "true",
@@ -25553,7 +25553,7 @@
}
},
{
- "id": 1815,
+ "id": 1862,
"properties": {
"facing": "north",
"occupied": "false",
@@ -25562,7 +25562,7 @@
},
{
"default": true,
- "id": 1816,
+ "id": 1863,
"properties": {
"facing": "north",
"occupied": "false",
@@ -25570,7 +25570,7 @@
}
},
{
- "id": 1817,
+ "id": 1864,
"properties": {
"facing": "south",
"occupied": "true",
@@ -25578,7 +25578,7 @@
}
},
{
- "id": 1818,
+ "id": 1865,
"properties": {
"facing": "south",
"occupied": "true",
@@ -25586,7 +25586,7 @@
}
},
{
- "id": 1819,
+ "id": 1866,
"properties": {
"facing": "south",
"occupied": "false",
@@ -25594,7 +25594,7 @@
}
},
{
- "id": 1820,
+ "id": 1867,
"properties": {
"facing": "south",
"occupied": "false",
@@ -25602,7 +25602,7 @@
}
},
{
- "id": 1821,
+ "id": 1868,
"properties": {
"facing": "west",
"occupied": "true",
@@ -25610,7 +25610,7 @@
}
},
{
- "id": 1822,
+ "id": 1869,
"properties": {
"facing": "west",
"occupied": "true",
@@ -25618,7 +25618,7 @@
}
},
{
- "id": 1823,
+ "id": 1870,
"properties": {
"facing": "west",
"occupied": "false",
@@ -25626,7 +25626,7 @@
}
},
{
- "id": 1824,
+ "id": 1871,
"properties": {
"facing": "west",
"occupied": "false",
@@ -25634,7 +25634,7 @@
}
},
{
- "id": 1825,
+ "id": 1872,
"properties": {
"facing": "east",
"occupied": "true",
@@ -25642,7 +25642,7 @@
}
},
{
- "id": 1826,
+ "id": 1873,
"properties": {
"facing": "east",
"occupied": "true",
@@ -25650,7 +25650,7 @@
}
},
{
- "id": 1827,
+ "id": 1874,
"properties": {
"facing": "east",
"occupied": "false",
@@ -25658,7 +25658,7 @@
}
},
{
- "id": 1828,
+ "id": 1875,
"properties": {
"facing": "east",
"occupied": "false",
@@ -25686,7 +25686,7 @@
},
"states": [
{
- "id": 20289,
+ "id": 20758,
"properties": {
"candles": "1",
"lit": "true",
@@ -25694,7 +25694,7 @@
}
},
{
- "id": 20290,
+ "id": 20759,
"properties": {
"candles": "1",
"lit": "true",
@@ -25702,7 +25702,7 @@
}
},
{
- "id": 20291,
+ "id": 20760,
"properties": {
"candles": "1",
"lit": "false",
@@ -25711,7 +25711,7 @@
},
{
"default": true,
- "id": 20292,
+ "id": 20761,
"properties": {
"candles": "1",
"lit": "false",
@@ -25719,7 +25719,7 @@
}
},
{
- "id": 20293,
+ "id": 20762,
"properties": {
"candles": "2",
"lit": "true",
@@ -25727,7 +25727,7 @@
}
},
{
- "id": 20294,
+ "id": 20763,
"properties": {
"candles": "2",
"lit": "true",
@@ -25735,7 +25735,7 @@
}
},
{
- "id": 20295,
+ "id": 20764,
"properties": {
"candles": "2",
"lit": "false",
@@ -25743,7 +25743,7 @@
}
},
{
- "id": 20296,
+ "id": 20765,
"properties": {
"candles": "2",
"lit": "false",
@@ -25751,7 +25751,7 @@
}
},
{
- "id": 20297,
+ "id": 20766,
"properties": {
"candles": "3",
"lit": "true",
@@ -25759,7 +25759,7 @@
}
},
{
- "id": 20298,
+ "id": 20767,
"properties": {
"candles": "3",
"lit": "true",
@@ -25767,7 +25767,7 @@
}
},
{
- "id": 20299,
+ "id": 20768,
"properties": {
"candles": "3",
"lit": "false",
@@ -25775,7 +25775,7 @@
}
},
{
- "id": 20300,
+ "id": 20769,
"properties": {
"candles": "3",
"lit": "false",
@@ -25783,7 +25783,7 @@
}
},
{
- "id": 20301,
+ "id": 20770,
"properties": {
"candles": "4",
"lit": "true",
@@ -25791,7 +25791,7 @@
}
},
{
- "id": 20302,
+ "id": 20771,
"properties": {
"candles": "4",
"lit": "true",
@@ -25799,7 +25799,7 @@
}
},
{
- "id": 20303,
+ "id": 20772,
"properties": {
"candles": "4",
"lit": "false",
@@ -25807,7 +25807,7 @@
}
},
{
- "id": 20304,
+ "id": 20773,
"properties": {
"candles": "4",
"lit": "false",
@@ -25825,14 +25825,14 @@
},
"states": [
{
- "id": 20393,
+ "id": 20862,
"properties": {
"lit": "true"
}
},
{
"default": true,
- "id": 20394,
+ "id": 20863,
"properties": {
"lit": "false"
}
@@ -25843,7 +25843,7 @@
"states": [
{
"default": true,
- "id": 10262
+ "id": 10594
}
]
},
@@ -25851,7 +25851,7 @@
"states": [
{
"default": true,
- "id": 12114
+ "id": 12583
}
]
},
@@ -25859,7 +25859,7 @@
"states": [
{
"default": true,
- "id": 12130
+ "id": 12599
}
]
},
@@ -25875,25 +25875,25 @@
"states": [
{
"default": true,
- "id": 12083,
+ "id": 12552,
"properties": {
"facing": "north"
}
},
{
- "id": 12084,
+ "id": 12553,
"properties": {
"facing": "south"
}
},
{
- "id": 12085,
+ "id": 12554,
"properties": {
"facing": "west"
}
},
{
- "id": 12086,
+ "id": 12555,
"properties": {
"facing": "east"
}
@@ -25904,7 +25904,7 @@
"states": [
{
"default": true,
- "id": 12313
+ "id": 12782
}
]
},
@@ -25912,7 +25912,7 @@
"states": [
{
"default": true,
- "id": 2026
+ "id": 2074
}
]
},
@@ -25929,38 +25929,38 @@
},
"states": [
{
- "id": 12009,
+ "id": 12478,
"properties": {
"facing": "north"
}
},
{
- "id": 12010,
+ "id": 12479,
"properties": {
"facing": "east"
}
},
{
- "id": 12011,
+ "id": 12480,
"properties": {
"facing": "south"
}
},
{
- "id": 12012,
+ "id": 12481,
"properties": {
"facing": "west"
}
},
{
"default": true,
- "id": 12013,
+ "id": 12482,
"properties": {
"facing": "up"
}
},
{
- "id": 12014,
+ "id": 12483,
"properties": {
"facing": "down"
}
@@ -25971,7 +25971,7 @@
"states": [
{
"default": true,
- "id": 5791
+ "id": 5953
}
]
},
@@ -26000,7 +26000,7 @@
},
"states": [
{
- "id": 9328,
+ "id": 9580,
"properties": {
"east": "true",
"north": "true",
@@ -26010,7 +26010,7 @@
}
},
{
- "id": 9329,
+ "id": 9581,
"properties": {
"east": "true",
"north": "true",
@@ -26020,7 +26020,7 @@
}
},
{
- "id": 9330,
+ "id": 9582,
"properties": {
"east": "true",
"north": "true",
@@ -26030,7 +26030,7 @@
}
},
{
- "id": 9331,
+ "id": 9583,
"properties": {
"east": "true",
"north": "true",
@@ -26040,7 +26040,7 @@
}
},
{
- "id": 9332,
+ "id": 9584,
"properties": {
"east": "true",
"north": "true",
@@ -26050,7 +26050,7 @@
}
},
{
- "id": 9333,
+ "id": 9585,
"properties": {
"east": "true",
"north": "true",
@@ -26060,7 +26060,7 @@
}
},
{
- "id": 9334,
+ "id": 9586,
"properties": {
"east": "true",
"north": "true",
@@ -26070,7 +26070,7 @@
}
},
{
- "id": 9335,
+ "id": 9587,
"properties": {
"east": "true",
"north": "true",
@@ -26080,7 +26080,7 @@
}
},
{
- "id": 9336,
+ "id": 9588,
"properties": {
"east": "true",
"north": "false",
@@ -26090,7 +26090,7 @@
}
},
{
- "id": 9337,
+ "id": 9589,
"properties": {
"east": "true",
"north": "false",
@@ -26100,7 +26100,7 @@
}
},
{
- "id": 9338,
+ "id": 9590,
"properties": {
"east": "true",
"north": "false",
@@ -26110,7 +26110,7 @@
}
},
{
- "id": 9339,
+ "id": 9591,
"properties": {
"east": "true",
"north": "false",
@@ -26120,7 +26120,7 @@
}
},
{
- "id": 9340,
+ "id": 9592,
"properties": {
"east": "true",
"north": "false",
@@ -26130,7 +26130,7 @@
}
},
{
- "id": 9341,
+ "id": 9593,
"properties": {
"east": "true",
"north": "false",
@@ -26140,7 +26140,7 @@
}
},
{
- "id": 9342,
+ "id": 9594,
"properties": {
"east": "true",
"north": "false",
@@ -26150,7 +26150,7 @@
}
},
{
- "id": 9343,
+ "id": 9595,
"properties": {
"east": "true",
"north": "false",
@@ -26160,7 +26160,7 @@
}
},
{
- "id": 9344,
+ "id": 9596,
"properties": {
"east": "false",
"north": "true",
@@ -26170,7 +26170,7 @@
}
},
{
- "id": 9345,
+ "id": 9597,
"properties": {
"east": "false",
"north": "true",
@@ -26180,7 +26180,7 @@
}
},
{
- "id": 9346,
+ "id": 9598,
"properties": {
"east": "false",
"north": "true",
@@ -26190,7 +26190,7 @@
}
},
{
- "id": 9347,
+ "id": 9599,
"properties": {
"east": "false",
"north": "true",
@@ -26200,7 +26200,7 @@
}
},
{
- "id": 9348,
+ "id": 9600,
"properties": {
"east": "false",
"north": "true",
@@ -26210,7 +26210,7 @@
}
},
{
- "id": 9349,
+ "id": 9601,
"properties": {
"east": "false",
"north": "true",
@@ -26220,7 +26220,7 @@
}
},
{
- "id": 9350,
+ "id": 9602,
"properties": {
"east": "false",
"north": "true",
@@ -26230,7 +26230,7 @@
}
},
{
- "id": 9351,
+ "id": 9603,
"properties": {
"east": "false",
"north": "true",
@@ -26240,7 +26240,7 @@
}
},
{
- "id": 9352,
+ "id": 9604,
"properties": {
"east": "false",
"north": "false",
@@ -26250,7 +26250,7 @@
}
},
{
- "id": 9353,
+ "id": 9605,
"properties": {
"east": "false",
"north": "false",
@@ -26260,7 +26260,7 @@
}
},
{
- "id": 9354,
+ "id": 9606,
"properties": {
"east": "false",
"north": "false",
@@ -26270,7 +26270,7 @@
}
},
{
- "id": 9355,
+ "id": 9607,
"properties": {
"east": "false",
"north": "false",
@@ -26280,7 +26280,7 @@
}
},
{
- "id": 9356,
+ "id": 9608,
"properties": {
"east": "false",
"north": "false",
@@ -26290,7 +26290,7 @@
}
},
{
- "id": 9357,
+ "id": 9609,
"properties": {
"east": "false",
"north": "false",
@@ -26300,7 +26300,7 @@
}
},
{
- "id": 9358,
+ "id": 9610,
"properties": {
"east": "false",
"north": "false",
@@ -26311,7 +26311,7 @@
},
{
"default": true,
- "id": 9359,
+ "id": 9611,
"properties": {
"east": "false",
"north": "false",
@@ -26326,7 +26326,7 @@
"states": [
{
"default": true,
- "id": 8971
+ "id": 9223
}
]
},
@@ -26342,25 +26342,25 @@
"states": [
{
"default": true,
- "id": 10582,
+ "id": 10914,
"properties": {
"facing": "north"
}
},
{
- "id": 10583,
+ "id": 10915,
"properties": {
"facing": "south"
}
},
{
- "id": 10584,
+ "id": 10916,
"properties": {
"facing": "west"
}
},
{
- "id": 10585,
+ "id": 10917,
"properties": {
"facing": "east"
}
@@ -26371,7 +26371,7 @@
"states": [
{
"default": true,
- "id": 2007
+ "id": 2054
}
]
},
@@ -26385,20 +26385,20 @@
},
"states": [
{
- "id": 11921,
+ "id": 12390,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 11922,
+ "id": 12391,
"properties": {
"axis": "y"
}
},
{
- "id": 11923,
+ "id": 12392,
"properties": {
"axis": "z"
}
@@ -26409,7 +26409,7 @@
"states": [
{
"default": true,
- "id": 2044
+ "id": 2092
}
]
},
@@ -26423,13 +26423,13 @@
"states": [
{
"default": true,
- "id": 12197,
+ "id": 12666,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12198,
+ "id": 12667,
"properties": {
"waterlogged": "false"
}
@@ -26440,7 +26440,7 @@
"states": [
{
"default": true,
- "id": 12181
+ "id": 12650
}
]
},
@@ -26454,13 +26454,13 @@
"states": [
{
"default": true,
- "id": 12217,
+ "id": 12686,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12218,
+ "id": 12687,
"properties": {
"waterlogged": "false"
}
@@ -26483,56 +26483,56 @@
"states": [
{
"default": true,
- "id": 12273,
+ "id": 12742,
"properties": {
"facing": "north",
"waterlogged": "true"
}
},
{
- "id": 12274,
+ "id": 12743,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 12275,
+ "id": 12744,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 12276,
+ "id": 12745,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 12277,
+ "id": 12746,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 12278,
+ "id": 12747,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 12279,
+ "id": 12748,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 12280,
+ "id": 12749,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -26557,7 +26557,7 @@
},
"states": [
{
- "id": 7160,
+ "id": 7386,
"properties": {
"has_bottle_0": "true",
"has_bottle_1": "true",
@@ -26565,7 +26565,7 @@
}
},
{
- "id": 7161,
+ "id": 7387,
"properties": {
"has_bottle_0": "true",
"has_bottle_1": "true",
@@ -26573,7 +26573,7 @@
}
},
{
- "id": 7162,
+ "id": 7388,
"properties": {
"has_bottle_0": "true",
"has_bottle_1": "false",
@@ -26581,7 +26581,7 @@
}
},
{
- "id": 7163,
+ "id": 7389,
"properties": {
"has_bottle_0": "true",
"has_bottle_1": "false",
@@ -26589,7 +26589,7 @@
}
},
{
- "id": 7164,
+ "id": 7390,
"properties": {
"has_bottle_0": "false",
"has_bottle_1": "true",
@@ -26597,7 +26597,7 @@
}
},
{
- "id": 7165,
+ "id": 7391,
"properties": {
"has_bottle_0": "false",
"has_bottle_1": "true",
@@ -26605,7 +26605,7 @@
}
},
{
- "id": 7166,
+ "id": 7392,
"properties": {
"has_bottle_0": "false",
"has_bottle_1": "false",
@@ -26614,7 +26614,7 @@
},
{
"default": true,
- "id": 7167,
+ "id": 7393,
"properties": {
"has_bottle_0": "false",
"has_bottle_1": "false",
@@ -26637,21 +26637,21 @@
},
"states": [
{
- "id": 10775,
+ "id": 11113,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 10776,
+ "id": 11114,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 10777,
+ "id": 11115,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -26659,21 +26659,21 @@
},
{
"default": true,
- "id": 10778,
+ "id": 11116,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 10779,
+ "id": 11117,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 10780,
+ "id": 11118,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -26707,7 +26707,7 @@
},
"states": [
{
- "id": 6799,
+ "id": 7025,
"properties": {
"facing": "north",
"half": "top",
@@ -26716,7 +26716,7 @@
}
},
{
- "id": 6800,
+ "id": 7026,
"properties": {
"facing": "north",
"half": "top",
@@ -26725,7 +26725,7 @@
}
},
{
- "id": 6801,
+ "id": 7027,
"properties": {
"facing": "north",
"half": "top",
@@ -26734,7 +26734,7 @@
}
},
{
- "id": 6802,
+ "id": 7028,
"properties": {
"facing": "north",
"half": "top",
@@ -26743,7 +26743,7 @@
}
},
{
- "id": 6803,
+ "id": 7029,
"properties": {
"facing": "north",
"half": "top",
@@ -26752,7 +26752,7 @@
}
},
{
- "id": 6804,
+ "id": 7030,
"properties": {
"facing": "north",
"half": "top",
@@ -26761,7 +26761,7 @@
}
},
{
- "id": 6805,
+ "id": 7031,
"properties": {
"facing": "north",
"half": "top",
@@ -26770,7 +26770,7 @@
}
},
{
- "id": 6806,
+ "id": 7032,
"properties": {
"facing": "north",
"half": "top",
@@ -26779,7 +26779,7 @@
}
},
{
- "id": 6807,
+ "id": 7033,
"properties": {
"facing": "north",
"half": "top",
@@ -26788,7 +26788,7 @@
}
},
{
- "id": 6808,
+ "id": 7034,
"properties": {
"facing": "north",
"half": "top",
@@ -26797,7 +26797,7 @@
}
},
{
- "id": 6809,
+ "id": 7035,
"properties": {
"facing": "north",
"half": "bottom",
@@ -26807,7 +26807,7 @@
},
{
"default": true,
- "id": 6810,
+ "id": 7036,
"properties": {
"facing": "north",
"half": "bottom",
@@ -26816,7 +26816,7 @@
}
},
{
- "id": 6811,
+ "id": 7037,
"properties": {
"facing": "north",
"half": "bottom",
@@ -26825,7 +26825,7 @@
}
},
{
- "id": 6812,
+ "id": 7038,
"properties": {
"facing": "north",
"half": "bottom",
@@ -26834,7 +26834,7 @@
}
},
{
- "id": 6813,
+ "id": 7039,
"properties": {
"facing": "north",
"half": "bottom",
@@ -26843,7 +26843,7 @@
}
},
{
- "id": 6814,
+ "id": 7040,
"properties": {
"facing": "north",
"half": "bottom",
@@ -26852,7 +26852,7 @@
}
},
{
- "id": 6815,
+ "id": 7041,
"properties": {
"facing": "north",
"half": "bottom",
@@ -26861,7 +26861,7 @@
}
},
{
- "id": 6816,
+ "id": 7042,
"properties": {
"facing": "north",
"half": "bottom",
@@ -26870,7 +26870,7 @@
}
},
{
- "id": 6817,
+ "id": 7043,
"properties": {
"facing": "north",
"half": "bottom",
@@ -26879,7 +26879,7 @@
}
},
{
- "id": 6818,
+ "id": 7044,
"properties": {
"facing": "north",
"half": "bottom",
@@ -26888,7 +26888,7 @@
}
},
{
- "id": 6819,
+ "id": 7045,
"properties": {
"facing": "south",
"half": "top",
@@ -26897,7 +26897,7 @@
}
},
{
- "id": 6820,
+ "id": 7046,
"properties": {
"facing": "south",
"half": "top",
@@ -26906,7 +26906,7 @@
}
},
{
- "id": 6821,
+ "id": 7047,
"properties": {
"facing": "south",
"half": "top",
@@ -26915,7 +26915,7 @@
}
},
{
- "id": 6822,
+ "id": 7048,
"properties": {
"facing": "south",
"half": "top",
@@ -26924,7 +26924,7 @@
}
},
{
- "id": 6823,
+ "id": 7049,
"properties": {
"facing": "south",
"half": "top",
@@ -26933,7 +26933,7 @@
}
},
{
- "id": 6824,
+ "id": 7050,
"properties": {
"facing": "south",
"half": "top",
@@ -26942,7 +26942,7 @@
}
},
{
- "id": 6825,
+ "id": 7051,
"properties": {
"facing": "south",
"half": "top",
@@ -26951,7 +26951,7 @@
}
},
{
- "id": 6826,
+ "id": 7052,
"properties": {
"facing": "south",
"half": "top",
@@ -26960,7 +26960,7 @@
}
},
{
- "id": 6827,
+ "id": 7053,
"properties": {
"facing": "south",
"half": "top",
@@ -26969,7 +26969,7 @@
}
},
{
- "id": 6828,
+ "id": 7054,
"properties": {
"facing": "south",
"half": "top",
@@ -26978,7 +26978,7 @@
}
},
{
- "id": 6829,
+ "id": 7055,
"properties": {
"facing": "south",
"half": "bottom",
@@ -26987,7 +26987,7 @@
}
},
{
- "id": 6830,
+ "id": 7056,
"properties": {
"facing": "south",
"half": "bottom",
@@ -26996,7 +26996,7 @@
}
},
{
- "id": 6831,
+ "id": 7057,
"properties": {
"facing": "south",
"half": "bottom",
@@ -27005,7 +27005,7 @@
}
},
{
- "id": 6832,
+ "id": 7058,
"properties": {
"facing": "south",
"half": "bottom",
@@ -27014,7 +27014,7 @@
}
},
{
- "id": 6833,
+ "id": 7059,
"properties": {
"facing": "south",
"half": "bottom",
@@ -27023,7 +27023,7 @@
}
},
{
- "id": 6834,
+ "id": 7060,
"properties": {
"facing": "south",
"half": "bottom",
@@ -27032,7 +27032,7 @@
}
},
{
- "id": 6835,
+ "id": 7061,
"properties": {
"facing": "south",
"half": "bottom",
@@ -27041,7 +27041,7 @@
}
},
{
- "id": 6836,
+ "id": 7062,
"properties": {
"facing": "south",
"half": "bottom",
@@ -27050,7 +27050,7 @@
}
},
{
- "id": 6837,
+ "id": 7063,
"properties": {
"facing": "south",
"half": "bottom",
@@ -27059,7 +27059,7 @@
}
},
{
- "id": 6838,
+ "id": 7064,
"properties": {
"facing": "south",
"half": "bottom",
@@ -27068,7 +27068,7 @@
}
},
{
- "id": 6839,
+ "id": 7065,
"properties": {
"facing": "west",
"half": "top",
@@ -27077,7 +27077,7 @@
}
},
{
- "id": 6840,
+ "id": 7066,
"properties": {
"facing": "west",
"half": "top",
@@ -27086,7 +27086,7 @@
}
},
{
- "id": 6841,
+ "id": 7067,
"properties": {
"facing": "west",
"half": "top",
@@ -27095,7 +27095,7 @@
}
},
{
- "id": 6842,
+ "id": 7068,
"properties": {
"facing": "west",
"half": "top",
@@ -27104,7 +27104,7 @@
}
},
{
- "id": 6843,
+ "id": 7069,
"properties": {
"facing": "west",
"half": "top",
@@ -27113,7 +27113,7 @@
}
},
{
- "id": 6844,
+ "id": 7070,
"properties": {
"facing": "west",
"half": "top",
@@ -27122,7 +27122,7 @@
}
},
{
- "id": 6845,
+ "id": 7071,
"properties": {
"facing": "west",
"half": "top",
@@ -27131,7 +27131,7 @@
}
},
{
- "id": 6846,
+ "id": 7072,
"properties": {
"facing": "west",
"half": "top",
@@ -27140,7 +27140,7 @@
}
},
{
- "id": 6847,
+ "id": 7073,
"properties": {
"facing": "west",
"half": "top",
@@ -27149,7 +27149,7 @@
}
},
{
- "id": 6848,
+ "id": 7074,
"properties": {
"facing": "west",
"half": "top",
@@ -27158,7 +27158,7 @@
}
},
{
- "id": 6849,
+ "id": 7075,
"properties": {
"facing": "west",
"half": "bottom",
@@ -27167,7 +27167,7 @@
}
},
{
- "id": 6850,
+ "id": 7076,
"properties": {
"facing": "west",
"half": "bottom",
@@ -27176,7 +27176,7 @@
}
},
{
- "id": 6851,
+ "id": 7077,
"properties": {
"facing": "west",
"half": "bottom",
@@ -27185,7 +27185,7 @@
}
},
{
- "id": 6852,
+ "id": 7078,
"properties": {
"facing": "west",
"half": "bottom",
@@ -27194,7 +27194,7 @@
}
},
{
- "id": 6853,
+ "id": 7079,
"properties": {
"facing": "west",
"half": "bottom",
@@ -27203,7 +27203,7 @@
}
},
{
- "id": 6854,
+ "id": 7080,
"properties": {
"facing": "west",
"half": "bottom",
@@ -27212,7 +27212,7 @@
}
},
{
- "id": 6855,
+ "id": 7081,
"properties": {
"facing": "west",
"half": "bottom",
@@ -27221,7 +27221,7 @@
}
},
{
- "id": 6856,
+ "id": 7082,
"properties": {
"facing": "west",
"half": "bottom",
@@ -27230,7 +27230,7 @@
}
},
{
- "id": 6857,
+ "id": 7083,
"properties": {
"facing": "west",
"half": "bottom",
@@ -27239,7 +27239,7 @@
}
},
{
- "id": 6858,
+ "id": 7084,
"properties": {
"facing": "west",
"half": "bottom",
@@ -27248,7 +27248,7 @@
}
},
{
- "id": 6859,
+ "id": 7085,
"properties": {
"facing": "east",
"half": "top",
@@ -27257,7 +27257,7 @@
}
},
{
- "id": 6860,
+ "id": 7086,
"properties": {
"facing": "east",
"half": "top",
@@ -27266,7 +27266,7 @@
}
},
{
- "id": 6861,
+ "id": 7087,
"properties": {
"facing": "east",
"half": "top",
@@ -27275,7 +27275,7 @@
}
},
{
- "id": 6862,
+ "id": 7088,
"properties": {
"facing": "east",
"half": "top",
@@ -27284,7 +27284,7 @@
}
},
{
- "id": 6863,
+ "id": 7089,
"properties": {
"facing": "east",
"half": "top",
@@ -27293,7 +27293,7 @@
}
},
{
- "id": 6864,
+ "id": 7090,
"properties": {
"facing": "east",
"half": "top",
@@ -27302,7 +27302,7 @@
}
},
{
- "id": 6865,
+ "id": 7091,
"properties": {
"facing": "east",
"half": "top",
@@ -27311,7 +27311,7 @@
}
},
{
- "id": 6866,
+ "id": 7092,
"properties": {
"facing": "east",
"half": "top",
@@ -27320,7 +27320,7 @@
}
},
{
- "id": 6867,
+ "id": 7093,
"properties": {
"facing": "east",
"half": "top",
@@ -27329,7 +27329,7 @@
}
},
{
- "id": 6868,
+ "id": 7094,
"properties": {
"facing": "east",
"half": "top",
@@ -27338,7 +27338,7 @@
}
},
{
- "id": 6869,
+ "id": 7095,
"properties": {
"facing": "east",
"half": "bottom",
@@ -27347,7 +27347,7 @@
}
},
{
- "id": 6870,
+ "id": 7096,
"properties": {
"facing": "east",
"half": "bottom",
@@ -27356,7 +27356,7 @@
}
},
{
- "id": 6871,
+ "id": 7097,
"properties": {
"facing": "east",
"half": "bottom",
@@ -27365,7 +27365,7 @@
}
},
{
- "id": 6872,
+ "id": 7098,
"properties": {
"facing": "east",
"half": "bottom",
@@ -27374,7 +27374,7 @@
}
},
{
- "id": 6873,
+ "id": 7099,
"properties": {
"facing": "east",
"half": "bottom",
@@ -27383,7 +27383,7 @@
}
},
{
- "id": 6874,
+ "id": 7100,
"properties": {
"facing": "east",
"half": "bottom",
@@ -27392,7 +27392,7 @@
}
},
{
- "id": 6875,
+ "id": 7101,
"properties": {
"facing": "east",
"half": "bottom",
@@ -27401,7 +27401,7 @@
}
},
{
- "id": 6876,
+ "id": 7102,
"properties": {
"facing": "east",
"half": "bottom",
@@ -27410,7 +27410,7 @@
}
},
{
- "id": 6877,
+ "id": 7103,
"properties": {
"facing": "east",
"half": "bottom",
@@ -27419,7 +27419,7 @@
}
},
{
- "id": 6878,
+ "id": 7104,
"properties": {
"facing": "east",
"half": "bottom",
@@ -27462,7 +27462,7 @@
},
"states": [
{
- "id": 13532,
+ "id": 14001,
"properties": {
"east": "none",
"north": "none",
@@ -27473,7 +27473,7 @@
}
},
{
- "id": 13533,
+ "id": 14002,
"properties": {
"east": "none",
"north": "none",
@@ -27484,7 +27484,7 @@
}
},
{
- "id": 13534,
+ "id": 14003,
"properties": {
"east": "none",
"north": "none",
@@ -27496,7 +27496,7 @@
},
{
"default": true,
- "id": 13535,
+ "id": 14004,
"properties": {
"east": "none",
"north": "none",
@@ -27507,7 +27507,7 @@
}
},
{
- "id": 13536,
+ "id": 14005,
"properties": {
"east": "none",
"north": "none",
@@ -27518,7 +27518,7 @@
}
},
{
- "id": 13537,
+ "id": 14006,
"properties": {
"east": "none",
"north": "none",
@@ -27529,7 +27529,7 @@
}
},
{
- "id": 13538,
+ "id": 14007,
"properties": {
"east": "none",
"north": "none",
@@ -27540,7 +27540,7 @@
}
},
{
- "id": 13539,
+ "id": 14008,
"properties": {
"east": "none",
"north": "none",
@@ -27551,7 +27551,7 @@
}
},
{
- "id": 13540,
+ "id": 14009,
"properties": {
"east": "none",
"north": "none",
@@ -27562,7 +27562,7 @@
}
},
{
- "id": 13541,
+ "id": 14010,
"properties": {
"east": "none",
"north": "none",
@@ -27573,7 +27573,7 @@
}
},
{
- "id": 13542,
+ "id": 14011,
"properties": {
"east": "none",
"north": "none",
@@ -27584,7 +27584,7 @@
}
},
{
- "id": 13543,
+ "id": 14012,
"properties": {
"east": "none",
"north": "none",
@@ -27595,7 +27595,7 @@
}
},
{
- "id": 13544,
+ "id": 14013,
"properties": {
"east": "none",
"north": "none",
@@ -27606,7 +27606,7 @@
}
},
{
- "id": 13545,
+ "id": 14014,
"properties": {
"east": "none",
"north": "none",
@@ -27617,7 +27617,7 @@
}
},
{
- "id": 13546,
+ "id": 14015,
"properties": {
"east": "none",
"north": "none",
@@ -27628,7 +27628,7 @@
}
},
{
- "id": 13547,
+ "id": 14016,
"properties": {
"east": "none",
"north": "none",
@@ -27639,7 +27639,7 @@
}
},
{
- "id": 13548,
+ "id": 14017,
"properties": {
"east": "none",
"north": "none",
@@ -27650,7 +27650,7 @@
}
},
{
- "id": 13549,
+ "id": 14018,
"properties": {
"east": "none",
"north": "none",
@@ -27661,7 +27661,7 @@
}
},
{
- "id": 13550,
+ "id": 14019,
"properties": {
"east": "none",
"north": "none",
@@ -27672,7 +27672,7 @@
}
},
{
- "id": 13551,
+ "id": 14020,
"properties": {
"east": "none",
"north": "none",
@@ -27683,7 +27683,7 @@
}
},
{
- "id": 13552,
+ "id": 14021,
"properties": {
"east": "none",
"north": "none",
@@ -27694,7 +27694,7 @@
}
},
{
- "id": 13553,
+ "id": 14022,
"properties": {
"east": "none",
"north": "none",
@@ -27705,7 +27705,7 @@
}
},
{
- "id": 13554,
+ "id": 14023,
"properties": {
"east": "none",
"north": "none",
@@ -27716,7 +27716,7 @@
}
},
{
- "id": 13555,
+ "id": 14024,
"properties": {
"east": "none",
"north": "none",
@@ -27727,7 +27727,7 @@
}
},
{
- "id": 13556,
+ "id": 14025,
"properties": {
"east": "none",
"north": "none",
@@ -27738,7 +27738,7 @@
}
},
{
- "id": 13557,
+ "id": 14026,
"properties": {
"east": "none",
"north": "none",
@@ -27749,7 +27749,7 @@
}
},
{
- "id": 13558,
+ "id": 14027,
"properties": {
"east": "none",
"north": "none",
@@ -27760,7 +27760,7 @@
}
},
{
- "id": 13559,
+ "id": 14028,
"properties": {
"east": "none",
"north": "none",
@@ -27771,7 +27771,7 @@
}
},
{
- "id": 13560,
+ "id": 14029,
"properties": {
"east": "none",
"north": "none",
@@ -27782,7 +27782,7 @@
}
},
{
- "id": 13561,
+ "id": 14030,
"properties": {
"east": "none",
"north": "none",
@@ -27793,7 +27793,7 @@
}
},
{
- "id": 13562,
+ "id": 14031,
"properties": {
"east": "none",
"north": "none",
@@ -27804,7 +27804,7 @@
}
},
{
- "id": 13563,
+ "id": 14032,
"properties": {
"east": "none",
"north": "none",
@@ -27815,7 +27815,7 @@
}
},
{
- "id": 13564,
+ "id": 14033,
"properties": {
"east": "none",
"north": "none",
@@ -27826,7 +27826,7 @@
}
},
{
- "id": 13565,
+ "id": 14034,
"properties": {
"east": "none",
"north": "none",
@@ -27837,7 +27837,7 @@
}
},
{
- "id": 13566,
+ "id": 14035,
"properties": {
"east": "none",
"north": "none",
@@ -27848,7 +27848,7 @@
}
},
{
- "id": 13567,
+ "id": 14036,
"properties": {
"east": "none",
"north": "none",
@@ -27859,7 +27859,7 @@
}
},
{
- "id": 13568,
+ "id": 14037,
"properties": {
"east": "none",
"north": "low",
@@ -27870,7 +27870,7 @@
}
},
{
- "id": 13569,
+ "id": 14038,
"properties": {
"east": "none",
"north": "low",
@@ -27881,7 +27881,7 @@
}
},
{
- "id": 13570,
+ "id": 14039,
"properties": {
"east": "none",
"north": "low",
@@ -27892,7 +27892,7 @@
}
},
{
- "id": 13571,
+ "id": 14040,
"properties": {
"east": "none",
"north": "low",
@@ -27903,7 +27903,7 @@
}
},
{
- "id": 13572,
+ "id": 14041,
"properties": {
"east": "none",
"north": "low",
@@ -27914,7 +27914,7 @@
}
},
{
- "id": 13573,
+ "id": 14042,
"properties": {
"east": "none",
"north": "low",
@@ -27925,7 +27925,7 @@
}
},
{
- "id": 13574,
+ "id": 14043,
"properties": {
"east": "none",
"north": "low",
@@ -27936,7 +27936,7 @@
}
},
{
- "id": 13575,
+ "id": 14044,
"properties": {
"east": "none",
"north": "low",
@@ -27947,7 +27947,7 @@
}
},
{
- "id": 13576,
+ "id": 14045,
"properties": {
"east": "none",
"north": "low",
@@ -27958,7 +27958,7 @@
}
},
{
- "id": 13577,
+ "id": 14046,
"properties": {
"east": "none",
"north": "low",
@@ -27969,7 +27969,7 @@
}
},
{
- "id": 13578,
+ "id": 14047,
"properties": {
"east": "none",
"north": "low",
@@ -27980,7 +27980,7 @@
}
},
{
- "id": 13579,
+ "id": 14048,
"properties": {
"east": "none",
"north": "low",
@@ -27991,7 +27991,7 @@
}
},
{
- "id": 13580,
+ "id": 14049,
"properties": {
"east": "none",
"north": "low",
@@ -28002,7 +28002,7 @@
}
},
{
- "id": 13581,
+ "id": 14050,
"properties": {
"east": "none",
"north": "low",
@@ -28013,7 +28013,7 @@
}
},
{
- "id": 13582,
+ "id": 14051,
"properties": {
"east": "none",
"north": "low",
@@ -28024,7 +28024,7 @@
}
},
{
- "id": 13583,
+ "id": 14052,
"properties": {
"east": "none",
"north": "low",
@@ -28035,7 +28035,7 @@
}
},
{
- "id": 13584,
+ "id": 14053,
"properties": {
"east": "none",
"north": "low",
@@ -28046,7 +28046,7 @@
}
},
{
- "id": 13585,
+ "id": 14054,
"properties": {
"east": "none",
"north": "low",
@@ -28057,7 +28057,7 @@
}
},
{
- "id": 13586,
+ "id": 14055,
"properties": {
"east": "none",
"north": "low",
@@ -28068,7 +28068,7 @@
}
},
{
- "id": 13587,
+ "id": 14056,
"properties": {
"east": "none",
"north": "low",
@@ -28079,7 +28079,7 @@
}
},
{
- "id": 13588,
+ "id": 14057,
"properties": {
"east": "none",
"north": "low",
@@ -28090,7 +28090,7 @@
}
},
{
- "id": 13589,
+ "id": 14058,
"properties": {
"east": "none",
"north": "low",
@@ -28101,7 +28101,7 @@
}
},
{
- "id": 13590,
+ "id": 14059,
"properties": {
"east": "none",
"north": "low",
@@ -28112,7 +28112,7 @@
}
},
{
- "id": 13591,
+ "id": 14060,
"properties": {
"east": "none",
"north": "low",
@@ -28123,7 +28123,7 @@
}
},
{
- "id": 13592,
+ "id": 14061,
"properties": {
"east": "none",
"north": "low",
@@ -28134,7 +28134,7 @@
}
},
{
- "id": 13593,
+ "id": 14062,
"properties": {
"east": "none",
"north": "low",
@@ -28145,7 +28145,7 @@
}
},
{
- "id": 13594,
+ "id": 14063,
"properties": {
"east": "none",
"north": "low",
@@ -28156,7 +28156,7 @@
}
},
{
- "id": 13595,
+ "id": 14064,
"properties": {
"east": "none",
"north": "low",
@@ -28167,7 +28167,7 @@
}
},
{
- "id": 13596,
+ "id": 14065,
"properties": {
"east": "none",
"north": "low",
@@ -28178,7 +28178,7 @@
}
},
{
- "id": 13597,
+ "id": 14066,
"properties": {
"east": "none",
"north": "low",
@@ -28189,7 +28189,7 @@
}
},
{
- "id": 13598,
+ "id": 14067,
"properties": {
"east": "none",
"north": "low",
@@ -28200,7 +28200,7 @@
}
},
{
- "id": 13599,
+ "id": 14068,
"properties": {
"east": "none",
"north": "low",
@@ -28211,7 +28211,7 @@
}
},
{
- "id": 13600,
+ "id": 14069,
"properties": {
"east": "none",
"north": "low",
@@ -28222,7 +28222,7 @@
}
},
{
- "id": 13601,
+ "id": 14070,
"properties": {
"east": "none",
"north": "low",
@@ -28233,7 +28233,7 @@
}
},
{
- "id": 13602,
+ "id": 14071,
"properties": {
"east": "none",
"north": "low",
@@ -28244,7 +28244,7 @@
}
},
{
- "id": 13603,
+ "id": 14072,
"properties": {
"east": "none",
"north": "low",
@@ -28255,7 +28255,7 @@
}
},
{
- "id": 13604,
+ "id": 14073,
"properties": {
"east": "none",
"north": "tall",
@@ -28266,7 +28266,7 @@
}
},
{
- "id": 13605,
+ "id": 14074,
"properties": {
"east": "none",
"north": "tall",
@@ -28277,7 +28277,7 @@
}
},
{
- "id": 13606,
+ "id": 14075,
"properties": {
"east": "none",
"north": "tall",
@@ -28288,7 +28288,7 @@
}
},
{
- "id": 13607,
+ "id": 14076,
"properties": {
"east": "none",
"north": "tall",
@@ -28299,7 +28299,7 @@
}
},
{
- "id": 13608,
+ "id": 14077,
"properties": {
"east": "none",
"north": "tall",
@@ -28310,7 +28310,7 @@
}
},
{
- "id": 13609,
+ "id": 14078,
"properties": {
"east": "none",
"north": "tall",
@@ -28321,7 +28321,7 @@
}
},
{
- "id": 13610,
+ "id": 14079,
"properties": {
"east": "none",
"north": "tall",
@@ -28332,7 +28332,7 @@
}
},
{
- "id": 13611,
+ "id": 14080,
"properties": {
"east": "none",
"north": "tall",
@@ -28343,7 +28343,7 @@
}
},
{
- "id": 13612,
+ "id": 14081,
"properties": {
"east": "none",
"north": "tall",
@@ -28354,7 +28354,7 @@
}
},
{
- "id": 13613,
+ "id": 14082,
"properties": {
"east": "none",
"north": "tall",
@@ -28365,7 +28365,7 @@
}
},
{
- "id": 13614,
+ "id": 14083,
"properties": {
"east": "none",
"north": "tall",
@@ -28376,7 +28376,7 @@
}
},
{
- "id": 13615,
+ "id": 14084,
"properties": {
"east": "none",
"north": "tall",
@@ -28387,7 +28387,7 @@
}
},
{
- "id": 13616,
+ "id": 14085,
"properties": {
"east": "none",
"north": "tall",
@@ -28398,7 +28398,7 @@
}
},
{
- "id": 13617,
+ "id": 14086,
"properties": {
"east": "none",
"north": "tall",
@@ -28409,7 +28409,7 @@
}
},
{
- "id": 13618,
+ "id": 14087,
"properties": {
"east": "none",
"north": "tall",
@@ -28420,7 +28420,7 @@
}
},
{
- "id": 13619,
+ "id": 14088,
"properties": {
"east": "none",
"north": "tall",
@@ -28431,7 +28431,7 @@
}
},
{
- "id": 13620,
+ "id": 14089,
"properties": {
"east": "none",
"north": "tall",
@@ -28442,7 +28442,7 @@
}
},
{
- "id": 13621,
+ "id": 14090,
"properties": {
"east": "none",
"north": "tall",
@@ -28453,7 +28453,7 @@
}
},
{
- "id": 13622,
+ "id": 14091,
"properties": {
"east": "none",
"north": "tall",
@@ -28464,7 +28464,7 @@
}
},
{
- "id": 13623,
+ "id": 14092,
"properties": {
"east": "none",
"north": "tall",
@@ -28475,7 +28475,7 @@
}
},
{
- "id": 13624,
+ "id": 14093,
"properties": {
"east": "none",
"north": "tall",
@@ -28486,7 +28486,7 @@
}
},
{
- "id": 13625,
+ "id": 14094,
"properties": {
"east": "none",
"north": "tall",
@@ -28497,7 +28497,7 @@
}
},
{
- "id": 13626,
+ "id": 14095,
"properties": {
"east": "none",
"north": "tall",
@@ -28508,7 +28508,7 @@
}
},
{
- "id": 13627,
+ "id": 14096,
"properties": {
"east": "none",
"north": "tall",
@@ -28519,7 +28519,7 @@
}
},
{
- "id": 13628,
+ "id": 14097,
"properties": {
"east": "none",
"north": "tall",
@@ -28530,7 +28530,7 @@
}
},
{
- "id": 13629,
+ "id": 14098,
"properties": {
"east": "none",
"north": "tall",
@@ -28541,7 +28541,7 @@
}
},
{
- "id": 13630,
+ "id": 14099,
"properties": {
"east": "none",
"north": "tall",
@@ -28552,7 +28552,7 @@
}
},
{
- "id": 13631,
+ "id": 14100,
"properties": {
"east": "none",
"north": "tall",
@@ -28563,7 +28563,7 @@
}
},
{
- "id": 13632,
+ "id": 14101,
"properties": {
"east": "none",
"north": "tall",
@@ -28574,7 +28574,7 @@
}
},
{
- "id": 13633,
+ "id": 14102,
"properties": {
"east": "none",
"north": "tall",
@@ -28585,7 +28585,7 @@
}
},
{
- "id": 13634,
+ "id": 14103,
"properties": {
"east": "none",
"north": "tall",
@@ -28596,7 +28596,7 @@
}
},
{
- "id": 13635,
+ "id": 14104,
"properties": {
"east": "none",
"north": "tall",
@@ -28607,7 +28607,7 @@
}
},
{
- "id": 13636,
+ "id": 14105,
"properties": {
"east": "none",
"north": "tall",
@@ -28618,7 +28618,7 @@
}
},
{
- "id": 13637,
+ "id": 14106,
"properties": {
"east": "none",
"north": "tall",
@@ -28629,7 +28629,7 @@
}
},
{
- "id": 13638,
+ "id": 14107,
"properties": {
"east": "none",
"north": "tall",
@@ -28640,7 +28640,7 @@
}
},
{
- "id": 13639,
+ "id": 14108,
"properties": {
"east": "none",
"north": "tall",
@@ -28651,7 +28651,7 @@
}
},
{
- "id": 13640,
+ "id": 14109,
"properties": {
"east": "low",
"north": "none",
@@ -28662,7 +28662,7 @@
}
},
{
- "id": 13641,
+ "id": 14110,
"properties": {
"east": "low",
"north": "none",
@@ -28673,7 +28673,7 @@
}
},
{
- "id": 13642,
+ "id": 14111,
"properties": {
"east": "low",
"north": "none",
@@ -28684,7 +28684,7 @@
}
},
{
- "id": 13643,
+ "id": 14112,
"properties": {
"east": "low",
"north": "none",
@@ -28695,7 +28695,7 @@
}
},
{
- "id": 13644,
+ "id": 14113,
"properties": {
"east": "low",
"north": "none",
@@ -28706,7 +28706,7 @@
}
},
{
- "id": 13645,
+ "id": 14114,
"properties": {
"east": "low",
"north": "none",
@@ -28717,7 +28717,7 @@
}
},
{
- "id": 13646,
+ "id": 14115,
"properties": {
"east": "low",
"north": "none",
@@ -28728,7 +28728,7 @@
}
},
{
- "id": 13647,
+ "id": 14116,
"properties": {
"east": "low",
"north": "none",
@@ -28739,7 +28739,7 @@
}
},
{
- "id": 13648,
+ "id": 14117,
"properties": {
"east": "low",
"north": "none",
@@ -28750,7 +28750,7 @@
}
},
{
- "id": 13649,
+ "id": 14118,
"properties": {
"east": "low",
"north": "none",
@@ -28761,7 +28761,7 @@
}
},
{
- "id": 13650,
+ "id": 14119,
"properties": {
"east": "low",
"north": "none",
@@ -28772,7 +28772,7 @@
}
},
{
- "id": 13651,
+ "id": 14120,
"properties": {
"east": "low",
"north": "none",
@@ -28783,7 +28783,7 @@
}
},
{
- "id": 13652,
+ "id": 14121,
"properties": {
"east": "low",
"north": "none",
@@ -28794,7 +28794,7 @@
}
},
{
- "id": 13653,
+ "id": 14122,
"properties": {
"east": "low",
"north": "none",
@@ -28805,7 +28805,7 @@
}
},
{
- "id": 13654,
+ "id": 14123,
"properties": {
"east": "low",
"north": "none",
@@ -28816,7 +28816,7 @@
}
},
{
- "id": 13655,
+ "id": 14124,
"properties": {
"east": "low",
"north": "none",
@@ -28827,7 +28827,7 @@
}
},
{
- "id": 13656,
+ "id": 14125,
"properties": {
"east": "low",
"north": "none",
@@ -28838,7 +28838,7 @@
}
},
{
- "id": 13657,
+ "id": 14126,
"properties": {
"east": "low",
"north": "none",
@@ -28849,7 +28849,7 @@
}
},
{
- "id": 13658,
+ "id": 14127,
"properties": {
"east": "low",
"north": "none",
@@ -28860,7 +28860,7 @@
}
},
{
- "id": 13659,
+ "id": 14128,
"properties": {
"east": "low",
"north": "none",
@@ -28871,7 +28871,7 @@
}
},
{
- "id": 13660,
+ "id": 14129,
"properties": {
"east": "low",
"north": "none",
@@ -28882,7 +28882,7 @@
}
},
{
- "id": 13661,
+ "id": 14130,
"properties": {
"east": "low",
"north": "none",
@@ -28893,7 +28893,7 @@
}
},
{
- "id": 13662,
+ "id": 14131,
"properties": {
"east": "low",
"north": "none",
@@ -28904,7 +28904,7 @@
}
},
{
- "id": 13663,
+ "id": 14132,
"properties": {
"east": "low",
"north": "none",
@@ -28915,7 +28915,7 @@
}
},
{
- "id": 13664,
+ "id": 14133,
"properties": {
"east": "low",
"north": "none",
@@ -28926,7 +28926,7 @@
}
},
{
- "id": 13665,
+ "id": 14134,
"properties": {
"east": "low",
"north": "none",
@@ -28937,7 +28937,7 @@
}
},
{
- "id": 13666,
+ "id": 14135,
"properties": {
"east": "low",
"north": "none",
@@ -28948,7 +28948,7 @@
}
},
{
- "id": 13667,
+ "id": 14136,
"properties": {
"east": "low",
"north": "none",
@@ -28959,7 +28959,7 @@
}
},
{
- "id": 13668,
+ "id": 14137,
"properties": {
"east": "low",
"north": "none",
@@ -28970,7 +28970,7 @@
}
},
{
- "id": 13669,
+ "id": 14138,
"properties": {
"east": "low",
"north": "none",
@@ -28981,7 +28981,7 @@
}
},
{
- "id": 13670,
+ "id": 14139,
"properties": {
"east": "low",
"north": "none",
@@ -28992,7 +28992,7 @@
}
},
{
- "id": 13671,
+ "id": 14140,
"properties": {
"east": "low",
"north": "none",
@@ -29003,7 +29003,7 @@
}
},
{
- "id": 13672,
+ "id": 14141,
"properties": {
"east": "low",
"north": "none",
@@ -29014,7 +29014,7 @@
}
},
{
- "id": 13673,
+ "id": 14142,
"properties": {
"east": "low",
"north": "none",
@@ -29025,7 +29025,7 @@
}
},
{
- "id": 13674,
+ "id": 14143,
"properties": {
"east": "low",
"north": "none",
@@ -29036,7 +29036,7 @@
}
},
{
- "id": 13675,
+ "id": 14144,
"properties": {
"east": "low",
"north": "none",
@@ -29047,7 +29047,7 @@
}
},
{
- "id": 13676,
+ "id": 14145,
"properties": {
"east": "low",
"north": "low",
@@ -29058,7 +29058,7 @@
}
},
{
- "id": 13677,
+ "id": 14146,
"properties": {
"east": "low",
"north": "low",
@@ -29069,7 +29069,7 @@
}
},
{
- "id": 13678,
+ "id": 14147,
"properties": {
"east": "low",
"north": "low",
@@ -29080,7 +29080,7 @@
}
},
{
- "id": 13679,
+ "id": 14148,
"properties": {
"east": "low",
"north": "low",
@@ -29091,7 +29091,7 @@
}
},
{
- "id": 13680,
+ "id": 14149,
"properties": {
"east": "low",
"north": "low",
@@ -29102,7 +29102,7 @@
}
},
{
- "id": 13681,
+ "id": 14150,
"properties": {
"east": "low",
"north": "low",
@@ -29113,7 +29113,7 @@
}
},
{
- "id": 13682,
+ "id": 14151,
"properties": {
"east": "low",
"north": "low",
@@ -29124,7 +29124,7 @@
}
},
{
- "id": 13683,
+ "id": 14152,
"properties": {
"east": "low",
"north": "low",
@@ -29135,7 +29135,7 @@
}
},
{
- "id": 13684,
+ "id": 14153,
"properties": {
"east": "low",
"north": "low",
@@ -29146,7 +29146,7 @@
}
},
{
- "id": 13685,
+ "id": 14154,
"properties": {
"east": "low",
"north": "low",
@@ -29157,7 +29157,7 @@
}
},
{
- "id": 13686,
+ "id": 14155,
"properties": {
"east": "low",
"north": "low",
@@ -29168,7 +29168,7 @@
}
},
{
- "id": 13687,
+ "id": 14156,
"properties": {
"east": "low",
"north": "low",
@@ -29179,7 +29179,7 @@
}
},
{
- "id": 13688,
+ "id": 14157,
"properties": {
"east": "low",
"north": "low",
@@ -29190,7 +29190,7 @@
}
},
{
- "id": 13689,
+ "id": 14158,
"properties": {
"east": "low",
"north": "low",
@@ -29201,7 +29201,7 @@
}
},
{
- "id": 13690,
+ "id": 14159,
"properties": {
"east": "low",
"north": "low",
@@ -29212,7 +29212,7 @@
}
},
{
- "id": 13691,
+ "id": 14160,
"properties": {
"east": "low",
"north": "low",
@@ -29223,7 +29223,7 @@
}
},
{
- "id": 13692,
+ "id": 14161,
"properties": {
"east": "low",
"north": "low",
@@ -29234,7 +29234,7 @@
}
},
{
- "id": 13693,
+ "id": 14162,
"properties": {
"east": "low",
"north": "low",
@@ -29245,7 +29245,7 @@
}
},
{
- "id": 13694,
+ "id": 14163,
"properties": {
"east": "low",
"north": "low",
@@ -29256,7 +29256,7 @@
}
},
{
- "id": 13695,
+ "id": 14164,
"properties": {
"east": "low",
"north": "low",
@@ -29267,7 +29267,7 @@
}
},
{
- "id": 13696,
+ "id": 14165,
"properties": {
"east": "low",
"north": "low",
@@ -29278,7 +29278,7 @@
}
},
{
- "id": 13697,
+ "id": 14166,
"properties": {
"east": "low",
"north": "low",
@@ -29289,7 +29289,7 @@
}
},
{
- "id": 13698,
+ "id": 14167,
"properties": {
"east": "low",
"north": "low",
@@ -29300,7 +29300,7 @@
}
},
{
- "id": 13699,
+ "id": 14168,
"properties": {
"east": "low",
"north": "low",
@@ -29311,7 +29311,7 @@
}
},
{
- "id": 13700,
+ "id": 14169,
"properties": {
"east": "low",
"north": "low",
@@ -29322,7 +29322,7 @@
}
},
{
- "id": 13701,
+ "id": 14170,
"properties": {
"east": "low",
"north": "low",
@@ -29333,7 +29333,7 @@
}
},
{
- "id": 13702,
+ "id": 14171,
"properties": {
"east": "low",
"north": "low",
@@ -29344,7 +29344,7 @@
}
},
{
- "id": 13703,
+ "id": 14172,
"properties": {
"east": "low",
"north": "low",
@@ -29355,7 +29355,7 @@
}
},
{
- "id": 13704,
+ "id": 14173,
"properties": {
"east": "low",
"north": "low",
@@ -29366,7 +29366,7 @@
}
},
{
- "id": 13705,
+ "id": 14174,
"properties": {
"east": "low",
"north": "low",
@@ -29377,7 +29377,7 @@
}
},
{
- "id": 13706,
+ "id": 14175,
"properties": {
"east": "low",
"north": "low",
@@ -29388,7 +29388,7 @@
}
},
{
- "id": 13707,
+ "id": 14176,
"properties": {
"east": "low",
"north": "low",
@@ -29399,7 +29399,7 @@
}
},
{
- "id": 13708,
+ "id": 14177,
"properties": {
"east": "low",
"north": "low",
@@ -29410,7 +29410,7 @@
}
},
{
- "id": 13709,
+ "id": 14178,
"properties": {
"east": "low",
"north": "low",
@@ -29421,7 +29421,7 @@
}
},
{
- "id": 13710,
+ "id": 14179,
"properties": {
"east": "low",
"north": "low",
@@ -29432,7 +29432,7 @@
}
},
{
- "id": 13711,
+ "id": 14180,
"properties": {
"east": "low",
"north": "low",
@@ -29443,7 +29443,7 @@
}
},
{
- "id": 13712,
+ "id": 14181,
"properties": {
"east": "low",
"north": "tall",
@@ -29454,7 +29454,7 @@
}
},
{
- "id": 13713,
+ "id": 14182,
"properties": {
"east": "low",
"north": "tall",
@@ -29465,7 +29465,7 @@
}
},
{
- "id": 13714,
+ "id": 14183,
"properties": {
"east": "low",
"north": "tall",
@@ -29476,7 +29476,7 @@
}
},
{
- "id": 13715,
+ "id": 14184,
"properties": {
"east": "low",
"north": "tall",
@@ -29487,7 +29487,7 @@
}
},
{
- "id": 13716,
+ "id": 14185,
"properties": {
"east": "low",
"north": "tall",
@@ -29498,7 +29498,7 @@
}
},
{
- "id": 13717,
+ "id": 14186,
"properties": {
"east": "low",
"north": "tall",
@@ -29509,7 +29509,7 @@
}
},
{
- "id": 13718,
+ "id": 14187,
"properties": {
"east": "low",
"north": "tall",
@@ -29520,7 +29520,7 @@
}
},
{
- "id": 13719,
+ "id": 14188,
"properties": {
"east": "low",
"north": "tall",
@@ -29531,7 +29531,7 @@
}
},
{
- "id": 13720,
+ "id": 14189,
"properties": {
"east": "low",
"north": "tall",
@@ -29542,7 +29542,7 @@
}
},
{
- "id": 13721,
+ "id": 14190,
"properties": {
"east": "low",
"north": "tall",
@@ -29553,7 +29553,7 @@
}
},
{
- "id": 13722,
+ "id": 14191,
"properties": {
"east": "low",
"north": "tall",
@@ -29564,7 +29564,7 @@
}
},
{
- "id": 13723,
+ "id": 14192,
"properties": {
"east": "low",
"north": "tall",
@@ -29575,7 +29575,7 @@
}
},
{
- "id": 13724,
+ "id": 14193,
"properties": {
"east": "low",
"north": "tall",
@@ -29586,7 +29586,7 @@
}
},
{
- "id": 13725,
+ "id": 14194,
"properties": {
"east": "low",
"north": "tall",
@@ -29597,7 +29597,7 @@
}
},
{
- "id": 13726,
+ "id": 14195,
"properties": {
"east": "low",
"north": "tall",
@@ -29608,7 +29608,7 @@
}
},
{
- "id": 13727,
+ "id": 14196,
"properties": {
"east": "low",
"north": "tall",
@@ -29619,7 +29619,7 @@
}
},
{
- "id": 13728,
+ "id": 14197,
"properties": {
"east": "low",
"north": "tall",
@@ -29630,7 +29630,7 @@
}
},
{
- "id": 13729,
+ "id": 14198,
"properties": {
"east": "low",
"north": "tall",
@@ -29641,7 +29641,7 @@
}
},
{
- "id": 13730,
+ "id": 14199,
"properties": {
"east": "low",
"north": "tall",
@@ -29652,7 +29652,7 @@
}
},
{
- "id": 13731,
+ "id": 14200,
"properties": {
"east": "low",
"north": "tall",
@@ -29663,7 +29663,7 @@
}
},
{
- "id": 13732,
+ "id": 14201,
"properties": {
"east": "low",
"north": "tall",
@@ -29674,7 +29674,7 @@
}
},
{
- "id": 13733,
+ "id": 14202,
"properties": {
"east": "low",
"north": "tall",
@@ -29685,7 +29685,7 @@
}
},
{
- "id": 13734,
+ "id": 14203,
"properties": {
"east": "low",
"north": "tall",
@@ -29696,7 +29696,7 @@
}
},
{
- "id": 13735,
+ "id": 14204,
"properties": {
"east": "low",
"north": "tall",
@@ -29707,7 +29707,7 @@
}
},
{
- "id": 13736,
+ "id": 14205,
"properties": {
"east": "low",
"north": "tall",
@@ -29718,7 +29718,7 @@
}
},
{
- "id": 13737,
+ "id": 14206,
"properties": {
"east": "low",
"north": "tall",
@@ -29729,7 +29729,7 @@
}
},
{
- "id": 13738,
+ "id": 14207,
"properties": {
"east": "low",
"north": "tall",
@@ -29740,7 +29740,7 @@
}
},
{
- "id": 13739,
+ "id": 14208,
"properties": {
"east": "low",
"north": "tall",
@@ -29751,7 +29751,7 @@
}
},
{
- "id": 13740,
+ "id": 14209,
"properties": {
"east": "low",
"north": "tall",
@@ -29762,7 +29762,7 @@
}
},
{
- "id": 13741,
+ "id": 14210,
"properties": {
"east": "low",
"north": "tall",
@@ -29773,7 +29773,7 @@
}
},
{
- "id": 13742,
+ "id": 14211,
"properties": {
"east": "low",
"north": "tall",
@@ -29784,7 +29784,7 @@
}
},
{
- "id": 13743,
+ "id": 14212,
"properties": {
"east": "low",
"north": "tall",
@@ -29795,7 +29795,7 @@
}
},
{
- "id": 13744,
+ "id": 14213,
"properties": {
"east": "low",
"north": "tall",
@@ -29806,7 +29806,7 @@
}
},
{
- "id": 13745,
+ "id": 14214,
"properties": {
"east": "low",
"north": "tall",
@@ -29817,7 +29817,7 @@
}
},
{
- "id": 13746,
+ "id": 14215,
"properties": {
"east": "low",
"north": "tall",
@@ -29828,7 +29828,7 @@
}
},
{
- "id": 13747,
+ "id": 14216,
"properties": {
"east": "low",
"north": "tall",
@@ -29839,7 +29839,7 @@
}
},
{
- "id": 13748,
+ "id": 14217,
"properties": {
"east": "tall",
"north": "none",
@@ -29850,7 +29850,7 @@
}
},
{
- "id": 13749,
+ "id": 14218,
"properties": {
"east": "tall",
"north": "none",
@@ -29861,7 +29861,7 @@
}
},
{
- "id": 13750,
+ "id": 14219,
"properties": {
"east": "tall",
"north": "none",
@@ -29872,7 +29872,7 @@
}
},
{
- "id": 13751,
+ "id": 14220,
"properties": {
"east": "tall",
"north": "none",
@@ -29883,7 +29883,7 @@
}
},
{
- "id": 13752,
+ "id": 14221,
"properties": {
"east": "tall",
"north": "none",
@@ -29894,7 +29894,7 @@
}
},
{
- "id": 13753,
+ "id": 14222,
"properties": {
"east": "tall",
"north": "none",
@@ -29905,7 +29905,7 @@
}
},
{
- "id": 13754,
+ "id": 14223,
"properties": {
"east": "tall",
"north": "none",
@@ -29916,7 +29916,7 @@
}
},
{
- "id": 13755,
+ "id": 14224,
"properties": {
"east": "tall",
"north": "none",
@@ -29927,7 +29927,7 @@
}
},
{
- "id": 13756,
+ "id": 14225,
"properties": {
"east": "tall",
"north": "none",
@@ -29938,7 +29938,7 @@
}
},
{
- "id": 13757,
+ "id": 14226,
"properties": {
"east": "tall",
"north": "none",
@@ -29949,7 +29949,7 @@
}
},
{
- "id": 13758,
+ "id": 14227,
"properties": {
"east": "tall",
"north": "none",
@@ -29960,7 +29960,7 @@
}
},
{
- "id": 13759,
+ "id": 14228,
"properties": {
"east": "tall",
"north": "none",
@@ -29971,7 +29971,7 @@
}
},
{
- "id": 13760,
+ "id": 14229,
"properties": {
"east": "tall",
"north": "none",
@@ -29982,7 +29982,7 @@
}
},
{
- "id": 13761,
+ "id": 14230,
"properties": {
"east": "tall",
"north": "none",
@@ -29993,7 +29993,7 @@
}
},
{
- "id": 13762,
+ "id": 14231,
"properties": {
"east": "tall",
"north": "none",
@@ -30004,7 +30004,7 @@
}
},
{
- "id": 13763,
+ "id": 14232,
"properties": {
"east": "tall",
"north": "none",
@@ -30015,7 +30015,7 @@
}
},
{
- "id": 13764,
+ "id": 14233,
"properties": {
"east": "tall",
"north": "none",
@@ -30026,7 +30026,7 @@
}
},
{
- "id": 13765,
+ "id": 14234,
"properties": {
"east": "tall",
"north": "none",
@@ -30037,7 +30037,7 @@
}
},
{
- "id": 13766,
+ "id": 14235,
"properties": {
"east": "tall",
"north": "none",
@@ -30048,7 +30048,7 @@
}
},
{
- "id": 13767,
+ "id": 14236,
"properties": {
"east": "tall",
"north": "none",
@@ -30059,7 +30059,7 @@
}
},
{
- "id": 13768,
+ "id": 14237,
"properties": {
"east": "tall",
"north": "none",
@@ -30070,7 +30070,7 @@
}
},
{
- "id": 13769,
+ "id": 14238,
"properties": {
"east": "tall",
"north": "none",
@@ -30081,7 +30081,7 @@
}
},
{
- "id": 13770,
+ "id": 14239,
"properties": {
"east": "tall",
"north": "none",
@@ -30092,7 +30092,7 @@
}
},
{
- "id": 13771,
+ "id": 14240,
"properties": {
"east": "tall",
"north": "none",
@@ -30103,7 +30103,7 @@
}
},
{
- "id": 13772,
+ "id": 14241,
"properties": {
"east": "tall",
"north": "none",
@@ -30114,7 +30114,7 @@
}
},
{
- "id": 13773,
+ "id": 14242,
"properties": {
"east": "tall",
"north": "none",
@@ -30125,7 +30125,7 @@
}
},
{
- "id": 13774,
+ "id": 14243,
"properties": {
"east": "tall",
"north": "none",
@@ -30136,7 +30136,7 @@
}
},
{
- "id": 13775,
+ "id": 14244,
"properties": {
"east": "tall",
"north": "none",
@@ -30147,7 +30147,7 @@
}
},
{
- "id": 13776,
+ "id": 14245,
"properties": {
"east": "tall",
"north": "none",
@@ -30158,7 +30158,7 @@
}
},
{
- "id": 13777,
+ "id": 14246,
"properties": {
"east": "tall",
"north": "none",
@@ -30169,7 +30169,7 @@
}
},
{
- "id": 13778,
+ "id": 14247,
"properties": {
"east": "tall",
"north": "none",
@@ -30180,7 +30180,7 @@
}
},
{
- "id": 13779,
+ "id": 14248,
"properties": {
"east": "tall",
"north": "none",
@@ -30191,7 +30191,7 @@
}
},
{
- "id": 13780,
+ "id": 14249,
"properties": {
"east": "tall",
"north": "none",
@@ -30202,7 +30202,7 @@
}
},
{
- "id": 13781,
+ "id": 14250,
"properties": {
"east": "tall",
"north": "none",
@@ -30213,7 +30213,7 @@
}
},
{
- "id": 13782,
+ "id": 14251,
"properties": {
"east": "tall",
"north": "none",
@@ -30224,7 +30224,7 @@
}
},
{
- "id": 13783,
+ "id": 14252,
"properties": {
"east": "tall",
"north": "none",
@@ -30235,7 +30235,7 @@
}
},
{
- "id": 13784,
+ "id": 14253,
"properties": {
"east": "tall",
"north": "low",
@@ -30246,7 +30246,7 @@
}
},
{
- "id": 13785,
+ "id": 14254,
"properties": {
"east": "tall",
"north": "low",
@@ -30257,7 +30257,7 @@
}
},
{
- "id": 13786,
+ "id": 14255,
"properties": {
"east": "tall",
"north": "low",
@@ -30268,7 +30268,7 @@
}
},
{
- "id": 13787,
+ "id": 14256,
"properties": {
"east": "tall",
"north": "low",
@@ -30279,7 +30279,7 @@
}
},
{
- "id": 13788,
+ "id": 14257,
"properties": {
"east": "tall",
"north": "low",
@@ -30290,7 +30290,7 @@
}
},
{
- "id": 13789,
+ "id": 14258,
"properties": {
"east": "tall",
"north": "low",
@@ -30301,7 +30301,7 @@
}
},
{
- "id": 13790,
+ "id": 14259,
"properties": {
"east": "tall",
"north": "low",
@@ -30312,7 +30312,7 @@
}
},
{
- "id": 13791,
+ "id": 14260,
"properties": {
"east": "tall",
"north": "low",
@@ -30323,7 +30323,7 @@
}
},
{
- "id": 13792,
+ "id": 14261,
"properties": {
"east": "tall",
"north": "low",
@@ -30334,7 +30334,7 @@
}
},
{
- "id": 13793,
+ "id": 14262,
"properties": {
"east": "tall",
"north": "low",
@@ -30345,7 +30345,7 @@
}
},
{
- "id": 13794,
+ "id": 14263,
"properties": {
"east": "tall",
"north": "low",
@@ -30356,7 +30356,7 @@
}
},
{
- "id": 13795,
+ "id": 14264,
"properties": {
"east": "tall",
"north": "low",
@@ -30367,7 +30367,7 @@
}
},
{
- "id": 13796,
+ "id": 14265,
"properties": {
"east": "tall",
"north": "low",
@@ -30378,7 +30378,7 @@
}
},
{
- "id": 13797,
+ "id": 14266,
"properties": {
"east": "tall",
"north": "low",
@@ -30389,7 +30389,7 @@
}
},
{
- "id": 13798,
+ "id": 14267,
"properties": {
"east": "tall",
"north": "low",
@@ -30400,7 +30400,7 @@
}
},
{
- "id": 13799,
+ "id": 14268,
"properties": {
"east": "tall",
"north": "low",
@@ -30411,7 +30411,7 @@
}
},
{
- "id": 13800,
+ "id": 14269,
"properties": {
"east": "tall",
"north": "low",
@@ -30422,7 +30422,7 @@
}
},
{
- "id": 13801,
+ "id": 14270,
"properties": {
"east": "tall",
"north": "low",
@@ -30433,7 +30433,7 @@
}
},
{
- "id": 13802,
+ "id": 14271,
"properties": {
"east": "tall",
"north": "low",
@@ -30444,7 +30444,7 @@
}
},
{
- "id": 13803,
+ "id": 14272,
"properties": {
"east": "tall",
"north": "low",
@@ -30455,7 +30455,7 @@
}
},
{
- "id": 13804,
+ "id": 14273,
"properties": {
"east": "tall",
"north": "low",
@@ -30466,7 +30466,7 @@
}
},
{
- "id": 13805,
+ "id": 14274,
"properties": {
"east": "tall",
"north": "low",
@@ -30477,7 +30477,7 @@
}
},
{
- "id": 13806,
+ "id": 14275,
"properties": {
"east": "tall",
"north": "low",
@@ -30488,7 +30488,7 @@
}
},
{
- "id": 13807,
+ "id": 14276,
"properties": {
"east": "tall",
"north": "low",
@@ -30499,7 +30499,7 @@
}
},
{
- "id": 13808,
+ "id": 14277,
"properties": {
"east": "tall",
"north": "low",
@@ -30510,7 +30510,7 @@
}
},
{
- "id": 13809,
+ "id": 14278,
"properties": {
"east": "tall",
"north": "low",
@@ -30521,7 +30521,7 @@
}
},
{
- "id": 13810,
+ "id": 14279,
"properties": {
"east": "tall",
"north": "low",
@@ -30532,7 +30532,7 @@
}
},
{
- "id": 13811,
+ "id": 14280,
"properties": {
"east": "tall",
"north": "low",
@@ -30543,7 +30543,7 @@
}
},
{
- "id": 13812,
+ "id": 14281,
"properties": {
"east": "tall",
"north": "low",
@@ -30554,7 +30554,7 @@
}
},
{
- "id": 13813,
+ "id": 14282,
"properties": {
"east": "tall",
"north": "low",
@@ -30565,7 +30565,7 @@
}
},
{
- "id": 13814,
+ "id": 14283,
"properties": {
"east": "tall",
"north": "low",
@@ -30576,7 +30576,7 @@
}
},
{
- "id": 13815,
+ "id": 14284,
"properties": {
"east": "tall",
"north": "low",
@@ -30587,7 +30587,7 @@
}
},
{
- "id": 13816,
+ "id": 14285,
"properties": {
"east": "tall",
"north": "low",
@@ -30598,7 +30598,7 @@
}
},
{
- "id": 13817,
+ "id": 14286,
"properties": {
"east": "tall",
"north": "low",
@@ -30609,7 +30609,7 @@
}
},
{
- "id": 13818,
+ "id": 14287,
"properties": {
"east": "tall",
"north": "low",
@@ -30620,7 +30620,7 @@
}
},
{
- "id": 13819,
+ "id": 14288,
"properties": {
"east": "tall",
"north": "low",
@@ -30631,7 +30631,7 @@
}
},
{
- "id": 13820,
+ "id": 14289,
"properties": {
"east": "tall",
"north": "tall",
@@ -30642,7 +30642,7 @@
}
},
{
- "id": 13821,
+ "id": 14290,
"properties": {
"east": "tall",
"north": "tall",
@@ -30653,7 +30653,7 @@
}
},
{
- "id": 13822,
+ "id": 14291,
"properties": {
"east": "tall",
"north": "tall",
@@ -30664,7 +30664,7 @@
}
},
{
- "id": 13823,
+ "id": 14292,
"properties": {
"east": "tall",
"north": "tall",
@@ -30675,7 +30675,7 @@
}
},
{
- "id": 13824,
+ "id": 14293,
"properties": {
"east": "tall",
"north": "tall",
@@ -30686,7 +30686,7 @@
}
},
{
- "id": 13825,
+ "id": 14294,
"properties": {
"east": "tall",
"north": "tall",
@@ -30697,7 +30697,7 @@
}
},
{
- "id": 13826,
+ "id": 14295,
"properties": {
"east": "tall",
"north": "tall",
@@ -30708,7 +30708,7 @@
}
},
{
- "id": 13827,
+ "id": 14296,
"properties": {
"east": "tall",
"north": "tall",
@@ -30719,7 +30719,7 @@
}
},
{
- "id": 13828,
+ "id": 14297,
"properties": {
"east": "tall",
"north": "tall",
@@ -30730,7 +30730,7 @@
}
},
{
- "id": 13829,
+ "id": 14298,
"properties": {
"east": "tall",
"north": "tall",
@@ -30741,7 +30741,7 @@
}
},
{
- "id": 13830,
+ "id": 14299,
"properties": {
"east": "tall",
"north": "tall",
@@ -30752,7 +30752,7 @@
}
},
{
- "id": 13831,
+ "id": 14300,
"properties": {
"east": "tall",
"north": "tall",
@@ -30763,7 +30763,7 @@
}
},
{
- "id": 13832,
+ "id": 14301,
"properties": {
"east": "tall",
"north": "tall",
@@ -30774,7 +30774,7 @@
}
},
{
- "id": 13833,
+ "id": 14302,
"properties": {
"east": "tall",
"north": "tall",
@@ -30785,7 +30785,7 @@
}
},
{
- "id": 13834,
+ "id": 14303,
"properties": {
"east": "tall",
"north": "tall",
@@ -30796,7 +30796,7 @@
}
},
{
- "id": 13835,
+ "id": 14304,
"properties": {
"east": "tall",
"north": "tall",
@@ -30807,7 +30807,7 @@
}
},
{
- "id": 13836,
+ "id": 14305,
"properties": {
"east": "tall",
"north": "tall",
@@ -30818,7 +30818,7 @@
}
},
{
- "id": 13837,
+ "id": 14306,
"properties": {
"east": "tall",
"north": "tall",
@@ -30829,7 +30829,7 @@
}
},
{
- "id": 13838,
+ "id": 14307,
"properties": {
"east": "tall",
"north": "tall",
@@ -30840,7 +30840,7 @@
}
},
{
- "id": 13839,
+ "id": 14308,
"properties": {
"east": "tall",
"north": "tall",
@@ -30851,7 +30851,7 @@
}
},
{
- "id": 13840,
+ "id": 14309,
"properties": {
"east": "tall",
"north": "tall",
@@ -30862,7 +30862,7 @@
}
},
{
- "id": 13841,
+ "id": 14310,
"properties": {
"east": "tall",
"north": "tall",
@@ -30873,7 +30873,7 @@
}
},
{
- "id": 13842,
+ "id": 14311,
"properties": {
"east": "tall",
"north": "tall",
@@ -30884,7 +30884,7 @@
}
},
{
- "id": 13843,
+ "id": 14312,
"properties": {
"east": "tall",
"north": "tall",
@@ -30895,7 +30895,7 @@
}
},
{
- "id": 13844,
+ "id": 14313,
"properties": {
"east": "tall",
"north": "tall",
@@ -30906,7 +30906,7 @@
}
},
{
- "id": 13845,
+ "id": 14314,
"properties": {
"east": "tall",
"north": "tall",
@@ -30917,7 +30917,7 @@
}
},
{
- "id": 13846,
+ "id": 14315,
"properties": {
"east": "tall",
"north": "tall",
@@ -30928,7 +30928,7 @@
}
},
{
- "id": 13847,
+ "id": 14316,
"properties": {
"east": "tall",
"north": "tall",
@@ -30939,7 +30939,7 @@
}
},
{
- "id": 13848,
+ "id": 14317,
"properties": {
"east": "tall",
"north": "tall",
@@ -30950,7 +30950,7 @@
}
},
{
- "id": 13849,
+ "id": 14318,
"properties": {
"east": "tall",
"north": "tall",
@@ -30961,7 +30961,7 @@
}
},
{
- "id": 13850,
+ "id": 14319,
"properties": {
"east": "tall",
"north": "tall",
@@ -30972,7 +30972,7 @@
}
},
{
- "id": 13851,
+ "id": 14320,
"properties": {
"east": "tall",
"north": "tall",
@@ -30983,7 +30983,7 @@
}
},
{
- "id": 13852,
+ "id": 14321,
"properties": {
"east": "tall",
"north": "tall",
@@ -30994,7 +30994,7 @@
}
},
{
- "id": 13853,
+ "id": 14322,
"properties": {
"east": "tall",
"north": "tall",
@@ -31005,7 +31005,7 @@
}
},
{
- "id": 13854,
+ "id": 14323,
"properties": {
"east": "tall",
"north": "tall",
@@ -31016,7 +31016,7 @@
}
},
{
- "id": 13855,
+ "id": 14324,
"properties": {
"east": "tall",
"north": "tall",
@@ -31032,7 +31032,7 @@
"states": [
{
"default": true,
- "id": 2041
+ "id": 2089
}
]
},
@@ -31060,97 +31060,97 @@
"states": [
{
"default": true,
- "id": 10474,
+ "id": 10806,
"properties": {
"rotation": "0"
}
},
{
- "id": 10475,
+ "id": 10807,
"properties": {
"rotation": "1"
}
},
{
- "id": 10476,
+ "id": 10808,
"properties": {
"rotation": "2"
}
},
{
- "id": 10477,
+ "id": 10809,
"properties": {
"rotation": "3"
}
},
{
- "id": 10478,
+ "id": 10810,
"properties": {
"rotation": "4"
}
},
{
- "id": 10479,
+ "id": 10811,
"properties": {
"rotation": "5"
}
},
{
- "id": 10480,
+ "id": 10812,
"properties": {
"rotation": "6"
}
},
{
- "id": 10481,
+ "id": 10813,
"properties": {
"rotation": "7"
}
},
{
- "id": 10482,
+ "id": 10814,
"properties": {
"rotation": "8"
}
},
{
- "id": 10483,
+ "id": 10815,
"properties": {
"rotation": "9"
}
},
{
- "id": 10484,
+ "id": 10816,
"properties": {
"rotation": "10"
}
},
{
- "id": 10485,
+ "id": 10817,
"properties": {
"rotation": "11"
}
},
{
- "id": 10486,
+ "id": 10818,
"properties": {
"rotation": "12"
}
},
{
- "id": 10487,
+ "id": 10819,
"properties": {
"rotation": "13"
}
},
{
- "id": 10488,
+ "id": 10820,
"properties": {
"rotation": "14"
}
},
{
- "id": 10489,
+ "id": 10821,
"properties": {
"rotation": "15"
}
@@ -31176,7 +31176,7 @@
},
"states": [
{
- "id": 1829,
+ "id": 1876,
"properties": {
"facing": "north",
"occupied": "true",
@@ -31184,7 +31184,7 @@
}
},
{
- "id": 1830,
+ "id": 1877,
"properties": {
"facing": "north",
"occupied": "true",
@@ -31192,7 +31192,7 @@
}
},
{
- "id": 1831,
+ "id": 1878,
"properties": {
"facing": "north",
"occupied": "false",
@@ -31201,7 +31201,7 @@
},
{
"default": true,
- "id": 1832,
+ "id": 1879,
"properties": {
"facing": "north",
"occupied": "false",
@@ -31209,7 +31209,7 @@
}
},
{
- "id": 1833,
+ "id": 1880,
"properties": {
"facing": "south",
"occupied": "true",
@@ -31217,7 +31217,7 @@
}
},
{
- "id": 1834,
+ "id": 1881,
"properties": {
"facing": "south",
"occupied": "true",
@@ -31225,7 +31225,7 @@
}
},
{
- "id": 1835,
+ "id": 1882,
"properties": {
"facing": "south",
"occupied": "false",
@@ -31233,7 +31233,7 @@
}
},
{
- "id": 1836,
+ "id": 1883,
"properties": {
"facing": "south",
"occupied": "false",
@@ -31241,7 +31241,7 @@
}
},
{
- "id": 1837,
+ "id": 1884,
"properties": {
"facing": "west",
"occupied": "true",
@@ -31249,7 +31249,7 @@
}
},
{
- "id": 1838,
+ "id": 1885,
"properties": {
"facing": "west",
"occupied": "true",
@@ -31257,7 +31257,7 @@
}
},
{
- "id": 1839,
+ "id": 1886,
"properties": {
"facing": "west",
"occupied": "false",
@@ -31265,7 +31265,7 @@
}
},
{
- "id": 1840,
+ "id": 1887,
"properties": {
"facing": "west",
"occupied": "false",
@@ -31273,7 +31273,7 @@
}
},
{
- "id": 1841,
+ "id": 1888,
"properties": {
"facing": "east",
"occupied": "true",
@@ -31281,7 +31281,7 @@
}
},
{
- "id": 1842,
+ "id": 1889,
"properties": {
"facing": "east",
"occupied": "true",
@@ -31289,7 +31289,7 @@
}
},
{
- "id": 1843,
+ "id": 1890,
"properties": {
"facing": "east",
"occupied": "false",
@@ -31297,7 +31297,7 @@
}
},
{
- "id": 1844,
+ "id": 1891,
"properties": {
"facing": "east",
"occupied": "false",
@@ -31325,7 +31325,7 @@
},
"states": [
{
- "id": 20305,
+ "id": 20774,
"properties": {
"candles": "1",
"lit": "true",
@@ -31333,7 +31333,7 @@
}
},
{
- "id": 20306,
+ "id": 20775,
"properties": {
"candles": "1",
"lit": "true",
@@ -31341,7 +31341,7 @@
}
},
{
- "id": 20307,
+ "id": 20776,
"properties": {
"candles": "1",
"lit": "false",
@@ -31350,7 +31350,7 @@
},
{
"default": true,
- "id": 20308,
+ "id": 20777,
"properties": {
"candles": "1",
"lit": "false",
@@ -31358,7 +31358,7 @@
}
},
{
- "id": 20309,
+ "id": 20778,
"properties": {
"candles": "2",
"lit": "true",
@@ -31366,7 +31366,7 @@
}
},
{
- "id": 20310,
+ "id": 20779,
"properties": {
"candles": "2",
"lit": "true",
@@ -31374,7 +31374,7 @@
}
},
{
- "id": 20311,
+ "id": 20780,
"properties": {
"candles": "2",
"lit": "false",
@@ -31382,7 +31382,7 @@
}
},
{
- "id": 20312,
+ "id": 20781,
"properties": {
"candles": "2",
"lit": "false",
@@ -31390,7 +31390,7 @@
}
},
{
- "id": 20313,
+ "id": 20782,
"properties": {
"candles": "3",
"lit": "true",
@@ -31398,7 +31398,7 @@
}
},
{
- "id": 20314,
+ "id": 20783,
"properties": {
"candles": "3",
"lit": "true",
@@ -31406,7 +31406,7 @@
}
},
{
- "id": 20315,
+ "id": 20784,
"properties": {
"candles": "3",
"lit": "false",
@@ -31414,7 +31414,7 @@
}
},
{
- "id": 20316,
+ "id": 20785,
"properties": {
"candles": "3",
"lit": "false",
@@ -31422,7 +31422,7 @@
}
},
{
- "id": 20317,
+ "id": 20786,
"properties": {
"candles": "4",
"lit": "true",
@@ -31430,7 +31430,7 @@
}
},
{
- "id": 20318,
+ "id": 20787,
"properties": {
"candles": "4",
"lit": "true",
@@ -31438,7 +31438,7 @@
}
},
{
- "id": 20319,
+ "id": 20788,
"properties": {
"candles": "4",
"lit": "false",
@@ -31446,7 +31446,7 @@
}
},
{
- "id": 20320,
+ "id": 20789,
"properties": {
"candles": "4",
"lit": "false",
@@ -31464,14 +31464,14 @@
},
"states": [
{
- "id": 20395,
+ "id": 20864,
"properties": {
"lit": "true"
}
},
{
"default": true,
- "id": 20396,
+ "id": 20865,
"properties": {
"lit": "false"
}
@@ -31482,7 +31482,7 @@
"states": [
{
"default": true,
- "id": 10263
+ "id": 10595
}
]
},
@@ -31490,7 +31490,7 @@
"states": [
{
"default": true,
- "id": 12115
+ "id": 12584
}
]
},
@@ -31498,7 +31498,7 @@
"states": [
{
"default": true,
- "id": 12131
+ "id": 12600
}
]
},
@@ -31514,25 +31514,25 @@
"states": [
{
"default": true,
- "id": 12087,
+ "id": 12556,
"properties": {
"facing": "north"
}
},
{
- "id": 12088,
+ "id": 12557,
"properties": {
"facing": "south"
}
},
{
- "id": 12089,
+ "id": 12558,
"properties": {
"facing": "west"
}
},
{
- "id": 12090,
+ "id": 12559,
"properties": {
"facing": "east"
}
@@ -31543,7 +31543,7 @@
"states": [
{
"default": true,
- "id": 2037
+ "id": 2085
}
]
},
@@ -31577,7 +31577,7 @@
"states": [
{
"default": true,
- "id": 6320,
+ "id": 6546,
"properties": {
"down": "true",
"east": "true",
@@ -31588,7 +31588,7 @@
}
},
{
- "id": 6321,
+ "id": 6547,
"properties": {
"down": "true",
"east": "true",
@@ -31599,7 +31599,7 @@
}
},
{
- "id": 6322,
+ "id": 6548,
"properties": {
"down": "true",
"east": "true",
@@ -31610,7 +31610,7 @@
}
},
{
- "id": 6323,
+ "id": 6549,
"properties": {
"down": "true",
"east": "true",
@@ -31621,7 +31621,7 @@
}
},
{
- "id": 6324,
+ "id": 6550,
"properties": {
"down": "true",
"east": "true",
@@ -31632,7 +31632,7 @@
}
},
{
- "id": 6325,
+ "id": 6551,
"properties": {
"down": "true",
"east": "true",
@@ -31643,7 +31643,7 @@
}
},
{
- "id": 6326,
+ "id": 6552,
"properties": {
"down": "true",
"east": "true",
@@ -31654,7 +31654,7 @@
}
},
{
- "id": 6327,
+ "id": 6553,
"properties": {
"down": "true",
"east": "true",
@@ -31665,7 +31665,7 @@
}
},
{
- "id": 6328,
+ "id": 6554,
"properties": {
"down": "true",
"east": "true",
@@ -31676,7 +31676,7 @@
}
},
{
- "id": 6329,
+ "id": 6555,
"properties": {
"down": "true",
"east": "true",
@@ -31687,7 +31687,7 @@
}
},
{
- "id": 6330,
+ "id": 6556,
"properties": {
"down": "true",
"east": "true",
@@ -31698,7 +31698,7 @@
}
},
{
- "id": 6331,
+ "id": 6557,
"properties": {
"down": "true",
"east": "true",
@@ -31709,7 +31709,7 @@
}
},
{
- "id": 6332,
+ "id": 6558,
"properties": {
"down": "true",
"east": "true",
@@ -31720,7 +31720,7 @@
}
},
{
- "id": 6333,
+ "id": 6559,
"properties": {
"down": "true",
"east": "true",
@@ -31731,7 +31731,7 @@
}
},
{
- "id": 6334,
+ "id": 6560,
"properties": {
"down": "true",
"east": "true",
@@ -31742,7 +31742,7 @@
}
},
{
- "id": 6335,
+ "id": 6561,
"properties": {
"down": "true",
"east": "true",
@@ -31753,7 +31753,7 @@
}
},
{
- "id": 6336,
+ "id": 6562,
"properties": {
"down": "true",
"east": "false",
@@ -31764,7 +31764,7 @@
}
},
{
- "id": 6337,
+ "id": 6563,
"properties": {
"down": "true",
"east": "false",
@@ -31775,7 +31775,7 @@
}
},
{
- "id": 6338,
+ "id": 6564,
"properties": {
"down": "true",
"east": "false",
@@ -31786,7 +31786,7 @@
}
},
{
- "id": 6339,
+ "id": 6565,
"properties": {
"down": "true",
"east": "false",
@@ -31797,7 +31797,7 @@
}
},
{
- "id": 6340,
+ "id": 6566,
"properties": {
"down": "true",
"east": "false",
@@ -31808,7 +31808,7 @@
}
},
{
- "id": 6341,
+ "id": 6567,
"properties": {
"down": "true",
"east": "false",
@@ -31819,7 +31819,7 @@
}
},
{
- "id": 6342,
+ "id": 6568,
"properties": {
"down": "true",
"east": "false",
@@ -31830,7 +31830,7 @@
}
},
{
- "id": 6343,
+ "id": 6569,
"properties": {
"down": "true",
"east": "false",
@@ -31841,7 +31841,7 @@
}
},
{
- "id": 6344,
+ "id": 6570,
"properties": {
"down": "true",
"east": "false",
@@ -31852,7 +31852,7 @@
}
},
{
- "id": 6345,
+ "id": 6571,
"properties": {
"down": "true",
"east": "false",
@@ -31863,7 +31863,7 @@
}
},
{
- "id": 6346,
+ "id": 6572,
"properties": {
"down": "true",
"east": "false",
@@ -31874,7 +31874,7 @@
}
},
{
- "id": 6347,
+ "id": 6573,
"properties": {
"down": "true",
"east": "false",
@@ -31885,7 +31885,7 @@
}
},
{
- "id": 6348,
+ "id": 6574,
"properties": {
"down": "true",
"east": "false",
@@ -31896,7 +31896,7 @@
}
},
{
- "id": 6349,
+ "id": 6575,
"properties": {
"down": "true",
"east": "false",
@@ -31907,7 +31907,7 @@
}
},
{
- "id": 6350,
+ "id": 6576,
"properties": {
"down": "true",
"east": "false",
@@ -31918,7 +31918,7 @@
}
},
{
- "id": 6351,
+ "id": 6577,
"properties": {
"down": "true",
"east": "false",
@@ -31929,7 +31929,7 @@
}
},
{
- "id": 6352,
+ "id": 6578,
"properties": {
"down": "false",
"east": "true",
@@ -31940,7 +31940,7 @@
}
},
{
- "id": 6353,
+ "id": 6579,
"properties": {
"down": "false",
"east": "true",
@@ -31951,7 +31951,7 @@
}
},
{
- "id": 6354,
+ "id": 6580,
"properties": {
"down": "false",
"east": "true",
@@ -31962,7 +31962,7 @@
}
},
{
- "id": 6355,
+ "id": 6581,
"properties": {
"down": "false",
"east": "true",
@@ -31973,7 +31973,7 @@
}
},
{
- "id": 6356,
+ "id": 6582,
"properties": {
"down": "false",
"east": "true",
@@ -31984,7 +31984,7 @@
}
},
{
- "id": 6357,
+ "id": 6583,
"properties": {
"down": "false",
"east": "true",
@@ -31995,7 +31995,7 @@
}
},
{
- "id": 6358,
+ "id": 6584,
"properties": {
"down": "false",
"east": "true",
@@ -32006,7 +32006,7 @@
}
},
{
- "id": 6359,
+ "id": 6585,
"properties": {
"down": "false",
"east": "true",
@@ -32017,7 +32017,7 @@
}
},
{
- "id": 6360,
+ "id": 6586,
"properties": {
"down": "false",
"east": "true",
@@ -32028,7 +32028,7 @@
}
},
{
- "id": 6361,
+ "id": 6587,
"properties": {
"down": "false",
"east": "true",
@@ -32039,7 +32039,7 @@
}
},
{
- "id": 6362,
+ "id": 6588,
"properties": {
"down": "false",
"east": "true",
@@ -32050,7 +32050,7 @@
}
},
{
- "id": 6363,
+ "id": 6589,
"properties": {
"down": "false",
"east": "true",
@@ -32061,7 +32061,7 @@
}
},
{
- "id": 6364,
+ "id": 6590,
"properties": {
"down": "false",
"east": "true",
@@ -32072,7 +32072,7 @@
}
},
{
- "id": 6365,
+ "id": 6591,
"properties": {
"down": "false",
"east": "true",
@@ -32083,7 +32083,7 @@
}
},
{
- "id": 6366,
+ "id": 6592,
"properties": {
"down": "false",
"east": "true",
@@ -32094,7 +32094,7 @@
}
},
{
- "id": 6367,
+ "id": 6593,
"properties": {
"down": "false",
"east": "true",
@@ -32105,7 +32105,7 @@
}
},
{
- "id": 6368,
+ "id": 6594,
"properties": {
"down": "false",
"east": "false",
@@ -32116,7 +32116,7 @@
}
},
{
- "id": 6369,
+ "id": 6595,
"properties": {
"down": "false",
"east": "false",
@@ -32127,7 +32127,7 @@
}
},
{
- "id": 6370,
+ "id": 6596,
"properties": {
"down": "false",
"east": "false",
@@ -32138,7 +32138,7 @@
}
},
{
- "id": 6371,
+ "id": 6597,
"properties": {
"down": "false",
"east": "false",
@@ -32149,7 +32149,7 @@
}
},
{
- "id": 6372,
+ "id": 6598,
"properties": {
"down": "false",
"east": "false",
@@ -32160,7 +32160,7 @@
}
},
{
- "id": 6373,
+ "id": 6599,
"properties": {
"down": "false",
"east": "false",
@@ -32171,7 +32171,7 @@
}
},
{
- "id": 6374,
+ "id": 6600,
"properties": {
"down": "false",
"east": "false",
@@ -32182,7 +32182,7 @@
}
},
{
- "id": 6375,
+ "id": 6601,
"properties": {
"down": "false",
"east": "false",
@@ -32193,7 +32193,7 @@
}
},
{
- "id": 6376,
+ "id": 6602,
"properties": {
"down": "false",
"east": "false",
@@ -32204,7 +32204,7 @@
}
},
{
- "id": 6377,
+ "id": 6603,
"properties": {
"down": "false",
"east": "false",
@@ -32215,7 +32215,7 @@
}
},
{
- "id": 6378,
+ "id": 6604,
"properties": {
"down": "false",
"east": "false",
@@ -32226,7 +32226,7 @@
}
},
{
- "id": 6379,
+ "id": 6605,
"properties": {
"down": "false",
"east": "false",
@@ -32237,7 +32237,7 @@
}
},
{
- "id": 6380,
+ "id": 6606,
"properties": {
"down": "false",
"east": "false",
@@ -32248,7 +32248,7 @@
}
},
{
- "id": 6381,
+ "id": 6607,
"properties": {
"down": "false",
"east": "false",
@@ -32259,7 +32259,7 @@
}
},
{
- "id": 6382,
+ "id": 6608,
"properties": {
"down": "false",
"east": "false",
@@ -32270,7 +32270,7 @@
}
},
{
- "id": 6383,
+ "id": 6609,
"properties": {
"down": "false",
"east": "false",
@@ -32295,38 +32295,38 @@
},
"states": [
{
- "id": 12015,
+ "id": 12484,
"properties": {
"facing": "north"
}
},
{
- "id": 12016,
+ "id": 12485,
"properties": {
"facing": "east"
}
},
{
- "id": 12017,
+ "id": 12486,
"properties": {
"facing": "south"
}
},
{
- "id": 12018,
+ "id": 12487,
"properties": {
"facing": "west"
}
},
{
"default": true,
- "id": 12019,
+ "id": 12488,
"properties": {
"facing": "up"
}
},
{
- "id": 12020,
+ "id": 12489,
"properties": {
"facing": "down"
}
@@ -32337,7 +32337,7 @@
"states": [
{
"default": true,
- "id": 5792
+ "id": 5954
}
]
},
@@ -32366,7 +32366,7 @@
},
"states": [
{
- "id": 9360,
+ "id": 9612,
"properties": {
"east": "true",
"north": "true",
@@ -32376,7 +32376,7 @@
}
},
{
- "id": 9361,
+ "id": 9613,
"properties": {
"east": "true",
"north": "true",
@@ -32386,7 +32386,7 @@
}
},
{
- "id": 9362,
+ "id": 9614,
"properties": {
"east": "true",
"north": "true",
@@ -32396,7 +32396,7 @@
}
},
{
- "id": 9363,
+ "id": 9615,
"properties": {
"east": "true",
"north": "true",
@@ -32406,7 +32406,7 @@
}
},
{
- "id": 9364,
+ "id": 9616,
"properties": {
"east": "true",
"north": "true",
@@ -32416,7 +32416,7 @@
}
},
{
- "id": 9365,
+ "id": 9617,
"properties": {
"east": "true",
"north": "true",
@@ -32426,7 +32426,7 @@
}
},
{
- "id": 9366,
+ "id": 9618,
"properties": {
"east": "true",
"north": "true",
@@ -32436,7 +32436,7 @@
}
},
{
- "id": 9367,
+ "id": 9619,
"properties": {
"east": "true",
"north": "true",
@@ -32446,7 +32446,7 @@
}
},
{
- "id": 9368,
+ "id": 9620,
"properties": {
"east": "true",
"north": "false",
@@ -32456,7 +32456,7 @@
}
},
{
- "id": 9369,
+ "id": 9621,
"properties": {
"east": "true",
"north": "false",
@@ -32466,7 +32466,7 @@
}
},
{
- "id": 9370,
+ "id": 9622,
"properties": {
"east": "true",
"north": "false",
@@ -32476,7 +32476,7 @@
}
},
{
- "id": 9371,
+ "id": 9623,
"properties": {
"east": "true",
"north": "false",
@@ -32486,7 +32486,7 @@
}
},
{
- "id": 9372,
+ "id": 9624,
"properties": {
"east": "true",
"north": "false",
@@ -32496,7 +32496,7 @@
}
},
{
- "id": 9373,
+ "id": 9625,
"properties": {
"east": "true",
"north": "false",
@@ -32506,7 +32506,7 @@
}
},
{
- "id": 9374,
+ "id": 9626,
"properties": {
"east": "true",
"north": "false",
@@ -32516,7 +32516,7 @@
}
},
{
- "id": 9375,
+ "id": 9627,
"properties": {
"east": "true",
"north": "false",
@@ -32526,7 +32526,7 @@
}
},
{
- "id": 9376,
+ "id": 9628,
"properties": {
"east": "false",
"north": "true",
@@ -32536,7 +32536,7 @@
}
},
{
- "id": 9377,
+ "id": 9629,
"properties": {
"east": "false",
"north": "true",
@@ -32546,7 +32546,7 @@
}
},
{
- "id": 9378,
+ "id": 9630,
"properties": {
"east": "false",
"north": "true",
@@ -32556,7 +32556,7 @@
}
},
{
- "id": 9379,
+ "id": 9631,
"properties": {
"east": "false",
"north": "true",
@@ -32566,7 +32566,7 @@
}
},
{
- "id": 9380,
+ "id": 9632,
"properties": {
"east": "false",
"north": "true",
@@ -32576,7 +32576,7 @@
}
},
{
- "id": 9381,
+ "id": 9633,
"properties": {
"east": "false",
"north": "true",
@@ -32586,7 +32586,7 @@
}
},
{
- "id": 9382,
+ "id": 9634,
"properties": {
"east": "false",
"north": "true",
@@ -32596,7 +32596,7 @@
}
},
{
- "id": 9383,
+ "id": 9635,
"properties": {
"east": "false",
"north": "true",
@@ -32606,7 +32606,7 @@
}
},
{
- "id": 9384,
+ "id": 9636,
"properties": {
"east": "false",
"north": "false",
@@ -32616,7 +32616,7 @@
}
},
{
- "id": 9385,
+ "id": 9637,
"properties": {
"east": "false",
"north": "false",
@@ -32626,7 +32626,7 @@
}
},
{
- "id": 9386,
+ "id": 9638,
"properties": {
"east": "false",
"north": "false",
@@ -32636,7 +32636,7 @@
}
},
{
- "id": 9387,
+ "id": 9639,
"properties": {
"east": "false",
"north": "false",
@@ -32646,7 +32646,7 @@
}
},
{
- "id": 9388,
+ "id": 9640,
"properties": {
"east": "false",
"north": "false",
@@ -32656,7 +32656,7 @@
}
},
{
- "id": 9389,
+ "id": 9641,
"properties": {
"east": "false",
"north": "false",
@@ -32666,7 +32666,7 @@
}
},
{
- "id": 9390,
+ "id": 9642,
"properties": {
"east": "false",
"north": "false",
@@ -32677,7 +32677,7 @@
},
{
"default": true,
- "id": 9391,
+ "id": 9643,
"properties": {
"east": "false",
"north": "false",
@@ -32692,7 +32692,7 @@
"states": [
{
"default": true,
- "id": 8972
+ "id": 9224
}
]
},
@@ -32708,25 +32708,25 @@
"states": [
{
"default": true,
- "id": 10586,
+ "id": 10918,
"properties": {
"facing": "north"
}
},
{
- "id": 10587,
+ "id": 10919,
"properties": {
"facing": "south"
}
},
{
- "id": 10588,
+ "id": 10920,
"properties": {
"facing": "west"
}
},
{
- "id": 10589,
+ "id": 10921,
"properties": {
"facing": "east"
}
@@ -32737,7 +32737,7 @@
"states": [
{
"default": true,
- "id": 2008
+ "id": 2055
}
]
},
@@ -32751,13 +32751,13 @@
"states": [
{
"default": true,
- "id": 12332,
+ "id": 12801,
"properties": {
"drag": "true"
}
},
{
- "id": 12333,
+ "id": 12802,
"properties": {
"drag": "false"
}
@@ -32774,13 +32774,13 @@
"states": [
{
"default": true,
- "id": 12199,
+ "id": 12668,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12200,
+ "id": 12669,
"properties": {
"waterlogged": "false"
}
@@ -32791,7 +32791,7 @@
"states": [
{
"default": true,
- "id": 12182
+ "id": 12651
}
]
},
@@ -32805,13 +32805,13 @@
"states": [
{
"default": true,
- "id": 12219,
+ "id": 12688,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12220,
+ "id": 12689,
"properties": {
"waterlogged": "false"
}
@@ -32834,56 +32834,56 @@
"states": [
{
"default": true,
- "id": 12281,
+ "id": 12750,
"properties": {
"facing": "north",
"waterlogged": "true"
}
},
{
- "id": 12282,
+ "id": 12751,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 12283,
+ "id": 12752,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 12284,
+ "id": 12753,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 12285,
+ "id": 12754,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 12286,
+ "id": 12755,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 12287,
+ "id": 12756,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 12288,
+ "id": 12757,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -32895,7 +32895,7 @@
"states": [
{
"default": true,
- "id": 20404
+ "id": 20873
}
]
},
@@ -32923,97 +32923,97 @@
"states": [
{
"default": true,
- "id": 5616,
+ "id": 5778,
"properties": {
"age": "0"
}
},
{
- "id": 5617,
+ "id": 5779,
"properties": {
"age": "1"
}
},
{
- "id": 5618,
+ "id": 5780,
"properties": {
"age": "2"
}
},
{
- "id": 5619,
+ "id": 5781,
"properties": {
"age": "3"
}
},
{
- "id": 5620,
+ "id": 5782,
"properties": {
"age": "4"
}
},
{
- "id": 5621,
+ "id": 5783,
"properties": {
"age": "5"
}
},
{
- "id": 5622,
+ "id": 5784,
"properties": {
"age": "6"
}
},
{
- "id": 5623,
+ "id": 5785,
"properties": {
"age": "7"
}
},
{
- "id": 5624,
+ "id": 5786,
"properties": {
"age": "8"
}
},
{
- "id": 5625,
+ "id": 5787,
"properties": {
"age": "9"
}
},
{
- "id": 5626,
+ "id": 5788,
"properties": {
"age": "10"
}
},
{
- "id": 5627,
+ "id": 5789,
"properties": {
"age": "11"
}
},
{
- "id": 5628,
+ "id": 5790,
"properties": {
"age": "12"
}
},
{
- "id": 5629,
+ "id": 5791,
"properties": {
"age": "13"
}
},
{
- "id": 5630,
+ "id": 5792,
"properties": {
"age": "14"
}
},
{
- "id": 5631,
+ "id": 5793,
"properties": {
"age": "15"
}
@@ -33035,43 +33035,43 @@
"states": [
{
"default": true,
- "id": 5709,
+ "id": 5871,
"properties": {
"bites": "0"
}
},
{
- "id": 5710,
+ "id": 5872,
"properties": {
"bites": "1"
}
},
{
- "id": 5711,
+ "id": 5873,
"properties": {
"bites": "2"
}
},
{
- "id": 5712,
+ "id": 5874,
"properties": {
"bites": "3"
}
},
{
- "id": 5713,
+ "id": 5875,
"properties": {
"bites": "4"
}
},
{
- "id": 5714,
+ "id": 5876,
"properties": {
"bites": "5"
}
},
{
- "id": 5715,
+ "id": 5877,
"properties": {
"bites": "6"
}
@@ -33082,7 +33082,7 @@
"states": [
{
"default": true,
- "id": 20454
+ "id": 20923
}
]
},
@@ -33109,7 +33109,7 @@
},
"states": [
{
- "id": 17883,
+ "id": 18352,
"properties": {
"facing": "north",
"lit": "true",
@@ -33118,7 +33118,7 @@
}
},
{
- "id": 17884,
+ "id": 18353,
"properties": {
"facing": "north",
"lit": "true",
@@ -33127,7 +33127,7 @@
}
},
{
- "id": 17885,
+ "id": 18354,
"properties": {
"facing": "north",
"lit": "true",
@@ -33137,7 +33137,7 @@
},
{
"default": true,
- "id": 17886,
+ "id": 18355,
"properties": {
"facing": "north",
"lit": "true",
@@ -33146,7 +33146,7 @@
}
},
{
- "id": 17887,
+ "id": 18356,
"properties": {
"facing": "north",
"lit": "false",
@@ -33155,7 +33155,7 @@
}
},
{
- "id": 17888,
+ "id": 18357,
"properties": {
"facing": "north",
"lit": "false",
@@ -33164,7 +33164,7 @@
}
},
{
- "id": 17889,
+ "id": 18358,
"properties": {
"facing": "north",
"lit": "false",
@@ -33173,7 +33173,7 @@
}
},
{
- "id": 17890,
+ "id": 18359,
"properties": {
"facing": "north",
"lit": "false",
@@ -33182,7 +33182,7 @@
}
},
{
- "id": 17891,
+ "id": 18360,
"properties": {
"facing": "south",
"lit": "true",
@@ -33191,7 +33191,7 @@
}
},
{
- "id": 17892,
+ "id": 18361,
"properties": {
"facing": "south",
"lit": "true",
@@ -33200,7 +33200,7 @@
}
},
{
- "id": 17893,
+ "id": 18362,
"properties": {
"facing": "south",
"lit": "true",
@@ -33209,7 +33209,7 @@
}
},
{
- "id": 17894,
+ "id": 18363,
"properties": {
"facing": "south",
"lit": "true",
@@ -33218,7 +33218,7 @@
}
},
{
- "id": 17895,
+ "id": 18364,
"properties": {
"facing": "south",
"lit": "false",
@@ -33227,7 +33227,7 @@
}
},
{
- "id": 17896,
+ "id": 18365,
"properties": {
"facing": "south",
"lit": "false",
@@ -33236,7 +33236,7 @@
}
},
{
- "id": 17897,
+ "id": 18366,
"properties": {
"facing": "south",
"lit": "false",
@@ -33245,7 +33245,7 @@
}
},
{
- "id": 17898,
+ "id": 18367,
"properties": {
"facing": "south",
"lit": "false",
@@ -33254,7 +33254,7 @@
}
},
{
- "id": 17899,
+ "id": 18368,
"properties": {
"facing": "west",
"lit": "true",
@@ -33263,7 +33263,7 @@
}
},
{
- "id": 17900,
+ "id": 18369,
"properties": {
"facing": "west",
"lit": "true",
@@ -33272,7 +33272,7 @@
}
},
{
- "id": 17901,
+ "id": 18370,
"properties": {
"facing": "west",
"lit": "true",
@@ -33281,7 +33281,7 @@
}
},
{
- "id": 17902,
+ "id": 18371,
"properties": {
"facing": "west",
"lit": "true",
@@ -33290,7 +33290,7 @@
}
},
{
- "id": 17903,
+ "id": 18372,
"properties": {
"facing": "west",
"lit": "false",
@@ -33299,7 +33299,7 @@
}
},
{
- "id": 17904,
+ "id": 18373,
"properties": {
"facing": "west",
"lit": "false",
@@ -33308,7 +33308,7 @@
}
},
{
- "id": 17905,
+ "id": 18374,
"properties": {
"facing": "west",
"lit": "false",
@@ -33317,7 +33317,7 @@
}
},
{
- "id": 17906,
+ "id": 18375,
"properties": {
"facing": "west",
"lit": "false",
@@ -33326,7 +33326,7 @@
}
},
{
- "id": 17907,
+ "id": 18376,
"properties": {
"facing": "east",
"lit": "true",
@@ -33335,7 +33335,7 @@
}
},
{
- "id": 17908,
+ "id": 18377,
"properties": {
"facing": "east",
"lit": "true",
@@ -33344,7 +33344,7 @@
}
},
{
- "id": 17909,
+ "id": 18378,
"properties": {
"facing": "east",
"lit": "true",
@@ -33353,7 +33353,7 @@
}
},
{
- "id": 17910,
+ "id": 18379,
"properties": {
"facing": "east",
"lit": "true",
@@ -33362,7 +33362,7 @@
}
},
{
- "id": 17911,
+ "id": 18380,
"properties": {
"facing": "east",
"lit": "false",
@@ -33371,7 +33371,7 @@
}
},
{
- "id": 17912,
+ "id": 18381,
"properties": {
"facing": "east",
"lit": "false",
@@ -33380,7 +33380,7 @@
}
},
{
- "id": 17913,
+ "id": 18382,
"properties": {
"facing": "east",
"lit": "false",
@@ -33389,7 +33389,7 @@
}
},
{
- "id": 17914,
+ "id": 18383,
"properties": {
"facing": "east",
"lit": "false",
@@ -33418,7 +33418,7 @@
},
"states": [
{
- "id": 20097,
+ "id": 20566,
"properties": {
"candles": "1",
"lit": "true",
@@ -33426,7 +33426,7 @@
}
},
{
- "id": 20098,
+ "id": 20567,
"properties": {
"candles": "1",
"lit": "true",
@@ -33434,7 +33434,7 @@
}
},
{
- "id": 20099,
+ "id": 20568,
"properties": {
"candles": "1",
"lit": "false",
@@ -33443,7 +33443,7 @@
},
{
"default": true,
- "id": 20100,
+ "id": 20569,
"properties": {
"candles": "1",
"lit": "false",
@@ -33451,7 +33451,7 @@
}
},
{
- "id": 20101,
+ "id": 20570,
"properties": {
"candles": "2",
"lit": "true",
@@ -33459,7 +33459,7 @@
}
},
{
- "id": 20102,
+ "id": 20571,
"properties": {
"candles": "2",
"lit": "true",
@@ -33467,7 +33467,7 @@
}
},
{
- "id": 20103,
+ "id": 20572,
"properties": {
"candles": "2",
"lit": "false",
@@ -33475,7 +33475,7 @@
}
},
{
- "id": 20104,
+ "id": 20573,
"properties": {
"candles": "2",
"lit": "false",
@@ -33483,7 +33483,7 @@
}
},
{
- "id": 20105,
+ "id": 20574,
"properties": {
"candles": "3",
"lit": "true",
@@ -33491,7 +33491,7 @@
}
},
{
- "id": 20106,
+ "id": 20575,
"properties": {
"candles": "3",
"lit": "true",
@@ -33499,7 +33499,7 @@
}
},
{
- "id": 20107,
+ "id": 20576,
"properties": {
"candles": "3",
"lit": "false",
@@ -33507,7 +33507,7 @@
}
},
{
- "id": 20108,
+ "id": 20577,
"properties": {
"candles": "3",
"lit": "false",
@@ -33515,7 +33515,7 @@
}
},
{
- "id": 20109,
+ "id": 20578,
"properties": {
"candles": "4",
"lit": "true",
@@ -33523,7 +33523,7 @@
}
},
{
- "id": 20110,
+ "id": 20579,
"properties": {
"candles": "4",
"lit": "true",
@@ -33531,7 +33531,7 @@
}
},
{
- "id": 20111,
+ "id": 20580,
"properties": {
"candles": "4",
"lit": "false",
@@ -33539,7 +33539,7 @@
}
},
{
- "id": 20112,
+ "id": 20581,
"properties": {
"candles": "4",
"lit": "false",
@@ -33557,14 +33557,14 @@
},
"states": [
{
- "id": 20369,
+ "id": 20838,
"properties": {
"lit": "true"
}
},
{
"default": true,
- "id": 20370,
+ "id": 20839,
"properties": {
"lit": "false"
}
@@ -33587,49 +33587,49 @@
"states": [
{
"default": true,
- "id": 8363,
+ "id": 8591,
"properties": {
"age": "0"
}
},
{
- "id": 8364,
+ "id": 8592,
"properties": {
"age": "1"
}
},
{
- "id": 8365,
+ "id": 8593,
"properties": {
"age": "2"
}
},
{
- "id": 8366,
+ "id": 8594,
"properties": {
"age": "3"
}
},
{
- "id": 8367,
+ "id": 8595,
"properties": {
"age": "4"
}
},
{
- "id": 8368,
+ "id": 8596,
"properties": {
"age": "5"
}
},
{
- "id": 8369,
+ "id": 8597,
"properties": {
"age": "6"
}
},
{
- "id": 8370,
+ "id": 8598,
"properties": {
"age": "7"
}
@@ -33640,7 +33640,7 @@
"states": [
{
"default": true,
- "id": 17808
+ "id": 18277
}
]
},
@@ -33656,25 +33656,25 @@
"states": [
{
"default": true,
- "id": 5701,
+ "id": 5863,
"properties": {
"facing": "north"
}
},
{
- "id": 5702,
+ "id": 5864,
"properties": {
"facing": "south"
}
},
{
- "id": 5703,
+ "id": 5865,
"properties": {
"facing": "west"
}
},
{
- "id": 5704,
+ "id": 5866,
"properties": {
"facing": "east"
}
@@ -33685,7 +33685,7 @@
"states": [
{
"default": true,
- "id": 7168
+ "id": 7394
}
]
},
@@ -33693,7 +33693,7 @@
"states": [
{
"default": true,
- "id": 12331
+ "id": 12800
}
]
},
@@ -33734,7 +33734,7 @@
},
"states": [
{
- "id": 21443,
+ "id": 21912,
"properties": {
"age": "0",
"berries": "true"
@@ -33742,357 +33742,357 @@
},
{
"default": true,
- "id": 21444,
+ "id": 21913,
"properties": {
"age": "0",
"berries": "false"
}
},
{
- "id": 21445,
+ "id": 21914,
"properties": {
"age": "1",
"berries": "true"
}
},
{
- "id": 21446,
+ "id": 21915,
"properties": {
"age": "1",
"berries": "false"
}
},
{
- "id": 21447,
+ "id": 21916,
"properties": {
"age": "2",
"berries": "true"
}
},
{
- "id": 21448,
+ "id": 21917,
"properties": {
"age": "2",
"berries": "false"
}
},
{
- "id": 21449,
+ "id": 21918,
"properties": {
"age": "3",
"berries": "true"
}
},
{
- "id": 21450,
+ "id": 21919,
"properties": {
"age": "3",
"berries": "false"
}
},
{
- "id": 21451,
+ "id": 21920,
"properties": {
"age": "4",
"berries": "true"
}
},
{
- "id": 21452,
+ "id": 21921,
"properties": {
"age": "4",
"berries": "false"
}
},
{
- "id": 21453,
+ "id": 21922,
"properties": {
"age": "5",
"berries": "true"
}
},
{
- "id": 21454,
+ "id": 21923,
"properties": {
"age": "5",
"berries": "false"
}
},
{
- "id": 21455,
+ "id": 21924,
"properties": {
"age": "6",
"berries": "true"
}
},
{
- "id": 21456,
+ "id": 21925,
"properties": {
"age": "6",
"berries": "false"
}
},
{
- "id": 21457,
+ "id": 21926,
"properties": {
"age": "7",
"berries": "true"
}
},
{
- "id": 21458,
+ "id": 21927,
"properties": {
"age": "7",
"berries": "false"
}
},
{
- "id": 21459,
+ "id": 21928,
"properties": {
"age": "8",
"berries": "true"
}
},
{
- "id": 21460,
+ "id": 21929,
"properties": {
"age": "8",
"berries": "false"
}
},
{
- "id": 21461,
+ "id": 21930,
"properties": {
"age": "9",
"berries": "true"
}
},
{
- "id": 21462,
+ "id": 21931,
"properties": {
"age": "9",
"berries": "false"
}
},
{
- "id": 21463,
+ "id": 21932,
"properties": {
"age": "10",
"berries": "true"
}
},
{
- "id": 21464,
+ "id": 21933,
"properties": {
"age": "10",
"berries": "false"
}
},
{
- "id": 21465,
+ "id": 21934,
"properties": {
"age": "11",
"berries": "true"
}
},
{
- "id": 21466,
+ "id": 21935,
"properties": {
"age": "11",
"berries": "false"
}
},
{
- "id": 21467,
+ "id": 21936,
"properties": {
"age": "12",
"berries": "true"
}
},
{
- "id": 21468,
+ "id": 21937,
"properties": {
"age": "12",
"berries": "false"
}
},
{
- "id": 21469,
+ "id": 21938,
"properties": {
"age": "13",
"berries": "true"
}
},
{
- "id": 21470,
+ "id": 21939,
"properties": {
"age": "13",
"berries": "false"
}
},
{
- "id": 21471,
+ "id": 21940,
"properties": {
"age": "14",
"berries": "true"
}
},
{
- "id": 21472,
+ "id": 21941,
"properties": {
"age": "14",
"berries": "false"
}
},
{
- "id": 21473,
+ "id": 21942,
"properties": {
"age": "15",
"berries": "true"
}
},
{
- "id": 21474,
+ "id": 21943,
"properties": {
"age": "15",
"berries": "false"
}
},
{
- "id": 21475,
+ "id": 21944,
"properties": {
"age": "16",
"berries": "true"
}
},
{
- "id": 21476,
+ "id": 21945,
"properties": {
"age": "16",
"berries": "false"
}
},
{
- "id": 21477,
+ "id": 21946,
"properties": {
"age": "17",
"berries": "true"
}
},
{
- "id": 21478,
+ "id": 21947,
"properties": {
"age": "17",
"berries": "false"
}
},
{
- "id": 21479,
+ "id": 21948,
"properties": {
"age": "18",
"berries": "true"
}
},
{
- "id": 21480,
+ "id": 21949,
"properties": {
"age": "18",
"berries": "false"
}
},
{
- "id": 21481,
+ "id": 21950,
"properties": {
"age": "19",
"berries": "true"
}
},
{
- "id": 21482,
+ "id": 21951,
"properties": {
"age": "19",
"berries": "false"
}
},
{
- "id": 21483,
+ "id": 21952,
"properties": {
"age": "20",
"berries": "true"
}
},
{
- "id": 21484,
+ "id": 21953,
"properties": {
"age": "20",
"berries": "false"
}
},
{
- "id": 21485,
+ "id": 21954,
"properties": {
"age": "21",
"berries": "true"
}
},
{
- "id": 21486,
+ "id": 21955,
"properties": {
"age": "21",
"berries": "false"
}
},
{
- "id": 21487,
+ "id": 21956,
"properties": {
"age": "22",
"berries": "true"
}
},
{
- "id": 21488,
+ "id": 21957,
"properties": {
"age": "22",
"berries": "false"
}
},
{
- "id": 21489,
+ "id": 21958,
"properties": {
"age": "23",
"berries": "true"
}
},
{
- "id": 21490,
+ "id": 21959,
"properties": {
"age": "23",
"berries": "false"
}
},
{
- "id": 21491,
+ "id": 21960,
"properties": {
"age": "24",
"berries": "true"
}
},
{
- "id": 21492,
+ "id": 21961,
"properties": {
"age": "24",
"berries": "false"
}
},
{
- "id": 21493,
+ "id": 21962,
"properties": {
"age": "25",
"berries": "true"
}
},
{
- "id": 21494,
+ "id": 21963,
"properties": {
"age": "25",
"berries": "false"
@@ -34109,14 +34109,14 @@
},
"states": [
{
- "id": 21495,
+ "id": 21964,
"properties": {
"berries": "true"
}
},
{
"default": true,
- "id": 21496,
+ "id": 21965,
"properties": {
"berries": "false"
}
@@ -34137,21 +34137,21 @@
},
"states": [
{
- "id": 6544,
+ "id": 6770,
"properties": {
"axis": "x",
"waterlogged": "true"
}
},
{
- "id": 6545,
+ "id": 6771,
"properties": {
"axis": "x",
"waterlogged": "false"
}
},
{
- "id": 6546,
+ "id": 6772,
"properties": {
"axis": "y",
"waterlogged": "true"
@@ -34159,21 +34159,21 @@
},
{
"default": true,
- "id": 6547,
+ "id": 6773,
"properties": {
"axis": "y",
"waterlogged": "false"
}
},
{
- "id": 6548,
+ "id": 6774,
"properties": {
"axis": "z",
"waterlogged": "true"
}
},
{
- "id": 6549,
+ "id": 6775,
"properties": {
"axis": "z",
"waterlogged": "false"
@@ -34198,42 +34198,42 @@
},
"states": [
{
- "id": 11902,
+ "id": 12371,
"properties": {
"conditional": "true",
"facing": "north"
}
},
{
- "id": 11903,
+ "id": 12372,
"properties": {
"conditional": "true",
"facing": "east"
}
},
{
- "id": 11904,
+ "id": 12373,
"properties": {
"conditional": "true",
"facing": "south"
}
},
{
- "id": 11905,
+ "id": 12374,
"properties": {
"conditional": "true",
"facing": "west"
}
},
{
- "id": 11906,
+ "id": 12375,
"properties": {
"conditional": "true",
"facing": "up"
}
},
{
- "id": 11907,
+ "id": 12376,
"properties": {
"conditional": "true",
"facing": "down"
@@ -34241,42 +34241,42 @@
},
{
"default": true,
- "id": 11908,
+ "id": 12377,
"properties": {
"conditional": "false",
"facing": "north"
}
},
{
- "id": 11909,
+ "id": 12378,
"properties": {
"conditional": "false",
"facing": "east"
}
},
{
- "id": 11910,
+ "id": 12379,
"properties": {
"conditional": "false",
"facing": "south"
}
},
{
- "id": 11911,
+ "id": 12380,
"properties": {
"conditional": "false",
"facing": "west"
}
},
{
- "id": 11912,
+ "id": 12381,
"properties": {
"conditional": "false",
"facing": "up"
}
},
{
- "id": 11913,
+ "id": 12382,
"properties": {
"conditional": "false",
"facing": "down"
@@ -34284,6 +34284,4330 @@
}
]
},
+ "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": [
@@ -34304,7 +38628,7 @@
},
"states": [
{
- "id": 2902,
+ "id": 2950,
"properties": {
"type": "single",
"facing": "north",
@@ -34313,7 +38637,7 @@
},
{
"default": true,
- "id": 2903,
+ "id": 2951,
"properties": {
"type": "single",
"facing": "north",
@@ -34321,7 +38645,7 @@
}
},
{
- "id": 2904,
+ "id": 2952,
"properties": {
"type": "left",
"facing": "north",
@@ -34329,7 +38653,7 @@
}
},
{
- "id": 2905,
+ "id": 2953,
"properties": {
"type": "left",
"facing": "north",
@@ -34337,7 +38661,7 @@
}
},
{
- "id": 2906,
+ "id": 2954,
"properties": {
"type": "right",
"facing": "north",
@@ -34345,7 +38669,7 @@
}
},
{
- "id": 2907,
+ "id": 2955,
"properties": {
"type": "right",
"facing": "north",
@@ -34353,7 +38677,7 @@
}
},
{
- "id": 2908,
+ "id": 2956,
"properties": {
"type": "single",
"facing": "south",
@@ -34361,7 +38685,7 @@
}
},
{
- "id": 2909,
+ "id": 2957,
"properties": {
"type": "single",
"facing": "south",
@@ -34369,7 +38693,7 @@
}
},
{
- "id": 2910,
+ "id": 2958,
"properties": {
"type": "left",
"facing": "south",
@@ -34377,7 +38701,7 @@
}
},
{
- "id": 2911,
+ "id": 2959,
"properties": {
"type": "left",
"facing": "south",
@@ -34385,7 +38709,7 @@
}
},
{
- "id": 2912,
+ "id": 2960,
"properties": {
"type": "right",
"facing": "south",
@@ -34393,7 +38717,7 @@
}
},
{
- "id": 2913,
+ "id": 2961,
"properties": {
"type": "right",
"facing": "south",
@@ -34401,7 +38725,7 @@
}
},
{
- "id": 2914,
+ "id": 2962,
"properties": {
"type": "single",
"facing": "west",
@@ -34409,7 +38733,7 @@
}
},
{
- "id": 2915,
+ "id": 2963,
"properties": {
"type": "single",
"facing": "west",
@@ -34417,7 +38741,7 @@
}
},
{
- "id": 2916,
+ "id": 2964,
"properties": {
"type": "left",
"facing": "west",
@@ -34425,7 +38749,7 @@
}
},
{
- "id": 2917,
+ "id": 2965,
"properties": {
"type": "left",
"facing": "west",
@@ -34433,7 +38757,7 @@
}
},
{
- "id": 2918,
+ "id": 2966,
"properties": {
"type": "right",
"facing": "west",
@@ -34441,7 +38765,7 @@
}
},
{
- "id": 2919,
+ "id": 2967,
"properties": {
"type": "right",
"facing": "west",
@@ -34449,7 +38773,7 @@
}
},
{
- "id": 2920,
+ "id": 2968,
"properties": {
"type": "single",
"facing": "east",
@@ -34457,7 +38781,7 @@
}
},
{
- "id": 2921,
+ "id": 2969,
"properties": {
"type": "single",
"facing": "east",
@@ -34465,7 +38789,7 @@
}
},
{
- "id": 2922,
+ "id": 2970,
"properties": {
"type": "left",
"facing": "east",
@@ -34473,7 +38797,7 @@
}
},
{
- "id": 2923,
+ "id": 2971,
"properties": {
"type": "left",
"facing": "east",
@@ -34481,7 +38805,7 @@
}
},
{
- "id": 2924,
+ "id": 2972,
"properties": {
"type": "right",
"facing": "east",
@@ -34489,7 +38813,7 @@
}
},
{
- "id": 2925,
+ "id": 2973,
"properties": {
"type": "right",
"facing": "east",
@@ -34510,25 +38834,25 @@
"states": [
{
"default": true,
- "id": 8715,
+ "id": 8967,
"properties": {
"facing": "north"
}
},
{
- "id": 8716,
+ "id": 8968,
"properties": {
"facing": "south"
}
},
{
- "id": 8717,
+ "id": 8969,
"properties": {
"facing": "west"
}
},
{
- "id": 8718,
+ "id": 8970,
"properties": {
"facing": "east"
}
@@ -34569,588 +38893,12 @@
]
},
"states": [
- {
- "id": 2045,
- "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": 2046,
- "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": 2047,
- "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": 2048,
- "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": 2049,
- "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": 2050,
- "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": 2051,
- "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": 2052,
- "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": 2053,
- "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": 2054,
- "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": 2055,
- "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": 2056,
- "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": 2057,
- "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": 2058,
- "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": 2059,
- "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": 2060,
- "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": 2061,
- "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": 2062,
- "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": 2063,
- "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": 2064,
- "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": 2065,
- "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": 2066,
- "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": 2067,
- "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": 2068,
- "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": 2069,
- "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": 2070,
- "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": 2071,
- "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": 2072,
- "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": 2073,
- "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": 2074,
- "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": 2075,
- "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": 2076,
- "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": 2077,
- "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": 2078,
- "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": 2079,
- "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": 2080,
- "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": 2081,
- "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": 2082,
- "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": 2083,
- "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": 2084,
- "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": 2085,
- "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": 2086,
- "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": 2087,
- "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": 2088,
- "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": 2089,
- "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": 2090,
- "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": 2091,
- "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": 2092,
- "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": 2093,
"properties": {
"facing": "north",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "true",
"slot_3_occupied": "true",
"slot_4_occupied": "true",
@@ -35161,8 +38909,8 @@
"id": 2094,
"properties": {
"facing": "north",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "true",
"slot_3_occupied": "true",
"slot_4_occupied": "true",
@@ -35173,8 +38921,8 @@
"id": 2095,
"properties": {
"facing": "north",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "true",
"slot_3_occupied": "true",
"slot_4_occupied": "false",
@@ -35185,8 +38933,8 @@
"id": 2096,
"properties": {
"facing": "north",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "true",
"slot_3_occupied": "true",
"slot_4_occupied": "false",
@@ -35197,8 +38945,8 @@
"id": 2097,
"properties": {
"facing": "north",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "true",
"slot_3_occupied": "false",
"slot_4_occupied": "true",
@@ -35209,8 +38957,8 @@
"id": 2098,
"properties": {
"facing": "north",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "true",
"slot_3_occupied": "false",
"slot_4_occupied": "true",
@@ -35221,8 +38969,8 @@
"id": 2099,
"properties": {
"facing": "north",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "true",
"slot_3_occupied": "false",
"slot_4_occupied": "false",
@@ -35233,8 +38981,8 @@
"id": 2100,
"properties": {
"facing": "north",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "true",
"slot_3_occupied": "false",
"slot_4_occupied": "false",
@@ -35245,8 +38993,8 @@
"id": 2101,
"properties": {
"facing": "north",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "false",
"slot_3_occupied": "true",
"slot_4_occupied": "true",
@@ -35257,8 +39005,8 @@
"id": 2102,
"properties": {
"facing": "north",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "false",
"slot_3_occupied": "true",
"slot_4_occupied": "true",
@@ -35269,8 +39017,8 @@
"id": 2103,
"properties": {
"facing": "north",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "false",
"slot_3_occupied": "true",
"slot_4_occupied": "false",
@@ -35279,6 +39027,582 @@
},
{
"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",
@@ -35290,7 +39614,7 @@
}
},
{
- "id": 2105,
+ "id": 2153,
"properties": {
"facing": "north",
"slot_0_occupied": "false",
@@ -35302,7 +39626,7 @@
}
},
{
- "id": 2106,
+ "id": 2154,
"properties": {
"facing": "north",
"slot_0_occupied": "false",
@@ -35314,7 +39638,7 @@
}
},
{
- "id": 2107,
+ "id": 2155,
"properties": {
"facing": "north",
"slot_0_occupied": "false",
@@ -35327,7 +39651,7 @@
},
{
"default": true,
- "id": 2108,
+ "id": 2156,
"properties": {
"facing": "north",
"slot_0_occupied": "false",
@@ -35338,588 +39662,12 @@
"slot_5_occupied": "false"
}
},
- {
- "id": 2109,
- "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": 2110,
- "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": 2111,
- "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": 2112,
- "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": 2113,
- "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": 2114,
- "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": 2115,
- "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": 2116,
- "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": 2117,
- "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": 2118,
- "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": 2119,
- "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": 2120,
- "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": 2121,
- "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": 2122,
- "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": 2123,
- "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": 2124,
- "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": 2125,
- "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": 2126,
- "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": 2127,
- "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": 2128,
- "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": 2129,
- "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": 2130,
- "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": 2131,
- "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": 2132,
- "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": 2133,
- "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": 2134,
- "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": 2135,
- "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": 2136,
- "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": 2137,
- "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": 2138,
- "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": 2139,
- "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": 2140,
- "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": 2141,
- "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": 2142,
- "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": 2143,
- "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": 2144,
- "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": 2145,
- "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": 2146,
- "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": 2147,
- "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": 2148,
- "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": 2149,
- "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": 2150,
- "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": 2151,
- "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": 2152,
- "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": 2153,
- "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": 2154,
- "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": 2155,
- "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": 2156,
- "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": 2157,
"properties": {
"facing": "south",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "true",
"slot_3_occupied": "true",
"slot_4_occupied": "true",
@@ -35930,8 +39678,8 @@
"id": 2158,
"properties": {
"facing": "south",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "true",
"slot_3_occupied": "true",
"slot_4_occupied": "true",
@@ -35942,8 +39690,8 @@
"id": 2159,
"properties": {
"facing": "south",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "true",
"slot_3_occupied": "true",
"slot_4_occupied": "false",
@@ -35954,8 +39702,8 @@
"id": 2160,
"properties": {
"facing": "south",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "true",
"slot_3_occupied": "true",
"slot_4_occupied": "false",
@@ -35966,8 +39714,8 @@
"id": 2161,
"properties": {
"facing": "south",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "true",
"slot_3_occupied": "false",
"slot_4_occupied": "true",
@@ -35978,8 +39726,8 @@
"id": 2162,
"properties": {
"facing": "south",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "true",
"slot_3_occupied": "false",
"slot_4_occupied": "true",
@@ -35990,8 +39738,8 @@
"id": 2163,
"properties": {
"facing": "south",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "true",
"slot_3_occupied": "false",
"slot_4_occupied": "false",
@@ -36002,8 +39750,8 @@
"id": 2164,
"properties": {
"facing": "south",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "true",
"slot_3_occupied": "false",
"slot_4_occupied": "false",
@@ -36014,8 +39762,8 @@
"id": 2165,
"properties": {
"facing": "south",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "false",
"slot_3_occupied": "true",
"slot_4_occupied": "true",
@@ -36026,8 +39774,8 @@
"id": 2166,
"properties": {
"facing": "south",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "false",
"slot_3_occupied": "true",
"slot_4_occupied": "true",
@@ -36038,8 +39786,8 @@
"id": 2167,
"properties": {
"facing": "south",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "false",
"slot_3_occupied": "true",
"slot_4_occupied": "false",
@@ -36050,8 +39798,8 @@
"id": 2168,
"properties": {
"facing": "south",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "false",
"slot_3_occupied": "true",
"slot_4_occupied": "false",
@@ -36062,8 +39810,8 @@
"id": 2169,
"properties": {
"facing": "south",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "false",
"slot_3_occupied": "false",
"slot_4_occupied": "true",
@@ -36074,8 +39822,8 @@
"id": 2170,
"properties": {
"facing": "south",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "false",
"slot_3_occupied": "false",
"slot_4_occupied": "true",
@@ -36084,6 +39832,582 @@
},
{
"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",
@@ -36095,7 +40419,7 @@
}
},
{
- "id": 2172,
+ "id": 2220,
"properties": {
"facing": "south",
"slot_0_occupied": "false",
@@ -36106,588 +40430,12 @@
"slot_5_occupied": "false"
}
},
- {
- "id": 2173,
- "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": 2174,
- "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": 2175,
- "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": 2176,
- "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": 2177,
- "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": 2178,
- "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": 2179,
- "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": 2180,
- "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": 2181,
- "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": 2182,
- "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": 2183,
- "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": 2184,
- "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": 2185,
- "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": 2186,
- "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": 2187,
- "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": 2188,
- "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": 2189,
- "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": 2190,
- "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": 2191,
- "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": 2192,
- "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": 2193,
- "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": 2194,
- "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": 2195,
- "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": 2196,
- "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": 2197,
- "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": 2198,
- "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": 2199,
- "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": 2200,
- "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": 2201,
- "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": 2202,
- "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": 2203,
- "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": 2204,
- "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": 2205,
- "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": 2206,
- "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": 2207,
- "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": 2208,
- "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": 2209,
- "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": 2210,
- "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": 2211,
- "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": 2212,
- "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": 2213,
- "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": 2214,
- "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": 2215,
- "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": 2216,
- "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": 2217,
- "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": 2218,
- "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": 2219,
- "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": 2220,
- "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": 2221,
"properties": {
"facing": "west",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "true",
"slot_3_occupied": "true",
"slot_4_occupied": "true",
@@ -36698,8 +40446,8 @@
"id": 2222,
"properties": {
"facing": "west",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "true",
"slot_3_occupied": "true",
"slot_4_occupied": "true",
@@ -36710,8 +40458,8 @@
"id": 2223,
"properties": {
"facing": "west",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "true",
"slot_3_occupied": "true",
"slot_4_occupied": "false",
@@ -36722,8 +40470,8 @@
"id": 2224,
"properties": {
"facing": "west",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "true",
"slot_3_occupied": "true",
"slot_4_occupied": "false",
@@ -36734,8 +40482,8 @@
"id": 2225,
"properties": {
"facing": "west",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "true",
"slot_3_occupied": "false",
"slot_4_occupied": "true",
@@ -36746,8 +40494,8 @@
"id": 2226,
"properties": {
"facing": "west",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "true",
"slot_3_occupied": "false",
"slot_4_occupied": "true",
@@ -36758,8 +40506,8 @@
"id": 2227,
"properties": {
"facing": "west",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "true",
"slot_3_occupied": "false",
"slot_4_occupied": "false",
@@ -36770,8 +40518,8 @@
"id": 2228,
"properties": {
"facing": "west",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "true",
"slot_3_occupied": "false",
"slot_4_occupied": "false",
@@ -36782,8 +40530,8 @@
"id": 2229,
"properties": {
"facing": "west",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "false",
"slot_3_occupied": "true",
"slot_4_occupied": "true",
@@ -36794,8 +40542,8 @@
"id": 2230,
"properties": {
"facing": "west",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "false",
"slot_3_occupied": "true",
"slot_4_occupied": "true",
@@ -36806,8 +40554,8 @@
"id": 2231,
"properties": {
"facing": "west",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "false",
"slot_3_occupied": "true",
"slot_4_occupied": "false",
@@ -36818,8 +40566,8 @@
"id": 2232,
"properties": {
"facing": "west",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "false",
"slot_3_occupied": "true",
"slot_4_occupied": "false",
@@ -36830,8 +40578,8 @@
"id": 2233,
"properties": {
"facing": "west",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "false",
"slot_3_occupied": "false",
"slot_4_occupied": "true",
@@ -36842,8 +40590,8 @@
"id": 2234,
"properties": {
"facing": "west",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "false",
"slot_3_occupied": "false",
"slot_4_occupied": "true",
@@ -36852,6 +40600,582 @@
},
{
"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",
@@ -36863,7 +41187,7 @@
}
},
{
- "id": 2236,
+ "id": 2284,
"properties": {
"facing": "west",
"slot_0_occupied": "false",
@@ -36874,588 +41198,12 @@
"slot_5_occupied": "false"
}
},
- {
- "id": 2237,
- "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": 2238,
- "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": 2239,
- "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": 2240,
- "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": 2241,
- "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": 2242,
- "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": 2243,
- "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": 2244,
- "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": 2245,
- "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": 2246,
- "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": 2247,
- "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": 2248,
- "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": 2249,
- "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": 2250,
- "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": 2251,
- "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": 2252,
- "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": 2253,
- "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": 2254,
- "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": 2255,
- "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": 2256,
- "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": 2257,
- "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": 2258,
- "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": 2259,
- "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": 2260,
- "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": 2261,
- "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": 2262,
- "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": 2263,
- "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": 2264,
- "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": 2265,
- "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": 2266,
- "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": 2267,
- "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": 2268,
- "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": 2269,
- "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": 2270,
- "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": 2271,
- "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": 2272,
- "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": 2273,
- "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": 2274,
- "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": 2275,
- "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": 2276,
- "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": 2277,
- "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": 2278,
- "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": 2279,
- "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": 2280,
- "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": 2281,
- "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": 2282,
- "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": 2283,
- "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": 2284,
- "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": 2285,
"properties": {
"facing": "east",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "true",
"slot_3_occupied": "true",
"slot_4_occupied": "true",
@@ -37466,8 +41214,8 @@
"id": 2286,
"properties": {
"facing": "east",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "true",
"slot_3_occupied": "true",
"slot_4_occupied": "true",
@@ -37478,8 +41226,8 @@
"id": 2287,
"properties": {
"facing": "east",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "true",
"slot_3_occupied": "true",
"slot_4_occupied": "false",
@@ -37490,8 +41238,8 @@
"id": 2288,
"properties": {
"facing": "east",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "true",
"slot_3_occupied": "true",
"slot_4_occupied": "false",
@@ -37502,8 +41250,8 @@
"id": 2289,
"properties": {
"facing": "east",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "true",
"slot_3_occupied": "false",
"slot_4_occupied": "true",
@@ -37514,8 +41262,8 @@
"id": 2290,
"properties": {
"facing": "east",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "true",
"slot_3_occupied": "false",
"slot_4_occupied": "true",
@@ -37526,8 +41274,8 @@
"id": 2291,
"properties": {
"facing": "east",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "true",
"slot_3_occupied": "false",
"slot_4_occupied": "false",
@@ -37538,8 +41286,8 @@
"id": 2292,
"properties": {
"facing": "east",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "true",
"slot_3_occupied": "false",
"slot_4_occupied": "false",
@@ -37550,8 +41298,8 @@
"id": 2293,
"properties": {
"facing": "east",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "false",
"slot_3_occupied": "true",
"slot_4_occupied": "true",
@@ -37562,8 +41310,8 @@
"id": 2294,
"properties": {
"facing": "east",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "false",
"slot_3_occupied": "true",
"slot_4_occupied": "true",
@@ -37574,8 +41322,8 @@
"id": 2295,
"properties": {
"facing": "east",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "false",
"slot_3_occupied": "true",
"slot_4_occupied": "false",
@@ -37586,8 +41334,8 @@
"id": 2296,
"properties": {
"facing": "east",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "false",
"slot_3_occupied": "true",
"slot_4_occupied": "false",
@@ -37596,6 +41344,582 @@
},
{
"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",
@@ -37607,7 +41931,7 @@
}
},
{
- "id": 2298,
+ "id": 2346,
"properties": {
"facing": "east",
"slot_0_occupied": "false",
@@ -37619,7 +41943,7 @@
}
},
{
- "id": 2299,
+ "id": 2347,
"properties": {
"facing": "east",
"slot_0_occupied": "false",
@@ -37631,7 +41955,7 @@
}
},
{
- "id": 2300,
+ "id": 2348,
"properties": {
"facing": "east",
"slot_0_occupied": "false",
@@ -37648,7 +41972,7 @@
"states": [
{
"default": true,
- "id": 23209
+ "id": 23694
}
]
},
@@ -37656,7 +41980,7 @@
"states": [
{
"default": true,
- "id": 20094
+ "id": 20563
}
]
},
@@ -37664,7 +41988,7 @@
"states": [
{
"default": true,
- "id": 19246
+ "id": 19715
}
]
},
@@ -37672,7 +41996,7 @@
"states": [
{
"default": true,
- "id": 8840
+ "id": 9092
}
]
},
@@ -37680,7 +42004,7 @@
"states": [
{
"default": true,
- "id": 10603
+ "id": 10935
}
]
},
@@ -37688,7 +42012,7 @@
"states": [
{
"default": true,
- "id": 485
+ "id": 532
}
]
},
@@ -37696,7 +42020,7 @@
"states": [
{
"default": true,
- "id": 6311
+ "id": 6537
}
]
},
@@ -37714,37 +42038,37 @@
"states": [
{
"default": true,
- "id": 11793,
+ "id": 12259,
"properties": {
"age": "0"
}
},
{
- "id": 11794,
+ "id": 12260,
"properties": {
"age": "1"
}
},
{
- "id": 11795,
+ "id": 12261,
"properties": {
"age": "2"
}
},
{
- "id": 11796,
+ "id": 12262,
"properties": {
"age": "3"
}
},
{
- "id": 11797,
+ "id": 12263,
"properties": {
"age": "4"
}
},
{
- "id": 11798,
+ "id": 12264,
"properties": {
"age": "5"
}
@@ -37780,7 +42104,7 @@
},
"states": [
{
- "id": 11729,
+ "id": 12195,
"properties": {
"down": "true",
"east": "true",
@@ -37791,7 +42115,7 @@
}
},
{
- "id": 11730,
+ "id": 12196,
"properties": {
"down": "true",
"east": "true",
@@ -37802,7 +42126,7 @@
}
},
{
- "id": 11731,
+ "id": 12197,
"properties": {
"down": "true",
"east": "true",
@@ -37813,7 +42137,7 @@
}
},
{
- "id": 11732,
+ "id": 12198,
"properties": {
"down": "true",
"east": "true",
@@ -37824,7 +42148,7 @@
}
},
{
- "id": 11733,
+ "id": 12199,
"properties": {
"down": "true",
"east": "true",
@@ -37835,7 +42159,7 @@
}
},
{
- "id": 11734,
+ "id": 12200,
"properties": {
"down": "true",
"east": "true",
@@ -37846,7 +42170,7 @@
}
},
{
- "id": 11735,
+ "id": 12201,
"properties": {
"down": "true",
"east": "true",
@@ -37857,7 +42181,7 @@
}
},
{
- "id": 11736,
+ "id": 12202,
"properties": {
"down": "true",
"east": "true",
@@ -37868,7 +42192,7 @@
}
},
{
- "id": 11737,
+ "id": 12203,
"properties": {
"down": "true",
"east": "true",
@@ -37879,7 +42203,7 @@
}
},
{
- "id": 11738,
+ "id": 12204,
"properties": {
"down": "true",
"east": "true",
@@ -37890,7 +42214,7 @@
}
},
{
- "id": 11739,
+ "id": 12205,
"properties": {
"down": "true",
"east": "true",
@@ -37901,7 +42225,7 @@
}
},
{
- "id": 11740,
+ "id": 12206,
"properties": {
"down": "true",
"east": "true",
@@ -37912,7 +42236,7 @@
}
},
{
- "id": 11741,
+ "id": 12207,
"properties": {
"down": "true",
"east": "true",
@@ -37923,7 +42247,7 @@
}
},
{
- "id": 11742,
+ "id": 12208,
"properties": {
"down": "true",
"east": "true",
@@ -37934,7 +42258,7 @@
}
},
{
- "id": 11743,
+ "id": 12209,
"properties": {
"down": "true",
"east": "true",
@@ -37945,7 +42269,7 @@
}
},
{
- "id": 11744,
+ "id": 12210,
"properties": {
"down": "true",
"east": "true",
@@ -37956,7 +42280,7 @@
}
},
{
- "id": 11745,
+ "id": 12211,
"properties": {
"down": "true",
"east": "false",
@@ -37967,7 +42291,7 @@
}
},
{
- "id": 11746,
+ "id": 12212,
"properties": {
"down": "true",
"east": "false",
@@ -37978,7 +42302,7 @@
}
},
{
- "id": 11747,
+ "id": 12213,
"properties": {
"down": "true",
"east": "false",
@@ -37989,7 +42313,7 @@
}
},
{
- "id": 11748,
+ "id": 12214,
"properties": {
"down": "true",
"east": "false",
@@ -38000,7 +42324,7 @@
}
},
{
- "id": 11749,
+ "id": 12215,
"properties": {
"down": "true",
"east": "false",
@@ -38011,7 +42335,7 @@
}
},
{
- "id": 11750,
+ "id": 12216,
"properties": {
"down": "true",
"east": "false",
@@ -38022,7 +42346,7 @@
}
},
{
- "id": 11751,
+ "id": 12217,
"properties": {
"down": "true",
"east": "false",
@@ -38033,7 +42357,7 @@
}
},
{
- "id": 11752,
+ "id": 12218,
"properties": {
"down": "true",
"east": "false",
@@ -38044,7 +42368,7 @@
}
},
{
- "id": 11753,
+ "id": 12219,
"properties": {
"down": "true",
"east": "false",
@@ -38055,7 +42379,7 @@
}
},
{
- "id": 11754,
+ "id": 12220,
"properties": {
"down": "true",
"east": "false",
@@ -38066,7 +42390,7 @@
}
},
{
- "id": 11755,
+ "id": 12221,
"properties": {
"down": "true",
"east": "false",
@@ -38077,7 +42401,7 @@
}
},
{
- "id": 11756,
+ "id": 12222,
"properties": {
"down": "true",
"east": "false",
@@ -38088,7 +42412,7 @@
}
},
{
- "id": 11757,
+ "id": 12223,
"properties": {
"down": "true",
"east": "false",
@@ -38099,7 +42423,7 @@
}
},
{
- "id": 11758,
+ "id": 12224,
"properties": {
"down": "true",
"east": "false",
@@ -38110,7 +42434,7 @@
}
},
{
- "id": 11759,
+ "id": 12225,
"properties": {
"down": "true",
"east": "false",
@@ -38121,7 +42445,7 @@
}
},
{
- "id": 11760,
+ "id": 12226,
"properties": {
"down": "true",
"east": "false",
@@ -38132,7 +42456,7 @@
}
},
{
- "id": 11761,
+ "id": 12227,
"properties": {
"down": "false",
"east": "true",
@@ -38143,7 +42467,7 @@
}
},
{
- "id": 11762,
+ "id": 12228,
"properties": {
"down": "false",
"east": "true",
@@ -38154,7 +42478,7 @@
}
},
{
- "id": 11763,
+ "id": 12229,
"properties": {
"down": "false",
"east": "true",
@@ -38165,7 +42489,7 @@
}
},
{
- "id": 11764,
+ "id": 12230,
"properties": {
"down": "false",
"east": "true",
@@ -38176,7 +42500,7 @@
}
},
{
- "id": 11765,
+ "id": 12231,
"properties": {
"down": "false",
"east": "true",
@@ -38187,7 +42511,7 @@
}
},
{
- "id": 11766,
+ "id": 12232,
"properties": {
"down": "false",
"east": "true",
@@ -38198,7 +42522,7 @@
}
},
{
- "id": 11767,
+ "id": 12233,
"properties": {
"down": "false",
"east": "true",
@@ -38209,7 +42533,7 @@
}
},
{
- "id": 11768,
+ "id": 12234,
"properties": {
"down": "false",
"east": "true",
@@ -38220,7 +42544,7 @@
}
},
{
- "id": 11769,
+ "id": 12235,
"properties": {
"down": "false",
"east": "true",
@@ -38231,7 +42555,7 @@
}
},
{
- "id": 11770,
+ "id": 12236,
"properties": {
"down": "false",
"east": "true",
@@ -38242,7 +42566,7 @@
}
},
{
- "id": 11771,
+ "id": 12237,
"properties": {
"down": "false",
"east": "true",
@@ -38253,7 +42577,7 @@
}
},
{
- "id": 11772,
+ "id": 12238,
"properties": {
"down": "false",
"east": "true",
@@ -38264,7 +42588,7 @@
}
},
{
- "id": 11773,
+ "id": 12239,
"properties": {
"down": "false",
"east": "true",
@@ -38275,7 +42599,7 @@
}
},
{
- "id": 11774,
+ "id": 12240,
"properties": {
"down": "false",
"east": "true",
@@ -38286,7 +42610,7 @@
}
},
{
- "id": 11775,
+ "id": 12241,
"properties": {
"down": "false",
"east": "true",
@@ -38297,7 +42621,7 @@
}
},
{
- "id": 11776,
+ "id": 12242,
"properties": {
"down": "false",
"east": "true",
@@ -38308,7 +42632,7 @@
}
},
{
- "id": 11777,
+ "id": 12243,
"properties": {
"down": "false",
"east": "false",
@@ -38319,7 +42643,7 @@
}
},
{
- "id": 11778,
+ "id": 12244,
"properties": {
"down": "false",
"east": "false",
@@ -38330,7 +42654,7 @@
}
},
{
- "id": 11779,
+ "id": 12245,
"properties": {
"down": "false",
"east": "false",
@@ -38341,7 +42665,7 @@
}
},
{
- "id": 11780,
+ "id": 12246,
"properties": {
"down": "false",
"east": "false",
@@ -38352,7 +42676,7 @@
}
},
{
- "id": 11781,
+ "id": 12247,
"properties": {
"down": "false",
"east": "false",
@@ -38363,7 +42687,7 @@
}
},
{
- "id": 11782,
+ "id": 12248,
"properties": {
"down": "false",
"east": "false",
@@ -38374,7 +42698,7 @@
}
},
{
- "id": 11783,
+ "id": 12249,
"properties": {
"down": "false",
"east": "false",
@@ -38385,7 +42709,7 @@
}
},
{
- "id": 11784,
+ "id": 12250,
"properties": {
"down": "false",
"east": "false",
@@ -38396,7 +42720,7 @@
}
},
{
- "id": 11785,
+ "id": 12251,
"properties": {
"down": "false",
"east": "false",
@@ -38407,7 +42731,7 @@
}
},
{
- "id": 11786,
+ "id": 12252,
"properties": {
"down": "false",
"east": "false",
@@ -38418,7 +42742,7 @@
}
},
{
- "id": 11787,
+ "id": 12253,
"properties": {
"down": "false",
"east": "false",
@@ -38429,7 +42753,7 @@
}
},
{
- "id": 11788,
+ "id": 12254,
"properties": {
"down": "false",
"east": "false",
@@ -38440,7 +42764,7 @@
}
},
{
- "id": 11789,
+ "id": 12255,
"properties": {
"down": "false",
"east": "false",
@@ -38451,7 +42775,7 @@
}
},
{
- "id": 11790,
+ "id": 12256,
"properties": {
"down": "false",
"east": "false",
@@ -38462,7 +42786,7 @@
}
},
{
- "id": 11791,
+ "id": 12257,
"properties": {
"down": "false",
"east": "false",
@@ -38474,7 +42798,7 @@
},
{
"default": true,
- "id": 11792,
+ "id": 12258,
"properties": {
"down": "false",
"east": "false",
@@ -38490,7 +42814,7 @@
"states": [
{
"default": true,
- "id": 5632
+ "id": 5794
}
]
},
@@ -38498,7 +42822,7 @@
"states": [
{
"default": true,
- "id": 10268
+ "id": 10600
}
]
},
@@ -38506,7 +42830,7 @@
"states": [
{
"default": true,
- "id": 116
+ "id": 123
}
]
},
@@ -38522,7 +42846,7 @@
"states": [
{
"default": true,
- "id": 21565
+ "id": 22050
}
]
},
@@ -38540,21 +42864,21 @@
},
"states": [
{
- "id": 21646,
+ "id": 22131,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 21647,
+ "id": 22132,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 21648,
+ "id": 22133,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -38562,21 +42886,21 @@
},
{
"default": true,
- "id": 21649,
+ "id": 22134,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 21650,
+ "id": 22135,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 21651,
+ "id": 22136,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -38610,7 +42934,7 @@
},
"states": [
{
- "id": 21566,
+ "id": 22051,
"properties": {
"facing": "north",
"half": "top",
@@ -38619,7 +42943,7 @@
}
},
{
- "id": 21567,
+ "id": 22052,
"properties": {
"facing": "north",
"half": "top",
@@ -38628,7 +42952,7 @@
}
},
{
- "id": 21568,
+ "id": 22053,
"properties": {
"facing": "north",
"half": "top",
@@ -38637,7 +42961,7 @@
}
},
{
- "id": 21569,
+ "id": 22054,
"properties": {
"facing": "north",
"half": "top",
@@ -38646,7 +42970,7 @@
}
},
{
- "id": 21570,
+ "id": 22055,
"properties": {
"facing": "north",
"half": "top",
@@ -38655,7 +42979,7 @@
}
},
{
- "id": 21571,
+ "id": 22056,
"properties": {
"facing": "north",
"half": "top",
@@ -38664,7 +42988,7 @@
}
},
{
- "id": 21572,
+ "id": 22057,
"properties": {
"facing": "north",
"half": "top",
@@ -38673,7 +42997,7 @@
}
},
{
- "id": 21573,
+ "id": 22058,
"properties": {
"facing": "north",
"half": "top",
@@ -38682,7 +43006,7 @@
}
},
{
- "id": 21574,
+ "id": 22059,
"properties": {
"facing": "north",
"half": "top",
@@ -38691,7 +43015,7 @@
}
},
{
- "id": 21575,
+ "id": 22060,
"properties": {
"facing": "north",
"half": "top",
@@ -38700,7 +43024,7 @@
}
},
{
- "id": 21576,
+ "id": 22061,
"properties": {
"facing": "north",
"half": "bottom",
@@ -38710,7 +43034,7 @@
},
{
"default": true,
- "id": 21577,
+ "id": 22062,
"properties": {
"facing": "north",
"half": "bottom",
@@ -38719,7 +43043,7 @@
}
},
{
- "id": 21578,
+ "id": 22063,
"properties": {
"facing": "north",
"half": "bottom",
@@ -38728,7 +43052,7 @@
}
},
{
- "id": 21579,
+ "id": 22064,
"properties": {
"facing": "north",
"half": "bottom",
@@ -38737,7 +43061,7 @@
}
},
{
- "id": 21580,
+ "id": 22065,
"properties": {
"facing": "north",
"half": "bottom",
@@ -38746,7 +43070,7 @@
}
},
{
- "id": 21581,
+ "id": 22066,
"properties": {
"facing": "north",
"half": "bottom",
@@ -38755,7 +43079,7 @@
}
},
{
- "id": 21582,
+ "id": 22067,
"properties": {
"facing": "north",
"half": "bottom",
@@ -38764,7 +43088,7 @@
}
},
{
- "id": 21583,
+ "id": 22068,
"properties": {
"facing": "north",
"half": "bottom",
@@ -38773,7 +43097,7 @@
}
},
{
- "id": 21584,
+ "id": 22069,
"properties": {
"facing": "north",
"half": "bottom",
@@ -38782,7 +43106,7 @@
}
},
{
- "id": 21585,
+ "id": 22070,
"properties": {
"facing": "north",
"half": "bottom",
@@ -38791,7 +43115,7 @@
}
},
{
- "id": 21586,
+ "id": 22071,
"properties": {
"facing": "south",
"half": "top",
@@ -38800,7 +43124,7 @@
}
},
{
- "id": 21587,
+ "id": 22072,
"properties": {
"facing": "south",
"half": "top",
@@ -38809,7 +43133,7 @@
}
},
{
- "id": 21588,
+ "id": 22073,
"properties": {
"facing": "south",
"half": "top",
@@ -38818,7 +43142,7 @@
}
},
{
- "id": 21589,
+ "id": 22074,
"properties": {
"facing": "south",
"half": "top",
@@ -38827,7 +43151,7 @@
}
},
{
- "id": 21590,
+ "id": 22075,
"properties": {
"facing": "south",
"half": "top",
@@ -38836,7 +43160,7 @@
}
},
{
- "id": 21591,
+ "id": 22076,
"properties": {
"facing": "south",
"half": "top",
@@ -38845,7 +43169,7 @@
}
},
{
- "id": 21592,
+ "id": 22077,
"properties": {
"facing": "south",
"half": "top",
@@ -38854,7 +43178,7 @@
}
},
{
- "id": 21593,
+ "id": 22078,
"properties": {
"facing": "south",
"half": "top",
@@ -38863,7 +43187,7 @@
}
},
{
- "id": 21594,
+ "id": 22079,
"properties": {
"facing": "south",
"half": "top",
@@ -38872,7 +43196,7 @@
}
},
{
- "id": 21595,
+ "id": 22080,
"properties": {
"facing": "south",
"half": "top",
@@ -38881,7 +43205,7 @@
}
},
{
- "id": 21596,
+ "id": 22081,
"properties": {
"facing": "south",
"half": "bottom",
@@ -38890,7 +43214,7 @@
}
},
{
- "id": 21597,
+ "id": 22082,
"properties": {
"facing": "south",
"half": "bottom",
@@ -38899,7 +43223,7 @@
}
},
{
- "id": 21598,
+ "id": 22083,
"properties": {
"facing": "south",
"half": "bottom",
@@ -38908,7 +43232,7 @@
}
},
{
- "id": 21599,
+ "id": 22084,
"properties": {
"facing": "south",
"half": "bottom",
@@ -38917,7 +43241,7 @@
}
},
{
- "id": 21600,
+ "id": 22085,
"properties": {
"facing": "south",
"half": "bottom",
@@ -38926,7 +43250,7 @@
}
},
{
- "id": 21601,
+ "id": 22086,
"properties": {
"facing": "south",
"half": "bottom",
@@ -38935,7 +43259,7 @@
}
},
{
- "id": 21602,
+ "id": 22087,
"properties": {
"facing": "south",
"half": "bottom",
@@ -38944,7 +43268,7 @@
}
},
{
- "id": 21603,
+ "id": 22088,
"properties": {
"facing": "south",
"half": "bottom",
@@ -38953,7 +43277,7 @@
}
},
{
- "id": 21604,
+ "id": 22089,
"properties": {
"facing": "south",
"half": "bottom",
@@ -38962,7 +43286,7 @@
}
},
{
- "id": 21605,
+ "id": 22090,
"properties": {
"facing": "south",
"half": "bottom",
@@ -38971,7 +43295,7 @@
}
},
{
- "id": 21606,
+ "id": 22091,
"properties": {
"facing": "west",
"half": "top",
@@ -38980,7 +43304,7 @@
}
},
{
- "id": 21607,
+ "id": 22092,
"properties": {
"facing": "west",
"half": "top",
@@ -38989,7 +43313,7 @@
}
},
{
- "id": 21608,
+ "id": 22093,
"properties": {
"facing": "west",
"half": "top",
@@ -38998,7 +43322,7 @@
}
},
{
- "id": 21609,
+ "id": 22094,
"properties": {
"facing": "west",
"half": "top",
@@ -39007,7 +43331,7 @@
}
},
{
- "id": 21610,
+ "id": 22095,
"properties": {
"facing": "west",
"half": "top",
@@ -39016,7 +43340,7 @@
}
},
{
- "id": 21611,
+ "id": 22096,
"properties": {
"facing": "west",
"half": "top",
@@ -39025,7 +43349,7 @@
}
},
{
- "id": 21612,
+ "id": 22097,
"properties": {
"facing": "west",
"half": "top",
@@ -39034,7 +43358,7 @@
}
},
{
- "id": 21613,
+ "id": 22098,
"properties": {
"facing": "west",
"half": "top",
@@ -39043,7 +43367,7 @@
}
},
{
- "id": 21614,
+ "id": 22099,
"properties": {
"facing": "west",
"half": "top",
@@ -39052,7 +43376,7 @@
}
},
{
- "id": 21615,
+ "id": 22100,
"properties": {
"facing": "west",
"half": "top",
@@ -39061,7 +43385,7 @@
}
},
{
- "id": 21616,
+ "id": 22101,
"properties": {
"facing": "west",
"half": "bottom",
@@ -39070,7 +43394,7 @@
}
},
{
- "id": 21617,
+ "id": 22102,
"properties": {
"facing": "west",
"half": "bottom",
@@ -39079,7 +43403,7 @@
}
},
{
- "id": 21618,
+ "id": 22103,
"properties": {
"facing": "west",
"half": "bottom",
@@ -39088,7 +43412,7 @@
}
},
{
- "id": 21619,
+ "id": 22104,
"properties": {
"facing": "west",
"half": "bottom",
@@ -39097,7 +43421,7 @@
}
},
{
- "id": 21620,
+ "id": 22105,
"properties": {
"facing": "west",
"half": "bottom",
@@ -39106,7 +43430,7 @@
}
},
{
- "id": 21621,
+ "id": 22106,
"properties": {
"facing": "west",
"half": "bottom",
@@ -39115,7 +43439,7 @@
}
},
{
- "id": 21622,
+ "id": 22107,
"properties": {
"facing": "west",
"half": "bottom",
@@ -39124,7 +43448,7 @@
}
},
{
- "id": 21623,
+ "id": 22108,
"properties": {
"facing": "west",
"half": "bottom",
@@ -39133,7 +43457,7 @@
}
},
{
- "id": 21624,
+ "id": 22109,
"properties": {
"facing": "west",
"half": "bottom",
@@ -39142,7 +43466,7 @@
}
},
{
- "id": 21625,
+ "id": 22110,
"properties": {
"facing": "west",
"half": "bottom",
@@ -39151,7 +43475,7 @@
}
},
{
- "id": 21626,
+ "id": 22111,
"properties": {
"facing": "east",
"half": "top",
@@ -39160,7 +43484,7 @@
}
},
{
- "id": 21627,
+ "id": 22112,
"properties": {
"facing": "east",
"half": "top",
@@ -39169,7 +43493,7 @@
}
},
{
- "id": 21628,
+ "id": 22113,
"properties": {
"facing": "east",
"half": "top",
@@ -39178,7 +43502,7 @@
}
},
{
- "id": 21629,
+ "id": 22114,
"properties": {
"facing": "east",
"half": "top",
@@ -39187,7 +43511,7 @@
}
},
{
- "id": 21630,
+ "id": 22115,
"properties": {
"facing": "east",
"half": "top",
@@ -39196,7 +43520,7 @@
}
},
{
- "id": 21631,
+ "id": 22116,
"properties": {
"facing": "east",
"half": "top",
@@ -39205,7 +43529,7 @@
}
},
{
- "id": 21632,
+ "id": 22117,
"properties": {
"facing": "east",
"half": "top",
@@ -39214,7 +43538,7 @@
}
},
{
- "id": 21633,
+ "id": 22118,
"properties": {
"facing": "east",
"half": "top",
@@ -39223,7 +43547,7 @@
}
},
{
- "id": 21634,
+ "id": 22119,
"properties": {
"facing": "east",
"half": "top",
@@ -39232,7 +43556,7 @@
}
},
{
- "id": 21635,
+ "id": 22120,
"properties": {
"facing": "east",
"half": "top",
@@ -39241,7 +43565,7 @@
}
},
{
- "id": 21636,
+ "id": 22121,
"properties": {
"facing": "east",
"half": "bottom",
@@ -39250,7 +43574,7 @@
}
},
{
- "id": 21637,
+ "id": 22122,
"properties": {
"facing": "east",
"half": "bottom",
@@ -39259,7 +43583,7 @@
}
},
{
- "id": 21638,
+ "id": 22123,
"properties": {
"facing": "east",
"half": "bottom",
@@ -39268,7 +43592,7 @@
}
},
{
- "id": 21639,
+ "id": 22124,
"properties": {
"facing": "east",
"half": "bottom",
@@ -39277,7 +43601,7 @@
}
},
{
- "id": 21640,
+ "id": 22125,
"properties": {
"facing": "east",
"half": "bottom",
@@ -39286,7 +43610,7 @@
}
},
{
- "id": 21641,
+ "id": 22126,
"properties": {
"facing": "east",
"half": "bottom",
@@ -39295,7 +43619,7 @@
}
},
{
- "id": 21642,
+ "id": 22127,
"properties": {
"facing": "east",
"half": "bottom",
@@ -39304,7 +43628,7 @@
}
},
{
- "id": 21643,
+ "id": 22128,
"properties": {
"facing": "east",
"half": "bottom",
@@ -39313,7 +43637,7 @@
}
},
{
- "id": 21644,
+ "id": 22129,
"properties": {
"facing": "east",
"half": "bottom",
@@ -39322,7 +43646,7 @@
}
},
{
- "id": 21645,
+ "id": 22130,
"properties": {
"facing": "east",
"half": "bottom",
@@ -39365,7 +43689,7 @@
},
"states": [
{
- "id": 21652,
+ "id": 22137,
"properties": {
"east": "none",
"north": "none",
@@ -39376,7 +43700,7 @@
}
},
{
- "id": 21653,
+ "id": 22138,
"properties": {
"east": "none",
"north": "none",
@@ -39387,7 +43711,7 @@
}
},
{
- "id": 21654,
+ "id": 22139,
"properties": {
"east": "none",
"north": "none",
@@ -39399,7 +43723,7 @@
},
{
"default": true,
- "id": 21655,
+ "id": 22140,
"properties": {
"east": "none",
"north": "none",
@@ -39410,7 +43734,7 @@
}
},
{
- "id": 21656,
+ "id": 22141,
"properties": {
"east": "none",
"north": "none",
@@ -39421,7 +43745,7 @@
}
},
{
- "id": 21657,
+ "id": 22142,
"properties": {
"east": "none",
"north": "none",
@@ -39432,7 +43756,7 @@
}
},
{
- "id": 21658,
+ "id": 22143,
"properties": {
"east": "none",
"north": "none",
@@ -39443,7 +43767,7 @@
}
},
{
- "id": 21659,
+ "id": 22144,
"properties": {
"east": "none",
"north": "none",
@@ -39454,7 +43778,7 @@
}
},
{
- "id": 21660,
+ "id": 22145,
"properties": {
"east": "none",
"north": "none",
@@ -39465,7 +43789,7 @@
}
},
{
- "id": 21661,
+ "id": 22146,
"properties": {
"east": "none",
"north": "none",
@@ -39476,7 +43800,7 @@
}
},
{
- "id": 21662,
+ "id": 22147,
"properties": {
"east": "none",
"north": "none",
@@ -39487,7 +43811,7 @@
}
},
{
- "id": 21663,
+ "id": 22148,
"properties": {
"east": "none",
"north": "none",
@@ -39498,7 +43822,7 @@
}
},
{
- "id": 21664,
+ "id": 22149,
"properties": {
"east": "none",
"north": "none",
@@ -39509,7 +43833,7 @@
}
},
{
- "id": 21665,
+ "id": 22150,
"properties": {
"east": "none",
"north": "none",
@@ -39520,7 +43844,7 @@
}
},
{
- "id": 21666,
+ "id": 22151,
"properties": {
"east": "none",
"north": "none",
@@ -39531,7 +43855,7 @@
}
},
{
- "id": 21667,
+ "id": 22152,
"properties": {
"east": "none",
"north": "none",
@@ -39542,7 +43866,7 @@
}
},
{
- "id": 21668,
+ "id": 22153,
"properties": {
"east": "none",
"north": "none",
@@ -39553,7 +43877,7 @@
}
},
{
- "id": 21669,
+ "id": 22154,
"properties": {
"east": "none",
"north": "none",
@@ -39564,7 +43888,7 @@
}
},
{
- "id": 21670,
+ "id": 22155,
"properties": {
"east": "none",
"north": "none",
@@ -39575,7 +43899,7 @@
}
},
{
- "id": 21671,
+ "id": 22156,
"properties": {
"east": "none",
"north": "none",
@@ -39586,7 +43910,7 @@
}
},
{
- "id": 21672,
+ "id": 22157,
"properties": {
"east": "none",
"north": "none",
@@ -39597,7 +43921,7 @@
}
},
{
- "id": 21673,
+ "id": 22158,
"properties": {
"east": "none",
"north": "none",
@@ -39608,7 +43932,7 @@
}
},
{
- "id": 21674,
+ "id": 22159,
"properties": {
"east": "none",
"north": "none",
@@ -39619,7 +43943,7 @@
}
},
{
- "id": 21675,
+ "id": 22160,
"properties": {
"east": "none",
"north": "none",
@@ -39630,7 +43954,7 @@
}
},
{
- "id": 21676,
+ "id": 22161,
"properties": {
"east": "none",
"north": "none",
@@ -39641,7 +43965,7 @@
}
},
{
- "id": 21677,
+ "id": 22162,
"properties": {
"east": "none",
"north": "none",
@@ -39652,7 +43976,7 @@
}
},
{
- "id": 21678,
+ "id": 22163,
"properties": {
"east": "none",
"north": "none",
@@ -39663,7 +43987,7 @@
}
},
{
- "id": 21679,
+ "id": 22164,
"properties": {
"east": "none",
"north": "none",
@@ -39674,7 +43998,7 @@
}
},
{
- "id": 21680,
+ "id": 22165,
"properties": {
"east": "none",
"north": "none",
@@ -39685,7 +44009,7 @@
}
},
{
- "id": 21681,
+ "id": 22166,
"properties": {
"east": "none",
"north": "none",
@@ -39696,7 +44020,7 @@
}
},
{
- "id": 21682,
+ "id": 22167,
"properties": {
"east": "none",
"north": "none",
@@ -39707,7 +44031,7 @@
}
},
{
- "id": 21683,
+ "id": 22168,
"properties": {
"east": "none",
"north": "none",
@@ -39718,7 +44042,7 @@
}
},
{
- "id": 21684,
+ "id": 22169,
"properties": {
"east": "none",
"north": "none",
@@ -39729,7 +44053,7 @@
}
},
{
- "id": 21685,
+ "id": 22170,
"properties": {
"east": "none",
"north": "none",
@@ -39740,7 +44064,7 @@
}
},
{
- "id": 21686,
+ "id": 22171,
"properties": {
"east": "none",
"north": "none",
@@ -39751,7 +44075,7 @@
}
},
{
- "id": 21687,
+ "id": 22172,
"properties": {
"east": "none",
"north": "none",
@@ -39762,7 +44086,7 @@
}
},
{
- "id": 21688,
+ "id": 22173,
"properties": {
"east": "none",
"north": "low",
@@ -39773,7 +44097,7 @@
}
},
{
- "id": 21689,
+ "id": 22174,
"properties": {
"east": "none",
"north": "low",
@@ -39784,7 +44108,7 @@
}
},
{
- "id": 21690,
+ "id": 22175,
"properties": {
"east": "none",
"north": "low",
@@ -39795,7 +44119,7 @@
}
},
{
- "id": 21691,
+ "id": 22176,
"properties": {
"east": "none",
"north": "low",
@@ -39806,7 +44130,7 @@
}
},
{
- "id": 21692,
+ "id": 22177,
"properties": {
"east": "none",
"north": "low",
@@ -39817,7 +44141,7 @@
}
},
{
- "id": 21693,
+ "id": 22178,
"properties": {
"east": "none",
"north": "low",
@@ -39828,7 +44152,7 @@
}
},
{
- "id": 21694,
+ "id": 22179,
"properties": {
"east": "none",
"north": "low",
@@ -39839,7 +44163,7 @@
}
},
{
- "id": 21695,
+ "id": 22180,
"properties": {
"east": "none",
"north": "low",
@@ -39850,7 +44174,7 @@
}
},
{
- "id": 21696,
+ "id": 22181,
"properties": {
"east": "none",
"north": "low",
@@ -39861,7 +44185,7 @@
}
},
{
- "id": 21697,
+ "id": 22182,
"properties": {
"east": "none",
"north": "low",
@@ -39872,7 +44196,7 @@
}
},
{
- "id": 21698,
+ "id": 22183,
"properties": {
"east": "none",
"north": "low",
@@ -39883,7 +44207,7 @@
}
},
{
- "id": 21699,
+ "id": 22184,
"properties": {
"east": "none",
"north": "low",
@@ -39894,7 +44218,7 @@
}
},
{
- "id": 21700,
+ "id": 22185,
"properties": {
"east": "none",
"north": "low",
@@ -39905,7 +44229,7 @@
}
},
{
- "id": 21701,
+ "id": 22186,
"properties": {
"east": "none",
"north": "low",
@@ -39916,7 +44240,7 @@
}
},
{
- "id": 21702,
+ "id": 22187,
"properties": {
"east": "none",
"north": "low",
@@ -39927,7 +44251,7 @@
}
},
{
- "id": 21703,
+ "id": 22188,
"properties": {
"east": "none",
"north": "low",
@@ -39938,7 +44262,7 @@
}
},
{
- "id": 21704,
+ "id": 22189,
"properties": {
"east": "none",
"north": "low",
@@ -39949,7 +44273,7 @@
}
},
{
- "id": 21705,
+ "id": 22190,
"properties": {
"east": "none",
"north": "low",
@@ -39960,7 +44284,7 @@
}
},
{
- "id": 21706,
+ "id": 22191,
"properties": {
"east": "none",
"north": "low",
@@ -39971,7 +44295,7 @@
}
},
{
- "id": 21707,
+ "id": 22192,
"properties": {
"east": "none",
"north": "low",
@@ -39982,7 +44306,7 @@
}
},
{
- "id": 21708,
+ "id": 22193,
"properties": {
"east": "none",
"north": "low",
@@ -39993,7 +44317,7 @@
}
},
{
- "id": 21709,
+ "id": 22194,
"properties": {
"east": "none",
"north": "low",
@@ -40004,7 +44328,7 @@
}
},
{
- "id": 21710,
+ "id": 22195,
"properties": {
"east": "none",
"north": "low",
@@ -40015,7 +44339,7 @@
}
},
{
- "id": 21711,
+ "id": 22196,
"properties": {
"east": "none",
"north": "low",
@@ -40026,7 +44350,7 @@
}
},
{
- "id": 21712,
+ "id": 22197,
"properties": {
"east": "none",
"north": "low",
@@ -40037,7 +44361,7 @@
}
},
{
- "id": 21713,
+ "id": 22198,
"properties": {
"east": "none",
"north": "low",
@@ -40048,7 +44372,7 @@
}
},
{
- "id": 21714,
+ "id": 22199,
"properties": {
"east": "none",
"north": "low",
@@ -40059,7 +44383,7 @@
}
},
{
- "id": 21715,
+ "id": 22200,
"properties": {
"east": "none",
"north": "low",
@@ -40070,7 +44394,7 @@
}
},
{
- "id": 21716,
+ "id": 22201,
"properties": {
"east": "none",
"north": "low",
@@ -40081,7 +44405,7 @@
}
},
{
- "id": 21717,
+ "id": 22202,
"properties": {
"east": "none",
"north": "low",
@@ -40092,7 +44416,7 @@
}
},
{
- "id": 21718,
+ "id": 22203,
"properties": {
"east": "none",
"north": "low",
@@ -40103,7 +44427,7 @@
}
},
{
- "id": 21719,
+ "id": 22204,
"properties": {
"east": "none",
"north": "low",
@@ -40114,7 +44438,7 @@
}
},
{
- "id": 21720,
+ "id": 22205,
"properties": {
"east": "none",
"north": "low",
@@ -40125,7 +44449,7 @@
}
},
{
- "id": 21721,
+ "id": 22206,
"properties": {
"east": "none",
"north": "low",
@@ -40136,7 +44460,7 @@
}
},
{
- "id": 21722,
+ "id": 22207,
"properties": {
"east": "none",
"north": "low",
@@ -40147,7 +44471,7 @@
}
},
{
- "id": 21723,
+ "id": 22208,
"properties": {
"east": "none",
"north": "low",
@@ -40158,7 +44482,7 @@
}
},
{
- "id": 21724,
+ "id": 22209,
"properties": {
"east": "none",
"north": "tall",
@@ -40169,7 +44493,7 @@
}
},
{
- "id": 21725,
+ "id": 22210,
"properties": {
"east": "none",
"north": "tall",
@@ -40180,7 +44504,7 @@
}
},
{
- "id": 21726,
+ "id": 22211,
"properties": {
"east": "none",
"north": "tall",
@@ -40191,7 +44515,7 @@
}
},
{
- "id": 21727,
+ "id": 22212,
"properties": {
"east": "none",
"north": "tall",
@@ -40202,7 +44526,7 @@
}
},
{
- "id": 21728,
+ "id": 22213,
"properties": {
"east": "none",
"north": "tall",
@@ -40213,7 +44537,7 @@
}
},
{
- "id": 21729,
+ "id": 22214,
"properties": {
"east": "none",
"north": "tall",
@@ -40224,7 +44548,7 @@
}
},
{
- "id": 21730,
+ "id": 22215,
"properties": {
"east": "none",
"north": "tall",
@@ -40235,7 +44559,7 @@
}
},
{
- "id": 21731,
+ "id": 22216,
"properties": {
"east": "none",
"north": "tall",
@@ -40246,7 +44570,7 @@
}
},
{
- "id": 21732,
+ "id": 22217,
"properties": {
"east": "none",
"north": "tall",
@@ -40257,7 +44581,7 @@
}
},
{
- "id": 21733,
+ "id": 22218,
"properties": {
"east": "none",
"north": "tall",
@@ -40268,7 +44592,7 @@
}
},
{
- "id": 21734,
+ "id": 22219,
"properties": {
"east": "none",
"north": "tall",
@@ -40279,7 +44603,7 @@
}
},
{
- "id": 21735,
+ "id": 22220,
"properties": {
"east": "none",
"north": "tall",
@@ -40290,7 +44614,7 @@
}
},
{
- "id": 21736,
+ "id": 22221,
"properties": {
"east": "none",
"north": "tall",
@@ -40301,7 +44625,7 @@
}
},
{
- "id": 21737,
+ "id": 22222,
"properties": {
"east": "none",
"north": "tall",
@@ -40312,7 +44636,7 @@
}
},
{
- "id": 21738,
+ "id": 22223,
"properties": {
"east": "none",
"north": "tall",
@@ -40323,7 +44647,7 @@
}
},
{
- "id": 21739,
+ "id": 22224,
"properties": {
"east": "none",
"north": "tall",
@@ -40334,7 +44658,7 @@
}
},
{
- "id": 21740,
+ "id": 22225,
"properties": {
"east": "none",
"north": "tall",
@@ -40345,7 +44669,7 @@
}
},
{
- "id": 21741,
+ "id": 22226,
"properties": {
"east": "none",
"north": "tall",
@@ -40356,7 +44680,7 @@
}
},
{
- "id": 21742,
+ "id": 22227,
"properties": {
"east": "none",
"north": "tall",
@@ -40367,7 +44691,7 @@
}
},
{
- "id": 21743,
+ "id": 22228,
"properties": {
"east": "none",
"north": "tall",
@@ -40378,7 +44702,7 @@
}
},
{
- "id": 21744,
+ "id": 22229,
"properties": {
"east": "none",
"north": "tall",
@@ -40389,7 +44713,7 @@
}
},
{
- "id": 21745,
+ "id": 22230,
"properties": {
"east": "none",
"north": "tall",
@@ -40400,7 +44724,7 @@
}
},
{
- "id": 21746,
+ "id": 22231,
"properties": {
"east": "none",
"north": "tall",
@@ -40411,7 +44735,7 @@
}
},
{
- "id": 21747,
+ "id": 22232,
"properties": {
"east": "none",
"north": "tall",
@@ -40422,7 +44746,7 @@
}
},
{
- "id": 21748,
+ "id": 22233,
"properties": {
"east": "none",
"north": "tall",
@@ -40433,7 +44757,7 @@
}
},
{
- "id": 21749,
+ "id": 22234,
"properties": {
"east": "none",
"north": "tall",
@@ -40444,7 +44768,7 @@
}
},
{
- "id": 21750,
+ "id": 22235,
"properties": {
"east": "none",
"north": "tall",
@@ -40455,7 +44779,7 @@
}
},
{
- "id": 21751,
+ "id": 22236,
"properties": {
"east": "none",
"north": "tall",
@@ -40466,7 +44790,7 @@
}
},
{
- "id": 21752,
+ "id": 22237,
"properties": {
"east": "none",
"north": "tall",
@@ -40477,7 +44801,7 @@
}
},
{
- "id": 21753,
+ "id": 22238,
"properties": {
"east": "none",
"north": "tall",
@@ -40488,7 +44812,7 @@
}
},
{
- "id": 21754,
+ "id": 22239,
"properties": {
"east": "none",
"north": "tall",
@@ -40499,7 +44823,7 @@
}
},
{
- "id": 21755,
+ "id": 22240,
"properties": {
"east": "none",
"north": "tall",
@@ -40510,7 +44834,7 @@
}
},
{
- "id": 21756,
+ "id": 22241,
"properties": {
"east": "none",
"north": "tall",
@@ -40521,7 +44845,7 @@
}
},
{
- "id": 21757,
+ "id": 22242,
"properties": {
"east": "none",
"north": "tall",
@@ -40532,7 +44856,7 @@
}
},
{
- "id": 21758,
+ "id": 22243,
"properties": {
"east": "none",
"north": "tall",
@@ -40543,7 +44867,7 @@
}
},
{
- "id": 21759,
+ "id": 22244,
"properties": {
"east": "none",
"north": "tall",
@@ -40554,7 +44878,7 @@
}
},
{
- "id": 21760,
+ "id": 22245,
"properties": {
"east": "low",
"north": "none",
@@ -40565,7 +44889,7 @@
}
},
{
- "id": 21761,
+ "id": 22246,
"properties": {
"east": "low",
"north": "none",
@@ -40576,7 +44900,7 @@
}
},
{
- "id": 21762,
+ "id": 22247,
"properties": {
"east": "low",
"north": "none",
@@ -40587,7 +44911,7 @@
}
},
{
- "id": 21763,
+ "id": 22248,
"properties": {
"east": "low",
"north": "none",
@@ -40598,7 +44922,7 @@
}
},
{
- "id": 21764,
+ "id": 22249,
"properties": {
"east": "low",
"north": "none",
@@ -40609,7 +44933,7 @@
}
},
{
- "id": 21765,
+ "id": 22250,
"properties": {
"east": "low",
"north": "none",
@@ -40620,7 +44944,7 @@
}
},
{
- "id": 21766,
+ "id": 22251,
"properties": {
"east": "low",
"north": "none",
@@ -40631,7 +44955,7 @@
}
},
{
- "id": 21767,
+ "id": 22252,
"properties": {
"east": "low",
"north": "none",
@@ -40642,7 +44966,7 @@
}
},
{
- "id": 21768,
+ "id": 22253,
"properties": {
"east": "low",
"north": "none",
@@ -40653,7 +44977,7 @@
}
},
{
- "id": 21769,
+ "id": 22254,
"properties": {
"east": "low",
"north": "none",
@@ -40664,7 +44988,7 @@
}
},
{
- "id": 21770,
+ "id": 22255,
"properties": {
"east": "low",
"north": "none",
@@ -40675,7 +44999,7 @@
}
},
{
- "id": 21771,
+ "id": 22256,
"properties": {
"east": "low",
"north": "none",
@@ -40686,7 +45010,7 @@
}
},
{
- "id": 21772,
+ "id": 22257,
"properties": {
"east": "low",
"north": "none",
@@ -40697,7 +45021,7 @@
}
},
{
- "id": 21773,
+ "id": 22258,
"properties": {
"east": "low",
"north": "none",
@@ -40708,7 +45032,7 @@
}
},
{
- "id": 21774,
+ "id": 22259,
"properties": {
"east": "low",
"north": "none",
@@ -40719,7 +45043,7 @@
}
},
{
- "id": 21775,
+ "id": 22260,
"properties": {
"east": "low",
"north": "none",
@@ -40730,7 +45054,7 @@
}
},
{
- "id": 21776,
+ "id": 22261,
"properties": {
"east": "low",
"north": "none",
@@ -40741,7 +45065,7 @@
}
},
{
- "id": 21777,
+ "id": 22262,
"properties": {
"east": "low",
"north": "none",
@@ -40752,7 +45076,7 @@
}
},
{
- "id": 21778,
+ "id": 22263,
"properties": {
"east": "low",
"north": "none",
@@ -40763,7 +45087,7 @@
}
},
{
- "id": 21779,
+ "id": 22264,
"properties": {
"east": "low",
"north": "none",
@@ -40774,7 +45098,7 @@
}
},
{
- "id": 21780,
+ "id": 22265,
"properties": {
"east": "low",
"north": "none",
@@ -40785,7 +45109,7 @@
}
},
{
- "id": 21781,
+ "id": 22266,
"properties": {
"east": "low",
"north": "none",
@@ -40796,7 +45120,7 @@
}
},
{
- "id": 21782,
+ "id": 22267,
"properties": {
"east": "low",
"north": "none",
@@ -40807,7 +45131,7 @@
}
},
{
- "id": 21783,
+ "id": 22268,
"properties": {
"east": "low",
"north": "none",
@@ -40818,7 +45142,7 @@
}
},
{
- "id": 21784,
+ "id": 22269,
"properties": {
"east": "low",
"north": "none",
@@ -40829,7 +45153,7 @@
}
},
{
- "id": 21785,
+ "id": 22270,
"properties": {
"east": "low",
"north": "none",
@@ -40840,7 +45164,7 @@
}
},
{
- "id": 21786,
+ "id": 22271,
"properties": {
"east": "low",
"north": "none",
@@ -40851,7 +45175,7 @@
}
},
{
- "id": 21787,
+ "id": 22272,
"properties": {
"east": "low",
"north": "none",
@@ -40862,7 +45186,7 @@
}
},
{
- "id": 21788,
+ "id": 22273,
"properties": {
"east": "low",
"north": "none",
@@ -40873,7 +45197,7 @@
}
},
{
- "id": 21789,
+ "id": 22274,
"properties": {
"east": "low",
"north": "none",
@@ -40884,7 +45208,7 @@
}
},
{
- "id": 21790,
+ "id": 22275,
"properties": {
"east": "low",
"north": "none",
@@ -40895,7 +45219,7 @@
}
},
{
- "id": 21791,
+ "id": 22276,
"properties": {
"east": "low",
"north": "none",
@@ -40906,7 +45230,7 @@
}
},
{
- "id": 21792,
+ "id": 22277,
"properties": {
"east": "low",
"north": "none",
@@ -40917,7 +45241,7 @@
}
},
{
- "id": 21793,
+ "id": 22278,
"properties": {
"east": "low",
"north": "none",
@@ -40928,7 +45252,7 @@
}
},
{
- "id": 21794,
+ "id": 22279,
"properties": {
"east": "low",
"north": "none",
@@ -40939,7 +45263,7 @@
}
},
{
- "id": 21795,
+ "id": 22280,
"properties": {
"east": "low",
"north": "none",
@@ -40950,7 +45274,7 @@
}
},
{
- "id": 21796,
+ "id": 22281,
"properties": {
"east": "low",
"north": "low",
@@ -40961,7 +45285,7 @@
}
},
{
- "id": 21797,
+ "id": 22282,
"properties": {
"east": "low",
"north": "low",
@@ -40972,7 +45296,7 @@
}
},
{
- "id": 21798,
+ "id": 22283,
"properties": {
"east": "low",
"north": "low",
@@ -40983,7 +45307,7 @@
}
},
{
- "id": 21799,
+ "id": 22284,
"properties": {
"east": "low",
"north": "low",
@@ -40994,7 +45318,7 @@
}
},
{
- "id": 21800,
+ "id": 22285,
"properties": {
"east": "low",
"north": "low",
@@ -41005,7 +45329,7 @@
}
},
{
- "id": 21801,
+ "id": 22286,
"properties": {
"east": "low",
"north": "low",
@@ -41016,7 +45340,7 @@
}
},
{
- "id": 21802,
+ "id": 22287,
"properties": {
"east": "low",
"north": "low",
@@ -41027,7 +45351,7 @@
}
},
{
- "id": 21803,
+ "id": 22288,
"properties": {
"east": "low",
"north": "low",
@@ -41038,7 +45362,7 @@
}
},
{
- "id": 21804,
+ "id": 22289,
"properties": {
"east": "low",
"north": "low",
@@ -41049,7 +45373,7 @@
}
},
{
- "id": 21805,
+ "id": 22290,
"properties": {
"east": "low",
"north": "low",
@@ -41060,7 +45384,7 @@
}
},
{
- "id": 21806,
+ "id": 22291,
"properties": {
"east": "low",
"north": "low",
@@ -41071,7 +45395,7 @@
}
},
{
- "id": 21807,
+ "id": 22292,
"properties": {
"east": "low",
"north": "low",
@@ -41082,7 +45406,7 @@
}
},
{
- "id": 21808,
+ "id": 22293,
"properties": {
"east": "low",
"north": "low",
@@ -41093,7 +45417,7 @@
}
},
{
- "id": 21809,
+ "id": 22294,
"properties": {
"east": "low",
"north": "low",
@@ -41104,7 +45428,7 @@
}
},
{
- "id": 21810,
+ "id": 22295,
"properties": {
"east": "low",
"north": "low",
@@ -41115,7 +45439,7 @@
}
},
{
- "id": 21811,
+ "id": 22296,
"properties": {
"east": "low",
"north": "low",
@@ -41126,7 +45450,7 @@
}
},
{
- "id": 21812,
+ "id": 22297,
"properties": {
"east": "low",
"north": "low",
@@ -41137,7 +45461,7 @@
}
},
{
- "id": 21813,
+ "id": 22298,
"properties": {
"east": "low",
"north": "low",
@@ -41148,7 +45472,7 @@
}
},
{
- "id": 21814,
+ "id": 22299,
"properties": {
"east": "low",
"north": "low",
@@ -41159,7 +45483,7 @@
}
},
{
- "id": 21815,
+ "id": 22300,
"properties": {
"east": "low",
"north": "low",
@@ -41170,7 +45494,7 @@
}
},
{
- "id": 21816,
+ "id": 22301,
"properties": {
"east": "low",
"north": "low",
@@ -41181,7 +45505,7 @@
}
},
{
- "id": 21817,
+ "id": 22302,
"properties": {
"east": "low",
"north": "low",
@@ -41192,7 +45516,7 @@
}
},
{
- "id": 21818,
+ "id": 22303,
"properties": {
"east": "low",
"north": "low",
@@ -41203,7 +45527,7 @@
}
},
{
- "id": 21819,
+ "id": 22304,
"properties": {
"east": "low",
"north": "low",
@@ -41214,7 +45538,7 @@
}
},
{
- "id": 21820,
+ "id": 22305,
"properties": {
"east": "low",
"north": "low",
@@ -41225,7 +45549,7 @@
}
},
{
- "id": 21821,
+ "id": 22306,
"properties": {
"east": "low",
"north": "low",
@@ -41236,7 +45560,7 @@
}
},
{
- "id": 21822,
+ "id": 22307,
"properties": {
"east": "low",
"north": "low",
@@ -41247,7 +45571,7 @@
}
},
{
- "id": 21823,
+ "id": 22308,
"properties": {
"east": "low",
"north": "low",
@@ -41258,7 +45582,7 @@
}
},
{
- "id": 21824,
+ "id": 22309,
"properties": {
"east": "low",
"north": "low",
@@ -41269,7 +45593,7 @@
}
},
{
- "id": 21825,
+ "id": 22310,
"properties": {
"east": "low",
"north": "low",
@@ -41280,7 +45604,7 @@
}
},
{
- "id": 21826,
+ "id": 22311,
"properties": {
"east": "low",
"north": "low",
@@ -41291,7 +45615,7 @@
}
},
{
- "id": 21827,
+ "id": 22312,
"properties": {
"east": "low",
"north": "low",
@@ -41302,7 +45626,7 @@
}
},
{
- "id": 21828,
+ "id": 22313,
"properties": {
"east": "low",
"north": "low",
@@ -41313,7 +45637,7 @@
}
},
{
- "id": 21829,
+ "id": 22314,
"properties": {
"east": "low",
"north": "low",
@@ -41324,7 +45648,7 @@
}
},
{
- "id": 21830,
+ "id": 22315,
"properties": {
"east": "low",
"north": "low",
@@ -41335,7 +45659,7 @@
}
},
{
- "id": 21831,
+ "id": 22316,
"properties": {
"east": "low",
"north": "low",
@@ -41346,7 +45670,7 @@
}
},
{
- "id": 21832,
+ "id": 22317,
"properties": {
"east": "low",
"north": "tall",
@@ -41357,7 +45681,7 @@
}
},
{
- "id": 21833,
+ "id": 22318,
"properties": {
"east": "low",
"north": "tall",
@@ -41368,7 +45692,7 @@
}
},
{
- "id": 21834,
+ "id": 22319,
"properties": {
"east": "low",
"north": "tall",
@@ -41379,7 +45703,7 @@
}
},
{
- "id": 21835,
+ "id": 22320,
"properties": {
"east": "low",
"north": "tall",
@@ -41390,7 +45714,7 @@
}
},
{
- "id": 21836,
+ "id": 22321,
"properties": {
"east": "low",
"north": "tall",
@@ -41401,7 +45725,7 @@
}
},
{
- "id": 21837,
+ "id": 22322,
"properties": {
"east": "low",
"north": "tall",
@@ -41412,7 +45736,7 @@
}
},
{
- "id": 21838,
+ "id": 22323,
"properties": {
"east": "low",
"north": "tall",
@@ -41423,7 +45747,7 @@
}
},
{
- "id": 21839,
+ "id": 22324,
"properties": {
"east": "low",
"north": "tall",
@@ -41434,7 +45758,7 @@
}
},
{
- "id": 21840,
+ "id": 22325,
"properties": {
"east": "low",
"north": "tall",
@@ -41445,7 +45769,7 @@
}
},
{
- "id": 21841,
+ "id": 22326,
"properties": {
"east": "low",
"north": "tall",
@@ -41456,7 +45780,7 @@
}
},
{
- "id": 21842,
+ "id": 22327,
"properties": {
"east": "low",
"north": "tall",
@@ -41467,7 +45791,7 @@
}
},
{
- "id": 21843,
+ "id": 22328,
"properties": {
"east": "low",
"north": "tall",
@@ -41478,7 +45802,7 @@
}
},
{
- "id": 21844,
+ "id": 22329,
"properties": {
"east": "low",
"north": "tall",
@@ -41489,7 +45813,7 @@
}
},
{
- "id": 21845,
+ "id": 22330,
"properties": {
"east": "low",
"north": "tall",
@@ -41500,7 +45824,7 @@
}
},
{
- "id": 21846,
+ "id": 22331,
"properties": {
"east": "low",
"north": "tall",
@@ -41511,7 +45835,7 @@
}
},
{
- "id": 21847,
+ "id": 22332,
"properties": {
"east": "low",
"north": "tall",
@@ -41522,7 +45846,7 @@
}
},
{
- "id": 21848,
+ "id": 22333,
"properties": {
"east": "low",
"north": "tall",
@@ -41533,7 +45857,7 @@
}
},
{
- "id": 21849,
+ "id": 22334,
"properties": {
"east": "low",
"north": "tall",
@@ -41544,7 +45868,7 @@
}
},
{
- "id": 21850,
+ "id": 22335,
"properties": {
"east": "low",
"north": "tall",
@@ -41555,7 +45879,7 @@
}
},
{
- "id": 21851,
+ "id": 22336,
"properties": {
"east": "low",
"north": "tall",
@@ -41566,7 +45890,7 @@
}
},
{
- "id": 21852,
+ "id": 22337,
"properties": {
"east": "low",
"north": "tall",
@@ -41577,7 +45901,7 @@
}
},
{
- "id": 21853,
+ "id": 22338,
"properties": {
"east": "low",
"north": "tall",
@@ -41588,7 +45912,7 @@
}
},
{
- "id": 21854,
+ "id": 22339,
"properties": {
"east": "low",
"north": "tall",
@@ -41599,7 +45923,7 @@
}
},
{
- "id": 21855,
+ "id": 22340,
"properties": {
"east": "low",
"north": "tall",
@@ -41610,7 +45934,7 @@
}
},
{
- "id": 21856,
+ "id": 22341,
"properties": {
"east": "low",
"north": "tall",
@@ -41621,7 +45945,7 @@
}
},
{
- "id": 21857,
+ "id": 22342,
"properties": {
"east": "low",
"north": "tall",
@@ -41632,7 +45956,7 @@
}
},
{
- "id": 21858,
+ "id": 22343,
"properties": {
"east": "low",
"north": "tall",
@@ -41643,7 +45967,7 @@
}
},
{
- "id": 21859,
+ "id": 22344,
"properties": {
"east": "low",
"north": "tall",
@@ -41654,7 +45978,7 @@
}
},
{
- "id": 21860,
+ "id": 22345,
"properties": {
"east": "low",
"north": "tall",
@@ -41665,7 +45989,7 @@
}
},
{
- "id": 21861,
+ "id": 22346,
"properties": {
"east": "low",
"north": "tall",
@@ -41676,7 +46000,7 @@
}
},
{
- "id": 21862,
+ "id": 22347,
"properties": {
"east": "low",
"north": "tall",
@@ -41687,7 +46011,7 @@
}
},
{
- "id": 21863,
+ "id": 22348,
"properties": {
"east": "low",
"north": "tall",
@@ -41698,7 +46022,7 @@
}
},
{
- "id": 21864,
+ "id": 22349,
"properties": {
"east": "low",
"north": "tall",
@@ -41709,7 +46033,7 @@
}
},
{
- "id": 21865,
+ "id": 22350,
"properties": {
"east": "low",
"north": "tall",
@@ -41720,7 +46044,7 @@
}
},
{
- "id": 21866,
+ "id": 22351,
"properties": {
"east": "low",
"north": "tall",
@@ -41731,7 +46055,7 @@
}
},
{
- "id": 21867,
+ "id": 22352,
"properties": {
"east": "low",
"north": "tall",
@@ -41742,7 +46066,7 @@
}
},
{
- "id": 21868,
+ "id": 22353,
"properties": {
"east": "tall",
"north": "none",
@@ -41753,7 +46077,7 @@
}
},
{
- "id": 21869,
+ "id": 22354,
"properties": {
"east": "tall",
"north": "none",
@@ -41764,7 +46088,7 @@
}
},
{
- "id": 21870,
+ "id": 22355,
"properties": {
"east": "tall",
"north": "none",
@@ -41775,7 +46099,7 @@
}
},
{
- "id": 21871,
+ "id": 22356,
"properties": {
"east": "tall",
"north": "none",
@@ -41786,7 +46110,7 @@
}
},
{
- "id": 21872,
+ "id": 22357,
"properties": {
"east": "tall",
"north": "none",
@@ -41797,7 +46121,7 @@
}
},
{
- "id": 21873,
+ "id": 22358,
"properties": {
"east": "tall",
"north": "none",
@@ -41808,7 +46132,7 @@
}
},
{
- "id": 21874,
+ "id": 22359,
"properties": {
"east": "tall",
"north": "none",
@@ -41819,7 +46143,7 @@
}
},
{
- "id": 21875,
+ "id": 22360,
"properties": {
"east": "tall",
"north": "none",
@@ -41830,7 +46154,7 @@
}
},
{
- "id": 21876,
+ "id": 22361,
"properties": {
"east": "tall",
"north": "none",
@@ -41841,7 +46165,7 @@
}
},
{
- "id": 21877,
+ "id": 22362,
"properties": {
"east": "tall",
"north": "none",
@@ -41852,7 +46176,7 @@
}
},
{
- "id": 21878,
+ "id": 22363,
"properties": {
"east": "tall",
"north": "none",
@@ -41863,7 +46187,7 @@
}
},
{
- "id": 21879,
+ "id": 22364,
"properties": {
"east": "tall",
"north": "none",
@@ -41874,7 +46198,7 @@
}
},
{
- "id": 21880,
+ "id": 22365,
"properties": {
"east": "tall",
"north": "none",
@@ -41885,7 +46209,7 @@
}
},
{
- "id": 21881,
+ "id": 22366,
"properties": {
"east": "tall",
"north": "none",
@@ -41896,7 +46220,7 @@
}
},
{
- "id": 21882,
+ "id": 22367,
"properties": {
"east": "tall",
"north": "none",
@@ -41907,7 +46231,7 @@
}
},
{
- "id": 21883,
+ "id": 22368,
"properties": {
"east": "tall",
"north": "none",
@@ -41918,7 +46242,7 @@
}
},
{
- "id": 21884,
+ "id": 22369,
"properties": {
"east": "tall",
"north": "none",
@@ -41929,7 +46253,7 @@
}
},
{
- "id": 21885,
+ "id": 22370,
"properties": {
"east": "tall",
"north": "none",
@@ -41940,7 +46264,7 @@
}
},
{
- "id": 21886,
+ "id": 22371,
"properties": {
"east": "tall",
"north": "none",
@@ -41951,7 +46275,7 @@
}
},
{
- "id": 21887,
+ "id": 22372,
"properties": {
"east": "tall",
"north": "none",
@@ -41962,7 +46286,7 @@
}
},
{
- "id": 21888,
+ "id": 22373,
"properties": {
"east": "tall",
"north": "none",
@@ -41973,7 +46297,7 @@
}
},
{
- "id": 21889,
+ "id": 22374,
"properties": {
"east": "tall",
"north": "none",
@@ -41984,7 +46308,7 @@
}
},
{
- "id": 21890,
+ "id": 22375,
"properties": {
"east": "tall",
"north": "none",
@@ -41995,7 +46319,7 @@
}
},
{
- "id": 21891,
+ "id": 22376,
"properties": {
"east": "tall",
"north": "none",
@@ -42006,7 +46330,7 @@
}
},
{
- "id": 21892,
+ "id": 22377,
"properties": {
"east": "tall",
"north": "none",
@@ -42017,7 +46341,7 @@
}
},
{
- "id": 21893,
+ "id": 22378,
"properties": {
"east": "tall",
"north": "none",
@@ -42028,7 +46352,7 @@
}
},
{
- "id": 21894,
+ "id": 22379,
"properties": {
"east": "tall",
"north": "none",
@@ -42039,7 +46363,7 @@
}
},
{
- "id": 21895,
+ "id": 22380,
"properties": {
"east": "tall",
"north": "none",
@@ -42050,7 +46374,7 @@
}
},
{
- "id": 21896,
+ "id": 22381,
"properties": {
"east": "tall",
"north": "none",
@@ -42061,7 +46385,7 @@
}
},
{
- "id": 21897,
+ "id": 22382,
"properties": {
"east": "tall",
"north": "none",
@@ -42072,7 +46396,7 @@
}
},
{
- "id": 21898,
+ "id": 22383,
"properties": {
"east": "tall",
"north": "none",
@@ -42083,7 +46407,7 @@
}
},
{
- "id": 21899,
+ "id": 22384,
"properties": {
"east": "tall",
"north": "none",
@@ -42094,7 +46418,7 @@
}
},
{
- "id": 21900,
+ "id": 22385,
"properties": {
"east": "tall",
"north": "none",
@@ -42105,7 +46429,7 @@
}
},
{
- "id": 21901,
+ "id": 22386,
"properties": {
"east": "tall",
"north": "none",
@@ -42116,7 +46440,7 @@
}
},
{
- "id": 21902,
+ "id": 22387,
"properties": {
"east": "tall",
"north": "none",
@@ -42127,7 +46451,7 @@
}
},
{
- "id": 21903,
+ "id": 22388,
"properties": {
"east": "tall",
"north": "none",
@@ -42138,7 +46462,7 @@
}
},
{
- "id": 21904,
+ "id": 22389,
"properties": {
"east": "tall",
"north": "low",
@@ -42149,7 +46473,7 @@
}
},
{
- "id": 21905,
+ "id": 22390,
"properties": {
"east": "tall",
"north": "low",
@@ -42160,7 +46484,7 @@
}
},
{
- "id": 21906,
+ "id": 22391,
"properties": {
"east": "tall",
"north": "low",
@@ -42171,7 +46495,7 @@
}
},
{
- "id": 21907,
+ "id": 22392,
"properties": {
"east": "tall",
"north": "low",
@@ -42182,7 +46506,7 @@
}
},
{
- "id": 21908,
+ "id": 22393,
"properties": {
"east": "tall",
"north": "low",
@@ -42193,7 +46517,7 @@
}
},
{
- "id": 21909,
+ "id": 22394,
"properties": {
"east": "tall",
"north": "low",
@@ -42204,7 +46528,7 @@
}
},
{
- "id": 21910,
+ "id": 22395,
"properties": {
"east": "tall",
"north": "low",
@@ -42215,7 +46539,7 @@
}
},
{
- "id": 21911,
+ "id": 22396,
"properties": {
"east": "tall",
"north": "low",
@@ -42226,7 +46550,7 @@
}
},
{
- "id": 21912,
+ "id": 22397,
"properties": {
"east": "tall",
"north": "low",
@@ -42237,7 +46561,7 @@
}
},
{
- "id": 21913,
+ "id": 22398,
"properties": {
"east": "tall",
"north": "low",
@@ -42248,7 +46572,7 @@
}
},
{
- "id": 21914,
+ "id": 22399,
"properties": {
"east": "tall",
"north": "low",
@@ -42259,7 +46583,7 @@
}
},
{
- "id": 21915,
+ "id": 22400,
"properties": {
"east": "tall",
"north": "low",
@@ -42270,7 +46594,7 @@
}
},
{
- "id": 21916,
+ "id": 22401,
"properties": {
"east": "tall",
"north": "low",
@@ -42281,7 +46605,7 @@
}
},
{
- "id": 21917,
+ "id": 22402,
"properties": {
"east": "tall",
"north": "low",
@@ -42292,7 +46616,7 @@
}
},
{
- "id": 21918,
+ "id": 22403,
"properties": {
"east": "tall",
"north": "low",
@@ -42303,7 +46627,7 @@
}
},
{
- "id": 21919,
+ "id": 22404,
"properties": {
"east": "tall",
"north": "low",
@@ -42314,7 +46638,7 @@
}
},
{
- "id": 21920,
+ "id": 22405,
"properties": {
"east": "tall",
"north": "low",
@@ -42325,7 +46649,7 @@
}
},
{
- "id": 21921,
+ "id": 22406,
"properties": {
"east": "tall",
"north": "low",
@@ -42336,7 +46660,7 @@
}
},
{
- "id": 21922,
+ "id": 22407,
"properties": {
"east": "tall",
"north": "low",
@@ -42347,7 +46671,7 @@
}
},
{
- "id": 21923,
+ "id": 22408,
"properties": {
"east": "tall",
"north": "low",
@@ -42358,7 +46682,7 @@
}
},
{
- "id": 21924,
+ "id": 22409,
"properties": {
"east": "tall",
"north": "low",
@@ -42369,7 +46693,7 @@
}
},
{
- "id": 21925,
+ "id": 22410,
"properties": {
"east": "tall",
"north": "low",
@@ -42380,7 +46704,7 @@
}
},
{
- "id": 21926,
+ "id": 22411,
"properties": {
"east": "tall",
"north": "low",
@@ -42391,7 +46715,7 @@
}
},
{
- "id": 21927,
+ "id": 22412,
"properties": {
"east": "tall",
"north": "low",
@@ -42402,7 +46726,7 @@
}
},
{
- "id": 21928,
+ "id": 22413,
"properties": {
"east": "tall",
"north": "low",
@@ -42413,7 +46737,7 @@
}
},
{
- "id": 21929,
+ "id": 22414,
"properties": {
"east": "tall",
"north": "low",
@@ -42424,7 +46748,7 @@
}
},
{
- "id": 21930,
+ "id": 22415,
"properties": {
"east": "tall",
"north": "low",
@@ -42435,7 +46759,7 @@
}
},
{
- "id": 21931,
+ "id": 22416,
"properties": {
"east": "tall",
"north": "low",
@@ -42446,7 +46770,7 @@
}
},
{
- "id": 21932,
+ "id": 22417,
"properties": {
"east": "tall",
"north": "low",
@@ -42457,7 +46781,7 @@
}
},
{
- "id": 21933,
+ "id": 22418,
"properties": {
"east": "tall",
"north": "low",
@@ -42468,7 +46792,7 @@
}
},
{
- "id": 21934,
+ "id": 22419,
"properties": {
"east": "tall",
"north": "low",
@@ -42479,7 +46803,7 @@
}
},
{
- "id": 21935,
+ "id": 22420,
"properties": {
"east": "tall",
"north": "low",
@@ -42490,7 +46814,7 @@
}
},
{
- "id": 21936,
+ "id": 22421,
"properties": {
"east": "tall",
"north": "low",
@@ -42501,7 +46825,7 @@
}
},
{
- "id": 21937,
+ "id": 22422,
"properties": {
"east": "tall",
"north": "low",
@@ -42512,7 +46836,7 @@
}
},
{
- "id": 21938,
+ "id": 22423,
"properties": {
"east": "tall",
"north": "low",
@@ -42523,7 +46847,7 @@
}
},
{
- "id": 21939,
+ "id": 22424,
"properties": {
"east": "tall",
"north": "low",
@@ -42534,7 +46858,7 @@
}
},
{
- "id": 21940,
+ "id": 22425,
"properties": {
"east": "tall",
"north": "tall",
@@ -42545,7 +46869,7 @@
}
},
{
- "id": 21941,
+ "id": 22426,
"properties": {
"east": "tall",
"north": "tall",
@@ -42556,7 +46880,7 @@
}
},
{
- "id": 21942,
+ "id": 22427,
"properties": {
"east": "tall",
"north": "tall",
@@ -42567,7 +46891,7 @@
}
},
{
- "id": 21943,
+ "id": 22428,
"properties": {
"east": "tall",
"north": "tall",
@@ -42578,7 +46902,7 @@
}
},
{
- "id": 21944,
+ "id": 22429,
"properties": {
"east": "tall",
"north": "tall",
@@ -42589,7 +46913,7 @@
}
},
{
- "id": 21945,
+ "id": 22430,
"properties": {
"east": "tall",
"north": "tall",
@@ -42600,7 +46924,7 @@
}
},
{
- "id": 21946,
+ "id": 22431,
"properties": {
"east": "tall",
"north": "tall",
@@ -42611,7 +46935,7 @@
}
},
{
- "id": 21947,
+ "id": 22432,
"properties": {
"east": "tall",
"north": "tall",
@@ -42622,7 +46946,7 @@
}
},
{
- "id": 21948,
+ "id": 22433,
"properties": {
"east": "tall",
"north": "tall",
@@ -42633,7 +46957,7 @@
}
},
{
- "id": 21949,
+ "id": 22434,
"properties": {
"east": "tall",
"north": "tall",
@@ -42644,7 +46968,7 @@
}
},
{
- "id": 21950,
+ "id": 22435,
"properties": {
"east": "tall",
"north": "tall",
@@ -42655,7 +46979,7 @@
}
},
{
- "id": 21951,
+ "id": 22436,
"properties": {
"east": "tall",
"north": "tall",
@@ -42666,7 +46990,7 @@
}
},
{
- "id": 21952,
+ "id": 22437,
"properties": {
"east": "tall",
"north": "tall",
@@ -42677,7 +47001,7 @@
}
},
{
- "id": 21953,
+ "id": 22438,
"properties": {
"east": "tall",
"north": "tall",
@@ -42688,7 +47012,7 @@
}
},
{
- "id": 21954,
+ "id": 22439,
"properties": {
"east": "tall",
"north": "tall",
@@ -42699,7 +47023,7 @@
}
},
{
- "id": 21955,
+ "id": 22440,
"properties": {
"east": "tall",
"north": "tall",
@@ -42710,7 +47034,7 @@
}
},
{
- "id": 21956,
+ "id": 22441,
"properties": {
"east": "tall",
"north": "tall",
@@ -42721,7 +47045,7 @@
}
},
{
- "id": 21957,
+ "id": 22442,
"properties": {
"east": "tall",
"north": "tall",
@@ -42732,7 +47056,7 @@
}
},
{
- "id": 21958,
+ "id": 22443,
"properties": {
"east": "tall",
"north": "tall",
@@ -42743,7 +47067,7 @@
}
},
{
- "id": 21959,
+ "id": 22444,
"properties": {
"east": "tall",
"north": "tall",
@@ -42754,7 +47078,7 @@
}
},
{
- "id": 21960,
+ "id": 22445,
"properties": {
"east": "tall",
"north": "tall",
@@ -42765,7 +47089,7 @@
}
},
{
- "id": 21961,
+ "id": 22446,
"properties": {
"east": "tall",
"north": "tall",
@@ -42776,7 +47100,7 @@
}
},
{
- "id": 21962,
+ "id": 22447,
"properties": {
"east": "tall",
"north": "tall",
@@ -42787,7 +47111,7 @@
}
},
{
- "id": 21963,
+ "id": 22448,
"properties": {
"east": "tall",
"north": "tall",
@@ -42798,7 +47122,7 @@
}
},
{
- "id": 21964,
+ "id": 22449,
"properties": {
"east": "tall",
"north": "tall",
@@ -42809,7 +47133,7 @@
}
},
{
- "id": 21965,
+ "id": 22450,
"properties": {
"east": "tall",
"north": "tall",
@@ -42820,7 +47144,7 @@
}
},
{
- "id": 21966,
+ "id": 22451,
"properties": {
"east": "tall",
"north": "tall",
@@ -42831,7 +47155,7 @@
}
},
{
- "id": 21967,
+ "id": 22452,
"properties": {
"east": "tall",
"north": "tall",
@@ -42842,7 +47166,7 @@
}
},
{
- "id": 21968,
+ "id": 22453,
"properties": {
"east": "tall",
"north": "tall",
@@ -42853,7 +47177,7 @@
}
},
{
- "id": 21969,
+ "id": 22454,
"properties": {
"east": "tall",
"north": "tall",
@@ -42864,7 +47188,7 @@
}
},
{
- "id": 21970,
+ "id": 22455,
"properties": {
"east": "tall",
"north": "tall",
@@ -42875,7 +47199,7 @@
}
},
{
- "id": 21971,
+ "id": 22456,
"properties": {
"east": "tall",
"north": "tall",
@@ -42886,7 +47210,7 @@
}
},
{
- "id": 21972,
+ "id": 22457,
"properties": {
"east": "tall",
"north": "tall",
@@ -42897,7 +47221,7 @@
}
},
{
- "id": 21973,
+ "id": 22458,
"properties": {
"east": "tall",
"north": "tall",
@@ -42908,7 +47232,7 @@
}
},
{
- "id": 21974,
+ "id": 22459,
"properties": {
"east": "tall",
"north": "tall",
@@ -42919,7 +47243,7 @@
}
},
{
- "id": 21975,
+ "id": 22460,
"properties": {
"east": "tall",
"north": "tall",
@@ -42953,21 +47277,21 @@
},
"states": [
{
- "id": 10769,
+ "id": 11107,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 10770,
+ "id": 11108,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 10771,
+ "id": 11109,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -42975,21 +47299,21 @@
},
{
"default": true,
- "id": 10772,
+ "id": 11110,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 10773,
+ "id": 11111,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 10774,
+ "id": 11112,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -43023,7 +47347,7 @@
},
"states": [
{
- "id": 4598,
+ "id": 4678,
"properties": {
"facing": "north",
"half": "top",
@@ -43032,7 +47356,7 @@
}
},
{
- "id": 4599,
+ "id": 4679,
"properties": {
"facing": "north",
"half": "top",
@@ -43041,7 +47365,7 @@
}
},
{
- "id": 4600,
+ "id": 4680,
"properties": {
"facing": "north",
"half": "top",
@@ -43050,7 +47374,7 @@
}
},
{
- "id": 4601,
+ "id": 4681,
"properties": {
"facing": "north",
"half": "top",
@@ -43059,7 +47383,7 @@
}
},
{
- "id": 4602,
+ "id": 4682,
"properties": {
"facing": "north",
"half": "top",
@@ -43068,7 +47392,7 @@
}
},
{
- "id": 4603,
+ "id": 4683,
"properties": {
"facing": "north",
"half": "top",
@@ -43077,7 +47401,7 @@
}
},
{
- "id": 4604,
+ "id": 4684,
"properties": {
"facing": "north",
"half": "top",
@@ -43086,7 +47410,7 @@
}
},
{
- "id": 4605,
+ "id": 4685,
"properties": {
"facing": "north",
"half": "top",
@@ -43095,7 +47419,7 @@
}
},
{
- "id": 4606,
+ "id": 4686,
"properties": {
"facing": "north",
"half": "top",
@@ -43104,7 +47428,7 @@
}
},
{
- "id": 4607,
+ "id": 4687,
"properties": {
"facing": "north",
"half": "top",
@@ -43113,7 +47437,7 @@
}
},
{
- "id": 4608,
+ "id": 4688,
"properties": {
"facing": "north",
"half": "bottom",
@@ -43123,7 +47447,7 @@
},
{
"default": true,
- "id": 4609,
+ "id": 4689,
"properties": {
"facing": "north",
"half": "bottom",
@@ -43132,7 +47456,7 @@
}
},
{
- "id": 4610,
+ "id": 4690,
"properties": {
"facing": "north",
"half": "bottom",
@@ -43141,7 +47465,7 @@
}
},
{
- "id": 4611,
+ "id": 4691,
"properties": {
"facing": "north",
"half": "bottom",
@@ -43150,7 +47474,7 @@
}
},
{
- "id": 4612,
+ "id": 4692,
"properties": {
"facing": "north",
"half": "bottom",
@@ -43159,7 +47483,7 @@
}
},
{
- "id": 4613,
+ "id": 4693,
"properties": {
"facing": "north",
"half": "bottom",
@@ -43168,7 +47492,7 @@
}
},
{
- "id": 4614,
+ "id": 4694,
"properties": {
"facing": "north",
"half": "bottom",
@@ -43177,7 +47501,7 @@
}
},
{
- "id": 4615,
+ "id": 4695,
"properties": {
"facing": "north",
"half": "bottom",
@@ -43186,7 +47510,7 @@
}
},
{
- "id": 4616,
+ "id": 4696,
"properties": {
"facing": "north",
"half": "bottom",
@@ -43195,7 +47519,7 @@
}
},
{
- "id": 4617,
+ "id": 4697,
"properties": {
"facing": "north",
"half": "bottom",
@@ -43204,7 +47528,7 @@
}
},
{
- "id": 4618,
+ "id": 4698,
"properties": {
"facing": "south",
"half": "top",
@@ -43213,7 +47537,7 @@
}
},
{
- "id": 4619,
+ "id": 4699,
"properties": {
"facing": "south",
"half": "top",
@@ -43222,7 +47546,7 @@
}
},
{
- "id": 4620,
+ "id": 4700,
"properties": {
"facing": "south",
"half": "top",
@@ -43231,7 +47555,7 @@
}
},
{
- "id": 4621,
+ "id": 4701,
"properties": {
"facing": "south",
"half": "top",
@@ -43240,7 +47564,7 @@
}
},
{
- "id": 4622,
+ "id": 4702,
"properties": {
"facing": "south",
"half": "top",
@@ -43249,7 +47573,7 @@
}
},
{
- "id": 4623,
+ "id": 4703,
"properties": {
"facing": "south",
"half": "top",
@@ -43258,7 +47582,7 @@
}
},
{
- "id": 4624,
+ "id": 4704,
"properties": {
"facing": "south",
"half": "top",
@@ -43267,7 +47591,7 @@
}
},
{
- "id": 4625,
+ "id": 4705,
"properties": {
"facing": "south",
"half": "top",
@@ -43276,7 +47600,7 @@
}
},
{
- "id": 4626,
+ "id": 4706,
"properties": {
"facing": "south",
"half": "top",
@@ -43285,7 +47609,7 @@
}
},
{
- "id": 4627,
+ "id": 4707,
"properties": {
"facing": "south",
"half": "top",
@@ -43294,7 +47618,7 @@
}
},
{
- "id": 4628,
+ "id": 4708,
"properties": {
"facing": "south",
"half": "bottom",
@@ -43303,7 +47627,7 @@
}
},
{
- "id": 4629,
+ "id": 4709,
"properties": {
"facing": "south",
"half": "bottom",
@@ -43312,7 +47636,7 @@
}
},
{
- "id": 4630,
+ "id": 4710,
"properties": {
"facing": "south",
"half": "bottom",
@@ -43321,7 +47645,7 @@
}
},
{
- "id": 4631,
+ "id": 4711,
"properties": {
"facing": "south",
"half": "bottom",
@@ -43330,7 +47654,7 @@
}
},
{
- "id": 4632,
+ "id": 4712,
"properties": {
"facing": "south",
"half": "bottom",
@@ -43339,7 +47663,7 @@
}
},
{
- "id": 4633,
+ "id": 4713,
"properties": {
"facing": "south",
"half": "bottom",
@@ -43348,7 +47672,7 @@
}
},
{
- "id": 4634,
+ "id": 4714,
"properties": {
"facing": "south",
"half": "bottom",
@@ -43357,7 +47681,7 @@
}
},
{
- "id": 4635,
+ "id": 4715,
"properties": {
"facing": "south",
"half": "bottom",
@@ -43366,7 +47690,7 @@
}
},
{
- "id": 4636,
+ "id": 4716,
"properties": {
"facing": "south",
"half": "bottom",
@@ -43375,7 +47699,7 @@
}
},
{
- "id": 4637,
+ "id": 4717,
"properties": {
"facing": "south",
"half": "bottom",
@@ -43384,7 +47708,7 @@
}
},
{
- "id": 4638,
+ "id": 4718,
"properties": {
"facing": "west",
"half": "top",
@@ -43393,7 +47717,7 @@
}
},
{
- "id": 4639,
+ "id": 4719,
"properties": {
"facing": "west",
"half": "top",
@@ -43402,7 +47726,7 @@
}
},
{
- "id": 4640,
+ "id": 4720,
"properties": {
"facing": "west",
"half": "top",
@@ -43411,7 +47735,7 @@
}
},
{
- "id": 4641,
+ "id": 4721,
"properties": {
"facing": "west",
"half": "top",
@@ -43420,7 +47744,7 @@
}
},
{
- "id": 4642,
+ "id": 4722,
"properties": {
"facing": "west",
"half": "top",
@@ -43429,7 +47753,7 @@
}
},
{
- "id": 4643,
+ "id": 4723,
"properties": {
"facing": "west",
"half": "top",
@@ -43438,7 +47762,7 @@
}
},
{
- "id": 4644,
+ "id": 4724,
"properties": {
"facing": "west",
"half": "top",
@@ -43447,7 +47771,7 @@
}
},
{
- "id": 4645,
+ "id": 4725,
"properties": {
"facing": "west",
"half": "top",
@@ -43456,7 +47780,7 @@
}
},
{
- "id": 4646,
+ "id": 4726,
"properties": {
"facing": "west",
"half": "top",
@@ -43465,7 +47789,7 @@
}
},
{
- "id": 4647,
+ "id": 4727,
"properties": {
"facing": "west",
"half": "top",
@@ -43474,7 +47798,7 @@
}
},
{
- "id": 4648,
+ "id": 4728,
"properties": {
"facing": "west",
"half": "bottom",
@@ -43483,7 +47807,7 @@
}
},
{
- "id": 4649,
+ "id": 4729,
"properties": {
"facing": "west",
"half": "bottom",
@@ -43492,7 +47816,7 @@
}
},
{
- "id": 4650,
+ "id": 4730,
"properties": {
"facing": "west",
"half": "bottom",
@@ -43501,7 +47825,7 @@
}
},
{
- "id": 4651,
+ "id": 4731,
"properties": {
"facing": "west",
"half": "bottom",
@@ -43510,7 +47834,7 @@
}
},
{
- "id": 4652,
+ "id": 4732,
"properties": {
"facing": "west",
"half": "bottom",
@@ -43519,7 +47843,7 @@
}
},
{
- "id": 4653,
+ "id": 4733,
"properties": {
"facing": "west",
"half": "bottom",
@@ -43528,7 +47852,7 @@
}
},
{
- "id": 4654,
+ "id": 4734,
"properties": {
"facing": "west",
"half": "bottom",
@@ -43537,7 +47861,7 @@
}
},
{
- "id": 4655,
+ "id": 4735,
"properties": {
"facing": "west",
"half": "bottom",
@@ -43546,7 +47870,7 @@
}
},
{
- "id": 4656,
+ "id": 4736,
"properties": {
"facing": "west",
"half": "bottom",
@@ -43555,7 +47879,7 @@
}
},
{
- "id": 4657,
+ "id": 4737,
"properties": {
"facing": "west",
"half": "bottom",
@@ -43564,7 +47888,7 @@
}
},
{
- "id": 4658,
+ "id": 4738,
"properties": {
"facing": "east",
"half": "top",
@@ -43573,7 +47897,7 @@
}
},
{
- "id": 4659,
+ "id": 4739,
"properties": {
"facing": "east",
"half": "top",
@@ -43582,7 +47906,7 @@
}
},
{
- "id": 4660,
+ "id": 4740,
"properties": {
"facing": "east",
"half": "top",
@@ -43591,7 +47915,7 @@
}
},
{
- "id": 4661,
+ "id": 4741,
"properties": {
"facing": "east",
"half": "top",
@@ -43600,7 +47924,7 @@
}
},
{
- "id": 4662,
+ "id": 4742,
"properties": {
"facing": "east",
"half": "top",
@@ -43609,7 +47933,7 @@
}
},
{
- "id": 4663,
+ "id": 4743,
"properties": {
"facing": "east",
"half": "top",
@@ -43618,7 +47942,7 @@
}
},
{
- "id": 4664,
+ "id": 4744,
"properties": {
"facing": "east",
"half": "top",
@@ -43627,7 +47951,7 @@
}
},
{
- "id": 4665,
+ "id": 4745,
"properties": {
"facing": "east",
"half": "top",
@@ -43636,7 +47960,7 @@
}
},
{
- "id": 4666,
+ "id": 4746,
"properties": {
"facing": "east",
"half": "top",
@@ -43645,7 +47969,7 @@
}
},
{
- "id": 4667,
+ "id": 4747,
"properties": {
"facing": "east",
"half": "top",
@@ -43654,7 +47978,7 @@
}
},
{
- "id": 4668,
+ "id": 4748,
"properties": {
"facing": "east",
"half": "bottom",
@@ -43663,7 +47987,7 @@
}
},
{
- "id": 4669,
+ "id": 4749,
"properties": {
"facing": "east",
"half": "bottom",
@@ -43672,7 +47996,7 @@
}
},
{
- "id": 4670,
+ "id": 4750,
"properties": {
"facing": "east",
"half": "bottom",
@@ -43681,7 +48005,7 @@
}
},
{
- "id": 4671,
+ "id": 4751,
"properties": {
"facing": "east",
"half": "bottom",
@@ -43690,7 +48014,7 @@
}
},
{
- "id": 4672,
+ "id": 4752,
"properties": {
"facing": "east",
"half": "bottom",
@@ -43699,7 +48023,7 @@
}
},
{
- "id": 4673,
+ "id": 4753,
"properties": {
"facing": "east",
"half": "bottom",
@@ -43708,7 +48032,7 @@
}
},
{
- "id": 4674,
+ "id": 4754,
"properties": {
"facing": "east",
"half": "bottom",
@@ -43717,7 +48041,7 @@
}
},
{
- "id": 4675,
+ "id": 4755,
"properties": {
"facing": "east",
"half": "bottom",
@@ -43726,7 +48050,7 @@
}
},
{
- "id": 4676,
+ "id": 4756,
"properties": {
"facing": "east",
"half": "bottom",
@@ -43735,7 +48059,7 @@
}
},
{
- "id": 4677,
+ "id": 4757,
"properties": {
"facing": "east",
"half": "bottom",
@@ -43778,7 +48102,7 @@
},
"states": [
{
- "id": 7689,
+ "id": 7915,
"properties": {
"east": "none",
"north": "none",
@@ -43789,7 +48113,7 @@
}
},
{
- "id": 7690,
+ "id": 7916,
"properties": {
"east": "none",
"north": "none",
@@ -43800,7 +48124,7 @@
}
},
{
- "id": 7691,
+ "id": 7917,
"properties": {
"east": "none",
"north": "none",
@@ -43812,2735 +48136,2735 @@
},
{
"default": true,
- "id": 7692,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 7693,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 7694,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 7695,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 7696,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 7697,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 7698,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 7699,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 7700,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 7701,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 7702,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 7703,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 7704,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 7705,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 7706,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 7707,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 7708,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 7709,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 7710,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 7711,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 7712,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 7713,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 7714,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 7715,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 7716,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 7717,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 7718,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 7719,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 7720,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 7721,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 7722,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 7723,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 7724,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 7725,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 7726,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 7727,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 7728,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 7729,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 7730,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 7731,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 7732,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 7733,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 7734,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 7735,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 7736,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 7737,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 7738,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 7739,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 7740,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 7741,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 7742,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 7743,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 7744,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 7745,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 7746,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 7747,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 7748,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 7749,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 7750,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 7751,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 7752,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 7753,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 7754,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 7755,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 7756,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 7757,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 7758,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 7759,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 7760,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 7761,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 7762,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 7763,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 7764,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 7765,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 7766,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 7767,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 7768,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 7769,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 7770,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 7771,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 7772,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 7773,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 7774,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 7775,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 7776,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 7777,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 7778,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 7779,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 7780,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 7781,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 7782,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 7783,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 7784,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 7785,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 7786,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 7787,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 7788,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 7789,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 7790,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 7791,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 7792,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 7793,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 7794,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 7795,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 7796,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 7797,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 7798,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 7799,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 7800,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 7801,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 7802,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 7803,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 7804,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 7805,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 7806,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 7807,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 7808,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 7809,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 7810,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 7811,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 7812,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 7813,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 7814,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 7815,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 7816,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 7817,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 7818,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 7819,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 7820,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 7821,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 7822,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 7823,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 7824,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 7825,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 7826,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 7827,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 7828,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 7829,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 7830,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 7831,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 7832,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 7833,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 7834,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 7835,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 7836,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 7837,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 7838,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 7839,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 7840,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 7841,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 7842,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 7843,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 7844,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 7845,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 7846,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 7847,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 7848,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 7849,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 7850,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 7851,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 7852,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 7853,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 7854,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 7855,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 7856,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 7857,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 7858,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 7859,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 7860,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 7861,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 7862,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 7863,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 7864,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 7865,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 7866,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 7867,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 7868,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 7869,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 7870,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 7871,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 7872,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 7873,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 7874,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 7875,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 7876,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 7877,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 7878,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 7879,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 7880,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 7881,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 7882,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 7883,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 7884,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 7885,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 7886,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 7887,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 7888,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 7889,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 7890,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 7891,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 7892,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 7893,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 7894,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 7895,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 7896,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 7897,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 7898,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 7899,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 7900,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 7901,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 7902,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 7903,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 7904,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 7905,
- "properties": {
- "east": "tall",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 7906,
- "properties": {
- "east": "tall",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 7907,
- "properties": {
- "east": "tall",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 7908,
- "properties": {
- "east": "tall",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 7909,
- "properties": {
- "east": "tall",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 7910,
- "properties": {
- "east": "tall",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 7911,
- "properties": {
- "east": "tall",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 7912,
- "properties": {
- "east": "tall",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 7913,
- "properties": {
- "east": "tall",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 7914,
- "properties": {
- "east": "tall",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 7915,
- "properties": {
- "east": "tall",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 7916,
- "properties": {
- "east": "tall",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 7917,
- "properties": {
- "east": "tall",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
"id": 7918,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "low",
+ "south": "none",
"up": "true",
- "waterlogged": "true",
- "west": "low"
+ "waterlogged": "false",
+ "west": "none"
}
},
{
"id": 7919,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "low",
+ "south": "none",
"up": "true",
- "waterlogged": "true",
- "west": "tall"
+ "waterlogged": "false",
+ "west": "low"
}
},
{
"id": 7920,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "low",
+ "south": "none",
"up": "true",
"waterlogged": "false",
- "west": "none"
+ "west": "tall"
}
},
{
"id": 7921,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
}
},
{
"id": 7922,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
}
},
{
"id": 7923,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "low",
+ "south": "none",
"up": "false",
"waterlogged": "true",
- "west": "none"
+ "west": "tall"
}
},
{
"id": 7924,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "low",
+ "south": "none",
"up": "false",
- "waterlogged": "true",
- "west": "low"
+ "waterlogged": "false",
+ "west": "none"
}
},
{
"id": 7925,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "low",
+ "south": "none",
"up": "false",
- "waterlogged": "true",
- "west": "tall"
+ "waterlogged": "false",
+ "west": "low"
}
},
{
"id": 7926,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "low",
+ "south": "none",
"up": "false",
"waterlogged": "false",
- "west": "none"
+ "west": "tall"
}
},
{
"id": 7927,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
"south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
}
},
{
"id": 7928,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
"south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
}
},
{
"id": 7929,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "tall",
+ "south": "low",
"up": "true",
"waterlogged": "true",
- "west": "none"
+ "west": "tall"
}
},
{
"id": 7930,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "tall",
+ "south": "low",
"up": "true",
- "waterlogged": "true",
- "west": "low"
+ "waterlogged": "false",
+ "west": "none"
}
},
{
"id": 7931,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "tall",
+ "south": "low",
"up": "true",
- "waterlogged": "true",
- "west": "tall"
+ "waterlogged": "false",
+ "west": "low"
}
},
{
"id": 7932,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "tall",
+ "south": "low",
"up": "true",
"waterlogged": "false",
- "west": "none"
+ "west": "tall"
}
},
{
"id": 7933,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
}
},
{
"id": 7934,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
}
},
{
"id": 7935,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "tall",
+ "south": "low",
"up": "false",
"waterlogged": "true",
- "west": "none"
+ "west": "tall"
}
},
{
"id": 7936,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "tall",
+ "south": "low",
"up": "false",
- "waterlogged": "true",
- "west": "low"
+ "waterlogged": "false",
+ "west": "none"
}
},
{
"id": 7937,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "tall",
+ "south": "low",
"up": "false",
- "waterlogged": "true",
- "west": "tall"
+ "waterlogged": "false",
+ "west": "low"
}
},
{
"id": 7938,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "tall",
+ "south": "low",
"up": "false",
"waterlogged": "false",
- "west": "none"
+ "west": "tall"
}
},
{
"id": 7939,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
"south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
+ "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",
@@ -46551,7 +50875,7 @@
}
},
{
- "id": 7941,
+ "id": 8167,
"properties": {
"east": "tall",
"north": "low",
@@ -46562,7 +50886,7 @@
}
},
{
- "id": 7942,
+ "id": 8168,
"properties": {
"east": "tall",
"north": "low",
@@ -46573,7 +50897,7 @@
}
},
{
- "id": 7943,
+ "id": 8169,
"properties": {
"east": "tall",
"north": "low",
@@ -46584,7 +50908,7 @@
}
},
{
- "id": 7944,
+ "id": 8170,
"properties": {
"east": "tall",
"north": "low",
@@ -46595,7 +50919,7 @@
}
},
{
- "id": 7945,
+ "id": 8171,
"properties": {
"east": "tall",
"north": "low",
@@ -46606,7 +50930,7 @@
}
},
{
- "id": 7946,
+ "id": 8172,
"properties": {
"east": "tall",
"north": "low",
@@ -46617,7 +50941,7 @@
}
},
{
- "id": 7947,
+ "id": 8173,
"properties": {
"east": "tall",
"north": "low",
@@ -46628,7 +50952,7 @@
}
},
{
- "id": 7948,
+ "id": 8174,
"properties": {
"east": "tall",
"north": "low",
@@ -46639,7 +50963,7 @@
}
},
{
- "id": 7949,
+ "id": 8175,
"properties": {
"east": "tall",
"north": "low",
@@ -46650,7 +50974,7 @@
}
},
{
- "id": 7950,
+ "id": 8176,
"properties": {
"east": "tall",
"north": "low",
@@ -46661,7 +50985,7 @@
}
},
{
- "id": 7951,
+ "id": 8177,
"properties": {
"east": "tall",
"north": "low",
@@ -46672,7 +50996,7 @@
}
},
{
- "id": 7952,
+ "id": 8178,
"properties": {
"east": "tall",
"north": "low",
@@ -46683,7 +51007,7 @@
}
},
{
- "id": 7953,
+ "id": 8179,
"properties": {
"east": "tall",
"north": "low",
@@ -46694,7 +51018,7 @@
}
},
{
- "id": 7954,
+ "id": 8180,
"properties": {
"east": "tall",
"north": "low",
@@ -46705,7 +51029,7 @@
}
},
{
- "id": 7955,
+ "id": 8181,
"properties": {
"east": "tall",
"north": "low",
@@ -46716,7 +51040,7 @@
}
},
{
- "id": 7956,
+ "id": 8182,
"properties": {
"east": "tall",
"north": "low",
@@ -46727,7 +51051,7 @@
}
},
{
- "id": 7957,
+ "id": 8183,
"properties": {
"east": "tall",
"north": "low",
@@ -46738,7 +51062,7 @@
}
},
{
- "id": 7958,
+ "id": 8184,
"properties": {
"east": "tall",
"north": "low",
@@ -46749,7 +51073,7 @@
}
},
{
- "id": 7959,
+ "id": 8185,
"properties": {
"east": "tall",
"north": "low",
@@ -46760,7 +51084,7 @@
}
},
{
- "id": 7960,
+ "id": 8186,
"properties": {
"east": "tall",
"north": "low",
@@ -46771,7 +51095,7 @@
}
},
{
- "id": 7961,
+ "id": 8187,
"properties": {
"east": "tall",
"north": "low",
@@ -46782,7 +51106,7 @@
}
},
{
- "id": 7962,
+ "id": 8188,
"properties": {
"east": "tall",
"north": "low",
@@ -46793,7 +51117,7 @@
}
},
{
- "id": 7963,
+ "id": 8189,
"properties": {
"east": "tall",
"north": "low",
@@ -46804,7 +51128,7 @@
}
},
{
- "id": 7964,
+ "id": 8190,
"properties": {
"east": "tall",
"north": "low",
@@ -46815,7 +51139,7 @@
}
},
{
- "id": 7965,
+ "id": 8191,
"properties": {
"east": "tall",
"north": "low",
@@ -46826,7 +51150,7 @@
}
},
{
- "id": 7966,
+ "id": 8192,
"properties": {
"east": "tall",
"north": "low",
@@ -46837,7 +51161,7 @@
}
},
{
- "id": 7967,
+ "id": 8193,
"properties": {
"east": "tall",
"north": "low",
@@ -46848,7 +51172,7 @@
}
},
{
- "id": 7968,
+ "id": 8194,
"properties": {
"east": "tall",
"north": "low",
@@ -46859,7 +51183,7 @@
}
},
{
- "id": 7969,
+ "id": 8195,
"properties": {
"east": "tall",
"north": "low",
@@ -46870,7 +51194,7 @@
}
},
{
- "id": 7970,
+ "id": 8196,
"properties": {
"east": "tall",
"north": "low",
@@ -46881,7 +51205,7 @@
}
},
{
- "id": 7971,
+ "id": 8197,
"properties": {
"east": "tall",
"north": "low",
@@ -46892,7 +51216,7 @@
}
},
{
- "id": 7972,
+ "id": 8198,
"properties": {
"east": "tall",
"north": "low",
@@ -46903,7 +51227,7 @@
}
},
{
- "id": 7973,
+ "id": 8199,
"properties": {
"east": "tall",
"north": "low",
@@ -46914,7 +51238,7 @@
}
},
{
- "id": 7974,
+ "id": 8200,
"properties": {
"east": "tall",
"north": "low",
@@ -46925,7 +51249,7 @@
}
},
{
- "id": 7975,
+ "id": 8201,
"properties": {
"east": "tall",
"north": "low",
@@ -46936,7 +51260,7 @@
}
},
{
- "id": 7976,
+ "id": 8202,
"properties": {
"east": "tall",
"north": "low",
@@ -46947,7 +51271,7 @@
}
},
{
- "id": 7977,
+ "id": 8203,
"properties": {
"east": "tall",
"north": "tall",
@@ -46958,7 +51282,7 @@
}
},
{
- "id": 7978,
+ "id": 8204,
"properties": {
"east": "tall",
"north": "tall",
@@ -46969,7 +51293,7 @@
}
},
{
- "id": 7979,
+ "id": 8205,
"properties": {
"east": "tall",
"north": "tall",
@@ -46980,7 +51304,7 @@
}
},
{
- "id": 7980,
+ "id": 8206,
"properties": {
"east": "tall",
"north": "tall",
@@ -46991,7 +51315,7 @@
}
},
{
- "id": 7981,
+ "id": 8207,
"properties": {
"east": "tall",
"north": "tall",
@@ -47002,7 +51326,7 @@
}
},
{
- "id": 7982,
+ "id": 8208,
"properties": {
"east": "tall",
"north": "tall",
@@ -47013,7 +51337,7 @@
}
},
{
- "id": 7983,
+ "id": 8209,
"properties": {
"east": "tall",
"north": "tall",
@@ -47024,7 +51348,7 @@
}
},
{
- "id": 7984,
+ "id": 8210,
"properties": {
"east": "tall",
"north": "tall",
@@ -47035,7 +51359,7 @@
}
},
{
- "id": 7985,
+ "id": 8211,
"properties": {
"east": "tall",
"north": "tall",
@@ -47046,7 +51370,7 @@
}
},
{
- "id": 7986,
+ "id": 8212,
"properties": {
"east": "tall",
"north": "tall",
@@ -47057,7 +51381,7 @@
}
},
{
- "id": 7987,
+ "id": 8213,
"properties": {
"east": "tall",
"north": "tall",
@@ -47068,7 +51392,7 @@
}
},
{
- "id": 7988,
+ "id": 8214,
"properties": {
"east": "tall",
"north": "tall",
@@ -47079,7 +51403,7 @@
}
},
{
- "id": 7989,
+ "id": 8215,
"properties": {
"east": "tall",
"north": "tall",
@@ -47090,7 +51414,7 @@
}
},
{
- "id": 7990,
+ "id": 8216,
"properties": {
"east": "tall",
"north": "tall",
@@ -47101,7 +51425,7 @@
}
},
{
- "id": 7991,
+ "id": 8217,
"properties": {
"east": "tall",
"north": "tall",
@@ -47112,7 +51436,7 @@
}
},
{
- "id": 7992,
+ "id": 8218,
"properties": {
"east": "tall",
"north": "tall",
@@ -47123,7 +51447,7 @@
}
},
{
- "id": 7993,
+ "id": 8219,
"properties": {
"east": "tall",
"north": "tall",
@@ -47134,7 +51458,7 @@
}
},
{
- "id": 7994,
+ "id": 8220,
"properties": {
"east": "tall",
"north": "tall",
@@ -47145,7 +51469,7 @@
}
},
{
- "id": 7995,
+ "id": 8221,
"properties": {
"east": "tall",
"north": "tall",
@@ -47156,7 +51480,7 @@
}
},
{
- "id": 7996,
+ "id": 8222,
"properties": {
"east": "tall",
"north": "tall",
@@ -47167,7 +51491,7 @@
}
},
{
- "id": 7997,
+ "id": 8223,
"properties": {
"east": "tall",
"north": "tall",
@@ -47178,7 +51502,7 @@
}
},
{
- "id": 7998,
+ "id": 8224,
"properties": {
"east": "tall",
"north": "tall",
@@ -47189,7 +51513,7 @@
}
},
{
- "id": 7999,
+ "id": 8225,
"properties": {
"east": "tall",
"north": "tall",
@@ -47200,7 +51524,7 @@
}
},
{
- "id": 8000,
+ "id": 8226,
"properties": {
"east": "tall",
"north": "tall",
@@ -47211,7 +51535,7 @@
}
},
{
- "id": 8001,
+ "id": 8227,
"properties": {
"east": "tall",
"north": "tall",
@@ -47222,7 +51546,7 @@
}
},
{
- "id": 8002,
+ "id": 8228,
"properties": {
"east": "tall",
"north": "tall",
@@ -47233,7 +51557,7 @@
}
},
{
- "id": 8003,
+ "id": 8229,
"properties": {
"east": "tall",
"north": "tall",
@@ -47244,7 +51568,7 @@
}
},
{
- "id": 8004,
+ "id": 8230,
"properties": {
"east": "tall",
"north": "tall",
@@ -47255,7 +51579,7 @@
}
},
{
- "id": 8005,
+ "id": 8231,
"properties": {
"east": "tall",
"north": "tall",
@@ -47266,7 +51590,7 @@
}
},
{
- "id": 8006,
+ "id": 8232,
"properties": {
"east": "tall",
"north": "tall",
@@ -47277,7 +51601,7 @@
}
},
{
- "id": 8007,
+ "id": 8233,
"properties": {
"east": "tall",
"north": "tall",
@@ -47288,7 +51612,7 @@
}
},
{
- "id": 8008,
+ "id": 8234,
"properties": {
"east": "tall",
"north": "tall",
@@ -47299,7 +51623,7 @@
}
},
{
- "id": 8009,
+ "id": 8235,
"properties": {
"east": "tall",
"north": "tall",
@@ -47310,7 +51634,7 @@
}
},
{
- "id": 8010,
+ "id": 8236,
"properties": {
"east": "tall",
"north": "tall",
@@ -47321,7 +51645,7 @@
}
},
{
- "id": 8011,
+ "id": 8237,
"properties": {
"east": "tall",
"north": "tall",
@@ -47332,7 +51656,7 @@
}
},
{
- "id": 8012,
+ "id": 8238,
"properties": {
"east": "tall",
"north": "tall",
@@ -47348,7 +51672,7 @@
"states": [
{
"default": true,
- "id": 1953
+ "id": 2000
}
]
},
@@ -47369,84 +51693,84 @@
"states": [
{
"default": true,
- "id": 7189,
+ "id": 7415,
"properties": {
"age": "0",
"facing": "north"
}
},
{
- "id": 7190,
+ "id": 7416,
"properties": {
"age": "0",
"facing": "south"
}
},
{
- "id": 7191,
+ "id": 7417,
"properties": {
"age": "0",
"facing": "west"
}
},
{
- "id": 7192,
+ "id": 7418,
"properties": {
"age": "0",
"facing": "east"
}
},
{
- "id": 7193,
+ "id": 7419,
"properties": {
"age": "1",
"facing": "north"
}
},
{
- "id": 7194,
+ "id": 7420,
"properties": {
"age": "1",
"facing": "south"
}
},
{
- "id": 7195,
+ "id": 7421,
"properties": {
"age": "1",
"facing": "west"
}
},
{
- "id": 7196,
+ "id": 7422,
"properties": {
"age": "1",
"facing": "east"
}
},
{
- "id": 7197,
+ "id": 7423,
"properties": {
"age": "2",
"facing": "north"
}
},
{
- "id": 7198,
+ "id": 7424,
"properties": {
"age": "2",
"facing": "south"
}
},
{
- "id": 7199,
+ "id": 7425,
"properties": {
"age": "2",
"facing": "west"
}
},
{
- "id": 7200,
+ "id": 7426,
"properties": {
"age": "2",
"facing": "east"
@@ -47471,42 +51795,42 @@
},
"states": [
{
- "id": 7676,
+ "id": 7902,
"properties": {
"conditional": "true",
"facing": "north"
}
},
{
- "id": 7677,
+ "id": 7903,
"properties": {
"conditional": "true",
"facing": "east"
}
},
{
- "id": 7678,
+ "id": 7904,
"properties": {
"conditional": "true",
"facing": "south"
}
},
{
- "id": 7679,
+ "id": 7905,
"properties": {
"conditional": "true",
"facing": "west"
}
},
{
- "id": 7680,
+ "id": 7906,
"properties": {
"conditional": "true",
"facing": "up"
}
},
{
- "id": 7681,
+ "id": 7907,
"properties": {
"conditional": "true",
"facing": "down"
@@ -47514,42 +51838,42 @@
},
{
"default": true,
- "id": 7682,
+ "id": 7908,
"properties": {
"conditional": "false",
"facing": "north"
}
},
{
- "id": 7683,
+ "id": 7909,
"properties": {
"conditional": "false",
"facing": "east"
}
},
{
- "id": 7684,
+ "id": 7910,
"properties": {
"conditional": "false",
"facing": "south"
}
},
{
- "id": 7685,
+ "id": 7911,
"properties": {
"conditional": "false",
"facing": "west"
}
},
{
- "id": 7686,
+ "id": 7912,
"properties": {
"conditional": "false",
"facing": "up"
}
},
{
- "id": 7687,
+ "id": 7913,
"properties": {
"conditional": "false",
"facing": "down"
@@ -47576,7 +51900,7 @@
},
"states": [
{
- "id": 8779,
+ "id": 9031,
"properties": {
"facing": "north",
"mode": "compare",
@@ -47585,7 +51909,7 @@
},
{
"default": true,
- "id": 8780,
+ "id": 9032,
"properties": {
"facing": "north",
"mode": "compare",
@@ -47593,7 +51917,7 @@
}
},
{
- "id": 8781,
+ "id": 9033,
"properties": {
"facing": "north",
"mode": "subtract",
@@ -47601,7 +51925,7 @@
}
},
{
- "id": 8782,
+ "id": 9034,
"properties": {
"facing": "north",
"mode": "subtract",
@@ -47609,7 +51933,7 @@
}
},
{
- "id": 8783,
+ "id": 9035,
"properties": {
"facing": "south",
"mode": "compare",
@@ -47617,7 +51941,7 @@
}
},
{
- "id": 8784,
+ "id": 9036,
"properties": {
"facing": "south",
"mode": "compare",
@@ -47625,7 +51949,7 @@
}
},
{
- "id": 8785,
+ "id": 9037,
"properties": {
"facing": "south",
"mode": "subtract",
@@ -47633,7 +51957,7 @@
}
},
{
- "id": 8786,
+ "id": 9038,
"properties": {
"facing": "south",
"mode": "subtract",
@@ -47641,7 +51965,7 @@
}
},
{
- "id": 8787,
+ "id": 9039,
"properties": {
"facing": "west",
"mode": "compare",
@@ -47649,7 +51973,7 @@
}
},
{
- "id": 8788,
+ "id": 9040,
"properties": {
"facing": "west",
"mode": "compare",
@@ -47657,7 +51981,7 @@
}
},
{
- "id": 8789,
+ "id": 9041,
"properties": {
"facing": "west",
"mode": "subtract",
@@ -47665,7 +51989,7 @@
}
},
{
- "id": 8790,
+ "id": 9042,
"properties": {
"facing": "west",
"mode": "subtract",
@@ -47673,7 +51997,7 @@
}
},
{
- "id": 8791,
+ "id": 9043,
"properties": {
"facing": "east",
"mode": "compare",
@@ -47681,7 +52005,7 @@
}
},
{
- "id": 8792,
+ "id": 9044,
"properties": {
"facing": "east",
"mode": "compare",
@@ -47689,7 +52013,7 @@
}
},
{
- "id": 8793,
+ "id": 9045,
"properties": {
"facing": "east",
"mode": "subtract",
@@ -47697,7 +52021,7 @@
}
},
{
- "id": 8794,
+ "id": 9046,
"properties": {
"facing": "east",
"mode": "subtract",
@@ -47723,55 +52047,55 @@
"states": [
{
"default": true,
- "id": 18744,
+ "id": 19213,
"properties": {
"level": "0"
}
},
{
- "id": 18745,
+ "id": 19214,
"properties": {
"level": "1"
}
},
{
- "id": 18746,
+ "id": 19215,
"properties": {
"level": "2"
}
},
{
- "id": 18747,
+ "id": 19216,
"properties": {
"level": "3"
}
},
{
- "id": 18748,
+ "id": 19217,
"properties": {
"level": "4"
}
},
{
- "id": 18749,
+ "id": 19218,
"properties": {
"level": "5"
}
},
{
- "id": 18750,
+ "id": 19219,
"properties": {
"level": "6"
}
},
{
- "id": 18751,
+ "id": 19220,
"properties": {
"level": "7"
}
},
{
- "id": 18752,
+ "id": 19221,
"properties": {
"level": "8"
}
@@ -47788,13 +52112,13 @@
"states": [
{
"default": true,
- "id": 12314,
+ "id": 12783,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12315,
+ "id": 12784,
"properties": {
"waterlogged": "false"
}
@@ -47805,7 +52129,7 @@
"states": [
{
"default": true,
- "id": 20695
+ "id": 21164
}
]
},
@@ -47813,7 +52137,7 @@
"states": [
{
"default": true,
- "id": 20696
+ "id": 21165
}
]
},
@@ -47821,7 +52145,7 @@
"states": [
{
"default": true,
- "id": 2034
+ "id": 2082
}
]
},
@@ -47829,7 +52153,7 @@
"states": [
{
"default": true,
- "id": 23210
+ "id": 23695
}
]
},
@@ -47837,7 +52161,7 @@
"states": [
{
"default": true,
- "id": 23211
+ "id": 23696
}
]
},
@@ -47845,7 +52169,7 @@
"states": [
{
"default": true,
- "id": 20095
+ "id": 20564
}
]
},
@@ -47853,7 +52177,7 @@
"states": [
{
"default": true,
- "id": 19245
+ "id": 19714
}
]
},
@@ -47861,7 +52185,7 @@
"states": [
{
"default": true,
- "id": 6310
+ "id": 6536
}
]
},
@@ -47869,7 +52193,7 @@
"states": [
{
"default": true,
- "id": 4225
+ "id": 4273
}
]
},
@@ -47897,97 +52221,97 @@
"states": [
{
"default": true,
- "id": 8651,
+ "id": 8903,
"properties": {
"rotation": "0"
}
},
{
- "id": 8652,
+ "id": 8904,
"properties": {
"rotation": "1"
}
},
{
- "id": 8653,
+ "id": 8905,
"properties": {
"rotation": "2"
}
},
{
- "id": 8654,
+ "id": 8906,
"properties": {
"rotation": "3"
}
},
{
- "id": 8655,
+ "id": 8907,
"properties": {
"rotation": "4"
}
},
{
- "id": 8656,
+ "id": 8908,
"properties": {
"rotation": "5"
}
},
{
- "id": 8657,
+ "id": 8909,
"properties": {
"rotation": "6"
}
},
{
- "id": 8658,
+ "id": 8910,
"properties": {
"rotation": "7"
}
},
{
- "id": 8659,
+ "id": 8911,
"properties": {
"rotation": "8"
}
},
{
- "id": 8660,
+ "id": 8912,
"properties": {
"rotation": "9"
}
},
{
- "id": 8661,
+ "id": 8913,
"properties": {
"rotation": "10"
}
},
{
- "id": 8662,
+ "id": 8914,
"properties": {
"rotation": "11"
}
},
{
- "id": 8663,
+ "id": 8915,
"properties": {
"rotation": "12"
}
},
{
- "id": 8664,
+ "id": 8916,
"properties": {
"rotation": "13"
}
},
{
- "id": 8665,
+ "id": 8917,
"properties": {
"rotation": "14"
}
},
{
- "id": 8666,
+ "id": 8918,
"properties": {
"rotation": "15"
}
@@ -48006,25 +52330,25 @@
"states": [
{
"default": true,
- "id": 8667,
+ "id": 8919,
"properties": {
"facing": "north"
}
},
{
- "id": 8668,
+ "id": 8920,
"properties": {
"facing": "south"
}
},
{
- "id": 8669,
+ "id": 8921,
"properties": {
"facing": "west"
}
},
{
- "id": 8670,
+ "id": 8922,
"properties": {
"facing": "east"
}
@@ -48051,7 +52375,7 @@
},
"states": [
{
- "id": 18472,
+ "id": 18941,
"properties": {
"face": "floor",
"facing": "north",
@@ -48059,7 +52383,7 @@
}
},
{
- "id": 18473,
+ "id": 18942,
"properties": {
"face": "floor",
"facing": "north",
@@ -48067,7 +52391,7 @@
}
},
{
- "id": 18474,
+ "id": 18943,
"properties": {
"face": "floor",
"facing": "south",
@@ -48075,7 +52399,7 @@
}
},
{
- "id": 18475,
+ "id": 18944,
"properties": {
"face": "floor",
"facing": "south",
@@ -48083,7 +52407,7 @@
}
},
{
- "id": 18476,
+ "id": 18945,
"properties": {
"face": "floor",
"facing": "west",
@@ -48091,7 +52415,7 @@
}
},
{
- "id": 18477,
+ "id": 18946,
"properties": {
"face": "floor",
"facing": "west",
@@ -48099,7 +52423,7 @@
}
},
{
- "id": 18478,
+ "id": 18947,
"properties": {
"face": "floor",
"facing": "east",
@@ -48107,7 +52431,7 @@
}
},
{
- "id": 18479,
+ "id": 18948,
"properties": {
"face": "floor",
"facing": "east",
@@ -48115,7 +52439,7 @@
}
},
{
- "id": 18480,
+ "id": 18949,
"properties": {
"face": "wall",
"facing": "north",
@@ -48124,7 +52448,7 @@
},
{
"default": true,
- "id": 18481,
+ "id": 18950,
"properties": {
"face": "wall",
"facing": "north",
@@ -48132,7 +52456,7 @@
}
},
{
- "id": 18482,
+ "id": 18951,
"properties": {
"face": "wall",
"facing": "south",
@@ -48140,7 +52464,7 @@
}
},
{
- "id": 18483,
+ "id": 18952,
"properties": {
"face": "wall",
"facing": "south",
@@ -48148,7 +52472,7 @@
}
},
{
- "id": 18484,
+ "id": 18953,
"properties": {
"face": "wall",
"facing": "west",
@@ -48156,7 +52480,7 @@
}
},
{
- "id": 18485,
+ "id": 18954,
"properties": {
"face": "wall",
"facing": "west",
@@ -48164,7 +52488,7 @@
}
},
{
- "id": 18486,
+ "id": 18955,
"properties": {
"face": "wall",
"facing": "east",
@@ -48172,7 +52496,7 @@
}
},
{
- "id": 18487,
+ "id": 18956,
"properties": {
"face": "wall",
"facing": "east",
@@ -48180,7 +52504,7 @@
}
},
{
- "id": 18488,
+ "id": 18957,
"properties": {
"face": "ceiling",
"facing": "north",
@@ -48188,7 +52512,7 @@
}
},
{
- "id": 18489,
+ "id": 18958,
"properties": {
"face": "ceiling",
"facing": "north",
@@ -48196,7 +52520,7 @@
}
},
{
- "id": 18490,
+ "id": 18959,
"properties": {
"face": "ceiling",
"facing": "south",
@@ -48204,7 +52528,7 @@
}
},
{
- "id": 18491,
+ "id": 18960,
"properties": {
"face": "ceiling",
"facing": "south",
@@ -48212,7 +52536,7 @@
}
},
{
- "id": 18492,
+ "id": 18961,
"properties": {
"face": "ceiling",
"facing": "west",
@@ -48220,7 +52544,7 @@
}
},
{
- "id": 18493,
+ "id": 18962,
"properties": {
"face": "ceiling",
"facing": "west",
@@ -48228,7 +52552,7 @@
}
},
{
- "id": 18494,
+ "id": 18963,
"properties": {
"face": "ceiling",
"facing": "east",
@@ -48236,7 +52560,7 @@
}
},
{
- "id": 18495,
+ "id": 18964,
"properties": {
"face": "ceiling",
"facing": "east",
@@ -48272,7 +52596,7 @@
},
"states": [
{
- "id": 18520,
+ "id": 18989,
"properties": {
"facing": "north",
"half": "upper",
@@ -48282,7 +52606,7 @@
}
},
{
- "id": 18521,
+ "id": 18990,
"properties": {
"facing": "north",
"half": "upper",
@@ -48292,7 +52616,7 @@
}
},
{
- "id": 18522,
+ "id": 18991,
"properties": {
"facing": "north",
"half": "upper",
@@ -48302,7 +52626,7 @@
}
},
{
- "id": 18523,
+ "id": 18992,
"properties": {
"facing": "north",
"half": "upper",
@@ -48312,7 +52636,7 @@
}
},
{
- "id": 18524,
+ "id": 18993,
"properties": {
"facing": "north",
"half": "upper",
@@ -48322,7 +52646,7 @@
}
},
{
- "id": 18525,
+ "id": 18994,
"properties": {
"facing": "north",
"half": "upper",
@@ -48332,7 +52656,7 @@
}
},
{
- "id": 18526,
+ "id": 18995,
"properties": {
"facing": "north",
"half": "upper",
@@ -48342,7 +52666,7 @@
}
},
{
- "id": 18527,
+ "id": 18996,
"properties": {
"facing": "north",
"half": "upper",
@@ -48352,7 +52676,7 @@
}
},
{
- "id": 18528,
+ "id": 18997,
"properties": {
"facing": "north",
"half": "lower",
@@ -48362,7 +52686,7 @@
}
},
{
- "id": 18529,
+ "id": 18998,
"properties": {
"facing": "north",
"half": "lower",
@@ -48372,7 +52696,7 @@
}
},
{
- "id": 18530,
+ "id": 18999,
"properties": {
"facing": "north",
"half": "lower",
@@ -48383,7 +52707,7 @@
},
{
"default": true,
- "id": 18531,
+ "id": 19000,
"properties": {
"facing": "north",
"half": "lower",
@@ -48393,7 +52717,7 @@
}
},
{
- "id": 18532,
+ "id": 19001,
"properties": {
"facing": "north",
"half": "lower",
@@ -48403,7 +52727,7 @@
}
},
{
- "id": 18533,
+ "id": 19002,
"properties": {
"facing": "north",
"half": "lower",
@@ -48413,7 +52737,7 @@
}
},
{
- "id": 18534,
+ "id": 19003,
"properties": {
"facing": "north",
"half": "lower",
@@ -48423,7 +52747,7 @@
}
},
{
- "id": 18535,
+ "id": 19004,
"properties": {
"facing": "north",
"half": "lower",
@@ -48433,7 +52757,7 @@
}
},
{
- "id": 18536,
+ "id": 19005,
"properties": {
"facing": "south",
"half": "upper",
@@ -48443,7 +52767,7 @@
}
},
{
- "id": 18537,
+ "id": 19006,
"properties": {
"facing": "south",
"half": "upper",
@@ -48453,7 +52777,7 @@
}
},
{
- "id": 18538,
+ "id": 19007,
"properties": {
"facing": "south",
"half": "upper",
@@ -48463,7 +52787,7 @@
}
},
{
- "id": 18539,
+ "id": 19008,
"properties": {
"facing": "south",
"half": "upper",
@@ -48473,7 +52797,7 @@
}
},
{
- "id": 18540,
+ "id": 19009,
"properties": {
"facing": "south",
"half": "upper",
@@ -48483,7 +52807,7 @@
}
},
{
- "id": 18541,
+ "id": 19010,
"properties": {
"facing": "south",
"half": "upper",
@@ -48493,7 +52817,7 @@
}
},
{
- "id": 18542,
+ "id": 19011,
"properties": {
"facing": "south",
"half": "upper",
@@ -48503,7 +52827,7 @@
}
},
{
- "id": 18543,
+ "id": 19012,
"properties": {
"facing": "south",
"half": "upper",
@@ -48513,7 +52837,7 @@
}
},
{
- "id": 18544,
+ "id": 19013,
"properties": {
"facing": "south",
"half": "lower",
@@ -48523,7 +52847,7 @@
}
},
{
- "id": 18545,
+ "id": 19014,
"properties": {
"facing": "south",
"half": "lower",
@@ -48533,7 +52857,7 @@
}
},
{
- "id": 18546,
+ "id": 19015,
"properties": {
"facing": "south",
"half": "lower",
@@ -48543,7 +52867,7 @@
}
},
{
- "id": 18547,
+ "id": 19016,
"properties": {
"facing": "south",
"half": "lower",
@@ -48553,7 +52877,7 @@
}
},
{
- "id": 18548,
+ "id": 19017,
"properties": {
"facing": "south",
"half": "lower",
@@ -48563,7 +52887,7 @@
}
},
{
- "id": 18549,
+ "id": 19018,
"properties": {
"facing": "south",
"half": "lower",
@@ -48573,7 +52897,7 @@
}
},
{
- "id": 18550,
+ "id": 19019,
"properties": {
"facing": "south",
"half": "lower",
@@ -48583,7 +52907,7 @@
}
},
{
- "id": 18551,
+ "id": 19020,
"properties": {
"facing": "south",
"half": "lower",
@@ -48593,7 +52917,7 @@
}
},
{
- "id": 18552,
+ "id": 19021,
"properties": {
"facing": "west",
"half": "upper",
@@ -48603,7 +52927,7 @@
}
},
{
- "id": 18553,
+ "id": 19022,
"properties": {
"facing": "west",
"half": "upper",
@@ -48613,7 +52937,7 @@
}
},
{
- "id": 18554,
+ "id": 19023,
"properties": {
"facing": "west",
"half": "upper",
@@ -48623,7 +52947,7 @@
}
},
{
- "id": 18555,
+ "id": 19024,
"properties": {
"facing": "west",
"half": "upper",
@@ -48633,7 +52957,7 @@
}
},
{
- "id": 18556,
+ "id": 19025,
"properties": {
"facing": "west",
"half": "upper",
@@ -48643,7 +52967,7 @@
}
},
{
- "id": 18557,
+ "id": 19026,
"properties": {
"facing": "west",
"half": "upper",
@@ -48653,7 +52977,7 @@
}
},
{
- "id": 18558,
+ "id": 19027,
"properties": {
"facing": "west",
"half": "upper",
@@ -48663,7 +52987,7 @@
}
},
{
- "id": 18559,
+ "id": 19028,
"properties": {
"facing": "west",
"half": "upper",
@@ -48673,7 +52997,7 @@
}
},
{
- "id": 18560,
+ "id": 19029,
"properties": {
"facing": "west",
"half": "lower",
@@ -48683,7 +53007,7 @@
}
},
{
- "id": 18561,
+ "id": 19030,
"properties": {
"facing": "west",
"half": "lower",
@@ -48693,7 +53017,7 @@
}
},
{
- "id": 18562,
+ "id": 19031,
"properties": {
"facing": "west",
"half": "lower",
@@ -48703,7 +53027,7 @@
}
},
{
- "id": 18563,
+ "id": 19032,
"properties": {
"facing": "west",
"half": "lower",
@@ -48713,7 +53037,7 @@
}
},
{
- "id": 18564,
+ "id": 19033,
"properties": {
"facing": "west",
"half": "lower",
@@ -48723,7 +53047,7 @@
}
},
{
- "id": 18565,
+ "id": 19034,
"properties": {
"facing": "west",
"half": "lower",
@@ -48733,7 +53057,7 @@
}
},
{
- "id": 18566,
+ "id": 19035,
"properties": {
"facing": "west",
"half": "lower",
@@ -48743,7 +53067,7 @@
}
},
{
- "id": 18567,
+ "id": 19036,
"properties": {
"facing": "west",
"half": "lower",
@@ -48753,7 +53077,7 @@
}
},
{
- "id": 18568,
+ "id": 19037,
"properties": {
"facing": "east",
"half": "upper",
@@ -48763,7 +53087,7 @@
}
},
{
- "id": 18569,
+ "id": 19038,
"properties": {
"facing": "east",
"half": "upper",
@@ -48773,7 +53097,7 @@
}
},
{
- "id": 18570,
+ "id": 19039,
"properties": {
"facing": "east",
"half": "upper",
@@ -48783,7 +53107,7 @@
}
},
{
- "id": 18571,
+ "id": 19040,
"properties": {
"facing": "east",
"half": "upper",
@@ -48793,7 +53117,7 @@
}
},
{
- "id": 18572,
+ "id": 19041,
"properties": {
"facing": "east",
"half": "upper",
@@ -48803,7 +53127,7 @@
}
},
{
- "id": 18573,
+ "id": 19042,
"properties": {
"facing": "east",
"half": "upper",
@@ -48813,7 +53137,7 @@
}
},
{
- "id": 18574,
+ "id": 19043,
"properties": {
"facing": "east",
"half": "upper",
@@ -48823,7 +53147,7 @@
}
},
{
- "id": 18575,
+ "id": 19044,
"properties": {
"facing": "east",
"half": "upper",
@@ -48833,7 +53157,7 @@
}
},
{
- "id": 18576,
+ "id": 19045,
"properties": {
"facing": "east",
"half": "lower",
@@ -48843,7 +53167,7 @@
}
},
{
- "id": 18577,
+ "id": 19046,
"properties": {
"facing": "east",
"half": "lower",
@@ -48853,7 +53177,7 @@
}
},
{
- "id": 18578,
+ "id": 19047,
"properties": {
"facing": "east",
"half": "lower",
@@ -48863,7 +53187,7 @@
}
},
{
- "id": 18579,
+ "id": 19048,
"properties": {
"facing": "east",
"half": "lower",
@@ -48873,7 +53197,7 @@
}
},
{
- "id": 18580,
+ "id": 19049,
"properties": {
"facing": "east",
"half": "lower",
@@ -48883,7 +53207,7 @@
}
},
{
- "id": 18581,
+ "id": 19050,
"properties": {
"facing": "east",
"half": "lower",
@@ -48893,7 +53217,7 @@
}
},
{
- "id": 18582,
+ "id": 19051,
"properties": {
"facing": "east",
"half": "lower",
@@ -48903,7 +53227,7 @@
}
},
{
- "id": 18583,
+ "id": 19052,
"properties": {
"facing": "east",
"half": "lower",
@@ -48939,7 +53263,7 @@
},
"states": [
{
- "id": 18056,
+ "id": 18525,
"properties": {
"east": "true",
"north": "true",
@@ -48949,7 +53273,7 @@
}
},
{
- "id": 18057,
+ "id": 18526,
"properties": {
"east": "true",
"north": "true",
@@ -48959,7 +53283,7 @@
}
},
{
- "id": 18058,
+ "id": 18527,
"properties": {
"east": "true",
"north": "true",
@@ -48969,7 +53293,7 @@
}
},
{
- "id": 18059,
+ "id": 18528,
"properties": {
"east": "true",
"north": "true",
@@ -48979,7 +53303,7 @@
}
},
{
- "id": 18060,
+ "id": 18529,
"properties": {
"east": "true",
"north": "true",
@@ -48989,7 +53313,7 @@
}
},
{
- "id": 18061,
+ "id": 18530,
"properties": {
"east": "true",
"north": "true",
@@ -48999,7 +53323,7 @@
}
},
{
- "id": 18062,
+ "id": 18531,
"properties": {
"east": "true",
"north": "true",
@@ -49009,7 +53333,7 @@
}
},
{
- "id": 18063,
+ "id": 18532,
"properties": {
"east": "true",
"north": "true",
@@ -49019,7 +53343,7 @@
}
},
{
- "id": 18064,
+ "id": 18533,
"properties": {
"east": "true",
"north": "false",
@@ -49029,7 +53353,7 @@
}
},
{
- "id": 18065,
+ "id": 18534,
"properties": {
"east": "true",
"north": "false",
@@ -49039,7 +53363,7 @@
}
},
{
- "id": 18066,
+ "id": 18535,
"properties": {
"east": "true",
"north": "false",
@@ -49049,7 +53373,7 @@
}
},
{
- "id": 18067,
+ "id": 18536,
"properties": {
"east": "true",
"north": "false",
@@ -49059,7 +53383,7 @@
}
},
{
- "id": 18068,
+ "id": 18537,
"properties": {
"east": "true",
"north": "false",
@@ -49069,7 +53393,7 @@
}
},
{
- "id": 18069,
+ "id": 18538,
"properties": {
"east": "true",
"north": "false",
@@ -49079,7 +53403,7 @@
}
},
{
- "id": 18070,
+ "id": 18539,
"properties": {
"east": "true",
"north": "false",
@@ -49089,7 +53413,7 @@
}
},
{
- "id": 18071,
+ "id": 18540,
"properties": {
"east": "true",
"north": "false",
@@ -49099,7 +53423,7 @@
}
},
{
- "id": 18072,
+ "id": 18541,
"properties": {
"east": "false",
"north": "true",
@@ -49109,7 +53433,7 @@
}
},
{
- "id": 18073,
+ "id": 18542,
"properties": {
"east": "false",
"north": "true",
@@ -49119,7 +53443,7 @@
}
},
{
- "id": 18074,
+ "id": 18543,
"properties": {
"east": "false",
"north": "true",
@@ -49129,7 +53453,7 @@
}
},
{
- "id": 18075,
+ "id": 18544,
"properties": {
"east": "false",
"north": "true",
@@ -49139,7 +53463,7 @@
}
},
{
- "id": 18076,
+ "id": 18545,
"properties": {
"east": "false",
"north": "true",
@@ -49149,7 +53473,7 @@
}
},
{
- "id": 18077,
+ "id": 18546,
"properties": {
"east": "false",
"north": "true",
@@ -49159,7 +53483,7 @@
}
},
{
- "id": 18078,
+ "id": 18547,
"properties": {
"east": "false",
"north": "true",
@@ -49169,7 +53493,7 @@
}
},
{
- "id": 18079,
+ "id": 18548,
"properties": {
"east": "false",
"north": "true",
@@ -49179,7 +53503,7 @@
}
},
{
- "id": 18080,
+ "id": 18549,
"properties": {
"east": "false",
"north": "false",
@@ -49189,7 +53513,7 @@
}
},
{
- "id": 18081,
+ "id": 18550,
"properties": {
"east": "false",
"north": "false",
@@ -49199,7 +53523,7 @@
}
},
{
- "id": 18082,
+ "id": 18551,
"properties": {
"east": "false",
"north": "false",
@@ -49209,7 +53533,7 @@
}
},
{
- "id": 18083,
+ "id": 18552,
"properties": {
"east": "false",
"north": "false",
@@ -49219,7 +53543,7 @@
}
},
{
- "id": 18084,
+ "id": 18553,
"properties": {
"east": "false",
"north": "false",
@@ -49229,7 +53553,7 @@
}
},
{
- "id": 18085,
+ "id": 18554,
"properties": {
"east": "false",
"north": "false",
@@ -49239,7 +53563,7 @@
}
},
{
- "id": 18086,
+ "id": 18555,
"properties": {
"east": "false",
"north": "false",
@@ -49250,7 +53574,7 @@
},
{
"default": true,
- "id": 18087,
+ "id": 18556,
"properties": {
"east": "false",
"north": "false",
@@ -49284,7 +53608,7 @@
},
"states": [
{
- "id": 18248,
+ "id": 18717,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -49293,7 +53617,7 @@
}
},
{
- "id": 18249,
+ "id": 18718,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -49302,7 +53626,7 @@
}
},
{
- "id": 18250,
+ "id": 18719,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -49311,7 +53635,7 @@
}
},
{
- "id": 18251,
+ "id": 18720,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -49320,7 +53644,7 @@
}
},
{
- "id": 18252,
+ "id": 18721,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -49329,7 +53653,7 @@
}
},
{
- "id": 18253,
+ "id": 18722,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -49338,7 +53662,7 @@
}
},
{
- "id": 18254,
+ "id": 18723,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -49348,7 +53672,7 @@
},
{
"default": true,
- "id": 18255,
+ "id": 18724,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -49357,7 +53681,7 @@
}
},
{
- "id": 18256,
+ "id": 18725,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -49366,7 +53690,7 @@
}
},
{
- "id": 18257,
+ "id": 18726,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -49375,7 +53699,7 @@
}
},
{
- "id": 18258,
+ "id": 18727,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -49384,7 +53708,7 @@
}
},
{
- "id": 18259,
+ "id": 18728,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -49393,7 +53717,7 @@
}
},
{
- "id": 18260,
+ "id": 18729,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -49402,7 +53726,7 @@
}
},
{
- "id": 18261,
+ "id": 18730,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -49411,7 +53735,7 @@
}
},
{
- "id": 18262,
+ "id": 18731,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -49420,7 +53744,7 @@
}
},
{
- "id": 18263,
+ "id": 18732,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -49429,7 +53753,7 @@
}
},
{
- "id": 18264,
+ "id": 18733,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -49438,7 +53762,7 @@
}
},
{
- "id": 18265,
+ "id": 18734,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -49447,7 +53771,7 @@
}
},
{
- "id": 18266,
+ "id": 18735,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -49456,7 +53780,7 @@
}
},
{
- "id": 18267,
+ "id": 18736,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -49465,7 +53789,7 @@
}
},
{
- "id": 18268,
+ "id": 18737,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -49474,7 +53798,7 @@
}
},
{
- "id": 18269,
+ "id": 18738,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -49483,7 +53807,7 @@
}
},
{
- "id": 18270,
+ "id": 18739,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -49492,7 +53816,7 @@
}
},
{
- "id": 18271,
+ "id": 18740,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -49501,7 +53825,7 @@
}
},
{
- "id": 18272,
+ "id": 18741,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -49510,7 +53834,7 @@
}
},
{
- "id": 18273,
+ "id": 18742,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -49519,7 +53843,7 @@
}
},
{
- "id": 18274,
+ "id": 18743,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -49528,7 +53852,7 @@
}
},
{
- "id": 18275,
+ "id": 18744,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -49537,7 +53861,7 @@
}
},
{
- "id": 18276,
+ "id": 18745,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -49546,7 +53870,7 @@
}
},
{
- "id": 18277,
+ "id": 18746,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -49555,7 +53879,7 @@
}
},
{
- "id": 18278,
+ "id": 18747,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -49564,7 +53888,7 @@
}
},
{
- "id": 18279,
+ "id": 18748,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -49578,7 +53902,7 @@
"states": [
{
"default": true,
- "id": 17981
+ "id": 18450
}
]
},
@@ -49613,7 +53937,7 @@
},
"states": [
{
- "id": 5126,
+ "id": 5278,
"properties": {
"attached": "true",
"rotation": "0",
@@ -49621,7 +53945,7 @@
}
},
{
- "id": 5127,
+ "id": 5279,
"properties": {
"attached": "true",
"rotation": "0",
@@ -49629,7 +53953,7 @@
}
},
{
- "id": 5128,
+ "id": 5280,
"properties": {
"attached": "true",
"rotation": "1",
@@ -49637,7 +53961,7 @@
}
},
{
- "id": 5129,
+ "id": 5281,
"properties": {
"attached": "true",
"rotation": "1",
@@ -49645,7 +53969,7 @@
}
},
{
- "id": 5130,
+ "id": 5282,
"properties": {
"attached": "true",
"rotation": "2",
@@ -49653,7 +53977,7 @@
}
},
{
- "id": 5131,
+ "id": 5283,
"properties": {
"attached": "true",
"rotation": "2",
@@ -49661,7 +53985,7 @@
}
},
{
- "id": 5132,
+ "id": 5284,
"properties": {
"attached": "true",
"rotation": "3",
@@ -49669,7 +53993,7 @@
}
},
{
- "id": 5133,
+ "id": 5285,
"properties": {
"attached": "true",
"rotation": "3",
@@ -49677,7 +54001,7 @@
}
},
{
- "id": 5134,
+ "id": 5286,
"properties": {
"attached": "true",
"rotation": "4",
@@ -49685,7 +54009,7 @@
}
},
{
- "id": 5135,
+ "id": 5287,
"properties": {
"attached": "true",
"rotation": "4",
@@ -49693,7 +54017,7 @@
}
},
{
- "id": 5136,
+ "id": 5288,
"properties": {
"attached": "true",
"rotation": "5",
@@ -49701,7 +54025,7 @@
}
},
{
- "id": 5137,
+ "id": 5289,
"properties": {
"attached": "true",
"rotation": "5",
@@ -49709,7 +54033,7 @@
}
},
{
- "id": 5138,
+ "id": 5290,
"properties": {
"attached": "true",
"rotation": "6",
@@ -49717,7 +54041,7 @@
}
},
{
- "id": 5139,
+ "id": 5291,
"properties": {
"attached": "true",
"rotation": "6",
@@ -49725,7 +54049,7 @@
}
},
{
- "id": 5140,
+ "id": 5292,
"properties": {
"attached": "true",
"rotation": "7",
@@ -49733,7 +54057,7 @@
}
},
{
- "id": 5141,
+ "id": 5293,
"properties": {
"attached": "true",
"rotation": "7",
@@ -49741,7 +54065,7 @@
}
},
{
- "id": 5142,
+ "id": 5294,
"properties": {
"attached": "true",
"rotation": "8",
@@ -49749,7 +54073,7 @@
}
},
{
- "id": 5143,
+ "id": 5295,
"properties": {
"attached": "true",
"rotation": "8",
@@ -49757,7 +54081,7 @@
}
},
{
- "id": 5144,
+ "id": 5296,
"properties": {
"attached": "true",
"rotation": "9",
@@ -49765,7 +54089,7 @@
}
},
{
- "id": 5145,
+ "id": 5297,
"properties": {
"attached": "true",
"rotation": "9",
@@ -49773,7 +54097,7 @@
}
},
{
- "id": 5146,
+ "id": 5298,
"properties": {
"attached": "true",
"rotation": "10",
@@ -49781,7 +54105,7 @@
}
},
{
- "id": 5147,
+ "id": 5299,
"properties": {
"attached": "true",
"rotation": "10",
@@ -49789,7 +54113,7 @@
}
},
{
- "id": 5148,
+ "id": 5300,
"properties": {
"attached": "true",
"rotation": "11",
@@ -49797,7 +54121,7 @@
}
},
{
- "id": 5149,
+ "id": 5301,
"properties": {
"attached": "true",
"rotation": "11",
@@ -49805,7 +54129,7 @@
}
},
{
- "id": 5150,
+ "id": 5302,
"properties": {
"attached": "true",
"rotation": "12",
@@ -49813,7 +54137,7 @@
}
},
{
- "id": 5151,
+ "id": 5303,
"properties": {
"attached": "true",
"rotation": "12",
@@ -49821,7 +54145,7 @@
}
},
{
- "id": 5152,
+ "id": 5304,
"properties": {
"attached": "true",
"rotation": "13",
@@ -49829,7 +54153,7 @@
}
},
{
- "id": 5153,
+ "id": 5305,
"properties": {
"attached": "true",
"rotation": "13",
@@ -49837,7 +54161,7 @@
}
},
{
- "id": 5154,
+ "id": 5306,
"properties": {
"attached": "true",
"rotation": "14",
@@ -49845,7 +54169,7 @@
}
},
{
- "id": 5155,
+ "id": 5307,
"properties": {
"attached": "true",
"rotation": "14",
@@ -49853,7 +54177,7 @@
}
},
{
- "id": 5156,
+ "id": 5308,
"properties": {
"attached": "true",
"rotation": "15",
@@ -49861,7 +54185,7 @@
}
},
{
- "id": 5157,
+ "id": 5309,
"properties": {
"attached": "true",
"rotation": "15",
@@ -49869,7 +54193,7 @@
}
},
{
- "id": 5158,
+ "id": 5310,
"properties": {
"attached": "false",
"rotation": "0",
@@ -49878,7 +54202,7 @@
},
{
"default": true,
- "id": 5159,
+ "id": 5311,
"properties": {
"attached": "false",
"rotation": "0",
@@ -49886,7 +54210,7 @@
}
},
{
- "id": 5160,
+ "id": 5312,
"properties": {
"attached": "false",
"rotation": "1",
@@ -49894,7 +54218,7 @@
}
},
{
- "id": 5161,
+ "id": 5313,
"properties": {
"attached": "false",
"rotation": "1",
@@ -49902,7 +54226,7 @@
}
},
{
- "id": 5162,
+ "id": 5314,
"properties": {
"attached": "false",
"rotation": "2",
@@ -49910,7 +54234,7 @@
}
},
{
- "id": 5163,
+ "id": 5315,
"properties": {
"attached": "false",
"rotation": "2",
@@ -49918,7 +54242,7 @@
}
},
{
- "id": 5164,
+ "id": 5316,
"properties": {
"attached": "false",
"rotation": "3",
@@ -49926,7 +54250,7 @@
}
},
{
- "id": 5165,
+ "id": 5317,
"properties": {
"attached": "false",
"rotation": "3",
@@ -49934,7 +54258,7 @@
}
},
{
- "id": 5166,
+ "id": 5318,
"properties": {
"attached": "false",
"rotation": "4",
@@ -49942,7 +54266,7 @@
}
},
{
- "id": 5167,
+ "id": 5319,
"properties": {
"attached": "false",
"rotation": "4",
@@ -49950,7 +54274,7 @@
}
},
{
- "id": 5168,
+ "id": 5320,
"properties": {
"attached": "false",
"rotation": "5",
@@ -49958,7 +54282,7 @@
}
},
{
- "id": 5169,
+ "id": 5321,
"properties": {
"attached": "false",
"rotation": "5",
@@ -49966,7 +54290,7 @@
}
},
{
- "id": 5170,
+ "id": 5322,
"properties": {
"attached": "false",
"rotation": "6",
@@ -49974,7 +54298,7 @@
}
},
{
- "id": 5171,
+ "id": 5323,
"properties": {
"attached": "false",
"rotation": "6",
@@ -49982,7 +54306,7 @@
}
},
{
- "id": 5172,
+ "id": 5324,
"properties": {
"attached": "false",
"rotation": "7",
@@ -49990,7 +54314,7 @@
}
},
{
- "id": 5173,
+ "id": 5325,
"properties": {
"attached": "false",
"rotation": "7",
@@ -49998,7 +54322,7 @@
}
},
{
- "id": 5174,
+ "id": 5326,
"properties": {
"attached": "false",
"rotation": "8",
@@ -50006,7 +54330,7 @@
}
},
{
- "id": 5175,
+ "id": 5327,
"properties": {
"attached": "false",
"rotation": "8",
@@ -50014,7 +54338,7 @@
}
},
{
- "id": 5176,
+ "id": 5328,
"properties": {
"attached": "false",
"rotation": "9",
@@ -50022,7 +54346,7 @@
}
},
{
- "id": 5177,
+ "id": 5329,
"properties": {
"attached": "false",
"rotation": "9",
@@ -50030,7 +54354,7 @@
}
},
{
- "id": 5178,
+ "id": 5330,
"properties": {
"attached": "false",
"rotation": "10",
@@ -50038,7 +54362,7 @@
}
},
{
- "id": 5179,
+ "id": 5331,
"properties": {
"attached": "false",
"rotation": "10",
@@ -50046,7 +54370,7 @@
}
},
{
- "id": 5180,
+ "id": 5332,
"properties": {
"attached": "false",
"rotation": "11",
@@ -50054,7 +54378,7 @@
}
},
{
- "id": 5181,
+ "id": 5333,
"properties": {
"attached": "false",
"rotation": "11",
@@ -50062,7 +54386,7 @@
}
},
{
- "id": 5182,
+ "id": 5334,
"properties": {
"attached": "false",
"rotation": "12",
@@ -50070,7 +54394,7 @@
}
},
{
- "id": 5183,
+ "id": 5335,
"properties": {
"attached": "false",
"rotation": "12",
@@ -50078,7 +54402,7 @@
}
},
{
- "id": 5184,
+ "id": 5336,
"properties": {
"attached": "false",
"rotation": "13",
@@ -50086,7 +54410,7 @@
}
},
{
- "id": 5185,
+ "id": 5337,
"properties": {
"attached": "false",
"rotation": "13",
@@ -50094,7 +54418,7 @@
}
},
{
- "id": 5186,
+ "id": 5338,
"properties": {
"attached": "false",
"rotation": "14",
@@ -50102,7 +54426,7 @@
}
},
{
- "id": 5187,
+ "id": 5339,
"properties": {
"attached": "false",
"rotation": "14",
@@ -50110,7 +54434,7 @@
}
},
{
- "id": 5188,
+ "id": 5340,
"properties": {
"attached": "false",
"rotation": "15",
@@ -50118,7 +54442,7 @@
}
},
{
- "id": 5189,
+ "id": 5341,
"properties": {
"attached": "false",
"rotation": "15",
@@ -50137,20 +54461,20 @@
},
"states": [
{
- "id": 17974,
+ "id": 18443,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 17975,
+ "id": 18444,
"properties": {
"axis": "y"
}
},
{
- "id": 17976,
+ "id": 18445,
"properties": {
"axis": "z"
}
@@ -50161,7 +54485,7 @@
"states": [
{
"default": true,
- "id": 17980
+ "id": 18449
}
]
},
@@ -50169,7 +54493,7 @@
"states": [
{
"default": true,
- "id": 18038
+ "id": 18507
}
]
},
@@ -50182,14 +54506,14 @@
},
"states": [
{
- "id": 18052,
+ "id": 18521,
"properties": {
"powered": "true"
}
},
{
"default": true,
- "id": 18053,
+ "id": 18522,
"properties": {
"powered": "false"
}
@@ -50200,7 +54524,7 @@
"states": [
{
"default": true,
- "id": 18037
+ "id": 18506
}
]
},
@@ -50231,7 +54555,7 @@
},
"states": [
{
- "id": 18648,
+ "id": 19117,
"properties": {
"rotation": "0",
"waterlogged": "true"
@@ -50239,217 +54563,217 @@
},
{
"default": true,
- "id": 18649,
+ "id": 19118,
"properties": {
"rotation": "0",
"waterlogged": "false"
}
},
{
- "id": 18650,
+ "id": 19119,
"properties": {
"rotation": "1",
"waterlogged": "true"
}
},
{
- "id": 18651,
+ "id": 19120,
"properties": {
"rotation": "1",
"waterlogged": "false"
}
},
{
- "id": 18652,
+ "id": 19121,
"properties": {
"rotation": "2",
"waterlogged": "true"
}
},
{
- "id": 18653,
+ "id": 19122,
"properties": {
"rotation": "2",
"waterlogged": "false"
}
},
{
- "id": 18654,
+ "id": 19123,
"properties": {
"rotation": "3",
"waterlogged": "true"
}
},
{
- "id": 18655,
+ "id": 19124,
"properties": {
"rotation": "3",
"waterlogged": "false"
}
},
{
- "id": 18656,
+ "id": 19125,
"properties": {
"rotation": "4",
"waterlogged": "true"
}
},
{
- "id": 18657,
+ "id": 19126,
"properties": {
"rotation": "4",
"waterlogged": "false"
}
},
{
- "id": 18658,
+ "id": 19127,
"properties": {
"rotation": "5",
"waterlogged": "true"
}
},
{
- "id": 18659,
+ "id": 19128,
"properties": {
"rotation": "5",
"waterlogged": "false"
}
},
{
- "id": 18660,
+ "id": 19129,
"properties": {
"rotation": "6",
"waterlogged": "true"
}
},
{
- "id": 18661,
+ "id": 19130,
"properties": {
"rotation": "6",
"waterlogged": "false"
}
},
{
- "id": 18662,
+ "id": 19131,
"properties": {
"rotation": "7",
"waterlogged": "true"
}
},
{
- "id": 18663,
+ "id": 19132,
"properties": {
"rotation": "7",
"waterlogged": "false"
}
},
{
- "id": 18664,
+ "id": 19133,
"properties": {
"rotation": "8",
"waterlogged": "true"
}
},
{
- "id": 18665,
+ "id": 19134,
"properties": {
"rotation": "8",
"waterlogged": "false"
}
},
{
- "id": 18666,
+ "id": 19135,
"properties": {
"rotation": "9",
"waterlogged": "true"
}
},
{
- "id": 18667,
+ "id": 19136,
"properties": {
"rotation": "9",
"waterlogged": "false"
}
},
{
- "id": 18668,
+ "id": 19137,
"properties": {
"rotation": "10",
"waterlogged": "true"
}
},
{
- "id": 18669,
+ "id": 19138,
"properties": {
"rotation": "10",
"waterlogged": "false"
}
},
{
- "id": 18670,
+ "id": 19139,
"properties": {
"rotation": "11",
"waterlogged": "true"
}
},
{
- "id": 18671,
+ "id": 19140,
"properties": {
"rotation": "11",
"waterlogged": "false"
}
},
{
- "id": 18672,
+ "id": 19141,
"properties": {
"rotation": "12",
"waterlogged": "true"
}
},
{
- "id": 18673,
+ "id": 19142,
"properties": {
"rotation": "12",
"waterlogged": "false"
}
},
{
- "id": 18674,
+ "id": 19143,
"properties": {
"rotation": "13",
"waterlogged": "true"
}
},
{
- "id": 18675,
+ "id": 19144,
"properties": {
"rotation": "13",
"waterlogged": "false"
}
},
{
- "id": 18676,
+ "id": 19145,
"properties": {
"rotation": "14",
"waterlogged": "true"
}
},
{
- "id": 18677,
+ "id": 19146,
"properties": {
"rotation": "14",
"waterlogged": "false"
}
},
{
- "id": 18678,
+ "id": 19147,
"properties": {
"rotation": "15",
"waterlogged": "true"
}
},
{
- "id": 18679,
+ "id": 19148,
"properties": {
"rotation": "15",
"waterlogged": "false"
@@ -50471,21 +54795,21 @@
},
"states": [
{
- "id": 18040,
+ "id": 18509,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 18041,
+ "id": 18510,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 18042,
+ "id": 18511,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -50493,21 +54817,21 @@
},
{
"default": true,
- "id": 18043,
+ "id": 18512,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 18044,
+ "id": 18513,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 18045,
+ "id": 18514,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -50541,7 +54865,7 @@
},
"states": [
{
- "id": 18312,
+ "id": 18781,
"properties": {
"facing": "north",
"half": "top",
@@ -50550,7 +54874,7 @@
}
},
{
- "id": 18313,
+ "id": 18782,
"properties": {
"facing": "north",
"half": "top",
@@ -50559,7 +54883,7 @@
}
},
{
- "id": 18314,
+ "id": 18783,
"properties": {
"facing": "north",
"half": "top",
@@ -50568,7 +54892,7 @@
}
},
{
- "id": 18315,
+ "id": 18784,
"properties": {
"facing": "north",
"half": "top",
@@ -50577,7 +54901,7 @@
}
},
{
- "id": 18316,
+ "id": 18785,
"properties": {
"facing": "north",
"half": "top",
@@ -50586,7 +54910,7 @@
}
},
{
- "id": 18317,
+ "id": 18786,
"properties": {
"facing": "north",
"half": "top",
@@ -50595,7 +54919,7 @@
}
},
{
- "id": 18318,
+ "id": 18787,
"properties": {
"facing": "north",
"half": "top",
@@ -50604,7 +54928,7 @@
}
},
{
- "id": 18319,
+ "id": 18788,
"properties": {
"facing": "north",
"half": "top",
@@ -50613,7 +54937,7 @@
}
},
{
- "id": 18320,
+ "id": 18789,
"properties": {
"facing": "north",
"half": "top",
@@ -50622,7 +54946,7 @@
}
},
{
- "id": 18321,
+ "id": 18790,
"properties": {
"facing": "north",
"half": "top",
@@ -50631,7 +54955,7 @@
}
},
{
- "id": 18322,
+ "id": 18791,
"properties": {
"facing": "north",
"half": "bottom",
@@ -50641,7 +54965,7 @@
},
{
"default": true,
- "id": 18323,
+ "id": 18792,
"properties": {
"facing": "north",
"half": "bottom",
@@ -50650,7 +54974,7 @@
}
},
{
- "id": 18324,
+ "id": 18793,
"properties": {
"facing": "north",
"half": "bottom",
@@ -50659,7 +54983,7 @@
}
},
{
- "id": 18325,
+ "id": 18794,
"properties": {
"facing": "north",
"half": "bottom",
@@ -50668,7 +54992,7 @@
}
},
{
- "id": 18326,
+ "id": 18795,
"properties": {
"facing": "north",
"half": "bottom",
@@ -50677,7 +55001,7 @@
}
},
{
- "id": 18327,
+ "id": 18796,
"properties": {
"facing": "north",
"half": "bottom",
@@ -50686,7 +55010,7 @@
}
},
{
- "id": 18328,
+ "id": 18797,
"properties": {
"facing": "north",
"half": "bottom",
@@ -50695,7 +55019,7 @@
}
},
{
- "id": 18329,
+ "id": 18798,
"properties": {
"facing": "north",
"half": "bottom",
@@ -50704,7 +55028,7 @@
}
},
{
- "id": 18330,
+ "id": 18799,
"properties": {
"facing": "north",
"half": "bottom",
@@ -50713,7 +55037,7 @@
}
},
{
- "id": 18331,
+ "id": 18800,
"properties": {
"facing": "north",
"half": "bottom",
@@ -50722,7 +55046,7 @@
}
},
{
- "id": 18332,
+ "id": 18801,
"properties": {
"facing": "south",
"half": "top",
@@ -50731,7 +55055,7 @@
}
},
{
- "id": 18333,
+ "id": 18802,
"properties": {
"facing": "south",
"half": "top",
@@ -50740,7 +55064,7 @@
}
},
{
- "id": 18334,
+ "id": 18803,
"properties": {
"facing": "south",
"half": "top",
@@ -50749,7 +55073,7 @@
}
},
{
- "id": 18335,
+ "id": 18804,
"properties": {
"facing": "south",
"half": "top",
@@ -50758,7 +55082,7 @@
}
},
{
- "id": 18336,
+ "id": 18805,
"properties": {
"facing": "south",
"half": "top",
@@ -50767,7 +55091,7 @@
}
},
{
- "id": 18337,
+ "id": 18806,
"properties": {
"facing": "south",
"half": "top",
@@ -50776,7 +55100,7 @@
}
},
{
- "id": 18338,
+ "id": 18807,
"properties": {
"facing": "south",
"half": "top",
@@ -50785,7 +55109,7 @@
}
},
{
- "id": 18339,
+ "id": 18808,
"properties": {
"facing": "south",
"half": "top",
@@ -50794,7 +55118,7 @@
}
},
{
- "id": 18340,
+ "id": 18809,
"properties": {
"facing": "south",
"half": "top",
@@ -50803,7 +55127,7 @@
}
},
{
- "id": 18341,
+ "id": 18810,
"properties": {
"facing": "south",
"half": "top",
@@ -50812,7 +55136,7 @@
}
},
{
- "id": 18342,
+ "id": 18811,
"properties": {
"facing": "south",
"half": "bottom",
@@ -50821,7 +55145,7 @@
}
},
{
- "id": 18343,
+ "id": 18812,
"properties": {
"facing": "south",
"half": "bottom",
@@ -50830,7 +55154,7 @@
}
},
{
- "id": 18344,
+ "id": 18813,
"properties": {
"facing": "south",
"half": "bottom",
@@ -50839,7 +55163,7 @@
}
},
{
- "id": 18345,
+ "id": 18814,
"properties": {
"facing": "south",
"half": "bottom",
@@ -50848,7 +55172,7 @@
}
},
{
- "id": 18346,
+ "id": 18815,
"properties": {
"facing": "south",
"half": "bottom",
@@ -50857,7 +55181,7 @@
}
},
{
- "id": 18347,
+ "id": 18816,
"properties": {
"facing": "south",
"half": "bottom",
@@ -50866,7 +55190,7 @@
}
},
{
- "id": 18348,
+ "id": 18817,
"properties": {
"facing": "south",
"half": "bottom",
@@ -50875,7 +55199,7 @@
}
},
{
- "id": 18349,
+ "id": 18818,
"properties": {
"facing": "south",
"half": "bottom",
@@ -50884,7 +55208,7 @@
}
},
{
- "id": 18350,
+ "id": 18819,
"properties": {
"facing": "south",
"half": "bottom",
@@ -50893,7 +55217,7 @@
}
},
{
- "id": 18351,
+ "id": 18820,
"properties": {
"facing": "south",
"half": "bottom",
@@ -50902,7 +55226,7 @@
}
},
{
- "id": 18352,
+ "id": 18821,
"properties": {
"facing": "west",
"half": "top",
@@ -50911,7 +55235,7 @@
}
},
{
- "id": 18353,
+ "id": 18822,
"properties": {
"facing": "west",
"half": "top",
@@ -50920,7 +55244,7 @@
}
},
{
- "id": 18354,
+ "id": 18823,
"properties": {
"facing": "west",
"half": "top",
@@ -50929,7 +55253,7 @@
}
},
{
- "id": 18355,
+ "id": 18824,
"properties": {
"facing": "west",
"half": "top",
@@ -50938,7 +55262,7 @@
}
},
{
- "id": 18356,
+ "id": 18825,
"properties": {
"facing": "west",
"half": "top",
@@ -50947,7 +55271,7 @@
}
},
{
- "id": 18357,
+ "id": 18826,
"properties": {
"facing": "west",
"half": "top",
@@ -50956,7 +55280,7 @@
}
},
{
- "id": 18358,
+ "id": 18827,
"properties": {
"facing": "west",
"half": "top",
@@ -50965,7 +55289,7 @@
}
},
{
- "id": 18359,
+ "id": 18828,
"properties": {
"facing": "west",
"half": "top",
@@ -50974,7 +55298,7 @@
}
},
{
- "id": 18360,
+ "id": 18829,
"properties": {
"facing": "west",
"half": "top",
@@ -50983,7 +55307,7 @@
}
},
{
- "id": 18361,
+ "id": 18830,
"properties": {
"facing": "west",
"half": "top",
@@ -50992,7 +55316,7 @@
}
},
{
- "id": 18362,
+ "id": 18831,
"properties": {
"facing": "west",
"half": "bottom",
@@ -51001,7 +55325,7 @@
}
},
{
- "id": 18363,
+ "id": 18832,
"properties": {
"facing": "west",
"half": "bottom",
@@ -51010,7 +55334,7 @@
}
},
{
- "id": 18364,
+ "id": 18833,
"properties": {
"facing": "west",
"half": "bottom",
@@ -51019,7 +55343,7 @@
}
},
{
- "id": 18365,
+ "id": 18834,
"properties": {
"facing": "west",
"half": "bottom",
@@ -51028,7 +55352,7 @@
}
},
{
- "id": 18366,
+ "id": 18835,
"properties": {
"facing": "west",
"half": "bottom",
@@ -51037,7 +55361,7 @@
}
},
{
- "id": 18367,
+ "id": 18836,
"properties": {
"facing": "west",
"half": "bottom",
@@ -51046,7 +55370,7 @@
}
},
{
- "id": 18368,
+ "id": 18837,
"properties": {
"facing": "west",
"half": "bottom",
@@ -51055,7 +55379,7 @@
}
},
{
- "id": 18369,
+ "id": 18838,
"properties": {
"facing": "west",
"half": "bottom",
@@ -51064,7 +55388,7 @@
}
},
{
- "id": 18370,
+ "id": 18839,
"properties": {
"facing": "west",
"half": "bottom",
@@ -51073,7 +55397,7 @@
}
},
{
- "id": 18371,
+ "id": 18840,
"properties": {
"facing": "west",
"half": "bottom",
@@ -51082,7 +55406,7 @@
}
},
{
- "id": 18372,
+ "id": 18841,
"properties": {
"facing": "east",
"half": "top",
@@ -51091,7 +55415,7 @@
}
},
{
- "id": 18373,
+ "id": 18842,
"properties": {
"facing": "east",
"half": "top",
@@ -51100,7 +55424,7 @@
}
},
{
- "id": 18374,
+ "id": 18843,
"properties": {
"facing": "east",
"half": "top",
@@ -51109,7 +55433,7 @@
}
},
{
- "id": 18375,
+ "id": 18844,
"properties": {
"facing": "east",
"half": "top",
@@ -51118,7 +55442,7 @@
}
},
{
- "id": 18376,
+ "id": 18845,
"properties": {
"facing": "east",
"half": "top",
@@ -51127,7 +55451,7 @@
}
},
{
- "id": 18377,
+ "id": 18846,
"properties": {
"facing": "east",
"half": "top",
@@ -51136,7 +55460,7 @@
}
},
{
- "id": 18378,
+ "id": 18847,
"properties": {
"facing": "east",
"half": "top",
@@ -51145,7 +55469,7 @@
}
},
{
- "id": 18379,
+ "id": 18848,
"properties": {
"facing": "east",
"half": "top",
@@ -51154,7 +55478,7 @@
}
},
{
- "id": 18380,
+ "id": 18849,
"properties": {
"facing": "east",
"half": "top",
@@ -51163,7 +55487,7 @@
}
},
{
- "id": 18381,
+ "id": 18850,
"properties": {
"facing": "east",
"half": "top",
@@ -51172,7 +55496,7 @@
}
},
{
- "id": 18382,
+ "id": 18851,
"properties": {
"facing": "east",
"half": "bottom",
@@ -51181,7 +55505,7 @@
}
},
{
- "id": 18383,
+ "id": 18852,
"properties": {
"facing": "east",
"half": "bottom",
@@ -51190,7 +55514,7 @@
}
},
{
- "id": 18384,
+ "id": 18853,
"properties": {
"facing": "east",
"half": "bottom",
@@ -51199,7 +55523,7 @@
}
},
{
- "id": 18385,
+ "id": 18854,
"properties": {
"facing": "east",
"half": "bottom",
@@ -51208,7 +55532,7 @@
}
},
{
- "id": 18386,
+ "id": 18855,
"properties": {
"facing": "east",
"half": "bottom",
@@ -51217,7 +55541,7 @@
}
},
{
- "id": 18387,
+ "id": 18856,
"properties": {
"facing": "east",
"half": "bottom",
@@ -51226,7 +55550,7 @@
}
},
{
- "id": 18388,
+ "id": 18857,
"properties": {
"facing": "east",
"half": "bottom",
@@ -51235,7 +55559,7 @@
}
},
{
- "id": 18389,
+ "id": 18858,
"properties": {
"facing": "east",
"half": "bottom",
@@ -51244,7 +55568,7 @@
}
},
{
- "id": 18390,
+ "id": 18859,
"properties": {
"facing": "east",
"half": "bottom",
@@ -51253,7 +55577,7 @@
}
},
{
- "id": 18391,
+ "id": 18860,
"properties": {
"facing": "east",
"half": "bottom",
@@ -51273,20 +55597,20 @@
},
"states": [
{
- "id": 17968,
+ "id": 18437,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 17969,
+ "id": 18438,
"properties": {
"axis": "y"
}
},
{
- "id": 17970,
+ "id": 18439,
"properties": {
"axis": "z"
}
@@ -51320,7 +55644,7 @@
},
"states": [
{
- "id": 18120,
+ "id": 18589,
"properties": {
"facing": "north",
"half": "top",
@@ -51330,7 +55654,7 @@
}
},
{
- "id": 18121,
+ "id": 18590,
"properties": {
"facing": "north",
"half": "top",
@@ -51340,7 +55664,7 @@
}
},
{
- "id": 18122,
+ "id": 18591,
"properties": {
"facing": "north",
"half": "top",
@@ -51350,7 +55674,7 @@
}
},
{
- "id": 18123,
+ "id": 18592,
"properties": {
"facing": "north",
"half": "top",
@@ -51360,7 +55684,7 @@
}
},
{
- "id": 18124,
+ "id": 18593,
"properties": {
"facing": "north",
"half": "top",
@@ -51370,7 +55694,7 @@
}
},
{
- "id": 18125,
+ "id": 18594,
"properties": {
"facing": "north",
"half": "top",
@@ -51380,7 +55704,7 @@
}
},
{
- "id": 18126,
+ "id": 18595,
"properties": {
"facing": "north",
"half": "top",
@@ -51390,7 +55714,7 @@
}
},
{
- "id": 18127,
+ "id": 18596,
"properties": {
"facing": "north",
"half": "top",
@@ -51400,7 +55724,7 @@
}
},
{
- "id": 18128,
+ "id": 18597,
"properties": {
"facing": "north",
"half": "bottom",
@@ -51410,7 +55734,7 @@
}
},
{
- "id": 18129,
+ "id": 18598,
"properties": {
"facing": "north",
"half": "bottom",
@@ -51420,7 +55744,7 @@
}
},
{
- "id": 18130,
+ "id": 18599,
"properties": {
"facing": "north",
"half": "bottom",
@@ -51430,7 +55754,7 @@
}
},
{
- "id": 18131,
+ "id": 18600,
"properties": {
"facing": "north",
"half": "bottom",
@@ -51440,7 +55764,7 @@
}
},
{
- "id": 18132,
+ "id": 18601,
"properties": {
"facing": "north",
"half": "bottom",
@@ -51450,7 +55774,7 @@
}
},
{
- "id": 18133,
+ "id": 18602,
"properties": {
"facing": "north",
"half": "bottom",
@@ -51460,7 +55784,7 @@
}
},
{
- "id": 18134,
+ "id": 18603,
"properties": {
"facing": "north",
"half": "bottom",
@@ -51471,7 +55795,7 @@
},
{
"default": true,
- "id": 18135,
+ "id": 18604,
"properties": {
"facing": "north",
"half": "bottom",
@@ -51481,7 +55805,7 @@
}
},
{
- "id": 18136,
+ "id": 18605,
"properties": {
"facing": "south",
"half": "top",
@@ -51491,7 +55815,7 @@
}
},
{
- "id": 18137,
+ "id": 18606,
"properties": {
"facing": "south",
"half": "top",
@@ -51501,7 +55825,7 @@
}
},
{
- "id": 18138,
+ "id": 18607,
"properties": {
"facing": "south",
"half": "top",
@@ -51511,7 +55835,7 @@
}
},
{
- "id": 18139,
+ "id": 18608,
"properties": {
"facing": "south",
"half": "top",
@@ -51521,7 +55845,7 @@
}
},
{
- "id": 18140,
+ "id": 18609,
"properties": {
"facing": "south",
"half": "top",
@@ -51531,7 +55855,7 @@
}
},
{
- "id": 18141,
+ "id": 18610,
"properties": {
"facing": "south",
"half": "top",
@@ -51541,7 +55865,7 @@
}
},
{
- "id": 18142,
+ "id": 18611,
"properties": {
"facing": "south",
"half": "top",
@@ -51551,7 +55875,7 @@
}
},
{
- "id": 18143,
+ "id": 18612,
"properties": {
"facing": "south",
"half": "top",
@@ -51561,7 +55885,7 @@
}
},
{
- "id": 18144,
+ "id": 18613,
"properties": {
"facing": "south",
"half": "bottom",
@@ -51571,7 +55895,7 @@
}
},
{
- "id": 18145,
+ "id": 18614,
"properties": {
"facing": "south",
"half": "bottom",
@@ -51581,7 +55905,7 @@
}
},
{
- "id": 18146,
+ "id": 18615,
"properties": {
"facing": "south",
"half": "bottom",
@@ -51591,7 +55915,7 @@
}
},
{
- "id": 18147,
+ "id": 18616,
"properties": {
"facing": "south",
"half": "bottom",
@@ -51601,7 +55925,7 @@
}
},
{
- "id": 18148,
+ "id": 18617,
"properties": {
"facing": "south",
"half": "bottom",
@@ -51611,7 +55935,7 @@
}
},
{
- "id": 18149,
+ "id": 18618,
"properties": {
"facing": "south",
"half": "bottom",
@@ -51621,7 +55945,7 @@
}
},
{
- "id": 18150,
+ "id": 18619,
"properties": {
"facing": "south",
"half": "bottom",
@@ -51631,7 +55955,7 @@
}
},
{
- "id": 18151,
+ "id": 18620,
"properties": {
"facing": "south",
"half": "bottom",
@@ -51641,7 +55965,7 @@
}
},
{
- "id": 18152,
+ "id": 18621,
"properties": {
"facing": "west",
"half": "top",
@@ -51651,7 +55975,7 @@
}
},
{
- "id": 18153,
+ "id": 18622,
"properties": {
"facing": "west",
"half": "top",
@@ -51661,7 +55985,7 @@
}
},
{
- "id": 18154,
+ "id": 18623,
"properties": {
"facing": "west",
"half": "top",
@@ -51671,7 +55995,7 @@
}
},
{
- "id": 18155,
+ "id": 18624,
"properties": {
"facing": "west",
"half": "top",
@@ -51681,7 +56005,7 @@
}
},
{
- "id": 18156,
+ "id": 18625,
"properties": {
"facing": "west",
"half": "top",
@@ -51691,7 +56015,7 @@
}
},
{
- "id": 18157,
+ "id": 18626,
"properties": {
"facing": "west",
"half": "top",
@@ -51701,7 +56025,7 @@
}
},
{
- "id": 18158,
+ "id": 18627,
"properties": {
"facing": "west",
"half": "top",
@@ -51711,7 +56035,7 @@
}
},
{
- "id": 18159,
+ "id": 18628,
"properties": {
"facing": "west",
"half": "top",
@@ -51721,7 +56045,7 @@
}
},
{
- "id": 18160,
+ "id": 18629,
"properties": {
"facing": "west",
"half": "bottom",
@@ -51731,7 +56055,7 @@
}
},
{
- "id": 18161,
+ "id": 18630,
"properties": {
"facing": "west",
"half": "bottom",
@@ -51741,7 +56065,7 @@
}
},
{
- "id": 18162,
+ "id": 18631,
"properties": {
"facing": "west",
"half": "bottom",
@@ -51751,7 +56075,7 @@
}
},
{
- "id": 18163,
+ "id": 18632,
"properties": {
"facing": "west",
"half": "bottom",
@@ -51761,7 +56085,7 @@
}
},
{
- "id": 18164,
+ "id": 18633,
"properties": {
"facing": "west",
"half": "bottom",
@@ -51771,7 +56095,7 @@
}
},
{
- "id": 18165,
+ "id": 18634,
"properties": {
"facing": "west",
"half": "bottom",
@@ -51781,7 +56105,7 @@
}
},
{
- "id": 18166,
+ "id": 18635,
"properties": {
"facing": "west",
"half": "bottom",
@@ -51791,7 +56115,7 @@
}
},
{
- "id": 18167,
+ "id": 18636,
"properties": {
"facing": "west",
"half": "bottom",
@@ -51801,7 +56125,7 @@
}
},
{
- "id": 18168,
+ "id": 18637,
"properties": {
"facing": "east",
"half": "top",
@@ -51811,7 +56135,7 @@
}
},
{
- "id": 18169,
+ "id": 18638,
"properties": {
"facing": "east",
"half": "top",
@@ -51821,7 +56145,7 @@
}
},
{
- "id": 18170,
+ "id": 18639,
"properties": {
"facing": "east",
"half": "top",
@@ -51831,7 +56155,7 @@
}
},
{
- "id": 18171,
+ "id": 18640,
"properties": {
"facing": "east",
"half": "top",
@@ -51841,7 +56165,7 @@
}
},
{
- "id": 18172,
+ "id": 18641,
"properties": {
"facing": "east",
"half": "top",
@@ -51851,7 +56175,7 @@
}
},
{
- "id": 18173,
+ "id": 18642,
"properties": {
"facing": "east",
"half": "top",
@@ -51861,7 +56185,7 @@
}
},
{
- "id": 18174,
+ "id": 18643,
"properties": {
"facing": "east",
"half": "top",
@@ -51871,7 +56195,7 @@
}
},
{
- "id": 18175,
+ "id": 18644,
"properties": {
"facing": "east",
"half": "top",
@@ -51881,7 +56205,7 @@
}
},
{
- "id": 18176,
+ "id": 18645,
"properties": {
"facing": "east",
"half": "bottom",
@@ -51891,7 +56215,7 @@
}
},
{
- "id": 18177,
+ "id": 18646,
"properties": {
"facing": "east",
"half": "bottom",
@@ -51901,7 +56225,7 @@
}
},
{
- "id": 18178,
+ "id": 18647,
"properties": {
"facing": "east",
"half": "bottom",
@@ -51911,7 +56235,7 @@
}
},
{
- "id": 18179,
+ "id": 18648,
"properties": {
"facing": "east",
"half": "bottom",
@@ -51921,7 +56245,7 @@
}
},
{
- "id": 18180,
+ "id": 18649,
"properties": {
"facing": "east",
"half": "bottom",
@@ -51931,7 +56255,7 @@
}
},
{
- "id": 18181,
+ "id": 18650,
"properties": {
"facing": "east",
"half": "bottom",
@@ -51941,7 +56265,7 @@
}
},
{
- "id": 18182,
+ "id": 18651,
"properties": {
"facing": "east",
"half": "bottom",
@@ -51951,7 +56275,7 @@
}
},
{
- "id": 18183,
+ "id": 18652,
"properties": {
"facing": "east",
"half": "bottom",
@@ -51977,7 +56301,7 @@
},
"states": [
{
- "id": 5438,
+ "id": 5598,
"properties": {
"facing": "north",
"waterlogged": "true"
@@ -51985,49 +56309,49 @@
},
{
"default": true,
- "id": 5439,
+ "id": 5599,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 5440,
+ "id": 5600,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 5441,
+ "id": 5601,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 5442,
+ "id": 5602,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 5443,
+ "id": 5603,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 5444,
+ "id": 5604,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 5445,
+ "id": 5605,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -52050,7 +56374,7 @@
},
"states": [
{
- "id": 18712,
+ "id": 19181,
"properties": {
"facing": "north",
"waterlogged": "true"
@@ -52058,49 +56382,49 @@
},
{
"default": true,
- "id": 18713,
+ "id": 19182,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 18714,
+ "id": 19183,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 18715,
+ "id": 19184,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 18716,
+ "id": 19185,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 18717,
+ "id": 19186,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 18718,
+ "id": 19187,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 18719,
+ "id": 19188,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -52112,7 +56436,7 @@
"states": [
{
"default": true,
- "id": 18821
+ "id": 19290
}
]
},
@@ -52120,7 +56444,7 @@
"states": [
{
"default": true,
- "id": 20701
+ "id": 21170
}
]
},
@@ -52138,21 +56462,21 @@
},
"states": [
{
- "id": 21040,
+ "id": 21509,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 21041,
+ "id": 21510,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 21042,
+ "id": 21511,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -52160,21 +56484,21 @@
},
{
"default": true,
- "id": 21043,
+ "id": 21512,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 21044,
+ "id": 21513,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 21045,
+ "id": 21514,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -52208,7 +56532,7 @@
},
"states": [
{
- "id": 20942,
+ "id": 21411,
"properties": {
"facing": "north",
"half": "top",
@@ -52217,7 +56541,7 @@
}
},
{
- "id": 20943,
+ "id": 21412,
"properties": {
"facing": "north",
"half": "top",
@@ -52226,7 +56550,7 @@
}
},
{
- "id": 20944,
+ "id": 21413,
"properties": {
"facing": "north",
"half": "top",
@@ -52235,7 +56559,7 @@
}
},
{
- "id": 20945,
+ "id": 21414,
"properties": {
"facing": "north",
"half": "top",
@@ -52244,7 +56568,7 @@
}
},
{
- "id": 20946,
+ "id": 21415,
"properties": {
"facing": "north",
"half": "top",
@@ -52253,7 +56577,7 @@
}
},
{
- "id": 20947,
+ "id": 21416,
"properties": {
"facing": "north",
"half": "top",
@@ -52262,7 +56586,7 @@
}
},
{
- "id": 20948,
+ "id": 21417,
"properties": {
"facing": "north",
"half": "top",
@@ -52271,7 +56595,7 @@
}
},
{
- "id": 20949,
+ "id": 21418,
"properties": {
"facing": "north",
"half": "top",
@@ -52280,7 +56604,7 @@
}
},
{
- "id": 20950,
+ "id": 21419,
"properties": {
"facing": "north",
"half": "top",
@@ -52289,7 +56613,7 @@
}
},
{
- "id": 20951,
+ "id": 21420,
"properties": {
"facing": "north",
"half": "top",
@@ -52298,7 +56622,7 @@
}
},
{
- "id": 20952,
+ "id": 21421,
"properties": {
"facing": "north",
"half": "bottom",
@@ -52308,7 +56632,7 @@
},
{
"default": true,
- "id": 20953,
+ "id": 21422,
"properties": {
"facing": "north",
"half": "bottom",
@@ -52317,7 +56641,7 @@
}
},
{
- "id": 20954,
+ "id": 21423,
"properties": {
"facing": "north",
"half": "bottom",
@@ -52326,7 +56650,7 @@
}
},
{
- "id": 20955,
+ "id": 21424,
"properties": {
"facing": "north",
"half": "bottom",
@@ -52335,7 +56659,7 @@
}
},
{
- "id": 20956,
+ "id": 21425,
"properties": {
"facing": "north",
"half": "bottom",
@@ -52344,7 +56668,7 @@
}
},
{
- "id": 20957,
+ "id": 21426,
"properties": {
"facing": "north",
"half": "bottom",
@@ -52353,7 +56677,7 @@
}
},
{
- "id": 20958,
+ "id": 21427,
"properties": {
"facing": "north",
"half": "bottom",
@@ -52362,7 +56686,7 @@
}
},
{
- "id": 20959,
+ "id": 21428,
"properties": {
"facing": "north",
"half": "bottom",
@@ -52371,7 +56695,7 @@
}
},
{
- "id": 20960,
+ "id": 21429,
"properties": {
"facing": "north",
"half": "bottom",
@@ -52380,7 +56704,7 @@
}
},
{
- "id": 20961,
+ "id": 21430,
"properties": {
"facing": "north",
"half": "bottom",
@@ -52389,7 +56713,7 @@
}
},
{
- "id": 20962,
+ "id": 21431,
"properties": {
"facing": "south",
"half": "top",
@@ -52398,7 +56722,7 @@
}
},
{
- "id": 20963,
+ "id": 21432,
"properties": {
"facing": "south",
"half": "top",
@@ -52407,7 +56731,7 @@
}
},
{
- "id": 20964,
+ "id": 21433,
"properties": {
"facing": "south",
"half": "top",
@@ -52416,7 +56740,7 @@
}
},
{
- "id": 20965,
+ "id": 21434,
"properties": {
"facing": "south",
"half": "top",
@@ -52425,7 +56749,7 @@
}
},
{
- "id": 20966,
+ "id": 21435,
"properties": {
"facing": "south",
"half": "top",
@@ -52434,7 +56758,7 @@
}
},
{
- "id": 20967,
+ "id": 21436,
"properties": {
"facing": "south",
"half": "top",
@@ -52443,7 +56767,7 @@
}
},
{
- "id": 20968,
+ "id": 21437,
"properties": {
"facing": "south",
"half": "top",
@@ -52452,7 +56776,7 @@
}
},
{
- "id": 20969,
+ "id": 21438,
"properties": {
"facing": "south",
"half": "top",
@@ -52461,7 +56785,7 @@
}
},
{
- "id": 20970,
+ "id": 21439,
"properties": {
"facing": "south",
"half": "top",
@@ -52470,7 +56794,7 @@
}
},
{
- "id": 20971,
+ "id": 21440,
"properties": {
"facing": "south",
"half": "top",
@@ -52479,7 +56803,7 @@
}
},
{
- "id": 20972,
+ "id": 21441,
"properties": {
"facing": "south",
"half": "bottom",
@@ -52488,7 +56812,7 @@
}
},
{
- "id": 20973,
+ "id": 21442,
"properties": {
"facing": "south",
"half": "bottom",
@@ -52497,7 +56821,7 @@
}
},
{
- "id": 20974,
+ "id": 21443,
"properties": {
"facing": "south",
"half": "bottom",
@@ -52506,7 +56830,7 @@
}
},
{
- "id": 20975,
+ "id": 21444,
"properties": {
"facing": "south",
"half": "bottom",
@@ -52515,7 +56839,7 @@
}
},
{
- "id": 20976,
+ "id": 21445,
"properties": {
"facing": "south",
"half": "bottom",
@@ -52524,7 +56848,7 @@
}
},
{
- "id": 20977,
+ "id": 21446,
"properties": {
"facing": "south",
"half": "bottom",
@@ -52533,7 +56857,7 @@
}
},
{
- "id": 20978,
+ "id": 21447,
"properties": {
"facing": "south",
"half": "bottom",
@@ -52542,7 +56866,7 @@
}
},
{
- "id": 20979,
+ "id": 21448,
"properties": {
"facing": "south",
"half": "bottom",
@@ -52551,7 +56875,7 @@
}
},
{
- "id": 20980,
+ "id": 21449,
"properties": {
"facing": "south",
"half": "bottom",
@@ -52560,7 +56884,7 @@
}
},
{
- "id": 20981,
+ "id": 21450,
"properties": {
"facing": "south",
"half": "bottom",
@@ -52569,7 +56893,7 @@
}
},
{
- "id": 20982,
+ "id": 21451,
"properties": {
"facing": "west",
"half": "top",
@@ -52578,7 +56902,7 @@
}
},
{
- "id": 20983,
+ "id": 21452,
"properties": {
"facing": "west",
"half": "top",
@@ -52587,7 +56911,7 @@
}
},
{
- "id": 20984,
+ "id": 21453,
"properties": {
"facing": "west",
"half": "top",
@@ -52596,7 +56920,7 @@
}
},
{
- "id": 20985,
+ "id": 21454,
"properties": {
"facing": "west",
"half": "top",
@@ -52605,7 +56929,7 @@
}
},
{
- "id": 20986,
+ "id": 21455,
"properties": {
"facing": "west",
"half": "top",
@@ -52614,7 +56938,7 @@
}
},
{
- "id": 20987,
+ "id": 21456,
"properties": {
"facing": "west",
"half": "top",
@@ -52623,7 +56947,7 @@
}
},
{
- "id": 20988,
+ "id": 21457,
"properties": {
"facing": "west",
"half": "top",
@@ -52632,7 +56956,7 @@
}
},
{
- "id": 20989,
+ "id": 21458,
"properties": {
"facing": "west",
"half": "top",
@@ -52641,7 +56965,7 @@
}
},
{
- "id": 20990,
+ "id": 21459,
"properties": {
"facing": "west",
"half": "top",
@@ -52650,7 +56974,7 @@
}
},
{
- "id": 20991,
+ "id": 21460,
"properties": {
"facing": "west",
"half": "top",
@@ -52659,7 +56983,7 @@
}
},
{
- "id": 20992,
+ "id": 21461,
"properties": {
"facing": "west",
"half": "bottom",
@@ -52668,7 +56992,7 @@
}
},
{
- "id": 20993,
+ "id": 21462,
"properties": {
"facing": "west",
"half": "bottom",
@@ -52677,7 +57001,7 @@
}
},
{
- "id": 20994,
+ "id": 21463,
"properties": {
"facing": "west",
"half": "bottom",
@@ -52686,7 +57010,7 @@
}
},
{
- "id": 20995,
+ "id": 21464,
"properties": {
"facing": "west",
"half": "bottom",
@@ -52695,7 +57019,7 @@
}
},
{
- "id": 20996,
+ "id": 21465,
"properties": {
"facing": "west",
"half": "bottom",
@@ -52704,7 +57028,7 @@
}
},
{
- "id": 20997,
+ "id": 21466,
"properties": {
"facing": "west",
"half": "bottom",
@@ -52713,7 +57037,7 @@
}
},
{
- "id": 20998,
+ "id": 21467,
"properties": {
"facing": "west",
"half": "bottom",
@@ -52722,7 +57046,7 @@
}
},
{
- "id": 20999,
+ "id": 21468,
"properties": {
"facing": "west",
"half": "bottom",
@@ -52731,7 +57055,7 @@
}
},
{
- "id": 21000,
+ "id": 21469,
"properties": {
"facing": "west",
"half": "bottom",
@@ -52740,7 +57064,7 @@
}
},
{
- "id": 21001,
+ "id": 21470,
"properties": {
"facing": "west",
"half": "bottom",
@@ -52749,7 +57073,7 @@
}
},
{
- "id": 21002,
+ "id": 21471,
"properties": {
"facing": "east",
"half": "top",
@@ -52758,7 +57082,7 @@
}
},
{
- "id": 21003,
+ "id": 21472,
"properties": {
"facing": "east",
"half": "top",
@@ -52767,7 +57091,7 @@
}
},
{
- "id": 21004,
+ "id": 21473,
"properties": {
"facing": "east",
"half": "top",
@@ -52776,7 +57100,7 @@
}
},
{
- "id": 21005,
+ "id": 21474,
"properties": {
"facing": "east",
"half": "top",
@@ -52785,7 +57109,7 @@
}
},
{
- "id": 21006,
+ "id": 21475,
"properties": {
"facing": "east",
"half": "top",
@@ -52794,7 +57118,7 @@
}
},
{
- "id": 21007,
+ "id": 21476,
"properties": {
"facing": "east",
"half": "top",
@@ -52803,7 +57127,7 @@
}
},
{
- "id": 21008,
+ "id": 21477,
"properties": {
"facing": "east",
"half": "top",
@@ -52812,7 +57136,7 @@
}
},
{
- "id": 21009,
+ "id": 21478,
"properties": {
"facing": "east",
"half": "top",
@@ -52821,7 +57145,7 @@
}
},
{
- "id": 21010,
+ "id": 21479,
"properties": {
"facing": "east",
"half": "top",
@@ -52830,7 +57154,7 @@
}
},
{
- "id": 21011,
+ "id": 21480,
"properties": {
"facing": "east",
"half": "top",
@@ -52839,7 +57163,7 @@
}
},
{
- "id": 21012,
+ "id": 21481,
"properties": {
"facing": "east",
"half": "bottom",
@@ -52848,7 +57172,7 @@
}
},
{
- "id": 21013,
+ "id": 21482,
"properties": {
"facing": "east",
"half": "bottom",
@@ -52857,7 +57181,7 @@
}
},
{
- "id": 21014,
+ "id": 21483,
"properties": {
"facing": "east",
"half": "bottom",
@@ -52866,7 +57190,7 @@
}
},
{
- "id": 21015,
+ "id": 21484,
"properties": {
"facing": "east",
"half": "bottom",
@@ -52875,7 +57199,7 @@
}
},
{
- "id": 21016,
+ "id": 21485,
"properties": {
"facing": "east",
"half": "bottom",
@@ -52884,7 +57208,7 @@
}
},
{
- "id": 21017,
+ "id": 21486,
"properties": {
"facing": "east",
"half": "bottom",
@@ -52893,7 +57217,7 @@
}
},
{
- "id": 21018,
+ "id": 21487,
"properties": {
"facing": "east",
"half": "bottom",
@@ -52902,7 +57226,7 @@
}
},
{
- "id": 21019,
+ "id": 21488,
"properties": {
"facing": "east",
"half": "bottom",
@@ -52911,7 +57235,7 @@
}
},
{
- "id": 21020,
+ "id": 21489,
"properties": {
"facing": "east",
"half": "bottom",
@@ -52920,7 +57244,7 @@
}
},
{
- "id": 21021,
+ "id": 21490,
"properties": {
"facing": "east",
"half": "bottom",
@@ -52934,7 +57258,7 @@
"states": [
{
"default": true,
- "id": 10604
+ "id": 10936
}
]
},
@@ -52952,21 +57276,21 @@
},
"states": [
{
- "id": 10811,
+ "id": 11149,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 10812,
+ "id": 11150,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 10813,
+ "id": 11151,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -52974,21 +57298,21 @@
},
{
"default": true,
- "id": 10814,
+ "id": 11152,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 10815,
+ "id": 11153,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 10816,
+ "id": 11154,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -53000,7 +57324,7 @@
"states": [
{
"default": true,
- "id": 486
+ "id": 533
}
]
},
@@ -53018,21 +57342,21 @@
},
"states": [
{
- "id": 10757,
+ "id": 11095,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 10758,
+ "id": 11096,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 10759,
+ "id": 11097,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -53040,21 +57364,21 @@
},
{
"default": true,
- "id": 10760,
+ "id": 11098,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 10761,
+ "id": 11099,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 10762,
+ "id": 11100,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -53086,97 +57410,97 @@
"states": [
{
"default": true,
- "id": 10426,
+ "id": 10758,
"properties": {
"rotation": "0"
}
},
{
- "id": 10427,
+ "id": 10759,
"properties": {
"rotation": "1"
}
},
{
- "id": 10428,
+ "id": 10760,
"properties": {
"rotation": "2"
}
},
{
- "id": 10429,
+ "id": 10761,
"properties": {
"rotation": "3"
}
},
{
- "id": 10430,
+ "id": 10762,
"properties": {
"rotation": "4"
}
},
{
- "id": 10431,
+ "id": 10763,
"properties": {
"rotation": "5"
}
},
{
- "id": 10432,
+ "id": 10764,
"properties": {
"rotation": "6"
}
},
{
- "id": 10433,
+ "id": 10765,
"properties": {
"rotation": "7"
}
},
{
- "id": 10434,
+ "id": 10766,
"properties": {
"rotation": "8"
}
},
{
- "id": 10435,
+ "id": 10767,
"properties": {
"rotation": "9"
}
},
{
- "id": 10436,
+ "id": 10768,
"properties": {
"rotation": "10"
}
},
{
- "id": 10437,
+ "id": 10769,
"properties": {
"rotation": "11"
}
},
{
- "id": 10438,
+ "id": 10770,
"properties": {
"rotation": "12"
}
},
{
- "id": 10439,
+ "id": 10771,
"properties": {
"rotation": "13"
}
},
{
- "id": 10440,
+ "id": 10772,
"properties": {
"rotation": "14"
}
},
{
- "id": 10441,
+ "id": 10773,
"properties": {
"rotation": "15"
}
@@ -53202,7 +57526,7 @@
},
"states": [
{
- "id": 1781,
+ "id": 1828,
"properties": {
"facing": "north",
"occupied": "true",
@@ -53210,7 +57534,7 @@
}
},
{
- "id": 1782,
+ "id": 1829,
"properties": {
"facing": "north",
"occupied": "true",
@@ -53218,7 +57542,7 @@
}
},
{
- "id": 1783,
+ "id": 1830,
"properties": {
"facing": "north",
"occupied": "false",
@@ -53227,7 +57551,7 @@
},
{
"default": true,
- "id": 1784,
+ "id": 1831,
"properties": {
"facing": "north",
"occupied": "false",
@@ -53235,7 +57559,7 @@
}
},
{
- "id": 1785,
+ "id": 1832,
"properties": {
"facing": "south",
"occupied": "true",
@@ -53243,7 +57567,7 @@
}
},
{
- "id": 1786,
+ "id": 1833,
"properties": {
"facing": "south",
"occupied": "true",
@@ -53251,7 +57575,7 @@
}
},
{
- "id": 1787,
+ "id": 1834,
"properties": {
"facing": "south",
"occupied": "false",
@@ -53259,7 +57583,7 @@
}
},
{
- "id": 1788,
+ "id": 1835,
"properties": {
"facing": "south",
"occupied": "false",
@@ -53267,7 +57591,7 @@
}
},
{
- "id": 1789,
+ "id": 1836,
"properties": {
"facing": "west",
"occupied": "true",
@@ -53275,7 +57599,7 @@
}
},
{
- "id": 1790,
+ "id": 1837,
"properties": {
"facing": "west",
"occupied": "true",
@@ -53283,7 +57607,7 @@
}
},
{
- "id": 1791,
+ "id": 1838,
"properties": {
"facing": "west",
"occupied": "false",
@@ -53291,7 +57615,7 @@
}
},
{
- "id": 1792,
+ "id": 1839,
"properties": {
"facing": "west",
"occupied": "false",
@@ -53299,7 +57623,7 @@
}
},
{
- "id": 1793,
+ "id": 1840,
"properties": {
"facing": "east",
"occupied": "true",
@@ -53307,7 +57631,7 @@
}
},
{
- "id": 1794,
+ "id": 1841,
"properties": {
"facing": "east",
"occupied": "true",
@@ -53315,7 +57639,7 @@
}
},
{
- "id": 1795,
+ "id": 1842,
"properties": {
"facing": "east",
"occupied": "false",
@@ -53323,7 +57647,7 @@
}
},
{
- "id": 1796,
+ "id": 1843,
"properties": {
"facing": "east",
"occupied": "false",
@@ -53351,7 +57675,7 @@
},
"states": [
{
- "id": 20257,
+ "id": 20726,
"properties": {
"candles": "1",
"lit": "true",
@@ -53359,7 +57683,7 @@
}
},
{
- "id": 20258,
+ "id": 20727,
"properties": {
"candles": "1",
"lit": "true",
@@ -53367,7 +57691,7 @@
}
},
{
- "id": 20259,
+ "id": 20728,
"properties": {
"candles": "1",
"lit": "false",
@@ -53376,7 +57700,7 @@
},
{
"default": true,
- "id": 20260,
+ "id": 20729,
"properties": {
"candles": "1",
"lit": "false",
@@ -53384,7 +57708,7 @@
}
},
{
- "id": 20261,
+ "id": 20730,
"properties": {
"candles": "2",
"lit": "true",
@@ -53392,7 +57716,7 @@
}
},
{
- "id": 20262,
+ "id": 20731,
"properties": {
"candles": "2",
"lit": "true",
@@ -53400,7 +57724,7 @@
}
},
{
- "id": 20263,
+ "id": 20732,
"properties": {
"candles": "2",
"lit": "false",
@@ -53408,7 +57732,7 @@
}
},
{
- "id": 20264,
+ "id": 20733,
"properties": {
"candles": "2",
"lit": "false",
@@ -53416,7 +57740,7 @@
}
},
{
- "id": 20265,
+ "id": 20734,
"properties": {
"candles": "3",
"lit": "true",
@@ -53424,7 +57748,7 @@
}
},
{
- "id": 20266,
+ "id": 20735,
"properties": {
"candles": "3",
"lit": "true",
@@ -53432,7 +57756,7 @@
}
},
{
- "id": 20267,
+ "id": 20736,
"properties": {
"candles": "3",
"lit": "false",
@@ -53440,7 +57764,7 @@
}
},
{
- "id": 20268,
+ "id": 20737,
"properties": {
"candles": "3",
"lit": "false",
@@ -53448,7 +57772,7 @@
}
},
{
- "id": 20269,
+ "id": 20738,
"properties": {
"candles": "4",
"lit": "true",
@@ -53456,7 +57780,7 @@
}
},
{
- "id": 20270,
+ "id": 20739,
"properties": {
"candles": "4",
"lit": "true",
@@ -53464,7 +57788,7 @@
}
},
{
- "id": 20271,
+ "id": 20740,
"properties": {
"candles": "4",
"lit": "false",
@@ -53472,7 +57796,7 @@
}
},
{
- "id": 20272,
+ "id": 20741,
"properties": {
"candles": "4",
"lit": "false",
@@ -53490,14 +57814,14 @@
},
"states": [
{
- "id": 20389,
+ "id": 20858,
"properties": {
"lit": "true"
}
},
{
"default": true,
- "id": 20390,
+ "id": 20859,
"properties": {
"lit": "false"
}
@@ -53508,7 +57832,7 @@
"states": [
{
"default": true,
- "id": 10260
+ "id": 10592
}
]
},
@@ -53516,7 +57840,7 @@
"states": [
{
"default": true,
- "id": 12112
+ "id": 12581
}
]
},
@@ -53524,7 +57848,7 @@
"states": [
{
"default": true,
- "id": 12128
+ "id": 12597
}
]
},
@@ -53540,25 +57864,25 @@
"states": [
{
"default": true,
- "id": 12075,
+ "id": 12544,
"properties": {
"facing": "north"
}
},
{
- "id": 12076,
+ "id": 12545,
"properties": {
"facing": "south"
}
},
{
- "id": 12077,
+ "id": 12546,
"properties": {
"facing": "west"
}
},
{
- "id": 12078,
+ "id": 12547,
"properties": {
"facing": "east"
}
@@ -53578,38 +57902,38 @@
},
"states": [
{
- "id": 11997,
+ "id": 12466,
"properties": {
"facing": "north"
}
},
{
- "id": 11998,
+ "id": 12467,
"properties": {
"facing": "east"
}
},
{
- "id": 11999,
+ "id": 12468,
"properties": {
"facing": "south"
}
},
{
- "id": 12000,
+ "id": 12469,
"properties": {
"facing": "west"
}
},
{
"default": true,
- "id": 12001,
+ "id": 12470,
"properties": {
"facing": "up"
}
},
{
- "id": 12002,
+ "id": 12471,
"properties": {
"facing": "down"
}
@@ -53620,7 +57944,7 @@
"states": [
{
"default": true,
- "id": 5789
+ "id": 5951
}
]
},
@@ -53649,7 +57973,7 @@
},
"states": [
{
- "id": 9264,
+ "id": 9516,
"properties": {
"east": "true",
"north": "true",
@@ -53659,7 +57983,7 @@
}
},
{
- "id": 9265,
+ "id": 9517,
"properties": {
"east": "true",
"north": "true",
@@ -53669,7 +57993,7 @@
}
},
{
- "id": 9266,
+ "id": 9518,
"properties": {
"east": "true",
"north": "true",
@@ -53679,7 +58003,7 @@
}
},
{
- "id": 9267,
+ "id": 9519,
"properties": {
"east": "true",
"north": "true",
@@ -53689,7 +58013,7 @@
}
},
{
- "id": 9268,
+ "id": 9520,
"properties": {
"east": "true",
"north": "true",
@@ -53699,7 +58023,7 @@
}
},
{
- "id": 9269,
+ "id": 9521,
"properties": {
"east": "true",
"north": "true",
@@ -53709,7 +58033,7 @@
}
},
{
- "id": 9270,
+ "id": 9522,
"properties": {
"east": "true",
"north": "true",
@@ -53719,7 +58043,7 @@
}
},
{
- "id": 9271,
+ "id": 9523,
"properties": {
"east": "true",
"north": "true",
@@ -53729,7 +58053,7 @@
}
},
{
- "id": 9272,
+ "id": 9524,
"properties": {
"east": "true",
"north": "false",
@@ -53739,7 +58063,7 @@
}
},
{
- "id": 9273,
+ "id": 9525,
"properties": {
"east": "true",
"north": "false",
@@ -53749,7 +58073,7 @@
}
},
{
- "id": 9274,
+ "id": 9526,
"properties": {
"east": "true",
"north": "false",
@@ -53759,7 +58083,7 @@
}
},
{
- "id": 9275,
+ "id": 9527,
"properties": {
"east": "true",
"north": "false",
@@ -53769,7 +58093,7 @@
}
},
{
- "id": 9276,
+ "id": 9528,
"properties": {
"east": "true",
"north": "false",
@@ -53779,7 +58103,7 @@
}
},
{
- "id": 9277,
+ "id": 9529,
"properties": {
"east": "true",
"north": "false",
@@ -53789,7 +58113,7 @@
}
},
{
- "id": 9278,
+ "id": 9530,
"properties": {
"east": "true",
"north": "false",
@@ -53799,7 +58123,7 @@
}
},
{
- "id": 9279,
+ "id": 9531,
"properties": {
"east": "true",
"north": "false",
@@ -53809,7 +58133,7 @@
}
},
{
- "id": 9280,
+ "id": 9532,
"properties": {
"east": "false",
"north": "true",
@@ -53819,7 +58143,7 @@
}
},
{
- "id": 9281,
+ "id": 9533,
"properties": {
"east": "false",
"north": "true",
@@ -53829,7 +58153,7 @@
}
},
{
- "id": 9282,
+ "id": 9534,
"properties": {
"east": "false",
"north": "true",
@@ -53839,7 +58163,7 @@
}
},
{
- "id": 9283,
+ "id": 9535,
"properties": {
"east": "false",
"north": "true",
@@ -53849,7 +58173,7 @@
}
},
{
- "id": 9284,
+ "id": 9536,
"properties": {
"east": "false",
"north": "true",
@@ -53859,7 +58183,7 @@
}
},
{
- "id": 9285,
+ "id": 9537,
"properties": {
"east": "false",
"north": "true",
@@ -53869,7 +58193,7 @@
}
},
{
- "id": 9286,
+ "id": 9538,
"properties": {
"east": "false",
"north": "true",
@@ -53879,7 +58203,7 @@
}
},
{
- "id": 9287,
+ "id": 9539,
"properties": {
"east": "false",
"north": "true",
@@ -53889,7 +58213,7 @@
}
},
{
- "id": 9288,
+ "id": 9540,
"properties": {
"east": "false",
"north": "false",
@@ -53899,7 +58223,7 @@
}
},
{
- "id": 9289,
+ "id": 9541,
"properties": {
"east": "false",
"north": "false",
@@ -53909,7 +58233,7 @@
}
},
{
- "id": 9290,
+ "id": 9542,
"properties": {
"east": "false",
"north": "false",
@@ -53919,7 +58243,7 @@
}
},
{
- "id": 9291,
+ "id": 9543,
"properties": {
"east": "false",
"north": "false",
@@ -53929,7 +58253,7 @@
}
},
{
- "id": 9292,
+ "id": 9544,
"properties": {
"east": "false",
"north": "false",
@@ -53939,7 +58263,7 @@
}
},
{
- "id": 9293,
+ "id": 9545,
"properties": {
"east": "false",
"north": "false",
@@ -53949,7 +58273,7 @@
}
},
{
- "id": 9294,
+ "id": 9546,
"properties": {
"east": "false",
"north": "false",
@@ -53960,7 +58284,7 @@
},
{
"default": true,
- "id": 9295,
+ "id": 9547,
"properties": {
"east": "false",
"north": "false",
@@ -53975,7 +58299,7 @@
"states": [
{
"default": true,
- "id": 8969
+ "id": 9221
}
]
},
@@ -53991,25 +58315,25 @@
"states": [
{
"default": true,
- "id": 10574,
+ "id": 10906,
"properties": {
"facing": "north"
}
},
{
- "id": 10575,
+ "id": 10907,
"properties": {
"facing": "south"
}
},
{
- "id": 10576,
+ "id": 10908,
"properties": {
"facing": "west"
}
},
{
- "id": 10577,
+ "id": 10909,
"properties": {
"facing": "east"
}
@@ -54020,7 +58344,7 @@
"states": [
{
"default": true,
- "id": 2005
+ "id": 2052
}
]
},
@@ -54036,25 +58360,25 @@
"states": [
{
"default": true,
- "id": 8719,
+ "id": 8971,
"properties": {
"facing": "north"
}
},
{
- "id": 8720,
+ "id": 8972,
"properties": {
"facing": "south"
}
},
{
- "id": 8721,
+ "id": 8973,
"properties": {
"facing": "west"
}
},
{
- "id": 8722,
+ "id": 8974,
"properties": {
"facing": "east"
}
@@ -54065,7 +58389,7 @@
"states": [
{
"default": true,
- "id": 2024
+ "id": 2071
}
]
},
@@ -54089,7 +58413,7 @@
},
"states": [
{
- "id": 8499,
+ "id": 8751,
"properties": {
"face": "floor",
"facing": "north",
@@ -54097,7 +58421,7 @@
}
},
{
- "id": 8500,
+ "id": 8752,
"properties": {
"face": "floor",
"facing": "north",
@@ -54105,7 +58429,7 @@
}
},
{
- "id": 8501,
+ "id": 8753,
"properties": {
"face": "floor",
"facing": "south",
@@ -54113,7 +58437,7 @@
}
},
{
- "id": 8502,
+ "id": 8754,
"properties": {
"face": "floor",
"facing": "south",
@@ -54121,7 +58445,7 @@
}
},
{
- "id": 8503,
+ "id": 8755,
"properties": {
"face": "floor",
"facing": "west",
@@ -54129,7 +58453,7 @@
}
},
{
- "id": 8504,
+ "id": 8756,
"properties": {
"face": "floor",
"facing": "west",
@@ -54137,7 +58461,7 @@
}
},
{
- "id": 8505,
+ "id": 8757,
"properties": {
"face": "floor",
"facing": "east",
@@ -54145,7 +58469,7 @@
}
},
{
- "id": 8506,
+ "id": 8758,
"properties": {
"face": "floor",
"facing": "east",
@@ -54153,7 +58477,7 @@
}
},
{
- "id": 8507,
+ "id": 8759,
"properties": {
"face": "wall",
"facing": "north",
@@ -54162,7 +58486,7 @@
},
{
"default": true,
- "id": 8508,
+ "id": 8760,
"properties": {
"face": "wall",
"facing": "north",
@@ -54170,7 +58494,7 @@
}
},
{
- "id": 8509,
+ "id": 8761,
"properties": {
"face": "wall",
"facing": "south",
@@ -54178,7 +58502,7 @@
}
},
{
- "id": 8510,
+ "id": 8762,
"properties": {
"face": "wall",
"facing": "south",
@@ -54186,7 +58510,7 @@
}
},
{
- "id": 8511,
+ "id": 8763,
"properties": {
"face": "wall",
"facing": "west",
@@ -54194,7 +58518,7 @@
}
},
{
- "id": 8512,
+ "id": 8764,
"properties": {
"face": "wall",
"facing": "west",
@@ -54202,7 +58526,7 @@
}
},
{
- "id": 8513,
+ "id": 8765,
"properties": {
"face": "wall",
"facing": "east",
@@ -54210,7 +58534,7 @@
}
},
{
- "id": 8514,
+ "id": 8766,
"properties": {
"face": "wall",
"facing": "east",
@@ -54218,7 +58542,7 @@
}
},
{
- "id": 8515,
+ "id": 8767,
"properties": {
"face": "ceiling",
"facing": "north",
@@ -54226,7 +58550,7 @@
}
},
{
- "id": 8516,
+ "id": 8768,
"properties": {
"face": "ceiling",
"facing": "north",
@@ -54234,7 +58558,7 @@
}
},
{
- "id": 8517,
+ "id": 8769,
"properties": {
"face": "ceiling",
"facing": "south",
@@ -54242,7 +58566,7 @@
}
},
{
- "id": 8518,
+ "id": 8770,
"properties": {
"face": "ceiling",
"facing": "south",
@@ -54250,7 +58574,7 @@
}
},
{
- "id": 8519,
+ "id": 8771,
"properties": {
"face": "ceiling",
"facing": "west",
@@ -54258,7 +58582,7 @@
}
},
{
- "id": 8520,
+ "id": 8772,
"properties": {
"face": "ceiling",
"facing": "west",
@@ -54266,7 +58590,7 @@
}
},
{
- "id": 8521,
+ "id": 8773,
"properties": {
"face": "ceiling",
"facing": "east",
@@ -54274,7 +58598,7 @@
}
},
{
- "id": 8522,
+ "id": 8774,
"properties": {
"face": "ceiling",
"facing": "east",
@@ -54310,7 +58634,7 @@
},
"states": [
{
- "id": 11531,
+ "id": 11997,
"properties": {
"facing": "north",
"half": "upper",
@@ -54320,7 +58644,7 @@
}
},
{
- "id": 11532,
+ "id": 11998,
"properties": {
"facing": "north",
"half": "upper",
@@ -54330,7 +58654,7 @@
}
},
{
- "id": 11533,
+ "id": 11999,
"properties": {
"facing": "north",
"half": "upper",
@@ -54340,7 +58664,7 @@
}
},
{
- "id": 11534,
+ "id": 12000,
"properties": {
"facing": "north",
"half": "upper",
@@ -54350,7 +58674,7 @@
}
},
{
- "id": 11535,
+ "id": 12001,
"properties": {
"facing": "north",
"half": "upper",
@@ -54360,7 +58684,7 @@
}
},
{
- "id": 11536,
+ "id": 12002,
"properties": {
"facing": "north",
"half": "upper",
@@ -54370,7 +58694,7 @@
}
},
{
- "id": 11537,
+ "id": 12003,
"properties": {
"facing": "north",
"half": "upper",
@@ -54380,7 +58704,7 @@
}
},
{
- "id": 11538,
+ "id": 12004,
"properties": {
"facing": "north",
"half": "upper",
@@ -54390,7 +58714,7 @@
}
},
{
- "id": 11539,
+ "id": 12005,
"properties": {
"facing": "north",
"half": "lower",
@@ -54400,7 +58724,7 @@
}
},
{
- "id": 11540,
+ "id": 12006,
"properties": {
"facing": "north",
"half": "lower",
@@ -54410,7 +58734,7 @@
}
},
{
- "id": 11541,
+ "id": 12007,
"properties": {
"facing": "north",
"half": "lower",
@@ -54421,7 +58745,7 @@
},
{
"default": true,
- "id": 11542,
+ "id": 12008,
"properties": {
"facing": "north",
"half": "lower",
@@ -54431,7 +58755,7 @@
}
},
{
- "id": 11543,
+ "id": 12009,
"properties": {
"facing": "north",
"half": "lower",
@@ -54441,7 +58765,7 @@
}
},
{
- "id": 11544,
+ "id": 12010,
"properties": {
"facing": "north",
"half": "lower",
@@ -54451,7 +58775,7 @@
}
},
{
- "id": 11545,
+ "id": 12011,
"properties": {
"facing": "north",
"half": "lower",
@@ -54461,7 +58785,7 @@
}
},
{
- "id": 11546,
+ "id": 12012,
"properties": {
"facing": "north",
"half": "lower",
@@ -54471,7 +58795,7 @@
}
},
{
- "id": 11547,
+ "id": 12013,
"properties": {
"facing": "south",
"half": "upper",
@@ -54481,7 +58805,7 @@
}
},
{
- "id": 11548,
+ "id": 12014,
"properties": {
"facing": "south",
"half": "upper",
@@ -54491,7 +58815,7 @@
}
},
{
- "id": 11549,
+ "id": 12015,
"properties": {
"facing": "south",
"half": "upper",
@@ -54501,7 +58825,7 @@
}
},
{
- "id": 11550,
+ "id": 12016,
"properties": {
"facing": "south",
"half": "upper",
@@ -54511,7 +58835,7 @@
}
},
{
- "id": 11551,
+ "id": 12017,
"properties": {
"facing": "south",
"half": "upper",
@@ -54521,7 +58845,7 @@
}
},
{
- "id": 11552,
+ "id": 12018,
"properties": {
"facing": "south",
"half": "upper",
@@ -54531,7 +58855,7 @@
}
},
{
- "id": 11553,
+ "id": 12019,
"properties": {
"facing": "south",
"half": "upper",
@@ -54541,7 +58865,7 @@
}
},
{
- "id": 11554,
+ "id": 12020,
"properties": {
"facing": "south",
"half": "upper",
@@ -54551,7 +58875,7 @@
}
},
{
- "id": 11555,
+ "id": 12021,
"properties": {
"facing": "south",
"half": "lower",
@@ -54561,7 +58885,7 @@
}
},
{
- "id": 11556,
+ "id": 12022,
"properties": {
"facing": "south",
"half": "lower",
@@ -54571,7 +58895,7 @@
}
},
{
- "id": 11557,
+ "id": 12023,
"properties": {
"facing": "south",
"half": "lower",
@@ -54581,7 +58905,7 @@
}
},
{
- "id": 11558,
+ "id": 12024,
"properties": {
"facing": "south",
"half": "lower",
@@ -54591,7 +58915,7 @@
}
},
{
- "id": 11559,
+ "id": 12025,
"properties": {
"facing": "south",
"half": "lower",
@@ -54601,7 +58925,7 @@
}
},
{
- "id": 11560,
+ "id": 12026,
"properties": {
"facing": "south",
"half": "lower",
@@ -54611,7 +58935,7 @@
}
},
{
- "id": 11561,
+ "id": 12027,
"properties": {
"facing": "south",
"half": "lower",
@@ -54621,7 +58945,7 @@
}
},
{
- "id": 11562,
+ "id": 12028,
"properties": {
"facing": "south",
"half": "lower",
@@ -54631,7 +58955,7 @@
}
},
{
- "id": 11563,
+ "id": 12029,
"properties": {
"facing": "west",
"half": "upper",
@@ -54641,7 +58965,7 @@
}
},
{
- "id": 11564,
+ "id": 12030,
"properties": {
"facing": "west",
"half": "upper",
@@ -54651,7 +58975,7 @@
}
},
{
- "id": 11565,
+ "id": 12031,
"properties": {
"facing": "west",
"half": "upper",
@@ -54661,7 +58985,7 @@
}
},
{
- "id": 11566,
+ "id": 12032,
"properties": {
"facing": "west",
"half": "upper",
@@ -54671,7 +58995,7 @@
}
},
{
- "id": 11567,
+ "id": 12033,
"properties": {
"facing": "west",
"half": "upper",
@@ -54681,7 +59005,7 @@
}
},
{
- "id": 11568,
+ "id": 12034,
"properties": {
"facing": "west",
"half": "upper",
@@ -54691,7 +59015,7 @@
}
},
{
- "id": 11569,
+ "id": 12035,
"properties": {
"facing": "west",
"half": "upper",
@@ -54701,7 +59025,7 @@
}
},
{
- "id": 11570,
+ "id": 12036,
"properties": {
"facing": "west",
"half": "upper",
@@ -54711,7 +59035,7 @@
}
},
{
- "id": 11571,
+ "id": 12037,
"properties": {
"facing": "west",
"half": "lower",
@@ -54721,7 +59045,7 @@
}
},
{
- "id": 11572,
+ "id": 12038,
"properties": {
"facing": "west",
"half": "lower",
@@ -54731,7 +59055,7 @@
}
},
{
- "id": 11573,
+ "id": 12039,
"properties": {
"facing": "west",
"half": "lower",
@@ -54741,7 +59065,7 @@
}
},
{
- "id": 11574,
+ "id": 12040,
"properties": {
"facing": "west",
"half": "lower",
@@ -54751,7 +59075,7 @@
}
},
{
- "id": 11575,
+ "id": 12041,
"properties": {
"facing": "west",
"half": "lower",
@@ -54761,7 +59085,7 @@
}
},
{
- "id": 11576,
+ "id": 12042,
"properties": {
"facing": "west",
"half": "lower",
@@ -54771,7 +59095,7 @@
}
},
{
- "id": 11577,
+ "id": 12043,
"properties": {
"facing": "west",
"half": "lower",
@@ -54781,7 +59105,7 @@
}
},
{
- "id": 11578,
+ "id": 12044,
"properties": {
"facing": "west",
"half": "lower",
@@ -54791,7 +59115,7 @@
}
},
{
- "id": 11579,
+ "id": 12045,
"properties": {
"facing": "east",
"half": "upper",
@@ -54801,7 +59125,7 @@
}
},
{
- "id": 11580,
+ "id": 12046,
"properties": {
"facing": "east",
"half": "upper",
@@ -54811,7 +59135,7 @@
}
},
{
- "id": 11581,
+ "id": 12047,
"properties": {
"facing": "east",
"half": "upper",
@@ -54821,7 +59145,7 @@
}
},
{
- "id": 11582,
+ "id": 12048,
"properties": {
"facing": "east",
"half": "upper",
@@ -54831,7 +59155,7 @@
}
},
{
- "id": 11583,
+ "id": 12049,
"properties": {
"facing": "east",
"half": "upper",
@@ -54841,7 +59165,7 @@
}
},
{
- "id": 11584,
+ "id": 12050,
"properties": {
"facing": "east",
"half": "upper",
@@ -54851,7 +59175,7 @@
}
},
{
- "id": 11585,
+ "id": 12051,
"properties": {
"facing": "east",
"half": "upper",
@@ -54861,7 +59185,7 @@
}
},
{
- "id": 11586,
+ "id": 12052,
"properties": {
"facing": "east",
"half": "upper",
@@ -54871,7 +59195,7 @@
}
},
{
- "id": 11587,
+ "id": 12053,
"properties": {
"facing": "east",
"half": "lower",
@@ -54881,7 +59205,7 @@
}
},
{
- "id": 11588,
+ "id": 12054,
"properties": {
"facing": "east",
"half": "lower",
@@ -54891,7 +59215,7 @@
}
},
{
- "id": 11589,
+ "id": 12055,
"properties": {
"facing": "east",
"half": "lower",
@@ -54901,7 +59225,7 @@
}
},
{
- "id": 11590,
+ "id": 12056,
"properties": {
"facing": "east",
"half": "lower",
@@ -54911,7 +59235,7 @@
}
},
{
- "id": 11591,
+ "id": 12057,
"properties": {
"facing": "east",
"half": "lower",
@@ -54921,7 +59245,7 @@
}
},
{
- "id": 11592,
+ "id": 12058,
"properties": {
"facing": "east",
"half": "lower",
@@ -54931,7 +59255,7 @@
}
},
{
- "id": 11593,
+ "id": 12059,
"properties": {
"facing": "east",
"half": "lower",
@@ -54941,7 +59265,7 @@
}
},
{
- "id": 11594,
+ "id": 12060,
"properties": {
"facing": "east",
"half": "lower",
@@ -54977,7 +59301,7 @@
},
"states": [
{
- "id": 11179,
+ "id": 11581,
"properties": {
"east": "true",
"north": "true",
@@ -54987,7 +59311,7 @@
}
},
{
- "id": 11180,
+ "id": 11582,
"properties": {
"east": "true",
"north": "true",
@@ -54997,7 +59321,7 @@
}
},
{
- "id": 11181,
+ "id": 11583,
"properties": {
"east": "true",
"north": "true",
@@ -55007,7 +59331,7 @@
}
},
{
- "id": 11182,
+ "id": 11584,
"properties": {
"east": "true",
"north": "true",
@@ -55017,7 +59341,7 @@
}
},
{
- "id": 11183,
+ "id": 11585,
"properties": {
"east": "true",
"north": "true",
@@ -55027,7 +59351,7 @@
}
},
{
- "id": 11184,
+ "id": 11586,
"properties": {
"east": "true",
"north": "true",
@@ -55037,7 +59361,7 @@
}
},
{
- "id": 11185,
+ "id": 11587,
"properties": {
"east": "true",
"north": "true",
@@ -55047,7 +59371,7 @@
}
},
{
- "id": 11186,
+ "id": 11588,
"properties": {
"east": "true",
"north": "true",
@@ -55057,7 +59381,7 @@
}
},
{
- "id": 11187,
+ "id": 11589,
"properties": {
"east": "true",
"north": "false",
@@ -55067,7 +59391,7 @@
}
},
{
- "id": 11188,
+ "id": 11590,
"properties": {
"east": "true",
"north": "false",
@@ -55077,7 +59401,7 @@
}
},
{
- "id": 11189,
+ "id": 11591,
"properties": {
"east": "true",
"north": "false",
@@ -55087,7 +59411,7 @@
}
},
{
- "id": 11190,
+ "id": 11592,
"properties": {
"east": "true",
"north": "false",
@@ -55097,7 +59421,7 @@
}
},
{
- "id": 11191,
+ "id": 11593,
"properties": {
"east": "true",
"north": "false",
@@ -55107,7 +59431,7 @@
}
},
{
- "id": 11192,
+ "id": 11594,
"properties": {
"east": "true",
"north": "false",
@@ -55117,7 +59441,7 @@
}
},
{
- "id": 11193,
+ "id": 11595,
"properties": {
"east": "true",
"north": "false",
@@ -55127,7 +59451,7 @@
}
},
{
- "id": 11194,
+ "id": 11596,
"properties": {
"east": "true",
"north": "false",
@@ -55137,7 +59461,7 @@
}
},
{
- "id": 11195,
+ "id": 11597,
"properties": {
"east": "false",
"north": "true",
@@ -55147,7 +59471,7 @@
}
},
{
- "id": 11196,
+ "id": 11598,
"properties": {
"east": "false",
"north": "true",
@@ -55157,7 +59481,7 @@
}
},
{
- "id": 11197,
+ "id": 11599,
"properties": {
"east": "false",
"north": "true",
@@ -55167,7 +59491,7 @@
}
},
{
- "id": 11198,
+ "id": 11600,
"properties": {
"east": "false",
"north": "true",
@@ -55177,7 +59501,7 @@
}
},
{
- "id": 11199,
+ "id": 11601,
"properties": {
"east": "false",
"north": "true",
@@ -55187,7 +59511,7 @@
}
},
{
- "id": 11200,
+ "id": 11602,
"properties": {
"east": "false",
"north": "true",
@@ -55197,7 +59521,7 @@
}
},
{
- "id": 11201,
+ "id": 11603,
"properties": {
"east": "false",
"north": "true",
@@ -55207,7 +59531,7 @@
}
},
{
- "id": 11202,
+ "id": 11604,
"properties": {
"east": "false",
"north": "true",
@@ -55217,7 +59541,7 @@
}
},
{
- "id": 11203,
+ "id": 11605,
"properties": {
"east": "false",
"north": "false",
@@ -55227,7 +59551,7 @@
}
},
{
- "id": 11204,
+ "id": 11606,
"properties": {
"east": "false",
"north": "false",
@@ -55237,7 +59561,7 @@
}
},
{
- "id": 11205,
+ "id": 11607,
"properties": {
"east": "false",
"north": "false",
@@ -55247,7 +59571,7 @@
}
},
{
- "id": 11206,
+ "id": 11608,
"properties": {
"east": "false",
"north": "false",
@@ -55257,7 +59581,7 @@
}
},
{
- "id": 11207,
+ "id": 11609,
"properties": {
"east": "false",
"north": "false",
@@ -55267,7 +59591,7 @@
}
},
{
- "id": 11208,
+ "id": 11610,
"properties": {
"east": "false",
"north": "false",
@@ -55277,7 +59601,7 @@
}
},
{
- "id": 11209,
+ "id": 11611,
"properties": {
"east": "false",
"north": "false",
@@ -55288,7 +59612,7 @@
},
{
"default": true,
- "id": 11210,
+ "id": 11612,
"properties": {
"east": "false",
"north": "false",
@@ -55322,7 +59646,7 @@
},
"states": [
{
- "id": 10955,
+ "id": 11325,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -55331,7 +59655,7 @@
}
},
{
- "id": 10956,
+ "id": 11326,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -55340,7 +59664,7 @@
}
},
{
- "id": 10957,
+ "id": 11327,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -55349,7 +59673,7 @@
}
},
{
- "id": 10958,
+ "id": 11328,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -55358,7 +59682,7 @@
}
},
{
- "id": 10959,
+ "id": 11329,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -55367,7 +59691,7 @@
}
},
{
- "id": 10960,
+ "id": 11330,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -55376,7 +59700,7 @@
}
},
{
- "id": 10961,
+ "id": 11331,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -55386,7 +59710,7 @@
},
{
"default": true,
- "id": 10962,
+ "id": 11332,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -55395,7 +59719,7 @@
}
},
{
- "id": 10963,
+ "id": 11333,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -55404,7 +59728,7 @@
}
},
{
- "id": 10964,
+ "id": 11334,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -55413,7 +59737,7 @@
}
},
{
- "id": 10965,
+ "id": 11335,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -55422,7 +59746,7 @@
}
},
{
- "id": 10966,
+ "id": 11336,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -55431,7 +59755,7 @@
}
},
{
- "id": 10967,
+ "id": 11337,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -55440,7 +59764,7 @@
}
},
{
- "id": 10968,
+ "id": 11338,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -55449,7 +59773,7 @@
}
},
{
- "id": 10969,
+ "id": 11339,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -55458,7 +59782,7 @@
}
},
{
- "id": 10970,
+ "id": 11340,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -55467,7 +59791,7 @@
}
},
{
- "id": 10971,
+ "id": 11341,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -55476,7 +59800,7 @@
}
},
{
- "id": 10972,
+ "id": 11342,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -55485,7 +59809,7 @@
}
},
{
- "id": 10973,
+ "id": 11343,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -55494,7 +59818,7 @@
}
},
{
- "id": 10974,
+ "id": 11344,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -55503,7 +59827,7 @@
}
},
{
- "id": 10975,
+ "id": 11345,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -55512,7 +59836,7 @@
}
},
{
- "id": 10976,
+ "id": 11346,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -55521,7 +59845,7 @@
}
},
{
- "id": 10977,
+ "id": 11347,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -55530,7 +59854,7 @@
}
},
{
- "id": 10978,
+ "id": 11348,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -55539,7 +59863,7 @@
}
},
{
- "id": 10979,
+ "id": 11349,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -55548,7 +59872,7 @@
}
},
{
- "id": 10980,
+ "id": 11350,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -55557,7 +59881,7 @@
}
},
{
- "id": 10981,
+ "id": 11351,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -55566,7 +59890,7 @@
}
},
{
- "id": 10982,
+ "id": 11352,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -55575,7 +59899,7 @@
}
},
{
- "id": 10983,
+ "id": 11353,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -55584,7 +59908,7 @@
}
},
{
- "id": 10984,
+ "id": 11354,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -55593,7 +59917,7 @@
}
},
{
- "id": 10985,
+ "id": 11355,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -55602,7 +59926,7 @@
}
},
{
- "id": 10986,
+ "id": 11356,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -55643,7 +59967,7 @@
},
"states": [
{
- "id": 5062,
+ "id": 5214,
"properties": {
"attached": "true",
"rotation": "0",
@@ -55651,7 +59975,7 @@
}
},
{
- "id": 5063,
+ "id": 5215,
"properties": {
"attached": "true",
"rotation": "0",
@@ -55659,7 +59983,7 @@
}
},
{
- "id": 5064,
+ "id": 5216,
"properties": {
"attached": "true",
"rotation": "1",
@@ -55667,7 +59991,7 @@
}
},
{
- "id": 5065,
+ "id": 5217,
"properties": {
"attached": "true",
"rotation": "1",
@@ -55675,7 +59999,7 @@
}
},
{
- "id": 5066,
+ "id": 5218,
"properties": {
"attached": "true",
"rotation": "2",
@@ -55683,7 +60007,7 @@
}
},
{
- "id": 5067,
+ "id": 5219,
"properties": {
"attached": "true",
"rotation": "2",
@@ -55691,7 +60015,7 @@
}
},
{
- "id": 5068,
+ "id": 5220,
"properties": {
"attached": "true",
"rotation": "3",
@@ -55699,7 +60023,7 @@
}
},
{
- "id": 5069,
+ "id": 5221,
"properties": {
"attached": "true",
"rotation": "3",
@@ -55707,7 +60031,7 @@
}
},
{
- "id": 5070,
+ "id": 5222,
"properties": {
"attached": "true",
"rotation": "4",
@@ -55715,7 +60039,7 @@
}
},
{
- "id": 5071,
+ "id": 5223,
"properties": {
"attached": "true",
"rotation": "4",
@@ -55723,7 +60047,7 @@
}
},
{
- "id": 5072,
+ "id": 5224,
"properties": {
"attached": "true",
"rotation": "5",
@@ -55731,7 +60055,7 @@
}
},
{
- "id": 5073,
+ "id": 5225,
"properties": {
"attached": "true",
"rotation": "5",
@@ -55739,7 +60063,7 @@
}
},
{
- "id": 5074,
+ "id": 5226,
"properties": {
"attached": "true",
"rotation": "6",
@@ -55747,7 +60071,7 @@
}
},
{
- "id": 5075,
+ "id": 5227,
"properties": {
"attached": "true",
"rotation": "6",
@@ -55755,7 +60079,7 @@
}
},
{
- "id": 5076,
+ "id": 5228,
"properties": {
"attached": "true",
"rotation": "7",
@@ -55763,7 +60087,7 @@
}
},
{
- "id": 5077,
+ "id": 5229,
"properties": {
"attached": "true",
"rotation": "7",
@@ -55771,7 +60095,7 @@
}
},
{
- "id": 5078,
+ "id": 5230,
"properties": {
"attached": "true",
"rotation": "8",
@@ -55779,7 +60103,7 @@
}
},
{
- "id": 5079,
+ "id": 5231,
"properties": {
"attached": "true",
"rotation": "8",
@@ -55787,7 +60111,7 @@
}
},
{
- "id": 5080,
+ "id": 5232,
"properties": {
"attached": "true",
"rotation": "9",
@@ -55795,7 +60119,7 @@
}
},
{
- "id": 5081,
+ "id": 5233,
"properties": {
"attached": "true",
"rotation": "9",
@@ -55803,7 +60127,7 @@
}
},
{
- "id": 5082,
+ "id": 5234,
"properties": {
"attached": "true",
"rotation": "10",
@@ -55811,7 +60135,7 @@
}
},
{
- "id": 5083,
+ "id": 5235,
"properties": {
"attached": "true",
"rotation": "10",
@@ -55819,7 +60143,7 @@
}
},
{
- "id": 5084,
+ "id": 5236,
"properties": {
"attached": "true",
"rotation": "11",
@@ -55827,7 +60151,7 @@
}
},
{
- "id": 5085,
+ "id": 5237,
"properties": {
"attached": "true",
"rotation": "11",
@@ -55835,7 +60159,7 @@
}
},
{
- "id": 5086,
+ "id": 5238,
"properties": {
"attached": "true",
"rotation": "12",
@@ -55843,7 +60167,7 @@
}
},
{
- "id": 5087,
+ "id": 5239,
"properties": {
"attached": "true",
"rotation": "12",
@@ -55851,7 +60175,7 @@
}
},
{
- "id": 5088,
+ "id": 5240,
"properties": {
"attached": "true",
"rotation": "13",
@@ -55859,7 +60183,7 @@
}
},
{
- "id": 5089,
+ "id": 5241,
"properties": {
"attached": "true",
"rotation": "13",
@@ -55867,7 +60191,7 @@
}
},
{
- "id": 5090,
+ "id": 5242,
"properties": {
"attached": "true",
"rotation": "14",
@@ -55875,7 +60199,7 @@
}
},
{
- "id": 5091,
+ "id": 5243,
"properties": {
"attached": "true",
"rotation": "14",
@@ -55883,7 +60207,7 @@
}
},
{
- "id": 5092,
+ "id": 5244,
"properties": {
"attached": "true",
"rotation": "15",
@@ -55891,7 +60215,7 @@
}
},
{
- "id": 5093,
+ "id": 5245,
"properties": {
"attached": "true",
"rotation": "15",
@@ -55899,7 +60223,7 @@
}
},
{
- "id": 5094,
+ "id": 5246,
"properties": {
"attached": "false",
"rotation": "0",
@@ -55908,7 +60232,7 @@
},
{
"default": true,
- "id": 5095,
+ "id": 5247,
"properties": {
"attached": "false",
"rotation": "0",
@@ -55916,7 +60240,7 @@
}
},
{
- "id": 5096,
+ "id": 5248,
"properties": {
"attached": "false",
"rotation": "1",
@@ -55924,7 +60248,7 @@
}
},
{
- "id": 5097,
+ "id": 5249,
"properties": {
"attached": "false",
"rotation": "1",
@@ -55932,7 +60256,7 @@
}
},
{
- "id": 5098,
+ "id": 5250,
"properties": {
"attached": "false",
"rotation": "2",
@@ -55940,7 +60264,7 @@
}
},
{
- "id": 5099,
+ "id": 5251,
"properties": {
"attached": "false",
"rotation": "2",
@@ -55948,7 +60272,7 @@
}
},
{
- "id": 5100,
+ "id": 5252,
"properties": {
"attached": "false",
"rotation": "3",
@@ -55956,7 +60280,7 @@
}
},
{
- "id": 5101,
+ "id": 5253,
"properties": {
"attached": "false",
"rotation": "3",
@@ -55964,7 +60288,7 @@
}
},
{
- "id": 5102,
+ "id": 5254,
"properties": {
"attached": "false",
"rotation": "4",
@@ -55972,7 +60296,7 @@
}
},
{
- "id": 5103,
+ "id": 5255,
"properties": {
"attached": "false",
"rotation": "4",
@@ -55980,7 +60304,7 @@
}
},
{
- "id": 5104,
+ "id": 5256,
"properties": {
"attached": "false",
"rotation": "5",
@@ -55988,7 +60312,7 @@
}
},
{
- "id": 5105,
+ "id": 5257,
"properties": {
"attached": "false",
"rotation": "5",
@@ -55996,7 +60320,7 @@
}
},
{
- "id": 5106,
+ "id": 5258,
"properties": {
"attached": "false",
"rotation": "6",
@@ -56004,7 +60328,7 @@
}
},
{
- "id": 5107,
+ "id": 5259,
"properties": {
"attached": "false",
"rotation": "6",
@@ -56012,7 +60336,7 @@
}
},
{
- "id": 5108,
+ "id": 5260,
"properties": {
"attached": "false",
"rotation": "7",
@@ -56020,7 +60344,7 @@
}
},
{
- "id": 5109,
+ "id": 5261,
"properties": {
"attached": "false",
"rotation": "7",
@@ -56028,7 +60352,7 @@
}
},
{
- "id": 5110,
+ "id": 5262,
"properties": {
"attached": "false",
"rotation": "8",
@@ -56036,7 +60360,7 @@
}
},
{
- "id": 5111,
+ "id": 5263,
"properties": {
"attached": "false",
"rotation": "8",
@@ -56044,7 +60368,7 @@
}
},
{
- "id": 5112,
+ "id": 5264,
"properties": {
"attached": "false",
"rotation": "9",
@@ -56052,7 +60376,7 @@
}
},
{
- "id": 5113,
+ "id": 5265,
"properties": {
"attached": "false",
"rotation": "9",
@@ -56060,7 +60384,7 @@
}
},
{
- "id": 5114,
+ "id": 5266,
"properties": {
"attached": "false",
"rotation": "10",
@@ -56068,7 +60392,7 @@
}
},
{
- "id": 5115,
+ "id": 5267,
"properties": {
"attached": "false",
"rotation": "10",
@@ -56076,7 +60400,7 @@
}
},
{
- "id": 5116,
+ "id": 5268,
"properties": {
"attached": "false",
"rotation": "11",
@@ -56084,7 +60408,7 @@
}
},
{
- "id": 5117,
+ "id": 5269,
"properties": {
"attached": "false",
"rotation": "11",
@@ -56092,7 +60416,7 @@
}
},
{
- "id": 5118,
+ "id": 5270,
"properties": {
"attached": "false",
"rotation": "12",
@@ -56100,7 +60424,7 @@
}
},
{
- "id": 5119,
+ "id": 5271,
"properties": {
"attached": "false",
"rotation": "12",
@@ -56108,7 +60432,7 @@
}
},
{
- "id": 5120,
+ "id": 5272,
"properties": {
"attached": "false",
"rotation": "13",
@@ -56116,7 +60440,7 @@
}
},
{
- "id": 5121,
+ "id": 5273,
"properties": {
"attached": "false",
"rotation": "13",
@@ -56124,7 +60448,7 @@
}
},
{
- "id": 5122,
+ "id": 5274,
"properties": {
"attached": "false",
"rotation": "14",
@@ -56132,7 +60456,7 @@
}
},
{
- "id": 5123,
+ "id": 5275,
"properties": {
"attached": "false",
"rotation": "14",
@@ -56140,7 +60464,7 @@
}
},
{
- "id": 5124,
+ "id": 5276,
"properties": {
"attached": "false",
"rotation": "15",
@@ -56148,7 +60472,7 @@
}
},
{
- "id": 5125,
+ "id": 5277,
"properties": {
"attached": "false",
"rotation": "15",
@@ -56179,7 +60503,7 @@
},
"states": [
{
- "id": 354,
+ "id": 401,
"properties": {
"distance": "1",
"persistent": "true",
@@ -56187,7 +60511,7 @@
}
},
{
- "id": 355,
+ "id": 402,
"properties": {
"distance": "1",
"persistent": "true",
@@ -56195,7 +60519,7 @@
}
},
{
- "id": 356,
+ "id": 403,
"properties": {
"distance": "1",
"persistent": "false",
@@ -56203,7 +60527,7 @@
}
},
{
- "id": 357,
+ "id": 404,
"properties": {
"distance": "1",
"persistent": "false",
@@ -56211,7 +60535,7 @@
}
},
{
- "id": 358,
+ "id": 405,
"properties": {
"distance": "2",
"persistent": "true",
@@ -56219,7 +60543,7 @@
}
},
{
- "id": 359,
+ "id": 406,
"properties": {
"distance": "2",
"persistent": "true",
@@ -56227,7 +60551,7 @@
}
},
{
- "id": 360,
+ "id": 407,
"properties": {
"distance": "2",
"persistent": "false",
@@ -56235,7 +60559,7 @@
}
},
{
- "id": 361,
+ "id": 408,
"properties": {
"distance": "2",
"persistent": "false",
@@ -56243,7 +60567,7 @@
}
},
{
- "id": 362,
+ "id": 409,
"properties": {
"distance": "3",
"persistent": "true",
@@ -56251,7 +60575,7 @@
}
},
{
- "id": 363,
+ "id": 410,
"properties": {
"distance": "3",
"persistent": "true",
@@ -56259,7 +60583,7 @@
}
},
{
- "id": 364,
+ "id": 411,
"properties": {
"distance": "3",
"persistent": "false",
@@ -56267,7 +60591,7 @@
}
},
{
- "id": 365,
+ "id": 412,
"properties": {
"distance": "3",
"persistent": "false",
@@ -56275,7 +60599,7 @@
}
},
{
- "id": 366,
+ "id": 413,
"properties": {
"distance": "4",
"persistent": "true",
@@ -56283,7 +60607,7 @@
}
},
{
- "id": 367,
+ "id": 414,
"properties": {
"distance": "4",
"persistent": "true",
@@ -56291,7 +60615,7 @@
}
},
{
- "id": 368,
+ "id": 415,
"properties": {
"distance": "4",
"persistent": "false",
@@ -56299,7 +60623,7 @@
}
},
{
- "id": 369,
+ "id": 416,
"properties": {
"distance": "4",
"persistent": "false",
@@ -56307,7 +60631,7 @@
}
},
{
- "id": 370,
+ "id": 417,
"properties": {
"distance": "5",
"persistent": "true",
@@ -56315,7 +60639,7 @@
}
},
{
- "id": 371,
+ "id": 418,
"properties": {
"distance": "5",
"persistent": "true",
@@ -56323,7 +60647,7 @@
}
},
{
- "id": 372,
+ "id": 419,
"properties": {
"distance": "5",
"persistent": "false",
@@ -56331,7 +60655,7 @@
}
},
{
- "id": 373,
+ "id": 420,
"properties": {
"distance": "5",
"persistent": "false",
@@ -56339,7 +60663,7 @@
}
},
{
- "id": 374,
+ "id": 421,
"properties": {
"distance": "6",
"persistent": "true",
@@ -56347,7 +60671,7 @@
}
},
{
- "id": 375,
+ "id": 422,
"properties": {
"distance": "6",
"persistent": "true",
@@ -56355,7 +60679,7 @@
}
},
{
- "id": 376,
+ "id": 423,
"properties": {
"distance": "6",
"persistent": "false",
@@ -56363,7 +60687,7 @@
}
},
{
- "id": 377,
+ "id": 424,
"properties": {
"distance": "6",
"persistent": "false",
@@ -56371,7 +60695,7 @@
}
},
{
- "id": 378,
+ "id": 425,
"properties": {
"distance": "7",
"persistent": "true",
@@ -56379,7 +60703,7 @@
}
},
{
- "id": 379,
+ "id": 426,
"properties": {
"distance": "7",
"persistent": "true",
@@ -56387,7 +60711,7 @@
}
},
{
- "id": 380,
+ "id": 427,
"properties": {
"distance": "7",
"persistent": "false",
@@ -56396,7 +60720,7 @@
},
{
"default": true,
- "id": 381,
+ "id": 428,
"properties": {
"distance": "7",
"persistent": "false",
@@ -56415,20 +60739,20 @@
},
"states": [
{
- "id": 134,
+ "id": 144,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 135,
+ "id": 145,
"properties": {
"axis": "y"
}
},
{
- "id": 136,
+ "id": 146,
"properties": {
"axis": "z"
}
@@ -56439,7 +60763,7 @@
"states": [
{
"default": true,
- "id": 20
+ "id": 21
}
]
},
@@ -56452,14 +60776,14 @@
},
"states": [
{
- "id": 5562,
+ "id": 5724,
"properties": {
"powered": "true"
}
},
{
"default": true,
- "id": 5563,
+ "id": 5725,
"properties": {
"powered": "false"
}
@@ -56476,13 +60800,13 @@
"states": [
{
"default": true,
- "id": 34,
+ "id": 37,
"properties": {
"stage": "0"
}
},
{
- "id": 35,
+ "id": 38,
"properties": {
"stage": "1"
}
@@ -56516,7 +60840,7 @@
},
"states": [
{
- "id": 4410,
+ "id": 4490,
"properties": {
"rotation": "0",
"waterlogged": "true"
@@ -56524,217 +60848,217 @@
},
{
"default": true,
- "id": 4411,
+ "id": 4491,
"properties": {
"rotation": "0",
"waterlogged": "false"
}
},
{
- "id": 4412,
+ "id": 4492,
"properties": {
"rotation": "1",
"waterlogged": "true"
}
},
{
- "id": 4413,
+ "id": 4493,
"properties": {
"rotation": "1",
"waterlogged": "false"
}
},
{
- "id": 4414,
+ "id": 4494,
"properties": {
"rotation": "2",
"waterlogged": "true"
}
},
{
- "id": 4415,
+ "id": 4495,
"properties": {
"rotation": "2",
"waterlogged": "false"
}
},
{
- "id": 4416,
+ "id": 4496,
"properties": {
"rotation": "3",
"waterlogged": "true"
}
},
{
- "id": 4417,
+ "id": 4497,
"properties": {
"rotation": "3",
"waterlogged": "false"
}
},
{
- "id": 4418,
+ "id": 4498,
"properties": {
"rotation": "4",
"waterlogged": "true"
}
},
{
- "id": 4419,
+ "id": 4499,
"properties": {
"rotation": "4",
"waterlogged": "false"
}
},
{
- "id": 4420,
+ "id": 4500,
"properties": {
"rotation": "5",
"waterlogged": "true"
}
},
{
- "id": 4421,
+ "id": 4501,
"properties": {
"rotation": "5",
"waterlogged": "false"
}
},
{
- "id": 4422,
+ "id": 4502,
"properties": {
"rotation": "6",
"waterlogged": "true"
}
},
{
- "id": 4423,
+ "id": 4503,
"properties": {
"rotation": "6",
"waterlogged": "false"
}
},
{
- "id": 4424,
+ "id": 4504,
"properties": {
"rotation": "7",
"waterlogged": "true"
}
},
{
- "id": 4425,
+ "id": 4505,
"properties": {
"rotation": "7",
"waterlogged": "false"
}
},
{
- "id": 4426,
+ "id": 4506,
"properties": {
"rotation": "8",
"waterlogged": "true"
}
},
{
- "id": 4427,
+ "id": 4507,
"properties": {
"rotation": "8",
"waterlogged": "false"
}
},
{
- "id": 4428,
+ "id": 4508,
"properties": {
"rotation": "9",
"waterlogged": "true"
}
},
{
- "id": 4429,
+ "id": 4509,
"properties": {
"rotation": "9",
"waterlogged": "false"
}
},
{
- "id": 4430,
+ "id": 4510,
"properties": {
"rotation": "10",
"waterlogged": "true"
}
},
{
- "id": 4431,
+ "id": 4511,
"properties": {
"rotation": "10",
"waterlogged": "false"
}
},
{
- "id": 4432,
+ "id": 4512,
"properties": {
"rotation": "11",
"waterlogged": "true"
}
},
{
- "id": 4433,
+ "id": 4513,
"properties": {
"rotation": "11",
"waterlogged": "false"
}
},
{
- "id": 4434,
+ "id": 4514,
"properties": {
"rotation": "12",
"waterlogged": "true"
}
},
{
- "id": 4435,
+ "id": 4515,
"properties": {
"rotation": "12",
"waterlogged": "false"
}
},
{
- "id": 4436,
+ "id": 4516,
"properties": {
"rotation": "13",
"waterlogged": "true"
}
},
{
- "id": 4437,
+ "id": 4517,
"properties": {
"rotation": "13",
"waterlogged": "false"
}
},
{
- "id": 4438,
+ "id": 4518,
"properties": {
"rotation": "14",
"waterlogged": "true"
}
},
{
- "id": 4439,
+ "id": 4519,
"properties": {
"rotation": "14",
"waterlogged": "false"
}
},
{
- "id": 4440,
+ "id": 4520,
"properties": {
"rotation": "15",
"waterlogged": "true"
}
},
{
- "id": 4441,
+ "id": 4521,
"properties": {
"rotation": "15",
"waterlogged": "false"
@@ -56756,21 +61080,21 @@
},
"states": [
{
- "id": 10715,
+ "id": 11053,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 10716,
+ "id": 11054,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 10717,
+ "id": 11055,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -56778,21 +61102,21 @@
},
{
"default": true,
- "id": 10718,
+ "id": 11056,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 10719,
+ "id": 11057,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 10720,
+ "id": 11058,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -56826,7 +61150,7 @@
},
"states": [
{
- "id": 9568,
+ "id": 9900,
"properties": {
"facing": "north",
"half": "top",
@@ -56835,7 +61159,7 @@
}
},
{
- "id": 9569,
+ "id": 9901,
"properties": {
"facing": "north",
"half": "top",
@@ -56844,7 +61168,7 @@
}
},
{
- "id": 9570,
+ "id": 9902,
"properties": {
"facing": "north",
"half": "top",
@@ -56853,7 +61177,7 @@
}
},
{
- "id": 9571,
+ "id": 9903,
"properties": {
"facing": "north",
"half": "top",
@@ -56862,7 +61186,7 @@
}
},
{
- "id": 9572,
+ "id": 9904,
"properties": {
"facing": "north",
"half": "top",
@@ -56871,7 +61195,7 @@
}
},
{
- "id": 9573,
+ "id": 9905,
"properties": {
"facing": "north",
"half": "top",
@@ -56880,7 +61204,7 @@
}
},
{
- "id": 9574,
+ "id": 9906,
"properties": {
"facing": "north",
"half": "top",
@@ -56889,7 +61213,7 @@
}
},
{
- "id": 9575,
+ "id": 9907,
"properties": {
"facing": "north",
"half": "top",
@@ -56898,7 +61222,7 @@
}
},
{
- "id": 9576,
+ "id": 9908,
"properties": {
"facing": "north",
"half": "top",
@@ -56907,7 +61231,7 @@
}
},
{
- "id": 9577,
+ "id": 9909,
"properties": {
"facing": "north",
"half": "top",
@@ -56916,7 +61240,7 @@
}
},
{
- "id": 9578,
+ "id": 9910,
"properties": {
"facing": "north",
"half": "bottom",
@@ -56926,7 +61250,7 @@
},
{
"default": true,
- "id": 9579,
+ "id": 9911,
"properties": {
"facing": "north",
"half": "bottom",
@@ -56935,7 +61259,7 @@
}
},
{
- "id": 9580,
+ "id": 9912,
"properties": {
"facing": "north",
"half": "bottom",
@@ -56944,7 +61268,7 @@
}
},
{
- "id": 9581,
+ "id": 9913,
"properties": {
"facing": "north",
"half": "bottom",
@@ -56953,7 +61277,7 @@
}
},
{
- "id": 9582,
+ "id": 9914,
"properties": {
"facing": "north",
"half": "bottom",
@@ -56962,7 +61286,7 @@
}
},
{
- "id": 9583,
+ "id": 9915,
"properties": {
"facing": "north",
"half": "bottom",
@@ -56971,7 +61295,7 @@
}
},
{
- "id": 9584,
+ "id": 9916,
"properties": {
"facing": "north",
"half": "bottom",
@@ -56980,7 +61304,7 @@
}
},
{
- "id": 9585,
+ "id": 9917,
"properties": {
"facing": "north",
"half": "bottom",
@@ -56989,7 +61313,7 @@
}
},
{
- "id": 9586,
+ "id": 9918,
"properties": {
"facing": "north",
"half": "bottom",
@@ -56998,7 +61322,7 @@
}
},
{
- "id": 9587,
+ "id": 9919,
"properties": {
"facing": "north",
"half": "bottom",
@@ -57007,7 +61331,7 @@
}
},
{
- "id": 9588,
+ "id": 9920,
"properties": {
"facing": "south",
"half": "top",
@@ -57016,7 +61340,7 @@
}
},
{
- "id": 9589,
+ "id": 9921,
"properties": {
"facing": "south",
"half": "top",
@@ -57025,7 +61349,7 @@
}
},
{
- "id": 9590,
+ "id": 9922,
"properties": {
"facing": "south",
"half": "top",
@@ -57034,7 +61358,7 @@
}
},
{
- "id": 9591,
+ "id": 9923,
"properties": {
"facing": "south",
"half": "top",
@@ -57043,7 +61367,7 @@
}
},
{
- "id": 9592,
+ "id": 9924,
"properties": {
"facing": "south",
"half": "top",
@@ -57052,7 +61376,7 @@
}
},
{
- "id": 9593,
+ "id": 9925,
"properties": {
"facing": "south",
"half": "top",
@@ -57061,7 +61385,7 @@
}
},
{
- "id": 9594,
+ "id": 9926,
"properties": {
"facing": "south",
"half": "top",
@@ -57070,7 +61394,7 @@
}
},
{
- "id": 9595,
+ "id": 9927,
"properties": {
"facing": "south",
"half": "top",
@@ -57079,7 +61403,7 @@
}
},
{
- "id": 9596,
+ "id": 9928,
"properties": {
"facing": "south",
"half": "top",
@@ -57088,7 +61412,7 @@
}
},
{
- "id": 9597,
+ "id": 9929,
"properties": {
"facing": "south",
"half": "top",
@@ -57097,7 +61421,7 @@
}
},
{
- "id": 9598,
+ "id": 9930,
"properties": {
"facing": "south",
"half": "bottom",
@@ -57106,7 +61430,7 @@
}
},
{
- "id": 9599,
+ "id": 9931,
"properties": {
"facing": "south",
"half": "bottom",
@@ -57115,7 +61439,7 @@
}
},
{
- "id": 9600,
+ "id": 9932,
"properties": {
"facing": "south",
"half": "bottom",
@@ -57124,7 +61448,7 @@
}
},
{
- "id": 9601,
+ "id": 9933,
"properties": {
"facing": "south",
"half": "bottom",
@@ -57133,7 +61457,7 @@
}
},
{
- "id": 9602,
+ "id": 9934,
"properties": {
"facing": "south",
"half": "bottom",
@@ -57142,7 +61466,7 @@
}
},
{
- "id": 9603,
+ "id": 9935,
"properties": {
"facing": "south",
"half": "bottom",
@@ -57151,7 +61475,7 @@
}
},
{
- "id": 9604,
+ "id": 9936,
"properties": {
"facing": "south",
"half": "bottom",
@@ -57160,7 +61484,7 @@
}
},
{
- "id": 9605,
+ "id": 9937,
"properties": {
"facing": "south",
"half": "bottom",
@@ -57169,7 +61493,7 @@
}
},
{
- "id": 9606,
+ "id": 9938,
"properties": {
"facing": "south",
"half": "bottom",
@@ -57178,7 +61502,7 @@
}
},
{
- "id": 9607,
+ "id": 9939,
"properties": {
"facing": "south",
"half": "bottom",
@@ -57187,7 +61511,7 @@
}
},
{
- "id": 9608,
+ "id": 9940,
"properties": {
"facing": "west",
"half": "top",
@@ -57196,7 +61520,7 @@
}
},
{
- "id": 9609,
+ "id": 9941,
"properties": {
"facing": "west",
"half": "top",
@@ -57205,7 +61529,7 @@
}
},
{
- "id": 9610,
+ "id": 9942,
"properties": {
"facing": "west",
"half": "top",
@@ -57214,7 +61538,7 @@
}
},
{
- "id": 9611,
+ "id": 9943,
"properties": {
"facing": "west",
"half": "top",
@@ -57223,7 +61547,7 @@
}
},
{
- "id": 9612,
+ "id": 9944,
"properties": {
"facing": "west",
"half": "top",
@@ -57232,7 +61556,7 @@
}
},
{
- "id": 9613,
+ "id": 9945,
"properties": {
"facing": "west",
"half": "top",
@@ -57241,7 +61565,7 @@
}
},
{
- "id": 9614,
+ "id": 9946,
"properties": {
"facing": "west",
"half": "top",
@@ -57250,7 +61574,7 @@
}
},
{
- "id": 9615,
+ "id": 9947,
"properties": {
"facing": "west",
"half": "top",
@@ -57259,7 +61583,7 @@
}
},
{
- "id": 9616,
+ "id": 9948,
"properties": {
"facing": "west",
"half": "top",
@@ -57268,7 +61592,7 @@
}
},
{
- "id": 9617,
+ "id": 9949,
"properties": {
"facing": "west",
"half": "top",
@@ -57277,7 +61601,7 @@
}
},
{
- "id": 9618,
+ "id": 9950,
"properties": {
"facing": "west",
"half": "bottom",
@@ -57286,7 +61610,7 @@
}
},
{
- "id": 9619,
+ "id": 9951,
"properties": {
"facing": "west",
"half": "bottom",
@@ -57295,7 +61619,7 @@
}
},
{
- "id": 9620,
+ "id": 9952,
"properties": {
"facing": "west",
"half": "bottom",
@@ -57304,7 +61628,7 @@
}
},
{
- "id": 9621,
+ "id": 9953,
"properties": {
"facing": "west",
"half": "bottom",
@@ -57313,7 +61637,7 @@
}
},
{
- "id": 9622,
+ "id": 9954,
"properties": {
"facing": "west",
"half": "bottom",
@@ -57322,7 +61646,7 @@
}
},
{
- "id": 9623,
+ "id": 9955,
"properties": {
"facing": "west",
"half": "bottom",
@@ -57331,7 +61655,7 @@
}
},
{
- "id": 9624,
+ "id": 9956,
"properties": {
"facing": "west",
"half": "bottom",
@@ -57340,7 +61664,7 @@
}
},
{
- "id": 9625,
+ "id": 9957,
"properties": {
"facing": "west",
"half": "bottom",
@@ -57349,7 +61673,7 @@
}
},
{
- "id": 9626,
+ "id": 9958,
"properties": {
"facing": "west",
"half": "bottom",
@@ -57358,7 +61682,7 @@
}
},
{
- "id": 9627,
+ "id": 9959,
"properties": {
"facing": "west",
"half": "bottom",
@@ -57367,7 +61691,7 @@
}
},
{
- "id": 9628,
+ "id": 9960,
"properties": {
"facing": "east",
"half": "top",
@@ -57376,7 +61700,7 @@
}
},
{
- "id": 9629,
+ "id": 9961,
"properties": {
"facing": "east",
"half": "top",
@@ -57385,7 +61709,7 @@
}
},
{
- "id": 9630,
+ "id": 9962,
"properties": {
"facing": "east",
"half": "top",
@@ -57394,7 +61718,7 @@
}
},
{
- "id": 9631,
+ "id": 9963,
"properties": {
"facing": "east",
"half": "top",
@@ -57403,7 +61727,7 @@
}
},
{
- "id": 9632,
+ "id": 9964,
"properties": {
"facing": "east",
"half": "top",
@@ -57412,7 +61736,7 @@
}
},
{
- "id": 9633,
+ "id": 9965,
"properties": {
"facing": "east",
"half": "top",
@@ -57421,7 +61745,7 @@
}
},
{
- "id": 9634,
+ "id": 9966,
"properties": {
"facing": "east",
"half": "top",
@@ -57430,7 +61754,7 @@
}
},
{
- "id": 9635,
+ "id": 9967,
"properties": {
"facing": "east",
"half": "top",
@@ -57439,7 +61763,7 @@
}
},
{
- "id": 9636,
+ "id": 9968,
"properties": {
"facing": "east",
"half": "top",
@@ -57448,7 +61772,7 @@
}
},
{
- "id": 9637,
+ "id": 9969,
"properties": {
"facing": "east",
"half": "top",
@@ -57457,7 +61781,7 @@
}
},
{
- "id": 9638,
+ "id": 9970,
"properties": {
"facing": "east",
"half": "bottom",
@@ -57466,7 +61790,7 @@
}
},
{
- "id": 9639,
+ "id": 9971,
"properties": {
"facing": "east",
"half": "bottom",
@@ -57475,7 +61799,7 @@
}
},
{
- "id": 9640,
+ "id": 9972,
"properties": {
"facing": "east",
"half": "bottom",
@@ -57484,7 +61808,7 @@
}
},
{
- "id": 9641,
+ "id": 9973,
"properties": {
"facing": "east",
"half": "bottom",
@@ -57493,7 +61817,7 @@
}
},
{
- "id": 9642,
+ "id": 9974,
"properties": {
"facing": "east",
"half": "bottom",
@@ -57502,7 +61826,7 @@
}
},
{
- "id": 9643,
+ "id": 9975,
"properties": {
"facing": "east",
"half": "bottom",
@@ -57511,7 +61835,7 @@
}
},
{
- "id": 9644,
+ "id": 9976,
"properties": {
"facing": "east",
"half": "bottom",
@@ -57520,7 +61844,7 @@
}
},
{
- "id": 9645,
+ "id": 9977,
"properties": {
"facing": "east",
"half": "bottom",
@@ -57529,7 +61853,7 @@
}
},
{
- "id": 9646,
+ "id": 9978,
"properties": {
"facing": "east",
"half": "bottom",
@@ -57538,7 +61862,7 @@
}
},
{
- "id": 9647,
+ "id": 9979,
"properties": {
"facing": "east",
"half": "bottom",
@@ -57575,7 +61899,7 @@
},
"states": [
{
- "id": 6116,
+ "id": 6342,
"properties": {
"facing": "north",
"half": "top",
@@ -57585,7 +61909,7 @@
}
},
{
- "id": 6117,
+ "id": 6343,
"properties": {
"facing": "north",
"half": "top",
@@ -57595,7 +61919,7 @@
}
},
{
- "id": 6118,
+ "id": 6344,
"properties": {
"facing": "north",
"half": "top",
@@ -57605,7 +61929,7 @@
}
},
{
- "id": 6119,
+ "id": 6345,
"properties": {
"facing": "north",
"half": "top",
@@ -57615,7 +61939,7 @@
}
},
{
- "id": 6120,
+ "id": 6346,
"properties": {
"facing": "north",
"half": "top",
@@ -57625,7 +61949,7 @@
}
},
{
- "id": 6121,
+ "id": 6347,
"properties": {
"facing": "north",
"half": "top",
@@ -57635,7 +61959,7 @@
}
},
{
- "id": 6122,
+ "id": 6348,
"properties": {
"facing": "north",
"half": "top",
@@ -57645,7 +61969,7 @@
}
},
{
- "id": 6123,
+ "id": 6349,
"properties": {
"facing": "north",
"half": "top",
@@ -57655,7 +61979,7 @@
}
},
{
- "id": 6124,
+ "id": 6350,
"properties": {
"facing": "north",
"half": "bottom",
@@ -57665,7 +61989,7 @@
}
},
{
- "id": 6125,
+ "id": 6351,
"properties": {
"facing": "north",
"half": "bottom",
@@ -57675,7 +61999,7 @@
}
},
{
- "id": 6126,
+ "id": 6352,
"properties": {
"facing": "north",
"half": "bottom",
@@ -57685,7 +62009,7 @@
}
},
{
- "id": 6127,
+ "id": 6353,
"properties": {
"facing": "north",
"half": "bottom",
@@ -57695,7 +62019,7 @@
}
},
{
- "id": 6128,
+ "id": 6354,
"properties": {
"facing": "north",
"half": "bottom",
@@ -57705,7 +62029,7 @@
}
},
{
- "id": 6129,
+ "id": 6355,
"properties": {
"facing": "north",
"half": "bottom",
@@ -57715,7 +62039,7 @@
}
},
{
- "id": 6130,
+ "id": 6356,
"properties": {
"facing": "north",
"half": "bottom",
@@ -57726,7 +62050,7 @@
},
{
"default": true,
- "id": 6131,
+ "id": 6357,
"properties": {
"facing": "north",
"half": "bottom",
@@ -57736,7 +62060,7 @@
}
},
{
- "id": 6132,
+ "id": 6358,
"properties": {
"facing": "south",
"half": "top",
@@ -57746,7 +62070,7 @@
}
},
{
- "id": 6133,
+ "id": 6359,
"properties": {
"facing": "south",
"half": "top",
@@ -57756,7 +62080,7 @@
}
},
{
- "id": 6134,
+ "id": 6360,
"properties": {
"facing": "south",
"half": "top",
@@ -57766,7 +62090,7 @@
}
},
{
- "id": 6135,
+ "id": 6361,
"properties": {
"facing": "south",
"half": "top",
@@ -57776,7 +62100,7 @@
}
},
{
- "id": 6136,
+ "id": 6362,
"properties": {
"facing": "south",
"half": "top",
@@ -57786,7 +62110,7 @@
}
},
{
- "id": 6137,
+ "id": 6363,
"properties": {
"facing": "south",
"half": "top",
@@ -57796,7 +62120,7 @@
}
},
{
- "id": 6138,
+ "id": 6364,
"properties": {
"facing": "south",
"half": "top",
@@ -57806,7 +62130,7 @@
}
},
{
- "id": 6139,
+ "id": 6365,
"properties": {
"facing": "south",
"half": "top",
@@ -57816,7 +62140,7 @@
}
},
{
- "id": 6140,
+ "id": 6366,
"properties": {
"facing": "south",
"half": "bottom",
@@ -57826,7 +62150,7 @@
}
},
{
- "id": 6141,
+ "id": 6367,
"properties": {
"facing": "south",
"half": "bottom",
@@ -57836,7 +62160,7 @@
}
},
{
- "id": 6142,
+ "id": 6368,
"properties": {
"facing": "south",
"half": "bottom",
@@ -57846,7 +62170,7 @@
}
},
{
- "id": 6143,
+ "id": 6369,
"properties": {
"facing": "south",
"half": "bottom",
@@ -57856,7 +62180,7 @@
}
},
{
- "id": 6144,
+ "id": 6370,
"properties": {
"facing": "south",
"half": "bottom",
@@ -57866,7 +62190,7 @@
}
},
{
- "id": 6145,
+ "id": 6371,
"properties": {
"facing": "south",
"half": "bottom",
@@ -57876,7 +62200,7 @@
}
},
{
- "id": 6146,
+ "id": 6372,
"properties": {
"facing": "south",
"half": "bottom",
@@ -57886,7 +62210,7 @@
}
},
{
- "id": 6147,
+ "id": 6373,
"properties": {
"facing": "south",
"half": "bottom",
@@ -57896,7 +62220,7 @@
}
},
{
- "id": 6148,
+ "id": 6374,
"properties": {
"facing": "west",
"half": "top",
@@ -57906,7 +62230,7 @@
}
},
{
- "id": 6149,
+ "id": 6375,
"properties": {
"facing": "west",
"half": "top",
@@ -57916,7 +62240,7 @@
}
},
{
- "id": 6150,
+ "id": 6376,
"properties": {
"facing": "west",
"half": "top",
@@ -57926,7 +62250,7 @@
}
},
{
- "id": 6151,
+ "id": 6377,
"properties": {
"facing": "west",
"half": "top",
@@ -57936,7 +62260,7 @@
}
},
{
- "id": 6152,
+ "id": 6378,
"properties": {
"facing": "west",
"half": "top",
@@ -57946,7 +62270,7 @@
}
},
{
- "id": 6153,
+ "id": 6379,
"properties": {
"facing": "west",
"half": "top",
@@ -57956,7 +62280,7 @@
}
},
{
- "id": 6154,
+ "id": 6380,
"properties": {
"facing": "west",
"half": "top",
@@ -57966,7 +62290,7 @@
}
},
{
- "id": 6155,
+ "id": 6381,
"properties": {
"facing": "west",
"half": "top",
@@ -57976,7 +62300,7 @@
}
},
{
- "id": 6156,
+ "id": 6382,
"properties": {
"facing": "west",
"half": "bottom",
@@ -57986,7 +62310,7 @@
}
},
{
- "id": 6157,
+ "id": 6383,
"properties": {
"facing": "west",
"half": "bottom",
@@ -57996,7 +62320,7 @@
}
},
{
- "id": 6158,
+ "id": 6384,
"properties": {
"facing": "west",
"half": "bottom",
@@ -58006,7 +62330,7 @@
}
},
{
- "id": 6159,
+ "id": 6385,
"properties": {
"facing": "west",
"half": "bottom",
@@ -58016,7 +62340,7 @@
}
},
{
- "id": 6160,
+ "id": 6386,
"properties": {
"facing": "west",
"half": "bottom",
@@ -58026,7 +62350,7 @@
}
},
{
- "id": 6161,
+ "id": 6387,
"properties": {
"facing": "west",
"half": "bottom",
@@ -58036,7 +62360,7 @@
}
},
{
- "id": 6162,
+ "id": 6388,
"properties": {
"facing": "west",
"half": "bottom",
@@ -58046,7 +62370,7 @@
}
},
{
- "id": 6163,
+ "id": 6389,
"properties": {
"facing": "west",
"half": "bottom",
@@ -58056,7 +62380,7 @@
}
},
{
- "id": 6164,
+ "id": 6390,
"properties": {
"facing": "east",
"half": "top",
@@ -58066,7 +62390,7 @@
}
},
{
- "id": 6165,
+ "id": 6391,
"properties": {
"facing": "east",
"half": "top",
@@ -58076,7 +62400,7 @@
}
},
{
- "id": 6166,
+ "id": 6392,
"properties": {
"facing": "east",
"half": "top",
@@ -58086,7 +62410,7 @@
}
},
{
- "id": 6167,
+ "id": 6393,
"properties": {
"facing": "east",
"half": "top",
@@ -58096,7 +62420,7 @@
}
},
{
- "id": 6168,
+ "id": 6394,
"properties": {
"facing": "east",
"half": "top",
@@ -58106,7 +62430,7 @@
}
},
{
- "id": 6169,
+ "id": 6395,
"properties": {
"facing": "east",
"half": "top",
@@ -58116,7 +62440,7 @@
}
},
{
- "id": 6170,
+ "id": 6396,
"properties": {
"facing": "east",
"half": "top",
@@ -58126,7 +62450,7 @@
}
},
{
- "id": 6171,
+ "id": 6397,
"properties": {
"facing": "east",
"half": "top",
@@ -58136,7 +62460,7 @@
}
},
{
- "id": 6172,
+ "id": 6398,
"properties": {
"facing": "east",
"half": "bottom",
@@ -58146,7 +62470,7 @@
}
},
{
- "id": 6173,
+ "id": 6399,
"properties": {
"facing": "east",
"half": "bottom",
@@ -58156,7 +62480,7 @@
}
},
{
- "id": 6174,
+ "id": 6400,
"properties": {
"facing": "east",
"half": "bottom",
@@ -58166,7 +62490,7 @@
}
},
{
- "id": 6175,
+ "id": 6401,
"properties": {
"facing": "east",
"half": "bottom",
@@ -58176,7 +62500,7 @@
}
},
{
- "id": 6176,
+ "id": 6402,
"properties": {
"facing": "east",
"half": "bottom",
@@ -58186,7 +62510,7 @@
}
},
{
- "id": 6177,
+ "id": 6403,
"properties": {
"facing": "east",
"half": "bottom",
@@ -58196,7 +62520,7 @@
}
},
{
- "id": 6178,
+ "id": 6404,
"properties": {
"facing": "east",
"half": "bottom",
@@ -58206,7 +62530,7 @@
}
},
{
- "id": 6179,
+ "id": 6405,
"properties": {
"facing": "east",
"half": "bottom",
@@ -58232,7 +62556,7 @@
},
"states": [
{
- "id": 5422,
+ "id": 5582,
"properties": {
"facing": "north",
"waterlogged": "true"
@@ -58240,49 +62564,49 @@
},
{
"default": true,
- "id": 5423,
+ "id": 5583,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 5424,
+ "id": 5584,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 5425,
+ "id": 5585,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 5426,
+ "id": 5586,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 5427,
+ "id": 5587,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 5428,
+ "id": 5588,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 5429,
+ "id": 5589,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -58305,7 +62629,7 @@
},
"states": [
{
- "id": 4718,
+ "id": 4806,
"properties": {
"facing": "north",
"waterlogged": "true"
@@ -58313,49 +62637,49 @@
},
{
"default": true,
- "id": 4719,
+ "id": 4807,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 4720,
+ "id": 4808,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 4721,
+ "id": 4809,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 4722,
+ "id": 4810,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 4723,
+ "id": 4811,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 4724,
+ "id": 4812,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 4725,
+ "id": 4813,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -58373,20 +62697,20 @@
},
"states": [
{
- "id": 187,
+ "id": 203,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 188,
+ "id": 204,
"properties": {
"axis": "y"
}
},
{
- "id": 189,
+ "id": 205,
"properties": {
"axis": "z"
}
@@ -58397,7 +62721,7 @@
"states": [
{
"default": true,
- "id": 9988
+ "id": 10320
}
]
},
@@ -58415,21 +62739,21 @@
},
"states": [
{
- "id": 10241,
+ "id": 10573,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 10242,
+ "id": 10574,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 10243,
+ "id": 10575,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -58437,21 +62761,21 @@
},
{
"default": true,
- "id": 10244,
+ "id": 10576,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 10245,
+ "id": 10577,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 10246,
+ "id": 10578,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -58485,7 +62809,7 @@
},
"states": [
{
- "id": 10149,
+ "id": 10481,
"properties": {
"facing": "north",
"half": "top",
@@ -58494,7 +62818,7 @@
}
},
{
- "id": 10150,
+ "id": 10482,
"properties": {
"facing": "north",
"half": "top",
@@ -58503,7 +62827,7 @@
}
},
{
- "id": 10151,
+ "id": 10483,
"properties": {
"facing": "north",
"half": "top",
@@ -58512,7 +62836,7 @@
}
},
{
- "id": 10152,
+ "id": 10484,
"properties": {
"facing": "north",
"half": "top",
@@ -58521,7 +62845,7 @@
}
},
{
- "id": 10153,
+ "id": 10485,
"properties": {
"facing": "north",
"half": "top",
@@ -58530,7 +62854,7 @@
}
},
{
- "id": 10154,
+ "id": 10486,
"properties": {
"facing": "north",
"half": "top",
@@ -58539,7 +62863,7 @@
}
},
{
- "id": 10155,
+ "id": 10487,
"properties": {
"facing": "north",
"half": "top",
@@ -58548,7 +62872,7 @@
}
},
{
- "id": 10156,
+ "id": 10488,
"properties": {
"facing": "north",
"half": "top",
@@ -58557,7 +62881,7 @@
}
},
{
- "id": 10157,
+ "id": 10489,
"properties": {
"facing": "north",
"half": "top",
@@ -58566,7 +62890,7 @@
}
},
{
- "id": 10158,
+ "id": 10490,
"properties": {
"facing": "north",
"half": "top",
@@ -58575,7 +62899,7 @@
}
},
{
- "id": 10159,
+ "id": 10491,
"properties": {
"facing": "north",
"half": "bottom",
@@ -58585,7 +62909,7 @@
},
{
"default": true,
- "id": 10160,
+ "id": 10492,
"properties": {
"facing": "north",
"half": "bottom",
@@ -58594,7 +62918,7 @@
}
},
{
- "id": 10161,
+ "id": 10493,
"properties": {
"facing": "north",
"half": "bottom",
@@ -58603,7 +62927,7 @@
}
},
{
- "id": 10162,
+ "id": 10494,
"properties": {
"facing": "north",
"half": "bottom",
@@ -58612,7 +62936,7 @@
}
},
{
- "id": 10163,
+ "id": 10495,
"properties": {
"facing": "north",
"half": "bottom",
@@ -58621,7 +62945,7 @@
}
},
{
- "id": 10164,
+ "id": 10496,
"properties": {
"facing": "north",
"half": "bottom",
@@ -58630,7 +62954,7 @@
}
},
{
- "id": 10165,
+ "id": 10497,
"properties": {
"facing": "north",
"half": "bottom",
@@ -58639,7 +62963,7 @@
}
},
{
- "id": 10166,
+ "id": 10498,
"properties": {
"facing": "north",
"half": "bottom",
@@ -58648,7 +62972,7 @@
}
},
{
- "id": 10167,
+ "id": 10499,
"properties": {
"facing": "north",
"half": "bottom",
@@ -58657,7 +62981,7 @@
}
},
{
- "id": 10168,
+ "id": 10500,
"properties": {
"facing": "north",
"half": "bottom",
@@ -58666,7 +62990,7 @@
}
},
{
- "id": 10169,
+ "id": 10501,
"properties": {
"facing": "south",
"half": "top",
@@ -58675,7 +62999,7 @@
}
},
{
- "id": 10170,
+ "id": 10502,
"properties": {
"facing": "south",
"half": "top",
@@ -58684,7 +63008,7 @@
}
},
{
- "id": 10171,
+ "id": 10503,
"properties": {
"facing": "south",
"half": "top",
@@ -58693,7 +63017,7 @@
}
},
{
- "id": 10172,
+ "id": 10504,
"properties": {
"facing": "south",
"half": "top",
@@ -58702,7 +63026,7 @@
}
},
{
- "id": 10173,
+ "id": 10505,
"properties": {
"facing": "south",
"half": "top",
@@ -58711,7 +63035,7 @@
}
},
{
- "id": 10174,
+ "id": 10506,
"properties": {
"facing": "south",
"half": "top",
@@ -58720,7 +63044,7 @@
}
},
{
- "id": 10175,
+ "id": 10507,
"properties": {
"facing": "south",
"half": "top",
@@ -58729,7 +63053,7 @@
}
},
{
- "id": 10176,
+ "id": 10508,
"properties": {
"facing": "south",
"half": "top",
@@ -58738,7 +63062,7 @@
}
},
{
- "id": 10177,
+ "id": 10509,
"properties": {
"facing": "south",
"half": "top",
@@ -58747,7 +63071,7 @@
}
},
{
- "id": 10178,
+ "id": 10510,
"properties": {
"facing": "south",
"half": "top",
@@ -58756,7 +63080,7 @@
}
},
{
- "id": 10179,
+ "id": 10511,
"properties": {
"facing": "south",
"half": "bottom",
@@ -58765,7 +63089,7 @@
}
},
{
- "id": 10180,
+ "id": 10512,
"properties": {
"facing": "south",
"half": "bottom",
@@ -58774,7 +63098,7 @@
}
},
{
- "id": 10181,
+ "id": 10513,
"properties": {
"facing": "south",
"half": "bottom",
@@ -58783,7 +63107,7 @@
}
},
{
- "id": 10182,
+ "id": 10514,
"properties": {
"facing": "south",
"half": "bottom",
@@ -58792,7 +63116,7 @@
}
},
{
- "id": 10183,
+ "id": 10515,
"properties": {
"facing": "south",
"half": "bottom",
@@ -58801,7 +63125,7 @@
}
},
{
- "id": 10184,
+ "id": 10516,
"properties": {
"facing": "south",
"half": "bottom",
@@ -58810,7 +63134,7 @@
}
},
{
- "id": 10185,
+ "id": 10517,
"properties": {
"facing": "south",
"half": "bottom",
@@ -58819,7 +63143,7 @@
}
},
{
- "id": 10186,
+ "id": 10518,
"properties": {
"facing": "south",
"half": "bottom",
@@ -58828,7 +63152,7 @@
}
},
{
- "id": 10187,
+ "id": 10519,
"properties": {
"facing": "south",
"half": "bottom",
@@ -58837,7 +63161,7 @@
}
},
{
- "id": 10188,
+ "id": 10520,
"properties": {
"facing": "south",
"half": "bottom",
@@ -58846,7 +63170,7 @@
}
},
{
- "id": 10189,
+ "id": 10521,
"properties": {
"facing": "west",
"half": "top",
@@ -58855,7 +63179,7 @@
}
},
{
- "id": 10190,
+ "id": 10522,
"properties": {
"facing": "west",
"half": "top",
@@ -58864,7 +63188,7 @@
}
},
{
- "id": 10191,
+ "id": 10523,
"properties": {
"facing": "west",
"half": "top",
@@ -58873,7 +63197,7 @@
}
},
{
- "id": 10192,
+ "id": 10524,
"properties": {
"facing": "west",
"half": "top",
@@ -58882,7 +63206,7 @@
}
},
{
- "id": 10193,
+ "id": 10525,
"properties": {
"facing": "west",
"half": "top",
@@ -58891,7 +63215,7 @@
}
},
{
- "id": 10194,
+ "id": 10526,
"properties": {
"facing": "west",
"half": "top",
@@ -58900,7 +63224,7 @@
}
},
{
- "id": 10195,
+ "id": 10527,
"properties": {
"facing": "west",
"half": "top",
@@ -58909,7 +63233,7 @@
}
},
{
- "id": 10196,
+ "id": 10528,
"properties": {
"facing": "west",
"half": "top",
@@ -58918,7 +63242,7 @@
}
},
{
- "id": 10197,
+ "id": 10529,
"properties": {
"facing": "west",
"half": "top",
@@ -58927,7 +63251,7 @@
}
},
{
- "id": 10198,
+ "id": 10530,
"properties": {
"facing": "west",
"half": "top",
@@ -58936,7 +63260,7 @@
}
},
{
- "id": 10199,
+ "id": 10531,
"properties": {
"facing": "west",
"half": "bottom",
@@ -58945,7 +63269,7 @@
}
},
{
- "id": 10200,
+ "id": 10532,
"properties": {
"facing": "west",
"half": "bottom",
@@ -58954,7 +63278,7 @@
}
},
{
- "id": 10201,
+ "id": 10533,
"properties": {
"facing": "west",
"half": "bottom",
@@ -58963,7 +63287,7 @@
}
},
{
- "id": 10202,
+ "id": 10534,
"properties": {
"facing": "west",
"half": "bottom",
@@ -58972,7 +63296,7 @@
}
},
{
- "id": 10203,
+ "id": 10535,
"properties": {
"facing": "west",
"half": "bottom",
@@ -58981,7 +63305,7 @@
}
},
{
- "id": 10204,
+ "id": 10536,
"properties": {
"facing": "west",
"half": "bottom",
@@ -58990,7 +63314,7 @@
}
},
{
- "id": 10205,
+ "id": 10537,
"properties": {
"facing": "west",
"half": "bottom",
@@ -58999,7 +63323,7 @@
}
},
{
- "id": 10206,
+ "id": 10538,
"properties": {
"facing": "west",
"half": "bottom",
@@ -59008,7 +63332,7 @@
}
},
{
- "id": 10207,
+ "id": 10539,
"properties": {
"facing": "west",
"half": "bottom",
@@ -59017,7 +63341,7 @@
}
},
{
- "id": 10208,
+ "id": 10540,
"properties": {
"facing": "west",
"half": "bottom",
@@ -59026,7 +63350,7 @@
}
},
{
- "id": 10209,
+ "id": 10541,
"properties": {
"facing": "east",
"half": "top",
@@ -59035,7 +63359,7 @@
}
},
{
- "id": 10210,
+ "id": 10542,
"properties": {
"facing": "east",
"half": "top",
@@ -59044,7 +63368,7 @@
}
},
{
- "id": 10211,
+ "id": 10543,
"properties": {
"facing": "east",
"half": "top",
@@ -59053,7 +63377,7 @@
}
},
{
- "id": 10212,
+ "id": 10544,
"properties": {
"facing": "east",
"half": "top",
@@ -59062,7 +63386,7 @@
}
},
{
- "id": 10213,
+ "id": 10545,
"properties": {
"facing": "east",
"half": "top",
@@ -59071,7 +63395,7 @@
}
},
{
- "id": 10214,
+ "id": 10546,
"properties": {
"facing": "east",
"half": "top",
@@ -59080,7 +63404,7 @@
}
},
{
- "id": 10215,
+ "id": 10547,
"properties": {
"facing": "east",
"half": "top",
@@ -59089,7 +63413,7 @@
}
},
{
- "id": 10216,
+ "id": 10548,
"properties": {
"facing": "east",
"half": "top",
@@ -59098,7 +63422,7 @@
}
},
{
- "id": 10217,
+ "id": 10549,
"properties": {
"facing": "east",
"half": "top",
@@ -59107,7 +63431,7 @@
}
},
{
- "id": 10218,
+ "id": 10550,
"properties": {
"facing": "east",
"half": "top",
@@ -59116,7 +63440,7 @@
}
},
{
- "id": 10219,
+ "id": 10551,
"properties": {
"facing": "east",
"half": "bottom",
@@ -59125,7 +63449,7 @@
}
},
{
- "id": 10220,
+ "id": 10552,
"properties": {
"facing": "east",
"half": "bottom",
@@ -59134,7 +63458,7 @@
}
},
{
- "id": 10221,
+ "id": 10553,
"properties": {
"facing": "east",
"half": "bottom",
@@ -59143,7 +63467,7 @@
}
},
{
- "id": 10222,
+ "id": 10554,
"properties": {
"facing": "east",
"half": "bottom",
@@ -59152,7 +63476,7 @@
}
},
{
- "id": 10223,
+ "id": 10555,
"properties": {
"facing": "east",
"half": "bottom",
@@ -59161,7 +63485,7 @@
}
},
{
- "id": 10224,
+ "id": 10556,
"properties": {
"facing": "east",
"half": "bottom",
@@ -59170,7 +63494,7 @@
}
},
{
- "id": 10225,
+ "id": 10557,
"properties": {
"facing": "east",
"half": "bottom",
@@ -59179,7 +63503,7 @@
}
},
{
- "id": 10226,
+ "id": 10558,
"properties": {
"facing": "east",
"half": "bottom",
@@ -59188,7 +63512,7 @@
}
},
{
- "id": 10227,
+ "id": 10559,
"properties": {
"facing": "east",
"half": "bottom",
@@ -59197,7 +63521,7 @@
}
},
{
- "id": 10228,
+ "id": 10560,
"properties": {
"facing": "east",
"half": "bottom",
@@ -59234,112 +63558,112 @@
},
"states": [
{
- "id": 8795,
+ "id": 9047,
"properties": {
"inverted": "true",
"power": "0"
}
},
{
- "id": 8796,
+ "id": 9048,
"properties": {
"inverted": "true",
"power": "1"
}
},
{
- "id": 8797,
+ "id": 9049,
"properties": {
"inverted": "true",
"power": "2"
}
},
{
- "id": 8798,
+ "id": 9050,
"properties": {
"inverted": "true",
"power": "3"
}
},
{
- "id": 8799,
+ "id": 9051,
"properties": {
"inverted": "true",
"power": "4"
}
},
{
- "id": 8800,
+ "id": 9052,
"properties": {
"inverted": "true",
"power": "5"
}
},
{
- "id": 8801,
+ "id": 9053,
"properties": {
"inverted": "true",
"power": "6"
}
},
{
- "id": 8802,
+ "id": 9054,
"properties": {
"inverted": "true",
"power": "7"
}
},
{
- "id": 8803,
+ "id": 9055,
"properties": {
"inverted": "true",
"power": "8"
}
},
{
- "id": 8804,
+ "id": 9056,
"properties": {
"inverted": "true",
"power": "9"
}
},
{
- "id": 8805,
+ "id": 9057,
"properties": {
"inverted": "true",
"power": "10"
}
},
{
- "id": 8806,
+ "id": 9058,
"properties": {
"inverted": "true",
"power": "11"
}
},
{
- "id": 8807,
+ "id": 9059,
"properties": {
"inverted": "true",
"power": "12"
}
},
{
- "id": 8808,
+ "id": 9060,
"properties": {
"inverted": "true",
"power": "13"
}
},
{
- "id": 8809,
+ "id": 9061,
"properties": {
"inverted": "true",
"power": "14"
}
},
{
- "id": 8810,
+ "id": 9062,
"properties": {
"inverted": "true",
"power": "15"
@@ -59347,112 +63671,112 @@
},
{
"default": true,
- "id": 8811,
+ "id": 9063,
"properties": {
"inverted": "false",
"power": "0"
}
},
{
- "id": 8812,
+ "id": 9064,
"properties": {
"inverted": "false",
"power": "1"
}
},
{
- "id": 8813,
+ "id": 9065,
"properties": {
"inverted": "false",
"power": "2"
}
},
{
- "id": 8814,
+ "id": 9066,
"properties": {
"inverted": "false",
"power": "3"
}
},
{
- "id": 8815,
+ "id": 9067,
"properties": {
"inverted": "false",
"power": "4"
}
},
{
- "id": 8816,
+ "id": 9068,
"properties": {
"inverted": "false",
"power": "5"
}
},
{
- "id": 8817,
+ "id": 9069,
"properties": {
"inverted": "false",
"power": "6"
}
},
{
- "id": 8818,
+ "id": 9070,
"properties": {
"inverted": "false",
"power": "7"
}
},
{
- "id": 8819,
+ "id": 9071,
"properties": {
"inverted": "false",
"power": "8"
}
},
{
- "id": 8820,
+ "id": 9072,
"properties": {
"inverted": "false",
"power": "9"
}
},
{
- "id": 8821,
+ "id": 9073,
"properties": {
"inverted": "false",
"power": "10"
}
},
{
- "id": 8822,
+ "id": 9074,
"properties": {
"inverted": "false",
"power": "11"
}
},
{
- "id": 8823,
+ "id": 9075,
"properties": {
"inverted": "false",
"power": "12"
}
},
{
- "id": 8824,
+ "id": 9076,
"properties": {
"inverted": "false",
"power": "13"
}
},
{
- "id": 8825,
+ "id": 9077,
"properties": {
"inverted": "false",
"power": "14"
}
},
{
- "id": 8826,
+ "id": 9078,
"properties": {
"inverted": "false",
"power": "15"
@@ -59470,13 +63794,13 @@
"states": [
{
"default": true,
- "id": 12187,
+ "id": 12656,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12188,
+ "id": 12657,
"properties": {
"waterlogged": "false"
}
@@ -59487,7 +63811,7 @@
"states": [
{
"default": true,
- "id": 12176
+ "id": 12645
}
]
},
@@ -59501,13 +63825,13 @@
"states": [
{
"default": true,
- "id": 12207,
+ "id": 12676,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12208,
+ "id": 12677,
"properties": {
"waterlogged": "false"
}
@@ -59530,56 +63854,56 @@
"states": [
{
"default": true,
- "id": 12233,
+ "id": 12702,
"properties": {
"facing": "north",
"waterlogged": "true"
}
},
{
- "id": 12234,
+ "id": 12703,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 12235,
+ "id": 12704,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 12236,
+ "id": 12705,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 12237,
+ "id": 12706,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 12238,
+ "id": 12707,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 12239,
+ "id": 12708,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 12240,
+ "id": 12709,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -59597,13 +63921,13 @@
"states": [
{
"default": true,
- "id": 12189,
+ "id": 12658,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12190,
+ "id": 12659,
"properties": {
"waterlogged": "false"
}
@@ -59614,7 +63938,7 @@
"states": [
{
"default": true,
- "id": 12177
+ "id": 12646
}
]
},
@@ -59628,13 +63952,13 @@
"states": [
{
"default": true,
- "id": 12209,
+ "id": 12678,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12210,
+ "id": 12679,
"properties": {
"waterlogged": "false"
}
@@ -59657,56 +63981,56 @@
"states": [
{
"default": true,
- "id": 12241,
+ "id": 12710,
"properties": {
"facing": "north",
"waterlogged": "true"
}
},
{
- "id": 12242,
+ "id": 12711,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 12243,
+ "id": 12712,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 12244,
+ "id": 12713,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 12245,
+ "id": 12714,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 12246,
+ "id": 12715,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 12247,
+ "id": 12716,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 12248,
+ "id": 12717,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -59718,7 +64042,7 @@
"states": [
{
"default": true,
- "id": 1956
+ "id": 2003
}
]
},
@@ -59732,13 +64056,13 @@
"states": [
{
"default": true,
- "id": 12191,
+ "id": 12660,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12192,
+ "id": 12661,
"properties": {
"waterlogged": "false"
}
@@ -59749,7 +64073,7 @@
"states": [
{
"default": true,
- "id": 12178
+ "id": 12647
}
]
},
@@ -59763,13 +64087,13 @@
"states": [
{
"default": true,
- "id": 12211,
+ "id": 12680,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12212,
+ "id": 12681,
"properties": {
"waterlogged": "false"
}
@@ -59792,56 +64116,56 @@
"states": [
{
"default": true,
- "id": 12249,
+ "id": 12718,
"properties": {
"facing": "north",
"waterlogged": "true"
}
},
{
- "id": 12250,
+ "id": 12719,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 12251,
+ "id": 12720,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 12252,
+ "id": 12721,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 12253,
+ "id": 12722,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 12254,
+ "id": 12723,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 12255,
+ "id": 12724,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 12256,
+ "id": 12725,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -59859,13 +64183,13 @@
"states": [
{
"default": true,
- "id": 12193,
+ "id": 12662,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12194,
+ "id": 12663,
"properties": {
"waterlogged": "false"
}
@@ -59876,7 +64200,7 @@
"states": [
{
"default": true,
- "id": 12179
+ "id": 12648
}
]
},
@@ -59890,13 +64214,13 @@
"states": [
{
"default": true,
- "id": 12213,
+ "id": 12682,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12214,
+ "id": 12683,
"properties": {
"waterlogged": "false"
}
@@ -59919,56 +64243,56 @@
"states": [
{
"default": true,
- "id": 12257,
+ "id": 12726,
"properties": {
"facing": "north",
"waterlogged": "true"
}
},
{
- "id": 12258,
+ "id": 12727,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 12259,
+ "id": 12728,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 12260,
+ "id": 12729,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 12261,
+ "id": 12730,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 12262,
+ "id": 12731,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 12263,
+ "id": 12732,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 12264,
+ "id": 12733,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -59986,13 +64310,13 @@
"states": [
{
"default": true,
- "id": 12185,
+ "id": 12654,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12186,
+ "id": 12655,
"properties": {
"waterlogged": "false"
}
@@ -60003,7 +64327,7 @@
"states": [
{
"default": true,
- "id": 12175
+ "id": 12644
}
]
},
@@ -60017,13 +64341,13 @@
"states": [
{
"default": true,
- "id": 12205,
+ "id": 12674,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12206,
+ "id": 12675,
"properties": {
"waterlogged": "false"
}
@@ -60046,56 +64370,129 @@
"states": [
{
"default": true,
- "id": 12225,
+ "id": 12694,
"properties": {
"facing": "north",
"waterlogged": "true"
}
},
{
- "id": 12226,
+ "id": 12695,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 12227,
+ "id": 12696,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 12228,
+ "id": 12697,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 12229,
+ "id": 12698,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 12230,
+ "id": 12699,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 12231,
+ "id": 12700,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 12232,
+ "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"
@@ -60113,20 +64510,20 @@
},
"states": [
{
- "id": 21562,
+ "id": 22047,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 21563,
+ "id": 22048,
"properties": {
"axis": "y"
}
},
{
- "id": 21564,
+ "id": 22049,
"properties": {
"axis": "z"
}
@@ -60147,21 +64544,21 @@
},
"states": [
{
- "id": 22879,
+ "id": 23364,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 22880,
+ "id": 23365,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 22881,
+ "id": 23366,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -60169,21 +64566,21 @@
},
{
"default": true,
- "id": 22882,
+ "id": 23367,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 22883,
+ "id": 23368,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 22884,
+ "id": 23369,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -60217,7 +64614,7 @@
},
"states": [
{
- "id": 22799,
+ "id": 23284,
"properties": {
"facing": "north",
"half": "top",
@@ -60226,7 +64623,7 @@
}
},
{
- "id": 22800,
+ "id": 23285,
"properties": {
"facing": "north",
"half": "top",
@@ -60235,7 +64632,7 @@
}
},
{
- "id": 22801,
+ "id": 23286,
"properties": {
"facing": "north",
"half": "top",
@@ -60244,7 +64641,7 @@
}
},
{
- "id": 22802,
+ "id": 23287,
"properties": {
"facing": "north",
"half": "top",
@@ -60253,7 +64650,7 @@
}
},
{
- "id": 22803,
+ "id": 23288,
"properties": {
"facing": "north",
"half": "top",
@@ -60262,7 +64659,7 @@
}
},
{
- "id": 22804,
+ "id": 23289,
"properties": {
"facing": "north",
"half": "top",
@@ -60271,7 +64668,7 @@
}
},
{
- "id": 22805,
+ "id": 23290,
"properties": {
"facing": "north",
"half": "top",
@@ -60280,7 +64677,7 @@
}
},
{
- "id": 22806,
+ "id": 23291,
"properties": {
"facing": "north",
"half": "top",
@@ -60289,7 +64686,7 @@
}
},
{
- "id": 22807,
+ "id": 23292,
"properties": {
"facing": "north",
"half": "top",
@@ -60298,7 +64695,7 @@
}
},
{
- "id": 22808,
+ "id": 23293,
"properties": {
"facing": "north",
"half": "top",
@@ -60307,7 +64704,7 @@
}
},
{
- "id": 22809,
+ "id": 23294,
"properties": {
"facing": "north",
"half": "bottom",
@@ -60317,7 +64714,7 @@
},
{
"default": true,
- "id": 22810,
+ "id": 23295,
"properties": {
"facing": "north",
"half": "bottom",
@@ -60326,7 +64723,7 @@
}
},
{
- "id": 22811,
+ "id": 23296,
"properties": {
"facing": "north",
"half": "bottom",
@@ -60335,7 +64732,7 @@
}
},
{
- "id": 22812,
+ "id": 23297,
"properties": {
"facing": "north",
"half": "bottom",
@@ -60344,7 +64741,7 @@
}
},
{
- "id": 22813,
+ "id": 23298,
"properties": {
"facing": "north",
"half": "bottom",
@@ -60353,7 +64750,7 @@
}
},
{
- "id": 22814,
+ "id": 23299,
"properties": {
"facing": "north",
"half": "bottom",
@@ -60362,7 +64759,7 @@
}
},
{
- "id": 22815,
+ "id": 23300,
"properties": {
"facing": "north",
"half": "bottom",
@@ -60371,7 +64768,7 @@
}
},
{
- "id": 22816,
+ "id": 23301,
"properties": {
"facing": "north",
"half": "bottom",
@@ -60380,7 +64777,7 @@
}
},
{
- "id": 22817,
+ "id": 23302,
"properties": {
"facing": "north",
"half": "bottom",
@@ -60389,7 +64786,7 @@
}
},
{
- "id": 22818,
+ "id": 23303,
"properties": {
"facing": "north",
"half": "bottom",
@@ -60398,7 +64795,7 @@
}
},
{
- "id": 22819,
+ "id": 23304,
"properties": {
"facing": "south",
"half": "top",
@@ -60407,7 +64804,7 @@
}
},
{
- "id": 22820,
+ "id": 23305,
"properties": {
"facing": "south",
"half": "top",
@@ -60416,7 +64813,7 @@
}
},
{
- "id": 22821,
+ "id": 23306,
"properties": {
"facing": "south",
"half": "top",
@@ -60425,7 +64822,7 @@
}
},
{
- "id": 22822,
+ "id": 23307,
"properties": {
"facing": "south",
"half": "top",
@@ -60434,7 +64831,7 @@
}
},
{
- "id": 22823,
+ "id": 23308,
"properties": {
"facing": "south",
"half": "top",
@@ -60443,7 +64840,7 @@
}
},
{
- "id": 22824,
+ "id": 23309,
"properties": {
"facing": "south",
"half": "top",
@@ -60452,7 +64849,7 @@
}
},
{
- "id": 22825,
+ "id": 23310,
"properties": {
"facing": "south",
"half": "top",
@@ -60461,7 +64858,7 @@
}
},
{
- "id": 22826,
+ "id": 23311,
"properties": {
"facing": "south",
"half": "top",
@@ -60470,7 +64867,7 @@
}
},
{
- "id": 22827,
+ "id": 23312,
"properties": {
"facing": "south",
"half": "top",
@@ -60479,7 +64876,7 @@
}
},
{
- "id": 22828,
+ "id": 23313,
"properties": {
"facing": "south",
"half": "top",
@@ -60488,7 +64885,7 @@
}
},
{
- "id": 22829,
+ "id": 23314,
"properties": {
"facing": "south",
"half": "bottom",
@@ -60497,7 +64894,7 @@
}
},
{
- "id": 22830,
+ "id": 23315,
"properties": {
"facing": "south",
"half": "bottom",
@@ -60506,7 +64903,7 @@
}
},
{
- "id": 22831,
+ "id": 23316,
"properties": {
"facing": "south",
"half": "bottom",
@@ -60515,7 +64912,7 @@
}
},
{
- "id": 22832,
+ "id": 23317,
"properties": {
"facing": "south",
"half": "bottom",
@@ -60524,7 +64921,7 @@
}
},
{
- "id": 22833,
+ "id": 23318,
"properties": {
"facing": "south",
"half": "bottom",
@@ -60533,7 +64930,7 @@
}
},
{
- "id": 22834,
+ "id": 23319,
"properties": {
"facing": "south",
"half": "bottom",
@@ -60542,7 +64939,7 @@
}
},
{
- "id": 22835,
+ "id": 23320,
"properties": {
"facing": "south",
"half": "bottom",
@@ -60551,7 +64948,7 @@
}
},
{
- "id": 22836,
+ "id": 23321,
"properties": {
"facing": "south",
"half": "bottom",
@@ -60560,7 +64957,7 @@
}
},
{
- "id": 22837,
+ "id": 23322,
"properties": {
"facing": "south",
"half": "bottom",
@@ -60569,7 +64966,7 @@
}
},
{
- "id": 22838,
+ "id": 23323,
"properties": {
"facing": "south",
"half": "bottom",
@@ -60578,7 +64975,7 @@
}
},
{
- "id": 22839,
+ "id": 23324,
"properties": {
"facing": "west",
"half": "top",
@@ -60587,7 +64984,7 @@
}
},
{
- "id": 22840,
+ "id": 23325,
"properties": {
"facing": "west",
"half": "top",
@@ -60596,7 +64993,7 @@
}
},
{
- "id": 22841,
+ "id": 23326,
"properties": {
"facing": "west",
"half": "top",
@@ -60605,7 +65002,7 @@
}
},
{
- "id": 22842,
+ "id": 23327,
"properties": {
"facing": "west",
"half": "top",
@@ -60614,7 +65011,7 @@
}
},
{
- "id": 22843,
+ "id": 23328,
"properties": {
"facing": "west",
"half": "top",
@@ -60623,7 +65020,7 @@
}
},
{
- "id": 22844,
+ "id": 23329,
"properties": {
"facing": "west",
"half": "top",
@@ -60632,7 +65029,7 @@
}
},
{
- "id": 22845,
+ "id": 23330,
"properties": {
"facing": "west",
"half": "top",
@@ -60641,7 +65038,7 @@
}
},
{
- "id": 22846,
+ "id": 23331,
"properties": {
"facing": "west",
"half": "top",
@@ -60650,7 +65047,7 @@
}
},
{
- "id": 22847,
+ "id": 23332,
"properties": {
"facing": "west",
"half": "top",
@@ -60659,7 +65056,7 @@
}
},
{
- "id": 22848,
+ "id": 23333,
"properties": {
"facing": "west",
"half": "top",
@@ -60668,7 +65065,7 @@
}
},
{
- "id": 22849,
+ "id": 23334,
"properties": {
"facing": "west",
"half": "bottom",
@@ -60677,7 +65074,7 @@
}
},
{
- "id": 22850,
+ "id": 23335,
"properties": {
"facing": "west",
"half": "bottom",
@@ -60686,7 +65083,7 @@
}
},
{
- "id": 22851,
+ "id": 23336,
"properties": {
"facing": "west",
"half": "bottom",
@@ -60695,7 +65092,7 @@
}
},
{
- "id": 22852,
+ "id": 23337,
"properties": {
"facing": "west",
"half": "bottom",
@@ -60704,7 +65101,7 @@
}
},
{
- "id": 22853,
+ "id": 23338,
"properties": {
"facing": "west",
"half": "bottom",
@@ -60713,7 +65110,7 @@
}
},
{
- "id": 22854,
+ "id": 23339,
"properties": {
"facing": "west",
"half": "bottom",
@@ -60722,7 +65119,7 @@
}
},
{
- "id": 22855,
+ "id": 23340,
"properties": {
"facing": "west",
"half": "bottom",
@@ -60731,7 +65128,7 @@
}
},
{
- "id": 22856,
+ "id": 23341,
"properties": {
"facing": "west",
"half": "bottom",
@@ -60740,7 +65137,7 @@
}
},
{
- "id": 22857,
+ "id": 23342,
"properties": {
"facing": "west",
"half": "bottom",
@@ -60749,7 +65146,7 @@
}
},
{
- "id": 22858,
+ "id": 23343,
"properties": {
"facing": "west",
"half": "bottom",
@@ -60758,7 +65155,7 @@
}
},
{
- "id": 22859,
+ "id": 23344,
"properties": {
"facing": "east",
"half": "top",
@@ -60767,7 +65164,7 @@
}
},
{
- "id": 22860,
+ "id": 23345,
"properties": {
"facing": "east",
"half": "top",
@@ -60776,7 +65173,7 @@
}
},
{
- "id": 22861,
+ "id": 23346,
"properties": {
"facing": "east",
"half": "top",
@@ -60785,7 +65182,7 @@
}
},
{
- "id": 22862,
+ "id": 23347,
"properties": {
"facing": "east",
"half": "top",
@@ -60794,7 +65191,7 @@
}
},
{
- "id": 22863,
+ "id": 23348,
"properties": {
"facing": "east",
"half": "top",
@@ -60803,7 +65200,7 @@
}
},
{
- "id": 22864,
+ "id": 23349,
"properties": {
"facing": "east",
"half": "top",
@@ -60812,7 +65209,7 @@
}
},
{
- "id": 22865,
+ "id": 23350,
"properties": {
"facing": "east",
"half": "top",
@@ -60821,7 +65218,7 @@
}
},
{
- "id": 22866,
+ "id": 23351,
"properties": {
"facing": "east",
"half": "top",
@@ -60830,7 +65227,7 @@
}
},
{
- "id": 22867,
+ "id": 23352,
"properties": {
"facing": "east",
"half": "top",
@@ -60839,7 +65236,7 @@
}
},
{
- "id": 22868,
+ "id": 23353,
"properties": {
"facing": "east",
"half": "top",
@@ -60848,7 +65245,7 @@
}
},
{
- "id": 22869,
+ "id": 23354,
"properties": {
"facing": "east",
"half": "bottom",
@@ -60857,7 +65254,7 @@
}
},
{
- "id": 22870,
+ "id": 23355,
"properties": {
"facing": "east",
"half": "bottom",
@@ -60866,7 +65263,7 @@
}
},
{
- "id": 22871,
+ "id": 23356,
"properties": {
"facing": "east",
"half": "bottom",
@@ -60875,7 +65272,7 @@
}
},
{
- "id": 22872,
+ "id": 23357,
"properties": {
"facing": "east",
"half": "bottom",
@@ -60884,7 +65281,7 @@
}
},
{
- "id": 22873,
+ "id": 23358,
"properties": {
"facing": "east",
"half": "bottom",
@@ -60893,7 +65290,7 @@
}
},
{
- "id": 22874,
+ "id": 23359,
"properties": {
"facing": "east",
"half": "bottom",
@@ -60902,7 +65299,7 @@
}
},
{
- "id": 22875,
+ "id": 23360,
"properties": {
"facing": "east",
"half": "bottom",
@@ -60911,7 +65308,7 @@
}
},
{
- "id": 22876,
+ "id": 23361,
"properties": {
"facing": "east",
"half": "bottom",
@@ -60920,7 +65317,7 @@
}
},
{
- "id": 22877,
+ "id": 23362,
"properties": {
"facing": "east",
"half": "bottom",
@@ -60929,7 +65326,7 @@
}
},
{
- "id": 22878,
+ "id": 23363,
"properties": {
"facing": "east",
"half": "bottom",
@@ -60972,7 +65369,7 @@
},
"states": [
{
- "id": 22885,
+ "id": 23370,
"properties": {
"east": "none",
"north": "none",
@@ -60983,7 +65380,7 @@
}
},
{
- "id": 22886,
+ "id": 23371,
"properties": {
"east": "none",
"north": "none",
@@ -60994,7 +65391,7 @@
}
},
{
- "id": 22887,
+ "id": 23372,
"properties": {
"east": "none",
"north": "none",
@@ -61006,7 +65403,7 @@
},
{
"default": true,
- "id": 22888,
+ "id": 23373,
"properties": {
"east": "none",
"north": "none",
@@ -61017,7 +65414,7 @@
}
},
{
- "id": 22889,
+ "id": 23374,
"properties": {
"east": "none",
"north": "none",
@@ -61028,7 +65425,7 @@
}
},
{
- "id": 22890,
+ "id": 23375,
"properties": {
"east": "none",
"north": "none",
@@ -61039,7 +65436,7 @@
}
},
{
- "id": 22891,
+ "id": 23376,
"properties": {
"east": "none",
"north": "none",
@@ -61050,7 +65447,7 @@
}
},
{
- "id": 22892,
+ "id": 23377,
"properties": {
"east": "none",
"north": "none",
@@ -61061,7 +65458,7 @@
}
},
{
- "id": 22893,
+ "id": 23378,
"properties": {
"east": "none",
"north": "none",
@@ -61072,7 +65469,7 @@
}
},
{
- "id": 22894,
+ "id": 23379,
"properties": {
"east": "none",
"north": "none",
@@ -61083,7 +65480,7 @@
}
},
{
- "id": 22895,
+ "id": 23380,
"properties": {
"east": "none",
"north": "none",
@@ -61094,7 +65491,7 @@
}
},
{
- "id": 22896,
+ "id": 23381,
"properties": {
"east": "none",
"north": "none",
@@ -61105,7 +65502,7 @@
}
},
{
- "id": 22897,
+ "id": 23382,
"properties": {
"east": "none",
"north": "none",
@@ -61116,7 +65513,7 @@
}
},
{
- "id": 22898,
+ "id": 23383,
"properties": {
"east": "none",
"north": "none",
@@ -61127,7 +65524,7 @@
}
},
{
- "id": 22899,
+ "id": 23384,
"properties": {
"east": "none",
"north": "none",
@@ -61138,7 +65535,7 @@
}
},
{
- "id": 22900,
+ "id": 23385,
"properties": {
"east": "none",
"north": "none",
@@ -61149,7 +65546,7 @@
}
},
{
- "id": 22901,
+ "id": 23386,
"properties": {
"east": "none",
"north": "none",
@@ -61160,7 +65557,7 @@
}
},
{
- "id": 22902,
+ "id": 23387,
"properties": {
"east": "none",
"north": "none",
@@ -61171,7 +65568,7 @@
}
},
{
- "id": 22903,
+ "id": 23388,
"properties": {
"east": "none",
"north": "none",
@@ -61182,7 +65579,7 @@
}
},
{
- "id": 22904,
+ "id": 23389,
"properties": {
"east": "none",
"north": "none",
@@ -61193,7 +65590,7 @@
}
},
{
- "id": 22905,
+ "id": 23390,
"properties": {
"east": "none",
"north": "none",
@@ -61204,7 +65601,7 @@
}
},
{
- "id": 22906,
+ "id": 23391,
"properties": {
"east": "none",
"north": "none",
@@ -61215,7 +65612,7 @@
}
},
{
- "id": 22907,
+ "id": 23392,
"properties": {
"east": "none",
"north": "none",
@@ -61226,7 +65623,7 @@
}
},
{
- "id": 22908,
+ "id": 23393,
"properties": {
"east": "none",
"north": "none",
@@ -61237,7 +65634,7 @@
}
},
{
- "id": 22909,
+ "id": 23394,
"properties": {
"east": "none",
"north": "none",
@@ -61248,7 +65645,7 @@
}
},
{
- "id": 22910,
+ "id": 23395,
"properties": {
"east": "none",
"north": "none",
@@ -61259,7 +65656,7 @@
}
},
{
- "id": 22911,
+ "id": 23396,
"properties": {
"east": "none",
"north": "none",
@@ -61270,7 +65667,7 @@
}
},
{
- "id": 22912,
+ "id": 23397,
"properties": {
"east": "none",
"north": "none",
@@ -61281,7 +65678,7 @@
}
},
{
- "id": 22913,
+ "id": 23398,
"properties": {
"east": "none",
"north": "none",
@@ -61292,7 +65689,7 @@
}
},
{
- "id": 22914,
+ "id": 23399,
"properties": {
"east": "none",
"north": "none",
@@ -61303,7 +65700,7 @@
}
},
{
- "id": 22915,
+ "id": 23400,
"properties": {
"east": "none",
"north": "none",
@@ -61314,7 +65711,7 @@
}
},
{
- "id": 22916,
+ "id": 23401,
"properties": {
"east": "none",
"north": "none",
@@ -61325,7 +65722,7 @@
}
},
{
- "id": 22917,
+ "id": 23402,
"properties": {
"east": "none",
"north": "none",
@@ -61336,7 +65733,7 @@
}
},
{
- "id": 22918,
+ "id": 23403,
"properties": {
"east": "none",
"north": "none",
@@ -61347,7 +65744,7 @@
}
},
{
- "id": 22919,
+ "id": 23404,
"properties": {
"east": "none",
"north": "none",
@@ -61358,7 +65755,7 @@
}
},
{
- "id": 22920,
+ "id": 23405,
"properties": {
"east": "none",
"north": "none",
@@ -61369,7 +65766,7 @@
}
},
{
- "id": 22921,
+ "id": 23406,
"properties": {
"east": "none",
"north": "low",
@@ -61380,7 +65777,7 @@
}
},
{
- "id": 22922,
+ "id": 23407,
"properties": {
"east": "none",
"north": "low",
@@ -61391,7 +65788,7 @@
}
},
{
- "id": 22923,
+ "id": 23408,
"properties": {
"east": "none",
"north": "low",
@@ -61402,7 +65799,7 @@
}
},
{
- "id": 22924,
+ "id": 23409,
"properties": {
"east": "none",
"north": "low",
@@ -61413,7 +65810,7 @@
}
},
{
- "id": 22925,
+ "id": 23410,
"properties": {
"east": "none",
"north": "low",
@@ -61424,7 +65821,7 @@
}
},
{
- "id": 22926,
+ "id": 23411,
"properties": {
"east": "none",
"north": "low",
@@ -61435,7 +65832,7 @@
}
},
{
- "id": 22927,
+ "id": 23412,
"properties": {
"east": "none",
"north": "low",
@@ -61446,7 +65843,7 @@
}
},
{
- "id": 22928,
+ "id": 23413,
"properties": {
"east": "none",
"north": "low",
@@ -61457,7 +65854,7 @@
}
},
{
- "id": 22929,
+ "id": 23414,
"properties": {
"east": "none",
"north": "low",
@@ -61468,7 +65865,7 @@
}
},
{
- "id": 22930,
+ "id": 23415,
"properties": {
"east": "none",
"north": "low",
@@ -61479,7 +65876,7 @@
}
},
{
- "id": 22931,
+ "id": 23416,
"properties": {
"east": "none",
"north": "low",
@@ -61490,7 +65887,7 @@
}
},
{
- "id": 22932,
+ "id": 23417,
"properties": {
"east": "none",
"north": "low",
@@ -61501,7 +65898,7 @@
}
},
{
- "id": 22933,
+ "id": 23418,
"properties": {
"east": "none",
"north": "low",
@@ -61512,7 +65909,7 @@
}
},
{
- "id": 22934,
+ "id": 23419,
"properties": {
"east": "none",
"north": "low",
@@ -61523,7 +65920,7 @@
}
},
{
- "id": 22935,
+ "id": 23420,
"properties": {
"east": "none",
"north": "low",
@@ -61534,7 +65931,7 @@
}
},
{
- "id": 22936,
+ "id": 23421,
"properties": {
"east": "none",
"north": "low",
@@ -61545,7 +65942,7 @@
}
},
{
- "id": 22937,
+ "id": 23422,
"properties": {
"east": "none",
"north": "low",
@@ -61556,7 +65953,7 @@
}
},
{
- "id": 22938,
+ "id": 23423,
"properties": {
"east": "none",
"north": "low",
@@ -61567,7 +65964,7 @@
}
},
{
- "id": 22939,
+ "id": 23424,
"properties": {
"east": "none",
"north": "low",
@@ -61578,7 +65975,7 @@
}
},
{
- "id": 22940,
+ "id": 23425,
"properties": {
"east": "none",
"north": "low",
@@ -61589,7 +65986,7 @@
}
},
{
- "id": 22941,
+ "id": 23426,
"properties": {
"east": "none",
"north": "low",
@@ -61600,7 +65997,7 @@
}
},
{
- "id": 22942,
+ "id": 23427,
"properties": {
"east": "none",
"north": "low",
@@ -61611,7 +66008,7 @@
}
},
{
- "id": 22943,
+ "id": 23428,
"properties": {
"east": "none",
"north": "low",
@@ -61622,7 +66019,7 @@
}
},
{
- "id": 22944,
+ "id": 23429,
"properties": {
"east": "none",
"north": "low",
@@ -61633,7 +66030,7 @@
}
},
{
- "id": 22945,
+ "id": 23430,
"properties": {
"east": "none",
"north": "low",
@@ -61644,7 +66041,7 @@
}
},
{
- "id": 22946,
+ "id": 23431,
"properties": {
"east": "none",
"north": "low",
@@ -61655,7 +66052,7 @@
}
},
{
- "id": 22947,
+ "id": 23432,
"properties": {
"east": "none",
"north": "low",
@@ -61666,7 +66063,7 @@
}
},
{
- "id": 22948,
+ "id": 23433,
"properties": {
"east": "none",
"north": "low",
@@ -61677,7 +66074,7 @@
}
},
{
- "id": 22949,
+ "id": 23434,
"properties": {
"east": "none",
"north": "low",
@@ -61688,7 +66085,7 @@
}
},
{
- "id": 22950,
+ "id": 23435,
"properties": {
"east": "none",
"north": "low",
@@ -61699,7 +66096,7 @@
}
},
{
- "id": 22951,
+ "id": 23436,
"properties": {
"east": "none",
"north": "low",
@@ -61710,7 +66107,7 @@
}
},
{
- "id": 22952,
+ "id": 23437,
"properties": {
"east": "none",
"north": "low",
@@ -61721,7 +66118,7 @@
}
},
{
- "id": 22953,
+ "id": 23438,
"properties": {
"east": "none",
"north": "low",
@@ -61732,7 +66129,7 @@
}
},
{
- "id": 22954,
+ "id": 23439,
"properties": {
"east": "none",
"north": "low",
@@ -61743,7 +66140,7 @@
}
},
{
- "id": 22955,
+ "id": 23440,
"properties": {
"east": "none",
"north": "low",
@@ -61754,7 +66151,7 @@
}
},
{
- "id": 22956,
+ "id": 23441,
"properties": {
"east": "none",
"north": "low",
@@ -61765,7 +66162,7 @@
}
},
{
- "id": 22957,
+ "id": 23442,
"properties": {
"east": "none",
"north": "tall",
@@ -61776,7 +66173,7 @@
}
},
{
- "id": 22958,
+ "id": 23443,
"properties": {
"east": "none",
"north": "tall",
@@ -61787,7 +66184,7 @@
}
},
{
- "id": 22959,
+ "id": 23444,
"properties": {
"east": "none",
"north": "tall",
@@ -61798,7 +66195,7 @@
}
},
{
- "id": 22960,
+ "id": 23445,
"properties": {
"east": "none",
"north": "tall",
@@ -61809,7 +66206,7 @@
}
},
{
- "id": 22961,
+ "id": 23446,
"properties": {
"east": "none",
"north": "tall",
@@ -61820,7 +66217,7 @@
}
},
{
- "id": 22962,
+ "id": 23447,
"properties": {
"east": "none",
"north": "tall",
@@ -61831,7 +66228,7 @@
}
},
{
- "id": 22963,
+ "id": 23448,
"properties": {
"east": "none",
"north": "tall",
@@ -61842,7 +66239,7 @@
}
},
{
- "id": 22964,
+ "id": 23449,
"properties": {
"east": "none",
"north": "tall",
@@ -61853,7 +66250,7 @@
}
},
{
- "id": 22965,
+ "id": 23450,
"properties": {
"east": "none",
"north": "tall",
@@ -61864,7 +66261,7 @@
}
},
{
- "id": 22966,
+ "id": 23451,
"properties": {
"east": "none",
"north": "tall",
@@ -61875,7 +66272,7 @@
}
},
{
- "id": 22967,
+ "id": 23452,
"properties": {
"east": "none",
"north": "tall",
@@ -61886,7 +66283,7 @@
}
},
{
- "id": 22968,
+ "id": 23453,
"properties": {
"east": "none",
"north": "tall",
@@ -61897,7 +66294,7 @@
}
},
{
- "id": 22969,
+ "id": 23454,
"properties": {
"east": "none",
"north": "tall",
@@ -61908,7 +66305,7 @@
}
},
{
- "id": 22970,
+ "id": 23455,
"properties": {
"east": "none",
"north": "tall",
@@ -61919,7 +66316,7 @@
}
},
{
- "id": 22971,
+ "id": 23456,
"properties": {
"east": "none",
"north": "tall",
@@ -61930,7 +66327,7 @@
}
},
{
- "id": 22972,
+ "id": 23457,
"properties": {
"east": "none",
"north": "tall",
@@ -61941,7 +66338,7 @@
}
},
{
- "id": 22973,
+ "id": 23458,
"properties": {
"east": "none",
"north": "tall",
@@ -61952,7 +66349,7 @@
}
},
{
- "id": 22974,
+ "id": 23459,
"properties": {
"east": "none",
"north": "tall",
@@ -61963,7 +66360,7 @@
}
},
{
- "id": 22975,
+ "id": 23460,
"properties": {
"east": "none",
"north": "tall",
@@ -61974,7 +66371,7 @@
}
},
{
- "id": 22976,
+ "id": 23461,
"properties": {
"east": "none",
"north": "tall",
@@ -61985,7 +66382,7 @@
}
},
{
- "id": 22977,
+ "id": 23462,
"properties": {
"east": "none",
"north": "tall",
@@ -61996,7 +66393,7 @@
}
},
{
- "id": 22978,
+ "id": 23463,
"properties": {
"east": "none",
"north": "tall",
@@ -62007,7 +66404,7 @@
}
},
{
- "id": 22979,
+ "id": 23464,
"properties": {
"east": "none",
"north": "tall",
@@ -62018,7 +66415,7 @@
}
},
{
- "id": 22980,
+ "id": 23465,
"properties": {
"east": "none",
"north": "tall",
@@ -62029,7 +66426,7 @@
}
},
{
- "id": 22981,
+ "id": 23466,
"properties": {
"east": "none",
"north": "tall",
@@ -62040,7 +66437,7 @@
}
},
{
- "id": 22982,
+ "id": 23467,
"properties": {
"east": "none",
"north": "tall",
@@ -62051,7 +66448,7 @@
}
},
{
- "id": 22983,
+ "id": 23468,
"properties": {
"east": "none",
"north": "tall",
@@ -62062,7 +66459,7 @@
}
},
{
- "id": 22984,
+ "id": 23469,
"properties": {
"east": "none",
"north": "tall",
@@ -62073,7 +66470,7 @@
}
},
{
- "id": 22985,
+ "id": 23470,
"properties": {
"east": "none",
"north": "tall",
@@ -62084,7 +66481,7 @@
}
},
{
- "id": 22986,
+ "id": 23471,
"properties": {
"east": "none",
"north": "tall",
@@ -62095,7 +66492,7 @@
}
},
{
- "id": 22987,
+ "id": 23472,
"properties": {
"east": "none",
"north": "tall",
@@ -62106,7 +66503,7 @@
}
},
{
- "id": 22988,
+ "id": 23473,
"properties": {
"east": "none",
"north": "tall",
@@ -62117,7 +66514,7 @@
}
},
{
- "id": 22989,
+ "id": 23474,
"properties": {
"east": "none",
"north": "tall",
@@ -62128,7 +66525,7 @@
}
},
{
- "id": 22990,
+ "id": 23475,
"properties": {
"east": "none",
"north": "tall",
@@ -62139,7 +66536,7 @@
}
},
{
- "id": 22991,
+ "id": 23476,
"properties": {
"east": "none",
"north": "tall",
@@ -62150,7 +66547,7 @@
}
},
{
- "id": 22992,
+ "id": 23477,
"properties": {
"east": "none",
"north": "tall",
@@ -62161,7 +66558,7 @@
}
},
{
- "id": 22993,
+ "id": 23478,
"properties": {
"east": "low",
"north": "none",
@@ -62172,7 +66569,7 @@
}
},
{
- "id": 22994,
+ "id": 23479,
"properties": {
"east": "low",
"north": "none",
@@ -62183,7 +66580,7 @@
}
},
{
- "id": 22995,
+ "id": 23480,
"properties": {
"east": "low",
"north": "none",
@@ -62194,7 +66591,7 @@
}
},
{
- "id": 22996,
+ "id": 23481,
"properties": {
"east": "low",
"north": "none",
@@ -62205,7 +66602,7 @@
}
},
{
- "id": 22997,
+ "id": 23482,
"properties": {
"east": "low",
"north": "none",
@@ -62216,7 +66613,7 @@
}
},
{
- "id": 22998,
+ "id": 23483,
"properties": {
"east": "low",
"north": "none",
@@ -62227,7 +66624,7 @@
}
},
{
- "id": 22999,
+ "id": 23484,
"properties": {
"east": "low",
"north": "none",
@@ -62238,7 +66635,7 @@
}
},
{
- "id": 23000,
+ "id": 23485,
"properties": {
"east": "low",
"north": "none",
@@ -62249,7 +66646,7 @@
}
},
{
- "id": 23001,
+ "id": 23486,
"properties": {
"east": "low",
"north": "none",
@@ -62260,7 +66657,7 @@
}
},
{
- "id": 23002,
+ "id": 23487,
"properties": {
"east": "low",
"north": "none",
@@ -62271,7 +66668,7 @@
}
},
{
- "id": 23003,
+ "id": 23488,
"properties": {
"east": "low",
"north": "none",
@@ -62282,7 +66679,7 @@
}
},
{
- "id": 23004,
+ "id": 23489,
"properties": {
"east": "low",
"north": "none",
@@ -62293,7 +66690,7 @@
}
},
{
- "id": 23005,
+ "id": 23490,
"properties": {
"east": "low",
"north": "none",
@@ -62304,7 +66701,7 @@
}
},
{
- "id": 23006,
+ "id": 23491,
"properties": {
"east": "low",
"north": "none",
@@ -62315,7 +66712,7 @@
}
},
{
- "id": 23007,
+ "id": 23492,
"properties": {
"east": "low",
"north": "none",
@@ -62326,7 +66723,7 @@
}
},
{
- "id": 23008,
+ "id": 23493,
"properties": {
"east": "low",
"north": "none",
@@ -62337,7 +66734,7 @@
}
},
{
- "id": 23009,
+ "id": 23494,
"properties": {
"east": "low",
"north": "none",
@@ -62348,7 +66745,7 @@
}
},
{
- "id": 23010,
+ "id": 23495,
"properties": {
"east": "low",
"north": "none",
@@ -62359,7 +66756,7 @@
}
},
{
- "id": 23011,
+ "id": 23496,
"properties": {
"east": "low",
"north": "none",
@@ -62370,7 +66767,7 @@
}
},
{
- "id": 23012,
+ "id": 23497,
"properties": {
"east": "low",
"north": "none",
@@ -62381,7 +66778,7 @@
}
},
{
- "id": 23013,
+ "id": 23498,
"properties": {
"east": "low",
"north": "none",
@@ -62392,7 +66789,7 @@
}
},
{
- "id": 23014,
+ "id": 23499,
"properties": {
"east": "low",
"north": "none",
@@ -62403,7 +66800,7 @@
}
},
{
- "id": 23015,
+ "id": 23500,
"properties": {
"east": "low",
"north": "none",
@@ -62414,7 +66811,7 @@
}
},
{
- "id": 23016,
+ "id": 23501,
"properties": {
"east": "low",
"north": "none",
@@ -62425,7 +66822,7 @@
}
},
{
- "id": 23017,
+ "id": 23502,
"properties": {
"east": "low",
"north": "none",
@@ -62436,7 +66833,7 @@
}
},
{
- "id": 23018,
+ "id": 23503,
"properties": {
"east": "low",
"north": "none",
@@ -62447,7 +66844,7 @@
}
},
{
- "id": 23019,
+ "id": 23504,
"properties": {
"east": "low",
"north": "none",
@@ -62458,7 +66855,7 @@
}
},
{
- "id": 23020,
+ "id": 23505,
"properties": {
"east": "low",
"north": "none",
@@ -62469,7 +66866,7 @@
}
},
{
- "id": 23021,
+ "id": 23506,
"properties": {
"east": "low",
"north": "none",
@@ -62480,7 +66877,7 @@
}
},
{
- "id": 23022,
+ "id": 23507,
"properties": {
"east": "low",
"north": "none",
@@ -62491,7 +66888,7 @@
}
},
{
- "id": 23023,
+ "id": 23508,
"properties": {
"east": "low",
"north": "none",
@@ -62502,7 +66899,7 @@
}
},
{
- "id": 23024,
+ "id": 23509,
"properties": {
"east": "low",
"north": "none",
@@ -62513,7 +66910,7 @@
}
},
{
- "id": 23025,
+ "id": 23510,
"properties": {
"east": "low",
"north": "none",
@@ -62524,7 +66921,7 @@
}
},
{
- "id": 23026,
+ "id": 23511,
"properties": {
"east": "low",
"north": "none",
@@ -62535,7 +66932,7 @@
}
},
{
- "id": 23027,
+ "id": 23512,
"properties": {
"east": "low",
"north": "none",
@@ -62546,7 +66943,7 @@
}
},
{
- "id": 23028,
+ "id": 23513,
"properties": {
"east": "low",
"north": "none",
@@ -62557,7 +66954,7 @@
}
},
{
- "id": 23029,
+ "id": 23514,
"properties": {
"east": "low",
"north": "low",
@@ -62568,7 +66965,7 @@
}
},
{
- "id": 23030,
+ "id": 23515,
"properties": {
"east": "low",
"north": "low",
@@ -62579,7 +66976,7 @@
}
},
{
- "id": 23031,
+ "id": 23516,
"properties": {
"east": "low",
"north": "low",
@@ -62590,7 +66987,7 @@
}
},
{
- "id": 23032,
+ "id": 23517,
"properties": {
"east": "low",
"north": "low",
@@ -62601,7 +66998,7 @@
}
},
{
- "id": 23033,
+ "id": 23518,
"properties": {
"east": "low",
"north": "low",
@@ -62612,7 +67009,7 @@
}
},
{
- "id": 23034,
+ "id": 23519,
"properties": {
"east": "low",
"north": "low",
@@ -62623,7 +67020,7 @@
}
},
{
- "id": 23035,
+ "id": 23520,
"properties": {
"east": "low",
"north": "low",
@@ -62634,7 +67031,7 @@
}
},
{
- "id": 23036,
+ "id": 23521,
"properties": {
"east": "low",
"north": "low",
@@ -62645,7 +67042,7 @@
}
},
{
- "id": 23037,
+ "id": 23522,
"properties": {
"east": "low",
"north": "low",
@@ -62656,7 +67053,7 @@
}
},
{
- "id": 23038,
+ "id": 23523,
"properties": {
"east": "low",
"north": "low",
@@ -62667,7 +67064,7 @@
}
},
{
- "id": 23039,
+ "id": 23524,
"properties": {
"east": "low",
"north": "low",
@@ -62678,7 +67075,7 @@
}
},
{
- "id": 23040,
+ "id": 23525,
"properties": {
"east": "low",
"north": "low",
@@ -62689,7 +67086,7 @@
}
},
{
- "id": 23041,
+ "id": 23526,
"properties": {
"east": "low",
"north": "low",
@@ -62700,7 +67097,7 @@
}
},
{
- "id": 23042,
+ "id": 23527,
"properties": {
"east": "low",
"north": "low",
@@ -62711,7 +67108,7 @@
}
},
{
- "id": 23043,
+ "id": 23528,
"properties": {
"east": "low",
"north": "low",
@@ -62722,7 +67119,7 @@
}
},
{
- "id": 23044,
+ "id": 23529,
"properties": {
"east": "low",
"north": "low",
@@ -62733,7 +67130,7 @@
}
},
{
- "id": 23045,
+ "id": 23530,
"properties": {
"east": "low",
"north": "low",
@@ -62744,7 +67141,7 @@
}
},
{
- "id": 23046,
+ "id": 23531,
"properties": {
"east": "low",
"north": "low",
@@ -62755,7 +67152,7 @@
}
},
{
- "id": 23047,
+ "id": 23532,
"properties": {
"east": "low",
"north": "low",
@@ -62766,7 +67163,7 @@
}
},
{
- "id": 23048,
+ "id": 23533,
"properties": {
"east": "low",
"north": "low",
@@ -62777,7 +67174,7 @@
}
},
{
- "id": 23049,
+ "id": 23534,
"properties": {
"east": "low",
"north": "low",
@@ -62788,7 +67185,7 @@
}
},
{
- "id": 23050,
+ "id": 23535,
"properties": {
"east": "low",
"north": "low",
@@ -62799,7 +67196,7 @@
}
},
{
- "id": 23051,
+ "id": 23536,
"properties": {
"east": "low",
"north": "low",
@@ -62810,7 +67207,7 @@
}
},
{
- "id": 23052,
+ "id": 23537,
"properties": {
"east": "low",
"north": "low",
@@ -62821,7 +67218,7 @@
}
},
{
- "id": 23053,
+ "id": 23538,
"properties": {
"east": "low",
"north": "low",
@@ -62832,7 +67229,7 @@
}
},
{
- "id": 23054,
+ "id": 23539,
"properties": {
"east": "low",
"north": "low",
@@ -62843,7 +67240,7 @@
}
},
{
- "id": 23055,
+ "id": 23540,
"properties": {
"east": "low",
"north": "low",
@@ -62854,7 +67251,7 @@
}
},
{
- "id": 23056,
+ "id": 23541,
"properties": {
"east": "low",
"north": "low",
@@ -62865,7 +67262,7 @@
}
},
{
- "id": 23057,
+ "id": 23542,
"properties": {
"east": "low",
"north": "low",
@@ -62876,7 +67273,7 @@
}
},
{
- "id": 23058,
+ "id": 23543,
"properties": {
"east": "low",
"north": "low",
@@ -62887,7 +67284,7 @@
}
},
{
- "id": 23059,
+ "id": 23544,
"properties": {
"east": "low",
"north": "low",
@@ -62898,7 +67295,7 @@
}
},
{
- "id": 23060,
+ "id": 23545,
"properties": {
"east": "low",
"north": "low",
@@ -62909,7 +67306,7 @@
}
},
{
- "id": 23061,
+ "id": 23546,
"properties": {
"east": "low",
"north": "low",
@@ -62920,7 +67317,7 @@
}
},
{
- "id": 23062,
+ "id": 23547,
"properties": {
"east": "low",
"north": "low",
@@ -62931,7 +67328,7 @@
}
},
{
- "id": 23063,
+ "id": 23548,
"properties": {
"east": "low",
"north": "low",
@@ -62942,7 +67339,7 @@
}
},
{
- "id": 23064,
+ "id": 23549,
"properties": {
"east": "low",
"north": "low",
@@ -62953,7 +67350,7 @@
}
},
{
- "id": 23065,
+ "id": 23550,
"properties": {
"east": "low",
"north": "tall",
@@ -62964,7 +67361,7 @@
}
},
{
- "id": 23066,
+ "id": 23551,
"properties": {
"east": "low",
"north": "tall",
@@ -62975,7 +67372,7 @@
}
},
{
- "id": 23067,
+ "id": 23552,
"properties": {
"east": "low",
"north": "tall",
@@ -62986,7 +67383,7 @@
}
},
{
- "id": 23068,
+ "id": 23553,
"properties": {
"east": "low",
"north": "tall",
@@ -62997,7 +67394,7 @@
}
},
{
- "id": 23069,
+ "id": 23554,
"properties": {
"east": "low",
"north": "tall",
@@ -63008,7 +67405,7 @@
}
},
{
- "id": 23070,
+ "id": 23555,
"properties": {
"east": "low",
"north": "tall",
@@ -63019,7 +67416,7 @@
}
},
{
- "id": 23071,
+ "id": 23556,
"properties": {
"east": "low",
"north": "tall",
@@ -63030,7 +67427,7 @@
}
},
{
- "id": 23072,
+ "id": 23557,
"properties": {
"east": "low",
"north": "tall",
@@ -63041,7 +67438,7 @@
}
},
{
- "id": 23073,
+ "id": 23558,
"properties": {
"east": "low",
"north": "tall",
@@ -63052,7 +67449,7 @@
}
},
{
- "id": 23074,
+ "id": 23559,
"properties": {
"east": "low",
"north": "tall",
@@ -63063,7 +67460,7 @@
}
},
{
- "id": 23075,
+ "id": 23560,
"properties": {
"east": "low",
"north": "tall",
@@ -63074,7 +67471,7 @@
}
},
{
- "id": 23076,
+ "id": 23561,
"properties": {
"east": "low",
"north": "tall",
@@ -63085,7 +67482,7 @@
}
},
{
- "id": 23077,
+ "id": 23562,
"properties": {
"east": "low",
"north": "tall",
@@ -63096,7 +67493,7 @@
}
},
{
- "id": 23078,
+ "id": 23563,
"properties": {
"east": "low",
"north": "tall",
@@ -63107,7 +67504,7 @@
}
},
{
- "id": 23079,
+ "id": 23564,
"properties": {
"east": "low",
"north": "tall",
@@ -63118,7 +67515,7 @@
}
},
{
- "id": 23080,
+ "id": 23565,
"properties": {
"east": "low",
"north": "tall",
@@ -63129,7 +67526,7 @@
}
},
{
- "id": 23081,
+ "id": 23566,
"properties": {
"east": "low",
"north": "tall",
@@ -63140,7 +67537,7 @@
}
},
{
- "id": 23082,
+ "id": 23567,
"properties": {
"east": "low",
"north": "tall",
@@ -63151,7 +67548,7 @@
}
},
{
- "id": 23083,
+ "id": 23568,
"properties": {
"east": "low",
"north": "tall",
@@ -63162,7 +67559,7 @@
}
},
{
- "id": 23084,
+ "id": 23569,
"properties": {
"east": "low",
"north": "tall",
@@ -63173,7 +67570,7 @@
}
},
{
- "id": 23085,
+ "id": 23570,
"properties": {
"east": "low",
"north": "tall",
@@ -63184,7 +67581,7 @@
}
},
{
- "id": 23086,
+ "id": 23571,
"properties": {
"east": "low",
"north": "tall",
@@ -63195,7 +67592,7 @@
}
},
{
- "id": 23087,
+ "id": 23572,
"properties": {
"east": "low",
"north": "tall",
@@ -63206,7 +67603,7 @@
}
},
{
- "id": 23088,
+ "id": 23573,
"properties": {
"east": "low",
"north": "tall",
@@ -63217,7 +67614,7 @@
}
},
{
- "id": 23089,
+ "id": 23574,
"properties": {
"east": "low",
"north": "tall",
@@ -63228,7 +67625,7 @@
}
},
{
- "id": 23090,
+ "id": 23575,
"properties": {
"east": "low",
"north": "tall",
@@ -63239,7 +67636,7 @@
}
},
{
- "id": 23091,
+ "id": 23576,
"properties": {
"east": "low",
"north": "tall",
@@ -63250,7 +67647,7 @@
}
},
{
- "id": 23092,
+ "id": 23577,
"properties": {
"east": "low",
"north": "tall",
@@ -63261,7 +67658,7 @@
}
},
{
- "id": 23093,
+ "id": 23578,
"properties": {
"east": "low",
"north": "tall",
@@ -63272,7 +67669,7 @@
}
},
{
- "id": 23094,
+ "id": 23579,
"properties": {
"east": "low",
"north": "tall",
@@ -63283,7 +67680,7 @@
}
},
{
- "id": 23095,
+ "id": 23580,
"properties": {
"east": "low",
"north": "tall",
@@ -63294,7 +67691,7 @@
}
},
{
- "id": 23096,
+ "id": 23581,
"properties": {
"east": "low",
"north": "tall",
@@ -63305,7 +67702,7 @@
}
},
{
- "id": 23097,
+ "id": 23582,
"properties": {
"east": "low",
"north": "tall",
@@ -63316,7 +67713,7 @@
}
},
{
- "id": 23098,
+ "id": 23583,
"properties": {
"east": "low",
"north": "tall",
@@ -63327,7 +67724,7 @@
}
},
{
- "id": 23099,
+ "id": 23584,
"properties": {
"east": "low",
"north": "tall",
@@ -63338,7 +67735,7 @@
}
},
{
- "id": 23100,
+ "id": 23585,
"properties": {
"east": "low",
"north": "tall",
@@ -63349,7 +67746,7 @@
}
},
{
- "id": 23101,
+ "id": 23586,
"properties": {
"east": "tall",
"north": "none",
@@ -63360,7 +67757,7 @@
}
},
{
- "id": 23102,
+ "id": 23587,
"properties": {
"east": "tall",
"north": "none",
@@ -63371,7 +67768,7 @@
}
},
{
- "id": 23103,
+ "id": 23588,
"properties": {
"east": "tall",
"north": "none",
@@ -63382,7 +67779,7 @@
}
},
{
- "id": 23104,
+ "id": 23589,
"properties": {
"east": "tall",
"north": "none",
@@ -63393,7 +67790,7 @@
}
},
{
- "id": 23105,
+ "id": 23590,
"properties": {
"east": "tall",
"north": "none",
@@ -63404,7 +67801,7 @@
}
},
{
- "id": 23106,
+ "id": 23591,
"properties": {
"east": "tall",
"north": "none",
@@ -63415,7 +67812,7 @@
}
},
{
- "id": 23107,
+ "id": 23592,
"properties": {
"east": "tall",
"north": "none",
@@ -63426,7 +67823,7 @@
}
},
{
- "id": 23108,
+ "id": 23593,
"properties": {
"east": "tall",
"north": "none",
@@ -63437,7 +67834,7 @@
}
},
{
- "id": 23109,
+ "id": 23594,
"properties": {
"east": "tall",
"north": "none",
@@ -63448,7 +67845,7 @@
}
},
{
- "id": 23110,
+ "id": 23595,
"properties": {
"east": "tall",
"north": "none",
@@ -63459,7 +67856,7 @@
}
},
{
- "id": 23111,
+ "id": 23596,
"properties": {
"east": "tall",
"north": "none",
@@ -63470,7 +67867,7 @@
}
},
{
- "id": 23112,
+ "id": 23597,
"properties": {
"east": "tall",
"north": "none",
@@ -63481,7 +67878,7 @@
}
},
{
- "id": 23113,
+ "id": 23598,
"properties": {
"east": "tall",
"north": "none",
@@ -63492,7 +67889,7 @@
}
},
{
- "id": 23114,
+ "id": 23599,
"properties": {
"east": "tall",
"north": "none",
@@ -63503,7 +67900,7 @@
}
},
{
- "id": 23115,
+ "id": 23600,
"properties": {
"east": "tall",
"north": "none",
@@ -63514,7 +67911,7 @@
}
},
{
- "id": 23116,
+ "id": 23601,
"properties": {
"east": "tall",
"north": "none",
@@ -63525,7 +67922,7 @@
}
},
{
- "id": 23117,
+ "id": 23602,
"properties": {
"east": "tall",
"north": "none",
@@ -63536,7 +67933,7 @@
}
},
{
- "id": 23118,
+ "id": 23603,
"properties": {
"east": "tall",
"north": "none",
@@ -63547,7 +67944,7 @@
}
},
{
- "id": 23119,
+ "id": 23604,
"properties": {
"east": "tall",
"north": "none",
@@ -63558,7 +67955,7 @@
}
},
{
- "id": 23120,
+ "id": 23605,
"properties": {
"east": "tall",
"north": "none",
@@ -63569,7 +67966,7 @@
}
},
{
- "id": 23121,
+ "id": 23606,
"properties": {
"east": "tall",
"north": "none",
@@ -63580,7 +67977,7 @@
}
},
{
- "id": 23122,
+ "id": 23607,
"properties": {
"east": "tall",
"north": "none",
@@ -63591,7 +67988,7 @@
}
},
{
- "id": 23123,
+ "id": 23608,
"properties": {
"east": "tall",
"north": "none",
@@ -63602,7 +67999,7 @@
}
},
{
- "id": 23124,
+ "id": 23609,
"properties": {
"east": "tall",
"north": "none",
@@ -63613,7 +68010,7 @@
}
},
{
- "id": 23125,
+ "id": 23610,
"properties": {
"east": "tall",
"north": "none",
@@ -63624,7 +68021,7 @@
}
},
{
- "id": 23126,
+ "id": 23611,
"properties": {
"east": "tall",
"north": "none",
@@ -63635,7 +68032,7 @@
}
},
{
- "id": 23127,
+ "id": 23612,
"properties": {
"east": "tall",
"north": "none",
@@ -63646,7 +68043,7 @@
}
},
{
- "id": 23128,
+ "id": 23613,
"properties": {
"east": "tall",
"north": "none",
@@ -63657,7 +68054,7 @@
}
},
{
- "id": 23129,
+ "id": 23614,
"properties": {
"east": "tall",
"north": "none",
@@ -63668,7 +68065,7 @@
}
},
{
- "id": 23130,
+ "id": 23615,
"properties": {
"east": "tall",
"north": "none",
@@ -63679,7 +68076,7 @@
}
},
{
- "id": 23131,
+ "id": 23616,
"properties": {
"east": "tall",
"north": "none",
@@ -63690,7 +68087,7 @@
}
},
{
- "id": 23132,
+ "id": 23617,
"properties": {
"east": "tall",
"north": "none",
@@ -63701,7 +68098,7 @@
}
},
{
- "id": 23133,
+ "id": 23618,
"properties": {
"east": "tall",
"north": "none",
@@ -63712,7 +68109,7 @@
}
},
{
- "id": 23134,
+ "id": 23619,
"properties": {
"east": "tall",
"north": "none",
@@ -63723,7 +68120,7 @@
}
},
{
- "id": 23135,
+ "id": 23620,
"properties": {
"east": "tall",
"north": "none",
@@ -63734,7 +68131,7 @@
}
},
{
- "id": 23136,
+ "id": 23621,
"properties": {
"east": "tall",
"north": "none",
@@ -63745,7 +68142,7 @@
}
},
{
- "id": 23137,
+ "id": 23622,
"properties": {
"east": "tall",
"north": "low",
@@ -63756,7 +68153,7 @@
}
},
{
- "id": 23138,
+ "id": 23623,
"properties": {
"east": "tall",
"north": "low",
@@ -63767,7 +68164,7 @@
}
},
{
- "id": 23139,
+ "id": 23624,
"properties": {
"east": "tall",
"north": "low",
@@ -63778,7 +68175,7 @@
}
},
{
- "id": 23140,
+ "id": 23625,
"properties": {
"east": "tall",
"north": "low",
@@ -63789,7 +68186,7 @@
}
},
{
- "id": 23141,
+ "id": 23626,
"properties": {
"east": "tall",
"north": "low",
@@ -63800,7 +68197,7 @@
}
},
{
- "id": 23142,
+ "id": 23627,
"properties": {
"east": "tall",
"north": "low",
@@ -63811,7 +68208,7 @@
}
},
{
- "id": 23143,
+ "id": 23628,
"properties": {
"east": "tall",
"north": "low",
@@ -63822,7 +68219,7 @@
}
},
{
- "id": 23144,
+ "id": 23629,
"properties": {
"east": "tall",
"north": "low",
@@ -63833,7 +68230,7 @@
}
},
{
- "id": 23145,
+ "id": 23630,
"properties": {
"east": "tall",
"north": "low",
@@ -63844,7 +68241,7 @@
}
},
{
- "id": 23146,
+ "id": 23631,
"properties": {
"east": "tall",
"north": "low",
@@ -63855,7 +68252,7 @@
}
},
{
- "id": 23147,
+ "id": 23632,
"properties": {
"east": "tall",
"north": "low",
@@ -63866,7 +68263,7 @@
}
},
{
- "id": 23148,
+ "id": 23633,
"properties": {
"east": "tall",
"north": "low",
@@ -63877,7 +68274,7 @@
}
},
{
- "id": 23149,
+ "id": 23634,
"properties": {
"east": "tall",
"north": "low",
@@ -63888,7 +68285,7 @@
}
},
{
- "id": 23150,
+ "id": 23635,
"properties": {
"east": "tall",
"north": "low",
@@ -63899,7 +68296,7 @@
}
},
{
- "id": 23151,
+ "id": 23636,
"properties": {
"east": "tall",
"north": "low",
@@ -63910,7 +68307,7 @@
}
},
{
- "id": 23152,
+ "id": 23637,
"properties": {
"east": "tall",
"north": "low",
@@ -63921,7 +68318,7 @@
}
},
{
- "id": 23153,
+ "id": 23638,
"properties": {
"east": "tall",
"north": "low",
@@ -63932,7 +68329,7 @@
}
},
{
- "id": 23154,
+ "id": 23639,
"properties": {
"east": "tall",
"north": "low",
@@ -63943,7 +68340,7 @@
}
},
{
- "id": 23155,
+ "id": 23640,
"properties": {
"east": "tall",
"north": "low",
@@ -63954,7 +68351,7 @@
}
},
{
- "id": 23156,
+ "id": 23641,
"properties": {
"east": "tall",
"north": "low",
@@ -63965,7 +68362,7 @@
}
},
{
- "id": 23157,
+ "id": 23642,
"properties": {
"east": "tall",
"north": "low",
@@ -63976,7 +68373,7 @@
}
},
{
- "id": 23158,
+ "id": 23643,
"properties": {
"east": "tall",
"north": "low",
@@ -63987,7 +68384,7 @@
}
},
{
- "id": 23159,
+ "id": 23644,
"properties": {
"east": "tall",
"north": "low",
@@ -63998,7 +68395,7 @@
}
},
{
- "id": 23160,
+ "id": 23645,
"properties": {
"east": "tall",
"north": "low",
@@ -64009,7 +68406,7 @@
}
},
{
- "id": 23161,
+ "id": 23646,
"properties": {
"east": "tall",
"north": "low",
@@ -64020,7 +68417,7 @@
}
},
{
- "id": 23162,
+ "id": 23647,
"properties": {
"east": "tall",
"north": "low",
@@ -64031,7 +68428,7 @@
}
},
{
- "id": 23163,
+ "id": 23648,
"properties": {
"east": "tall",
"north": "low",
@@ -64042,7 +68439,7 @@
}
},
{
- "id": 23164,
+ "id": 23649,
"properties": {
"east": "tall",
"north": "low",
@@ -64053,7 +68450,7 @@
}
},
{
- "id": 23165,
+ "id": 23650,
"properties": {
"east": "tall",
"north": "low",
@@ -64064,7 +68461,7 @@
}
},
{
- "id": 23166,
+ "id": 23651,
"properties": {
"east": "tall",
"north": "low",
@@ -64075,7 +68472,7 @@
}
},
{
- "id": 23167,
+ "id": 23652,
"properties": {
"east": "tall",
"north": "low",
@@ -64086,7 +68483,7 @@
}
},
{
- "id": 23168,
+ "id": 23653,
"properties": {
"east": "tall",
"north": "low",
@@ -64097,7 +68494,7 @@
}
},
{
- "id": 23169,
+ "id": 23654,
"properties": {
"east": "tall",
"north": "low",
@@ -64108,7 +68505,7 @@
}
},
{
- "id": 23170,
+ "id": 23655,
"properties": {
"east": "tall",
"north": "low",
@@ -64119,7 +68516,7 @@
}
},
{
- "id": 23171,
+ "id": 23656,
"properties": {
"east": "tall",
"north": "low",
@@ -64130,7 +68527,7 @@
}
},
{
- "id": 23172,
+ "id": 23657,
"properties": {
"east": "tall",
"north": "low",
@@ -64141,7 +68538,7 @@
}
},
{
- "id": 23173,
+ "id": 23658,
"properties": {
"east": "tall",
"north": "tall",
@@ -64152,7 +68549,7 @@
}
},
{
- "id": 23174,
+ "id": 23659,
"properties": {
"east": "tall",
"north": "tall",
@@ -64163,7 +68560,7 @@
}
},
{
- "id": 23175,
+ "id": 23660,
"properties": {
"east": "tall",
"north": "tall",
@@ -64174,7 +68571,7 @@
}
},
{
- "id": 23176,
+ "id": 23661,
"properties": {
"east": "tall",
"north": "tall",
@@ -64185,7 +68582,7 @@
}
},
{
- "id": 23177,
+ "id": 23662,
"properties": {
"east": "tall",
"north": "tall",
@@ -64196,7 +68593,7 @@
}
},
{
- "id": 23178,
+ "id": 23663,
"properties": {
"east": "tall",
"north": "tall",
@@ -64207,7 +68604,7 @@
}
},
{
- "id": 23179,
+ "id": 23664,
"properties": {
"east": "tall",
"north": "tall",
@@ -64218,7 +68615,7 @@
}
},
{
- "id": 23180,
+ "id": 23665,
"properties": {
"east": "tall",
"north": "tall",
@@ -64229,7 +68626,7 @@
}
},
{
- "id": 23181,
+ "id": 23666,
"properties": {
"east": "tall",
"north": "tall",
@@ -64240,7 +68637,7 @@
}
},
{
- "id": 23182,
+ "id": 23667,
"properties": {
"east": "tall",
"north": "tall",
@@ -64251,7 +68648,7 @@
}
},
{
- "id": 23183,
+ "id": 23668,
"properties": {
"east": "tall",
"north": "tall",
@@ -64262,7 +68659,7 @@
}
},
{
- "id": 23184,
+ "id": 23669,
"properties": {
"east": "tall",
"north": "tall",
@@ -64273,7 +68670,7 @@
}
},
{
- "id": 23185,
+ "id": 23670,
"properties": {
"east": "tall",
"north": "tall",
@@ -64284,7 +68681,7 @@
}
},
{
- "id": 23186,
+ "id": 23671,
"properties": {
"east": "tall",
"north": "tall",
@@ -64295,7 +68692,7 @@
}
},
{
- "id": 23187,
+ "id": 23672,
"properties": {
"east": "tall",
"north": "tall",
@@ -64306,7 +68703,7 @@
}
},
{
- "id": 23188,
+ "id": 23673,
"properties": {
"east": "tall",
"north": "tall",
@@ -64317,7 +68714,7 @@
}
},
{
- "id": 23189,
+ "id": 23674,
"properties": {
"east": "tall",
"north": "tall",
@@ -64328,7 +68725,7 @@
}
},
{
- "id": 23190,
+ "id": 23675,
"properties": {
"east": "tall",
"north": "tall",
@@ -64339,7 +68736,7 @@
}
},
{
- "id": 23191,
+ "id": 23676,
"properties": {
"east": "tall",
"north": "tall",
@@ -64350,7 +68747,7 @@
}
},
{
- "id": 23192,
+ "id": 23677,
"properties": {
"east": "tall",
"north": "tall",
@@ -64361,7 +68758,7 @@
}
},
{
- "id": 23193,
+ "id": 23678,
"properties": {
"east": "tall",
"north": "tall",
@@ -64372,7 +68769,7 @@
}
},
{
- "id": 23194,
+ "id": 23679,
"properties": {
"east": "tall",
"north": "tall",
@@ -64383,7 +68780,7 @@
}
},
{
- "id": 23195,
+ "id": 23680,
"properties": {
"east": "tall",
"north": "tall",
@@ -64394,7 +68791,7 @@
}
},
{
- "id": 23196,
+ "id": 23681,
"properties": {
"east": "tall",
"north": "tall",
@@ -64405,7 +68802,7 @@
}
},
{
- "id": 23197,
+ "id": 23682,
"properties": {
"east": "tall",
"north": "tall",
@@ -64416,7 +68813,7 @@
}
},
{
- "id": 23198,
+ "id": 23683,
"properties": {
"east": "tall",
"north": "tall",
@@ -64427,7 +68824,7 @@
}
},
{
- "id": 23199,
+ "id": 23684,
"properties": {
"east": "tall",
"north": "tall",
@@ -64438,7 +68835,7 @@
}
},
{
- "id": 23200,
+ "id": 23685,
"properties": {
"east": "tall",
"north": "tall",
@@ -64449,7 +68846,7 @@
}
},
{
- "id": 23201,
+ "id": 23686,
"properties": {
"east": "tall",
"north": "tall",
@@ -64460,7 +68857,7 @@
}
},
{
- "id": 23202,
+ "id": 23687,
"properties": {
"east": "tall",
"north": "tall",
@@ -64471,7 +68868,7 @@
}
},
{
- "id": 23203,
+ "id": 23688,
"properties": {
"east": "tall",
"north": "tall",
@@ -64482,7 +68879,7 @@
}
},
{
- "id": 23204,
+ "id": 23689,
"properties": {
"east": "tall",
"north": "tall",
@@ -64493,7 +68890,7 @@
}
},
{
- "id": 23205,
+ "id": 23690,
"properties": {
"east": "tall",
"north": "tall",
@@ -64504,7 +68901,7 @@
}
},
{
- "id": 23206,
+ "id": 23691,
"properties": {
"east": "tall",
"north": "tall",
@@ -64515,7 +68912,7 @@
}
},
{
- "id": 23207,
+ "id": 23692,
"properties": {
"east": "tall",
"north": "tall",
@@ -64526,7 +68923,7 @@
}
},
{
- "id": 23208,
+ "id": 23693,
"properties": {
"east": "tall",
"north": "tall",
@@ -64542,7 +68939,7 @@
"states": [
{
"default": true,
- "id": 22798
+ "id": 23283
}
]
},
@@ -64550,7 +68947,7 @@
"states": [
{
"default": true,
- "id": 117
+ "id": 124
}
]
},
@@ -64558,7 +68955,7 @@
"states": [
{
"default": true,
- "id": 20697
+ "id": 21166
}
]
},
@@ -64566,7 +68963,7 @@
"states": [
{
"default": true,
- "id": 4223
+ "id": 4271
}
]
},
@@ -64574,7 +68971,7 @@
"states": [
{
"default": true,
- "id": 7282
+ "id": 7508
}
]
},
@@ -64582,7 +68979,7 @@
"states": [
{
"default": true,
- "id": 113
+ "id": 120
}
]
},
@@ -64590,7 +68987,7 @@
"states": [
{
"default": true,
- "id": 115
+ "id": 122
}
]
},
@@ -64598,7 +68995,7 @@
"states": [
{
"default": true,
- "id": 470
+ "id": 517
}
]
},
@@ -64611,14 +69008,14 @@
},
"states": [
{
- "id": 5570,
+ "id": 5732,
"properties": {
"lit": "true"
}
},
{
"default": true,
- "id": 5571,
+ "id": 5733,
"properties": {
"lit": "false"
}
@@ -64639,21 +69036,21 @@
},
"states": [
{
- "id": 22468,
+ "id": 22953,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 22469,
+ "id": 22954,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 22470,
+ "id": 22955,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -64661,21 +69058,21 @@
},
{
"default": true,
- "id": 22471,
+ "id": 22956,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 22472,
+ "id": 22957,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 22473,
+ "id": 22958,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -64709,7 +69106,7 @@
},
"states": [
{
- "id": 22388,
+ "id": 22873,
"properties": {
"facing": "north",
"half": "top",
@@ -64718,7 +69115,7 @@
}
},
{
- "id": 22389,
+ "id": 22874,
"properties": {
"facing": "north",
"half": "top",
@@ -64727,7 +69124,7 @@
}
},
{
- "id": 22390,
+ "id": 22875,
"properties": {
"facing": "north",
"half": "top",
@@ -64736,7 +69133,7 @@
}
},
{
- "id": 22391,
+ "id": 22876,
"properties": {
"facing": "north",
"half": "top",
@@ -64745,7 +69142,7 @@
}
},
{
- "id": 22392,
+ "id": 22877,
"properties": {
"facing": "north",
"half": "top",
@@ -64754,7 +69151,7 @@
}
},
{
- "id": 22393,
+ "id": 22878,
"properties": {
"facing": "north",
"half": "top",
@@ -64763,7 +69160,7 @@
}
},
{
- "id": 22394,
+ "id": 22879,
"properties": {
"facing": "north",
"half": "top",
@@ -64772,7 +69169,7 @@
}
},
{
- "id": 22395,
+ "id": 22880,
"properties": {
"facing": "north",
"half": "top",
@@ -64781,7 +69178,7 @@
}
},
{
- "id": 22396,
+ "id": 22881,
"properties": {
"facing": "north",
"half": "top",
@@ -64790,7 +69187,7 @@
}
},
{
- "id": 22397,
+ "id": 22882,
"properties": {
"facing": "north",
"half": "top",
@@ -64799,7 +69196,7 @@
}
},
{
- "id": 22398,
+ "id": 22883,
"properties": {
"facing": "north",
"half": "bottom",
@@ -64809,7 +69206,7 @@
},
{
"default": true,
- "id": 22399,
+ "id": 22884,
"properties": {
"facing": "north",
"half": "bottom",
@@ -64818,7 +69215,7 @@
}
},
{
- "id": 22400,
+ "id": 22885,
"properties": {
"facing": "north",
"half": "bottom",
@@ -64827,7 +69224,7 @@
}
},
{
- "id": 22401,
+ "id": 22886,
"properties": {
"facing": "north",
"half": "bottom",
@@ -64836,7 +69233,7 @@
}
},
{
- "id": 22402,
+ "id": 22887,
"properties": {
"facing": "north",
"half": "bottom",
@@ -64845,7 +69242,7 @@
}
},
{
- "id": 22403,
+ "id": 22888,
"properties": {
"facing": "north",
"half": "bottom",
@@ -64854,7 +69251,7 @@
}
},
{
- "id": 22404,
+ "id": 22889,
"properties": {
"facing": "north",
"half": "bottom",
@@ -64863,7 +69260,7 @@
}
},
{
- "id": 22405,
+ "id": 22890,
"properties": {
"facing": "north",
"half": "bottom",
@@ -64872,7 +69269,7 @@
}
},
{
- "id": 22406,
+ "id": 22891,
"properties": {
"facing": "north",
"half": "bottom",
@@ -64881,7 +69278,7 @@
}
},
{
- "id": 22407,
+ "id": 22892,
"properties": {
"facing": "north",
"half": "bottom",
@@ -64890,7 +69287,7 @@
}
},
{
- "id": 22408,
+ "id": 22893,
"properties": {
"facing": "south",
"half": "top",
@@ -64899,7 +69296,7 @@
}
},
{
- "id": 22409,
+ "id": 22894,
"properties": {
"facing": "south",
"half": "top",
@@ -64908,7 +69305,7 @@
}
},
{
- "id": 22410,
+ "id": 22895,
"properties": {
"facing": "south",
"half": "top",
@@ -64917,7 +69314,7 @@
}
},
{
- "id": 22411,
+ "id": 22896,
"properties": {
"facing": "south",
"half": "top",
@@ -64926,7 +69323,7 @@
}
},
{
- "id": 22412,
+ "id": 22897,
"properties": {
"facing": "south",
"half": "top",
@@ -64935,7 +69332,7 @@
}
},
{
- "id": 22413,
+ "id": 22898,
"properties": {
"facing": "south",
"half": "top",
@@ -64944,7 +69341,7 @@
}
},
{
- "id": 22414,
+ "id": 22899,
"properties": {
"facing": "south",
"half": "top",
@@ -64953,7 +69350,7 @@
}
},
{
- "id": 22415,
+ "id": 22900,
"properties": {
"facing": "south",
"half": "top",
@@ -64962,7 +69359,7 @@
}
},
{
- "id": 22416,
+ "id": 22901,
"properties": {
"facing": "south",
"half": "top",
@@ -64971,7 +69368,7 @@
}
},
{
- "id": 22417,
+ "id": 22902,
"properties": {
"facing": "south",
"half": "top",
@@ -64980,7 +69377,7 @@
}
},
{
- "id": 22418,
+ "id": 22903,
"properties": {
"facing": "south",
"half": "bottom",
@@ -64989,7 +69386,7 @@
}
},
{
- "id": 22419,
+ "id": 22904,
"properties": {
"facing": "south",
"half": "bottom",
@@ -64998,7 +69395,7 @@
}
},
{
- "id": 22420,
+ "id": 22905,
"properties": {
"facing": "south",
"half": "bottom",
@@ -65007,7 +69404,7 @@
}
},
{
- "id": 22421,
+ "id": 22906,
"properties": {
"facing": "south",
"half": "bottom",
@@ -65016,7 +69413,7 @@
}
},
{
- "id": 22422,
+ "id": 22907,
"properties": {
"facing": "south",
"half": "bottom",
@@ -65025,7 +69422,7 @@
}
},
{
- "id": 22423,
+ "id": 22908,
"properties": {
"facing": "south",
"half": "bottom",
@@ -65034,7 +69431,7 @@
}
},
{
- "id": 22424,
+ "id": 22909,
"properties": {
"facing": "south",
"half": "bottom",
@@ -65043,7 +69440,7 @@
}
},
{
- "id": 22425,
+ "id": 22910,
"properties": {
"facing": "south",
"half": "bottom",
@@ -65052,7 +69449,7 @@
}
},
{
- "id": 22426,
+ "id": 22911,
"properties": {
"facing": "south",
"half": "bottom",
@@ -65061,7 +69458,7 @@
}
},
{
- "id": 22427,
+ "id": 22912,
"properties": {
"facing": "south",
"half": "bottom",
@@ -65070,7 +69467,7 @@
}
},
{
- "id": 22428,
+ "id": 22913,
"properties": {
"facing": "west",
"half": "top",
@@ -65079,7 +69476,7 @@
}
},
{
- "id": 22429,
+ "id": 22914,
"properties": {
"facing": "west",
"half": "top",
@@ -65088,7 +69485,7 @@
}
},
{
- "id": 22430,
+ "id": 22915,
"properties": {
"facing": "west",
"half": "top",
@@ -65097,7 +69494,7 @@
}
},
{
- "id": 22431,
+ "id": 22916,
"properties": {
"facing": "west",
"half": "top",
@@ -65106,7 +69503,7 @@
}
},
{
- "id": 22432,
+ "id": 22917,
"properties": {
"facing": "west",
"half": "top",
@@ -65115,7 +69512,7 @@
}
},
{
- "id": 22433,
+ "id": 22918,
"properties": {
"facing": "west",
"half": "top",
@@ -65124,7 +69521,7 @@
}
},
{
- "id": 22434,
+ "id": 22919,
"properties": {
"facing": "west",
"half": "top",
@@ -65133,7 +69530,7 @@
}
},
{
- "id": 22435,
+ "id": 22920,
"properties": {
"facing": "west",
"half": "top",
@@ -65142,7 +69539,7 @@
}
},
{
- "id": 22436,
+ "id": 22921,
"properties": {
"facing": "west",
"half": "top",
@@ -65151,7 +69548,7 @@
}
},
{
- "id": 22437,
+ "id": 22922,
"properties": {
"facing": "west",
"half": "top",
@@ -65160,7 +69557,7 @@
}
},
{
- "id": 22438,
+ "id": 22923,
"properties": {
"facing": "west",
"half": "bottom",
@@ -65169,7 +69566,7 @@
}
},
{
- "id": 22439,
+ "id": 22924,
"properties": {
"facing": "west",
"half": "bottom",
@@ -65178,7 +69575,7 @@
}
},
{
- "id": 22440,
+ "id": 22925,
"properties": {
"facing": "west",
"half": "bottom",
@@ -65187,7 +69584,7 @@
}
},
{
- "id": 22441,
+ "id": 22926,
"properties": {
"facing": "west",
"half": "bottom",
@@ -65196,7 +69593,7 @@
}
},
{
- "id": 22442,
+ "id": 22927,
"properties": {
"facing": "west",
"half": "bottom",
@@ -65205,7 +69602,7 @@
}
},
{
- "id": 22443,
+ "id": 22928,
"properties": {
"facing": "west",
"half": "bottom",
@@ -65214,7 +69611,7 @@
}
},
{
- "id": 22444,
+ "id": 22929,
"properties": {
"facing": "west",
"half": "bottom",
@@ -65223,7 +69620,7 @@
}
},
{
- "id": 22445,
+ "id": 22930,
"properties": {
"facing": "west",
"half": "bottom",
@@ -65232,7 +69629,7 @@
}
},
{
- "id": 22446,
+ "id": 22931,
"properties": {
"facing": "west",
"half": "bottom",
@@ -65241,7 +69638,7 @@
}
},
{
- "id": 22447,
+ "id": 22932,
"properties": {
"facing": "west",
"half": "bottom",
@@ -65250,7 +69647,7 @@
}
},
{
- "id": 22448,
+ "id": 22933,
"properties": {
"facing": "east",
"half": "top",
@@ -65259,7 +69656,7 @@
}
},
{
- "id": 22449,
+ "id": 22934,
"properties": {
"facing": "east",
"half": "top",
@@ -65268,7 +69665,7 @@
}
},
{
- "id": 22450,
+ "id": 22935,
"properties": {
"facing": "east",
"half": "top",
@@ -65277,7 +69674,7 @@
}
},
{
- "id": 22451,
+ "id": 22936,
"properties": {
"facing": "east",
"half": "top",
@@ -65286,7 +69683,7 @@
}
},
{
- "id": 22452,
+ "id": 22937,
"properties": {
"facing": "east",
"half": "top",
@@ -65295,7 +69692,7 @@
}
},
{
- "id": 22453,
+ "id": 22938,
"properties": {
"facing": "east",
"half": "top",
@@ -65304,7 +69701,7 @@
}
},
{
- "id": 22454,
+ "id": 22939,
"properties": {
"facing": "east",
"half": "top",
@@ -65313,7 +69710,7 @@
}
},
{
- "id": 22455,
+ "id": 22940,
"properties": {
"facing": "east",
"half": "top",
@@ -65322,7 +69719,7 @@
}
},
{
- "id": 22456,
+ "id": 22941,
"properties": {
"facing": "east",
"half": "top",
@@ -65331,7 +69728,7 @@
}
},
{
- "id": 22457,
+ "id": 22942,
"properties": {
"facing": "east",
"half": "top",
@@ -65340,7 +69737,7 @@
}
},
{
- "id": 22458,
+ "id": 22943,
"properties": {
"facing": "east",
"half": "bottom",
@@ -65349,7 +69746,7 @@
}
},
{
- "id": 22459,
+ "id": 22944,
"properties": {
"facing": "east",
"half": "bottom",
@@ -65358,7 +69755,7 @@
}
},
{
- "id": 22460,
+ "id": 22945,
"properties": {
"facing": "east",
"half": "bottom",
@@ -65367,7 +69764,7 @@
}
},
{
- "id": 22461,
+ "id": 22946,
"properties": {
"facing": "east",
"half": "bottom",
@@ -65376,7 +69773,7 @@
}
},
{
- "id": 22462,
+ "id": 22947,
"properties": {
"facing": "east",
"half": "bottom",
@@ -65385,7 +69782,7 @@
}
},
{
- "id": 22463,
+ "id": 22948,
"properties": {
"facing": "east",
"half": "bottom",
@@ -65394,7 +69791,7 @@
}
},
{
- "id": 22464,
+ "id": 22949,
"properties": {
"facing": "east",
"half": "bottom",
@@ -65403,7 +69800,7 @@
}
},
{
- "id": 22465,
+ "id": 22950,
"properties": {
"facing": "east",
"half": "bottom",
@@ -65412,7 +69809,7 @@
}
},
{
- "id": 22466,
+ "id": 22951,
"properties": {
"facing": "east",
"half": "bottom",
@@ -65421,7 +69818,7 @@
}
},
{
- "id": 22467,
+ "id": 22952,
"properties": {
"facing": "east",
"half": "bottom",
@@ -65464,7 +69861,7 @@
},
"states": [
{
- "id": 22474,
+ "id": 22959,
"properties": {
"east": "none",
"north": "none",
@@ -65475,7 +69872,7 @@
}
},
{
- "id": 22475,
+ "id": 22960,
"properties": {
"east": "none",
"north": "none",
@@ -65486,7 +69883,7 @@
}
},
{
- "id": 22476,
+ "id": 22961,
"properties": {
"east": "none",
"north": "none",
@@ -65498,7 +69895,7 @@
},
{
"default": true,
- "id": 22477,
+ "id": 22962,
"properties": {
"east": "none",
"north": "none",
@@ -65509,7 +69906,7 @@
}
},
{
- "id": 22478,
+ "id": 22963,
"properties": {
"east": "none",
"north": "none",
@@ -65520,7 +69917,7 @@
}
},
{
- "id": 22479,
+ "id": 22964,
"properties": {
"east": "none",
"north": "none",
@@ -65531,7 +69928,7 @@
}
},
{
- "id": 22480,
+ "id": 22965,
"properties": {
"east": "none",
"north": "none",
@@ -65542,7 +69939,7 @@
}
},
{
- "id": 22481,
+ "id": 22966,
"properties": {
"east": "none",
"north": "none",
@@ -65553,7 +69950,7 @@
}
},
{
- "id": 22482,
+ "id": 22967,
"properties": {
"east": "none",
"north": "none",
@@ -65564,7 +69961,7 @@
}
},
{
- "id": 22483,
+ "id": 22968,
"properties": {
"east": "none",
"north": "none",
@@ -65575,7 +69972,7 @@
}
},
{
- "id": 22484,
+ "id": 22969,
"properties": {
"east": "none",
"north": "none",
@@ -65586,7 +69983,7 @@
}
},
{
- "id": 22485,
+ "id": 22970,
"properties": {
"east": "none",
"north": "none",
@@ -65597,7 +69994,7 @@
}
},
{
- "id": 22486,
+ "id": 22971,
"properties": {
"east": "none",
"north": "none",
@@ -65608,7 +70005,7 @@
}
},
{
- "id": 22487,
+ "id": 22972,
"properties": {
"east": "none",
"north": "none",
@@ -65619,7 +70016,7 @@
}
},
{
- "id": 22488,
+ "id": 22973,
"properties": {
"east": "none",
"north": "none",
@@ -65630,7 +70027,7 @@
}
},
{
- "id": 22489,
+ "id": 22974,
"properties": {
"east": "none",
"north": "none",
@@ -65641,7 +70038,7 @@
}
},
{
- "id": 22490,
+ "id": 22975,
"properties": {
"east": "none",
"north": "none",
@@ -65652,7 +70049,7 @@
}
},
{
- "id": 22491,
+ "id": 22976,
"properties": {
"east": "none",
"north": "none",
@@ -65663,7 +70060,7 @@
}
},
{
- "id": 22492,
+ "id": 22977,
"properties": {
"east": "none",
"north": "none",
@@ -65674,7 +70071,7 @@
}
},
{
- "id": 22493,
+ "id": 22978,
"properties": {
"east": "none",
"north": "none",
@@ -65685,7 +70082,7 @@
}
},
{
- "id": 22494,
+ "id": 22979,
"properties": {
"east": "none",
"north": "none",
@@ -65696,7 +70093,7 @@
}
},
{
- "id": 22495,
+ "id": 22980,
"properties": {
"east": "none",
"north": "none",
@@ -65707,7 +70104,7 @@
}
},
{
- "id": 22496,
+ "id": 22981,
"properties": {
"east": "none",
"north": "none",
@@ -65718,7 +70115,7 @@
}
},
{
- "id": 22497,
+ "id": 22982,
"properties": {
"east": "none",
"north": "none",
@@ -65729,7 +70126,7 @@
}
},
{
- "id": 22498,
+ "id": 22983,
"properties": {
"east": "none",
"north": "none",
@@ -65740,7 +70137,7 @@
}
},
{
- "id": 22499,
+ "id": 22984,
"properties": {
"east": "none",
"north": "none",
@@ -65751,7 +70148,7 @@
}
},
{
- "id": 22500,
+ "id": 22985,
"properties": {
"east": "none",
"north": "none",
@@ -65762,7 +70159,7 @@
}
},
{
- "id": 22501,
+ "id": 22986,
"properties": {
"east": "none",
"north": "none",
@@ -65773,7 +70170,7 @@
}
},
{
- "id": 22502,
+ "id": 22987,
"properties": {
"east": "none",
"north": "none",
@@ -65784,7 +70181,7 @@
}
},
{
- "id": 22503,
+ "id": 22988,
"properties": {
"east": "none",
"north": "none",
@@ -65795,7 +70192,7 @@
}
},
{
- "id": 22504,
+ "id": 22989,
"properties": {
"east": "none",
"north": "none",
@@ -65806,7 +70203,7 @@
}
},
{
- "id": 22505,
+ "id": 22990,
"properties": {
"east": "none",
"north": "none",
@@ -65817,7 +70214,7 @@
}
},
{
- "id": 22506,
+ "id": 22991,
"properties": {
"east": "none",
"north": "none",
@@ -65828,7 +70225,7 @@
}
},
{
- "id": 22507,
+ "id": 22992,
"properties": {
"east": "none",
"north": "none",
@@ -65839,7 +70236,7 @@
}
},
{
- "id": 22508,
+ "id": 22993,
"properties": {
"east": "none",
"north": "none",
@@ -65850,7 +70247,7 @@
}
},
{
- "id": 22509,
+ "id": 22994,
"properties": {
"east": "none",
"north": "none",
@@ -65861,7 +70258,7 @@
}
},
{
- "id": 22510,
+ "id": 22995,
"properties": {
"east": "none",
"north": "low",
@@ -65872,7 +70269,7 @@
}
},
{
- "id": 22511,
+ "id": 22996,
"properties": {
"east": "none",
"north": "low",
@@ -65883,7 +70280,7 @@
}
},
{
- "id": 22512,
+ "id": 22997,
"properties": {
"east": "none",
"north": "low",
@@ -65894,7 +70291,7 @@
}
},
{
- "id": 22513,
+ "id": 22998,
"properties": {
"east": "none",
"north": "low",
@@ -65905,7 +70302,7 @@
}
},
{
- "id": 22514,
+ "id": 22999,
"properties": {
"east": "none",
"north": "low",
@@ -65916,7 +70313,7 @@
}
},
{
- "id": 22515,
+ "id": 23000,
"properties": {
"east": "none",
"north": "low",
@@ -65927,7 +70324,7 @@
}
},
{
- "id": 22516,
+ "id": 23001,
"properties": {
"east": "none",
"north": "low",
@@ -65938,7 +70335,7 @@
}
},
{
- "id": 22517,
+ "id": 23002,
"properties": {
"east": "none",
"north": "low",
@@ -65949,7 +70346,7 @@
}
},
{
- "id": 22518,
+ "id": 23003,
"properties": {
"east": "none",
"north": "low",
@@ -65960,7 +70357,7 @@
}
},
{
- "id": 22519,
+ "id": 23004,
"properties": {
"east": "none",
"north": "low",
@@ -65971,7 +70368,7 @@
}
},
{
- "id": 22520,
+ "id": 23005,
"properties": {
"east": "none",
"north": "low",
@@ -65982,7 +70379,7 @@
}
},
{
- "id": 22521,
+ "id": 23006,
"properties": {
"east": "none",
"north": "low",
@@ -65993,7 +70390,7 @@
}
},
{
- "id": 22522,
+ "id": 23007,
"properties": {
"east": "none",
"north": "low",
@@ -66004,7 +70401,7 @@
}
},
{
- "id": 22523,
+ "id": 23008,
"properties": {
"east": "none",
"north": "low",
@@ -66015,7 +70412,7 @@
}
},
{
- "id": 22524,
+ "id": 23009,
"properties": {
"east": "none",
"north": "low",
@@ -66026,7 +70423,7 @@
}
},
{
- "id": 22525,
+ "id": 23010,
"properties": {
"east": "none",
"north": "low",
@@ -66037,7 +70434,7 @@
}
},
{
- "id": 22526,
+ "id": 23011,
"properties": {
"east": "none",
"north": "low",
@@ -66048,7 +70445,7 @@
}
},
{
- "id": 22527,
+ "id": 23012,
"properties": {
"east": "none",
"north": "low",
@@ -66059,7 +70456,7 @@
}
},
{
- "id": 22528,
+ "id": 23013,
"properties": {
"east": "none",
"north": "low",
@@ -66070,7 +70467,7 @@
}
},
{
- "id": 22529,
+ "id": 23014,
"properties": {
"east": "none",
"north": "low",
@@ -66081,7 +70478,7 @@
}
},
{
- "id": 22530,
+ "id": 23015,
"properties": {
"east": "none",
"north": "low",
@@ -66092,7 +70489,7 @@
}
},
{
- "id": 22531,
+ "id": 23016,
"properties": {
"east": "none",
"north": "low",
@@ -66103,7 +70500,7 @@
}
},
{
- "id": 22532,
+ "id": 23017,
"properties": {
"east": "none",
"north": "low",
@@ -66114,7 +70511,7 @@
}
},
{
- "id": 22533,
+ "id": 23018,
"properties": {
"east": "none",
"north": "low",
@@ -66125,7 +70522,7 @@
}
},
{
- "id": 22534,
+ "id": 23019,
"properties": {
"east": "none",
"north": "low",
@@ -66136,7 +70533,7 @@
}
},
{
- "id": 22535,
+ "id": 23020,
"properties": {
"east": "none",
"north": "low",
@@ -66147,7 +70544,7 @@
}
},
{
- "id": 22536,
+ "id": 23021,
"properties": {
"east": "none",
"north": "low",
@@ -66158,7 +70555,7 @@
}
},
{
- "id": 22537,
+ "id": 23022,
"properties": {
"east": "none",
"north": "low",
@@ -66169,7 +70566,7 @@
}
},
{
- "id": 22538,
+ "id": 23023,
"properties": {
"east": "none",
"north": "low",
@@ -66180,7 +70577,7 @@
}
},
{
- "id": 22539,
+ "id": 23024,
"properties": {
"east": "none",
"north": "low",
@@ -66191,7 +70588,7 @@
}
},
{
- "id": 22540,
+ "id": 23025,
"properties": {
"east": "none",
"north": "low",
@@ -66202,7 +70599,7 @@
}
},
{
- "id": 22541,
+ "id": 23026,
"properties": {
"east": "none",
"north": "low",
@@ -66213,7 +70610,7 @@
}
},
{
- "id": 22542,
+ "id": 23027,
"properties": {
"east": "none",
"north": "low",
@@ -66224,7 +70621,7 @@
}
},
{
- "id": 22543,
+ "id": 23028,
"properties": {
"east": "none",
"north": "low",
@@ -66235,7 +70632,7 @@
}
},
{
- "id": 22544,
+ "id": 23029,
"properties": {
"east": "none",
"north": "low",
@@ -66246,7 +70643,7 @@
}
},
{
- "id": 22545,
+ "id": 23030,
"properties": {
"east": "none",
"north": "low",
@@ -66257,7 +70654,7 @@
}
},
{
- "id": 22546,
+ "id": 23031,
"properties": {
"east": "none",
"north": "tall",
@@ -66268,7 +70665,7 @@
}
},
{
- "id": 22547,
+ "id": 23032,
"properties": {
"east": "none",
"north": "tall",
@@ -66279,7 +70676,7 @@
}
},
{
- "id": 22548,
+ "id": 23033,
"properties": {
"east": "none",
"north": "tall",
@@ -66290,7 +70687,7 @@
}
},
{
- "id": 22549,
+ "id": 23034,
"properties": {
"east": "none",
"north": "tall",
@@ -66301,7 +70698,7 @@
}
},
{
- "id": 22550,
+ "id": 23035,
"properties": {
"east": "none",
"north": "tall",
@@ -66312,7 +70709,7 @@
}
},
{
- "id": 22551,
+ "id": 23036,
"properties": {
"east": "none",
"north": "tall",
@@ -66323,7 +70720,7 @@
}
},
{
- "id": 22552,
+ "id": 23037,
"properties": {
"east": "none",
"north": "tall",
@@ -66334,7 +70731,7 @@
}
},
{
- "id": 22553,
+ "id": 23038,
"properties": {
"east": "none",
"north": "tall",
@@ -66345,7 +70742,7 @@
}
},
{
- "id": 22554,
+ "id": 23039,
"properties": {
"east": "none",
"north": "tall",
@@ -66356,7 +70753,7 @@
}
},
{
- "id": 22555,
+ "id": 23040,
"properties": {
"east": "none",
"north": "tall",
@@ -66367,7 +70764,7 @@
}
},
{
- "id": 22556,
+ "id": 23041,
"properties": {
"east": "none",
"north": "tall",
@@ -66378,7 +70775,7 @@
}
},
{
- "id": 22557,
+ "id": 23042,
"properties": {
"east": "none",
"north": "tall",
@@ -66389,7 +70786,7 @@
}
},
{
- "id": 22558,
+ "id": 23043,
"properties": {
"east": "none",
"north": "tall",
@@ -66400,7 +70797,7 @@
}
},
{
- "id": 22559,
+ "id": 23044,
"properties": {
"east": "none",
"north": "tall",
@@ -66411,7 +70808,7 @@
}
},
{
- "id": 22560,
+ "id": 23045,
"properties": {
"east": "none",
"north": "tall",
@@ -66422,7 +70819,7 @@
}
},
{
- "id": 22561,
+ "id": 23046,
"properties": {
"east": "none",
"north": "tall",
@@ -66433,7 +70830,7 @@
}
},
{
- "id": 22562,
+ "id": 23047,
"properties": {
"east": "none",
"north": "tall",
@@ -66444,7 +70841,7 @@
}
},
{
- "id": 22563,
+ "id": 23048,
"properties": {
"east": "none",
"north": "tall",
@@ -66455,7 +70852,7 @@
}
},
{
- "id": 22564,
+ "id": 23049,
"properties": {
"east": "none",
"north": "tall",
@@ -66466,7 +70863,7 @@
}
},
{
- "id": 22565,
+ "id": 23050,
"properties": {
"east": "none",
"north": "tall",
@@ -66477,7 +70874,7 @@
}
},
{
- "id": 22566,
+ "id": 23051,
"properties": {
"east": "none",
"north": "tall",
@@ -66488,7 +70885,7 @@
}
},
{
- "id": 22567,
+ "id": 23052,
"properties": {
"east": "none",
"north": "tall",
@@ -66499,7 +70896,7 @@
}
},
{
- "id": 22568,
+ "id": 23053,
"properties": {
"east": "none",
"north": "tall",
@@ -66510,7 +70907,7 @@
}
},
{
- "id": 22569,
+ "id": 23054,
"properties": {
"east": "none",
"north": "tall",
@@ -66521,7 +70918,7 @@
}
},
{
- "id": 22570,
+ "id": 23055,
"properties": {
"east": "none",
"north": "tall",
@@ -66532,7 +70929,7 @@
}
},
{
- "id": 22571,
+ "id": 23056,
"properties": {
"east": "none",
"north": "tall",
@@ -66543,7 +70940,7 @@
}
},
{
- "id": 22572,
+ "id": 23057,
"properties": {
"east": "none",
"north": "tall",
@@ -66554,7 +70951,7 @@
}
},
{
- "id": 22573,
+ "id": 23058,
"properties": {
"east": "none",
"north": "tall",
@@ -66565,7 +70962,7 @@
}
},
{
- "id": 22574,
+ "id": 23059,
"properties": {
"east": "none",
"north": "tall",
@@ -66576,7 +70973,7 @@
}
},
{
- "id": 22575,
+ "id": 23060,
"properties": {
"east": "none",
"north": "tall",
@@ -66587,7 +70984,7 @@
}
},
{
- "id": 22576,
+ "id": 23061,
"properties": {
"east": "none",
"north": "tall",
@@ -66598,7 +70995,7 @@
}
},
{
- "id": 22577,
+ "id": 23062,
"properties": {
"east": "none",
"north": "tall",
@@ -66609,7 +71006,7 @@
}
},
{
- "id": 22578,
+ "id": 23063,
"properties": {
"east": "none",
"north": "tall",
@@ -66620,7 +71017,7 @@
}
},
{
- "id": 22579,
+ "id": 23064,
"properties": {
"east": "none",
"north": "tall",
@@ -66631,7 +71028,7 @@
}
},
{
- "id": 22580,
+ "id": 23065,
"properties": {
"east": "none",
"north": "tall",
@@ -66642,7 +71039,7 @@
}
},
{
- "id": 22581,
+ "id": 23066,
"properties": {
"east": "none",
"north": "tall",
@@ -66653,7 +71050,7 @@
}
},
{
- "id": 22582,
+ "id": 23067,
"properties": {
"east": "low",
"north": "none",
@@ -66664,7 +71061,7 @@
}
},
{
- "id": 22583,
+ "id": 23068,
"properties": {
"east": "low",
"north": "none",
@@ -66675,7 +71072,7 @@
}
},
{
- "id": 22584,
+ "id": 23069,
"properties": {
"east": "low",
"north": "none",
@@ -66686,7 +71083,7 @@
}
},
{
- "id": 22585,
+ "id": 23070,
"properties": {
"east": "low",
"north": "none",
@@ -66697,7 +71094,7 @@
}
},
{
- "id": 22586,
+ "id": 23071,
"properties": {
"east": "low",
"north": "none",
@@ -66708,7 +71105,7 @@
}
},
{
- "id": 22587,
+ "id": 23072,
"properties": {
"east": "low",
"north": "none",
@@ -66719,7 +71116,7 @@
}
},
{
- "id": 22588,
+ "id": 23073,
"properties": {
"east": "low",
"north": "none",
@@ -66730,7 +71127,7 @@
}
},
{
- "id": 22589,
+ "id": 23074,
"properties": {
"east": "low",
"north": "none",
@@ -66741,7 +71138,7 @@
}
},
{
- "id": 22590,
+ "id": 23075,
"properties": {
"east": "low",
"north": "none",
@@ -66752,7 +71149,7 @@
}
},
{
- "id": 22591,
+ "id": 23076,
"properties": {
"east": "low",
"north": "none",
@@ -66763,7 +71160,7 @@
}
},
{
- "id": 22592,
+ "id": 23077,
"properties": {
"east": "low",
"north": "none",
@@ -66774,7 +71171,7 @@
}
},
{
- "id": 22593,
+ "id": 23078,
"properties": {
"east": "low",
"north": "none",
@@ -66785,7 +71182,7 @@
}
},
{
- "id": 22594,
+ "id": 23079,
"properties": {
"east": "low",
"north": "none",
@@ -66796,7 +71193,7 @@
}
},
{
- "id": 22595,
+ "id": 23080,
"properties": {
"east": "low",
"north": "none",
@@ -66807,7 +71204,7 @@
}
},
{
- "id": 22596,
+ "id": 23081,
"properties": {
"east": "low",
"north": "none",
@@ -66818,7 +71215,7 @@
}
},
{
- "id": 22597,
+ "id": 23082,
"properties": {
"east": "low",
"north": "none",
@@ -66829,7 +71226,7 @@
}
},
{
- "id": 22598,
+ "id": 23083,
"properties": {
"east": "low",
"north": "none",
@@ -66840,7 +71237,7 @@
}
},
{
- "id": 22599,
+ "id": 23084,
"properties": {
"east": "low",
"north": "none",
@@ -66851,7 +71248,7 @@
}
},
{
- "id": 22600,
+ "id": 23085,
"properties": {
"east": "low",
"north": "none",
@@ -66862,7 +71259,7 @@
}
},
{
- "id": 22601,
+ "id": 23086,
"properties": {
"east": "low",
"north": "none",
@@ -66873,7 +71270,7 @@
}
},
{
- "id": 22602,
+ "id": 23087,
"properties": {
"east": "low",
"north": "none",
@@ -66884,7 +71281,7 @@
}
},
{
- "id": 22603,
+ "id": 23088,
"properties": {
"east": "low",
"north": "none",
@@ -66895,7 +71292,7 @@
}
},
{
- "id": 22604,
+ "id": 23089,
"properties": {
"east": "low",
"north": "none",
@@ -66906,7 +71303,7 @@
}
},
{
- "id": 22605,
+ "id": 23090,
"properties": {
"east": "low",
"north": "none",
@@ -66917,7 +71314,7 @@
}
},
{
- "id": 22606,
+ "id": 23091,
"properties": {
"east": "low",
"north": "none",
@@ -66928,7 +71325,7 @@
}
},
{
- "id": 22607,
+ "id": 23092,
"properties": {
"east": "low",
"north": "none",
@@ -66939,7 +71336,7 @@
}
},
{
- "id": 22608,
+ "id": 23093,
"properties": {
"east": "low",
"north": "none",
@@ -66950,7 +71347,7 @@
}
},
{
- "id": 22609,
+ "id": 23094,
"properties": {
"east": "low",
"north": "none",
@@ -66961,7 +71358,7 @@
}
},
{
- "id": 22610,
+ "id": 23095,
"properties": {
"east": "low",
"north": "none",
@@ -66972,7 +71369,7 @@
}
},
{
- "id": 22611,
+ "id": 23096,
"properties": {
"east": "low",
"north": "none",
@@ -66983,7 +71380,7 @@
}
},
{
- "id": 22612,
+ "id": 23097,
"properties": {
"east": "low",
"north": "none",
@@ -66994,7 +71391,7 @@
}
},
{
- "id": 22613,
+ "id": 23098,
"properties": {
"east": "low",
"north": "none",
@@ -67005,7 +71402,7 @@
}
},
{
- "id": 22614,
+ "id": 23099,
"properties": {
"east": "low",
"north": "none",
@@ -67016,7 +71413,7 @@
}
},
{
- "id": 22615,
+ "id": 23100,
"properties": {
"east": "low",
"north": "none",
@@ -67027,7 +71424,7 @@
}
},
{
- "id": 22616,
+ "id": 23101,
"properties": {
"east": "low",
"north": "none",
@@ -67038,7 +71435,7 @@
}
},
{
- "id": 22617,
+ "id": 23102,
"properties": {
"east": "low",
"north": "none",
@@ -67049,7 +71446,7 @@
}
},
{
- "id": 22618,
+ "id": 23103,
"properties": {
"east": "low",
"north": "low",
@@ -67060,7 +71457,7 @@
}
},
{
- "id": 22619,
+ "id": 23104,
"properties": {
"east": "low",
"north": "low",
@@ -67071,7 +71468,7 @@
}
},
{
- "id": 22620,
+ "id": 23105,
"properties": {
"east": "low",
"north": "low",
@@ -67082,7 +71479,7 @@
}
},
{
- "id": 22621,
+ "id": 23106,
"properties": {
"east": "low",
"north": "low",
@@ -67093,7 +71490,7 @@
}
},
{
- "id": 22622,
+ "id": 23107,
"properties": {
"east": "low",
"north": "low",
@@ -67104,7 +71501,7 @@
}
},
{
- "id": 22623,
+ "id": 23108,
"properties": {
"east": "low",
"north": "low",
@@ -67115,7 +71512,7 @@
}
},
{
- "id": 22624,
+ "id": 23109,
"properties": {
"east": "low",
"north": "low",
@@ -67126,7 +71523,7 @@
}
},
{
- "id": 22625,
+ "id": 23110,
"properties": {
"east": "low",
"north": "low",
@@ -67137,7 +71534,7 @@
}
},
{
- "id": 22626,
+ "id": 23111,
"properties": {
"east": "low",
"north": "low",
@@ -67148,7 +71545,7 @@
}
},
{
- "id": 22627,
+ "id": 23112,
"properties": {
"east": "low",
"north": "low",
@@ -67159,7 +71556,7 @@
}
},
{
- "id": 22628,
+ "id": 23113,
"properties": {
"east": "low",
"north": "low",
@@ -67170,7 +71567,7 @@
}
},
{
- "id": 22629,
+ "id": 23114,
"properties": {
"east": "low",
"north": "low",
@@ -67181,7 +71578,7 @@
}
},
{
- "id": 22630,
+ "id": 23115,
"properties": {
"east": "low",
"north": "low",
@@ -67192,7 +71589,7 @@
}
},
{
- "id": 22631,
+ "id": 23116,
"properties": {
"east": "low",
"north": "low",
@@ -67203,7 +71600,7 @@
}
},
{
- "id": 22632,
+ "id": 23117,
"properties": {
"east": "low",
"north": "low",
@@ -67214,7 +71611,7 @@
}
},
{
- "id": 22633,
+ "id": 23118,
"properties": {
"east": "low",
"north": "low",
@@ -67225,7 +71622,7 @@
}
},
{
- "id": 22634,
+ "id": 23119,
"properties": {
"east": "low",
"north": "low",
@@ -67236,7 +71633,7 @@
}
},
{
- "id": 22635,
+ "id": 23120,
"properties": {
"east": "low",
"north": "low",
@@ -67247,7 +71644,7 @@
}
},
{
- "id": 22636,
+ "id": 23121,
"properties": {
"east": "low",
"north": "low",
@@ -67258,7 +71655,7 @@
}
},
{
- "id": 22637,
+ "id": 23122,
"properties": {
"east": "low",
"north": "low",
@@ -67269,7 +71666,7 @@
}
},
{
- "id": 22638,
+ "id": 23123,
"properties": {
"east": "low",
"north": "low",
@@ -67280,7 +71677,7 @@
}
},
{
- "id": 22639,
+ "id": 23124,
"properties": {
"east": "low",
"north": "low",
@@ -67291,7 +71688,7 @@
}
},
{
- "id": 22640,
+ "id": 23125,
"properties": {
"east": "low",
"north": "low",
@@ -67302,7 +71699,7 @@
}
},
{
- "id": 22641,
+ "id": 23126,
"properties": {
"east": "low",
"north": "low",
@@ -67313,7 +71710,7 @@
}
},
{
- "id": 22642,
+ "id": 23127,
"properties": {
"east": "low",
"north": "low",
@@ -67324,7 +71721,7 @@
}
},
{
- "id": 22643,
+ "id": 23128,
"properties": {
"east": "low",
"north": "low",
@@ -67335,7 +71732,7 @@
}
},
{
- "id": 22644,
+ "id": 23129,
"properties": {
"east": "low",
"north": "low",
@@ -67346,7 +71743,7 @@
}
},
{
- "id": 22645,
+ "id": 23130,
"properties": {
"east": "low",
"north": "low",
@@ -67357,7 +71754,7 @@
}
},
{
- "id": 22646,
+ "id": 23131,
"properties": {
"east": "low",
"north": "low",
@@ -67368,7 +71765,7 @@
}
},
{
- "id": 22647,
+ "id": 23132,
"properties": {
"east": "low",
"north": "low",
@@ -67379,7 +71776,7 @@
}
},
{
- "id": 22648,
+ "id": 23133,
"properties": {
"east": "low",
"north": "low",
@@ -67390,7 +71787,7 @@
}
},
{
- "id": 22649,
+ "id": 23134,
"properties": {
"east": "low",
"north": "low",
@@ -67401,7 +71798,7 @@
}
},
{
- "id": 22650,
+ "id": 23135,
"properties": {
"east": "low",
"north": "low",
@@ -67412,7 +71809,7 @@
}
},
{
- "id": 22651,
+ "id": 23136,
"properties": {
"east": "low",
"north": "low",
@@ -67423,7 +71820,7 @@
}
},
{
- "id": 22652,
+ "id": 23137,
"properties": {
"east": "low",
"north": "low",
@@ -67434,7 +71831,7 @@
}
},
{
- "id": 22653,
+ "id": 23138,
"properties": {
"east": "low",
"north": "low",
@@ -67445,7 +71842,7 @@
}
},
{
- "id": 22654,
+ "id": 23139,
"properties": {
"east": "low",
"north": "tall",
@@ -67456,7 +71853,7 @@
}
},
{
- "id": 22655,
+ "id": 23140,
"properties": {
"east": "low",
"north": "tall",
@@ -67467,7 +71864,7 @@
}
},
{
- "id": 22656,
+ "id": 23141,
"properties": {
"east": "low",
"north": "tall",
@@ -67478,7 +71875,7 @@
}
},
{
- "id": 22657,
+ "id": 23142,
"properties": {
"east": "low",
"north": "tall",
@@ -67489,7 +71886,7 @@
}
},
{
- "id": 22658,
+ "id": 23143,
"properties": {
"east": "low",
"north": "tall",
@@ -67500,7 +71897,7 @@
}
},
{
- "id": 22659,
+ "id": 23144,
"properties": {
"east": "low",
"north": "tall",
@@ -67511,7 +71908,7 @@
}
},
{
- "id": 22660,
+ "id": 23145,
"properties": {
"east": "low",
"north": "tall",
@@ -67522,7 +71919,7 @@
}
},
{
- "id": 22661,
+ "id": 23146,
"properties": {
"east": "low",
"north": "tall",
@@ -67533,7 +71930,7 @@
}
},
{
- "id": 22662,
+ "id": 23147,
"properties": {
"east": "low",
"north": "tall",
@@ -67544,7 +71941,7 @@
}
},
{
- "id": 22663,
+ "id": 23148,
"properties": {
"east": "low",
"north": "tall",
@@ -67555,7 +71952,7 @@
}
},
{
- "id": 22664,
+ "id": 23149,
"properties": {
"east": "low",
"north": "tall",
@@ -67566,7 +71963,7 @@
}
},
{
- "id": 22665,
+ "id": 23150,
"properties": {
"east": "low",
"north": "tall",
@@ -67577,7 +71974,7 @@
}
},
{
- "id": 22666,
+ "id": 23151,
"properties": {
"east": "low",
"north": "tall",
@@ -67588,7 +71985,7 @@
}
},
{
- "id": 22667,
+ "id": 23152,
"properties": {
"east": "low",
"north": "tall",
@@ -67599,7 +71996,7 @@
}
},
{
- "id": 22668,
+ "id": 23153,
"properties": {
"east": "low",
"north": "tall",
@@ -67610,7 +72007,7 @@
}
},
{
- "id": 22669,
+ "id": 23154,
"properties": {
"east": "low",
"north": "tall",
@@ -67621,7 +72018,7 @@
}
},
{
- "id": 22670,
+ "id": 23155,
"properties": {
"east": "low",
"north": "tall",
@@ -67632,7 +72029,7 @@
}
},
{
- "id": 22671,
+ "id": 23156,
"properties": {
"east": "low",
"north": "tall",
@@ -67643,7 +72040,7 @@
}
},
{
- "id": 22672,
+ "id": 23157,
"properties": {
"east": "low",
"north": "tall",
@@ -67654,7 +72051,7 @@
}
},
{
- "id": 22673,
+ "id": 23158,
"properties": {
"east": "low",
"north": "tall",
@@ -67665,7 +72062,7 @@
}
},
{
- "id": 22674,
+ "id": 23159,
"properties": {
"east": "low",
"north": "tall",
@@ -67676,7 +72073,7 @@
}
},
{
- "id": 22675,
+ "id": 23160,
"properties": {
"east": "low",
"north": "tall",
@@ -67687,7 +72084,7 @@
}
},
{
- "id": 22676,
+ "id": 23161,
"properties": {
"east": "low",
"north": "tall",
@@ -67698,7 +72095,7 @@
}
},
{
- "id": 22677,
+ "id": 23162,
"properties": {
"east": "low",
"north": "tall",
@@ -67709,7 +72106,7 @@
}
},
{
- "id": 22678,
+ "id": 23163,
"properties": {
"east": "low",
"north": "tall",
@@ -67720,7 +72117,7 @@
}
},
{
- "id": 22679,
+ "id": 23164,
"properties": {
"east": "low",
"north": "tall",
@@ -67731,7 +72128,7 @@
}
},
{
- "id": 22680,
+ "id": 23165,
"properties": {
"east": "low",
"north": "tall",
@@ -67742,7 +72139,7 @@
}
},
{
- "id": 22681,
+ "id": 23166,
"properties": {
"east": "low",
"north": "tall",
@@ -67753,7 +72150,7 @@
}
},
{
- "id": 22682,
+ "id": 23167,
"properties": {
"east": "low",
"north": "tall",
@@ -67764,7 +72161,7 @@
}
},
{
- "id": 22683,
+ "id": 23168,
"properties": {
"east": "low",
"north": "tall",
@@ -67775,7 +72172,7 @@
}
},
{
- "id": 22684,
+ "id": 23169,
"properties": {
"east": "low",
"north": "tall",
@@ -67786,7 +72183,7 @@
}
},
{
- "id": 22685,
+ "id": 23170,
"properties": {
"east": "low",
"north": "tall",
@@ -67797,7 +72194,7 @@
}
},
{
- "id": 22686,
+ "id": 23171,
"properties": {
"east": "low",
"north": "tall",
@@ -67808,7 +72205,7 @@
}
},
{
- "id": 22687,
+ "id": 23172,
"properties": {
"east": "low",
"north": "tall",
@@ -67819,7 +72216,7 @@
}
},
{
- "id": 22688,
+ "id": 23173,
"properties": {
"east": "low",
"north": "tall",
@@ -67830,7 +72227,7 @@
}
},
{
- "id": 22689,
+ "id": 23174,
"properties": {
"east": "low",
"north": "tall",
@@ -67841,7 +72238,7 @@
}
},
{
- "id": 22690,
+ "id": 23175,
"properties": {
"east": "tall",
"north": "none",
@@ -67852,7 +72249,7 @@
}
},
{
- "id": 22691,
+ "id": 23176,
"properties": {
"east": "tall",
"north": "none",
@@ -67863,7 +72260,7 @@
}
},
{
- "id": 22692,
+ "id": 23177,
"properties": {
"east": "tall",
"north": "none",
@@ -67874,7 +72271,7 @@
}
},
{
- "id": 22693,
+ "id": 23178,
"properties": {
"east": "tall",
"north": "none",
@@ -67885,7 +72282,7 @@
}
},
{
- "id": 22694,
+ "id": 23179,
"properties": {
"east": "tall",
"north": "none",
@@ -67896,7 +72293,7 @@
}
},
{
- "id": 22695,
+ "id": 23180,
"properties": {
"east": "tall",
"north": "none",
@@ -67907,7 +72304,7 @@
}
},
{
- "id": 22696,
+ "id": 23181,
"properties": {
"east": "tall",
"north": "none",
@@ -67918,7 +72315,7 @@
}
},
{
- "id": 22697,
+ "id": 23182,
"properties": {
"east": "tall",
"north": "none",
@@ -67929,7 +72326,7 @@
}
},
{
- "id": 22698,
+ "id": 23183,
"properties": {
"east": "tall",
"north": "none",
@@ -67940,7 +72337,7 @@
}
},
{
- "id": 22699,
+ "id": 23184,
"properties": {
"east": "tall",
"north": "none",
@@ -67951,7 +72348,7 @@
}
},
{
- "id": 22700,
+ "id": 23185,
"properties": {
"east": "tall",
"north": "none",
@@ -67962,7 +72359,7 @@
}
},
{
- "id": 22701,
+ "id": 23186,
"properties": {
"east": "tall",
"north": "none",
@@ -67973,7 +72370,7 @@
}
},
{
- "id": 22702,
+ "id": 23187,
"properties": {
"east": "tall",
"north": "none",
@@ -67984,7 +72381,7 @@
}
},
{
- "id": 22703,
+ "id": 23188,
"properties": {
"east": "tall",
"north": "none",
@@ -67995,7 +72392,7 @@
}
},
{
- "id": 22704,
+ "id": 23189,
"properties": {
"east": "tall",
"north": "none",
@@ -68006,7 +72403,7 @@
}
},
{
- "id": 22705,
+ "id": 23190,
"properties": {
"east": "tall",
"north": "none",
@@ -68017,7 +72414,7 @@
}
},
{
- "id": 22706,
+ "id": 23191,
"properties": {
"east": "tall",
"north": "none",
@@ -68028,7 +72425,7 @@
}
},
{
- "id": 22707,
+ "id": 23192,
"properties": {
"east": "tall",
"north": "none",
@@ -68039,7 +72436,7 @@
}
},
{
- "id": 22708,
+ "id": 23193,
"properties": {
"east": "tall",
"north": "none",
@@ -68050,7 +72447,7 @@
}
},
{
- "id": 22709,
+ "id": 23194,
"properties": {
"east": "tall",
"north": "none",
@@ -68061,7 +72458,7 @@
}
},
{
- "id": 22710,
+ "id": 23195,
"properties": {
"east": "tall",
"north": "none",
@@ -68072,7 +72469,7 @@
}
},
{
- "id": 22711,
+ "id": 23196,
"properties": {
"east": "tall",
"north": "none",
@@ -68083,7 +72480,7 @@
}
},
{
- "id": 22712,
+ "id": 23197,
"properties": {
"east": "tall",
"north": "none",
@@ -68094,7 +72491,7 @@
}
},
{
- "id": 22713,
+ "id": 23198,
"properties": {
"east": "tall",
"north": "none",
@@ -68105,7 +72502,7 @@
}
},
{
- "id": 22714,
+ "id": 23199,
"properties": {
"east": "tall",
"north": "none",
@@ -68116,7 +72513,7 @@
}
},
{
- "id": 22715,
+ "id": 23200,
"properties": {
"east": "tall",
"north": "none",
@@ -68127,7 +72524,7 @@
}
},
{
- "id": 22716,
+ "id": 23201,
"properties": {
"east": "tall",
"north": "none",
@@ -68138,7 +72535,7 @@
}
},
{
- "id": 22717,
+ "id": 23202,
"properties": {
"east": "tall",
"north": "none",
@@ -68149,7 +72546,7 @@
}
},
{
- "id": 22718,
+ "id": 23203,
"properties": {
"east": "tall",
"north": "none",
@@ -68160,7 +72557,7 @@
}
},
{
- "id": 22719,
+ "id": 23204,
"properties": {
"east": "tall",
"north": "none",
@@ -68171,7 +72568,7 @@
}
},
{
- "id": 22720,
+ "id": 23205,
"properties": {
"east": "tall",
"north": "none",
@@ -68182,7 +72579,7 @@
}
},
{
- "id": 22721,
+ "id": 23206,
"properties": {
"east": "tall",
"north": "none",
@@ -68193,7 +72590,7 @@
}
},
{
- "id": 22722,
+ "id": 23207,
"properties": {
"east": "tall",
"north": "none",
@@ -68204,7 +72601,7 @@
}
},
{
- "id": 22723,
+ "id": 23208,
"properties": {
"east": "tall",
"north": "none",
@@ -68215,7 +72612,7 @@
}
},
{
- "id": 22724,
+ "id": 23209,
"properties": {
"east": "tall",
"north": "none",
@@ -68226,7 +72623,7 @@
}
},
{
- "id": 22725,
+ "id": 23210,
"properties": {
"east": "tall",
"north": "none",
@@ -68237,7 +72634,7 @@
}
},
{
- "id": 22726,
+ "id": 23211,
"properties": {
"east": "tall",
"north": "low",
@@ -68248,7 +72645,7 @@
}
},
{
- "id": 22727,
+ "id": 23212,
"properties": {
"east": "tall",
"north": "low",
@@ -68259,7 +72656,7 @@
}
},
{
- "id": 22728,
+ "id": 23213,
"properties": {
"east": "tall",
"north": "low",
@@ -68270,7 +72667,7 @@
}
},
{
- "id": 22729,
+ "id": 23214,
"properties": {
"east": "tall",
"north": "low",
@@ -68281,7 +72678,7 @@
}
},
{
- "id": 22730,
+ "id": 23215,
"properties": {
"east": "tall",
"north": "low",
@@ -68292,7 +72689,7 @@
}
},
{
- "id": 22731,
+ "id": 23216,
"properties": {
"east": "tall",
"north": "low",
@@ -68303,7 +72700,7 @@
}
},
{
- "id": 22732,
+ "id": 23217,
"properties": {
"east": "tall",
"north": "low",
@@ -68314,7 +72711,7 @@
}
},
{
- "id": 22733,
+ "id": 23218,
"properties": {
"east": "tall",
"north": "low",
@@ -68325,7 +72722,7 @@
}
},
{
- "id": 22734,
+ "id": 23219,
"properties": {
"east": "tall",
"north": "low",
@@ -68336,7 +72733,7 @@
}
},
{
- "id": 22735,
+ "id": 23220,
"properties": {
"east": "tall",
"north": "low",
@@ -68347,7 +72744,7 @@
}
},
{
- "id": 22736,
+ "id": 23221,
"properties": {
"east": "tall",
"north": "low",
@@ -68358,7 +72755,7 @@
}
},
{
- "id": 22737,
+ "id": 23222,
"properties": {
"east": "tall",
"north": "low",
@@ -68369,7 +72766,7 @@
}
},
{
- "id": 22738,
+ "id": 23223,
"properties": {
"east": "tall",
"north": "low",
@@ -68380,7 +72777,7 @@
}
},
{
- "id": 22739,
+ "id": 23224,
"properties": {
"east": "tall",
"north": "low",
@@ -68391,7 +72788,7 @@
}
},
{
- "id": 22740,
+ "id": 23225,
"properties": {
"east": "tall",
"north": "low",
@@ -68402,7 +72799,7 @@
}
},
{
- "id": 22741,
+ "id": 23226,
"properties": {
"east": "tall",
"north": "low",
@@ -68413,7 +72810,7 @@
}
},
{
- "id": 22742,
+ "id": 23227,
"properties": {
"east": "tall",
"north": "low",
@@ -68424,7 +72821,7 @@
}
},
{
- "id": 22743,
+ "id": 23228,
"properties": {
"east": "tall",
"north": "low",
@@ -68435,7 +72832,7 @@
}
},
{
- "id": 22744,
+ "id": 23229,
"properties": {
"east": "tall",
"north": "low",
@@ -68446,7 +72843,7 @@
}
},
{
- "id": 22745,
+ "id": 23230,
"properties": {
"east": "tall",
"north": "low",
@@ -68457,7 +72854,7 @@
}
},
{
- "id": 22746,
+ "id": 23231,
"properties": {
"east": "tall",
"north": "low",
@@ -68468,7 +72865,7 @@
}
},
{
- "id": 22747,
+ "id": 23232,
"properties": {
"east": "tall",
"north": "low",
@@ -68479,7 +72876,7 @@
}
},
{
- "id": 22748,
+ "id": 23233,
"properties": {
"east": "tall",
"north": "low",
@@ -68490,7 +72887,7 @@
}
},
{
- "id": 22749,
+ "id": 23234,
"properties": {
"east": "tall",
"north": "low",
@@ -68501,7 +72898,7 @@
}
},
{
- "id": 22750,
+ "id": 23235,
"properties": {
"east": "tall",
"north": "low",
@@ -68512,7 +72909,7 @@
}
},
{
- "id": 22751,
+ "id": 23236,
"properties": {
"east": "tall",
"north": "low",
@@ -68523,7 +72920,7 @@
}
},
{
- "id": 22752,
+ "id": 23237,
"properties": {
"east": "tall",
"north": "low",
@@ -68534,7 +72931,7 @@
}
},
{
- "id": 22753,
+ "id": 23238,
"properties": {
"east": "tall",
"north": "low",
@@ -68545,7 +72942,7 @@
}
},
{
- "id": 22754,
+ "id": 23239,
"properties": {
"east": "tall",
"north": "low",
@@ -68556,7 +72953,7 @@
}
},
{
- "id": 22755,
+ "id": 23240,
"properties": {
"east": "tall",
"north": "low",
@@ -68567,7 +72964,7 @@
}
},
{
- "id": 22756,
+ "id": 23241,
"properties": {
"east": "tall",
"north": "low",
@@ -68578,7 +72975,7 @@
}
},
{
- "id": 22757,
+ "id": 23242,
"properties": {
"east": "tall",
"north": "low",
@@ -68589,7 +72986,7 @@
}
},
{
- "id": 22758,
+ "id": 23243,
"properties": {
"east": "tall",
"north": "low",
@@ -68600,7 +72997,7 @@
}
},
{
- "id": 22759,
+ "id": 23244,
"properties": {
"east": "tall",
"north": "low",
@@ -68611,7 +73008,7 @@
}
},
{
- "id": 22760,
+ "id": 23245,
"properties": {
"east": "tall",
"north": "low",
@@ -68622,7 +73019,7 @@
}
},
{
- "id": 22761,
+ "id": 23246,
"properties": {
"east": "tall",
"north": "low",
@@ -68633,7 +73030,7 @@
}
},
{
- "id": 22762,
+ "id": 23247,
"properties": {
"east": "tall",
"north": "tall",
@@ -68644,7 +73041,7 @@
}
},
{
- "id": 22763,
+ "id": 23248,
"properties": {
"east": "tall",
"north": "tall",
@@ -68655,7 +73052,7 @@
}
},
{
- "id": 22764,
+ "id": 23249,
"properties": {
"east": "tall",
"north": "tall",
@@ -68666,7 +73063,7 @@
}
},
{
- "id": 22765,
+ "id": 23250,
"properties": {
"east": "tall",
"north": "tall",
@@ -68677,7 +73074,7 @@
}
},
{
- "id": 22766,
+ "id": 23251,
"properties": {
"east": "tall",
"north": "tall",
@@ -68688,7 +73085,7 @@
}
},
{
- "id": 22767,
+ "id": 23252,
"properties": {
"east": "tall",
"north": "tall",
@@ -68699,7 +73096,7 @@
}
},
{
- "id": 22768,
+ "id": 23253,
"properties": {
"east": "tall",
"north": "tall",
@@ -68710,7 +73107,7 @@
}
},
{
- "id": 22769,
+ "id": 23254,
"properties": {
"east": "tall",
"north": "tall",
@@ -68721,7 +73118,7 @@
}
},
{
- "id": 22770,
+ "id": 23255,
"properties": {
"east": "tall",
"north": "tall",
@@ -68732,7 +73129,7 @@
}
},
{
- "id": 22771,
+ "id": 23256,
"properties": {
"east": "tall",
"north": "tall",
@@ -68743,7 +73140,7 @@
}
},
{
- "id": 22772,
+ "id": 23257,
"properties": {
"east": "tall",
"north": "tall",
@@ -68754,7 +73151,7 @@
}
},
{
- "id": 22773,
+ "id": 23258,
"properties": {
"east": "tall",
"north": "tall",
@@ -68765,7 +73162,7 @@
}
},
{
- "id": 22774,
+ "id": 23259,
"properties": {
"east": "tall",
"north": "tall",
@@ -68776,7 +73173,7 @@
}
},
{
- "id": 22775,
+ "id": 23260,
"properties": {
"east": "tall",
"north": "tall",
@@ -68787,7 +73184,7 @@
}
},
{
- "id": 22776,
+ "id": 23261,
"properties": {
"east": "tall",
"north": "tall",
@@ -68798,7 +73195,7 @@
}
},
{
- "id": 22777,
+ "id": 23262,
"properties": {
"east": "tall",
"north": "tall",
@@ -68809,7 +73206,7 @@
}
},
{
- "id": 22778,
+ "id": 23263,
"properties": {
"east": "tall",
"north": "tall",
@@ -68820,7 +73217,7 @@
}
},
{
- "id": 22779,
+ "id": 23264,
"properties": {
"east": "tall",
"north": "tall",
@@ -68831,7 +73228,7 @@
}
},
{
- "id": 22780,
+ "id": 23265,
"properties": {
"east": "tall",
"north": "tall",
@@ -68842,7 +73239,7 @@
}
},
{
- "id": 22781,
+ "id": 23266,
"properties": {
"east": "tall",
"north": "tall",
@@ -68853,7 +73250,7 @@
}
},
{
- "id": 22782,
+ "id": 23267,
"properties": {
"east": "tall",
"north": "tall",
@@ -68864,7 +73261,7 @@
}
},
{
- "id": 22783,
+ "id": 23268,
"properties": {
"east": "tall",
"north": "tall",
@@ -68875,7 +73272,7 @@
}
},
{
- "id": 22784,
+ "id": 23269,
"properties": {
"east": "tall",
"north": "tall",
@@ -68886,7 +73283,7 @@
}
},
{
- "id": 22785,
+ "id": 23270,
"properties": {
"east": "tall",
"north": "tall",
@@ -68897,7 +73294,7 @@
}
},
{
- "id": 22786,
+ "id": 23271,
"properties": {
"east": "tall",
"north": "tall",
@@ -68908,7 +73305,7 @@
}
},
{
- "id": 22787,
+ "id": 23272,
"properties": {
"east": "tall",
"north": "tall",
@@ -68919,7 +73316,7 @@
}
},
{
- "id": 22788,
+ "id": 23273,
"properties": {
"east": "tall",
"north": "tall",
@@ -68930,7 +73327,7 @@
}
},
{
- "id": 22789,
+ "id": 23274,
"properties": {
"east": "tall",
"north": "tall",
@@ -68941,7 +73338,7 @@
}
},
{
- "id": 22790,
+ "id": 23275,
"properties": {
"east": "tall",
"north": "tall",
@@ -68952,7 +73349,7 @@
}
},
{
- "id": 22791,
+ "id": 23276,
"properties": {
"east": "tall",
"north": "tall",
@@ -68963,7 +73360,7 @@
}
},
{
- "id": 22792,
+ "id": 23277,
"properties": {
"east": "tall",
"north": "tall",
@@ -68974,7 +73371,7 @@
}
},
{
- "id": 22793,
+ "id": 23278,
"properties": {
"east": "tall",
"north": "tall",
@@ -68985,7 +73382,7 @@
}
},
{
- "id": 22794,
+ "id": 23279,
"properties": {
"east": "tall",
"north": "tall",
@@ -68996,7 +73393,7 @@
}
},
{
- "id": 22795,
+ "id": 23280,
"properties": {
"east": "tall",
"north": "tall",
@@ -69007,7 +73404,7 @@
}
},
{
- "id": 22796,
+ "id": 23281,
"properties": {
"east": "tall",
"north": "tall",
@@ -69018,7 +73415,7 @@
}
},
{
- "id": 22797,
+ "id": 23282,
"properties": {
"east": "tall",
"north": "tall",
@@ -69034,7 +73431,7 @@
"states": [
{
"default": true,
- "id": 22387
+ "id": 22872
}
]
},
@@ -69059,7 +73456,7 @@
},
"states": [
{
- "id": 1917,
+ "id": 1964,
"properties": {
"powered": "true",
"shape": "north_south",
@@ -69067,7 +73464,7 @@
}
},
{
- "id": 1918,
+ "id": 1965,
"properties": {
"powered": "true",
"shape": "north_south",
@@ -69075,7 +73472,7 @@
}
},
{
- "id": 1919,
+ "id": 1966,
"properties": {
"powered": "true",
"shape": "east_west",
@@ -69083,7 +73480,7 @@
}
},
{
- "id": 1920,
+ "id": 1967,
"properties": {
"powered": "true",
"shape": "east_west",
@@ -69091,7 +73488,7 @@
}
},
{
- "id": 1921,
+ "id": 1968,
"properties": {
"powered": "true",
"shape": "ascending_east",
@@ -69099,7 +73496,7 @@
}
},
{
- "id": 1922,
+ "id": 1969,
"properties": {
"powered": "true",
"shape": "ascending_east",
@@ -69107,7 +73504,7 @@
}
},
{
- "id": 1923,
+ "id": 1970,
"properties": {
"powered": "true",
"shape": "ascending_west",
@@ -69115,7 +73512,7 @@
}
},
{
- "id": 1924,
+ "id": 1971,
"properties": {
"powered": "true",
"shape": "ascending_west",
@@ -69123,7 +73520,7 @@
}
},
{
- "id": 1925,
+ "id": 1972,
"properties": {
"powered": "true",
"shape": "ascending_north",
@@ -69131,7 +73528,7 @@
}
},
{
- "id": 1926,
+ "id": 1973,
"properties": {
"powered": "true",
"shape": "ascending_north",
@@ -69139,7 +73536,7 @@
}
},
{
- "id": 1927,
+ "id": 1974,
"properties": {
"powered": "true",
"shape": "ascending_south",
@@ -69147,7 +73544,7 @@
}
},
{
- "id": 1928,
+ "id": 1975,
"properties": {
"powered": "true",
"shape": "ascending_south",
@@ -69155,7 +73552,7 @@
}
},
{
- "id": 1929,
+ "id": 1976,
"properties": {
"powered": "false",
"shape": "north_south",
@@ -69164,7 +73561,7 @@
},
{
"default": true,
- "id": 1930,
+ "id": 1977,
"properties": {
"powered": "false",
"shape": "north_south",
@@ -69172,7 +73569,7 @@
}
},
{
- "id": 1931,
+ "id": 1978,
"properties": {
"powered": "false",
"shape": "east_west",
@@ -69180,7 +73577,7 @@
}
},
{
- "id": 1932,
+ "id": 1979,
"properties": {
"powered": "false",
"shape": "east_west",
@@ -69188,7 +73585,7 @@
}
},
{
- "id": 1933,
+ "id": 1980,
"properties": {
"powered": "false",
"shape": "ascending_east",
@@ -69196,7 +73593,7 @@
}
},
{
- "id": 1934,
+ "id": 1981,
"properties": {
"powered": "false",
"shape": "ascending_east",
@@ -69204,7 +73601,7 @@
}
},
{
- "id": 1935,
+ "id": 1982,
"properties": {
"powered": "false",
"shape": "ascending_west",
@@ -69212,7 +73609,7 @@
}
},
{
- "id": 1936,
+ "id": 1983,
"properties": {
"powered": "false",
"shape": "ascending_west",
@@ -69220,7 +73617,7 @@
}
},
{
- "id": 1937,
+ "id": 1984,
"properties": {
"powered": "false",
"shape": "ascending_north",
@@ -69228,7 +73625,7 @@
}
},
{
- "id": 1938,
+ "id": 1985,
"properties": {
"powered": "false",
"shape": "ascending_north",
@@ -69236,7 +73633,7 @@
}
},
{
- "id": 1939,
+ "id": 1986,
"properties": {
"powered": "false",
"shape": "ascending_south",
@@ -69244,7 +73641,7 @@
}
},
{
- "id": 1940,
+ "id": 1987,
"properties": {
"powered": "false",
"shape": "ascending_south",
@@ -69257,7 +73654,7 @@
"states": [
{
"default": true,
- "id": 4224
+ "id": 4272
}
]
},
@@ -69265,7 +73662,7 @@
"states": [
{
"default": true,
- "id": 4222
+ "id": 4270
}
]
},
@@ -69291,21 +73688,21 @@
},
"states": [
{
- "id": 13526,
+ "id": 13995,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 13527,
+ "id": 13996,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 13528,
+ "id": 13997,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -69313,21 +73710,21 @@
},
{
"default": true,
- "id": 13529,
+ "id": 13998,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 13530,
+ "id": 13999,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 13531,
+ "id": 14000,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -69361,7 +73758,7 @@
},
"states": [
{
- "id": 13374,
+ "id": 13843,
"properties": {
"facing": "north",
"half": "top",
@@ -69370,7 +73767,7 @@
}
},
{
- "id": 13375,
+ "id": 13844,
"properties": {
"facing": "north",
"half": "top",
@@ -69379,7 +73776,7 @@
}
},
{
- "id": 13376,
+ "id": 13845,
"properties": {
"facing": "north",
"half": "top",
@@ -69388,7 +73785,7 @@
}
},
{
- "id": 13377,
+ "id": 13846,
"properties": {
"facing": "north",
"half": "top",
@@ -69397,7 +73794,7 @@
}
},
{
- "id": 13378,
+ "id": 13847,
"properties": {
"facing": "north",
"half": "top",
@@ -69406,7 +73803,7 @@
}
},
{
- "id": 13379,
+ "id": 13848,
"properties": {
"facing": "north",
"half": "top",
@@ -69415,7 +73812,7 @@
}
},
{
- "id": 13380,
+ "id": 13849,
"properties": {
"facing": "north",
"half": "top",
@@ -69424,7 +73821,7 @@
}
},
{
- "id": 13381,
+ "id": 13850,
"properties": {
"facing": "north",
"half": "top",
@@ -69433,7 +73830,7 @@
}
},
{
- "id": 13382,
+ "id": 13851,
"properties": {
"facing": "north",
"half": "top",
@@ -69442,7 +73839,7 @@
}
},
{
- "id": 13383,
+ "id": 13852,
"properties": {
"facing": "north",
"half": "top",
@@ -69451,7 +73848,7 @@
}
},
{
- "id": 13384,
+ "id": 13853,
"properties": {
"facing": "north",
"half": "bottom",
@@ -69461,7 +73858,7 @@
},
{
"default": true,
- "id": 13385,
+ "id": 13854,
"properties": {
"facing": "north",
"half": "bottom",
@@ -69470,7 +73867,7 @@
}
},
{
- "id": 13386,
+ "id": 13855,
"properties": {
"facing": "north",
"half": "bottom",
@@ -69479,7 +73876,7 @@
}
},
{
- "id": 13387,
+ "id": 13856,
"properties": {
"facing": "north",
"half": "bottom",
@@ -69488,7 +73885,7 @@
}
},
{
- "id": 13388,
+ "id": 13857,
"properties": {
"facing": "north",
"half": "bottom",
@@ -69497,7 +73894,7 @@
}
},
{
- "id": 13389,
+ "id": 13858,
"properties": {
"facing": "north",
"half": "bottom",
@@ -69506,7 +73903,7 @@
}
},
{
- "id": 13390,
+ "id": 13859,
"properties": {
"facing": "north",
"half": "bottom",
@@ -69515,7 +73912,7 @@
}
},
{
- "id": 13391,
+ "id": 13860,
"properties": {
"facing": "north",
"half": "bottom",
@@ -69524,7 +73921,7 @@
}
},
{
- "id": 13392,
+ "id": 13861,
"properties": {
"facing": "north",
"half": "bottom",
@@ -69533,7 +73930,7 @@
}
},
{
- "id": 13393,
+ "id": 13862,
"properties": {
"facing": "north",
"half": "bottom",
@@ -69542,7 +73939,7 @@
}
},
{
- "id": 13394,
+ "id": 13863,
"properties": {
"facing": "south",
"half": "top",
@@ -69551,7 +73948,7 @@
}
},
{
- "id": 13395,
+ "id": 13864,
"properties": {
"facing": "south",
"half": "top",
@@ -69560,7 +73957,7 @@
}
},
{
- "id": 13396,
+ "id": 13865,
"properties": {
"facing": "south",
"half": "top",
@@ -69569,7 +73966,7 @@
}
},
{
- "id": 13397,
+ "id": 13866,
"properties": {
"facing": "south",
"half": "top",
@@ -69578,7 +73975,7 @@
}
},
{
- "id": 13398,
+ "id": 13867,
"properties": {
"facing": "south",
"half": "top",
@@ -69587,7 +73984,7 @@
}
},
{
- "id": 13399,
+ "id": 13868,
"properties": {
"facing": "south",
"half": "top",
@@ -69596,7 +73993,7 @@
}
},
{
- "id": 13400,
+ "id": 13869,
"properties": {
"facing": "south",
"half": "top",
@@ -69605,7 +74002,7 @@
}
},
{
- "id": 13401,
+ "id": 13870,
"properties": {
"facing": "south",
"half": "top",
@@ -69614,7 +74011,7 @@
}
},
{
- "id": 13402,
+ "id": 13871,
"properties": {
"facing": "south",
"half": "top",
@@ -69623,7 +74020,7 @@
}
},
{
- "id": 13403,
+ "id": 13872,
"properties": {
"facing": "south",
"half": "top",
@@ -69632,7 +74029,7 @@
}
},
{
- "id": 13404,
+ "id": 13873,
"properties": {
"facing": "south",
"half": "bottom",
@@ -69641,7 +74038,7 @@
}
},
{
- "id": 13405,
+ "id": 13874,
"properties": {
"facing": "south",
"half": "bottom",
@@ -69650,7 +74047,7 @@
}
},
{
- "id": 13406,
+ "id": 13875,
"properties": {
"facing": "south",
"half": "bottom",
@@ -69659,7 +74056,7 @@
}
},
{
- "id": 13407,
+ "id": 13876,
"properties": {
"facing": "south",
"half": "bottom",
@@ -69668,7 +74065,7 @@
}
},
{
- "id": 13408,
+ "id": 13877,
"properties": {
"facing": "south",
"half": "bottom",
@@ -69677,7 +74074,7 @@
}
},
{
- "id": 13409,
+ "id": 13878,
"properties": {
"facing": "south",
"half": "bottom",
@@ -69686,7 +74083,7 @@
}
},
{
- "id": 13410,
+ "id": 13879,
"properties": {
"facing": "south",
"half": "bottom",
@@ -69695,7 +74092,7 @@
}
},
{
- "id": 13411,
+ "id": 13880,
"properties": {
"facing": "south",
"half": "bottom",
@@ -69704,7 +74101,7 @@
}
},
{
- "id": 13412,
+ "id": 13881,
"properties": {
"facing": "south",
"half": "bottom",
@@ -69713,7 +74110,7 @@
}
},
{
- "id": 13413,
+ "id": 13882,
"properties": {
"facing": "south",
"half": "bottom",
@@ -69722,7 +74119,7 @@
}
},
{
- "id": 13414,
+ "id": 13883,
"properties": {
"facing": "west",
"half": "top",
@@ -69731,7 +74128,7 @@
}
},
{
- "id": 13415,
+ "id": 13884,
"properties": {
"facing": "west",
"half": "top",
@@ -69740,7 +74137,7 @@
}
},
{
- "id": 13416,
+ "id": 13885,
"properties": {
"facing": "west",
"half": "top",
@@ -69749,7 +74146,7 @@
}
},
{
- "id": 13417,
+ "id": 13886,
"properties": {
"facing": "west",
"half": "top",
@@ -69758,7 +74155,7 @@
}
},
{
- "id": 13418,
+ "id": 13887,
"properties": {
"facing": "west",
"half": "top",
@@ -69767,7 +74164,7 @@
}
},
{
- "id": 13419,
+ "id": 13888,
"properties": {
"facing": "west",
"half": "top",
@@ -69776,7 +74173,7 @@
}
},
{
- "id": 13420,
+ "id": 13889,
"properties": {
"facing": "west",
"half": "top",
@@ -69785,7 +74182,7 @@
}
},
{
- "id": 13421,
+ "id": 13890,
"properties": {
"facing": "west",
"half": "top",
@@ -69794,7 +74191,7 @@
}
},
{
- "id": 13422,
+ "id": 13891,
"properties": {
"facing": "west",
"half": "top",
@@ -69803,7 +74200,7 @@
}
},
{
- "id": 13423,
+ "id": 13892,
"properties": {
"facing": "west",
"half": "top",
@@ -69812,7 +74209,7 @@
}
},
{
- "id": 13424,
+ "id": 13893,
"properties": {
"facing": "west",
"half": "bottom",
@@ -69821,7 +74218,7 @@
}
},
{
- "id": 13425,
+ "id": 13894,
"properties": {
"facing": "west",
"half": "bottom",
@@ -69830,7 +74227,7 @@
}
},
{
- "id": 13426,
+ "id": 13895,
"properties": {
"facing": "west",
"half": "bottom",
@@ -69839,7 +74236,7 @@
}
},
{
- "id": 13427,
+ "id": 13896,
"properties": {
"facing": "west",
"half": "bottom",
@@ -69848,7 +74245,7 @@
}
},
{
- "id": 13428,
+ "id": 13897,
"properties": {
"facing": "west",
"half": "bottom",
@@ -69857,7 +74254,7 @@
}
},
{
- "id": 13429,
+ "id": 13898,
"properties": {
"facing": "west",
"half": "bottom",
@@ -69866,7 +74263,7 @@
}
},
{
- "id": 13430,
+ "id": 13899,
"properties": {
"facing": "west",
"half": "bottom",
@@ -69875,7 +74272,7 @@
}
},
{
- "id": 13431,
+ "id": 13900,
"properties": {
"facing": "west",
"half": "bottom",
@@ -69884,7 +74281,7 @@
}
},
{
- "id": 13432,
+ "id": 13901,
"properties": {
"facing": "west",
"half": "bottom",
@@ -69893,7 +74290,7 @@
}
},
{
- "id": 13433,
+ "id": 13902,
"properties": {
"facing": "west",
"half": "bottom",
@@ -69902,7 +74299,7 @@
}
},
{
- "id": 13434,
+ "id": 13903,
"properties": {
"facing": "east",
"half": "top",
@@ -69911,7 +74308,7 @@
}
},
{
- "id": 13435,
+ "id": 13904,
"properties": {
"facing": "east",
"half": "top",
@@ -69920,7 +74317,7 @@
}
},
{
- "id": 13436,
+ "id": 13905,
"properties": {
"facing": "east",
"half": "top",
@@ -69929,7 +74326,7 @@
}
},
{
- "id": 13437,
+ "id": 13906,
"properties": {
"facing": "east",
"half": "top",
@@ -69938,7 +74335,7 @@
}
},
{
- "id": 13438,
+ "id": 13907,
"properties": {
"facing": "east",
"half": "top",
@@ -69947,7 +74344,7 @@
}
},
{
- "id": 13439,
+ "id": 13908,
"properties": {
"facing": "east",
"half": "top",
@@ -69956,7 +74353,7 @@
}
},
{
- "id": 13440,
+ "id": 13909,
"properties": {
"facing": "east",
"half": "top",
@@ -69965,7 +74362,7 @@
}
},
{
- "id": 13441,
+ "id": 13910,
"properties": {
"facing": "east",
"half": "top",
@@ -69974,7 +74371,7 @@
}
},
{
- "id": 13442,
+ "id": 13911,
"properties": {
"facing": "east",
"half": "top",
@@ -69983,7 +74380,7 @@
}
},
{
- "id": 13443,
+ "id": 13912,
"properties": {
"facing": "east",
"half": "top",
@@ -69992,7 +74389,7 @@
}
},
{
- "id": 13444,
+ "id": 13913,
"properties": {
"facing": "east",
"half": "bottom",
@@ -70001,7 +74398,7 @@
}
},
{
- "id": 13445,
+ "id": 13914,
"properties": {
"facing": "east",
"half": "bottom",
@@ -70010,7 +74407,7 @@
}
},
{
- "id": 13446,
+ "id": 13915,
"properties": {
"facing": "east",
"half": "bottom",
@@ -70019,7 +74416,7 @@
}
},
{
- "id": 13447,
+ "id": 13916,
"properties": {
"facing": "east",
"half": "bottom",
@@ -70028,7 +74425,7 @@
}
},
{
- "id": 13448,
+ "id": 13917,
"properties": {
"facing": "east",
"half": "bottom",
@@ -70037,7 +74434,7 @@
}
},
{
- "id": 13449,
+ "id": 13918,
"properties": {
"facing": "east",
"half": "bottom",
@@ -70046,7 +74443,7 @@
}
},
{
- "id": 13450,
+ "id": 13919,
"properties": {
"facing": "east",
"half": "bottom",
@@ -70055,7 +74452,7 @@
}
},
{
- "id": 13451,
+ "id": 13920,
"properties": {
"facing": "east",
"half": "bottom",
@@ -70064,7 +74461,7 @@
}
},
{
- "id": 13452,
+ "id": 13921,
"properties": {
"facing": "east",
"half": "bottom",
@@ -70073,7 +74470,7 @@
}
},
{
- "id": 13453,
+ "id": 13922,
"properties": {
"facing": "east",
"half": "bottom",
@@ -70116,7 +74513,7 @@
},
"states": [
{
- "id": 17420,
+ "id": 17889,
"properties": {
"east": "none",
"north": "none",
@@ -70127,7 +74524,7 @@
}
},
{
- "id": 17421,
+ "id": 17890,
"properties": {
"east": "none",
"north": "none",
@@ -70138,7 +74535,7 @@
}
},
{
- "id": 17422,
+ "id": 17891,
"properties": {
"east": "none",
"north": "none",
@@ -70150,7 +74547,7 @@
},
{
"default": true,
- "id": 17423,
+ "id": 17892,
"properties": {
"east": "none",
"north": "none",
@@ -70161,7 +74558,7 @@
}
},
{
- "id": 17424,
+ "id": 17893,
"properties": {
"east": "none",
"north": "none",
@@ -70172,7 +74569,7 @@
}
},
{
- "id": 17425,
+ "id": 17894,
"properties": {
"east": "none",
"north": "none",
@@ -70183,7 +74580,7 @@
}
},
{
- "id": 17426,
+ "id": 17895,
"properties": {
"east": "none",
"north": "none",
@@ -70194,7 +74591,7 @@
}
},
{
- "id": 17427,
+ "id": 17896,
"properties": {
"east": "none",
"north": "none",
@@ -70205,7 +74602,7 @@
}
},
{
- "id": 17428,
+ "id": 17897,
"properties": {
"east": "none",
"north": "none",
@@ -70216,7 +74613,7 @@
}
},
{
- "id": 17429,
+ "id": 17898,
"properties": {
"east": "none",
"north": "none",
@@ -70227,7 +74624,7 @@
}
},
{
- "id": 17430,
+ "id": 17899,
"properties": {
"east": "none",
"north": "none",
@@ -70238,7 +74635,7 @@
}
},
{
- "id": 17431,
+ "id": 17900,
"properties": {
"east": "none",
"north": "none",
@@ -70249,7 +74646,7 @@
}
},
{
- "id": 17432,
+ "id": 17901,
"properties": {
"east": "none",
"north": "none",
@@ -70260,7 +74657,7 @@
}
},
{
- "id": 17433,
+ "id": 17902,
"properties": {
"east": "none",
"north": "none",
@@ -70271,7 +74668,7 @@
}
},
{
- "id": 17434,
+ "id": 17903,
"properties": {
"east": "none",
"north": "none",
@@ -70282,7 +74679,7 @@
}
},
{
- "id": 17435,
+ "id": 17904,
"properties": {
"east": "none",
"north": "none",
@@ -70293,7 +74690,7 @@
}
},
{
- "id": 17436,
+ "id": 17905,
"properties": {
"east": "none",
"north": "none",
@@ -70304,7 +74701,7 @@
}
},
{
- "id": 17437,
+ "id": 17906,
"properties": {
"east": "none",
"north": "none",
@@ -70315,7 +74712,7 @@
}
},
{
- "id": 17438,
+ "id": 17907,
"properties": {
"east": "none",
"north": "none",
@@ -70326,7 +74723,7 @@
}
},
{
- "id": 17439,
+ "id": 17908,
"properties": {
"east": "none",
"north": "none",
@@ -70337,7 +74734,7 @@
}
},
{
- "id": 17440,
+ "id": 17909,
"properties": {
"east": "none",
"north": "none",
@@ -70348,7 +74745,7 @@
}
},
{
- "id": 17441,
+ "id": 17910,
"properties": {
"east": "none",
"north": "none",
@@ -70359,7 +74756,7 @@
}
},
{
- "id": 17442,
+ "id": 17911,
"properties": {
"east": "none",
"north": "none",
@@ -70370,7 +74767,7 @@
}
},
{
- "id": 17443,
+ "id": 17912,
"properties": {
"east": "none",
"north": "none",
@@ -70381,7 +74778,7 @@
}
},
{
- "id": 17444,
+ "id": 17913,
"properties": {
"east": "none",
"north": "none",
@@ -70392,7 +74789,7 @@
}
},
{
- "id": 17445,
+ "id": 17914,
"properties": {
"east": "none",
"north": "none",
@@ -70403,7 +74800,7 @@
}
},
{
- "id": 17446,
+ "id": 17915,
"properties": {
"east": "none",
"north": "none",
@@ -70414,7 +74811,7 @@
}
},
{
- "id": 17447,
+ "id": 17916,
"properties": {
"east": "none",
"north": "none",
@@ -70425,7 +74822,7 @@
}
},
{
- "id": 17448,
+ "id": 17917,
"properties": {
"east": "none",
"north": "none",
@@ -70436,7 +74833,7 @@
}
},
{
- "id": 17449,
+ "id": 17918,
"properties": {
"east": "none",
"north": "none",
@@ -70447,7 +74844,7 @@
}
},
{
- "id": 17450,
+ "id": 17919,
"properties": {
"east": "none",
"north": "none",
@@ -70458,7 +74855,7 @@
}
},
{
- "id": 17451,
+ "id": 17920,
"properties": {
"east": "none",
"north": "none",
@@ -70469,7 +74866,7 @@
}
},
{
- "id": 17452,
+ "id": 17921,
"properties": {
"east": "none",
"north": "none",
@@ -70480,7 +74877,7 @@
}
},
{
- "id": 17453,
+ "id": 17922,
"properties": {
"east": "none",
"north": "none",
@@ -70491,7 +74888,7 @@
}
},
{
- "id": 17454,
+ "id": 17923,
"properties": {
"east": "none",
"north": "none",
@@ -70502,7 +74899,7 @@
}
},
{
- "id": 17455,
+ "id": 17924,
"properties": {
"east": "none",
"north": "none",
@@ -70513,7 +74910,7 @@
}
},
{
- "id": 17456,
+ "id": 17925,
"properties": {
"east": "none",
"north": "low",
@@ -70524,7 +74921,7 @@
}
},
{
- "id": 17457,
+ "id": 17926,
"properties": {
"east": "none",
"north": "low",
@@ -70535,7 +74932,7 @@
}
},
{
- "id": 17458,
+ "id": 17927,
"properties": {
"east": "none",
"north": "low",
@@ -70546,7 +74943,7 @@
}
},
{
- "id": 17459,
+ "id": 17928,
"properties": {
"east": "none",
"north": "low",
@@ -70557,7 +74954,7 @@
}
},
{
- "id": 17460,
+ "id": 17929,
"properties": {
"east": "none",
"north": "low",
@@ -70568,7 +74965,7 @@
}
},
{
- "id": 17461,
+ "id": 17930,
"properties": {
"east": "none",
"north": "low",
@@ -70579,7 +74976,7 @@
}
},
{
- "id": 17462,
+ "id": 17931,
"properties": {
"east": "none",
"north": "low",
@@ -70590,7 +74987,7 @@
}
},
{
- "id": 17463,
+ "id": 17932,
"properties": {
"east": "none",
"north": "low",
@@ -70601,7 +74998,7 @@
}
},
{
- "id": 17464,
+ "id": 17933,
"properties": {
"east": "none",
"north": "low",
@@ -70612,7 +75009,7 @@
}
},
{
- "id": 17465,
+ "id": 17934,
"properties": {
"east": "none",
"north": "low",
@@ -70623,7 +75020,7 @@
}
},
{
- "id": 17466,
+ "id": 17935,
"properties": {
"east": "none",
"north": "low",
@@ -70634,7 +75031,7 @@
}
},
{
- "id": 17467,
+ "id": 17936,
"properties": {
"east": "none",
"north": "low",
@@ -70645,7 +75042,7 @@
}
},
{
- "id": 17468,
+ "id": 17937,
"properties": {
"east": "none",
"north": "low",
@@ -70656,7 +75053,7 @@
}
},
{
- "id": 17469,
+ "id": 17938,
"properties": {
"east": "none",
"north": "low",
@@ -70667,7 +75064,7 @@
}
},
{
- "id": 17470,
+ "id": 17939,
"properties": {
"east": "none",
"north": "low",
@@ -70678,7 +75075,7 @@
}
},
{
- "id": 17471,
+ "id": 17940,
"properties": {
"east": "none",
"north": "low",
@@ -70689,7 +75086,7 @@
}
},
{
- "id": 17472,
+ "id": 17941,
"properties": {
"east": "none",
"north": "low",
@@ -70700,7 +75097,7 @@
}
},
{
- "id": 17473,
+ "id": 17942,
"properties": {
"east": "none",
"north": "low",
@@ -70711,7 +75108,7 @@
}
},
{
- "id": 17474,
+ "id": 17943,
"properties": {
"east": "none",
"north": "low",
@@ -70722,7 +75119,7 @@
}
},
{
- "id": 17475,
+ "id": 17944,
"properties": {
"east": "none",
"north": "low",
@@ -70733,7 +75130,7 @@
}
},
{
- "id": 17476,
+ "id": 17945,
"properties": {
"east": "none",
"north": "low",
@@ -70744,7 +75141,7 @@
}
},
{
- "id": 17477,
+ "id": 17946,
"properties": {
"east": "none",
"north": "low",
@@ -70755,7 +75152,7 @@
}
},
{
- "id": 17478,
+ "id": 17947,
"properties": {
"east": "none",
"north": "low",
@@ -70766,7 +75163,7 @@
}
},
{
- "id": 17479,
+ "id": 17948,
"properties": {
"east": "none",
"north": "low",
@@ -70777,7 +75174,7 @@
}
},
{
- "id": 17480,
+ "id": 17949,
"properties": {
"east": "none",
"north": "low",
@@ -70788,7 +75185,7 @@
}
},
{
- "id": 17481,
+ "id": 17950,
"properties": {
"east": "none",
"north": "low",
@@ -70799,7 +75196,7 @@
}
},
{
- "id": 17482,
+ "id": 17951,
"properties": {
"east": "none",
"north": "low",
@@ -70810,7 +75207,7 @@
}
},
{
- "id": 17483,
+ "id": 17952,
"properties": {
"east": "none",
"north": "low",
@@ -70821,7 +75218,7 @@
}
},
{
- "id": 17484,
+ "id": 17953,
"properties": {
"east": "none",
"north": "low",
@@ -70832,7 +75229,7 @@
}
},
{
- "id": 17485,
+ "id": 17954,
"properties": {
"east": "none",
"north": "low",
@@ -70843,7 +75240,7 @@
}
},
{
- "id": 17486,
+ "id": 17955,
"properties": {
"east": "none",
"north": "low",
@@ -70854,7 +75251,7 @@
}
},
{
- "id": 17487,
+ "id": 17956,
"properties": {
"east": "none",
"north": "low",
@@ -70865,7 +75262,7 @@
}
},
{
- "id": 17488,
+ "id": 17957,
"properties": {
"east": "none",
"north": "low",
@@ -70876,7 +75273,7 @@
}
},
{
- "id": 17489,
+ "id": 17958,
"properties": {
"east": "none",
"north": "low",
@@ -70887,7 +75284,7 @@
}
},
{
- "id": 17490,
+ "id": 17959,
"properties": {
"east": "none",
"north": "low",
@@ -70898,7 +75295,7 @@
}
},
{
- "id": 17491,
+ "id": 17960,
"properties": {
"east": "none",
"north": "low",
@@ -70909,7 +75306,7 @@
}
},
{
- "id": 17492,
+ "id": 17961,
"properties": {
"east": "none",
"north": "tall",
@@ -70920,7 +75317,7 @@
}
},
{
- "id": 17493,
+ "id": 17962,
"properties": {
"east": "none",
"north": "tall",
@@ -70931,7 +75328,7 @@
}
},
{
- "id": 17494,
+ "id": 17963,
"properties": {
"east": "none",
"north": "tall",
@@ -70942,7 +75339,7 @@
}
},
{
- "id": 17495,
+ "id": 17964,
"properties": {
"east": "none",
"north": "tall",
@@ -70953,7 +75350,7 @@
}
},
{
- "id": 17496,
+ "id": 17965,
"properties": {
"east": "none",
"north": "tall",
@@ -70964,7 +75361,7 @@
}
},
{
- "id": 17497,
+ "id": 17966,
"properties": {
"east": "none",
"north": "tall",
@@ -70975,7 +75372,7 @@
}
},
{
- "id": 17498,
+ "id": 17967,
"properties": {
"east": "none",
"north": "tall",
@@ -70986,7 +75383,7 @@
}
},
{
- "id": 17499,
+ "id": 17968,
"properties": {
"east": "none",
"north": "tall",
@@ -70997,7 +75394,7 @@
}
},
{
- "id": 17500,
+ "id": 17969,
"properties": {
"east": "none",
"north": "tall",
@@ -71008,7 +75405,7 @@
}
},
{
- "id": 17501,
+ "id": 17970,
"properties": {
"east": "none",
"north": "tall",
@@ -71019,7 +75416,7 @@
}
},
{
- "id": 17502,
+ "id": 17971,
"properties": {
"east": "none",
"north": "tall",
@@ -71030,7 +75427,7 @@
}
},
{
- "id": 17503,
+ "id": 17972,
"properties": {
"east": "none",
"north": "tall",
@@ -71041,7 +75438,7 @@
}
},
{
- "id": 17504,
+ "id": 17973,
"properties": {
"east": "none",
"north": "tall",
@@ -71052,7 +75449,7 @@
}
},
{
- "id": 17505,
+ "id": 17974,
"properties": {
"east": "none",
"north": "tall",
@@ -71063,7 +75460,7 @@
}
},
{
- "id": 17506,
+ "id": 17975,
"properties": {
"east": "none",
"north": "tall",
@@ -71074,7 +75471,7 @@
}
},
{
- "id": 17507,
+ "id": 17976,
"properties": {
"east": "none",
"north": "tall",
@@ -71085,7 +75482,7 @@
}
},
{
- "id": 17508,
+ "id": 17977,
"properties": {
"east": "none",
"north": "tall",
@@ -71096,7 +75493,7 @@
}
},
{
- "id": 17509,
+ "id": 17978,
"properties": {
"east": "none",
"north": "tall",
@@ -71107,7 +75504,7 @@
}
},
{
- "id": 17510,
+ "id": 17979,
"properties": {
"east": "none",
"north": "tall",
@@ -71118,7 +75515,7 @@
}
},
{
- "id": 17511,
+ "id": 17980,
"properties": {
"east": "none",
"north": "tall",
@@ -71129,7 +75526,7 @@
}
},
{
- "id": 17512,
+ "id": 17981,
"properties": {
"east": "none",
"north": "tall",
@@ -71140,7 +75537,7 @@
}
},
{
- "id": 17513,
+ "id": 17982,
"properties": {
"east": "none",
"north": "tall",
@@ -71151,7 +75548,7 @@
}
},
{
- "id": 17514,
+ "id": 17983,
"properties": {
"east": "none",
"north": "tall",
@@ -71162,7 +75559,7 @@
}
},
{
- "id": 17515,
+ "id": 17984,
"properties": {
"east": "none",
"north": "tall",
@@ -71173,7 +75570,7 @@
}
},
{
- "id": 17516,
+ "id": 17985,
"properties": {
"east": "none",
"north": "tall",
@@ -71184,7 +75581,7 @@
}
},
{
- "id": 17517,
+ "id": 17986,
"properties": {
"east": "none",
"north": "tall",
@@ -71195,7 +75592,7 @@
}
},
{
- "id": 17518,
+ "id": 17987,
"properties": {
"east": "none",
"north": "tall",
@@ -71206,7 +75603,7 @@
}
},
{
- "id": 17519,
+ "id": 17988,
"properties": {
"east": "none",
"north": "tall",
@@ -71217,7 +75614,7 @@
}
},
{
- "id": 17520,
+ "id": 17989,
"properties": {
"east": "none",
"north": "tall",
@@ -71228,7 +75625,7 @@
}
},
{
- "id": 17521,
+ "id": 17990,
"properties": {
"east": "none",
"north": "tall",
@@ -71239,7 +75636,7 @@
}
},
{
- "id": 17522,
+ "id": 17991,
"properties": {
"east": "none",
"north": "tall",
@@ -71250,7 +75647,7 @@
}
},
{
- "id": 17523,
+ "id": 17992,
"properties": {
"east": "none",
"north": "tall",
@@ -71261,7 +75658,7 @@
}
},
{
- "id": 17524,
+ "id": 17993,
"properties": {
"east": "none",
"north": "tall",
@@ -71272,7 +75669,7 @@
}
},
{
- "id": 17525,
+ "id": 17994,
"properties": {
"east": "none",
"north": "tall",
@@ -71283,7 +75680,7 @@
}
},
{
- "id": 17526,
+ "id": 17995,
"properties": {
"east": "none",
"north": "tall",
@@ -71294,7 +75691,7 @@
}
},
{
- "id": 17527,
+ "id": 17996,
"properties": {
"east": "none",
"north": "tall",
@@ -71305,7 +75702,7 @@
}
},
{
- "id": 17528,
+ "id": 17997,
"properties": {
"east": "low",
"north": "none",
@@ -71316,7 +75713,7 @@
}
},
{
- "id": 17529,
+ "id": 17998,
"properties": {
"east": "low",
"north": "none",
@@ -71327,7 +75724,7 @@
}
},
{
- "id": 17530,
+ "id": 17999,
"properties": {
"east": "low",
"north": "none",
@@ -71338,7 +75735,7 @@
}
},
{
- "id": 17531,
+ "id": 18000,
"properties": {
"east": "low",
"north": "none",
@@ -71349,7 +75746,7 @@
}
},
{
- "id": 17532,
+ "id": 18001,
"properties": {
"east": "low",
"north": "none",
@@ -71360,7 +75757,7 @@
}
},
{
- "id": 17533,
+ "id": 18002,
"properties": {
"east": "low",
"north": "none",
@@ -71371,7 +75768,7 @@
}
},
{
- "id": 17534,
+ "id": 18003,
"properties": {
"east": "low",
"north": "none",
@@ -71382,7 +75779,7 @@
}
},
{
- "id": 17535,
+ "id": 18004,
"properties": {
"east": "low",
"north": "none",
@@ -71393,7 +75790,7 @@
}
},
{
- "id": 17536,
+ "id": 18005,
"properties": {
"east": "low",
"north": "none",
@@ -71404,7 +75801,7 @@
}
},
{
- "id": 17537,
+ "id": 18006,
"properties": {
"east": "low",
"north": "none",
@@ -71415,7 +75812,7 @@
}
},
{
- "id": 17538,
+ "id": 18007,
"properties": {
"east": "low",
"north": "none",
@@ -71426,7 +75823,7 @@
}
},
{
- "id": 17539,
+ "id": 18008,
"properties": {
"east": "low",
"north": "none",
@@ -71437,7 +75834,7 @@
}
},
{
- "id": 17540,
+ "id": 18009,
"properties": {
"east": "low",
"north": "none",
@@ -71448,7 +75845,7 @@
}
},
{
- "id": 17541,
+ "id": 18010,
"properties": {
"east": "low",
"north": "none",
@@ -71459,7 +75856,7 @@
}
},
{
- "id": 17542,
+ "id": 18011,
"properties": {
"east": "low",
"north": "none",
@@ -71470,7 +75867,7 @@
}
},
{
- "id": 17543,
+ "id": 18012,
"properties": {
"east": "low",
"north": "none",
@@ -71481,7 +75878,7 @@
}
},
{
- "id": 17544,
+ "id": 18013,
"properties": {
"east": "low",
"north": "none",
@@ -71492,7 +75889,7 @@
}
},
{
- "id": 17545,
+ "id": 18014,
"properties": {
"east": "low",
"north": "none",
@@ -71503,7 +75900,7 @@
}
},
{
- "id": 17546,
+ "id": 18015,
"properties": {
"east": "low",
"north": "none",
@@ -71514,7 +75911,7 @@
}
},
{
- "id": 17547,
+ "id": 18016,
"properties": {
"east": "low",
"north": "none",
@@ -71525,7 +75922,7 @@
}
},
{
- "id": 17548,
+ "id": 18017,
"properties": {
"east": "low",
"north": "none",
@@ -71536,7 +75933,7 @@
}
},
{
- "id": 17549,
+ "id": 18018,
"properties": {
"east": "low",
"north": "none",
@@ -71547,7 +75944,7 @@
}
},
{
- "id": 17550,
+ "id": 18019,
"properties": {
"east": "low",
"north": "none",
@@ -71558,7 +75955,7 @@
}
},
{
- "id": 17551,
+ "id": 18020,
"properties": {
"east": "low",
"north": "none",
@@ -71569,7 +75966,7 @@
}
},
{
- "id": 17552,
+ "id": 18021,
"properties": {
"east": "low",
"north": "none",
@@ -71580,7 +75977,7 @@
}
},
{
- "id": 17553,
+ "id": 18022,
"properties": {
"east": "low",
"north": "none",
@@ -71591,7 +75988,7 @@
}
},
{
- "id": 17554,
+ "id": 18023,
"properties": {
"east": "low",
"north": "none",
@@ -71602,7 +75999,7 @@
}
},
{
- "id": 17555,
+ "id": 18024,
"properties": {
"east": "low",
"north": "none",
@@ -71613,7 +76010,7 @@
}
},
{
- "id": 17556,
+ "id": 18025,
"properties": {
"east": "low",
"north": "none",
@@ -71624,7 +76021,7 @@
}
},
{
- "id": 17557,
+ "id": 18026,
"properties": {
"east": "low",
"north": "none",
@@ -71635,7 +76032,7 @@
}
},
{
- "id": 17558,
+ "id": 18027,
"properties": {
"east": "low",
"north": "none",
@@ -71646,7 +76043,7 @@
}
},
{
- "id": 17559,
+ "id": 18028,
"properties": {
"east": "low",
"north": "none",
@@ -71657,7 +76054,7 @@
}
},
{
- "id": 17560,
+ "id": 18029,
"properties": {
"east": "low",
"north": "none",
@@ -71668,7 +76065,7 @@
}
},
{
- "id": 17561,
+ "id": 18030,
"properties": {
"east": "low",
"north": "none",
@@ -71679,7 +76076,7 @@
}
},
{
- "id": 17562,
+ "id": 18031,
"properties": {
"east": "low",
"north": "none",
@@ -71690,7 +76087,7 @@
}
},
{
- "id": 17563,
+ "id": 18032,
"properties": {
"east": "low",
"north": "none",
@@ -71701,7 +76098,7 @@
}
},
{
- "id": 17564,
+ "id": 18033,
"properties": {
"east": "low",
"north": "low",
@@ -71712,7 +76109,7 @@
}
},
{
- "id": 17565,
+ "id": 18034,
"properties": {
"east": "low",
"north": "low",
@@ -71723,7 +76120,7 @@
}
},
{
- "id": 17566,
+ "id": 18035,
"properties": {
"east": "low",
"north": "low",
@@ -71734,7 +76131,7 @@
}
},
{
- "id": 17567,
+ "id": 18036,
"properties": {
"east": "low",
"north": "low",
@@ -71745,7 +76142,7 @@
}
},
{
- "id": 17568,
+ "id": 18037,
"properties": {
"east": "low",
"north": "low",
@@ -71756,7 +76153,7 @@
}
},
{
- "id": 17569,
+ "id": 18038,
"properties": {
"east": "low",
"north": "low",
@@ -71767,7 +76164,7 @@
}
},
{
- "id": 17570,
+ "id": 18039,
"properties": {
"east": "low",
"north": "low",
@@ -71778,7 +76175,7 @@
}
},
{
- "id": 17571,
+ "id": 18040,
"properties": {
"east": "low",
"north": "low",
@@ -71789,7 +76186,7 @@
}
},
{
- "id": 17572,
+ "id": 18041,
"properties": {
"east": "low",
"north": "low",
@@ -71800,7 +76197,7 @@
}
},
{
- "id": 17573,
+ "id": 18042,
"properties": {
"east": "low",
"north": "low",
@@ -71811,7 +76208,7 @@
}
},
{
- "id": 17574,
+ "id": 18043,
"properties": {
"east": "low",
"north": "low",
@@ -71822,7 +76219,7 @@
}
},
{
- "id": 17575,
+ "id": 18044,
"properties": {
"east": "low",
"north": "low",
@@ -71833,7 +76230,7 @@
}
},
{
- "id": 17576,
+ "id": 18045,
"properties": {
"east": "low",
"north": "low",
@@ -71844,7 +76241,7 @@
}
},
{
- "id": 17577,
+ "id": 18046,
"properties": {
"east": "low",
"north": "low",
@@ -71855,7 +76252,7 @@
}
},
{
- "id": 17578,
+ "id": 18047,
"properties": {
"east": "low",
"north": "low",
@@ -71866,7 +76263,7 @@
}
},
{
- "id": 17579,
+ "id": 18048,
"properties": {
"east": "low",
"north": "low",
@@ -71877,7 +76274,7 @@
}
},
{
- "id": 17580,
+ "id": 18049,
"properties": {
"east": "low",
"north": "low",
@@ -71888,7 +76285,7 @@
}
},
{
- "id": 17581,
+ "id": 18050,
"properties": {
"east": "low",
"north": "low",
@@ -71899,7 +76296,7 @@
}
},
{
- "id": 17582,
+ "id": 18051,
"properties": {
"east": "low",
"north": "low",
@@ -71910,7 +76307,7 @@
}
},
{
- "id": 17583,
+ "id": 18052,
"properties": {
"east": "low",
"north": "low",
@@ -71921,7 +76318,7 @@
}
},
{
- "id": 17584,
+ "id": 18053,
"properties": {
"east": "low",
"north": "low",
@@ -71932,7 +76329,7 @@
}
},
{
- "id": 17585,
+ "id": 18054,
"properties": {
"east": "low",
"north": "low",
@@ -71943,7 +76340,7 @@
}
},
{
- "id": 17586,
+ "id": 18055,
"properties": {
"east": "low",
"north": "low",
@@ -71954,7 +76351,7 @@
}
},
{
- "id": 17587,
+ "id": 18056,
"properties": {
"east": "low",
"north": "low",
@@ -71965,7 +76362,7 @@
}
},
{
- "id": 17588,
+ "id": 18057,
"properties": {
"east": "low",
"north": "low",
@@ -71976,7 +76373,7 @@
}
},
{
- "id": 17589,
+ "id": 18058,
"properties": {
"east": "low",
"north": "low",
@@ -71987,7 +76384,7 @@
}
},
{
- "id": 17590,
+ "id": 18059,
"properties": {
"east": "low",
"north": "low",
@@ -71998,7 +76395,7 @@
}
},
{
- "id": 17591,
+ "id": 18060,
"properties": {
"east": "low",
"north": "low",
@@ -72009,7 +76406,7 @@
}
},
{
- "id": 17592,
+ "id": 18061,
"properties": {
"east": "low",
"north": "low",
@@ -72020,7 +76417,7 @@
}
},
{
- "id": 17593,
+ "id": 18062,
"properties": {
"east": "low",
"north": "low",
@@ -72031,7 +76428,7 @@
}
},
{
- "id": 17594,
+ "id": 18063,
"properties": {
"east": "low",
"north": "low",
@@ -72042,7 +76439,7 @@
}
},
{
- "id": 17595,
+ "id": 18064,
"properties": {
"east": "low",
"north": "low",
@@ -72053,7 +76450,7 @@
}
},
{
- "id": 17596,
+ "id": 18065,
"properties": {
"east": "low",
"north": "low",
@@ -72064,7 +76461,7 @@
}
},
{
- "id": 17597,
+ "id": 18066,
"properties": {
"east": "low",
"north": "low",
@@ -72075,7 +76472,7 @@
}
},
{
- "id": 17598,
+ "id": 18067,
"properties": {
"east": "low",
"north": "low",
@@ -72086,7 +76483,7 @@
}
},
{
- "id": 17599,
+ "id": 18068,
"properties": {
"east": "low",
"north": "low",
@@ -72097,7 +76494,7 @@
}
},
{
- "id": 17600,
+ "id": 18069,
"properties": {
"east": "low",
"north": "tall",
@@ -72108,7 +76505,7 @@
}
},
{
- "id": 17601,
+ "id": 18070,
"properties": {
"east": "low",
"north": "tall",
@@ -72119,7 +76516,7 @@
}
},
{
- "id": 17602,
+ "id": 18071,
"properties": {
"east": "low",
"north": "tall",
@@ -72130,7 +76527,7 @@
}
},
{
- "id": 17603,
+ "id": 18072,
"properties": {
"east": "low",
"north": "tall",
@@ -72141,7 +76538,7 @@
}
},
{
- "id": 17604,
+ "id": 18073,
"properties": {
"east": "low",
"north": "tall",
@@ -72152,7 +76549,7 @@
}
},
{
- "id": 17605,
+ "id": 18074,
"properties": {
"east": "low",
"north": "tall",
@@ -72163,7 +76560,7 @@
}
},
{
- "id": 17606,
+ "id": 18075,
"properties": {
"east": "low",
"north": "tall",
@@ -72174,7 +76571,7 @@
}
},
{
- "id": 17607,
+ "id": 18076,
"properties": {
"east": "low",
"north": "tall",
@@ -72185,7 +76582,7 @@
}
},
{
- "id": 17608,
+ "id": 18077,
"properties": {
"east": "low",
"north": "tall",
@@ -72196,7 +76593,7 @@
}
},
{
- "id": 17609,
+ "id": 18078,
"properties": {
"east": "low",
"north": "tall",
@@ -72207,7 +76604,7 @@
}
},
{
- "id": 17610,
+ "id": 18079,
"properties": {
"east": "low",
"north": "tall",
@@ -72218,7 +76615,7 @@
}
},
{
- "id": 17611,
+ "id": 18080,
"properties": {
"east": "low",
"north": "tall",
@@ -72229,7 +76626,7 @@
}
},
{
- "id": 17612,
+ "id": 18081,
"properties": {
"east": "low",
"north": "tall",
@@ -72240,7 +76637,7 @@
}
},
{
- "id": 17613,
+ "id": 18082,
"properties": {
"east": "low",
"north": "tall",
@@ -72251,7 +76648,7 @@
}
},
{
- "id": 17614,
+ "id": 18083,
"properties": {
"east": "low",
"north": "tall",
@@ -72262,7 +76659,7 @@
}
},
{
- "id": 17615,
+ "id": 18084,
"properties": {
"east": "low",
"north": "tall",
@@ -72273,7 +76670,7 @@
}
},
{
- "id": 17616,
+ "id": 18085,
"properties": {
"east": "low",
"north": "tall",
@@ -72284,7 +76681,7 @@
}
},
{
- "id": 17617,
+ "id": 18086,
"properties": {
"east": "low",
"north": "tall",
@@ -72295,7 +76692,7 @@
}
},
{
- "id": 17618,
+ "id": 18087,
"properties": {
"east": "low",
"north": "tall",
@@ -72306,7 +76703,7 @@
}
},
{
- "id": 17619,
+ "id": 18088,
"properties": {
"east": "low",
"north": "tall",
@@ -72317,7 +76714,7 @@
}
},
{
- "id": 17620,
+ "id": 18089,
"properties": {
"east": "low",
"north": "tall",
@@ -72328,7 +76725,7 @@
}
},
{
- "id": 17621,
+ "id": 18090,
"properties": {
"east": "low",
"north": "tall",
@@ -72339,7 +76736,7 @@
}
},
{
- "id": 17622,
+ "id": 18091,
"properties": {
"east": "low",
"north": "tall",
@@ -72350,7 +76747,7 @@
}
},
{
- "id": 17623,
+ "id": 18092,
"properties": {
"east": "low",
"north": "tall",
@@ -72361,7 +76758,7 @@
}
},
{
- "id": 17624,
+ "id": 18093,
"properties": {
"east": "low",
"north": "tall",
@@ -72372,7 +76769,7 @@
}
},
{
- "id": 17625,
+ "id": 18094,
"properties": {
"east": "low",
"north": "tall",
@@ -72383,7 +76780,7 @@
}
},
{
- "id": 17626,
+ "id": 18095,
"properties": {
"east": "low",
"north": "tall",
@@ -72394,7 +76791,7 @@
}
},
{
- "id": 17627,
+ "id": 18096,
"properties": {
"east": "low",
"north": "tall",
@@ -72405,7 +76802,7 @@
}
},
{
- "id": 17628,
+ "id": 18097,
"properties": {
"east": "low",
"north": "tall",
@@ -72416,7 +76813,7 @@
}
},
{
- "id": 17629,
+ "id": 18098,
"properties": {
"east": "low",
"north": "tall",
@@ -72427,7 +76824,7 @@
}
},
{
- "id": 17630,
+ "id": 18099,
"properties": {
"east": "low",
"north": "tall",
@@ -72438,7 +76835,7 @@
}
},
{
- "id": 17631,
+ "id": 18100,
"properties": {
"east": "low",
"north": "tall",
@@ -72449,7 +76846,7 @@
}
},
{
- "id": 17632,
+ "id": 18101,
"properties": {
"east": "low",
"north": "tall",
@@ -72460,7 +76857,7 @@
}
},
{
- "id": 17633,
+ "id": 18102,
"properties": {
"east": "low",
"north": "tall",
@@ -72471,7 +76868,7 @@
}
},
{
- "id": 17634,
+ "id": 18103,
"properties": {
"east": "low",
"north": "tall",
@@ -72482,7 +76879,7 @@
}
},
{
- "id": 17635,
+ "id": 18104,
"properties": {
"east": "low",
"north": "tall",
@@ -72493,7 +76890,7 @@
}
},
{
- "id": 17636,
+ "id": 18105,
"properties": {
"east": "tall",
"north": "none",
@@ -72504,7 +76901,7 @@
}
},
{
- "id": 17637,
+ "id": 18106,
"properties": {
"east": "tall",
"north": "none",
@@ -72515,7 +76912,7 @@
}
},
{
- "id": 17638,
+ "id": 18107,
"properties": {
"east": "tall",
"north": "none",
@@ -72526,7 +76923,7 @@
}
},
{
- "id": 17639,
+ "id": 18108,
"properties": {
"east": "tall",
"north": "none",
@@ -72537,7 +76934,7 @@
}
},
{
- "id": 17640,
+ "id": 18109,
"properties": {
"east": "tall",
"north": "none",
@@ -72548,7 +76945,7 @@
}
},
{
- "id": 17641,
+ "id": 18110,
"properties": {
"east": "tall",
"north": "none",
@@ -72559,7 +76956,7 @@
}
},
{
- "id": 17642,
+ "id": 18111,
"properties": {
"east": "tall",
"north": "none",
@@ -72570,7 +76967,7 @@
}
},
{
- "id": 17643,
+ "id": 18112,
"properties": {
"east": "tall",
"north": "none",
@@ -72581,7 +76978,7 @@
}
},
{
- "id": 17644,
+ "id": 18113,
"properties": {
"east": "tall",
"north": "none",
@@ -72592,7 +76989,7 @@
}
},
{
- "id": 17645,
+ "id": 18114,
"properties": {
"east": "tall",
"north": "none",
@@ -72603,7 +77000,7 @@
}
},
{
- "id": 17646,
+ "id": 18115,
"properties": {
"east": "tall",
"north": "none",
@@ -72614,7 +77011,7 @@
}
},
{
- "id": 17647,
+ "id": 18116,
"properties": {
"east": "tall",
"north": "none",
@@ -72625,7 +77022,7 @@
}
},
{
- "id": 17648,
+ "id": 18117,
"properties": {
"east": "tall",
"north": "none",
@@ -72636,7 +77033,7 @@
}
},
{
- "id": 17649,
+ "id": 18118,
"properties": {
"east": "tall",
"north": "none",
@@ -72647,7 +77044,7 @@
}
},
{
- "id": 17650,
+ "id": 18119,
"properties": {
"east": "tall",
"north": "none",
@@ -72658,7 +77055,7 @@
}
},
{
- "id": 17651,
+ "id": 18120,
"properties": {
"east": "tall",
"north": "none",
@@ -72669,7 +77066,7 @@
}
},
{
- "id": 17652,
+ "id": 18121,
"properties": {
"east": "tall",
"north": "none",
@@ -72680,7 +77077,7 @@
}
},
{
- "id": 17653,
+ "id": 18122,
"properties": {
"east": "tall",
"north": "none",
@@ -72691,7 +77088,7 @@
}
},
{
- "id": 17654,
+ "id": 18123,
"properties": {
"east": "tall",
"north": "none",
@@ -72702,7 +77099,7 @@
}
},
{
- "id": 17655,
+ "id": 18124,
"properties": {
"east": "tall",
"north": "none",
@@ -72713,7 +77110,7 @@
}
},
{
- "id": 17656,
+ "id": 18125,
"properties": {
"east": "tall",
"north": "none",
@@ -72724,7 +77121,7 @@
}
},
{
- "id": 17657,
+ "id": 18126,
"properties": {
"east": "tall",
"north": "none",
@@ -72735,7 +77132,7 @@
}
},
{
- "id": 17658,
+ "id": 18127,
"properties": {
"east": "tall",
"north": "none",
@@ -72746,7 +77143,7 @@
}
},
{
- "id": 17659,
+ "id": 18128,
"properties": {
"east": "tall",
"north": "none",
@@ -72757,7 +77154,7 @@
}
},
{
- "id": 17660,
+ "id": 18129,
"properties": {
"east": "tall",
"north": "none",
@@ -72768,7 +77165,7 @@
}
},
{
- "id": 17661,
+ "id": 18130,
"properties": {
"east": "tall",
"north": "none",
@@ -72779,7 +77176,7 @@
}
},
{
- "id": 17662,
+ "id": 18131,
"properties": {
"east": "tall",
"north": "none",
@@ -72790,7 +77187,7 @@
}
},
{
- "id": 17663,
+ "id": 18132,
"properties": {
"east": "tall",
"north": "none",
@@ -72801,7 +77198,7 @@
}
},
{
- "id": 17664,
+ "id": 18133,
"properties": {
"east": "tall",
"north": "none",
@@ -72812,7 +77209,7 @@
}
},
{
- "id": 17665,
+ "id": 18134,
"properties": {
"east": "tall",
"north": "none",
@@ -72823,7 +77220,7 @@
}
},
{
- "id": 17666,
+ "id": 18135,
"properties": {
"east": "tall",
"north": "none",
@@ -72834,7 +77231,7 @@
}
},
{
- "id": 17667,
+ "id": 18136,
"properties": {
"east": "tall",
"north": "none",
@@ -72845,7 +77242,7 @@
}
},
{
- "id": 17668,
+ "id": 18137,
"properties": {
"east": "tall",
"north": "none",
@@ -72856,7 +77253,7 @@
}
},
{
- "id": 17669,
+ "id": 18138,
"properties": {
"east": "tall",
"north": "none",
@@ -72867,7 +77264,7 @@
}
},
{
- "id": 17670,
+ "id": 18139,
"properties": {
"east": "tall",
"north": "none",
@@ -72878,7 +77275,7 @@
}
},
{
- "id": 17671,
+ "id": 18140,
"properties": {
"east": "tall",
"north": "none",
@@ -72889,7 +77286,7 @@
}
},
{
- "id": 17672,
+ "id": 18141,
"properties": {
"east": "tall",
"north": "low",
@@ -72900,7 +77297,7 @@
}
},
{
- "id": 17673,
+ "id": 18142,
"properties": {
"east": "tall",
"north": "low",
@@ -72911,7 +77308,7 @@
}
},
{
- "id": 17674,
+ "id": 18143,
"properties": {
"east": "tall",
"north": "low",
@@ -72922,7 +77319,7 @@
}
},
{
- "id": 17675,
+ "id": 18144,
"properties": {
"east": "tall",
"north": "low",
@@ -72933,7 +77330,7 @@
}
},
{
- "id": 17676,
+ "id": 18145,
"properties": {
"east": "tall",
"north": "low",
@@ -72944,7 +77341,7 @@
}
},
{
- "id": 17677,
+ "id": 18146,
"properties": {
"east": "tall",
"north": "low",
@@ -72955,7 +77352,7 @@
}
},
{
- "id": 17678,
+ "id": 18147,
"properties": {
"east": "tall",
"north": "low",
@@ -72966,7 +77363,7 @@
}
},
{
- "id": 17679,
+ "id": 18148,
"properties": {
"east": "tall",
"north": "low",
@@ -72977,7 +77374,7 @@
}
},
{
- "id": 17680,
+ "id": 18149,
"properties": {
"east": "tall",
"north": "low",
@@ -72988,7 +77385,7 @@
}
},
{
- "id": 17681,
+ "id": 18150,
"properties": {
"east": "tall",
"north": "low",
@@ -72999,7 +77396,7 @@
}
},
{
- "id": 17682,
+ "id": 18151,
"properties": {
"east": "tall",
"north": "low",
@@ -73010,7 +77407,7 @@
}
},
{
- "id": 17683,
+ "id": 18152,
"properties": {
"east": "tall",
"north": "low",
@@ -73021,7 +77418,7 @@
}
},
{
- "id": 17684,
+ "id": 18153,
"properties": {
"east": "tall",
"north": "low",
@@ -73032,7 +77429,7 @@
}
},
{
- "id": 17685,
+ "id": 18154,
"properties": {
"east": "tall",
"north": "low",
@@ -73043,7 +77440,7 @@
}
},
{
- "id": 17686,
+ "id": 18155,
"properties": {
"east": "tall",
"north": "low",
@@ -73054,7 +77451,7 @@
}
},
{
- "id": 17687,
+ "id": 18156,
"properties": {
"east": "tall",
"north": "low",
@@ -73065,7 +77462,7 @@
}
},
{
- "id": 17688,
+ "id": 18157,
"properties": {
"east": "tall",
"north": "low",
@@ -73076,7 +77473,7 @@
}
},
{
- "id": 17689,
+ "id": 18158,
"properties": {
"east": "tall",
"north": "low",
@@ -73087,7 +77484,7 @@
}
},
{
- "id": 17690,
+ "id": 18159,
"properties": {
"east": "tall",
"north": "low",
@@ -73098,7 +77495,7 @@
}
},
{
- "id": 17691,
+ "id": 18160,
"properties": {
"east": "tall",
"north": "low",
@@ -73109,7 +77506,7 @@
}
},
{
- "id": 17692,
+ "id": 18161,
"properties": {
"east": "tall",
"north": "low",
@@ -73120,7 +77517,7 @@
}
},
{
- "id": 17693,
+ "id": 18162,
"properties": {
"east": "tall",
"north": "low",
@@ -73131,7 +77528,7 @@
}
},
{
- "id": 17694,
+ "id": 18163,
"properties": {
"east": "tall",
"north": "low",
@@ -73142,7 +77539,7 @@
}
},
{
- "id": 17695,
+ "id": 18164,
"properties": {
"east": "tall",
"north": "low",
@@ -73153,7 +77550,7 @@
}
},
{
- "id": 17696,
+ "id": 18165,
"properties": {
"east": "tall",
"north": "low",
@@ -73164,7 +77561,7 @@
}
},
{
- "id": 17697,
+ "id": 18166,
"properties": {
"east": "tall",
"north": "low",
@@ -73175,7 +77572,7 @@
}
},
{
- "id": 17698,
+ "id": 18167,
"properties": {
"east": "tall",
"north": "low",
@@ -73186,7 +77583,7 @@
}
},
{
- "id": 17699,
+ "id": 18168,
"properties": {
"east": "tall",
"north": "low",
@@ -73197,7 +77594,7 @@
}
},
{
- "id": 17700,
+ "id": 18169,
"properties": {
"east": "tall",
"north": "low",
@@ -73208,7 +77605,7 @@
}
},
{
- "id": 17701,
+ "id": 18170,
"properties": {
"east": "tall",
"north": "low",
@@ -73219,7 +77616,7 @@
}
},
{
- "id": 17702,
+ "id": 18171,
"properties": {
"east": "tall",
"north": "low",
@@ -73230,7 +77627,7 @@
}
},
{
- "id": 17703,
+ "id": 18172,
"properties": {
"east": "tall",
"north": "low",
@@ -73241,7 +77638,7 @@
}
},
{
- "id": 17704,
+ "id": 18173,
"properties": {
"east": "tall",
"north": "low",
@@ -73252,7 +77649,7 @@
}
},
{
- "id": 17705,
+ "id": 18174,
"properties": {
"east": "tall",
"north": "low",
@@ -73263,7 +77660,7 @@
}
},
{
- "id": 17706,
+ "id": 18175,
"properties": {
"east": "tall",
"north": "low",
@@ -73274,7 +77671,7 @@
}
},
{
- "id": 17707,
+ "id": 18176,
"properties": {
"east": "tall",
"north": "low",
@@ -73285,7 +77682,7 @@
}
},
{
- "id": 17708,
+ "id": 18177,
"properties": {
"east": "tall",
"north": "tall",
@@ -73296,7 +77693,7 @@
}
},
{
- "id": 17709,
+ "id": 18178,
"properties": {
"east": "tall",
"north": "tall",
@@ -73307,7 +77704,7 @@
}
},
{
- "id": 17710,
+ "id": 18179,
"properties": {
"east": "tall",
"north": "tall",
@@ -73318,7 +77715,7 @@
}
},
{
- "id": 17711,
+ "id": 18180,
"properties": {
"east": "tall",
"north": "tall",
@@ -73329,7 +77726,7 @@
}
},
{
- "id": 17712,
+ "id": 18181,
"properties": {
"east": "tall",
"north": "tall",
@@ -73340,7 +77737,7 @@
}
},
{
- "id": 17713,
+ "id": 18182,
"properties": {
"east": "tall",
"north": "tall",
@@ -73351,7 +77748,7 @@
}
},
{
- "id": 17714,
+ "id": 18183,
"properties": {
"east": "tall",
"north": "tall",
@@ -73362,7 +77759,7 @@
}
},
{
- "id": 17715,
+ "id": 18184,
"properties": {
"east": "tall",
"north": "tall",
@@ -73373,7 +77770,7 @@
}
},
{
- "id": 17716,
+ "id": 18185,
"properties": {
"east": "tall",
"north": "tall",
@@ -73384,7 +77781,7 @@
}
},
{
- "id": 17717,
+ "id": 18186,
"properties": {
"east": "tall",
"north": "tall",
@@ -73395,7 +77792,7 @@
}
},
{
- "id": 17718,
+ "id": 18187,
"properties": {
"east": "tall",
"north": "tall",
@@ -73406,7 +77803,7 @@
}
},
{
- "id": 17719,
+ "id": 18188,
"properties": {
"east": "tall",
"north": "tall",
@@ -73417,7 +77814,7 @@
}
},
{
- "id": 17720,
+ "id": 18189,
"properties": {
"east": "tall",
"north": "tall",
@@ -73428,7 +77825,7 @@
}
},
{
- "id": 17721,
+ "id": 18190,
"properties": {
"east": "tall",
"north": "tall",
@@ -73439,7 +77836,7 @@
}
},
{
- "id": 17722,
+ "id": 18191,
"properties": {
"east": "tall",
"north": "tall",
@@ -73450,7 +77847,7 @@
}
},
{
- "id": 17723,
+ "id": 18192,
"properties": {
"east": "tall",
"north": "tall",
@@ -73461,7 +77858,7 @@
}
},
{
- "id": 17724,
+ "id": 18193,
"properties": {
"east": "tall",
"north": "tall",
@@ -73472,7 +77869,7 @@
}
},
{
- "id": 17725,
+ "id": 18194,
"properties": {
"east": "tall",
"north": "tall",
@@ -73483,7 +77880,7 @@
}
},
{
- "id": 17726,
+ "id": 18195,
"properties": {
"east": "tall",
"north": "tall",
@@ -73494,7 +77891,7 @@
}
},
{
- "id": 17727,
+ "id": 18196,
"properties": {
"east": "tall",
"north": "tall",
@@ -73505,7 +77902,7 @@
}
},
{
- "id": 17728,
+ "id": 18197,
"properties": {
"east": "tall",
"north": "tall",
@@ -73516,7 +77913,7 @@
}
},
{
- "id": 17729,
+ "id": 18198,
"properties": {
"east": "tall",
"north": "tall",
@@ -73527,7 +77924,7 @@
}
},
{
- "id": 17730,
+ "id": 18199,
"properties": {
"east": "tall",
"north": "tall",
@@ -73538,7 +77935,7 @@
}
},
{
- "id": 17731,
+ "id": 18200,
"properties": {
"east": "tall",
"north": "tall",
@@ -73549,7 +77946,7 @@
}
},
{
- "id": 17732,
+ "id": 18201,
"properties": {
"east": "tall",
"north": "tall",
@@ -73560,7 +77957,7 @@
}
},
{
- "id": 17733,
+ "id": 18202,
"properties": {
"east": "tall",
"north": "tall",
@@ -73571,7 +77968,7 @@
}
},
{
- "id": 17734,
+ "id": 18203,
"properties": {
"east": "tall",
"north": "tall",
@@ -73582,7 +77979,7 @@
}
},
{
- "id": 17735,
+ "id": 18204,
"properties": {
"east": "tall",
"north": "tall",
@@ -73593,7 +77990,7 @@
}
},
{
- "id": 17736,
+ "id": 18205,
"properties": {
"east": "tall",
"north": "tall",
@@ -73604,7 +78001,7 @@
}
},
{
- "id": 17737,
+ "id": 18206,
"properties": {
"east": "tall",
"north": "tall",
@@ -73615,7 +78012,7 @@
}
},
{
- "id": 17738,
+ "id": 18207,
"properties": {
"east": "tall",
"north": "tall",
@@ -73626,7 +78023,7 @@
}
},
{
- "id": 17739,
+ "id": 18208,
"properties": {
"east": "tall",
"north": "tall",
@@ -73637,7 +78034,7 @@
}
},
{
- "id": 17740,
+ "id": 18209,
"properties": {
"east": "tall",
"north": "tall",
@@ -73648,7 +78045,7 @@
}
},
{
- "id": 17741,
+ "id": 18210,
"properties": {
"east": "tall",
"north": "tall",
@@ -73659,7 +78056,7 @@
}
},
{
- "id": 17742,
+ "id": 18211,
"properties": {
"east": "tall",
"north": "tall",
@@ -73670,7 +78067,7 @@
}
},
{
- "id": 17743,
+ "id": 18212,
"properties": {
"east": "tall",
"north": "tall",
@@ -73694,7 +78091,7 @@
"states": [
{
"default": true,
- "id": 11888
+ "id": 12357
}
]
},
@@ -73715,7 +78112,7 @@
},
"states": [
{
- "id": 472,
+ "id": 519,
"properties": {
"facing": "north",
"triggered": "true"
@@ -73723,77 +78120,77 @@
},
{
"default": true,
- "id": 473,
+ "id": 520,
"properties": {
"facing": "north",
"triggered": "false"
}
},
{
- "id": 474,
+ "id": 521,
"properties": {
"facing": "east",
"triggered": "true"
}
},
{
- "id": 475,
+ "id": 522,
"properties": {
"facing": "east",
"triggered": "false"
}
},
{
- "id": 476,
+ "id": 523,
"properties": {
"facing": "south",
"triggered": "true"
}
},
{
- "id": 477,
+ "id": 524,
"properties": {
"facing": "south",
"triggered": "false"
}
},
{
- "id": 478,
+ "id": 525,
"properties": {
"facing": "west",
"triggered": "true"
}
},
{
- "id": 479,
+ "id": 526,
"properties": {
"facing": "west",
"triggered": "false"
}
},
{
- "id": 480,
+ "id": 527,
"properties": {
"facing": "up",
"triggered": "true"
}
},
{
- "id": 481,
+ "id": 528,
"properties": {
"facing": "up",
"triggered": "false"
}
},
{
- "id": 482,
+ "id": 529,
"properties": {
"facing": "down",
"triggered": "true"
}
},
{
- "id": 483,
+ "id": 530,
"properties": {
"facing": "down",
"triggered": "false"
@@ -73805,7 +78202,7 @@
"states": [
{
"default": true,
- "id": 7186
+ "id": 7412
}
]
},
@@ -73833,97 +78230,97 @@
"states": [
{
"default": true,
- "id": 8671,
+ "id": 8923,
"properties": {
"rotation": "0"
}
},
{
- "id": 8672,
+ "id": 8924,
"properties": {
"rotation": "1"
}
},
{
- "id": 8673,
+ "id": 8925,
"properties": {
"rotation": "2"
}
},
{
- "id": 8674,
+ "id": 8926,
"properties": {
"rotation": "3"
}
},
{
- "id": 8675,
+ "id": 8927,
"properties": {
"rotation": "4"
}
},
{
- "id": 8676,
+ "id": 8928,
"properties": {
"rotation": "5"
}
},
{
- "id": 8677,
+ "id": 8929,
"properties": {
"rotation": "6"
}
},
{
- "id": 8678,
+ "id": 8930,
"properties": {
"rotation": "7"
}
},
{
- "id": 8679,
+ "id": 8931,
"properties": {
"rotation": "8"
}
},
{
- "id": 8680,
+ "id": 8932,
"properties": {
"rotation": "9"
}
},
{
- "id": 8681,
+ "id": 8933,
"properties": {
"rotation": "10"
}
},
{
- "id": 8682,
+ "id": 8934,
"properties": {
"rotation": "11"
}
},
{
- "id": 8683,
+ "id": 8935,
"properties": {
"rotation": "12"
}
},
{
- "id": 8684,
+ "id": 8936,
"properties": {
"rotation": "13"
}
},
{
- "id": 8685,
+ "id": 8937,
"properties": {
"rotation": "14"
}
},
{
- "id": 8686,
+ "id": 8938,
"properties": {
"rotation": "15"
}
@@ -73942,25 +78339,25 @@
"states": [
{
"default": true,
- "id": 8687,
+ "id": 8939,
"properties": {
"facing": "north"
}
},
{
- "id": 8688,
+ "id": 8940,
"properties": {
"facing": "south"
}
},
{
- "id": 8689,
+ "id": 8941,
"properties": {
"facing": "west"
}
},
{
- "id": 8690,
+ "id": 8942,
"properties": {
"facing": "east"
}
@@ -73971,7 +78368,7 @@
"states": [
{
"default": true,
- "id": 12162
+ "id": 12631
}
]
},
@@ -73979,7 +78376,7 @@
"states": [
{
"default": true,
- "id": 21442
+ "id": 21911
}
]
},
@@ -74000,7 +78397,7 @@
},
"states": [
{
- "id": 8948,
+ "id": 9200,
"properties": {
"facing": "north",
"triggered": "true"
@@ -74008,77 +78405,77 @@
},
{
"default": true,
- "id": 8949,
+ "id": 9201,
"properties": {
"facing": "north",
"triggered": "false"
}
},
{
- "id": 8950,
+ "id": 9202,
"properties": {
"facing": "east",
"triggered": "true"
}
},
{
- "id": 8951,
+ "id": 9203,
"properties": {
"facing": "east",
"triggered": "false"
}
},
{
- "id": 8952,
+ "id": 9204,
"properties": {
"facing": "south",
"triggered": "true"
}
},
{
- "id": 8953,
+ "id": 9205,
"properties": {
"facing": "south",
"triggered": "false"
}
},
{
- "id": 8954,
+ "id": 9206,
"properties": {
"facing": "west",
"triggered": "true"
}
},
{
- "id": 8955,
+ "id": 9207,
"properties": {
"facing": "west",
"triggered": "false"
}
},
{
- "id": 8956,
+ "id": 9208,
"properties": {
"facing": "up",
"triggered": "true"
}
},
{
- "id": 8957,
+ "id": 9209,
"properties": {
"facing": "up",
"triggered": "false"
}
},
{
- "id": 8958,
+ "id": 9210,
"properties": {
"facing": "down",
"triggered": "true"
}
},
{
- "id": 8959,
+ "id": 9211,
"properties": {
"facing": "down",
"triggered": "false"
@@ -74090,7 +78487,7 @@
"states": [
{
"default": true,
- "id": 7435
+ "id": 7661
}
]
},
@@ -74098,7 +78495,7 @@
"states": [
{
"default": true,
- "id": 7281
+ "id": 7507
}
]
},
@@ -74106,7 +78503,7 @@
"states": [
{
"default": true,
- "id": 7159
+ "id": 7385
}
]
},
@@ -74114,7 +78511,7 @@
"states": [
{
"default": true,
- "id": 11889
+ "id": 12358
}
]
},
@@ -74122,7 +78519,7 @@
"states": [
{
"default": true,
- "id": 7176
+ "id": 7402
}
]
},
@@ -74141,28 +78538,28 @@
},
"states": [
{
- "id": 7177,
+ "id": 7403,
"properties": {
"eye": "true",
"facing": "north"
}
},
{
- "id": 7178,
+ "id": 7404,
"properties": {
"eye": "true",
"facing": "south"
}
},
{
- "id": 7179,
+ "id": 7405,
"properties": {
"eye": "true",
"facing": "west"
}
},
{
- "id": 7180,
+ "id": 7406,
"properties": {
"eye": "true",
"facing": "east"
@@ -74170,28 +78567,28 @@
},
{
"default": true,
- "id": 7181,
+ "id": 7407,
"properties": {
"eye": "false",
"facing": "north"
}
},
{
- "id": 7182,
+ "id": 7408,
"properties": {
"eye": "false",
"facing": "south"
}
},
{
- "id": 7183,
+ "id": 7409,
"properties": {
"eye": "false",
"facing": "west"
}
},
{
- "id": 7184,
+ "id": 7410,
"properties": {
"eye": "false",
"facing": "east"
@@ -74212,38 +78609,38 @@
},
"states": [
{
- "id": 11723,
+ "id": 12189,
"properties": {
"facing": "north"
}
},
{
- "id": 11724,
+ "id": 12190,
"properties": {
"facing": "east"
}
},
{
- "id": 11725,
+ "id": 12191,
"properties": {
"facing": "south"
}
},
{
- "id": 11726,
+ "id": 12192,
"properties": {
"facing": "west"
}
},
{
"default": true,
- "id": 11727,
+ "id": 12193,
"properties": {
"facing": "up"
}
},
{
- "id": 11728,
+ "id": 12194,
"properties": {
"facing": "down"
}
@@ -74254,7 +78651,7 @@
"states": [
{
"default": true,
- "id": 7185
+ "id": 7411
}
]
},
@@ -74272,21 +78669,21 @@
},
"states": [
{
- "id": 13484,
+ "id": 13953,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 13485,
+ "id": 13954,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 13486,
+ "id": 13955,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -74294,21 +78691,21 @@
},
{
"default": true,
- "id": 13487,
+ "id": 13956,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 13488,
+ "id": 13957,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 13489,
+ "id": 13958,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -74342,7 +78739,7 @@
},
"states": [
{
- "id": 12734,
+ "id": 13203,
"properties": {
"facing": "north",
"half": "top",
@@ -74351,7 +78748,7 @@
}
},
{
- "id": 12735,
+ "id": 13204,
"properties": {
"facing": "north",
"half": "top",
@@ -74360,7 +78757,7 @@
}
},
{
- "id": 12736,
+ "id": 13205,
"properties": {
"facing": "north",
"half": "top",
@@ -74369,7 +78766,7 @@
}
},
{
- "id": 12737,
+ "id": 13206,
"properties": {
"facing": "north",
"half": "top",
@@ -74378,7 +78775,7 @@
}
},
{
- "id": 12738,
+ "id": 13207,
"properties": {
"facing": "north",
"half": "top",
@@ -74387,7 +78784,7 @@
}
},
{
- "id": 12739,
+ "id": 13208,
"properties": {
"facing": "north",
"half": "top",
@@ -74396,7 +78793,7 @@
}
},
{
- "id": 12740,
+ "id": 13209,
"properties": {
"facing": "north",
"half": "top",
@@ -74405,7 +78802,7 @@
}
},
{
- "id": 12741,
+ "id": 13210,
"properties": {
"facing": "north",
"half": "top",
@@ -74414,7 +78811,7 @@
}
},
{
- "id": 12742,
+ "id": 13211,
"properties": {
"facing": "north",
"half": "top",
@@ -74423,7 +78820,7 @@
}
},
{
- "id": 12743,
+ "id": 13212,
"properties": {
"facing": "north",
"half": "top",
@@ -74432,7 +78829,7 @@
}
},
{
- "id": 12744,
+ "id": 13213,
"properties": {
"facing": "north",
"half": "bottom",
@@ -74442,7 +78839,7 @@
},
{
"default": true,
- "id": 12745,
+ "id": 13214,
"properties": {
"facing": "north",
"half": "bottom",
@@ -74451,7 +78848,7 @@
}
},
{
- "id": 12746,
+ "id": 13215,
"properties": {
"facing": "north",
"half": "bottom",
@@ -74460,7 +78857,7 @@
}
},
{
- "id": 12747,
+ "id": 13216,
"properties": {
"facing": "north",
"half": "bottom",
@@ -74469,7 +78866,7 @@
}
},
{
- "id": 12748,
+ "id": 13217,
"properties": {
"facing": "north",
"half": "bottom",
@@ -74478,7 +78875,7 @@
}
},
{
- "id": 12749,
+ "id": 13218,
"properties": {
"facing": "north",
"half": "bottom",
@@ -74487,7 +78884,7 @@
}
},
{
- "id": 12750,
+ "id": 13219,
"properties": {
"facing": "north",
"half": "bottom",
@@ -74496,7 +78893,7 @@
}
},
{
- "id": 12751,
+ "id": 13220,
"properties": {
"facing": "north",
"half": "bottom",
@@ -74505,7 +78902,7 @@
}
},
{
- "id": 12752,
+ "id": 13221,
"properties": {
"facing": "north",
"half": "bottom",
@@ -74514,7 +78911,7 @@
}
},
{
- "id": 12753,
+ "id": 13222,
"properties": {
"facing": "north",
"half": "bottom",
@@ -74523,7 +78920,7 @@
}
},
{
- "id": 12754,
+ "id": 13223,
"properties": {
"facing": "south",
"half": "top",
@@ -74532,7 +78929,7 @@
}
},
{
- "id": 12755,
+ "id": 13224,
"properties": {
"facing": "south",
"half": "top",
@@ -74541,7 +78938,7 @@
}
},
{
- "id": 12756,
+ "id": 13225,
"properties": {
"facing": "south",
"half": "top",
@@ -74550,7 +78947,7 @@
}
},
{
- "id": 12757,
+ "id": 13226,
"properties": {
"facing": "south",
"half": "top",
@@ -74559,7 +78956,7 @@
}
},
{
- "id": 12758,
+ "id": 13227,
"properties": {
"facing": "south",
"half": "top",
@@ -74568,7 +78965,7 @@
}
},
{
- "id": 12759,
+ "id": 13228,
"properties": {
"facing": "south",
"half": "top",
@@ -74577,7 +78974,7 @@
}
},
{
- "id": 12760,
+ "id": 13229,
"properties": {
"facing": "south",
"half": "top",
@@ -74586,7 +78983,7 @@
}
},
{
- "id": 12761,
+ "id": 13230,
"properties": {
"facing": "south",
"half": "top",
@@ -74595,7 +78992,7 @@
}
},
{
- "id": 12762,
+ "id": 13231,
"properties": {
"facing": "south",
"half": "top",
@@ -74604,7 +79001,7 @@
}
},
{
- "id": 12763,
+ "id": 13232,
"properties": {
"facing": "south",
"half": "top",
@@ -74613,7 +79010,7 @@
}
},
{
- "id": 12764,
+ "id": 13233,
"properties": {
"facing": "south",
"half": "bottom",
@@ -74622,7 +79019,7 @@
}
},
{
- "id": 12765,
+ "id": 13234,
"properties": {
"facing": "south",
"half": "bottom",
@@ -74631,7 +79028,7 @@
}
},
{
- "id": 12766,
+ "id": 13235,
"properties": {
"facing": "south",
"half": "bottom",
@@ -74640,7 +79037,7 @@
}
},
{
- "id": 12767,
+ "id": 13236,
"properties": {
"facing": "south",
"half": "bottom",
@@ -74649,7 +79046,7 @@
}
},
{
- "id": 12768,
+ "id": 13237,
"properties": {
"facing": "south",
"half": "bottom",
@@ -74658,7 +79055,7 @@
}
},
{
- "id": 12769,
+ "id": 13238,
"properties": {
"facing": "south",
"half": "bottom",
@@ -74667,7 +79064,7 @@
}
},
{
- "id": 12770,
+ "id": 13239,
"properties": {
"facing": "south",
"half": "bottom",
@@ -74676,7 +79073,7 @@
}
},
{
- "id": 12771,
+ "id": 13240,
"properties": {
"facing": "south",
"half": "bottom",
@@ -74685,7 +79082,7 @@
}
},
{
- "id": 12772,
+ "id": 13241,
"properties": {
"facing": "south",
"half": "bottom",
@@ -74694,7 +79091,7 @@
}
},
{
- "id": 12773,
+ "id": 13242,
"properties": {
"facing": "south",
"half": "bottom",
@@ -74703,7 +79100,7 @@
}
},
{
- "id": 12774,
+ "id": 13243,
"properties": {
"facing": "west",
"half": "top",
@@ -74712,7 +79109,7 @@
}
},
{
- "id": 12775,
+ "id": 13244,
"properties": {
"facing": "west",
"half": "top",
@@ -74721,7 +79118,7 @@
}
},
{
- "id": 12776,
+ "id": 13245,
"properties": {
"facing": "west",
"half": "top",
@@ -74730,7 +79127,7 @@
}
},
{
- "id": 12777,
+ "id": 13246,
"properties": {
"facing": "west",
"half": "top",
@@ -74739,7 +79136,7 @@
}
},
{
- "id": 12778,
+ "id": 13247,
"properties": {
"facing": "west",
"half": "top",
@@ -74748,7 +79145,7 @@
}
},
{
- "id": 12779,
+ "id": 13248,
"properties": {
"facing": "west",
"half": "top",
@@ -74757,7 +79154,7 @@
}
},
{
- "id": 12780,
+ "id": 13249,
"properties": {
"facing": "west",
"half": "top",
@@ -74766,7 +79163,7 @@
}
},
{
- "id": 12781,
+ "id": 13250,
"properties": {
"facing": "west",
"half": "top",
@@ -74775,7 +79172,7 @@
}
},
{
- "id": 12782,
+ "id": 13251,
"properties": {
"facing": "west",
"half": "top",
@@ -74784,7 +79181,7 @@
}
},
{
- "id": 12783,
+ "id": 13252,
"properties": {
"facing": "west",
"half": "top",
@@ -74793,7 +79190,7 @@
}
},
{
- "id": 12784,
+ "id": 13253,
"properties": {
"facing": "west",
"half": "bottom",
@@ -74802,7 +79199,7 @@
}
},
{
- "id": 12785,
+ "id": 13254,
"properties": {
"facing": "west",
"half": "bottom",
@@ -74811,7 +79208,7 @@
}
},
{
- "id": 12786,
+ "id": 13255,
"properties": {
"facing": "west",
"half": "bottom",
@@ -74820,7 +79217,7 @@
}
},
{
- "id": 12787,
+ "id": 13256,
"properties": {
"facing": "west",
"half": "bottom",
@@ -74829,7 +79226,7 @@
}
},
{
- "id": 12788,
+ "id": 13257,
"properties": {
"facing": "west",
"half": "bottom",
@@ -74838,7 +79235,7 @@
}
},
{
- "id": 12789,
+ "id": 13258,
"properties": {
"facing": "west",
"half": "bottom",
@@ -74847,7 +79244,7 @@
}
},
{
- "id": 12790,
+ "id": 13259,
"properties": {
"facing": "west",
"half": "bottom",
@@ -74856,7 +79253,7 @@
}
},
{
- "id": 12791,
+ "id": 13260,
"properties": {
"facing": "west",
"half": "bottom",
@@ -74865,7 +79262,7 @@
}
},
{
- "id": 12792,
+ "id": 13261,
"properties": {
"facing": "west",
"half": "bottom",
@@ -74874,7 +79271,7 @@
}
},
{
- "id": 12793,
+ "id": 13262,
"properties": {
"facing": "west",
"half": "bottom",
@@ -74883,7 +79280,7 @@
}
},
{
- "id": 12794,
+ "id": 13263,
"properties": {
"facing": "east",
"half": "top",
@@ -74892,7 +79289,7 @@
}
},
{
- "id": 12795,
+ "id": 13264,
"properties": {
"facing": "east",
"half": "top",
@@ -74901,7 +79298,7 @@
}
},
{
- "id": 12796,
+ "id": 13265,
"properties": {
"facing": "east",
"half": "top",
@@ -74910,7 +79307,7 @@
}
},
{
- "id": 12797,
+ "id": 13266,
"properties": {
"facing": "east",
"half": "top",
@@ -74919,7 +79316,7 @@
}
},
{
- "id": 12798,
+ "id": 13267,
"properties": {
"facing": "east",
"half": "top",
@@ -74928,7 +79325,7 @@
}
},
{
- "id": 12799,
+ "id": 13268,
"properties": {
"facing": "east",
"half": "top",
@@ -74937,7 +79334,7 @@
}
},
{
- "id": 12800,
+ "id": 13269,
"properties": {
"facing": "east",
"half": "top",
@@ -74946,7 +79343,7 @@
}
},
{
- "id": 12801,
+ "id": 13270,
"properties": {
"facing": "east",
"half": "top",
@@ -74955,7 +79352,7 @@
}
},
{
- "id": 12802,
+ "id": 13271,
"properties": {
"facing": "east",
"half": "top",
@@ -74964,7 +79361,7 @@
}
},
{
- "id": 12803,
+ "id": 13272,
"properties": {
"facing": "east",
"half": "top",
@@ -74973,7 +79370,7 @@
}
},
{
- "id": 12804,
+ "id": 13273,
"properties": {
"facing": "east",
"half": "bottom",
@@ -74982,7 +79379,7 @@
}
},
{
- "id": 12805,
+ "id": 13274,
"properties": {
"facing": "east",
"half": "bottom",
@@ -74991,7 +79388,7 @@
}
},
{
- "id": 12806,
+ "id": 13275,
"properties": {
"facing": "east",
"half": "bottom",
@@ -75000,7 +79397,7 @@
}
},
{
- "id": 12807,
+ "id": 13276,
"properties": {
"facing": "east",
"half": "bottom",
@@ -75009,7 +79406,7 @@
}
},
{
- "id": 12808,
+ "id": 13277,
"properties": {
"facing": "east",
"half": "bottom",
@@ -75018,7 +79415,7 @@
}
},
{
- "id": 12809,
+ "id": 13278,
"properties": {
"facing": "east",
"half": "bottom",
@@ -75027,7 +79424,7 @@
}
},
{
- "id": 12810,
+ "id": 13279,
"properties": {
"facing": "east",
"half": "bottom",
@@ -75036,7 +79433,7 @@
}
},
{
- "id": 12811,
+ "id": 13280,
"properties": {
"facing": "east",
"half": "bottom",
@@ -75045,7 +79442,7 @@
}
},
{
- "id": 12812,
+ "id": 13281,
"properties": {
"facing": "east",
"half": "bottom",
@@ -75054,7 +79451,7 @@
}
},
{
- "id": 12813,
+ "id": 13282,
"properties": {
"facing": "east",
"half": "bottom",
@@ -75097,7 +79494,7 @@
},
"states": [
{
- "id": 17096,
+ "id": 17565,
"properties": {
"east": "none",
"north": "none",
@@ -75108,7 +79505,7 @@
}
},
{
- "id": 17097,
+ "id": 17566,
"properties": {
"east": "none",
"north": "none",
@@ -75119,7 +79516,7 @@
}
},
{
- "id": 17098,
+ "id": 17567,
"properties": {
"east": "none",
"north": "none",
@@ -75131,7 +79528,7 @@
},
{
"default": true,
- "id": 17099,
+ "id": 17568,
"properties": {
"east": "none",
"north": "none",
@@ -75142,7 +79539,7 @@
}
},
{
- "id": 17100,
+ "id": 17569,
"properties": {
"east": "none",
"north": "none",
@@ -75153,7 +79550,7 @@
}
},
{
- "id": 17101,
+ "id": 17570,
"properties": {
"east": "none",
"north": "none",
@@ -75164,7 +79561,7 @@
}
},
{
- "id": 17102,
+ "id": 17571,
"properties": {
"east": "none",
"north": "none",
@@ -75175,7 +79572,7 @@
}
},
{
- "id": 17103,
+ "id": 17572,
"properties": {
"east": "none",
"north": "none",
@@ -75186,7 +79583,7 @@
}
},
{
- "id": 17104,
+ "id": 17573,
"properties": {
"east": "none",
"north": "none",
@@ -75197,7 +79594,7 @@
}
},
{
- "id": 17105,
+ "id": 17574,
"properties": {
"east": "none",
"north": "none",
@@ -75208,7 +79605,7 @@
}
},
{
- "id": 17106,
+ "id": 17575,
"properties": {
"east": "none",
"north": "none",
@@ -75219,7 +79616,7 @@
}
},
{
- "id": 17107,
+ "id": 17576,
"properties": {
"east": "none",
"north": "none",
@@ -75230,7 +79627,7 @@
}
},
{
- "id": 17108,
+ "id": 17577,
"properties": {
"east": "none",
"north": "none",
@@ -75241,7 +79638,7 @@
}
},
{
- "id": 17109,
+ "id": 17578,
"properties": {
"east": "none",
"north": "none",
@@ -75252,7 +79649,7 @@
}
},
{
- "id": 17110,
+ "id": 17579,
"properties": {
"east": "none",
"north": "none",
@@ -75263,7 +79660,7 @@
}
},
{
- "id": 17111,
+ "id": 17580,
"properties": {
"east": "none",
"north": "none",
@@ -75274,7 +79671,7 @@
}
},
{
- "id": 17112,
+ "id": 17581,
"properties": {
"east": "none",
"north": "none",
@@ -75285,7 +79682,7 @@
}
},
{
- "id": 17113,
+ "id": 17582,
"properties": {
"east": "none",
"north": "none",
@@ -75296,7 +79693,7 @@
}
},
{
- "id": 17114,
+ "id": 17583,
"properties": {
"east": "none",
"north": "none",
@@ -75307,7 +79704,7 @@
}
},
{
- "id": 17115,
+ "id": 17584,
"properties": {
"east": "none",
"north": "none",
@@ -75318,7 +79715,7 @@
}
},
{
- "id": 17116,
+ "id": 17585,
"properties": {
"east": "none",
"north": "none",
@@ -75329,7 +79726,7 @@
}
},
{
- "id": 17117,
+ "id": 17586,
"properties": {
"east": "none",
"north": "none",
@@ -75340,7 +79737,7 @@
}
},
{
- "id": 17118,
+ "id": 17587,
"properties": {
"east": "none",
"north": "none",
@@ -75351,7 +79748,7 @@
}
},
{
- "id": 17119,
+ "id": 17588,
"properties": {
"east": "none",
"north": "none",
@@ -75362,7 +79759,7 @@
}
},
{
- "id": 17120,
+ "id": 17589,
"properties": {
"east": "none",
"north": "none",
@@ -75373,7 +79770,7 @@
}
},
{
- "id": 17121,
+ "id": 17590,
"properties": {
"east": "none",
"north": "none",
@@ -75384,7 +79781,7 @@
}
},
{
- "id": 17122,
+ "id": 17591,
"properties": {
"east": "none",
"north": "none",
@@ -75395,7 +79792,7 @@
}
},
{
- "id": 17123,
+ "id": 17592,
"properties": {
"east": "none",
"north": "none",
@@ -75406,7 +79803,7 @@
}
},
{
- "id": 17124,
+ "id": 17593,
"properties": {
"east": "none",
"north": "none",
@@ -75417,7 +79814,7 @@
}
},
{
- "id": 17125,
+ "id": 17594,
"properties": {
"east": "none",
"north": "none",
@@ -75428,7 +79825,7 @@
}
},
{
- "id": 17126,
+ "id": 17595,
"properties": {
"east": "none",
"north": "none",
@@ -75439,7 +79836,7 @@
}
},
{
- "id": 17127,
+ "id": 17596,
"properties": {
"east": "none",
"north": "none",
@@ -75450,7 +79847,7 @@
}
},
{
- "id": 17128,
+ "id": 17597,
"properties": {
"east": "none",
"north": "none",
@@ -75461,7 +79858,7 @@
}
},
{
- "id": 17129,
+ "id": 17598,
"properties": {
"east": "none",
"north": "none",
@@ -75472,7 +79869,7 @@
}
},
{
- "id": 17130,
+ "id": 17599,
"properties": {
"east": "none",
"north": "none",
@@ -75483,7 +79880,7 @@
}
},
{
- "id": 17131,
+ "id": 17600,
"properties": {
"east": "none",
"north": "none",
@@ -75494,7 +79891,7 @@
}
},
{
- "id": 17132,
+ "id": 17601,
"properties": {
"east": "none",
"north": "low",
@@ -75505,7 +79902,7 @@
}
},
{
- "id": 17133,
+ "id": 17602,
"properties": {
"east": "none",
"north": "low",
@@ -75516,7 +79913,7 @@
}
},
{
- "id": 17134,
+ "id": 17603,
"properties": {
"east": "none",
"north": "low",
@@ -75527,7 +79924,7 @@
}
},
{
- "id": 17135,
+ "id": 17604,
"properties": {
"east": "none",
"north": "low",
@@ -75538,7 +79935,7 @@
}
},
{
- "id": 17136,
+ "id": 17605,
"properties": {
"east": "none",
"north": "low",
@@ -75549,7 +79946,7 @@
}
},
{
- "id": 17137,
+ "id": 17606,
"properties": {
"east": "none",
"north": "low",
@@ -75560,7 +79957,7 @@
}
},
{
- "id": 17138,
+ "id": 17607,
"properties": {
"east": "none",
"north": "low",
@@ -75571,7 +79968,7 @@
}
},
{
- "id": 17139,
+ "id": 17608,
"properties": {
"east": "none",
"north": "low",
@@ -75582,7 +79979,7 @@
}
},
{
- "id": 17140,
+ "id": 17609,
"properties": {
"east": "none",
"north": "low",
@@ -75593,7 +79990,7 @@
}
},
{
- "id": 17141,
+ "id": 17610,
"properties": {
"east": "none",
"north": "low",
@@ -75604,7 +80001,7 @@
}
},
{
- "id": 17142,
+ "id": 17611,
"properties": {
"east": "none",
"north": "low",
@@ -75615,7 +80012,7 @@
}
},
{
- "id": 17143,
+ "id": 17612,
"properties": {
"east": "none",
"north": "low",
@@ -75626,7 +80023,7 @@
}
},
{
- "id": 17144,
+ "id": 17613,
"properties": {
"east": "none",
"north": "low",
@@ -75637,7 +80034,7 @@
}
},
{
- "id": 17145,
+ "id": 17614,
"properties": {
"east": "none",
"north": "low",
@@ -75648,7 +80045,7 @@
}
},
{
- "id": 17146,
+ "id": 17615,
"properties": {
"east": "none",
"north": "low",
@@ -75659,7 +80056,7 @@
}
},
{
- "id": 17147,
+ "id": 17616,
"properties": {
"east": "none",
"north": "low",
@@ -75670,7 +80067,7 @@
}
},
{
- "id": 17148,
+ "id": 17617,
"properties": {
"east": "none",
"north": "low",
@@ -75681,7 +80078,7 @@
}
},
{
- "id": 17149,
+ "id": 17618,
"properties": {
"east": "none",
"north": "low",
@@ -75692,7 +80089,7 @@
}
},
{
- "id": 17150,
+ "id": 17619,
"properties": {
"east": "none",
"north": "low",
@@ -75703,7 +80100,7 @@
}
},
{
- "id": 17151,
+ "id": 17620,
"properties": {
"east": "none",
"north": "low",
@@ -75714,7 +80111,7 @@
}
},
{
- "id": 17152,
+ "id": 17621,
"properties": {
"east": "none",
"north": "low",
@@ -75725,7 +80122,7 @@
}
},
{
- "id": 17153,
+ "id": 17622,
"properties": {
"east": "none",
"north": "low",
@@ -75736,7 +80133,7 @@
}
},
{
- "id": 17154,
+ "id": 17623,
"properties": {
"east": "none",
"north": "low",
@@ -75747,7 +80144,7 @@
}
},
{
- "id": 17155,
+ "id": 17624,
"properties": {
"east": "none",
"north": "low",
@@ -75758,7 +80155,7 @@
}
},
{
- "id": 17156,
+ "id": 17625,
"properties": {
"east": "none",
"north": "low",
@@ -75769,7 +80166,7 @@
}
},
{
- "id": 17157,
+ "id": 17626,
"properties": {
"east": "none",
"north": "low",
@@ -75780,7 +80177,7 @@
}
},
{
- "id": 17158,
+ "id": 17627,
"properties": {
"east": "none",
"north": "low",
@@ -75791,7 +80188,7 @@
}
},
{
- "id": 17159,
+ "id": 17628,
"properties": {
"east": "none",
"north": "low",
@@ -75802,7 +80199,7 @@
}
},
{
- "id": 17160,
+ "id": 17629,
"properties": {
"east": "none",
"north": "low",
@@ -75813,7 +80210,7 @@
}
},
{
- "id": 17161,
+ "id": 17630,
"properties": {
"east": "none",
"north": "low",
@@ -75824,7 +80221,7 @@
}
},
{
- "id": 17162,
+ "id": 17631,
"properties": {
"east": "none",
"north": "low",
@@ -75835,7 +80232,7 @@
}
},
{
- "id": 17163,
+ "id": 17632,
"properties": {
"east": "none",
"north": "low",
@@ -75846,7 +80243,7 @@
}
},
{
- "id": 17164,
+ "id": 17633,
"properties": {
"east": "none",
"north": "low",
@@ -75857,7 +80254,7 @@
}
},
{
- "id": 17165,
+ "id": 17634,
"properties": {
"east": "none",
"north": "low",
@@ -75868,7 +80265,7 @@
}
},
{
- "id": 17166,
+ "id": 17635,
"properties": {
"east": "none",
"north": "low",
@@ -75879,7 +80276,7 @@
}
},
{
- "id": 17167,
+ "id": 17636,
"properties": {
"east": "none",
"north": "low",
@@ -75890,7 +80287,7 @@
}
},
{
- "id": 17168,
+ "id": 17637,
"properties": {
"east": "none",
"north": "tall",
@@ -75901,7 +80298,7 @@
}
},
{
- "id": 17169,
+ "id": 17638,
"properties": {
"east": "none",
"north": "tall",
@@ -75912,7 +80309,7 @@
}
},
{
- "id": 17170,
+ "id": 17639,
"properties": {
"east": "none",
"north": "tall",
@@ -75923,7 +80320,7 @@
}
},
{
- "id": 17171,
+ "id": 17640,
"properties": {
"east": "none",
"north": "tall",
@@ -75934,7 +80331,7 @@
}
},
{
- "id": 17172,
+ "id": 17641,
"properties": {
"east": "none",
"north": "tall",
@@ -75945,7 +80342,7 @@
}
},
{
- "id": 17173,
+ "id": 17642,
"properties": {
"east": "none",
"north": "tall",
@@ -75956,7 +80353,7 @@
}
},
{
- "id": 17174,
+ "id": 17643,
"properties": {
"east": "none",
"north": "tall",
@@ -75967,7 +80364,7 @@
}
},
{
- "id": 17175,
+ "id": 17644,
"properties": {
"east": "none",
"north": "tall",
@@ -75978,7 +80375,7 @@
}
},
{
- "id": 17176,
+ "id": 17645,
"properties": {
"east": "none",
"north": "tall",
@@ -75989,7 +80386,7 @@
}
},
{
- "id": 17177,
+ "id": 17646,
"properties": {
"east": "none",
"north": "tall",
@@ -76000,7 +80397,7 @@
}
},
{
- "id": 17178,
+ "id": 17647,
"properties": {
"east": "none",
"north": "tall",
@@ -76011,7 +80408,7 @@
}
},
{
- "id": 17179,
+ "id": 17648,
"properties": {
"east": "none",
"north": "tall",
@@ -76022,7 +80419,7 @@
}
},
{
- "id": 17180,
+ "id": 17649,
"properties": {
"east": "none",
"north": "tall",
@@ -76033,7 +80430,7 @@
}
},
{
- "id": 17181,
+ "id": 17650,
"properties": {
"east": "none",
"north": "tall",
@@ -76044,7 +80441,7 @@
}
},
{
- "id": 17182,
+ "id": 17651,
"properties": {
"east": "none",
"north": "tall",
@@ -76055,7 +80452,7 @@
}
},
{
- "id": 17183,
+ "id": 17652,
"properties": {
"east": "none",
"north": "tall",
@@ -76066,7 +80463,7 @@
}
},
{
- "id": 17184,
+ "id": 17653,
"properties": {
"east": "none",
"north": "tall",
@@ -76077,7 +80474,7 @@
}
},
{
- "id": 17185,
+ "id": 17654,
"properties": {
"east": "none",
"north": "tall",
@@ -76088,7 +80485,7 @@
}
},
{
- "id": 17186,
+ "id": 17655,
"properties": {
"east": "none",
"north": "tall",
@@ -76099,7 +80496,7 @@
}
},
{
- "id": 17187,
+ "id": 17656,
"properties": {
"east": "none",
"north": "tall",
@@ -76110,7 +80507,7 @@
}
},
{
- "id": 17188,
+ "id": 17657,
"properties": {
"east": "none",
"north": "tall",
@@ -76121,7 +80518,7 @@
}
},
{
- "id": 17189,
+ "id": 17658,
"properties": {
"east": "none",
"north": "tall",
@@ -76132,7 +80529,7 @@
}
},
{
- "id": 17190,
+ "id": 17659,
"properties": {
"east": "none",
"north": "tall",
@@ -76143,7 +80540,7 @@
}
},
{
- "id": 17191,
+ "id": 17660,
"properties": {
"east": "none",
"north": "tall",
@@ -76154,7 +80551,7 @@
}
},
{
- "id": 17192,
+ "id": 17661,
"properties": {
"east": "none",
"north": "tall",
@@ -76165,7 +80562,7 @@
}
},
{
- "id": 17193,
+ "id": 17662,
"properties": {
"east": "none",
"north": "tall",
@@ -76176,7 +80573,7 @@
}
},
{
- "id": 17194,
+ "id": 17663,
"properties": {
"east": "none",
"north": "tall",
@@ -76187,7 +80584,7 @@
}
},
{
- "id": 17195,
+ "id": 17664,
"properties": {
"east": "none",
"north": "tall",
@@ -76198,7 +80595,7 @@
}
},
{
- "id": 17196,
+ "id": 17665,
"properties": {
"east": "none",
"north": "tall",
@@ -76209,7 +80606,7 @@
}
},
{
- "id": 17197,
+ "id": 17666,
"properties": {
"east": "none",
"north": "tall",
@@ -76220,7 +80617,7 @@
}
},
{
- "id": 17198,
+ "id": 17667,
"properties": {
"east": "none",
"north": "tall",
@@ -76231,7 +80628,7 @@
}
},
{
- "id": 17199,
+ "id": 17668,
"properties": {
"east": "none",
"north": "tall",
@@ -76242,7 +80639,7 @@
}
},
{
- "id": 17200,
+ "id": 17669,
"properties": {
"east": "none",
"north": "tall",
@@ -76253,7 +80650,7 @@
}
},
{
- "id": 17201,
+ "id": 17670,
"properties": {
"east": "none",
"north": "tall",
@@ -76264,7 +80661,7 @@
}
},
{
- "id": 17202,
+ "id": 17671,
"properties": {
"east": "none",
"north": "tall",
@@ -76275,7 +80672,7 @@
}
},
{
- "id": 17203,
+ "id": 17672,
"properties": {
"east": "none",
"north": "tall",
@@ -76286,7 +80683,7 @@
}
},
{
- "id": 17204,
+ "id": 17673,
"properties": {
"east": "low",
"north": "none",
@@ -76297,7 +80694,7 @@
}
},
{
- "id": 17205,
+ "id": 17674,
"properties": {
"east": "low",
"north": "none",
@@ -76308,7 +80705,7 @@
}
},
{
- "id": 17206,
+ "id": 17675,
"properties": {
"east": "low",
"north": "none",
@@ -76319,7 +80716,7 @@
}
},
{
- "id": 17207,
+ "id": 17676,
"properties": {
"east": "low",
"north": "none",
@@ -76330,7 +80727,7 @@
}
},
{
- "id": 17208,
+ "id": 17677,
"properties": {
"east": "low",
"north": "none",
@@ -76341,7 +80738,7 @@
}
},
{
- "id": 17209,
+ "id": 17678,
"properties": {
"east": "low",
"north": "none",
@@ -76352,7 +80749,7 @@
}
},
{
- "id": 17210,
+ "id": 17679,
"properties": {
"east": "low",
"north": "none",
@@ -76363,7 +80760,7 @@
}
},
{
- "id": 17211,
+ "id": 17680,
"properties": {
"east": "low",
"north": "none",
@@ -76374,7 +80771,7 @@
}
},
{
- "id": 17212,
+ "id": 17681,
"properties": {
"east": "low",
"north": "none",
@@ -76385,7 +80782,7 @@
}
},
{
- "id": 17213,
+ "id": 17682,
"properties": {
"east": "low",
"north": "none",
@@ -76396,7 +80793,7 @@
}
},
{
- "id": 17214,
+ "id": 17683,
"properties": {
"east": "low",
"north": "none",
@@ -76407,7 +80804,7 @@
}
},
{
- "id": 17215,
+ "id": 17684,
"properties": {
"east": "low",
"north": "none",
@@ -76418,7 +80815,7 @@
}
},
{
- "id": 17216,
+ "id": 17685,
"properties": {
"east": "low",
"north": "none",
@@ -76429,7 +80826,7 @@
}
},
{
- "id": 17217,
+ "id": 17686,
"properties": {
"east": "low",
"north": "none",
@@ -76440,7 +80837,7 @@
}
},
{
- "id": 17218,
+ "id": 17687,
"properties": {
"east": "low",
"north": "none",
@@ -76451,7 +80848,7 @@
}
},
{
- "id": 17219,
+ "id": 17688,
"properties": {
"east": "low",
"north": "none",
@@ -76462,7 +80859,7 @@
}
},
{
- "id": 17220,
+ "id": 17689,
"properties": {
"east": "low",
"north": "none",
@@ -76473,7 +80870,7 @@
}
},
{
- "id": 17221,
+ "id": 17690,
"properties": {
"east": "low",
"north": "none",
@@ -76484,7 +80881,7 @@
}
},
{
- "id": 17222,
+ "id": 17691,
"properties": {
"east": "low",
"north": "none",
@@ -76495,7 +80892,7 @@
}
},
{
- "id": 17223,
+ "id": 17692,
"properties": {
"east": "low",
"north": "none",
@@ -76506,7 +80903,7 @@
}
},
{
- "id": 17224,
+ "id": 17693,
"properties": {
"east": "low",
"north": "none",
@@ -76517,7 +80914,7 @@
}
},
{
- "id": 17225,
+ "id": 17694,
"properties": {
"east": "low",
"north": "none",
@@ -76528,7 +80925,7 @@
}
},
{
- "id": 17226,
+ "id": 17695,
"properties": {
"east": "low",
"north": "none",
@@ -76539,7 +80936,7 @@
}
},
{
- "id": 17227,
+ "id": 17696,
"properties": {
"east": "low",
"north": "none",
@@ -76550,7 +80947,7 @@
}
},
{
- "id": 17228,
+ "id": 17697,
"properties": {
"east": "low",
"north": "none",
@@ -76561,7 +80958,7 @@
}
},
{
- "id": 17229,
+ "id": 17698,
"properties": {
"east": "low",
"north": "none",
@@ -76572,7 +80969,7 @@
}
},
{
- "id": 17230,
+ "id": 17699,
"properties": {
"east": "low",
"north": "none",
@@ -76583,7 +80980,7 @@
}
},
{
- "id": 17231,
+ "id": 17700,
"properties": {
"east": "low",
"north": "none",
@@ -76594,7 +80991,7 @@
}
},
{
- "id": 17232,
+ "id": 17701,
"properties": {
"east": "low",
"north": "none",
@@ -76605,7 +81002,7 @@
}
},
{
- "id": 17233,
+ "id": 17702,
"properties": {
"east": "low",
"north": "none",
@@ -76616,7 +81013,7 @@
}
},
{
- "id": 17234,
+ "id": 17703,
"properties": {
"east": "low",
"north": "none",
@@ -76627,7 +81024,7 @@
}
},
{
- "id": 17235,
+ "id": 17704,
"properties": {
"east": "low",
"north": "none",
@@ -76638,7 +81035,7 @@
}
},
{
- "id": 17236,
+ "id": 17705,
"properties": {
"east": "low",
"north": "none",
@@ -76649,7 +81046,7 @@
}
},
{
- "id": 17237,
+ "id": 17706,
"properties": {
"east": "low",
"north": "none",
@@ -76660,7 +81057,7 @@
}
},
{
- "id": 17238,
+ "id": 17707,
"properties": {
"east": "low",
"north": "none",
@@ -76671,7 +81068,7 @@
}
},
{
- "id": 17239,
+ "id": 17708,
"properties": {
"east": "low",
"north": "none",
@@ -76682,7 +81079,7 @@
}
},
{
- "id": 17240,
+ "id": 17709,
"properties": {
"east": "low",
"north": "low",
@@ -76693,7 +81090,7 @@
}
},
{
- "id": 17241,
+ "id": 17710,
"properties": {
"east": "low",
"north": "low",
@@ -76704,7 +81101,7 @@
}
},
{
- "id": 17242,
+ "id": 17711,
"properties": {
"east": "low",
"north": "low",
@@ -76715,7 +81112,7 @@
}
},
{
- "id": 17243,
+ "id": 17712,
"properties": {
"east": "low",
"north": "low",
@@ -76726,7 +81123,7 @@
}
},
{
- "id": 17244,
+ "id": 17713,
"properties": {
"east": "low",
"north": "low",
@@ -76737,7 +81134,7 @@
}
},
{
- "id": 17245,
+ "id": 17714,
"properties": {
"east": "low",
"north": "low",
@@ -76748,7 +81145,7 @@
}
},
{
- "id": 17246,
+ "id": 17715,
"properties": {
"east": "low",
"north": "low",
@@ -76759,7 +81156,7 @@
}
},
{
- "id": 17247,
+ "id": 17716,
"properties": {
"east": "low",
"north": "low",
@@ -76770,7 +81167,7 @@
}
},
{
- "id": 17248,
+ "id": 17717,
"properties": {
"east": "low",
"north": "low",
@@ -76781,7 +81178,7 @@
}
},
{
- "id": 17249,
+ "id": 17718,
"properties": {
"east": "low",
"north": "low",
@@ -76792,7 +81189,7 @@
}
},
{
- "id": 17250,
+ "id": 17719,
"properties": {
"east": "low",
"north": "low",
@@ -76803,7 +81200,7 @@
}
},
{
- "id": 17251,
+ "id": 17720,
"properties": {
"east": "low",
"north": "low",
@@ -76814,7 +81211,7 @@
}
},
{
- "id": 17252,
+ "id": 17721,
"properties": {
"east": "low",
"north": "low",
@@ -76825,7 +81222,7 @@
}
},
{
- "id": 17253,
+ "id": 17722,
"properties": {
"east": "low",
"north": "low",
@@ -76836,7 +81233,7 @@
}
},
{
- "id": 17254,
+ "id": 17723,
"properties": {
"east": "low",
"north": "low",
@@ -76847,7 +81244,7 @@
}
},
{
- "id": 17255,
+ "id": 17724,
"properties": {
"east": "low",
"north": "low",
@@ -76858,7 +81255,7 @@
}
},
{
- "id": 17256,
+ "id": 17725,
"properties": {
"east": "low",
"north": "low",
@@ -76869,7 +81266,7 @@
}
},
{
- "id": 17257,
+ "id": 17726,
"properties": {
"east": "low",
"north": "low",
@@ -76880,7 +81277,7 @@
}
},
{
- "id": 17258,
+ "id": 17727,
"properties": {
"east": "low",
"north": "low",
@@ -76891,7 +81288,7 @@
}
},
{
- "id": 17259,
+ "id": 17728,
"properties": {
"east": "low",
"north": "low",
@@ -76902,7 +81299,7 @@
}
},
{
- "id": 17260,
+ "id": 17729,
"properties": {
"east": "low",
"north": "low",
@@ -76913,7 +81310,7 @@
}
},
{
- "id": 17261,
+ "id": 17730,
"properties": {
"east": "low",
"north": "low",
@@ -76924,7 +81321,7 @@
}
},
{
- "id": 17262,
+ "id": 17731,
"properties": {
"east": "low",
"north": "low",
@@ -76935,7 +81332,7 @@
}
},
{
- "id": 17263,
+ "id": 17732,
"properties": {
"east": "low",
"north": "low",
@@ -76946,7 +81343,7 @@
}
},
{
- "id": 17264,
+ "id": 17733,
"properties": {
"east": "low",
"north": "low",
@@ -76957,7 +81354,7 @@
}
},
{
- "id": 17265,
+ "id": 17734,
"properties": {
"east": "low",
"north": "low",
@@ -76968,7 +81365,7 @@
}
},
{
- "id": 17266,
+ "id": 17735,
"properties": {
"east": "low",
"north": "low",
@@ -76979,7 +81376,7 @@
}
},
{
- "id": 17267,
+ "id": 17736,
"properties": {
"east": "low",
"north": "low",
@@ -76990,7 +81387,7 @@
}
},
{
- "id": 17268,
+ "id": 17737,
"properties": {
"east": "low",
"north": "low",
@@ -77001,7 +81398,7 @@
}
},
{
- "id": 17269,
+ "id": 17738,
"properties": {
"east": "low",
"north": "low",
@@ -77012,7 +81409,7 @@
}
},
{
- "id": 17270,
+ "id": 17739,
"properties": {
"east": "low",
"north": "low",
@@ -77023,7 +81420,7 @@
}
},
{
- "id": 17271,
+ "id": 17740,
"properties": {
"east": "low",
"north": "low",
@@ -77034,7 +81431,7 @@
}
},
{
- "id": 17272,
+ "id": 17741,
"properties": {
"east": "low",
"north": "low",
@@ -77045,7 +81442,7 @@
}
},
{
- "id": 17273,
+ "id": 17742,
"properties": {
"east": "low",
"north": "low",
@@ -77056,7 +81453,7 @@
}
},
{
- "id": 17274,
+ "id": 17743,
"properties": {
"east": "low",
"north": "low",
@@ -77067,7 +81464,7 @@
}
},
{
- "id": 17275,
+ "id": 17744,
"properties": {
"east": "low",
"north": "low",
@@ -77078,7 +81475,7 @@
}
},
{
- "id": 17276,
+ "id": 17745,
"properties": {
"east": "low",
"north": "tall",
@@ -77089,7 +81486,7 @@
}
},
{
- "id": 17277,
+ "id": 17746,
"properties": {
"east": "low",
"north": "tall",
@@ -77100,7 +81497,7 @@
}
},
{
- "id": 17278,
+ "id": 17747,
"properties": {
"east": "low",
"north": "tall",
@@ -77111,7 +81508,7 @@
}
},
{
- "id": 17279,
+ "id": 17748,
"properties": {
"east": "low",
"north": "tall",
@@ -77122,7 +81519,7 @@
}
},
{
- "id": 17280,
+ "id": 17749,
"properties": {
"east": "low",
"north": "tall",
@@ -77133,7 +81530,7 @@
}
},
{
- "id": 17281,
+ "id": 17750,
"properties": {
"east": "low",
"north": "tall",
@@ -77144,7 +81541,7 @@
}
},
{
- "id": 17282,
+ "id": 17751,
"properties": {
"east": "low",
"north": "tall",
@@ -77155,7 +81552,7 @@
}
},
{
- "id": 17283,
+ "id": 17752,
"properties": {
"east": "low",
"north": "tall",
@@ -77166,7 +81563,7 @@
}
},
{
- "id": 17284,
+ "id": 17753,
"properties": {
"east": "low",
"north": "tall",
@@ -77177,7 +81574,7 @@
}
},
{
- "id": 17285,
+ "id": 17754,
"properties": {
"east": "low",
"north": "tall",
@@ -77188,7 +81585,7 @@
}
},
{
- "id": 17286,
+ "id": 17755,
"properties": {
"east": "low",
"north": "tall",
@@ -77199,7 +81596,7 @@
}
},
{
- "id": 17287,
+ "id": 17756,
"properties": {
"east": "low",
"north": "tall",
@@ -77210,7 +81607,7 @@
}
},
{
- "id": 17288,
+ "id": 17757,
"properties": {
"east": "low",
"north": "tall",
@@ -77221,7 +81618,7 @@
}
},
{
- "id": 17289,
+ "id": 17758,
"properties": {
"east": "low",
"north": "tall",
@@ -77232,7 +81629,7 @@
}
},
{
- "id": 17290,
+ "id": 17759,
"properties": {
"east": "low",
"north": "tall",
@@ -77243,7 +81640,7 @@
}
},
{
- "id": 17291,
+ "id": 17760,
"properties": {
"east": "low",
"north": "tall",
@@ -77254,7 +81651,7 @@
}
},
{
- "id": 17292,
+ "id": 17761,
"properties": {
"east": "low",
"north": "tall",
@@ -77265,7 +81662,7 @@
}
},
{
- "id": 17293,
+ "id": 17762,
"properties": {
"east": "low",
"north": "tall",
@@ -77276,7 +81673,7 @@
}
},
{
- "id": 17294,
+ "id": 17763,
"properties": {
"east": "low",
"north": "tall",
@@ -77287,7 +81684,7 @@
}
},
{
- "id": 17295,
+ "id": 17764,
"properties": {
"east": "low",
"north": "tall",
@@ -77298,7 +81695,7 @@
}
},
{
- "id": 17296,
+ "id": 17765,
"properties": {
"east": "low",
"north": "tall",
@@ -77309,7 +81706,7 @@
}
},
{
- "id": 17297,
+ "id": 17766,
"properties": {
"east": "low",
"north": "tall",
@@ -77320,7 +81717,7 @@
}
},
{
- "id": 17298,
+ "id": 17767,
"properties": {
"east": "low",
"north": "tall",
@@ -77331,7 +81728,7 @@
}
},
{
- "id": 17299,
+ "id": 17768,
"properties": {
"east": "low",
"north": "tall",
@@ -77342,7 +81739,7 @@
}
},
{
- "id": 17300,
+ "id": 17769,
"properties": {
"east": "low",
"north": "tall",
@@ -77353,7 +81750,7 @@
}
},
{
- "id": 17301,
+ "id": 17770,
"properties": {
"east": "low",
"north": "tall",
@@ -77364,7 +81761,7 @@
}
},
{
- "id": 17302,
+ "id": 17771,
"properties": {
"east": "low",
"north": "tall",
@@ -77375,7 +81772,7 @@
}
},
{
- "id": 17303,
+ "id": 17772,
"properties": {
"east": "low",
"north": "tall",
@@ -77386,7 +81783,7 @@
}
},
{
- "id": 17304,
+ "id": 17773,
"properties": {
"east": "low",
"north": "tall",
@@ -77397,7 +81794,7 @@
}
},
{
- "id": 17305,
+ "id": 17774,
"properties": {
"east": "low",
"north": "tall",
@@ -77408,7 +81805,7 @@
}
},
{
- "id": 17306,
+ "id": 17775,
"properties": {
"east": "low",
"north": "tall",
@@ -77419,7 +81816,7 @@
}
},
{
- "id": 17307,
+ "id": 17776,
"properties": {
"east": "low",
"north": "tall",
@@ -77430,7 +81827,7 @@
}
},
{
- "id": 17308,
+ "id": 17777,
"properties": {
"east": "low",
"north": "tall",
@@ -77441,7 +81838,7 @@
}
},
{
- "id": 17309,
+ "id": 17778,
"properties": {
"east": "low",
"north": "tall",
@@ -77452,7 +81849,7 @@
}
},
{
- "id": 17310,
+ "id": 17779,
"properties": {
"east": "low",
"north": "tall",
@@ -77463,7 +81860,7 @@
}
},
{
- "id": 17311,
+ "id": 17780,
"properties": {
"east": "low",
"north": "tall",
@@ -77474,7 +81871,7 @@
}
},
{
- "id": 17312,
+ "id": 17781,
"properties": {
"east": "tall",
"north": "none",
@@ -77485,7 +81882,7 @@
}
},
{
- "id": 17313,
+ "id": 17782,
"properties": {
"east": "tall",
"north": "none",
@@ -77496,7 +81893,7 @@
}
},
{
- "id": 17314,
+ "id": 17783,
"properties": {
"east": "tall",
"north": "none",
@@ -77507,7 +81904,7 @@
}
},
{
- "id": 17315,
+ "id": 17784,
"properties": {
"east": "tall",
"north": "none",
@@ -77518,7 +81915,7 @@
}
},
{
- "id": 17316,
+ "id": 17785,
"properties": {
"east": "tall",
"north": "none",
@@ -77529,7 +81926,7 @@
}
},
{
- "id": 17317,
+ "id": 17786,
"properties": {
"east": "tall",
"north": "none",
@@ -77540,7 +81937,7 @@
}
},
{
- "id": 17318,
+ "id": 17787,
"properties": {
"east": "tall",
"north": "none",
@@ -77551,7 +81948,7 @@
}
},
{
- "id": 17319,
+ "id": 17788,
"properties": {
"east": "tall",
"north": "none",
@@ -77562,7 +81959,7 @@
}
},
{
- "id": 17320,
+ "id": 17789,
"properties": {
"east": "tall",
"north": "none",
@@ -77573,7 +81970,7 @@
}
},
{
- "id": 17321,
+ "id": 17790,
"properties": {
"east": "tall",
"north": "none",
@@ -77584,7 +81981,7 @@
}
},
{
- "id": 17322,
+ "id": 17791,
"properties": {
"east": "tall",
"north": "none",
@@ -77595,7 +81992,7 @@
}
},
{
- "id": 17323,
+ "id": 17792,
"properties": {
"east": "tall",
"north": "none",
@@ -77606,7 +82003,7 @@
}
},
{
- "id": 17324,
+ "id": 17793,
"properties": {
"east": "tall",
"north": "none",
@@ -77617,7 +82014,7 @@
}
},
{
- "id": 17325,
+ "id": 17794,
"properties": {
"east": "tall",
"north": "none",
@@ -77628,7 +82025,7 @@
}
},
{
- "id": 17326,
+ "id": 17795,
"properties": {
"east": "tall",
"north": "none",
@@ -77639,7 +82036,7 @@
}
},
{
- "id": 17327,
+ "id": 17796,
"properties": {
"east": "tall",
"north": "none",
@@ -77650,7 +82047,7 @@
}
},
{
- "id": 17328,
+ "id": 17797,
"properties": {
"east": "tall",
"north": "none",
@@ -77661,7 +82058,7 @@
}
},
{
- "id": 17329,
+ "id": 17798,
"properties": {
"east": "tall",
"north": "none",
@@ -77672,7 +82069,7 @@
}
},
{
- "id": 17330,
+ "id": 17799,
"properties": {
"east": "tall",
"north": "none",
@@ -77683,7 +82080,7 @@
}
},
{
- "id": 17331,
+ "id": 17800,
"properties": {
"east": "tall",
"north": "none",
@@ -77694,7 +82091,7 @@
}
},
{
- "id": 17332,
+ "id": 17801,
"properties": {
"east": "tall",
"north": "none",
@@ -77705,7 +82102,7 @@
}
},
{
- "id": 17333,
+ "id": 17802,
"properties": {
"east": "tall",
"north": "none",
@@ -77716,7 +82113,7 @@
}
},
{
- "id": 17334,
+ "id": 17803,
"properties": {
"east": "tall",
"north": "none",
@@ -77727,7 +82124,7 @@
}
},
{
- "id": 17335,
+ "id": 17804,
"properties": {
"east": "tall",
"north": "none",
@@ -77738,7 +82135,7 @@
}
},
{
- "id": 17336,
+ "id": 17805,
"properties": {
"east": "tall",
"north": "none",
@@ -77749,7 +82146,7 @@
}
},
{
- "id": 17337,
+ "id": 17806,
"properties": {
"east": "tall",
"north": "none",
@@ -77760,7 +82157,7 @@
}
},
{
- "id": 17338,
+ "id": 17807,
"properties": {
"east": "tall",
"north": "none",
@@ -77771,7 +82168,7 @@
}
},
{
- "id": 17339,
+ "id": 17808,
"properties": {
"east": "tall",
"north": "none",
@@ -77782,7 +82179,7 @@
}
},
{
- "id": 17340,
+ "id": 17809,
"properties": {
"east": "tall",
"north": "none",
@@ -77793,7 +82190,7 @@
}
},
{
- "id": 17341,
+ "id": 17810,
"properties": {
"east": "tall",
"north": "none",
@@ -77804,7 +82201,7 @@
}
},
{
- "id": 17342,
+ "id": 17811,
"properties": {
"east": "tall",
"north": "none",
@@ -77815,7 +82212,7 @@
}
},
{
- "id": 17343,
+ "id": 17812,
"properties": {
"east": "tall",
"north": "none",
@@ -77826,7 +82223,7 @@
}
},
{
- "id": 17344,
+ "id": 17813,
"properties": {
"east": "tall",
"north": "none",
@@ -77837,7 +82234,7 @@
}
},
{
- "id": 17345,
+ "id": 17814,
"properties": {
"east": "tall",
"north": "none",
@@ -77848,7 +82245,7 @@
}
},
{
- "id": 17346,
+ "id": 17815,
"properties": {
"east": "tall",
"north": "none",
@@ -77859,7 +82256,7 @@
}
},
{
- "id": 17347,
+ "id": 17816,
"properties": {
"east": "tall",
"north": "none",
@@ -77870,7 +82267,7 @@
}
},
{
- "id": 17348,
+ "id": 17817,
"properties": {
"east": "tall",
"north": "low",
@@ -77881,7 +82278,7 @@
}
},
{
- "id": 17349,
+ "id": 17818,
"properties": {
"east": "tall",
"north": "low",
@@ -77892,7 +82289,7 @@
}
},
{
- "id": 17350,
+ "id": 17819,
"properties": {
"east": "tall",
"north": "low",
@@ -77903,7 +82300,7 @@
}
},
{
- "id": 17351,
+ "id": 17820,
"properties": {
"east": "tall",
"north": "low",
@@ -77914,7 +82311,7 @@
}
},
{
- "id": 17352,
+ "id": 17821,
"properties": {
"east": "tall",
"north": "low",
@@ -77925,7 +82322,7 @@
}
},
{
- "id": 17353,
+ "id": 17822,
"properties": {
"east": "tall",
"north": "low",
@@ -77936,7 +82333,7 @@
}
},
{
- "id": 17354,
+ "id": 17823,
"properties": {
"east": "tall",
"north": "low",
@@ -77947,7 +82344,7 @@
}
},
{
- "id": 17355,
+ "id": 17824,
"properties": {
"east": "tall",
"north": "low",
@@ -77958,7 +82355,7 @@
}
},
{
- "id": 17356,
+ "id": 17825,
"properties": {
"east": "tall",
"north": "low",
@@ -77969,7 +82366,7 @@
}
},
{
- "id": 17357,
+ "id": 17826,
"properties": {
"east": "tall",
"north": "low",
@@ -77980,7 +82377,7 @@
}
},
{
- "id": 17358,
+ "id": 17827,
"properties": {
"east": "tall",
"north": "low",
@@ -77991,7 +82388,7 @@
}
},
{
- "id": 17359,
+ "id": 17828,
"properties": {
"east": "tall",
"north": "low",
@@ -78002,7 +82399,7 @@
}
},
{
- "id": 17360,
+ "id": 17829,
"properties": {
"east": "tall",
"north": "low",
@@ -78013,7 +82410,7 @@
}
},
{
- "id": 17361,
+ "id": 17830,
"properties": {
"east": "tall",
"north": "low",
@@ -78024,7 +82421,7 @@
}
},
{
- "id": 17362,
+ "id": 17831,
"properties": {
"east": "tall",
"north": "low",
@@ -78035,7 +82432,7 @@
}
},
{
- "id": 17363,
+ "id": 17832,
"properties": {
"east": "tall",
"north": "low",
@@ -78046,7 +82443,7 @@
}
},
{
- "id": 17364,
+ "id": 17833,
"properties": {
"east": "tall",
"north": "low",
@@ -78057,7 +82454,7 @@
}
},
{
- "id": 17365,
+ "id": 17834,
"properties": {
"east": "tall",
"north": "low",
@@ -78068,7 +82465,7 @@
}
},
{
- "id": 17366,
+ "id": 17835,
"properties": {
"east": "tall",
"north": "low",
@@ -78079,7 +82476,7 @@
}
},
{
- "id": 17367,
+ "id": 17836,
"properties": {
"east": "tall",
"north": "low",
@@ -78090,7 +82487,7 @@
}
},
{
- "id": 17368,
+ "id": 17837,
"properties": {
"east": "tall",
"north": "low",
@@ -78101,7 +82498,7 @@
}
},
{
- "id": 17369,
+ "id": 17838,
"properties": {
"east": "tall",
"north": "low",
@@ -78112,7 +82509,7 @@
}
},
{
- "id": 17370,
+ "id": 17839,
"properties": {
"east": "tall",
"north": "low",
@@ -78123,7 +82520,7 @@
}
},
{
- "id": 17371,
+ "id": 17840,
"properties": {
"east": "tall",
"north": "low",
@@ -78134,7 +82531,7 @@
}
},
{
- "id": 17372,
+ "id": 17841,
"properties": {
"east": "tall",
"north": "low",
@@ -78145,7 +82542,7 @@
}
},
{
- "id": 17373,
+ "id": 17842,
"properties": {
"east": "tall",
"north": "low",
@@ -78156,7 +82553,7 @@
}
},
{
- "id": 17374,
+ "id": 17843,
"properties": {
"east": "tall",
"north": "low",
@@ -78167,7 +82564,7 @@
}
},
{
- "id": 17375,
+ "id": 17844,
"properties": {
"east": "tall",
"north": "low",
@@ -78178,7 +82575,7 @@
}
},
{
- "id": 17376,
+ "id": 17845,
"properties": {
"east": "tall",
"north": "low",
@@ -78189,7 +82586,7 @@
}
},
{
- "id": 17377,
+ "id": 17846,
"properties": {
"east": "tall",
"north": "low",
@@ -78200,7 +82597,7 @@
}
},
{
- "id": 17378,
+ "id": 17847,
"properties": {
"east": "tall",
"north": "low",
@@ -78211,7 +82608,7 @@
}
},
{
- "id": 17379,
+ "id": 17848,
"properties": {
"east": "tall",
"north": "low",
@@ -78222,7 +82619,7 @@
}
},
{
- "id": 17380,
+ "id": 17849,
"properties": {
"east": "tall",
"north": "low",
@@ -78233,7 +82630,7 @@
}
},
{
- "id": 17381,
+ "id": 17850,
"properties": {
"east": "tall",
"north": "low",
@@ -78244,7 +82641,7 @@
}
},
{
- "id": 17382,
+ "id": 17851,
"properties": {
"east": "tall",
"north": "low",
@@ -78255,7 +82652,7 @@
}
},
{
- "id": 17383,
+ "id": 17852,
"properties": {
"east": "tall",
"north": "low",
@@ -78266,7 +82663,7 @@
}
},
{
- "id": 17384,
+ "id": 17853,
"properties": {
"east": "tall",
"north": "tall",
@@ -78277,7 +82674,7 @@
}
},
{
- "id": 17385,
+ "id": 17854,
"properties": {
"east": "tall",
"north": "tall",
@@ -78288,7 +82685,7 @@
}
},
{
- "id": 17386,
+ "id": 17855,
"properties": {
"east": "tall",
"north": "tall",
@@ -78299,7 +82696,7 @@
}
},
{
- "id": 17387,
+ "id": 17856,
"properties": {
"east": "tall",
"north": "tall",
@@ -78310,7 +82707,7 @@
}
},
{
- "id": 17388,
+ "id": 17857,
"properties": {
"east": "tall",
"north": "tall",
@@ -78321,7 +82718,7 @@
}
},
{
- "id": 17389,
+ "id": 17858,
"properties": {
"east": "tall",
"north": "tall",
@@ -78332,7 +82729,7 @@
}
},
{
- "id": 17390,
+ "id": 17859,
"properties": {
"east": "tall",
"north": "tall",
@@ -78343,7 +82740,7 @@
}
},
{
- "id": 17391,
+ "id": 17860,
"properties": {
"east": "tall",
"north": "tall",
@@ -78354,7 +82751,7 @@
}
},
{
- "id": 17392,
+ "id": 17861,
"properties": {
"east": "tall",
"north": "tall",
@@ -78365,7 +82762,7 @@
}
},
{
- "id": 17393,
+ "id": 17862,
"properties": {
"east": "tall",
"north": "tall",
@@ -78376,7 +82773,7 @@
}
},
{
- "id": 17394,
+ "id": 17863,
"properties": {
"east": "tall",
"north": "tall",
@@ -78387,7 +82784,7 @@
}
},
{
- "id": 17395,
+ "id": 17864,
"properties": {
"east": "tall",
"north": "tall",
@@ -78398,7 +82795,7 @@
}
},
{
- "id": 17396,
+ "id": 17865,
"properties": {
"east": "tall",
"north": "tall",
@@ -78409,7 +82806,7 @@
}
},
{
- "id": 17397,
+ "id": 17866,
"properties": {
"east": "tall",
"north": "tall",
@@ -78420,7 +82817,7 @@
}
},
{
- "id": 17398,
+ "id": 17867,
"properties": {
"east": "tall",
"north": "tall",
@@ -78431,7 +82828,7 @@
}
},
{
- "id": 17399,
+ "id": 17868,
"properties": {
"east": "tall",
"north": "tall",
@@ -78442,7 +82839,7 @@
}
},
{
- "id": 17400,
+ "id": 17869,
"properties": {
"east": "tall",
"north": "tall",
@@ -78453,7 +82850,7 @@
}
},
{
- "id": 17401,
+ "id": 17870,
"properties": {
"east": "tall",
"north": "tall",
@@ -78464,7 +82861,7 @@
}
},
{
- "id": 17402,
+ "id": 17871,
"properties": {
"east": "tall",
"north": "tall",
@@ -78475,7 +82872,7 @@
}
},
{
- "id": 17403,
+ "id": 17872,
"properties": {
"east": "tall",
"north": "tall",
@@ -78486,7 +82883,7 @@
}
},
{
- "id": 17404,
+ "id": 17873,
"properties": {
"east": "tall",
"north": "tall",
@@ -78497,7 +82894,7 @@
}
},
{
- "id": 17405,
+ "id": 17874,
"properties": {
"east": "tall",
"north": "tall",
@@ -78508,7 +82905,7 @@
}
},
{
- "id": 17406,
+ "id": 17875,
"properties": {
"east": "tall",
"north": "tall",
@@ -78519,7 +82916,7 @@
}
},
{
- "id": 17407,
+ "id": 17876,
"properties": {
"east": "tall",
"north": "tall",
@@ -78530,7 +82927,7 @@
}
},
{
- "id": 17408,
+ "id": 17877,
"properties": {
"east": "tall",
"north": "tall",
@@ -78541,7 +82938,7 @@
}
},
{
- "id": 17409,
+ "id": 17878,
"properties": {
"east": "tall",
"north": "tall",
@@ -78552,7 +82949,7 @@
}
},
{
- "id": 17410,
+ "id": 17879,
"properties": {
"east": "tall",
"north": "tall",
@@ -78563,7 +82960,7 @@
}
},
{
- "id": 17411,
+ "id": 17880,
"properties": {
"east": "tall",
"north": "tall",
@@ -78574,7 +82971,7 @@
}
},
{
- "id": 17412,
+ "id": 17881,
"properties": {
"east": "tall",
"north": "tall",
@@ -78585,7 +82982,7 @@
}
},
{
- "id": 17413,
+ "id": 17882,
"properties": {
"east": "tall",
"north": "tall",
@@ -78596,7 +82993,7 @@
}
},
{
- "id": 17414,
+ "id": 17883,
"properties": {
"east": "tall",
"north": "tall",
@@ -78607,7 +83004,7 @@
}
},
{
- "id": 17415,
+ "id": 17884,
"properties": {
"east": "tall",
"north": "tall",
@@ -78618,7 +83015,7 @@
}
},
{
- "id": 17416,
+ "id": 17885,
"properties": {
"east": "tall",
"north": "tall",
@@ -78629,7 +83026,7 @@
}
},
{
- "id": 17417,
+ "id": 17886,
"properties": {
"east": "tall",
"north": "tall",
@@ -78640,7 +83037,7 @@
}
},
{
- "id": 17418,
+ "id": 17887,
"properties": {
"east": "tall",
"north": "tall",
@@ -78651,7 +83048,7 @@
}
},
{
- "id": 17419,
+ "id": 17888,
"properties": {
"east": "tall",
"north": "tall",
@@ -78667,7 +83064,7 @@
"states": [
{
"default": true,
- "id": 11883
+ "id": 12349
}
]
},
@@ -78686,7 +83083,7 @@
},
"states": [
{
- "id": 7283,
+ "id": 7509,
"properties": {
"facing": "north",
"waterlogged": "true"
@@ -78694,49 +83091,49 @@
},
{
"default": true,
- "id": 7284,
+ "id": 7510,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 7285,
+ "id": 7511,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 7286,
+ "id": 7512,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 7287,
+ "id": 7513,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 7288,
+ "id": 7514,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 7289,
+ "id": 7515,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 7290,
+ "id": 7516,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -78748,7 +83145,7 @@
"states": [
{
"default": true,
- "id": 20694
+ "id": 21163
}
]
},
@@ -78756,7 +83153,7 @@
"states": [
{
"default": true,
- "id": 20700
+ "id": 21169
}
]
},
@@ -78774,21 +83171,21 @@
},
"states": [
{
- "id": 21034,
+ "id": 21503,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 21035,
+ "id": 21504,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 21036,
+ "id": 21505,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -78796,21 +83193,21 @@
},
{
"default": true,
- "id": 21037,
+ "id": 21506,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 21038,
+ "id": 21507,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 21039,
+ "id": 21508,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -78844,7 +83241,7 @@
},
"states": [
{
- "id": 20862,
+ "id": 21331,
"properties": {
"facing": "north",
"half": "top",
@@ -78853,7 +83250,7 @@
}
},
{
- "id": 20863,
+ "id": 21332,
"properties": {
"facing": "north",
"half": "top",
@@ -78862,7 +83259,7 @@
}
},
{
- "id": 20864,
+ "id": 21333,
"properties": {
"facing": "north",
"half": "top",
@@ -78871,7 +83268,7 @@
}
},
{
- "id": 20865,
+ "id": 21334,
"properties": {
"facing": "north",
"half": "top",
@@ -78880,7 +83277,7 @@
}
},
{
- "id": 20866,
+ "id": 21335,
"properties": {
"facing": "north",
"half": "top",
@@ -78889,7 +83286,7 @@
}
},
{
- "id": 20867,
+ "id": 21336,
"properties": {
"facing": "north",
"half": "top",
@@ -78898,7 +83295,7 @@
}
},
{
- "id": 20868,
+ "id": 21337,
"properties": {
"facing": "north",
"half": "top",
@@ -78907,7 +83304,7 @@
}
},
{
- "id": 20869,
+ "id": 21338,
"properties": {
"facing": "north",
"half": "top",
@@ -78916,7 +83313,7 @@
}
},
{
- "id": 20870,
+ "id": 21339,
"properties": {
"facing": "north",
"half": "top",
@@ -78925,7 +83322,7 @@
}
},
{
- "id": 20871,
+ "id": 21340,
"properties": {
"facing": "north",
"half": "top",
@@ -78934,7 +83331,7 @@
}
},
{
- "id": 20872,
+ "id": 21341,
"properties": {
"facing": "north",
"half": "bottom",
@@ -78944,7 +83341,7 @@
},
{
"default": true,
- "id": 20873,
+ "id": 21342,
"properties": {
"facing": "north",
"half": "bottom",
@@ -78953,7 +83350,7 @@
}
},
{
- "id": 20874,
+ "id": 21343,
"properties": {
"facing": "north",
"half": "bottom",
@@ -78962,7 +83359,7 @@
}
},
{
- "id": 20875,
+ "id": 21344,
"properties": {
"facing": "north",
"half": "bottom",
@@ -78971,7 +83368,7 @@
}
},
{
- "id": 20876,
+ "id": 21345,
"properties": {
"facing": "north",
"half": "bottom",
@@ -78980,7 +83377,7 @@
}
},
{
- "id": 20877,
+ "id": 21346,
"properties": {
"facing": "north",
"half": "bottom",
@@ -78989,7 +83386,7 @@
}
},
{
- "id": 20878,
+ "id": 21347,
"properties": {
"facing": "north",
"half": "bottom",
@@ -78998,7 +83395,7 @@
}
},
{
- "id": 20879,
+ "id": 21348,
"properties": {
"facing": "north",
"half": "bottom",
@@ -79007,7 +83404,7 @@
}
},
{
- "id": 20880,
+ "id": 21349,
"properties": {
"facing": "north",
"half": "bottom",
@@ -79016,7 +83413,7 @@
}
},
{
- "id": 20881,
+ "id": 21350,
"properties": {
"facing": "north",
"half": "bottom",
@@ -79025,7 +83422,7 @@
}
},
{
- "id": 20882,
+ "id": 21351,
"properties": {
"facing": "south",
"half": "top",
@@ -79034,7 +83431,7 @@
}
},
{
- "id": 20883,
+ "id": 21352,
"properties": {
"facing": "south",
"half": "top",
@@ -79043,7 +83440,7 @@
}
},
{
- "id": 20884,
+ "id": 21353,
"properties": {
"facing": "south",
"half": "top",
@@ -79052,7 +83449,7 @@
}
},
{
- "id": 20885,
+ "id": 21354,
"properties": {
"facing": "south",
"half": "top",
@@ -79061,7 +83458,7 @@
}
},
{
- "id": 20886,
+ "id": 21355,
"properties": {
"facing": "south",
"half": "top",
@@ -79070,7 +83467,7 @@
}
},
{
- "id": 20887,
+ "id": 21356,
"properties": {
"facing": "south",
"half": "top",
@@ -79079,7 +83476,7 @@
}
},
{
- "id": 20888,
+ "id": 21357,
"properties": {
"facing": "south",
"half": "top",
@@ -79088,7 +83485,7 @@
}
},
{
- "id": 20889,
+ "id": 21358,
"properties": {
"facing": "south",
"half": "top",
@@ -79097,7 +83494,7 @@
}
},
{
- "id": 20890,
+ "id": 21359,
"properties": {
"facing": "south",
"half": "top",
@@ -79106,7 +83503,7 @@
}
},
{
- "id": 20891,
+ "id": 21360,
"properties": {
"facing": "south",
"half": "top",
@@ -79115,7 +83512,7 @@
}
},
{
- "id": 20892,
+ "id": 21361,
"properties": {
"facing": "south",
"half": "bottom",
@@ -79124,7 +83521,7 @@
}
},
{
- "id": 20893,
+ "id": 21362,
"properties": {
"facing": "south",
"half": "bottom",
@@ -79133,7 +83530,7 @@
}
},
{
- "id": 20894,
+ "id": 21363,
"properties": {
"facing": "south",
"half": "bottom",
@@ -79142,7 +83539,7 @@
}
},
{
- "id": 20895,
+ "id": 21364,
"properties": {
"facing": "south",
"half": "bottom",
@@ -79151,7 +83548,7 @@
}
},
{
- "id": 20896,
+ "id": 21365,
"properties": {
"facing": "south",
"half": "bottom",
@@ -79160,7 +83557,7 @@
}
},
{
- "id": 20897,
+ "id": 21366,
"properties": {
"facing": "south",
"half": "bottom",
@@ -79169,7 +83566,7 @@
}
},
{
- "id": 20898,
+ "id": 21367,
"properties": {
"facing": "south",
"half": "bottom",
@@ -79178,7 +83575,7 @@
}
},
{
- "id": 20899,
+ "id": 21368,
"properties": {
"facing": "south",
"half": "bottom",
@@ -79187,7 +83584,7 @@
}
},
{
- "id": 20900,
+ "id": 21369,
"properties": {
"facing": "south",
"half": "bottom",
@@ -79196,7 +83593,7 @@
}
},
{
- "id": 20901,
+ "id": 21370,
"properties": {
"facing": "south",
"half": "bottom",
@@ -79205,7 +83602,7 @@
}
},
{
- "id": 20902,
+ "id": 21371,
"properties": {
"facing": "west",
"half": "top",
@@ -79214,7 +83611,7 @@
}
},
{
- "id": 20903,
+ "id": 21372,
"properties": {
"facing": "west",
"half": "top",
@@ -79223,7 +83620,7 @@
}
},
{
- "id": 20904,
+ "id": 21373,
"properties": {
"facing": "west",
"half": "top",
@@ -79232,7 +83629,7 @@
}
},
{
- "id": 20905,
+ "id": 21374,
"properties": {
"facing": "west",
"half": "top",
@@ -79241,7 +83638,7 @@
}
},
{
- "id": 20906,
+ "id": 21375,
"properties": {
"facing": "west",
"half": "top",
@@ -79250,7 +83647,7 @@
}
},
{
- "id": 20907,
+ "id": 21376,
"properties": {
"facing": "west",
"half": "top",
@@ -79259,7 +83656,7 @@
}
},
{
- "id": 20908,
+ "id": 21377,
"properties": {
"facing": "west",
"half": "top",
@@ -79268,7 +83665,7 @@
}
},
{
- "id": 20909,
+ "id": 21378,
"properties": {
"facing": "west",
"half": "top",
@@ -79277,7 +83674,7 @@
}
},
{
- "id": 20910,
+ "id": 21379,
"properties": {
"facing": "west",
"half": "top",
@@ -79286,7 +83683,7 @@
}
},
{
- "id": 20911,
+ "id": 21380,
"properties": {
"facing": "west",
"half": "top",
@@ -79295,7 +83692,7 @@
}
},
{
- "id": 20912,
+ "id": 21381,
"properties": {
"facing": "west",
"half": "bottom",
@@ -79304,7 +83701,7 @@
}
},
{
- "id": 20913,
+ "id": 21382,
"properties": {
"facing": "west",
"half": "bottom",
@@ -79313,7 +83710,7 @@
}
},
{
- "id": 20914,
+ "id": 21383,
"properties": {
"facing": "west",
"half": "bottom",
@@ -79322,7 +83719,7 @@
}
},
{
- "id": 20915,
+ "id": 21384,
"properties": {
"facing": "west",
"half": "bottom",
@@ -79331,7 +83728,7 @@
}
},
{
- "id": 20916,
+ "id": 21385,
"properties": {
"facing": "west",
"half": "bottom",
@@ -79340,7 +83737,7 @@
}
},
{
- "id": 20917,
+ "id": 21386,
"properties": {
"facing": "west",
"half": "bottom",
@@ -79349,7 +83746,7 @@
}
},
{
- "id": 20918,
+ "id": 21387,
"properties": {
"facing": "west",
"half": "bottom",
@@ -79358,7 +83755,7 @@
}
},
{
- "id": 20919,
+ "id": 21388,
"properties": {
"facing": "west",
"half": "bottom",
@@ -79367,7 +83764,7 @@
}
},
{
- "id": 20920,
+ "id": 21389,
"properties": {
"facing": "west",
"half": "bottom",
@@ -79376,7 +83773,7 @@
}
},
{
- "id": 20921,
+ "id": 21390,
"properties": {
"facing": "west",
"half": "bottom",
@@ -79385,7 +83782,7 @@
}
},
{
- "id": 20922,
+ "id": 21391,
"properties": {
"facing": "east",
"half": "top",
@@ -79394,7 +83791,7 @@
}
},
{
- "id": 20923,
+ "id": 21392,
"properties": {
"facing": "east",
"half": "top",
@@ -79403,7 +83800,7 @@
}
},
{
- "id": 20924,
+ "id": 21393,
"properties": {
"facing": "east",
"half": "top",
@@ -79412,7 +83809,7 @@
}
},
{
- "id": 20925,
+ "id": 21394,
"properties": {
"facing": "east",
"half": "top",
@@ -79421,7 +83818,7 @@
}
},
{
- "id": 20926,
+ "id": 21395,
"properties": {
"facing": "east",
"half": "top",
@@ -79430,7 +83827,7 @@
}
},
{
- "id": 20927,
+ "id": 21396,
"properties": {
"facing": "east",
"half": "top",
@@ -79439,7 +83836,7 @@
}
},
{
- "id": 20928,
+ "id": 21397,
"properties": {
"facing": "east",
"half": "top",
@@ -79448,7 +83845,7 @@
}
},
{
- "id": 20929,
+ "id": 21398,
"properties": {
"facing": "east",
"half": "top",
@@ -79457,7 +83854,7 @@
}
},
{
- "id": 20930,
+ "id": 21399,
"properties": {
"facing": "east",
"half": "top",
@@ -79466,7 +83863,7 @@
}
},
{
- "id": 20931,
+ "id": 21400,
"properties": {
"facing": "east",
"half": "top",
@@ -79475,7 +83872,7 @@
}
},
{
- "id": 20932,
+ "id": 21401,
"properties": {
"facing": "east",
"half": "bottom",
@@ -79484,7 +83881,7 @@
}
},
{
- "id": 20933,
+ "id": 21402,
"properties": {
"facing": "east",
"half": "bottom",
@@ -79493,7 +83890,7 @@
}
},
{
- "id": 20934,
+ "id": 21403,
"properties": {
"facing": "east",
"half": "bottom",
@@ -79502,7 +83899,7 @@
}
},
{
- "id": 20935,
+ "id": 21404,
"properties": {
"facing": "east",
"half": "bottom",
@@ -79511,7 +83908,7 @@
}
},
{
- "id": 20936,
+ "id": 21405,
"properties": {
"facing": "east",
"half": "bottom",
@@ -79520,7 +83917,7 @@
}
},
{
- "id": 20937,
+ "id": 21406,
"properties": {
"facing": "east",
"half": "bottom",
@@ -79529,7 +83926,7 @@
}
},
{
- "id": 20938,
+ "id": 21407,
"properties": {
"facing": "east",
"half": "bottom",
@@ -79538,7 +83935,7 @@
}
},
{
- "id": 20939,
+ "id": 21408,
"properties": {
"facing": "east",
"half": "bottom",
@@ -79547,7 +83944,7 @@
}
},
{
- "id": 20940,
+ "id": 21409,
"properties": {
"facing": "east",
"half": "bottom",
@@ -79556,7 +83953,7 @@
}
},
{
- "id": 20941,
+ "id": 21410,
"properties": {
"facing": "east",
"half": "bottom",
@@ -79582,49 +83979,49 @@
"states": [
{
"default": true,
- "id": 4234,
+ "id": 4282,
"properties": {
"moisture": "0"
}
},
{
- "id": 4235,
+ "id": 4283,
"properties": {
"moisture": "1"
}
},
{
- "id": 4236,
+ "id": 4284,
"properties": {
"moisture": "2"
}
},
{
- "id": 4237,
+ "id": 4285,
"properties": {
"moisture": "3"
}
},
{
- "id": 4238,
+ "id": 4286,
"properties": {
"moisture": "4"
}
},
{
- "id": 4239,
+ "id": 4287,
"properties": {
"moisture": "5"
}
},
{
- "id": 4240,
+ "id": 4288,
"properties": {
"moisture": "6"
}
},
{
- "id": 4241,
+ "id": 4289,
"properties": {
"moisture": "7"
}
@@ -79635,7 +84032,7 @@
"states": [
{
"default": true,
- "id": 1955
+ "id": 2002
}
]
},
@@ -79682,7 +84079,7 @@
},
"states": [
{
- "id": 2308,
+ "id": 2356,
"properties": {
"age": "0",
"east": "true",
@@ -79693,7 +84090,7 @@
}
},
{
- "id": 2309,
+ "id": 2357,
"properties": {
"age": "0",
"east": "true",
@@ -79704,7 +84101,7 @@
}
},
{
- "id": 2310,
+ "id": 2358,
"properties": {
"age": "0",
"east": "true",
@@ -79715,7 +84112,7 @@
}
},
{
- "id": 2311,
+ "id": 2359,
"properties": {
"age": "0",
"east": "true",
@@ -79726,7 +84123,7 @@
}
},
{
- "id": 2312,
+ "id": 2360,
"properties": {
"age": "0",
"east": "true",
@@ -79737,7 +84134,7 @@
}
},
{
- "id": 2313,
+ "id": 2361,
"properties": {
"age": "0",
"east": "true",
@@ -79748,7 +84145,7 @@
}
},
{
- "id": 2314,
+ "id": 2362,
"properties": {
"age": "0",
"east": "true",
@@ -79759,7 +84156,7 @@
}
},
{
- "id": 2315,
+ "id": 2363,
"properties": {
"age": "0",
"east": "true",
@@ -79770,7 +84167,7 @@
}
},
{
- "id": 2316,
+ "id": 2364,
"properties": {
"age": "0",
"east": "true",
@@ -79781,7 +84178,7 @@
}
},
{
- "id": 2317,
+ "id": 2365,
"properties": {
"age": "0",
"east": "true",
@@ -79792,7 +84189,7 @@
}
},
{
- "id": 2318,
+ "id": 2366,
"properties": {
"age": "0",
"east": "true",
@@ -79803,7 +84200,7 @@
}
},
{
- "id": 2319,
+ "id": 2367,
"properties": {
"age": "0",
"east": "true",
@@ -79814,7 +84211,7 @@
}
},
{
- "id": 2320,
+ "id": 2368,
"properties": {
"age": "0",
"east": "true",
@@ -79825,7 +84222,7 @@
}
},
{
- "id": 2321,
+ "id": 2369,
"properties": {
"age": "0",
"east": "true",
@@ -79836,7 +84233,7 @@
}
},
{
- "id": 2322,
+ "id": 2370,
"properties": {
"age": "0",
"east": "true",
@@ -79847,7 +84244,7 @@
}
},
{
- "id": 2323,
+ "id": 2371,
"properties": {
"age": "0",
"east": "true",
@@ -79858,7 +84255,7 @@
}
},
{
- "id": 2324,
+ "id": 2372,
"properties": {
"age": "0",
"east": "false",
@@ -79869,7 +84266,7 @@
}
},
{
- "id": 2325,
+ "id": 2373,
"properties": {
"age": "0",
"east": "false",
@@ -79880,7 +84277,7 @@
}
},
{
- "id": 2326,
+ "id": 2374,
"properties": {
"age": "0",
"east": "false",
@@ -79891,7 +84288,7 @@
}
},
{
- "id": 2327,
+ "id": 2375,
"properties": {
"age": "0",
"east": "false",
@@ -79902,7 +84299,7 @@
}
},
{
- "id": 2328,
+ "id": 2376,
"properties": {
"age": "0",
"east": "false",
@@ -79913,7 +84310,7 @@
}
},
{
- "id": 2329,
+ "id": 2377,
"properties": {
"age": "0",
"east": "false",
@@ -79924,7 +84321,7 @@
}
},
{
- "id": 2330,
+ "id": 2378,
"properties": {
"age": "0",
"east": "false",
@@ -79935,7 +84332,7 @@
}
},
{
- "id": 2331,
+ "id": 2379,
"properties": {
"age": "0",
"east": "false",
@@ -79946,7 +84343,7 @@
}
},
{
- "id": 2332,
+ "id": 2380,
"properties": {
"age": "0",
"east": "false",
@@ -79957,7 +84354,7 @@
}
},
{
- "id": 2333,
+ "id": 2381,
"properties": {
"age": "0",
"east": "false",
@@ -79968,7 +84365,7 @@
}
},
{
- "id": 2334,
+ "id": 2382,
"properties": {
"age": "0",
"east": "false",
@@ -79979,7 +84376,7 @@
}
},
{
- "id": 2335,
+ "id": 2383,
"properties": {
"age": "0",
"east": "false",
@@ -79990,7 +84387,7 @@
}
},
{
- "id": 2336,
+ "id": 2384,
"properties": {
"age": "0",
"east": "false",
@@ -80001,7 +84398,7 @@
}
},
{
- "id": 2337,
+ "id": 2385,
"properties": {
"age": "0",
"east": "false",
@@ -80012,7 +84409,7 @@
}
},
{
- "id": 2338,
+ "id": 2386,
"properties": {
"age": "0",
"east": "false",
@@ -80024,7 +84421,7 @@
},
{
"default": true,
- "id": 2339,
+ "id": 2387,
"properties": {
"age": "0",
"east": "false",
@@ -80034,539 +84431,11 @@
"west": "false"
}
},
- {
- "id": 2340,
- "properties": {
- "age": "1",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2341,
- "properties": {
- "age": "1",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2342,
- "properties": {
- "age": "1",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2343,
- "properties": {
- "age": "1",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2344,
- "properties": {
- "age": "1",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2345,
- "properties": {
- "age": "1",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2346,
- "properties": {
- "age": "1",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2347,
- "properties": {
- "age": "1",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2348,
- "properties": {
- "age": "1",
- "east": "true",
- "north": "false",
- "south": "true",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2349,
- "properties": {
- "age": "1",
- "east": "true",
- "north": "false",
- "south": "true",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2350,
- "properties": {
- "age": "1",
- "east": "true",
- "north": "false",
- "south": "true",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2351,
- "properties": {
- "age": "1",
- "east": "true",
- "north": "false",
- "south": "true",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2352,
- "properties": {
- "age": "1",
- "east": "true",
- "north": "false",
- "south": "false",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2353,
- "properties": {
- "age": "1",
- "east": "true",
- "north": "false",
- "south": "false",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2354,
- "properties": {
- "age": "1",
- "east": "true",
- "north": "false",
- "south": "false",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2355,
- "properties": {
- "age": "1",
- "east": "true",
- "north": "false",
- "south": "false",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2356,
- "properties": {
- "age": "1",
- "east": "false",
- "north": "true",
- "south": "true",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2357,
- "properties": {
- "age": "1",
- "east": "false",
- "north": "true",
- "south": "true",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2358,
- "properties": {
- "age": "1",
- "east": "false",
- "north": "true",
- "south": "true",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2359,
- "properties": {
- "age": "1",
- "east": "false",
- "north": "true",
- "south": "true",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2360,
- "properties": {
- "age": "1",
- "east": "false",
- "north": "true",
- "south": "false",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2361,
- "properties": {
- "age": "1",
- "east": "false",
- "north": "true",
- "south": "false",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2362,
- "properties": {
- "age": "1",
- "east": "false",
- "north": "true",
- "south": "false",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2363,
- "properties": {
- "age": "1",
- "east": "false",
- "north": "true",
- "south": "false",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2364,
- "properties": {
- "age": "1",
- "east": "false",
- "north": "false",
- "south": "true",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2365,
- "properties": {
- "age": "1",
- "east": "false",
- "north": "false",
- "south": "true",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2366,
- "properties": {
- "age": "1",
- "east": "false",
- "north": "false",
- "south": "true",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2367,
- "properties": {
- "age": "1",
- "east": "false",
- "north": "false",
- "south": "true",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2368,
- "properties": {
- "age": "1",
- "east": "false",
- "north": "false",
- "south": "false",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2369,
- "properties": {
- "age": "1",
- "east": "false",
- "north": "false",
- "south": "false",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2370,
- "properties": {
- "age": "1",
- "east": "false",
- "north": "false",
- "south": "false",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2371,
- "properties": {
- "age": "1",
- "east": "false",
- "north": "false",
- "south": "false",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2372,
- "properties": {
- "age": "2",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2373,
- "properties": {
- "age": "2",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2374,
- "properties": {
- "age": "2",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2375,
- "properties": {
- "age": "2",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2376,
- "properties": {
- "age": "2",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2377,
- "properties": {
- "age": "2",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2378,
- "properties": {
- "age": "2",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2379,
- "properties": {
- "age": "2",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2380,
- "properties": {
- "age": "2",
- "east": "true",
- "north": "false",
- "south": "true",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2381,
- "properties": {
- "age": "2",
- "east": "true",
- "north": "false",
- "south": "true",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2382,
- "properties": {
- "age": "2",
- "east": "true",
- "north": "false",
- "south": "true",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2383,
- "properties": {
- "age": "2",
- "east": "true",
- "north": "false",
- "south": "true",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2384,
- "properties": {
- "age": "2",
- "east": "true",
- "north": "false",
- "south": "false",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2385,
- "properties": {
- "age": "2",
- "east": "true",
- "north": "false",
- "south": "false",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2386,
- "properties": {
- "age": "2",
- "east": "true",
- "north": "false",
- "south": "false",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2387,
- "properties": {
- "age": "2",
- "east": "true",
- "north": "false",
- "south": "false",
- "up": "false",
- "west": "false"
- }
- },
{
"id": 2388,
"properties": {
- "age": "2",
- "east": "false",
+ "age": "1",
+ "east": "true",
"north": "true",
"south": "true",
"up": "true",
@@ -80576,8 +84445,8 @@
{
"id": 2389,
"properties": {
- "age": "2",
- "east": "false",
+ "age": "1",
+ "east": "true",
"north": "true",
"south": "true",
"up": "true",
@@ -80587,8 +84456,8 @@
{
"id": 2390,
"properties": {
- "age": "2",
- "east": "false",
+ "age": "1",
+ "east": "true",
"north": "true",
"south": "true",
"up": "false",
@@ -80598,8 +84467,8 @@
{
"id": 2391,
"properties": {
- "age": "2",
- "east": "false",
+ "age": "1",
+ "east": "true",
"north": "true",
"south": "true",
"up": "false",
@@ -80609,8 +84478,8 @@
{
"id": 2392,
"properties": {
- "age": "2",
- "east": "false",
+ "age": "1",
+ "east": "true",
"north": "true",
"south": "false",
"up": "true",
@@ -80620,8 +84489,8 @@
{
"id": 2393,
"properties": {
- "age": "2",
- "east": "false",
+ "age": "1",
+ "east": "true",
"north": "true",
"south": "false",
"up": "true",
@@ -80631,8 +84500,8 @@
{
"id": 2394,
"properties": {
- "age": "2",
- "east": "false",
+ "age": "1",
+ "east": "true",
"north": "true",
"south": "false",
"up": "false",
@@ -80642,8 +84511,8 @@
{
"id": 2395,
"properties": {
- "age": "2",
- "east": "false",
+ "age": "1",
+ "east": "true",
"north": "true",
"south": "false",
"up": "false",
@@ -80653,8 +84522,8 @@
{
"id": 2396,
"properties": {
- "age": "2",
- "east": "false",
+ "age": "1",
+ "east": "true",
"north": "false",
"south": "true",
"up": "true",
@@ -80664,8 +84533,8 @@
{
"id": 2397,
"properties": {
- "age": "2",
- "east": "false",
+ "age": "1",
+ "east": "true",
"north": "false",
"south": "true",
"up": "true",
@@ -80675,8 +84544,8 @@
{
"id": 2398,
"properties": {
- "age": "2",
- "east": "false",
+ "age": "1",
+ "east": "true",
"north": "false",
"south": "true",
"up": "false",
@@ -80686,8 +84555,8 @@
{
"id": 2399,
"properties": {
- "age": "2",
- "east": "false",
+ "age": "1",
+ "east": "true",
"north": "false",
"south": "true",
"up": "false",
@@ -80697,8 +84566,8 @@
{
"id": 2400,
"properties": {
- "age": "2",
- "east": "false",
+ "age": "1",
+ "east": "true",
"north": "false",
"south": "false",
"up": "true",
@@ -80708,8 +84577,8 @@
{
"id": 2401,
"properties": {
- "age": "2",
- "east": "false",
+ "age": "1",
+ "east": "true",
"north": "false",
"south": "false",
"up": "true",
@@ -80719,8 +84588,8 @@
{
"id": 2402,
"properties": {
- "age": "2",
- "east": "false",
+ "age": "1",
+ "east": "true",
"north": "false",
"south": "false",
"up": "false",
@@ -80730,8 +84599,8 @@
{
"id": 2403,
"properties": {
- "age": "2",
- "east": "false",
+ "age": "1",
+ "east": "true",
"north": "false",
"south": "false",
"up": "false",
@@ -80741,8 +84610,8 @@
{
"id": 2404,
"properties": {
- "age": "3",
- "east": "true",
+ "age": "1",
+ "east": "false",
"north": "true",
"south": "true",
"up": "true",
@@ -80752,8 +84621,8 @@
{
"id": 2405,
"properties": {
- "age": "3",
- "east": "true",
+ "age": "1",
+ "east": "false",
"north": "true",
"south": "true",
"up": "true",
@@ -80763,8 +84632,8 @@
{
"id": 2406,
"properties": {
- "age": "3",
- "east": "true",
+ "age": "1",
+ "east": "false",
"north": "true",
"south": "true",
"up": "false",
@@ -80774,8 +84643,8 @@
{
"id": 2407,
"properties": {
- "age": "3",
- "east": "true",
+ "age": "1",
+ "east": "false",
"north": "true",
"south": "true",
"up": "false",
@@ -80785,8 +84654,8 @@
{
"id": 2408,
"properties": {
- "age": "3",
- "east": "true",
+ "age": "1",
+ "east": "false",
"north": "true",
"south": "false",
"up": "true",
@@ -80796,8 +84665,8 @@
{
"id": 2409,
"properties": {
- "age": "3",
- "east": "true",
+ "age": "1",
+ "east": "false",
"north": "true",
"south": "false",
"up": "true",
@@ -80807,8 +84676,8 @@
{
"id": 2410,
"properties": {
- "age": "3",
- "east": "true",
+ "age": "1",
+ "east": "false",
"north": "true",
"south": "false",
"up": "false",
@@ -80818,8 +84687,8 @@
{
"id": 2411,
"properties": {
- "age": "3",
- "east": "true",
+ "age": "1",
+ "east": "false",
"north": "true",
"south": "false",
"up": "false",
@@ -80829,8 +84698,8 @@
{
"id": 2412,
"properties": {
- "age": "3",
- "east": "true",
+ "age": "1",
+ "east": "false",
"north": "false",
"south": "true",
"up": "true",
@@ -80840,8 +84709,8 @@
{
"id": 2413,
"properties": {
- "age": "3",
- "east": "true",
+ "age": "1",
+ "east": "false",
"north": "false",
"south": "true",
"up": "true",
@@ -80851,8 +84720,8 @@
{
"id": 2414,
"properties": {
- "age": "3",
- "east": "true",
+ "age": "1",
+ "east": "false",
"north": "false",
"south": "true",
"up": "false",
@@ -80862,8 +84731,8 @@
{
"id": 2415,
"properties": {
- "age": "3",
- "east": "true",
+ "age": "1",
+ "east": "false",
"north": "false",
"south": "true",
"up": "false",
@@ -80873,8 +84742,8 @@
{
"id": 2416,
"properties": {
- "age": "3",
- "east": "true",
+ "age": "1",
+ "east": "false",
"north": "false",
"south": "false",
"up": "true",
@@ -80884,8 +84753,8 @@
{
"id": 2417,
"properties": {
- "age": "3",
- "east": "true",
+ "age": "1",
+ "east": "false",
"north": "false",
"south": "false",
"up": "true",
@@ -80895,8 +84764,8 @@
{
"id": 2418,
"properties": {
- "age": "3",
- "east": "true",
+ "age": "1",
+ "east": "false",
"north": "false",
"south": "false",
"up": "false",
@@ -80906,8 +84775,8 @@
{
"id": 2419,
"properties": {
- "age": "3",
- "east": "true",
+ "age": "1",
+ "east": "false",
"north": "false",
"south": "false",
"up": "false",
@@ -80917,8 +84786,8 @@
{
"id": 2420,
"properties": {
- "age": "3",
- "east": "false",
+ "age": "2",
+ "east": "true",
"north": "true",
"south": "true",
"up": "true",
@@ -80928,8 +84797,8 @@
{
"id": 2421,
"properties": {
- "age": "3",
- "east": "false",
+ "age": "2",
+ "east": "true",
"north": "true",
"south": "true",
"up": "true",
@@ -80939,8 +84808,8 @@
{
"id": 2422,
"properties": {
- "age": "3",
- "east": "false",
+ "age": "2",
+ "east": "true",
"north": "true",
"south": "true",
"up": "false",
@@ -80950,8 +84819,8 @@
{
"id": 2423,
"properties": {
- "age": "3",
- "east": "false",
+ "age": "2",
+ "east": "true",
"north": "true",
"south": "true",
"up": "false",
@@ -80961,8 +84830,8 @@
{
"id": 2424,
"properties": {
- "age": "3",
- "east": "false",
+ "age": "2",
+ "east": "true",
"north": "true",
"south": "false",
"up": "true",
@@ -80972,8 +84841,8 @@
{
"id": 2425,
"properties": {
- "age": "3",
- "east": "false",
+ "age": "2",
+ "east": "true",
"north": "true",
"south": "false",
"up": "true",
@@ -80983,8 +84852,8 @@
{
"id": 2426,
"properties": {
- "age": "3",
- "east": "false",
+ "age": "2",
+ "east": "true",
"north": "true",
"south": "false",
"up": "false",
@@ -80994,8 +84863,8 @@
{
"id": 2427,
"properties": {
- "age": "3",
- "east": "false",
+ "age": "2",
+ "east": "true",
"north": "true",
"south": "false",
"up": "false",
@@ -81005,8 +84874,8 @@
{
"id": 2428,
"properties": {
- "age": "3",
- "east": "false",
+ "age": "2",
+ "east": "true",
"north": "false",
"south": "true",
"up": "true",
@@ -81016,8 +84885,8 @@
{
"id": 2429,
"properties": {
- "age": "3",
- "east": "false",
+ "age": "2",
+ "east": "true",
"north": "false",
"south": "true",
"up": "true",
@@ -81027,8 +84896,8 @@
{
"id": 2430,
"properties": {
- "age": "3",
- "east": "false",
+ "age": "2",
+ "east": "true",
"north": "false",
"south": "true",
"up": "false",
@@ -81038,8 +84907,8 @@
{
"id": 2431,
"properties": {
- "age": "3",
- "east": "false",
+ "age": "2",
+ "east": "true",
"north": "false",
"south": "true",
"up": "false",
@@ -81049,8 +84918,8 @@
{
"id": 2432,
"properties": {
- "age": "3",
- "east": "false",
+ "age": "2",
+ "east": "true",
"north": "false",
"south": "false",
"up": "true",
@@ -81060,8 +84929,8 @@
{
"id": 2433,
"properties": {
- "age": "3",
- "east": "false",
+ "age": "2",
+ "east": "true",
"north": "false",
"south": "false",
"up": "true",
@@ -81071,8 +84940,8 @@
{
"id": 2434,
"properties": {
- "age": "3",
- "east": "false",
+ "age": "2",
+ "east": "true",
"north": "false",
"south": "false",
"up": "false",
@@ -81082,8 +84951,8 @@
{
"id": 2435,
"properties": {
- "age": "3",
- "east": "false",
+ "age": "2",
+ "east": "true",
"north": "false",
"south": "false",
"up": "false",
@@ -81093,8 +84962,8 @@
{
"id": 2436,
"properties": {
- "age": "4",
- "east": "true",
+ "age": "2",
+ "east": "false",
"north": "true",
"south": "true",
"up": "true",
@@ -81104,8 +84973,8 @@
{
"id": 2437,
"properties": {
- "age": "4",
- "east": "true",
+ "age": "2",
+ "east": "false",
"north": "true",
"south": "true",
"up": "true",
@@ -81115,8 +84984,8 @@
{
"id": 2438,
"properties": {
- "age": "4",
- "east": "true",
+ "age": "2",
+ "east": "false",
"north": "true",
"south": "true",
"up": "false",
@@ -81126,8 +84995,8 @@
{
"id": 2439,
"properties": {
- "age": "4",
- "east": "true",
+ "age": "2",
+ "east": "false",
"north": "true",
"south": "true",
"up": "false",
@@ -81137,8 +85006,8 @@
{
"id": 2440,
"properties": {
- "age": "4",
- "east": "true",
+ "age": "2",
+ "east": "false",
"north": "true",
"south": "false",
"up": "true",
@@ -81148,8 +85017,8 @@
{
"id": 2441,
"properties": {
- "age": "4",
- "east": "true",
+ "age": "2",
+ "east": "false",
"north": "true",
"south": "false",
"up": "true",
@@ -81159,8 +85028,8 @@
{
"id": 2442,
"properties": {
- "age": "4",
- "east": "true",
+ "age": "2",
+ "east": "false",
"north": "true",
"south": "false",
"up": "false",
@@ -81170,8 +85039,8 @@
{
"id": 2443,
"properties": {
- "age": "4",
- "east": "true",
+ "age": "2",
+ "east": "false",
"north": "true",
"south": "false",
"up": "false",
@@ -81181,8 +85050,8 @@
{
"id": 2444,
"properties": {
- "age": "4",
- "east": "true",
+ "age": "2",
+ "east": "false",
"north": "false",
"south": "true",
"up": "true",
@@ -81192,8 +85061,8 @@
{
"id": 2445,
"properties": {
- "age": "4",
- "east": "true",
+ "age": "2",
+ "east": "false",
"north": "false",
"south": "true",
"up": "true",
@@ -81203,8 +85072,8 @@
{
"id": 2446,
"properties": {
- "age": "4",
- "east": "true",
+ "age": "2",
+ "east": "false",
"north": "false",
"south": "true",
"up": "false",
@@ -81214,8 +85083,8 @@
{
"id": 2447,
"properties": {
- "age": "4",
- "east": "true",
+ "age": "2",
+ "east": "false",
"north": "false",
"south": "true",
"up": "false",
@@ -81225,8 +85094,8 @@
{
"id": 2448,
"properties": {
- "age": "4",
- "east": "true",
+ "age": "2",
+ "east": "false",
"north": "false",
"south": "false",
"up": "true",
@@ -81236,8 +85105,8 @@
{
"id": 2449,
"properties": {
- "age": "4",
- "east": "true",
+ "age": "2",
+ "east": "false",
"north": "false",
"south": "false",
"up": "true",
@@ -81247,8 +85116,8 @@
{
"id": 2450,
"properties": {
- "age": "4",
- "east": "true",
+ "age": "2",
+ "east": "false",
"north": "false",
"south": "false",
"up": "false",
@@ -81258,8 +85127,8 @@
{
"id": 2451,
"properties": {
- "age": "4",
- "east": "true",
+ "age": "2",
+ "east": "false",
"north": "false",
"south": "false",
"up": "false",
@@ -81269,8 +85138,8 @@
{
"id": 2452,
"properties": {
- "age": "4",
- "east": "false",
+ "age": "3",
+ "east": "true",
"north": "true",
"south": "true",
"up": "true",
@@ -81280,8 +85149,8 @@
{
"id": 2453,
"properties": {
- "age": "4",
- "east": "false",
+ "age": "3",
+ "east": "true",
"north": "true",
"south": "true",
"up": "true",
@@ -81291,8 +85160,8 @@
{
"id": 2454,
"properties": {
- "age": "4",
- "east": "false",
+ "age": "3",
+ "east": "true",
"north": "true",
"south": "true",
"up": "false",
@@ -81302,8 +85171,8 @@
{
"id": 2455,
"properties": {
- "age": "4",
- "east": "false",
+ "age": "3",
+ "east": "true",
"north": "true",
"south": "true",
"up": "false",
@@ -81313,8 +85182,8 @@
{
"id": 2456,
"properties": {
- "age": "4",
- "east": "false",
+ "age": "3",
+ "east": "true",
"north": "true",
"south": "false",
"up": "true",
@@ -81324,8 +85193,8 @@
{
"id": 2457,
"properties": {
- "age": "4",
- "east": "false",
+ "age": "3",
+ "east": "true",
"north": "true",
"south": "false",
"up": "true",
@@ -81335,8 +85204,8 @@
{
"id": 2458,
"properties": {
- "age": "4",
- "east": "false",
+ "age": "3",
+ "east": "true",
"north": "true",
"south": "false",
"up": "false",
@@ -81346,8 +85215,8 @@
{
"id": 2459,
"properties": {
- "age": "4",
- "east": "false",
+ "age": "3",
+ "east": "true",
"north": "true",
"south": "false",
"up": "false",
@@ -81357,8 +85226,8 @@
{
"id": 2460,
"properties": {
- "age": "4",
- "east": "false",
+ "age": "3",
+ "east": "true",
"north": "false",
"south": "true",
"up": "true",
@@ -81368,8 +85237,8 @@
{
"id": 2461,
"properties": {
- "age": "4",
- "east": "false",
+ "age": "3",
+ "east": "true",
"north": "false",
"south": "true",
"up": "true",
@@ -81379,8 +85248,8 @@
{
"id": 2462,
"properties": {
- "age": "4",
- "east": "false",
+ "age": "3",
+ "east": "true",
"north": "false",
"south": "true",
"up": "false",
@@ -81390,8 +85259,8 @@
{
"id": 2463,
"properties": {
- "age": "4",
- "east": "false",
+ "age": "3",
+ "east": "true",
"north": "false",
"south": "true",
"up": "false",
@@ -81401,8 +85270,8 @@
{
"id": 2464,
"properties": {
- "age": "4",
- "east": "false",
+ "age": "3",
+ "east": "true",
"north": "false",
"south": "false",
"up": "true",
@@ -81412,8 +85281,8 @@
{
"id": 2465,
"properties": {
- "age": "4",
- "east": "false",
+ "age": "3",
+ "east": "true",
"north": "false",
"south": "false",
"up": "true",
@@ -81423,8 +85292,8 @@
{
"id": 2466,
"properties": {
- "age": "4",
- "east": "false",
+ "age": "3",
+ "east": "true",
"north": "false",
"south": "false",
"up": "false",
@@ -81434,8 +85303,8 @@
{
"id": 2467,
"properties": {
- "age": "4",
- "east": "false",
+ "age": "3",
+ "east": "true",
"north": "false",
"south": "false",
"up": "false",
@@ -81445,8 +85314,8 @@
{
"id": 2468,
"properties": {
- "age": "5",
- "east": "true",
+ "age": "3",
+ "east": "false",
"north": "true",
"south": "true",
"up": "true",
@@ -81456,8 +85325,8 @@
{
"id": 2469,
"properties": {
- "age": "5",
- "east": "true",
+ "age": "3",
+ "east": "false",
"north": "true",
"south": "true",
"up": "true",
@@ -81467,8 +85336,8 @@
{
"id": 2470,
"properties": {
- "age": "5",
- "east": "true",
+ "age": "3",
+ "east": "false",
"north": "true",
"south": "true",
"up": "false",
@@ -81478,8 +85347,8 @@
{
"id": 2471,
"properties": {
- "age": "5",
- "east": "true",
+ "age": "3",
+ "east": "false",
"north": "true",
"south": "true",
"up": "false",
@@ -81489,8 +85358,8 @@
{
"id": 2472,
"properties": {
- "age": "5",
- "east": "true",
+ "age": "3",
+ "east": "false",
"north": "true",
"south": "false",
"up": "true",
@@ -81500,8 +85369,8 @@
{
"id": 2473,
"properties": {
- "age": "5",
- "east": "true",
+ "age": "3",
+ "east": "false",
"north": "true",
"south": "false",
"up": "true",
@@ -81511,8 +85380,8 @@
{
"id": 2474,
"properties": {
- "age": "5",
- "east": "true",
+ "age": "3",
+ "east": "false",
"north": "true",
"south": "false",
"up": "false",
@@ -81522,8 +85391,8 @@
{
"id": 2475,
"properties": {
- "age": "5",
- "east": "true",
+ "age": "3",
+ "east": "false",
"north": "true",
"south": "false",
"up": "false",
@@ -81533,8 +85402,8 @@
{
"id": 2476,
"properties": {
- "age": "5",
- "east": "true",
+ "age": "3",
+ "east": "false",
"north": "false",
"south": "true",
"up": "true",
@@ -81544,8 +85413,8 @@
{
"id": 2477,
"properties": {
- "age": "5",
- "east": "true",
+ "age": "3",
+ "east": "false",
"north": "false",
"south": "true",
"up": "true",
@@ -81555,8 +85424,8 @@
{
"id": 2478,
"properties": {
- "age": "5",
- "east": "true",
+ "age": "3",
+ "east": "false",
"north": "false",
"south": "true",
"up": "false",
@@ -81566,8 +85435,8 @@
{
"id": 2479,
"properties": {
- "age": "5",
- "east": "true",
+ "age": "3",
+ "east": "false",
"north": "false",
"south": "true",
"up": "false",
@@ -81577,8 +85446,8 @@
{
"id": 2480,
"properties": {
- "age": "5",
- "east": "true",
+ "age": "3",
+ "east": "false",
"north": "false",
"south": "false",
"up": "true",
@@ -81588,8 +85457,8 @@
{
"id": 2481,
"properties": {
- "age": "5",
- "east": "true",
+ "age": "3",
+ "east": "false",
"north": "false",
"south": "false",
"up": "true",
@@ -81599,8 +85468,8 @@
{
"id": 2482,
"properties": {
- "age": "5",
- "east": "true",
+ "age": "3",
+ "east": "false",
"north": "false",
"south": "false",
"up": "false",
@@ -81610,8 +85479,8 @@
{
"id": 2483,
"properties": {
- "age": "5",
- "east": "true",
+ "age": "3",
+ "east": "false",
"north": "false",
"south": "false",
"up": "false",
@@ -81621,8 +85490,8 @@
{
"id": 2484,
"properties": {
- "age": "5",
- "east": "false",
+ "age": "4",
+ "east": "true",
"north": "true",
"south": "true",
"up": "true",
@@ -81632,8 +85501,8 @@
{
"id": 2485,
"properties": {
- "age": "5",
- "east": "false",
+ "age": "4",
+ "east": "true",
"north": "true",
"south": "true",
"up": "true",
@@ -81643,8 +85512,8 @@
{
"id": 2486,
"properties": {
- "age": "5",
- "east": "false",
+ "age": "4",
+ "east": "true",
"north": "true",
"south": "true",
"up": "false",
@@ -81654,8 +85523,8 @@
{
"id": 2487,
"properties": {
- "age": "5",
- "east": "false",
+ "age": "4",
+ "east": "true",
"north": "true",
"south": "true",
"up": "false",
@@ -81665,8 +85534,8 @@
{
"id": 2488,
"properties": {
- "age": "5",
- "east": "false",
+ "age": "4",
+ "east": "true",
"north": "true",
"south": "false",
"up": "true",
@@ -81676,8 +85545,8 @@
{
"id": 2489,
"properties": {
- "age": "5",
- "east": "false",
+ "age": "4",
+ "east": "true",
"north": "true",
"south": "false",
"up": "true",
@@ -81687,8 +85556,8 @@
{
"id": 2490,
"properties": {
- "age": "5",
- "east": "false",
+ "age": "4",
+ "east": "true",
"north": "true",
"south": "false",
"up": "false",
@@ -81698,8 +85567,8 @@
{
"id": 2491,
"properties": {
- "age": "5",
- "east": "false",
+ "age": "4",
+ "east": "true",
"north": "true",
"south": "false",
"up": "false",
@@ -81709,8 +85578,8 @@
{
"id": 2492,
"properties": {
- "age": "5",
- "east": "false",
+ "age": "4",
+ "east": "true",
"north": "false",
"south": "true",
"up": "true",
@@ -81720,8 +85589,8 @@
{
"id": 2493,
"properties": {
- "age": "5",
- "east": "false",
+ "age": "4",
+ "east": "true",
"north": "false",
"south": "true",
"up": "true",
@@ -81731,8 +85600,8 @@
{
"id": 2494,
"properties": {
- "age": "5",
- "east": "false",
+ "age": "4",
+ "east": "true",
"north": "false",
"south": "true",
"up": "false",
@@ -81742,8 +85611,8 @@
{
"id": 2495,
"properties": {
- "age": "5",
- "east": "false",
+ "age": "4",
+ "east": "true",
"north": "false",
"south": "true",
"up": "false",
@@ -81753,8 +85622,8 @@
{
"id": 2496,
"properties": {
- "age": "5",
- "east": "false",
+ "age": "4",
+ "east": "true",
"north": "false",
"south": "false",
"up": "true",
@@ -81764,8 +85633,8 @@
{
"id": 2497,
"properties": {
- "age": "5",
- "east": "false",
+ "age": "4",
+ "east": "true",
"north": "false",
"south": "false",
"up": "true",
@@ -81775,8 +85644,8 @@
{
"id": 2498,
"properties": {
- "age": "5",
- "east": "false",
+ "age": "4",
+ "east": "true",
"north": "false",
"south": "false",
"up": "false",
@@ -81786,8 +85655,8 @@
{
"id": 2499,
"properties": {
- "age": "5",
- "east": "false",
+ "age": "4",
+ "east": "true",
"north": "false",
"south": "false",
"up": "false",
@@ -81797,8 +85666,8 @@
{
"id": 2500,
"properties": {
- "age": "6",
- "east": "true",
+ "age": "4",
+ "east": "false",
"north": "true",
"south": "true",
"up": "true",
@@ -81808,8 +85677,8 @@
{
"id": 2501,
"properties": {
- "age": "6",
- "east": "true",
+ "age": "4",
+ "east": "false",
"north": "true",
"south": "true",
"up": "true",
@@ -81819,8 +85688,8 @@
{
"id": 2502,
"properties": {
- "age": "6",
- "east": "true",
+ "age": "4",
+ "east": "false",
"north": "true",
"south": "true",
"up": "false",
@@ -81830,8 +85699,8 @@
{
"id": 2503,
"properties": {
- "age": "6",
- "east": "true",
+ "age": "4",
+ "east": "false",
"north": "true",
"south": "true",
"up": "false",
@@ -81841,8 +85710,8 @@
{
"id": 2504,
"properties": {
- "age": "6",
- "east": "true",
+ "age": "4",
+ "east": "false",
"north": "true",
"south": "false",
"up": "true",
@@ -81852,8 +85721,8 @@
{
"id": 2505,
"properties": {
- "age": "6",
- "east": "true",
+ "age": "4",
+ "east": "false",
"north": "true",
"south": "false",
"up": "true",
@@ -81863,8 +85732,8 @@
{
"id": 2506,
"properties": {
- "age": "6",
- "east": "true",
+ "age": "4",
+ "east": "false",
"north": "true",
"south": "false",
"up": "false",
@@ -81874,8 +85743,8 @@
{
"id": 2507,
"properties": {
- "age": "6",
- "east": "true",
+ "age": "4",
+ "east": "false",
"north": "true",
"south": "false",
"up": "false",
@@ -81885,8 +85754,8 @@
{
"id": 2508,
"properties": {
- "age": "6",
- "east": "true",
+ "age": "4",
+ "east": "false",
"north": "false",
"south": "true",
"up": "true",
@@ -81896,8 +85765,8 @@
{
"id": 2509,
"properties": {
- "age": "6",
- "east": "true",
+ "age": "4",
+ "east": "false",
"north": "false",
"south": "true",
"up": "true",
@@ -81907,8 +85776,8 @@
{
"id": 2510,
"properties": {
- "age": "6",
- "east": "true",
+ "age": "4",
+ "east": "false",
"north": "false",
"south": "true",
"up": "false",
@@ -81918,8 +85787,8 @@
{
"id": 2511,
"properties": {
- "age": "6",
- "east": "true",
+ "age": "4",
+ "east": "false",
"north": "false",
"south": "true",
"up": "false",
@@ -81929,8 +85798,8 @@
{
"id": 2512,
"properties": {
- "age": "6",
- "east": "true",
+ "age": "4",
+ "east": "false",
"north": "false",
"south": "false",
"up": "true",
@@ -81940,8 +85809,8 @@
{
"id": 2513,
"properties": {
- "age": "6",
- "east": "true",
+ "age": "4",
+ "east": "false",
"north": "false",
"south": "false",
"up": "true",
@@ -81951,8 +85820,8 @@
{
"id": 2514,
"properties": {
- "age": "6",
- "east": "true",
+ "age": "4",
+ "east": "false",
"north": "false",
"south": "false",
"up": "false",
@@ -81962,8 +85831,8 @@
{
"id": 2515,
"properties": {
- "age": "6",
- "east": "true",
+ "age": "4",
+ "east": "false",
"north": "false",
"south": "false",
"up": "false",
@@ -81973,8 +85842,8 @@
{
"id": 2516,
"properties": {
- "age": "6",
- "east": "false",
+ "age": "5",
+ "east": "true",
"north": "true",
"south": "true",
"up": "true",
@@ -81984,8 +85853,8 @@
{
"id": 2517,
"properties": {
- "age": "6",
- "east": "false",
+ "age": "5",
+ "east": "true",
"north": "true",
"south": "true",
"up": "true",
@@ -81995,8 +85864,8 @@
{
"id": 2518,
"properties": {
- "age": "6",
- "east": "false",
+ "age": "5",
+ "east": "true",
"north": "true",
"south": "true",
"up": "false",
@@ -82006,8 +85875,8 @@
{
"id": 2519,
"properties": {
- "age": "6",
- "east": "false",
+ "age": "5",
+ "east": "true",
"north": "true",
"south": "true",
"up": "false",
@@ -82017,8 +85886,8 @@
{
"id": 2520,
"properties": {
- "age": "6",
- "east": "false",
+ "age": "5",
+ "east": "true",
"north": "true",
"south": "false",
"up": "true",
@@ -82028,8 +85897,8 @@
{
"id": 2521,
"properties": {
- "age": "6",
- "east": "false",
+ "age": "5",
+ "east": "true",
"north": "true",
"south": "false",
"up": "true",
@@ -82039,8 +85908,8 @@
{
"id": 2522,
"properties": {
- "age": "6",
- "east": "false",
+ "age": "5",
+ "east": "true",
"north": "true",
"south": "false",
"up": "false",
@@ -82050,8 +85919,8 @@
{
"id": 2523,
"properties": {
- "age": "6",
- "east": "false",
+ "age": "5",
+ "east": "true",
"north": "true",
"south": "false",
"up": "false",
@@ -82061,8 +85930,8 @@
{
"id": 2524,
"properties": {
- "age": "6",
- "east": "false",
+ "age": "5",
+ "east": "true",
"north": "false",
"south": "true",
"up": "true",
@@ -82072,8 +85941,8 @@
{
"id": 2525,
"properties": {
- "age": "6",
- "east": "false",
+ "age": "5",
+ "east": "true",
"north": "false",
"south": "true",
"up": "true",
@@ -82083,8 +85952,8 @@
{
"id": 2526,
"properties": {
- "age": "6",
- "east": "false",
+ "age": "5",
+ "east": "true",
"north": "false",
"south": "true",
"up": "false",
@@ -82094,8 +85963,8 @@
{
"id": 2527,
"properties": {
- "age": "6",
- "east": "false",
+ "age": "5",
+ "east": "true",
"north": "false",
"south": "true",
"up": "false",
@@ -82105,8 +85974,8 @@
{
"id": 2528,
"properties": {
- "age": "6",
- "east": "false",
+ "age": "5",
+ "east": "true",
"north": "false",
"south": "false",
"up": "true",
@@ -82116,8 +85985,8 @@
{
"id": 2529,
"properties": {
- "age": "6",
- "east": "false",
+ "age": "5",
+ "east": "true",
"north": "false",
"south": "false",
"up": "true",
@@ -82127,8 +85996,8 @@
{
"id": 2530,
"properties": {
- "age": "6",
- "east": "false",
+ "age": "5",
+ "east": "true",
"north": "false",
"south": "false",
"up": "false",
@@ -82138,8 +86007,8 @@
{
"id": 2531,
"properties": {
- "age": "6",
- "east": "false",
+ "age": "5",
+ "east": "true",
"north": "false",
"south": "false",
"up": "false",
@@ -82149,8 +86018,8 @@
{
"id": 2532,
"properties": {
- "age": "7",
- "east": "true",
+ "age": "5",
+ "east": "false",
"north": "true",
"south": "true",
"up": "true",
@@ -82160,8 +86029,8 @@
{
"id": 2533,
"properties": {
- "age": "7",
- "east": "true",
+ "age": "5",
+ "east": "false",
"north": "true",
"south": "true",
"up": "true",
@@ -82171,8 +86040,8 @@
{
"id": 2534,
"properties": {
- "age": "7",
- "east": "true",
+ "age": "5",
+ "east": "false",
"north": "true",
"south": "true",
"up": "false",
@@ -82182,8 +86051,8 @@
{
"id": 2535,
"properties": {
- "age": "7",
- "east": "true",
+ "age": "5",
+ "east": "false",
"north": "true",
"south": "true",
"up": "false",
@@ -82193,8 +86062,8 @@
{
"id": 2536,
"properties": {
- "age": "7",
- "east": "true",
+ "age": "5",
+ "east": "false",
"north": "true",
"south": "false",
"up": "true",
@@ -82204,8 +86073,8 @@
{
"id": 2537,
"properties": {
- "age": "7",
- "east": "true",
+ "age": "5",
+ "east": "false",
"north": "true",
"south": "false",
"up": "true",
@@ -82215,8 +86084,8 @@
{
"id": 2538,
"properties": {
- "age": "7",
- "east": "true",
+ "age": "5",
+ "east": "false",
"north": "true",
"south": "false",
"up": "false",
@@ -82226,8 +86095,8 @@
{
"id": 2539,
"properties": {
- "age": "7",
- "east": "true",
+ "age": "5",
+ "east": "false",
"north": "true",
"south": "false",
"up": "false",
@@ -82237,8 +86106,8 @@
{
"id": 2540,
"properties": {
- "age": "7",
- "east": "true",
+ "age": "5",
+ "east": "false",
"north": "false",
"south": "true",
"up": "true",
@@ -82248,8 +86117,8 @@
{
"id": 2541,
"properties": {
- "age": "7",
- "east": "true",
+ "age": "5",
+ "east": "false",
"north": "false",
"south": "true",
"up": "true",
@@ -82259,8 +86128,8 @@
{
"id": 2542,
"properties": {
- "age": "7",
- "east": "true",
+ "age": "5",
+ "east": "false",
"north": "false",
"south": "true",
"up": "false",
@@ -82270,8 +86139,8 @@
{
"id": 2543,
"properties": {
- "age": "7",
- "east": "true",
+ "age": "5",
+ "east": "false",
"north": "false",
"south": "true",
"up": "false",
@@ -82281,8 +86150,8 @@
{
"id": 2544,
"properties": {
- "age": "7",
- "east": "true",
+ "age": "5",
+ "east": "false",
"north": "false",
"south": "false",
"up": "true",
@@ -82292,8 +86161,8 @@
{
"id": 2545,
"properties": {
- "age": "7",
- "east": "true",
+ "age": "5",
+ "east": "false",
"north": "false",
"south": "false",
"up": "true",
@@ -82303,8 +86172,8 @@
{
"id": 2546,
"properties": {
- "age": "7",
- "east": "true",
+ "age": "5",
+ "east": "false",
"north": "false",
"south": "false",
"up": "false",
@@ -82314,8 +86183,8 @@
{
"id": 2547,
"properties": {
- "age": "7",
- "east": "true",
+ "age": "5",
+ "east": "false",
"north": "false",
"south": "false",
"up": "false",
@@ -82325,8 +86194,8 @@
{
"id": 2548,
"properties": {
- "age": "7",
- "east": "false",
+ "age": "6",
+ "east": "true",
"north": "true",
"south": "true",
"up": "true",
@@ -82336,8 +86205,8 @@
{
"id": 2549,
"properties": {
- "age": "7",
- "east": "false",
+ "age": "6",
+ "east": "true",
"north": "true",
"south": "true",
"up": "true",
@@ -82347,8 +86216,8 @@
{
"id": 2550,
"properties": {
- "age": "7",
- "east": "false",
+ "age": "6",
+ "east": "true",
"north": "true",
"south": "true",
"up": "false",
@@ -82358,8 +86227,8 @@
{
"id": 2551,
"properties": {
- "age": "7",
- "east": "false",
+ "age": "6",
+ "east": "true",
"north": "true",
"south": "true",
"up": "false",
@@ -82369,8 +86238,8 @@
{
"id": 2552,
"properties": {
- "age": "7",
- "east": "false",
+ "age": "6",
+ "east": "true",
"north": "true",
"south": "false",
"up": "true",
@@ -82380,8 +86249,8 @@
{
"id": 2553,
"properties": {
- "age": "7",
- "east": "false",
+ "age": "6",
+ "east": "true",
"north": "true",
"south": "false",
"up": "true",
@@ -82391,8 +86260,8 @@
{
"id": 2554,
"properties": {
- "age": "7",
- "east": "false",
+ "age": "6",
+ "east": "true",
"north": "true",
"south": "false",
"up": "false",
@@ -82402,8 +86271,8 @@
{
"id": 2555,
"properties": {
- "age": "7",
- "east": "false",
+ "age": "6",
+ "east": "true",
"north": "true",
"south": "false",
"up": "false",
@@ -82413,8 +86282,8 @@
{
"id": 2556,
"properties": {
- "age": "7",
- "east": "false",
+ "age": "6",
+ "east": "true",
"north": "false",
"south": "true",
"up": "true",
@@ -82424,8 +86293,8 @@
{
"id": 2557,
"properties": {
- "age": "7",
- "east": "false",
+ "age": "6",
+ "east": "true",
"north": "false",
"south": "true",
"up": "true",
@@ -82435,8 +86304,8 @@
{
"id": 2558,
"properties": {
- "age": "7",
- "east": "false",
+ "age": "6",
+ "east": "true",
"north": "false",
"south": "true",
"up": "false",
@@ -82446,8 +86315,8 @@
{
"id": 2559,
"properties": {
- "age": "7",
- "east": "false",
+ "age": "6",
+ "east": "true",
"north": "false",
"south": "true",
"up": "false",
@@ -82457,8 +86326,8 @@
{
"id": 2560,
"properties": {
- "age": "7",
- "east": "false",
+ "age": "6",
+ "east": "true",
"north": "false",
"south": "false",
"up": "true",
@@ -82468,8 +86337,8 @@
{
"id": 2561,
"properties": {
- "age": "7",
- "east": "false",
+ "age": "6",
+ "east": "true",
"north": "false",
"south": "false",
"up": "true",
@@ -82479,8 +86348,8 @@
{
"id": 2562,
"properties": {
- "age": "7",
- "east": "false",
+ "age": "6",
+ "east": "true",
"north": "false",
"south": "false",
"up": "false",
@@ -82490,8 +86359,8 @@
{
"id": 2563,
"properties": {
- "age": "7",
- "east": "false",
+ "age": "6",
+ "east": "true",
"north": "false",
"south": "false",
"up": "false",
@@ -82501,8 +86370,8 @@
{
"id": 2564,
"properties": {
- "age": "8",
- "east": "true",
+ "age": "6",
+ "east": "false",
"north": "true",
"south": "true",
"up": "true",
@@ -82512,8 +86381,8 @@
{
"id": 2565,
"properties": {
- "age": "8",
- "east": "true",
+ "age": "6",
+ "east": "false",
"north": "true",
"south": "true",
"up": "true",
@@ -82523,8 +86392,8 @@
{
"id": 2566,
"properties": {
- "age": "8",
- "east": "true",
+ "age": "6",
+ "east": "false",
"north": "true",
"south": "true",
"up": "false",
@@ -82534,8 +86403,8 @@
{
"id": 2567,
"properties": {
- "age": "8",
- "east": "true",
+ "age": "6",
+ "east": "false",
"north": "true",
"south": "true",
"up": "false",
@@ -82545,8 +86414,8 @@
{
"id": 2568,
"properties": {
- "age": "8",
- "east": "true",
+ "age": "6",
+ "east": "false",
"north": "true",
"south": "false",
"up": "true",
@@ -82556,8 +86425,8 @@
{
"id": 2569,
"properties": {
- "age": "8",
- "east": "true",
+ "age": "6",
+ "east": "false",
"north": "true",
"south": "false",
"up": "true",
@@ -82567,8 +86436,8 @@
{
"id": 2570,
"properties": {
- "age": "8",
- "east": "true",
+ "age": "6",
+ "east": "false",
"north": "true",
"south": "false",
"up": "false",
@@ -82578,8 +86447,8 @@
{
"id": 2571,
"properties": {
- "age": "8",
- "east": "true",
+ "age": "6",
+ "east": "false",
"north": "true",
"south": "false",
"up": "false",
@@ -82589,8 +86458,8 @@
{
"id": 2572,
"properties": {
- "age": "8",
- "east": "true",
+ "age": "6",
+ "east": "false",
"north": "false",
"south": "true",
"up": "true",
@@ -82600,8 +86469,8 @@
{
"id": 2573,
"properties": {
- "age": "8",
- "east": "true",
+ "age": "6",
+ "east": "false",
"north": "false",
"south": "true",
"up": "true",
@@ -82611,8 +86480,8 @@
{
"id": 2574,
"properties": {
- "age": "8",
- "east": "true",
+ "age": "6",
+ "east": "false",
"north": "false",
"south": "true",
"up": "false",
@@ -82622,8 +86491,8 @@
{
"id": 2575,
"properties": {
- "age": "8",
- "east": "true",
+ "age": "6",
+ "east": "false",
"north": "false",
"south": "true",
"up": "false",
@@ -82633,8 +86502,8 @@
{
"id": 2576,
"properties": {
- "age": "8",
- "east": "true",
+ "age": "6",
+ "east": "false",
"north": "false",
"south": "false",
"up": "true",
@@ -82644,8 +86513,8 @@
{
"id": 2577,
"properties": {
- "age": "8",
- "east": "true",
+ "age": "6",
+ "east": "false",
"north": "false",
"south": "false",
"up": "true",
@@ -82655,8 +86524,8 @@
{
"id": 2578,
"properties": {
- "age": "8",
- "east": "true",
+ "age": "6",
+ "east": "false",
"north": "false",
"south": "false",
"up": "false",
@@ -82666,8 +86535,8 @@
{
"id": 2579,
"properties": {
- "age": "8",
- "east": "true",
+ "age": "6",
+ "east": "false",
"north": "false",
"south": "false",
"up": "false",
@@ -82677,8 +86546,8 @@
{
"id": 2580,
"properties": {
- "age": "8",
- "east": "false",
+ "age": "7",
+ "east": "true",
"north": "true",
"south": "true",
"up": "true",
@@ -82688,8 +86557,8 @@
{
"id": 2581,
"properties": {
- "age": "8",
- "east": "false",
+ "age": "7",
+ "east": "true",
"north": "true",
"south": "true",
"up": "true",
@@ -82699,8 +86568,8 @@
{
"id": 2582,
"properties": {
- "age": "8",
- "east": "false",
+ "age": "7",
+ "east": "true",
"north": "true",
"south": "true",
"up": "false",
@@ -82710,8 +86579,8 @@
{
"id": 2583,
"properties": {
- "age": "8",
- "east": "false",
+ "age": "7",
+ "east": "true",
"north": "true",
"south": "true",
"up": "false",
@@ -82721,8 +86590,8 @@
{
"id": 2584,
"properties": {
- "age": "8",
- "east": "false",
+ "age": "7",
+ "east": "true",
"north": "true",
"south": "false",
"up": "true",
@@ -82732,8 +86601,8 @@
{
"id": 2585,
"properties": {
- "age": "8",
- "east": "false",
+ "age": "7",
+ "east": "true",
"north": "true",
"south": "false",
"up": "true",
@@ -82743,8 +86612,8 @@
{
"id": 2586,
"properties": {
- "age": "8",
- "east": "false",
+ "age": "7",
+ "east": "true",
"north": "true",
"south": "false",
"up": "false",
@@ -82754,8 +86623,8 @@
{
"id": 2587,
"properties": {
- "age": "8",
- "east": "false",
+ "age": "7",
+ "east": "true",
"north": "true",
"south": "false",
"up": "false",
@@ -82765,8 +86634,8 @@
{
"id": 2588,
"properties": {
- "age": "8",
- "east": "false",
+ "age": "7",
+ "east": "true",
"north": "false",
"south": "true",
"up": "true",
@@ -82776,8 +86645,8 @@
{
"id": 2589,
"properties": {
- "age": "8",
- "east": "false",
+ "age": "7",
+ "east": "true",
"north": "false",
"south": "true",
"up": "true",
@@ -82787,8 +86656,8 @@
{
"id": 2590,
"properties": {
- "age": "8",
- "east": "false",
+ "age": "7",
+ "east": "true",
"north": "false",
"south": "true",
"up": "false",
@@ -82798,8 +86667,8 @@
{
"id": 2591,
"properties": {
- "age": "8",
- "east": "false",
+ "age": "7",
+ "east": "true",
"north": "false",
"south": "true",
"up": "false",
@@ -82809,8 +86678,8 @@
{
"id": 2592,
"properties": {
- "age": "8",
- "east": "false",
+ "age": "7",
+ "east": "true",
"north": "false",
"south": "false",
"up": "true",
@@ -82820,8 +86689,8 @@
{
"id": 2593,
"properties": {
- "age": "8",
- "east": "false",
+ "age": "7",
+ "east": "true",
"north": "false",
"south": "false",
"up": "true",
@@ -82831,8 +86700,8 @@
{
"id": 2594,
"properties": {
- "age": "8",
- "east": "false",
+ "age": "7",
+ "east": "true",
"north": "false",
"south": "false",
"up": "false",
@@ -82842,8 +86711,8 @@
{
"id": 2595,
"properties": {
- "age": "8",
- "east": "false",
+ "age": "7",
+ "east": "true",
"north": "false",
"south": "false",
"up": "false",
@@ -82853,8 +86722,8 @@
{
"id": 2596,
"properties": {
- "age": "9",
- "east": "true",
+ "age": "7",
+ "east": "false",
"north": "true",
"south": "true",
"up": "true",
@@ -82864,8 +86733,8 @@
{
"id": 2597,
"properties": {
- "age": "9",
- "east": "true",
+ "age": "7",
+ "east": "false",
"north": "true",
"south": "true",
"up": "true",
@@ -82875,8 +86744,8 @@
{
"id": 2598,
"properties": {
- "age": "9",
- "east": "true",
+ "age": "7",
+ "east": "false",
"north": "true",
"south": "true",
"up": "false",
@@ -82886,8 +86755,8 @@
{
"id": 2599,
"properties": {
- "age": "9",
- "east": "true",
+ "age": "7",
+ "east": "false",
"north": "true",
"south": "true",
"up": "false",
@@ -82897,8 +86766,8 @@
{
"id": 2600,
"properties": {
- "age": "9",
- "east": "true",
+ "age": "7",
+ "east": "false",
"north": "true",
"south": "false",
"up": "true",
@@ -82908,8 +86777,8 @@
{
"id": 2601,
"properties": {
- "age": "9",
- "east": "true",
+ "age": "7",
+ "east": "false",
"north": "true",
"south": "false",
"up": "true",
@@ -82919,8 +86788,8 @@
{
"id": 2602,
"properties": {
- "age": "9",
- "east": "true",
+ "age": "7",
+ "east": "false",
"north": "true",
"south": "false",
"up": "false",
@@ -82930,8 +86799,8 @@
{
"id": 2603,
"properties": {
- "age": "9",
- "east": "true",
+ "age": "7",
+ "east": "false",
"north": "true",
"south": "false",
"up": "false",
@@ -82941,8 +86810,8 @@
{
"id": 2604,
"properties": {
- "age": "9",
- "east": "true",
+ "age": "7",
+ "east": "false",
"north": "false",
"south": "true",
"up": "true",
@@ -82952,8 +86821,8 @@
{
"id": 2605,
"properties": {
- "age": "9",
- "east": "true",
+ "age": "7",
+ "east": "false",
"north": "false",
"south": "true",
"up": "true",
@@ -82963,8 +86832,8 @@
{
"id": 2606,
"properties": {
- "age": "9",
- "east": "true",
+ "age": "7",
+ "east": "false",
"north": "false",
"south": "true",
"up": "false",
@@ -82974,8 +86843,8 @@
{
"id": 2607,
"properties": {
- "age": "9",
- "east": "true",
+ "age": "7",
+ "east": "false",
"north": "false",
"south": "true",
"up": "false",
@@ -82985,8 +86854,8 @@
{
"id": 2608,
"properties": {
- "age": "9",
- "east": "true",
+ "age": "7",
+ "east": "false",
"north": "false",
"south": "false",
"up": "true",
@@ -82996,8 +86865,8 @@
{
"id": 2609,
"properties": {
- "age": "9",
- "east": "true",
+ "age": "7",
+ "east": "false",
"north": "false",
"south": "false",
"up": "true",
@@ -83007,8 +86876,8 @@
{
"id": 2610,
"properties": {
- "age": "9",
- "east": "true",
+ "age": "7",
+ "east": "false",
"north": "false",
"south": "false",
"up": "false",
@@ -83018,8 +86887,8 @@
{
"id": 2611,
"properties": {
- "age": "9",
- "east": "true",
+ "age": "7",
+ "east": "false",
"north": "false",
"south": "false",
"up": "false",
@@ -83029,8 +86898,8 @@
{
"id": 2612,
"properties": {
- "age": "9",
- "east": "false",
+ "age": "8",
+ "east": "true",
"north": "true",
"south": "true",
"up": "true",
@@ -83040,8 +86909,8 @@
{
"id": 2613,
"properties": {
- "age": "9",
- "east": "false",
+ "age": "8",
+ "east": "true",
"north": "true",
"south": "true",
"up": "true",
@@ -83051,8 +86920,8 @@
{
"id": 2614,
"properties": {
- "age": "9",
- "east": "false",
+ "age": "8",
+ "east": "true",
"north": "true",
"south": "true",
"up": "false",
@@ -83062,8 +86931,8 @@
{
"id": 2615,
"properties": {
- "age": "9",
- "east": "false",
+ "age": "8",
+ "east": "true",
"north": "true",
"south": "true",
"up": "false",
@@ -83073,8 +86942,8 @@
{
"id": 2616,
"properties": {
- "age": "9",
- "east": "false",
+ "age": "8",
+ "east": "true",
"north": "true",
"south": "false",
"up": "true",
@@ -83084,8 +86953,8 @@
{
"id": 2617,
"properties": {
- "age": "9",
- "east": "false",
+ "age": "8",
+ "east": "true",
"north": "true",
"south": "false",
"up": "true",
@@ -83095,8 +86964,8 @@
{
"id": 2618,
"properties": {
- "age": "9",
- "east": "false",
+ "age": "8",
+ "east": "true",
"north": "true",
"south": "false",
"up": "false",
@@ -83106,8 +86975,8 @@
{
"id": 2619,
"properties": {
- "age": "9",
- "east": "false",
+ "age": "8",
+ "east": "true",
"north": "true",
"south": "false",
"up": "false",
@@ -83117,8 +86986,8 @@
{
"id": 2620,
"properties": {
- "age": "9",
- "east": "false",
+ "age": "8",
+ "east": "true",
"north": "false",
"south": "true",
"up": "true",
@@ -83128,8 +86997,8 @@
{
"id": 2621,
"properties": {
- "age": "9",
- "east": "false",
+ "age": "8",
+ "east": "true",
"north": "false",
"south": "true",
"up": "true",
@@ -83139,8 +87008,8 @@
{
"id": 2622,
"properties": {
- "age": "9",
- "east": "false",
+ "age": "8",
+ "east": "true",
"north": "false",
"south": "true",
"up": "false",
@@ -83150,8 +87019,8 @@
{
"id": 2623,
"properties": {
- "age": "9",
- "east": "false",
+ "age": "8",
+ "east": "true",
"north": "false",
"south": "true",
"up": "false",
@@ -83161,8 +87030,8 @@
{
"id": 2624,
"properties": {
- "age": "9",
- "east": "false",
+ "age": "8",
+ "east": "true",
"north": "false",
"south": "false",
"up": "true",
@@ -83172,8 +87041,8 @@
{
"id": 2625,
"properties": {
- "age": "9",
- "east": "false",
+ "age": "8",
+ "east": "true",
"north": "false",
"south": "false",
"up": "true",
@@ -83183,8 +87052,8 @@
{
"id": 2626,
"properties": {
- "age": "9",
- "east": "false",
+ "age": "8",
+ "east": "true",
"north": "false",
"south": "false",
"up": "false",
@@ -83194,8 +87063,8 @@
{
"id": 2627,
"properties": {
- "age": "9",
- "east": "false",
+ "age": "8",
+ "east": "true",
"north": "false",
"south": "false",
"up": "false",
@@ -83205,8 +87074,8 @@
{
"id": 2628,
"properties": {
- "age": "10",
- "east": "true",
+ "age": "8",
+ "east": "false",
"north": "true",
"south": "true",
"up": "true",
@@ -83216,8 +87085,8 @@
{
"id": 2629,
"properties": {
- "age": "10",
- "east": "true",
+ "age": "8",
+ "east": "false",
"north": "true",
"south": "true",
"up": "true",
@@ -83227,8 +87096,8 @@
{
"id": 2630,
"properties": {
- "age": "10",
- "east": "true",
+ "age": "8",
+ "east": "false",
"north": "true",
"south": "true",
"up": "false",
@@ -83238,8 +87107,8 @@
{
"id": 2631,
"properties": {
- "age": "10",
- "east": "true",
+ "age": "8",
+ "east": "false",
"north": "true",
"south": "true",
"up": "false",
@@ -83249,8 +87118,8 @@
{
"id": 2632,
"properties": {
- "age": "10",
- "east": "true",
+ "age": "8",
+ "east": "false",
"north": "true",
"south": "false",
"up": "true",
@@ -83260,8 +87129,8 @@
{
"id": 2633,
"properties": {
- "age": "10",
- "east": "true",
+ "age": "8",
+ "east": "false",
"north": "true",
"south": "false",
"up": "true",
@@ -83271,8 +87140,8 @@
{
"id": 2634,
"properties": {
- "age": "10",
- "east": "true",
+ "age": "8",
+ "east": "false",
"north": "true",
"south": "false",
"up": "false",
@@ -83282,8 +87151,8 @@
{
"id": 2635,
"properties": {
- "age": "10",
- "east": "true",
+ "age": "8",
+ "east": "false",
"north": "true",
"south": "false",
"up": "false",
@@ -83293,8 +87162,8 @@
{
"id": 2636,
"properties": {
- "age": "10",
- "east": "true",
+ "age": "8",
+ "east": "false",
"north": "false",
"south": "true",
"up": "true",
@@ -83304,8 +87173,8 @@
{
"id": 2637,
"properties": {
- "age": "10",
- "east": "true",
+ "age": "8",
+ "east": "false",
"north": "false",
"south": "true",
"up": "true",
@@ -83315,8 +87184,8 @@
{
"id": 2638,
"properties": {
- "age": "10",
- "east": "true",
+ "age": "8",
+ "east": "false",
"north": "false",
"south": "true",
"up": "false",
@@ -83326,8 +87195,8 @@
{
"id": 2639,
"properties": {
- "age": "10",
- "east": "true",
+ "age": "8",
+ "east": "false",
"north": "false",
"south": "true",
"up": "false",
@@ -83337,8 +87206,8 @@
{
"id": 2640,
"properties": {
- "age": "10",
- "east": "true",
+ "age": "8",
+ "east": "false",
"north": "false",
"south": "false",
"up": "true",
@@ -83348,8 +87217,8 @@
{
"id": 2641,
"properties": {
- "age": "10",
- "east": "true",
+ "age": "8",
+ "east": "false",
"north": "false",
"south": "false",
"up": "true",
@@ -83359,8 +87228,8 @@
{
"id": 2642,
"properties": {
- "age": "10",
- "east": "true",
+ "age": "8",
+ "east": "false",
"north": "false",
"south": "false",
"up": "false",
@@ -83370,8 +87239,8 @@
{
"id": 2643,
"properties": {
- "age": "10",
- "east": "true",
+ "age": "8",
+ "east": "false",
"north": "false",
"south": "false",
"up": "false",
@@ -83381,8 +87250,8 @@
{
"id": 2644,
"properties": {
- "age": "10",
- "east": "false",
+ "age": "9",
+ "east": "true",
"north": "true",
"south": "true",
"up": "true",
@@ -83392,8 +87261,8 @@
{
"id": 2645,
"properties": {
- "age": "10",
- "east": "false",
+ "age": "9",
+ "east": "true",
"north": "true",
"south": "true",
"up": "true",
@@ -83403,8 +87272,8 @@
{
"id": 2646,
"properties": {
- "age": "10",
- "east": "false",
+ "age": "9",
+ "east": "true",
"north": "true",
"south": "true",
"up": "false",
@@ -83414,8 +87283,8 @@
{
"id": 2647,
"properties": {
- "age": "10",
- "east": "false",
+ "age": "9",
+ "east": "true",
"north": "true",
"south": "true",
"up": "false",
@@ -83425,8 +87294,8 @@
{
"id": 2648,
"properties": {
- "age": "10",
- "east": "false",
+ "age": "9",
+ "east": "true",
"north": "true",
"south": "false",
"up": "true",
@@ -83436,8 +87305,8 @@
{
"id": 2649,
"properties": {
- "age": "10",
- "east": "false",
+ "age": "9",
+ "east": "true",
"north": "true",
"south": "false",
"up": "true",
@@ -83447,8 +87316,8 @@
{
"id": 2650,
"properties": {
- "age": "10",
- "east": "false",
+ "age": "9",
+ "east": "true",
"north": "true",
"south": "false",
"up": "false",
@@ -83458,8 +87327,8 @@
{
"id": 2651,
"properties": {
- "age": "10",
- "east": "false",
+ "age": "9",
+ "east": "true",
"north": "true",
"south": "false",
"up": "false",
@@ -83469,8 +87338,8 @@
{
"id": 2652,
"properties": {
- "age": "10",
- "east": "false",
+ "age": "9",
+ "east": "true",
"north": "false",
"south": "true",
"up": "true",
@@ -83480,8 +87349,8 @@
{
"id": 2653,
"properties": {
- "age": "10",
- "east": "false",
+ "age": "9",
+ "east": "true",
"north": "false",
"south": "true",
"up": "true",
@@ -83491,8 +87360,8 @@
{
"id": 2654,
"properties": {
- "age": "10",
- "east": "false",
+ "age": "9",
+ "east": "true",
"north": "false",
"south": "true",
"up": "false",
@@ -83502,8 +87371,8 @@
{
"id": 2655,
"properties": {
- "age": "10",
- "east": "false",
+ "age": "9",
+ "east": "true",
"north": "false",
"south": "true",
"up": "false",
@@ -83513,8 +87382,8 @@
{
"id": 2656,
"properties": {
- "age": "10",
- "east": "false",
+ "age": "9",
+ "east": "true",
"north": "false",
"south": "false",
"up": "true",
@@ -83524,8 +87393,8 @@
{
"id": 2657,
"properties": {
- "age": "10",
- "east": "false",
+ "age": "9",
+ "east": "true",
"north": "false",
"south": "false",
"up": "true",
@@ -83535,8 +87404,8 @@
{
"id": 2658,
"properties": {
- "age": "10",
- "east": "false",
+ "age": "9",
+ "east": "true",
"north": "false",
"south": "false",
"up": "false",
@@ -83546,8 +87415,8 @@
{
"id": 2659,
"properties": {
- "age": "10",
- "east": "false",
+ "age": "9",
+ "east": "true",
"north": "false",
"south": "false",
"up": "false",
@@ -83557,8 +87426,8 @@
{
"id": 2660,
"properties": {
- "age": "11",
- "east": "true",
+ "age": "9",
+ "east": "false",
"north": "true",
"south": "true",
"up": "true",
@@ -83568,8 +87437,8 @@
{
"id": 2661,
"properties": {
- "age": "11",
- "east": "true",
+ "age": "9",
+ "east": "false",
"north": "true",
"south": "true",
"up": "true",
@@ -83579,8 +87448,8 @@
{
"id": 2662,
"properties": {
- "age": "11",
- "east": "true",
+ "age": "9",
+ "east": "false",
"north": "true",
"south": "true",
"up": "false",
@@ -83590,8 +87459,8 @@
{
"id": 2663,
"properties": {
- "age": "11",
- "east": "true",
+ "age": "9",
+ "east": "false",
"north": "true",
"south": "true",
"up": "false",
@@ -83601,8 +87470,8 @@
{
"id": 2664,
"properties": {
- "age": "11",
- "east": "true",
+ "age": "9",
+ "east": "false",
"north": "true",
"south": "false",
"up": "true",
@@ -83612,8 +87481,8 @@
{
"id": 2665,
"properties": {
- "age": "11",
- "east": "true",
+ "age": "9",
+ "east": "false",
"north": "true",
"south": "false",
"up": "true",
@@ -83623,8 +87492,8 @@
{
"id": 2666,
"properties": {
- "age": "11",
- "east": "true",
+ "age": "9",
+ "east": "false",
"north": "true",
"south": "false",
"up": "false",
@@ -83634,8 +87503,8 @@
{
"id": 2667,
"properties": {
- "age": "11",
- "east": "true",
+ "age": "9",
+ "east": "false",
"north": "true",
"south": "false",
"up": "false",
@@ -83645,8 +87514,8 @@
{
"id": 2668,
"properties": {
- "age": "11",
- "east": "true",
+ "age": "9",
+ "east": "false",
"north": "false",
"south": "true",
"up": "true",
@@ -83656,8 +87525,8 @@
{
"id": 2669,
"properties": {
- "age": "11",
- "east": "true",
+ "age": "9",
+ "east": "false",
"north": "false",
"south": "true",
"up": "true",
@@ -83667,8 +87536,8 @@
{
"id": 2670,
"properties": {
- "age": "11",
- "east": "true",
+ "age": "9",
+ "east": "false",
"north": "false",
"south": "true",
"up": "false",
@@ -83678,8 +87547,8 @@
{
"id": 2671,
"properties": {
- "age": "11",
- "east": "true",
+ "age": "9",
+ "east": "false",
"north": "false",
"south": "true",
"up": "false",
@@ -83689,8 +87558,8 @@
{
"id": 2672,
"properties": {
- "age": "11",
- "east": "true",
+ "age": "9",
+ "east": "false",
"north": "false",
"south": "false",
"up": "true",
@@ -83700,8 +87569,8 @@
{
"id": 2673,
"properties": {
- "age": "11",
- "east": "true",
+ "age": "9",
+ "east": "false",
"north": "false",
"south": "false",
"up": "true",
@@ -83711,8 +87580,8 @@
{
"id": 2674,
"properties": {
- "age": "11",
- "east": "true",
+ "age": "9",
+ "east": "false",
"north": "false",
"south": "false",
"up": "false",
@@ -83722,8 +87591,8 @@
{
"id": 2675,
"properties": {
- "age": "11",
- "east": "true",
+ "age": "9",
+ "east": "false",
"north": "false",
"south": "false",
"up": "false",
@@ -83733,8 +87602,8 @@
{
"id": 2676,
"properties": {
- "age": "11",
- "east": "false",
+ "age": "10",
+ "east": "true",
"north": "true",
"south": "true",
"up": "true",
@@ -83744,8 +87613,8 @@
{
"id": 2677,
"properties": {
- "age": "11",
- "east": "false",
+ "age": "10",
+ "east": "true",
"north": "true",
"south": "true",
"up": "true",
@@ -83755,8 +87624,8 @@
{
"id": 2678,
"properties": {
- "age": "11",
- "east": "false",
+ "age": "10",
+ "east": "true",
"north": "true",
"south": "true",
"up": "false",
@@ -83766,8 +87635,8 @@
{
"id": 2679,
"properties": {
- "age": "11",
- "east": "false",
+ "age": "10",
+ "east": "true",
"north": "true",
"south": "true",
"up": "false",
@@ -83777,8 +87646,8 @@
{
"id": 2680,
"properties": {
- "age": "11",
- "east": "false",
+ "age": "10",
+ "east": "true",
"north": "true",
"south": "false",
"up": "true",
@@ -83788,8 +87657,8 @@
{
"id": 2681,
"properties": {
- "age": "11",
- "east": "false",
+ "age": "10",
+ "east": "true",
"north": "true",
"south": "false",
"up": "true",
@@ -83799,8 +87668,8 @@
{
"id": 2682,
"properties": {
- "age": "11",
- "east": "false",
+ "age": "10",
+ "east": "true",
"north": "true",
"south": "false",
"up": "false",
@@ -83810,8 +87679,8 @@
{
"id": 2683,
"properties": {
- "age": "11",
- "east": "false",
+ "age": "10",
+ "east": "true",
"north": "true",
"south": "false",
"up": "false",
@@ -83821,8 +87690,8 @@
{
"id": 2684,
"properties": {
- "age": "11",
- "east": "false",
+ "age": "10",
+ "east": "true",
"north": "false",
"south": "true",
"up": "true",
@@ -83832,8 +87701,8 @@
{
"id": 2685,
"properties": {
- "age": "11",
- "east": "false",
+ "age": "10",
+ "east": "true",
"north": "false",
"south": "true",
"up": "true",
@@ -83843,8 +87712,8 @@
{
"id": 2686,
"properties": {
- "age": "11",
- "east": "false",
+ "age": "10",
+ "east": "true",
"north": "false",
"south": "true",
"up": "false",
@@ -83854,8 +87723,8 @@
{
"id": 2687,
"properties": {
- "age": "11",
- "east": "false",
+ "age": "10",
+ "east": "true",
"north": "false",
"south": "true",
"up": "false",
@@ -83865,8 +87734,8 @@
{
"id": 2688,
"properties": {
- "age": "11",
- "east": "false",
+ "age": "10",
+ "east": "true",
"north": "false",
"south": "false",
"up": "true",
@@ -83876,8 +87745,8 @@
{
"id": 2689,
"properties": {
- "age": "11",
- "east": "false",
+ "age": "10",
+ "east": "true",
"north": "false",
"south": "false",
"up": "true",
@@ -83887,8 +87756,8 @@
{
"id": 2690,
"properties": {
- "age": "11",
- "east": "false",
+ "age": "10",
+ "east": "true",
"north": "false",
"south": "false",
"up": "false",
@@ -83898,8 +87767,8 @@
{
"id": 2691,
"properties": {
- "age": "11",
- "east": "false",
+ "age": "10",
+ "east": "true",
"north": "false",
"south": "false",
"up": "false",
@@ -83909,8 +87778,8 @@
{
"id": 2692,
"properties": {
- "age": "12",
- "east": "true",
+ "age": "10",
+ "east": "false",
"north": "true",
"south": "true",
"up": "true",
@@ -83920,8 +87789,8 @@
{
"id": 2693,
"properties": {
- "age": "12",
- "east": "true",
+ "age": "10",
+ "east": "false",
"north": "true",
"south": "true",
"up": "true",
@@ -83931,8 +87800,8 @@
{
"id": 2694,
"properties": {
- "age": "12",
- "east": "true",
+ "age": "10",
+ "east": "false",
"north": "true",
"south": "true",
"up": "false",
@@ -83942,8 +87811,8 @@
{
"id": 2695,
"properties": {
- "age": "12",
- "east": "true",
+ "age": "10",
+ "east": "false",
"north": "true",
"south": "true",
"up": "false",
@@ -83953,8 +87822,8 @@
{
"id": 2696,
"properties": {
- "age": "12",
- "east": "true",
+ "age": "10",
+ "east": "false",
"north": "true",
"south": "false",
"up": "true",
@@ -83964,8 +87833,8 @@
{
"id": 2697,
"properties": {
- "age": "12",
- "east": "true",
+ "age": "10",
+ "east": "false",
"north": "true",
"south": "false",
"up": "true",
@@ -83975,8 +87844,8 @@
{
"id": 2698,
"properties": {
- "age": "12",
- "east": "true",
+ "age": "10",
+ "east": "false",
"north": "true",
"south": "false",
"up": "false",
@@ -83986,8 +87855,8 @@
{
"id": 2699,
"properties": {
- "age": "12",
- "east": "true",
+ "age": "10",
+ "east": "false",
"north": "true",
"south": "false",
"up": "false",
@@ -83997,8 +87866,8 @@
{
"id": 2700,
"properties": {
- "age": "12",
- "east": "true",
+ "age": "10",
+ "east": "false",
"north": "false",
"south": "true",
"up": "true",
@@ -84008,8 +87877,8 @@
{
"id": 2701,
"properties": {
- "age": "12",
- "east": "true",
+ "age": "10",
+ "east": "false",
"north": "false",
"south": "true",
"up": "true",
@@ -84019,8 +87888,8 @@
{
"id": 2702,
"properties": {
- "age": "12",
- "east": "true",
+ "age": "10",
+ "east": "false",
"north": "false",
"south": "true",
"up": "false",
@@ -84030,8 +87899,8 @@
{
"id": 2703,
"properties": {
- "age": "12",
- "east": "true",
+ "age": "10",
+ "east": "false",
"north": "false",
"south": "true",
"up": "false",
@@ -84041,8 +87910,8 @@
{
"id": 2704,
"properties": {
- "age": "12",
- "east": "true",
+ "age": "10",
+ "east": "false",
"north": "false",
"south": "false",
"up": "true",
@@ -84052,8 +87921,8 @@
{
"id": 2705,
"properties": {
- "age": "12",
- "east": "true",
+ "age": "10",
+ "east": "false",
"north": "false",
"south": "false",
"up": "true",
@@ -84063,8 +87932,8 @@
{
"id": 2706,
"properties": {
- "age": "12",
- "east": "true",
+ "age": "10",
+ "east": "false",
"north": "false",
"south": "false",
"up": "false",
@@ -84074,8 +87943,8 @@
{
"id": 2707,
"properties": {
- "age": "12",
- "east": "true",
+ "age": "10",
+ "east": "false",
"north": "false",
"south": "false",
"up": "false",
@@ -84085,8 +87954,8 @@
{
"id": 2708,
"properties": {
- "age": "12",
- "east": "false",
+ "age": "11",
+ "east": "true",
"north": "true",
"south": "true",
"up": "true",
@@ -84096,8 +87965,8 @@
{
"id": 2709,
"properties": {
- "age": "12",
- "east": "false",
+ "age": "11",
+ "east": "true",
"north": "true",
"south": "true",
"up": "true",
@@ -84107,8 +87976,8 @@
{
"id": 2710,
"properties": {
- "age": "12",
- "east": "false",
+ "age": "11",
+ "east": "true",
"north": "true",
"south": "true",
"up": "false",
@@ -84118,8 +87987,8 @@
{
"id": 2711,
"properties": {
- "age": "12",
- "east": "false",
+ "age": "11",
+ "east": "true",
"north": "true",
"south": "true",
"up": "false",
@@ -84129,8 +87998,8 @@
{
"id": 2712,
"properties": {
- "age": "12",
- "east": "false",
+ "age": "11",
+ "east": "true",
"north": "true",
"south": "false",
"up": "true",
@@ -84140,8 +88009,8 @@
{
"id": 2713,
"properties": {
- "age": "12",
- "east": "false",
+ "age": "11",
+ "east": "true",
"north": "true",
"south": "false",
"up": "true",
@@ -84151,8 +88020,8 @@
{
"id": 2714,
"properties": {
- "age": "12",
- "east": "false",
+ "age": "11",
+ "east": "true",
"north": "true",
"south": "false",
"up": "false",
@@ -84162,8 +88031,8 @@
{
"id": 2715,
"properties": {
- "age": "12",
- "east": "false",
+ "age": "11",
+ "east": "true",
"north": "true",
"south": "false",
"up": "false",
@@ -84173,8 +88042,8 @@
{
"id": 2716,
"properties": {
- "age": "12",
- "east": "false",
+ "age": "11",
+ "east": "true",
"north": "false",
"south": "true",
"up": "true",
@@ -84184,8 +88053,8 @@
{
"id": 2717,
"properties": {
- "age": "12",
- "east": "false",
+ "age": "11",
+ "east": "true",
"north": "false",
"south": "true",
"up": "true",
@@ -84195,8 +88064,8 @@
{
"id": 2718,
"properties": {
- "age": "12",
- "east": "false",
+ "age": "11",
+ "east": "true",
"north": "false",
"south": "true",
"up": "false",
@@ -84206,8 +88075,8 @@
{
"id": 2719,
"properties": {
- "age": "12",
- "east": "false",
+ "age": "11",
+ "east": "true",
"north": "false",
"south": "true",
"up": "false",
@@ -84217,8 +88086,8 @@
{
"id": 2720,
"properties": {
- "age": "12",
- "east": "false",
+ "age": "11",
+ "east": "true",
"north": "false",
"south": "false",
"up": "true",
@@ -84228,8 +88097,8 @@
{
"id": 2721,
"properties": {
- "age": "12",
- "east": "false",
+ "age": "11",
+ "east": "true",
"north": "false",
"south": "false",
"up": "true",
@@ -84239,8 +88108,8 @@
{
"id": 2722,
"properties": {
- "age": "12",
- "east": "false",
+ "age": "11",
+ "east": "true",
"north": "false",
"south": "false",
"up": "false",
@@ -84250,8 +88119,8 @@
{
"id": 2723,
"properties": {
- "age": "12",
- "east": "false",
+ "age": "11",
+ "east": "true",
"north": "false",
"south": "false",
"up": "false",
@@ -84261,8 +88130,8 @@
{
"id": 2724,
"properties": {
- "age": "13",
- "east": "true",
+ "age": "11",
+ "east": "false",
"north": "true",
"south": "true",
"up": "true",
@@ -84272,8 +88141,8 @@
{
"id": 2725,
"properties": {
- "age": "13",
- "east": "true",
+ "age": "11",
+ "east": "false",
"north": "true",
"south": "true",
"up": "true",
@@ -84283,8 +88152,8 @@
{
"id": 2726,
"properties": {
- "age": "13",
- "east": "true",
+ "age": "11",
+ "east": "false",
"north": "true",
"south": "true",
"up": "false",
@@ -84294,8 +88163,8 @@
{
"id": 2727,
"properties": {
- "age": "13",
- "east": "true",
+ "age": "11",
+ "east": "false",
"north": "true",
"south": "true",
"up": "false",
@@ -84305,8 +88174,8 @@
{
"id": 2728,
"properties": {
- "age": "13",
- "east": "true",
+ "age": "11",
+ "east": "false",
"north": "true",
"south": "false",
"up": "true",
@@ -84316,8 +88185,8 @@
{
"id": 2729,
"properties": {
- "age": "13",
- "east": "true",
+ "age": "11",
+ "east": "false",
"north": "true",
"south": "false",
"up": "true",
@@ -84327,8 +88196,8 @@
{
"id": 2730,
"properties": {
- "age": "13",
- "east": "true",
+ "age": "11",
+ "east": "false",
"north": "true",
"south": "false",
"up": "false",
@@ -84338,8 +88207,8 @@
{
"id": 2731,
"properties": {
- "age": "13",
- "east": "true",
+ "age": "11",
+ "east": "false",
"north": "true",
"south": "false",
"up": "false",
@@ -84349,8 +88218,8 @@
{
"id": 2732,
"properties": {
- "age": "13",
- "east": "true",
+ "age": "11",
+ "east": "false",
"north": "false",
"south": "true",
"up": "true",
@@ -84360,8 +88229,8 @@
{
"id": 2733,
"properties": {
- "age": "13",
- "east": "true",
+ "age": "11",
+ "east": "false",
"north": "false",
"south": "true",
"up": "true",
@@ -84371,8 +88240,8 @@
{
"id": 2734,
"properties": {
- "age": "13",
- "east": "true",
+ "age": "11",
+ "east": "false",
"north": "false",
"south": "true",
"up": "false",
@@ -84382,8 +88251,8 @@
{
"id": 2735,
"properties": {
- "age": "13",
- "east": "true",
+ "age": "11",
+ "east": "false",
"north": "false",
"south": "true",
"up": "false",
@@ -84393,8 +88262,8 @@
{
"id": 2736,
"properties": {
- "age": "13",
- "east": "true",
+ "age": "11",
+ "east": "false",
"north": "false",
"south": "false",
"up": "true",
@@ -84404,8 +88273,8 @@
{
"id": 2737,
"properties": {
- "age": "13",
- "east": "true",
+ "age": "11",
+ "east": "false",
"north": "false",
"south": "false",
"up": "true",
@@ -84415,8 +88284,8 @@
{
"id": 2738,
"properties": {
- "age": "13",
- "east": "true",
+ "age": "11",
+ "east": "false",
"north": "false",
"south": "false",
"up": "false",
@@ -84426,8 +88295,8 @@
{
"id": 2739,
"properties": {
- "age": "13",
- "east": "true",
+ "age": "11",
+ "east": "false",
"north": "false",
"south": "false",
"up": "false",
@@ -84437,8 +88306,8 @@
{
"id": 2740,
"properties": {
- "age": "13",
- "east": "false",
+ "age": "12",
+ "east": "true",
"north": "true",
"south": "true",
"up": "true",
@@ -84448,8 +88317,8 @@
{
"id": 2741,
"properties": {
- "age": "13",
- "east": "false",
+ "age": "12",
+ "east": "true",
"north": "true",
"south": "true",
"up": "true",
@@ -84459,8 +88328,8 @@
{
"id": 2742,
"properties": {
- "age": "13",
- "east": "false",
+ "age": "12",
+ "east": "true",
"north": "true",
"south": "true",
"up": "false",
@@ -84470,8 +88339,8 @@
{
"id": 2743,
"properties": {
- "age": "13",
- "east": "false",
+ "age": "12",
+ "east": "true",
"north": "true",
"south": "true",
"up": "false",
@@ -84481,8 +88350,8 @@
{
"id": 2744,
"properties": {
- "age": "13",
- "east": "false",
+ "age": "12",
+ "east": "true",
"north": "true",
"south": "false",
"up": "true",
@@ -84492,8 +88361,8 @@
{
"id": 2745,
"properties": {
- "age": "13",
- "east": "false",
+ "age": "12",
+ "east": "true",
"north": "true",
"south": "false",
"up": "true",
@@ -84503,8 +88372,8 @@
{
"id": 2746,
"properties": {
- "age": "13",
- "east": "false",
+ "age": "12",
+ "east": "true",
"north": "true",
"south": "false",
"up": "false",
@@ -84514,8 +88383,8 @@
{
"id": 2747,
"properties": {
- "age": "13",
- "east": "false",
+ "age": "12",
+ "east": "true",
"north": "true",
"south": "false",
"up": "false",
@@ -84525,8 +88394,8 @@
{
"id": 2748,
"properties": {
- "age": "13",
- "east": "false",
+ "age": "12",
+ "east": "true",
"north": "false",
"south": "true",
"up": "true",
@@ -84536,8 +88405,8 @@
{
"id": 2749,
"properties": {
- "age": "13",
- "east": "false",
+ "age": "12",
+ "east": "true",
"north": "false",
"south": "true",
"up": "true",
@@ -84547,8 +88416,8 @@
{
"id": 2750,
"properties": {
- "age": "13",
- "east": "false",
+ "age": "12",
+ "east": "true",
"north": "false",
"south": "true",
"up": "false",
@@ -84558,8 +88427,8 @@
{
"id": 2751,
"properties": {
- "age": "13",
- "east": "false",
+ "age": "12",
+ "east": "true",
"north": "false",
"south": "true",
"up": "false",
@@ -84569,8 +88438,8 @@
{
"id": 2752,
"properties": {
- "age": "13",
- "east": "false",
+ "age": "12",
+ "east": "true",
"north": "false",
"south": "false",
"up": "true",
@@ -84580,8 +88449,8 @@
{
"id": 2753,
"properties": {
- "age": "13",
- "east": "false",
+ "age": "12",
+ "east": "true",
"north": "false",
"south": "false",
"up": "true",
@@ -84591,8 +88460,8 @@
{
"id": 2754,
"properties": {
- "age": "13",
- "east": "false",
+ "age": "12",
+ "east": "true",
"north": "false",
"south": "false",
"up": "false",
@@ -84602,8 +88471,8 @@
{
"id": 2755,
"properties": {
- "age": "13",
- "east": "false",
+ "age": "12",
+ "east": "true",
"north": "false",
"south": "false",
"up": "false",
@@ -84613,8 +88482,8 @@
{
"id": 2756,
"properties": {
- "age": "14",
- "east": "true",
+ "age": "12",
+ "east": "false",
"north": "true",
"south": "true",
"up": "true",
@@ -84624,8 +88493,8 @@
{
"id": 2757,
"properties": {
- "age": "14",
- "east": "true",
+ "age": "12",
+ "east": "false",
"north": "true",
"south": "true",
"up": "true",
@@ -84635,8 +88504,8 @@
{
"id": 2758,
"properties": {
- "age": "14",
- "east": "true",
+ "age": "12",
+ "east": "false",
"north": "true",
"south": "true",
"up": "false",
@@ -84646,8 +88515,8 @@
{
"id": 2759,
"properties": {
- "age": "14",
- "east": "true",
+ "age": "12",
+ "east": "false",
"north": "true",
"south": "true",
"up": "false",
@@ -84657,8 +88526,8 @@
{
"id": 2760,
"properties": {
- "age": "14",
- "east": "true",
+ "age": "12",
+ "east": "false",
"north": "true",
"south": "false",
"up": "true",
@@ -84668,8 +88537,8 @@
{
"id": 2761,
"properties": {
- "age": "14",
- "east": "true",
+ "age": "12",
+ "east": "false",
"north": "true",
"south": "false",
"up": "true",
@@ -84679,8 +88548,8 @@
{
"id": 2762,
"properties": {
- "age": "14",
- "east": "true",
+ "age": "12",
+ "east": "false",
"north": "true",
"south": "false",
"up": "false",
@@ -84690,8 +88559,8 @@
{
"id": 2763,
"properties": {
- "age": "14",
- "east": "true",
+ "age": "12",
+ "east": "false",
"north": "true",
"south": "false",
"up": "false",
@@ -84701,8 +88570,8 @@
{
"id": 2764,
"properties": {
- "age": "14",
- "east": "true",
+ "age": "12",
+ "east": "false",
"north": "false",
"south": "true",
"up": "true",
@@ -84712,8 +88581,8 @@
{
"id": 2765,
"properties": {
- "age": "14",
- "east": "true",
+ "age": "12",
+ "east": "false",
"north": "false",
"south": "true",
"up": "true",
@@ -84723,8 +88592,8 @@
{
"id": 2766,
"properties": {
- "age": "14",
- "east": "true",
+ "age": "12",
+ "east": "false",
"north": "false",
"south": "true",
"up": "false",
@@ -84734,8 +88603,8 @@
{
"id": 2767,
"properties": {
- "age": "14",
- "east": "true",
+ "age": "12",
+ "east": "false",
"north": "false",
"south": "true",
"up": "false",
@@ -84745,8 +88614,8 @@
{
"id": 2768,
"properties": {
- "age": "14",
- "east": "true",
+ "age": "12",
+ "east": "false",
"north": "false",
"south": "false",
"up": "true",
@@ -84756,8 +88625,8 @@
{
"id": 2769,
"properties": {
- "age": "14",
- "east": "true",
+ "age": "12",
+ "east": "false",
"north": "false",
"south": "false",
"up": "true",
@@ -84767,8 +88636,8 @@
{
"id": 2770,
"properties": {
- "age": "14",
- "east": "true",
+ "age": "12",
+ "east": "false",
"north": "false",
"south": "false",
"up": "false",
@@ -84778,8 +88647,8 @@
{
"id": 2771,
"properties": {
- "age": "14",
- "east": "true",
+ "age": "12",
+ "east": "false",
"north": "false",
"south": "false",
"up": "false",
@@ -84789,8 +88658,8 @@
{
"id": 2772,
"properties": {
- "age": "14",
- "east": "false",
+ "age": "13",
+ "east": "true",
"north": "true",
"south": "true",
"up": "true",
@@ -84800,8 +88669,8 @@
{
"id": 2773,
"properties": {
- "age": "14",
- "east": "false",
+ "age": "13",
+ "east": "true",
"north": "true",
"south": "true",
"up": "true",
@@ -84811,8 +88680,8 @@
{
"id": 2774,
"properties": {
- "age": "14",
- "east": "false",
+ "age": "13",
+ "east": "true",
"north": "true",
"south": "true",
"up": "false",
@@ -84822,8 +88691,8 @@
{
"id": 2775,
"properties": {
- "age": "14",
- "east": "false",
+ "age": "13",
+ "east": "true",
"north": "true",
"south": "true",
"up": "false",
@@ -84833,8 +88702,8 @@
{
"id": 2776,
"properties": {
- "age": "14",
- "east": "false",
+ "age": "13",
+ "east": "true",
"north": "true",
"south": "false",
"up": "true",
@@ -84844,8 +88713,8 @@
{
"id": 2777,
"properties": {
- "age": "14",
- "east": "false",
+ "age": "13",
+ "east": "true",
"north": "true",
"south": "false",
"up": "true",
@@ -84855,8 +88724,8 @@
{
"id": 2778,
"properties": {
- "age": "14",
- "east": "false",
+ "age": "13",
+ "east": "true",
"north": "true",
"south": "false",
"up": "false",
@@ -84866,8 +88735,8 @@
{
"id": 2779,
"properties": {
- "age": "14",
- "east": "false",
+ "age": "13",
+ "east": "true",
"north": "true",
"south": "false",
"up": "false",
@@ -84877,8 +88746,8 @@
{
"id": 2780,
"properties": {
- "age": "14",
- "east": "false",
+ "age": "13",
+ "east": "true",
"north": "false",
"south": "true",
"up": "true",
@@ -84888,8 +88757,8 @@
{
"id": 2781,
"properties": {
- "age": "14",
- "east": "false",
+ "age": "13",
+ "east": "true",
"north": "false",
"south": "true",
"up": "true",
@@ -84899,8 +88768,8 @@
{
"id": 2782,
"properties": {
- "age": "14",
- "east": "false",
+ "age": "13",
+ "east": "true",
"north": "false",
"south": "true",
"up": "false",
@@ -84910,8 +88779,8 @@
{
"id": 2783,
"properties": {
- "age": "14",
- "east": "false",
+ "age": "13",
+ "east": "true",
"north": "false",
"south": "true",
"up": "false",
@@ -84921,8 +88790,8 @@
{
"id": 2784,
"properties": {
- "age": "14",
- "east": "false",
+ "age": "13",
+ "east": "true",
"north": "false",
"south": "false",
"up": "true",
@@ -84932,8 +88801,8 @@
{
"id": 2785,
"properties": {
- "age": "14",
- "east": "false",
+ "age": "13",
+ "east": "true",
"north": "false",
"south": "false",
"up": "true",
@@ -84943,8 +88812,8 @@
{
"id": 2786,
"properties": {
- "age": "14",
- "east": "false",
+ "age": "13",
+ "east": "true",
"north": "false",
"south": "false",
"up": "false",
@@ -84954,8 +88823,8 @@
{
"id": 2787,
"properties": {
- "age": "14",
- "east": "false",
+ "age": "13",
+ "east": "true",
"north": "false",
"south": "false",
"up": "false",
@@ -84965,8 +88834,8 @@
{
"id": 2788,
"properties": {
- "age": "15",
- "east": "true",
+ "age": "13",
+ "east": "false",
"north": "true",
"south": "true",
"up": "true",
@@ -84976,8 +88845,8 @@
{
"id": 2789,
"properties": {
- "age": "15",
- "east": "true",
+ "age": "13",
+ "east": "false",
"north": "true",
"south": "true",
"up": "true",
@@ -84987,8 +88856,8 @@
{
"id": 2790,
"properties": {
- "age": "15",
- "east": "true",
+ "age": "13",
+ "east": "false",
"north": "true",
"south": "true",
"up": "false",
@@ -84998,8 +88867,8 @@
{
"id": 2791,
"properties": {
- "age": "15",
- "east": "true",
+ "age": "13",
+ "east": "false",
"north": "true",
"south": "true",
"up": "false",
@@ -85009,8 +88878,8 @@
{
"id": 2792,
"properties": {
- "age": "15",
- "east": "true",
+ "age": "13",
+ "east": "false",
"north": "true",
"south": "false",
"up": "true",
@@ -85020,8 +88889,8 @@
{
"id": 2793,
"properties": {
- "age": "15",
- "east": "true",
+ "age": "13",
+ "east": "false",
"north": "true",
"south": "false",
"up": "true",
@@ -85031,8 +88900,8 @@
{
"id": 2794,
"properties": {
- "age": "15",
- "east": "true",
+ "age": "13",
+ "east": "false",
"north": "true",
"south": "false",
"up": "false",
@@ -85042,8 +88911,8 @@
{
"id": 2795,
"properties": {
- "age": "15",
- "east": "true",
+ "age": "13",
+ "east": "false",
"north": "true",
"south": "false",
"up": "false",
@@ -85053,8 +88922,8 @@
{
"id": 2796,
"properties": {
- "age": "15",
- "east": "true",
+ "age": "13",
+ "east": "false",
"north": "false",
"south": "true",
"up": "true",
@@ -85064,8 +88933,8 @@
{
"id": 2797,
"properties": {
- "age": "15",
- "east": "true",
+ "age": "13",
+ "east": "false",
"north": "false",
"south": "true",
"up": "true",
@@ -85075,8 +88944,8 @@
{
"id": 2798,
"properties": {
- "age": "15",
- "east": "true",
+ "age": "13",
+ "east": "false",
"north": "false",
"south": "true",
"up": "false",
@@ -85086,8 +88955,8 @@
{
"id": 2799,
"properties": {
- "age": "15",
- "east": "true",
+ "age": "13",
+ "east": "false",
"north": "false",
"south": "true",
"up": "false",
@@ -85097,8 +88966,8 @@
{
"id": 2800,
"properties": {
- "age": "15",
- "east": "true",
+ "age": "13",
+ "east": "false",
"north": "false",
"south": "false",
"up": "true",
@@ -85108,8 +88977,8 @@
{
"id": 2801,
"properties": {
- "age": "15",
- "east": "true",
+ "age": "13",
+ "east": "false",
"north": "false",
"south": "false",
"up": "true",
@@ -85119,8 +88988,8 @@
{
"id": 2802,
"properties": {
- "age": "15",
- "east": "true",
+ "age": "13",
+ "east": "false",
"north": "false",
"south": "false",
"up": "false",
@@ -85130,8 +88999,8 @@
{
"id": 2803,
"properties": {
- "age": "15",
- "east": "true",
+ "age": "13",
+ "east": "false",
"north": "false",
"south": "false",
"up": "false",
@@ -85141,8 +89010,8 @@
{
"id": 2804,
"properties": {
- "age": "15",
- "east": "false",
+ "age": "14",
+ "east": "true",
"north": "true",
"south": "true",
"up": "true",
@@ -85152,8 +89021,8 @@
{
"id": 2805,
"properties": {
- "age": "15",
- "east": "false",
+ "age": "14",
+ "east": "true",
"north": "true",
"south": "true",
"up": "true",
@@ -85163,8 +89032,8 @@
{
"id": 2806,
"properties": {
- "age": "15",
- "east": "false",
+ "age": "14",
+ "east": "true",
"north": "true",
"south": "true",
"up": "false",
@@ -85174,8 +89043,8 @@
{
"id": 2807,
"properties": {
- "age": "15",
- "east": "false",
+ "age": "14",
+ "east": "true",
"north": "true",
"south": "true",
"up": "false",
@@ -85185,8 +89054,8 @@
{
"id": 2808,
"properties": {
- "age": "15",
- "east": "false",
+ "age": "14",
+ "east": "true",
"north": "true",
"south": "false",
"up": "true",
@@ -85196,8 +89065,8 @@
{
"id": 2809,
"properties": {
- "age": "15",
- "east": "false",
+ "age": "14",
+ "east": "true",
"north": "true",
"south": "false",
"up": "true",
@@ -85207,8 +89076,8 @@
{
"id": 2810,
"properties": {
- "age": "15",
- "east": "false",
+ "age": "14",
+ "east": "true",
"north": "true",
"south": "false",
"up": "false",
@@ -85218,8 +89087,8 @@
{
"id": 2811,
"properties": {
- "age": "15",
- "east": "false",
+ "age": "14",
+ "east": "true",
"north": "true",
"south": "false",
"up": "false",
@@ -85229,8 +89098,8 @@
{
"id": 2812,
"properties": {
- "age": "15",
- "east": "false",
+ "age": "14",
+ "east": "true",
"north": "false",
"south": "true",
"up": "true",
@@ -85240,8 +89109,8 @@
{
"id": 2813,
"properties": {
- "age": "15",
- "east": "false",
+ "age": "14",
+ "east": "true",
"north": "false",
"south": "true",
"up": "true",
@@ -85251,8 +89120,8 @@
{
"id": 2814,
"properties": {
- "age": "15",
- "east": "false",
+ "age": "14",
+ "east": "true",
"north": "false",
"south": "true",
"up": "false",
@@ -85262,8 +89131,8 @@
{
"id": 2815,
"properties": {
- "age": "15",
- "east": "false",
+ "age": "14",
+ "east": "true",
"north": "false",
"south": "true",
"up": "false",
@@ -85272,6 +89141,534 @@
},
{
"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",
@@ -85282,7 +89679,7 @@
}
},
{
- "id": 2817,
+ "id": 2865,
"properties": {
"age": "15",
"east": "false",
@@ -85293,7 +89690,7 @@
}
},
{
- "id": 2818,
+ "id": 2866,
"properties": {
"age": "15",
"east": "false",
@@ -85304,7 +89701,7 @@
}
},
{
- "id": 2819,
+ "id": 2867,
"properties": {
"age": "15",
"east": "false",
@@ -85326,13 +89723,13 @@
"states": [
{
"default": true,
- "id": 12201,
+ "id": 12670,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12202,
+ "id": 12671,
"properties": {
"waterlogged": "false"
}
@@ -85343,7 +89740,7 @@
"states": [
{
"default": true,
- "id": 12183
+ "id": 12652
}
]
},
@@ -85357,13 +89754,13 @@
"states": [
{
"default": true,
- "id": 12221,
+ "id": 12690,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12222,
+ "id": 12691,
"properties": {
"waterlogged": "false"
}
@@ -85386,56 +89783,56 @@
"states": [
{
"default": true,
- "id": 12289,
+ "id": 12758,
"properties": {
"facing": "north",
"waterlogged": "true"
}
},
{
- "id": 12290,
+ "id": 12759,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 12291,
+ "id": 12760,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 12292,
+ "id": 12761,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 12293,
+ "id": 12762,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 12294,
+ "id": 12763,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 12295,
+ "id": 12764,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 12296,
+ "id": 12765,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -85447,7 +89844,7 @@
"states": [
{
"default": true,
- "id": 17809
+ "id": 18278
}
]
},
@@ -85455,7 +89852,7 @@
"states": [
{
"default": true,
- "id": 8337
+ "id": 8563
}
]
},
@@ -85463,7 +89860,7 @@
"states": [
{
"default": true,
- "id": 21499
+ "id": 21968
}
]
},
@@ -85489,7 +89886,7 @@
},
"states": [
{
- "id": 438,
+ "id": 485,
"properties": {
"distance": "1",
"persistent": "true",
@@ -85497,7 +89894,7 @@
}
},
{
- "id": 439,
+ "id": 486,
"properties": {
"distance": "1",
"persistent": "true",
@@ -85505,7 +89902,7 @@
}
},
{
- "id": 440,
+ "id": 487,
"properties": {
"distance": "1",
"persistent": "false",
@@ -85513,7 +89910,7 @@
}
},
{
- "id": 441,
+ "id": 488,
"properties": {
"distance": "1",
"persistent": "false",
@@ -85521,7 +89918,7 @@
}
},
{
- "id": 442,
+ "id": 489,
"properties": {
"distance": "2",
"persistent": "true",
@@ -85529,7 +89926,7 @@
}
},
{
- "id": 443,
+ "id": 490,
"properties": {
"distance": "2",
"persistent": "true",
@@ -85537,7 +89934,7 @@
}
},
{
- "id": 444,
+ "id": 491,
"properties": {
"distance": "2",
"persistent": "false",
@@ -85545,7 +89942,7 @@
}
},
{
- "id": 445,
+ "id": 492,
"properties": {
"distance": "2",
"persistent": "false",
@@ -85553,7 +89950,7 @@
}
},
{
- "id": 446,
+ "id": 493,
"properties": {
"distance": "3",
"persistent": "true",
@@ -85561,7 +89958,7 @@
}
},
{
- "id": 447,
+ "id": 494,
"properties": {
"distance": "3",
"persistent": "true",
@@ -85569,7 +89966,7 @@
}
},
{
- "id": 448,
+ "id": 495,
"properties": {
"distance": "3",
"persistent": "false",
@@ -85577,7 +89974,7 @@
}
},
{
- "id": 449,
+ "id": 496,
"properties": {
"distance": "3",
"persistent": "false",
@@ -85585,7 +89982,7 @@
}
},
{
- "id": 450,
+ "id": 497,
"properties": {
"distance": "4",
"persistent": "true",
@@ -85593,7 +89990,7 @@
}
},
{
- "id": 451,
+ "id": 498,
"properties": {
"distance": "4",
"persistent": "true",
@@ -85601,7 +89998,7 @@
}
},
{
- "id": 452,
+ "id": 499,
"properties": {
"distance": "4",
"persistent": "false",
@@ -85609,7 +90006,7 @@
}
},
{
- "id": 453,
+ "id": 500,
"properties": {
"distance": "4",
"persistent": "false",
@@ -85617,7 +90014,7 @@
}
},
{
- "id": 454,
+ "id": 501,
"properties": {
"distance": "5",
"persistent": "true",
@@ -85625,7 +90022,7 @@
}
},
{
- "id": 455,
+ "id": 502,
"properties": {
"distance": "5",
"persistent": "true",
@@ -85633,7 +90030,7 @@
}
},
{
- "id": 456,
+ "id": 503,
"properties": {
"distance": "5",
"persistent": "false",
@@ -85641,7 +90038,7 @@
}
},
{
- "id": 457,
+ "id": 504,
"properties": {
"distance": "5",
"persistent": "false",
@@ -85649,7 +90046,7 @@
}
},
{
- "id": 458,
+ "id": 505,
"properties": {
"distance": "6",
"persistent": "true",
@@ -85657,7 +90054,7 @@
}
},
{
- "id": 459,
+ "id": 506,
"properties": {
"distance": "6",
"persistent": "true",
@@ -85665,7 +90062,7 @@
}
},
{
- "id": 460,
+ "id": 507,
"properties": {
"distance": "6",
"persistent": "false",
@@ -85673,7 +90070,7 @@
}
},
{
- "id": 461,
+ "id": 508,
"properties": {
"distance": "6",
"persistent": "false",
@@ -85681,7 +90078,7 @@
}
},
{
- "id": 462,
+ "id": 509,
"properties": {
"distance": "7",
"persistent": "true",
@@ -85689,7 +90086,7 @@
}
},
{
- "id": 463,
+ "id": 510,
"properties": {
"distance": "7",
"persistent": "true",
@@ -85697,7 +90094,7 @@
}
},
{
- "id": 464,
+ "id": 511,
"properties": {
"distance": "7",
"persistent": "false",
@@ -85706,7 +90103,7 @@
},
{
"default": true,
- "id": 465,
+ "id": 512,
"properties": {
"distance": "7",
"persistent": "false",
@@ -85719,7 +90116,7 @@
"states": [
{
"default": true,
- "id": 23230
+ "id": 23715
}
]
},
@@ -85735,25 +90132,25 @@
"states": [
{
"default": true,
- "id": 11914,
+ "id": 12383,
"properties": {
"age": "0"
}
},
{
- "id": 11915,
+ "id": 12384,
"properties": {
"age": "1"
}
},
{
- "id": 11916,
+ "id": 12385,
"properties": {
"age": "2"
}
},
{
- "id": 11917,
+ "id": 12386,
"properties": {
"age": "3"
}
@@ -85775,7 +90172,7 @@
},
"states": [
{
- "id": 4242,
+ "id": 4290,
"properties": {
"facing": "north",
"lit": "true"
@@ -85783,49 +90180,49 @@
},
{
"default": true,
- "id": 4243,
+ "id": 4291,
"properties": {
"facing": "north",
"lit": "false"
}
},
{
- "id": 4244,
+ "id": 4292,
"properties": {
"facing": "south",
"lit": "true"
}
},
{
- "id": 4245,
+ "id": 4293,
"properties": {
"facing": "south",
"lit": "false"
}
},
{
- "id": 4246,
+ "id": 4294,
"properties": {
"facing": "west",
"lit": "true"
}
},
{
- "id": 4247,
+ "id": 4295,
"properties": {
"facing": "west",
"lit": "false"
}
},
{
- "id": 4248,
+ "id": 4296,
"properties": {
"facing": "east",
"lit": "true"
}
},
{
- "id": 4249,
+ "id": 4297,
"properties": {
"facing": "east",
"lit": "false"
@@ -85837,7 +90234,7 @@
"states": [
{
"default": true,
- "id": 19657
+ "id": 20126
}
]
},
@@ -85845,7 +90242,7 @@
"states": [
{
"default": true,
- "id": 468
+ "id": 515
}
]
},
@@ -85874,7 +90271,7 @@
},
"states": [
{
- "id": 6550,
+ "id": 6776,
"properties": {
"east": "true",
"north": "true",
@@ -85884,7 +90281,7 @@
}
},
{
- "id": 6551,
+ "id": 6777,
"properties": {
"east": "true",
"north": "true",
@@ -85894,7 +90291,7 @@
}
},
{
- "id": 6552,
+ "id": 6778,
"properties": {
"east": "true",
"north": "true",
@@ -85904,7 +90301,7 @@
}
},
{
- "id": 6553,
+ "id": 6779,
"properties": {
"east": "true",
"north": "true",
@@ -85914,7 +90311,7 @@
}
},
{
- "id": 6554,
+ "id": 6780,
"properties": {
"east": "true",
"north": "true",
@@ -85924,7 +90321,7 @@
}
},
{
- "id": 6555,
+ "id": 6781,
"properties": {
"east": "true",
"north": "true",
@@ -85934,7 +90331,7 @@
}
},
{
- "id": 6556,
+ "id": 6782,
"properties": {
"east": "true",
"north": "true",
@@ -85944,7 +90341,7 @@
}
},
{
- "id": 6557,
+ "id": 6783,
"properties": {
"east": "true",
"north": "true",
@@ -85954,7 +90351,7 @@
}
},
{
- "id": 6558,
+ "id": 6784,
"properties": {
"east": "true",
"north": "false",
@@ -85964,7 +90361,7 @@
}
},
{
- "id": 6559,
+ "id": 6785,
"properties": {
"east": "true",
"north": "false",
@@ -85974,7 +90371,7 @@
}
},
{
- "id": 6560,
+ "id": 6786,
"properties": {
"east": "true",
"north": "false",
@@ -85984,7 +90381,7 @@
}
},
{
- "id": 6561,
+ "id": 6787,
"properties": {
"east": "true",
"north": "false",
@@ -85994,7 +90391,7 @@
}
},
{
- "id": 6562,
+ "id": 6788,
"properties": {
"east": "true",
"north": "false",
@@ -86004,7 +90401,7 @@
}
},
{
- "id": 6563,
+ "id": 6789,
"properties": {
"east": "true",
"north": "false",
@@ -86014,7 +90411,7 @@
}
},
{
- "id": 6564,
+ "id": 6790,
"properties": {
"east": "true",
"north": "false",
@@ -86024,7 +90421,7 @@
}
},
{
- "id": 6565,
+ "id": 6791,
"properties": {
"east": "true",
"north": "false",
@@ -86034,7 +90431,7 @@
}
},
{
- "id": 6566,
+ "id": 6792,
"properties": {
"east": "false",
"north": "true",
@@ -86044,7 +90441,7 @@
}
},
{
- "id": 6567,
+ "id": 6793,
"properties": {
"east": "false",
"north": "true",
@@ -86054,7 +90451,7 @@
}
},
{
- "id": 6568,
+ "id": 6794,
"properties": {
"east": "false",
"north": "true",
@@ -86064,7 +90461,7 @@
}
},
{
- "id": 6569,
+ "id": 6795,
"properties": {
"east": "false",
"north": "true",
@@ -86074,7 +90471,7 @@
}
},
{
- "id": 6570,
+ "id": 6796,
"properties": {
"east": "false",
"north": "true",
@@ -86084,7 +90481,7 @@
}
},
{
- "id": 6571,
+ "id": 6797,
"properties": {
"east": "false",
"north": "true",
@@ -86094,7 +90491,7 @@
}
},
{
- "id": 6572,
+ "id": 6798,
"properties": {
"east": "false",
"north": "true",
@@ -86104,7 +90501,7 @@
}
},
{
- "id": 6573,
+ "id": 6799,
"properties": {
"east": "false",
"north": "true",
@@ -86114,7 +90511,7 @@
}
},
{
- "id": 6574,
+ "id": 6800,
"properties": {
"east": "false",
"north": "false",
@@ -86124,7 +90521,7 @@
}
},
{
- "id": 6575,
+ "id": 6801,
"properties": {
"east": "false",
"north": "false",
@@ -86134,7 +90531,7 @@
}
},
{
- "id": 6576,
+ "id": 6802,
"properties": {
"east": "false",
"north": "false",
@@ -86144,7 +90541,7 @@
}
},
{
- "id": 6577,
+ "id": 6803,
"properties": {
"east": "false",
"north": "false",
@@ -86154,7 +90551,7 @@
}
},
{
- "id": 6578,
+ "id": 6804,
"properties": {
"east": "false",
"north": "false",
@@ -86164,7 +90561,7 @@
}
},
{
- "id": 6579,
+ "id": 6805,
"properties": {
"east": "false",
"north": "false",
@@ -86174,7 +90571,7 @@
}
},
{
- "id": 6580,
+ "id": 6806,
"properties": {
"east": "false",
"north": "false",
@@ -86185,7 +90582,7 @@
},
{
"default": true,
- "id": 6581,
+ "id": 6807,
"properties": {
"east": "false",
"north": "false",
@@ -86229,7 +90626,7 @@
},
"states": [
{
- "id": 6639,
+ "id": 6865,
"properties": {
"down": "true",
"east": "true",
@@ -86241,7 +90638,7 @@
}
},
{
- "id": 6640,
+ "id": 6866,
"properties": {
"down": "true",
"east": "true",
@@ -86253,7 +90650,7 @@
}
},
{
- "id": 6641,
+ "id": 6867,
"properties": {
"down": "true",
"east": "true",
@@ -86265,7 +90662,7 @@
}
},
{
- "id": 6642,
+ "id": 6868,
"properties": {
"down": "true",
"east": "true",
@@ -86277,7 +90674,7 @@
}
},
{
- "id": 6643,
+ "id": 6869,
"properties": {
"down": "true",
"east": "true",
@@ -86289,7 +90686,7 @@
}
},
{
- "id": 6644,
+ "id": 6870,
"properties": {
"down": "true",
"east": "true",
@@ -86301,7 +90698,7 @@
}
},
{
- "id": 6645,
+ "id": 6871,
"properties": {
"down": "true",
"east": "true",
@@ -86313,7 +90710,7 @@
}
},
{
- "id": 6646,
+ "id": 6872,
"properties": {
"down": "true",
"east": "true",
@@ -86325,7 +90722,7 @@
}
},
{
- "id": 6647,
+ "id": 6873,
"properties": {
"down": "true",
"east": "true",
@@ -86337,7 +90734,7 @@
}
},
{
- "id": 6648,
+ "id": 6874,
"properties": {
"down": "true",
"east": "true",
@@ -86349,7 +90746,7 @@
}
},
{
- "id": 6649,
+ "id": 6875,
"properties": {
"down": "true",
"east": "true",
@@ -86361,7 +90758,7 @@
}
},
{
- "id": 6650,
+ "id": 6876,
"properties": {
"down": "true",
"east": "true",
@@ -86373,7 +90770,7 @@
}
},
{
- "id": 6651,
+ "id": 6877,
"properties": {
"down": "true",
"east": "true",
@@ -86385,7 +90782,7 @@
}
},
{
- "id": 6652,
+ "id": 6878,
"properties": {
"down": "true",
"east": "true",
@@ -86397,7 +90794,7 @@
}
},
{
- "id": 6653,
+ "id": 6879,
"properties": {
"down": "true",
"east": "true",
@@ -86409,7 +90806,7 @@
}
},
{
- "id": 6654,
+ "id": 6880,
"properties": {
"down": "true",
"east": "true",
@@ -86421,7 +90818,7 @@
}
},
{
- "id": 6655,
+ "id": 6881,
"properties": {
"down": "true",
"east": "true",
@@ -86433,7 +90830,7 @@
}
},
{
- "id": 6656,
+ "id": 6882,
"properties": {
"down": "true",
"east": "true",
@@ -86445,7 +90842,7 @@
}
},
{
- "id": 6657,
+ "id": 6883,
"properties": {
"down": "true",
"east": "true",
@@ -86457,7 +90854,7 @@
}
},
{
- "id": 6658,
+ "id": 6884,
"properties": {
"down": "true",
"east": "true",
@@ -86469,7 +90866,7 @@
}
},
{
- "id": 6659,
+ "id": 6885,
"properties": {
"down": "true",
"east": "true",
@@ -86481,7 +90878,7 @@
}
},
{
- "id": 6660,
+ "id": 6886,
"properties": {
"down": "true",
"east": "true",
@@ -86493,7 +90890,7 @@
}
},
{
- "id": 6661,
+ "id": 6887,
"properties": {
"down": "true",
"east": "true",
@@ -86505,7 +90902,7 @@
}
},
{
- "id": 6662,
+ "id": 6888,
"properties": {
"down": "true",
"east": "true",
@@ -86517,7 +90914,7 @@
}
},
{
- "id": 6663,
+ "id": 6889,
"properties": {
"down": "true",
"east": "true",
@@ -86529,7 +90926,7 @@
}
},
{
- "id": 6664,
+ "id": 6890,
"properties": {
"down": "true",
"east": "true",
@@ -86541,7 +90938,7 @@
}
},
{
- "id": 6665,
+ "id": 6891,
"properties": {
"down": "true",
"east": "true",
@@ -86553,7 +90950,7 @@
}
},
{
- "id": 6666,
+ "id": 6892,
"properties": {
"down": "true",
"east": "true",
@@ -86565,7 +90962,7 @@
}
},
{
- "id": 6667,
+ "id": 6893,
"properties": {
"down": "true",
"east": "true",
@@ -86577,7 +90974,7 @@
}
},
{
- "id": 6668,
+ "id": 6894,
"properties": {
"down": "true",
"east": "true",
@@ -86589,7 +90986,7 @@
}
},
{
- "id": 6669,
+ "id": 6895,
"properties": {
"down": "true",
"east": "true",
@@ -86601,7 +90998,7 @@
}
},
{
- "id": 6670,
+ "id": 6896,
"properties": {
"down": "true",
"east": "true",
@@ -86613,7 +91010,7 @@
}
},
{
- "id": 6671,
+ "id": 6897,
"properties": {
"down": "true",
"east": "false",
@@ -86625,7 +91022,7 @@
}
},
{
- "id": 6672,
+ "id": 6898,
"properties": {
"down": "true",
"east": "false",
@@ -86637,7 +91034,7 @@
}
},
{
- "id": 6673,
+ "id": 6899,
"properties": {
"down": "true",
"east": "false",
@@ -86649,7 +91046,7 @@
}
},
{
- "id": 6674,
+ "id": 6900,
"properties": {
"down": "true",
"east": "false",
@@ -86661,7 +91058,7 @@
}
},
{
- "id": 6675,
+ "id": 6901,
"properties": {
"down": "true",
"east": "false",
@@ -86673,7 +91070,7 @@
}
},
{
- "id": 6676,
+ "id": 6902,
"properties": {
"down": "true",
"east": "false",
@@ -86685,7 +91082,7 @@
}
},
{
- "id": 6677,
+ "id": 6903,
"properties": {
"down": "true",
"east": "false",
@@ -86697,7 +91094,7 @@
}
},
{
- "id": 6678,
+ "id": 6904,
"properties": {
"down": "true",
"east": "false",
@@ -86709,7 +91106,7 @@
}
},
{
- "id": 6679,
+ "id": 6905,
"properties": {
"down": "true",
"east": "false",
@@ -86721,7 +91118,7 @@
}
},
{
- "id": 6680,
+ "id": 6906,
"properties": {
"down": "true",
"east": "false",
@@ -86733,7 +91130,7 @@
}
},
{
- "id": 6681,
+ "id": 6907,
"properties": {
"down": "true",
"east": "false",
@@ -86745,7 +91142,7 @@
}
},
{
- "id": 6682,
+ "id": 6908,
"properties": {
"down": "true",
"east": "false",
@@ -86757,7 +91154,7 @@
}
},
{
- "id": 6683,
+ "id": 6909,
"properties": {
"down": "true",
"east": "false",
@@ -86769,7 +91166,7 @@
}
},
{
- "id": 6684,
+ "id": 6910,
"properties": {
"down": "true",
"east": "false",
@@ -86781,7 +91178,7 @@
}
},
{
- "id": 6685,
+ "id": 6911,
"properties": {
"down": "true",
"east": "false",
@@ -86793,7 +91190,7 @@
}
},
{
- "id": 6686,
+ "id": 6912,
"properties": {
"down": "true",
"east": "false",
@@ -86805,7 +91202,7 @@
}
},
{
- "id": 6687,
+ "id": 6913,
"properties": {
"down": "true",
"east": "false",
@@ -86817,7 +91214,7 @@
}
},
{
- "id": 6688,
+ "id": 6914,
"properties": {
"down": "true",
"east": "false",
@@ -86829,7 +91226,7 @@
}
},
{
- "id": 6689,
+ "id": 6915,
"properties": {
"down": "true",
"east": "false",
@@ -86841,7 +91238,7 @@
}
},
{
- "id": 6690,
+ "id": 6916,
"properties": {
"down": "true",
"east": "false",
@@ -86853,7 +91250,7 @@
}
},
{
- "id": 6691,
+ "id": 6917,
"properties": {
"down": "true",
"east": "false",
@@ -86865,7 +91262,7 @@
}
},
{
- "id": 6692,
+ "id": 6918,
"properties": {
"down": "true",
"east": "false",
@@ -86877,7 +91274,7 @@
}
},
{
- "id": 6693,
+ "id": 6919,
"properties": {
"down": "true",
"east": "false",
@@ -86889,7 +91286,7 @@
}
},
{
- "id": 6694,
+ "id": 6920,
"properties": {
"down": "true",
"east": "false",
@@ -86901,7 +91298,7 @@
}
},
{
- "id": 6695,
+ "id": 6921,
"properties": {
"down": "true",
"east": "false",
@@ -86913,7 +91310,7 @@
}
},
{
- "id": 6696,
+ "id": 6922,
"properties": {
"down": "true",
"east": "false",
@@ -86925,7 +91322,7 @@
}
},
{
- "id": 6697,
+ "id": 6923,
"properties": {
"down": "true",
"east": "false",
@@ -86937,7 +91334,7 @@
}
},
{
- "id": 6698,
+ "id": 6924,
"properties": {
"down": "true",
"east": "false",
@@ -86949,7 +91346,7 @@
}
},
{
- "id": 6699,
+ "id": 6925,
"properties": {
"down": "true",
"east": "false",
@@ -86961,7 +91358,7 @@
}
},
{
- "id": 6700,
+ "id": 6926,
"properties": {
"down": "true",
"east": "false",
@@ -86973,7 +91370,7 @@
}
},
{
- "id": 6701,
+ "id": 6927,
"properties": {
"down": "true",
"east": "false",
@@ -86985,7 +91382,7 @@
}
},
{
- "id": 6702,
+ "id": 6928,
"properties": {
"down": "true",
"east": "false",
@@ -86997,7 +91394,7 @@
}
},
{
- "id": 6703,
+ "id": 6929,
"properties": {
"down": "false",
"east": "true",
@@ -87009,7 +91406,7 @@
}
},
{
- "id": 6704,
+ "id": 6930,
"properties": {
"down": "false",
"east": "true",
@@ -87021,7 +91418,7 @@
}
},
{
- "id": 6705,
+ "id": 6931,
"properties": {
"down": "false",
"east": "true",
@@ -87033,7 +91430,7 @@
}
},
{
- "id": 6706,
+ "id": 6932,
"properties": {
"down": "false",
"east": "true",
@@ -87045,7 +91442,7 @@
}
},
{
- "id": 6707,
+ "id": 6933,
"properties": {
"down": "false",
"east": "true",
@@ -87057,7 +91454,7 @@
}
},
{
- "id": 6708,
+ "id": 6934,
"properties": {
"down": "false",
"east": "true",
@@ -87069,7 +91466,7 @@
}
},
{
- "id": 6709,
+ "id": 6935,
"properties": {
"down": "false",
"east": "true",
@@ -87081,7 +91478,7 @@
}
},
{
- "id": 6710,
+ "id": 6936,
"properties": {
"down": "false",
"east": "true",
@@ -87093,7 +91490,7 @@
}
},
{
- "id": 6711,
+ "id": 6937,
"properties": {
"down": "false",
"east": "true",
@@ -87105,7 +91502,7 @@
}
},
{
- "id": 6712,
+ "id": 6938,
"properties": {
"down": "false",
"east": "true",
@@ -87117,7 +91514,7 @@
}
},
{
- "id": 6713,
+ "id": 6939,
"properties": {
"down": "false",
"east": "true",
@@ -87129,7 +91526,7 @@
}
},
{
- "id": 6714,
+ "id": 6940,
"properties": {
"down": "false",
"east": "true",
@@ -87141,7 +91538,7 @@
}
},
{
- "id": 6715,
+ "id": 6941,
"properties": {
"down": "false",
"east": "true",
@@ -87153,7 +91550,7 @@
}
},
{
- "id": 6716,
+ "id": 6942,
"properties": {
"down": "false",
"east": "true",
@@ -87165,7 +91562,7 @@
}
},
{
- "id": 6717,
+ "id": 6943,
"properties": {
"down": "false",
"east": "true",
@@ -87177,7 +91574,7 @@
}
},
{
- "id": 6718,
+ "id": 6944,
"properties": {
"down": "false",
"east": "true",
@@ -87189,7 +91586,7 @@
}
},
{
- "id": 6719,
+ "id": 6945,
"properties": {
"down": "false",
"east": "true",
@@ -87201,7 +91598,7 @@
}
},
{
- "id": 6720,
+ "id": 6946,
"properties": {
"down": "false",
"east": "true",
@@ -87213,7 +91610,7 @@
}
},
{
- "id": 6721,
+ "id": 6947,
"properties": {
"down": "false",
"east": "true",
@@ -87225,7 +91622,7 @@
}
},
{
- "id": 6722,
+ "id": 6948,
"properties": {
"down": "false",
"east": "true",
@@ -87237,7 +91634,7 @@
}
},
{
- "id": 6723,
+ "id": 6949,
"properties": {
"down": "false",
"east": "true",
@@ -87249,7 +91646,7 @@
}
},
{
- "id": 6724,
+ "id": 6950,
"properties": {
"down": "false",
"east": "true",
@@ -87261,7 +91658,7 @@
}
},
{
- "id": 6725,
+ "id": 6951,
"properties": {
"down": "false",
"east": "true",
@@ -87273,7 +91670,7 @@
}
},
{
- "id": 6726,
+ "id": 6952,
"properties": {
"down": "false",
"east": "true",
@@ -87285,7 +91682,7 @@
}
},
{
- "id": 6727,
+ "id": 6953,
"properties": {
"down": "false",
"east": "true",
@@ -87297,7 +91694,7 @@
}
},
{
- "id": 6728,
+ "id": 6954,
"properties": {
"down": "false",
"east": "true",
@@ -87309,7 +91706,7 @@
}
},
{
- "id": 6729,
+ "id": 6955,
"properties": {
"down": "false",
"east": "true",
@@ -87321,7 +91718,7 @@
}
},
{
- "id": 6730,
+ "id": 6956,
"properties": {
"down": "false",
"east": "true",
@@ -87333,7 +91730,7 @@
}
},
{
- "id": 6731,
+ "id": 6957,
"properties": {
"down": "false",
"east": "true",
@@ -87345,7 +91742,7 @@
}
},
{
- "id": 6732,
+ "id": 6958,
"properties": {
"down": "false",
"east": "true",
@@ -87357,7 +91754,7 @@
}
},
{
- "id": 6733,
+ "id": 6959,
"properties": {
"down": "false",
"east": "true",
@@ -87369,7 +91766,7 @@
}
},
{
- "id": 6734,
+ "id": 6960,
"properties": {
"down": "false",
"east": "true",
@@ -87381,7 +91778,7 @@
}
},
{
- "id": 6735,
+ "id": 6961,
"properties": {
"down": "false",
"east": "false",
@@ -87393,7 +91790,7 @@
}
},
{
- "id": 6736,
+ "id": 6962,
"properties": {
"down": "false",
"east": "false",
@@ -87405,7 +91802,7 @@
}
},
{
- "id": 6737,
+ "id": 6963,
"properties": {
"down": "false",
"east": "false",
@@ -87417,7 +91814,7 @@
}
},
{
- "id": 6738,
+ "id": 6964,
"properties": {
"down": "false",
"east": "false",
@@ -87429,7 +91826,7 @@
}
},
{
- "id": 6739,
+ "id": 6965,
"properties": {
"down": "false",
"east": "false",
@@ -87441,7 +91838,7 @@
}
},
{
- "id": 6740,
+ "id": 6966,
"properties": {
"down": "false",
"east": "false",
@@ -87453,7 +91850,7 @@
}
},
{
- "id": 6741,
+ "id": 6967,
"properties": {
"down": "false",
"east": "false",
@@ -87465,7 +91862,7 @@
}
},
{
- "id": 6742,
+ "id": 6968,
"properties": {
"down": "false",
"east": "false",
@@ -87477,7 +91874,7 @@
}
},
{
- "id": 6743,
+ "id": 6969,
"properties": {
"down": "false",
"east": "false",
@@ -87489,7 +91886,7 @@
}
},
{
- "id": 6744,
+ "id": 6970,
"properties": {
"down": "false",
"east": "false",
@@ -87501,7 +91898,7 @@
}
},
{
- "id": 6745,
+ "id": 6971,
"properties": {
"down": "false",
"east": "false",
@@ -87513,7 +91910,7 @@
}
},
{
- "id": 6746,
+ "id": 6972,
"properties": {
"down": "false",
"east": "false",
@@ -87525,7 +91922,7 @@
}
},
{
- "id": 6747,
+ "id": 6973,
"properties": {
"down": "false",
"east": "false",
@@ -87537,7 +91934,7 @@
}
},
{
- "id": 6748,
+ "id": 6974,
"properties": {
"down": "false",
"east": "false",
@@ -87549,7 +91946,7 @@
}
},
{
- "id": 6749,
+ "id": 6975,
"properties": {
"down": "false",
"east": "false",
@@ -87561,7 +91958,7 @@
}
},
{
- "id": 6750,
+ "id": 6976,
"properties": {
"down": "false",
"east": "false",
@@ -87573,7 +91970,7 @@
}
},
{
- "id": 6751,
+ "id": 6977,
"properties": {
"down": "false",
"east": "false",
@@ -87585,7 +91982,7 @@
}
},
{
- "id": 6752,
+ "id": 6978,
"properties": {
"down": "false",
"east": "false",
@@ -87597,7 +91994,7 @@
}
},
{
- "id": 6753,
+ "id": 6979,
"properties": {
"down": "false",
"east": "false",
@@ -87609,7 +92006,7 @@
}
},
{
- "id": 6754,
+ "id": 6980,
"properties": {
"down": "false",
"east": "false",
@@ -87621,7 +92018,7 @@
}
},
{
- "id": 6755,
+ "id": 6981,
"properties": {
"down": "false",
"east": "false",
@@ -87633,7 +92030,7 @@
}
},
{
- "id": 6756,
+ "id": 6982,
"properties": {
"down": "false",
"east": "false",
@@ -87645,7 +92042,7 @@
}
},
{
- "id": 6757,
+ "id": 6983,
"properties": {
"down": "false",
"east": "false",
@@ -87657,7 +92054,7 @@
}
},
{
- "id": 6758,
+ "id": 6984,
"properties": {
"down": "false",
"east": "false",
@@ -87669,7 +92066,7 @@
}
},
{
- "id": 6759,
+ "id": 6985,
"properties": {
"down": "false",
"east": "false",
@@ -87681,7 +92078,7 @@
}
},
{
- "id": 6760,
+ "id": 6986,
"properties": {
"down": "false",
"east": "false",
@@ -87693,7 +92090,7 @@
}
},
{
- "id": 6761,
+ "id": 6987,
"properties": {
"down": "false",
"east": "false",
@@ -87705,7 +92102,7 @@
}
},
{
- "id": 6762,
+ "id": 6988,
"properties": {
"down": "false",
"east": "false",
@@ -87717,7 +92114,7 @@
}
},
{
- "id": 6763,
+ "id": 6989,
"properties": {
"down": "false",
"east": "false",
@@ -87729,7 +92126,7 @@
}
},
{
- "id": 6764,
+ "id": 6990,
"properties": {
"down": "false",
"east": "false",
@@ -87741,7 +92138,7 @@
}
},
{
- "id": 6765,
+ "id": 6991,
"properties": {
"down": "false",
"east": "false",
@@ -87754,7 +92151,7 @@
},
{
"default": true,
- "id": 6766,
+ "id": 6992,
"properties": {
"down": "false",
"east": "false",
@@ -87771,7 +92168,7 @@
"states": [
{
"default": true,
- "id": 5698
+ "id": 5860
}
]
},
@@ -87779,7 +92176,7 @@
"states": [
{
"default": true,
- "id": 2039
+ "id": 2087
}
]
},
@@ -87787,7 +92184,7 @@
"states": [
{
"default": true,
- "id": 112
+ "id": 119
}
]
},
@@ -87813,21 +92210,21 @@
},
"states": [
{
- "id": 13502,
+ "id": 13971,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 13503,
+ "id": 13972,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 13504,
+ "id": 13973,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -87835,21 +92232,21 @@
},
{
"default": true,
- "id": 13505,
+ "id": 13974,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 13506,
+ "id": 13975,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 13507,
+ "id": 13976,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -87883,7 +92280,7 @@
},
"states": [
{
- "id": 13054,
+ "id": 13523,
"properties": {
"facing": "north",
"half": "top",
@@ -87892,7 +92289,7 @@
}
},
{
- "id": 13055,
+ "id": 13524,
"properties": {
"facing": "north",
"half": "top",
@@ -87901,7 +92298,7 @@
}
},
{
- "id": 13056,
+ "id": 13525,
"properties": {
"facing": "north",
"half": "top",
@@ -87910,7 +92307,7 @@
}
},
{
- "id": 13057,
+ "id": 13526,
"properties": {
"facing": "north",
"half": "top",
@@ -87919,7 +92316,7 @@
}
},
{
- "id": 13058,
+ "id": 13527,
"properties": {
"facing": "north",
"half": "top",
@@ -87928,7 +92325,7 @@
}
},
{
- "id": 13059,
+ "id": 13528,
"properties": {
"facing": "north",
"half": "top",
@@ -87937,7 +92334,7 @@
}
},
{
- "id": 13060,
+ "id": 13529,
"properties": {
"facing": "north",
"half": "top",
@@ -87946,7 +92343,7 @@
}
},
{
- "id": 13061,
+ "id": 13530,
"properties": {
"facing": "north",
"half": "top",
@@ -87955,7 +92352,7 @@
}
},
{
- "id": 13062,
+ "id": 13531,
"properties": {
"facing": "north",
"half": "top",
@@ -87964,7 +92361,7 @@
}
},
{
- "id": 13063,
+ "id": 13532,
"properties": {
"facing": "north",
"half": "top",
@@ -87973,7 +92370,7 @@
}
},
{
- "id": 13064,
+ "id": 13533,
"properties": {
"facing": "north",
"half": "bottom",
@@ -87983,7 +92380,7 @@
},
{
"default": true,
- "id": 13065,
+ "id": 13534,
"properties": {
"facing": "north",
"half": "bottom",
@@ -87992,7 +92389,7 @@
}
},
{
- "id": 13066,
+ "id": 13535,
"properties": {
"facing": "north",
"half": "bottom",
@@ -88001,7 +92398,7 @@
}
},
{
- "id": 13067,
+ "id": 13536,
"properties": {
"facing": "north",
"half": "bottom",
@@ -88010,7 +92407,7 @@
}
},
{
- "id": 13068,
+ "id": 13537,
"properties": {
"facing": "north",
"half": "bottom",
@@ -88019,7 +92416,7 @@
}
},
{
- "id": 13069,
+ "id": 13538,
"properties": {
"facing": "north",
"half": "bottom",
@@ -88028,7 +92425,7 @@
}
},
{
- "id": 13070,
+ "id": 13539,
"properties": {
"facing": "north",
"half": "bottom",
@@ -88037,7 +92434,7 @@
}
},
{
- "id": 13071,
+ "id": 13540,
"properties": {
"facing": "north",
"half": "bottom",
@@ -88046,7 +92443,7 @@
}
},
{
- "id": 13072,
+ "id": 13541,
"properties": {
"facing": "north",
"half": "bottom",
@@ -88055,7 +92452,7 @@
}
},
{
- "id": 13073,
+ "id": 13542,
"properties": {
"facing": "north",
"half": "bottom",
@@ -88064,7 +92461,7 @@
}
},
{
- "id": 13074,
+ "id": 13543,
"properties": {
"facing": "south",
"half": "top",
@@ -88073,7 +92470,7 @@
}
},
{
- "id": 13075,
+ "id": 13544,
"properties": {
"facing": "south",
"half": "top",
@@ -88082,7 +92479,7 @@
}
},
{
- "id": 13076,
+ "id": 13545,
"properties": {
"facing": "south",
"half": "top",
@@ -88091,7 +92488,7 @@
}
},
{
- "id": 13077,
+ "id": 13546,
"properties": {
"facing": "south",
"half": "top",
@@ -88100,7 +92497,7 @@
}
},
{
- "id": 13078,
+ "id": 13547,
"properties": {
"facing": "south",
"half": "top",
@@ -88109,7 +92506,7 @@
}
},
{
- "id": 13079,
+ "id": 13548,
"properties": {
"facing": "south",
"half": "top",
@@ -88118,7 +92515,7 @@
}
},
{
- "id": 13080,
+ "id": 13549,
"properties": {
"facing": "south",
"half": "top",
@@ -88127,7 +92524,7 @@
}
},
{
- "id": 13081,
+ "id": 13550,
"properties": {
"facing": "south",
"half": "top",
@@ -88136,7 +92533,7 @@
}
},
{
- "id": 13082,
+ "id": 13551,
"properties": {
"facing": "south",
"half": "top",
@@ -88145,7 +92542,7 @@
}
},
{
- "id": 13083,
+ "id": 13552,
"properties": {
"facing": "south",
"half": "top",
@@ -88154,7 +92551,7 @@
}
},
{
- "id": 13084,
+ "id": 13553,
"properties": {
"facing": "south",
"half": "bottom",
@@ -88163,7 +92560,7 @@
}
},
{
- "id": 13085,
+ "id": 13554,
"properties": {
"facing": "south",
"half": "bottom",
@@ -88172,7 +92569,7 @@
}
},
{
- "id": 13086,
+ "id": 13555,
"properties": {
"facing": "south",
"half": "bottom",
@@ -88181,7 +92578,7 @@
}
},
{
- "id": 13087,
+ "id": 13556,
"properties": {
"facing": "south",
"half": "bottom",
@@ -88190,7 +92587,7 @@
}
},
{
- "id": 13088,
+ "id": 13557,
"properties": {
"facing": "south",
"half": "bottom",
@@ -88199,7 +92596,7 @@
}
},
{
- "id": 13089,
+ "id": 13558,
"properties": {
"facing": "south",
"half": "bottom",
@@ -88208,7 +92605,7 @@
}
},
{
- "id": 13090,
+ "id": 13559,
"properties": {
"facing": "south",
"half": "bottom",
@@ -88217,7 +92614,7 @@
}
},
{
- "id": 13091,
+ "id": 13560,
"properties": {
"facing": "south",
"half": "bottom",
@@ -88226,7 +92623,7 @@
}
},
{
- "id": 13092,
+ "id": 13561,
"properties": {
"facing": "south",
"half": "bottom",
@@ -88235,7 +92632,7 @@
}
},
{
- "id": 13093,
+ "id": 13562,
"properties": {
"facing": "south",
"half": "bottom",
@@ -88244,7 +92641,7 @@
}
},
{
- "id": 13094,
+ "id": 13563,
"properties": {
"facing": "west",
"half": "top",
@@ -88253,7 +92650,7 @@
}
},
{
- "id": 13095,
+ "id": 13564,
"properties": {
"facing": "west",
"half": "top",
@@ -88262,7 +92659,7 @@
}
},
{
- "id": 13096,
+ "id": 13565,
"properties": {
"facing": "west",
"half": "top",
@@ -88271,7 +92668,7 @@
}
},
{
- "id": 13097,
+ "id": 13566,
"properties": {
"facing": "west",
"half": "top",
@@ -88280,7 +92677,7 @@
}
},
{
- "id": 13098,
+ "id": 13567,
"properties": {
"facing": "west",
"half": "top",
@@ -88289,7 +92686,7 @@
}
},
{
- "id": 13099,
+ "id": 13568,
"properties": {
"facing": "west",
"half": "top",
@@ -88298,7 +92695,7 @@
}
},
{
- "id": 13100,
+ "id": 13569,
"properties": {
"facing": "west",
"half": "top",
@@ -88307,7 +92704,7 @@
}
},
{
- "id": 13101,
+ "id": 13570,
"properties": {
"facing": "west",
"half": "top",
@@ -88316,7 +92713,7 @@
}
},
{
- "id": 13102,
+ "id": 13571,
"properties": {
"facing": "west",
"half": "top",
@@ -88325,7 +92722,7 @@
}
},
{
- "id": 13103,
+ "id": 13572,
"properties": {
"facing": "west",
"half": "top",
@@ -88334,7 +92731,7 @@
}
},
{
- "id": 13104,
+ "id": 13573,
"properties": {
"facing": "west",
"half": "bottom",
@@ -88343,7 +92740,7 @@
}
},
{
- "id": 13105,
+ "id": 13574,
"properties": {
"facing": "west",
"half": "bottom",
@@ -88352,7 +92749,7 @@
}
},
{
- "id": 13106,
+ "id": 13575,
"properties": {
"facing": "west",
"half": "bottom",
@@ -88361,7 +92758,7 @@
}
},
{
- "id": 13107,
+ "id": 13576,
"properties": {
"facing": "west",
"half": "bottom",
@@ -88370,7 +92767,7 @@
}
},
{
- "id": 13108,
+ "id": 13577,
"properties": {
"facing": "west",
"half": "bottom",
@@ -88379,7 +92776,7 @@
}
},
{
- "id": 13109,
+ "id": 13578,
"properties": {
"facing": "west",
"half": "bottom",
@@ -88388,7 +92785,7 @@
}
},
{
- "id": 13110,
+ "id": 13579,
"properties": {
"facing": "west",
"half": "bottom",
@@ -88397,7 +92794,7 @@
}
},
{
- "id": 13111,
+ "id": 13580,
"properties": {
"facing": "west",
"half": "bottom",
@@ -88406,7 +92803,7 @@
}
},
{
- "id": 13112,
+ "id": 13581,
"properties": {
"facing": "west",
"half": "bottom",
@@ -88415,7 +92812,7 @@
}
},
{
- "id": 13113,
+ "id": 13582,
"properties": {
"facing": "west",
"half": "bottom",
@@ -88424,7 +92821,7 @@
}
},
{
- "id": 13114,
+ "id": 13583,
"properties": {
"facing": "east",
"half": "top",
@@ -88433,7 +92830,7 @@
}
},
{
- "id": 13115,
+ "id": 13584,
"properties": {
"facing": "east",
"half": "top",
@@ -88442,7 +92839,7 @@
}
},
{
- "id": 13116,
+ "id": 13585,
"properties": {
"facing": "east",
"half": "top",
@@ -88451,7 +92848,7 @@
}
},
{
- "id": 13117,
+ "id": 13586,
"properties": {
"facing": "east",
"half": "top",
@@ -88460,7 +92857,7 @@
}
},
{
- "id": 13118,
+ "id": 13587,
"properties": {
"facing": "east",
"half": "top",
@@ -88469,7 +92866,7 @@
}
},
{
- "id": 13119,
+ "id": 13588,
"properties": {
"facing": "east",
"half": "top",
@@ -88478,7 +92875,7 @@
}
},
{
- "id": 13120,
+ "id": 13589,
"properties": {
"facing": "east",
"half": "top",
@@ -88487,7 +92884,7 @@
}
},
{
- "id": 13121,
+ "id": 13590,
"properties": {
"facing": "east",
"half": "top",
@@ -88496,7 +92893,7 @@
}
},
{
- "id": 13122,
+ "id": 13591,
"properties": {
"facing": "east",
"half": "top",
@@ -88505,7 +92902,7 @@
}
},
{
- "id": 13123,
+ "id": 13592,
"properties": {
"facing": "east",
"half": "top",
@@ -88514,7 +92911,7 @@
}
},
{
- "id": 13124,
+ "id": 13593,
"properties": {
"facing": "east",
"half": "bottom",
@@ -88523,7 +92920,7 @@
}
},
{
- "id": 13125,
+ "id": 13594,
"properties": {
"facing": "east",
"half": "bottom",
@@ -88532,7 +92929,7 @@
}
},
{
- "id": 13126,
+ "id": 13595,
"properties": {
"facing": "east",
"half": "bottom",
@@ -88541,7 +92938,7 @@
}
},
{
- "id": 13127,
+ "id": 13596,
"properties": {
"facing": "east",
"half": "bottom",
@@ -88550,7 +92947,7 @@
}
},
{
- "id": 13128,
+ "id": 13597,
"properties": {
"facing": "east",
"half": "bottom",
@@ -88559,7 +92956,7 @@
}
},
{
- "id": 13129,
+ "id": 13598,
"properties": {
"facing": "east",
"half": "bottom",
@@ -88568,7 +92965,7 @@
}
},
{
- "id": 13130,
+ "id": 13599,
"properties": {
"facing": "east",
"half": "bottom",
@@ -88577,7 +92974,7 @@
}
},
{
- "id": 13131,
+ "id": 13600,
"properties": {
"facing": "east",
"half": "bottom",
@@ -88586,7 +92983,7 @@
}
},
{
- "id": 13132,
+ "id": 13601,
"properties": {
"facing": "east",
"half": "bottom",
@@ -88595,7 +92992,7 @@
}
},
{
- "id": 13133,
+ "id": 13602,
"properties": {
"facing": "east",
"half": "bottom",
@@ -88638,7 +93035,7 @@
},
"states": [
{
- "id": 14828,
+ "id": 15297,
"properties": {
"east": "none",
"north": "none",
@@ -88649,7 +93046,7 @@
}
},
{
- "id": 14829,
+ "id": 15298,
"properties": {
"east": "none",
"north": "none",
@@ -88660,7 +93057,7 @@
}
},
{
- "id": 14830,
+ "id": 15299,
"properties": {
"east": "none",
"north": "none",
@@ -88672,7 +93069,7 @@
},
{
"default": true,
- "id": 14831,
+ "id": 15300,
"properties": {
"east": "none",
"north": "none",
@@ -88683,7 +93080,7 @@
}
},
{
- "id": 14832,
+ "id": 15301,
"properties": {
"east": "none",
"north": "none",
@@ -88694,7 +93091,7 @@
}
},
{
- "id": 14833,
+ "id": 15302,
"properties": {
"east": "none",
"north": "none",
@@ -88705,7 +93102,7 @@
}
},
{
- "id": 14834,
+ "id": 15303,
"properties": {
"east": "none",
"north": "none",
@@ -88716,7 +93113,7 @@
}
},
{
- "id": 14835,
+ "id": 15304,
"properties": {
"east": "none",
"north": "none",
@@ -88727,7 +93124,7 @@
}
},
{
- "id": 14836,
+ "id": 15305,
"properties": {
"east": "none",
"north": "none",
@@ -88738,7 +93135,7 @@
}
},
{
- "id": 14837,
+ "id": 15306,
"properties": {
"east": "none",
"north": "none",
@@ -88749,7 +93146,7 @@
}
},
{
- "id": 14838,
+ "id": 15307,
"properties": {
"east": "none",
"north": "none",
@@ -88760,7 +93157,7 @@
}
},
{
- "id": 14839,
+ "id": 15308,
"properties": {
"east": "none",
"north": "none",
@@ -88771,7 +93168,7 @@
}
},
{
- "id": 14840,
+ "id": 15309,
"properties": {
"east": "none",
"north": "none",
@@ -88782,7 +93179,7 @@
}
},
{
- "id": 14841,
+ "id": 15310,
"properties": {
"east": "none",
"north": "none",
@@ -88793,7 +93190,7 @@
}
},
{
- "id": 14842,
+ "id": 15311,
"properties": {
"east": "none",
"north": "none",
@@ -88804,7 +93201,7 @@
}
},
{
- "id": 14843,
+ "id": 15312,
"properties": {
"east": "none",
"north": "none",
@@ -88815,7 +93212,7 @@
}
},
{
- "id": 14844,
+ "id": 15313,
"properties": {
"east": "none",
"north": "none",
@@ -88826,7 +93223,7 @@
}
},
{
- "id": 14845,
+ "id": 15314,
"properties": {
"east": "none",
"north": "none",
@@ -88837,7 +93234,7 @@
}
},
{
- "id": 14846,
+ "id": 15315,
"properties": {
"east": "none",
"north": "none",
@@ -88848,7 +93245,7 @@
}
},
{
- "id": 14847,
+ "id": 15316,
"properties": {
"east": "none",
"north": "none",
@@ -88859,7 +93256,7 @@
}
},
{
- "id": 14848,
+ "id": 15317,
"properties": {
"east": "none",
"north": "none",
@@ -88870,7 +93267,7 @@
}
},
{
- "id": 14849,
+ "id": 15318,
"properties": {
"east": "none",
"north": "none",
@@ -88881,7 +93278,7 @@
}
},
{
- "id": 14850,
+ "id": 15319,
"properties": {
"east": "none",
"north": "none",
@@ -88892,7 +93289,7 @@
}
},
{
- "id": 14851,
+ "id": 15320,
"properties": {
"east": "none",
"north": "none",
@@ -88903,7 +93300,7 @@
}
},
{
- "id": 14852,
+ "id": 15321,
"properties": {
"east": "none",
"north": "none",
@@ -88914,7 +93311,7 @@
}
},
{
- "id": 14853,
+ "id": 15322,
"properties": {
"east": "none",
"north": "none",
@@ -88925,7 +93322,7 @@
}
},
{
- "id": 14854,
+ "id": 15323,
"properties": {
"east": "none",
"north": "none",
@@ -88936,7 +93333,7 @@
}
},
{
- "id": 14855,
+ "id": 15324,
"properties": {
"east": "none",
"north": "none",
@@ -88947,7 +93344,7 @@
}
},
{
- "id": 14856,
+ "id": 15325,
"properties": {
"east": "none",
"north": "none",
@@ -88958,7 +93355,7 @@
}
},
{
- "id": 14857,
+ "id": 15326,
"properties": {
"east": "none",
"north": "none",
@@ -88969,7 +93366,7 @@
}
},
{
- "id": 14858,
+ "id": 15327,
"properties": {
"east": "none",
"north": "none",
@@ -88980,7 +93377,7 @@
}
},
{
- "id": 14859,
+ "id": 15328,
"properties": {
"east": "none",
"north": "none",
@@ -88991,7 +93388,7 @@
}
},
{
- "id": 14860,
+ "id": 15329,
"properties": {
"east": "none",
"north": "none",
@@ -89002,7 +93399,7 @@
}
},
{
- "id": 14861,
+ "id": 15330,
"properties": {
"east": "none",
"north": "none",
@@ -89013,7 +93410,7 @@
}
},
{
- "id": 14862,
+ "id": 15331,
"properties": {
"east": "none",
"north": "none",
@@ -89024,7 +93421,7 @@
}
},
{
- "id": 14863,
+ "id": 15332,
"properties": {
"east": "none",
"north": "none",
@@ -89035,7 +93432,7 @@
}
},
{
- "id": 14864,
+ "id": 15333,
"properties": {
"east": "none",
"north": "low",
@@ -89046,7 +93443,7 @@
}
},
{
- "id": 14865,
+ "id": 15334,
"properties": {
"east": "none",
"north": "low",
@@ -89057,7 +93454,7 @@
}
},
{
- "id": 14866,
+ "id": 15335,
"properties": {
"east": "none",
"north": "low",
@@ -89068,7 +93465,7 @@
}
},
{
- "id": 14867,
+ "id": 15336,
"properties": {
"east": "none",
"north": "low",
@@ -89079,7 +93476,7 @@
}
},
{
- "id": 14868,
+ "id": 15337,
"properties": {
"east": "none",
"north": "low",
@@ -89090,7 +93487,7 @@
}
},
{
- "id": 14869,
+ "id": 15338,
"properties": {
"east": "none",
"north": "low",
@@ -89101,7 +93498,7 @@
}
},
{
- "id": 14870,
+ "id": 15339,
"properties": {
"east": "none",
"north": "low",
@@ -89112,7 +93509,7 @@
}
},
{
- "id": 14871,
+ "id": 15340,
"properties": {
"east": "none",
"north": "low",
@@ -89123,7 +93520,7 @@
}
},
{
- "id": 14872,
+ "id": 15341,
"properties": {
"east": "none",
"north": "low",
@@ -89134,7 +93531,7 @@
}
},
{
- "id": 14873,
+ "id": 15342,
"properties": {
"east": "none",
"north": "low",
@@ -89145,7 +93542,7 @@
}
},
{
- "id": 14874,
+ "id": 15343,
"properties": {
"east": "none",
"north": "low",
@@ -89156,7 +93553,7 @@
}
},
{
- "id": 14875,
+ "id": 15344,
"properties": {
"east": "none",
"north": "low",
@@ -89167,7 +93564,7 @@
}
},
{
- "id": 14876,
+ "id": 15345,
"properties": {
"east": "none",
"north": "low",
@@ -89178,7 +93575,7 @@
}
},
{
- "id": 14877,
+ "id": 15346,
"properties": {
"east": "none",
"north": "low",
@@ -89189,7 +93586,7 @@
}
},
{
- "id": 14878,
+ "id": 15347,
"properties": {
"east": "none",
"north": "low",
@@ -89200,7 +93597,7 @@
}
},
{
- "id": 14879,
+ "id": 15348,
"properties": {
"east": "none",
"north": "low",
@@ -89211,7 +93608,7 @@
}
},
{
- "id": 14880,
+ "id": 15349,
"properties": {
"east": "none",
"north": "low",
@@ -89222,7 +93619,7 @@
}
},
{
- "id": 14881,
+ "id": 15350,
"properties": {
"east": "none",
"north": "low",
@@ -89233,7 +93630,7 @@
}
},
{
- "id": 14882,
+ "id": 15351,
"properties": {
"east": "none",
"north": "low",
@@ -89244,7 +93641,7 @@
}
},
{
- "id": 14883,
+ "id": 15352,
"properties": {
"east": "none",
"north": "low",
@@ -89255,7 +93652,7 @@
}
},
{
- "id": 14884,
+ "id": 15353,
"properties": {
"east": "none",
"north": "low",
@@ -89266,7 +93663,7 @@
}
},
{
- "id": 14885,
+ "id": 15354,
"properties": {
"east": "none",
"north": "low",
@@ -89277,7 +93674,7 @@
}
},
{
- "id": 14886,
+ "id": 15355,
"properties": {
"east": "none",
"north": "low",
@@ -89288,7 +93685,7 @@
}
},
{
- "id": 14887,
+ "id": 15356,
"properties": {
"east": "none",
"north": "low",
@@ -89299,7 +93696,7 @@
}
},
{
- "id": 14888,
+ "id": 15357,
"properties": {
"east": "none",
"north": "low",
@@ -89310,7 +93707,7 @@
}
},
{
- "id": 14889,
+ "id": 15358,
"properties": {
"east": "none",
"north": "low",
@@ -89321,7 +93718,7 @@
}
},
{
- "id": 14890,
+ "id": 15359,
"properties": {
"east": "none",
"north": "low",
@@ -89332,7 +93729,7 @@
}
},
{
- "id": 14891,
+ "id": 15360,
"properties": {
"east": "none",
"north": "low",
@@ -89343,7 +93740,7 @@
}
},
{
- "id": 14892,
+ "id": 15361,
"properties": {
"east": "none",
"north": "low",
@@ -89354,7 +93751,7 @@
}
},
{
- "id": 14893,
+ "id": 15362,
"properties": {
"east": "none",
"north": "low",
@@ -89365,7 +93762,7 @@
}
},
{
- "id": 14894,
+ "id": 15363,
"properties": {
"east": "none",
"north": "low",
@@ -89376,7 +93773,7 @@
}
},
{
- "id": 14895,
+ "id": 15364,
"properties": {
"east": "none",
"north": "low",
@@ -89387,7 +93784,7 @@
}
},
{
- "id": 14896,
+ "id": 15365,
"properties": {
"east": "none",
"north": "low",
@@ -89398,7 +93795,7 @@
}
},
{
- "id": 14897,
+ "id": 15366,
"properties": {
"east": "none",
"north": "low",
@@ -89409,7 +93806,7 @@
}
},
{
- "id": 14898,
+ "id": 15367,
"properties": {
"east": "none",
"north": "low",
@@ -89420,7 +93817,7 @@
}
},
{
- "id": 14899,
+ "id": 15368,
"properties": {
"east": "none",
"north": "low",
@@ -89431,7 +93828,7 @@
}
},
{
- "id": 14900,
+ "id": 15369,
"properties": {
"east": "none",
"north": "tall",
@@ -89442,7 +93839,7 @@
}
},
{
- "id": 14901,
+ "id": 15370,
"properties": {
"east": "none",
"north": "tall",
@@ -89453,7 +93850,7 @@
}
},
{
- "id": 14902,
+ "id": 15371,
"properties": {
"east": "none",
"north": "tall",
@@ -89464,7 +93861,7 @@
}
},
{
- "id": 14903,
+ "id": 15372,
"properties": {
"east": "none",
"north": "tall",
@@ -89475,7 +93872,7 @@
}
},
{
- "id": 14904,
+ "id": 15373,
"properties": {
"east": "none",
"north": "tall",
@@ -89486,7 +93883,7 @@
}
},
{
- "id": 14905,
+ "id": 15374,
"properties": {
"east": "none",
"north": "tall",
@@ -89497,7 +93894,7 @@
}
},
{
- "id": 14906,
+ "id": 15375,
"properties": {
"east": "none",
"north": "tall",
@@ -89508,7 +93905,7 @@
}
},
{
- "id": 14907,
+ "id": 15376,
"properties": {
"east": "none",
"north": "tall",
@@ -89519,7 +93916,7 @@
}
},
{
- "id": 14908,
+ "id": 15377,
"properties": {
"east": "none",
"north": "tall",
@@ -89530,7 +93927,7 @@
}
},
{
- "id": 14909,
+ "id": 15378,
"properties": {
"east": "none",
"north": "tall",
@@ -89541,7 +93938,7 @@
}
},
{
- "id": 14910,
+ "id": 15379,
"properties": {
"east": "none",
"north": "tall",
@@ -89552,7 +93949,7 @@
}
},
{
- "id": 14911,
+ "id": 15380,
"properties": {
"east": "none",
"north": "tall",
@@ -89563,7 +93960,7 @@
}
},
{
- "id": 14912,
+ "id": 15381,
"properties": {
"east": "none",
"north": "tall",
@@ -89574,7 +93971,7 @@
}
},
{
- "id": 14913,
+ "id": 15382,
"properties": {
"east": "none",
"north": "tall",
@@ -89585,7 +93982,7 @@
}
},
{
- "id": 14914,
+ "id": 15383,
"properties": {
"east": "none",
"north": "tall",
@@ -89596,7 +93993,7 @@
}
},
{
- "id": 14915,
+ "id": 15384,
"properties": {
"east": "none",
"north": "tall",
@@ -89607,7 +94004,7 @@
}
},
{
- "id": 14916,
+ "id": 15385,
"properties": {
"east": "none",
"north": "tall",
@@ -89618,7 +94015,7 @@
}
},
{
- "id": 14917,
+ "id": 15386,
"properties": {
"east": "none",
"north": "tall",
@@ -89629,7 +94026,7 @@
}
},
{
- "id": 14918,
+ "id": 15387,
"properties": {
"east": "none",
"north": "tall",
@@ -89640,7 +94037,7 @@
}
},
{
- "id": 14919,
+ "id": 15388,
"properties": {
"east": "none",
"north": "tall",
@@ -89651,7 +94048,7 @@
}
},
{
- "id": 14920,
+ "id": 15389,
"properties": {
"east": "none",
"north": "tall",
@@ -89662,7 +94059,7 @@
}
},
{
- "id": 14921,
+ "id": 15390,
"properties": {
"east": "none",
"north": "tall",
@@ -89673,7 +94070,7 @@
}
},
{
- "id": 14922,
+ "id": 15391,
"properties": {
"east": "none",
"north": "tall",
@@ -89684,7 +94081,7 @@
}
},
{
- "id": 14923,
+ "id": 15392,
"properties": {
"east": "none",
"north": "tall",
@@ -89695,7 +94092,7 @@
}
},
{
- "id": 14924,
+ "id": 15393,
"properties": {
"east": "none",
"north": "tall",
@@ -89706,7 +94103,7 @@
}
},
{
- "id": 14925,
+ "id": 15394,
"properties": {
"east": "none",
"north": "tall",
@@ -89717,7 +94114,7 @@
}
},
{
- "id": 14926,
+ "id": 15395,
"properties": {
"east": "none",
"north": "tall",
@@ -89728,7 +94125,7 @@
}
},
{
- "id": 14927,
+ "id": 15396,
"properties": {
"east": "none",
"north": "tall",
@@ -89739,7 +94136,7 @@
}
},
{
- "id": 14928,
+ "id": 15397,
"properties": {
"east": "none",
"north": "tall",
@@ -89750,7 +94147,7 @@
}
},
{
- "id": 14929,
+ "id": 15398,
"properties": {
"east": "none",
"north": "tall",
@@ -89761,7 +94158,7 @@
}
},
{
- "id": 14930,
+ "id": 15399,
"properties": {
"east": "none",
"north": "tall",
@@ -89772,7 +94169,7 @@
}
},
{
- "id": 14931,
+ "id": 15400,
"properties": {
"east": "none",
"north": "tall",
@@ -89783,7 +94180,7 @@
}
},
{
- "id": 14932,
+ "id": 15401,
"properties": {
"east": "none",
"north": "tall",
@@ -89794,7 +94191,7 @@
}
},
{
- "id": 14933,
+ "id": 15402,
"properties": {
"east": "none",
"north": "tall",
@@ -89805,7 +94202,7 @@
}
},
{
- "id": 14934,
+ "id": 15403,
"properties": {
"east": "none",
"north": "tall",
@@ -89816,7 +94213,7 @@
}
},
{
- "id": 14935,
+ "id": 15404,
"properties": {
"east": "none",
"north": "tall",
@@ -89827,7 +94224,7 @@
}
},
{
- "id": 14936,
+ "id": 15405,
"properties": {
"east": "low",
"north": "none",
@@ -89838,7 +94235,7 @@
}
},
{
- "id": 14937,
+ "id": 15406,
"properties": {
"east": "low",
"north": "none",
@@ -89849,7 +94246,7 @@
}
},
{
- "id": 14938,
+ "id": 15407,
"properties": {
"east": "low",
"north": "none",
@@ -89860,7 +94257,7 @@
}
},
{
- "id": 14939,
+ "id": 15408,
"properties": {
"east": "low",
"north": "none",
@@ -89871,7 +94268,7 @@
}
},
{
- "id": 14940,
+ "id": 15409,
"properties": {
"east": "low",
"north": "none",
@@ -89882,7 +94279,7 @@
}
},
{
- "id": 14941,
+ "id": 15410,
"properties": {
"east": "low",
"north": "none",
@@ -89893,7 +94290,7 @@
}
},
{
- "id": 14942,
+ "id": 15411,
"properties": {
"east": "low",
"north": "none",
@@ -89904,7 +94301,7 @@
}
},
{
- "id": 14943,
+ "id": 15412,
"properties": {
"east": "low",
"north": "none",
@@ -89915,7 +94312,7 @@
}
},
{
- "id": 14944,
+ "id": 15413,
"properties": {
"east": "low",
"north": "none",
@@ -89926,7 +94323,7 @@
}
},
{
- "id": 14945,
+ "id": 15414,
"properties": {
"east": "low",
"north": "none",
@@ -89937,7 +94334,7 @@
}
},
{
- "id": 14946,
+ "id": 15415,
"properties": {
"east": "low",
"north": "none",
@@ -89948,7 +94345,7 @@
}
},
{
- "id": 14947,
+ "id": 15416,
"properties": {
"east": "low",
"north": "none",
@@ -89959,7 +94356,7 @@
}
},
{
- "id": 14948,
+ "id": 15417,
"properties": {
"east": "low",
"north": "none",
@@ -89970,7 +94367,7 @@
}
},
{
- "id": 14949,
+ "id": 15418,
"properties": {
"east": "low",
"north": "none",
@@ -89981,7 +94378,7 @@
}
},
{
- "id": 14950,
+ "id": 15419,
"properties": {
"east": "low",
"north": "none",
@@ -89992,7 +94389,7 @@
}
},
{
- "id": 14951,
+ "id": 15420,
"properties": {
"east": "low",
"north": "none",
@@ -90003,7 +94400,7 @@
}
},
{
- "id": 14952,
+ "id": 15421,
"properties": {
"east": "low",
"north": "none",
@@ -90014,7 +94411,7 @@
}
},
{
- "id": 14953,
+ "id": 15422,
"properties": {
"east": "low",
"north": "none",
@@ -90025,7 +94422,7 @@
}
},
{
- "id": 14954,
+ "id": 15423,
"properties": {
"east": "low",
"north": "none",
@@ -90036,7 +94433,7 @@
}
},
{
- "id": 14955,
+ "id": 15424,
"properties": {
"east": "low",
"north": "none",
@@ -90047,7 +94444,7 @@
}
},
{
- "id": 14956,
+ "id": 15425,
"properties": {
"east": "low",
"north": "none",
@@ -90058,7 +94455,7 @@
}
},
{
- "id": 14957,
+ "id": 15426,
"properties": {
"east": "low",
"north": "none",
@@ -90069,7 +94466,7 @@
}
},
{
- "id": 14958,
+ "id": 15427,
"properties": {
"east": "low",
"north": "none",
@@ -90080,7 +94477,7 @@
}
},
{
- "id": 14959,
+ "id": 15428,
"properties": {
"east": "low",
"north": "none",
@@ -90091,7 +94488,7 @@
}
},
{
- "id": 14960,
+ "id": 15429,
"properties": {
"east": "low",
"north": "none",
@@ -90102,7 +94499,7 @@
}
},
{
- "id": 14961,
+ "id": 15430,
"properties": {
"east": "low",
"north": "none",
@@ -90113,7 +94510,7 @@
}
},
{
- "id": 14962,
+ "id": 15431,
"properties": {
"east": "low",
"north": "none",
@@ -90124,7 +94521,7 @@
}
},
{
- "id": 14963,
+ "id": 15432,
"properties": {
"east": "low",
"north": "none",
@@ -90135,7 +94532,7 @@
}
},
{
- "id": 14964,
+ "id": 15433,
"properties": {
"east": "low",
"north": "none",
@@ -90146,7 +94543,7 @@
}
},
{
- "id": 14965,
+ "id": 15434,
"properties": {
"east": "low",
"north": "none",
@@ -90157,7 +94554,7 @@
}
},
{
- "id": 14966,
+ "id": 15435,
"properties": {
"east": "low",
"north": "none",
@@ -90168,7 +94565,7 @@
}
},
{
- "id": 14967,
+ "id": 15436,
"properties": {
"east": "low",
"north": "none",
@@ -90179,7 +94576,7 @@
}
},
{
- "id": 14968,
+ "id": 15437,
"properties": {
"east": "low",
"north": "none",
@@ -90190,7 +94587,7 @@
}
},
{
- "id": 14969,
+ "id": 15438,
"properties": {
"east": "low",
"north": "none",
@@ -90201,7 +94598,7 @@
}
},
{
- "id": 14970,
+ "id": 15439,
"properties": {
"east": "low",
"north": "none",
@@ -90212,7 +94609,7 @@
}
},
{
- "id": 14971,
+ "id": 15440,
"properties": {
"east": "low",
"north": "none",
@@ -90223,7 +94620,7 @@
}
},
{
- "id": 14972,
+ "id": 15441,
"properties": {
"east": "low",
"north": "low",
@@ -90234,7 +94631,7 @@
}
},
{
- "id": 14973,
+ "id": 15442,
"properties": {
"east": "low",
"north": "low",
@@ -90245,7 +94642,7 @@
}
},
{
- "id": 14974,
+ "id": 15443,
"properties": {
"east": "low",
"north": "low",
@@ -90256,7 +94653,7 @@
}
},
{
- "id": 14975,
+ "id": 15444,
"properties": {
"east": "low",
"north": "low",
@@ -90267,7 +94664,7 @@
}
},
{
- "id": 14976,
+ "id": 15445,
"properties": {
"east": "low",
"north": "low",
@@ -90278,7 +94675,7 @@
}
},
{
- "id": 14977,
+ "id": 15446,
"properties": {
"east": "low",
"north": "low",
@@ -90289,7 +94686,7 @@
}
},
{
- "id": 14978,
+ "id": 15447,
"properties": {
"east": "low",
"north": "low",
@@ -90300,7 +94697,7 @@
}
},
{
- "id": 14979,
+ "id": 15448,
"properties": {
"east": "low",
"north": "low",
@@ -90311,7 +94708,7 @@
}
},
{
- "id": 14980,
+ "id": 15449,
"properties": {
"east": "low",
"north": "low",
@@ -90322,7 +94719,7 @@
}
},
{
- "id": 14981,
+ "id": 15450,
"properties": {
"east": "low",
"north": "low",
@@ -90333,7 +94730,7 @@
}
},
{
- "id": 14982,
+ "id": 15451,
"properties": {
"east": "low",
"north": "low",
@@ -90344,7 +94741,7 @@
}
},
{
- "id": 14983,
+ "id": 15452,
"properties": {
"east": "low",
"north": "low",
@@ -90355,7 +94752,7 @@
}
},
{
- "id": 14984,
+ "id": 15453,
"properties": {
"east": "low",
"north": "low",
@@ -90366,7 +94763,7 @@
}
},
{
- "id": 14985,
+ "id": 15454,
"properties": {
"east": "low",
"north": "low",
@@ -90377,7 +94774,7 @@
}
},
{
- "id": 14986,
+ "id": 15455,
"properties": {
"east": "low",
"north": "low",
@@ -90388,7 +94785,7 @@
}
},
{
- "id": 14987,
+ "id": 15456,
"properties": {
"east": "low",
"north": "low",
@@ -90399,7 +94796,7 @@
}
},
{
- "id": 14988,
+ "id": 15457,
"properties": {
"east": "low",
"north": "low",
@@ -90410,7 +94807,7 @@
}
},
{
- "id": 14989,
+ "id": 15458,
"properties": {
"east": "low",
"north": "low",
@@ -90421,7 +94818,7 @@
}
},
{
- "id": 14990,
+ "id": 15459,
"properties": {
"east": "low",
"north": "low",
@@ -90432,7 +94829,7 @@
}
},
{
- "id": 14991,
+ "id": 15460,
"properties": {
"east": "low",
"north": "low",
@@ -90443,7 +94840,7 @@
}
},
{
- "id": 14992,
+ "id": 15461,
"properties": {
"east": "low",
"north": "low",
@@ -90454,7 +94851,7 @@
}
},
{
- "id": 14993,
+ "id": 15462,
"properties": {
"east": "low",
"north": "low",
@@ -90465,7 +94862,7 @@
}
},
{
- "id": 14994,
+ "id": 15463,
"properties": {
"east": "low",
"north": "low",
@@ -90476,7 +94873,7 @@
}
},
{
- "id": 14995,
+ "id": 15464,
"properties": {
"east": "low",
"north": "low",
@@ -90487,7 +94884,7 @@
}
},
{
- "id": 14996,
+ "id": 15465,
"properties": {
"east": "low",
"north": "low",
@@ -90498,7 +94895,7 @@
}
},
{
- "id": 14997,
+ "id": 15466,
"properties": {
"east": "low",
"north": "low",
@@ -90509,7 +94906,7 @@
}
},
{
- "id": 14998,
+ "id": 15467,
"properties": {
"east": "low",
"north": "low",
@@ -90520,7 +94917,7 @@
}
},
{
- "id": 14999,
+ "id": 15468,
"properties": {
"east": "low",
"north": "low",
@@ -90531,7 +94928,7 @@
}
},
{
- "id": 15000,
+ "id": 15469,
"properties": {
"east": "low",
"north": "low",
@@ -90542,7 +94939,7 @@
}
},
{
- "id": 15001,
+ "id": 15470,
"properties": {
"east": "low",
"north": "low",
@@ -90553,7 +94950,7 @@
}
},
{
- "id": 15002,
+ "id": 15471,
"properties": {
"east": "low",
"north": "low",
@@ -90564,7 +94961,7 @@
}
},
{
- "id": 15003,
+ "id": 15472,
"properties": {
"east": "low",
"north": "low",
@@ -90575,7 +94972,7 @@
}
},
{
- "id": 15004,
+ "id": 15473,
"properties": {
"east": "low",
"north": "low",
@@ -90586,7 +94983,7 @@
}
},
{
- "id": 15005,
+ "id": 15474,
"properties": {
"east": "low",
"north": "low",
@@ -90597,7 +94994,7 @@
}
},
{
- "id": 15006,
+ "id": 15475,
"properties": {
"east": "low",
"north": "low",
@@ -90608,7 +95005,7 @@
}
},
{
- "id": 15007,
+ "id": 15476,
"properties": {
"east": "low",
"north": "low",
@@ -90619,7 +95016,7 @@
}
},
{
- "id": 15008,
+ "id": 15477,
"properties": {
"east": "low",
"north": "tall",
@@ -90630,7 +95027,7 @@
}
},
{
- "id": 15009,
+ "id": 15478,
"properties": {
"east": "low",
"north": "tall",
@@ -90641,7 +95038,7 @@
}
},
{
- "id": 15010,
+ "id": 15479,
"properties": {
"east": "low",
"north": "tall",
@@ -90652,7 +95049,7 @@
}
},
{
- "id": 15011,
+ "id": 15480,
"properties": {
"east": "low",
"north": "tall",
@@ -90663,7 +95060,7 @@
}
},
{
- "id": 15012,
+ "id": 15481,
"properties": {
"east": "low",
"north": "tall",
@@ -90674,7 +95071,7 @@
}
},
{
- "id": 15013,
+ "id": 15482,
"properties": {
"east": "low",
"north": "tall",
@@ -90685,7 +95082,7 @@
}
},
{
- "id": 15014,
+ "id": 15483,
"properties": {
"east": "low",
"north": "tall",
@@ -90696,7 +95093,7 @@
}
},
{
- "id": 15015,
+ "id": 15484,
"properties": {
"east": "low",
"north": "tall",
@@ -90707,7 +95104,7 @@
}
},
{
- "id": 15016,
+ "id": 15485,
"properties": {
"east": "low",
"north": "tall",
@@ -90718,7 +95115,7 @@
}
},
{
- "id": 15017,
+ "id": 15486,
"properties": {
"east": "low",
"north": "tall",
@@ -90729,7 +95126,7 @@
}
},
{
- "id": 15018,
+ "id": 15487,
"properties": {
"east": "low",
"north": "tall",
@@ -90740,7 +95137,7 @@
}
},
{
- "id": 15019,
+ "id": 15488,
"properties": {
"east": "low",
"north": "tall",
@@ -90751,7 +95148,7 @@
}
},
{
- "id": 15020,
+ "id": 15489,
"properties": {
"east": "low",
"north": "tall",
@@ -90762,7 +95159,7 @@
}
},
{
- "id": 15021,
+ "id": 15490,
"properties": {
"east": "low",
"north": "tall",
@@ -90773,7 +95170,7 @@
}
},
{
- "id": 15022,
+ "id": 15491,
"properties": {
"east": "low",
"north": "tall",
@@ -90784,7 +95181,7 @@
}
},
{
- "id": 15023,
+ "id": 15492,
"properties": {
"east": "low",
"north": "tall",
@@ -90795,7 +95192,7 @@
}
},
{
- "id": 15024,
+ "id": 15493,
"properties": {
"east": "low",
"north": "tall",
@@ -90806,7 +95203,7 @@
}
},
{
- "id": 15025,
+ "id": 15494,
"properties": {
"east": "low",
"north": "tall",
@@ -90817,7 +95214,7 @@
}
},
{
- "id": 15026,
+ "id": 15495,
"properties": {
"east": "low",
"north": "tall",
@@ -90828,7 +95225,7 @@
}
},
{
- "id": 15027,
+ "id": 15496,
"properties": {
"east": "low",
"north": "tall",
@@ -90839,7 +95236,7 @@
}
},
{
- "id": 15028,
+ "id": 15497,
"properties": {
"east": "low",
"north": "tall",
@@ -90850,7 +95247,7 @@
}
},
{
- "id": 15029,
+ "id": 15498,
"properties": {
"east": "low",
"north": "tall",
@@ -90861,7 +95258,7 @@
}
},
{
- "id": 15030,
+ "id": 15499,
"properties": {
"east": "low",
"north": "tall",
@@ -90872,7 +95269,7 @@
}
},
{
- "id": 15031,
+ "id": 15500,
"properties": {
"east": "low",
"north": "tall",
@@ -90883,7 +95280,7 @@
}
},
{
- "id": 15032,
+ "id": 15501,
"properties": {
"east": "low",
"north": "tall",
@@ -90894,7 +95291,7 @@
}
},
{
- "id": 15033,
+ "id": 15502,
"properties": {
"east": "low",
"north": "tall",
@@ -90905,7 +95302,7 @@
}
},
{
- "id": 15034,
+ "id": 15503,
"properties": {
"east": "low",
"north": "tall",
@@ -90916,7 +95313,7 @@
}
},
{
- "id": 15035,
+ "id": 15504,
"properties": {
"east": "low",
"north": "tall",
@@ -90927,7 +95324,7 @@
}
},
{
- "id": 15036,
+ "id": 15505,
"properties": {
"east": "low",
"north": "tall",
@@ -90938,7 +95335,7 @@
}
},
{
- "id": 15037,
+ "id": 15506,
"properties": {
"east": "low",
"north": "tall",
@@ -90949,7 +95346,7 @@
}
},
{
- "id": 15038,
+ "id": 15507,
"properties": {
"east": "low",
"north": "tall",
@@ -90960,7 +95357,7 @@
}
},
{
- "id": 15039,
+ "id": 15508,
"properties": {
"east": "low",
"north": "tall",
@@ -90971,7 +95368,7 @@
}
},
{
- "id": 15040,
+ "id": 15509,
"properties": {
"east": "low",
"north": "tall",
@@ -90982,7 +95379,7 @@
}
},
{
- "id": 15041,
+ "id": 15510,
"properties": {
"east": "low",
"north": "tall",
@@ -90993,7 +95390,7 @@
}
},
{
- "id": 15042,
+ "id": 15511,
"properties": {
"east": "low",
"north": "tall",
@@ -91004,7 +95401,7 @@
}
},
{
- "id": 15043,
+ "id": 15512,
"properties": {
"east": "low",
"north": "tall",
@@ -91015,7 +95412,7 @@
}
},
{
- "id": 15044,
+ "id": 15513,
"properties": {
"east": "tall",
"north": "none",
@@ -91026,7 +95423,7 @@
}
},
{
- "id": 15045,
+ "id": 15514,
"properties": {
"east": "tall",
"north": "none",
@@ -91037,7 +95434,7 @@
}
},
{
- "id": 15046,
+ "id": 15515,
"properties": {
"east": "tall",
"north": "none",
@@ -91048,7 +95445,7 @@
}
},
{
- "id": 15047,
+ "id": 15516,
"properties": {
"east": "tall",
"north": "none",
@@ -91059,7 +95456,7 @@
}
},
{
- "id": 15048,
+ "id": 15517,
"properties": {
"east": "tall",
"north": "none",
@@ -91070,7 +95467,7 @@
}
},
{
- "id": 15049,
+ "id": 15518,
"properties": {
"east": "tall",
"north": "none",
@@ -91081,7 +95478,7 @@
}
},
{
- "id": 15050,
+ "id": 15519,
"properties": {
"east": "tall",
"north": "none",
@@ -91092,7 +95489,7 @@
}
},
{
- "id": 15051,
+ "id": 15520,
"properties": {
"east": "tall",
"north": "none",
@@ -91103,7 +95500,7 @@
}
},
{
- "id": 15052,
+ "id": 15521,
"properties": {
"east": "tall",
"north": "none",
@@ -91114,7 +95511,7 @@
}
},
{
- "id": 15053,
+ "id": 15522,
"properties": {
"east": "tall",
"north": "none",
@@ -91125,7 +95522,7 @@
}
},
{
- "id": 15054,
+ "id": 15523,
"properties": {
"east": "tall",
"north": "none",
@@ -91136,7 +95533,7 @@
}
},
{
- "id": 15055,
+ "id": 15524,
"properties": {
"east": "tall",
"north": "none",
@@ -91147,7 +95544,7 @@
}
},
{
- "id": 15056,
+ "id": 15525,
"properties": {
"east": "tall",
"north": "none",
@@ -91158,7 +95555,7 @@
}
},
{
- "id": 15057,
+ "id": 15526,
"properties": {
"east": "tall",
"north": "none",
@@ -91169,7 +95566,7 @@
}
},
{
- "id": 15058,
+ "id": 15527,
"properties": {
"east": "tall",
"north": "none",
@@ -91180,7 +95577,7 @@
}
},
{
- "id": 15059,
+ "id": 15528,
"properties": {
"east": "tall",
"north": "none",
@@ -91191,7 +95588,7 @@
}
},
{
- "id": 15060,
+ "id": 15529,
"properties": {
"east": "tall",
"north": "none",
@@ -91202,7 +95599,7 @@
}
},
{
- "id": 15061,
+ "id": 15530,
"properties": {
"east": "tall",
"north": "none",
@@ -91213,7 +95610,7 @@
}
},
{
- "id": 15062,
+ "id": 15531,
"properties": {
"east": "tall",
"north": "none",
@@ -91224,7 +95621,7 @@
}
},
{
- "id": 15063,
+ "id": 15532,
"properties": {
"east": "tall",
"north": "none",
@@ -91235,7 +95632,7 @@
}
},
{
- "id": 15064,
+ "id": 15533,
"properties": {
"east": "tall",
"north": "none",
@@ -91246,7 +95643,7 @@
}
},
{
- "id": 15065,
+ "id": 15534,
"properties": {
"east": "tall",
"north": "none",
@@ -91257,7 +95654,7 @@
}
},
{
- "id": 15066,
+ "id": 15535,
"properties": {
"east": "tall",
"north": "none",
@@ -91268,7 +95665,7 @@
}
},
{
- "id": 15067,
+ "id": 15536,
"properties": {
"east": "tall",
"north": "none",
@@ -91279,7 +95676,7 @@
}
},
{
- "id": 15068,
+ "id": 15537,
"properties": {
"east": "tall",
"north": "none",
@@ -91290,7 +95687,7 @@
}
},
{
- "id": 15069,
+ "id": 15538,
"properties": {
"east": "tall",
"north": "none",
@@ -91301,7 +95698,7 @@
}
},
{
- "id": 15070,
+ "id": 15539,
"properties": {
"east": "tall",
"north": "none",
@@ -91312,7 +95709,7 @@
}
},
{
- "id": 15071,
+ "id": 15540,
"properties": {
"east": "tall",
"north": "none",
@@ -91323,7 +95720,7 @@
}
},
{
- "id": 15072,
+ "id": 15541,
"properties": {
"east": "tall",
"north": "none",
@@ -91334,7 +95731,7 @@
}
},
{
- "id": 15073,
+ "id": 15542,
"properties": {
"east": "tall",
"north": "none",
@@ -91345,7 +95742,7 @@
}
},
{
- "id": 15074,
+ "id": 15543,
"properties": {
"east": "tall",
"north": "none",
@@ -91356,7 +95753,7 @@
}
},
{
- "id": 15075,
+ "id": 15544,
"properties": {
"east": "tall",
"north": "none",
@@ -91367,7 +95764,7 @@
}
},
{
- "id": 15076,
+ "id": 15545,
"properties": {
"east": "tall",
"north": "none",
@@ -91378,7 +95775,7 @@
}
},
{
- "id": 15077,
+ "id": 15546,
"properties": {
"east": "tall",
"north": "none",
@@ -91389,7 +95786,7 @@
}
},
{
- "id": 15078,
+ "id": 15547,
"properties": {
"east": "tall",
"north": "none",
@@ -91400,7 +95797,7 @@
}
},
{
- "id": 15079,
+ "id": 15548,
"properties": {
"east": "tall",
"north": "none",
@@ -91411,7 +95808,7 @@
}
},
{
- "id": 15080,
+ "id": 15549,
"properties": {
"east": "tall",
"north": "low",
@@ -91422,7 +95819,7 @@
}
},
{
- "id": 15081,
+ "id": 15550,
"properties": {
"east": "tall",
"north": "low",
@@ -91433,7 +95830,7 @@
}
},
{
- "id": 15082,
+ "id": 15551,
"properties": {
"east": "tall",
"north": "low",
@@ -91444,7 +95841,7 @@
}
},
{
- "id": 15083,
+ "id": 15552,
"properties": {
"east": "tall",
"north": "low",
@@ -91455,7 +95852,7 @@
}
},
{
- "id": 15084,
+ "id": 15553,
"properties": {
"east": "tall",
"north": "low",
@@ -91466,7 +95863,7 @@
}
},
{
- "id": 15085,
+ "id": 15554,
"properties": {
"east": "tall",
"north": "low",
@@ -91477,7 +95874,7 @@
}
},
{
- "id": 15086,
+ "id": 15555,
"properties": {
"east": "tall",
"north": "low",
@@ -91488,7 +95885,7 @@
}
},
{
- "id": 15087,
+ "id": 15556,
"properties": {
"east": "tall",
"north": "low",
@@ -91499,7 +95896,7 @@
}
},
{
- "id": 15088,
+ "id": 15557,
"properties": {
"east": "tall",
"north": "low",
@@ -91510,7 +95907,7 @@
}
},
{
- "id": 15089,
+ "id": 15558,
"properties": {
"east": "tall",
"north": "low",
@@ -91521,7 +95918,7 @@
}
},
{
- "id": 15090,
+ "id": 15559,
"properties": {
"east": "tall",
"north": "low",
@@ -91532,7 +95929,7 @@
}
},
{
- "id": 15091,
+ "id": 15560,
"properties": {
"east": "tall",
"north": "low",
@@ -91543,7 +95940,7 @@
}
},
{
- "id": 15092,
+ "id": 15561,
"properties": {
"east": "tall",
"north": "low",
@@ -91554,7 +95951,7 @@
}
},
{
- "id": 15093,
+ "id": 15562,
"properties": {
"east": "tall",
"north": "low",
@@ -91565,7 +95962,7 @@
}
},
{
- "id": 15094,
+ "id": 15563,
"properties": {
"east": "tall",
"north": "low",
@@ -91576,7 +95973,7 @@
}
},
{
- "id": 15095,
+ "id": 15564,
"properties": {
"east": "tall",
"north": "low",
@@ -91587,7 +95984,7 @@
}
},
{
- "id": 15096,
+ "id": 15565,
"properties": {
"east": "tall",
"north": "low",
@@ -91598,7 +95995,7 @@
}
},
{
- "id": 15097,
+ "id": 15566,
"properties": {
"east": "tall",
"north": "low",
@@ -91609,7 +96006,7 @@
}
},
{
- "id": 15098,
+ "id": 15567,
"properties": {
"east": "tall",
"north": "low",
@@ -91620,7 +96017,7 @@
}
},
{
- "id": 15099,
+ "id": 15568,
"properties": {
"east": "tall",
"north": "low",
@@ -91631,7 +96028,7 @@
}
},
{
- "id": 15100,
+ "id": 15569,
"properties": {
"east": "tall",
"north": "low",
@@ -91642,7 +96039,7 @@
}
},
{
- "id": 15101,
+ "id": 15570,
"properties": {
"east": "tall",
"north": "low",
@@ -91653,7 +96050,7 @@
}
},
{
- "id": 15102,
+ "id": 15571,
"properties": {
"east": "tall",
"north": "low",
@@ -91664,7 +96061,7 @@
}
},
{
- "id": 15103,
+ "id": 15572,
"properties": {
"east": "tall",
"north": "low",
@@ -91675,7 +96072,7 @@
}
},
{
- "id": 15104,
+ "id": 15573,
"properties": {
"east": "tall",
"north": "low",
@@ -91686,7 +96083,7 @@
}
},
{
- "id": 15105,
+ "id": 15574,
"properties": {
"east": "tall",
"north": "low",
@@ -91697,7 +96094,7 @@
}
},
{
- "id": 15106,
+ "id": 15575,
"properties": {
"east": "tall",
"north": "low",
@@ -91708,7 +96105,7 @@
}
},
{
- "id": 15107,
+ "id": 15576,
"properties": {
"east": "tall",
"north": "low",
@@ -91719,7 +96116,7 @@
}
},
{
- "id": 15108,
+ "id": 15577,
"properties": {
"east": "tall",
"north": "low",
@@ -91730,7 +96127,7 @@
}
},
{
- "id": 15109,
+ "id": 15578,
"properties": {
"east": "tall",
"north": "low",
@@ -91741,7 +96138,7 @@
}
},
{
- "id": 15110,
+ "id": 15579,
"properties": {
"east": "tall",
"north": "low",
@@ -91752,7 +96149,7 @@
}
},
{
- "id": 15111,
+ "id": 15580,
"properties": {
"east": "tall",
"north": "low",
@@ -91763,7 +96160,7 @@
}
},
{
- "id": 15112,
+ "id": 15581,
"properties": {
"east": "tall",
"north": "low",
@@ -91774,7 +96171,7 @@
}
},
{
- "id": 15113,
+ "id": 15582,
"properties": {
"east": "tall",
"north": "low",
@@ -91785,7 +96182,7 @@
}
},
{
- "id": 15114,
+ "id": 15583,
"properties": {
"east": "tall",
"north": "low",
@@ -91796,7 +96193,7 @@
}
},
{
- "id": 15115,
+ "id": 15584,
"properties": {
"east": "tall",
"north": "low",
@@ -91807,7 +96204,7 @@
}
},
{
- "id": 15116,
+ "id": 15585,
"properties": {
"east": "tall",
"north": "tall",
@@ -91818,7 +96215,7 @@
}
},
{
- "id": 15117,
+ "id": 15586,
"properties": {
"east": "tall",
"north": "tall",
@@ -91829,7 +96226,7 @@
}
},
{
- "id": 15118,
+ "id": 15587,
"properties": {
"east": "tall",
"north": "tall",
@@ -91840,7 +96237,7 @@
}
},
{
- "id": 15119,
+ "id": 15588,
"properties": {
"east": "tall",
"north": "tall",
@@ -91851,7 +96248,7 @@
}
},
{
- "id": 15120,
+ "id": 15589,
"properties": {
"east": "tall",
"north": "tall",
@@ -91862,7 +96259,7 @@
}
},
{
- "id": 15121,
+ "id": 15590,
"properties": {
"east": "tall",
"north": "tall",
@@ -91873,7 +96270,7 @@
}
},
{
- "id": 15122,
+ "id": 15591,
"properties": {
"east": "tall",
"north": "tall",
@@ -91884,7 +96281,7 @@
}
},
{
- "id": 15123,
+ "id": 15592,
"properties": {
"east": "tall",
"north": "tall",
@@ -91895,7 +96292,7 @@
}
},
{
- "id": 15124,
+ "id": 15593,
"properties": {
"east": "tall",
"north": "tall",
@@ -91906,7 +96303,7 @@
}
},
{
- "id": 15125,
+ "id": 15594,
"properties": {
"east": "tall",
"north": "tall",
@@ -91917,7 +96314,7 @@
}
},
{
- "id": 15126,
+ "id": 15595,
"properties": {
"east": "tall",
"north": "tall",
@@ -91928,7 +96325,7 @@
}
},
{
- "id": 15127,
+ "id": 15596,
"properties": {
"east": "tall",
"north": "tall",
@@ -91939,7 +96336,7 @@
}
},
{
- "id": 15128,
+ "id": 15597,
"properties": {
"east": "tall",
"north": "tall",
@@ -91950,7 +96347,7 @@
}
},
{
- "id": 15129,
+ "id": 15598,
"properties": {
"east": "tall",
"north": "tall",
@@ -91961,7 +96358,7 @@
}
},
{
- "id": 15130,
+ "id": 15599,
"properties": {
"east": "tall",
"north": "tall",
@@ -91972,7 +96369,7 @@
}
},
{
- "id": 15131,
+ "id": 15600,
"properties": {
"east": "tall",
"north": "tall",
@@ -91983,7 +96380,7 @@
}
},
{
- "id": 15132,
+ "id": 15601,
"properties": {
"east": "tall",
"north": "tall",
@@ -91994,7 +96391,7 @@
}
},
{
- "id": 15133,
+ "id": 15602,
"properties": {
"east": "tall",
"north": "tall",
@@ -92005,7 +96402,7 @@
}
},
{
- "id": 15134,
+ "id": 15603,
"properties": {
"east": "tall",
"north": "tall",
@@ -92016,7 +96413,7 @@
}
},
{
- "id": 15135,
+ "id": 15604,
"properties": {
"east": "tall",
"north": "tall",
@@ -92027,7 +96424,7 @@
}
},
{
- "id": 15136,
+ "id": 15605,
"properties": {
"east": "tall",
"north": "tall",
@@ -92038,7 +96435,7 @@
}
},
{
- "id": 15137,
+ "id": 15606,
"properties": {
"east": "tall",
"north": "tall",
@@ -92049,7 +96446,7 @@
}
},
{
- "id": 15138,
+ "id": 15607,
"properties": {
"east": "tall",
"north": "tall",
@@ -92060,7 +96457,7 @@
}
},
{
- "id": 15139,
+ "id": 15608,
"properties": {
"east": "tall",
"north": "tall",
@@ -92071,7 +96468,7 @@
}
},
{
- "id": 15140,
+ "id": 15609,
"properties": {
"east": "tall",
"north": "tall",
@@ -92082,7 +96479,7 @@
}
},
{
- "id": 15141,
+ "id": 15610,
"properties": {
"east": "tall",
"north": "tall",
@@ -92093,7 +96490,7 @@
}
},
{
- "id": 15142,
+ "id": 15611,
"properties": {
"east": "tall",
"north": "tall",
@@ -92104,7 +96501,7 @@
}
},
{
- "id": 15143,
+ "id": 15612,
"properties": {
"east": "tall",
"north": "tall",
@@ -92115,7 +96512,7 @@
}
},
{
- "id": 15144,
+ "id": 15613,
"properties": {
"east": "tall",
"north": "tall",
@@ -92126,7 +96523,7 @@
}
},
{
- "id": 15145,
+ "id": 15614,
"properties": {
"east": "tall",
"north": "tall",
@@ -92137,7 +96534,7 @@
}
},
{
- "id": 15146,
+ "id": 15615,
"properties": {
"east": "tall",
"north": "tall",
@@ -92148,7 +96545,7 @@
}
},
{
- "id": 15147,
+ "id": 15616,
"properties": {
"east": "tall",
"north": "tall",
@@ -92159,7 +96556,7 @@
}
},
{
- "id": 15148,
+ "id": 15617,
"properties": {
"east": "tall",
"north": "tall",
@@ -92170,7 +96567,7 @@
}
},
{
- "id": 15149,
+ "id": 15618,
"properties": {
"east": "tall",
"north": "tall",
@@ -92181,7 +96578,7 @@
}
},
{
- "id": 15150,
+ "id": 15619,
"properties": {
"east": "tall",
"north": "tall",
@@ -92192,7 +96589,7 @@
}
},
{
- "id": 15151,
+ "id": 15620,
"properties": {
"east": "tall",
"north": "tall",
@@ -92208,7 +96605,7 @@
"states": [
{
"default": true,
- "id": 1954
+ "id": 2001
}
]
},
@@ -92239,7 +96636,7 @@
"states": [
{
"default": true,
- "id": 111
+ "id": 118
}
]
},
@@ -92267,97 +96664,97 @@
"states": [
{
"default": true,
- "id": 10394,
+ "id": 10726,
"properties": {
"rotation": "0"
}
},
{
- "id": 10395,
+ "id": 10727,
"properties": {
"rotation": "1"
}
},
{
- "id": 10396,
+ "id": 10728,
"properties": {
"rotation": "2"
}
},
{
- "id": 10397,
+ "id": 10729,
"properties": {
"rotation": "3"
}
},
{
- "id": 10398,
+ "id": 10730,
"properties": {
"rotation": "4"
}
},
{
- "id": 10399,
+ "id": 10731,
"properties": {
"rotation": "5"
}
},
{
- "id": 10400,
+ "id": 10732,
"properties": {
"rotation": "6"
}
},
{
- "id": 10401,
+ "id": 10733,
"properties": {
"rotation": "7"
}
},
{
- "id": 10402,
+ "id": 10734,
"properties": {
"rotation": "8"
}
},
{
- "id": 10403,
+ "id": 10735,
"properties": {
"rotation": "9"
}
},
{
- "id": 10404,
+ "id": 10736,
"properties": {
"rotation": "10"
}
},
{
- "id": 10405,
+ "id": 10737,
"properties": {
"rotation": "11"
}
},
{
- "id": 10406,
+ "id": 10738,
"properties": {
"rotation": "12"
}
},
{
- "id": 10407,
+ "id": 10739,
"properties": {
"rotation": "13"
}
},
{
- "id": 10408,
+ "id": 10740,
"properties": {
"rotation": "14"
}
},
{
- "id": 10409,
+ "id": 10741,
"properties": {
"rotation": "15"
}
@@ -92383,7 +96780,7 @@
},
"states": [
{
- "id": 1749,
+ "id": 1796,
"properties": {
"facing": "north",
"occupied": "true",
@@ -92391,7 +96788,7 @@
}
},
{
- "id": 1750,
+ "id": 1797,
"properties": {
"facing": "north",
"occupied": "true",
@@ -92399,7 +96796,7 @@
}
},
{
- "id": 1751,
+ "id": 1798,
"properties": {
"facing": "north",
"occupied": "false",
@@ -92408,7 +96805,7 @@
},
{
"default": true,
- "id": 1752,
+ "id": 1799,
"properties": {
"facing": "north",
"occupied": "false",
@@ -92416,7 +96813,7 @@
}
},
{
- "id": 1753,
+ "id": 1800,
"properties": {
"facing": "south",
"occupied": "true",
@@ -92424,7 +96821,7 @@
}
},
{
- "id": 1754,
+ "id": 1801,
"properties": {
"facing": "south",
"occupied": "true",
@@ -92432,7 +96829,7 @@
}
},
{
- "id": 1755,
+ "id": 1802,
"properties": {
"facing": "south",
"occupied": "false",
@@ -92440,7 +96837,7 @@
}
},
{
- "id": 1756,
+ "id": 1803,
"properties": {
"facing": "south",
"occupied": "false",
@@ -92448,7 +96845,7 @@
}
},
{
- "id": 1757,
+ "id": 1804,
"properties": {
"facing": "west",
"occupied": "true",
@@ -92456,7 +96853,7 @@
}
},
{
- "id": 1758,
+ "id": 1805,
"properties": {
"facing": "west",
"occupied": "true",
@@ -92464,7 +96861,7 @@
}
},
{
- "id": 1759,
+ "id": 1806,
"properties": {
"facing": "west",
"occupied": "false",
@@ -92472,7 +96869,7 @@
}
},
{
- "id": 1760,
+ "id": 1807,
"properties": {
"facing": "west",
"occupied": "false",
@@ -92480,7 +96877,7 @@
}
},
{
- "id": 1761,
+ "id": 1808,
"properties": {
"facing": "east",
"occupied": "true",
@@ -92488,7 +96885,7 @@
}
},
{
- "id": 1762,
+ "id": 1809,
"properties": {
"facing": "east",
"occupied": "true",
@@ -92496,7 +96893,7 @@
}
},
{
- "id": 1763,
+ "id": 1810,
"properties": {
"facing": "east",
"occupied": "false",
@@ -92504,7 +96901,7 @@
}
},
{
- "id": 1764,
+ "id": 1811,
"properties": {
"facing": "east",
"occupied": "false",
@@ -92532,7 +96929,7 @@
},
"states": [
{
- "id": 20225,
+ "id": 20694,
"properties": {
"candles": "1",
"lit": "true",
@@ -92540,7 +96937,7 @@
}
},
{
- "id": 20226,
+ "id": 20695,
"properties": {
"candles": "1",
"lit": "true",
@@ -92548,7 +96945,7 @@
}
},
{
- "id": 20227,
+ "id": 20696,
"properties": {
"candles": "1",
"lit": "false",
@@ -92557,7 +96954,7 @@
},
{
"default": true,
- "id": 20228,
+ "id": 20697,
"properties": {
"candles": "1",
"lit": "false",
@@ -92565,7 +96962,7 @@
}
},
{
- "id": 20229,
+ "id": 20698,
"properties": {
"candles": "2",
"lit": "true",
@@ -92573,7 +96970,7 @@
}
},
{
- "id": 20230,
+ "id": 20699,
"properties": {
"candles": "2",
"lit": "true",
@@ -92581,7 +96978,7 @@
}
},
{
- "id": 20231,
+ "id": 20700,
"properties": {
"candles": "2",
"lit": "false",
@@ -92589,7 +96986,7 @@
}
},
{
- "id": 20232,
+ "id": 20701,
"properties": {
"candles": "2",
"lit": "false",
@@ -92597,7 +96994,7 @@
}
},
{
- "id": 20233,
+ "id": 20702,
"properties": {
"candles": "3",
"lit": "true",
@@ -92605,7 +97002,7 @@
}
},
{
- "id": 20234,
+ "id": 20703,
"properties": {
"candles": "3",
"lit": "true",
@@ -92613,7 +97010,7 @@
}
},
{
- "id": 20235,
+ "id": 20704,
"properties": {
"candles": "3",
"lit": "false",
@@ -92621,7 +97018,7 @@
}
},
{
- "id": 20236,
+ "id": 20705,
"properties": {
"candles": "3",
"lit": "false",
@@ -92629,7 +97026,7 @@
}
},
{
- "id": 20237,
+ "id": 20706,
"properties": {
"candles": "4",
"lit": "true",
@@ -92637,7 +97034,7 @@
}
},
{
- "id": 20238,
+ "id": 20707,
"properties": {
"candles": "4",
"lit": "true",
@@ -92645,7 +97042,7 @@
}
},
{
- "id": 20239,
+ "id": 20708,
"properties": {
"candles": "4",
"lit": "false",
@@ -92653,7 +97050,7 @@
}
},
{
- "id": 20240,
+ "id": 20709,
"properties": {
"candles": "4",
"lit": "false",
@@ -92671,14 +97068,14 @@
},
"states": [
{
- "id": 20385,
+ "id": 20854,
"properties": {
"lit": "true"
}
},
{
"default": true,
- "id": 20386,
+ "id": 20855,
"properties": {
"lit": "false"
}
@@ -92689,7 +97086,7 @@
"states": [
{
"default": true,
- "id": 10258
+ "id": 10590
}
]
},
@@ -92697,7 +97094,7 @@
"states": [
{
"default": true,
- "id": 12110
+ "id": 12579
}
]
},
@@ -92705,7 +97102,7 @@
"states": [
{
"default": true,
- "id": 12126
+ "id": 12595
}
]
},
@@ -92721,25 +97118,25 @@
"states": [
{
"default": true,
- "id": 12067,
+ "id": 12536,
"properties": {
"facing": "north"
}
},
{
- "id": 12068,
+ "id": 12537,
"properties": {
"facing": "south"
}
},
{
- "id": 12069,
+ "id": 12538,
"properties": {
"facing": "west"
}
},
{
- "id": 12070,
+ "id": 12539,
"properties": {
"facing": "east"
}
@@ -92759,38 +97156,38 @@
},
"states": [
{
- "id": 11985,
+ "id": 12454,
"properties": {
"facing": "north"
}
},
{
- "id": 11986,
+ "id": 12455,
"properties": {
"facing": "east"
}
},
{
- "id": 11987,
+ "id": 12456,
"properties": {
"facing": "south"
}
},
{
- "id": 11988,
+ "id": 12457,
"properties": {
"facing": "west"
}
},
{
"default": true,
- "id": 11989,
+ "id": 12458,
"properties": {
"facing": "up"
}
},
{
- "id": 11990,
+ "id": 12459,
"properties": {
"facing": "down"
}
@@ -92801,7 +97198,7 @@
"states": [
{
"default": true,
- "id": 5787
+ "id": 5949
}
]
},
@@ -92830,7 +97227,7 @@
},
"states": [
{
- "id": 9200,
+ "id": 9452,
"properties": {
"east": "true",
"north": "true",
@@ -92840,7 +97237,7 @@
}
},
{
- "id": 9201,
+ "id": 9453,
"properties": {
"east": "true",
"north": "true",
@@ -92850,7 +97247,7 @@
}
},
{
- "id": 9202,
+ "id": 9454,
"properties": {
"east": "true",
"north": "true",
@@ -92860,7 +97257,7 @@
}
},
{
- "id": 9203,
+ "id": 9455,
"properties": {
"east": "true",
"north": "true",
@@ -92870,7 +97267,7 @@
}
},
{
- "id": 9204,
+ "id": 9456,
"properties": {
"east": "true",
"north": "true",
@@ -92880,7 +97277,7 @@
}
},
{
- "id": 9205,
+ "id": 9457,
"properties": {
"east": "true",
"north": "true",
@@ -92890,7 +97287,7 @@
}
},
{
- "id": 9206,
+ "id": 9458,
"properties": {
"east": "true",
"north": "true",
@@ -92900,7 +97297,7 @@
}
},
{
- "id": 9207,
+ "id": 9459,
"properties": {
"east": "true",
"north": "true",
@@ -92910,7 +97307,7 @@
}
},
{
- "id": 9208,
+ "id": 9460,
"properties": {
"east": "true",
"north": "false",
@@ -92920,7 +97317,7 @@
}
},
{
- "id": 9209,
+ "id": 9461,
"properties": {
"east": "true",
"north": "false",
@@ -92930,7 +97327,7 @@
}
},
{
- "id": 9210,
+ "id": 9462,
"properties": {
"east": "true",
"north": "false",
@@ -92940,7 +97337,7 @@
}
},
{
- "id": 9211,
+ "id": 9463,
"properties": {
"east": "true",
"north": "false",
@@ -92950,7 +97347,7 @@
}
},
{
- "id": 9212,
+ "id": 9464,
"properties": {
"east": "true",
"north": "false",
@@ -92960,7 +97357,7 @@
}
},
{
- "id": 9213,
+ "id": 9465,
"properties": {
"east": "true",
"north": "false",
@@ -92970,7 +97367,7 @@
}
},
{
- "id": 9214,
+ "id": 9466,
"properties": {
"east": "true",
"north": "false",
@@ -92980,7 +97377,7 @@
}
},
{
- "id": 9215,
+ "id": 9467,
"properties": {
"east": "true",
"north": "false",
@@ -92990,7 +97387,7 @@
}
},
{
- "id": 9216,
+ "id": 9468,
"properties": {
"east": "false",
"north": "true",
@@ -93000,7 +97397,7 @@
}
},
{
- "id": 9217,
+ "id": 9469,
"properties": {
"east": "false",
"north": "true",
@@ -93010,7 +97407,7 @@
}
},
{
- "id": 9218,
+ "id": 9470,
"properties": {
"east": "false",
"north": "true",
@@ -93020,7 +97417,7 @@
}
},
{
- "id": 9219,
+ "id": 9471,
"properties": {
"east": "false",
"north": "true",
@@ -93030,7 +97427,7 @@
}
},
{
- "id": 9220,
+ "id": 9472,
"properties": {
"east": "false",
"north": "true",
@@ -93040,7 +97437,7 @@
}
},
{
- "id": 9221,
+ "id": 9473,
"properties": {
"east": "false",
"north": "true",
@@ -93050,7 +97447,7 @@
}
},
{
- "id": 9222,
+ "id": 9474,
"properties": {
"east": "false",
"north": "true",
@@ -93060,7 +97457,7 @@
}
},
{
- "id": 9223,
+ "id": 9475,
"properties": {
"east": "false",
"north": "true",
@@ -93070,7 +97467,7 @@
}
},
{
- "id": 9224,
+ "id": 9476,
"properties": {
"east": "false",
"north": "false",
@@ -93080,7 +97477,7 @@
}
},
{
- "id": 9225,
+ "id": 9477,
"properties": {
"east": "false",
"north": "false",
@@ -93090,7 +97487,7 @@
}
},
{
- "id": 9226,
+ "id": 9478,
"properties": {
"east": "false",
"north": "false",
@@ -93100,7 +97497,7 @@
}
},
{
- "id": 9227,
+ "id": 9479,
"properties": {
"east": "false",
"north": "false",
@@ -93110,7 +97507,7 @@
}
},
{
- "id": 9228,
+ "id": 9480,
"properties": {
"east": "false",
"north": "false",
@@ -93120,7 +97517,7 @@
}
},
{
- "id": 9229,
+ "id": 9481,
"properties": {
"east": "false",
"north": "false",
@@ -93130,7 +97527,7 @@
}
},
{
- "id": 9230,
+ "id": 9482,
"properties": {
"east": "false",
"north": "false",
@@ -93141,7 +97538,7 @@
},
{
"default": true,
- "id": 9231,
+ "id": 9483,
"properties": {
"east": "false",
"north": "false",
@@ -93156,7 +97553,7 @@
"states": [
{
"default": true,
- "id": 8967
+ "id": 9219
}
]
},
@@ -93172,25 +97569,25 @@
"states": [
{
"default": true,
- "id": 10566,
+ "id": 10898,
"properties": {
"facing": "north"
}
},
{
- "id": 10567,
+ "id": 10899,
"properties": {
"facing": "south"
}
},
{
- "id": 10568,
+ "id": 10900,
"properties": {
"facing": "west"
}
},
{
- "id": 10569,
+ "id": 10901,
"properties": {
"facing": "east"
}
@@ -93201,7 +97598,7 @@
"states": [
{
"default": true,
- "id": 2003
+ "id": 2050
}
]
},
@@ -93229,97 +97626,97 @@
"states": [
{
"default": true,
- "id": 10490,
+ "id": 10822,
"properties": {
"rotation": "0"
}
},
{
- "id": 10491,
+ "id": 10823,
"properties": {
"rotation": "1"
}
},
{
- "id": 10492,
+ "id": 10824,
"properties": {
"rotation": "2"
}
},
{
- "id": 10493,
+ "id": 10825,
"properties": {
"rotation": "3"
}
},
{
- "id": 10494,
+ "id": 10826,
"properties": {
"rotation": "4"
}
},
{
- "id": 10495,
+ "id": 10827,
"properties": {
"rotation": "5"
}
},
{
- "id": 10496,
+ "id": 10828,
"properties": {
"rotation": "6"
}
},
{
- "id": 10497,
+ "id": 10829,
"properties": {
"rotation": "7"
}
},
{
- "id": 10498,
+ "id": 10830,
"properties": {
"rotation": "8"
}
},
{
- "id": 10499,
+ "id": 10831,
"properties": {
"rotation": "9"
}
},
{
- "id": 10500,
+ "id": 10832,
"properties": {
"rotation": "10"
}
},
{
- "id": 10501,
+ "id": 10833,
"properties": {
"rotation": "11"
}
},
{
- "id": 10502,
+ "id": 10834,
"properties": {
"rotation": "12"
}
},
{
- "id": 10503,
+ "id": 10835,
"properties": {
"rotation": "13"
}
},
{
- "id": 10504,
+ "id": 10836,
"properties": {
"rotation": "14"
}
},
{
- "id": 10505,
+ "id": 10837,
"properties": {
"rotation": "15"
}
@@ -93345,7 +97742,7 @@
},
"states": [
{
- "id": 1845,
+ "id": 1892,
"properties": {
"facing": "north",
"occupied": "true",
@@ -93353,7 +97750,7 @@
}
},
{
- "id": 1846,
+ "id": 1893,
"properties": {
"facing": "north",
"occupied": "true",
@@ -93361,7 +97758,7 @@
}
},
{
- "id": 1847,
+ "id": 1894,
"properties": {
"facing": "north",
"occupied": "false",
@@ -93370,7 +97767,7 @@
},
{
"default": true,
- "id": 1848,
+ "id": 1895,
"properties": {
"facing": "north",
"occupied": "false",
@@ -93378,7 +97775,7 @@
}
},
{
- "id": 1849,
+ "id": 1896,
"properties": {
"facing": "south",
"occupied": "true",
@@ -93386,7 +97783,7 @@
}
},
{
- "id": 1850,
+ "id": 1897,
"properties": {
"facing": "south",
"occupied": "true",
@@ -93394,7 +97791,7 @@
}
},
{
- "id": 1851,
+ "id": 1898,
"properties": {
"facing": "south",
"occupied": "false",
@@ -93402,7 +97799,7 @@
}
},
{
- "id": 1852,
+ "id": 1899,
"properties": {
"facing": "south",
"occupied": "false",
@@ -93410,7 +97807,7 @@
}
},
{
- "id": 1853,
+ "id": 1900,
"properties": {
"facing": "west",
"occupied": "true",
@@ -93418,7 +97815,7 @@
}
},
{
- "id": 1854,
+ "id": 1901,
"properties": {
"facing": "west",
"occupied": "true",
@@ -93426,7 +97823,7 @@
}
},
{
- "id": 1855,
+ "id": 1902,
"properties": {
"facing": "west",
"occupied": "false",
@@ -93434,7 +97831,7 @@
}
},
{
- "id": 1856,
+ "id": 1903,
"properties": {
"facing": "west",
"occupied": "false",
@@ -93442,7 +97839,7 @@
}
},
{
- "id": 1857,
+ "id": 1904,
"properties": {
"facing": "east",
"occupied": "true",
@@ -93450,7 +97847,7 @@
}
},
{
- "id": 1858,
+ "id": 1905,
"properties": {
"facing": "east",
"occupied": "true",
@@ -93458,7 +97855,7 @@
}
},
{
- "id": 1859,
+ "id": 1906,
"properties": {
"facing": "east",
"occupied": "false",
@@ -93466,7 +97863,7 @@
}
},
{
- "id": 1860,
+ "id": 1907,
"properties": {
"facing": "east",
"occupied": "false",
@@ -93494,7 +97891,7 @@
},
"states": [
{
- "id": 20321,
+ "id": 20790,
"properties": {
"candles": "1",
"lit": "true",
@@ -93502,7 +97899,7 @@
}
},
{
- "id": 20322,
+ "id": 20791,
"properties": {
"candles": "1",
"lit": "true",
@@ -93510,7 +97907,7 @@
}
},
{
- "id": 20323,
+ "id": 20792,
"properties": {
"candles": "1",
"lit": "false",
@@ -93519,7 +97916,7 @@
},
{
"default": true,
- "id": 20324,
+ "id": 20793,
"properties": {
"candles": "1",
"lit": "false",
@@ -93527,7 +97924,7 @@
}
},
{
- "id": 20325,
+ "id": 20794,
"properties": {
"candles": "2",
"lit": "true",
@@ -93535,7 +97932,7 @@
}
},
{
- "id": 20326,
+ "id": 20795,
"properties": {
"candles": "2",
"lit": "true",
@@ -93543,7 +97940,7 @@
}
},
{
- "id": 20327,
+ "id": 20796,
"properties": {
"candles": "2",
"lit": "false",
@@ -93551,7 +97948,7 @@
}
},
{
- "id": 20328,
+ "id": 20797,
"properties": {
"candles": "2",
"lit": "false",
@@ -93559,7 +97956,7 @@
}
},
{
- "id": 20329,
+ "id": 20798,
"properties": {
"candles": "3",
"lit": "true",
@@ -93567,7 +97964,7 @@
}
},
{
- "id": 20330,
+ "id": 20799,
"properties": {
"candles": "3",
"lit": "true",
@@ -93575,7 +97972,7 @@
}
},
{
- "id": 20331,
+ "id": 20800,
"properties": {
"candles": "3",
"lit": "false",
@@ -93583,7 +97980,7 @@
}
},
{
- "id": 20332,
+ "id": 20801,
"properties": {
"candles": "3",
"lit": "false",
@@ -93591,7 +97988,7 @@
}
},
{
- "id": 20333,
+ "id": 20802,
"properties": {
"candles": "4",
"lit": "true",
@@ -93599,7 +97996,7 @@
}
},
{
- "id": 20334,
+ "id": 20803,
"properties": {
"candles": "4",
"lit": "true",
@@ -93607,7 +98004,7 @@
}
},
{
- "id": 20335,
+ "id": 20804,
"properties": {
"candles": "4",
"lit": "false",
@@ -93615,7 +98012,7 @@
}
},
{
- "id": 20336,
+ "id": 20805,
"properties": {
"candles": "4",
"lit": "false",
@@ -93633,14 +98030,14 @@
},
"states": [
{
- "id": 20397,
+ "id": 20866,
"properties": {
"lit": "true"
}
},
{
"default": true,
- "id": 20398,
+ "id": 20867,
"properties": {
"lit": "false"
}
@@ -93651,7 +98048,7 @@
"states": [
{
"default": true,
- "id": 10264
+ "id": 10596
}
]
},
@@ -93659,7 +98056,7 @@
"states": [
{
"default": true,
- "id": 12116
+ "id": 12585
}
]
},
@@ -93667,7 +98064,7 @@
"states": [
{
"default": true,
- "id": 12132
+ "id": 12601
}
]
},
@@ -93683,25 +98080,25 @@
"states": [
{
"default": true,
- "id": 12091,
+ "id": 12560,
"properties": {
"facing": "north"
}
},
{
- "id": 12092,
+ "id": 12561,
"properties": {
"facing": "south"
}
},
{
- "id": 12093,
+ "id": 12562,
"properties": {
"facing": "west"
}
},
{
- "id": 12094,
+ "id": 12563,
"properties": {
"facing": "east"
}
@@ -93721,38 +98118,38 @@
},
"states": [
{
- "id": 12021,
+ "id": 12490,
"properties": {
"facing": "north"
}
},
{
- "id": 12022,
+ "id": 12491,
"properties": {
"facing": "east"
}
},
{
- "id": 12023,
+ "id": 12492,
"properties": {
"facing": "south"
}
},
{
- "id": 12024,
+ "id": 12493,
"properties": {
"facing": "west"
}
},
{
"default": true,
- "id": 12025,
+ "id": 12494,
"properties": {
"facing": "up"
}
},
{
- "id": 12026,
+ "id": 12495,
"properties": {
"facing": "down"
}
@@ -93763,7 +98160,7 @@
"states": [
{
"default": true,
- "id": 5793
+ "id": 5955
}
]
},
@@ -93792,7 +98189,7 @@
},
"states": [
{
- "id": 9392,
+ "id": 9644,
"properties": {
"east": "true",
"north": "true",
@@ -93802,7 +98199,7 @@
}
},
{
- "id": 9393,
+ "id": 9645,
"properties": {
"east": "true",
"north": "true",
@@ -93812,7 +98209,7 @@
}
},
{
- "id": 9394,
+ "id": 9646,
"properties": {
"east": "true",
"north": "true",
@@ -93822,7 +98219,7 @@
}
},
{
- "id": 9395,
+ "id": 9647,
"properties": {
"east": "true",
"north": "true",
@@ -93832,7 +98229,7 @@
}
},
{
- "id": 9396,
+ "id": 9648,
"properties": {
"east": "true",
"north": "true",
@@ -93842,7 +98239,7 @@
}
},
{
- "id": 9397,
+ "id": 9649,
"properties": {
"east": "true",
"north": "true",
@@ -93852,7 +98249,7 @@
}
},
{
- "id": 9398,
+ "id": 9650,
"properties": {
"east": "true",
"north": "true",
@@ -93862,7 +98259,7 @@
}
},
{
- "id": 9399,
+ "id": 9651,
"properties": {
"east": "true",
"north": "true",
@@ -93872,7 +98269,7 @@
}
},
{
- "id": 9400,
+ "id": 9652,
"properties": {
"east": "true",
"north": "false",
@@ -93882,7 +98279,7 @@
}
},
{
- "id": 9401,
+ "id": 9653,
"properties": {
"east": "true",
"north": "false",
@@ -93892,7 +98289,7 @@
}
},
{
- "id": 9402,
+ "id": 9654,
"properties": {
"east": "true",
"north": "false",
@@ -93902,7 +98299,7 @@
}
},
{
- "id": 9403,
+ "id": 9655,
"properties": {
"east": "true",
"north": "false",
@@ -93912,7 +98309,7 @@
}
},
{
- "id": 9404,
+ "id": 9656,
"properties": {
"east": "true",
"north": "false",
@@ -93922,7 +98319,7 @@
}
},
{
- "id": 9405,
+ "id": 9657,
"properties": {
"east": "true",
"north": "false",
@@ -93932,7 +98329,7 @@
}
},
{
- "id": 9406,
+ "id": 9658,
"properties": {
"east": "true",
"north": "false",
@@ -93942,7 +98339,7 @@
}
},
{
- "id": 9407,
+ "id": 9659,
"properties": {
"east": "true",
"north": "false",
@@ -93952,7 +98349,7 @@
}
},
{
- "id": 9408,
+ "id": 9660,
"properties": {
"east": "false",
"north": "true",
@@ -93962,7 +98359,7 @@
}
},
{
- "id": 9409,
+ "id": 9661,
"properties": {
"east": "false",
"north": "true",
@@ -93972,7 +98369,7 @@
}
},
{
- "id": 9410,
+ "id": 9662,
"properties": {
"east": "false",
"north": "true",
@@ -93982,7 +98379,7 @@
}
},
{
- "id": 9411,
+ "id": 9663,
"properties": {
"east": "false",
"north": "true",
@@ -93992,7 +98389,7 @@
}
},
{
- "id": 9412,
+ "id": 9664,
"properties": {
"east": "false",
"north": "true",
@@ -94002,7 +98399,7 @@
}
},
{
- "id": 9413,
+ "id": 9665,
"properties": {
"east": "false",
"north": "true",
@@ -94012,7 +98409,7 @@
}
},
{
- "id": 9414,
+ "id": 9666,
"properties": {
"east": "false",
"north": "true",
@@ -94022,7 +98419,7 @@
}
},
{
- "id": 9415,
+ "id": 9667,
"properties": {
"east": "false",
"north": "true",
@@ -94032,7 +98429,7 @@
}
},
{
- "id": 9416,
+ "id": 9668,
"properties": {
"east": "false",
"north": "false",
@@ -94042,7 +98439,7 @@
}
},
{
- "id": 9417,
+ "id": 9669,
"properties": {
"east": "false",
"north": "false",
@@ -94052,7 +98449,7 @@
}
},
{
- "id": 9418,
+ "id": 9670,
"properties": {
"east": "false",
"north": "false",
@@ -94062,7 +98459,7 @@
}
},
{
- "id": 9419,
+ "id": 9671,
"properties": {
"east": "false",
"north": "false",
@@ -94072,7 +98469,7 @@
}
},
{
- "id": 9420,
+ "id": 9672,
"properties": {
"east": "false",
"north": "false",
@@ -94082,7 +98479,7 @@
}
},
{
- "id": 9421,
+ "id": 9673,
"properties": {
"east": "false",
"north": "false",
@@ -94092,7 +98489,7 @@
}
},
{
- "id": 9422,
+ "id": 9674,
"properties": {
"east": "false",
"north": "false",
@@ -94103,7 +98500,7 @@
},
{
"default": true,
- "id": 9423,
+ "id": 9675,
"properties": {
"east": "false",
"north": "false",
@@ -94118,7 +98515,7 @@
"states": [
{
"default": true,
- "id": 8973
+ "id": 9225
}
]
},
@@ -94134,25 +98531,25 @@
"states": [
{
"default": true,
- "id": 10590,
+ "id": 10922,
"properties": {
"facing": "north"
}
},
{
- "id": 10591,
+ "id": 10923,
"properties": {
"facing": "south"
}
},
{
- "id": 10592,
+ "id": 10924,
"properties": {
"facing": "west"
}
},
{
- "id": 10593,
+ "id": 10925,
"properties": {
"facing": "east"
}
@@ -94163,7 +98560,7 @@
"states": [
{
"default": true,
- "id": 2009
+ "id": 2056
}
]
},
@@ -94183,28 +98580,28 @@
},
"states": [
{
- "id": 17810,
+ "id": 18279,
"properties": {
"face": "floor",
"facing": "north"
}
},
{
- "id": 17811,
+ "id": 18280,
"properties": {
"face": "floor",
"facing": "south"
}
},
{
- "id": 17812,
+ "id": 18281,
"properties": {
"face": "floor",
"facing": "west"
}
},
{
- "id": 17813,
+ "id": 18282,
"properties": {
"face": "floor",
"facing": "east"
@@ -94212,56 +98609,56 @@
},
{
"default": true,
- "id": 17814,
+ "id": 18283,
"properties": {
"face": "wall",
"facing": "north"
}
},
{
- "id": 17815,
+ "id": 18284,
"properties": {
"face": "wall",
"facing": "south"
}
},
{
- "id": 17816,
+ "id": 18285,
"properties": {
"face": "wall",
"facing": "west"
}
},
{
- "id": 17817,
+ "id": 18286,
"properties": {
"face": "wall",
"facing": "east"
}
},
{
- "id": 17818,
+ "id": 18287,
"properties": {
"face": "ceiling",
"facing": "north"
}
},
{
- "id": 17819,
+ "id": 18288,
"properties": {
"face": "ceiling",
"facing": "south"
}
},
{
- "id": 17820,
+ "id": 18289,
"properties": {
"face": "ceiling",
"facing": "west"
}
},
{
- "id": 17821,
+ "id": 18290,
"properties": {
"face": "ceiling",
"facing": "east"
@@ -94278,14 +98675,14 @@
},
"states": [
{
- "id": 21558,
+ "id": 22043,
"properties": {
"waterlogged": "true"
}
},
{
"default": true,
- "id": 21559,
+ "id": 22044,
"properties": {
"waterlogged": "false"
}
@@ -94302,20 +98699,20 @@
},
"states": [
{
- "id": 10248,
+ "id": 10580,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 10249,
+ "id": 10581,
"properties": {
"axis": "y"
}
},
{
- "id": 10250,
+ "id": 10582,
"properties": {
"axis": "z"
}
@@ -94346,97 +98743,97 @@
"states": [
{
"default": true,
- "id": 8763,
+ "id": 9015,
"properties": {
"power": "0"
}
},
{
- "id": 8764,
+ "id": 9016,
"properties": {
"power": "1"
}
},
{
- "id": 8765,
+ "id": 9017,
"properties": {
"power": "2"
}
},
{
- "id": 8766,
+ "id": 9018,
"properties": {
"power": "3"
}
},
{
- "id": 8767,
+ "id": 9019,
"properties": {
"power": "4"
}
},
{
- "id": 8768,
+ "id": 9020,
"properties": {
"power": "5"
}
},
{
- "id": 8769,
+ "id": 9021,
"properties": {
"power": "6"
}
},
{
- "id": 8770,
+ "id": 9022,
"properties": {
"power": "7"
}
},
{
- "id": 8771,
+ "id": 9023,
"properties": {
"power": "8"
}
},
{
- "id": 8772,
+ "id": 9024,
"properties": {
"power": "9"
}
},
{
- "id": 8773,
+ "id": 9025,
"properties": {
"power": "10"
}
},
{
- "id": 8774,
+ "id": 9026,
"properties": {
"power": "11"
}
},
{
- "id": 8775,
+ "id": 9027,
"properties": {
"power": "12"
}
},
{
- "id": 8776,
+ "id": 9028,
"properties": {
"power": "13"
}
},
{
- "id": 8777,
+ "id": 9029,
"properties": {
"power": "14"
}
},
{
- "id": 8778,
+ "id": 9030,
"properties": {
"power": "15"
}
@@ -94447,7 +98844,7 @@
"states": [
{
"default": true,
- "id": 18817
+ "id": 19286
}
]
},
@@ -94455,7 +98852,7 @@
"states": [
{
"default": true,
- "id": 18818
+ "id": 19287
}
]
},
@@ -94476,70 +98873,70 @@
"states": [
{
"default": true,
- "id": 8829,
+ "id": 9081,
"properties": {
"enabled": "true",
"facing": "down"
}
},
{
- "id": 8830,
+ "id": 9082,
"properties": {
"enabled": "true",
"facing": "north"
}
},
{
- "id": 8831,
+ "id": 9083,
"properties": {
"enabled": "true",
"facing": "south"
}
},
{
- "id": 8832,
+ "id": 9084,
"properties": {
"enabled": "true",
"facing": "west"
}
},
{
- "id": 8833,
+ "id": 9085,
"properties": {
"enabled": "true",
"facing": "east"
}
},
{
- "id": 8834,
+ "id": 9086,
"properties": {
"enabled": "false",
"facing": "down"
}
},
{
- "id": 8835,
+ "id": 9087,
"properties": {
"enabled": "false",
"facing": "north"
}
},
{
- "id": 8836,
+ "id": 9088,
"properties": {
"enabled": "false",
"facing": "south"
}
},
{
- "id": 8837,
+ "id": 9089,
"properties": {
"enabled": "false",
"facing": "west"
}
},
{
- "id": 8838,
+ "id": 9090,
"properties": {
"enabled": "false",
"facing": "east"
@@ -94557,13 +98954,13 @@
"states": [
{
"default": true,
- "id": 12203,
+ "id": 12672,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12204,
+ "id": 12673,
"properties": {
"waterlogged": "false"
}
@@ -94574,7 +98971,7 @@
"states": [
{
"default": true,
- "id": 12184
+ "id": 12653
}
]
},
@@ -94588,13 +98985,13 @@
"states": [
{
"default": true,
- "id": 12223,
+ "id": 12692,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12224,
+ "id": 12693,
"properties": {
"waterlogged": "false"
}
@@ -94617,56 +99014,56 @@
"states": [
{
"default": true,
- "id": 12297,
+ "id": 12766,
"properties": {
"facing": "north",
"waterlogged": "true"
}
},
{
- "id": 12298,
+ "id": 12767,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 12299,
+ "id": 12768,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 12300,
+ "id": 12769,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 12301,
+ "id": 12770,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 12302,
+ "id": 12771,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 12303,
+ "id": 12772,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 12304,
+ "id": 12773,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -94678,7 +99075,7 @@
"states": [
{
"default": true,
- "id": 5614
+ "id": 5776
}
]
},
@@ -94686,7 +99083,7 @@
"states": [
{
"default": true,
- "id": 6319
+ "id": 6545
}
]
},
@@ -94694,7 +99091,7 @@
"states": [
{
"default": true,
- "id": 6315
+ "id": 6541
}
]
},
@@ -94702,7 +99099,7 @@
"states": [
{
"default": true,
- "id": 6318
+ "id": 6544
}
]
},
@@ -94716,20 +99113,20 @@
},
"states": [
{
- "id": 23212,
+ "id": 23697,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 23213,
+ "id": 23698,
"properties": {
"axis": "y"
}
},
{
- "id": 23214,
+ "id": 23699,
"properties": {
"axis": "z"
}
@@ -94740,7 +99137,7 @@
"states": [
{
"default": true,
- "id": 6317
+ "id": 6543
}
]
},
@@ -94748,7 +99145,7 @@
"states": [
{
"default": true,
- "id": 6314
+ "id": 6540
}
]
},
@@ -94756,7 +99153,7 @@
"states": [
{
"default": true,
- "id": 6316
+ "id": 6542
}
]
},
@@ -94785,7 +99182,7 @@
},
"states": [
{
- "id": 6512,
+ "id": 6738,
"properties": {
"east": "true",
"north": "true",
@@ -94795,7 +99192,7 @@
}
},
{
- "id": 6513,
+ "id": 6739,
"properties": {
"east": "true",
"north": "true",
@@ -94805,7 +99202,7 @@
}
},
{
- "id": 6514,
+ "id": 6740,
"properties": {
"east": "true",
"north": "true",
@@ -94815,7 +99212,7 @@
}
},
{
- "id": 6515,
+ "id": 6741,
"properties": {
"east": "true",
"north": "true",
@@ -94825,7 +99222,7 @@
}
},
{
- "id": 6516,
+ "id": 6742,
"properties": {
"east": "true",
"north": "true",
@@ -94835,7 +99232,7 @@
}
},
{
- "id": 6517,
+ "id": 6743,
"properties": {
"east": "true",
"north": "true",
@@ -94845,7 +99242,7 @@
}
},
{
- "id": 6518,
+ "id": 6744,
"properties": {
"east": "true",
"north": "true",
@@ -94855,7 +99252,7 @@
}
},
{
- "id": 6519,
+ "id": 6745,
"properties": {
"east": "true",
"north": "true",
@@ -94865,7 +99262,7 @@
}
},
{
- "id": 6520,
+ "id": 6746,
"properties": {
"east": "true",
"north": "false",
@@ -94875,7 +99272,7 @@
}
},
{
- "id": 6521,
+ "id": 6747,
"properties": {
"east": "true",
"north": "false",
@@ -94885,7 +99282,7 @@
}
},
{
- "id": 6522,
+ "id": 6748,
"properties": {
"east": "true",
"north": "false",
@@ -94895,7 +99292,7 @@
}
},
{
- "id": 6523,
+ "id": 6749,
"properties": {
"east": "true",
"north": "false",
@@ -94905,7 +99302,7 @@
}
},
{
- "id": 6524,
+ "id": 6750,
"properties": {
"east": "true",
"north": "false",
@@ -94915,7 +99312,7 @@
}
},
{
- "id": 6525,
+ "id": 6751,
"properties": {
"east": "true",
"north": "false",
@@ -94925,7 +99322,7 @@
}
},
{
- "id": 6526,
+ "id": 6752,
"properties": {
"east": "true",
"north": "false",
@@ -94935,7 +99332,7 @@
}
},
{
- "id": 6527,
+ "id": 6753,
"properties": {
"east": "true",
"north": "false",
@@ -94945,7 +99342,7 @@
}
},
{
- "id": 6528,
+ "id": 6754,
"properties": {
"east": "false",
"north": "true",
@@ -94955,7 +99352,7 @@
}
},
{
- "id": 6529,
+ "id": 6755,
"properties": {
"east": "false",
"north": "true",
@@ -94965,7 +99362,7 @@
}
},
{
- "id": 6530,
+ "id": 6756,
"properties": {
"east": "false",
"north": "true",
@@ -94975,7 +99372,7 @@
}
},
{
- "id": 6531,
+ "id": 6757,
"properties": {
"east": "false",
"north": "true",
@@ -94985,7 +99382,7 @@
}
},
{
- "id": 6532,
+ "id": 6758,
"properties": {
"east": "false",
"north": "true",
@@ -94995,7 +99392,7 @@
}
},
{
- "id": 6533,
+ "id": 6759,
"properties": {
"east": "false",
"north": "true",
@@ -95005,7 +99402,7 @@
}
},
{
- "id": 6534,
+ "id": 6760,
"properties": {
"east": "false",
"north": "true",
@@ -95015,7 +99412,7 @@
}
},
{
- "id": 6535,
+ "id": 6761,
"properties": {
"east": "false",
"north": "true",
@@ -95025,7 +99422,7 @@
}
},
{
- "id": 6536,
+ "id": 6762,
"properties": {
"east": "false",
"north": "false",
@@ -95035,7 +99432,7 @@
}
},
{
- "id": 6537,
+ "id": 6763,
"properties": {
"east": "false",
"north": "false",
@@ -95045,7 +99442,7 @@
}
},
{
- "id": 6538,
+ "id": 6764,
"properties": {
"east": "false",
"north": "false",
@@ -95055,7 +99452,7 @@
}
},
{
- "id": 6539,
+ "id": 6765,
"properties": {
"east": "false",
"north": "false",
@@ -95065,7 +99462,7 @@
}
},
{
- "id": 6540,
+ "id": 6766,
"properties": {
"east": "false",
"north": "false",
@@ -95075,7 +99472,7 @@
}
},
{
- "id": 6541,
+ "id": 6767,
"properties": {
"east": "false",
"north": "false",
@@ -95085,7 +99482,7 @@
}
},
{
- "id": 6542,
+ "id": 6768,
"properties": {
"east": "false",
"north": "false",
@@ -95096,7 +99493,7 @@
},
{
"default": true,
- "id": 6543,
+ "id": 6769,
"properties": {
"east": "false",
"north": "false",
@@ -95111,7 +99508,7 @@
"states": [
{
"default": true,
- "id": 2040
+ "id": 2088
}
]
},
@@ -95142,7 +99539,7 @@
},
"states": [
{
- "id": 5488,
+ "id": 5648,
"properties": {
"facing": "north",
"half": "upper",
@@ -95152,7 +99549,7 @@
}
},
{
- "id": 5489,
+ "id": 5649,
"properties": {
"facing": "north",
"half": "upper",
@@ -95162,7 +99559,7 @@
}
},
{
- "id": 5490,
+ "id": 5650,
"properties": {
"facing": "north",
"half": "upper",
@@ -95172,7 +99569,7 @@
}
},
{
- "id": 5491,
+ "id": 5651,
"properties": {
"facing": "north",
"half": "upper",
@@ -95182,7 +99579,7 @@
}
},
{
- "id": 5492,
+ "id": 5652,
"properties": {
"facing": "north",
"half": "upper",
@@ -95192,7 +99589,7 @@
}
},
{
- "id": 5493,
+ "id": 5653,
"properties": {
"facing": "north",
"half": "upper",
@@ -95202,7 +99599,7 @@
}
},
{
- "id": 5494,
+ "id": 5654,
"properties": {
"facing": "north",
"half": "upper",
@@ -95212,7 +99609,7 @@
}
},
{
- "id": 5495,
+ "id": 5655,
"properties": {
"facing": "north",
"half": "upper",
@@ -95222,7 +99619,7 @@
}
},
{
- "id": 5496,
+ "id": 5656,
"properties": {
"facing": "north",
"half": "lower",
@@ -95232,7 +99629,7 @@
}
},
{
- "id": 5497,
+ "id": 5657,
"properties": {
"facing": "north",
"half": "lower",
@@ -95242,7 +99639,7 @@
}
},
{
- "id": 5498,
+ "id": 5658,
"properties": {
"facing": "north",
"half": "lower",
@@ -95253,7 +99650,7 @@
},
{
"default": true,
- "id": 5499,
+ "id": 5659,
"properties": {
"facing": "north",
"half": "lower",
@@ -95263,7 +99660,7 @@
}
},
{
- "id": 5500,
+ "id": 5660,
"properties": {
"facing": "north",
"half": "lower",
@@ -95273,7 +99670,7 @@
}
},
{
- "id": 5501,
+ "id": 5661,
"properties": {
"facing": "north",
"half": "lower",
@@ -95283,7 +99680,7 @@
}
},
{
- "id": 5502,
+ "id": 5662,
"properties": {
"facing": "north",
"half": "lower",
@@ -95293,7 +99690,7 @@
}
},
{
- "id": 5503,
+ "id": 5663,
"properties": {
"facing": "north",
"half": "lower",
@@ -95303,7 +99700,7 @@
}
},
{
- "id": 5504,
+ "id": 5664,
"properties": {
"facing": "south",
"half": "upper",
@@ -95313,7 +99710,7 @@
}
},
{
- "id": 5505,
+ "id": 5665,
"properties": {
"facing": "south",
"half": "upper",
@@ -95323,7 +99720,7 @@
}
},
{
- "id": 5506,
+ "id": 5666,
"properties": {
"facing": "south",
"half": "upper",
@@ -95333,7 +99730,7 @@
}
},
{
- "id": 5507,
+ "id": 5667,
"properties": {
"facing": "south",
"half": "upper",
@@ -95343,7 +99740,7 @@
}
},
{
- "id": 5508,
+ "id": 5668,
"properties": {
"facing": "south",
"half": "upper",
@@ -95353,7 +99750,7 @@
}
},
{
- "id": 5509,
+ "id": 5669,
"properties": {
"facing": "south",
"half": "upper",
@@ -95363,7 +99760,7 @@
}
},
{
- "id": 5510,
+ "id": 5670,
"properties": {
"facing": "south",
"half": "upper",
@@ -95373,7 +99770,7 @@
}
},
{
- "id": 5511,
+ "id": 5671,
"properties": {
"facing": "south",
"half": "upper",
@@ -95383,7 +99780,7 @@
}
},
{
- "id": 5512,
+ "id": 5672,
"properties": {
"facing": "south",
"half": "lower",
@@ -95393,7 +99790,7 @@
}
},
{
- "id": 5513,
+ "id": 5673,
"properties": {
"facing": "south",
"half": "lower",
@@ -95403,7 +99800,7 @@
}
},
{
- "id": 5514,
+ "id": 5674,
"properties": {
"facing": "south",
"half": "lower",
@@ -95413,7 +99810,7 @@
}
},
{
- "id": 5515,
+ "id": 5675,
"properties": {
"facing": "south",
"half": "lower",
@@ -95423,7 +99820,7 @@
}
},
{
- "id": 5516,
+ "id": 5676,
"properties": {
"facing": "south",
"half": "lower",
@@ -95433,7 +99830,7 @@
}
},
{
- "id": 5517,
+ "id": 5677,
"properties": {
"facing": "south",
"half": "lower",
@@ -95443,7 +99840,7 @@
}
},
{
- "id": 5518,
+ "id": 5678,
"properties": {
"facing": "south",
"half": "lower",
@@ -95453,7 +99850,7 @@
}
},
{
- "id": 5519,
+ "id": 5679,
"properties": {
"facing": "south",
"half": "lower",
@@ -95463,7 +99860,7 @@
}
},
{
- "id": 5520,
+ "id": 5680,
"properties": {
"facing": "west",
"half": "upper",
@@ -95473,7 +99870,7 @@
}
},
{
- "id": 5521,
+ "id": 5681,
"properties": {
"facing": "west",
"half": "upper",
@@ -95483,7 +99880,7 @@
}
},
{
- "id": 5522,
+ "id": 5682,
"properties": {
"facing": "west",
"half": "upper",
@@ -95493,7 +99890,7 @@
}
},
{
- "id": 5523,
+ "id": 5683,
"properties": {
"facing": "west",
"half": "upper",
@@ -95503,7 +99900,7 @@
}
},
{
- "id": 5524,
+ "id": 5684,
"properties": {
"facing": "west",
"half": "upper",
@@ -95513,7 +99910,7 @@
}
},
{
- "id": 5525,
+ "id": 5685,
"properties": {
"facing": "west",
"half": "upper",
@@ -95523,7 +99920,7 @@
}
},
{
- "id": 5526,
+ "id": 5686,
"properties": {
"facing": "west",
"half": "upper",
@@ -95533,7 +99930,7 @@
}
},
{
- "id": 5527,
+ "id": 5687,
"properties": {
"facing": "west",
"half": "upper",
@@ -95543,7 +99940,7 @@
}
},
{
- "id": 5528,
+ "id": 5688,
"properties": {
"facing": "west",
"half": "lower",
@@ -95553,7 +99950,7 @@
}
},
{
- "id": 5529,
+ "id": 5689,
"properties": {
"facing": "west",
"half": "lower",
@@ -95563,7 +99960,7 @@
}
},
{
- "id": 5530,
+ "id": 5690,
"properties": {
"facing": "west",
"half": "lower",
@@ -95573,7 +99970,7 @@
}
},
{
- "id": 5531,
+ "id": 5691,
"properties": {
"facing": "west",
"half": "lower",
@@ -95583,7 +99980,7 @@
}
},
{
- "id": 5532,
+ "id": 5692,
"properties": {
"facing": "west",
"half": "lower",
@@ -95593,7 +99990,7 @@
}
},
{
- "id": 5533,
+ "id": 5693,
"properties": {
"facing": "west",
"half": "lower",
@@ -95603,7 +100000,7 @@
}
},
{
- "id": 5534,
+ "id": 5694,
"properties": {
"facing": "west",
"half": "lower",
@@ -95613,7 +100010,7 @@
}
},
{
- "id": 5535,
+ "id": 5695,
"properties": {
"facing": "west",
"half": "lower",
@@ -95623,7 +100020,7 @@
}
},
{
- "id": 5536,
+ "id": 5696,
"properties": {
"facing": "east",
"half": "upper",
@@ -95633,7 +100030,7 @@
}
},
{
- "id": 5537,
+ "id": 5697,
"properties": {
"facing": "east",
"half": "upper",
@@ -95643,7 +100040,7 @@
}
},
{
- "id": 5538,
+ "id": 5698,
"properties": {
"facing": "east",
"half": "upper",
@@ -95653,7 +100050,7 @@
}
},
{
- "id": 5539,
+ "id": 5699,
"properties": {
"facing": "east",
"half": "upper",
@@ -95663,7 +100060,7 @@
}
},
{
- "id": 5540,
+ "id": 5700,
"properties": {
"facing": "east",
"half": "upper",
@@ -95673,7 +100070,7 @@
}
},
{
- "id": 5541,
+ "id": 5701,
"properties": {
"facing": "east",
"half": "upper",
@@ -95683,7 +100080,7 @@
}
},
{
- "id": 5542,
+ "id": 5702,
"properties": {
"facing": "east",
"half": "upper",
@@ -95693,7 +100090,7 @@
}
},
{
- "id": 5543,
+ "id": 5703,
"properties": {
"facing": "east",
"half": "upper",
@@ -95703,7 +100100,7 @@
}
},
{
- "id": 5544,
+ "id": 5704,
"properties": {
"facing": "east",
"half": "lower",
@@ -95713,7 +100110,7 @@
}
},
{
- "id": 5545,
+ "id": 5705,
"properties": {
"facing": "east",
"half": "lower",
@@ -95723,7 +100120,7 @@
}
},
{
- "id": 5546,
+ "id": 5706,
"properties": {
"facing": "east",
"half": "lower",
@@ -95733,7 +100130,7 @@
}
},
{
- "id": 5547,
+ "id": 5707,
"properties": {
"facing": "east",
"half": "lower",
@@ -95743,7 +100140,7 @@
}
},
{
- "id": 5548,
+ "id": 5708,
"properties": {
"facing": "east",
"half": "lower",
@@ -95753,7 +100150,7 @@
}
},
{
- "id": 5549,
+ "id": 5709,
"properties": {
"facing": "east",
"half": "lower",
@@ -95763,7 +100160,7 @@
}
},
{
- "id": 5550,
+ "id": 5710,
"properties": {
"facing": "east",
"half": "lower",
@@ -95773,7 +100170,7 @@
}
},
{
- "id": 5551,
+ "id": 5711,
"properties": {
"facing": "east",
"half": "lower",
@@ -95788,7 +100185,7 @@
"states": [
{
"default": true,
- "id": 114
+ "id": 121
}
]
},
@@ -95819,7 +100216,7 @@
},
"states": [
{
- "id": 9922,
+ "id": 10254,
"properties": {
"facing": "north",
"half": "top",
@@ -95829,7 +100226,7 @@
}
},
{
- "id": 9923,
+ "id": 10255,
"properties": {
"facing": "north",
"half": "top",
@@ -95839,7 +100236,7 @@
}
},
{
- "id": 9924,
+ "id": 10256,
"properties": {
"facing": "north",
"half": "top",
@@ -95849,7 +100246,7 @@
}
},
{
- "id": 9925,
+ "id": 10257,
"properties": {
"facing": "north",
"half": "top",
@@ -95859,7 +100256,7 @@
}
},
{
- "id": 9926,
+ "id": 10258,
"properties": {
"facing": "north",
"half": "top",
@@ -95869,7 +100266,7 @@
}
},
{
- "id": 9927,
+ "id": 10259,
"properties": {
"facing": "north",
"half": "top",
@@ -95879,7 +100276,7 @@
}
},
{
- "id": 9928,
+ "id": 10260,
"properties": {
"facing": "north",
"half": "top",
@@ -95889,7 +100286,7 @@
}
},
{
- "id": 9929,
+ "id": 10261,
"properties": {
"facing": "north",
"half": "top",
@@ -95899,7 +100296,7 @@
}
},
{
- "id": 9930,
+ "id": 10262,
"properties": {
"facing": "north",
"half": "bottom",
@@ -95909,7 +100306,7 @@
}
},
{
- "id": 9931,
+ "id": 10263,
"properties": {
"facing": "north",
"half": "bottom",
@@ -95919,7 +100316,7 @@
}
},
{
- "id": 9932,
+ "id": 10264,
"properties": {
"facing": "north",
"half": "bottom",
@@ -95929,7 +100326,7 @@
}
},
{
- "id": 9933,
+ "id": 10265,
"properties": {
"facing": "north",
"half": "bottom",
@@ -95939,7 +100336,7 @@
}
},
{
- "id": 9934,
+ "id": 10266,
"properties": {
"facing": "north",
"half": "bottom",
@@ -95949,7 +100346,7 @@
}
},
{
- "id": 9935,
+ "id": 10267,
"properties": {
"facing": "north",
"half": "bottom",
@@ -95959,7 +100356,7 @@
}
},
{
- "id": 9936,
+ "id": 10268,
"properties": {
"facing": "north",
"half": "bottom",
@@ -95970,7 +100367,7 @@
},
{
"default": true,
- "id": 9937,
+ "id": 10269,
"properties": {
"facing": "north",
"half": "bottom",
@@ -95980,7 +100377,7 @@
}
},
{
- "id": 9938,
+ "id": 10270,
"properties": {
"facing": "south",
"half": "top",
@@ -95990,7 +100387,7 @@
}
},
{
- "id": 9939,
+ "id": 10271,
"properties": {
"facing": "south",
"half": "top",
@@ -96000,7 +100397,7 @@
}
},
{
- "id": 9940,
+ "id": 10272,
"properties": {
"facing": "south",
"half": "top",
@@ -96010,7 +100407,7 @@
}
},
{
- "id": 9941,
+ "id": 10273,
"properties": {
"facing": "south",
"half": "top",
@@ -96020,7 +100417,7 @@
}
},
{
- "id": 9942,
+ "id": 10274,
"properties": {
"facing": "south",
"half": "top",
@@ -96030,7 +100427,7 @@
}
},
{
- "id": 9943,
+ "id": 10275,
"properties": {
"facing": "south",
"half": "top",
@@ -96040,7 +100437,7 @@
}
},
{
- "id": 9944,
+ "id": 10276,
"properties": {
"facing": "south",
"half": "top",
@@ -96050,7 +100447,7 @@
}
},
{
- "id": 9945,
+ "id": 10277,
"properties": {
"facing": "south",
"half": "top",
@@ -96060,7 +100457,7 @@
}
},
{
- "id": 9946,
+ "id": 10278,
"properties": {
"facing": "south",
"half": "bottom",
@@ -96070,7 +100467,7 @@
}
},
{
- "id": 9947,
+ "id": 10279,
"properties": {
"facing": "south",
"half": "bottom",
@@ -96080,7 +100477,7 @@
}
},
{
- "id": 9948,
+ "id": 10280,
"properties": {
"facing": "south",
"half": "bottom",
@@ -96090,7 +100487,7 @@
}
},
{
- "id": 9949,
+ "id": 10281,
"properties": {
"facing": "south",
"half": "bottom",
@@ -96100,7 +100497,7 @@
}
},
{
- "id": 9950,
+ "id": 10282,
"properties": {
"facing": "south",
"half": "bottom",
@@ -96110,7 +100507,7 @@
}
},
{
- "id": 9951,
+ "id": 10283,
"properties": {
"facing": "south",
"half": "bottom",
@@ -96120,7 +100517,7 @@
}
},
{
- "id": 9952,
+ "id": 10284,
"properties": {
"facing": "south",
"half": "bottom",
@@ -96130,7 +100527,7 @@
}
},
{
- "id": 9953,
+ "id": 10285,
"properties": {
"facing": "south",
"half": "bottom",
@@ -96140,7 +100537,7 @@
}
},
{
- "id": 9954,
+ "id": 10286,
"properties": {
"facing": "west",
"half": "top",
@@ -96150,7 +100547,7 @@
}
},
{
- "id": 9955,
+ "id": 10287,
"properties": {
"facing": "west",
"half": "top",
@@ -96160,7 +100557,7 @@
}
},
{
- "id": 9956,
+ "id": 10288,
"properties": {
"facing": "west",
"half": "top",
@@ -96170,7 +100567,7 @@
}
},
{
- "id": 9957,
+ "id": 10289,
"properties": {
"facing": "west",
"half": "top",
@@ -96180,7 +100577,7 @@
}
},
{
- "id": 9958,
+ "id": 10290,
"properties": {
"facing": "west",
"half": "top",
@@ -96190,7 +100587,7 @@
}
},
{
- "id": 9959,
+ "id": 10291,
"properties": {
"facing": "west",
"half": "top",
@@ -96200,7 +100597,7 @@
}
},
{
- "id": 9960,
+ "id": 10292,
"properties": {
"facing": "west",
"half": "top",
@@ -96210,7 +100607,7 @@
}
},
{
- "id": 9961,
+ "id": 10293,
"properties": {
"facing": "west",
"half": "top",
@@ -96220,7 +100617,7 @@
}
},
{
- "id": 9962,
+ "id": 10294,
"properties": {
"facing": "west",
"half": "bottom",
@@ -96230,7 +100627,7 @@
}
},
{
- "id": 9963,
+ "id": 10295,
"properties": {
"facing": "west",
"half": "bottom",
@@ -96240,7 +100637,7 @@
}
},
{
- "id": 9964,
+ "id": 10296,
"properties": {
"facing": "west",
"half": "bottom",
@@ -96250,7 +100647,7 @@
}
},
{
- "id": 9965,
+ "id": 10297,
"properties": {
"facing": "west",
"half": "bottom",
@@ -96260,7 +100657,7 @@
}
},
{
- "id": 9966,
+ "id": 10298,
"properties": {
"facing": "west",
"half": "bottom",
@@ -96270,7 +100667,7 @@
}
},
{
- "id": 9967,
+ "id": 10299,
"properties": {
"facing": "west",
"half": "bottom",
@@ -96280,7 +100677,7 @@
}
},
{
- "id": 9968,
+ "id": 10300,
"properties": {
"facing": "west",
"half": "bottom",
@@ -96290,7 +100687,7 @@
}
},
{
- "id": 9969,
+ "id": 10301,
"properties": {
"facing": "west",
"half": "bottom",
@@ -96300,7 +100697,7 @@
}
},
{
- "id": 9970,
+ "id": 10302,
"properties": {
"facing": "east",
"half": "top",
@@ -96310,7 +100707,7 @@
}
},
{
- "id": 9971,
+ "id": 10303,
"properties": {
"facing": "east",
"half": "top",
@@ -96320,7 +100717,7 @@
}
},
{
- "id": 9972,
+ "id": 10304,
"properties": {
"facing": "east",
"half": "top",
@@ -96330,7 +100727,7 @@
}
},
{
- "id": 9973,
+ "id": 10305,
"properties": {
"facing": "east",
"half": "top",
@@ -96340,7 +100737,7 @@
}
},
{
- "id": 9974,
+ "id": 10306,
"properties": {
"facing": "east",
"half": "top",
@@ -96350,7 +100747,7 @@
}
},
{
- "id": 9975,
+ "id": 10307,
"properties": {
"facing": "east",
"half": "top",
@@ -96360,7 +100757,7 @@
}
},
{
- "id": 9976,
+ "id": 10308,
"properties": {
"facing": "east",
"half": "top",
@@ -96370,7 +100767,7 @@
}
},
{
- "id": 9977,
+ "id": 10309,
"properties": {
"facing": "east",
"half": "top",
@@ -96380,7 +100777,7 @@
}
},
{
- "id": 9978,
+ "id": 10310,
"properties": {
"facing": "east",
"half": "bottom",
@@ -96390,7 +100787,7 @@
}
},
{
- "id": 9979,
+ "id": 10311,
"properties": {
"facing": "east",
"half": "bottom",
@@ -96400,7 +100797,7 @@
}
},
{
- "id": 9980,
+ "id": 10312,
"properties": {
"facing": "east",
"half": "bottom",
@@ -96410,7 +100807,7 @@
}
},
{
- "id": 9981,
+ "id": 10313,
"properties": {
"facing": "east",
"half": "bottom",
@@ -96420,7 +100817,7 @@
}
},
{
- "id": 9982,
+ "id": 10314,
"properties": {
"facing": "east",
"half": "bottom",
@@ -96430,7 +100827,7 @@
}
},
{
- "id": 9983,
+ "id": 10315,
"properties": {
"facing": "east",
"half": "bottom",
@@ -96440,7 +100837,7 @@
}
},
{
- "id": 9984,
+ "id": 10316,
"properties": {
"facing": "east",
"half": "bottom",
@@ -96450,7 +100847,7 @@
}
},
{
- "id": 9985,
+ "id": 10317,
"properties": {
"facing": "east",
"half": "bottom",
@@ -96473,25 +100870,25 @@
"states": [
{
"default": true,
- "id": 5705,
+ "id": 5867,
"properties": {
"facing": "north"
}
},
{
- "id": 5706,
+ "id": 5868,
"properties": {
"facing": "south"
}
},
{
- "id": 5707,
+ "id": 5869,
"properties": {
"facing": "west"
}
},
{
- "id": 5708,
+ "id": 5870,
"properties": {
"facing": "east"
}
@@ -96517,74 +100914,74 @@
},
"states": [
{
- "id": 18732,
+ "id": 19201,
"properties": {
"orientation": "down_east"
}
},
{
- "id": 18733,
+ "id": 19202,
"properties": {
"orientation": "down_north"
}
},
{
- "id": 18734,
+ "id": 19203,
"properties": {
"orientation": "down_south"
}
},
{
- "id": 18735,
+ "id": 19204,
"properties": {
"orientation": "down_west"
}
},
{
- "id": 18736,
+ "id": 19205,
"properties": {
"orientation": "up_east"
}
},
{
- "id": 18737,
+ "id": 19206,
"properties": {
"orientation": "up_north"
}
},
{
- "id": 18738,
+ "id": 19207,
"properties": {
"orientation": "up_south"
}
},
{
- "id": 18739,
+ "id": 19208,
"properties": {
"orientation": "up_west"
}
},
{
- "id": 18740,
+ "id": 19209,
"properties": {
"orientation": "west_up"
}
},
{
- "id": 18741,
+ "id": 19210,
"properties": {
"orientation": "east_up"
}
},
{
"default": true,
- "id": 18742,
+ "id": 19211,
"properties": {
"orientation": "north_up"
}
},
{
- "id": 18743,
+ "id": 19212,
"properties": {
"orientation": "south_up"
}
@@ -96600,14 +100997,14 @@
},
"states": [
{
- "id": 5649,
+ "id": 5811,
"properties": {
"has_record": "true"
}
},
{
"default": true,
- "id": 5650,
+ "id": 5812,
"properties": {
"has_record": "false"
}
@@ -96634,7 +101031,7 @@
},
"states": [
{
- "id": 8451,
+ "id": 8679,
"properties": {
"face": "floor",
"facing": "north",
@@ -96642,7 +101039,7 @@
}
},
{
- "id": 8452,
+ "id": 8680,
"properties": {
"face": "floor",
"facing": "north",
@@ -96650,7 +101047,7 @@
}
},
{
- "id": 8453,
+ "id": 8681,
"properties": {
"face": "floor",
"facing": "south",
@@ -96658,7 +101055,7 @@
}
},
{
- "id": 8454,
+ "id": 8682,
"properties": {
"face": "floor",
"facing": "south",
@@ -96666,7 +101063,7 @@
}
},
{
- "id": 8455,
+ "id": 8683,
"properties": {
"face": "floor",
"facing": "west",
@@ -96674,7 +101071,7 @@
}
},
{
- "id": 8456,
+ "id": 8684,
"properties": {
"face": "floor",
"facing": "west",
@@ -96682,7 +101079,7 @@
}
},
{
- "id": 8457,
+ "id": 8685,
"properties": {
"face": "floor",
"facing": "east",
@@ -96690,7 +101087,7 @@
}
},
{
- "id": 8458,
+ "id": 8686,
"properties": {
"face": "floor",
"facing": "east",
@@ -96698,7 +101095,7 @@
}
},
{
- "id": 8459,
+ "id": 8687,
"properties": {
"face": "wall",
"facing": "north",
@@ -96707,7 +101104,7 @@
},
{
"default": true,
- "id": 8460,
+ "id": 8688,
"properties": {
"face": "wall",
"facing": "north",
@@ -96715,7 +101112,7 @@
}
},
{
- "id": 8461,
+ "id": 8689,
"properties": {
"face": "wall",
"facing": "south",
@@ -96723,7 +101120,7 @@
}
},
{
- "id": 8462,
+ "id": 8690,
"properties": {
"face": "wall",
"facing": "south",
@@ -96731,7 +101128,7 @@
}
},
{
- "id": 8463,
+ "id": 8691,
"properties": {
"face": "wall",
"facing": "west",
@@ -96739,7 +101136,7 @@
}
},
{
- "id": 8464,
+ "id": 8692,
"properties": {
"face": "wall",
"facing": "west",
@@ -96747,7 +101144,7 @@
}
},
{
- "id": 8465,
+ "id": 8693,
"properties": {
"face": "wall",
"facing": "east",
@@ -96755,7 +101152,7 @@
}
},
{
- "id": 8466,
+ "id": 8694,
"properties": {
"face": "wall",
"facing": "east",
@@ -96763,7 +101160,7 @@
}
},
{
- "id": 8467,
+ "id": 8695,
"properties": {
"face": "ceiling",
"facing": "north",
@@ -96771,7 +101168,7 @@
}
},
{
- "id": 8468,
+ "id": 8696,
"properties": {
"face": "ceiling",
"facing": "north",
@@ -96779,7 +101176,7 @@
}
},
{
- "id": 8469,
+ "id": 8697,
"properties": {
"face": "ceiling",
"facing": "south",
@@ -96787,7 +101184,7 @@
}
},
{
- "id": 8470,
+ "id": 8698,
"properties": {
"face": "ceiling",
"facing": "south",
@@ -96795,7 +101192,7 @@
}
},
{
- "id": 8471,
+ "id": 8699,
"properties": {
"face": "ceiling",
"facing": "west",
@@ -96803,7 +101200,7 @@
}
},
{
- "id": 8472,
+ "id": 8700,
"properties": {
"face": "ceiling",
"facing": "west",
@@ -96811,7 +101208,7 @@
}
},
{
- "id": 8473,
+ "id": 8701,
"properties": {
"face": "ceiling",
"facing": "east",
@@ -96819,7 +101216,7 @@
}
},
{
- "id": 8474,
+ "id": 8702,
"properties": {
"face": "ceiling",
"facing": "east",
@@ -96855,7 +101252,7 @@
},
"states": [
{
- "id": 11403,
+ "id": 11805,
"properties": {
"facing": "north",
"half": "upper",
@@ -96865,7 +101262,7 @@
}
},
{
- "id": 11404,
+ "id": 11806,
"properties": {
"facing": "north",
"half": "upper",
@@ -96875,7 +101272,7 @@
}
},
{
- "id": 11405,
+ "id": 11807,
"properties": {
"facing": "north",
"half": "upper",
@@ -96885,7 +101282,7 @@
}
},
{
- "id": 11406,
+ "id": 11808,
"properties": {
"facing": "north",
"half": "upper",
@@ -96895,7 +101292,7 @@
}
},
{
- "id": 11407,
+ "id": 11809,
"properties": {
"facing": "north",
"half": "upper",
@@ -96905,7 +101302,7 @@
}
},
{
- "id": 11408,
+ "id": 11810,
"properties": {
"facing": "north",
"half": "upper",
@@ -96915,7 +101312,7 @@
}
},
{
- "id": 11409,
+ "id": 11811,
"properties": {
"facing": "north",
"half": "upper",
@@ -96925,7 +101322,7 @@
}
},
{
- "id": 11410,
+ "id": 11812,
"properties": {
"facing": "north",
"half": "upper",
@@ -96935,7 +101332,7 @@
}
},
{
- "id": 11411,
+ "id": 11813,
"properties": {
"facing": "north",
"half": "lower",
@@ -96945,7 +101342,7 @@
}
},
{
- "id": 11412,
+ "id": 11814,
"properties": {
"facing": "north",
"half": "lower",
@@ -96955,7 +101352,7 @@
}
},
{
- "id": 11413,
+ "id": 11815,
"properties": {
"facing": "north",
"half": "lower",
@@ -96966,7 +101363,7 @@
},
{
"default": true,
- "id": 11414,
+ "id": 11816,
"properties": {
"facing": "north",
"half": "lower",
@@ -96976,7 +101373,7 @@
}
},
{
- "id": 11415,
+ "id": 11817,
"properties": {
"facing": "north",
"half": "lower",
@@ -96986,7 +101383,7 @@
}
},
{
- "id": 11416,
+ "id": 11818,
"properties": {
"facing": "north",
"half": "lower",
@@ -96996,7 +101393,7 @@
}
},
{
- "id": 11417,
+ "id": 11819,
"properties": {
"facing": "north",
"half": "lower",
@@ -97006,7 +101403,7 @@
}
},
{
- "id": 11418,
+ "id": 11820,
"properties": {
"facing": "north",
"half": "lower",
@@ -97016,7 +101413,7 @@
}
},
{
- "id": 11419,
+ "id": 11821,
"properties": {
"facing": "south",
"half": "upper",
@@ -97026,7 +101423,7 @@
}
},
{
- "id": 11420,
+ "id": 11822,
"properties": {
"facing": "south",
"half": "upper",
@@ -97036,7 +101433,7 @@
}
},
{
- "id": 11421,
+ "id": 11823,
"properties": {
"facing": "south",
"half": "upper",
@@ -97046,7 +101443,7 @@
}
},
{
- "id": 11422,
+ "id": 11824,
"properties": {
"facing": "south",
"half": "upper",
@@ -97056,7 +101453,7 @@
}
},
{
- "id": 11423,
+ "id": 11825,
"properties": {
"facing": "south",
"half": "upper",
@@ -97066,7 +101463,7 @@
}
},
{
- "id": 11424,
+ "id": 11826,
"properties": {
"facing": "south",
"half": "upper",
@@ -97076,7 +101473,7 @@
}
},
{
- "id": 11425,
+ "id": 11827,
"properties": {
"facing": "south",
"half": "upper",
@@ -97086,7 +101483,7 @@
}
},
{
- "id": 11426,
+ "id": 11828,
"properties": {
"facing": "south",
"half": "upper",
@@ -97096,7 +101493,7 @@
}
},
{
- "id": 11427,
+ "id": 11829,
"properties": {
"facing": "south",
"half": "lower",
@@ -97106,7 +101503,7 @@
}
},
{
- "id": 11428,
+ "id": 11830,
"properties": {
"facing": "south",
"half": "lower",
@@ -97116,7 +101513,7 @@
}
},
{
- "id": 11429,
+ "id": 11831,
"properties": {
"facing": "south",
"half": "lower",
@@ -97126,7 +101523,7 @@
}
},
{
- "id": 11430,
+ "id": 11832,
"properties": {
"facing": "south",
"half": "lower",
@@ -97136,7 +101533,7 @@
}
},
{
- "id": 11431,
+ "id": 11833,
"properties": {
"facing": "south",
"half": "lower",
@@ -97146,7 +101543,7 @@
}
},
{
- "id": 11432,
+ "id": 11834,
"properties": {
"facing": "south",
"half": "lower",
@@ -97156,7 +101553,7 @@
}
},
{
- "id": 11433,
+ "id": 11835,
"properties": {
"facing": "south",
"half": "lower",
@@ -97166,7 +101563,7 @@
}
},
{
- "id": 11434,
+ "id": 11836,
"properties": {
"facing": "south",
"half": "lower",
@@ -97176,7 +101573,7 @@
}
},
{
- "id": 11435,
+ "id": 11837,
"properties": {
"facing": "west",
"half": "upper",
@@ -97186,7 +101583,7 @@
}
},
{
- "id": 11436,
+ "id": 11838,
"properties": {
"facing": "west",
"half": "upper",
@@ -97196,7 +101593,7 @@
}
},
{
- "id": 11437,
+ "id": 11839,
"properties": {
"facing": "west",
"half": "upper",
@@ -97206,7 +101603,7 @@
}
},
{
- "id": 11438,
+ "id": 11840,
"properties": {
"facing": "west",
"half": "upper",
@@ -97216,7 +101613,7 @@
}
},
{
- "id": 11439,
+ "id": 11841,
"properties": {
"facing": "west",
"half": "upper",
@@ -97226,7 +101623,7 @@
}
},
{
- "id": 11440,
+ "id": 11842,
"properties": {
"facing": "west",
"half": "upper",
@@ -97236,7 +101633,7 @@
}
},
{
- "id": 11441,
+ "id": 11843,
"properties": {
"facing": "west",
"half": "upper",
@@ -97246,7 +101643,7 @@
}
},
{
- "id": 11442,
+ "id": 11844,
"properties": {
"facing": "west",
"half": "upper",
@@ -97256,7 +101653,7 @@
}
},
{
- "id": 11443,
+ "id": 11845,
"properties": {
"facing": "west",
"half": "lower",
@@ -97266,7 +101663,7 @@
}
},
{
- "id": 11444,
+ "id": 11846,
"properties": {
"facing": "west",
"half": "lower",
@@ -97276,7 +101673,7 @@
}
},
{
- "id": 11445,
+ "id": 11847,
"properties": {
"facing": "west",
"half": "lower",
@@ -97286,7 +101683,7 @@
}
},
{
- "id": 11446,
+ "id": 11848,
"properties": {
"facing": "west",
"half": "lower",
@@ -97296,7 +101693,7 @@
}
},
{
- "id": 11447,
+ "id": 11849,
"properties": {
"facing": "west",
"half": "lower",
@@ -97306,7 +101703,7 @@
}
},
{
- "id": 11448,
+ "id": 11850,
"properties": {
"facing": "west",
"half": "lower",
@@ -97316,7 +101713,7 @@
}
},
{
- "id": 11449,
+ "id": 11851,
"properties": {
"facing": "west",
"half": "lower",
@@ -97326,7 +101723,7 @@
}
},
{
- "id": 11450,
+ "id": 11852,
"properties": {
"facing": "west",
"half": "lower",
@@ -97336,7 +101733,7 @@
}
},
{
- "id": 11451,
+ "id": 11853,
"properties": {
"facing": "east",
"half": "upper",
@@ -97346,7 +101743,7 @@
}
},
{
- "id": 11452,
+ "id": 11854,
"properties": {
"facing": "east",
"half": "upper",
@@ -97356,7 +101753,7 @@
}
},
{
- "id": 11453,
+ "id": 11855,
"properties": {
"facing": "east",
"half": "upper",
@@ -97366,7 +101763,7 @@
}
},
{
- "id": 11454,
+ "id": 11856,
"properties": {
"facing": "east",
"half": "upper",
@@ -97376,7 +101773,7 @@
}
},
{
- "id": 11455,
+ "id": 11857,
"properties": {
"facing": "east",
"half": "upper",
@@ -97386,7 +101783,7 @@
}
},
{
- "id": 11456,
+ "id": 11858,
"properties": {
"facing": "east",
"half": "upper",
@@ -97396,7 +101793,7 @@
}
},
{
- "id": 11457,
+ "id": 11859,
"properties": {
"facing": "east",
"half": "upper",
@@ -97406,7 +101803,7 @@
}
},
{
- "id": 11458,
+ "id": 11860,
"properties": {
"facing": "east",
"half": "upper",
@@ -97416,7 +101813,7 @@
}
},
{
- "id": 11459,
+ "id": 11861,
"properties": {
"facing": "east",
"half": "lower",
@@ -97426,7 +101823,7 @@
}
},
{
- "id": 11460,
+ "id": 11862,
"properties": {
"facing": "east",
"half": "lower",
@@ -97436,7 +101833,7 @@
}
},
{
- "id": 11461,
+ "id": 11863,
"properties": {
"facing": "east",
"half": "lower",
@@ -97446,7 +101843,7 @@
}
},
{
- "id": 11462,
+ "id": 11864,
"properties": {
"facing": "east",
"half": "lower",
@@ -97456,7 +101853,7 @@
}
},
{
- "id": 11463,
+ "id": 11865,
"properties": {
"facing": "east",
"half": "lower",
@@ -97466,7 +101863,7 @@
}
},
{
- "id": 11464,
+ "id": 11866,
"properties": {
"facing": "east",
"half": "lower",
@@ -97476,7 +101873,7 @@
}
},
{
- "id": 11465,
+ "id": 11867,
"properties": {
"facing": "east",
"half": "lower",
@@ -97486,7 +101883,7 @@
}
},
{
- "id": 11466,
+ "id": 11868,
"properties": {
"facing": "east",
"half": "lower",
@@ -97522,7 +101919,7 @@
},
"states": [
{
- "id": 11115,
+ "id": 11485,
"properties": {
"east": "true",
"north": "true",
@@ -97532,7 +101929,7 @@
}
},
{
- "id": 11116,
+ "id": 11486,
"properties": {
"east": "true",
"north": "true",
@@ -97542,7 +101939,7 @@
}
},
{
- "id": 11117,
+ "id": 11487,
"properties": {
"east": "true",
"north": "true",
@@ -97552,7 +101949,7 @@
}
},
{
- "id": 11118,
+ "id": 11488,
"properties": {
"east": "true",
"north": "true",
@@ -97562,7 +101959,7 @@
}
},
{
- "id": 11119,
+ "id": 11489,
"properties": {
"east": "true",
"north": "true",
@@ -97572,7 +101969,7 @@
}
},
{
- "id": 11120,
+ "id": 11490,
"properties": {
"east": "true",
"north": "true",
@@ -97582,7 +101979,7 @@
}
},
{
- "id": 11121,
+ "id": 11491,
"properties": {
"east": "true",
"north": "true",
@@ -97592,7 +101989,7 @@
}
},
{
- "id": 11122,
+ "id": 11492,
"properties": {
"east": "true",
"north": "true",
@@ -97602,7 +101999,7 @@
}
},
{
- "id": 11123,
+ "id": 11493,
"properties": {
"east": "true",
"north": "false",
@@ -97612,7 +102009,7 @@
}
},
{
- "id": 11124,
+ "id": 11494,
"properties": {
"east": "true",
"north": "false",
@@ -97622,7 +102019,7 @@
}
},
{
- "id": 11125,
+ "id": 11495,
"properties": {
"east": "true",
"north": "false",
@@ -97632,7 +102029,7 @@
}
},
{
- "id": 11126,
+ "id": 11496,
"properties": {
"east": "true",
"north": "false",
@@ -97642,7 +102039,7 @@
}
},
{
- "id": 11127,
+ "id": 11497,
"properties": {
"east": "true",
"north": "false",
@@ -97652,7 +102049,7 @@
}
},
{
- "id": 11128,
+ "id": 11498,
"properties": {
"east": "true",
"north": "false",
@@ -97662,7 +102059,7 @@
}
},
{
- "id": 11129,
+ "id": 11499,
"properties": {
"east": "true",
"north": "false",
@@ -97672,7 +102069,7 @@
}
},
{
- "id": 11130,
+ "id": 11500,
"properties": {
"east": "true",
"north": "false",
@@ -97682,7 +102079,7 @@
}
},
{
- "id": 11131,
+ "id": 11501,
"properties": {
"east": "false",
"north": "true",
@@ -97692,7 +102089,7 @@
}
},
{
- "id": 11132,
+ "id": 11502,
"properties": {
"east": "false",
"north": "true",
@@ -97702,7 +102099,7 @@
}
},
{
- "id": 11133,
+ "id": 11503,
"properties": {
"east": "false",
"north": "true",
@@ -97712,7 +102109,7 @@
}
},
{
- "id": 11134,
+ "id": 11504,
"properties": {
"east": "false",
"north": "true",
@@ -97722,7 +102119,7 @@
}
},
{
- "id": 11135,
+ "id": 11505,
"properties": {
"east": "false",
"north": "true",
@@ -97732,7 +102129,7 @@
}
},
{
- "id": 11136,
+ "id": 11506,
"properties": {
"east": "false",
"north": "true",
@@ -97742,7 +102139,7 @@
}
},
{
- "id": 11137,
+ "id": 11507,
"properties": {
"east": "false",
"north": "true",
@@ -97752,7 +102149,7 @@
}
},
{
- "id": 11138,
+ "id": 11508,
"properties": {
"east": "false",
"north": "true",
@@ -97762,7 +102159,7 @@
}
},
{
- "id": 11139,
+ "id": 11509,
"properties": {
"east": "false",
"north": "false",
@@ -97772,7 +102169,7 @@
}
},
{
- "id": 11140,
+ "id": 11510,
"properties": {
"east": "false",
"north": "false",
@@ -97782,7 +102179,7 @@
}
},
{
- "id": 11141,
+ "id": 11511,
"properties": {
"east": "false",
"north": "false",
@@ -97792,7 +102189,7 @@
}
},
{
- "id": 11142,
+ "id": 11512,
"properties": {
"east": "false",
"north": "false",
@@ -97802,7 +102199,7 @@
}
},
{
- "id": 11143,
+ "id": 11513,
"properties": {
"east": "false",
"north": "false",
@@ -97812,7 +102209,7 @@
}
},
{
- "id": 11144,
+ "id": 11514,
"properties": {
"east": "false",
"north": "false",
@@ -97822,7 +102219,7 @@
}
},
{
- "id": 11145,
+ "id": 11515,
"properties": {
"east": "false",
"north": "false",
@@ -97833,7 +102230,7 @@
},
{
"default": true,
- "id": 11146,
+ "id": 11516,
"properties": {
"east": "false",
"north": "false",
@@ -97867,7 +102264,7 @@
},
"states": [
{
- "id": 10891,
+ "id": 11229,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -97876,7 +102273,7 @@
}
},
{
- "id": 10892,
+ "id": 11230,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -97885,7 +102282,7 @@
}
},
{
- "id": 10893,
+ "id": 11231,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -97894,7 +102291,7 @@
}
},
{
- "id": 10894,
+ "id": 11232,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -97903,7 +102300,7 @@
}
},
{
- "id": 10895,
+ "id": 11233,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -97912,7 +102309,7 @@
}
},
{
- "id": 10896,
+ "id": 11234,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -97921,7 +102318,7 @@
}
},
{
- "id": 10897,
+ "id": 11235,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -97931,7 +102328,7 @@
},
{
"default": true,
- "id": 10898,
+ "id": 11236,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -97940,7 +102337,7 @@
}
},
{
- "id": 10899,
+ "id": 11237,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -97949,7 +102346,7 @@
}
},
{
- "id": 10900,
+ "id": 11238,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -97958,7 +102355,7 @@
}
},
{
- "id": 10901,
+ "id": 11239,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -97967,7 +102364,7 @@
}
},
{
- "id": 10902,
+ "id": 11240,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -97976,7 +102373,7 @@
}
},
{
- "id": 10903,
+ "id": 11241,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -97985,7 +102382,7 @@
}
},
{
- "id": 10904,
+ "id": 11242,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -97994,7 +102391,7 @@
}
},
{
- "id": 10905,
+ "id": 11243,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -98003,7 +102400,7 @@
}
},
{
- "id": 10906,
+ "id": 11244,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -98012,7 +102409,7 @@
}
},
{
- "id": 10907,
+ "id": 11245,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -98021,7 +102418,7 @@
}
},
{
- "id": 10908,
+ "id": 11246,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -98030,7 +102427,7 @@
}
},
{
- "id": 10909,
+ "id": 11247,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -98039,7 +102436,7 @@
}
},
{
- "id": 10910,
+ "id": 11248,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -98048,7 +102445,7 @@
}
},
{
- "id": 10911,
+ "id": 11249,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -98057,7 +102454,7 @@
}
},
{
- "id": 10912,
+ "id": 11250,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -98066,7 +102463,7 @@
}
},
{
- "id": 10913,
+ "id": 11251,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -98075,7 +102472,7 @@
}
},
{
- "id": 10914,
+ "id": 11252,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -98084,7 +102481,7 @@
}
},
{
- "id": 10915,
+ "id": 11253,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -98093,7 +102490,7 @@
}
},
{
- "id": 10916,
+ "id": 11254,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -98102,7 +102499,7 @@
}
},
{
- "id": 10917,
+ "id": 11255,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -98111,7 +102508,7 @@
}
},
{
- "id": 10918,
+ "id": 11256,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -98120,7 +102517,7 @@
}
},
{
- "id": 10919,
+ "id": 11257,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -98129,7 +102526,7 @@
}
},
{
- "id": 10920,
+ "id": 11258,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -98138,7 +102535,7 @@
}
},
{
- "id": 10921,
+ "id": 11259,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -98147,7 +102544,7 @@
}
},
{
- "id": 10922,
+ "id": 11260,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -98188,7 +102585,7 @@
},
"states": [
{
- "id": 4998,
+ "id": 5150,
"properties": {
"attached": "true",
"rotation": "0",
@@ -98196,7 +102593,7 @@
}
},
{
- "id": 4999,
+ "id": 5151,
"properties": {
"attached": "true",
"rotation": "0",
@@ -98204,7 +102601,7 @@
}
},
{
- "id": 5000,
+ "id": 5152,
"properties": {
"attached": "true",
"rotation": "1",
@@ -98212,7 +102609,7 @@
}
},
{
- "id": 5001,
+ "id": 5153,
"properties": {
"attached": "true",
"rotation": "1",
@@ -98220,7 +102617,7 @@
}
},
{
- "id": 5002,
+ "id": 5154,
"properties": {
"attached": "true",
"rotation": "2",
@@ -98228,7 +102625,7 @@
}
},
{
- "id": 5003,
+ "id": 5155,
"properties": {
"attached": "true",
"rotation": "2",
@@ -98236,7 +102633,7 @@
}
},
{
- "id": 5004,
+ "id": 5156,
"properties": {
"attached": "true",
"rotation": "3",
@@ -98244,7 +102641,7 @@
}
},
{
- "id": 5005,
+ "id": 5157,
"properties": {
"attached": "true",
"rotation": "3",
@@ -98252,7 +102649,7 @@
}
},
{
- "id": 5006,
+ "id": 5158,
"properties": {
"attached": "true",
"rotation": "4",
@@ -98260,7 +102657,7 @@
}
},
{
- "id": 5007,
+ "id": 5159,
"properties": {
"attached": "true",
"rotation": "4",
@@ -98268,7 +102665,7 @@
}
},
{
- "id": 5008,
+ "id": 5160,
"properties": {
"attached": "true",
"rotation": "5",
@@ -98276,7 +102673,7 @@
}
},
{
- "id": 5009,
+ "id": 5161,
"properties": {
"attached": "true",
"rotation": "5",
@@ -98284,7 +102681,7 @@
}
},
{
- "id": 5010,
+ "id": 5162,
"properties": {
"attached": "true",
"rotation": "6",
@@ -98292,7 +102689,7 @@
}
},
{
- "id": 5011,
+ "id": 5163,
"properties": {
"attached": "true",
"rotation": "6",
@@ -98300,7 +102697,7 @@
}
},
{
- "id": 5012,
+ "id": 5164,
"properties": {
"attached": "true",
"rotation": "7",
@@ -98308,7 +102705,7 @@
}
},
{
- "id": 5013,
+ "id": 5165,
"properties": {
"attached": "true",
"rotation": "7",
@@ -98316,7 +102713,7 @@
}
},
{
- "id": 5014,
+ "id": 5166,
"properties": {
"attached": "true",
"rotation": "8",
@@ -98324,7 +102721,7 @@
}
},
{
- "id": 5015,
+ "id": 5167,
"properties": {
"attached": "true",
"rotation": "8",
@@ -98332,7 +102729,7 @@
}
},
{
- "id": 5016,
+ "id": 5168,
"properties": {
"attached": "true",
"rotation": "9",
@@ -98340,7 +102737,7 @@
}
},
{
- "id": 5017,
+ "id": 5169,
"properties": {
"attached": "true",
"rotation": "9",
@@ -98348,7 +102745,7 @@
}
},
{
- "id": 5018,
+ "id": 5170,
"properties": {
"attached": "true",
"rotation": "10",
@@ -98356,7 +102753,7 @@
}
},
{
- "id": 5019,
+ "id": 5171,
"properties": {
"attached": "true",
"rotation": "10",
@@ -98364,7 +102761,7 @@
}
},
{
- "id": 5020,
+ "id": 5172,
"properties": {
"attached": "true",
"rotation": "11",
@@ -98372,7 +102769,7 @@
}
},
{
- "id": 5021,
+ "id": 5173,
"properties": {
"attached": "true",
"rotation": "11",
@@ -98380,7 +102777,7 @@
}
},
{
- "id": 5022,
+ "id": 5174,
"properties": {
"attached": "true",
"rotation": "12",
@@ -98388,7 +102785,7 @@
}
},
{
- "id": 5023,
+ "id": 5175,
"properties": {
"attached": "true",
"rotation": "12",
@@ -98396,7 +102793,7 @@
}
},
{
- "id": 5024,
+ "id": 5176,
"properties": {
"attached": "true",
"rotation": "13",
@@ -98404,7 +102801,7 @@
}
},
{
- "id": 5025,
+ "id": 5177,
"properties": {
"attached": "true",
"rotation": "13",
@@ -98412,7 +102809,7 @@
}
},
{
- "id": 5026,
+ "id": 5178,
"properties": {
"attached": "true",
"rotation": "14",
@@ -98420,7 +102817,7 @@
}
},
{
- "id": 5027,
+ "id": 5179,
"properties": {
"attached": "true",
"rotation": "14",
@@ -98428,7 +102825,7 @@
}
},
{
- "id": 5028,
+ "id": 5180,
"properties": {
"attached": "true",
"rotation": "15",
@@ -98436,7 +102833,7 @@
}
},
{
- "id": 5029,
+ "id": 5181,
"properties": {
"attached": "true",
"rotation": "15",
@@ -98444,7 +102841,7 @@
}
},
{
- "id": 5030,
+ "id": 5182,
"properties": {
"attached": "false",
"rotation": "0",
@@ -98453,7 +102850,7 @@
},
{
"default": true,
- "id": 5031,
+ "id": 5183,
"properties": {
"attached": "false",
"rotation": "0",
@@ -98461,7 +102858,7 @@
}
},
{
- "id": 5032,
+ "id": 5184,
"properties": {
"attached": "false",
"rotation": "1",
@@ -98469,7 +102866,7 @@
}
},
{
- "id": 5033,
+ "id": 5185,
"properties": {
"attached": "false",
"rotation": "1",
@@ -98477,7 +102874,7 @@
}
},
{
- "id": 5034,
+ "id": 5186,
"properties": {
"attached": "false",
"rotation": "2",
@@ -98485,7 +102882,7 @@
}
},
{
- "id": 5035,
+ "id": 5187,
"properties": {
"attached": "false",
"rotation": "2",
@@ -98493,7 +102890,7 @@
}
},
{
- "id": 5036,
+ "id": 5188,
"properties": {
"attached": "false",
"rotation": "3",
@@ -98501,7 +102898,7 @@
}
},
{
- "id": 5037,
+ "id": 5189,
"properties": {
"attached": "false",
"rotation": "3",
@@ -98509,7 +102906,7 @@
}
},
{
- "id": 5038,
+ "id": 5190,
"properties": {
"attached": "false",
"rotation": "4",
@@ -98517,7 +102914,7 @@
}
},
{
- "id": 5039,
+ "id": 5191,
"properties": {
"attached": "false",
"rotation": "4",
@@ -98525,7 +102922,7 @@
}
},
{
- "id": 5040,
+ "id": 5192,
"properties": {
"attached": "false",
"rotation": "5",
@@ -98533,7 +102930,7 @@
}
},
{
- "id": 5041,
+ "id": 5193,
"properties": {
"attached": "false",
"rotation": "5",
@@ -98541,7 +102938,7 @@
}
},
{
- "id": 5042,
+ "id": 5194,
"properties": {
"attached": "false",
"rotation": "6",
@@ -98549,7 +102946,7 @@
}
},
{
- "id": 5043,
+ "id": 5195,
"properties": {
"attached": "false",
"rotation": "6",
@@ -98557,7 +102954,7 @@
}
},
{
- "id": 5044,
+ "id": 5196,
"properties": {
"attached": "false",
"rotation": "7",
@@ -98565,7 +102962,7 @@
}
},
{
- "id": 5045,
+ "id": 5197,
"properties": {
"attached": "false",
"rotation": "7",
@@ -98573,7 +102970,7 @@
}
},
{
- "id": 5046,
+ "id": 5198,
"properties": {
"attached": "false",
"rotation": "8",
@@ -98581,7 +102978,7 @@
}
},
{
- "id": 5047,
+ "id": 5199,
"properties": {
"attached": "false",
"rotation": "8",
@@ -98589,7 +102986,7 @@
}
},
{
- "id": 5048,
+ "id": 5200,
"properties": {
"attached": "false",
"rotation": "9",
@@ -98597,7 +102994,7 @@
}
},
{
- "id": 5049,
+ "id": 5201,
"properties": {
"attached": "false",
"rotation": "9",
@@ -98605,7 +103002,7 @@
}
},
{
- "id": 5050,
+ "id": 5202,
"properties": {
"attached": "false",
"rotation": "10",
@@ -98613,7 +103010,7 @@
}
},
{
- "id": 5051,
+ "id": 5203,
"properties": {
"attached": "false",
"rotation": "10",
@@ -98621,7 +103018,7 @@
}
},
{
- "id": 5052,
+ "id": 5204,
"properties": {
"attached": "false",
"rotation": "11",
@@ -98629,7 +103026,7 @@
}
},
{
- "id": 5053,
+ "id": 5205,
"properties": {
"attached": "false",
"rotation": "11",
@@ -98637,7 +103034,7 @@
}
},
{
- "id": 5054,
+ "id": 5206,
"properties": {
"attached": "false",
"rotation": "12",
@@ -98645,7 +103042,7 @@
}
},
{
- "id": 5055,
+ "id": 5207,
"properties": {
"attached": "false",
"rotation": "12",
@@ -98653,7 +103050,7 @@
}
},
{
- "id": 5056,
+ "id": 5208,
"properties": {
"attached": "false",
"rotation": "13",
@@ -98661,7 +103058,7 @@
}
},
{
- "id": 5057,
+ "id": 5209,
"properties": {
"attached": "false",
"rotation": "13",
@@ -98669,7 +103066,7 @@
}
},
{
- "id": 5058,
+ "id": 5210,
"properties": {
"attached": "false",
"rotation": "14",
@@ -98677,7 +103074,7 @@
}
},
{
- "id": 5059,
+ "id": 5211,
"properties": {
"attached": "false",
"rotation": "14",
@@ -98685,7 +103082,7 @@
}
},
{
- "id": 5060,
+ "id": 5212,
"properties": {
"attached": "false",
"rotation": "15",
@@ -98693,7 +103090,7 @@
}
},
{
- "id": 5061,
+ "id": 5213,
"properties": {
"attached": "false",
"rotation": "15",
@@ -98723,192 +103120,192 @@
]
},
"states": [
- {
- "id": 298,
- "properties": {
- "distance": "1",
- "persistent": "true",
- "waterlogged": "true"
- }
- },
- {
- "id": 299,
- "properties": {
- "distance": "1",
- "persistent": "true",
- "waterlogged": "false"
- }
- },
- {
- "id": 300,
- "properties": {
- "distance": "1",
- "persistent": "false",
- "waterlogged": "true"
- }
- },
- {
- "id": 301,
- "properties": {
- "distance": "1",
- "persistent": "false",
- "waterlogged": "false"
- }
- },
- {
- "id": 302,
- "properties": {
- "distance": "2",
- "persistent": "true",
- "waterlogged": "true"
- }
- },
- {
- "id": 303,
- "properties": {
- "distance": "2",
- "persistent": "true",
- "waterlogged": "false"
- }
- },
- {
- "id": 304,
- "properties": {
- "distance": "2",
- "persistent": "false",
- "waterlogged": "true"
- }
- },
- {
- "id": 305,
- "properties": {
- "distance": "2",
- "persistent": "false",
- "waterlogged": "false"
- }
- },
- {
- "id": 306,
- "properties": {
- "distance": "3",
- "persistent": "true",
- "waterlogged": "true"
- }
- },
- {
- "id": 307,
- "properties": {
- "distance": "3",
- "persistent": "true",
- "waterlogged": "false"
- }
- },
- {
- "id": 308,
- "properties": {
- "distance": "3",
- "persistent": "false",
- "waterlogged": "true"
- }
- },
- {
- "id": 309,
- "properties": {
- "distance": "3",
- "persistent": "false",
- "waterlogged": "false"
- }
- },
- {
- "id": 310,
- "properties": {
- "distance": "4",
- "persistent": "true",
- "waterlogged": "true"
- }
- },
- {
- "id": 311,
- "properties": {
- "distance": "4",
- "persistent": "true",
- "waterlogged": "false"
- }
- },
- {
- "id": 312,
- "properties": {
- "distance": "4",
- "persistent": "false",
- "waterlogged": "true"
- }
- },
- {
- "id": 313,
- "properties": {
- "distance": "4",
- "persistent": "false",
- "waterlogged": "false"
- }
- },
- {
- "id": 314,
- "properties": {
- "distance": "5",
- "persistent": "true",
- "waterlogged": "true"
- }
- },
- {
- "id": 315,
- "properties": {
- "distance": "5",
- "persistent": "true",
- "waterlogged": "false"
- }
- },
- {
- "id": 316,
- "properties": {
- "distance": "5",
- "persistent": "false",
- "waterlogged": "true"
- }
- },
{
"id": 317,
"properties": {
- "distance": "5",
- "persistent": "false",
- "waterlogged": "false"
+ "distance": "1",
+ "persistent": "true",
+ "waterlogged": "true"
}
},
{
"id": 318,
"properties": {
- "distance": "6",
+ "distance": "1",
"persistent": "true",
- "waterlogged": "true"
+ "waterlogged": "false"
}
},
{
"id": 319,
"properties": {
- "distance": "6",
- "persistent": "true",
- "waterlogged": "false"
+ "distance": "1",
+ "persistent": "false",
+ "waterlogged": "true"
}
},
{
"id": 320,
"properties": {
- "distance": "6",
+ "distance": "1",
"persistent": "false",
- "waterlogged": "true"
+ "waterlogged": "false"
}
},
{
"id": 321,
+ "properties": {
+ "distance": "2",
+ "persistent": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 322,
+ "properties": {
+ "distance": "2",
+ "persistent": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 323,
+ "properties": {
+ "distance": "2",
+ "persistent": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 324,
+ "properties": {
+ "distance": "2",
+ "persistent": "false",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 325,
+ "properties": {
+ "distance": "3",
+ "persistent": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 326,
+ "properties": {
+ "distance": "3",
+ "persistent": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 327,
+ "properties": {
+ "distance": "3",
+ "persistent": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 328,
+ "properties": {
+ "distance": "3",
+ "persistent": "false",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 329,
+ "properties": {
+ "distance": "4",
+ "persistent": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 330,
+ "properties": {
+ "distance": "4",
+ "persistent": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 331,
+ "properties": {
+ "distance": "4",
+ "persistent": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 332,
+ "properties": {
+ "distance": "4",
+ "persistent": "false",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 333,
+ "properties": {
+ "distance": "5",
+ "persistent": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 334,
+ "properties": {
+ "distance": "5",
+ "persistent": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 335,
+ "properties": {
+ "distance": "5",
+ "persistent": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 336,
+ "properties": {
+ "distance": "5",
+ "persistent": "false",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 337,
+ "properties": {
+ "distance": "6",
+ "persistent": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 338,
+ "properties": {
+ "distance": "6",
+ "persistent": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 339,
+ "properties": {
+ "distance": "6",
+ "persistent": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 340,
"properties": {
"distance": "6",
"persistent": "false",
@@ -98916,7 +103313,7 @@
}
},
{
- "id": 322,
+ "id": 341,
"properties": {
"distance": "7",
"persistent": "true",
@@ -98924,7 +103321,7 @@
}
},
{
- "id": 323,
+ "id": 342,
"properties": {
"distance": "7",
"persistent": "true",
@@ -98932,7 +103329,7 @@
}
},
{
- "id": 324,
+ "id": 343,
"properties": {
"distance": "7",
"persistent": "false",
@@ -98941,7 +103338,7 @@
},
{
"default": true,
- "id": 325,
+ "id": 344,
"properties": {
"distance": "7",
"persistent": "false",
@@ -98960,20 +103357,20 @@
},
"states": [
{
- "id": 128,
+ "id": 135,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 129,
+ "id": 136,
"properties": {
"axis": "y"
}
},
{
- "id": 130,
+ "id": 137,
"properties": {
"axis": "z"
}
@@ -98997,14 +103394,14 @@
},
"states": [
{
- "id": 5558,
+ "id": 5718,
"properties": {
"powered": "true"
}
},
{
"default": true,
- "id": 5559,
+ "id": 5719,
"properties": {
"powered": "false"
}
@@ -99021,13 +103418,13 @@
"states": [
{
"default": true,
- "id": 30,
+ "id": 31,
"properties": {
"stage": "0"
}
},
{
- "id": 31,
+ "id": 32,
"properties": {
"stage": "1"
}
@@ -99061,7 +103458,7 @@
},
"states": [
{
- "id": 4378,
+ "id": 4458,
"properties": {
"rotation": "0",
"waterlogged": "true"
@@ -99069,217 +103466,217 @@
},
{
"default": true,
- "id": 4379,
+ "id": 4459,
"properties": {
"rotation": "0",
"waterlogged": "false"
}
},
{
- "id": 4380,
+ "id": 4460,
"properties": {
"rotation": "1",
"waterlogged": "true"
}
},
{
- "id": 4381,
+ "id": 4461,
"properties": {
"rotation": "1",
"waterlogged": "false"
}
},
{
- "id": 4382,
+ "id": 4462,
"properties": {
"rotation": "2",
"waterlogged": "true"
}
},
{
- "id": 4383,
+ "id": 4463,
"properties": {
"rotation": "2",
"waterlogged": "false"
}
},
{
- "id": 4384,
+ "id": 4464,
"properties": {
"rotation": "3",
"waterlogged": "true"
}
},
{
- "id": 4385,
+ "id": 4465,
"properties": {
"rotation": "3",
"waterlogged": "false"
}
},
{
- "id": 4386,
+ "id": 4466,
"properties": {
"rotation": "4",
"waterlogged": "true"
}
},
{
- "id": 4387,
+ "id": 4467,
"properties": {
"rotation": "4",
"waterlogged": "false"
}
},
{
- "id": 4388,
+ "id": 4468,
"properties": {
"rotation": "5",
"waterlogged": "true"
}
},
{
- "id": 4389,
+ "id": 4469,
"properties": {
"rotation": "5",
"waterlogged": "false"
}
},
{
- "id": 4390,
+ "id": 4470,
"properties": {
"rotation": "6",
"waterlogged": "true"
}
},
{
- "id": 4391,
+ "id": 4471,
"properties": {
"rotation": "6",
"waterlogged": "false"
}
},
{
- "id": 4392,
+ "id": 4472,
"properties": {
"rotation": "7",
"waterlogged": "true"
}
},
{
- "id": 4393,
+ "id": 4473,
"properties": {
"rotation": "7",
"waterlogged": "false"
}
},
{
- "id": 4394,
+ "id": 4474,
"properties": {
"rotation": "8",
"waterlogged": "true"
}
},
{
- "id": 4395,
+ "id": 4475,
"properties": {
"rotation": "8",
"waterlogged": "false"
}
},
{
- "id": 4396,
+ "id": 4476,
"properties": {
"rotation": "9",
"waterlogged": "true"
}
},
{
- "id": 4397,
+ "id": 4477,
"properties": {
"rotation": "9",
"waterlogged": "false"
}
},
{
- "id": 4398,
+ "id": 4478,
"properties": {
"rotation": "10",
"waterlogged": "true"
}
},
{
- "id": 4399,
+ "id": 4479,
"properties": {
"rotation": "10",
"waterlogged": "false"
}
},
{
- "id": 4400,
+ "id": 4480,
"properties": {
"rotation": "11",
"waterlogged": "true"
}
},
{
- "id": 4401,
+ "id": 4481,
"properties": {
"rotation": "11",
"waterlogged": "false"
}
},
{
- "id": 4402,
+ "id": 4482,
"properties": {
"rotation": "12",
"waterlogged": "true"
}
},
{
- "id": 4403,
+ "id": 4483,
"properties": {
"rotation": "12",
"waterlogged": "false"
}
},
{
- "id": 4404,
+ "id": 4484,
"properties": {
"rotation": "13",
"waterlogged": "true"
}
},
{
- "id": 4405,
+ "id": 4485,
"properties": {
"rotation": "13",
"waterlogged": "false"
}
},
{
- "id": 4406,
+ "id": 4486,
"properties": {
"rotation": "14",
"waterlogged": "true"
}
},
{
- "id": 4407,
+ "id": 4487,
"properties": {
"rotation": "14",
"waterlogged": "false"
}
},
{
- "id": 4408,
+ "id": 4488,
"properties": {
"rotation": "15",
"waterlogged": "true"
}
},
{
- "id": 4409,
+ "id": 4489,
"properties": {
"rotation": "15",
"waterlogged": "false"
@@ -99301,21 +103698,21 @@
},
"states": [
{
- "id": 10703,
+ "id": 11035,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 10704,
+ "id": 11036,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 10705,
+ "id": 11037,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -99323,21 +103720,21 @@
},
{
"default": true,
- "id": 10706,
+ "id": 11038,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 10707,
+ "id": 11039,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 10708,
+ "id": 11040,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -99371,7 +103768,7 @@
},
"states": [
{
- "id": 7596,
+ "id": 7822,
"properties": {
"facing": "north",
"half": "top",
@@ -99380,7 +103777,7 @@
}
},
{
- "id": 7597,
+ "id": 7823,
"properties": {
"facing": "north",
"half": "top",
@@ -99389,7 +103786,7 @@
}
},
{
- "id": 7598,
+ "id": 7824,
"properties": {
"facing": "north",
"half": "top",
@@ -99398,7 +103795,7 @@
}
},
{
- "id": 7599,
+ "id": 7825,
"properties": {
"facing": "north",
"half": "top",
@@ -99407,7 +103804,7 @@
}
},
{
- "id": 7600,
+ "id": 7826,
"properties": {
"facing": "north",
"half": "top",
@@ -99416,7 +103813,7 @@
}
},
{
- "id": 7601,
+ "id": 7827,
"properties": {
"facing": "north",
"half": "top",
@@ -99425,7 +103822,7 @@
}
},
{
- "id": 7602,
+ "id": 7828,
"properties": {
"facing": "north",
"half": "top",
@@ -99434,7 +103831,7 @@
}
},
{
- "id": 7603,
+ "id": 7829,
"properties": {
"facing": "north",
"half": "top",
@@ -99443,7 +103840,7 @@
}
},
{
- "id": 7604,
+ "id": 7830,
"properties": {
"facing": "north",
"half": "top",
@@ -99452,7 +103849,7 @@
}
},
{
- "id": 7605,
+ "id": 7831,
"properties": {
"facing": "north",
"half": "top",
@@ -99461,7 +103858,7 @@
}
},
{
- "id": 7606,
+ "id": 7832,
"properties": {
"facing": "north",
"half": "bottom",
@@ -99471,7 +103868,7 @@
},
{
"default": true,
- "id": 7607,
+ "id": 7833,
"properties": {
"facing": "north",
"half": "bottom",
@@ -99480,7 +103877,7 @@
}
},
{
- "id": 7608,
+ "id": 7834,
"properties": {
"facing": "north",
"half": "bottom",
@@ -99489,7 +103886,7 @@
}
},
{
- "id": 7609,
+ "id": 7835,
"properties": {
"facing": "north",
"half": "bottom",
@@ -99498,7 +103895,7 @@
}
},
{
- "id": 7610,
+ "id": 7836,
"properties": {
"facing": "north",
"half": "bottom",
@@ -99507,7 +103904,7 @@
}
},
{
- "id": 7611,
+ "id": 7837,
"properties": {
"facing": "north",
"half": "bottom",
@@ -99516,7 +103913,7 @@
}
},
{
- "id": 7612,
+ "id": 7838,
"properties": {
"facing": "north",
"half": "bottom",
@@ -99525,7 +103922,7 @@
}
},
{
- "id": 7613,
+ "id": 7839,
"properties": {
"facing": "north",
"half": "bottom",
@@ -99534,7 +103931,7 @@
}
},
{
- "id": 7614,
+ "id": 7840,
"properties": {
"facing": "north",
"half": "bottom",
@@ -99543,7 +103940,7 @@
}
},
{
- "id": 7615,
+ "id": 7841,
"properties": {
"facing": "north",
"half": "bottom",
@@ -99552,7 +103949,7 @@
}
},
{
- "id": 7616,
+ "id": 7842,
"properties": {
"facing": "south",
"half": "top",
@@ -99561,7 +103958,7 @@
}
},
{
- "id": 7617,
+ "id": 7843,
"properties": {
"facing": "south",
"half": "top",
@@ -99570,7 +103967,7 @@
}
},
{
- "id": 7618,
+ "id": 7844,
"properties": {
"facing": "south",
"half": "top",
@@ -99579,7 +103976,7 @@
}
},
{
- "id": 7619,
+ "id": 7845,
"properties": {
"facing": "south",
"half": "top",
@@ -99588,7 +103985,7 @@
}
},
{
- "id": 7620,
+ "id": 7846,
"properties": {
"facing": "south",
"half": "top",
@@ -99597,7 +103994,7 @@
}
},
{
- "id": 7621,
+ "id": 7847,
"properties": {
"facing": "south",
"half": "top",
@@ -99606,7 +104003,7 @@
}
},
{
- "id": 7622,
+ "id": 7848,
"properties": {
"facing": "south",
"half": "top",
@@ -99615,7 +104012,7 @@
}
},
{
- "id": 7623,
+ "id": 7849,
"properties": {
"facing": "south",
"half": "top",
@@ -99624,7 +104021,7 @@
}
},
{
- "id": 7624,
+ "id": 7850,
"properties": {
"facing": "south",
"half": "top",
@@ -99633,7 +104030,7 @@
}
},
{
- "id": 7625,
+ "id": 7851,
"properties": {
"facing": "south",
"half": "top",
@@ -99642,7 +104039,7 @@
}
},
{
- "id": 7626,
+ "id": 7852,
"properties": {
"facing": "south",
"half": "bottom",
@@ -99651,7 +104048,7 @@
}
},
{
- "id": 7627,
+ "id": 7853,
"properties": {
"facing": "south",
"half": "bottom",
@@ -99660,7 +104057,7 @@
}
},
{
- "id": 7628,
+ "id": 7854,
"properties": {
"facing": "south",
"half": "bottom",
@@ -99669,7 +104066,7 @@
}
},
{
- "id": 7629,
+ "id": 7855,
"properties": {
"facing": "south",
"half": "bottom",
@@ -99678,7 +104075,7 @@
}
},
{
- "id": 7630,
+ "id": 7856,
"properties": {
"facing": "south",
"half": "bottom",
@@ -99687,7 +104084,7 @@
}
},
{
- "id": 7631,
+ "id": 7857,
"properties": {
"facing": "south",
"half": "bottom",
@@ -99696,7 +104093,7 @@
}
},
{
- "id": 7632,
+ "id": 7858,
"properties": {
"facing": "south",
"half": "bottom",
@@ -99705,7 +104102,7 @@
}
},
{
- "id": 7633,
+ "id": 7859,
"properties": {
"facing": "south",
"half": "bottom",
@@ -99714,7 +104111,7 @@
}
},
{
- "id": 7634,
+ "id": 7860,
"properties": {
"facing": "south",
"half": "bottom",
@@ -99723,7 +104120,7 @@
}
},
{
- "id": 7635,
+ "id": 7861,
"properties": {
"facing": "south",
"half": "bottom",
@@ -99732,7 +104129,7 @@
}
},
{
- "id": 7636,
+ "id": 7862,
"properties": {
"facing": "west",
"half": "top",
@@ -99741,7 +104138,7 @@
}
},
{
- "id": 7637,
+ "id": 7863,
"properties": {
"facing": "west",
"half": "top",
@@ -99750,7 +104147,7 @@
}
},
{
- "id": 7638,
+ "id": 7864,
"properties": {
"facing": "west",
"half": "top",
@@ -99759,7 +104156,7 @@
}
},
{
- "id": 7639,
+ "id": 7865,
"properties": {
"facing": "west",
"half": "top",
@@ -99768,7 +104165,7 @@
}
},
{
- "id": 7640,
+ "id": 7866,
"properties": {
"facing": "west",
"half": "top",
@@ -99777,7 +104174,7 @@
}
},
{
- "id": 7641,
+ "id": 7867,
"properties": {
"facing": "west",
"half": "top",
@@ -99786,7 +104183,7 @@
}
},
{
- "id": 7642,
+ "id": 7868,
"properties": {
"facing": "west",
"half": "top",
@@ -99795,7 +104192,7 @@
}
},
{
- "id": 7643,
+ "id": 7869,
"properties": {
"facing": "west",
"half": "top",
@@ -99804,7 +104201,7 @@
}
},
{
- "id": 7644,
+ "id": 7870,
"properties": {
"facing": "west",
"half": "top",
@@ -99813,7 +104210,7 @@
}
},
{
- "id": 7645,
+ "id": 7871,
"properties": {
"facing": "west",
"half": "top",
@@ -99822,7 +104219,7 @@
}
},
{
- "id": 7646,
+ "id": 7872,
"properties": {
"facing": "west",
"half": "bottom",
@@ -99831,7 +104228,7 @@
}
},
{
- "id": 7647,
+ "id": 7873,
"properties": {
"facing": "west",
"half": "bottom",
@@ -99840,7 +104237,7 @@
}
},
{
- "id": 7648,
+ "id": 7874,
"properties": {
"facing": "west",
"half": "bottom",
@@ -99849,7 +104246,7 @@
}
},
{
- "id": 7649,
+ "id": 7875,
"properties": {
"facing": "west",
"half": "bottom",
@@ -99858,7 +104255,7 @@
}
},
{
- "id": 7650,
+ "id": 7876,
"properties": {
"facing": "west",
"half": "bottom",
@@ -99867,7 +104264,7 @@
}
},
{
- "id": 7651,
+ "id": 7877,
"properties": {
"facing": "west",
"half": "bottom",
@@ -99876,7 +104273,7 @@
}
},
{
- "id": 7652,
+ "id": 7878,
"properties": {
"facing": "west",
"half": "bottom",
@@ -99885,7 +104282,7 @@
}
},
{
- "id": 7653,
+ "id": 7879,
"properties": {
"facing": "west",
"half": "bottom",
@@ -99894,7 +104291,7 @@
}
},
{
- "id": 7654,
+ "id": 7880,
"properties": {
"facing": "west",
"half": "bottom",
@@ -99903,7 +104300,7 @@
}
},
{
- "id": 7655,
+ "id": 7881,
"properties": {
"facing": "west",
"half": "bottom",
@@ -99912,7 +104309,7 @@
}
},
{
- "id": 7656,
+ "id": 7882,
"properties": {
"facing": "east",
"half": "top",
@@ -99921,7 +104318,7 @@
}
},
{
- "id": 7657,
+ "id": 7883,
"properties": {
"facing": "east",
"half": "top",
@@ -99930,7 +104327,7 @@
}
},
{
- "id": 7658,
+ "id": 7884,
"properties": {
"facing": "east",
"half": "top",
@@ -99939,7 +104336,7 @@
}
},
{
- "id": 7659,
+ "id": 7885,
"properties": {
"facing": "east",
"half": "top",
@@ -99948,7 +104345,7 @@
}
},
{
- "id": 7660,
+ "id": 7886,
"properties": {
"facing": "east",
"half": "top",
@@ -99957,7 +104354,7 @@
}
},
{
- "id": 7661,
+ "id": 7887,
"properties": {
"facing": "east",
"half": "top",
@@ -99966,7 +104363,7 @@
}
},
{
- "id": 7662,
+ "id": 7888,
"properties": {
"facing": "east",
"half": "top",
@@ -99975,7 +104372,7 @@
}
},
{
- "id": 7663,
+ "id": 7889,
"properties": {
"facing": "east",
"half": "top",
@@ -99984,7 +104381,7 @@
}
},
{
- "id": 7664,
+ "id": 7890,
"properties": {
"facing": "east",
"half": "top",
@@ -99993,7 +104390,7 @@
}
},
{
- "id": 7665,
+ "id": 7891,
"properties": {
"facing": "east",
"half": "top",
@@ -100002,7 +104399,7 @@
}
},
{
- "id": 7666,
+ "id": 7892,
"properties": {
"facing": "east",
"half": "bottom",
@@ -100011,7 +104408,7 @@
}
},
{
- "id": 7667,
+ "id": 7893,
"properties": {
"facing": "east",
"half": "bottom",
@@ -100020,7 +104417,7 @@
}
},
{
- "id": 7668,
+ "id": 7894,
"properties": {
"facing": "east",
"half": "bottom",
@@ -100029,7 +104426,7 @@
}
},
{
- "id": 7669,
+ "id": 7895,
"properties": {
"facing": "east",
"half": "bottom",
@@ -100038,7 +104435,7 @@
}
},
{
- "id": 7670,
+ "id": 7896,
"properties": {
"facing": "east",
"half": "bottom",
@@ -100047,7 +104444,7 @@
}
},
{
- "id": 7671,
+ "id": 7897,
"properties": {
"facing": "east",
"half": "bottom",
@@ -100056,7 +104453,7 @@
}
},
{
- "id": 7672,
+ "id": 7898,
"properties": {
"facing": "east",
"half": "bottom",
@@ -100065,7 +104462,7 @@
}
},
{
- "id": 7673,
+ "id": 7899,
"properties": {
"facing": "east",
"half": "bottom",
@@ -100074,7 +104471,7 @@
}
},
{
- "id": 7674,
+ "id": 7900,
"properties": {
"facing": "east",
"half": "bottom",
@@ -100083,7 +104480,7 @@
}
},
{
- "id": 7675,
+ "id": 7901,
"properties": {
"facing": "east",
"half": "bottom",
@@ -100120,7 +104517,7 @@
},
"states": [
{
- "id": 5988,
+ "id": 6150,
"properties": {
"facing": "north",
"half": "top",
@@ -100130,7 +104527,7 @@
}
},
{
- "id": 5989,
+ "id": 6151,
"properties": {
"facing": "north",
"half": "top",
@@ -100140,7 +104537,7 @@
}
},
{
- "id": 5990,
+ "id": 6152,
"properties": {
"facing": "north",
"half": "top",
@@ -100150,7 +104547,7 @@
}
},
{
- "id": 5991,
+ "id": 6153,
"properties": {
"facing": "north",
"half": "top",
@@ -100160,7 +104557,7 @@
}
},
{
- "id": 5992,
+ "id": 6154,
"properties": {
"facing": "north",
"half": "top",
@@ -100170,7 +104567,7 @@
}
},
{
- "id": 5993,
+ "id": 6155,
"properties": {
"facing": "north",
"half": "top",
@@ -100180,7 +104577,7 @@
}
},
{
- "id": 5994,
+ "id": 6156,
"properties": {
"facing": "north",
"half": "top",
@@ -100190,7 +104587,7 @@
}
},
{
- "id": 5995,
+ "id": 6157,
"properties": {
"facing": "north",
"half": "top",
@@ -100200,7 +104597,7 @@
}
},
{
- "id": 5996,
+ "id": 6158,
"properties": {
"facing": "north",
"half": "bottom",
@@ -100210,7 +104607,7 @@
}
},
{
- "id": 5997,
+ "id": 6159,
"properties": {
"facing": "north",
"half": "bottom",
@@ -100220,7 +104617,7 @@
}
},
{
- "id": 5998,
+ "id": 6160,
"properties": {
"facing": "north",
"half": "bottom",
@@ -100230,7 +104627,7 @@
}
},
{
- "id": 5999,
+ "id": 6161,
"properties": {
"facing": "north",
"half": "bottom",
@@ -100240,7 +104637,7 @@
}
},
{
- "id": 6000,
+ "id": 6162,
"properties": {
"facing": "north",
"half": "bottom",
@@ -100250,7 +104647,7 @@
}
},
{
- "id": 6001,
+ "id": 6163,
"properties": {
"facing": "north",
"half": "bottom",
@@ -100260,7 +104657,7 @@
}
},
{
- "id": 6002,
+ "id": 6164,
"properties": {
"facing": "north",
"half": "bottom",
@@ -100271,7 +104668,7 @@
},
{
"default": true,
- "id": 6003,
+ "id": 6165,
"properties": {
"facing": "north",
"half": "bottom",
@@ -100281,7 +104678,7 @@
}
},
{
- "id": 6004,
+ "id": 6166,
"properties": {
"facing": "south",
"half": "top",
@@ -100291,7 +104688,7 @@
}
},
{
- "id": 6005,
+ "id": 6167,
"properties": {
"facing": "south",
"half": "top",
@@ -100301,7 +104698,7 @@
}
},
{
- "id": 6006,
+ "id": 6168,
"properties": {
"facing": "south",
"half": "top",
@@ -100311,7 +104708,7 @@
}
},
{
- "id": 6007,
+ "id": 6169,
"properties": {
"facing": "south",
"half": "top",
@@ -100321,7 +104718,7 @@
}
},
{
- "id": 6008,
+ "id": 6170,
"properties": {
"facing": "south",
"half": "top",
@@ -100331,7 +104728,7 @@
}
},
{
- "id": 6009,
+ "id": 6171,
"properties": {
"facing": "south",
"half": "top",
@@ -100341,7 +104738,7 @@
}
},
{
- "id": 6010,
+ "id": 6172,
"properties": {
"facing": "south",
"half": "top",
@@ -100351,7 +104748,7 @@
}
},
{
- "id": 6011,
+ "id": 6173,
"properties": {
"facing": "south",
"half": "top",
@@ -100361,7 +104758,7 @@
}
},
{
- "id": 6012,
+ "id": 6174,
"properties": {
"facing": "south",
"half": "bottom",
@@ -100371,7 +104768,7 @@
}
},
{
- "id": 6013,
+ "id": 6175,
"properties": {
"facing": "south",
"half": "bottom",
@@ -100381,7 +104778,7 @@
}
},
{
- "id": 6014,
+ "id": 6176,
"properties": {
"facing": "south",
"half": "bottom",
@@ -100391,7 +104788,7 @@
}
},
{
- "id": 6015,
+ "id": 6177,
"properties": {
"facing": "south",
"half": "bottom",
@@ -100401,7 +104798,7 @@
}
},
{
- "id": 6016,
+ "id": 6178,
"properties": {
"facing": "south",
"half": "bottom",
@@ -100411,7 +104808,7 @@
}
},
{
- "id": 6017,
+ "id": 6179,
"properties": {
"facing": "south",
"half": "bottom",
@@ -100421,7 +104818,7 @@
}
},
{
- "id": 6018,
+ "id": 6180,
"properties": {
"facing": "south",
"half": "bottom",
@@ -100431,7 +104828,7 @@
}
},
{
- "id": 6019,
+ "id": 6181,
"properties": {
"facing": "south",
"half": "bottom",
@@ -100441,7 +104838,7 @@
}
},
{
- "id": 6020,
+ "id": 6182,
"properties": {
"facing": "west",
"half": "top",
@@ -100451,7 +104848,7 @@
}
},
{
- "id": 6021,
+ "id": 6183,
"properties": {
"facing": "west",
"half": "top",
@@ -100461,7 +104858,7 @@
}
},
{
- "id": 6022,
+ "id": 6184,
"properties": {
"facing": "west",
"half": "top",
@@ -100471,7 +104868,7 @@
}
},
{
- "id": 6023,
+ "id": 6185,
"properties": {
"facing": "west",
"half": "top",
@@ -100481,7 +104878,7 @@
}
},
{
- "id": 6024,
+ "id": 6186,
"properties": {
"facing": "west",
"half": "top",
@@ -100491,7 +104888,7 @@
}
},
{
- "id": 6025,
+ "id": 6187,
"properties": {
"facing": "west",
"half": "top",
@@ -100501,7 +104898,7 @@
}
},
{
- "id": 6026,
+ "id": 6188,
"properties": {
"facing": "west",
"half": "top",
@@ -100511,7 +104908,7 @@
}
},
{
- "id": 6027,
+ "id": 6189,
"properties": {
"facing": "west",
"half": "top",
@@ -100521,7 +104918,7 @@
}
},
{
- "id": 6028,
+ "id": 6190,
"properties": {
"facing": "west",
"half": "bottom",
@@ -100531,7 +104928,7 @@
}
},
{
- "id": 6029,
+ "id": 6191,
"properties": {
"facing": "west",
"half": "bottom",
@@ -100541,7 +104938,7 @@
}
},
{
- "id": 6030,
+ "id": 6192,
"properties": {
"facing": "west",
"half": "bottom",
@@ -100551,7 +104948,7 @@
}
},
{
- "id": 6031,
+ "id": 6193,
"properties": {
"facing": "west",
"half": "bottom",
@@ -100561,7 +104958,7 @@
}
},
{
- "id": 6032,
+ "id": 6194,
"properties": {
"facing": "west",
"half": "bottom",
@@ -100571,7 +104968,7 @@
}
},
{
- "id": 6033,
+ "id": 6195,
"properties": {
"facing": "west",
"half": "bottom",
@@ -100581,7 +104978,7 @@
}
},
{
- "id": 6034,
+ "id": 6196,
"properties": {
"facing": "west",
"half": "bottom",
@@ -100591,7 +104988,7 @@
}
},
{
- "id": 6035,
+ "id": 6197,
"properties": {
"facing": "west",
"half": "bottom",
@@ -100601,7 +104998,7 @@
}
},
{
- "id": 6036,
+ "id": 6198,
"properties": {
"facing": "east",
"half": "top",
@@ -100611,7 +105008,7 @@
}
},
{
- "id": 6037,
+ "id": 6199,
"properties": {
"facing": "east",
"half": "top",
@@ -100621,7 +105018,7 @@
}
},
{
- "id": 6038,
+ "id": 6200,
"properties": {
"facing": "east",
"half": "top",
@@ -100631,7 +105028,7 @@
}
},
{
- "id": 6039,
+ "id": 6201,
"properties": {
"facing": "east",
"half": "top",
@@ -100641,7 +105038,7 @@
}
},
{
- "id": 6040,
+ "id": 6202,
"properties": {
"facing": "east",
"half": "top",
@@ -100651,7 +105048,7 @@
}
},
{
- "id": 6041,
+ "id": 6203,
"properties": {
"facing": "east",
"half": "top",
@@ -100661,7 +105058,7 @@
}
},
{
- "id": 6042,
+ "id": 6204,
"properties": {
"facing": "east",
"half": "top",
@@ -100671,7 +105068,7 @@
}
},
{
- "id": 6043,
+ "id": 6205,
"properties": {
"facing": "east",
"half": "top",
@@ -100681,7 +105078,7 @@
}
},
{
- "id": 6044,
+ "id": 6206,
"properties": {
"facing": "east",
"half": "bottom",
@@ -100691,7 +105088,7 @@
}
},
{
- "id": 6045,
+ "id": 6207,
"properties": {
"facing": "east",
"half": "bottom",
@@ -100701,7 +105098,7 @@
}
},
{
- "id": 6046,
+ "id": 6208,
"properties": {
"facing": "east",
"half": "bottom",
@@ -100711,7 +105108,7 @@
}
},
{
- "id": 6047,
+ "id": 6209,
"properties": {
"facing": "east",
"half": "bottom",
@@ -100721,7 +105118,7 @@
}
},
{
- "id": 6048,
+ "id": 6210,
"properties": {
"facing": "east",
"half": "bottom",
@@ -100731,7 +105128,7 @@
}
},
{
- "id": 6049,
+ "id": 6211,
"properties": {
"facing": "east",
"half": "bottom",
@@ -100741,7 +105138,7 @@
}
},
{
- "id": 6050,
+ "id": 6212,
"properties": {
"facing": "east",
"half": "bottom",
@@ -100751,7 +105148,7 @@
}
},
{
- "id": 6051,
+ "id": 6213,
"properties": {
"facing": "east",
"half": "bottom",
@@ -100777,7 +105174,7 @@
},
"states": [
{
- "id": 5414,
+ "id": 5574,
"properties": {
"facing": "north",
"waterlogged": "true"
@@ -100785,49 +105182,49 @@
},
{
"default": true,
- "id": 5415,
+ "id": 5575,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 5416,
+ "id": 5576,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 5417,
+ "id": 5577,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 5418,
+ "id": 5578,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 5419,
+ "id": 5579,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 5420,
+ "id": 5580,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 5421,
+ "id": 5581,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -100850,7 +105247,7 @@
},
"states": [
{
- "id": 4710,
+ "id": 4798,
"properties": {
"facing": "north",
"waterlogged": "true"
@@ -100858,49 +105255,49 @@
},
{
"default": true,
- "id": 4711,
+ "id": 4799,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 4712,
+ "id": 4800,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 4713,
+ "id": 4801,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 4714,
+ "id": 4802,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 4715,
+ "id": 4803,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 4716,
+ "id": 4804,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 4717,
+ "id": 4805,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -100918,20 +105315,20 @@
},
"states": [
{
- "id": 181,
+ "id": 194,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 182,
+ "id": 195,
"properties": {
"axis": "y"
}
},
{
- "id": 183,
+ "id": 196,
"properties": {
"axis": "z"
}
@@ -100972,157 +105369,157 @@
"states": [
{
"default": true,
- "id": 12135,
+ "id": 12604,
"properties": {
"age": "0"
}
},
{
- "id": 12136,
+ "id": 12605,
"properties": {
"age": "1"
}
},
{
- "id": 12137,
+ "id": 12606,
"properties": {
"age": "2"
}
},
{
- "id": 12138,
+ "id": 12607,
"properties": {
"age": "3"
}
},
{
- "id": 12139,
+ "id": 12608,
"properties": {
"age": "4"
}
},
{
- "id": 12140,
+ "id": 12609,
"properties": {
"age": "5"
}
},
{
- "id": 12141,
+ "id": 12610,
"properties": {
"age": "6"
}
},
{
- "id": 12142,
+ "id": 12611,
"properties": {
"age": "7"
}
},
{
- "id": 12143,
+ "id": 12612,
"properties": {
"age": "8"
}
},
{
- "id": 12144,
+ "id": 12613,
"properties": {
"age": "9"
}
},
{
- "id": 12145,
+ "id": 12614,
"properties": {
"age": "10"
}
},
{
- "id": 12146,
+ "id": 12615,
"properties": {
"age": "11"
}
},
{
- "id": 12147,
+ "id": 12616,
"properties": {
"age": "12"
}
},
{
- "id": 12148,
+ "id": 12617,
"properties": {
"age": "13"
}
},
{
- "id": 12149,
+ "id": 12618,
"properties": {
"age": "14"
}
},
{
- "id": 12150,
+ "id": 12619,
"properties": {
"age": "15"
}
},
{
- "id": 12151,
+ "id": 12620,
"properties": {
"age": "16"
}
},
{
- "id": 12152,
+ "id": 12621,
"properties": {
"age": "17"
}
},
{
- "id": 12153,
+ "id": 12622,
"properties": {
"age": "18"
}
},
{
- "id": 12154,
+ "id": 12623,
"properties": {
"age": "19"
}
},
{
- "id": 12155,
+ "id": 12624,
"properties": {
"age": "20"
}
},
{
- "id": 12156,
+ "id": 12625,
"properties": {
"age": "21"
}
},
{
- "id": 12157,
+ "id": 12626,
"properties": {
"age": "22"
}
},
{
- "id": 12158,
+ "id": 12627,
"properties": {
"age": "23"
}
},
{
- "id": 12159,
+ "id": 12628,
"properties": {
"age": "24"
}
},
{
- "id": 12160,
+ "id": 12629,
"properties": {
"age": "25"
}
@@ -101133,7 +105530,7 @@
"states": [
{
"default": true,
- "id": 12161
+ "id": 12630
}
]
},
@@ -101152,7 +105549,7 @@
},
"states": [
{
- "id": 4570,
+ "id": 4650,
"properties": {
"facing": "north",
"waterlogged": "true"
@@ -101160,49 +105557,49 @@
},
{
"default": true,
- "id": 4571,
+ "id": 4651,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 4572,
+ "id": 4652,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 4573,
+ "id": 4653,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 4574,
+ "id": 4654,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 4575,
+ "id": 4655,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 4576,
+ "id": 4656,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 4577,
+ "id": 4657,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -101223,21 +105620,21 @@
},
"states": [
{
- "id": 17875,
+ "id": 18344,
"properties": {
"hanging": "true",
"waterlogged": "true"
}
},
{
- "id": 17876,
+ "id": 18345,
"properties": {
"hanging": "true",
"waterlogged": "false"
}
},
{
- "id": 17877,
+ "id": 18346,
"properties": {
"hanging": "false",
"waterlogged": "true"
@@ -101245,7 +105642,7 @@
},
{
"default": true,
- "id": 17878,
+ "id": 18347,
"properties": {
"hanging": "false",
"waterlogged": "false"
@@ -101257,7 +105654,7 @@
"states": [
{
"default": true,
- "id": 471
+ "id": 518
}
]
},
@@ -101265,7 +105662,7 @@
"states": [
{
"default": true,
- "id": 469
+ "id": 516
}
]
},
@@ -101286,63 +105683,63 @@
},
"states": [
{
- "id": 20417,
+ "id": 20886,
"properties": {
"facing": "north",
"waterlogged": "true"
}
},
{
- "id": 20418,
+ "id": 20887,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 20419,
+ "id": 20888,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 20420,
+ "id": 20889,
"properties": {
"facing": "east",
"waterlogged": "false"
}
},
{
- "id": 20421,
+ "id": 20890,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 20422,
+ "id": 20891,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 20423,
+ "id": 20892,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 20424,
+ "id": 20893,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 20425,
+ "id": 20894,
"properties": {
"facing": "up",
"waterlogged": "true"
@@ -101350,21 +105747,21 @@
},
{
"default": true,
- "id": 20426,
+ "id": 20895,
"properties": {
"facing": "up",
"waterlogged": "false"
}
},
{
- "id": 20427,
+ "id": 20896,
"properties": {
"facing": "down",
"waterlogged": "true"
}
},
{
- "id": 20428,
+ "id": 20897,
"properties": {
"facing": "down",
"waterlogged": "false"
@@ -101381,14 +105778,14 @@
},
"states": [
{
- "id": 10280,
+ "id": 10612,
"properties": {
"half": "upper"
}
},
{
"default": true,
- "id": 10281,
+ "id": 10613,
"properties": {
"half": "lower"
}
@@ -101419,97 +105816,97 @@
"states": [
{
"default": true,
- "id": 93,
+ "id": 96,
"properties": {
"level": "0"
}
},
{
- "id": 94,
+ "id": 97,
"properties": {
"level": "1"
}
},
{
- "id": 95,
+ "id": 98,
"properties": {
"level": "2"
}
},
{
- "id": 96,
+ "id": 99,
"properties": {
"level": "3"
}
},
{
- "id": 97,
+ "id": 100,
"properties": {
"level": "4"
}
},
{
- "id": 98,
+ "id": 101,
"properties": {
"level": "5"
}
},
{
- "id": 99,
+ "id": 102,
"properties": {
"level": "6"
}
},
{
- "id": 100,
+ "id": 103,
"properties": {
"level": "7"
}
},
{
- "id": 101,
+ "id": 104,
"properties": {
"level": "8"
}
},
{
- "id": 102,
+ "id": 105,
"properties": {
"level": "9"
}
},
{
- "id": 103,
+ "id": 106,
"properties": {
"level": "10"
}
},
{
- "id": 104,
+ "id": 107,
"properties": {
"level": "11"
}
},
{
- "id": 105,
+ "id": 108,
"properties": {
"level": "12"
}
},
{
- "id": 106,
+ "id": 109,
"properties": {
"level": "13"
}
},
{
- "id": 107,
+ "id": 110,
"properties": {
"level": "14"
}
},
{
- "id": 108,
+ "id": 111,
"properties": {
"level": "15"
}
@@ -101520,7 +105917,7 @@
"states": [
{
"default": true,
- "id": 7172
+ "id": 7398
}
]
},
@@ -101543,7 +105940,7 @@
},
"states": [
{
- "id": 17822,
+ "id": 18291,
"properties": {
"facing": "north",
"has_book": "true",
@@ -101551,7 +105948,7 @@
}
},
{
- "id": 17823,
+ "id": 18292,
"properties": {
"facing": "north",
"has_book": "true",
@@ -101559,7 +105956,7 @@
}
},
{
- "id": 17824,
+ "id": 18293,
"properties": {
"facing": "north",
"has_book": "false",
@@ -101568,7 +105965,7 @@
},
{
"default": true,
- "id": 17825,
+ "id": 18294,
"properties": {
"facing": "north",
"has_book": "false",
@@ -101576,7 +105973,7 @@
}
},
{
- "id": 17826,
+ "id": 18295,
"properties": {
"facing": "south",
"has_book": "true",
@@ -101584,7 +105981,7 @@
}
},
{
- "id": 17827,
+ "id": 18296,
"properties": {
"facing": "south",
"has_book": "true",
@@ -101592,7 +105989,7 @@
}
},
{
- "id": 17828,
+ "id": 18297,
"properties": {
"facing": "south",
"has_book": "false",
@@ -101600,7 +105997,7 @@
}
},
{
- "id": 17829,
+ "id": 18298,
"properties": {
"facing": "south",
"has_book": "false",
@@ -101608,7 +106005,7 @@
}
},
{
- "id": 17830,
+ "id": 18299,
"properties": {
"facing": "west",
"has_book": "true",
@@ -101616,7 +106013,7 @@
}
},
{
- "id": 17831,
+ "id": 18300,
"properties": {
"facing": "west",
"has_book": "true",
@@ -101624,7 +106021,7 @@
}
},
{
- "id": 17832,
+ "id": 18301,
"properties": {
"facing": "west",
"has_book": "false",
@@ -101632,7 +106029,7 @@
}
},
{
- "id": 17833,
+ "id": 18302,
"properties": {
"facing": "west",
"has_book": "false",
@@ -101640,7 +106037,7 @@
}
},
{
- "id": 17834,
+ "id": 18303,
"properties": {
"facing": "east",
"has_book": "true",
@@ -101648,7 +106045,7 @@
}
},
{
- "id": 17835,
+ "id": 18304,
"properties": {
"facing": "east",
"has_book": "true",
@@ -101656,7 +106053,7 @@
}
},
{
- "id": 17836,
+ "id": 18305,
"properties": {
"facing": "east",
"has_book": "false",
@@ -101664,7 +106061,7 @@
}
},
{
- "id": 17837,
+ "id": 18306,
"properties": {
"facing": "east",
"has_book": "false",
@@ -101693,7 +106090,7 @@
},
"states": [
{
- "id": 5462,
+ "id": 5622,
"properties": {
"face": "floor",
"facing": "north",
@@ -101701,7 +106098,7 @@
}
},
{
- "id": 5463,
+ "id": 5623,
"properties": {
"face": "floor",
"facing": "north",
@@ -101709,7 +106106,7 @@
}
},
{
- "id": 5464,
+ "id": 5624,
"properties": {
"face": "floor",
"facing": "south",
@@ -101717,7 +106114,7 @@
}
},
{
- "id": 5465,
+ "id": 5625,
"properties": {
"face": "floor",
"facing": "south",
@@ -101725,7 +106122,7 @@
}
},
{
- "id": 5466,
+ "id": 5626,
"properties": {
"face": "floor",
"facing": "west",
@@ -101733,7 +106130,7 @@
}
},
{
- "id": 5467,
+ "id": 5627,
"properties": {
"face": "floor",
"facing": "west",
@@ -101741,7 +106138,7 @@
}
},
{
- "id": 5468,
+ "id": 5628,
"properties": {
"face": "floor",
"facing": "east",
@@ -101749,7 +106146,7 @@
}
},
{
- "id": 5469,
+ "id": 5629,
"properties": {
"face": "floor",
"facing": "east",
@@ -101757,7 +106154,7 @@
}
},
{
- "id": 5470,
+ "id": 5630,
"properties": {
"face": "wall",
"facing": "north",
@@ -101766,7 +106163,7 @@
},
{
"default": true,
- "id": 5471,
+ "id": 5631,
"properties": {
"face": "wall",
"facing": "north",
@@ -101774,7 +106171,7 @@
}
},
{
- "id": 5472,
+ "id": 5632,
"properties": {
"face": "wall",
"facing": "south",
@@ -101782,7 +106179,7 @@
}
},
{
- "id": 5473,
+ "id": 5633,
"properties": {
"face": "wall",
"facing": "south",
@@ -101790,7 +106187,7 @@
}
},
{
- "id": 5474,
+ "id": 5634,
"properties": {
"face": "wall",
"facing": "west",
@@ -101798,7 +106195,7 @@
}
},
{
- "id": 5475,
+ "id": 5635,
"properties": {
"face": "wall",
"facing": "west",
@@ -101806,7 +106203,7 @@
}
},
{
- "id": 5476,
+ "id": 5636,
"properties": {
"face": "wall",
"facing": "east",
@@ -101814,7 +106211,7 @@
}
},
{
- "id": 5477,
+ "id": 5637,
"properties": {
"face": "wall",
"facing": "east",
@@ -101822,7 +106219,7 @@
}
},
{
- "id": 5478,
+ "id": 5638,
"properties": {
"face": "ceiling",
"facing": "north",
@@ -101830,7 +106227,7 @@
}
},
{
- "id": 5479,
+ "id": 5639,
"properties": {
"face": "ceiling",
"facing": "north",
@@ -101838,7 +106235,7 @@
}
},
{
- "id": 5480,
+ "id": 5640,
"properties": {
"face": "ceiling",
"facing": "south",
@@ -101846,7 +106243,7 @@
}
},
{
- "id": 5481,
+ "id": 5641,
"properties": {
"face": "ceiling",
"facing": "south",
@@ -101854,7 +106251,7 @@
}
},
{
- "id": 5482,
+ "id": 5642,
"properties": {
"face": "ceiling",
"facing": "west",
@@ -101862,7 +106259,7 @@
}
},
{
- "id": 5483,
+ "id": 5643,
"properties": {
"face": "ceiling",
"facing": "west",
@@ -101870,7 +106267,7 @@
}
},
{
- "id": 5484,
+ "id": 5644,
"properties": {
"face": "ceiling",
"facing": "east",
@@ -101878,7 +106275,7 @@
}
},
{
- "id": 5485,
+ "id": 5645,
"properties": {
"face": "ceiling",
"facing": "east",
@@ -101914,217 +106311,217 @@
},
"states": [
{
- "id": 9890,
+ "id": 10222,
"properties": {
"level": "0",
"waterlogged": "true"
}
},
{
- "id": 9891,
+ "id": 10223,
"properties": {
"level": "0",
"waterlogged": "false"
}
},
{
- "id": 9892,
+ "id": 10224,
"properties": {
"level": "1",
"waterlogged": "true"
}
},
{
- "id": 9893,
+ "id": 10225,
"properties": {
"level": "1",
"waterlogged": "false"
}
},
{
- "id": 9894,
+ "id": 10226,
"properties": {
"level": "2",
"waterlogged": "true"
}
},
{
- "id": 9895,
+ "id": 10227,
"properties": {
"level": "2",
"waterlogged": "false"
}
},
{
- "id": 9896,
+ "id": 10228,
"properties": {
"level": "3",
"waterlogged": "true"
}
},
{
- "id": 9897,
+ "id": 10229,
"properties": {
"level": "3",
"waterlogged": "false"
}
},
{
- "id": 9898,
+ "id": 10230,
"properties": {
"level": "4",
"waterlogged": "true"
}
},
{
- "id": 9899,
+ "id": 10231,
"properties": {
"level": "4",
"waterlogged": "false"
}
},
{
- "id": 9900,
+ "id": 10232,
"properties": {
"level": "5",
"waterlogged": "true"
}
},
{
- "id": 9901,
+ "id": 10233,
"properties": {
"level": "5",
"waterlogged": "false"
}
},
{
- "id": 9902,
+ "id": 10234,
"properties": {
"level": "6",
"waterlogged": "true"
}
},
{
- "id": 9903,
+ "id": 10235,
"properties": {
"level": "6",
"waterlogged": "false"
}
},
{
- "id": 9904,
+ "id": 10236,
"properties": {
"level": "7",
"waterlogged": "true"
}
},
{
- "id": 9905,
+ "id": 10237,
"properties": {
"level": "7",
"waterlogged": "false"
}
},
{
- "id": 9906,
+ "id": 10238,
"properties": {
"level": "8",
"waterlogged": "true"
}
},
{
- "id": 9907,
+ "id": 10239,
"properties": {
"level": "8",
"waterlogged": "false"
}
},
{
- "id": 9908,
+ "id": 10240,
"properties": {
"level": "9",
"waterlogged": "true"
}
},
{
- "id": 9909,
+ "id": 10241,
"properties": {
"level": "9",
"waterlogged": "false"
}
},
{
- "id": 9910,
+ "id": 10242,
"properties": {
"level": "10",
"waterlogged": "true"
}
},
{
- "id": 9911,
+ "id": 10243,
"properties": {
"level": "10",
"waterlogged": "false"
}
},
{
- "id": 9912,
+ "id": 10244,
"properties": {
"level": "11",
"waterlogged": "true"
}
},
{
- "id": 9913,
+ "id": 10245,
"properties": {
"level": "11",
"waterlogged": "false"
}
},
{
- "id": 9914,
+ "id": 10246,
"properties": {
"level": "12",
"waterlogged": "true"
}
},
{
- "id": 9915,
+ "id": 10247,
"properties": {
"level": "12",
"waterlogged": "false"
}
},
{
- "id": 9916,
+ "id": 10248,
"properties": {
"level": "13",
"waterlogged": "true"
}
},
{
- "id": 9917,
+ "id": 10249,
"properties": {
"level": "13",
"waterlogged": "false"
}
},
{
- "id": 9918,
+ "id": 10250,
"properties": {
"level": "14",
"waterlogged": "true"
}
},
{
- "id": 9919,
+ "id": 10251,
"properties": {
"level": "14",
"waterlogged": "false"
}
},
{
- "id": 9920,
+ "id": 10252,
"properties": {
"level": "15",
"waterlogged": "true"
@@ -102132,7 +106529,7 @@
},
{
"default": true,
- "id": 9921,
+ "id": 10253,
"properties": {
"level": "15",
"waterlogged": "false"
@@ -102164,97 +106561,97 @@
"states": [
{
"default": true,
- "id": 10330,
+ "id": 10662,
"properties": {
"rotation": "0"
}
},
{
- "id": 10331,
+ "id": 10663,
"properties": {
"rotation": "1"
}
},
{
- "id": 10332,
+ "id": 10664,
"properties": {
"rotation": "2"
}
},
{
- "id": 10333,
+ "id": 10665,
"properties": {
"rotation": "3"
}
},
{
- "id": 10334,
+ "id": 10666,
"properties": {
"rotation": "4"
}
},
{
- "id": 10335,
+ "id": 10667,
"properties": {
"rotation": "5"
}
},
{
- "id": 10336,
+ "id": 10668,
"properties": {
"rotation": "6"
}
},
{
- "id": 10337,
+ "id": 10669,
"properties": {
"rotation": "7"
}
},
{
- "id": 10338,
+ "id": 10670,
"properties": {
"rotation": "8"
}
},
{
- "id": 10339,
+ "id": 10671,
"properties": {
"rotation": "9"
}
},
{
- "id": 10340,
+ "id": 10672,
"properties": {
"rotation": "10"
}
},
{
- "id": 10341,
+ "id": 10673,
"properties": {
"rotation": "11"
}
},
{
- "id": 10342,
+ "id": 10674,
"properties": {
"rotation": "12"
}
},
{
- "id": 10343,
+ "id": 10675,
"properties": {
"rotation": "13"
}
},
{
- "id": 10344,
+ "id": 10676,
"properties": {
"rotation": "14"
}
},
{
- "id": 10345,
+ "id": 10677,
"properties": {
"rotation": "15"
}
@@ -102280,7 +106677,7 @@
},
"states": [
{
- "id": 1685,
+ "id": 1732,
"properties": {
"facing": "north",
"occupied": "true",
@@ -102288,7 +106685,7 @@
}
},
{
- "id": 1686,
+ "id": 1733,
"properties": {
"facing": "north",
"occupied": "true",
@@ -102296,7 +106693,7 @@
}
},
{
- "id": 1687,
+ "id": 1734,
"properties": {
"facing": "north",
"occupied": "false",
@@ -102305,7 +106702,7 @@
},
{
"default": true,
- "id": 1688,
+ "id": 1735,
"properties": {
"facing": "north",
"occupied": "false",
@@ -102313,7 +106710,7 @@
}
},
{
- "id": 1689,
+ "id": 1736,
"properties": {
"facing": "south",
"occupied": "true",
@@ -102321,7 +106718,7 @@
}
},
{
- "id": 1690,
+ "id": 1737,
"properties": {
"facing": "south",
"occupied": "true",
@@ -102329,7 +106726,7 @@
}
},
{
- "id": 1691,
+ "id": 1738,
"properties": {
"facing": "south",
"occupied": "false",
@@ -102337,7 +106734,7 @@
}
},
{
- "id": 1692,
+ "id": 1739,
"properties": {
"facing": "south",
"occupied": "false",
@@ -102345,7 +106742,7 @@
}
},
{
- "id": 1693,
+ "id": 1740,
"properties": {
"facing": "west",
"occupied": "true",
@@ -102353,7 +106750,7 @@
}
},
{
- "id": 1694,
+ "id": 1741,
"properties": {
"facing": "west",
"occupied": "true",
@@ -102361,7 +106758,7 @@
}
},
{
- "id": 1695,
+ "id": 1742,
"properties": {
"facing": "west",
"occupied": "false",
@@ -102369,7 +106766,7 @@
}
},
{
- "id": 1696,
+ "id": 1743,
"properties": {
"facing": "west",
"occupied": "false",
@@ -102377,7 +106774,7 @@
}
},
{
- "id": 1697,
+ "id": 1744,
"properties": {
"facing": "east",
"occupied": "true",
@@ -102385,7 +106782,7 @@
}
},
{
- "id": 1698,
+ "id": 1745,
"properties": {
"facing": "east",
"occupied": "true",
@@ -102393,7 +106790,7 @@
}
},
{
- "id": 1699,
+ "id": 1746,
"properties": {
"facing": "east",
"occupied": "false",
@@ -102401,7 +106798,7 @@
}
},
{
- "id": 1700,
+ "id": 1747,
"properties": {
"facing": "east",
"occupied": "false",
@@ -102429,7 +106826,7 @@
},
"states": [
{
- "id": 20161,
+ "id": 20630,
"properties": {
"candles": "1",
"lit": "true",
@@ -102437,7 +106834,7 @@
}
},
{
- "id": 20162,
+ "id": 20631,
"properties": {
"candles": "1",
"lit": "true",
@@ -102445,7 +106842,7 @@
}
},
{
- "id": 20163,
+ "id": 20632,
"properties": {
"candles": "1",
"lit": "false",
@@ -102454,7 +106851,7 @@
},
{
"default": true,
- "id": 20164,
+ "id": 20633,
"properties": {
"candles": "1",
"lit": "false",
@@ -102462,7 +106859,7 @@
}
},
{
- "id": 20165,
+ "id": 20634,
"properties": {
"candles": "2",
"lit": "true",
@@ -102470,7 +106867,7 @@
}
},
{
- "id": 20166,
+ "id": 20635,
"properties": {
"candles": "2",
"lit": "true",
@@ -102478,7 +106875,7 @@
}
},
{
- "id": 20167,
+ "id": 20636,
"properties": {
"candles": "2",
"lit": "false",
@@ -102486,7 +106883,7 @@
}
},
{
- "id": 20168,
+ "id": 20637,
"properties": {
"candles": "2",
"lit": "false",
@@ -102494,7 +106891,7 @@
}
},
{
- "id": 20169,
+ "id": 20638,
"properties": {
"candles": "3",
"lit": "true",
@@ -102502,7 +106899,7 @@
}
},
{
- "id": 20170,
+ "id": 20639,
"properties": {
"candles": "3",
"lit": "true",
@@ -102510,7 +106907,7 @@
}
},
{
- "id": 20171,
+ "id": 20640,
"properties": {
"candles": "3",
"lit": "false",
@@ -102518,7 +106915,7 @@
}
},
{
- "id": 20172,
+ "id": 20641,
"properties": {
"candles": "3",
"lit": "false",
@@ -102526,7 +106923,7 @@
}
},
{
- "id": 20173,
+ "id": 20642,
"properties": {
"candles": "4",
"lit": "true",
@@ -102534,7 +106931,7 @@
}
},
{
- "id": 20174,
+ "id": 20643,
"properties": {
"candles": "4",
"lit": "true",
@@ -102542,7 +106939,7 @@
}
},
{
- "id": 20175,
+ "id": 20644,
"properties": {
"candles": "4",
"lit": "false",
@@ -102550,7 +106947,7 @@
}
},
{
- "id": 20176,
+ "id": 20645,
"properties": {
"candles": "4",
"lit": "false",
@@ -102568,14 +106965,14 @@
},
"states": [
{
- "id": 20377,
+ "id": 20846,
"properties": {
"lit": "true"
}
},
{
"default": true,
- "id": 20378,
+ "id": 20847,
"properties": {
"lit": "false"
}
@@ -102586,7 +106983,7 @@
"states": [
{
"default": true,
- "id": 10254
+ "id": 10586
}
]
},
@@ -102594,7 +106991,7 @@
"states": [
{
"default": true,
- "id": 12106
+ "id": 12575
}
]
},
@@ -102602,7 +106999,7 @@
"states": [
{
"default": true,
- "id": 12122
+ "id": 12591
}
]
},
@@ -102618,25 +107015,25 @@
"states": [
{
"default": true,
- "id": 12051,
+ "id": 12520,
"properties": {
"facing": "north"
}
},
{
- "id": 12052,
+ "id": 12521,
"properties": {
"facing": "south"
}
},
{
- "id": 12053,
+ "id": 12522,
"properties": {
"facing": "west"
}
},
{
- "id": 12054,
+ "id": 12523,
"properties": {
"facing": "east"
}
@@ -102656,38 +107053,38 @@
},
"states": [
{
- "id": 11961,
+ "id": 12430,
"properties": {
"facing": "north"
}
},
{
- "id": 11962,
+ "id": 12431,
"properties": {
"facing": "east"
}
},
{
- "id": 11963,
+ "id": 12432,
"properties": {
"facing": "south"
}
},
{
- "id": 11964,
+ "id": 12433,
"properties": {
"facing": "west"
}
},
{
"default": true,
- "id": 11965,
+ "id": 12434,
"properties": {
"facing": "up"
}
},
{
- "id": 11966,
+ "id": 12435,
"properties": {
"facing": "down"
}
@@ -102698,7 +107095,7 @@
"states": [
{
"default": true,
- "id": 5783
+ "id": 5945
}
]
},
@@ -102727,7 +107124,7 @@
},
"states": [
{
- "id": 9072,
+ "id": 9324,
"properties": {
"east": "true",
"north": "true",
@@ -102737,7 +107134,7 @@
}
},
{
- "id": 9073,
+ "id": 9325,
"properties": {
"east": "true",
"north": "true",
@@ -102747,7 +107144,7 @@
}
},
{
- "id": 9074,
+ "id": 9326,
"properties": {
"east": "true",
"north": "true",
@@ -102757,7 +107154,7 @@
}
},
{
- "id": 9075,
+ "id": 9327,
"properties": {
"east": "true",
"north": "true",
@@ -102767,7 +107164,7 @@
}
},
{
- "id": 9076,
+ "id": 9328,
"properties": {
"east": "true",
"north": "true",
@@ -102777,7 +107174,7 @@
}
},
{
- "id": 9077,
+ "id": 9329,
"properties": {
"east": "true",
"north": "true",
@@ -102787,7 +107184,7 @@
}
},
{
- "id": 9078,
+ "id": 9330,
"properties": {
"east": "true",
"north": "true",
@@ -102797,7 +107194,7 @@
}
},
{
- "id": 9079,
+ "id": 9331,
"properties": {
"east": "true",
"north": "true",
@@ -102807,7 +107204,7 @@
}
},
{
- "id": 9080,
+ "id": 9332,
"properties": {
"east": "true",
"north": "false",
@@ -102817,7 +107214,7 @@
}
},
{
- "id": 9081,
+ "id": 9333,
"properties": {
"east": "true",
"north": "false",
@@ -102827,7 +107224,7 @@
}
},
{
- "id": 9082,
+ "id": 9334,
"properties": {
"east": "true",
"north": "false",
@@ -102837,7 +107234,7 @@
}
},
{
- "id": 9083,
+ "id": 9335,
"properties": {
"east": "true",
"north": "false",
@@ -102847,7 +107244,7 @@
}
},
{
- "id": 9084,
+ "id": 9336,
"properties": {
"east": "true",
"north": "false",
@@ -102857,7 +107254,7 @@
}
},
{
- "id": 9085,
+ "id": 9337,
"properties": {
"east": "true",
"north": "false",
@@ -102867,7 +107264,7 @@
}
},
{
- "id": 9086,
+ "id": 9338,
"properties": {
"east": "true",
"north": "false",
@@ -102877,7 +107274,7 @@
}
},
{
- "id": 9087,
+ "id": 9339,
"properties": {
"east": "true",
"north": "false",
@@ -102887,7 +107284,7 @@
}
},
{
- "id": 9088,
+ "id": 9340,
"properties": {
"east": "false",
"north": "true",
@@ -102897,7 +107294,7 @@
}
},
{
- "id": 9089,
+ "id": 9341,
"properties": {
"east": "false",
"north": "true",
@@ -102907,7 +107304,7 @@
}
},
{
- "id": 9090,
+ "id": 9342,
"properties": {
"east": "false",
"north": "true",
@@ -102917,7 +107314,7 @@
}
},
{
- "id": 9091,
+ "id": 9343,
"properties": {
"east": "false",
"north": "true",
@@ -102927,7 +107324,7 @@
}
},
{
- "id": 9092,
+ "id": 9344,
"properties": {
"east": "false",
"north": "true",
@@ -102937,7 +107334,7 @@
}
},
{
- "id": 9093,
+ "id": 9345,
"properties": {
"east": "false",
"north": "true",
@@ -102947,7 +107344,7 @@
}
},
{
- "id": 9094,
+ "id": 9346,
"properties": {
"east": "false",
"north": "true",
@@ -102957,7 +107354,7 @@
}
},
{
- "id": 9095,
+ "id": 9347,
"properties": {
"east": "false",
"north": "true",
@@ -102967,7 +107364,7 @@
}
},
{
- "id": 9096,
+ "id": 9348,
"properties": {
"east": "false",
"north": "false",
@@ -102977,7 +107374,7 @@
}
},
{
- "id": 9097,
+ "id": 9349,
"properties": {
"east": "false",
"north": "false",
@@ -102987,7 +107384,7 @@
}
},
{
- "id": 9098,
+ "id": 9350,
"properties": {
"east": "false",
"north": "false",
@@ -102997,7 +107394,7 @@
}
},
{
- "id": 9099,
+ "id": 9351,
"properties": {
"east": "false",
"north": "false",
@@ -103007,7 +107404,7 @@
}
},
{
- "id": 9100,
+ "id": 9352,
"properties": {
"east": "false",
"north": "false",
@@ -103017,7 +107414,7 @@
}
},
{
- "id": 9101,
+ "id": 9353,
"properties": {
"east": "false",
"north": "false",
@@ -103027,7 +107424,7 @@
}
},
{
- "id": 9102,
+ "id": 9354,
"properties": {
"east": "false",
"north": "false",
@@ -103038,7 +107435,7 @@
},
{
"default": true,
- "id": 9103,
+ "id": 9355,
"properties": {
"east": "false",
"north": "false",
@@ -103053,7 +107450,7 @@
"states": [
{
"default": true,
- "id": 8963
+ "id": 9215
}
]
},
@@ -103069,25 +107466,25 @@
"states": [
{
"default": true,
- "id": 10550,
+ "id": 10882,
"properties": {
"facing": "north"
}
},
{
- "id": 10551,
+ "id": 10883,
"properties": {
"facing": "south"
}
},
{
- "id": 10552,
+ "id": 10884,
"properties": {
"facing": "west"
}
},
{
- "id": 10553,
+ "id": 10885,
"properties": {
"facing": "east"
}
@@ -103098,7 +107495,7 @@
"states": [
{
"default": true,
- "id": 1999
+ "id": 2046
}
]
},
@@ -103126,97 +107523,97 @@
"states": [
{
"default": true,
- "id": 10410,
+ "id": 10742,
"properties": {
"rotation": "0"
}
},
{
- "id": 10411,
+ "id": 10743,
"properties": {
"rotation": "1"
}
},
{
- "id": 10412,
+ "id": 10744,
"properties": {
"rotation": "2"
}
},
{
- "id": 10413,
+ "id": 10745,
"properties": {
"rotation": "3"
}
},
{
- "id": 10414,
+ "id": 10746,
"properties": {
"rotation": "4"
}
},
{
- "id": 10415,
+ "id": 10747,
"properties": {
"rotation": "5"
}
},
{
- "id": 10416,
+ "id": 10748,
"properties": {
"rotation": "6"
}
},
{
- "id": 10417,
+ "id": 10749,
"properties": {
"rotation": "7"
}
},
{
- "id": 10418,
+ "id": 10750,
"properties": {
"rotation": "8"
}
},
{
- "id": 10419,
+ "id": 10751,
"properties": {
"rotation": "9"
}
},
{
- "id": 10420,
+ "id": 10752,
"properties": {
"rotation": "10"
}
},
{
- "id": 10421,
+ "id": 10753,
"properties": {
"rotation": "11"
}
},
{
- "id": 10422,
+ "id": 10754,
"properties": {
"rotation": "12"
}
},
{
- "id": 10423,
+ "id": 10755,
"properties": {
"rotation": "13"
}
},
{
- "id": 10424,
+ "id": 10756,
"properties": {
"rotation": "14"
}
},
{
- "id": 10425,
+ "id": 10757,
"properties": {
"rotation": "15"
}
@@ -103242,7 +107639,7 @@
},
"states": [
{
- "id": 1765,
+ "id": 1812,
"properties": {
"facing": "north",
"occupied": "true",
@@ -103250,7 +107647,7 @@
}
},
{
- "id": 1766,
+ "id": 1813,
"properties": {
"facing": "north",
"occupied": "true",
@@ -103258,7 +107655,7 @@
}
},
{
- "id": 1767,
+ "id": 1814,
"properties": {
"facing": "north",
"occupied": "false",
@@ -103267,7 +107664,7 @@
},
{
"default": true,
- "id": 1768,
+ "id": 1815,
"properties": {
"facing": "north",
"occupied": "false",
@@ -103275,7 +107672,7 @@
}
},
{
- "id": 1769,
+ "id": 1816,
"properties": {
"facing": "south",
"occupied": "true",
@@ -103283,7 +107680,7 @@
}
},
{
- "id": 1770,
+ "id": 1817,
"properties": {
"facing": "south",
"occupied": "true",
@@ -103291,7 +107688,7 @@
}
},
{
- "id": 1771,
+ "id": 1818,
"properties": {
"facing": "south",
"occupied": "false",
@@ -103299,7 +107696,7 @@
}
},
{
- "id": 1772,
+ "id": 1819,
"properties": {
"facing": "south",
"occupied": "false",
@@ -103307,7 +107704,7 @@
}
},
{
- "id": 1773,
+ "id": 1820,
"properties": {
"facing": "west",
"occupied": "true",
@@ -103315,7 +107712,7 @@
}
},
{
- "id": 1774,
+ "id": 1821,
"properties": {
"facing": "west",
"occupied": "true",
@@ -103323,7 +107720,7 @@
}
},
{
- "id": 1775,
+ "id": 1822,
"properties": {
"facing": "west",
"occupied": "false",
@@ -103331,7 +107728,7 @@
}
},
{
- "id": 1776,
+ "id": 1823,
"properties": {
"facing": "west",
"occupied": "false",
@@ -103339,7 +107736,7 @@
}
},
{
- "id": 1777,
+ "id": 1824,
"properties": {
"facing": "east",
"occupied": "true",
@@ -103347,7 +107744,7 @@
}
},
{
- "id": 1778,
+ "id": 1825,
"properties": {
"facing": "east",
"occupied": "true",
@@ -103355,7 +107752,7 @@
}
},
{
- "id": 1779,
+ "id": 1826,
"properties": {
"facing": "east",
"occupied": "false",
@@ -103363,7 +107760,7 @@
}
},
{
- "id": 1780,
+ "id": 1827,
"properties": {
"facing": "east",
"occupied": "false",
@@ -103391,7 +107788,7 @@
},
"states": [
{
- "id": 20241,
+ "id": 20710,
"properties": {
"candles": "1",
"lit": "true",
@@ -103399,7 +107796,7 @@
}
},
{
- "id": 20242,
+ "id": 20711,
"properties": {
"candles": "1",
"lit": "true",
@@ -103407,7 +107804,7 @@
}
},
{
- "id": 20243,
+ "id": 20712,
"properties": {
"candles": "1",
"lit": "false",
@@ -103416,7 +107813,7 @@
},
{
"default": true,
- "id": 20244,
+ "id": 20713,
"properties": {
"candles": "1",
"lit": "false",
@@ -103424,7 +107821,7 @@
}
},
{
- "id": 20245,
+ "id": 20714,
"properties": {
"candles": "2",
"lit": "true",
@@ -103432,7 +107829,7 @@
}
},
{
- "id": 20246,
+ "id": 20715,
"properties": {
"candles": "2",
"lit": "true",
@@ -103440,7 +107837,7 @@
}
},
{
- "id": 20247,
+ "id": 20716,
"properties": {
"candles": "2",
"lit": "false",
@@ -103448,7 +107845,7 @@
}
},
{
- "id": 20248,
+ "id": 20717,
"properties": {
"candles": "2",
"lit": "false",
@@ -103456,7 +107853,7 @@
}
},
{
- "id": 20249,
+ "id": 20718,
"properties": {
"candles": "3",
"lit": "true",
@@ -103464,7 +107861,7 @@
}
},
{
- "id": 20250,
+ "id": 20719,
"properties": {
"candles": "3",
"lit": "true",
@@ -103472,7 +107869,7 @@
}
},
{
- "id": 20251,
+ "id": 20720,
"properties": {
"candles": "3",
"lit": "false",
@@ -103480,7 +107877,7 @@
}
},
{
- "id": 20252,
+ "id": 20721,
"properties": {
"candles": "3",
"lit": "false",
@@ -103488,7 +107885,7 @@
}
},
{
- "id": 20253,
+ "id": 20722,
"properties": {
"candles": "4",
"lit": "true",
@@ -103496,7 +107893,7 @@
}
},
{
- "id": 20254,
+ "id": 20723,
"properties": {
"candles": "4",
"lit": "true",
@@ -103504,7 +107901,7 @@
}
},
{
- "id": 20255,
+ "id": 20724,
"properties": {
"candles": "4",
"lit": "false",
@@ -103512,7 +107909,7 @@
}
},
{
- "id": 20256,
+ "id": 20725,
"properties": {
"candles": "4",
"lit": "false",
@@ -103530,14 +107927,14 @@
},
"states": [
{
- "id": 20387,
+ "id": 20856,
"properties": {
"lit": "true"
}
},
{
"default": true,
- "id": 20388,
+ "id": 20857,
"properties": {
"lit": "false"
}
@@ -103548,7 +107945,7 @@
"states": [
{
"default": true,
- "id": 10259
+ "id": 10591
}
]
},
@@ -103556,7 +107953,7 @@
"states": [
{
"default": true,
- "id": 12111
+ "id": 12580
}
]
},
@@ -103564,7 +107961,7 @@
"states": [
{
"default": true,
- "id": 12127
+ "id": 12596
}
]
},
@@ -103580,25 +107977,25 @@
"states": [
{
"default": true,
- "id": 12071,
+ "id": 12540,
"properties": {
"facing": "north"
}
},
{
- "id": 12072,
+ "id": 12541,
"properties": {
"facing": "south"
}
},
{
- "id": 12073,
+ "id": 12542,
"properties": {
"facing": "west"
}
},
{
- "id": 12074,
+ "id": 12543,
"properties": {
"facing": "east"
}
@@ -103618,38 +108015,38 @@
},
"states": [
{
- "id": 11991,
+ "id": 12460,
"properties": {
"facing": "north"
}
},
{
- "id": 11992,
+ "id": 12461,
"properties": {
"facing": "east"
}
},
{
- "id": 11993,
+ "id": 12462,
"properties": {
"facing": "south"
}
},
{
- "id": 11994,
+ "id": 12463,
"properties": {
"facing": "west"
}
},
{
"default": true,
- "id": 11995,
+ "id": 12464,
"properties": {
"facing": "up"
}
},
{
- "id": 11996,
+ "id": 12465,
"properties": {
"facing": "down"
}
@@ -103660,7 +108057,7 @@
"states": [
{
"default": true,
- "id": 5788
+ "id": 5950
}
]
},
@@ -103689,7 +108086,7 @@
},
"states": [
{
- "id": 9232,
+ "id": 9484,
"properties": {
"east": "true",
"north": "true",
@@ -103699,7 +108096,7 @@
}
},
{
- "id": 9233,
+ "id": 9485,
"properties": {
"east": "true",
"north": "true",
@@ -103709,7 +108106,7 @@
}
},
{
- "id": 9234,
+ "id": 9486,
"properties": {
"east": "true",
"north": "true",
@@ -103719,7 +108116,7 @@
}
},
{
- "id": 9235,
+ "id": 9487,
"properties": {
"east": "true",
"north": "true",
@@ -103729,7 +108126,7 @@
}
},
{
- "id": 9236,
+ "id": 9488,
"properties": {
"east": "true",
"north": "true",
@@ -103739,7 +108136,7 @@
}
},
{
- "id": 9237,
+ "id": 9489,
"properties": {
"east": "true",
"north": "true",
@@ -103749,7 +108146,7 @@
}
},
{
- "id": 9238,
+ "id": 9490,
"properties": {
"east": "true",
"north": "true",
@@ -103759,7 +108156,7 @@
}
},
{
- "id": 9239,
+ "id": 9491,
"properties": {
"east": "true",
"north": "true",
@@ -103769,7 +108166,7 @@
}
},
{
- "id": 9240,
+ "id": 9492,
"properties": {
"east": "true",
"north": "false",
@@ -103779,7 +108176,7 @@
}
},
{
- "id": 9241,
+ "id": 9493,
"properties": {
"east": "true",
"north": "false",
@@ -103789,7 +108186,7 @@
}
},
{
- "id": 9242,
+ "id": 9494,
"properties": {
"east": "true",
"north": "false",
@@ -103799,7 +108196,7 @@
}
},
{
- "id": 9243,
+ "id": 9495,
"properties": {
"east": "true",
"north": "false",
@@ -103809,7 +108206,7 @@
}
},
{
- "id": 9244,
+ "id": 9496,
"properties": {
"east": "true",
"north": "false",
@@ -103819,7 +108216,7 @@
}
},
{
- "id": 9245,
+ "id": 9497,
"properties": {
"east": "true",
"north": "false",
@@ -103829,7 +108226,7 @@
}
},
{
- "id": 9246,
+ "id": 9498,
"properties": {
"east": "true",
"north": "false",
@@ -103839,7 +108236,7 @@
}
},
{
- "id": 9247,
+ "id": 9499,
"properties": {
"east": "true",
"north": "false",
@@ -103849,7 +108246,7 @@
}
},
{
- "id": 9248,
+ "id": 9500,
"properties": {
"east": "false",
"north": "true",
@@ -103859,7 +108256,7 @@
}
},
{
- "id": 9249,
+ "id": 9501,
"properties": {
"east": "false",
"north": "true",
@@ -103869,7 +108266,7 @@
}
},
{
- "id": 9250,
+ "id": 9502,
"properties": {
"east": "false",
"north": "true",
@@ -103879,7 +108276,7 @@
}
},
{
- "id": 9251,
+ "id": 9503,
"properties": {
"east": "false",
"north": "true",
@@ -103889,7 +108286,7 @@
}
},
{
- "id": 9252,
+ "id": 9504,
"properties": {
"east": "false",
"north": "true",
@@ -103899,7 +108296,7 @@
}
},
{
- "id": 9253,
+ "id": 9505,
"properties": {
"east": "false",
"north": "true",
@@ -103909,7 +108306,7 @@
}
},
{
- "id": 9254,
+ "id": 9506,
"properties": {
"east": "false",
"north": "true",
@@ -103919,7 +108316,7 @@
}
},
{
- "id": 9255,
+ "id": 9507,
"properties": {
"east": "false",
"north": "true",
@@ -103929,7 +108326,7 @@
}
},
{
- "id": 9256,
+ "id": 9508,
"properties": {
"east": "false",
"north": "false",
@@ -103939,7 +108336,7 @@
}
},
{
- "id": 9257,
+ "id": 9509,
"properties": {
"east": "false",
"north": "false",
@@ -103949,7 +108346,7 @@
}
},
{
- "id": 9258,
+ "id": 9510,
"properties": {
"east": "false",
"north": "false",
@@ -103959,7 +108356,7 @@
}
},
{
- "id": 9259,
+ "id": 9511,
"properties": {
"east": "false",
"north": "false",
@@ -103969,7 +108366,7 @@
}
},
{
- "id": 9260,
+ "id": 9512,
"properties": {
"east": "false",
"north": "false",
@@ -103979,7 +108376,7 @@
}
},
{
- "id": 9261,
+ "id": 9513,
"properties": {
"east": "false",
"north": "false",
@@ -103989,7 +108386,7 @@
}
},
{
- "id": 9262,
+ "id": 9514,
"properties": {
"east": "false",
"north": "false",
@@ -104000,7 +108397,7 @@
},
{
"default": true,
- "id": 9263,
+ "id": 9515,
"properties": {
"east": "false",
"north": "false",
@@ -104015,7 +108412,7 @@
"states": [
{
"default": true,
- "id": 8968
+ "id": 9220
}
]
},
@@ -104031,25 +108428,25 @@
"states": [
{
"default": true,
- "id": 10570,
+ "id": 10902,
"properties": {
"facing": "north"
}
},
{
- "id": 10571,
+ "id": 10903,
"properties": {
"facing": "south"
}
},
{
- "id": 10572,
+ "id": 10904,
"properties": {
"facing": "west"
}
},
{
- "id": 10573,
+ "id": 10905,
"properties": {
"facing": "east"
}
@@ -104060,7 +108457,7 @@
"states": [
{
"default": true,
- "id": 2004
+ "id": 2051
}
]
},
@@ -104088,97 +108485,97 @@
"states": [
{
"default": true,
- "id": 8747,
+ "id": 8999,
"properties": {
"power": "0"
}
},
{
- "id": 8748,
+ "id": 9000,
"properties": {
"power": "1"
}
},
{
- "id": 8749,
+ "id": 9001,
"properties": {
"power": "2"
}
},
{
- "id": 8750,
+ "id": 9002,
"properties": {
"power": "3"
}
},
{
- "id": 8751,
+ "id": 9003,
"properties": {
"power": "4"
}
},
{
- "id": 8752,
+ "id": 9004,
"properties": {
"power": "5"
}
},
{
- "id": 8753,
+ "id": 9005,
"properties": {
"power": "6"
}
},
{
- "id": 8754,
+ "id": 9006,
"properties": {
"power": "7"
}
},
{
- "id": 8755,
+ "id": 9007,
"properties": {
"power": "8"
}
},
{
- "id": 8756,
+ "id": 9008,
"properties": {
"power": "9"
}
},
{
- "id": 8757,
+ "id": 9009,
"properties": {
"power": "10"
}
},
{
- "id": 8758,
+ "id": 9010,
"properties": {
"power": "11"
}
},
{
- "id": 8759,
+ "id": 9011,
"properties": {
"power": "12"
}
},
{
- "id": 8760,
+ "id": 9012,
"properties": {
"power": "13"
}
},
{
- "id": 8761,
+ "id": 9013,
"properties": {
"power": "14"
}
},
{
- "id": 8762,
+ "id": 9014,
"properties": {
"power": "15"
}
@@ -104206,7 +108603,7 @@
},
"states": [
{
- "id": 21398,
+ "id": 21867,
"properties": {
"facing": "north",
"powered": "true",
@@ -104214,7 +108611,7 @@
}
},
{
- "id": 21399,
+ "id": 21868,
"properties": {
"facing": "north",
"powered": "true",
@@ -104222,7 +108619,7 @@
}
},
{
- "id": 21400,
+ "id": 21869,
"properties": {
"facing": "north",
"powered": "false",
@@ -104230,7 +108627,7 @@
}
},
{
- "id": 21401,
+ "id": 21870,
"properties": {
"facing": "north",
"powered": "false",
@@ -104238,7 +108635,7 @@
}
},
{
- "id": 21402,
+ "id": 21871,
"properties": {
"facing": "east",
"powered": "true",
@@ -104246,7 +108643,7 @@
}
},
{
- "id": 21403,
+ "id": 21872,
"properties": {
"facing": "east",
"powered": "true",
@@ -104254,7 +108651,7 @@
}
},
{
- "id": 21404,
+ "id": 21873,
"properties": {
"facing": "east",
"powered": "false",
@@ -104262,7 +108659,7 @@
}
},
{
- "id": 21405,
+ "id": 21874,
"properties": {
"facing": "east",
"powered": "false",
@@ -104270,7 +108667,7 @@
}
},
{
- "id": 21406,
+ "id": 21875,
"properties": {
"facing": "south",
"powered": "true",
@@ -104278,7 +108675,7 @@
}
},
{
- "id": 21407,
+ "id": 21876,
"properties": {
"facing": "south",
"powered": "true",
@@ -104286,7 +108683,7 @@
}
},
{
- "id": 21408,
+ "id": 21877,
"properties": {
"facing": "south",
"powered": "false",
@@ -104294,7 +108691,7 @@
}
},
{
- "id": 21409,
+ "id": 21878,
"properties": {
"facing": "south",
"powered": "false",
@@ -104302,7 +108699,7 @@
}
},
{
- "id": 21410,
+ "id": 21879,
"properties": {
"facing": "west",
"powered": "true",
@@ -104310,7 +108707,7 @@
}
},
{
- "id": 21411,
+ "id": 21880,
"properties": {
"facing": "west",
"powered": "true",
@@ -104318,7 +108715,7 @@
}
},
{
- "id": 21412,
+ "id": 21881,
"properties": {
"facing": "west",
"powered": "false",
@@ -104326,7 +108723,7 @@
}
},
{
- "id": 21413,
+ "id": 21882,
"properties": {
"facing": "west",
"powered": "false",
@@ -104334,7 +108731,7 @@
}
},
{
- "id": 21414,
+ "id": 21883,
"properties": {
"facing": "up",
"powered": "true",
@@ -104342,7 +108739,7 @@
}
},
{
- "id": 21415,
+ "id": 21884,
"properties": {
"facing": "up",
"powered": "true",
@@ -104350,7 +108747,7 @@
}
},
{
- "id": 21416,
+ "id": 21885,
"properties": {
"facing": "up",
"powered": "false",
@@ -104359,7 +108756,7 @@
},
{
"default": true,
- "id": 21417,
+ "id": 21886,
"properties": {
"facing": "up",
"powered": "false",
@@ -104367,7 +108764,7 @@
}
},
{
- "id": 21418,
+ "id": 21887,
"properties": {
"facing": "down",
"powered": "true",
@@ -104375,7 +108772,7 @@
}
},
{
- "id": 21419,
+ "id": 21888,
"properties": {
"facing": "down",
"powered": "true",
@@ -104383,7 +108780,7 @@
}
},
{
- "id": 21420,
+ "id": 21889,
"properties": {
"facing": "down",
"powered": "false",
@@ -104391,7 +108788,7 @@
}
},
{
- "id": 21421,
+ "id": 21890,
"properties": {
"facing": "down",
"powered": "false",
@@ -104409,14 +108806,14 @@
},
"states": [
{
- "id": 10272,
+ "id": 10604,
"properties": {
"half": "upper"
}
},
{
"default": true,
- "id": 10273,
+ "id": 10605,
"properties": {
"half": "lower"
}
@@ -104427,7 +108824,7 @@
"states": [
{
"default": true,
- "id": 2036
+ "id": 2084
}
]
},
@@ -104435,7 +108832,7 @@
"states": [
{
"default": true,
- "id": 7041
+ "id": 7267
}
]
},
@@ -104463,97 +108860,97 @@
"states": [
{
"default": true,
- "id": 10362,
+ "id": 10694,
"properties": {
"rotation": "0"
}
},
{
- "id": 10363,
+ "id": 10695,
"properties": {
"rotation": "1"
}
},
{
- "id": 10364,
+ "id": 10696,
"properties": {
"rotation": "2"
}
},
{
- "id": 10365,
+ "id": 10697,
"properties": {
"rotation": "3"
}
},
{
- "id": 10366,
+ "id": 10698,
"properties": {
"rotation": "4"
}
},
{
- "id": 10367,
+ "id": 10699,
"properties": {
"rotation": "5"
}
},
{
- "id": 10368,
+ "id": 10700,
"properties": {
"rotation": "6"
}
},
{
- "id": 10369,
+ "id": 10701,
"properties": {
"rotation": "7"
}
},
{
- "id": 10370,
+ "id": 10702,
"properties": {
"rotation": "8"
}
},
{
- "id": 10371,
+ "id": 10703,
"properties": {
"rotation": "9"
}
},
{
- "id": 10372,
+ "id": 10704,
"properties": {
"rotation": "10"
}
},
{
- "id": 10373,
+ "id": 10705,
"properties": {
"rotation": "11"
}
},
{
- "id": 10374,
+ "id": 10706,
"properties": {
"rotation": "12"
}
},
{
- "id": 10375,
+ "id": 10707,
"properties": {
"rotation": "13"
}
},
{
- "id": 10376,
+ "id": 10708,
"properties": {
"rotation": "14"
}
},
{
- "id": 10377,
+ "id": 10709,
"properties": {
"rotation": "15"
}
@@ -104579,7 +108976,7 @@
},
"states": [
{
- "id": 1717,
+ "id": 1764,
"properties": {
"facing": "north",
"occupied": "true",
@@ -104587,7 +108984,7 @@
}
},
{
- "id": 1718,
+ "id": 1765,
"properties": {
"facing": "north",
"occupied": "true",
@@ -104595,7 +108992,7 @@
}
},
{
- "id": 1719,
+ "id": 1766,
"properties": {
"facing": "north",
"occupied": "false",
@@ -104604,7 +109001,7 @@
},
{
"default": true,
- "id": 1720,
+ "id": 1767,
"properties": {
"facing": "north",
"occupied": "false",
@@ -104612,7 +109009,7 @@
}
},
{
- "id": 1721,
+ "id": 1768,
"properties": {
"facing": "south",
"occupied": "true",
@@ -104620,7 +109017,7 @@
}
},
{
- "id": 1722,
+ "id": 1769,
"properties": {
"facing": "south",
"occupied": "true",
@@ -104628,7 +109025,7 @@
}
},
{
- "id": 1723,
+ "id": 1770,
"properties": {
"facing": "south",
"occupied": "false",
@@ -104636,7 +109033,7 @@
}
},
{
- "id": 1724,
+ "id": 1771,
"properties": {
"facing": "south",
"occupied": "false",
@@ -104644,7 +109041,7 @@
}
},
{
- "id": 1725,
+ "id": 1772,
"properties": {
"facing": "west",
"occupied": "true",
@@ -104652,7 +109049,7 @@
}
},
{
- "id": 1726,
+ "id": 1773,
"properties": {
"facing": "west",
"occupied": "true",
@@ -104660,7 +109057,7 @@
}
},
{
- "id": 1727,
+ "id": 1774,
"properties": {
"facing": "west",
"occupied": "false",
@@ -104668,7 +109065,7 @@
}
},
{
- "id": 1728,
+ "id": 1775,
"properties": {
"facing": "west",
"occupied": "false",
@@ -104676,7 +109073,7 @@
}
},
{
- "id": 1729,
+ "id": 1776,
"properties": {
"facing": "east",
"occupied": "true",
@@ -104684,7 +109081,7 @@
}
},
{
- "id": 1730,
+ "id": 1777,
"properties": {
"facing": "east",
"occupied": "true",
@@ -104692,7 +109089,7 @@
}
},
{
- "id": 1731,
+ "id": 1778,
"properties": {
"facing": "east",
"occupied": "false",
@@ -104700,7 +109097,7 @@
}
},
{
- "id": 1732,
+ "id": 1779,
"properties": {
"facing": "east",
"occupied": "false",
@@ -104728,7 +109125,7 @@
},
"states": [
{
- "id": 20193,
+ "id": 20662,
"properties": {
"candles": "1",
"lit": "true",
@@ -104736,7 +109133,7 @@
}
},
{
- "id": 20194,
+ "id": 20663,
"properties": {
"candles": "1",
"lit": "true",
@@ -104744,7 +109141,7 @@
}
},
{
- "id": 20195,
+ "id": 20664,
"properties": {
"candles": "1",
"lit": "false",
@@ -104753,7 +109150,7 @@
},
{
"default": true,
- "id": 20196,
+ "id": 20665,
"properties": {
"candles": "1",
"lit": "false",
@@ -104761,7 +109158,7 @@
}
},
{
- "id": 20197,
+ "id": 20666,
"properties": {
"candles": "2",
"lit": "true",
@@ -104769,7 +109166,7 @@
}
},
{
- "id": 20198,
+ "id": 20667,
"properties": {
"candles": "2",
"lit": "true",
@@ -104777,7 +109174,7 @@
}
},
{
- "id": 20199,
+ "id": 20668,
"properties": {
"candles": "2",
"lit": "false",
@@ -104785,7 +109182,7 @@
}
},
{
- "id": 20200,
+ "id": 20669,
"properties": {
"candles": "2",
"lit": "false",
@@ -104793,7 +109190,7 @@
}
},
{
- "id": 20201,
+ "id": 20670,
"properties": {
"candles": "3",
"lit": "true",
@@ -104801,7 +109198,7 @@
}
},
{
- "id": 20202,
+ "id": 20671,
"properties": {
"candles": "3",
"lit": "true",
@@ -104809,7 +109206,7 @@
}
},
{
- "id": 20203,
+ "id": 20672,
"properties": {
"candles": "3",
"lit": "false",
@@ -104817,7 +109214,7 @@
}
},
{
- "id": 20204,
+ "id": 20673,
"properties": {
"candles": "3",
"lit": "false",
@@ -104825,7 +109222,7 @@
}
},
{
- "id": 20205,
+ "id": 20674,
"properties": {
"candles": "4",
"lit": "true",
@@ -104833,7 +109230,7 @@
}
},
{
- "id": 20206,
+ "id": 20675,
"properties": {
"candles": "4",
"lit": "true",
@@ -104841,7 +109238,7 @@
}
},
{
- "id": 20207,
+ "id": 20676,
"properties": {
"candles": "4",
"lit": "false",
@@ -104849,7 +109246,7 @@
}
},
{
- "id": 20208,
+ "id": 20677,
"properties": {
"candles": "4",
"lit": "false",
@@ -104867,14 +109264,14 @@
},
"states": [
{
- "id": 20381,
+ "id": 20850,
"properties": {
"lit": "true"
}
},
{
"default": true,
- "id": 20382,
+ "id": 20851,
"properties": {
"lit": "false"
}
@@ -104885,7 +109282,7 @@
"states": [
{
"default": true,
- "id": 10256
+ "id": 10588
}
]
},
@@ -104893,7 +109290,7 @@
"states": [
{
"default": true,
- "id": 12108
+ "id": 12577
}
]
},
@@ -104901,7 +109298,7 @@
"states": [
{
"default": true,
- "id": 12124
+ "id": 12593
}
]
},
@@ -104917,25 +109314,25 @@
"states": [
{
"default": true,
- "id": 12059,
+ "id": 12528,
"properties": {
"facing": "north"
}
},
{
- "id": 12060,
+ "id": 12529,
"properties": {
"facing": "south"
}
},
{
- "id": 12061,
+ "id": 12530,
"properties": {
"facing": "west"
}
},
{
- "id": 12062,
+ "id": 12531,
"properties": {
"facing": "east"
}
@@ -104955,38 +109352,38 @@
},
"states": [
{
- "id": 11973,
+ "id": 12442,
"properties": {
"facing": "north"
}
},
{
- "id": 11974,
+ "id": 12443,
"properties": {
"facing": "east"
}
},
{
- "id": 11975,
+ "id": 12444,
"properties": {
"facing": "south"
}
},
{
- "id": 11976,
+ "id": 12445,
"properties": {
"facing": "west"
}
},
{
"default": true,
- "id": 11977,
+ "id": 12446,
"properties": {
"facing": "up"
}
},
{
- "id": 11978,
+ "id": 12447,
"properties": {
"facing": "down"
}
@@ -104997,7 +109394,7 @@
"states": [
{
"default": true,
- "id": 5785
+ "id": 5947
}
]
},
@@ -105026,7 +109423,7 @@
},
"states": [
{
- "id": 9136,
+ "id": 9388,
"properties": {
"east": "true",
"north": "true",
@@ -105036,7 +109433,7 @@
}
},
{
- "id": 9137,
+ "id": 9389,
"properties": {
"east": "true",
"north": "true",
@@ -105046,7 +109443,7 @@
}
},
{
- "id": 9138,
+ "id": 9390,
"properties": {
"east": "true",
"north": "true",
@@ -105056,7 +109453,7 @@
}
},
{
- "id": 9139,
+ "id": 9391,
"properties": {
"east": "true",
"north": "true",
@@ -105066,7 +109463,7 @@
}
},
{
- "id": 9140,
+ "id": 9392,
"properties": {
"east": "true",
"north": "true",
@@ -105076,7 +109473,7 @@
}
},
{
- "id": 9141,
+ "id": 9393,
"properties": {
"east": "true",
"north": "true",
@@ -105086,7 +109483,7 @@
}
},
{
- "id": 9142,
+ "id": 9394,
"properties": {
"east": "true",
"north": "true",
@@ -105096,7 +109493,7 @@
}
},
{
- "id": 9143,
+ "id": 9395,
"properties": {
"east": "true",
"north": "true",
@@ -105106,7 +109503,7 @@
}
},
{
- "id": 9144,
+ "id": 9396,
"properties": {
"east": "true",
"north": "false",
@@ -105116,7 +109513,7 @@
}
},
{
- "id": 9145,
+ "id": 9397,
"properties": {
"east": "true",
"north": "false",
@@ -105126,7 +109523,7 @@
}
},
{
- "id": 9146,
+ "id": 9398,
"properties": {
"east": "true",
"north": "false",
@@ -105136,7 +109533,7 @@
}
},
{
- "id": 9147,
+ "id": 9399,
"properties": {
"east": "true",
"north": "false",
@@ -105146,7 +109543,7 @@
}
},
{
- "id": 9148,
+ "id": 9400,
"properties": {
"east": "true",
"north": "false",
@@ -105156,7 +109553,7 @@
}
},
{
- "id": 9149,
+ "id": 9401,
"properties": {
"east": "true",
"north": "false",
@@ -105166,7 +109563,7 @@
}
},
{
- "id": 9150,
+ "id": 9402,
"properties": {
"east": "true",
"north": "false",
@@ -105176,7 +109573,7 @@
}
},
{
- "id": 9151,
+ "id": 9403,
"properties": {
"east": "true",
"north": "false",
@@ -105186,7 +109583,7 @@
}
},
{
- "id": 9152,
+ "id": 9404,
"properties": {
"east": "false",
"north": "true",
@@ -105196,7 +109593,7 @@
}
},
{
- "id": 9153,
+ "id": 9405,
"properties": {
"east": "false",
"north": "true",
@@ -105206,7 +109603,7 @@
}
},
{
- "id": 9154,
+ "id": 9406,
"properties": {
"east": "false",
"north": "true",
@@ -105216,7 +109613,7 @@
}
},
{
- "id": 9155,
+ "id": 9407,
"properties": {
"east": "false",
"north": "true",
@@ -105226,7 +109623,7 @@
}
},
{
- "id": 9156,
+ "id": 9408,
"properties": {
"east": "false",
"north": "true",
@@ -105236,7 +109633,7 @@
}
},
{
- "id": 9157,
+ "id": 9409,
"properties": {
"east": "false",
"north": "true",
@@ -105246,7 +109643,7 @@
}
},
{
- "id": 9158,
+ "id": 9410,
"properties": {
"east": "false",
"north": "true",
@@ -105256,7 +109653,7 @@
}
},
{
- "id": 9159,
+ "id": 9411,
"properties": {
"east": "false",
"north": "true",
@@ -105266,7 +109663,7 @@
}
},
{
- "id": 9160,
+ "id": 9412,
"properties": {
"east": "false",
"north": "false",
@@ -105276,7 +109673,7 @@
}
},
{
- "id": 9161,
+ "id": 9413,
"properties": {
"east": "false",
"north": "false",
@@ -105286,7 +109683,7 @@
}
},
{
- "id": 9162,
+ "id": 9414,
"properties": {
"east": "false",
"north": "false",
@@ -105296,7 +109693,7 @@
}
},
{
- "id": 9163,
+ "id": 9415,
"properties": {
"east": "false",
"north": "false",
@@ -105306,7 +109703,7 @@
}
},
{
- "id": 9164,
+ "id": 9416,
"properties": {
"east": "false",
"north": "false",
@@ -105316,7 +109713,7 @@
}
},
{
- "id": 9165,
+ "id": 9417,
"properties": {
"east": "false",
"north": "false",
@@ -105326,7 +109723,7 @@
}
},
{
- "id": 9166,
+ "id": 9418,
"properties": {
"east": "false",
"north": "false",
@@ -105337,7 +109734,7 @@
},
{
"default": true,
- "id": 9167,
+ "id": 9419,
"properties": {
"east": "false",
"north": "false",
@@ -105352,7 +109749,7 @@
"states": [
{
"default": true,
- "id": 8965
+ "id": 9217
}
]
},
@@ -105368,25 +109765,25 @@
"states": [
{
"default": true,
- "id": 10558,
+ "id": 10890,
"properties": {
"facing": "north"
}
},
{
- "id": 10559,
+ "id": 10891,
"properties": {
"facing": "south"
}
},
{
- "id": 10560,
+ "id": 10892,
"properties": {
"facing": "west"
}
},
{
- "id": 10561,
+ "id": 10893,
"properties": {
"facing": "east"
}
@@ -105397,7 +109794,7 @@
"states": [
{
"default": true,
- "id": 2001
+ "id": 2048
}
]
},
@@ -105405,7 +109802,7 @@
"states": [
{
"default": true,
- "id": 18831
+ "id": 19300
}
]
},
@@ -105421,25 +109818,25 @@
"states": [
{
"default": true,
- "id": 17776,
+ "id": 18245,
"properties": {
"facing": "north"
}
},
{
- "id": 17777,
+ "id": 18246,
"properties": {
"facing": "south"
}
},
{
- "id": 17778,
+ "id": 18247,
"properties": {
"facing": "west"
}
},
{
- "id": 17779,
+ "id": 18248,
"properties": {
"facing": "east"
}
@@ -105470,97 +109867,97 @@
"states": [
{
"default": true,
- "id": 10314,
+ "id": 10646,
"properties": {
"rotation": "0"
}
},
{
- "id": 10315,
+ "id": 10647,
"properties": {
"rotation": "1"
}
},
{
- "id": 10316,
+ "id": 10648,
"properties": {
"rotation": "2"
}
},
{
- "id": 10317,
+ "id": 10649,
"properties": {
"rotation": "3"
}
},
{
- "id": 10318,
+ "id": 10650,
"properties": {
"rotation": "4"
}
},
{
- "id": 10319,
+ "id": 10651,
"properties": {
"rotation": "5"
}
},
{
- "id": 10320,
+ "id": 10652,
"properties": {
"rotation": "6"
}
},
{
- "id": 10321,
+ "id": 10653,
"properties": {
"rotation": "7"
}
},
{
- "id": 10322,
+ "id": 10654,
"properties": {
"rotation": "8"
}
},
{
- "id": 10323,
+ "id": 10655,
"properties": {
"rotation": "9"
}
},
{
- "id": 10324,
+ "id": 10656,
"properties": {
"rotation": "10"
}
},
{
- "id": 10325,
+ "id": 10657,
"properties": {
"rotation": "11"
}
},
{
- "id": 10326,
+ "id": 10658,
"properties": {
"rotation": "12"
}
},
{
- "id": 10327,
+ "id": 10659,
"properties": {
"rotation": "13"
}
},
{
- "id": 10328,
+ "id": 10660,
"properties": {
"rotation": "14"
}
},
{
- "id": 10329,
+ "id": 10661,
"properties": {
"rotation": "15"
}
@@ -105586,7 +109983,7 @@
},
"states": [
{
- "id": 1669,
+ "id": 1716,
"properties": {
"facing": "north",
"occupied": "true",
@@ -105594,7 +109991,7 @@
}
},
{
- "id": 1670,
+ "id": 1717,
"properties": {
"facing": "north",
"occupied": "true",
@@ -105602,7 +109999,7 @@
}
},
{
- "id": 1671,
+ "id": 1718,
"properties": {
"facing": "north",
"occupied": "false",
@@ -105611,7 +110008,7 @@
},
{
"default": true,
- "id": 1672,
+ "id": 1719,
"properties": {
"facing": "north",
"occupied": "false",
@@ -105619,7 +110016,7 @@
}
},
{
- "id": 1673,
+ "id": 1720,
"properties": {
"facing": "south",
"occupied": "true",
@@ -105627,7 +110024,7 @@
}
},
{
- "id": 1674,
+ "id": 1721,
"properties": {
"facing": "south",
"occupied": "true",
@@ -105635,7 +110032,7 @@
}
},
{
- "id": 1675,
+ "id": 1722,
"properties": {
"facing": "south",
"occupied": "false",
@@ -105643,7 +110040,7 @@
}
},
{
- "id": 1676,
+ "id": 1723,
"properties": {
"facing": "south",
"occupied": "false",
@@ -105651,7 +110048,7 @@
}
},
{
- "id": 1677,
+ "id": 1724,
"properties": {
"facing": "west",
"occupied": "true",
@@ -105659,7 +110056,7 @@
}
},
{
- "id": 1678,
+ "id": 1725,
"properties": {
"facing": "west",
"occupied": "true",
@@ -105667,7 +110064,7 @@
}
},
{
- "id": 1679,
+ "id": 1726,
"properties": {
"facing": "west",
"occupied": "false",
@@ -105675,7 +110072,7 @@
}
},
{
- "id": 1680,
+ "id": 1727,
"properties": {
"facing": "west",
"occupied": "false",
@@ -105683,7 +110080,7 @@
}
},
{
- "id": 1681,
+ "id": 1728,
"properties": {
"facing": "east",
"occupied": "true",
@@ -105691,7 +110088,7 @@
}
},
{
- "id": 1682,
+ "id": 1729,
"properties": {
"facing": "east",
"occupied": "true",
@@ -105699,7 +110096,7 @@
}
},
{
- "id": 1683,
+ "id": 1730,
"properties": {
"facing": "east",
"occupied": "false",
@@ -105707,7 +110104,7 @@
}
},
{
- "id": 1684,
+ "id": 1731,
"properties": {
"facing": "east",
"occupied": "false",
@@ -105735,7 +110132,7 @@
},
"states": [
{
- "id": 20145,
+ "id": 20614,
"properties": {
"candles": "1",
"lit": "true",
@@ -105743,7 +110140,7 @@
}
},
{
- "id": 20146,
+ "id": 20615,
"properties": {
"candles": "1",
"lit": "true",
@@ -105751,7 +110148,7 @@
}
},
{
- "id": 20147,
+ "id": 20616,
"properties": {
"candles": "1",
"lit": "false",
@@ -105760,7 +110157,7 @@
},
{
"default": true,
- "id": 20148,
+ "id": 20617,
"properties": {
"candles": "1",
"lit": "false",
@@ -105768,7 +110165,7 @@
}
},
{
- "id": 20149,
+ "id": 20618,
"properties": {
"candles": "2",
"lit": "true",
@@ -105776,7 +110173,7 @@
}
},
{
- "id": 20150,
+ "id": 20619,
"properties": {
"candles": "2",
"lit": "true",
@@ -105784,7 +110181,7 @@
}
},
{
- "id": 20151,
+ "id": 20620,
"properties": {
"candles": "2",
"lit": "false",
@@ -105792,7 +110189,7 @@
}
},
{
- "id": 20152,
+ "id": 20621,
"properties": {
"candles": "2",
"lit": "false",
@@ -105800,7 +110197,7 @@
}
},
{
- "id": 20153,
+ "id": 20622,
"properties": {
"candles": "3",
"lit": "true",
@@ -105808,7 +110205,7 @@
}
},
{
- "id": 20154,
+ "id": 20623,
"properties": {
"candles": "3",
"lit": "true",
@@ -105816,7 +110213,7 @@
}
},
{
- "id": 20155,
+ "id": 20624,
"properties": {
"candles": "3",
"lit": "false",
@@ -105824,7 +110221,7 @@
}
},
{
- "id": 20156,
+ "id": 20625,
"properties": {
"candles": "3",
"lit": "false",
@@ -105832,7 +110229,7 @@
}
},
{
- "id": 20157,
+ "id": 20626,
"properties": {
"candles": "4",
"lit": "true",
@@ -105840,7 +110237,7 @@
}
},
{
- "id": 20158,
+ "id": 20627,
"properties": {
"candles": "4",
"lit": "true",
@@ -105848,7 +110245,7 @@
}
},
{
- "id": 20159,
+ "id": 20628,
"properties": {
"candles": "4",
"lit": "false",
@@ -105856,7 +110253,7 @@
}
},
{
- "id": 20160,
+ "id": 20629,
"properties": {
"candles": "4",
"lit": "false",
@@ -105874,14 +110271,14 @@
},
"states": [
{
- "id": 20375,
+ "id": 20844,
"properties": {
"lit": "true"
}
},
{
"default": true,
- "id": 20376,
+ "id": 20845,
"properties": {
"lit": "false"
}
@@ -105892,7 +110289,7 @@
"states": [
{
"default": true,
- "id": 10253
+ "id": 10585
}
]
},
@@ -105900,7 +110297,7 @@
"states": [
{
"default": true,
- "id": 12105
+ "id": 12574
}
]
},
@@ -105908,7 +110305,7 @@
"states": [
{
"default": true,
- "id": 12121
+ "id": 12590
}
]
},
@@ -105924,25 +110321,25 @@
"states": [
{
"default": true,
- "id": 12047,
+ "id": 12516,
"properties": {
"facing": "north"
}
},
{
- "id": 12048,
+ "id": 12517,
"properties": {
"facing": "south"
}
},
{
- "id": 12049,
+ "id": 12518,
"properties": {
"facing": "west"
}
},
{
- "id": 12050,
+ "id": 12519,
"properties": {
"facing": "east"
}
@@ -105962,38 +110359,38 @@
},
"states": [
{
- "id": 11955,
+ "id": 12424,
"properties": {
"facing": "north"
}
},
{
- "id": 11956,
+ "id": 12425,
"properties": {
"facing": "east"
}
},
{
- "id": 11957,
+ "id": 12426,
"properties": {
"facing": "south"
}
},
{
- "id": 11958,
+ "id": 12427,
"properties": {
"facing": "west"
}
},
{
"default": true,
- "id": 11959,
+ "id": 12428,
"properties": {
"facing": "up"
}
},
{
- "id": 11960,
+ "id": 12429,
"properties": {
"facing": "down"
}
@@ -106004,7 +110401,7 @@
"states": [
{
"default": true,
- "id": 5782
+ "id": 5944
}
]
},
@@ -106033,7 +110430,7 @@
},
"states": [
{
- "id": 9040,
+ "id": 9292,
"properties": {
"east": "true",
"north": "true",
@@ -106043,7 +110440,7 @@
}
},
{
- "id": 9041,
+ "id": 9293,
"properties": {
"east": "true",
"north": "true",
@@ -106053,7 +110450,7 @@
}
},
{
- "id": 9042,
+ "id": 9294,
"properties": {
"east": "true",
"north": "true",
@@ -106063,7 +110460,7 @@
}
},
{
- "id": 9043,
+ "id": 9295,
"properties": {
"east": "true",
"north": "true",
@@ -106073,7 +110470,7 @@
}
},
{
- "id": 9044,
+ "id": 9296,
"properties": {
"east": "true",
"north": "true",
@@ -106083,7 +110480,7 @@
}
},
{
- "id": 9045,
+ "id": 9297,
"properties": {
"east": "true",
"north": "true",
@@ -106093,7 +110490,7 @@
}
},
{
- "id": 9046,
+ "id": 9298,
"properties": {
"east": "true",
"north": "true",
@@ -106103,7 +110500,7 @@
}
},
{
- "id": 9047,
+ "id": 9299,
"properties": {
"east": "true",
"north": "true",
@@ -106113,7 +110510,7 @@
}
},
{
- "id": 9048,
+ "id": 9300,
"properties": {
"east": "true",
"north": "false",
@@ -106123,7 +110520,7 @@
}
},
{
- "id": 9049,
+ "id": 9301,
"properties": {
"east": "true",
"north": "false",
@@ -106133,7 +110530,7 @@
}
},
{
- "id": 9050,
+ "id": 9302,
"properties": {
"east": "true",
"north": "false",
@@ -106143,7 +110540,7 @@
}
},
{
- "id": 9051,
+ "id": 9303,
"properties": {
"east": "true",
"north": "false",
@@ -106153,7 +110550,7 @@
}
},
{
- "id": 9052,
+ "id": 9304,
"properties": {
"east": "true",
"north": "false",
@@ -106163,7 +110560,7 @@
}
},
{
- "id": 9053,
+ "id": 9305,
"properties": {
"east": "true",
"north": "false",
@@ -106173,7 +110570,7 @@
}
},
{
- "id": 9054,
+ "id": 9306,
"properties": {
"east": "true",
"north": "false",
@@ -106183,7 +110580,7 @@
}
},
{
- "id": 9055,
+ "id": 9307,
"properties": {
"east": "true",
"north": "false",
@@ -106193,7 +110590,7 @@
}
},
{
- "id": 9056,
+ "id": 9308,
"properties": {
"east": "false",
"north": "true",
@@ -106203,7 +110600,7 @@
}
},
{
- "id": 9057,
+ "id": 9309,
"properties": {
"east": "false",
"north": "true",
@@ -106213,7 +110610,7 @@
}
},
{
- "id": 9058,
+ "id": 9310,
"properties": {
"east": "false",
"north": "true",
@@ -106223,7 +110620,7 @@
}
},
{
- "id": 9059,
+ "id": 9311,
"properties": {
"east": "false",
"north": "true",
@@ -106233,7 +110630,7 @@
}
},
{
- "id": 9060,
+ "id": 9312,
"properties": {
"east": "false",
"north": "true",
@@ -106243,7 +110640,7 @@
}
},
{
- "id": 9061,
+ "id": 9313,
"properties": {
"east": "false",
"north": "true",
@@ -106253,7 +110650,7 @@
}
},
{
- "id": 9062,
+ "id": 9314,
"properties": {
"east": "false",
"north": "true",
@@ -106263,7 +110660,7 @@
}
},
{
- "id": 9063,
+ "id": 9315,
"properties": {
"east": "false",
"north": "true",
@@ -106273,7 +110670,7 @@
}
},
{
- "id": 9064,
+ "id": 9316,
"properties": {
"east": "false",
"north": "false",
@@ -106283,7 +110680,7 @@
}
},
{
- "id": 9065,
+ "id": 9317,
"properties": {
"east": "false",
"north": "false",
@@ -106293,7 +110690,7 @@
}
},
{
- "id": 9066,
+ "id": 9318,
"properties": {
"east": "false",
"north": "false",
@@ -106303,7 +110700,7 @@
}
},
{
- "id": 9067,
+ "id": 9319,
"properties": {
"east": "false",
"north": "false",
@@ -106313,7 +110710,7 @@
}
},
{
- "id": 9068,
+ "id": 9320,
"properties": {
"east": "false",
"north": "false",
@@ -106323,7 +110720,7 @@
}
},
{
- "id": 9069,
+ "id": 9321,
"properties": {
"east": "false",
"north": "false",
@@ -106333,7 +110730,7 @@
}
},
{
- "id": 9070,
+ "id": 9322,
"properties": {
"east": "false",
"north": "false",
@@ -106344,7 +110741,7 @@
},
{
"default": true,
- "id": 9071,
+ "id": 9323,
"properties": {
"east": "false",
"north": "false",
@@ -106359,7 +110756,7 @@
"states": [
{
"default": true,
- "id": 8962
+ "id": 9214
}
]
},
@@ -106375,25 +110772,25 @@
"states": [
{
"default": true,
- "id": 10546,
+ "id": 10878,
"properties": {
"facing": "north"
}
},
{
- "id": 10547,
+ "id": 10879,
"properties": {
"facing": "south"
}
},
{
- "id": 10548,
+ "id": 10880,
"properties": {
"facing": "west"
}
},
{
- "id": 10549,
+ "id": 10881,
"properties": {
"facing": "east"
}
@@ -106404,7 +110801,7 @@
"states": [
{
"default": true,
- "id": 1998
+ "id": 2045
}
]
},
@@ -106412,7 +110809,7 @@
"states": [
{
"default": true,
- "id": 11918
+ "id": 12387
}
]
},
@@ -106436,7 +110833,7 @@
},
"states": [
{
- "id": 8523,
+ "id": 8775,
"properties": {
"face": "floor",
"facing": "north",
@@ -106444,7 +110841,7 @@
}
},
{
- "id": 8524,
+ "id": 8776,
"properties": {
"face": "floor",
"facing": "north",
@@ -106452,7 +110849,7 @@
}
},
{
- "id": 8525,
+ "id": 8777,
"properties": {
"face": "floor",
"facing": "south",
@@ -106460,7 +110857,7 @@
}
},
{
- "id": 8526,
+ "id": 8778,
"properties": {
"face": "floor",
"facing": "south",
@@ -106468,7 +110865,7 @@
}
},
{
- "id": 8527,
+ "id": 8779,
"properties": {
"face": "floor",
"facing": "west",
@@ -106476,7 +110873,7 @@
}
},
{
- "id": 8528,
+ "id": 8780,
"properties": {
"face": "floor",
"facing": "west",
@@ -106484,7 +110881,7 @@
}
},
{
- "id": 8529,
+ "id": 8781,
"properties": {
"face": "floor",
"facing": "east",
@@ -106492,7 +110889,7 @@
}
},
{
- "id": 8530,
+ "id": 8782,
"properties": {
"face": "floor",
"facing": "east",
@@ -106500,7 +110897,7 @@
}
},
{
- "id": 8531,
+ "id": 8783,
"properties": {
"face": "wall",
"facing": "north",
@@ -106509,7 +110906,7 @@
},
{
"default": true,
- "id": 8532,
+ "id": 8784,
"properties": {
"face": "wall",
"facing": "north",
@@ -106517,7 +110914,7 @@
}
},
{
- "id": 8533,
+ "id": 8785,
"properties": {
"face": "wall",
"facing": "south",
@@ -106525,7 +110922,7 @@
}
},
{
- "id": 8534,
+ "id": 8786,
"properties": {
"face": "wall",
"facing": "south",
@@ -106533,7 +110930,7 @@
}
},
{
- "id": 8535,
+ "id": 8787,
"properties": {
"face": "wall",
"facing": "west",
@@ -106541,7 +110938,7 @@
}
},
{
- "id": 8536,
+ "id": 8788,
"properties": {
"face": "wall",
"facing": "west",
@@ -106549,7 +110946,7 @@
}
},
{
- "id": 8537,
+ "id": 8789,
"properties": {
"face": "wall",
"facing": "east",
@@ -106557,7 +110954,7 @@
}
},
{
- "id": 8538,
+ "id": 8790,
"properties": {
"face": "wall",
"facing": "east",
@@ -106565,7 +110962,7 @@
}
},
{
- "id": 8539,
+ "id": 8791,
"properties": {
"face": "ceiling",
"facing": "north",
@@ -106573,7 +110970,7 @@
}
},
{
- "id": 8540,
+ "id": 8792,
"properties": {
"face": "ceiling",
"facing": "north",
@@ -106581,7 +110978,7 @@
}
},
{
- "id": 8541,
+ "id": 8793,
"properties": {
"face": "ceiling",
"facing": "south",
@@ -106589,7 +110986,7 @@
}
},
{
- "id": 8542,
+ "id": 8794,
"properties": {
"face": "ceiling",
"facing": "south",
@@ -106597,7 +110994,7 @@
}
},
{
- "id": 8543,
+ "id": 8795,
"properties": {
"face": "ceiling",
"facing": "west",
@@ -106605,7 +111002,7 @@
}
},
{
- "id": 8544,
+ "id": 8796,
"properties": {
"face": "ceiling",
"facing": "west",
@@ -106613,7 +111010,7 @@
}
},
{
- "id": 8545,
+ "id": 8797,
"properties": {
"face": "ceiling",
"facing": "east",
@@ -106621,7 +111018,7 @@
}
},
{
- "id": 8546,
+ "id": 8798,
"properties": {
"face": "ceiling",
"facing": "east",
@@ -106657,7 +111054,7 @@
},
"states": [
{
- "id": 11595,
+ "id": 12061,
"properties": {
"facing": "north",
"half": "upper",
@@ -106667,7 +111064,7 @@
}
},
{
- "id": 11596,
+ "id": 12062,
"properties": {
"facing": "north",
"half": "upper",
@@ -106677,7 +111074,7 @@
}
},
{
- "id": 11597,
+ "id": 12063,
"properties": {
"facing": "north",
"half": "upper",
@@ -106687,7 +111084,7 @@
}
},
{
- "id": 11598,
+ "id": 12064,
"properties": {
"facing": "north",
"half": "upper",
@@ -106697,7 +111094,7 @@
}
},
{
- "id": 11599,
+ "id": 12065,
"properties": {
"facing": "north",
"half": "upper",
@@ -106707,7 +111104,7 @@
}
},
{
- "id": 11600,
+ "id": 12066,
"properties": {
"facing": "north",
"half": "upper",
@@ -106717,7 +111114,7 @@
}
},
{
- "id": 11601,
+ "id": 12067,
"properties": {
"facing": "north",
"half": "upper",
@@ -106727,7 +111124,7 @@
}
},
{
- "id": 11602,
+ "id": 12068,
"properties": {
"facing": "north",
"half": "upper",
@@ -106737,7 +111134,7 @@
}
},
{
- "id": 11603,
+ "id": 12069,
"properties": {
"facing": "north",
"half": "lower",
@@ -106747,7 +111144,7 @@
}
},
{
- "id": 11604,
+ "id": 12070,
"properties": {
"facing": "north",
"half": "lower",
@@ -106757,7 +111154,7 @@
}
},
{
- "id": 11605,
+ "id": 12071,
"properties": {
"facing": "north",
"half": "lower",
@@ -106768,7 +111165,7 @@
},
{
"default": true,
- "id": 11606,
+ "id": 12072,
"properties": {
"facing": "north",
"half": "lower",
@@ -106778,7 +111175,7 @@
}
},
{
- "id": 11607,
+ "id": 12073,
"properties": {
"facing": "north",
"half": "lower",
@@ -106788,7 +111185,7 @@
}
},
{
- "id": 11608,
+ "id": 12074,
"properties": {
"facing": "north",
"half": "lower",
@@ -106798,7 +111195,7 @@
}
},
{
- "id": 11609,
+ "id": 12075,
"properties": {
"facing": "north",
"half": "lower",
@@ -106808,7 +111205,7 @@
}
},
{
- "id": 11610,
+ "id": 12076,
"properties": {
"facing": "north",
"half": "lower",
@@ -106818,7 +111215,7 @@
}
},
{
- "id": 11611,
+ "id": 12077,
"properties": {
"facing": "south",
"half": "upper",
@@ -106828,7 +111225,7 @@
}
},
{
- "id": 11612,
+ "id": 12078,
"properties": {
"facing": "south",
"half": "upper",
@@ -106838,7 +111235,7 @@
}
},
{
- "id": 11613,
+ "id": 12079,
"properties": {
"facing": "south",
"half": "upper",
@@ -106848,7 +111245,7 @@
}
},
{
- "id": 11614,
+ "id": 12080,
"properties": {
"facing": "south",
"half": "upper",
@@ -106858,7 +111255,7 @@
}
},
{
- "id": 11615,
+ "id": 12081,
"properties": {
"facing": "south",
"half": "upper",
@@ -106868,7 +111265,7 @@
}
},
{
- "id": 11616,
+ "id": 12082,
"properties": {
"facing": "south",
"half": "upper",
@@ -106878,7 +111275,7 @@
}
},
{
- "id": 11617,
+ "id": 12083,
"properties": {
"facing": "south",
"half": "upper",
@@ -106888,7 +111285,7 @@
}
},
{
- "id": 11618,
+ "id": 12084,
"properties": {
"facing": "south",
"half": "upper",
@@ -106898,7 +111295,7 @@
}
},
{
- "id": 11619,
+ "id": 12085,
"properties": {
"facing": "south",
"half": "lower",
@@ -106908,7 +111305,7 @@
}
},
{
- "id": 11620,
+ "id": 12086,
"properties": {
"facing": "south",
"half": "lower",
@@ -106918,7 +111315,7 @@
}
},
{
- "id": 11621,
+ "id": 12087,
"properties": {
"facing": "south",
"half": "lower",
@@ -106928,7 +111325,7 @@
}
},
{
- "id": 11622,
+ "id": 12088,
"properties": {
"facing": "south",
"half": "lower",
@@ -106938,7 +111335,7 @@
}
},
{
- "id": 11623,
+ "id": 12089,
"properties": {
"facing": "south",
"half": "lower",
@@ -106948,7 +111345,7 @@
}
},
{
- "id": 11624,
+ "id": 12090,
"properties": {
"facing": "south",
"half": "lower",
@@ -106958,7 +111355,7 @@
}
},
{
- "id": 11625,
+ "id": 12091,
"properties": {
"facing": "south",
"half": "lower",
@@ -106968,7 +111365,7 @@
}
},
{
- "id": 11626,
+ "id": 12092,
"properties": {
"facing": "south",
"half": "lower",
@@ -106978,7 +111375,7 @@
}
},
{
- "id": 11627,
+ "id": 12093,
"properties": {
"facing": "west",
"half": "upper",
@@ -106988,7 +111385,7 @@
}
},
{
- "id": 11628,
+ "id": 12094,
"properties": {
"facing": "west",
"half": "upper",
@@ -106998,7 +111395,7 @@
}
},
{
- "id": 11629,
+ "id": 12095,
"properties": {
"facing": "west",
"half": "upper",
@@ -107008,7 +111405,7 @@
}
},
{
- "id": 11630,
+ "id": 12096,
"properties": {
"facing": "west",
"half": "upper",
@@ -107018,7 +111415,7 @@
}
},
{
- "id": 11631,
+ "id": 12097,
"properties": {
"facing": "west",
"half": "upper",
@@ -107028,7 +111425,7 @@
}
},
{
- "id": 11632,
+ "id": 12098,
"properties": {
"facing": "west",
"half": "upper",
@@ -107038,7 +111435,7 @@
}
},
{
- "id": 11633,
+ "id": 12099,
"properties": {
"facing": "west",
"half": "upper",
@@ -107048,7 +111445,7 @@
}
},
{
- "id": 11634,
+ "id": 12100,
"properties": {
"facing": "west",
"half": "upper",
@@ -107058,7 +111455,7 @@
}
},
{
- "id": 11635,
+ "id": 12101,
"properties": {
"facing": "west",
"half": "lower",
@@ -107068,7 +111465,7 @@
}
},
{
- "id": 11636,
+ "id": 12102,
"properties": {
"facing": "west",
"half": "lower",
@@ -107078,7 +111475,7 @@
}
},
{
- "id": 11637,
+ "id": 12103,
"properties": {
"facing": "west",
"half": "lower",
@@ -107088,7 +111485,7 @@
}
},
{
- "id": 11638,
+ "id": 12104,
"properties": {
"facing": "west",
"half": "lower",
@@ -107098,7 +111495,7 @@
}
},
{
- "id": 11639,
+ "id": 12105,
"properties": {
"facing": "west",
"half": "lower",
@@ -107108,7 +111505,7 @@
}
},
{
- "id": 11640,
+ "id": 12106,
"properties": {
"facing": "west",
"half": "lower",
@@ -107118,7 +111515,7 @@
}
},
{
- "id": 11641,
+ "id": 12107,
"properties": {
"facing": "west",
"half": "lower",
@@ -107128,7 +111525,7 @@
}
},
{
- "id": 11642,
+ "id": 12108,
"properties": {
"facing": "west",
"half": "lower",
@@ -107138,7 +111535,7 @@
}
},
{
- "id": 11643,
+ "id": 12109,
"properties": {
"facing": "east",
"half": "upper",
@@ -107148,7 +111545,7 @@
}
},
{
- "id": 11644,
+ "id": 12110,
"properties": {
"facing": "east",
"half": "upper",
@@ -107158,7 +111555,7 @@
}
},
{
- "id": 11645,
+ "id": 12111,
"properties": {
"facing": "east",
"half": "upper",
@@ -107168,7 +111565,7 @@
}
},
{
- "id": 11646,
+ "id": 12112,
"properties": {
"facing": "east",
"half": "upper",
@@ -107178,7 +111575,7 @@
}
},
{
- "id": 11647,
+ "id": 12113,
"properties": {
"facing": "east",
"half": "upper",
@@ -107188,7 +111585,7 @@
}
},
{
- "id": 11648,
+ "id": 12114,
"properties": {
"facing": "east",
"half": "upper",
@@ -107198,7 +111595,7 @@
}
},
{
- "id": 11649,
+ "id": 12115,
"properties": {
"facing": "east",
"half": "upper",
@@ -107208,7 +111605,7 @@
}
},
{
- "id": 11650,
+ "id": 12116,
"properties": {
"facing": "east",
"half": "upper",
@@ -107218,7 +111615,7 @@
}
},
{
- "id": 11651,
+ "id": 12117,
"properties": {
"facing": "east",
"half": "lower",
@@ -107228,7 +111625,7 @@
}
},
{
- "id": 11652,
+ "id": 12118,
"properties": {
"facing": "east",
"half": "lower",
@@ -107238,7 +111635,7 @@
}
},
{
- "id": 11653,
+ "id": 12119,
"properties": {
"facing": "east",
"half": "lower",
@@ -107248,7 +111645,7 @@
}
},
{
- "id": 11654,
+ "id": 12120,
"properties": {
"facing": "east",
"half": "lower",
@@ -107258,7 +111655,7 @@
}
},
{
- "id": 11655,
+ "id": 12121,
"properties": {
"facing": "east",
"half": "lower",
@@ -107268,7 +111665,7 @@
}
},
{
- "id": 11656,
+ "id": 12122,
"properties": {
"facing": "east",
"half": "lower",
@@ -107278,7 +111675,7 @@
}
},
{
- "id": 11657,
+ "id": 12123,
"properties": {
"facing": "east",
"half": "lower",
@@ -107288,7 +111685,7 @@
}
},
{
- "id": 11658,
+ "id": 12124,
"properties": {
"facing": "east",
"half": "lower",
@@ -107324,7 +111721,7 @@
},
"states": [
{
- "id": 11211,
+ "id": 11613,
"properties": {
"east": "true",
"north": "true",
@@ -107334,7 +111731,7 @@
}
},
{
- "id": 11212,
+ "id": 11614,
"properties": {
"east": "true",
"north": "true",
@@ -107344,7 +111741,7 @@
}
},
{
- "id": 11213,
+ "id": 11615,
"properties": {
"east": "true",
"north": "true",
@@ -107354,7 +111751,7 @@
}
},
{
- "id": 11214,
+ "id": 11616,
"properties": {
"east": "true",
"north": "true",
@@ -107364,7 +111761,7 @@
}
},
{
- "id": 11215,
+ "id": 11617,
"properties": {
"east": "true",
"north": "true",
@@ -107374,7 +111771,7 @@
}
},
{
- "id": 11216,
+ "id": 11618,
"properties": {
"east": "true",
"north": "true",
@@ -107384,7 +111781,7 @@
}
},
{
- "id": 11217,
+ "id": 11619,
"properties": {
"east": "true",
"north": "true",
@@ -107394,7 +111791,7 @@
}
},
{
- "id": 11218,
+ "id": 11620,
"properties": {
"east": "true",
"north": "true",
@@ -107404,7 +111801,7 @@
}
},
{
- "id": 11219,
+ "id": 11621,
"properties": {
"east": "true",
"north": "false",
@@ -107414,7 +111811,7 @@
}
},
{
- "id": 11220,
+ "id": 11622,
"properties": {
"east": "true",
"north": "false",
@@ -107424,7 +111821,7 @@
}
},
{
- "id": 11221,
+ "id": 11623,
"properties": {
"east": "true",
"north": "false",
@@ -107434,7 +111831,7 @@
}
},
{
- "id": 11222,
+ "id": 11624,
"properties": {
"east": "true",
"north": "false",
@@ -107444,7 +111841,7 @@
}
},
{
- "id": 11223,
+ "id": 11625,
"properties": {
"east": "true",
"north": "false",
@@ -107454,7 +111851,7 @@
}
},
{
- "id": 11224,
+ "id": 11626,
"properties": {
"east": "true",
"north": "false",
@@ -107464,7 +111861,7 @@
}
},
{
- "id": 11225,
+ "id": 11627,
"properties": {
"east": "true",
"north": "false",
@@ -107474,7 +111871,7 @@
}
},
{
- "id": 11226,
+ "id": 11628,
"properties": {
"east": "true",
"north": "false",
@@ -107484,7 +111881,7 @@
}
},
{
- "id": 11227,
+ "id": 11629,
"properties": {
"east": "false",
"north": "true",
@@ -107494,7 +111891,7 @@
}
},
{
- "id": 11228,
+ "id": 11630,
"properties": {
"east": "false",
"north": "true",
@@ -107504,7 +111901,7 @@
}
},
{
- "id": 11229,
+ "id": 11631,
"properties": {
"east": "false",
"north": "true",
@@ -107514,7 +111911,7 @@
}
},
{
- "id": 11230,
+ "id": 11632,
"properties": {
"east": "false",
"north": "true",
@@ -107524,7 +111921,7 @@
}
},
{
- "id": 11231,
+ "id": 11633,
"properties": {
"east": "false",
"north": "true",
@@ -107534,7 +111931,7 @@
}
},
{
- "id": 11232,
+ "id": 11634,
"properties": {
"east": "false",
"north": "true",
@@ -107544,7 +111941,7 @@
}
},
{
- "id": 11233,
+ "id": 11635,
"properties": {
"east": "false",
"north": "true",
@@ -107554,7 +111951,7 @@
}
},
{
- "id": 11234,
+ "id": 11636,
"properties": {
"east": "false",
"north": "true",
@@ -107564,7 +111961,7 @@
}
},
{
- "id": 11235,
+ "id": 11637,
"properties": {
"east": "false",
"north": "false",
@@ -107574,7 +111971,7 @@
}
},
{
- "id": 11236,
+ "id": 11638,
"properties": {
"east": "false",
"north": "false",
@@ -107584,7 +111981,7 @@
}
},
{
- "id": 11237,
+ "id": 11639,
"properties": {
"east": "false",
"north": "false",
@@ -107594,7 +111991,7 @@
}
},
{
- "id": 11238,
+ "id": 11640,
"properties": {
"east": "false",
"north": "false",
@@ -107604,7 +112001,7 @@
}
},
{
- "id": 11239,
+ "id": 11641,
"properties": {
"east": "false",
"north": "false",
@@ -107614,7 +112011,7 @@
}
},
{
- "id": 11240,
+ "id": 11642,
"properties": {
"east": "false",
"north": "false",
@@ -107624,7 +112021,7 @@
}
},
{
- "id": 11241,
+ "id": 11643,
"properties": {
"east": "false",
"north": "false",
@@ -107635,7 +112032,7 @@
},
{
"default": true,
- "id": 11242,
+ "id": 11644,
"properties": {
"east": "false",
"north": "false",
@@ -107669,7 +112066,7 @@
},
"states": [
{
- "id": 10987,
+ "id": 11357,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -107678,7 +112075,7 @@
}
},
{
- "id": 10988,
+ "id": 11358,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -107687,7 +112084,7 @@
}
},
{
- "id": 10989,
+ "id": 11359,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -107696,7 +112093,7 @@
}
},
{
- "id": 10990,
+ "id": 11360,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -107705,7 +112102,7 @@
}
},
{
- "id": 10991,
+ "id": 11361,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -107714,7 +112111,7 @@
}
},
{
- "id": 10992,
+ "id": 11362,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -107723,7 +112120,7 @@
}
},
{
- "id": 10993,
+ "id": 11363,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -107733,7 +112130,7 @@
},
{
"default": true,
- "id": 10994,
+ "id": 11364,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -107742,7 +112139,7 @@
}
},
{
- "id": 10995,
+ "id": 11365,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -107751,7 +112148,7 @@
}
},
{
- "id": 10996,
+ "id": 11366,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -107760,7 +112157,7 @@
}
},
{
- "id": 10997,
+ "id": 11367,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -107769,7 +112166,7 @@
}
},
{
- "id": 10998,
+ "id": 11368,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -107778,7 +112175,7 @@
}
},
{
- "id": 10999,
+ "id": 11369,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -107787,7 +112184,7 @@
}
},
{
- "id": 11000,
+ "id": 11370,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -107796,7 +112193,7 @@
}
},
{
- "id": 11001,
+ "id": 11371,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -107805,7 +112202,7 @@
}
},
{
- "id": 11002,
+ "id": 11372,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -107814,7 +112211,7 @@
}
},
{
- "id": 11003,
+ "id": 11373,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -107823,7 +112220,7 @@
}
},
{
- "id": 11004,
+ "id": 11374,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -107832,7 +112229,7 @@
}
},
{
- "id": 11005,
+ "id": 11375,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -107841,7 +112238,7 @@
}
},
{
- "id": 11006,
+ "id": 11376,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -107850,7 +112247,7 @@
}
},
{
- "id": 11007,
+ "id": 11377,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -107859,7 +112256,7 @@
}
},
{
- "id": 11008,
+ "id": 11378,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -107868,7 +112265,7 @@
}
},
{
- "id": 11009,
+ "id": 11379,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -107877,7 +112274,7 @@
}
},
{
- "id": 11010,
+ "id": 11380,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -107886,7 +112283,7 @@
}
},
{
- "id": 11011,
+ "id": 11381,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -107895,7 +112292,7 @@
}
},
{
- "id": 11012,
+ "id": 11382,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -107904,7 +112301,7 @@
}
},
{
- "id": 11013,
+ "id": 11383,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -107913,7 +112310,7 @@
}
},
{
- "id": 11014,
+ "id": 11384,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -107922,7 +112319,7 @@
}
},
{
- "id": 11015,
+ "id": 11385,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -107931,7 +112328,7 @@
}
},
{
- "id": 11016,
+ "id": 11386,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -107940,7 +112337,7 @@
}
},
{
- "id": 11017,
+ "id": 11387,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -107949,7 +112346,7 @@
}
},
{
- "id": 11018,
+ "id": 11388,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -107990,7 +112387,7 @@
},
"states": [
{
- "id": 5254,
+ "id": 5406,
"properties": {
"attached": "true",
"rotation": "0",
@@ -107998,7 +112395,7 @@
}
},
{
- "id": 5255,
+ "id": 5407,
"properties": {
"attached": "true",
"rotation": "0",
@@ -108006,7 +112403,7 @@
}
},
{
- "id": 5256,
+ "id": 5408,
"properties": {
"attached": "true",
"rotation": "1",
@@ -108014,7 +112411,7 @@
}
},
{
- "id": 5257,
+ "id": 5409,
"properties": {
"attached": "true",
"rotation": "1",
@@ -108022,7 +112419,7 @@
}
},
{
- "id": 5258,
+ "id": 5410,
"properties": {
"attached": "true",
"rotation": "2",
@@ -108030,7 +112427,7 @@
}
},
{
- "id": 5259,
+ "id": 5411,
"properties": {
"attached": "true",
"rotation": "2",
@@ -108038,7 +112435,7 @@
}
},
{
- "id": 5260,
+ "id": 5412,
"properties": {
"attached": "true",
"rotation": "3",
@@ -108046,7 +112443,7 @@
}
},
{
- "id": 5261,
+ "id": 5413,
"properties": {
"attached": "true",
"rotation": "3",
@@ -108054,7 +112451,7 @@
}
},
{
- "id": 5262,
+ "id": 5414,
"properties": {
"attached": "true",
"rotation": "4",
@@ -108062,7 +112459,7 @@
}
},
{
- "id": 5263,
+ "id": 5415,
"properties": {
"attached": "true",
"rotation": "4",
@@ -108070,7 +112467,7 @@
}
},
{
- "id": 5264,
+ "id": 5416,
"properties": {
"attached": "true",
"rotation": "5",
@@ -108078,7 +112475,7 @@
}
},
{
- "id": 5265,
+ "id": 5417,
"properties": {
"attached": "true",
"rotation": "5",
@@ -108086,7 +112483,7 @@
}
},
{
- "id": 5266,
+ "id": 5418,
"properties": {
"attached": "true",
"rotation": "6",
@@ -108094,7 +112491,7 @@
}
},
{
- "id": 5267,
+ "id": 5419,
"properties": {
"attached": "true",
"rotation": "6",
@@ -108102,7 +112499,7 @@
}
},
{
- "id": 5268,
+ "id": 5420,
"properties": {
"attached": "true",
"rotation": "7",
@@ -108110,7 +112507,7 @@
}
},
{
- "id": 5269,
+ "id": 5421,
"properties": {
"attached": "true",
"rotation": "7",
@@ -108118,7 +112515,7 @@
}
},
{
- "id": 5270,
+ "id": 5422,
"properties": {
"attached": "true",
"rotation": "8",
@@ -108126,7 +112523,7 @@
}
},
{
- "id": 5271,
+ "id": 5423,
"properties": {
"attached": "true",
"rotation": "8",
@@ -108134,7 +112531,7 @@
}
},
{
- "id": 5272,
+ "id": 5424,
"properties": {
"attached": "true",
"rotation": "9",
@@ -108142,7 +112539,7 @@
}
},
{
- "id": 5273,
+ "id": 5425,
"properties": {
"attached": "true",
"rotation": "9",
@@ -108150,7 +112547,7 @@
}
},
{
- "id": 5274,
+ "id": 5426,
"properties": {
"attached": "true",
"rotation": "10",
@@ -108158,7 +112555,7 @@
}
},
{
- "id": 5275,
+ "id": 5427,
"properties": {
"attached": "true",
"rotation": "10",
@@ -108166,7 +112563,7 @@
}
},
{
- "id": 5276,
+ "id": 5428,
"properties": {
"attached": "true",
"rotation": "11",
@@ -108174,7 +112571,7 @@
}
},
{
- "id": 5277,
+ "id": 5429,
"properties": {
"attached": "true",
"rotation": "11",
@@ -108182,7 +112579,7 @@
}
},
{
- "id": 5278,
+ "id": 5430,
"properties": {
"attached": "true",
"rotation": "12",
@@ -108190,7 +112587,7 @@
}
},
{
- "id": 5279,
+ "id": 5431,
"properties": {
"attached": "true",
"rotation": "12",
@@ -108198,7 +112595,7 @@
}
},
{
- "id": 5280,
+ "id": 5432,
"properties": {
"attached": "true",
"rotation": "13",
@@ -108206,7 +112603,7 @@
}
},
{
- "id": 5281,
+ "id": 5433,
"properties": {
"attached": "true",
"rotation": "13",
@@ -108214,7 +112611,7 @@
}
},
{
- "id": 5282,
+ "id": 5434,
"properties": {
"attached": "true",
"rotation": "14",
@@ -108222,7 +112619,7 @@
}
},
{
- "id": 5283,
+ "id": 5435,
"properties": {
"attached": "true",
"rotation": "14",
@@ -108230,7 +112627,7 @@
}
},
{
- "id": 5284,
+ "id": 5436,
"properties": {
"attached": "true",
"rotation": "15",
@@ -108238,7 +112635,7 @@
}
},
{
- "id": 5285,
+ "id": 5437,
"properties": {
"attached": "true",
"rotation": "15",
@@ -108246,7 +112643,7 @@
}
},
{
- "id": 5286,
+ "id": 5438,
"properties": {
"attached": "false",
"rotation": "0",
@@ -108255,7 +112652,7 @@
},
{
"default": true,
- "id": 5287,
+ "id": 5439,
"properties": {
"attached": "false",
"rotation": "0",
@@ -108263,7 +112660,7 @@
}
},
{
- "id": 5288,
+ "id": 5440,
"properties": {
"attached": "false",
"rotation": "1",
@@ -108271,7 +112668,7 @@
}
},
{
- "id": 5289,
+ "id": 5441,
"properties": {
"attached": "false",
"rotation": "1",
@@ -108279,7 +112676,7 @@
}
},
{
- "id": 5290,
+ "id": 5442,
"properties": {
"attached": "false",
"rotation": "2",
@@ -108287,7 +112684,7 @@
}
},
{
- "id": 5291,
+ "id": 5443,
"properties": {
"attached": "false",
"rotation": "2",
@@ -108295,7 +112692,7 @@
}
},
{
- "id": 5292,
+ "id": 5444,
"properties": {
"attached": "false",
"rotation": "3",
@@ -108303,7 +112700,7 @@
}
},
{
- "id": 5293,
+ "id": 5445,
"properties": {
"attached": "false",
"rotation": "3",
@@ -108311,7 +112708,7 @@
}
},
{
- "id": 5294,
+ "id": 5446,
"properties": {
"attached": "false",
"rotation": "4",
@@ -108319,7 +112716,7 @@
}
},
{
- "id": 5295,
+ "id": 5447,
"properties": {
"attached": "false",
"rotation": "4",
@@ -108327,7 +112724,7 @@
}
},
{
- "id": 5296,
+ "id": 5448,
"properties": {
"attached": "false",
"rotation": "5",
@@ -108335,7 +112732,7 @@
}
},
{
- "id": 5297,
+ "id": 5449,
"properties": {
"attached": "false",
"rotation": "5",
@@ -108343,7 +112740,7 @@
}
},
{
- "id": 5298,
+ "id": 5450,
"properties": {
"attached": "false",
"rotation": "6",
@@ -108351,7 +112748,7 @@
}
},
{
- "id": 5299,
+ "id": 5451,
"properties": {
"attached": "false",
"rotation": "6",
@@ -108359,7 +112756,7 @@
}
},
{
- "id": 5300,
+ "id": 5452,
"properties": {
"attached": "false",
"rotation": "7",
@@ -108367,7 +112764,7 @@
}
},
{
- "id": 5301,
+ "id": 5453,
"properties": {
"attached": "false",
"rotation": "7",
@@ -108375,7 +112772,7 @@
}
},
{
- "id": 5302,
+ "id": 5454,
"properties": {
"attached": "false",
"rotation": "8",
@@ -108383,7 +112780,7 @@
}
},
{
- "id": 5303,
+ "id": 5455,
"properties": {
"attached": "false",
"rotation": "8",
@@ -108391,7 +112788,7 @@
}
},
{
- "id": 5304,
+ "id": 5456,
"properties": {
"attached": "false",
"rotation": "9",
@@ -108399,7 +112796,7 @@
}
},
{
- "id": 5305,
+ "id": 5457,
"properties": {
"attached": "false",
"rotation": "9",
@@ -108407,7 +112804,7 @@
}
},
{
- "id": 5306,
+ "id": 5458,
"properties": {
"attached": "false",
"rotation": "10",
@@ -108415,7 +112812,7 @@
}
},
{
- "id": 5307,
+ "id": 5459,
"properties": {
"attached": "false",
"rotation": "10",
@@ -108423,7 +112820,7 @@
}
},
{
- "id": 5308,
+ "id": 5460,
"properties": {
"attached": "false",
"rotation": "11",
@@ -108431,7 +112828,7 @@
}
},
{
- "id": 5309,
+ "id": 5461,
"properties": {
"attached": "false",
"rotation": "11",
@@ -108439,7 +112836,7 @@
}
},
{
- "id": 5310,
+ "id": 5462,
"properties": {
"attached": "false",
"rotation": "12",
@@ -108447,7 +112844,7 @@
}
},
{
- "id": 5311,
+ "id": 5463,
"properties": {
"attached": "false",
"rotation": "12",
@@ -108455,7 +112852,7 @@
}
},
{
- "id": 5312,
+ "id": 5464,
"properties": {
"attached": "false",
"rotation": "13",
@@ -108463,7 +112860,7 @@
}
},
{
- "id": 5313,
+ "id": 5465,
"properties": {
"attached": "false",
"rotation": "13",
@@ -108471,7 +112868,7 @@
}
},
{
- "id": 5314,
+ "id": 5466,
"properties": {
"attached": "false",
"rotation": "14",
@@ -108479,7 +112876,7 @@
}
},
{
- "id": 5315,
+ "id": 5467,
"properties": {
"attached": "false",
"rotation": "14",
@@ -108487,7 +112884,7 @@
}
},
{
- "id": 5316,
+ "id": 5468,
"properties": {
"attached": "false",
"rotation": "15",
@@ -108495,7 +112892,7 @@
}
},
{
- "id": 5317,
+ "id": 5469,
"properties": {
"attached": "false",
"rotation": "15",
@@ -108526,7 +112923,7 @@
},
"states": [
{
- "id": 382,
+ "id": 429,
"properties": {
"distance": "1",
"persistent": "true",
@@ -108534,7 +112931,7 @@
}
},
{
- "id": 383,
+ "id": 430,
"properties": {
"distance": "1",
"persistent": "true",
@@ -108542,7 +112939,7 @@
}
},
{
- "id": 384,
+ "id": 431,
"properties": {
"distance": "1",
"persistent": "false",
@@ -108550,7 +112947,7 @@
}
},
{
- "id": 385,
+ "id": 432,
"properties": {
"distance": "1",
"persistent": "false",
@@ -108558,7 +112955,7 @@
}
},
{
- "id": 386,
+ "id": 433,
"properties": {
"distance": "2",
"persistent": "true",
@@ -108566,7 +112963,7 @@
}
},
{
- "id": 387,
+ "id": 434,
"properties": {
"distance": "2",
"persistent": "true",
@@ -108574,7 +112971,7 @@
}
},
{
- "id": 388,
+ "id": 435,
"properties": {
"distance": "2",
"persistent": "false",
@@ -108582,7 +112979,7 @@
}
},
{
- "id": 389,
+ "id": 436,
"properties": {
"distance": "2",
"persistent": "false",
@@ -108590,7 +112987,7 @@
}
},
{
- "id": 390,
+ "id": 437,
"properties": {
"distance": "3",
"persistent": "true",
@@ -108598,7 +112995,7 @@
}
},
{
- "id": 391,
+ "id": 438,
"properties": {
"distance": "3",
"persistent": "true",
@@ -108606,7 +113003,7 @@
}
},
{
- "id": 392,
+ "id": 439,
"properties": {
"distance": "3",
"persistent": "false",
@@ -108614,7 +113011,7 @@
}
},
{
- "id": 393,
+ "id": 440,
"properties": {
"distance": "3",
"persistent": "false",
@@ -108622,7 +113019,7 @@
}
},
{
- "id": 394,
+ "id": 441,
"properties": {
"distance": "4",
"persistent": "true",
@@ -108630,7 +113027,7 @@
}
},
{
- "id": 395,
+ "id": 442,
"properties": {
"distance": "4",
"persistent": "true",
@@ -108638,7 +113035,7 @@
}
},
{
- "id": 396,
+ "id": 443,
"properties": {
"distance": "4",
"persistent": "false",
@@ -108646,7 +113043,7 @@
}
},
{
- "id": 397,
+ "id": 444,
"properties": {
"distance": "4",
"persistent": "false",
@@ -108654,7 +113051,7 @@
}
},
{
- "id": 398,
+ "id": 445,
"properties": {
"distance": "5",
"persistent": "true",
@@ -108662,7 +113059,7 @@
}
},
{
- "id": 399,
+ "id": 446,
"properties": {
"distance": "5",
"persistent": "true",
@@ -108670,7 +113067,7 @@
}
},
{
- "id": 400,
+ "id": 447,
"properties": {
"distance": "5",
"persistent": "false",
@@ -108678,7 +113075,7 @@
}
},
{
- "id": 401,
+ "id": 448,
"properties": {
"distance": "5",
"persistent": "false",
@@ -108686,7 +113083,7 @@
}
},
{
- "id": 402,
+ "id": 449,
"properties": {
"distance": "6",
"persistent": "true",
@@ -108694,7 +113091,7 @@
}
},
{
- "id": 403,
+ "id": 450,
"properties": {
"distance": "6",
"persistent": "true",
@@ -108702,7 +113099,7 @@
}
},
{
- "id": 404,
+ "id": 451,
"properties": {
"distance": "6",
"persistent": "false",
@@ -108710,7 +113107,7 @@
}
},
{
- "id": 405,
+ "id": 452,
"properties": {
"distance": "6",
"persistent": "false",
@@ -108718,7 +113115,7 @@
}
},
{
- "id": 406,
+ "id": 453,
"properties": {
"distance": "7",
"persistent": "true",
@@ -108726,7 +113123,7 @@
}
},
{
- "id": 407,
+ "id": 454,
"properties": {
"distance": "7",
"persistent": "true",
@@ -108734,7 +113131,7 @@
}
},
{
- "id": 408,
+ "id": 455,
"properties": {
"distance": "7",
"persistent": "false",
@@ -108743,7 +113140,7 @@
},
{
"default": true,
- "id": 409,
+ "id": 456,
"properties": {
"distance": "7",
"persistent": "false",
@@ -108762,20 +113159,20 @@
},
"states": [
{
- "id": 137,
+ "id": 147,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 138,
+ "id": 148,
"properties": {
"axis": "y"
}
},
{
- "id": 139,
+ "id": 149,
"properties": {
"axis": "z"
}
@@ -108786,7 +113183,7 @@
"states": [
{
"default": true,
- "id": 21
+ "id": 22
}
]
},
@@ -108799,14 +113196,14 @@
},
"states": [
{
- "id": 5564,
+ "id": 5726,
"properties": {
"powered": "true"
}
},
{
"default": true,
- "id": 5565,
+ "id": 5727,
"properties": {
"powered": "false"
}
@@ -108836,35 +113233,35 @@
]
},
"states": [
- {
- "id": 36,
- "properties": {
- "age": "0",
- "hanging": "true",
- "stage": "0",
- "waterlogged": "true"
- }
- },
- {
- "id": 37,
- "properties": {
- "age": "0",
- "hanging": "true",
- "stage": "0",
- "waterlogged": "false"
- }
- },
- {
- "id": 38,
- "properties": {
- "age": "0",
- "hanging": "true",
- "stage": "1",
- "waterlogged": "true"
- }
- },
{
"id": 39,
+ "properties": {
+ "age": "0",
+ "hanging": "true",
+ "stage": "0",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 40,
+ "properties": {
+ "age": "0",
+ "hanging": "true",
+ "stage": "0",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 41,
+ "properties": {
+ "age": "0",
+ "hanging": "true",
+ "stage": "1",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 42,
"properties": {
"age": "0",
"hanging": "true",
@@ -108873,7 +113270,7 @@
}
},
{
- "id": 40,
+ "id": 43,
"properties": {
"age": "0",
"hanging": "false",
@@ -108883,57 +113280,30 @@
},
{
"default": true,
- "id": 41,
- "properties": {
- "age": "0",
- "hanging": "false",
- "stage": "0",
- "waterlogged": "false"
- }
- },
- {
- "id": 42,
- "properties": {
- "age": "0",
- "hanging": "false",
- "stage": "1",
- "waterlogged": "true"
- }
- },
- {
- "id": 43,
- "properties": {
- "age": "0",
- "hanging": "false",
- "stage": "1",
- "waterlogged": "false"
- }
- },
- {
"id": 44,
"properties": {
- "age": "1",
- "hanging": "true",
+ "age": "0",
+ "hanging": "false",
"stage": "0",
- "waterlogged": "true"
+ "waterlogged": "false"
}
},
{
"id": 45,
"properties": {
- "age": "1",
- "hanging": "true",
- "stage": "0",
- "waterlogged": "false"
+ "age": "0",
+ "hanging": "false",
+ "stage": "1",
+ "waterlogged": "true"
}
},
{
"id": 46,
"properties": {
- "age": "1",
- "hanging": "true",
+ "age": "0",
+ "hanging": "false",
"stage": "1",
- "waterlogged": "true"
+ "waterlogged": "false"
}
},
{
@@ -108941,35 +113311,35 @@
"properties": {
"age": "1",
"hanging": "true",
- "stage": "1",
- "waterlogged": "false"
+ "stage": "0",
+ "waterlogged": "true"
}
},
{
"id": 48,
"properties": {
"age": "1",
- "hanging": "false",
+ "hanging": "true",
"stage": "0",
- "waterlogged": "true"
+ "waterlogged": "false"
}
},
{
"id": 49,
"properties": {
"age": "1",
- "hanging": "false",
- "stage": "0",
- "waterlogged": "false"
+ "hanging": "true",
+ "stage": "1",
+ "waterlogged": "true"
}
},
{
"id": 50,
"properties": {
"age": "1",
- "hanging": "false",
+ "hanging": "true",
"stage": "1",
- "waterlogged": "true"
+ "waterlogged": "false"
}
},
{
@@ -108977,71 +113347,71 @@
"properties": {
"age": "1",
"hanging": "false",
- "stage": "1",
- "waterlogged": "false"
+ "stage": "0",
+ "waterlogged": "true"
}
},
{
"id": 52,
"properties": {
- "age": "2",
- "hanging": "true",
- "stage": "0",
- "waterlogged": "true"
- }
- },
- {
- "id": 53,
- "properties": {
- "age": "2",
- "hanging": "true",
+ "age": "1",
+ "hanging": "false",
"stage": "0",
"waterlogged": "false"
}
},
{
- "id": 54,
+ "id": 53,
"properties": {
- "age": "2",
- "hanging": "true",
+ "age": "1",
+ "hanging": "false",
"stage": "1",
"waterlogged": "true"
}
},
+ {
+ "id": 54,
+ "properties": {
+ "age": "1",
+ "hanging": "false",
+ "stage": "1",
+ "waterlogged": "false"
+ }
+ },
{
"id": 55,
"properties": {
"age": "2",
"hanging": "true",
- "stage": "1",
- "waterlogged": "false"
+ "stage": "0",
+ "waterlogged": "true"
}
},
{
"id": 56,
"properties": {
"age": "2",
- "hanging": "false",
+ "hanging": "true",
"stage": "0",
- "waterlogged": "true"
+ "waterlogged": "false"
}
},
{
"id": 57,
"properties": {
"age": "2",
- "hanging": "false",
- "stage": "0",
- "waterlogged": "false"
+ "hanging": "true",
+ "stage": "1",
+ "waterlogged": "true"
}
},
{
"id": 58,
"properties": {
"age": "2",
- "hanging": "false",
+ "hanging": "true",
"stage": "1",
- "waterlogged": "true"
+ "waterlogged": "false"
}
},
{
@@ -109049,71 +113419,71 @@
"properties": {
"age": "2",
"hanging": "false",
- "stage": "1",
- "waterlogged": "false"
+ "stage": "0",
+ "waterlogged": "true"
}
},
{
"id": 60,
"properties": {
- "age": "3",
- "hanging": "true",
- "stage": "0",
- "waterlogged": "true"
- }
- },
- {
- "id": 61,
- "properties": {
- "age": "3",
- "hanging": "true",
+ "age": "2",
+ "hanging": "false",
"stage": "0",
"waterlogged": "false"
}
},
{
- "id": 62,
+ "id": 61,
"properties": {
- "age": "3",
- "hanging": "true",
+ "age": "2",
+ "hanging": "false",
"stage": "1",
"waterlogged": "true"
}
},
+ {
+ "id": 62,
+ "properties": {
+ "age": "2",
+ "hanging": "false",
+ "stage": "1",
+ "waterlogged": "false"
+ }
+ },
{
"id": 63,
"properties": {
"age": "3",
"hanging": "true",
- "stage": "1",
- "waterlogged": "false"
+ "stage": "0",
+ "waterlogged": "true"
}
},
{
"id": 64,
"properties": {
"age": "3",
- "hanging": "false",
+ "hanging": "true",
"stage": "0",
- "waterlogged": "true"
+ "waterlogged": "false"
}
},
{
"id": 65,
"properties": {
"age": "3",
- "hanging": "false",
- "stage": "0",
- "waterlogged": "false"
+ "hanging": "true",
+ "stage": "1",
+ "waterlogged": "true"
}
},
{
"id": 66,
"properties": {
"age": "3",
- "hanging": "false",
+ "hanging": "true",
"stage": "1",
- "waterlogged": "true"
+ "waterlogged": "false"
}
},
{
@@ -109121,48 +113491,75 @@
"properties": {
"age": "3",
"hanging": "false",
- "stage": "1",
- "waterlogged": "false"
+ "stage": "0",
+ "waterlogged": "true"
}
},
{
"id": 68,
"properties": {
- "age": "4",
- "hanging": "true",
- "stage": "0",
- "waterlogged": "true"
- }
- },
- {
- "id": 69,
- "properties": {
- "age": "4",
- "hanging": "true",
+ "age": "3",
+ "hanging": "false",
"stage": "0",
"waterlogged": "false"
}
},
{
- "id": 70,
+ "id": 69,
"properties": {
- "age": "4",
- "hanging": "true",
+ "age": "3",
+ "hanging": "false",
"stage": "1",
"waterlogged": "true"
}
},
+ {
+ "id": 70,
+ "properties": {
+ "age": "3",
+ "hanging": "false",
+ "stage": "1",
+ "waterlogged": "false"
+ }
+ },
{
"id": 71,
"properties": {
"age": "4",
"hanging": "true",
- "stage": "1",
- "waterlogged": "false"
+ "stage": "0",
+ "waterlogged": "true"
}
},
{
"id": 72,
+ "properties": {
+ "age": "4",
+ "hanging": "true",
+ "stage": "0",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 73,
+ "properties": {
+ "age": "4",
+ "hanging": "true",
+ "stage": "1",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 74,
+ "properties": {
+ "age": "4",
+ "hanging": "true",
+ "stage": "1",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 75,
"properties": {
"age": "4",
"hanging": "false",
@@ -109171,7 +113568,7 @@
}
},
{
- "id": 73,
+ "id": 76,
"properties": {
"age": "4",
"hanging": "false",
@@ -109180,7 +113577,7 @@
}
},
{
- "id": 74,
+ "id": 77,
"properties": {
"age": "4",
"hanging": "false",
@@ -109189,7 +113586,7 @@
}
},
{
- "id": 75,
+ "id": 78,
"properties": {
"age": "4",
"hanging": "false",
@@ -109208,14 +113605,14 @@
},
"states": [
{
- "id": 140,
+ "id": 150,
"properties": {
"waterlogged": "true"
}
},
{
"default": true,
- "id": 141,
+ "id": 151,
"properties": {
"waterlogged": "false"
}
@@ -109249,7 +113646,7 @@
},
"states": [
{
- "id": 4442,
+ "id": 4522,
"properties": {
"rotation": "0",
"waterlogged": "true"
@@ -109257,217 +113654,217 @@
},
{
"default": true,
- "id": 4443,
+ "id": 4523,
"properties": {
"rotation": "0",
"waterlogged": "false"
}
},
{
- "id": 4444,
+ "id": 4524,
"properties": {
"rotation": "1",
"waterlogged": "true"
}
},
{
- "id": 4445,
+ "id": 4525,
"properties": {
"rotation": "1",
"waterlogged": "false"
}
},
{
- "id": 4446,
+ "id": 4526,
"properties": {
"rotation": "2",
"waterlogged": "true"
}
},
{
- "id": 4447,
+ "id": 4527,
"properties": {
"rotation": "2",
"waterlogged": "false"
}
},
{
- "id": 4448,
+ "id": 4528,
"properties": {
"rotation": "3",
"waterlogged": "true"
}
},
{
- "id": 4449,
+ "id": 4529,
"properties": {
"rotation": "3",
"waterlogged": "false"
}
},
{
- "id": 4450,
+ "id": 4530,
"properties": {
"rotation": "4",
"waterlogged": "true"
}
},
{
- "id": 4451,
+ "id": 4531,
"properties": {
"rotation": "4",
"waterlogged": "false"
}
},
{
- "id": 4452,
+ "id": 4532,
"properties": {
"rotation": "5",
"waterlogged": "true"
}
},
{
- "id": 4453,
+ "id": 4533,
"properties": {
"rotation": "5",
"waterlogged": "false"
}
},
{
- "id": 4454,
+ "id": 4534,
"properties": {
"rotation": "6",
"waterlogged": "true"
}
},
{
- "id": 4455,
+ "id": 4535,
"properties": {
"rotation": "6",
"waterlogged": "false"
}
},
{
- "id": 4456,
+ "id": 4536,
"properties": {
"rotation": "7",
"waterlogged": "true"
}
},
{
- "id": 4457,
+ "id": 4537,
"properties": {
"rotation": "7",
"waterlogged": "false"
}
},
{
- "id": 4458,
+ "id": 4538,
"properties": {
"rotation": "8",
"waterlogged": "true"
}
},
{
- "id": 4459,
+ "id": 4539,
"properties": {
"rotation": "8",
"waterlogged": "false"
}
},
{
- "id": 4460,
+ "id": 4540,
"properties": {
"rotation": "9",
"waterlogged": "true"
}
},
{
- "id": 4461,
+ "id": 4541,
"properties": {
"rotation": "9",
"waterlogged": "false"
}
},
{
- "id": 4462,
+ "id": 4542,
"properties": {
"rotation": "10",
"waterlogged": "true"
}
},
{
- "id": 4463,
+ "id": 4543,
"properties": {
"rotation": "10",
"waterlogged": "false"
}
},
{
- "id": 4464,
+ "id": 4544,
"properties": {
"rotation": "11",
"waterlogged": "true"
}
},
{
- "id": 4465,
+ "id": 4545,
"properties": {
"rotation": "11",
"waterlogged": "false"
}
},
{
- "id": 4466,
+ "id": 4546,
"properties": {
"rotation": "12",
"waterlogged": "true"
}
},
{
- "id": 4467,
+ "id": 4547,
"properties": {
"rotation": "12",
"waterlogged": "false"
}
},
{
- "id": 4468,
+ "id": 4548,
"properties": {
"rotation": "13",
"waterlogged": "true"
}
},
{
- "id": 4469,
+ "id": 4549,
"properties": {
"rotation": "13",
"waterlogged": "false"
}
},
{
- "id": 4470,
+ "id": 4550,
"properties": {
"rotation": "14",
"waterlogged": "true"
}
},
{
- "id": 4471,
+ "id": 4551,
"properties": {
"rotation": "14",
"waterlogged": "false"
}
},
{
- "id": 4472,
+ "id": 4552,
"properties": {
"rotation": "15",
"waterlogged": "true"
}
},
{
- "id": 4473,
+ "id": 4553,
"properties": {
"rotation": "15",
"waterlogged": "false"
@@ -109489,21 +113886,21 @@
},
"states": [
{
- "id": 10721,
+ "id": 11059,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 10722,
+ "id": 11060,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 10723,
+ "id": 11061,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -109511,21 +113908,21 @@
},
{
"default": true,
- "id": 10724,
+ "id": 11062,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 10725,
+ "id": 11063,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 10726,
+ "id": 11064,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -109559,7 +113956,7 @@
},
"states": [
{
- "id": 9648,
+ "id": 9980,
"properties": {
"facing": "north",
"half": "top",
@@ -109568,7 +113965,7 @@
}
},
{
- "id": 9649,
+ "id": 9981,
"properties": {
"facing": "north",
"half": "top",
@@ -109577,7 +113974,7 @@
}
},
{
- "id": 9650,
+ "id": 9982,
"properties": {
"facing": "north",
"half": "top",
@@ -109586,7 +113983,7 @@
}
},
{
- "id": 9651,
+ "id": 9983,
"properties": {
"facing": "north",
"half": "top",
@@ -109595,7 +113992,7 @@
}
},
{
- "id": 9652,
+ "id": 9984,
"properties": {
"facing": "north",
"half": "top",
@@ -109604,7 +114001,7 @@
}
},
{
- "id": 9653,
+ "id": 9985,
"properties": {
"facing": "north",
"half": "top",
@@ -109613,7 +114010,7 @@
}
},
{
- "id": 9654,
+ "id": 9986,
"properties": {
"facing": "north",
"half": "top",
@@ -109622,7 +114019,7 @@
}
},
{
- "id": 9655,
+ "id": 9987,
"properties": {
"facing": "north",
"half": "top",
@@ -109631,7 +114028,7 @@
}
},
{
- "id": 9656,
+ "id": 9988,
"properties": {
"facing": "north",
"half": "top",
@@ -109640,7 +114037,7 @@
}
},
{
- "id": 9657,
+ "id": 9989,
"properties": {
"facing": "north",
"half": "top",
@@ -109649,7 +114046,7 @@
}
},
{
- "id": 9658,
+ "id": 9990,
"properties": {
"facing": "north",
"half": "bottom",
@@ -109659,7 +114056,7 @@
},
{
"default": true,
- "id": 9659,
+ "id": 9991,
"properties": {
"facing": "north",
"half": "bottom",
@@ -109668,7 +114065,7 @@
}
},
{
- "id": 9660,
+ "id": 9992,
"properties": {
"facing": "north",
"half": "bottom",
@@ -109677,7 +114074,7 @@
}
},
{
- "id": 9661,
+ "id": 9993,
"properties": {
"facing": "north",
"half": "bottom",
@@ -109686,7 +114083,7 @@
}
},
{
- "id": 9662,
+ "id": 9994,
"properties": {
"facing": "north",
"half": "bottom",
@@ -109695,7 +114092,7 @@
}
},
{
- "id": 9663,
+ "id": 9995,
"properties": {
"facing": "north",
"half": "bottom",
@@ -109704,7 +114101,7 @@
}
},
{
- "id": 9664,
+ "id": 9996,
"properties": {
"facing": "north",
"half": "bottom",
@@ -109713,7 +114110,7 @@
}
},
{
- "id": 9665,
+ "id": 9997,
"properties": {
"facing": "north",
"half": "bottom",
@@ -109722,7 +114119,7 @@
}
},
{
- "id": 9666,
+ "id": 9998,
"properties": {
"facing": "north",
"half": "bottom",
@@ -109731,7 +114128,7 @@
}
},
{
- "id": 9667,
+ "id": 9999,
"properties": {
"facing": "north",
"half": "bottom",
@@ -109740,7 +114137,7 @@
}
},
{
- "id": 9668,
+ "id": 10000,
"properties": {
"facing": "south",
"half": "top",
@@ -109749,7 +114146,7 @@
}
},
{
- "id": 9669,
+ "id": 10001,
"properties": {
"facing": "south",
"half": "top",
@@ -109758,7 +114155,7 @@
}
},
{
- "id": 9670,
+ "id": 10002,
"properties": {
"facing": "south",
"half": "top",
@@ -109767,7 +114164,7 @@
}
},
{
- "id": 9671,
+ "id": 10003,
"properties": {
"facing": "south",
"half": "top",
@@ -109776,7 +114173,7 @@
}
},
{
- "id": 9672,
+ "id": 10004,
"properties": {
"facing": "south",
"half": "top",
@@ -109785,7 +114182,7 @@
}
},
{
- "id": 9673,
+ "id": 10005,
"properties": {
"facing": "south",
"half": "top",
@@ -109794,7 +114191,7 @@
}
},
{
- "id": 9674,
+ "id": 10006,
"properties": {
"facing": "south",
"half": "top",
@@ -109803,7 +114200,7 @@
}
},
{
- "id": 9675,
+ "id": 10007,
"properties": {
"facing": "south",
"half": "top",
@@ -109812,7 +114209,7 @@
}
},
{
- "id": 9676,
+ "id": 10008,
"properties": {
"facing": "south",
"half": "top",
@@ -109821,7 +114218,7 @@
}
},
{
- "id": 9677,
+ "id": 10009,
"properties": {
"facing": "south",
"half": "top",
@@ -109830,7 +114227,7 @@
}
},
{
- "id": 9678,
+ "id": 10010,
"properties": {
"facing": "south",
"half": "bottom",
@@ -109839,7 +114236,7 @@
}
},
{
- "id": 9679,
+ "id": 10011,
"properties": {
"facing": "south",
"half": "bottom",
@@ -109848,7 +114245,7 @@
}
},
{
- "id": 9680,
+ "id": 10012,
"properties": {
"facing": "south",
"half": "bottom",
@@ -109857,7 +114254,7 @@
}
},
{
- "id": 9681,
+ "id": 10013,
"properties": {
"facing": "south",
"half": "bottom",
@@ -109866,7 +114263,7 @@
}
},
{
- "id": 9682,
+ "id": 10014,
"properties": {
"facing": "south",
"half": "bottom",
@@ -109875,7 +114272,7 @@
}
},
{
- "id": 9683,
+ "id": 10015,
"properties": {
"facing": "south",
"half": "bottom",
@@ -109884,7 +114281,7 @@
}
},
{
- "id": 9684,
+ "id": 10016,
"properties": {
"facing": "south",
"half": "bottom",
@@ -109893,7 +114290,7 @@
}
},
{
- "id": 9685,
+ "id": 10017,
"properties": {
"facing": "south",
"half": "bottom",
@@ -109902,7 +114299,7 @@
}
},
{
- "id": 9686,
+ "id": 10018,
"properties": {
"facing": "south",
"half": "bottom",
@@ -109911,7 +114308,7 @@
}
},
{
- "id": 9687,
+ "id": 10019,
"properties": {
"facing": "south",
"half": "bottom",
@@ -109920,7 +114317,7 @@
}
},
{
- "id": 9688,
+ "id": 10020,
"properties": {
"facing": "west",
"half": "top",
@@ -109929,7 +114326,7 @@
}
},
{
- "id": 9689,
+ "id": 10021,
"properties": {
"facing": "west",
"half": "top",
@@ -109938,7 +114335,7 @@
}
},
{
- "id": 9690,
+ "id": 10022,
"properties": {
"facing": "west",
"half": "top",
@@ -109947,7 +114344,7 @@
}
},
{
- "id": 9691,
+ "id": 10023,
"properties": {
"facing": "west",
"half": "top",
@@ -109956,7 +114353,7 @@
}
},
{
- "id": 9692,
+ "id": 10024,
"properties": {
"facing": "west",
"half": "top",
@@ -109965,7 +114362,7 @@
}
},
{
- "id": 9693,
+ "id": 10025,
"properties": {
"facing": "west",
"half": "top",
@@ -109974,7 +114371,7 @@
}
},
{
- "id": 9694,
+ "id": 10026,
"properties": {
"facing": "west",
"half": "top",
@@ -109983,7 +114380,7 @@
}
},
{
- "id": 9695,
+ "id": 10027,
"properties": {
"facing": "west",
"half": "top",
@@ -109992,7 +114389,7 @@
}
},
{
- "id": 9696,
+ "id": 10028,
"properties": {
"facing": "west",
"half": "top",
@@ -110001,7 +114398,7 @@
}
},
{
- "id": 9697,
+ "id": 10029,
"properties": {
"facing": "west",
"half": "top",
@@ -110010,7 +114407,7 @@
}
},
{
- "id": 9698,
+ "id": 10030,
"properties": {
"facing": "west",
"half": "bottom",
@@ -110019,7 +114416,7 @@
}
},
{
- "id": 9699,
+ "id": 10031,
"properties": {
"facing": "west",
"half": "bottom",
@@ -110028,7 +114425,7 @@
}
},
{
- "id": 9700,
+ "id": 10032,
"properties": {
"facing": "west",
"half": "bottom",
@@ -110037,7 +114434,7 @@
}
},
{
- "id": 9701,
+ "id": 10033,
"properties": {
"facing": "west",
"half": "bottom",
@@ -110046,7 +114443,7 @@
}
},
{
- "id": 9702,
+ "id": 10034,
"properties": {
"facing": "west",
"half": "bottom",
@@ -110055,7 +114452,7 @@
}
},
{
- "id": 9703,
+ "id": 10035,
"properties": {
"facing": "west",
"half": "bottom",
@@ -110064,7 +114461,7 @@
}
},
{
- "id": 9704,
+ "id": 10036,
"properties": {
"facing": "west",
"half": "bottom",
@@ -110073,7 +114470,7 @@
}
},
{
- "id": 9705,
+ "id": 10037,
"properties": {
"facing": "west",
"half": "bottom",
@@ -110082,7 +114479,7 @@
}
},
{
- "id": 9706,
+ "id": 10038,
"properties": {
"facing": "west",
"half": "bottom",
@@ -110091,7 +114488,7 @@
}
},
{
- "id": 9707,
+ "id": 10039,
"properties": {
"facing": "west",
"half": "bottom",
@@ -110100,7 +114497,7 @@
}
},
{
- "id": 9708,
+ "id": 10040,
"properties": {
"facing": "east",
"half": "top",
@@ -110109,7 +114506,7 @@
}
},
{
- "id": 9709,
+ "id": 10041,
"properties": {
"facing": "east",
"half": "top",
@@ -110118,7 +114515,7 @@
}
},
{
- "id": 9710,
+ "id": 10042,
"properties": {
"facing": "east",
"half": "top",
@@ -110127,7 +114524,7 @@
}
},
{
- "id": 9711,
+ "id": 10043,
"properties": {
"facing": "east",
"half": "top",
@@ -110136,7 +114533,7 @@
}
},
{
- "id": 9712,
+ "id": 10044,
"properties": {
"facing": "east",
"half": "top",
@@ -110145,7 +114542,7 @@
}
},
{
- "id": 9713,
+ "id": 10045,
"properties": {
"facing": "east",
"half": "top",
@@ -110154,7 +114551,7 @@
}
},
{
- "id": 9714,
+ "id": 10046,
"properties": {
"facing": "east",
"half": "top",
@@ -110163,7 +114560,7 @@
}
},
{
- "id": 9715,
+ "id": 10047,
"properties": {
"facing": "east",
"half": "top",
@@ -110172,7 +114569,7 @@
}
},
{
- "id": 9716,
+ "id": 10048,
"properties": {
"facing": "east",
"half": "top",
@@ -110181,7 +114578,7 @@
}
},
{
- "id": 9717,
+ "id": 10049,
"properties": {
"facing": "east",
"half": "top",
@@ -110190,7 +114587,7 @@
}
},
{
- "id": 9718,
+ "id": 10050,
"properties": {
"facing": "east",
"half": "bottom",
@@ -110199,7 +114596,7 @@
}
},
{
- "id": 9719,
+ "id": 10051,
"properties": {
"facing": "east",
"half": "bottom",
@@ -110208,7 +114605,7 @@
}
},
{
- "id": 9720,
+ "id": 10052,
"properties": {
"facing": "east",
"half": "bottom",
@@ -110217,7 +114614,7 @@
}
},
{
- "id": 9721,
+ "id": 10053,
"properties": {
"facing": "east",
"half": "bottom",
@@ -110226,7 +114623,7 @@
}
},
{
- "id": 9722,
+ "id": 10054,
"properties": {
"facing": "east",
"half": "bottom",
@@ -110235,7 +114632,7 @@
}
},
{
- "id": 9723,
+ "id": 10055,
"properties": {
"facing": "east",
"half": "bottom",
@@ -110244,7 +114641,7 @@
}
},
{
- "id": 9724,
+ "id": 10056,
"properties": {
"facing": "east",
"half": "bottom",
@@ -110253,7 +114650,7 @@
}
},
{
- "id": 9725,
+ "id": 10057,
"properties": {
"facing": "east",
"half": "bottom",
@@ -110262,7 +114659,7 @@
}
},
{
- "id": 9726,
+ "id": 10058,
"properties": {
"facing": "east",
"half": "bottom",
@@ -110271,7 +114668,7 @@
}
},
{
- "id": 9727,
+ "id": 10059,
"properties": {
"facing": "east",
"half": "bottom",
@@ -110308,7 +114705,7 @@
},
"states": [
{
- "id": 6180,
+ "id": 6406,
"properties": {
"facing": "north",
"half": "top",
@@ -110318,7 +114715,7 @@
}
},
{
- "id": 6181,
+ "id": 6407,
"properties": {
"facing": "north",
"half": "top",
@@ -110328,7 +114725,7 @@
}
},
{
- "id": 6182,
+ "id": 6408,
"properties": {
"facing": "north",
"half": "top",
@@ -110338,7 +114735,7 @@
}
},
{
- "id": 6183,
+ "id": 6409,
"properties": {
"facing": "north",
"half": "top",
@@ -110348,7 +114745,7 @@
}
},
{
- "id": 6184,
+ "id": 6410,
"properties": {
"facing": "north",
"half": "top",
@@ -110358,7 +114755,7 @@
}
},
{
- "id": 6185,
+ "id": 6411,
"properties": {
"facing": "north",
"half": "top",
@@ -110368,7 +114765,7 @@
}
},
{
- "id": 6186,
+ "id": 6412,
"properties": {
"facing": "north",
"half": "top",
@@ -110378,7 +114775,7 @@
}
},
{
- "id": 6187,
+ "id": 6413,
"properties": {
"facing": "north",
"half": "top",
@@ -110388,7 +114785,7 @@
}
},
{
- "id": 6188,
+ "id": 6414,
"properties": {
"facing": "north",
"half": "bottom",
@@ -110398,7 +114795,7 @@
}
},
{
- "id": 6189,
+ "id": 6415,
"properties": {
"facing": "north",
"half": "bottom",
@@ -110408,7 +114805,7 @@
}
},
{
- "id": 6190,
+ "id": 6416,
"properties": {
"facing": "north",
"half": "bottom",
@@ -110418,7 +114815,7 @@
}
},
{
- "id": 6191,
+ "id": 6417,
"properties": {
"facing": "north",
"half": "bottom",
@@ -110428,7 +114825,7 @@
}
},
{
- "id": 6192,
+ "id": 6418,
"properties": {
"facing": "north",
"half": "bottom",
@@ -110438,7 +114835,7 @@
}
},
{
- "id": 6193,
+ "id": 6419,
"properties": {
"facing": "north",
"half": "bottom",
@@ -110448,7 +114845,7 @@
}
},
{
- "id": 6194,
+ "id": 6420,
"properties": {
"facing": "north",
"half": "bottom",
@@ -110459,7 +114856,7 @@
},
{
"default": true,
- "id": 6195,
+ "id": 6421,
"properties": {
"facing": "north",
"half": "bottom",
@@ -110469,7 +114866,7 @@
}
},
{
- "id": 6196,
+ "id": 6422,
"properties": {
"facing": "south",
"half": "top",
@@ -110479,7 +114876,7 @@
}
},
{
- "id": 6197,
+ "id": 6423,
"properties": {
"facing": "south",
"half": "top",
@@ -110489,7 +114886,7 @@
}
},
{
- "id": 6198,
+ "id": 6424,
"properties": {
"facing": "south",
"half": "top",
@@ -110499,7 +114896,7 @@
}
},
{
- "id": 6199,
+ "id": 6425,
"properties": {
"facing": "south",
"half": "top",
@@ -110509,7 +114906,7 @@
}
},
{
- "id": 6200,
+ "id": 6426,
"properties": {
"facing": "south",
"half": "top",
@@ -110519,7 +114916,7 @@
}
},
{
- "id": 6201,
+ "id": 6427,
"properties": {
"facing": "south",
"half": "top",
@@ -110529,7 +114926,7 @@
}
},
{
- "id": 6202,
+ "id": 6428,
"properties": {
"facing": "south",
"half": "top",
@@ -110539,7 +114936,7 @@
}
},
{
- "id": 6203,
+ "id": 6429,
"properties": {
"facing": "south",
"half": "top",
@@ -110549,7 +114946,7 @@
}
},
{
- "id": 6204,
+ "id": 6430,
"properties": {
"facing": "south",
"half": "bottom",
@@ -110559,7 +114956,7 @@
}
},
{
- "id": 6205,
+ "id": 6431,
"properties": {
"facing": "south",
"half": "bottom",
@@ -110569,7 +114966,7 @@
}
},
{
- "id": 6206,
+ "id": 6432,
"properties": {
"facing": "south",
"half": "bottom",
@@ -110579,7 +114976,7 @@
}
},
{
- "id": 6207,
+ "id": 6433,
"properties": {
"facing": "south",
"half": "bottom",
@@ -110589,7 +114986,7 @@
}
},
{
- "id": 6208,
+ "id": 6434,
"properties": {
"facing": "south",
"half": "bottom",
@@ -110599,7 +114996,7 @@
}
},
{
- "id": 6209,
+ "id": 6435,
"properties": {
"facing": "south",
"half": "bottom",
@@ -110609,7 +115006,7 @@
}
},
{
- "id": 6210,
+ "id": 6436,
"properties": {
"facing": "south",
"half": "bottom",
@@ -110619,7 +115016,7 @@
}
},
{
- "id": 6211,
+ "id": 6437,
"properties": {
"facing": "south",
"half": "bottom",
@@ -110629,7 +115026,7 @@
}
},
{
- "id": 6212,
+ "id": 6438,
"properties": {
"facing": "west",
"half": "top",
@@ -110639,7 +115036,7 @@
}
},
{
- "id": 6213,
+ "id": 6439,
"properties": {
"facing": "west",
"half": "top",
@@ -110649,7 +115046,7 @@
}
},
{
- "id": 6214,
+ "id": 6440,
"properties": {
"facing": "west",
"half": "top",
@@ -110659,7 +115056,7 @@
}
},
{
- "id": 6215,
+ "id": 6441,
"properties": {
"facing": "west",
"half": "top",
@@ -110669,7 +115066,7 @@
}
},
{
- "id": 6216,
+ "id": 6442,
"properties": {
"facing": "west",
"half": "top",
@@ -110679,7 +115076,7 @@
}
},
{
- "id": 6217,
+ "id": 6443,
"properties": {
"facing": "west",
"half": "top",
@@ -110689,7 +115086,7 @@
}
},
{
- "id": 6218,
+ "id": 6444,
"properties": {
"facing": "west",
"half": "top",
@@ -110699,7 +115096,7 @@
}
},
{
- "id": 6219,
+ "id": 6445,
"properties": {
"facing": "west",
"half": "top",
@@ -110709,7 +115106,7 @@
}
},
{
- "id": 6220,
+ "id": 6446,
"properties": {
"facing": "west",
"half": "bottom",
@@ -110719,7 +115116,7 @@
}
},
{
- "id": 6221,
+ "id": 6447,
"properties": {
"facing": "west",
"half": "bottom",
@@ -110729,7 +115126,7 @@
}
},
{
- "id": 6222,
+ "id": 6448,
"properties": {
"facing": "west",
"half": "bottom",
@@ -110739,7 +115136,7 @@
}
},
{
- "id": 6223,
+ "id": 6449,
"properties": {
"facing": "west",
"half": "bottom",
@@ -110749,7 +115146,7 @@
}
},
{
- "id": 6224,
+ "id": 6450,
"properties": {
"facing": "west",
"half": "bottom",
@@ -110759,7 +115156,7 @@
}
},
{
- "id": 6225,
+ "id": 6451,
"properties": {
"facing": "west",
"half": "bottom",
@@ -110769,7 +115166,7 @@
}
},
{
- "id": 6226,
+ "id": 6452,
"properties": {
"facing": "west",
"half": "bottom",
@@ -110779,7 +115176,7 @@
}
},
{
- "id": 6227,
+ "id": 6453,
"properties": {
"facing": "west",
"half": "bottom",
@@ -110789,7 +115186,7 @@
}
},
{
- "id": 6228,
+ "id": 6454,
"properties": {
"facing": "east",
"half": "top",
@@ -110799,7 +115196,7 @@
}
},
{
- "id": 6229,
+ "id": 6455,
"properties": {
"facing": "east",
"half": "top",
@@ -110809,7 +115206,7 @@
}
},
{
- "id": 6230,
+ "id": 6456,
"properties": {
"facing": "east",
"half": "top",
@@ -110819,7 +115216,7 @@
}
},
{
- "id": 6231,
+ "id": 6457,
"properties": {
"facing": "east",
"half": "top",
@@ -110829,7 +115226,7 @@
}
},
{
- "id": 6232,
+ "id": 6458,
"properties": {
"facing": "east",
"half": "top",
@@ -110839,7 +115236,7 @@
}
},
{
- "id": 6233,
+ "id": 6459,
"properties": {
"facing": "east",
"half": "top",
@@ -110849,7 +115246,7 @@
}
},
{
- "id": 6234,
+ "id": 6460,
"properties": {
"facing": "east",
"half": "top",
@@ -110859,7 +115256,7 @@
}
},
{
- "id": 6235,
+ "id": 6461,
"properties": {
"facing": "east",
"half": "top",
@@ -110869,7 +115266,7 @@
}
},
{
- "id": 6236,
+ "id": 6462,
"properties": {
"facing": "east",
"half": "bottom",
@@ -110879,7 +115276,7 @@
}
},
{
- "id": 6237,
+ "id": 6463,
"properties": {
"facing": "east",
"half": "bottom",
@@ -110889,7 +115286,7 @@
}
},
{
- "id": 6238,
+ "id": 6464,
"properties": {
"facing": "east",
"half": "bottom",
@@ -110899,7 +115296,7 @@
}
},
{
- "id": 6239,
+ "id": 6465,
"properties": {
"facing": "east",
"half": "bottom",
@@ -110909,7 +115306,7 @@
}
},
{
- "id": 6240,
+ "id": 6466,
"properties": {
"facing": "east",
"half": "bottom",
@@ -110919,7 +115316,7 @@
}
},
{
- "id": 6241,
+ "id": 6467,
"properties": {
"facing": "east",
"half": "bottom",
@@ -110929,7 +115326,7 @@
}
},
{
- "id": 6242,
+ "id": 6468,
"properties": {
"facing": "east",
"half": "bottom",
@@ -110939,7 +115336,7 @@
}
},
{
- "id": 6243,
+ "id": 6469,
"properties": {
"facing": "east",
"half": "bottom",
@@ -110965,7 +115362,7 @@
},
"states": [
{
- "id": 5430,
+ "id": 5590,
"properties": {
"facing": "north",
"waterlogged": "true"
@@ -110973,49 +115370,49 @@
},
{
"default": true,
- "id": 5431,
+ "id": 5591,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 5432,
+ "id": 5592,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 5433,
+ "id": 5593,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 5434,
+ "id": 5594,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 5435,
+ "id": 5595,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 5436,
+ "id": 5596,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 5437,
+ "id": 5597,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -111038,7 +115435,7 @@
},
"states": [
{
- "id": 4726,
+ "id": 4814,
"properties": {
"facing": "north",
"waterlogged": "true"
@@ -111046,49 +115443,49 @@
},
{
"default": true,
- "id": 4727,
+ "id": 4815,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 4728,
+ "id": 4816,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 4729,
+ "id": 4817,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 4730,
+ "id": 4818,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 4731,
+ "id": 4819,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 4732,
+ "id": 4820,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 4733,
+ "id": 4821,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -111106,20 +115503,20 @@
},
"states": [
{
- "id": 190,
+ "id": 206,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 191,
+ "id": 207,
"properties": {
"axis": "y"
}
},
{
- "id": 192,
+ "id": 208,
"properties": {
"axis": "z"
}
@@ -111143,63 +115540,63 @@
},
"states": [
{
- "id": 20429,
+ "id": 20898,
"properties": {
"facing": "north",
"waterlogged": "true"
}
},
{
- "id": 20430,
+ "id": 20899,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 20431,
+ "id": 20900,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 20432,
+ "id": 20901,
"properties": {
"facing": "east",
"waterlogged": "false"
}
},
{
- "id": 20433,
+ "id": 20902,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 20434,
+ "id": 20903,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 20435,
+ "id": 20904,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 20436,
+ "id": 20905,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 20437,
+ "id": 20906,
"properties": {
"facing": "up",
"waterlogged": "true"
@@ -111207,21 +115604,21 @@
},
{
"default": true,
- "id": 20438,
+ "id": 20907,
"properties": {
"facing": "up",
"waterlogged": "false"
}
},
{
- "id": 20439,
+ "id": 20908,
"properties": {
"facing": "down",
"waterlogged": "true"
}
},
{
- "id": 20440,
+ "id": 20909,
"properties": {
"facing": "down",
"waterlogged": "false"
@@ -111233,7 +115630,7 @@
"states": [
{
"default": true,
- "id": 6582
+ "id": 6808
}
]
},
@@ -111253,49 +115650,49 @@
"states": [
{
"default": true,
- "id": 6599,
+ "id": 6825,
"properties": {
"age": "0"
}
},
{
- "id": 6600,
+ "id": 6826,
"properties": {
"age": "1"
}
},
{
- "id": 6601,
+ "id": 6827,
"properties": {
"age": "2"
}
},
{
- "id": 6602,
+ "id": 6828,
"properties": {
"age": "3"
}
},
{
- "id": 6603,
+ "id": 6829,
"properties": {
"age": "4"
}
},
{
- "id": 6604,
+ "id": 6830,
"properties": {
"age": "5"
}
},
{
- "id": 6605,
+ "id": 6831,
"properties": {
"age": "6"
}
},
{
- "id": 6606,
+ "id": 6832,
"properties": {
"age": "7"
}
@@ -111306,7 +115703,7 @@
"states": [
{
"default": true,
- "id": 21501
+ "id": 21986
}
]
},
@@ -111314,7 +115711,7 @@
"states": [
{
"default": true,
- "id": 21500
+ "id": 21969
}
]
},
@@ -111322,7 +115719,7 @@
"states": [
{
"default": true,
- "id": 2301
+ "id": 2349
}
]
},
@@ -111340,21 +115737,21 @@
},
"states": [
{
- "id": 13478,
+ "id": 13947,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 13479,
+ "id": 13948,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 13480,
+ "id": 13949,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -111362,21 +115759,21 @@
},
{
"default": true,
- "id": 13481,
+ "id": 13950,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 13482,
+ "id": 13951,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 13483,
+ "id": 13952,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -111410,7 +115807,7 @@
},
"states": [
{
- "id": 12654,
+ "id": 13123,
"properties": {
"facing": "north",
"half": "top",
@@ -111419,7 +115816,7 @@
}
},
{
- "id": 12655,
+ "id": 13124,
"properties": {
"facing": "north",
"half": "top",
@@ -111428,7 +115825,7 @@
}
},
{
- "id": 12656,
+ "id": 13125,
"properties": {
"facing": "north",
"half": "top",
@@ -111437,7 +115834,7 @@
}
},
{
- "id": 12657,
+ "id": 13126,
"properties": {
"facing": "north",
"half": "top",
@@ -111446,7 +115843,7 @@
}
},
{
- "id": 12658,
+ "id": 13127,
"properties": {
"facing": "north",
"half": "top",
@@ -111455,7 +115852,7 @@
}
},
{
- "id": 12659,
+ "id": 13128,
"properties": {
"facing": "north",
"half": "top",
@@ -111464,7 +115861,7 @@
}
},
{
- "id": 12660,
+ "id": 13129,
"properties": {
"facing": "north",
"half": "top",
@@ -111473,7 +115870,7 @@
}
},
{
- "id": 12661,
+ "id": 13130,
"properties": {
"facing": "north",
"half": "top",
@@ -111482,7 +115879,7 @@
}
},
{
- "id": 12662,
+ "id": 13131,
"properties": {
"facing": "north",
"half": "top",
@@ -111491,7 +115888,7 @@
}
},
{
- "id": 12663,
+ "id": 13132,
"properties": {
"facing": "north",
"half": "top",
@@ -111500,7 +115897,7 @@
}
},
{
- "id": 12664,
+ "id": 13133,
"properties": {
"facing": "north",
"half": "bottom",
@@ -111510,7 +115907,7 @@
},
{
"default": true,
- "id": 12665,
+ "id": 13134,
"properties": {
"facing": "north",
"half": "bottom",
@@ -111519,7 +115916,7 @@
}
},
{
- "id": 12666,
+ "id": 13135,
"properties": {
"facing": "north",
"half": "bottom",
@@ -111528,7 +115925,7 @@
}
},
{
- "id": 12667,
+ "id": 13136,
"properties": {
"facing": "north",
"half": "bottom",
@@ -111537,7 +115934,7 @@
}
},
{
- "id": 12668,
+ "id": 13137,
"properties": {
"facing": "north",
"half": "bottom",
@@ -111546,7 +115943,7 @@
}
},
{
- "id": 12669,
+ "id": 13138,
"properties": {
"facing": "north",
"half": "bottom",
@@ -111555,7 +115952,7 @@
}
},
{
- "id": 12670,
+ "id": 13139,
"properties": {
"facing": "north",
"half": "bottom",
@@ -111564,7 +115961,7 @@
}
},
{
- "id": 12671,
+ "id": 13140,
"properties": {
"facing": "north",
"half": "bottom",
@@ -111573,7 +115970,7 @@
}
},
{
- "id": 12672,
+ "id": 13141,
"properties": {
"facing": "north",
"half": "bottom",
@@ -111582,7 +115979,7 @@
}
},
{
- "id": 12673,
+ "id": 13142,
"properties": {
"facing": "north",
"half": "bottom",
@@ -111591,7 +115988,7 @@
}
},
{
- "id": 12674,
+ "id": 13143,
"properties": {
"facing": "south",
"half": "top",
@@ -111600,7 +115997,7 @@
}
},
{
- "id": 12675,
+ "id": 13144,
"properties": {
"facing": "south",
"half": "top",
@@ -111609,7 +116006,7 @@
}
},
{
- "id": 12676,
+ "id": 13145,
"properties": {
"facing": "south",
"half": "top",
@@ -111618,7 +116015,7 @@
}
},
{
- "id": 12677,
+ "id": 13146,
"properties": {
"facing": "south",
"half": "top",
@@ -111627,7 +116024,7 @@
}
},
{
- "id": 12678,
+ "id": 13147,
"properties": {
"facing": "south",
"half": "top",
@@ -111636,7 +116033,7 @@
}
},
{
- "id": 12679,
+ "id": 13148,
"properties": {
"facing": "south",
"half": "top",
@@ -111645,7 +116042,7 @@
}
},
{
- "id": 12680,
+ "id": 13149,
"properties": {
"facing": "south",
"half": "top",
@@ -111654,7 +116051,7 @@
}
},
{
- "id": 12681,
+ "id": 13150,
"properties": {
"facing": "south",
"half": "top",
@@ -111663,7 +116060,7 @@
}
},
{
- "id": 12682,
+ "id": 13151,
"properties": {
"facing": "south",
"half": "top",
@@ -111672,7 +116069,7 @@
}
},
{
- "id": 12683,
+ "id": 13152,
"properties": {
"facing": "south",
"half": "top",
@@ -111681,7 +116078,7 @@
}
},
{
- "id": 12684,
+ "id": 13153,
"properties": {
"facing": "south",
"half": "bottom",
@@ -111690,7 +116087,7 @@
}
},
{
- "id": 12685,
+ "id": 13154,
"properties": {
"facing": "south",
"half": "bottom",
@@ -111699,7 +116096,7 @@
}
},
{
- "id": 12686,
+ "id": 13155,
"properties": {
"facing": "south",
"half": "bottom",
@@ -111708,7 +116105,7 @@
}
},
{
- "id": 12687,
+ "id": 13156,
"properties": {
"facing": "south",
"half": "bottom",
@@ -111717,7 +116114,7 @@
}
},
{
- "id": 12688,
+ "id": 13157,
"properties": {
"facing": "south",
"half": "bottom",
@@ -111726,7 +116123,7 @@
}
},
{
- "id": 12689,
+ "id": 13158,
"properties": {
"facing": "south",
"half": "bottom",
@@ -111735,7 +116132,7 @@
}
},
{
- "id": 12690,
+ "id": 13159,
"properties": {
"facing": "south",
"half": "bottom",
@@ -111744,7 +116141,7 @@
}
},
{
- "id": 12691,
+ "id": 13160,
"properties": {
"facing": "south",
"half": "bottom",
@@ -111753,7 +116150,7 @@
}
},
{
- "id": 12692,
+ "id": 13161,
"properties": {
"facing": "south",
"half": "bottom",
@@ -111762,7 +116159,7 @@
}
},
{
- "id": 12693,
+ "id": 13162,
"properties": {
"facing": "south",
"half": "bottom",
@@ -111771,7 +116168,7 @@
}
},
{
- "id": 12694,
+ "id": 13163,
"properties": {
"facing": "west",
"half": "top",
@@ -111780,7 +116177,7 @@
}
},
{
- "id": 12695,
+ "id": 13164,
"properties": {
"facing": "west",
"half": "top",
@@ -111789,7 +116186,7 @@
}
},
{
- "id": 12696,
+ "id": 13165,
"properties": {
"facing": "west",
"half": "top",
@@ -111798,7 +116195,7 @@
}
},
{
- "id": 12697,
+ "id": 13166,
"properties": {
"facing": "west",
"half": "top",
@@ -111807,7 +116204,7 @@
}
},
{
- "id": 12698,
+ "id": 13167,
"properties": {
"facing": "west",
"half": "top",
@@ -111816,7 +116213,7 @@
}
},
{
- "id": 12699,
+ "id": 13168,
"properties": {
"facing": "west",
"half": "top",
@@ -111825,7 +116222,7 @@
}
},
{
- "id": 12700,
+ "id": 13169,
"properties": {
"facing": "west",
"half": "top",
@@ -111834,7 +116231,7 @@
}
},
{
- "id": 12701,
+ "id": 13170,
"properties": {
"facing": "west",
"half": "top",
@@ -111843,7 +116240,7 @@
}
},
{
- "id": 12702,
+ "id": 13171,
"properties": {
"facing": "west",
"half": "top",
@@ -111852,7 +116249,7 @@
}
},
{
- "id": 12703,
+ "id": 13172,
"properties": {
"facing": "west",
"half": "top",
@@ -111861,7 +116258,7 @@
}
},
{
- "id": 12704,
+ "id": 13173,
"properties": {
"facing": "west",
"half": "bottom",
@@ -111870,7 +116267,7 @@
}
},
{
- "id": 12705,
+ "id": 13174,
"properties": {
"facing": "west",
"half": "bottom",
@@ -111879,7 +116276,7 @@
}
},
{
- "id": 12706,
+ "id": 13175,
"properties": {
"facing": "west",
"half": "bottom",
@@ -111888,7 +116285,7 @@
}
},
{
- "id": 12707,
+ "id": 13176,
"properties": {
"facing": "west",
"half": "bottom",
@@ -111897,7 +116294,7 @@
}
},
{
- "id": 12708,
+ "id": 13177,
"properties": {
"facing": "west",
"half": "bottom",
@@ -111906,7 +116303,7 @@
}
},
{
- "id": 12709,
+ "id": 13178,
"properties": {
"facing": "west",
"half": "bottom",
@@ -111915,7 +116312,7 @@
}
},
{
- "id": 12710,
+ "id": 13179,
"properties": {
"facing": "west",
"half": "bottom",
@@ -111924,7 +116321,7 @@
}
},
{
- "id": 12711,
+ "id": 13180,
"properties": {
"facing": "west",
"half": "bottom",
@@ -111933,7 +116330,7 @@
}
},
{
- "id": 12712,
+ "id": 13181,
"properties": {
"facing": "west",
"half": "bottom",
@@ -111942,7 +116339,7 @@
}
},
{
- "id": 12713,
+ "id": 13182,
"properties": {
"facing": "west",
"half": "bottom",
@@ -111951,7 +116348,7 @@
}
},
{
- "id": 12714,
+ "id": 13183,
"properties": {
"facing": "east",
"half": "top",
@@ -111960,7 +116357,7 @@
}
},
{
- "id": 12715,
+ "id": 13184,
"properties": {
"facing": "east",
"half": "top",
@@ -111969,7 +116366,7 @@
}
},
{
- "id": 12716,
+ "id": 13185,
"properties": {
"facing": "east",
"half": "top",
@@ -111978,7 +116375,7 @@
}
},
{
- "id": 12717,
+ "id": 13186,
"properties": {
"facing": "east",
"half": "top",
@@ -111987,7 +116384,7 @@
}
},
{
- "id": 12718,
+ "id": 13187,
"properties": {
"facing": "east",
"half": "top",
@@ -111996,7 +116393,7 @@
}
},
{
- "id": 12719,
+ "id": 13188,
"properties": {
"facing": "east",
"half": "top",
@@ -112005,7 +116402,7 @@
}
},
{
- "id": 12720,
+ "id": 13189,
"properties": {
"facing": "east",
"half": "top",
@@ -112014,7 +116411,7 @@
}
},
{
- "id": 12721,
+ "id": 13190,
"properties": {
"facing": "east",
"half": "top",
@@ -112023,7 +116420,7 @@
}
},
{
- "id": 12722,
+ "id": 13191,
"properties": {
"facing": "east",
"half": "top",
@@ -112032,7 +116429,7 @@
}
},
{
- "id": 12723,
+ "id": 13192,
"properties": {
"facing": "east",
"half": "top",
@@ -112041,7 +116438,7 @@
}
},
{
- "id": 12724,
+ "id": 13193,
"properties": {
"facing": "east",
"half": "bottom",
@@ -112050,7 +116447,7 @@
}
},
{
- "id": 12725,
+ "id": 13194,
"properties": {
"facing": "east",
"half": "bottom",
@@ -112059,7 +116456,7 @@
}
},
{
- "id": 12726,
+ "id": 13195,
"properties": {
"facing": "east",
"half": "bottom",
@@ -112068,7 +116465,7 @@
}
},
{
- "id": 12727,
+ "id": 13196,
"properties": {
"facing": "east",
"half": "bottom",
@@ -112077,7 +116474,7 @@
}
},
{
- "id": 12728,
+ "id": 13197,
"properties": {
"facing": "east",
"half": "bottom",
@@ -112086,7 +116483,7 @@
}
},
{
- "id": 12729,
+ "id": 13198,
"properties": {
"facing": "east",
"half": "bottom",
@@ -112095,7 +116492,7 @@
}
},
{
- "id": 12730,
+ "id": 13199,
"properties": {
"facing": "east",
"half": "bottom",
@@ -112104,7 +116501,7 @@
}
},
{
- "id": 12731,
+ "id": 13200,
"properties": {
"facing": "east",
"half": "bottom",
@@ -112113,7 +116510,7 @@
}
},
{
- "id": 12732,
+ "id": 13201,
"properties": {
"facing": "east",
"half": "bottom",
@@ -112122,7 +116519,7 @@
}
},
{
- "id": 12733,
+ "id": 13202,
"properties": {
"facing": "east",
"half": "bottom",
@@ -112165,7 +116562,7 @@
},
"states": [
{
- "id": 8013,
+ "id": 8239,
"properties": {
"east": "none",
"north": "none",
@@ -112176,7 +116573,7 @@
}
},
{
- "id": 8014,
+ "id": 8240,
"properties": {
"east": "none",
"north": "none",
@@ -112187,7 +116584,7 @@
}
},
{
- "id": 8015,
+ "id": 8241,
"properties": {
"east": "none",
"north": "none",
@@ -112199,2735 +116596,2735 @@
},
{
"default": true,
- "id": 8016,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8017,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8018,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8019,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8020,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8021,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8022,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8023,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8024,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8025,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8026,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8027,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8028,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8029,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8030,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8031,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8032,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8033,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8034,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8035,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8036,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8037,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8038,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8039,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8040,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8041,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8042,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8043,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8044,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8045,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8046,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8047,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8048,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8049,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8050,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8051,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8052,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8053,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8054,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8055,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8056,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8057,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8058,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8059,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8060,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8061,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8062,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8063,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8064,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8065,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8066,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8067,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8068,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8069,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8070,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8071,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8072,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8073,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8074,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8075,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8076,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8077,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8078,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8079,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8080,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8081,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8082,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8083,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8084,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8085,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8086,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8087,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8088,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8089,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8090,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8091,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8092,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8093,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8094,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8095,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8096,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8097,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8098,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8099,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8100,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8101,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8102,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8103,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8104,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8105,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8106,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8107,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8108,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8109,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8110,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8111,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8112,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8113,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8114,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8115,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8116,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8117,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8118,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8119,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8120,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8121,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8122,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8123,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8124,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8125,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8126,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8127,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8128,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8129,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8130,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8131,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8132,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8133,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8134,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8135,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8136,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8137,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8138,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8139,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8140,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8141,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8142,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8143,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8144,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8145,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8146,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8147,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8148,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8149,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8150,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8151,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8152,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8153,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8154,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8155,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8156,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8157,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8158,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8159,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8160,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8161,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8162,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8163,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8164,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8165,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8166,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8167,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8168,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8169,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8170,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8171,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8172,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8173,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8174,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8175,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8176,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8177,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8178,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8179,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8180,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8181,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8182,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8183,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8184,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8185,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8186,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8187,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8188,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8189,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8190,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8191,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8192,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8193,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8194,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8195,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8196,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8197,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8198,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8199,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8200,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8201,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8202,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8203,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8204,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8205,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8206,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8207,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8208,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8209,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8210,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8211,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8212,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8213,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8214,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8215,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8216,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8217,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8218,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8219,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8220,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8221,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8222,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8223,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8224,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8225,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8226,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8227,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8228,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8229,
- "properties": {
- "east": "tall",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8230,
- "properties": {
- "east": "tall",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8231,
- "properties": {
- "east": "tall",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8232,
- "properties": {
- "east": "tall",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8233,
- "properties": {
- "east": "tall",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8234,
- "properties": {
- "east": "tall",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8235,
- "properties": {
- "east": "tall",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8236,
- "properties": {
- "east": "tall",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8237,
- "properties": {
- "east": "tall",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8238,
- "properties": {
- "east": "tall",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8239,
- "properties": {
- "east": "tall",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8240,
- "properties": {
- "east": "tall",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8241,
- "properties": {
- "east": "tall",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
"id": 8242,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "low",
+ "south": "none",
"up": "true",
- "waterlogged": "true",
- "west": "low"
+ "waterlogged": "false",
+ "west": "none"
}
},
{
"id": 8243,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "low",
+ "south": "none",
"up": "true",
- "waterlogged": "true",
- "west": "tall"
+ "waterlogged": "false",
+ "west": "low"
}
},
{
"id": 8244,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "low",
+ "south": "none",
"up": "true",
"waterlogged": "false",
- "west": "none"
+ "west": "tall"
}
},
{
"id": 8245,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
}
},
{
"id": 8246,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
}
},
{
"id": 8247,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "low",
+ "south": "none",
"up": "false",
"waterlogged": "true",
- "west": "none"
+ "west": "tall"
}
},
{
"id": 8248,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "low",
+ "south": "none",
"up": "false",
- "waterlogged": "true",
- "west": "low"
+ "waterlogged": "false",
+ "west": "none"
}
},
{
"id": 8249,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "low",
+ "south": "none",
"up": "false",
- "waterlogged": "true",
- "west": "tall"
+ "waterlogged": "false",
+ "west": "low"
}
},
{
"id": 8250,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "low",
+ "south": "none",
"up": "false",
"waterlogged": "false",
- "west": "none"
+ "west": "tall"
}
},
{
"id": 8251,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
"south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
}
},
{
"id": 8252,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
"south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
}
},
{
"id": 8253,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "tall",
+ "south": "low",
"up": "true",
"waterlogged": "true",
- "west": "none"
+ "west": "tall"
}
},
{
"id": 8254,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "tall",
+ "south": "low",
"up": "true",
- "waterlogged": "true",
- "west": "low"
+ "waterlogged": "false",
+ "west": "none"
}
},
{
"id": 8255,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "tall",
+ "south": "low",
"up": "true",
- "waterlogged": "true",
- "west": "tall"
+ "waterlogged": "false",
+ "west": "low"
}
},
{
"id": 8256,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "tall",
+ "south": "low",
"up": "true",
"waterlogged": "false",
- "west": "none"
+ "west": "tall"
}
},
{
"id": 8257,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
}
},
{
"id": 8258,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
}
},
{
"id": 8259,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "tall",
+ "south": "low",
"up": "false",
"waterlogged": "true",
- "west": "none"
+ "west": "tall"
}
},
{
"id": 8260,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "tall",
+ "south": "low",
"up": "false",
- "waterlogged": "true",
- "west": "low"
+ "waterlogged": "false",
+ "west": "none"
}
},
{
"id": 8261,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "tall",
+ "south": "low",
"up": "false",
- "waterlogged": "true",
- "west": "tall"
+ "waterlogged": "false",
+ "west": "low"
}
},
{
"id": 8262,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "tall",
+ "south": "low",
"up": "false",
"waterlogged": "false",
- "west": "none"
+ "west": "tall"
}
},
{
"id": 8263,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
"south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
}
},
{
"id": 8264,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8265,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8266,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8267,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8268,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8269,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8270,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8271,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8272,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8273,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8274,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8275,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8276,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8277,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8278,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8279,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8280,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8281,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8282,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8283,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8284,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8285,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8286,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8287,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8288,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8289,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8290,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8291,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8292,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8293,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8294,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8295,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8296,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8297,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8298,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8299,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8300,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8301,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8302,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8303,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8304,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8305,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8306,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8307,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8308,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8309,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8310,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8311,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8312,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8313,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8314,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8315,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8316,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8317,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8318,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8319,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8320,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8321,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8322,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8323,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8324,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8325,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8326,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8327,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8328,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8329,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8330,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8331,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8332,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8333,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8334,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8335,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8336,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8337,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8338,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8339,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8340,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8341,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8342,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8343,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8344,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8345,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8346,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "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": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8352,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8353,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8354,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8355,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8356,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8357,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8358,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8359,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8360,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8361,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8362,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8363,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8364,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8365,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8366,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8367,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8368,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8369,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8370,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8371,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8372,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8373,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8374,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8375,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8376,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8377,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8378,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8379,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8380,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8381,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8382,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8383,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8384,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8385,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8386,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8387,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8388,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8389,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8390,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8391,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8392,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8393,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8394,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8395,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8396,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8397,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8398,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8399,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8400,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8401,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8402,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8403,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8404,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8405,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8406,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8407,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8408,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8409,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8410,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8411,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8412,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8413,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8414,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8415,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8416,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8417,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8418,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8419,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8420,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8421,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8422,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8423,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8424,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8425,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8426,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8427,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8428,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8429,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8430,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8431,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8432,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8433,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8434,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8435,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8436,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8437,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8438,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8439,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8440,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8441,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8442,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8443,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8444,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8445,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8446,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8447,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8448,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8449,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8450,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8451,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8452,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8453,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8454,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "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": {
+ "east": "tall",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8460,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8461,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8462,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8463,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8464,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8465,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8466,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8467,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8468,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8469,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8470,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8471,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8472,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8473,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8474,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8475,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8476,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8477,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8478,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8479,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8480,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8481,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8482,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8483,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8484,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8485,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8486,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8487,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8488,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8489,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8490,
"properties": {
"east": "tall",
"north": "none",
@@ -114938,7 +119335,7 @@
}
},
{
- "id": 8265,
+ "id": 8491,
"properties": {
"east": "tall",
"north": "low",
@@ -114949,7 +119346,7 @@
}
},
{
- "id": 8266,
+ "id": 8492,
"properties": {
"east": "tall",
"north": "low",
@@ -114960,7 +119357,7 @@
}
},
{
- "id": 8267,
+ "id": 8493,
"properties": {
"east": "tall",
"north": "low",
@@ -114971,7 +119368,7 @@
}
},
{
- "id": 8268,
+ "id": 8494,
"properties": {
"east": "tall",
"north": "low",
@@ -114982,7 +119379,7 @@
}
},
{
- "id": 8269,
+ "id": 8495,
"properties": {
"east": "tall",
"north": "low",
@@ -114993,7 +119390,7 @@
}
},
{
- "id": 8270,
+ "id": 8496,
"properties": {
"east": "tall",
"north": "low",
@@ -115004,7 +119401,7 @@
}
},
{
- "id": 8271,
+ "id": 8497,
"properties": {
"east": "tall",
"north": "low",
@@ -115015,7 +119412,7 @@
}
},
{
- "id": 8272,
+ "id": 8498,
"properties": {
"east": "tall",
"north": "low",
@@ -115026,7 +119423,7 @@
}
},
{
- "id": 8273,
+ "id": 8499,
"properties": {
"east": "tall",
"north": "low",
@@ -115037,7 +119434,7 @@
}
},
{
- "id": 8274,
+ "id": 8500,
"properties": {
"east": "tall",
"north": "low",
@@ -115048,7 +119445,7 @@
}
},
{
- "id": 8275,
+ "id": 8501,
"properties": {
"east": "tall",
"north": "low",
@@ -115059,7 +119456,7 @@
}
},
{
- "id": 8276,
+ "id": 8502,
"properties": {
"east": "tall",
"north": "low",
@@ -115070,7 +119467,7 @@
}
},
{
- "id": 8277,
+ "id": 8503,
"properties": {
"east": "tall",
"north": "low",
@@ -115081,7 +119478,7 @@
}
},
{
- "id": 8278,
+ "id": 8504,
"properties": {
"east": "tall",
"north": "low",
@@ -115092,7 +119489,7 @@
}
},
{
- "id": 8279,
+ "id": 8505,
"properties": {
"east": "tall",
"north": "low",
@@ -115103,7 +119500,7 @@
}
},
{
- "id": 8280,
+ "id": 8506,
"properties": {
"east": "tall",
"north": "low",
@@ -115114,7 +119511,7 @@
}
},
{
- "id": 8281,
+ "id": 8507,
"properties": {
"east": "tall",
"north": "low",
@@ -115125,7 +119522,7 @@
}
},
{
- "id": 8282,
+ "id": 8508,
"properties": {
"east": "tall",
"north": "low",
@@ -115136,7 +119533,7 @@
}
},
{
- "id": 8283,
+ "id": 8509,
"properties": {
"east": "tall",
"north": "low",
@@ -115147,7 +119544,7 @@
}
},
{
- "id": 8284,
+ "id": 8510,
"properties": {
"east": "tall",
"north": "low",
@@ -115158,7 +119555,7 @@
}
},
{
- "id": 8285,
+ "id": 8511,
"properties": {
"east": "tall",
"north": "low",
@@ -115169,7 +119566,7 @@
}
},
{
- "id": 8286,
+ "id": 8512,
"properties": {
"east": "tall",
"north": "low",
@@ -115180,7 +119577,7 @@
}
},
{
- "id": 8287,
+ "id": 8513,
"properties": {
"east": "tall",
"north": "low",
@@ -115191,7 +119588,7 @@
}
},
{
- "id": 8288,
+ "id": 8514,
"properties": {
"east": "tall",
"north": "low",
@@ -115202,7 +119599,7 @@
}
},
{
- "id": 8289,
+ "id": 8515,
"properties": {
"east": "tall",
"north": "low",
@@ -115213,7 +119610,7 @@
}
},
{
- "id": 8290,
+ "id": 8516,
"properties": {
"east": "tall",
"north": "low",
@@ -115224,7 +119621,7 @@
}
},
{
- "id": 8291,
+ "id": 8517,
"properties": {
"east": "tall",
"north": "low",
@@ -115235,7 +119632,7 @@
}
},
{
- "id": 8292,
+ "id": 8518,
"properties": {
"east": "tall",
"north": "low",
@@ -115246,7 +119643,7 @@
}
},
{
- "id": 8293,
+ "id": 8519,
"properties": {
"east": "tall",
"north": "low",
@@ -115257,7 +119654,7 @@
}
},
{
- "id": 8294,
+ "id": 8520,
"properties": {
"east": "tall",
"north": "low",
@@ -115268,7 +119665,7 @@
}
},
{
- "id": 8295,
+ "id": 8521,
"properties": {
"east": "tall",
"north": "low",
@@ -115279,7 +119676,7 @@
}
},
{
- "id": 8296,
+ "id": 8522,
"properties": {
"east": "tall",
"north": "low",
@@ -115290,7 +119687,7 @@
}
},
{
- "id": 8297,
+ "id": 8523,
"properties": {
"east": "tall",
"north": "low",
@@ -115301,7 +119698,7 @@
}
},
{
- "id": 8298,
+ "id": 8524,
"properties": {
"east": "tall",
"north": "low",
@@ -115312,7 +119709,7 @@
}
},
{
- "id": 8299,
+ "id": 8525,
"properties": {
"east": "tall",
"north": "low",
@@ -115323,7 +119720,7 @@
}
},
{
- "id": 8300,
+ "id": 8526,
"properties": {
"east": "tall",
"north": "low",
@@ -115334,7 +119731,7 @@
}
},
{
- "id": 8301,
+ "id": 8527,
"properties": {
"east": "tall",
"north": "tall",
@@ -115345,7 +119742,7 @@
}
},
{
- "id": 8302,
+ "id": 8528,
"properties": {
"east": "tall",
"north": "tall",
@@ -115356,7 +119753,7 @@
}
},
{
- "id": 8303,
+ "id": 8529,
"properties": {
"east": "tall",
"north": "tall",
@@ -115367,7 +119764,7 @@
}
},
{
- "id": 8304,
+ "id": 8530,
"properties": {
"east": "tall",
"north": "tall",
@@ -115378,7 +119775,7 @@
}
},
{
- "id": 8305,
+ "id": 8531,
"properties": {
"east": "tall",
"north": "tall",
@@ -115389,7 +119786,7 @@
}
},
{
- "id": 8306,
+ "id": 8532,
"properties": {
"east": "tall",
"north": "tall",
@@ -115400,7 +119797,7 @@
}
},
{
- "id": 8307,
+ "id": 8533,
"properties": {
"east": "tall",
"north": "tall",
@@ -115411,7 +119808,7 @@
}
},
{
- "id": 8308,
+ "id": 8534,
"properties": {
"east": "tall",
"north": "tall",
@@ -115422,7 +119819,7 @@
}
},
{
- "id": 8309,
+ "id": 8535,
"properties": {
"east": "tall",
"north": "tall",
@@ -115433,7 +119830,7 @@
}
},
{
- "id": 8310,
+ "id": 8536,
"properties": {
"east": "tall",
"north": "tall",
@@ -115444,7 +119841,7 @@
}
},
{
- "id": 8311,
+ "id": 8537,
"properties": {
"east": "tall",
"north": "tall",
@@ -115455,7 +119852,7 @@
}
},
{
- "id": 8312,
+ "id": 8538,
"properties": {
"east": "tall",
"north": "tall",
@@ -115466,7 +119863,7 @@
}
},
{
- "id": 8313,
+ "id": 8539,
"properties": {
"east": "tall",
"north": "tall",
@@ -115477,7 +119874,7 @@
}
},
{
- "id": 8314,
+ "id": 8540,
"properties": {
"east": "tall",
"north": "tall",
@@ -115488,7 +119885,7 @@
}
},
{
- "id": 8315,
+ "id": 8541,
"properties": {
"east": "tall",
"north": "tall",
@@ -115499,7 +119896,7 @@
}
},
{
- "id": 8316,
+ "id": 8542,
"properties": {
"east": "tall",
"north": "tall",
@@ -115510,7 +119907,7 @@
}
},
{
- "id": 8317,
+ "id": 8543,
"properties": {
"east": "tall",
"north": "tall",
@@ -115521,7 +119918,7 @@
}
},
{
- "id": 8318,
+ "id": 8544,
"properties": {
"east": "tall",
"north": "tall",
@@ -115532,7 +119929,7 @@
}
},
{
- "id": 8319,
+ "id": 8545,
"properties": {
"east": "tall",
"north": "tall",
@@ -115543,7 +119940,7 @@
}
},
{
- "id": 8320,
+ "id": 8546,
"properties": {
"east": "tall",
"north": "tall",
@@ -115554,7 +119951,7 @@
}
},
{
- "id": 8321,
+ "id": 8547,
"properties": {
"east": "tall",
"north": "tall",
@@ -115565,7 +119962,7 @@
}
},
{
- "id": 8322,
+ "id": 8548,
"properties": {
"east": "tall",
"north": "tall",
@@ -115576,7 +119973,7 @@
}
},
{
- "id": 8323,
+ "id": 8549,
"properties": {
"east": "tall",
"north": "tall",
@@ -115587,7 +119984,7 @@
}
},
{
- "id": 8324,
+ "id": 8550,
"properties": {
"east": "tall",
"north": "tall",
@@ -115598,7 +119995,7 @@
}
},
{
- "id": 8325,
+ "id": 8551,
"properties": {
"east": "tall",
"north": "tall",
@@ -115609,7 +120006,7 @@
}
},
{
- "id": 8326,
+ "id": 8552,
"properties": {
"east": "tall",
"north": "tall",
@@ -115620,7 +120017,7 @@
}
},
{
- "id": 8327,
+ "id": 8553,
"properties": {
"east": "tall",
"north": "tall",
@@ -115631,7 +120028,7 @@
}
},
{
- "id": 8328,
+ "id": 8554,
"properties": {
"east": "tall",
"north": "tall",
@@ -115642,7 +120039,7 @@
}
},
{
- "id": 8329,
+ "id": 8555,
"properties": {
"east": "tall",
"north": "tall",
@@ -115653,7 +120050,7 @@
}
},
{
- "id": 8330,
+ "id": 8556,
"properties": {
"east": "tall",
"north": "tall",
@@ -115664,7 +120061,7 @@
}
},
{
- "id": 8331,
+ "id": 8557,
"properties": {
"east": "tall",
"north": "tall",
@@ -115675,7 +120072,7 @@
}
},
{
- "id": 8332,
+ "id": 8558,
"properties": {
"east": "tall",
"north": "tall",
@@ -115686,7 +120083,7 @@
}
},
{
- "id": 8333,
+ "id": 8559,
"properties": {
"east": "tall",
"north": "tall",
@@ -115697,7 +120094,7 @@
}
},
{
- "id": 8334,
+ "id": 8560,
"properties": {
"east": "tall",
"north": "tall",
@@ -115708,7 +120105,7 @@
}
},
{
- "id": 8335,
+ "id": 8561,
"properties": {
"east": "tall",
"north": "tall",
@@ -115719,7 +120116,7 @@
}
},
{
- "id": 8336,
+ "id": 8562,
"properties": {
"east": "tall",
"north": "tall",
@@ -115745,21 +120142,21 @@
},
"states": [
{
- "id": 13466,
+ "id": 13935,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 13467,
+ "id": 13936,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 13468,
+ "id": 13937,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -115767,21 +120164,21 @@
},
{
"default": true,
- "id": 13469,
+ "id": 13938,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 13470,
+ "id": 13939,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 13471,
+ "id": 13940,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -115815,7 +120212,7 @@
},
"states": [
{
- "id": 12494,
+ "id": 12963,
"properties": {
"facing": "north",
"half": "top",
@@ -115824,7 +120221,7 @@
}
},
{
- "id": 12495,
+ "id": 12964,
"properties": {
"facing": "north",
"half": "top",
@@ -115833,7 +120230,7 @@
}
},
{
- "id": 12496,
+ "id": 12965,
"properties": {
"facing": "north",
"half": "top",
@@ -115842,7 +120239,7 @@
}
},
{
- "id": 12497,
+ "id": 12966,
"properties": {
"facing": "north",
"half": "top",
@@ -115851,7 +120248,7 @@
}
},
{
- "id": 12498,
+ "id": 12967,
"properties": {
"facing": "north",
"half": "top",
@@ -115860,7 +120257,7 @@
}
},
{
- "id": 12499,
+ "id": 12968,
"properties": {
"facing": "north",
"half": "top",
@@ -115869,7 +120266,7 @@
}
},
{
- "id": 12500,
+ "id": 12969,
"properties": {
"facing": "north",
"half": "top",
@@ -115878,7 +120275,7 @@
}
},
{
- "id": 12501,
+ "id": 12970,
"properties": {
"facing": "north",
"half": "top",
@@ -115887,7 +120284,7 @@
}
},
{
- "id": 12502,
+ "id": 12971,
"properties": {
"facing": "north",
"half": "top",
@@ -115896,7 +120293,7 @@
}
},
{
- "id": 12503,
+ "id": 12972,
"properties": {
"facing": "north",
"half": "top",
@@ -115905,7 +120302,7 @@
}
},
{
- "id": 12504,
+ "id": 12973,
"properties": {
"facing": "north",
"half": "bottom",
@@ -115915,7 +120312,7 @@
},
{
"default": true,
- "id": 12505,
+ "id": 12974,
"properties": {
"facing": "north",
"half": "bottom",
@@ -115924,7 +120321,7 @@
}
},
{
- "id": 12506,
+ "id": 12975,
"properties": {
"facing": "north",
"half": "bottom",
@@ -115933,7 +120330,7 @@
}
},
{
- "id": 12507,
+ "id": 12976,
"properties": {
"facing": "north",
"half": "bottom",
@@ -115942,7 +120339,7 @@
}
},
{
- "id": 12508,
+ "id": 12977,
"properties": {
"facing": "north",
"half": "bottom",
@@ -115951,7 +120348,7 @@
}
},
{
- "id": 12509,
+ "id": 12978,
"properties": {
"facing": "north",
"half": "bottom",
@@ -115960,7 +120357,7 @@
}
},
{
- "id": 12510,
+ "id": 12979,
"properties": {
"facing": "north",
"half": "bottom",
@@ -115969,7 +120366,7 @@
}
},
{
- "id": 12511,
+ "id": 12980,
"properties": {
"facing": "north",
"half": "bottom",
@@ -115978,7 +120375,7 @@
}
},
{
- "id": 12512,
+ "id": 12981,
"properties": {
"facing": "north",
"half": "bottom",
@@ -115987,7 +120384,7 @@
}
},
{
- "id": 12513,
+ "id": 12982,
"properties": {
"facing": "north",
"half": "bottom",
@@ -115996,7 +120393,7 @@
}
},
{
- "id": 12514,
+ "id": 12983,
"properties": {
"facing": "south",
"half": "top",
@@ -116005,7 +120402,7 @@
}
},
{
- "id": 12515,
+ "id": 12984,
"properties": {
"facing": "south",
"half": "top",
@@ -116014,7 +120411,7 @@
}
},
{
- "id": 12516,
+ "id": 12985,
"properties": {
"facing": "south",
"half": "top",
@@ -116023,7 +120420,7 @@
}
},
{
- "id": 12517,
+ "id": 12986,
"properties": {
"facing": "south",
"half": "top",
@@ -116032,7 +120429,7 @@
}
},
{
- "id": 12518,
+ "id": 12987,
"properties": {
"facing": "south",
"half": "top",
@@ -116041,7 +120438,7 @@
}
},
{
- "id": 12519,
+ "id": 12988,
"properties": {
"facing": "south",
"half": "top",
@@ -116050,7 +120447,7 @@
}
},
{
- "id": 12520,
+ "id": 12989,
"properties": {
"facing": "south",
"half": "top",
@@ -116059,7 +120456,7 @@
}
},
{
- "id": 12521,
+ "id": 12990,
"properties": {
"facing": "south",
"half": "top",
@@ -116068,7 +120465,7 @@
}
},
{
- "id": 12522,
+ "id": 12991,
"properties": {
"facing": "south",
"half": "top",
@@ -116077,7 +120474,7 @@
}
},
{
- "id": 12523,
+ "id": 12992,
"properties": {
"facing": "south",
"half": "top",
@@ -116086,7 +120483,7 @@
}
},
{
- "id": 12524,
+ "id": 12993,
"properties": {
"facing": "south",
"half": "bottom",
@@ -116095,7 +120492,7 @@
}
},
{
- "id": 12525,
+ "id": 12994,
"properties": {
"facing": "south",
"half": "bottom",
@@ -116104,7 +120501,7 @@
}
},
{
- "id": 12526,
+ "id": 12995,
"properties": {
"facing": "south",
"half": "bottom",
@@ -116113,7 +120510,7 @@
}
},
{
- "id": 12527,
+ "id": 12996,
"properties": {
"facing": "south",
"half": "bottom",
@@ -116122,7 +120519,7 @@
}
},
{
- "id": 12528,
+ "id": 12997,
"properties": {
"facing": "south",
"half": "bottom",
@@ -116131,7 +120528,7 @@
}
},
{
- "id": 12529,
+ "id": 12998,
"properties": {
"facing": "south",
"half": "bottom",
@@ -116140,7 +120537,7 @@
}
},
{
- "id": 12530,
+ "id": 12999,
"properties": {
"facing": "south",
"half": "bottom",
@@ -116149,7 +120546,7 @@
}
},
{
- "id": 12531,
+ "id": 13000,
"properties": {
"facing": "south",
"half": "bottom",
@@ -116158,7 +120555,7 @@
}
},
{
- "id": 12532,
+ "id": 13001,
"properties": {
"facing": "south",
"half": "bottom",
@@ -116167,7 +120564,7 @@
}
},
{
- "id": 12533,
+ "id": 13002,
"properties": {
"facing": "south",
"half": "bottom",
@@ -116176,7 +120573,7 @@
}
},
{
- "id": 12534,
+ "id": 13003,
"properties": {
"facing": "west",
"half": "top",
@@ -116185,7 +120582,7 @@
}
},
{
- "id": 12535,
+ "id": 13004,
"properties": {
"facing": "west",
"half": "top",
@@ -116194,7 +120591,7 @@
}
},
{
- "id": 12536,
+ "id": 13005,
"properties": {
"facing": "west",
"half": "top",
@@ -116203,7 +120600,7 @@
}
},
{
- "id": 12537,
+ "id": 13006,
"properties": {
"facing": "west",
"half": "top",
@@ -116212,7 +120609,7 @@
}
},
{
- "id": 12538,
+ "id": 13007,
"properties": {
"facing": "west",
"half": "top",
@@ -116221,7 +120618,7 @@
}
},
{
- "id": 12539,
+ "id": 13008,
"properties": {
"facing": "west",
"half": "top",
@@ -116230,7 +120627,7 @@
}
},
{
- "id": 12540,
+ "id": 13009,
"properties": {
"facing": "west",
"half": "top",
@@ -116239,7 +120636,7 @@
}
},
{
- "id": 12541,
+ "id": 13010,
"properties": {
"facing": "west",
"half": "top",
@@ -116248,7 +120645,7 @@
}
},
{
- "id": 12542,
+ "id": 13011,
"properties": {
"facing": "west",
"half": "top",
@@ -116257,7 +120654,7 @@
}
},
{
- "id": 12543,
+ "id": 13012,
"properties": {
"facing": "west",
"half": "top",
@@ -116266,7 +120663,7 @@
}
},
{
- "id": 12544,
+ "id": 13013,
"properties": {
"facing": "west",
"half": "bottom",
@@ -116275,7 +120672,7 @@
}
},
{
- "id": 12545,
+ "id": 13014,
"properties": {
"facing": "west",
"half": "bottom",
@@ -116284,7 +120681,7 @@
}
},
{
- "id": 12546,
+ "id": 13015,
"properties": {
"facing": "west",
"half": "bottom",
@@ -116293,7 +120690,7 @@
}
},
{
- "id": 12547,
+ "id": 13016,
"properties": {
"facing": "west",
"half": "bottom",
@@ -116302,7 +120699,7 @@
}
},
{
- "id": 12548,
+ "id": 13017,
"properties": {
"facing": "west",
"half": "bottom",
@@ -116311,7 +120708,7 @@
}
},
{
- "id": 12549,
+ "id": 13018,
"properties": {
"facing": "west",
"half": "bottom",
@@ -116320,7 +120717,7 @@
}
},
{
- "id": 12550,
+ "id": 13019,
"properties": {
"facing": "west",
"half": "bottom",
@@ -116329,7 +120726,7 @@
}
},
{
- "id": 12551,
+ "id": 13020,
"properties": {
"facing": "west",
"half": "bottom",
@@ -116338,7 +120735,7 @@
}
},
{
- "id": 12552,
+ "id": 13021,
"properties": {
"facing": "west",
"half": "bottom",
@@ -116347,7 +120744,7 @@
}
},
{
- "id": 12553,
+ "id": 13022,
"properties": {
"facing": "west",
"half": "bottom",
@@ -116356,7 +120753,7 @@
}
},
{
- "id": 12554,
+ "id": 13023,
"properties": {
"facing": "east",
"half": "top",
@@ -116365,7 +120762,7 @@
}
},
{
- "id": 12555,
+ "id": 13024,
"properties": {
"facing": "east",
"half": "top",
@@ -116374,7 +120771,7 @@
}
},
{
- "id": 12556,
+ "id": 13025,
"properties": {
"facing": "east",
"half": "top",
@@ -116383,7 +120780,7 @@
}
},
{
- "id": 12557,
+ "id": 13026,
"properties": {
"facing": "east",
"half": "top",
@@ -116392,7 +120789,7 @@
}
},
{
- "id": 12558,
+ "id": 13027,
"properties": {
"facing": "east",
"half": "top",
@@ -116401,7 +120798,7 @@
}
},
{
- "id": 12559,
+ "id": 13028,
"properties": {
"facing": "east",
"half": "top",
@@ -116410,7 +120807,7 @@
}
},
{
- "id": 12560,
+ "id": 13029,
"properties": {
"facing": "east",
"half": "top",
@@ -116419,7 +120816,7 @@
}
},
{
- "id": 12561,
+ "id": 13030,
"properties": {
"facing": "east",
"half": "top",
@@ -116428,7 +120825,7 @@
}
},
{
- "id": 12562,
+ "id": 13031,
"properties": {
"facing": "east",
"half": "top",
@@ -116437,7 +120834,7 @@
}
},
{
- "id": 12563,
+ "id": 13032,
"properties": {
"facing": "east",
"half": "top",
@@ -116446,7 +120843,7 @@
}
},
{
- "id": 12564,
+ "id": 13033,
"properties": {
"facing": "east",
"half": "bottom",
@@ -116455,7 +120852,7 @@
}
},
{
- "id": 12565,
+ "id": 13034,
"properties": {
"facing": "east",
"half": "bottom",
@@ -116464,7 +120861,7 @@
}
},
{
- "id": 12566,
+ "id": 13035,
"properties": {
"facing": "east",
"half": "bottom",
@@ -116473,7 +120870,7 @@
}
},
{
- "id": 12567,
+ "id": 13036,
"properties": {
"facing": "east",
"half": "bottom",
@@ -116482,7 +120879,7 @@
}
},
{
- "id": 12568,
+ "id": 13037,
"properties": {
"facing": "east",
"half": "bottom",
@@ -116491,7 +120888,7 @@
}
},
{
- "id": 12569,
+ "id": 13038,
"properties": {
"facing": "east",
"half": "bottom",
@@ -116500,7 +120897,7 @@
}
},
{
- "id": 12570,
+ "id": 13039,
"properties": {
"facing": "east",
"half": "bottom",
@@ -116509,7 +120906,7 @@
}
},
{
- "id": 12571,
+ "id": 13040,
"properties": {
"facing": "east",
"half": "bottom",
@@ -116518,7 +120915,7 @@
}
},
{
- "id": 12572,
+ "id": 13041,
"properties": {
"facing": "east",
"half": "bottom",
@@ -116527,7 +120924,7 @@
}
},
{
- "id": 12573,
+ "id": 13042,
"properties": {
"facing": "east",
"half": "bottom",
@@ -116570,7 +120967,7 @@
},
"states": [
{
- "id": 14504,
+ "id": 14973,
"properties": {
"east": "none",
"north": "none",
@@ -116581,7 +120978,7 @@
}
},
{
- "id": 14505,
+ "id": 14974,
"properties": {
"east": "none",
"north": "none",
@@ -116592,7 +120989,7 @@
}
},
{
- "id": 14506,
+ "id": 14975,
"properties": {
"east": "none",
"north": "none",
@@ -116604,7 +121001,7 @@
},
{
"default": true,
- "id": 14507,
+ "id": 14976,
"properties": {
"east": "none",
"north": "none",
@@ -116615,7 +121012,7 @@
}
},
{
- "id": 14508,
+ "id": 14977,
"properties": {
"east": "none",
"north": "none",
@@ -116626,7 +121023,7 @@
}
},
{
- "id": 14509,
+ "id": 14978,
"properties": {
"east": "none",
"north": "none",
@@ -116637,7 +121034,7 @@
}
},
{
- "id": 14510,
+ "id": 14979,
"properties": {
"east": "none",
"north": "none",
@@ -116648,7 +121045,7 @@
}
},
{
- "id": 14511,
+ "id": 14980,
"properties": {
"east": "none",
"north": "none",
@@ -116659,7 +121056,7 @@
}
},
{
- "id": 14512,
+ "id": 14981,
"properties": {
"east": "none",
"north": "none",
@@ -116670,7 +121067,7 @@
}
},
{
- "id": 14513,
+ "id": 14982,
"properties": {
"east": "none",
"north": "none",
@@ -116681,7 +121078,7 @@
}
},
{
- "id": 14514,
+ "id": 14983,
"properties": {
"east": "none",
"north": "none",
@@ -116692,7 +121089,7 @@
}
},
{
- "id": 14515,
+ "id": 14984,
"properties": {
"east": "none",
"north": "none",
@@ -116703,7 +121100,7 @@
}
},
{
- "id": 14516,
+ "id": 14985,
"properties": {
"east": "none",
"north": "none",
@@ -116714,7 +121111,7 @@
}
},
{
- "id": 14517,
+ "id": 14986,
"properties": {
"east": "none",
"north": "none",
@@ -116725,7 +121122,7 @@
}
},
{
- "id": 14518,
+ "id": 14987,
"properties": {
"east": "none",
"north": "none",
@@ -116736,7 +121133,7 @@
}
},
{
- "id": 14519,
+ "id": 14988,
"properties": {
"east": "none",
"north": "none",
@@ -116747,7 +121144,7 @@
}
},
{
- "id": 14520,
+ "id": 14989,
"properties": {
"east": "none",
"north": "none",
@@ -116758,7 +121155,7 @@
}
},
{
- "id": 14521,
+ "id": 14990,
"properties": {
"east": "none",
"north": "none",
@@ -116769,7 +121166,7 @@
}
},
{
- "id": 14522,
+ "id": 14991,
"properties": {
"east": "none",
"north": "none",
@@ -116780,7 +121177,7 @@
}
},
{
- "id": 14523,
+ "id": 14992,
"properties": {
"east": "none",
"north": "none",
@@ -116791,7 +121188,7 @@
}
},
{
- "id": 14524,
+ "id": 14993,
"properties": {
"east": "none",
"north": "none",
@@ -116802,7 +121199,7 @@
}
},
{
- "id": 14525,
+ "id": 14994,
"properties": {
"east": "none",
"north": "none",
@@ -116813,7 +121210,7 @@
}
},
{
- "id": 14526,
+ "id": 14995,
"properties": {
"east": "none",
"north": "none",
@@ -116824,7 +121221,7 @@
}
},
{
- "id": 14527,
+ "id": 14996,
"properties": {
"east": "none",
"north": "none",
@@ -116835,7 +121232,7 @@
}
},
{
- "id": 14528,
+ "id": 14997,
"properties": {
"east": "none",
"north": "none",
@@ -116846,7 +121243,7 @@
}
},
{
- "id": 14529,
+ "id": 14998,
"properties": {
"east": "none",
"north": "none",
@@ -116857,7 +121254,7 @@
}
},
{
- "id": 14530,
+ "id": 14999,
"properties": {
"east": "none",
"north": "none",
@@ -116868,7 +121265,7 @@
}
},
{
- "id": 14531,
+ "id": 15000,
"properties": {
"east": "none",
"north": "none",
@@ -116879,7 +121276,7 @@
}
},
{
- "id": 14532,
+ "id": 15001,
"properties": {
"east": "none",
"north": "none",
@@ -116890,7 +121287,7 @@
}
},
{
- "id": 14533,
+ "id": 15002,
"properties": {
"east": "none",
"north": "none",
@@ -116901,7 +121298,7 @@
}
},
{
- "id": 14534,
+ "id": 15003,
"properties": {
"east": "none",
"north": "none",
@@ -116912,7 +121309,7 @@
}
},
{
- "id": 14535,
+ "id": 15004,
"properties": {
"east": "none",
"north": "none",
@@ -116923,7 +121320,7 @@
}
},
{
- "id": 14536,
+ "id": 15005,
"properties": {
"east": "none",
"north": "none",
@@ -116934,7 +121331,7 @@
}
},
{
- "id": 14537,
+ "id": 15006,
"properties": {
"east": "none",
"north": "none",
@@ -116945,7 +121342,7 @@
}
},
{
- "id": 14538,
+ "id": 15007,
"properties": {
"east": "none",
"north": "none",
@@ -116956,7 +121353,7 @@
}
},
{
- "id": 14539,
+ "id": 15008,
"properties": {
"east": "none",
"north": "none",
@@ -116967,7 +121364,7 @@
}
},
{
- "id": 14540,
+ "id": 15009,
"properties": {
"east": "none",
"north": "low",
@@ -116978,7 +121375,7 @@
}
},
{
- "id": 14541,
+ "id": 15010,
"properties": {
"east": "none",
"north": "low",
@@ -116989,7 +121386,7 @@
}
},
{
- "id": 14542,
+ "id": 15011,
"properties": {
"east": "none",
"north": "low",
@@ -117000,7 +121397,7 @@
}
},
{
- "id": 14543,
+ "id": 15012,
"properties": {
"east": "none",
"north": "low",
@@ -117011,7 +121408,7 @@
}
},
{
- "id": 14544,
+ "id": 15013,
"properties": {
"east": "none",
"north": "low",
@@ -117022,7 +121419,7 @@
}
},
{
- "id": 14545,
+ "id": 15014,
"properties": {
"east": "none",
"north": "low",
@@ -117033,7 +121430,7 @@
}
},
{
- "id": 14546,
+ "id": 15015,
"properties": {
"east": "none",
"north": "low",
@@ -117044,7 +121441,7 @@
}
},
{
- "id": 14547,
+ "id": 15016,
"properties": {
"east": "none",
"north": "low",
@@ -117055,7 +121452,7 @@
}
},
{
- "id": 14548,
+ "id": 15017,
"properties": {
"east": "none",
"north": "low",
@@ -117066,7 +121463,7 @@
}
},
{
- "id": 14549,
+ "id": 15018,
"properties": {
"east": "none",
"north": "low",
@@ -117077,7 +121474,7 @@
}
},
{
- "id": 14550,
+ "id": 15019,
"properties": {
"east": "none",
"north": "low",
@@ -117088,7 +121485,7 @@
}
},
{
- "id": 14551,
+ "id": 15020,
"properties": {
"east": "none",
"north": "low",
@@ -117099,7 +121496,7 @@
}
},
{
- "id": 14552,
+ "id": 15021,
"properties": {
"east": "none",
"north": "low",
@@ -117110,7 +121507,7 @@
}
},
{
- "id": 14553,
+ "id": 15022,
"properties": {
"east": "none",
"north": "low",
@@ -117121,7 +121518,7 @@
}
},
{
- "id": 14554,
+ "id": 15023,
"properties": {
"east": "none",
"north": "low",
@@ -117132,7 +121529,7 @@
}
},
{
- "id": 14555,
+ "id": 15024,
"properties": {
"east": "none",
"north": "low",
@@ -117143,7 +121540,7 @@
}
},
{
- "id": 14556,
+ "id": 15025,
"properties": {
"east": "none",
"north": "low",
@@ -117154,7 +121551,7 @@
}
},
{
- "id": 14557,
+ "id": 15026,
"properties": {
"east": "none",
"north": "low",
@@ -117165,7 +121562,7 @@
}
},
{
- "id": 14558,
+ "id": 15027,
"properties": {
"east": "none",
"north": "low",
@@ -117176,7 +121573,7 @@
}
},
{
- "id": 14559,
+ "id": 15028,
"properties": {
"east": "none",
"north": "low",
@@ -117187,7 +121584,7 @@
}
},
{
- "id": 14560,
+ "id": 15029,
"properties": {
"east": "none",
"north": "low",
@@ -117198,7 +121595,7 @@
}
},
{
- "id": 14561,
+ "id": 15030,
"properties": {
"east": "none",
"north": "low",
@@ -117209,7 +121606,7 @@
}
},
{
- "id": 14562,
+ "id": 15031,
"properties": {
"east": "none",
"north": "low",
@@ -117220,7 +121617,7 @@
}
},
{
- "id": 14563,
+ "id": 15032,
"properties": {
"east": "none",
"north": "low",
@@ -117231,7 +121628,7 @@
}
},
{
- "id": 14564,
+ "id": 15033,
"properties": {
"east": "none",
"north": "low",
@@ -117242,7 +121639,7 @@
}
},
{
- "id": 14565,
+ "id": 15034,
"properties": {
"east": "none",
"north": "low",
@@ -117253,7 +121650,7 @@
}
},
{
- "id": 14566,
+ "id": 15035,
"properties": {
"east": "none",
"north": "low",
@@ -117264,7 +121661,7 @@
}
},
{
- "id": 14567,
+ "id": 15036,
"properties": {
"east": "none",
"north": "low",
@@ -117275,7 +121672,7 @@
}
},
{
- "id": 14568,
+ "id": 15037,
"properties": {
"east": "none",
"north": "low",
@@ -117286,7 +121683,7 @@
}
},
{
- "id": 14569,
+ "id": 15038,
"properties": {
"east": "none",
"north": "low",
@@ -117297,7 +121694,7 @@
}
},
{
- "id": 14570,
+ "id": 15039,
"properties": {
"east": "none",
"north": "low",
@@ -117308,7 +121705,7 @@
}
},
{
- "id": 14571,
+ "id": 15040,
"properties": {
"east": "none",
"north": "low",
@@ -117319,7 +121716,7 @@
}
},
{
- "id": 14572,
+ "id": 15041,
"properties": {
"east": "none",
"north": "low",
@@ -117330,7 +121727,7 @@
}
},
{
- "id": 14573,
+ "id": 15042,
"properties": {
"east": "none",
"north": "low",
@@ -117341,7 +121738,7 @@
}
},
{
- "id": 14574,
+ "id": 15043,
"properties": {
"east": "none",
"north": "low",
@@ -117352,7 +121749,7 @@
}
},
{
- "id": 14575,
+ "id": 15044,
"properties": {
"east": "none",
"north": "low",
@@ -117363,7 +121760,7 @@
}
},
{
- "id": 14576,
+ "id": 15045,
"properties": {
"east": "none",
"north": "tall",
@@ -117374,7 +121771,7 @@
}
},
{
- "id": 14577,
+ "id": 15046,
"properties": {
"east": "none",
"north": "tall",
@@ -117385,7 +121782,7 @@
}
},
{
- "id": 14578,
+ "id": 15047,
"properties": {
"east": "none",
"north": "tall",
@@ -117396,7 +121793,7 @@
}
},
{
- "id": 14579,
+ "id": 15048,
"properties": {
"east": "none",
"north": "tall",
@@ -117407,7 +121804,7 @@
}
},
{
- "id": 14580,
+ "id": 15049,
"properties": {
"east": "none",
"north": "tall",
@@ -117418,7 +121815,7 @@
}
},
{
- "id": 14581,
+ "id": 15050,
"properties": {
"east": "none",
"north": "tall",
@@ -117429,7 +121826,7 @@
}
},
{
- "id": 14582,
+ "id": 15051,
"properties": {
"east": "none",
"north": "tall",
@@ -117440,7 +121837,7 @@
}
},
{
- "id": 14583,
+ "id": 15052,
"properties": {
"east": "none",
"north": "tall",
@@ -117451,7 +121848,7 @@
}
},
{
- "id": 14584,
+ "id": 15053,
"properties": {
"east": "none",
"north": "tall",
@@ -117462,7 +121859,7 @@
}
},
{
- "id": 14585,
+ "id": 15054,
"properties": {
"east": "none",
"north": "tall",
@@ -117473,7 +121870,7 @@
}
},
{
- "id": 14586,
+ "id": 15055,
"properties": {
"east": "none",
"north": "tall",
@@ -117484,7 +121881,7 @@
}
},
{
- "id": 14587,
+ "id": 15056,
"properties": {
"east": "none",
"north": "tall",
@@ -117495,7 +121892,7 @@
}
},
{
- "id": 14588,
+ "id": 15057,
"properties": {
"east": "none",
"north": "tall",
@@ -117506,7 +121903,7 @@
}
},
{
- "id": 14589,
+ "id": 15058,
"properties": {
"east": "none",
"north": "tall",
@@ -117517,7 +121914,7 @@
}
},
{
- "id": 14590,
+ "id": 15059,
"properties": {
"east": "none",
"north": "tall",
@@ -117528,7 +121925,7 @@
}
},
{
- "id": 14591,
+ "id": 15060,
"properties": {
"east": "none",
"north": "tall",
@@ -117539,7 +121936,7 @@
}
},
{
- "id": 14592,
+ "id": 15061,
"properties": {
"east": "none",
"north": "tall",
@@ -117550,7 +121947,7 @@
}
},
{
- "id": 14593,
+ "id": 15062,
"properties": {
"east": "none",
"north": "tall",
@@ -117561,7 +121958,7 @@
}
},
{
- "id": 14594,
+ "id": 15063,
"properties": {
"east": "none",
"north": "tall",
@@ -117572,7 +121969,7 @@
}
},
{
- "id": 14595,
+ "id": 15064,
"properties": {
"east": "none",
"north": "tall",
@@ -117583,7 +121980,7 @@
}
},
{
- "id": 14596,
+ "id": 15065,
"properties": {
"east": "none",
"north": "tall",
@@ -117594,7 +121991,7 @@
}
},
{
- "id": 14597,
+ "id": 15066,
"properties": {
"east": "none",
"north": "tall",
@@ -117605,7 +122002,7 @@
}
},
{
- "id": 14598,
+ "id": 15067,
"properties": {
"east": "none",
"north": "tall",
@@ -117616,7 +122013,7 @@
}
},
{
- "id": 14599,
+ "id": 15068,
"properties": {
"east": "none",
"north": "tall",
@@ -117627,7 +122024,7 @@
}
},
{
- "id": 14600,
+ "id": 15069,
"properties": {
"east": "none",
"north": "tall",
@@ -117638,7 +122035,7 @@
}
},
{
- "id": 14601,
+ "id": 15070,
"properties": {
"east": "none",
"north": "tall",
@@ -117649,7 +122046,7 @@
}
},
{
- "id": 14602,
+ "id": 15071,
"properties": {
"east": "none",
"north": "tall",
@@ -117660,7 +122057,7 @@
}
},
{
- "id": 14603,
+ "id": 15072,
"properties": {
"east": "none",
"north": "tall",
@@ -117671,7 +122068,7 @@
}
},
{
- "id": 14604,
+ "id": 15073,
"properties": {
"east": "none",
"north": "tall",
@@ -117682,7 +122079,7 @@
}
},
{
- "id": 14605,
+ "id": 15074,
"properties": {
"east": "none",
"north": "tall",
@@ -117693,7 +122090,7 @@
}
},
{
- "id": 14606,
+ "id": 15075,
"properties": {
"east": "none",
"north": "tall",
@@ -117704,7 +122101,7 @@
}
},
{
- "id": 14607,
+ "id": 15076,
"properties": {
"east": "none",
"north": "tall",
@@ -117715,7 +122112,7 @@
}
},
{
- "id": 14608,
+ "id": 15077,
"properties": {
"east": "none",
"north": "tall",
@@ -117726,7 +122123,7 @@
}
},
{
- "id": 14609,
+ "id": 15078,
"properties": {
"east": "none",
"north": "tall",
@@ -117737,7 +122134,7 @@
}
},
{
- "id": 14610,
+ "id": 15079,
"properties": {
"east": "none",
"north": "tall",
@@ -117748,7 +122145,7 @@
}
},
{
- "id": 14611,
+ "id": 15080,
"properties": {
"east": "none",
"north": "tall",
@@ -117759,7 +122156,7 @@
}
},
{
- "id": 14612,
+ "id": 15081,
"properties": {
"east": "low",
"north": "none",
@@ -117770,7 +122167,7 @@
}
},
{
- "id": 14613,
+ "id": 15082,
"properties": {
"east": "low",
"north": "none",
@@ -117781,7 +122178,7 @@
}
},
{
- "id": 14614,
+ "id": 15083,
"properties": {
"east": "low",
"north": "none",
@@ -117792,7 +122189,7 @@
}
},
{
- "id": 14615,
+ "id": 15084,
"properties": {
"east": "low",
"north": "none",
@@ -117803,7 +122200,7 @@
}
},
{
- "id": 14616,
+ "id": 15085,
"properties": {
"east": "low",
"north": "none",
@@ -117814,7 +122211,7 @@
}
},
{
- "id": 14617,
+ "id": 15086,
"properties": {
"east": "low",
"north": "none",
@@ -117825,7 +122222,7 @@
}
},
{
- "id": 14618,
+ "id": 15087,
"properties": {
"east": "low",
"north": "none",
@@ -117836,7 +122233,7 @@
}
},
{
- "id": 14619,
+ "id": 15088,
"properties": {
"east": "low",
"north": "none",
@@ -117847,7 +122244,7 @@
}
},
{
- "id": 14620,
+ "id": 15089,
"properties": {
"east": "low",
"north": "none",
@@ -117858,7 +122255,7 @@
}
},
{
- "id": 14621,
+ "id": 15090,
"properties": {
"east": "low",
"north": "none",
@@ -117869,7 +122266,7 @@
}
},
{
- "id": 14622,
+ "id": 15091,
"properties": {
"east": "low",
"north": "none",
@@ -117880,7 +122277,7 @@
}
},
{
- "id": 14623,
+ "id": 15092,
"properties": {
"east": "low",
"north": "none",
@@ -117891,7 +122288,7 @@
}
},
{
- "id": 14624,
+ "id": 15093,
"properties": {
"east": "low",
"north": "none",
@@ -117902,7 +122299,7 @@
}
},
{
- "id": 14625,
+ "id": 15094,
"properties": {
"east": "low",
"north": "none",
@@ -117913,7 +122310,7 @@
}
},
{
- "id": 14626,
+ "id": 15095,
"properties": {
"east": "low",
"north": "none",
@@ -117924,7 +122321,7 @@
}
},
{
- "id": 14627,
+ "id": 15096,
"properties": {
"east": "low",
"north": "none",
@@ -117935,7 +122332,7 @@
}
},
{
- "id": 14628,
+ "id": 15097,
"properties": {
"east": "low",
"north": "none",
@@ -117946,7 +122343,7 @@
}
},
{
- "id": 14629,
+ "id": 15098,
"properties": {
"east": "low",
"north": "none",
@@ -117957,7 +122354,7 @@
}
},
{
- "id": 14630,
+ "id": 15099,
"properties": {
"east": "low",
"north": "none",
@@ -117968,7 +122365,7 @@
}
},
{
- "id": 14631,
+ "id": 15100,
"properties": {
"east": "low",
"north": "none",
@@ -117979,7 +122376,7 @@
}
},
{
- "id": 14632,
+ "id": 15101,
"properties": {
"east": "low",
"north": "none",
@@ -117990,7 +122387,7 @@
}
},
{
- "id": 14633,
+ "id": 15102,
"properties": {
"east": "low",
"north": "none",
@@ -118001,7 +122398,7 @@
}
},
{
- "id": 14634,
+ "id": 15103,
"properties": {
"east": "low",
"north": "none",
@@ -118012,7 +122409,7 @@
}
},
{
- "id": 14635,
+ "id": 15104,
"properties": {
"east": "low",
"north": "none",
@@ -118023,7 +122420,7 @@
}
},
{
- "id": 14636,
+ "id": 15105,
"properties": {
"east": "low",
"north": "none",
@@ -118034,7 +122431,7 @@
}
},
{
- "id": 14637,
+ "id": 15106,
"properties": {
"east": "low",
"north": "none",
@@ -118045,7 +122442,7 @@
}
},
{
- "id": 14638,
+ "id": 15107,
"properties": {
"east": "low",
"north": "none",
@@ -118056,7 +122453,7 @@
}
},
{
- "id": 14639,
+ "id": 15108,
"properties": {
"east": "low",
"north": "none",
@@ -118067,7 +122464,7 @@
}
},
{
- "id": 14640,
+ "id": 15109,
"properties": {
"east": "low",
"north": "none",
@@ -118078,7 +122475,7 @@
}
},
{
- "id": 14641,
+ "id": 15110,
"properties": {
"east": "low",
"north": "none",
@@ -118089,7 +122486,7 @@
}
},
{
- "id": 14642,
+ "id": 15111,
"properties": {
"east": "low",
"north": "none",
@@ -118100,7 +122497,7 @@
}
},
{
- "id": 14643,
+ "id": 15112,
"properties": {
"east": "low",
"north": "none",
@@ -118111,7 +122508,7 @@
}
},
{
- "id": 14644,
+ "id": 15113,
"properties": {
"east": "low",
"north": "none",
@@ -118122,7 +122519,7 @@
}
},
{
- "id": 14645,
+ "id": 15114,
"properties": {
"east": "low",
"north": "none",
@@ -118133,7 +122530,7 @@
}
},
{
- "id": 14646,
+ "id": 15115,
"properties": {
"east": "low",
"north": "none",
@@ -118144,7 +122541,7 @@
}
},
{
- "id": 14647,
+ "id": 15116,
"properties": {
"east": "low",
"north": "none",
@@ -118155,7 +122552,7 @@
}
},
{
- "id": 14648,
+ "id": 15117,
"properties": {
"east": "low",
"north": "low",
@@ -118166,7 +122563,7 @@
}
},
{
- "id": 14649,
+ "id": 15118,
"properties": {
"east": "low",
"north": "low",
@@ -118177,7 +122574,7 @@
}
},
{
- "id": 14650,
+ "id": 15119,
"properties": {
"east": "low",
"north": "low",
@@ -118188,7 +122585,7 @@
}
},
{
- "id": 14651,
+ "id": 15120,
"properties": {
"east": "low",
"north": "low",
@@ -118199,7 +122596,7 @@
}
},
{
- "id": 14652,
+ "id": 15121,
"properties": {
"east": "low",
"north": "low",
@@ -118210,7 +122607,7 @@
}
},
{
- "id": 14653,
+ "id": 15122,
"properties": {
"east": "low",
"north": "low",
@@ -118221,7 +122618,7 @@
}
},
{
- "id": 14654,
+ "id": 15123,
"properties": {
"east": "low",
"north": "low",
@@ -118232,7 +122629,7 @@
}
},
{
- "id": 14655,
+ "id": 15124,
"properties": {
"east": "low",
"north": "low",
@@ -118243,7 +122640,7 @@
}
},
{
- "id": 14656,
+ "id": 15125,
"properties": {
"east": "low",
"north": "low",
@@ -118254,7 +122651,7 @@
}
},
{
- "id": 14657,
+ "id": 15126,
"properties": {
"east": "low",
"north": "low",
@@ -118265,7 +122662,7 @@
}
},
{
- "id": 14658,
+ "id": 15127,
"properties": {
"east": "low",
"north": "low",
@@ -118276,7 +122673,7 @@
}
},
{
- "id": 14659,
+ "id": 15128,
"properties": {
"east": "low",
"north": "low",
@@ -118287,7 +122684,7 @@
}
},
{
- "id": 14660,
+ "id": 15129,
"properties": {
"east": "low",
"north": "low",
@@ -118298,7 +122695,7 @@
}
},
{
- "id": 14661,
+ "id": 15130,
"properties": {
"east": "low",
"north": "low",
@@ -118309,7 +122706,7 @@
}
},
{
- "id": 14662,
+ "id": 15131,
"properties": {
"east": "low",
"north": "low",
@@ -118320,7 +122717,7 @@
}
},
{
- "id": 14663,
+ "id": 15132,
"properties": {
"east": "low",
"north": "low",
@@ -118331,7 +122728,7 @@
}
},
{
- "id": 14664,
+ "id": 15133,
"properties": {
"east": "low",
"north": "low",
@@ -118342,7 +122739,7 @@
}
},
{
- "id": 14665,
+ "id": 15134,
"properties": {
"east": "low",
"north": "low",
@@ -118353,7 +122750,7 @@
}
},
{
- "id": 14666,
+ "id": 15135,
"properties": {
"east": "low",
"north": "low",
@@ -118364,7 +122761,7 @@
}
},
{
- "id": 14667,
+ "id": 15136,
"properties": {
"east": "low",
"north": "low",
@@ -118375,7 +122772,7 @@
}
},
{
- "id": 14668,
+ "id": 15137,
"properties": {
"east": "low",
"north": "low",
@@ -118386,7 +122783,7 @@
}
},
{
- "id": 14669,
+ "id": 15138,
"properties": {
"east": "low",
"north": "low",
@@ -118397,7 +122794,7 @@
}
},
{
- "id": 14670,
+ "id": 15139,
"properties": {
"east": "low",
"north": "low",
@@ -118408,7 +122805,7 @@
}
},
{
- "id": 14671,
+ "id": 15140,
"properties": {
"east": "low",
"north": "low",
@@ -118419,7 +122816,7 @@
}
},
{
- "id": 14672,
+ "id": 15141,
"properties": {
"east": "low",
"north": "low",
@@ -118430,7 +122827,7 @@
}
},
{
- "id": 14673,
+ "id": 15142,
"properties": {
"east": "low",
"north": "low",
@@ -118441,7 +122838,7 @@
}
},
{
- "id": 14674,
+ "id": 15143,
"properties": {
"east": "low",
"north": "low",
@@ -118452,7 +122849,7 @@
}
},
{
- "id": 14675,
+ "id": 15144,
"properties": {
"east": "low",
"north": "low",
@@ -118463,7 +122860,7 @@
}
},
{
- "id": 14676,
+ "id": 15145,
"properties": {
"east": "low",
"north": "low",
@@ -118474,7 +122871,7 @@
}
},
{
- "id": 14677,
+ "id": 15146,
"properties": {
"east": "low",
"north": "low",
@@ -118485,7 +122882,7 @@
}
},
{
- "id": 14678,
+ "id": 15147,
"properties": {
"east": "low",
"north": "low",
@@ -118496,7 +122893,7 @@
}
},
{
- "id": 14679,
+ "id": 15148,
"properties": {
"east": "low",
"north": "low",
@@ -118507,7 +122904,7 @@
}
},
{
- "id": 14680,
+ "id": 15149,
"properties": {
"east": "low",
"north": "low",
@@ -118518,7 +122915,7 @@
}
},
{
- "id": 14681,
+ "id": 15150,
"properties": {
"east": "low",
"north": "low",
@@ -118529,7 +122926,7 @@
}
},
{
- "id": 14682,
+ "id": 15151,
"properties": {
"east": "low",
"north": "low",
@@ -118540,7 +122937,7 @@
}
},
{
- "id": 14683,
+ "id": 15152,
"properties": {
"east": "low",
"north": "low",
@@ -118551,7 +122948,7 @@
}
},
{
- "id": 14684,
+ "id": 15153,
"properties": {
"east": "low",
"north": "tall",
@@ -118562,7 +122959,7 @@
}
},
{
- "id": 14685,
+ "id": 15154,
"properties": {
"east": "low",
"north": "tall",
@@ -118573,7 +122970,7 @@
}
},
{
- "id": 14686,
+ "id": 15155,
"properties": {
"east": "low",
"north": "tall",
@@ -118584,7 +122981,7 @@
}
},
{
- "id": 14687,
+ "id": 15156,
"properties": {
"east": "low",
"north": "tall",
@@ -118595,7 +122992,7 @@
}
},
{
- "id": 14688,
+ "id": 15157,
"properties": {
"east": "low",
"north": "tall",
@@ -118606,7 +123003,7 @@
}
},
{
- "id": 14689,
+ "id": 15158,
"properties": {
"east": "low",
"north": "tall",
@@ -118617,7 +123014,7 @@
}
},
{
- "id": 14690,
+ "id": 15159,
"properties": {
"east": "low",
"north": "tall",
@@ -118628,7 +123025,7 @@
}
},
{
- "id": 14691,
+ "id": 15160,
"properties": {
"east": "low",
"north": "tall",
@@ -118639,7 +123036,7 @@
}
},
{
- "id": 14692,
+ "id": 15161,
"properties": {
"east": "low",
"north": "tall",
@@ -118650,7 +123047,7 @@
}
},
{
- "id": 14693,
+ "id": 15162,
"properties": {
"east": "low",
"north": "tall",
@@ -118661,7 +123058,7 @@
}
},
{
- "id": 14694,
+ "id": 15163,
"properties": {
"east": "low",
"north": "tall",
@@ -118672,7 +123069,7 @@
}
},
{
- "id": 14695,
+ "id": 15164,
"properties": {
"east": "low",
"north": "tall",
@@ -118683,7 +123080,7 @@
}
},
{
- "id": 14696,
+ "id": 15165,
"properties": {
"east": "low",
"north": "tall",
@@ -118694,7 +123091,7 @@
}
},
{
- "id": 14697,
+ "id": 15166,
"properties": {
"east": "low",
"north": "tall",
@@ -118705,7 +123102,7 @@
}
},
{
- "id": 14698,
+ "id": 15167,
"properties": {
"east": "low",
"north": "tall",
@@ -118716,7 +123113,7 @@
}
},
{
- "id": 14699,
+ "id": 15168,
"properties": {
"east": "low",
"north": "tall",
@@ -118727,7 +123124,7 @@
}
},
{
- "id": 14700,
+ "id": 15169,
"properties": {
"east": "low",
"north": "tall",
@@ -118738,7 +123135,7 @@
}
},
{
- "id": 14701,
+ "id": 15170,
"properties": {
"east": "low",
"north": "tall",
@@ -118749,7 +123146,7 @@
}
},
{
- "id": 14702,
+ "id": 15171,
"properties": {
"east": "low",
"north": "tall",
@@ -118760,7 +123157,7 @@
}
},
{
- "id": 14703,
+ "id": 15172,
"properties": {
"east": "low",
"north": "tall",
@@ -118771,7 +123168,7 @@
}
},
{
- "id": 14704,
+ "id": 15173,
"properties": {
"east": "low",
"north": "tall",
@@ -118782,7 +123179,7 @@
}
},
{
- "id": 14705,
+ "id": 15174,
"properties": {
"east": "low",
"north": "tall",
@@ -118793,7 +123190,7 @@
}
},
{
- "id": 14706,
+ "id": 15175,
"properties": {
"east": "low",
"north": "tall",
@@ -118804,7 +123201,7 @@
}
},
{
- "id": 14707,
+ "id": 15176,
"properties": {
"east": "low",
"north": "tall",
@@ -118815,7 +123212,7 @@
}
},
{
- "id": 14708,
+ "id": 15177,
"properties": {
"east": "low",
"north": "tall",
@@ -118826,7 +123223,7 @@
}
},
{
- "id": 14709,
+ "id": 15178,
"properties": {
"east": "low",
"north": "tall",
@@ -118837,7 +123234,7 @@
}
},
{
- "id": 14710,
+ "id": 15179,
"properties": {
"east": "low",
"north": "tall",
@@ -118848,7 +123245,7 @@
}
},
{
- "id": 14711,
+ "id": 15180,
"properties": {
"east": "low",
"north": "tall",
@@ -118859,7 +123256,7 @@
}
},
{
- "id": 14712,
+ "id": 15181,
"properties": {
"east": "low",
"north": "tall",
@@ -118870,7 +123267,7 @@
}
},
{
- "id": 14713,
+ "id": 15182,
"properties": {
"east": "low",
"north": "tall",
@@ -118881,7 +123278,7 @@
}
},
{
- "id": 14714,
+ "id": 15183,
"properties": {
"east": "low",
"north": "tall",
@@ -118892,7 +123289,7 @@
}
},
{
- "id": 14715,
+ "id": 15184,
"properties": {
"east": "low",
"north": "tall",
@@ -118903,7 +123300,7 @@
}
},
{
- "id": 14716,
+ "id": 15185,
"properties": {
"east": "low",
"north": "tall",
@@ -118914,7 +123311,7 @@
}
},
{
- "id": 14717,
+ "id": 15186,
"properties": {
"east": "low",
"north": "tall",
@@ -118925,7 +123322,7 @@
}
},
{
- "id": 14718,
+ "id": 15187,
"properties": {
"east": "low",
"north": "tall",
@@ -118936,7 +123333,7 @@
}
},
{
- "id": 14719,
+ "id": 15188,
"properties": {
"east": "low",
"north": "tall",
@@ -118947,7 +123344,7 @@
}
},
{
- "id": 14720,
+ "id": 15189,
"properties": {
"east": "tall",
"north": "none",
@@ -118958,7 +123355,7 @@
}
},
{
- "id": 14721,
+ "id": 15190,
"properties": {
"east": "tall",
"north": "none",
@@ -118969,7 +123366,7 @@
}
},
{
- "id": 14722,
+ "id": 15191,
"properties": {
"east": "tall",
"north": "none",
@@ -118980,7 +123377,7 @@
}
},
{
- "id": 14723,
+ "id": 15192,
"properties": {
"east": "tall",
"north": "none",
@@ -118991,7 +123388,7 @@
}
},
{
- "id": 14724,
+ "id": 15193,
"properties": {
"east": "tall",
"north": "none",
@@ -119002,7 +123399,7 @@
}
},
{
- "id": 14725,
+ "id": 15194,
"properties": {
"east": "tall",
"north": "none",
@@ -119013,7 +123410,7 @@
}
},
{
- "id": 14726,
+ "id": 15195,
"properties": {
"east": "tall",
"north": "none",
@@ -119024,7 +123421,7 @@
}
},
{
- "id": 14727,
+ "id": 15196,
"properties": {
"east": "tall",
"north": "none",
@@ -119035,7 +123432,7 @@
}
},
{
- "id": 14728,
+ "id": 15197,
"properties": {
"east": "tall",
"north": "none",
@@ -119046,7 +123443,7 @@
}
},
{
- "id": 14729,
+ "id": 15198,
"properties": {
"east": "tall",
"north": "none",
@@ -119057,7 +123454,7 @@
}
},
{
- "id": 14730,
+ "id": 15199,
"properties": {
"east": "tall",
"north": "none",
@@ -119068,7 +123465,7 @@
}
},
{
- "id": 14731,
+ "id": 15200,
"properties": {
"east": "tall",
"north": "none",
@@ -119079,7 +123476,7 @@
}
},
{
- "id": 14732,
+ "id": 15201,
"properties": {
"east": "tall",
"north": "none",
@@ -119090,7 +123487,7 @@
}
},
{
- "id": 14733,
+ "id": 15202,
"properties": {
"east": "tall",
"north": "none",
@@ -119101,7 +123498,7 @@
}
},
{
- "id": 14734,
+ "id": 15203,
"properties": {
"east": "tall",
"north": "none",
@@ -119112,7 +123509,7 @@
}
},
{
- "id": 14735,
+ "id": 15204,
"properties": {
"east": "tall",
"north": "none",
@@ -119123,7 +123520,7 @@
}
},
{
- "id": 14736,
+ "id": 15205,
"properties": {
"east": "tall",
"north": "none",
@@ -119134,7 +123531,7 @@
}
},
{
- "id": 14737,
+ "id": 15206,
"properties": {
"east": "tall",
"north": "none",
@@ -119145,7 +123542,7 @@
}
},
{
- "id": 14738,
+ "id": 15207,
"properties": {
"east": "tall",
"north": "none",
@@ -119156,7 +123553,7 @@
}
},
{
- "id": 14739,
+ "id": 15208,
"properties": {
"east": "tall",
"north": "none",
@@ -119167,7 +123564,7 @@
}
},
{
- "id": 14740,
+ "id": 15209,
"properties": {
"east": "tall",
"north": "none",
@@ -119178,7 +123575,7 @@
}
},
{
- "id": 14741,
+ "id": 15210,
"properties": {
"east": "tall",
"north": "none",
@@ -119189,7 +123586,7 @@
}
},
{
- "id": 14742,
+ "id": 15211,
"properties": {
"east": "tall",
"north": "none",
@@ -119200,7 +123597,7 @@
}
},
{
- "id": 14743,
+ "id": 15212,
"properties": {
"east": "tall",
"north": "none",
@@ -119211,7 +123608,7 @@
}
},
{
- "id": 14744,
+ "id": 15213,
"properties": {
"east": "tall",
"north": "none",
@@ -119222,7 +123619,7 @@
}
},
{
- "id": 14745,
+ "id": 15214,
"properties": {
"east": "tall",
"north": "none",
@@ -119233,7 +123630,7 @@
}
},
{
- "id": 14746,
+ "id": 15215,
"properties": {
"east": "tall",
"north": "none",
@@ -119244,7 +123641,7 @@
}
},
{
- "id": 14747,
+ "id": 15216,
"properties": {
"east": "tall",
"north": "none",
@@ -119255,7 +123652,7 @@
}
},
{
- "id": 14748,
+ "id": 15217,
"properties": {
"east": "tall",
"north": "none",
@@ -119266,7 +123663,7 @@
}
},
{
- "id": 14749,
+ "id": 15218,
"properties": {
"east": "tall",
"north": "none",
@@ -119277,7 +123674,7 @@
}
},
{
- "id": 14750,
+ "id": 15219,
"properties": {
"east": "tall",
"north": "none",
@@ -119288,7 +123685,7 @@
}
},
{
- "id": 14751,
+ "id": 15220,
"properties": {
"east": "tall",
"north": "none",
@@ -119299,7 +123696,7 @@
}
},
{
- "id": 14752,
+ "id": 15221,
"properties": {
"east": "tall",
"north": "none",
@@ -119310,7 +123707,7 @@
}
},
{
- "id": 14753,
+ "id": 15222,
"properties": {
"east": "tall",
"north": "none",
@@ -119321,7 +123718,7 @@
}
},
{
- "id": 14754,
+ "id": 15223,
"properties": {
"east": "tall",
"north": "none",
@@ -119332,7 +123729,7 @@
}
},
{
- "id": 14755,
+ "id": 15224,
"properties": {
"east": "tall",
"north": "none",
@@ -119343,7 +123740,7 @@
}
},
{
- "id": 14756,
+ "id": 15225,
"properties": {
"east": "tall",
"north": "low",
@@ -119354,7 +123751,7 @@
}
},
{
- "id": 14757,
+ "id": 15226,
"properties": {
"east": "tall",
"north": "low",
@@ -119365,7 +123762,7 @@
}
},
{
- "id": 14758,
+ "id": 15227,
"properties": {
"east": "tall",
"north": "low",
@@ -119376,7 +123773,7 @@
}
},
{
- "id": 14759,
+ "id": 15228,
"properties": {
"east": "tall",
"north": "low",
@@ -119387,7 +123784,7 @@
}
},
{
- "id": 14760,
+ "id": 15229,
"properties": {
"east": "tall",
"north": "low",
@@ -119398,7 +123795,7 @@
}
},
{
- "id": 14761,
+ "id": 15230,
"properties": {
"east": "tall",
"north": "low",
@@ -119409,7 +123806,7 @@
}
},
{
- "id": 14762,
+ "id": 15231,
"properties": {
"east": "tall",
"north": "low",
@@ -119420,7 +123817,7 @@
}
},
{
- "id": 14763,
+ "id": 15232,
"properties": {
"east": "tall",
"north": "low",
@@ -119431,7 +123828,7 @@
}
},
{
- "id": 14764,
+ "id": 15233,
"properties": {
"east": "tall",
"north": "low",
@@ -119442,7 +123839,7 @@
}
},
{
- "id": 14765,
+ "id": 15234,
"properties": {
"east": "tall",
"north": "low",
@@ -119453,7 +123850,7 @@
}
},
{
- "id": 14766,
+ "id": 15235,
"properties": {
"east": "tall",
"north": "low",
@@ -119464,7 +123861,7 @@
}
},
{
- "id": 14767,
+ "id": 15236,
"properties": {
"east": "tall",
"north": "low",
@@ -119475,7 +123872,7 @@
}
},
{
- "id": 14768,
+ "id": 15237,
"properties": {
"east": "tall",
"north": "low",
@@ -119486,7 +123883,7 @@
}
},
{
- "id": 14769,
+ "id": 15238,
"properties": {
"east": "tall",
"north": "low",
@@ -119497,7 +123894,7 @@
}
},
{
- "id": 14770,
+ "id": 15239,
"properties": {
"east": "tall",
"north": "low",
@@ -119508,7 +123905,7 @@
}
},
{
- "id": 14771,
+ "id": 15240,
"properties": {
"east": "tall",
"north": "low",
@@ -119519,7 +123916,7 @@
}
},
{
- "id": 14772,
+ "id": 15241,
"properties": {
"east": "tall",
"north": "low",
@@ -119530,7 +123927,7 @@
}
},
{
- "id": 14773,
+ "id": 15242,
"properties": {
"east": "tall",
"north": "low",
@@ -119541,7 +123938,7 @@
}
},
{
- "id": 14774,
+ "id": 15243,
"properties": {
"east": "tall",
"north": "low",
@@ -119552,7 +123949,7 @@
}
},
{
- "id": 14775,
+ "id": 15244,
"properties": {
"east": "tall",
"north": "low",
@@ -119563,7 +123960,7 @@
}
},
{
- "id": 14776,
+ "id": 15245,
"properties": {
"east": "tall",
"north": "low",
@@ -119574,7 +123971,7 @@
}
},
{
- "id": 14777,
+ "id": 15246,
"properties": {
"east": "tall",
"north": "low",
@@ -119585,7 +123982,7 @@
}
},
{
- "id": 14778,
+ "id": 15247,
"properties": {
"east": "tall",
"north": "low",
@@ -119596,7 +123993,7 @@
}
},
{
- "id": 14779,
+ "id": 15248,
"properties": {
"east": "tall",
"north": "low",
@@ -119607,7 +124004,7 @@
}
},
{
- "id": 14780,
+ "id": 15249,
"properties": {
"east": "tall",
"north": "low",
@@ -119618,7 +124015,7 @@
}
},
{
- "id": 14781,
+ "id": 15250,
"properties": {
"east": "tall",
"north": "low",
@@ -119629,7 +124026,7 @@
}
},
{
- "id": 14782,
+ "id": 15251,
"properties": {
"east": "tall",
"north": "low",
@@ -119640,7 +124037,7 @@
}
},
{
- "id": 14783,
+ "id": 15252,
"properties": {
"east": "tall",
"north": "low",
@@ -119651,7 +124048,7 @@
}
},
{
- "id": 14784,
+ "id": 15253,
"properties": {
"east": "tall",
"north": "low",
@@ -119662,7 +124059,7 @@
}
},
{
- "id": 14785,
+ "id": 15254,
"properties": {
"east": "tall",
"north": "low",
@@ -119673,7 +124070,7 @@
}
},
{
- "id": 14786,
+ "id": 15255,
"properties": {
"east": "tall",
"north": "low",
@@ -119684,7 +124081,7 @@
}
},
{
- "id": 14787,
+ "id": 15256,
"properties": {
"east": "tall",
"north": "low",
@@ -119695,7 +124092,7 @@
}
},
{
- "id": 14788,
+ "id": 15257,
"properties": {
"east": "tall",
"north": "low",
@@ -119706,7 +124103,7 @@
}
},
{
- "id": 14789,
+ "id": 15258,
"properties": {
"east": "tall",
"north": "low",
@@ -119717,7 +124114,7 @@
}
},
{
- "id": 14790,
+ "id": 15259,
"properties": {
"east": "tall",
"north": "low",
@@ -119728,7 +124125,7 @@
}
},
{
- "id": 14791,
+ "id": 15260,
"properties": {
"east": "tall",
"north": "low",
@@ -119739,7 +124136,7 @@
}
},
{
- "id": 14792,
+ "id": 15261,
"properties": {
"east": "tall",
"north": "tall",
@@ -119750,7 +124147,7 @@
}
},
{
- "id": 14793,
+ "id": 15262,
"properties": {
"east": "tall",
"north": "tall",
@@ -119761,7 +124158,7 @@
}
},
{
- "id": 14794,
+ "id": 15263,
"properties": {
"east": "tall",
"north": "tall",
@@ -119772,7 +124169,7 @@
}
},
{
- "id": 14795,
+ "id": 15264,
"properties": {
"east": "tall",
"north": "tall",
@@ -119783,7 +124180,7 @@
}
},
{
- "id": 14796,
+ "id": 15265,
"properties": {
"east": "tall",
"north": "tall",
@@ -119794,7 +124191,7 @@
}
},
{
- "id": 14797,
+ "id": 15266,
"properties": {
"east": "tall",
"north": "tall",
@@ -119805,7 +124202,7 @@
}
},
{
- "id": 14798,
+ "id": 15267,
"properties": {
"east": "tall",
"north": "tall",
@@ -119816,7 +124213,7 @@
}
},
{
- "id": 14799,
+ "id": 15268,
"properties": {
"east": "tall",
"north": "tall",
@@ -119827,7 +124224,7 @@
}
},
{
- "id": 14800,
+ "id": 15269,
"properties": {
"east": "tall",
"north": "tall",
@@ -119838,7 +124235,7 @@
}
},
{
- "id": 14801,
+ "id": 15270,
"properties": {
"east": "tall",
"north": "tall",
@@ -119849,7 +124246,7 @@
}
},
{
- "id": 14802,
+ "id": 15271,
"properties": {
"east": "tall",
"north": "tall",
@@ -119860,7 +124257,7 @@
}
},
{
- "id": 14803,
+ "id": 15272,
"properties": {
"east": "tall",
"north": "tall",
@@ -119871,7 +124268,7 @@
}
},
{
- "id": 14804,
+ "id": 15273,
"properties": {
"east": "tall",
"north": "tall",
@@ -119882,7 +124279,7 @@
}
},
{
- "id": 14805,
+ "id": 15274,
"properties": {
"east": "tall",
"north": "tall",
@@ -119893,7 +124290,7 @@
}
},
{
- "id": 14806,
+ "id": 15275,
"properties": {
"east": "tall",
"north": "tall",
@@ -119904,7 +124301,7 @@
}
},
{
- "id": 14807,
+ "id": 15276,
"properties": {
"east": "tall",
"north": "tall",
@@ -119915,7 +124312,7 @@
}
},
{
- "id": 14808,
+ "id": 15277,
"properties": {
"east": "tall",
"north": "tall",
@@ -119926,7 +124323,7 @@
}
},
{
- "id": 14809,
+ "id": 15278,
"properties": {
"east": "tall",
"north": "tall",
@@ -119937,7 +124334,7 @@
}
},
{
- "id": 14810,
+ "id": 15279,
"properties": {
"east": "tall",
"north": "tall",
@@ -119948,7 +124345,7 @@
}
},
{
- "id": 14811,
+ "id": 15280,
"properties": {
"east": "tall",
"north": "tall",
@@ -119959,7 +124356,7 @@
}
},
{
- "id": 14812,
+ "id": 15281,
"properties": {
"east": "tall",
"north": "tall",
@@ -119970,7 +124367,7 @@
}
},
{
- "id": 14813,
+ "id": 15282,
"properties": {
"east": "tall",
"north": "tall",
@@ -119981,7 +124378,7 @@
}
},
{
- "id": 14814,
+ "id": 15283,
"properties": {
"east": "tall",
"north": "tall",
@@ -119992,7 +124389,7 @@
}
},
{
- "id": 14815,
+ "id": 15284,
"properties": {
"east": "tall",
"north": "tall",
@@ -120003,7 +124400,7 @@
}
},
{
- "id": 14816,
+ "id": 15285,
"properties": {
"east": "tall",
"north": "tall",
@@ -120014,7 +124411,7 @@
}
},
{
- "id": 14817,
+ "id": 15286,
"properties": {
"east": "tall",
"north": "tall",
@@ -120025,7 +124422,7 @@
}
},
{
- "id": 14818,
+ "id": 15287,
"properties": {
"east": "tall",
"north": "tall",
@@ -120036,7 +124433,7 @@
}
},
{
- "id": 14819,
+ "id": 15288,
"properties": {
"east": "tall",
"north": "tall",
@@ -120047,7 +124444,7 @@
}
},
{
- "id": 14820,
+ "id": 15289,
"properties": {
"east": "tall",
"north": "tall",
@@ -120058,7 +124455,7 @@
}
},
{
- "id": 14821,
+ "id": 15290,
"properties": {
"east": "tall",
"north": "tall",
@@ -120069,7 +124466,7 @@
}
},
{
- "id": 14822,
+ "id": 15291,
"properties": {
"east": "tall",
"north": "tall",
@@ -120080,7 +124477,7 @@
}
},
{
- "id": 14823,
+ "id": 15292,
"properties": {
"east": "tall",
"north": "tall",
@@ -120091,7 +124488,7 @@
}
},
{
- "id": 14824,
+ "id": 15293,
"properties": {
"east": "tall",
"north": "tall",
@@ -120102,7 +124499,7 @@
}
},
{
- "id": 14825,
+ "id": 15294,
"properties": {
"east": "tall",
"north": "tall",
@@ -120113,7 +124510,7 @@
}
},
{
- "id": 14826,
+ "id": 15295,
"properties": {
"east": "tall",
"north": "tall",
@@ -120124,7 +124521,7 @@
}
},
{
- "id": 14827,
+ "id": 15296,
"properties": {
"east": "tall",
"north": "tall",
@@ -120140,7 +124537,7 @@
"states": [
{
"default": true,
- "id": 6309
+ "id": 6535
}
]
},
@@ -120162,84 +124559,84 @@
"states": [
{
"default": true,
- "id": 2012,
+ "id": 2059,
"properties": {
"type": "normal",
"facing": "north"
}
},
{
- "id": 2013,
+ "id": 2060,
"properties": {
"type": "sticky",
"facing": "north"
}
},
{
- "id": 2014,
+ "id": 2061,
"properties": {
"type": "normal",
"facing": "east"
}
},
{
- "id": 2015,
+ "id": 2062,
"properties": {
"type": "sticky",
"facing": "east"
}
},
{
- "id": 2016,
+ "id": 2063,
"properties": {
"type": "normal",
"facing": "south"
}
},
{
- "id": 2017,
+ "id": 2064,
"properties": {
"type": "sticky",
"facing": "south"
}
},
{
- "id": 2018,
+ "id": 2065,
"properties": {
"type": "normal",
"facing": "west"
}
},
{
- "id": 2019,
+ "id": 2066,
"properties": {
"type": "sticky",
"facing": "west"
}
},
{
- "id": 2020,
+ "id": 2067,
"properties": {
"type": "normal",
"facing": "up"
}
},
{
- "id": 2021,
+ "id": 2068,
"properties": {
"type": "sticky",
"facing": "up"
}
},
{
- "id": 2022,
+ "id": 2069,
"properties": {
"type": "normal",
"facing": "down"
}
},
{
- "id": 2023,
+ "id": 2070,
"properties": {
"type": "sticky",
"facing": "down"
@@ -120251,7 +124648,7 @@
"states": [
{
"default": true,
- "id": 21561
+ "id": 22046
}
]
},
@@ -120269,21 +124666,21 @@
},
"states": [
{
- "id": 10787,
+ "id": 11125,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 10788,
+ "id": 11126,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 10789,
+ "id": 11127,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -120291,21 +124688,21 @@
},
{
"default": true,
- "id": 10790,
+ "id": 11128,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 10791,
+ "id": 11129,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 10792,
+ "id": 11130,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -120339,7 +124736,7 @@
},
"states": [
{
- "id": 6959,
+ "id": 7185,
"properties": {
"facing": "north",
"half": "top",
@@ -120348,7 +124745,7 @@
}
},
{
- "id": 6960,
+ "id": 7186,
"properties": {
"facing": "north",
"half": "top",
@@ -120357,7 +124754,7 @@
}
},
{
- "id": 6961,
+ "id": 7187,
"properties": {
"facing": "north",
"half": "top",
@@ -120366,7 +124763,7 @@
}
},
{
- "id": 6962,
+ "id": 7188,
"properties": {
"facing": "north",
"half": "top",
@@ -120375,7 +124772,7 @@
}
},
{
- "id": 6963,
+ "id": 7189,
"properties": {
"facing": "north",
"half": "top",
@@ -120384,7 +124781,7 @@
}
},
{
- "id": 6964,
+ "id": 7190,
"properties": {
"facing": "north",
"half": "top",
@@ -120393,7 +124790,7 @@
}
},
{
- "id": 6965,
+ "id": 7191,
"properties": {
"facing": "north",
"half": "top",
@@ -120402,7 +124799,7 @@
}
},
{
- "id": 6966,
+ "id": 7192,
"properties": {
"facing": "north",
"half": "top",
@@ -120411,7 +124808,7 @@
}
},
{
- "id": 6967,
+ "id": 7193,
"properties": {
"facing": "north",
"half": "top",
@@ -120420,7 +124817,7 @@
}
},
{
- "id": 6968,
+ "id": 7194,
"properties": {
"facing": "north",
"half": "top",
@@ -120429,7 +124826,7 @@
}
},
{
- "id": 6969,
+ "id": 7195,
"properties": {
"facing": "north",
"half": "bottom",
@@ -120439,7 +124836,7 @@
},
{
"default": true,
- "id": 6970,
+ "id": 7196,
"properties": {
"facing": "north",
"half": "bottom",
@@ -120448,7 +124845,7 @@
}
},
{
- "id": 6971,
+ "id": 7197,
"properties": {
"facing": "north",
"half": "bottom",
@@ -120457,7 +124854,7 @@
}
},
{
- "id": 6972,
+ "id": 7198,
"properties": {
"facing": "north",
"half": "bottom",
@@ -120466,7 +124863,7 @@
}
},
{
- "id": 6973,
+ "id": 7199,
"properties": {
"facing": "north",
"half": "bottom",
@@ -120475,7 +124872,7 @@
}
},
{
- "id": 6974,
+ "id": 7200,
"properties": {
"facing": "north",
"half": "bottom",
@@ -120484,7 +124881,7 @@
}
},
{
- "id": 6975,
+ "id": 7201,
"properties": {
"facing": "north",
"half": "bottom",
@@ -120493,7 +124890,7 @@
}
},
{
- "id": 6976,
+ "id": 7202,
"properties": {
"facing": "north",
"half": "bottom",
@@ -120502,7 +124899,7 @@
}
},
{
- "id": 6977,
+ "id": 7203,
"properties": {
"facing": "north",
"half": "bottom",
@@ -120511,7 +124908,7 @@
}
},
{
- "id": 6978,
+ "id": 7204,
"properties": {
"facing": "north",
"half": "bottom",
@@ -120520,7 +124917,7 @@
}
},
{
- "id": 6979,
+ "id": 7205,
"properties": {
"facing": "south",
"half": "top",
@@ -120529,7 +124926,7 @@
}
},
{
- "id": 6980,
+ "id": 7206,
"properties": {
"facing": "south",
"half": "top",
@@ -120538,7 +124935,7 @@
}
},
{
- "id": 6981,
+ "id": 7207,
"properties": {
"facing": "south",
"half": "top",
@@ -120547,7 +124944,7 @@
}
},
{
- "id": 6982,
+ "id": 7208,
"properties": {
"facing": "south",
"half": "top",
@@ -120556,7 +124953,7 @@
}
},
{
- "id": 6983,
+ "id": 7209,
"properties": {
"facing": "south",
"half": "top",
@@ -120565,7 +124962,7 @@
}
},
{
- "id": 6984,
+ "id": 7210,
"properties": {
"facing": "south",
"half": "top",
@@ -120574,7 +124971,7 @@
}
},
{
- "id": 6985,
+ "id": 7211,
"properties": {
"facing": "south",
"half": "top",
@@ -120583,7 +124980,7 @@
}
},
{
- "id": 6986,
+ "id": 7212,
"properties": {
"facing": "south",
"half": "top",
@@ -120592,7 +124989,7 @@
}
},
{
- "id": 6987,
+ "id": 7213,
"properties": {
"facing": "south",
"half": "top",
@@ -120601,7 +124998,7 @@
}
},
{
- "id": 6988,
+ "id": 7214,
"properties": {
"facing": "south",
"half": "top",
@@ -120610,7 +125007,7 @@
}
},
{
- "id": 6989,
+ "id": 7215,
"properties": {
"facing": "south",
"half": "bottom",
@@ -120619,7 +125016,7 @@
}
},
{
- "id": 6990,
+ "id": 7216,
"properties": {
"facing": "south",
"half": "bottom",
@@ -120628,7 +125025,7 @@
}
},
{
- "id": 6991,
+ "id": 7217,
"properties": {
"facing": "south",
"half": "bottom",
@@ -120637,7 +125034,7 @@
}
},
{
- "id": 6992,
+ "id": 7218,
"properties": {
"facing": "south",
"half": "bottom",
@@ -120646,7 +125043,7 @@
}
},
{
- "id": 6993,
+ "id": 7219,
"properties": {
"facing": "south",
"half": "bottom",
@@ -120655,7 +125052,7 @@
}
},
{
- "id": 6994,
+ "id": 7220,
"properties": {
"facing": "south",
"half": "bottom",
@@ -120664,7 +125061,7 @@
}
},
{
- "id": 6995,
+ "id": 7221,
"properties": {
"facing": "south",
"half": "bottom",
@@ -120673,7 +125070,7 @@
}
},
{
- "id": 6996,
+ "id": 7222,
"properties": {
"facing": "south",
"half": "bottom",
@@ -120682,7 +125079,7 @@
}
},
{
- "id": 6997,
+ "id": 7223,
"properties": {
"facing": "south",
"half": "bottom",
@@ -120691,7 +125088,7 @@
}
},
{
- "id": 6998,
+ "id": 7224,
"properties": {
"facing": "south",
"half": "bottom",
@@ -120700,7 +125097,7 @@
}
},
{
- "id": 6999,
+ "id": 7225,
"properties": {
"facing": "west",
"half": "top",
@@ -120709,7 +125106,7 @@
}
},
{
- "id": 7000,
+ "id": 7226,
"properties": {
"facing": "west",
"half": "top",
@@ -120718,7 +125115,7 @@
}
},
{
- "id": 7001,
+ "id": 7227,
"properties": {
"facing": "west",
"half": "top",
@@ -120727,7 +125124,7 @@
}
},
{
- "id": 7002,
+ "id": 7228,
"properties": {
"facing": "west",
"half": "top",
@@ -120736,7 +125133,7 @@
}
},
{
- "id": 7003,
+ "id": 7229,
"properties": {
"facing": "west",
"half": "top",
@@ -120745,7 +125142,7 @@
}
},
{
- "id": 7004,
+ "id": 7230,
"properties": {
"facing": "west",
"half": "top",
@@ -120754,7 +125151,7 @@
}
},
{
- "id": 7005,
+ "id": 7231,
"properties": {
"facing": "west",
"half": "top",
@@ -120763,7 +125160,7 @@
}
},
{
- "id": 7006,
+ "id": 7232,
"properties": {
"facing": "west",
"half": "top",
@@ -120772,7 +125169,7 @@
}
},
{
- "id": 7007,
+ "id": 7233,
"properties": {
"facing": "west",
"half": "top",
@@ -120781,7 +125178,7 @@
}
},
{
- "id": 7008,
+ "id": 7234,
"properties": {
"facing": "west",
"half": "top",
@@ -120790,7 +125187,7 @@
}
},
{
- "id": 7009,
+ "id": 7235,
"properties": {
"facing": "west",
"half": "bottom",
@@ -120799,7 +125196,7 @@
}
},
{
- "id": 7010,
+ "id": 7236,
"properties": {
"facing": "west",
"half": "bottom",
@@ -120808,7 +125205,7 @@
}
},
{
- "id": 7011,
+ "id": 7237,
"properties": {
"facing": "west",
"half": "bottom",
@@ -120817,7 +125214,7 @@
}
},
{
- "id": 7012,
+ "id": 7238,
"properties": {
"facing": "west",
"half": "bottom",
@@ -120826,7 +125223,7 @@
}
},
{
- "id": 7013,
+ "id": 7239,
"properties": {
"facing": "west",
"half": "bottom",
@@ -120835,7 +125232,7 @@
}
},
{
- "id": 7014,
+ "id": 7240,
"properties": {
"facing": "west",
"half": "bottom",
@@ -120844,7 +125241,7 @@
}
},
{
- "id": 7015,
+ "id": 7241,
"properties": {
"facing": "west",
"half": "bottom",
@@ -120853,7 +125250,7 @@
}
},
{
- "id": 7016,
+ "id": 7242,
"properties": {
"facing": "west",
"half": "bottom",
@@ -120862,7 +125259,7 @@
}
},
{
- "id": 7017,
+ "id": 7243,
"properties": {
"facing": "west",
"half": "bottom",
@@ -120871,7 +125268,7 @@
}
},
{
- "id": 7018,
+ "id": 7244,
"properties": {
"facing": "west",
"half": "bottom",
@@ -120880,7 +125277,7 @@
}
},
{
- "id": 7019,
+ "id": 7245,
"properties": {
"facing": "east",
"half": "top",
@@ -120889,7 +125286,7 @@
}
},
{
- "id": 7020,
+ "id": 7246,
"properties": {
"facing": "east",
"half": "top",
@@ -120898,7 +125295,7 @@
}
},
{
- "id": 7021,
+ "id": 7247,
"properties": {
"facing": "east",
"half": "top",
@@ -120907,7 +125304,7 @@
}
},
{
- "id": 7022,
+ "id": 7248,
"properties": {
"facing": "east",
"half": "top",
@@ -120916,7 +125313,7 @@
}
},
{
- "id": 7023,
+ "id": 7249,
"properties": {
"facing": "east",
"half": "top",
@@ -120925,7 +125322,7 @@
}
},
{
- "id": 7024,
+ "id": 7250,
"properties": {
"facing": "east",
"half": "top",
@@ -120934,7 +125331,7 @@
}
},
{
- "id": 7025,
+ "id": 7251,
"properties": {
"facing": "east",
"half": "top",
@@ -120943,7 +125340,7 @@
}
},
{
- "id": 7026,
+ "id": 7252,
"properties": {
"facing": "east",
"half": "top",
@@ -120952,7 +125349,7 @@
}
},
{
- "id": 7027,
+ "id": 7253,
"properties": {
"facing": "east",
"half": "top",
@@ -120961,7 +125358,7 @@
}
},
{
- "id": 7028,
+ "id": 7254,
"properties": {
"facing": "east",
"half": "top",
@@ -120970,7 +125367,7 @@
}
},
{
- "id": 7029,
+ "id": 7255,
"properties": {
"facing": "east",
"half": "bottom",
@@ -120979,7 +125376,7 @@
}
},
{
- "id": 7030,
+ "id": 7256,
"properties": {
"facing": "east",
"half": "bottom",
@@ -120988,7 +125385,7 @@
}
},
{
- "id": 7031,
+ "id": 7257,
"properties": {
"facing": "east",
"half": "bottom",
@@ -120997,7 +125394,7 @@
}
},
{
- "id": 7032,
+ "id": 7258,
"properties": {
"facing": "east",
"half": "bottom",
@@ -121006,7 +125403,7 @@
}
},
{
- "id": 7033,
+ "id": 7259,
"properties": {
"facing": "east",
"half": "bottom",
@@ -121015,7 +125412,7 @@
}
},
{
- "id": 7034,
+ "id": 7260,
"properties": {
"facing": "east",
"half": "bottom",
@@ -121024,7 +125421,7 @@
}
},
{
- "id": 7035,
+ "id": 7261,
"properties": {
"facing": "east",
"half": "bottom",
@@ -121033,7 +125430,7 @@
}
},
{
- "id": 7036,
+ "id": 7262,
"properties": {
"facing": "east",
"half": "bottom",
@@ -121042,7 +125439,7 @@
}
},
{
- "id": 7037,
+ "id": 7263,
"properties": {
"facing": "east",
"half": "bottom",
@@ -121051,7 +125448,7 @@
}
},
{
- "id": 7038,
+ "id": 7264,
"properties": {
"facing": "east",
"half": "bottom",
@@ -121094,7 +125491,7 @@
},
"states": [
{
- "id": 15476,
+ "id": 15945,
"properties": {
"east": "none",
"north": "none",
@@ -121105,7 +125502,7 @@
}
},
{
- "id": 15477,
+ "id": 15946,
"properties": {
"east": "none",
"north": "none",
@@ -121116,7 +125513,7 @@
}
},
{
- "id": 15478,
+ "id": 15947,
"properties": {
"east": "none",
"north": "none",
@@ -121128,7 +125525,7 @@
},
{
"default": true,
- "id": 15479,
+ "id": 15948,
"properties": {
"east": "none",
"north": "none",
@@ -121139,7 +125536,7 @@
}
},
{
- "id": 15480,
+ "id": 15949,
"properties": {
"east": "none",
"north": "none",
@@ -121150,7 +125547,7 @@
}
},
{
- "id": 15481,
+ "id": 15950,
"properties": {
"east": "none",
"north": "none",
@@ -121161,7 +125558,7 @@
}
},
{
- "id": 15482,
+ "id": 15951,
"properties": {
"east": "none",
"north": "none",
@@ -121172,7 +125569,7 @@
}
},
{
- "id": 15483,
+ "id": 15952,
"properties": {
"east": "none",
"north": "none",
@@ -121183,7 +125580,7 @@
}
},
{
- "id": 15484,
+ "id": 15953,
"properties": {
"east": "none",
"north": "none",
@@ -121194,7 +125591,7 @@
}
},
{
- "id": 15485,
+ "id": 15954,
"properties": {
"east": "none",
"north": "none",
@@ -121205,7 +125602,7 @@
}
},
{
- "id": 15486,
+ "id": 15955,
"properties": {
"east": "none",
"north": "none",
@@ -121216,7 +125613,7 @@
}
},
{
- "id": 15487,
+ "id": 15956,
"properties": {
"east": "none",
"north": "none",
@@ -121227,7 +125624,7 @@
}
},
{
- "id": 15488,
+ "id": 15957,
"properties": {
"east": "none",
"north": "none",
@@ -121238,7 +125635,7 @@
}
},
{
- "id": 15489,
+ "id": 15958,
"properties": {
"east": "none",
"north": "none",
@@ -121249,7 +125646,7 @@
}
},
{
- "id": 15490,
+ "id": 15959,
"properties": {
"east": "none",
"north": "none",
@@ -121260,7 +125657,7 @@
}
},
{
- "id": 15491,
+ "id": 15960,
"properties": {
"east": "none",
"north": "none",
@@ -121271,7 +125668,7 @@
}
},
{
- "id": 15492,
+ "id": 15961,
"properties": {
"east": "none",
"north": "none",
@@ -121282,7 +125679,7 @@
}
},
{
- "id": 15493,
+ "id": 15962,
"properties": {
"east": "none",
"north": "none",
@@ -121293,7 +125690,7 @@
}
},
{
- "id": 15494,
+ "id": 15963,
"properties": {
"east": "none",
"north": "none",
@@ -121304,7 +125701,7 @@
}
},
{
- "id": 15495,
+ "id": 15964,
"properties": {
"east": "none",
"north": "none",
@@ -121315,7 +125712,7 @@
}
},
{
- "id": 15496,
+ "id": 15965,
"properties": {
"east": "none",
"north": "none",
@@ -121326,7 +125723,7 @@
}
},
{
- "id": 15497,
+ "id": 15966,
"properties": {
"east": "none",
"north": "none",
@@ -121337,7 +125734,7 @@
}
},
{
- "id": 15498,
+ "id": 15967,
"properties": {
"east": "none",
"north": "none",
@@ -121348,7 +125745,7 @@
}
},
{
- "id": 15499,
+ "id": 15968,
"properties": {
"east": "none",
"north": "none",
@@ -121359,7 +125756,7 @@
}
},
{
- "id": 15500,
+ "id": 15969,
"properties": {
"east": "none",
"north": "none",
@@ -121370,7 +125767,7 @@
}
},
{
- "id": 15501,
+ "id": 15970,
"properties": {
"east": "none",
"north": "none",
@@ -121381,7 +125778,7 @@
}
},
{
- "id": 15502,
+ "id": 15971,
"properties": {
"east": "none",
"north": "none",
@@ -121392,7 +125789,7 @@
}
},
{
- "id": 15503,
+ "id": 15972,
"properties": {
"east": "none",
"north": "none",
@@ -121403,7 +125800,7 @@
}
},
{
- "id": 15504,
+ "id": 15973,
"properties": {
"east": "none",
"north": "none",
@@ -121414,7 +125811,7 @@
}
},
{
- "id": 15505,
+ "id": 15974,
"properties": {
"east": "none",
"north": "none",
@@ -121425,7 +125822,7 @@
}
},
{
- "id": 15506,
+ "id": 15975,
"properties": {
"east": "none",
"north": "none",
@@ -121436,7 +125833,7 @@
}
},
{
- "id": 15507,
+ "id": 15976,
"properties": {
"east": "none",
"north": "none",
@@ -121447,7 +125844,7 @@
}
},
{
- "id": 15508,
+ "id": 15977,
"properties": {
"east": "none",
"north": "none",
@@ -121458,7 +125855,7 @@
}
},
{
- "id": 15509,
+ "id": 15978,
"properties": {
"east": "none",
"north": "none",
@@ -121469,7 +125866,7 @@
}
},
{
- "id": 15510,
+ "id": 15979,
"properties": {
"east": "none",
"north": "none",
@@ -121480,7 +125877,7 @@
}
},
{
- "id": 15511,
+ "id": 15980,
"properties": {
"east": "none",
"north": "none",
@@ -121491,7 +125888,7 @@
}
},
{
- "id": 15512,
+ "id": 15981,
"properties": {
"east": "none",
"north": "low",
@@ -121502,7 +125899,7 @@
}
},
{
- "id": 15513,
+ "id": 15982,
"properties": {
"east": "none",
"north": "low",
@@ -121513,7 +125910,7 @@
}
},
{
- "id": 15514,
+ "id": 15983,
"properties": {
"east": "none",
"north": "low",
@@ -121524,7 +125921,7 @@
}
},
{
- "id": 15515,
+ "id": 15984,
"properties": {
"east": "none",
"north": "low",
@@ -121535,7 +125932,7 @@
}
},
{
- "id": 15516,
+ "id": 15985,
"properties": {
"east": "none",
"north": "low",
@@ -121546,7 +125943,7 @@
}
},
{
- "id": 15517,
+ "id": 15986,
"properties": {
"east": "none",
"north": "low",
@@ -121557,7 +125954,7 @@
}
},
{
- "id": 15518,
+ "id": 15987,
"properties": {
"east": "none",
"north": "low",
@@ -121568,7 +125965,7 @@
}
},
{
- "id": 15519,
+ "id": 15988,
"properties": {
"east": "none",
"north": "low",
@@ -121579,7 +125976,7 @@
}
},
{
- "id": 15520,
+ "id": 15989,
"properties": {
"east": "none",
"north": "low",
@@ -121590,7 +125987,7 @@
}
},
{
- "id": 15521,
+ "id": 15990,
"properties": {
"east": "none",
"north": "low",
@@ -121601,7 +125998,7 @@
}
},
{
- "id": 15522,
+ "id": 15991,
"properties": {
"east": "none",
"north": "low",
@@ -121612,7 +126009,7 @@
}
},
{
- "id": 15523,
+ "id": 15992,
"properties": {
"east": "none",
"north": "low",
@@ -121623,7 +126020,7 @@
}
},
{
- "id": 15524,
+ "id": 15993,
"properties": {
"east": "none",
"north": "low",
@@ -121634,7 +126031,7 @@
}
},
{
- "id": 15525,
+ "id": 15994,
"properties": {
"east": "none",
"north": "low",
@@ -121645,7 +126042,7 @@
}
},
{
- "id": 15526,
+ "id": 15995,
"properties": {
"east": "none",
"north": "low",
@@ -121656,7 +126053,7 @@
}
},
{
- "id": 15527,
+ "id": 15996,
"properties": {
"east": "none",
"north": "low",
@@ -121667,7 +126064,7 @@
}
},
{
- "id": 15528,
+ "id": 15997,
"properties": {
"east": "none",
"north": "low",
@@ -121678,7 +126075,7 @@
}
},
{
- "id": 15529,
+ "id": 15998,
"properties": {
"east": "none",
"north": "low",
@@ -121689,7 +126086,7 @@
}
},
{
- "id": 15530,
+ "id": 15999,
"properties": {
"east": "none",
"north": "low",
@@ -121700,7 +126097,7 @@
}
},
{
- "id": 15531,
+ "id": 16000,
"properties": {
"east": "none",
"north": "low",
@@ -121711,7 +126108,7 @@
}
},
{
- "id": 15532,
+ "id": 16001,
"properties": {
"east": "none",
"north": "low",
@@ -121722,7 +126119,7 @@
}
},
{
- "id": 15533,
+ "id": 16002,
"properties": {
"east": "none",
"north": "low",
@@ -121733,7 +126130,7 @@
}
},
{
- "id": 15534,
+ "id": 16003,
"properties": {
"east": "none",
"north": "low",
@@ -121744,7 +126141,7 @@
}
},
{
- "id": 15535,
+ "id": 16004,
"properties": {
"east": "none",
"north": "low",
@@ -121755,7 +126152,7 @@
}
},
{
- "id": 15536,
+ "id": 16005,
"properties": {
"east": "none",
"north": "low",
@@ -121766,7 +126163,7 @@
}
},
{
- "id": 15537,
+ "id": 16006,
"properties": {
"east": "none",
"north": "low",
@@ -121777,7 +126174,7 @@
}
},
{
- "id": 15538,
+ "id": 16007,
"properties": {
"east": "none",
"north": "low",
@@ -121788,7 +126185,7 @@
}
},
{
- "id": 15539,
+ "id": 16008,
"properties": {
"east": "none",
"north": "low",
@@ -121799,7 +126196,7 @@
}
},
{
- "id": 15540,
+ "id": 16009,
"properties": {
"east": "none",
"north": "low",
@@ -121810,7 +126207,7 @@
}
},
{
- "id": 15541,
+ "id": 16010,
"properties": {
"east": "none",
"north": "low",
@@ -121821,7 +126218,7 @@
}
},
{
- "id": 15542,
+ "id": 16011,
"properties": {
"east": "none",
"north": "low",
@@ -121832,7 +126229,7 @@
}
},
{
- "id": 15543,
+ "id": 16012,
"properties": {
"east": "none",
"north": "low",
@@ -121843,7 +126240,7 @@
}
},
{
- "id": 15544,
+ "id": 16013,
"properties": {
"east": "none",
"north": "low",
@@ -121854,7 +126251,7 @@
}
},
{
- "id": 15545,
+ "id": 16014,
"properties": {
"east": "none",
"north": "low",
@@ -121865,7 +126262,7 @@
}
},
{
- "id": 15546,
+ "id": 16015,
"properties": {
"east": "none",
"north": "low",
@@ -121876,7 +126273,7 @@
}
},
{
- "id": 15547,
+ "id": 16016,
"properties": {
"east": "none",
"north": "low",
@@ -121887,7 +126284,7 @@
}
},
{
- "id": 15548,
+ "id": 16017,
"properties": {
"east": "none",
"north": "tall",
@@ -121898,7 +126295,7 @@
}
},
{
- "id": 15549,
+ "id": 16018,
"properties": {
"east": "none",
"north": "tall",
@@ -121909,7 +126306,7 @@
}
},
{
- "id": 15550,
+ "id": 16019,
"properties": {
"east": "none",
"north": "tall",
@@ -121920,7 +126317,7 @@
}
},
{
- "id": 15551,
+ "id": 16020,
"properties": {
"east": "none",
"north": "tall",
@@ -121931,7 +126328,7 @@
}
},
{
- "id": 15552,
+ "id": 16021,
"properties": {
"east": "none",
"north": "tall",
@@ -121942,7 +126339,7 @@
}
},
{
- "id": 15553,
+ "id": 16022,
"properties": {
"east": "none",
"north": "tall",
@@ -121953,7 +126350,7 @@
}
},
{
- "id": 15554,
+ "id": 16023,
"properties": {
"east": "none",
"north": "tall",
@@ -121964,7 +126361,7 @@
}
},
{
- "id": 15555,
+ "id": 16024,
"properties": {
"east": "none",
"north": "tall",
@@ -121975,7 +126372,7 @@
}
},
{
- "id": 15556,
+ "id": 16025,
"properties": {
"east": "none",
"north": "tall",
@@ -121986,7 +126383,7 @@
}
},
{
- "id": 15557,
+ "id": 16026,
"properties": {
"east": "none",
"north": "tall",
@@ -121997,7 +126394,7 @@
}
},
{
- "id": 15558,
+ "id": 16027,
"properties": {
"east": "none",
"north": "tall",
@@ -122008,7 +126405,7 @@
}
},
{
- "id": 15559,
+ "id": 16028,
"properties": {
"east": "none",
"north": "tall",
@@ -122019,7 +126416,7 @@
}
},
{
- "id": 15560,
+ "id": 16029,
"properties": {
"east": "none",
"north": "tall",
@@ -122030,7 +126427,7 @@
}
},
{
- "id": 15561,
+ "id": 16030,
"properties": {
"east": "none",
"north": "tall",
@@ -122041,7 +126438,7 @@
}
},
{
- "id": 15562,
+ "id": 16031,
"properties": {
"east": "none",
"north": "tall",
@@ -122052,7 +126449,7 @@
}
},
{
- "id": 15563,
+ "id": 16032,
"properties": {
"east": "none",
"north": "tall",
@@ -122063,7 +126460,7 @@
}
},
{
- "id": 15564,
+ "id": 16033,
"properties": {
"east": "none",
"north": "tall",
@@ -122074,7 +126471,7 @@
}
},
{
- "id": 15565,
+ "id": 16034,
"properties": {
"east": "none",
"north": "tall",
@@ -122085,7 +126482,7 @@
}
},
{
- "id": 15566,
+ "id": 16035,
"properties": {
"east": "none",
"north": "tall",
@@ -122096,7 +126493,7 @@
}
},
{
- "id": 15567,
+ "id": 16036,
"properties": {
"east": "none",
"north": "tall",
@@ -122107,7 +126504,7 @@
}
},
{
- "id": 15568,
+ "id": 16037,
"properties": {
"east": "none",
"north": "tall",
@@ -122118,7 +126515,7 @@
}
},
{
- "id": 15569,
+ "id": 16038,
"properties": {
"east": "none",
"north": "tall",
@@ -122129,7 +126526,7 @@
}
},
{
- "id": 15570,
+ "id": 16039,
"properties": {
"east": "none",
"north": "tall",
@@ -122140,7 +126537,7 @@
}
},
{
- "id": 15571,
+ "id": 16040,
"properties": {
"east": "none",
"north": "tall",
@@ -122151,7 +126548,7 @@
}
},
{
- "id": 15572,
+ "id": 16041,
"properties": {
"east": "none",
"north": "tall",
@@ -122162,7 +126559,7 @@
}
},
{
- "id": 15573,
+ "id": 16042,
"properties": {
"east": "none",
"north": "tall",
@@ -122173,7 +126570,7 @@
}
},
{
- "id": 15574,
+ "id": 16043,
"properties": {
"east": "none",
"north": "tall",
@@ -122184,7 +126581,7 @@
}
},
{
- "id": 15575,
+ "id": 16044,
"properties": {
"east": "none",
"north": "tall",
@@ -122195,7 +126592,7 @@
}
},
{
- "id": 15576,
+ "id": 16045,
"properties": {
"east": "none",
"north": "tall",
@@ -122206,7 +126603,7 @@
}
},
{
- "id": 15577,
+ "id": 16046,
"properties": {
"east": "none",
"north": "tall",
@@ -122217,7 +126614,7 @@
}
},
{
- "id": 15578,
+ "id": 16047,
"properties": {
"east": "none",
"north": "tall",
@@ -122228,7 +126625,7 @@
}
},
{
- "id": 15579,
+ "id": 16048,
"properties": {
"east": "none",
"north": "tall",
@@ -122239,7 +126636,7 @@
}
},
{
- "id": 15580,
+ "id": 16049,
"properties": {
"east": "none",
"north": "tall",
@@ -122250,7 +126647,7 @@
}
},
{
- "id": 15581,
+ "id": 16050,
"properties": {
"east": "none",
"north": "tall",
@@ -122261,7 +126658,7 @@
}
},
{
- "id": 15582,
+ "id": 16051,
"properties": {
"east": "none",
"north": "tall",
@@ -122272,7 +126669,7 @@
}
},
{
- "id": 15583,
+ "id": 16052,
"properties": {
"east": "none",
"north": "tall",
@@ -122283,7 +126680,7 @@
}
},
{
- "id": 15584,
+ "id": 16053,
"properties": {
"east": "low",
"north": "none",
@@ -122294,7 +126691,7 @@
}
},
{
- "id": 15585,
+ "id": 16054,
"properties": {
"east": "low",
"north": "none",
@@ -122305,7 +126702,7 @@
}
},
{
- "id": 15586,
+ "id": 16055,
"properties": {
"east": "low",
"north": "none",
@@ -122316,7 +126713,7 @@
}
},
{
- "id": 15587,
+ "id": 16056,
"properties": {
"east": "low",
"north": "none",
@@ -122327,7 +126724,7 @@
}
},
{
- "id": 15588,
+ "id": 16057,
"properties": {
"east": "low",
"north": "none",
@@ -122338,7 +126735,7 @@
}
},
{
- "id": 15589,
+ "id": 16058,
"properties": {
"east": "low",
"north": "none",
@@ -122349,7 +126746,7 @@
}
},
{
- "id": 15590,
+ "id": 16059,
"properties": {
"east": "low",
"north": "none",
@@ -122360,7 +126757,7 @@
}
},
{
- "id": 15591,
+ "id": 16060,
"properties": {
"east": "low",
"north": "none",
@@ -122371,7 +126768,7 @@
}
},
{
- "id": 15592,
+ "id": 16061,
"properties": {
"east": "low",
"north": "none",
@@ -122382,7 +126779,7 @@
}
},
{
- "id": 15593,
+ "id": 16062,
"properties": {
"east": "low",
"north": "none",
@@ -122393,7 +126790,7 @@
}
},
{
- "id": 15594,
+ "id": 16063,
"properties": {
"east": "low",
"north": "none",
@@ -122404,7 +126801,7 @@
}
},
{
- "id": 15595,
+ "id": 16064,
"properties": {
"east": "low",
"north": "none",
@@ -122415,7 +126812,7 @@
}
},
{
- "id": 15596,
+ "id": 16065,
"properties": {
"east": "low",
"north": "none",
@@ -122426,7 +126823,7 @@
}
},
{
- "id": 15597,
+ "id": 16066,
"properties": {
"east": "low",
"north": "none",
@@ -122437,7 +126834,7 @@
}
},
{
- "id": 15598,
+ "id": 16067,
"properties": {
"east": "low",
"north": "none",
@@ -122448,7 +126845,7 @@
}
},
{
- "id": 15599,
+ "id": 16068,
"properties": {
"east": "low",
"north": "none",
@@ -122459,7 +126856,7 @@
}
},
{
- "id": 15600,
+ "id": 16069,
"properties": {
"east": "low",
"north": "none",
@@ -122470,7 +126867,7 @@
}
},
{
- "id": 15601,
+ "id": 16070,
"properties": {
"east": "low",
"north": "none",
@@ -122481,7 +126878,7 @@
}
},
{
- "id": 15602,
+ "id": 16071,
"properties": {
"east": "low",
"north": "none",
@@ -122492,7 +126889,7 @@
}
},
{
- "id": 15603,
+ "id": 16072,
"properties": {
"east": "low",
"north": "none",
@@ -122503,7 +126900,7 @@
}
},
{
- "id": 15604,
+ "id": 16073,
"properties": {
"east": "low",
"north": "none",
@@ -122514,7 +126911,7 @@
}
},
{
- "id": 15605,
+ "id": 16074,
"properties": {
"east": "low",
"north": "none",
@@ -122525,7 +126922,7 @@
}
},
{
- "id": 15606,
+ "id": 16075,
"properties": {
"east": "low",
"north": "none",
@@ -122536,7 +126933,7 @@
}
},
{
- "id": 15607,
+ "id": 16076,
"properties": {
"east": "low",
"north": "none",
@@ -122547,7 +126944,7 @@
}
},
{
- "id": 15608,
+ "id": 16077,
"properties": {
"east": "low",
"north": "none",
@@ -122558,7 +126955,7 @@
}
},
{
- "id": 15609,
+ "id": 16078,
"properties": {
"east": "low",
"north": "none",
@@ -122569,7 +126966,7 @@
}
},
{
- "id": 15610,
+ "id": 16079,
"properties": {
"east": "low",
"north": "none",
@@ -122580,7 +126977,7 @@
}
},
{
- "id": 15611,
+ "id": 16080,
"properties": {
"east": "low",
"north": "none",
@@ -122591,7 +126988,7 @@
}
},
{
- "id": 15612,
+ "id": 16081,
"properties": {
"east": "low",
"north": "none",
@@ -122602,7 +126999,7 @@
}
},
{
- "id": 15613,
+ "id": 16082,
"properties": {
"east": "low",
"north": "none",
@@ -122613,7 +127010,7 @@
}
},
{
- "id": 15614,
+ "id": 16083,
"properties": {
"east": "low",
"north": "none",
@@ -122624,7 +127021,7 @@
}
},
{
- "id": 15615,
+ "id": 16084,
"properties": {
"east": "low",
"north": "none",
@@ -122635,7 +127032,7 @@
}
},
{
- "id": 15616,
+ "id": 16085,
"properties": {
"east": "low",
"north": "none",
@@ -122646,7 +127043,7 @@
}
},
{
- "id": 15617,
+ "id": 16086,
"properties": {
"east": "low",
"north": "none",
@@ -122657,7 +127054,7 @@
}
},
{
- "id": 15618,
+ "id": 16087,
"properties": {
"east": "low",
"north": "none",
@@ -122668,7 +127065,7 @@
}
},
{
- "id": 15619,
+ "id": 16088,
"properties": {
"east": "low",
"north": "none",
@@ -122679,7 +127076,7 @@
}
},
{
- "id": 15620,
+ "id": 16089,
"properties": {
"east": "low",
"north": "low",
@@ -122690,7 +127087,7 @@
}
},
{
- "id": 15621,
+ "id": 16090,
"properties": {
"east": "low",
"north": "low",
@@ -122701,7 +127098,7 @@
}
},
{
- "id": 15622,
+ "id": 16091,
"properties": {
"east": "low",
"north": "low",
@@ -122712,7 +127109,7 @@
}
},
{
- "id": 15623,
+ "id": 16092,
"properties": {
"east": "low",
"north": "low",
@@ -122723,7 +127120,7 @@
}
},
{
- "id": 15624,
+ "id": 16093,
"properties": {
"east": "low",
"north": "low",
@@ -122734,7 +127131,7 @@
}
},
{
- "id": 15625,
+ "id": 16094,
"properties": {
"east": "low",
"north": "low",
@@ -122745,7 +127142,7 @@
}
},
{
- "id": 15626,
+ "id": 16095,
"properties": {
"east": "low",
"north": "low",
@@ -122756,7 +127153,7 @@
}
},
{
- "id": 15627,
+ "id": 16096,
"properties": {
"east": "low",
"north": "low",
@@ -122767,7 +127164,7 @@
}
},
{
- "id": 15628,
+ "id": 16097,
"properties": {
"east": "low",
"north": "low",
@@ -122778,7 +127175,7 @@
}
},
{
- "id": 15629,
+ "id": 16098,
"properties": {
"east": "low",
"north": "low",
@@ -122789,7 +127186,7 @@
}
},
{
- "id": 15630,
+ "id": 16099,
"properties": {
"east": "low",
"north": "low",
@@ -122800,7 +127197,7 @@
}
},
{
- "id": 15631,
+ "id": 16100,
"properties": {
"east": "low",
"north": "low",
@@ -122811,7 +127208,7 @@
}
},
{
- "id": 15632,
+ "id": 16101,
"properties": {
"east": "low",
"north": "low",
@@ -122822,7 +127219,7 @@
}
},
{
- "id": 15633,
+ "id": 16102,
"properties": {
"east": "low",
"north": "low",
@@ -122833,7 +127230,7 @@
}
},
{
- "id": 15634,
+ "id": 16103,
"properties": {
"east": "low",
"north": "low",
@@ -122844,7 +127241,7 @@
}
},
{
- "id": 15635,
+ "id": 16104,
"properties": {
"east": "low",
"north": "low",
@@ -122855,7 +127252,7 @@
}
},
{
- "id": 15636,
+ "id": 16105,
"properties": {
"east": "low",
"north": "low",
@@ -122866,7 +127263,7 @@
}
},
{
- "id": 15637,
+ "id": 16106,
"properties": {
"east": "low",
"north": "low",
@@ -122877,7 +127274,7 @@
}
},
{
- "id": 15638,
+ "id": 16107,
"properties": {
"east": "low",
"north": "low",
@@ -122888,7 +127285,7 @@
}
},
{
- "id": 15639,
+ "id": 16108,
"properties": {
"east": "low",
"north": "low",
@@ -122899,7 +127296,7 @@
}
},
{
- "id": 15640,
+ "id": 16109,
"properties": {
"east": "low",
"north": "low",
@@ -122910,7 +127307,7 @@
}
},
{
- "id": 15641,
+ "id": 16110,
"properties": {
"east": "low",
"north": "low",
@@ -122921,7 +127318,7 @@
}
},
{
- "id": 15642,
+ "id": 16111,
"properties": {
"east": "low",
"north": "low",
@@ -122932,7 +127329,7 @@
}
},
{
- "id": 15643,
+ "id": 16112,
"properties": {
"east": "low",
"north": "low",
@@ -122943,7 +127340,7 @@
}
},
{
- "id": 15644,
+ "id": 16113,
"properties": {
"east": "low",
"north": "low",
@@ -122954,7 +127351,7 @@
}
},
{
- "id": 15645,
+ "id": 16114,
"properties": {
"east": "low",
"north": "low",
@@ -122965,7 +127362,7 @@
}
},
{
- "id": 15646,
+ "id": 16115,
"properties": {
"east": "low",
"north": "low",
@@ -122976,7 +127373,7 @@
}
},
{
- "id": 15647,
+ "id": 16116,
"properties": {
"east": "low",
"north": "low",
@@ -122987,7 +127384,7 @@
}
},
{
- "id": 15648,
+ "id": 16117,
"properties": {
"east": "low",
"north": "low",
@@ -122998,7 +127395,7 @@
}
},
{
- "id": 15649,
+ "id": 16118,
"properties": {
"east": "low",
"north": "low",
@@ -123009,7 +127406,7 @@
}
},
{
- "id": 15650,
+ "id": 16119,
"properties": {
"east": "low",
"north": "low",
@@ -123020,7 +127417,7 @@
}
},
{
- "id": 15651,
+ "id": 16120,
"properties": {
"east": "low",
"north": "low",
@@ -123031,7 +127428,7 @@
}
},
{
- "id": 15652,
+ "id": 16121,
"properties": {
"east": "low",
"north": "low",
@@ -123042,7 +127439,7 @@
}
},
{
- "id": 15653,
+ "id": 16122,
"properties": {
"east": "low",
"north": "low",
@@ -123053,7 +127450,7 @@
}
},
{
- "id": 15654,
+ "id": 16123,
"properties": {
"east": "low",
"north": "low",
@@ -123064,7 +127461,7 @@
}
},
{
- "id": 15655,
+ "id": 16124,
"properties": {
"east": "low",
"north": "low",
@@ -123075,7 +127472,7 @@
}
},
{
- "id": 15656,
+ "id": 16125,
"properties": {
"east": "low",
"north": "tall",
@@ -123086,7 +127483,7 @@
}
},
{
- "id": 15657,
+ "id": 16126,
"properties": {
"east": "low",
"north": "tall",
@@ -123097,7 +127494,7 @@
}
},
{
- "id": 15658,
+ "id": 16127,
"properties": {
"east": "low",
"north": "tall",
@@ -123108,7 +127505,7 @@
}
},
{
- "id": 15659,
+ "id": 16128,
"properties": {
"east": "low",
"north": "tall",
@@ -123119,7 +127516,7 @@
}
},
{
- "id": 15660,
+ "id": 16129,
"properties": {
"east": "low",
"north": "tall",
@@ -123130,7 +127527,7 @@
}
},
{
- "id": 15661,
+ "id": 16130,
"properties": {
"east": "low",
"north": "tall",
@@ -123141,7 +127538,7 @@
}
},
{
- "id": 15662,
+ "id": 16131,
"properties": {
"east": "low",
"north": "tall",
@@ -123152,7 +127549,7 @@
}
},
{
- "id": 15663,
+ "id": 16132,
"properties": {
"east": "low",
"north": "tall",
@@ -123163,7 +127560,7 @@
}
},
{
- "id": 15664,
+ "id": 16133,
"properties": {
"east": "low",
"north": "tall",
@@ -123174,7 +127571,7 @@
}
},
{
- "id": 15665,
+ "id": 16134,
"properties": {
"east": "low",
"north": "tall",
@@ -123185,7 +127582,7 @@
}
},
{
- "id": 15666,
+ "id": 16135,
"properties": {
"east": "low",
"north": "tall",
@@ -123196,7 +127593,7 @@
}
},
{
- "id": 15667,
+ "id": 16136,
"properties": {
"east": "low",
"north": "tall",
@@ -123207,7 +127604,7 @@
}
},
{
- "id": 15668,
+ "id": 16137,
"properties": {
"east": "low",
"north": "tall",
@@ -123218,7 +127615,7 @@
}
},
{
- "id": 15669,
+ "id": 16138,
"properties": {
"east": "low",
"north": "tall",
@@ -123229,7 +127626,7 @@
}
},
{
- "id": 15670,
+ "id": 16139,
"properties": {
"east": "low",
"north": "tall",
@@ -123240,7 +127637,7 @@
}
},
{
- "id": 15671,
+ "id": 16140,
"properties": {
"east": "low",
"north": "tall",
@@ -123251,7 +127648,7 @@
}
},
{
- "id": 15672,
+ "id": 16141,
"properties": {
"east": "low",
"north": "tall",
@@ -123262,7 +127659,7 @@
}
},
{
- "id": 15673,
+ "id": 16142,
"properties": {
"east": "low",
"north": "tall",
@@ -123273,7 +127670,7 @@
}
},
{
- "id": 15674,
+ "id": 16143,
"properties": {
"east": "low",
"north": "tall",
@@ -123284,7 +127681,7 @@
}
},
{
- "id": 15675,
+ "id": 16144,
"properties": {
"east": "low",
"north": "tall",
@@ -123295,7 +127692,7 @@
}
},
{
- "id": 15676,
+ "id": 16145,
"properties": {
"east": "low",
"north": "tall",
@@ -123306,7 +127703,7 @@
}
},
{
- "id": 15677,
+ "id": 16146,
"properties": {
"east": "low",
"north": "tall",
@@ -123317,7 +127714,7 @@
}
},
{
- "id": 15678,
+ "id": 16147,
"properties": {
"east": "low",
"north": "tall",
@@ -123328,7 +127725,7 @@
}
},
{
- "id": 15679,
+ "id": 16148,
"properties": {
"east": "low",
"north": "tall",
@@ -123339,7 +127736,7 @@
}
},
{
- "id": 15680,
+ "id": 16149,
"properties": {
"east": "low",
"north": "tall",
@@ -123350,7 +127747,7 @@
}
},
{
- "id": 15681,
+ "id": 16150,
"properties": {
"east": "low",
"north": "tall",
@@ -123361,7 +127758,7 @@
}
},
{
- "id": 15682,
+ "id": 16151,
"properties": {
"east": "low",
"north": "tall",
@@ -123372,7 +127769,7 @@
}
},
{
- "id": 15683,
+ "id": 16152,
"properties": {
"east": "low",
"north": "tall",
@@ -123383,7 +127780,7 @@
}
},
{
- "id": 15684,
+ "id": 16153,
"properties": {
"east": "low",
"north": "tall",
@@ -123394,7 +127791,7 @@
}
},
{
- "id": 15685,
+ "id": 16154,
"properties": {
"east": "low",
"north": "tall",
@@ -123405,7 +127802,7 @@
}
},
{
- "id": 15686,
+ "id": 16155,
"properties": {
"east": "low",
"north": "tall",
@@ -123416,7 +127813,7 @@
}
},
{
- "id": 15687,
+ "id": 16156,
"properties": {
"east": "low",
"north": "tall",
@@ -123427,7 +127824,7 @@
}
},
{
- "id": 15688,
+ "id": 16157,
"properties": {
"east": "low",
"north": "tall",
@@ -123438,7 +127835,7 @@
}
},
{
- "id": 15689,
+ "id": 16158,
"properties": {
"east": "low",
"north": "tall",
@@ -123449,7 +127846,7 @@
}
},
{
- "id": 15690,
+ "id": 16159,
"properties": {
"east": "low",
"north": "tall",
@@ -123460,7 +127857,7 @@
}
},
{
- "id": 15691,
+ "id": 16160,
"properties": {
"east": "low",
"north": "tall",
@@ -123471,7 +127868,7 @@
}
},
{
- "id": 15692,
+ "id": 16161,
"properties": {
"east": "tall",
"north": "none",
@@ -123482,7 +127879,7 @@
}
},
{
- "id": 15693,
+ "id": 16162,
"properties": {
"east": "tall",
"north": "none",
@@ -123493,7 +127890,7 @@
}
},
{
- "id": 15694,
+ "id": 16163,
"properties": {
"east": "tall",
"north": "none",
@@ -123504,7 +127901,7 @@
}
},
{
- "id": 15695,
+ "id": 16164,
"properties": {
"east": "tall",
"north": "none",
@@ -123515,7 +127912,7 @@
}
},
{
- "id": 15696,
+ "id": 16165,
"properties": {
"east": "tall",
"north": "none",
@@ -123526,7 +127923,7 @@
}
},
{
- "id": 15697,
+ "id": 16166,
"properties": {
"east": "tall",
"north": "none",
@@ -123537,7 +127934,7 @@
}
},
{
- "id": 15698,
+ "id": 16167,
"properties": {
"east": "tall",
"north": "none",
@@ -123548,7 +127945,7 @@
}
},
{
- "id": 15699,
+ "id": 16168,
"properties": {
"east": "tall",
"north": "none",
@@ -123559,7 +127956,7 @@
}
},
{
- "id": 15700,
+ "id": 16169,
"properties": {
"east": "tall",
"north": "none",
@@ -123570,7 +127967,7 @@
}
},
{
- "id": 15701,
+ "id": 16170,
"properties": {
"east": "tall",
"north": "none",
@@ -123581,7 +127978,7 @@
}
},
{
- "id": 15702,
+ "id": 16171,
"properties": {
"east": "tall",
"north": "none",
@@ -123592,7 +127989,7 @@
}
},
{
- "id": 15703,
+ "id": 16172,
"properties": {
"east": "tall",
"north": "none",
@@ -123603,7 +128000,7 @@
}
},
{
- "id": 15704,
+ "id": 16173,
"properties": {
"east": "tall",
"north": "none",
@@ -123614,7 +128011,7 @@
}
},
{
- "id": 15705,
+ "id": 16174,
"properties": {
"east": "tall",
"north": "none",
@@ -123625,7 +128022,7 @@
}
},
{
- "id": 15706,
+ "id": 16175,
"properties": {
"east": "tall",
"north": "none",
@@ -123636,7 +128033,7 @@
}
},
{
- "id": 15707,
+ "id": 16176,
"properties": {
"east": "tall",
"north": "none",
@@ -123647,7 +128044,7 @@
}
},
{
- "id": 15708,
+ "id": 16177,
"properties": {
"east": "tall",
"north": "none",
@@ -123658,7 +128055,7 @@
}
},
{
- "id": 15709,
+ "id": 16178,
"properties": {
"east": "tall",
"north": "none",
@@ -123669,7 +128066,7 @@
}
},
{
- "id": 15710,
+ "id": 16179,
"properties": {
"east": "tall",
"north": "none",
@@ -123680,7 +128077,7 @@
}
},
{
- "id": 15711,
+ "id": 16180,
"properties": {
"east": "tall",
"north": "none",
@@ -123691,7 +128088,7 @@
}
},
{
- "id": 15712,
+ "id": 16181,
"properties": {
"east": "tall",
"north": "none",
@@ -123702,7 +128099,7 @@
}
},
{
- "id": 15713,
+ "id": 16182,
"properties": {
"east": "tall",
"north": "none",
@@ -123713,7 +128110,7 @@
}
},
{
- "id": 15714,
+ "id": 16183,
"properties": {
"east": "tall",
"north": "none",
@@ -123724,7 +128121,7 @@
}
},
{
- "id": 15715,
+ "id": 16184,
"properties": {
"east": "tall",
"north": "none",
@@ -123735,7 +128132,7 @@
}
},
{
- "id": 15716,
+ "id": 16185,
"properties": {
"east": "tall",
"north": "none",
@@ -123746,7 +128143,7 @@
}
},
{
- "id": 15717,
+ "id": 16186,
"properties": {
"east": "tall",
"north": "none",
@@ -123757,7 +128154,7 @@
}
},
{
- "id": 15718,
+ "id": 16187,
"properties": {
"east": "tall",
"north": "none",
@@ -123768,7 +128165,7 @@
}
},
{
- "id": 15719,
+ "id": 16188,
"properties": {
"east": "tall",
"north": "none",
@@ -123779,7 +128176,7 @@
}
},
{
- "id": 15720,
+ "id": 16189,
"properties": {
"east": "tall",
"north": "none",
@@ -123790,7 +128187,7 @@
}
},
{
- "id": 15721,
+ "id": 16190,
"properties": {
"east": "tall",
"north": "none",
@@ -123801,7 +128198,7 @@
}
},
{
- "id": 15722,
+ "id": 16191,
"properties": {
"east": "tall",
"north": "none",
@@ -123812,7 +128209,7 @@
}
},
{
- "id": 15723,
+ "id": 16192,
"properties": {
"east": "tall",
"north": "none",
@@ -123823,7 +128220,7 @@
}
},
{
- "id": 15724,
+ "id": 16193,
"properties": {
"east": "tall",
"north": "none",
@@ -123834,7 +128231,7 @@
}
},
{
- "id": 15725,
+ "id": 16194,
"properties": {
"east": "tall",
"north": "none",
@@ -123845,7 +128242,7 @@
}
},
{
- "id": 15726,
+ "id": 16195,
"properties": {
"east": "tall",
"north": "none",
@@ -123856,7 +128253,7 @@
}
},
{
- "id": 15727,
+ "id": 16196,
"properties": {
"east": "tall",
"north": "none",
@@ -123867,7 +128264,7 @@
}
},
{
- "id": 15728,
+ "id": 16197,
"properties": {
"east": "tall",
"north": "low",
@@ -123878,7 +128275,7 @@
}
},
{
- "id": 15729,
+ "id": 16198,
"properties": {
"east": "tall",
"north": "low",
@@ -123889,7 +128286,7 @@
}
},
{
- "id": 15730,
+ "id": 16199,
"properties": {
"east": "tall",
"north": "low",
@@ -123900,7 +128297,7 @@
}
},
{
- "id": 15731,
+ "id": 16200,
"properties": {
"east": "tall",
"north": "low",
@@ -123911,7 +128308,7 @@
}
},
{
- "id": 15732,
+ "id": 16201,
"properties": {
"east": "tall",
"north": "low",
@@ -123922,7 +128319,7 @@
}
},
{
- "id": 15733,
+ "id": 16202,
"properties": {
"east": "tall",
"north": "low",
@@ -123933,7 +128330,7 @@
}
},
{
- "id": 15734,
+ "id": 16203,
"properties": {
"east": "tall",
"north": "low",
@@ -123944,7 +128341,7 @@
}
},
{
- "id": 15735,
+ "id": 16204,
"properties": {
"east": "tall",
"north": "low",
@@ -123955,7 +128352,7 @@
}
},
{
- "id": 15736,
+ "id": 16205,
"properties": {
"east": "tall",
"north": "low",
@@ -123966,7 +128363,7 @@
}
},
{
- "id": 15737,
+ "id": 16206,
"properties": {
"east": "tall",
"north": "low",
@@ -123977,7 +128374,7 @@
}
},
{
- "id": 15738,
+ "id": 16207,
"properties": {
"east": "tall",
"north": "low",
@@ -123988,7 +128385,7 @@
}
},
{
- "id": 15739,
+ "id": 16208,
"properties": {
"east": "tall",
"north": "low",
@@ -123999,7 +128396,7 @@
}
},
{
- "id": 15740,
+ "id": 16209,
"properties": {
"east": "tall",
"north": "low",
@@ -124010,7 +128407,7 @@
}
},
{
- "id": 15741,
+ "id": 16210,
"properties": {
"east": "tall",
"north": "low",
@@ -124021,7 +128418,7 @@
}
},
{
- "id": 15742,
+ "id": 16211,
"properties": {
"east": "tall",
"north": "low",
@@ -124032,7 +128429,7 @@
}
},
{
- "id": 15743,
+ "id": 16212,
"properties": {
"east": "tall",
"north": "low",
@@ -124043,7 +128440,7 @@
}
},
{
- "id": 15744,
+ "id": 16213,
"properties": {
"east": "tall",
"north": "low",
@@ -124054,7 +128451,7 @@
}
},
{
- "id": 15745,
+ "id": 16214,
"properties": {
"east": "tall",
"north": "low",
@@ -124065,7 +128462,7 @@
}
},
{
- "id": 15746,
+ "id": 16215,
"properties": {
"east": "tall",
"north": "low",
@@ -124076,7 +128473,7 @@
}
},
{
- "id": 15747,
+ "id": 16216,
"properties": {
"east": "tall",
"north": "low",
@@ -124087,7 +128484,7 @@
}
},
{
- "id": 15748,
+ "id": 16217,
"properties": {
"east": "tall",
"north": "low",
@@ -124098,7 +128495,7 @@
}
},
{
- "id": 15749,
+ "id": 16218,
"properties": {
"east": "tall",
"north": "low",
@@ -124109,7 +128506,7 @@
}
},
{
- "id": 15750,
+ "id": 16219,
"properties": {
"east": "tall",
"north": "low",
@@ -124120,7 +128517,7 @@
}
},
{
- "id": 15751,
+ "id": 16220,
"properties": {
"east": "tall",
"north": "low",
@@ -124131,7 +128528,7 @@
}
},
{
- "id": 15752,
+ "id": 16221,
"properties": {
"east": "tall",
"north": "low",
@@ -124142,7 +128539,7 @@
}
},
{
- "id": 15753,
+ "id": 16222,
"properties": {
"east": "tall",
"north": "low",
@@ -124153,7 +128550,7 @@
}
},
{
- "id": 15754,
+ "id": 16223,
"properties": {
"east": "tall",
"north": "low",
@@ -124164,7 +128561,7 @@
}
},
{
- "id": 15755,
+ "id": 16224,
"properties": {
"east": "tall",
"north": "low",
@@ -124175,7 +128572,7 @@
}
},
{
- "id": 15756,
+ "id": 16225,
"properties": {
"east": "tall",
"north": "low",
@@ -124186,7 +128583,7 @@
}
},
{
- "id": 15757,
+ "id": 16226,
"properties": {
"east": "tall",
"north": "low",
@@ -124197,7 +128594,7 @@
}
},
{
- "id": 15758,
+ "id": 16227,
"properties": {
"east": "tall",
"north": "low",
@@ -124208,7 +128605,7 @@
}
},
{
- "id": 15759,
+ "id": 16228,
"properties": {
"east": "tall",
"north": "low",
@@ -124219,7 +128616,7 @@
}
},
{
- "id": 15760,
+ "id": 16229,
"properties": {
"east": "tall",
"north": "low",
@@ -124230,7 +128627,7 @@
}
},
{
- "id": 15761,
+ "id": 16230,
"properties": {
"east": "tall",
"north": "low",
@@ -124241,7 +128638,7 @@
}
},
{
- "id": 15762,
+ "id": 16231,
"properties": {
"east": "tall",
"north": "low",
@@ -124252,7 +128649,7 @@
}
},
{
- "id": 15763,
+ "id": 16232,
"properties": {
"east": "tall",
"north": "low",
@@ -124263,7 +128660,7 @@
}
},
{
- "id": 15764,
+ "id": 16233,
"properties": {
"east": "tall",
"north": "tall",
@@ -124274,7 +128671,7 @@
}
},
{
- "id": 15765,
+ "id": 16234,
"properties": {
"east": "tall",
"north": "tall",
@@ -124285,7 +128682,7 @@
}
},
{
- "id": 15766,
+ "id": 16235,
"properties": {
"east": "tall",
"north": "tall",
@@ -124296,7 +128693,7 @@
}
},
{
- "id": 15767,
+ "id": 16236,
"properties": {
"east": "tall",
"north": "tall",
@@ -124307,7 +128704,7 @@
}
},
{
- "id": 15768,
+ "id": 16237,
"properties": {
"east": "tall",
"north": "tall",
@@ -124318,7 +128715,7 @@
}
},
{
- "id": 15769,
+ "id": 16238,
"properties": {
"east": "tall",
"north": "tall",
@@ -124329,7 +128726,7 @@
}
},
{
- "id": 15770,
+ "id": 16239,
"properties": {
"east": "tall",
"north": "tall",
@@ -124340,7 +128737,7 @@
}
},
{
- "id": 15771,
+ "id": 16240,
"properties": {
"east": "tall",
"north": "tall",
@@ -124351,7 +128748,7 @@
}
},
{
- "id": 15772,
+ "id": 16241,
"properties": {
"east": "tall",
"north": "tall",
@@ -124362,7 +128759,7 @@
}
},
{
- "id": 15773,
+ "id": 16242,
"properties": {
"east": "tall",
"north": "tall",
@@ -124373,7 +128770,7 @@
}
},
{
- "id": 15774,
+ "id": 16243,
"properties": {
"east": "tall",
"north": "tall",
@@ -124384,7 +128781,7 @@
}
},
{
- "id": 15775,
+ "id": 16244,
"properties": {
"east": "tall",
"north": "tall",
@@ -124395,7 +128792,7 @@
}
},
{
- "id": 15776,
+ "id": 16245,
"properties": {
"east": "tall",
"north": "tall",
@@ -124406,7 +128803,7 @@
}
},
{
- "id": 15777,
+ "id": 16246,
"properties": {
"east": "tall",
"north": "tall",
@@ -124417,7 +128814,7 @@
}
},
{
- "id": 15778,
+ "id": 16247,
"properties": {
"east": "tall",
"north": "tall",
@@ -124428,7 +128825,7 @@
}
},
{
- "id": 15779,
+ "id": 16248,
"properties": {
"east": "tall",
"north": "tall",
@@ -124439,7 +128836,7 @@
}
},
{
- "id": 15780,
+ "id": 16249,
"properties": {
"east": "tall",
"north": "tall",
@@ -124450,7 +128847,7 @@
}
},
{
- "id": 15781,
+ "id": 16250,
"properties": {
"east": "tall",
"north": "tall",
@@ -124461,7 +128858,7 @@
}
},
{
- "id": 15782,
+ "id": 16251,
"properties": {
"east": "tall",
"north": "tall",
@@ -124472,7 +128869,7 @@
}
},
{
- "id": 15783,
+ "id": 16252,
"properties": {
"east": "tall",
"north": "tall",
@@ -124483,7 +128880,7 @@
}
},
{
- "id": 15784,
+ "id": 16253,
"properties": {
"east": "tall",
"north": "tall",
@@ -124494,7 +128891,7 @@
}
},
{
- "id": 15785,
+ "id": 16254,
"properties": {
"east": "tall",
"north": "tall",
@@ -124505,7 +128902,7 @@
}
},
{
- "id": 15786,
+ "id": 16255,
"properties": {
"east": "tall",
"north": "tall",
@@ -124516,7 +128913,7 @@
}
},
{
- "id": 15787,
+ "id": 16256,
"properties": {
"east": "tall",
"north": "tall",
@@ -124527,7 +128924,7 @@
}
},
{
- "id": 15788,
+ "id": 16257,
"properties": {
"east": "tall",
"north": "tall",
@@ -124538,7 +128935,7 @@
}
},
{
- "id": 15789,
+ "id": 16258,
"properties": {
"east": "tall",
"north": "tall",
@@ -124549,7 +128946,7 @@
}
},
{
- "id": 15790,
+ "id": 16259,
"properties": {
"east": "tall",
"north": "tall",
@@ -124560,7 +128957,7 @@
}
},
{
- "id": 15791,
+ "id": 16260,
"properties": {
"east": "tall",
"north": "tall",
@@ -124571,7 +128968,7 @@
}
},
{
- "id": 15792,
+ "id": 16261,
"properties": {
"east": "tall",
"north": "tall",
@@ -124582,7 +128979,7 @@
}
},
{
- "id": 15793,
+ "id": 16262,
"properties": {
"east": "tall",
"north": "tall",
@@ -124593,7 +128990,7 @@
}
},
{
- "id": 15794,
+ "id": 16263,
"properties": {
"east": "tall",
"north": "tall",
@@ -124604,7 +129001,7 @@
}
},
{
- "id": 15795,
+ "id": 16264,
"properties": {
"east": "tall",
"north": "tall",
@@ -124615,7 +129012,7 @@
}
},
{
- "id": 15796,
+ "id": 16265,
"properties": {
"east": "tall",
"north": "tall",
@@ -124626,7 +129023,7 @@
}
},
{
- "id": 15797,
+ "id": 16266,
"properties": {
"east": "tall",
"north": "tall",
@@ -124637,7 +129034,7 @@
}
},
{
- "id": 15798,
+ "id": 16267,
"properties": {
"east": "tall",
"north": "tall",
@@ -124648,7 +129045,7 @@
}
},
{
- "id": 15799,
+ "id": 16268,
"properties": {
"east": "tall",
"north": "tall",
@@ -124664,7 +129061,7 @@
"states": [
{
"default": true,
- "id": 6313
+ "id": 6539
}
]
},
@@ -124678,20 +129075,20 @@
},
"states": [
{
- "id": 142,
+ "id": 152,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 143,
+ "id": 153,
"properties": {
"axis": "y"
}
},
{
- "id": 144,
+ "id": 154,
"properties": {
"axis": "z"
}
@@ -124728,7 +129125,7 @@
"states": [
{
"default": true,
- "id": 6448,
+ "id": 6674,
"properties": {
"down": "true",
"east": "true",
@@ -124739,7 +129136,7 @@
}
},
{
- "id": 6449,
+ "id": 6675,
"properties": {
"down": "true",
"east": "true",
@@ -124750,7 +129147,7 @@
}
},
{
- "id": 6450,
+ "id": 6676,
"properties": {
"down": "true",
"east": "true",
@@ -124761,7 +129158,7 @@
}
},
{
- "id": 6451,
+ "id": 6677,
"properties": {
"down": "true",
"east": "true",
@@ -124772,7 +129169,7 @@
}
},
{
- "id": 6452,
+ "id": 6678,
"properties": {
"down": "true",
"east": "true",
@@ -124783,7 +129180,7 @@
}
},
{
- "id": 6453,
+ "id": 6679,
"properties": {
"down": "true",
"east": "true",
@@ -124794,7 +129191,7 @@
}
},
{
- "id": 6454,
+ "id": 6680,
"properties": {
"down": "true",
"east": "true",
@@ -124805,7 +129202,7 @@
}
},
{
- "id": 6455,
+ "id": 6681,
"properties": {
"down": "true",
"east": "true",
@@ -124816,7 +129213,7 @@
}
},
{
- "id": 6456,
+ "id": 6682,
"properties": {
"down": "true",
"east": "true",
@@ -124827,7 +129224,7 @@
}
},
{
- "id": 6457,
+ "id": 6683,
"properties": {
"down": "true",
"east": "true",
@@ -124838,7 +129235,7 @@
}
},
{
- "id": 6458,
+ "id": 6684,
"properties": {
"down": "true",
"east": "true",
@@ -124849,7 +129246,7 @@
}
},
{
- "id": 6459,
+ "id": 6685,
"properties": {
"down": "true",
"east": "true",
@@ -124860,7 +129257,7 @@
}
},
{
- "id": 6460,
+ "id": 6686,
"properties": {
"down": "true",
"east": "true",
@@ -124871,7 +129268,7 @@
}
},
{
- "id": 6461,
+ "id": 6687,
"properties": {
"down": "true",
"east": "true",
@@ -124882,7 +129279,7 @@
}
},
{
- "id": 6462,
+ "id": 6688,
"properties": {
"down": "true",
"east": "true",
@@ -124893,7 +129290,7 @@
}
},
{
- "id": 6463,
+ "id": 6689,
"properties": {
"down": "true",
"east": "true",
@@ -124904,7 +129301,7 @@
}
},
{
- "id": 6464,
+ "id": 6690,
"properties": {
"down": "true",
"east": "false",
@@ -124915,7 +129312,7 @@
}
},
{
- "id": 6465,
+ "id": 6691,
"properties": {
"down": "true",
"east": "false",
@@ -124926,7 +129323,7 @@
}
},
{
- "id": 6466,
+ "id": 6692,
"properties": {
"down": "true",
"east": "false",
@@ -124937,7 +129334,7 @@
}
},
{
- "id": 6467,
+ "id": 6693,
"properties": {
"down": "true",
"east": "false",
@@ -124948,7 +129345,7 @@
}
},
{
- "id": 6468,
+ "id": 6694,
"properties": {
"down": "true",
"east": "false",
@@ -124959,7 +129356,7 @@
}
},
{
- "id": 6469,
+ "id": 6695,
"properties": {
"down": "true",
"east": "false",
@@ -124970,7 +129367,7 @@
}
},
{
- "id": 6470,
+ "id": 6696,
"properties": {
"down": "true",
"east": "false",
@@ -124981,7 +129378,7 @@
}
},
{
- "id": 6471,
+ "id": 6697,
"properties": {
"down": "true",
"east": "false",
@@ -124992,7 +129389,7 @@
}
},
{
- "id": 6472,
+ "id": 6698,
"properties": {
"down": "true",
"east": "false",
@@ -125003,7 +129400,7 @@
}
},
{
- "id": 6473,
+ "id": 6699,
"properties": {
"down": "true",
"east": "false",
@@ -125014,7 +129411,7 @@
}
},
{
- "id": 6474,
+ "id": 6700,
"properties": {
"down": "true",
"east": "false",
@@ -125025,7 +129422,7 @@
}
},
{
- "id": 6475,
+ "id": 6701,
"properties": {
"down": "true",
"east": "false",
@@ -125036,7 +129433,7 @@
}
},
{
- "id": 6476,
+ "id": 6702,
"properties": {
"down": "true",
"east": "false",
@@ -125047,7 +129444,7 @@
}
},
{
- "id": 6477,
+ "id": 6703,
"properties": {
"down": "true",
"east": "false",
@@ -125058,7 +129455,7 @@
}
},
{
- "id": 6478,
+ "id": 6704,
"properties": {
"down": "true",
"east": "false",
@@ -125069,7 +129466,7 @@
}
},
{
- "id": 6479,
+ "id": 6705,
"properties": {
"down": "true",
"east": "false",
@@ -125080,7 +129477,7 @@
}
},
{
- "id": 6480,
+ "id": 6706,
"properties": {
"down": "false",
"east": "true",
@@ -125091,7 +129488,7 @@
}
},
{
- "id": 6481,
+ "id": 6707,
"properties": {
"down": "false",
"east": "true",
@@ -125102,7 +129499,7 @@
}
},
{
- "id": 6482,
+ "id": 6708,
"properties": {
"down": "false",
"east": "true",
@@ -125113,7 +129510,7 @@
}
},
{
- "id": 6483,
+ "id": 6709,
"properties": {
"down": "false",
"east": "true",
@@ -125124,7 +129521,7 @@
}
},
{
- "id": 6484,
+ "id": 6710,
"properties": {
"down": "false",
"east": "true",
@@ -125135,7 +129532,7 @@
}
},
{
- "id": 6485,
+ "id": 6711,
"properties": {
"down": "false",
"east": "true",
@@ -125146,7 +129543,7 @@
}
},
{
- "id": 6486,
+ "id": 6712,
"properties": {
"down": "false",
"east": "true",
@@ -125157,7 +129554,7 @@
}
},
{
- "id": 6487,
+ "id": 6713,
"properties": {
"down": "false",
"east": "true",
@@ -125168,7 +129565,7 @@
}
},
{
- "id": 6488,
+ "id": 6714,
"properties": {
"down": "false",
"east": "true",
@@ -125179,7 +129576,7 @@
}
},
{
- "id": 6489,
+ "id": 6715,
"properties": {
"down": "false",
"east": "true",
@@ -125190,7 +129587,7 @@
}
},
{
- "id": 6490,
+ "id": 6716,
"properties": {
"down": "false",
"east": "true",
@@ -125201,7 +129598,7 @@
}
},
{
- "id": 6491,
+ "id": 6717,
"properties": {
"down": "false",
"east": "true",
@@ -125212,7 +129609,7 @@
}
},
{
- "id": 6492,
+ "id": 6718,
"properties": {
"down": "false",
"east": "true",
@@ -125223,7 +129620,7 @@
}
},
{
- "id": 6493,
+ "id": 6719,
"properties": {
"down": "false",
"east": "true",
@@ -125234,7 +129631,7 @@
}
},
{
- "id": 6494,
+ "id": 6720,
"properties": {
"down": "false",
"east": "true",
@@ -125245,7 +129642,7 @@
}
},
{
- "id": 6495,
+ "id": 6721,
"properties": {
"down": "false",
"east": "true",
@@ -125256,7 +129653,7 @@
}
},
{
- "id": 6496,
+ "id": 6722,
"properties": {
"down": "false",
"east": "false",
@@ -125267,7 +129664,7 @@
}
},
{
- "id": 6497,
+ "id": 6723,
"properties": {
"down": "false",
"east": "false",
@@ -125278,7 +129675,7 @@
}
},
{
- "id": 6498,
+ "id": 6724,
"properties": {
"down": "false",
"east": "false",
@@ -125289,7 +129686,7 @@
}
},
{
- "id": 6499,
+ "id": 6725,
"properties": {
"down": "false",
"east": "false",
@@ -125300,7 +129697,7 @@
}
},
{
- "id": 6500,
+ "id": 6726,
"properties": {
"down": "false",
"east": "false",
@@ -125311,7 +129708,7 @@
}
},
{
- "id": 6501,
+ "id": 6727,
"properties": {
"down": "false",
"east": "false",
@@ -125322,7 +129719,7 @@
}
},
{
- "id": 6502,
+ "id": 6728,
"properties": {
"down": "false",
"east": "false",
@@ -125333,7 +129730,7 @@
}
},
{
- "id": 6503,
+ "id": 6729,
"properties": {
"down": "false",
"east": "false",
@@ -125344,7 +129741,7 @@
}
},
{
- "id": 6504,
+ "id": 6730,
"properties": {
"down": "false",
"east": "false",
@@ -125355,7 +129752,7 @@
}
},
{
- "id": 6505,
+ "id": 6731,
"properties": {
"down": "false",
"east": "false",
@@ -125366,7 +129763,7 @@
}
},
{
- "id": 6506,
+ "id": 6732,
"properties": {
"down": "false",
"east": "false",
@@ -125377,7 +129774,7 @@
}
},
{
- "id": 6507,
+ "id": 6733,
"properties": {
"down": "false",
"east": "false",
@@ -125388,7 +129785,7 @@
}
},
{
- "id": 6508,
+ "id": 6734,
"properties": {
"down": "false",
"east": "false",
@@ -125399,7 +129796,7 @@
}
},
{
- "id": 6509,
+ "id": 6735,
"properties": {
"down": "false",
"east": "false",
@@ -125410,7 +129807,7 @@
}
},
{
- "id": 6510,
+ "id": 6736,
"properties": {
"down": "false",
"east": "false",
@@ -125421,7 +129818,7 @@
}
},
{
- "id": 6511,
+ "id": 6737,
"properties": {
"down": "false",
"east": "false",
@@ -125442,14 +129839,14 @@
},
"states": [
{
- "id": 7039,
+ "id": 7265,
"properties": {
"snowy": "true"
}
},
{
"default": true,
- "id": 7040,
+ "id": 7266,
"properties": {
"snowy": "false"
}
@@ -125481,7 +129878,7 @@
},
"states": [
{
- "id": 7043,
+ "id": 7269,
"properties": {
"east": "true",
"north": "true",
@@ -125491,7 +129888,7 @@
}
},
{
- "id": 7044,
+ "id": 7270,
"properties": {
"east": "true",
"north": "true",
@@ -125501,7 +129898,7 @@
}
},
{
- "id": 7045,
+ "id": 7271,
"properties": {
"east": "true",
"north": "true",
@@ -125511,7 +129908,7 @@
}
},
{
- "id": 7046,
+ "id": 7272,
"properties": {
"east": "true",
"north": "true",
@@ -125521,7 +129918,7 @@
}
},
{
- "id": 7047,
+ "id": 7273,
"properties": {
"east": "true",
"north": "true",
@@ -125531,7 +129928,7 @@
}
},
{
- "id": 7048,
+ "id": 7274,
"properties": {
"east": "true",
"north": "true",
@@ -125541,7 +129938,7 @@
}
},
{
- "id": 7049,
+ "id": 7275,
"properties": {
"east": "true",
"north": "true",
@@ -125551,7 +129948,7 @@
}
},
{
- "id": 7050,
+ "id": 7276,
"properties": {
"east": "true",
"north": "true",
@@ -125561,7 +129958,7 @@
}
},
{
- "id": 7051,
+ "id": 7277,
"properties": {
"east": "true",
"north": "false",
@@ -125571,7 +129968,7 @@
}
},
{
- "id": 7052,
+ "id": 7278,
"properties": {
"east": "true",
"north": "false",
@@ -125581,7 +129978,7 @@
}
},
{
- "id": 7053,
+ "id": 7279,
"properties": {
"east": "true",
"north": "false",
@@ -125591,7 +129988,7 @@
}
},
{
- "id": 7054,
+ "id": 7280,
"properties": {
"east": "true",
"north": "false",
@@ -125601,7 +129998,7 @@
}
},
{
- "id": 7055,
+ "id": 7281,
"properties": {
"east": "true",
"north": "false",
@@ -125611,7 +130008,7 @@
}
},
{
- "id": 7056,
+ "id": 7282,
"properties": {
"east": "true",
"north": "false",
@@ -125621,7 +130018,7 @@
}
},
{
- "id": 7057,
+ "id": 7283,
"properties": {
"east": "true",
"north": "false",
@@ -125631,7 +130028,7 @@
}
},
{
- "id": 7058,
+ "id": 7284,
"properties": {
"east": "true",
"north": "false",
@@ -125641,7 +130038,7 @@
}
},
{
- "id": 7059,
+ "id": 7285,
"properties": {
"east": "false",
"north": "true",
@@ -125651,7 +130048,7 @@
}
},
{
- "id": 7060,
+ "id": 7286,
"properties": {
"east": "false",
"north": "true",
@@ -125661,7 +130058,7 @@
}
},
{
- "id": 7061,
+ "id": 7287,
"properties": {
"east": "false",
"north": "true",
@@ -125671,7 +130068,7 @@
}
},
{
- "id": 7062,
+ "id": 7288,
"properties": {
"east": "false",
"north": "true",
@@ -125681,7 +130078,7 @@
}
},
{
- "id": 7063,
+ "id": 7289,
"properties": {
"east": "false",
"north": "true",
@@ -125691,7 +130088,7 @@
}
},
{
- "id": 7064,
+ "id": 7290,
"properties": {
"east": "false",
"north": "true",
@@ -125701,7 +130098,7 @@
}
},
{
- "id": 7065,
+ "id": 7291,
"properties": {
"east": "false",
"north": "true",
@@ -125711,7 +130108,7 @@
}
},
{
- "id": 7066,
+ "id": 7292,
"properties": {
"east": "false",
"north": "true",
@@ -125721,7 +130118,7 @@
}
},
{
- "id": 7067,
+ "id": 7293,
"properties": {
"east": "false",
"north": "false",
@@ -125731,7 +130128,7 @@
}
},
{
- "id": 7068,
+ "id": 7294,
"properties": {
"east": "false",
"north": "false",
@@ -125741,7 +130138,7 @@
}
},
{
- "id": 7069,
+ "id": 7295,
"properties": {
"east": "false",
"north": "false",
@@ -125751,7 +130148,7 @@
}
},
{
- "id": 7070,
+ "id": 7296,
"properties": {
"east": "false",
"north": "false",
@@ -125761,7 +130158,7 @@
}
},
{
- "id": 7071,
+ "id": 7297,
"properties": {
"east": "false",
"north": "false",
@@ -125771,7 +130168,7 @@
}
},
{
- "id": 7072,
+ "id": 7298,
"properties": {
"east": "false",
"north": "false",
@@ -125781,7 +130178,7 @@
}
},
{
- "id": 7073,
+ "id": 7299,
"properties": {
"east": "false",
"north": "false",
@@ -125792,7 +130189,7 @@
},
{
"default": true,
- "id": 7074,
+ "id": 7300,
"properties": {
"east": "false",
"north": "false",
@@ -125817,21 +130214,21 @@
},
"states": [
{
- "id": 10793,
+ "id": 11131,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 10794,
+ "id": 11132,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 10795,
+ "id": 11133,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -125839,21 +130236,21 @@
},
{
"default": true,
- "id": 10796,
+ "id": 11134,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 10797,
+ "id": 11135,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 10798,
+ "id": 11136,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -125887,7 +130284,7 @@
},
"states": [
{
- "id": 7075,
+ "id": 7301,
"properties": {
"facing": "north",
"half": "top",
@@ -125896,7 +130293,7 @@
}
},
{
- "id": 7076,
+ "id": 7302,
"properties": {
"facing": "north",
"half": "top",
@@ -125905,7 +130302,7 @@
}
},
{
- "id": 7077,
+ "id": 7303,
"properties": {
"facing": "north",
"half": "top",
@@ -125914,7 +130311,7 @@
}
},
{
- "id": 7078,
+ "id": 7304,
"properties": {
"facing": "north",
"half": "top",
@@ -125923,7 +130320,7 @@
}
},
{
- "id": 7079,
+ "id": 7305,
"properties": {
"facing": "north",
"half": "top",
@@ -125932,7 +130329,7 @@
}
},
{
- "id": 7080,
+ "id": 7306,
"properties": {
"facing": "north",
"half": "top",
@@ -125941,7 +130338,7 @@
}
},
{
- "id": 7081,
+ "id": 7307,
"properties": {
"facing": "north",
"half": "top",
@@ -125950,7 +130347,7 @@
}
},
{
- "id": 7082,
+ "id": 7308,
"properties": {
"facing": "north",
"half": "top",
@@ -125959,7 +130356,7 @@
}
},
{
- "id": 7083,
+ "id": 7309,
"properties": {
"facing": "north",
"half": "top",
@@ -125968,7 +130365,7 @@
}
},
{
- "id": 7084,
+ "id": 7310,
"properties": {
"facing": "north",
"half": "top",
@@ -125977,7 +130374,7 @@
}
},
{
- "id": 7085,
+ "id": 7311,
"properties": {
"facing": "north",
"half": "bottom",
@@ -125987,7 +130384,7 @@
},
{
"default": true,
- "id": 7086,
+ "id": 7312,
"properties": {
"facing": "north",
"half": "bottom",
@@ -125996,7 +130393,7 @@
}
},
{
- "id": 7087,
+ "id": 7313,
"properties": {
"facing": "north",
"half": "bottom",
@@ -126005,7 +130402,7 @@
}
},
{
- "id": 7088,
+ "id": 7314,
"properties": {
"facing": "north",
"half": "bottom",
@@ -126014,7 +130411,7 @@
}
},
{
- "id": 7089,
+ "id": 7315,
"properties": {
"facing": "north",
"half": "bottom",
@@ -126023,7 +130420,7 @@
}
},
{
- "id": 7090,
+ "id": 7316,
"properties": {
"facing": "north",
"half": "bottom",
@@ -126032,7 +130429,7 @@
}
},
{
- "id": 7091,
+ "id": 7317,
"properties": {
"facing": "north",
"half": "bottom",
@@ -126041,7 +130438,7 @@
}
},
{
- "id": 7092,
+ "id": 7318,
"properties": {
"facing": "north",
"half": "bottom",
@@ -126050,7 +130447,7 @@
}
},
{
- "id": 7093,
+ "id": 7319,
"properties": {
"facing": "north",
"half": "bottom",
@@ -126059,7 +130456,7 @@
}
},
{
- "id": 7094,
+ "id": 7320,
"properties": {
"facing": "north",
"half": "bottom",
@@ -126068,7 +130465,7 @@
}
},
{
- "id": 7095,
+ "id": 7321,
"properties": {
"facing": "south",
"half": "top",
@@ -126077,7 +130474,7 @@
}
},
{
- "id": 7096,
+ "id": 7322,
"properties": {
"facing": "south",
"half": "top",
@@ -126086,7 +130483,7 @@
}
},
{
- "id": 7097,
+ "id": 7323,
"properties": {
"facing": "south",
"half": "top",
@@ -126095,7 +130492,7 @@
}
},
{
- "id": 7098,
+ "id": 7324,
"properties": {
"facing": "south",
"half": "top",
@@ -126104,7 +130501,7 @@
}
},
{
- "id": 7099,
+ "id": 7325,
"properties": {
"facing": "south",
"half": "top",
@@ -126113,7 +130510,7 @@
}
},
{
- "id": 7100,
+ "id": 7326,
"properties": {
"facing": "south",
"half": "top",
@@ -126122,7 +130519,7 @@
}
},
{
- "id": 7101,
+ "id": 7327,
"properties": {
"facing": "south",
"half": "top",
@@ -126131,7 +130528,7 @@
}
},
{
- "id": 7102,
+ "id": 7328,
"properties": {
"facing": "south",
"half": "top",
@@ -126140,7 +130537,7 @@
}
},
{
- "id": 7103,
+ "id": 7329,
"properties": {
"facing": "south",
"half": "top",
@@ -126149,7 +130546,7 @@
}
},
{
- "id": 7104,
+ "id": 7330,
"properties": {
"facing": "south",
"half": "top",
@@ -126158,7 +130555,7 @@
}
},
{
- "id": 7105,
+ "id": 7331,
"properties": {
"facing": "south",
"half": "bottom",
@@ -126167,7 +130564,7 @@
}
},
{
- "id": 7106,
+ "id": 7332,
"properties": {
"facing": "south",
"half": "bottom",
@@ -126176,7 +130573,7 @@
}
},
{
- "id": 7107,
+ "id": 7333,
"properties": {
"facing": "south",
"half": "bottom",
@@ -126185,7 +130582,7 @@
}
},
{
- "id": 7108,
+ "id": 7334,
"properties": {
"facing": "south",
"half": "bottom",
@@ -126194,7 +130591,7 @@
}
},
{
- "id": 7109,
+ "id": 7335,
"properties": {
"facing": "south",
"half": "bottom",
@@ -126203,7 +130600,7 @@
}
},
{
- "id": 7110,
+ "id": 7336,
"properties": {
"facing": "south",
"half": "bottom",
@@ -126212,7 +130609,7 @@
}
},
{
- "id": 7111,
+ "id": 7337,
"properties": {
"facing": "south",
"half": "bottom",
@@ -126221,7 +130618,7 @@
}
},
{
- "id": 7112,
+ "id": 7338,
"properties": {
"facing": "south",
"half": "bottom",
@@ -126230,7 +130627,7 @@
}
},
{
- "id": 7113,
+ "id": 7339,
"properties": {
"facing": "south",
"half": "bottom",
@@ -126239,7 +130636,7 @@
}
},
{
- "id": 7114,
+ "id": 7340,
"properties": {
"facing": "south",
"half": "bottom",
@@ -126248,7 +130645,7 @@
}
},
{
- "id": 7115,
+ "id": 7341,
"properties": {
"facing": "west",
"half": "top",
@@ -126257,7 +130654,7 @@
}
},
{
- "id": 7116,
+ "id": 7342,
"properties": {
"facing": "west",
"half": "top",
@@ -126266,7 +130663,7 @@
}
},
{
- "id": 7117,
+ "id": 7343,
"properties": {
"facing": "west",
"half": "top",
@@ -126275,7 +130672,7 @@
}
},
{
- "id": 7118,
+ "id": 7344,
"properties": {
"facing": "west",
"half": "top",
@@ -126284,7 +130681,7 @@
}
},
{
- "id": 7119,
+ "id": 7345,
"properties": {
"facing": "west",
"half": "top",
@@ -126293,7 +130690,7 @@
}
},
{
- "id": 7120,
+ "id": 7346,
"properties": {
"facing": "west",
"half": "top",
@@ -126302,7 +130699,7 @@
}
},
{
- "id": 7121,
+ "id": 7347,
"properties": {
"facing": "west",
"half": "top",
@@ -126311,7 +130708,7 @@
}
},
{
- "id": 7122,
+ "id": 7348,
"properties": {
"facing": "west",
"half": "top",
@@ -126320,7 +130717,7 @@
}
},
{
- "id": 7123,
+ "id": 7349,
"properties": {
"facing": "west",
"half": "top",
@@ -126329,7 +130726,7 @@
}
},
{
- "id": 7124,
+ "id": 7350,
"properties": {
"facing": "west",
"half": "top",
@@ -126338,7 +130735,7 @@
}
},
{
- "id": 7125,
+ "id": 7351,
"properties": {
"facing": "west",
"half": "bottom",
@@ -126347,7 +130744,7 @@
}
},
{
- "id": 7126,
+ "id": 7352,
"properties": {
"facing": "west",
"half": "bottom",
@@ -126356,7 +130753,7 @@
}
},
{
- "id": 7127,
+ "id": 7353,
"properties": {
"facing": "west",
"half": "bottom",
@@ -126365,7 +130762,7 @@
}
},
{
- "id": 7128,
+ "id": 7354,
"properties": {
"facing": "west",
"half": "bottom",
@@ -126374,7 +130771,7 @@
}
},
{
- "id": 7129,
+ "id": 7355,
"properties": {
"facing": "west",
"half": "bottom",
@@ -126383,7 +130780,7 @@
}
},
{
- "id": 7130,
+ "id": 7356,
"properties": {
"facing": "west",
"half": "bottom",
@@ -126392,7 +130789,7 @@
}
},
{
- "id": 7131,
+ "id": 7357,
"properties": {
"facing": "west",
"half": "bottom",
@@ -126401,7 +130798,7 @@
}
},
{
- "id": 7132,
+ "id": 7358,
"properties": {
"facing": "west",
"half": "bottom",
@@ -126410,7 +130807,7 @@
}
},
{
- "id": 7133,
+ "id": 7359,
"properties": {
"facing": "west",
"half": "bottom",
@@ -126419,7 +130816,7 @@
}
},
{
- "id": 7134,
+ "id": 7360,
"properties": {
"facing": "west",
"half": "bottom",
@@ -126428,7 +130825,7 @@
}
},
{
- "id": 7135,
+ "id": 7361,
"properties": {
"facing": "east",
"half": "top",
@@ -126437,7 +130834,7 @@
}
},
{
- "id": 7136,
+ "id": 7362,
"properties": {
"facing": "east",
"half": "top",
@@ -126446,7 +130843,7 @@
}
},
{
- "id": 7137,
+ "id": 7363,
"properties": {
"facing": "east",
"half": "top",
@@ -126455,7 +130852,7 @@
}
},
{
- "id": 7138,
+ "id": 7364,
"properties": {
"facing": "east",
"half": "top",
@@ -126464,7 +130861,7 @@
}
},
{
- "id": 7139,
+ "id": 7365,
"properties": {
"facing": "east",
"half": "top",
@@ -126473,7 +130870,7 @@
}
},
{
- "id": 7140,
+ "id": 7366,
"properties": {
"facing": "east",
"half": "top",
@@ -126482,7 +130879,7 @@
}
},
{
- "id": 7141,
+ "id": 7367,
"properties": {
"facing": "east",
"half": "top",
@@ -126491,7 +130888,7 @@
}
},
{
- "id": 7142,
+ "id": 7368,
"properties": {
"facing": "east",
"half": "top",
@@ -126500,7 +130897,7 @@
}
},
{
- "id": 7143,
+ "id": 7369,
"properties": {
"facing": "east",
"half": "top",
@@ -126509,7 +130906,7 @@
}
},
{
- "id": 7144,
+ "id": 7370,
"properties": {
"facing": "east",
"half": "top",
@@ -126518,7 +130915,7 @@
}
},
{
- "id": 7145,
+ "id": 7371,
"properties": {
"facing": "east",
"half": "bottom",
@@ -126527,7 +130924,7 @@
}
},
{
- "id": 7146,
+ "id": 7372,
"properties": {
"facing": "east",
"half": "bottom",
@@ -126536,7 +130933,7 @@
}
},
{
- "id": 7147,
+ "id": 7373,
"properties": {
"facing": "east",
"half": "bottom",
@@ -126545,7 +130942,7 @@
}
},
{
- "id": 7148,
+ "id": 7374,
"properties": {
"facing": "east",
"half": "bottom",
@@ -126554,7 +130951,7 @@
}
},
{
- "id": 7149,
+ "id": 7375,
"properties": {
"facing": "east",
"half": "bottom",
@@ -126563,7 +130960,7 @@
}
},
{
- "id": 7150,
+ "id": 7376,
"properties": {
"facing": "east",
"half": "bottom",
@@ -126572,7 +130969,7 @@
}
},
{
- "id": 7151,
+ "id": 7377,
"properties": {
"facing": "east",
"half": "bottom",
@@ -126581,7 +130978,7 @@
}
},
{
- "id": 7152,
+ "id": 7378,
"properties": {
"facing": "east",
"half": "bottom",
@@ -126590,7 +130987,7 @@
}
},
{
- "id": 7153,
+ "id": 7379,
"properties": {
"facing": "east",
"half": "bottom",
@@ -126599,7 +130996,7 @@
}
},
{
- "id": 7154,
+ "id": 7380,
"properties": {
"facing": "east",
"half": "bottom",
@@ -126642,7 +131039,7 @@
},
"states": [
{
- "id": 15800,
+ "id": 16269,
"properties": {
"east": "none",
"north": "none",
@@ -126653,7 +131050,7 @@
}
},
{
- "id": 15801,
+ "id": 16270,
"properties": {
"east": "none",
"north": "none",
@@ -126664,7 +131061,7 @@
}
},
{
- "id": 15802,
+ "id": 16271,
"properties": {
"east": "none",
"north": "none",
@@ -126676,7 +131073,7 @@
},
{
"default": true,
- "id": 15803,
+ "id": 16272,
"properties": {
"east": "none",
"north": "none",
@@ -126687,7 +131084,7 @@
}
},
{
- "id": 15804,
+ "id": 16273,
"properties": {
"east": "none",
"north": "none",
@@ -126698,7 +131095,7 @@
}
},
{
- "id": 15805,
+ "id": 16274,
"properties": {
"east": "none",
"north": "none",
@@ -126709,7 +131106,7 @@
}
},
{
- "id": 15806,
+ "id": 16275,
"properties": {
"east": "none",
"north": "none",
@@ -126720,7 +131117,7 @@
}
},
{
- "id": 15807,
+ "id": 16276,
"properties": {
"east": "none",
"north": "none",
@@ -126731,7 +131128,7 @@
}
},
{
- "id": 15808,
+ "id": 16277,
"properties": {
"east": "none",
"north": "none",
@@ -126742,7 +131139,7 @@
}
},
{
- "id": 15809,
+ "id": 16278,
"properties": {
"east": "none",
"north": "none",
@@ -126753,7 +131150,7 @@
}
},
{
- "id": 15810,
+ "id": 16279,
"properties": {
"east": "none",
"north": "none",
@@ -126764,7 +131161,7 @@
}
},
{
- "id": 15811,
+ "id": 16280,
"properties": {
"east": "none",
"north": "none",
@@ -126775,7 +131172,7 @@
}
},
{
- "id": 15812,
+ "id": 16281,
"properties": {
"east": "none",
"north": "none",
@@ -126786,7 +131183,7 @@
}
},
{
- "id": 15813,
+ "id": 16282,
"properties": {
"east": "none",
"north": "none",
@@ -126797,7 +131194,7 @@
}
},
{
- "id": 15814,
+ "id": 16283,
"properties": {
"east": "none",
"north": "none",
@@ -126808,7 +131205,7 @@
}
},
{
- "id": 15815,
+ "id": 16284,
"properties": {
"east": "none",
"north": "none",
@@ -126819,7 +131216,7 @@
}
},
{
- "id": 15816,
+ "id": 16285,
"properties": {
"east": "none",
"north": "none",
@@ -126830,7 +131227,7 @@
}
},
{
- "id": 15817,
+ "id": 16286,
"properties": {
"east": "none",
"north": "none",
@@ -126841,7 +131238,7 @@
}
},
{
- "id": 15818,
+ "id": 16287,
"properties": {
"east": "none",
"north": "none",
@@ -126852,7 +131249,7 @@
}
},
{
- "id": 15819,
+ "id": 16288,
"properties": {
"east": "none",
"north": "none",
@@ -126863,7 +131260,7 @@
}
},
{
- "id": 15820,
+ "id": 16289,
"properties": {
"east": "none",
"north": "none",
@@ -126874,7 +131271,7 @@
}
},
{
- "id": 15821,
+ "id": 16290,
"properties": {
"east": "none",
"north": "none",
@@ -126885,7 +131282,7 @@
}
},
{
- "id": 15822,
+ "id": 16291,
"properties": {
"east": "none",
"north": "none",
@@ -126896,7 +131293,7 @@
}
},
{
- "id": 15823,
+ "id": 16292,
"properties": {
"east": "none",
"north": "none",
@@ -126907,7 +131304,7 @@
}
},
{
- "id": 15824,
+ "id": 16293,
"properties": {
"east": "none",
"north": "none",
@@ -126918,7 +131315,7 @@
}
},
{
- "id": 15825,
+ "id": 16294,
"properties": {
"east": "none",
"north": "none",
@@ -126929,7 +131326,7 @@
}
},
{
- "id": 15826,
+ "id": 16295,
"properties": {
"east": "none",
"north": "none",
@@ -126940,7 +131337,7 @@
}
},
{
- "id": 15827,
+ "id": 16296,
"properties": {
"east": "none",
"north": "none",
@@ -126951,7 +131348,7 @@
}
},
{
- "id": 15828,
+ "id": 16297,
"properties": {
"east": "none",
"north": "none",
@@ -126962,7 +131359,7 @@
}
},
{
- "id": 15829,
+ "id": 16298,
"properties": {
"east": "none",
"north": "none",
@@ -126973,7 +131370,7 @@
}
},
{
- "id": 15830,
+ "id": 16299,
"properties": {
"east": "none",
"north": "none",
@@ -126984,7 +131381,7 @@
}
},
{
- "id": 15831,
+ "id": 16300,
"properties": {
"east": "none",
"north": "none",
@@ -126995,7 +131392,7 @@
}
},
{
- "id": 15832,
+ "id": 16301,
"properties": {
"east": "none",
"north": "none",
@@ -127006,7 +131403,7 @@
}
},
{
- "id": 15833,
+ "id": 16302,
"properties": {
"east": "none",
"north": "none",
@@ -127017,7 +131414,7 @@
}
},
{
- "id": 15834,
+ "id": 16303,
"properties": {
"east": "none",
"north": "none",
@@ -127028,7 +131425,7 @@
}
},
{
- "id": 15835,
+ "id": 16304,
"properties": {
"east": "none",
"north": "none",
@@ -127039,7 +131436,7 @@
}
},
{
- "id": 15836,
+ "id": 16305,
"properties": {
"east": "none",
"north": "low",
@@ -127050,7 +131447,7 @@
}
},
{
- "id": 15837,
+ "id": 16306,
"properties": {
"east": "none",
"north": "low",
@@ -127061,7 +131458,7 @@
}
},
{
- "id": 15838,
+ "id": 16307,
"properties": {
"east": "none",
"north": "low",
@@ -127072,7 +131469,7 @@
}
},
{
- "id": 15839,
+ "id": 16308,
"properties": {
"east": "none",
"north": "low",
@@ -127083,7 +131480,7 @@
}
},
{
- "id": 15840,
+ "id": 16309,
"properties": {
"east": "none",
"north": "low",
@@ -127094,7 +131491,7 @@
}
},
{
- "id": 15841,
+ "id": 16310,
"properties": {
"east": "none",
"north": "low",
@@ -127105,7 +131502,7 @@
}
},
{
- "id": 15842,
+ "id": 16311,
"properties": {
"east": "none",
"north": "low",
@@ -127116,7 +131513,7 @@
}
},
{
- "id": 15843,
+ "id": 16312,
"properties": {
"east": "none",
"north": "low",
@@ -127127,7 +131524,7 @@
}
},
{
- "id": 15844,
+ "id": 16313,
"properties": {
"east": "none",
"north": "low",
@@ -127138,7 +131535,7 @@
}
},
{
- "id": 15845,
+ "id": 16314,
"properties": {
"east": "none",
"north": "low",
@@ -127149,7 +131546,7 @@
}
},
{
- "id": 15846,
+ "id": 16315,
"properties": {
"east": "none",
"north": "low",
@@ -127160,7 +131557,7 @@
}
},
{
- "id": 15847,
+ "id": 16316,
"properties": {
"east": "none",
"north": "low",
@@ -127171,7 +131568,7 @@
}
},
{
- "id": 15848,
+ "id": 16317,
"properties": {
"east": "none",
"north": "low",
@@ -127182,7 +131579,7 @@
}
},
{
- "id": 15849,
+ "id": 16318,
"properties": {
"east": "none",
"north": "low",
@@ -127193,7 +131590,7 @@
}
},
{
- "id": 15850,
+ "id": 16319,
"properties": {
"east": "none",
"north": "low",
@@ -127204,7 +131601,7 @@
}
},
{
- "id": 15851,
+ "id": 16320,
"properties": {
"east": "none",
"north": "low",
@@ -127215,7 +131612,7 @@
}
},
{
- "id": 15852,
+ "id": 16321,
"properties": {
"east": "none",
"north": "low",
@@ -127226,7 +131623,7 @@
}
},
{
- "id": 15853,
+ "id": 16322,
"properties": {
"east": "none",
"north": "low",
@@ -127237,7 +131634,7 @@
}
},
{
- "id": 15854,
+ "id": 16323,
"properties": {
"east": "none",
"north": "low",
@@ -127248,7 +131645,7 @@
}
},
{
- "id": 15855,
+ "id": 16324,
"properties": {
"east": "none",
"north": "low",
@@ -127259,7 +131656,7 @@
}
},
{
- "id": 15856,
+ "id": 16325,
"properties": {
"east": "none",
"north": "low",
@@ -127270,7 +131667,7 @@
}
},
{
- "id": 15857,
+ "id": 16326,
"properties": {
"east": "none",
"north": "low",
@@ -127281,7 +131678,7 @@
}
},
{
- "id": 15858,
+ "id": 16327,
"properties": {
"east": "none",
"north": "low",
@@ -127292,7 +131689,7 @@
}
},
{
- "id": 15859,
+ "id": 16328,
"properties": {
"east": "none",
"north": "low",
@@ -127303,7 +131700,7 @@
}
},
{
- "id": 15860,
+ "id": 16329,
"properties": {
"east": "none",
"north": "low",
@@ -127314,7 +131711,7 @@
}
},
{
- "id": 15861,
+ "id": 16330,
"properties": {
"east": "none",
"north": "low",
@@ -127325,7 +131722,7 @@
}
},
{
- "id": 15862,
+ "id": 16331,
"properties": {
"east": "none",
"north": "low",
@@ -127336,7 +131733,7 @@
}
},
{
- "id": 15863,
+ "id": 16332,
"properties": {
"east": "none",
"north": "low",
@@ -127347,7 +131744,7 @@
}
},
{
- "id": 15864,
+ "id": 16333,
"properties": {
"east": "none",
"north": "low",
@@ -127358,7 +131755,7 @@
}
},
{
- "id": 15865,
+ "id": 16334,
"properties": {
"east": "none",
"north": "low",
@@ -127369,7 +131766,7 @@
}
},
{
- "id": 15866,
+ "id": 16335,
"properties": {
"east": "none",
"north": "low",
@@ -127380,7 +131777,7 @@
}
},
{
- "id": 15867,
+ "id": 16336,
"properties": {
"east": "none",
"north": "low",
@@ -127391,7 +131788,7 @@
}
},
{
- "id": 15868,
+ "id": 16337,
"properties": {
"east": "none",
"north": "low",
@@ -127402,7 +131799,7 @@
}
},
{
- "id": 15869,
+ "id": 16338,
"properties": {
"east": "none",
"north": "low",
@@ -127413,7 +131810,7 @@
}
},
{
- "id": 15870,
+ "id": 16339,
"properties": {
"east": "none",
"north": "low",
@@ -127424,7 +131821,7 @@
}
},
{
- "id": 15871,
+ "id": 16340,
"properties": {
"east": "none",
"north": "low",
@@ -127435,7 +131832,7 @@
}
},
{
- "id": 15872,
+ "id": 16341,
"properties": {
"east": "none",
"north": "tall",
@@ -127446,7 +131843,7 @@
}
},
{
- "id": 15873,
+ "id": 16342,
"properties": {
"east": "none",
"north": "tall",
@@ -127457,7 +131854,7 @@
}
},
{
- "id": 15874,
+ "id": 16343,
"properties": {
"east": "none",
"north": "tall",
@@ -127468,7 +131865,7 @@
}
},
{
- "id": 15875,
+ "id": 16344,
"properties": {
"east": "none",
"north": "tall",
@@ -127479,7 +131876,7 @@
}
},
{
- "id": 15876,
+ "id": 16345,
"properties": {
"east": "none",
"north": "tall",
@@ -127490,7 +131887,7 @@
}
},
{
- "id": 15877,
+ "id": 16346,
"properties": {
"east": "none",
"north": "tall",
@@ -127501,7 +131898,7 @@
}
},
{
- "id": 15878,
+ "id": 16347,
"properties": {
"east": "none",
"north": "tall",
@@ -127512,7 +131909,7 @@
}
},
{
- "id": 15879,
+ "id": 16348,
"properties": {
"east": "none",
"north": "tall",
@@ -127523,7 +131920,7 @@
}
},
{
- "id": 15880,
+ "id": 16349,
"properties": {
"east": "none",
"north": "tall",
@@ -127534,7 +131931,7 @@
}
},
{
- "id": 15881,
+ "id": 16350,
"properties": {
"east": "none",
"north": "tall",
@@ -127545,7 +131942,7 @@
}
},
{
- "id": 15882,
+ "id": 16351,
"properties": {
"east": "none",
"north": "tall",
@@ -127556,7 +131953,7 @@
}
},
{
- "id": 15883,
+ "id": 16352,
"properties": {
"east": "none",
"north": "tall",
@@ -127567,7 +131964,7 @@
}
},
{
- "id": 15884,
+ "id": 16353,
"properties": {
"east": "none",
"north": "tall",
@@ -127578,7 +131975,7 @@
}
},
{
- "id": 15885,
+ "id": 16354,
"properties": {
"east": "none",
"north": "tall",
@@ -127589,7 +131986,7 @@
}
},
{
- "id": 15886,
+ "id": 16355,
"properties": {
"east": "none",
"north": "tall",
@@ -127600,7 +131997,7 @@
}
},
{
- "id": 15887,
+ "id": 16356,
"properties": {
"east": "none",
"north": "tall",
@@ -127611,7 +132008,7 @@
}
},
{
- "id": 15888,
+ "id": 16357,
"properties": {
"east": "none",
"north": "tall",
@@ -127622,7 +132019,7 @@
}
},
{
- "id": 15889,
+ "id": 16358,
"properties": {
"east": "none",
"north": "tall",
@@ -127633,7 +132030,7 @@
}
},
{
- "id": 15890,
+ "id": 16359,
"properties": {
"east": "none",
"north": "tall",
@@ -127644,7 +132041,7 @@
}
},
{
- "id": 15891,
+ "id": 16360,
"properties": {
"east": "none",
"north": "tall",
@@ -127655,7 +132052,7 @@
}
},
{
- "id": 15892,
+ "id": 16361,
"properties": {
"east": "none",
"north": "tall",
@@ -127666,7 +132063,7 @@
}
},
{
- "id": 15893,
+ "id": 16362,
"properties": {
"east": "none",
"north": "tall",
@@ -127677,7 +132074,7 @@
}
},
{
- "id": 15894,
+ "id": 16363,
"properties": {
"east": "none",
"north": "tall",
@@ -127688,7 +132085,7 @@
}
},
{
- "id": 15895,
+ "id": 16364,
"properties": {
"east": "none",
"north": "tall",
@@ -127699,7 +132096,7 @@
}
},
{
- "id": 15896,
+ "id": 16365,
"properties": {
"east": "none",
"north": "tall",
@@ -127710,7 +132107,7 @@
}
},
{
- "id": 15897,
+ "id": 16366,
"properties": {
"east": "none",
"north": "tall",
@@ -127721,7 +132118,7 @@
}
},
{
- "id": 15898,
+ "id": 16367,
"properties": {
"east": "none",
"north": "tall",
@@ -127732,7 +132129,7 @@
}
},
{
- "id": 15899,
+ "id": 16368,
"properties": {
"east": "none",
"north": "tall",
@@ -127743,7 +132140,7 @@
}
},
{
- "id": 15900,
+ "id": 16369,
"properties": {
"east": "none",
"north": "tall",
@@ -127754,7 +132151,7 @@
}
},
{
- "id": 15901,
+ "id": 16370,
"properties": {
"east": "none",
"north": "tall",
@@ -127765,7 +132162,7 @@
}
},
{
- "id": 15902,
+ "id": 16371,
"properties": {
"east": "none",
"north": "tall",
@@ -127776,7 +132173,7 @@
}
},
{
- "id": 15903,
+ "id": 16372,
"properties": {
"east": "none",
"north": "tall",
@@ -127787,7 +132184,7 @@
}
},
{
- "id": 15904,
+ "id": 16373,
"properties": {
"east": "none",
"north": "tall",
@@ -127798,7 +132195,7 @@
}
},
{
- "id": 15905,
+ "id": 16374,
"properties": {
"east": "none",
"north": "tall",
@@ -127809,7 +132206,7 @@
}
},
{
- "id": 15906,
+ "id": 16375,
"properties": {
"east": "none",
"north": "tall",
@@ -127820,7 +132217,7 @@
}
},
{
- "id": 15907,
+ "id": 16376,
"properties": {
"east": "none",
"north": "tall",
@@ -127831,7 +132228,7 @@
}
},
{
- "id": 15908,
+ "id": 16377,
"properties": {
"east": "low",
"north": "none",
@@ -127842,7 +132239,7 @@
}
},
{
- "id": 15909,
+ "id": 16378,
"properties": {
"east": "low",
"north": "none",
@@ -127853,7 +132250,7 @@
}
},
{
- "id": 15910,
+ "id": 16379,
"properties": {
"east": "low",
"north": "none",
@@ -127864,7 +132261,7 @@
}
},
{
- "id": 15911,
+ "id": 16380,
"properties": {
"east": "low",
"north": "none",
@@ -127875,7 +132272,7 @@
}
},
{
- "id": 15912,
+ "id": 16381,
"properties": {
"east": "low",
"north": "none",
@@ -127886,7 +132283,7 @@
}
},
{
- "id": 15913,
+ "id": 16382,
"properties": {
"east": "low",
"north": "none",
@@ -127897,7 +132294,7 @@
}
},
{
- "id": 15914,
+ "id": 16383,
"properties": {
"east": "low",
"north": "none",
@@ -127908,7 +132305,7 @@
}
},
{
- "id": 15915,
+ "id": 16384,
"properties": {
"east": "low",
"north": "none",
@@ -127919,7 +132316,7 @@
}
},
{
- "id": 15916,
+ "id": 16385,
"properties": {
"east": "low",
"north": "none",
@@ -127930,7 +132327,7 @@
}
},
{
- "id": 15917,
+ "id": 16386,
"properties": {
"east": "low",
"north": "none",
@@ -127941,7 +132338,7 @@
}
},
{
- "id": 15918,
+ "id": 16387,
"properties": {
"east": "low",
"north": "none",
@@ -127952,7 +132349,7 @@
}
},
{
- "id": 15919,
+ "id": 16388,
"properties": {
"east": "low",
"north": "none",
@@ -127963,7 +132360,7 @@
}
},
{
- "id": 15920,
+ "id": 16389,
"properties": {
"east": "low",
"north": "none",
@@ -127974,7 +132371,7 @@
}
},
{
- "id": 15921,
+ "id": 16390,
"properties": {
"east": "low",
"north": "none",
@@ -127985,7 +132382,7 @@
}
},
{
- "id": 15922,
+ "id": 16391,
"properties": {
"east": "low",
"north": "none",
@@ -127996,7 +132393,7 @@
}
},
{
- "id": 15923,
+ "id": 16392,
"properties": {
"east": "low",
"north": "none",
@@ -128007,7 +132404,7 @@
}
},
{
- "id": 15924,
+ "id": 16393,
"properties": {
"east": "low",
"north": "none",
@@ -128018,7 +132415,7 @@
}
},
{
- "id": 15925,
+ "id": 16394,
"properties": {
"east": "low",
"north": "none",
@@ -128029,7 +132426,7 @@
}
},
{
- "id": 15926,
+ "id": 16395,
"properties": {
"east": "low",
"north": "none",
@@ -128040,7 +132437,7 @@
}
},
{
- "id": 15927,
+ "id": 16396,
"properties": {
"east": "low",
"north": "none",
@@ -128051,7 +132448,7 @@
}
},
{
- "id": 15928,
+ "id": 16397,
"properties": {
"east": "low",
"north": "none",
@@ -128062,7 +132459,7 @@
}
},
{
- "id": 15929,
+ "id": 16398,
"properties": {
"east": "low",
"north": "none",
@@ -128073,7 +132470,7 @@
}
},
{
- "id": 15930,
+ "id": 16399,
"properties": {
"east": "low",
"north": "none",
@@ -128084,7 +132481,7 @@
}
},
{
- "id": 15931,
+ "id": 16400,
"properties": {
"east": "low",
"north": "none",
@@ -128095,7 +132492,7 @@
}
},
{
- "id": 15932,
+ "id": 16401,
"properties": {
"east": "low",
"north": "none",
@@ -128106,7 +132503,7 @@
}
},
{
- "id": 15933,
+ "id": 16402,
"properties": {
"east": "low",
"north": "none",
@@ -128117,7 +132514,7 @@
}
},
{
- "id": 15934,
+ "id": 16403,
"properties": {
"east": "low",
"north": "none",
@@ -128128,7 +132525,7 @@
}
},
{
- "id": 15935,
+ "id": 16404,
"properties": {
"east": "low",
"north": "none",
@@ -128139,7 +132536,7 @@
}
},
{
- "id": 15936,
+ "id": 16405,
"properties": {
"east": "low",
"north": "none",
@@ -128150,7 +132547,7 @@
}
},
{
- "id": 15937,
+ "id": 16406,
"properties": {
"east": "low",
"north": "none",
@@ -128161,7 +132558,7 @@
}
},
{
- "id": 15938,
+ "id": 16407,
"properties": {
"east": "low",
"north": "none",
@@ -128172,7 +132569,7 @@
}
},
{
- "id": 15939,
+ "id": 16408,
"properties": {
"east": "low",
"north": "none",
@@ -128183,7 +132580,7 @@
}
},
{
- "id": 15940,
+ "id": 16409,
"properties": {
"east": "low",
"north": "none",
@@ -128194,7 +132591,7 @@
}
},
{
- "id": 15941,
+ "id": 16410,
"properties": {
"east": "low",
"north": "none",
@@ -128205,7 +132602,7 @@
}
},
{
- "id": 15942,
+ "id": 16411,
"properties": {
"east": "low",
"north": "none",
@@ -128216,7 +132613,7 @@
}
},
{
- "id": 15943,
+ "id": 16412,
"properties": {
"east": "low",
"north": "none",
@@ -128227,7 +132624,7 @@
}
},
{
- "id": 15944,
+ "id": 16413,
"properties": {
"east": "low",
"north": "low",
@@ -128238,7 +132635,7 @@
}
},
{
- "id": 15945,
+ "id": 16414,
"properties": {
"east": "low",
"north": "low",
@@ -128249,7 +132646,7 @@
}
},
{
- "id": 15946,
+ "id": 16415,
"properties": {
"east": "low",
"north": "low",
@@ -128260,7 +132657,7 @@
}
},
{
- "id": 15947,
+ "id": 16416,
"properties": {
"east": "low",
"north": "low",
@@ -128271,7 +132668,7 @@
}
},
{
- "id": 15948,
+ "id": 16417,
"properties": {
"east": "low",
"north": "low",
@@ -128282,7 +132679,7 @@
}
},
{
- "id": 15949,
+ "id": 16418,
"properties": {
"east": "low",
"north": "low",
@@ -128293,7 +132690,7 @@
}
},
{
- "id": 15950,
+ "id": 16419,
"properties": {
"east": "low",
"north": "low",
@@ -128304,7 +132701,7 @@
}
},
{
- "id": 15951,
+ "id": 16420,
"properties": {
"east": "low",
"north": "low",
@@ -128315,7 +132712,7 @@
}
},
{
- "id": 15952,
+ "id": 16421,
"properties": {
"east": "low",
"north": "low",
@@ -128326,7 +132723,7 @@
}
},
{
- "id": 15953,
+ "id": 16422,
"properties": {
"east": "low",
"north": "low",
@@ -128337,7 +132734,7 @@
}
},
{
- "id": 15954,
+ "id": 16423,
"properties": {
"east": "low",
"north": "low",
@@ -128348,7 +132745,7 @@
}
},
{
- "id": 15955,
+ "id": 16424,
"properties": {
"east": "low",
"north": "low",
@@ -128359,7 +132756,7 @@
}
},
{
- "id": 15956,
+ "id": 16425,
"properties": {
"east": "low",
"north": "low",
@@ -128370,7 +132767,7 @@
}
},
{
- "id": 15957,
+ "id": 16426,
"properties": {
"east": "low",
"north": "low",
@@ -128381,7 +132778,7 @@
}
},
{
- "id": 15958,
+ "id": 16427,
"properties": {
"east": "low",
"north": "low",
@@ -128392,7 +132789,7 @@
}
},
{
- "id": 15959,
+ "id": 16428,
"properties": {
"east": "low",
"north": "low",
@@ -128403,7 +132800,7 @@
}
},
{
- "id": 15960,
+ "id": 16429,
"properties": {
"east": "low",
"north": "low",
@@ -128414,7 +132811,7 @@
}
},
{
- "id": 15961,
+ "id": 16430,
"properties": {
"east": "low",
"north": "low",
@@ -128425,7 +132822,7 @@
}
},
{
- "id": 15962,
+ "id": 16431,
"properties": {
"east": "low",
"north": "low",
@@ -128436,7 +132833,7 @@
}
},
{
- "id": 15963,
+ "id": 16432,
"properties": {
"east": "low",
"north": "low",
@@ -128447,7 +132844,7 @@
}
},
{
- "id": 15964,
+ "id": 16433,
"properties": {
"east": "low",
"north": "low",
@@ -128458,7 +132855,7 @@
}
},
{
- "id": 15965,
+ "id": 16434,
"properties": {
"east": "low",
"north": "low",
@@ -128469,7 +132866,7 @@
}
},
{
- "id": 15966,
+ "id": 16435,
"properties": {
"east": "low",
"north": "low",
@@ -128480,7 +132877,7 @@
}
},
{
- "id": 15967,
+ "id": 16436,
"properties": {
"east": "low",
"north": "low",
@@ -128491,7 +132888,7 @@
}
},
{
- "id": 15968,
+ "id": 16437,
"properties": {
"east": "low",
"north": "low",
@@ -128502,7 +132899,7 @@
}
},
{
- "id": 15969,
+ "id": 16438,
"properties": {
"east": "low",
"north": "low",
@@ -128513,7 +132910,7 @@
}
},
{
- "id": 15970,
+ "id": 16439,
"properties": {
"east": "low",
"north": "low",
@@ -128524,7 +132921,7 @@
}
},
{
- "id": 15971,
+ "id": 16440,
"properties": {
"east": "low",
"north": "low",
@@ -128535,7 +132932,7 @@
}
},
{
- "id": 15972,
+ "id": 16441,
"properties": {
"east": "low",
"north": "low",
@@ -128546,7 +132943,7 @@
}
},
{
- "id": 15973,
+ "id": 16442,
"properties": {
"east": "low",
"north": "low",
@@ -128557,7 +132954,7 @@
}
},
{
- "id": 15974,
+ "id": 16443,
"properties": {
"east": "low",
"north": "low",
@@ -128568,7 +132965,7 @@
}
},
{
- "id": 15975,
+ "id": 16444,
"properties": {
"east": "low",
"north": "low",
@@ -128579,7 +132976,7 @@
}
},
{
- "id": 15976,
+ "id": 16445,
"properties": {
"east": "low",
"north": "low",
@@ -128590,7 +132987,7 @@
}
},
{
- "id": 15977,
+ "id": 16446,
"properties": {
"east": "low",
"north": "low",
@@ -128601,7 +132998,7 @@
}
},
{
- "id": 15978,
+ "id": 16447,
"properties": {
"east": "low",
"north": "low",
@@ -128612,7 +133009,7 @@
}
},
{
- "id": 15979,
+ "id": 16448,
"properties": {
"east": "low",
"north": "low",
@@ -128623,7 +133020,7 @@
}
},
{
- "id": 15980,
+ "id": 16449,
"properties": {
"east": "low",
"north": "tall",
@@ -128634,7 +133031,7 @@
}
},
{
- "id": 15981,
+ "id": 16450,
"properties": {
"east": "low",
"north": "tall",
@@ -128645,7 +133042,7 @@
}
},
{
- "id": 15982,
+ "id": 16451,
"properties": {
"east": "low",
"north": "tall",
@@ -128656,7 +133053,7 @@
}
},
{
- "id": 15983,
+ "id": 16452,
"properties": {
"east": "low",
"north": "tall",
@@ -128667,7 +133064,7 @@
}
},
{
- "id": 15984,
+ "id": 16453,
"properties": {
"east": "low",
"north": "tall",
@@ -128678,7 +133075,7 @@
}
},
{
- "id": 15985,
+ "id": 16454,
"properties": {
"east": "low",
"north": "tall",
@@ -128689,7 +133086,7 @@
}
},
{
- "id": 15986,
+ "id": 16455,
"properties": {
"east": "low",
"north": "tall",
@@ -128700,7 +133097,7 @@
}
},
{
- "id": 15987,
+ "id": 16456,
"properties": {
"east": "low",
"north": "tall",
@@ -128711,7 +133108,7 @@
}
},
{
- "id": 15988,
+ "id": 16457,
"properties": {
"east": "low",
"north": "tall",
@@ -128722,7 +133119,7 @@
}
},
{
- "id": 15989,
+ "id": 16458,
"properties": {
"east": "low",
"north": "tall",
@@ -128733,7 +133130,7 @@
}
},
{
- "id": 15990,
+ "id": 16459,
"properties": {
"east": "low",
"north": "tall",
@@ -128744,7 +133141,7 @@
}
},
{
- "id": 15991,
+ "id": 16460,
"properties": {
"east": "low",
"north": "tall",
@@ -128755,7 +133152,7 @@
}
},
{
- "id": 15992,
+ "id": 16461,
"properties": {
"east": "low",
"north": "tall",
@@ -128766,7 +133163,7 @@
}
},
{
- "id": 15993,
+ "id": 16462,
"properties": {
"east": "low",
"north": "tall",
@@ -128777,7 +133174,7 @@
}
},
{
- "id": 15994,
+ "id": 16463,
"properties": {
"east": "low",
"north": "tall",
@@ -128788,7 +133185,7 @@
}
},
{
- "id": 15995,
+ "id": 16464,
"properties": {
"east": "low",
"north": "tall",
@@ -128799,7 +133196,7 @@
}
},
{
- "id": 15996,
+ "id": 16465,
"properties": {
"east": "low",
"north": "tall",
@@ -128810,7 +133207,7 @@
}
},
{
- "id": 15997,
+ "id": 16466,
"properties": {
"east": "low",
"north": "tall",
@@ -128821,7 +133218,7 @@
}
},
{
- "id": 15998,
+ "id": 16467,
"properties": {
"east": "low",
"north": "tall",
@@ -128832,7 +133229,7 @@
}
},
{
- "id": 15999,
+ "id": 16468,
"properties": {
"east": "low",
"north": "tall",
@@ -128843,7 +133240,7 @@
}
},
{
- "id": 16000,
+ "id": 16469,
"properties": {
"east": "low",
"north": "tall",
@@ -128854,7 +133251,7 @@
}
},
{
- "id": 16001,
+ "id": 16470,
"properties": {
"east": "low",
"north": "tall",
@@ -128865,7 +133262,7 @@
}
},
{
- "id": 16002,
+ "id": 16471,
"properties": {
"east": "low",
"north": "tall",
@@ -128876,7 +133273,7 @@
}
},
{
- "id": 16003,
+ "id": 16472,
"properties": {
"east": "low",
"north": "tall",
@@ -128887,7 +133284,7 @@
}
},
{
- "id": 16004,
+ "id": 16473,
"properties": {
"east": "low",
"north": "tall",
@@ -128898,7 +133295,7 @@
}
},
{
- "id": 16005,
+ "id": 16474,
"properties": {
"east": "low",
"north": "tall",
@@ -128909,7 +133306,7 @@
}
},
{
- "id": 16006,
+ "id": 16475,
"properties": {
"east": "low",
"north": "tall",
@@ -128920,7 +133317,7 @@
}
},
{
- "id": 16007,
+ "id": 16476,
"properties": {
"east": "low",
"north": "tall",
@@ -128931,7 +133328,7 @@
}
},
{
- "id": 16008,
+ "id": 16477,
"properties": {
"east": "low",
"north": "tall",
@@ -128942,7 +133339,7 @@
}
},
{
- "id": 16009,
+ "id": 16478,
"properties": {
"east": "low",
"north": "tall",
@@ -128953,7 +133350,7 @@
}
},
{
- "id": 16010,
+ "id": 16479,
"properties": {
"east": "low",
"north": "tall",
@@ -128964,7 +133361,7 @@
}
},
{
- "id": 16011,
+ "id": 16480,
"properties": {
"east": "low",
"north": "tall",
@@ -128975,7 +133372,7 @@
}
},
{
- "id": 16012,
+ "id": 16481,
"properties": {
"east": "low",
"north": "tall",
@@ -128986,7 +133383,7 @@
}
},
{
- "id": 16013,
+ "id": 16482,
"properties": {
"east": "low",
"north": "tall",
@@ -128997,7 +133394,7 @@
}
},
{
- "id": 16014,
+ "id": 16483,
"properties": {
"east": "low",
"north": "tall",
@@ -129008,7 +133405,7 @@
}
},
{
- "id": 16015,
+ "id": 16484,
"properties": {
"east": "low",
"north": "tall",
@@ -129019,7 +133416,7 @@
}
},
{
- "id": 16016,
+ "id": 16485,
"properties": {
"east": "tall",
"north": "none",
@@ -129030,7 +133427,7 @@
}
},
{
- "id": 16017,
+ "id": 16486,
"properties": {
"east": "tall",
"north": "none",
@@ -129041,7 +133438,7 @@
}
},
{
- "id": 16018,
+ "id": 16487,
"properties": {
"east": "tall",
"north": "none",
@@ -129052,7 +133449,7 @@
}
},
{
- "id": 16019,
+ "id": 16488,
"properties": {
"east": "tall",
"north": "none",
@@ -129063,7 +133460,7 @@
}
},
{
- "id": 16020,
+ "id": 16489,
"properties": {
"east": "tall",
"north": "none",
@@ -129074,7 +133471,7 @@
}
},
{
- "id": 16021,
+ "id": 16490,
"properties": {
"east": "tall",
"north": "none",
@@ -129085,7 +133482,7 @@
}
},
{
- "id": 16022,
+ "id": 16491,
"properties": {
"east": "tall",
"north": "none",
@@ -129096,7 +133493,7 @@
}
},
{
- "id": 16023,
+ "id": 16492,
"properties": {
"east": "tall",
"north": "none",
@@ -129107,7 +133504,7 @@
}
},
{
- "id": 16024,
+ "id": 16493,
"properties": {
"east": "tall",
"north": "none",
@@ -129118,7 +133515,7 @@
}
},
{
- "id": 16025,
+ "id": 16494,
"properties": {
"east": "tall",
"north": "none",
@@ -129129,7 +133526,7 @@
}
},
{
- "id": 16026,
+ "id": 16495,
"properties": {
"east": "tall",
"north": "none",
@@ -129140,7 +133537,7 @@
}
},
{
- "id": 16027,
+ "id": 16496,
"properties": {
"east": "tall",
"north": "none",
@@ -129151,7 +133548,7 @@
}
},
{
- "id": 16028,
+ "id": 16497,
"properties": {
"east": "tall",
"north": "none",
@@ -129162,7 +133559,7 @@
}
},
{
- "id": 16029,
+ "id": 16498,
"properties": {
"east": "tall",
"north": "none",
@@ -129173,7 +133570,7 @@
}
},
{
- "id": 16030,
+ "id": 16499,
"properties": {
"east": "tall",
"north": "none",
@@ -129184,7 +133581,7 @@
}
},
{
- "id": 16031,
+ "id": 16500,
"properties": {
"east": "tall",
"north": "none",
@@ -129195,7 +133592,7 @@
}
},
{
- "id": 16032,
+ "id": 16501,
"properties": {
"east": "tall",
"north": "none",
@@ -129206,7 +133603,7 @@
}
},
{
- "id": 16033,
+ "id": 16502,
"properties": {
"east": "tall",
"north": "none",
@@ -129217,7 +133614,7 @@
}
},
{
- "id": 16034,
+ "id": 16503,
"properties": {
"east": "tall",
"north": "none",
@@ -129228,7 +133625,7 @@
}
},
{
- "id": 16035,
+ "id": 16504,
"properties": {
"east": "tall",
"north": "none",
@@ -129239,7 +133636,7 @@
}
},
{
- "id": 16036,
+ "id": 16505,
"properties": {
"east": "tall",
"north": "none",
@@ -129250,7 +133647,7 @@
}
},
{
- "id": 16037,
+ "id": 16506,
"properties": {
"east": "tall",
"north": "none",
@@ -129261,7 +133658,7 @@
}
},
{
- "id": 16038,
+ "id": 16507,
"properties": {
"east": "tall",
"north": "none",
@@ -129272,7 +133669,7 @@
}
},
{
- "id": 16039,
+ "id": 16508,
"properties": {
"east": "tall",
"north": "none",
@@ -129283,7 +133680,7 @@
}
},
{
- "id": 16040,
+ "id": 16509,
"properties": {
"east": "tall",
"north": "none",
@@ -129294,7 +133691,7 @@
}
},
{
- "id": 16041,
+ "id": 16510,
"properties": {
"east": "tall",
"north": "none",
@@ -129305,7 +133702,7 @@
}
},
{
- "id": 16042,
+ "id": 16511,
"properties": {
"east": "tall",
"north": "none",
@@ -129316,7 +133713,7 @@
}
},
{
- "id": 16043,
+ "id": 16512,
"properties": {
"east": "tall",
"north": "none",
@@ -129327,7 +133724,7 @@
}
},
{
- "id": 16044,
+ "id": 16513,
"properties": {
"east": "tall",
"north": "none",
@@ -129338,7 +133735,7 @@
}
},
{
- "id": 16045,
+ "id": 16514,
"properties": {
"east": "tall",
"north": "none",
@@ -129349,7 +133746,7 @@
}
},
{
- "id": 16046,
+ "id": 16515,
"properties": {
"east": "tall",
"north": "none",
@@ -129360,7 +133757,7 @@
}
},
{
- "id": 16047,
+ "id": 16516,
"properties": {
"east": "tall",
"north": "none",
@@ -129371,7 +133768,7 @@
}
},
{
- "id": 16048,
+ "id": 16517,
"properties": {
"east": "tall",
"north": "none",
@@ -129382,7 +133779,7 @@
}
},
{
- "id": 16049,
+ "id": 16518,
"properties": {
"east": "tall",
"north": "none",
@@ -129393,7 +133790,7 @@
}
},
{
- "id": 16050,
+ "id": 16519,
"properties": {
"east": "tall",
"north": "none",
@@ -129404,7 +133801,7 @@
}
},
{
- "id": 16051,
+ "id": 16520,
"properties": {
"east": "tall",
"north": "none",
@@ -129415,7 +133812,7 @@
}
},
{
- "id": 16052,
+ "id": 16521,
"properties": {
"east": "tall",
"north": "low",
@@ -129426,7 +133823,7 @@
}
},
{
- "id": 16053,
+ "id": 16522,
"properties": {
"east": "tall",
"north": "low",
@@ -129437,7 +133834,7 @@
}
},
{
- "id": 16054,
+ "id": 16523,
"properties": {
"east": "tall",
"north": "low",
@@ -129448,7 +133845,7 @@
}
},
{
- "id": 16055,
+ "id": 16524,
"properties": {
"east": "tall",
"north": "low",
@@ -129459,7 +133856,7 @@
}
},
{
- "id": 16056,
+ "id": 16525,
"properties": {
"east": "tall",
"north": "low",
@@ -129470,7 +133867,7 @@
}
},
{
- "id": 16057,
+ "id": 16526,
"properties": {
"east": "tall",
"north": "low",
@@ -129481,7 +133878,7 @@
}
},
{
- "id": 16058,
+ "id": 16527,
"properties": {
"east": "tall",
"north": "low",
@@ -129492,7 +133889,7 @@
}
},
{
- "id": 16059,
+ "id": 16528,
"properties": {
"east": "tall",
"north": "low",
@@ -129503,7 +133900,7 @@
}
},
{
- "id": 16060,
+ "id": 16529,
"properties": {
"east": "tall",
"north": "low",
@@ -129514,7 +133911,7 @@
}
},
{
- "id": 16061,
+ "id": 16530,
"properties": {
"east": "tall",
"north": "low",
@@ -129525,7 +133922,7 @@
}
},
{
- "id": 16062,
+ "id": 16531,
"properties": {
"east": "tall",
"north": "low",
@@ -129536,7 +133933,7 @@
}
},
{
- "id": 16063,
+ "id": 16532,
"properties": {
"east": "tall",
"north": "low",
@@ -129547,7 +133944,7 @@
}
},
{
- "id": 16064,
+ "id": 16533,
"properties": {
"east": "tall",
"north": "low",
@@ -129558,7 +133955,7 @@
}
},
{
- "id": 16065,
+ "id": 16534,
"properties": {
"east": "tall",
"north": "low",
@@ -129569,7 +133966,7 @@
}
},
{
- "id": 16066,
+ "id": 16535,
"properties": {
"east": "tall",
"north": "low",
@@ -129580,7 +133977,7 @@
}
},
{
- "id": 16067,
+ "id": 16536,
"properties": {
"east": "tall",
"north": "low",
@@ -129591,7 +133988,7 @@
}
},
{
- "id": 16068,
+ "id": 16537,
"properties": {
"east": "tall",
"north": "low",
@@ -129602,7 +133999,7 @@
}
},
{
- "id": 16069,
+ "id": 16538,
"properties": {
"east": "tall",
"north": "low",
@@ -129613,7 +134010,7 @@
}
},
{
- "id": 16070,
+ "id": 16539,
"properties": {
"east": "tall",
"north": "low",
@@ -129624,7 +134021,7 @@
}
},
{
- "id": 16071,
+ "id": 16540,
"properties": {
"east": "tall",
"north": "low",
@@ -129635,7 +134032,7 @@
}
},
{
- "id": 16072,
+ "id": 16541,
"properties": {
"east": "tall",
"north": "low",
@@ -129646,7 +134043,7 @@
}
},
{
- "id": 16073,
+ "id": 16542,
"properties": {
"east": "tall",
"north": "low",
@@ -129657,7 +134054,7 @@
}
},
{
- "id": 16074,
+ "id": 16543,
"properties": {
"east": "tall",
"north": "low",
@@ -129668,7 +134065,7 @@
}
},
{
- "id": 16075,
+ "id": 16544,
"properties": {
"east": "tall",
"north": "low",
@@ -129679,7 +134076,7 @@
}
},
{
- "id": 16076,
+ "id": 16545,
"properties": {
"east": "tall",
"north": "low",
@@ -129690,7 +134087,7 @@
}
},
{
- "id": 16077,
+ "id": 16546,
"properties": {
"east": "tall",
"north": "low",
@@ -129701,7 +134098,7 @@
}
},
{
- "id": 16078,
+ "id": 16547,
"properties": {
"east": "tall",
"north": "low",
@@ -129712,7 +134109,7 @@
}
},
{
- "id": 16079,
+ "id": 16548,
"properties": {
"east": "tall",
"north": "low",
@@ -129723,7 +134120,7 @@
}
},
{
- "id": 16080,
+ "id": 16549,
"properties": {
"east": "tall",
"north": "low",
@@ -129734,7 +134131,7 @@
}
},
{
- "id": 16081,
+ "id": 16550,
"properties": {
"east": "tall",
"north": "low",
@@ -129745,7 +134142,7 @@
}
},
{
- "id": 16082,
+ "id": 16551,
"properties": {
"east": "tall",
"north": "low",
@@ -129756,7 +134153,7 @@
}
},
{
- "id": 16083,
+ "id": 16552,
"properties": {
"east": "tall",
"north": "low",
@@ -129767,7 +134164,7 @@
}
},
{
- "id": 16084,
+ "id": 16553,
"properties": {
"east": "tall",
"north": "low",
@@ -129778,7 +134175,7 @@
}
},
{
- "id": 16085,
+ "id": 16554,
"properties": {
"east": "tall",
"north": "low",
@@ -129789,7 +134186,7 @@
}
},
{
- "id": 16086,
+ "id": 16555,
"properties": {
"east": "tall",
"north": "low",
@@ -129800,7 +134197,7 @@
}
},
{
- "id": 16087,
+ "id": 16556,
"properties": {
"east": "tall",
"north": "low",
@@ -129811,7 +134208,7 @@
}
},
{
- "id": 16088,
+ "id": 16557,
"properties": {
"east": "tall",
"north": "tall",
@@ -129822,7 +134219,7 @@
}
},
{
- "id": 16089,
+ "id": 16558,
"properties": {
"east": "tall",
"north": "tall",
@@ -129833,7 +134230,7 @@
}
},
{
- "id": 16090,
+ "id": 16559,
"properties": {
"east": "tall",
"north": "tall",
@@ -129844,7 +134241,7 @@
}
},
{
- "id": 16091,
+ "id": 16560,
"properties": {
"east": "tall",
"north": "tall",
@@ -129855,7 +134252,7 @@
}
},
{
- "id": 16092,
+ "id": 16561,
"properties": {
"east": "tall",
"north": "tall",
@@ -129866,7 +134263,7 @@
}
},
{
- "id": 16093,
+ "id": 16562,
"properties": {
"east": "tall",
"north": "tall",
@@ -129877,7 +134274,7 @@
}
},
{
- "id": 16094,
+ "id": 16563,
"properties": {
"east": "tall",
"north": "tall",
@@ -129888,7 +134285,7 @@
}
},
{
- "id": 16095,
+ "id": 16564,
"properties": {
"east": "tall",
"north": "tall",
@@ -129899,7 +134296,7 @@
}
},
{
- "id": 16096,
+ "id": 16565,
"properties": {
"east": "tall",
"north": "tall",
@@ -129910,7 +134307,7 @@
}
},
{
- "id": 16097,
+ "id": 16566,
"properties": {
"east": "tall",
"north": "tall",
@@ -129921,7 +134318,7 @@
}
},
{
- "id": 16098,
+ "id": 16567,
"properties": {
"east": "tall",
"north": "tall",
@@ -129932,7 +134329,7 @@
}
},
{
- "id": 16099,
+ "id": 16568,
"properties": {
"east": "tall",
"north": "tall",
@@ -129943,7 +134340,7 @@
}
},
{
- "id": 16100,
+ "id": 16569,
"properties": {
"east": "tall",
"north": "tall",
@@ -129954,7 +134351,7 @@
}
},
{
- "id": 16101,
+ "id": 16570,
"properties": {
"east": "tall",
"north": "tall",
@@ -129965,7 +134362,7 @@
}
},
{
- "id": 16102,
+ "id": 16571,
"properties": {
"east": "tall",
"north": "tall",
@@ -129976,7 +134373,7 @@
}
},
{
- "id": 16103,
+ "id": 16572,
"properties": {
"east": "tall",
"north": "tall",
@@ -129987,7 +134384,7 @@
}
},
{
- "id": 16104,
+ "id": 16573,
"properties": {
"east": "tall",
"north": "tall",
@@ -129998,7 +134395,7 @@
}
},
{
- "id": 16105,
+ "id": 16574,
"properties": {
"east": "tall",
"north": "tall",
@@ -130009,7 +134406,7 @@
}
},
{
- "id": 16106,
+ "id": 16575,
"properties": {
"east": "tall",
"north": "tall",
@@ -130020,7 +134417,7 @@
}
},
{
- "id": 16107,
+ "id": 16576,
"properties": {
"east": "tall",
"north": "tall",
@@ -130031,7 +134428,7 @@
}
},
{
- "id": 16108,
+ "id": 16577,
"properties": {
"east": "tall",
"north": "tall",
@@ -130042,7 +134439,7 @@
}
},
{
- "id": 16109,
+ "id": 16578,
"properties": {
"east": "tall",
"north": "tall",
@@ -130053,7 +134450,7 @@
}
},
{
- "id": 16110,
+ "id": 16579,
"properties": {
"east": "tall",
"north": "tall",
@@ -130064,7 +134461,7 @@
}
},
{
- "id": 16111,
+ "id": 16580,
"properties": {
"east": "tall",
"north": "tall",
@@ -130075,7 +134472,7 @@
}
},
{
- "id": 16112,
+ "id": 16581,
"properties": {
"east": "tall",
"north": "tall",
@@ -130086,7 +134483,7 @@
}
},
{
- "id": 16113,
+ "id": 16582,
"properties": {
"east": "tall",
"north": "tall",
@@ -130097,7 +134494,7 @@
}
},
{
- "id": 16114,
+ "id": 16583,
"properties": {
"east": "tall",
"north": "tall",
@@ -130108,7 +134505,7 @@
}
},
{
- "id": 16115,
+ "id": 16584,
"properties": {
"east": "tall",
"north": "tall",
@@ -130119,7 +134516,7 @@
}
},
{
- "id": 16116,
+ "id": 16585,
"properties": {
"east": "tall",
"north": "tall",
@@ -130130,7 +134527,7 @@
}
},
{
- "id": 16117,
+ "id": 16586,
"properties": {
"east": "tall",
"north": "tall",
@@ -130141,7 +134538,7 @@
}
},
{
- "id": 16118,
+ "id": 16587,
"properties": {
"east": "tall",
"north": "tall",
@@ -130152,7 +134549,7 @@
}
},
{
- "id": 16119,
+ "id": 16588,
"properties": {
"east": "tall",
"north": "tall",
@@ -130163,7 +134560,7 @@
}
},
{
- "id": 16120,
+ "id": 16589,
"properties": {
"east": "tall",
"north": "tall",
@@ -130174,7 +134571,7 @@
}
},
{
- "id": 16121,
+ "id": 16590,
"properties": {
"east": "tall",
"north": "tall",
@@ -130185,7 +134582,7 @@
}
},
{
- "id": 16122,
+ "id": 16591,
"properties": {
"east": "tall",
"north": "tall",
@@ -130196,7 +134593,7 @@
}
},
{
- "id": 16123,
+ "id": 16592,
"properties": {
"east": "tall",
"north": "tall",
@@ -130212,7 +134609,7 @@
"states": [
{
"default": true,
- "id": 7042
+ "id": 7268
}
]
},
@@ -130220,7 +134617,7 @@
"states": [
{
"default": true,
- "id": 118
+ "id": 125
}
]
},
@@ -130234,13 +134631,13 @@
"states": [
{
"default": true,
- "id": 5699,
+ "id": 5861,
"properties": {
"axis": "x"
}
},
{
- "id": 5700,
+ "id": 5862,
"properties": {
"axis": "z"
}
@@ -130251,7 +134648,7 @@
"states": [
{
"default": true,
- "id": 8828
+ "id": 9080
}
]
},
@@ -130259,7 +134656,7 @@
"states": [
{
"default": true,
- "id": 17967
+ "id": 18436
}
]
},
@@ -130275,25 +134672,25 @@
"states": [
{
"default": true,
- "id": 7155,
+ "id": 7381,
"properties": {
"age": "0"
}
},
{
- "id": 7156,
+ "id": 7382,
"properties": {
"age": "1"
}
},
{
- "id": 7157,
+ "id": 7383,
"properties": {
"age": "2"
}
},
{
- "id": 7158,
+ "id": 7384,
"properties": {
"age": "3"
}
@@ -130304,7 +134701,7 @@
"states": [
{
"default": true,
- "id": 11919
+ "id": 12388
}
]
},
@@ -130312,7 +134709,7 @@
"states": [
{
"default": true,
- "id": 18819
+ "id": 19288
}
]
},
@@ -130320,7 +134717,7 @@
"states": [
{
"default": true,
- "id": 5684
+ "id": 5846
}
]
},
@@ -130385,7 +134782,7 @@
},
"states": [
{
- "id": 487,
+ "id": 534,
"properties": {
"instrument": "harp",
"note": "0",
@@ -130394,783 +134791,783 @@
},
{
"default": true,
- "id": 488,
+ "id": 535,
"properties": {
"instrument": "harp",
"note": "0",
"powered": "false"
}
},
- {
- "id": 489,
- "properties": {
- "instrument": "harp",
- "note": "1",
- "powered": "true"
- }
- },
- {
- "id": 490,
- "properties": {
- "instrument": "harp",
- "note": "1",
- "powered": "false"
- }
- },
- {
- "id": 491,
- "properties": {
- "instrument": "harp",
- "note": "2",
- "powered": "true"
- }
- },
- {
- "id": 492,
- "properties": {
- "instrument": "harp",
- "note": "2",
- "powered": "false"
- }
- },
- {
- "id": 493,
- "properties": {
- "instrument": "harp",
- "note": "3",
- "powered": "true"
- }
- },
- {
- "id": 494,
- "properties": {
- "instrument": "harp",
- "note": "3",
- "powered": "false"
- }
- },
- {
- "id": 495,
- "properties": {
- "instrument": "harp",
- "note": "4",
- "powered": "true"
- }
- },
- {
- "id": 496,
- "properties": {
- "instrument": "harp",
- "note": "4",
- "powered": "false"
- }
- },
- {
- "id": 497,
- "properties": {
- "instrument": "harp",
- "note": "5",
- "powered": "true"
- }
- },
- {
- "id": 498,
- "properties": {
- "instrument": "harp",
- "note": "5",
- "powered": "false"
- }
- },
- {
- "id": 499,
- "properties": {
- "instrument": "harp",
- "note": "6",
- "powered": "true"
- }
- },
- {
- "id": 500,
- "properties": {
- "instrument": "harp",
- "note": "6",
- "powered": "false"
- }
- },
- {
- "id": 501,
- "properties": {
- "instrument": "harp",
- "note": "7",
- "powered": "true"
- }
- },
- {
- "id": 502,
- "properties": {
- "instrument": "harp",
- "note": "7",
- "powered": "false"
- }
- },
- {
- "id": 503,
- "properties": {
- "instrument": "harp",
- "note": "8",
- "powered": "true"
- }
- },
- {
- "id": 504,
- "properties": {
- "instrument": "harp",
- "note": "8",
- "powered": "false"
- }
- },
- {
- "id": 505,
- "properties": {
- "instrument": "harp",
- "note": "9",
- "powered": "true"
- }
- },
- {
- "id": 506,
- "properties": {
- "instrument": "harp",
- "note": "9",
- "powered": "false"
- }
- },
- {
- "id": 507,
- "properties": {
- "instrument": "harp",
- "note": "10",
- "powered": "true"
- }
- },
- {
- "id": 508,
- "properties": {
- "instrument": "harp",
- "note": "10",
- "powered": "false"
- }
- },
- {
- "id": 509,
- "properties": {
- "instrument": "harp",
- "note": "11",
- "powered": "true"
- }
- },
- {
- "id": 510,
- "properties": {
- "instrument": "harp",
- "note": "11",
- "powered": "false"
- }
- },
- {
- "id": 511,
- "properties": {
- "instrument": "harp",
- "note": "12",
- "powered": "true"
- }
- },
- {
- "id": 512,
- "properties": {
- "instrument": "harp",
- "note": "12",
- "powered": "false"
- }
- },
- {
- "id": 513,
- "properties": {
- "instrument": "harp",
- "note": "13",
- "powered": "true"
- }
- },
- {
- "id": 514,
- "properties": {
- "instrument": "harp",
- "note": "13",
- "powered": "false"
- }
- },
- {
- "id": 515,
- "properties": {
- "instrument": "harp",
- "note": "14",
- "powered": "true"
- }
- },
- {
- "id": 516,
- "properties": {
- "instrument": "harp",
- "note": "14",
- "powered": "false"
- }
- },
- {
- "id": 517,
- "properties": {
- "instrument": "harp",
- "note": "15",
- "powered": "true"
- }
- },
- {
- "id": 518,
- "properties": {
- "instrument": "harp",
- "note": "15",
- "powered": "false"
- }
- },
- {
- "id": 519,
- "properties": {
- "instrument": "harp",
- "note": "16",
- "powered": "true"
- }
- },
- {
- "id": 520,
- "properties": {
- "instrument": "harp",
- "note": "16",
- "powered": "false"
- }
- },
- {
- "id": 521,
- "properties": {
- "instrument": "harp",
- "note": "17",
- "powered": "true"
- }
- },
- {
- "id": 522,
- "properties": {
- "instrument": "harp",
- "note": "17",
- "powered": "false"
- }
- },
- {
- "id": 523,
- "properties": {
- "instrument": "harp",
- "note": "18",
- "powered": "true"
- }
- },
- {
- "id": 524,
- "properties": {
- "instrument": "harp",
- "note": "18",
- "powered": "false"
- }
- },
- {
- "id": 525,
- "properties": {
- "instrument": "harp",
- "note": "19",
- "powered": "true"
- }
- },
- {
- "id": 526,
- "properties": {
- "instrument": "harp",
- "note": "19",
- "powered": "false"
- }
- },
- {
- "id": 527,
- "properties": {
- "instrument": "harp",
- "note": "20",
- "powered": "true"
- }
- },
- {
- "id": 528,
- "properties": {
- "instrument": "harp",
- "note": "20",
- "powered": "false"
- }
- },
- {
- "id": 529,
- "properties": {
- "instrument": "harp",
- "note": "21",
- "powered": "true"
- }
- },
- {
- "id": 530,
- "properties": {
- "instrument": "harp",
- "note": "21",
- "powered": "false"
- }
- },
- {
- "id": 531,
- "properties": {
- "instrument": "harp",
- "note": "22",
- "powered": "true"
- }
- },
- {
- "id": 532,
- "properties": {
- "instrument": "harp",
- "note": "22",
- "powered": "false"
- }
- },
- {
- "id": 533,
- "properties": {
- "instrument": "harp",
- "note": "23",
- "powered": "true"
- }
- },
- {
- "id": 534,
- "properties": {
- "instrument": "harp",
- "note": "23",
- "powered": "false"
- }
- },
- {
- "id": 535,
- "properties": {
- "instrument": "harp",
- "note": "24",
- "powered": "true"
- }
- },
{
"id": 536,
"properties": {
"instrument": "harp",
- "note": "24",
- "powered": "false"
+ "note": "1",
+ "powered": "true"
}
},
{
"id": 537,
"properties": {
- "instrument": "basedrum",
- "note": "0",
- "powered": "true"
+ "instrument": "harp",
+ "note": "1",
+ "powered": "false"
}
},
{
"id": 538,
"properties": {
- "instrument": "basedrum",
- "note": "0",
- "powered": "false"
+ "instrument": "harp",
+ "note": "2",
+ "powered": "true"
}
},
{
"id": 539,
"properties": {
- "instrument": "basedrum",
- "note": "1",
- "powered": "true"
+ "instrument": "harp",
+ "note": "2",
+ "powered": "false"
}
},
{
"id": 540,
"properties": {
- "instrument": "basedrum",
- "note": "1",
- "powered": "false"
+ "instrument": "harp",
+ "note": "3",
+ "powered": "true"
}
},
{
"id": 541,
"properties": {
- "instrument": "basedrum",
- "note": "2",
- "powered": "true"
+ "instrument": "harp",
+ "note": "3",
+ "powered": "false"
}
},
{
"id": 542,
"properties": {
- "instrument": "basedrum",
- "note": "2",
- "powered": "false"
+ "instrument": "harp",
+ "note": "4",
+ "powered": "true"
}
},
{
"id": 543,
"properties": {
- "instrument": "basedrum",
- "note": "3",
- "powered": "true"
+ "instrument": "harp",
+ "note": "4",
+ "powered": "false"
}
},
{
"id": 544,
"properties": {
- "instrument": "basedrum",
- "note": "3",
- "powered": "false"
+ "instrument": "harp",
+ "note": "5",
+ "powered": "true"
}
},
{
"id": 545,
"properties": {
- "instrument": "basedrum",
- "note": "4",
- "powered": "true"
+ "instrument": "harp",
+ "note": "5",
+ "powered": "false"
}
},
{
"id": 546,
"properties": {
- "instrument": "basedrum",
- "note": "4",
- "powered": "false"
+ "instrument": "harp",
+ "note": "6",
+ "powered": "true"
}
},
{
"id": 547,
"properties": {
- "instrument": "basedrum",
- "note": "5",
- "powered": "true"
+ "instrument": "harp",
+ "note": "6",
+ "powered": "false"
}
},
{
"id": 548,
"properties": {
- "instrument": "basedrum",
- "note": "5",
- "powered": "false"
+ "instrument": "harp",
+ "note": "7",
+ "powered": "true"
}
},
{
"id": 549,
"properties": {
- "instrument": "basedrum",
- "note": "6",
- "powered": "true"
+ "instrument": "harp",
+ "note": "7",
+ "powered": "false"
}
},
{
"id": 550,
"properties": {
- "instrument": "basedrum",
- "note": "6",
- "powered": "false"
+ "instrument": "harp",
+ "note": "8",
+ "powered": "true"
}
},
{
"id": 551,
"properties": {
- "instrument": "basedrum",
- "note": "7",
- "powered": "true"
+ "instrument": "harp",
+ "note": "8",
+ "powered": "false"
}
},
{
"id": 552,
"properties": {
- "instrument": "basedrum",
- "note": "7",
- "powered": "false"
+ "instrument": "harp",
+ "note": "9",
+ "powered": "true"
}
},
{
"id": 553,
"properties": {
- "instrument": "basedrum",
- "note": "8",
- "powered": "true"
+ "instrument": "harp",
+ "note": "9",
+ "powered": "false"
}
},
{
"id": 554,
"properties": {
- "instrument": "basedrum",
- "note": "8",
- "powered": "false"
+ "instrument": "harp",
+ "note": "10",
+ "powered": "true"
}
},
{
"id": 555,
"properties": {
- "instrument": "basedrum",
- "note": "9",
- "powered": "true"
+ "instrument": "harp",
+ "note": "10",
+ "powered": "false"
}
},
{
"id": 556,
"properties": {
- "instrument": "basedrum",
- "note": "9",
- "powered": "false"
+ "instrument": "harp",
+ "note": "11",
+ "powered": "true"
}
},
{
"id": 557,
"properties": {
- "instrument": "basedrum",
- "note": "10",
- "powered": "true"
+ "instrument": "harp",
+ "note": "11",
+ "powered": "false"
}
},
{
"id": 558,
"properties": {
- "instrument": "basedrum",
- "note": "10",
- "powered": "false"
+ "instrument": "harp",
+ "note": "12",
+ "powered": "true"
}
},
{
"id": 559,
"properties": {
- "instrument": "basedrum",
- "note": "11",
- "powered": "true"
+ "instrument": "harp",
+ "note": "12",
+ "powered": "false"
}
},
{
"id": 560,
"properties": {
- "instrument": "basedrum",
- "note": "11",
- "powered": "false"
+ "instrument": "harp",
+ "note": "13",
+ "powered": "true"
}
},
{
"id": 561,
"properties": {
- "instrument": "basedrum",
- "note": "12",
- "powered": "true"
+ "instrument": "harp",
+ "note": "13",
+ "powered": "false"
}
},
{
"id": 562,
"properties": {
- "instrument": "basedrum",
- "note": "12",
- "powered": "false"
+ "instrument": "harp",
+ "note": "14",
+ "powered": "true"
}
},
{
"id": 563,
"properties": {
- "instrument": "basedrum",
- "note": "13",
- "powered": "true"
+ "instrument": "harp",
+ "note": "14",
+ "powered": "false"
}
},
{
"id": 564,
"properties": {
- "instrument": "basedrum",
- "note": "13",
- "powered": "false"
+ "instrument": "harp",
+ "note": "15",
+ "powered": "true"
}
},
{
"id": 565,
"properties": {
- "instrument": "basedrum",
- "note": "14",
- "powered": "true"
+ "instrument": "harp",
+ "note": "15",
+ "powered": "false"
}
},
{
"id": 566,
"properties": {
- "instrument": "basedrum",
- "note": "14",
- "powered": "false"
+ "instrument": "harp",
+ "note": "16",
+ "powered": "true"
}
},
{
"id": 567,
"properties": {
- "instrument": "basedrum",
- "note": "15",
- "powered": "true"
+ "instrument": "harp",
+ "note": "16",
+ "powered": "false"
}
},
{
"id": 568,
"properties": {
- "instrument": "basedrum",
- "note": "15",
- "powered": "false"
+ "instrument": "harp",
+ "note": "17",
+ "powered": "true"
}
},
{
"id": 569,
"properties": {
- "instrument": "basedrum",
- "note": "16",
- "powered": "true"
+ "instrument": "harp",
+ "note": "17",
+ "powered": "false"
}
},
{
"id": 570,
"properties": {
- "instrument": "basedrum",
- "note": "16",
- "powered": "false"
+ "instrument": "harp",
+ "note": "18",
+ "powered": "true"
}
},
{
"id": 571,
"properties": {
- "instrument": "basedrum",
- "note": "17",
- "powered": "true"
+ "instrument": "harp",
+ "note": "18",
+ "powered": "false"
}
},
{
"id": 572,
"properties": {
- "instrument": "basedrum",
- "note": "17",
- "powered": "false"
+ "instrument": "harp",
+ "note": "19",
+ "powered": "true"
}
},
{
"id": 573,
"properties": {
- "instrument": "basedrum",
- "note": "18",
- "powered": "true"
+ "instrument": "harp",
+ "note": "19",
+ "powered": "false"
}
},
{
"id": 574,
"properties": {
- "instrument": "basedrum",
- "note": "18",
- "powered": "false"
+ "instrument": "harp",
+ "note": "20",
+ "powered": "true"
}
},
{
"id": 575,
"properties": {
- "instrument": "basedrum",
- "note": "19",
- "powered": "true"
+ "instrument": "harp",
+ "note": "20",
+ "powered": "false"
}
},
{
"id": 576,
"properties": {
- "instrument": "basedrum",
- "note": "19",
- "powered": "false"
+ "instrument": "harp",
+ "note": "21",
+ "powered": "true"
}
},
{
"id": 577,
"properties": {
- "instrument": "basedrum",
- "note": "20",
- "powered": "true"
+ "instrument": "harp",
+ "note": "21",
+ "powered": "false"
}
},
{
"id": 578,
"properties": {
- "instrument": "basedrum",
- "note": "20",
- "powered": "false"
+ "instrument": "harp",
+ "note": "22",
+ "powered": "true"
}
},
{
"id": 579,
"properties": {
- "instrument": "basedrum",
- "note": "21",
- "powered": "true"
+ "instrument": "harp",
+ "note": "22",
+ "powered": "false"
}
},
{
"id": 580,
"properties": {
- "instrument": "basedrum",
- "note": "21",
- "powered": "false"
+ "instrument": "harp",
+ "note": "23",
+ "powered": "true"
}
},
{
"id": 581,
"properties": {
- "instrument": "basedrum",
- "note": "22",
- "powered": "true"
+ "instrument": "harp",
+ "note": "23",
+ "powered": "false"
}
},
{
"id": 582,
"properties": {
- "instrument": "basedrum",
- "note": "22",
- "powered": "false"
+ "instrument": "harp",
+ "note": "24",
+ "powered": "true"
}
},
{
"id": 583,
"properties": {
- "instrument": "basedrum",
- "note": "23",
- "powered": "true"
+ "instrument": "harp",
+ "note": "24",
+ "powered": "false"
}
},
{
"id": 584,
"properties": {
"instrument": "basedrum",
- "note": "23",
- "powered": "false"
+ "note": "0",
+ "powered": "true"
}
},
{
"id": 585,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "0",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 586,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "1",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 587,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "1",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 588,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "2",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 589,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "2",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 590,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "3",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 591,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "3",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 592,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "4",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 593,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "4",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 594,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "5",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 595,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "5",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 596,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "6",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 597,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "6",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 598,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "7",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 599,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "7",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 600,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "8",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 601,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "8",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 602,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "9",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 603,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "9",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 604,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "10",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 605,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "10",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 606,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "11",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 607,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "11",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 608,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "12",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 609,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "12",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 610,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "13",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 611,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "13",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 612,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "14",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 613,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "14",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 614,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "15",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 615,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "15",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 616,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "16",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 617,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "16",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 618,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "17",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 619,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "17",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 620,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "18",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 621,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "18",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 622,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "19",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 623,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "19",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 624,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "20",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 625,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "20",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 626,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "21",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 627,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "21",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 628,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "22",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 629,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "22",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 630,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "23",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 631,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "23",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 632,
"properties": {
"instrument": "basedrum",
"note": "24",
@@ -131178,399 +135575,399 @@
}
},
{
- "id": 586,
+ "id": 633,
"properties": {
"instrument": "basedrum",
"note": "24",
"powered": "false"
}
},
- {
- "id": 587,
- "properties": {
- "instrument": "snare",
- "note": "0",
- "powered": "true"
- }
- },
- {
- "id": 588,
- "properties": {
- "instrument": "snare",
- "note": "0",
- "powered": "false"
- }
- },
- {
- "id": 589,
- "properties": {
- "instrument": "snare",
- "note": "1",
- "powered": "true"
- }
- },
- {
- "id": 590,
- "properties": {
- "instrument": "snare",
- "note": "1",
- "powered": "false"
- }
- },
- {
- "id": 591,
- "properties": {
- "instrument": "snare",
- "note": "2",
- "powered": "true"
- }
- },
- {
- "id": 592,
- "properties": {
- "instrument": "snare",
- "note": "2",
- "powered": "false"
- }
- },
- {
- "id": 593,
- "properties": {
- "instrument": "snare",
- "note": "3",
- "powered": "true"
- }
- },
- {
- "id": 594,
- "properties": {
- "instrument": "snare",
- "note": "3",
- "powered": "false"
- }
- },
- {
- "id": 595,
- "properties": {
- "instrument": "snare",
- "note": "4",
- "powered": "true"
- }
- },
- {
- "id": 596,
- "properties": {
- "instrument": "snare",
- "note": "4",
- "powered": "false"
- }
- },
- {
- "id": 597,
- "properties": {
- "instrument": "snare",
- "note": "5",
- "powered": "true"
- }
- },
- {
- "id": 598,
- "properties": {
- "instrument": "snare",
- "note": "5",
- "powered": "false"
- }
- },
- {
- "id": 599,
- "properties": {
- "instrument": "snare",
- "note": "6",
- "powered": "true"
- }
- },
- {
- "id": 600,
- "properties": {
- "instrument": "snare",
- "note": "6",
- "powered": "false"
- }
- },
- {
- "id": 601,
- "properties": {
- "instrument": "snare",
- "note": "7",
- "powered": "true"
- }
- },
- {
- "id": 602,
- "properties": {
- "instrument": "snare",
- "note": "7",
- "powered": "false"
- }
- },
- {
- "id": 603,
- "properties": {
- "instrument": "snare",
- "note": "8",
- "powered": "true"
- }
- },
- {
- "id": 604,
- "properties": {
- "instrument": "snare",
- "note": "8",
- "powered": "false"
- }
- },
- {
- "id": 605,
- "properties": {
- "instrument": "snare",
- "note": "9",
- "powered": "true"
- }
- },
- {
- "id": 606,
- "properties": {
- "instrument": "snare",
- "note": "9",
- "powered": "false"
- }
- },
- {
- "id": 607,
- "properties": {
- "instrument": "snare",
- "note": "10",
- "powered": "true"
- }
- },
- {
- "id": 608,
- "properties": {
- "instrument": "snare",
- "note": "10",
- "powered": "false"
- }
- },
- {
- "id": 609,
- "properties": {
- "instrument": "snare",
- "note": "11",
- "powered": "true"
- }
- },
- {
- "id": 610,
- "properties": {
- "instrument": "snare",
- "note": "11",
- "powered": "false"
- }
- },
- {
- "id": 611,
- "properties": {
- "instrument": "snare",
- "note": "12",
- "powered": "true"
- }
- },
- {
- "id": 612,
- "properties": {
- "instrument": "snare",
- "note": "12",
- "powered": "false"
- }
- },
- {
- "id": 613,
- "properties": {
- "instrument": "snare",
- "note": "13",
- "powered": "true"
- }
- },
- {
- "id": 614,
- "properties": {
- "instrument": "snare",
- "note": "13",
- "powered": "false"
- }
- },
- {
- "id": 615,
- "properties": {
- "instrument": "snare",
- "note": "14",
- "powered": "true"
- }
- },
- {
- "id": 616,
- "properties": {
- "instrument": "snare",
- "note": "14",
- "powered": "false"
- }
- },
- {
- "id": 617,
- "properties": {
- "instrument": "snare",
- "note": "15",
- "powered": "true"
- }
- },
- {
- "id": 618,
- "properties": {
- "instrument": "snare",
- "note": "15",
- "powered": "false"
- }
- },
- {
- "id": 619,
- "properties": {
- "instrument": "snare",
- "note": "16",
- "powered": "true"
- }
- },
- {
- "id": 620,
- "properties": {
- "instrument": "snare",
- "note": "16",
- "powered": "false"
- }
- },
- {
- "id": 621,
- "properties": {
- "instrument": "snare",
- "note": "17",
- "powered": "true"
- }
- },
- {
- "id": 622,
- "properties": {
- "instrument": "snare",
- "note": "17",
- "powered": "false"
- }
- },
- {
- "id": 623,
- "properties": {
- "instrument": "snare",
- "note": "18",
- "powered": "true"
- }
- },
- {
- "id": 624,
- "properties": {
- "instrument": "snare",
- "note": "18",
- "powered": "false"
- }
- },
- {
- "id": 625,
- "properties": {
- "instrument": "snare",
- "note": "19",
- "powered": "true"
- }
- },
- {
- "id": 626,
- "properties": {
- "instrument": "snare",
- "note": "19",
- "powered": "false"
- }
- },
- {
- "id": 627,
- "properties": {
- "instrument": "snare",
- "note": "20",
- "powered": "true"
- }
- },
- {
- "id": 628,
- "properties": {
- "instrument": "snare",
- "note": "20",
- "powered": "false"
- }
- },
- {
- "id": 629,
- "properties": {
- "instrument": "snare",
- "note": "21",
- "powered": "true"
- }
- },
- {
- "id": 630,
- "properties": {
- "instrument": "snare",
- "note": "21",
- "powered": "false"
- }
- },
- {
- "id": 631,
- "properties": {
- "instrument": "snare",
- "note": "22",
- "powered": "true"
- }
- },
- {
- "id": 632,
- "properties": {
- "instrument": "snare",
- "note": "22",
- "powered": "false"
- }
- },
- {
- "id": 633,
- "properties": {
- "instrument": "snare",
- "note": "23",
- "powered": "true"
- }
- },
{
"id": 634,
"properties": {
"instrument": "snare",
- "note": "23",
- "powered": "false"
+ "note": "0",
+ "powered": "true"
}
},
{
"id": 635,
+ "properties": {
+ "instrument": "snare",
+ "note": "0",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 636,
+ "properties": {
+ "instrument": "snare",
+ "note": "1",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 637,
+ "properties": {
+ "instrument": "snare",
+ "note": "1",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 638,
+ "properties": {
+ "instrument": "snare",
+ "note": "2",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 639,
+ "properties": {
+ "instrument": "snare",
+ "note": "2",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 640,
+ "properties": {
+ "instrument": "snare",
+ "note": "3",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 641,
+ "properties": {
+ "instrument": "snare",
+ "note": "3",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 642,
+ "properties": {
+ "instrument": "snare",
+ "note": "4",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 643,
+ "properties": {
+ "instrument": "snare",
+ "note": "4",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 644,
+ "properties": {
+ "instrument": "snare",
+ "note": "5",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 645,
+ "properties": {
+ "instrument": "snare",
+ "note": "5",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 646,
+ "properties": {
+ "instrument": "snare",
+ "note": "6",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 647,
+ "properties": {
+ "instrument": "snare",
+ "note": "6",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 648,
+ "properties": {
+ "instrument": "snare",
+ "note": "7",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 649,
+ "properties": {
+ "instrument": "snare",
+ "note": "7",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 650,
+ "properties": {
+ "instrument": "snare",
+ "note": "8",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 651,
+ "properties": {
+ "instrument": "snare",
+ "note": "8",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 652,
+ "properties": {
+ "instrument": "snare",
+ "note": "9",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 653,
+ "properties": {
+ "instrument": "snare",
+ "note": "9",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 654,
+ "properties": {
+ "instrument": "snare",
+ "note": "10",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 655,
+ "properties": {
+ "instrument": "snare",
+ "note": "10",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 656,
+ "properties": {
+ "instrument": "snare",
+ "note": "11",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 657,
+ "properties": {
+ "instrument": "snare",
+ "note": "11",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 658,
+ "properties": {
+ "instrument": "snare",
+ "note": "12",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 659,
+ "properties": {
+ "instrument": "snare",
+ "note": "12",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 660,
+ "properties": {
+ "instrument": "snare",
+ "note": "13",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 661,
+ "properties": {
+ "instrument": "snare",
+ "note": "13",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 662,
+ "properties": {
+ "instrument": "snare",
+ "note": "14",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 663,
+ "properties": {
+ "instrument": "snare",
+ "note": "14",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 664,
+ "properties": {
+ "instrument": "snare",
+ "note": "15",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 665,
+ "properties": {
+ "instrument": "snare",
+ "note": "15",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 666,
+ "properties": {
+ "instrument": "snare",
+ "note": "16",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 667,
+ "properties": {
+ "instrument": "snare",
+ "note": "16",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 668,
+ "properties": {
+ "instrument": "snare",
+ "note": "17",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 669,
+ "properties": {
+ "instrument": "snare",
+ "note": "17",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 670,
+ "properties": {
+ "instrument": "snare",
+ "note": "18",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 671,
+ "properties": {
+ "instrument": "snare",
+ "note": "18",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 672,
+ "properties": {
+ "instrument": "snare",
+ "note": "19",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 673,
+ "properties": {
+ "instrument": "snare",
+ "note": "19",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 674,
+ "properties": {
+ "instrument": "snare",
+ "note": "20",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 675,
+ "properties": {
+ "instrument": "snare",
+ "note": "20",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 676,
+ "properties": {
+ "instrument": "snare",
+ "note": "21",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 677,
+ "properties": {
+ "instrument": "snare",
+ "note": "21",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 678,
+ "properties": {
+ "instrument": "snare",
+ "note": "22",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 679,
+ "properties": {
+ "instrument": "snare",
+ "note": "22",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 680,
+ "properties": {
+ "instrument": "snare",
+ "note": "23",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 681,
+ "properties": {
+ "instrument": "snare",
+ "note": "23",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 682,
"properties": {
"instrument": "snare",
"note": "24",
@@ -131578,399 +135975,399 @@
}
},
{
- "id": 636,
+ "id": 683,
"properties": {
"instrument": "snare",
"note": "24",
"powered": "false"
}
},
- {
- "id": 637,
- "properties": {
- "instrument": "hat",
- "note": "0",
- "powered": "true"
- }
- },
- {
- "id": 638,
- "properties": {
- "instrument": "hat",
- "note": "0",
- "powered": "false"
- }
- },
- {
- "id": 639,
- "properties": {
- "instrument": "hat",
- "note": "1",
- "powered": "true"
- }
- },
- {
- "id": 640,
- "properties": {
- "instrument": "hat",
- "note": "1",
- "powered": "false"
- }
- },
- {
- "id": 641,
- "properties": {
- "instrument": "hat",
- "note": "2",
- "powered": "true"
- }
- },
- {
- "id": 642,
- "properties": {
- "instrument": "hat",
- "note": "2",
- "powered": "false"
- }
- },
- {
- "id": 643,
- "properties": {
- "instrument": "hat",
- "note": "3",
- "powered": "true"
- }
- },
- {
- "id": 644,
- "properties": {
- "instrument": "hat",
- "note": "3",
- "powered": "false"
- }
- },
- {
- "id": 645,
- "properties": {
- "instrument": "hat",
- "note": "4",
- "powered": "true"
- }
- },
- {
- "id": 646,
- "properties": {
- "instrument": "hat",
- "note": "4",
- "powered": "false"
- }
- },
- {
- "id": 647,
- "properties": {
- "instrument": "hat",
- "note": "5",
- "powered": "true"
- }
- },
- {
- "id": 648,
- "properties": {
- "instrument": "hat",
- "note": "5",
- "powered": "false"
- }
- },
- {
- "id": 649,
- "properties": {
- "instrument": "hat",
- "note": "6",
- "powered": "true"
- }
- },
- {
- "id": 650,
- "properties": {
- "instrument": "hat",
- "note": "6",
- "powered": "false"
- }
- },
- {
- "id": 651,
- "properties": {
- "instrument": "hat",
- "note": "7",
- "powered": "true"
- }
- },
- {
- "id": 652,
- "properties": {
- "instrument": "hat",
- "note": "7",
- "powered": "false"
- }
- },
- {
- "id": 653,
- "properties": {
- "instrument": "hat",
- "note": "8",
- "powered": "true"
- }
- },
- {
- "id": 654,
- "properties": {
- "instrument": "hat",
- "note": "8",
- "powered": "false"
- }
- },
- {
- "id": 655,
- "properties": {
- "instrument": "hat",
- "note": "9",
- "powered": "true"
- }
- },
- {
- "id": 656,
- "properties": {
- "instrument": "hat",
- "note": "9",
- "powered": "false"
- }
- },
- {
- "id": 657,
- "properties": {
- "instrument": "hat",
- "note": "10",
- "powered": "true"
- }
- },
- {
- "id": 658,
- "properties": {
- "instrument": "hat",
- "note": "10",
- "powered": "false"
- }
- },
- {
- "id": 659,
- "properties": {
- "instrument": "hat",
- "note": "11",
- "powered": "true"
- }
- },
- {
- "id": 660,
- "properties": {
- "instrument": "hat",
- "note": "11",
- "powered": "false"
- }
- },
- {
- "id": 661,
- "properties": {
- "instrument": "hat",
- "note": "12",
- "powered": "true"
- }
- },
- {
- "id": 662,
- "properties": {
- "instrument": "hat",
- "note": "12",
- "powered": "false"
- }
- },
- {
- "id": 663,
- "properties": {
- "instrument": "hat",
- "note": "13",
- "powered": "true"
- }
- },
- {
- "id": 664,
- "properties": {
- "instrument": "hat",
- "note": "13",
- "powered": "false"
- }
- },
- {
- "id": 665,
- "properties": {
- "instrument": "hat",
- "note": "14",
- "powered": "true"
- }
- },
- {
- "id": 666,
- "properties": {
- "instrument": "hat",
- "note": "14",
- "powered": "false"
- }
- },
- {
- "id": 667,
- "properties": {
- "instrument": "hat",
- "note": "15",
- "powered": "true"
- }
- },
- {
- "id": 668,
- "properties": {
- "instrument": "hat",
- "note": "15",
- "powered": "false"
- }
- },
- {
- "id": 669,
- "properties": {
- "instrument": "hat",
- "note": "16",
- "powered": "true"
- }
- },
- {
- "id": 670,
- "properties": {
- "instrument": "hat",
- "note": "16",
- "powered": "false"
- }
- },
- {
- "id": 671,
- "properties": {
- "instrument": "hat",
- "note": "17",
- "powered": "true"
- }
- },
- {
- "id": 672,
- "properties": {
- "instrument": "hat",
- "note": "17",
- "powered": "false"
- }
- },
- {
- "id": 673,
- "properties": {
- "instrument": "hat",
- "note": "18",
- "powered": "true"
- }
- },
- {
- "id": 674,
- "properties": {
- "instrument": "hat",
- "note": "18",
- "powered": "false"
- }
- },
- {
- "id": 675,
- "properties": {
- "instrument": "hat",
- "note": "19",
- "powered": "true"
- }
- },
- {
- "id": 676,
- "properties": {
- "instrument": "hat",
- "note": "19",
- "powered": "false"
- }
- },
- {
- "id": 677,
- "properties": {
- "instrument": "hat",
- "note": "20",
- "powered": "true"
- }
- },
- {
- "id": 678,
- "properties": {
- "instrument": "hat",
- "note": "20",
- "powered": "false"
- }
- },
- {
- "id": 679,
- "properties": {
- "instrument": "hat",
- "note": "21",
- "powered": "true"
- }
- },
- {
- "id": 680,
- "properties": {
- "instrument": "hat",
- "note": "21",
- "powered": "false"
- }
- },
- {
- "id": 681,
- "properties": {
- "instrument": "hat",
- "note": "22",
- "powered": "true"
- }
- },
- {
- "id": 682,
- "properties": {
- "instrument": "hat",
- "note": "22",
- "powered": "false"
- }
- },
- {
- "id": 683,
- "properties": {
- "instrument": "hat",
- "note": "23",
- "powered": "true"
- }
- },
{
"id": 684,
"properties": {
"instrument": "hat",
- "note": "23",
- "powered": "false"
+ "note": "0",
+ "powered": "true"
}
},
{
"id": 685,
+ "properties": {
+ "instrument": "hat",
+ "note": "0",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 686,
+ "properties": {
+ "instrument": "hat",
+ "note": "1",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 687,
+ "properties": {
+ "instrument": "hat",
+ "note": "1",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 688,
+ "properties": {
+ "instrument": "hat",
+ "note": "2",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 689,
+ "properties": {
+ "instrument": "hat",
+ "note": "2",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 690,
+ "properties": {
+ "instrument": "hat",
+ "note": "3",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 691,
+ "properties": {
+ "instrument": "hat",
+ "note": "3",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 692,
+ "properties": {
+ "instrument": "hat",
+ "note": "4",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 693,
+ "properties": {
+ "instrument": "hat",
+ "note": "4",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 694,
+ "properties": {
+ "instrument": "hat",
+ "note": "5",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 695,
+ "properties": {
+ "instrument": "hat",
+ "note": "5",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 696,
+ "properties": {
+ "instrument": "hat",
+ "note": "6",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 697,
+ "properties": {
+ "instrument": "hat",
+ "note": "6",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 698,
+ "properties": {
+ "instrument": "hat",
+ "note": "7",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 699,
+ "properties": {
+ "instrument": "hat",
+ "note": "7",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 700,
+ "properties": {
+ "instrument": "hat",
+ "note": "8",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 701,
+ "properties": {
+ "instrument": "hat",
+ "note": "8",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 702,
+ "properties": {
+ "instrument": "hat",
+ "note": "9",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 703,
+ "properties": {
+ "instrument": "hat",
+ "note": "9",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 704,
+ "properties": {
+ "instrument": "hat",
+ "note": "10",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 705,
+ "properties": {
+ "instrument": "hat",
+ "note": "10",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 706,
+ "properties": {
+ "instrument": "hat",
+ "note": "11",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 707,
+ "properties": {
+ "instrument": "hat",
+ "note": "11",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 708,
+ "properties": {
+ "instrument": "hat",
+ "note": "12",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 709,
+ "properties": {
+ "instrument": "hat",
+ "note": "12",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 710,
+ "properties": {
+ "instrument": "hat",
+ "note": "13",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 711,
+ "properties": {
+ "instrument": "hat",
+ "note": "13",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 712,
+ "properties": {
+ "instrument": "hat",
+ "note": "14",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 713,
+ "properties": {
+ "instrument": "hat",
+ "note": "14",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 714,
+ "properties": {
+ "instrument": "hat",
+ "note": "15",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 715,
+ "properties": {
+ "instrument": "hat",
+ "note": "15",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 716,
+ "properties": {
+ "instrument": "hat",
+ "note": "16",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 717,
+ "properties": {
+ "instrument": "hat",
+ "note": "16",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 718,
+ "properties": {
+ "instrument": "hat",
+ "note": "17",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 719,
+ "properties": {
+ "instrument": "hat",
+ "note": "17",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 720,
+ "properties": {
+ "instrument": "hat",
+ "note": "18",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 721,
+ "properties": {
+ "instrument": "hat",
+ "note": "18",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 722,
+ "properties": {
+ "instrument": "hat",
+ "note": "19",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 723,
+ "properties": {
+ "instrument": "hat",
+ "note": "19",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 724,
+ "properties": {
+ "instrument": "hat",
+ "note": "20",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 725,
+ "properties": {
+ "instrument": "hat",
+ "note": "20",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 726,
+ "properties": {
+ "instrument": "hat",
+ "note": "21",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 727,
+ "properties": {
+ "instrument": "hat",
+ "note": "21",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 728,
+ "properties": {
+ "instrument": "hat",
+ "note": "22",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 729,
+ "properties": {
+ "instrument": "hat",
+ "note": "22",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 730,
+ "properties": {
+ "instrument": "hat",
+ "note": "23",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 731,
+ "properties": {
+ "instrument": "hat",
+ "note": "23",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 732,
"properties": {
"instrument": "hat",
"note": "24",
@@ -131978,399 +136375,399 @@
}
},
{
- "id": 686,
+ "id": 733,
"properties": {
"instrument": "hat",
"note": "24",
"powered": "false"
}
},
- {
- "id": 687,
- "properties": {
- "instrument": "bass",
- "note": "0",
- "powered": "true"
- }
- },
- {
- "id": 688,
- "properties": {
- "instrument": "bass",
- "note": "0",
- "powered": "false"
- }
- },
- {
- "id": 689,
- "properties": {
- "instrument": "bass",
- "note": "1",
- "powered": "true"
- }
- },
- {
- "id": 690,
- "properties": {
- "instrument": "bass",
- "note": "1",
- "powered": "false"
- }
- },
- {
- "id": 691,
- "properties": {
- "instrument": "bass",
- "note": "2",
- "powered": "true"
- }
- },
- {
- "id": 692,
- "properties": {
- "instrument": "bass",
- "note": "2",
- "powered": "false"
- }
- },
- {
- "id": 693,
- "properties": {
- "instrument": "bass",
- "note": "3",
- "powered": "true"
- }
- },
- {
- "id": 694,
- "properties": {
- "instrument": "bass",
- "note": "3",
- "powered": "false"
- }
- },
- {
- "id": 695,
- "properties": {
- "instrument": "bass",
- "note": "4",
- "powered": "true"
- }
- },
- {
- "id": 696,
- "properties": {
- "instrument": "bass",
- "note": "4",
- "powered": "false"
- }
- },
- {
- "id": 697,
- "properties": {
- "instrument": "bass",
- "note": "5",
- "powered": "true"
- }
- },
- {
- "id": 698,
- "properties": {
- "instrument": "bass",
- "note": "5",
- "powered": "false"
- }
- },
- {
- "id": 699,
- "properties": {
- "instrument": "bass",
- "note": "6",
- "powered": "true"
- }
- },
- {
- "id": 700,
- "properties": {
- "instrument": "bass",
- "note": "6",
- "powered": "false"
- }
- },
- {
- "id": 701,
- "properties": {
- "instrument": "bass",
- "note": "7",
- "powered": "true"
- }
- },
- {
- "id": 702,
- "properties": {
- "instrument": "bass",
- "note": "7",
- "powered": "false"
- }
- },
- {
- "id": 703,
- "properties": {
- "instrument": "bass",
- "note": "8",
- "powered": "true"
- }
- },
- {
- "id": 704,
- "properties": {
- "instrument": "bass",
- "note": "8",
- "powered": "false"
- }
- },
- {
- "id": 705,
- "properties": {
- "instrument": "bass",
- "note": "9",
- "powered": "true"
- }
- },
- {
- "id": 706,
- "properties": {
- "instrument": "bass",
- "note": "9",
- "powered": "false"
- }
- },
- {
- "id": 707,
- "properties": {
- "instrument": "bass",
- "note": "10",
- "powered": "true"
- }
- },
- {
- "id": 708,
- "properties": {
- "instrument": "bass",
- "note": "10",
- "powered": "false"
- }
- },
- {
- "id": 709,
- "properties": {
- "instrument": "bass",
- "note": "11",
- "powered": "true"
- }
- },
- {
- "id": 710,
- "properties": {
- "instrument": "bass",
- "note": "11",
- "powered": "false"
- }
- },
- {
- "id": 711,
- "properties": {
- "instrument": "bass",
- "note": "12",
- "powered": "true"
- }
- },
- {
- "id": 712,
- "properties": {
- "instrument": "bass",
- "note": "12",
- "powered": "false"
- }
- },
- {
- "id": 713,
- "properties": {
- "instrument": "bass",
- "note": "13",
- "powered": "true"
- }
- },
- {
- "id": 714,
- "properties": {
- "instrument": "bass",
- "note": "13",
- "powered": "false"
- }
- },
- {
- "id": 715,
- "properties": {
- "instrument": "bass",
- "note": "14",
- "powered": "true"
- }
- },
- {
- "id": 716,
- "properties": {
- "instrument": "bass",
- "note": "14",
- "powered": "false"
- }
- },
- {
- "id": 717,
- "properties": {
- "instrument": "bass",
- "note": "15",
- "powered": "true"
- }
- },
- {
- "id": 718,
- "properties": {
- "instrument": "bass",
- "note": "15",
- "powered": "false"
- }
- },
- {
- "id": 719,
- "properties": {
- "instrument": "bass",
- "note": "16",
- "powered": "true"
- }
- },
- {
- "id": 720,
- "properties": {
- "instrument": "bass",
- "note": "16",
- "powered": "false"
- }
- },
- {
- "id": 721,
- "properties": {
- "instrument": "bass",
- "note": "17",
- "powered": "true"
- }
- },
- {
- "id": 722,
- "properties": {
- "instrument": "bass",
- "note": "17",
- "powered": "false"
- }
- },
- {
- "id": 723,
- "properties": {
- "instrument": "bass",
- "note": "18",
- "powered": "true"
- }
- },
- {
- "id": 724,
- "properties": {
- "instrument": "bass",
- "note": "18",
- "powered": "false"
- }
- },
- {
- "id": 725,
- "properties": {
- "instrument": "bass",
- "note": "19",
- "powered": "true"
- }
- },
- {
- "id": 726,
- "properties": {
- "instrument": "bass",
- "note": "19",
- "powered": "false"
- }
- },
- {
- "id": 727,
- "properties": {
- "instrument": "bass",
- "note": "20",
- "powered": "true"
- }
- },
- {
- "id": 728,
- "properties": {
- "instrument": "bass",
- "note": "20",
- "powered": "false"
- }
- },
- {
- "id": 729,
- "properties": {
- "instrument": "bass",
- "note": "21",
- "powered": "true"
- }
- },
- {
- "id": 730,
- "properties": {
- "instrument": "bass",
- "note": "21",
- "powered": "false"
- }
- },
- {
- "id": 731,
- "properties": {
- "instrument": "bass",
- "note": "22",
- "powered": "true"
- }
- },
- {
- "id": 732,
- "properties": {
- "instrument": "bass",
- "note": "22",
- "powered": "false"
- }
- },
- {
- "id": 733,
- "properties": {
- "instrument": "bass",
- "note": "23",
- "powered": "true"
- }
- },
{
"id": 734,
"properties": {
"instrument": "bass",
- "note": "23",
- "powered": "false"
+ "note": "0",
+ "powered": "true"
}
},
{
"id": 735,
+ "properties": {
+ "instrument": "bass",
+ "note": "0",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 736,
+ "properties": {
+ "instrument": "bass",
+ "note": "1",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 737,
+ "properties": {
+ "instrument": "bass",
+ "note": "1",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 738,
+ "properties": {
+ "instrument": "bass",
+ "note": "2",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 739,
+ "properties": {
+ "instrument": "bass",
+ "note": "2",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 740,
+ "properties": {
+ "instrument": "bass",
+ "note": "3",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 741,
+ "properties": {
+ "instrument": "bass",
+ "note": "3",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 742,
+ "properties": {
+ "instrument": "bass",
+ "note": "4",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 743,
+ "properties": {
+ "instrument": "bass",
+ "note": "4",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 744,
+ "properties": {
+ "instrument": "bass",
+ "note": "5",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 745,
+ "properties": {
+ "instrument": "bass",
+ "note": "5",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 746,
+ "properties": {
+ "instrument": "bass",
+ "note": "6",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 747,
+ "properties": {
+ "instrument": "bass",
+ "note": "6",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 748,
+ "properties": {
+ "instrument": "bass",
+ "note": "7",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 749,
+ "properties": {
+ "instrument": "bass",
+ "note": "7",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 750,
+ "properties": {
+ "instrument": "bass",
+ "note": "8",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 751,
+ "properties": {
+ "instrument": "bass",
+ "note": "8",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 752,
+ "properties": {
+ "instrument": "bass",
+ "note": "9",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 753,
+ "properties": {
+ "instrument": "bass",
+ "note": "9",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 754,
+ "properties": {
+ "instrument": "bass",
+ "note": "10",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 755,
+ "properties": {
+ "instrument": "bass",
+ "note": "10",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 756,
+ "properties": {
+ "instrument": "bass",
+ "note": "11",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 757,
+ "properties": {
+ "instrument": "bass",
+ "note": "11",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 758,
+ "properties": {
+ "instrument": "bass",
+ "note": "12",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 759,
+ "properties": {
+ "instrument": "bass",
+ "note": "12",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 760,
+ "properties": {
+ "instrument": "bass",
+ "note": "13",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 761,
+ "properties": {
+ "instrument": "bass",
+ "note": "13",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 762,
+ "properties": {
+ "instrument": "bass",
+ "note": "14",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 763,
+ "properties": {
+ "instrument": "bass",
+ "note": "14",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 764,
+ "properties": {
+ "instrument": "bass",
+ "note": "15",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 765,
+ "properties": {
+ "instrument": "bass",
+ "note": "15",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 766,
+ "properties": {
+ "instrument": "bass",
+ "note": "16",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 767,
+ "properties": {
+ "instrument": "bass",
+ "note": "16",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 768,
+ "properties": {
+ "instrument": "bass",
+ "note": "17",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 769,
+ "properties": {
+ "instrument": "bass",
+ "note": "17",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 770,
+ "properties": {
+ "instrument": "bass",
+ "note": "18",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 771,
+ "properties": {
+ "instrument": "bass",
+ "note": "18",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 772,
+ "properties": {
+ "instrument": "bass",
+ "note": "19",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 773,
+ "properties": {
+ "instrument": "bass",
+ "note": "19",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 774,
+ "properties": {
+ "instrument": "bass",
+ "note": "20",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 775,
+ "properties": {
+ "instrument": "bass",
+ "note": "20",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 776,
+ "properties": {
+ "instrument": "bass",
+ "note": "21",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 777,
+ "properties": {
+ "instrument": "bass",
+ "note": "21",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 778,
+ "properties": {
+ "instrument": "bass",
+ "note": "22",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 779,
+ "properties": {
+ "instrument": "bass",
+ "note": "22",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 780,
+ "properties": {
+ "instrument": "bass",
+ "note": "23",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 781,
+ "properties": {
+ "instrument": "bass",
+ "note": "23",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 782,
"properties": {
"instrument": "bass",
"note": "24",
@@ -132378,399 +136775,399 @@
}
},
{
- "id": 736,
+ "id": 783,
"properties": {
"instrument": "bass",
"note": "24",
"powered": "false"
}
},
- {
- "id": 737,
- "properties": {
- "instrument": "flute",
- "note": "0",
- "powered": "true"
- }
- },
- {
- "id": 738,
- "properties": {
- "instrument": "flute",
- "note": "0",
- "powered": "false"
- }
- },
- {
- "id": 739,
- "properties": {
- "instrument": "flute",
- "note": "1",
- "powered": "true"
- }
- },
- {
- "id": 740,
- "properties": {
- "instrument": "flute",
- "note": "1",
- "powered": "false"
- }
- },
- {
- "id": 741,
- "properties": {
- "instrument": "flute",
- "note": "2",
- "powered": "true"
- }
- },
- {
- "id": 742,
- "properties": {
- "instrument": "flute",
- "note": "2",
- "powered": "false"
- }
- },
- {
- "id": 743,
- "properties": {
- "instrument": "flute",
- "note": "3",
- "powered": "true"
- }
- },
- {
- "id": 744,
- "properties": {
- "instrument": "flute",
- "note": "3",
- "powered": "false"
- }
- },
- {
- "id": 745,
- "properties": {
- "instrument": "flute",
- "note": "4",
- "powered": "true"
- }
- },
- {
- "id": 746,
- "properties": {
- "instrument": "flute",
- "note": "4",
- "powered": "false"
- }
- },
- {
- "id": 747,
- "properties": {
- "instrument": "flute",
- "note": "5",
- "powered": "true"
- }
- },
- {
- "id": 748,
- "properties": {
- "instrument": "flute",
- "note": "5",
- "powered": "false"
- }
- },
- {
- "id": 749,
- "properties": {
- "instrument": "flute",
- "note": "6",
- "powered": "true"
- }
- },
- {
- "id": 750,
- "properties": {
- "instrument": "flute",
- "note": "6",
- "powered": "false"
- }
- },
- {
- "id": 751,
- "properties": {
- "instrument": "flute",
- "note": "7",
- "powered": "true"
- }
- },
- {
- "id": 752,
- "properties": {
- "instrument": "flute",
- "note": "7",
- "powered": "false"
- }
- },
- {
- "id": 753,
- "properties": {
- "instrument": "flute",
- "note": "8",
- "powered": "true"
- }
- },
- {
- "id": 754,
- "properties": {
- "instrument": "flute",
- "note": "8",
- "powered": "false"
- }
- },
- {
- "id": 755,
- "properties": {
- "instrument": "flute",
- "note": "9",
- "powered": "true"
- }
- },
- {
- "id": 756,
- "properties": {
- "instrument": "flute",
- "note": "9",
- "powered": "false"
- }
- },
- {
- "id": 757,
- "properties": {
- "instrument": "flute",
- "note": "10",
- "powered": "true"
- }
- },
- {
- "id": 758,
- "properties": {
- "instrument": "flute",
- "note": "10",
- "powered": "false"
- }
- },
- {
- "id": 759,
- "properties": {
- "instrument": "flute",
- "note": "11",
- "powered": "true"
- }
- },
- {
- "id": 760,
- "properties": {
- "instrument": "flute",
- "note": "11",
- "powered": "false"
- }
- },
- {
- "id": 761,
- "properties": {
- "instrument": "flute",
- "note": "12",
- "powered": "true"
- }
- },
- {
- "id": 762,
- "properties": {
- "instrument": "flute",
- "note": "12",
- "powered": "false"
- }
- },
- {
- "id": 763,
- "properties": {
- "instrument": "flute",
- "note": "13",
- "powered": "true"
- }
- },
- {
- "id": 764,
- "properties": {
- "instrument": "flute",
- "note": "13",
- "powered": "false"
- }
- },
- {
- "id": 765,
- "properties": {
- "instrument": "flute",
- "note": "14",
- "powered": "true"
- }
- },
- {
- "id": 766,
- "properties": {
- "instrument": "flute",
- "note": "14",
- "powered": "false"
- }
- },
- {
- "id": 767,
- "properties": {
- "instrument": "flute",
- "note": "15",
- "powered": "true"
- }
- },
- {
- "id": 768,
- "properties": {
- "instrument": "flute",
- "note": "15",
- "powered": "false"
- }
- },
- {
- "id": 769,
- "properties": {
- "instrument": "flute",
- "note": "16",
- "powered": "true"
- }
- },
- {
- "id": 770,
- "properties": {
- "instrument": "flute",
- "note": "16",
- "powered": "false"
- }
- },
- {
- "id": 771,
- "properties": {
- "instrument": "flute",
- "note": "17",
- "powered": "true"
- }
- },
- {
- "id": 772,
- "properties": {
- "instrument": "flute",
- "note": "17",
- "powered": "false"
- }
- },
- {
- "id": 773,
- "properties": {
- "instrument": "flute",
- "note": "18",
- "powered": "true"
- }
- },
- {
- "id": 774,
- "properties": {
- "instrument": "flute",
- "note": "18",
- "powered": "false"
- }
- },
- {
- "id": 775,
- "properties": {
- "instrument": "flute",
- "note": "19",
- "powered": "true"
- }
- },
- {
- "id": 776,
- "properties": {
- "instrument": "flute",
- "note": "19",
- "powered": "false"
- }
- },
- {
- "id": 777,
- "properties": {
- "instrument": "flute",
- "note": "20",
- "powered": "true"
- }
- },
- {
- "id": 778,
- "properties": {
- "instrument": "flute",
- "note": "20",
- "powered": "false"
- }
- },
- {
- "id": 779,
- "properties": {
- "instrument": "flute",
- "note": "21",
- "powered": "true"
- }
- },
- {
- "id": 780,
- "properties": {
- "instrument": "flute",
- "note": "21",
- "powered": "false"
- }
- },
- {
- "id": 781,
- "properties": {
- "instrument": "flute",
- "note": "22",
- "powered": "true"
- }
- },
- {
- "id": 782,
- "properties": {
- "instrument": "flute",
- "note": "22",
- "powered": "false"
- }
- },
- {
- "id": 783,
- "properties": {
- "instrument": "flute",
- "note": "23",
- "powered": "true"
- }
- },
{
"id": 784,
"properties": {
"instrument": "flute",
- "note": "23",
- "powered": "false"
+ "note": "0",
+ "powered": "true"
}
},
{
"id": 785,
+ "properties": {
+ "instrument": "flute",
+ "note": "0",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 786,
+ "properties": {
+ "instrument": "flute",
+ "note": "1",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 787,
+ "properties": {
+ "instrument": "flute",
+ "note": "1",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 788,
+ "properties": {
+ "instrument": "flute",
+ "note": "2",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 789,
+ "properties": {
+ "instrument": "flute",
+ "note": "2",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 790,
+ "properties": {
+ "instrument": "flute",
+ "note": "3",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 791,
+ "properties": {
+ "instrument": "flute",
+ "note": "3",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 792,
+ "properties": {
+ "instrument": "flute",
+ "note": "4",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 793,
+ "properties": {
+ "instrument": "flute",
+ "note": "4",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 794,
+ "properties": {
+ "instrument": "flute",
+ "note": "5",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 795,
+ "properties": {
+ "instrument": "flute",
+ "note": "5",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 796,
+ "properties": {
+ "instrument": "flute",
+ "note": "6",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 797,
+ "properties": {
+ "instrument": "flute",
+ "note": "6",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 798,
+ "properties": {
+ "instrument": "flute",
+ "note": "7",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 799,
+ "properties": {
+ "instrument": "flute",
+ "note": "7",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 800,
+ "properties": {
+ "instrument": "flute",
+ "note": "8",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 801,
+ "properties": {
+ "instrument": "flute",
+ "note": "8",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 802,
+ "properties": {
+ "instrument": "flute",
+ "note": "9",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 803,
+ "properties": {
+ "instrument": "flute",
+ "note": "9",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 804,
+ "properties": {
+ "instrument": "flute",
+ "note": "10",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 805,
+ "properties": {
+ "instrument": "flute",
+ "note": "10",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 806,
+ "properties": {
+ "instrument": "flute",
+ "note": "11",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 807,
+ "properties": {
+ "instrument": "flute",
+ "note": "11",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 808,
+ "properties": {
+ "instrument": "flute",
+ "note": "12",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 809,
+ "properties": {
+ "instrument": "flute",
+ "note": "12",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 810,
+ "properties": {
+ "instrument": "flute",
+ "note": "13",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 811,
+ "properties": {
+ "instrument": "flute",
+ "note": "13",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 812,
+ "properties": {
+ "instrument": "flute",
+ "note": "14",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 813,
+ "properties": {
+ "instrument": "flute",
+ "note": "14",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 814,
+ "properties": {
+ "instrument": "flute",
+ "note": "15",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 815,
+ "properties": {
+ "instrument": "flute",
+ "note": "15",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 816,
+ "properties": {
+ "instrument": "flute",
+ "note": "16",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 817,
+ "properties": {
+ "instrument": "flute",
+ "note": "16",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 818,
+ "properties": {
+ "instrument": "flute",
+ "note": "17",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 819,
+ "properties": {
+ "instrument": "flute",
+ "note": "17",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 820,
+ "properties": {
+ "instrument": "flute",
+ "note": "18",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 821,
+ "properties": {
+ "instrument": "flute",
+ "note": "18",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 822,
+ "properties": {
+ "instrument": "flute",
+ "note": "19",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 823,
+ "properties": {
+ "instrument": "flute",
+ "note": "19",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 824,
+ "properties": {
+ "instrument": "flute",
+ "note": "20",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 825,
+ "properties": {
+ "instrument": "flute",
+ "note": "20",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 826,
+ "properties": {
+ "instrument": "flute",
+ "note": "21",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 827,
+ "properties": {
+ "instrument": "flute",
+ "note": "21",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 828,
+ "properties": {
+ "instrument": "flute",
+ "note": "22",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 829,
+ "properties": {
+ "instrument": "flute",
+ "note": "22",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 830,
+ "properties": {
+ "instrument": "flute",
+ "note": "23",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 831,
+ "properties": {
+ "instrument": "flute",
+ "note": "23",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 832,
"properties": {
"instrument": "flute",
"note": "24",
@@ -132778,399 +137175,399 @@
}
},
{
- "id": 786,
+ "id": 833,
"properties": {
"instrument": "flute",
"note": "24",
"powered": "false"
}
},
- {
- "id": 787,
- "properties": {
- "instrument": "bell",
- "note": "0",
- "powered": "true"
- }
- },
- {
- "id": 788,
- "properties": {
- "instrument": "bell",
- "note": "0",
- "powered": "false"
- }
- },
- {
- "id": 789,
- "properties": {
- "instrument": "bell",
- "note": "1",
- "powered": "true"
- }
- },
- {
- "id": 790,
- "properties": {
- "instrument": "bell",
- "note": "1",
- "powered": "false"
- }
- },
- {
- "id": 791,
- "properties": {
- "instrument": "bell",
- "note": "2",
- "powered": "true"
- }
- },
- {
- "id": 792,
- "properties": {
- "instrument": "bell",
- "note": "2",
- "powered": "false"
- }
- },
- {
- "id": 793,
- "properties": {
- "instrument": "bell",
- "note": "3",
- "powered": "true"
- }
- },
- {
- "id": 794,
- "properties": {
- "instrument": "bell",
- "note": "3",
- "powered": "false"
- }
- },
- {
- "id": 795,
- "properties": {
- "instrument": "bell",
- "note": "4",
- "powered": "true"
- }
- },
- {
- "id": 796,
- "properties": {
- "instrument": "bell",
- "note": "4",
- "powered": "false"
- }
- },
- {
- "id": 797,
- "properties": {
- "instrument": "bell",
- "note": "5",
- "powered": "true"
- }
- },
- {
- "id": 798,
- "properties": {
- "instrument": "bell",
- "note": "5",
- "powered": "false"
- }
- },
- {
- "id": 799,
- "properties": {
- "instrument": "bell",
- "note": "6",
- "powered": "true"
- }
- },
- {
- "id": 800,
- "properties": {
- "instrument": "bell",
- "note": "6",
- "powered": "false"
- }
- },
- {
- "id": 801,
- "properties": {
- "instrument": "bell",
- "note": "7",
- "powered": "true"
- }
- },
- {
- "id": 802,
- "properties": {
- "instrument": "bell",
- "note": "7",
- "powered": "false"
- }
- },
- {
- "id": 803,
- "properties": {
- "instrument": "bell",
- "note": "8",
- "powered": "true"
- }
- },
- {
- "id": 804,
- "properties": {
- "instrument": "bell",
- "note": "8",
- "powered": "false"
- }
- },
- {
- "id": 805,
- "properties": {
- "instrument": "bell",
- "note": "9",
- "powered": "true"
- }
- },
- {
- "id": 806,
- "properties": {
- "instrument": "bell",
- "note": "9",
- "powered": "false"
- }
- },
- {
- "id": 807,
- "properties": {
- "instrument": "bell",
- "note": "10",
- "powered": "true"
- }
- },
- {
- "id": 808,
- "properties": {
- "instrument": "bell",
- "note": "10",
- "powered": "false"
- }
- },
- {
- "id": 809,
- "properties": {
- "instrument": "bell",
- "note": "11",
- "powered": "true"
- }
- },
- {
- "id": 810,
- "properties": {
- "instrument": "bell",
- "note": "11",
- "powered": "false"
- }
- },
- {
- "id": 811,
- "properties": {
- "instrument": "bell",
- "note": "12",
- "powered": "true"
- }
- },
- {
- "id": 812,
- "properties": {
- "instrument": "bell",
- "note": "12",
- "powered": "false"
- }
- },
- {
- "id": 813,
- "properties": {
- "instrument": "bell",
- "note": "13",
- "powered": "true"
- }
- },
- {
- "id": 814,
- "properties": {
- "instrument": "bell",
- "note": "13",
- "powered": "false"
- }
- },
- {
- "id": 815,
- "properties": {
- "instrument": "bell",
- "note": "14",
- "powered": "true"
- }
- },
- {
- "id": 816,
- "properties": {
- "instrument": "bell",
- "note": "14",
- "powered": "false"
- }
- },
- {
- "id": 817,
- "properties": {
- "instrument": "bell",
- "note": "15",
- "powered": "true"
- }
- },
- {
- "id": 818,
- "properties": {
- "instrument": "bell",
- "note": "15",
- "powered": "false"
- }
- },
- {
- "id": 819,
- "properties": {
- "instrument": "bell",
- "note": "16",
- "powered": "true"
- }
- },
- {
- "id": 820,
- "properties": {
- "instrument": "bell",
- "note": "16",
- "powered": "false"
- }
- },
- {
- "id": 821,
- "properties": {
- "instrument": "bell",
- "note": "17",
- "powered": "true"
- }
- },
- {
- "id": 822,
- "properties": {
- "instrument": "bell",
- "note": "17",
- "powered": "false"
- }
- },
- {
- "id": 823,
- "properties": {
- "instrument": "bell",
- "note": "18",
- "powered": "true"
- }
- },
- {
- "id": 824,
- "properties": {
- "instrument": "bell",
- "note": "18",
- "powered": "false"
- }
- },
- {
- "id": 825,
- "properties": {
- "instrument": "bell",
- "note": "19",
- "powered": "true"
- }
- },
- {
- "id": 826,
- "properties": {
- "instrument": "bell",
- "note": "19",
- "powered": "false"
- }
- },
- {
- "id": 827,
- "properties": {
- "instrument": "bell",
- "note": "20",
- "powered": "true"
- }
- },
- {
- "id": 828,
- "properties": {
- "instrument": "bell",
- "note": "20",
- "powered": "false"
- }
- },
- {
- "id": 829,
- "properties": {
- "instrument": "bell",
- "note": "21",
- "powered": "true"
- }
- },
- {
- "id": 830,
- "properties": {
- "instrument": "bell",
- "note": "21",
- "powered": "false"
- }
- },
- {
- "id": 831,
- "properties": {
- "instrument": "bell",
- "note": "22",
- "powered": "true"
- }
- },
- {
- "id": 832,
- "properties": {
- "instrument": "bell",
- "note": "22",
- "powered": "false"
- }
- },
- {
- "id": 833,
- "properties": {
- "instrument": "bell",
- "note": "23",
- "powered": "true"
- }
- },
{
"id": 834,
"properties": {
"instrument": "bell",
- "note": "23",
- "powered": "false"
+ "note": "0",
+ "powered": "true"
}
},
{
"id": 835,
+ "properties": {
+ "instrument": "bell",
+ "note": "0",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 836,
+ "properties": {
+ "instrument": "bell",
+ "note": "1",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 837,
+ "properties": {
+ "instrument": "bell",
+ "note": "1",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 838,
+ "properties": {
+ "instrument": "bell",
+ "note": "2",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 839,
+ "properties": {
+ "instrument": "bell",
+ "note": "2",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 840,
+ "properties": {
+ "instrument": "bell",
+ "note": "3",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 841,
+ "properties": {
+ "instrument": "bell",
+ "note": "3",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 842,
+ "properties": {
+ "instrument": "bell",
+ "note": "4",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 843,
+ "properties": {
+ "instrument": "bell",
+ "note": "4",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 844,
+ "properties": {
+ "instrument": "bell",
+ "note": "5",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 845,
+ "properties": {
+ "instrument": "bell",
+ "note": "5",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 846,
+ "properties": {
+ "instrument": "bell",
+ "note": "6",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 847,
+ "properties": {
+ "instrument": "bell",
+ "note": "6",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 848,
+ "properties": {
+ "instrument": "bell",
+ "note": "7",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 849,
+ "properties": {
+ "instrument": "bell",
+ "note": "7",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 850,
+ "properties": {
+ "instrument": "bell",
+ "note": "8",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 851,
+ "properties": {
+ "instrument": "bell",
+ "note": "8",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 852,
+ "properties": {
+ "instrument": "bell",
+ "note": "9",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 853,
+ "properties": {
+ "instrument": "bell",
+ "note": "9",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 854,
+ "properties": {
+ "instrument": "bell",
+ "note": "10",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 855,
+ "properties": {
+ "instrument": "bell",
+ "note": "10",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 856,
+ "properties": {
+ "instrument": "bell",
+ "note": "11",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 857,
+ "properties": {
+ "instrument": "bell",
+ "note": "11",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 858,
+ "properties": {
+ "instrument": "bell",
+ "note": "12",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 859,
+ "properties": {
+ "instrument": "bell",
+ "note": "12",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 860,
+ "properties": {
+ "instrument": "bell",
+ "note": "13",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 861,
+ "properties": {
+ "instrument": "bell",
+ "note": "13",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 862,
+ "properties": {
+ "instrument": "bell",
+ "note": "14",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 863,
+ "properties": {
+ "instrument": "bell",
+ "note": "14",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 864,
+ "properties": {
+ "instrument": "bell",
+ "note": "15",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 865,
+ "properties": {
+ "instrument": "bell",
+ "note": "15",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 866,
+ "properties": {
+ "instrument": "bell",
+ "note": "16",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 867,
+ "properties": {
+ "instrument": "bell",
+ "note": "16",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 868,
+ "properties": {
+ "instrument": "bell",
+ "note": "17",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 869,
+ "properties": {
+ "instrument": "bell",
+ "note": "17",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 870,
+ "properties": {
+ "instrument": "bell",
+ "note": "18",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 871,
+ "properties": {
+ "instrument": "bell",
+ "note": "18",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 872,
+ "properties": {
+ "instrument": "bell",
+ "note": "19",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 873,
+ "properties": {
+ "instrument": "bell",
+ "note": "19",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 874,
+ "properties": {
+ "instrument": "bell",
+ "note": "20",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 875,
+ "properties": {
+ "instrument": "bell",
+ "note": "20",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 876,
+ "properties": {
+ "instrument": "bell",
+ "note": "21",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 877,
+ "properties": {
+ "instrument": "bell",
+ "note": "21",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 878,
+ "properties": {
+ "instrument": "bell",
+ "note": "22",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 879,
+ "properties": {
+ "instrument": "bell",
+ "note": "22",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 880,
+ "properties": {
+ "instrument": "bell",
+ "note": "23",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 881,
+ "properties": {
+ "instrument": "bell",
+ "note": "23",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 882,
"properties": {
"instrument": "bell",
"note": "24",
@@ -133178,399 +137575,399 @@
}
},
{
- "id": 836,
+ "id": 883,
"properties": {
"instrument": "bell",
"note": "24",
"powered": "false"
}
},
- {
- "id": 837,
- "properties": {
- "instrument": "guitar",
- "note": "0",
- "powered": "true"
- }
- },
- {
- "id": 838,
- "properties": {
- "instrument": "guitar",
- "note": "0",
- "powered": "false"
- }
- },
- {
- "id": 839,
- "properties": {
- "instrument": "guitar",
- "note": "1",
- "powered": "true"
- }
- },
- {
- "id": 840,
- "properties": {
- "instrument": "guitar",
- "note": "1",
- "powered": "false"
- }
- },
- {
- "id": 841,
- "properties": {
- "instrument": "guitar",
- "note": "2",
- "powered": "true"
- }
- },
- {
- "id": 842,
- "properties": {
- "instrument": "guitar",
- "note": "2",
- "powered": "false"
- }
- },
- {
- "id": 843,
- "properties": {
- "instrument": "guitar",
- "note": "3",
- "powered": "true"
- }
- },
- {
- "id": 844,
- "properties": {
- "instrument": "guitar",
- "note": "3",
- "powered": "false"
- }
- },
- {
- "id": 845,
- "properties": {
- "instrument": "guitar",
- "note": "4",
- "powered": "true"
- }
- },
- {
- "id": 846,
- "properties": {
- "instrument": "guitar",
- "note": "4",
- "powered": "false"
- }
- },
- {
- "id": 847,
- "properties": {
- "instrument": "guitar",
- "note": "5",
- "powered": "true"
- }
- },
- {
- "id": 848,
- "properties": {
- "instrument": "guitar",
- "note": "5",
- "powered": "false"
- }
- },
- {
- "id": 849,
- "properties": {
- "instrument": "guitar",
- "note": "6",
- "powered": "true"
- }
- },
- {
- "id": 850,
- "properties": {
- "instrument": "guitar",
- "note": "6",
- "powered": "false"
- }
- },
- {
- "id": 851,
- "properties": {
- "instrument": "guitar",
- "note": "7",
- "powered": "true"
- }
- },
- {
- "id": 852,
- "properties": {
- "instrument": "guitar",
- "note": "7",
- "powered": "false"
- }
- },
- {
- "id": 853,
- "properties": {
- "instrument": "guitar",
- "note": "8",
- "powered": "true"
- }
- },
- {
- "id": 854,
- "properties": {
- "instrument": "guitar",
- "note": "8",
- "powered": "false"
- }
- },
- {
- "id": 855,
- "properties": {
- "instrument": "guitar",
- "note": "9",
- "powered": "true"
- }
- },
- {
- "id": 856,
- "properties": {
- "instrument": "guitar",
- "note": "9",
- "powered": "false"
- }
- },
- {
- "id": 857,
- "properties": {
- "instrument": "guitar",
- "note": "10",
- "powered": "true"
- }
- },
- {
- "id": 858,
- "properties": {
- "instrument": "guitar",
- "note": "10",
- "powered": "false"
- }
- },
- {
- "id": 859,
- "properties": {
- "instrument": "guitar",
- "note": "11",
- "powered": "true"
- }
- },
- {
- "id": 860,
- "properties": {
- "instrument": "guitar",
- "note": "11",
- "powered": "false"
- }
- },
- {
- "id": 861,
- "properties": {
- "instrument": "guitar",
- "note": "12",
- "powered": "true"
- }
- },
- {
- "id": 862,
- "properties": {
- "instrument": "guitar",
- "note": "12",
- "powered": "false"
- }
- },
- {
- "id": 863,
- "properties": {
- "instrument": "guitar",
- "note": "13",
- "powered": "true"
- }
- },
- {
- "id": 864,
- "properties": {
- "instrument": "guitar",
- "note": "13",
- "powered": "false"
- }
- },
- {
- "id": 865,
- "properties": {
- "instrument": "guitar",
- "note": "14",
- "powered": "true"
- }
- },
- {
- "id": 866,
- "properties": {
- "instrument": "guitar",
- "note": "14",
- "powered": "false"
- }
- },
- {
- "id": 867,
- "properties": {
- "instrument": "guitar",
- "note": "15",
- "powered": "true"
- }
- },
- {
- "id": 868,
- "properties": {
- "instrument": "guitar",
- "note": "15",
- "powered": "false"
- }
- },
- {
- "id": 869,
- "properties": {
- "instrument": "guitar",
- "note": "16",
- "powered": "true"
- }
- },
- {
- "id": 870,
- "properties": {
- "instrument": "guitar",
- "note": "16",
- "powered": "false"
- }
- },
- {
- "id": 871,
- "properties": {
- "instrument": "guitar",
- "note": "17",
- "powered": "true"
- }
- },
- {
- "id": 872,
- "properties": {
- "instrument": "guitar",
- "note": "17",
- "powered": "false"
- }
- },
- {
- "id": 873,
- "properties": {
- "instrument": "guitar",
- "note": "18",
- "powered": "true"
- }
- },
- {
- "id": 874,
- "properties": {
- "instrument": "guitar",
- "note": "18",
- "powered": "false"
- }
- },
- {
- "id": 875,
- "properties": {
- "instrument": "guitar",
- "note": "19",
- "powered": "true"
- }
- },
- {
- "id": 876,
- "properties": {
- "instrument": "guitar",
- "note": "19",
- "powered": "false"
- }
- },
- {
- "id": 877,
- "properties": {
- "instrument": "guitar",
- "note": "20",
- "powered": "true"
- }
- },
- {
- "id": 878,
- "properties": {
- "instrument": "guitar",
- "note": "20",
- "powered": "false"
- }
- },
- {
- "id": 879,
- "properties": {
- "instrument": "guitar",
- "note": "21",
- "powered": "true"
- }
- },
- {
- "id": 880,
- "properties": {
- "instrument": "guitar",
- "note": "21",
- "powered": "false"
- }
- },
- {
- "id": 881,
- "properties": {
- "instrument": "guitar",
- "note": "22",
- "powered": "true"
- }
- },
- {
- "id": 882,
- "properties": {
- "instrument": "guitar",
- "note": "22",
- "powered": "false"
- }
- },
- {
- "id": 883,
- "properties": {
- "instrument": "guitar",
- "note": "23",
- "powered": "true"
- }
- },
{
"id": 884,
"properties": {
"instrument": "guitar",
- "note": "23",
- "powered": "false"
+ "note": "0",
+ "powered": "true"
}
},
{
"id": 885,
+ "properties": {
+ "instrument": "guitar",
+ "note": "0",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 886,
+ "properties": {
+ "instrument": "guitar",
+ "note": "1",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 887,
+ "properties": {
+ "instrument": "guitar",
+ "note": "1",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 888,
+ "properties": {
+ "instrument": "guitar",
+ "note": "2",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 889,
+ "properties": {
+ "instrument": "guitar",
+ "note": "2",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 890,
+ "properties": {
+ "instrument": "guitar",
+ "note": "3",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 891,
+ "properties": {
+ "instrument": "guitar",
+ "note": "3",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 892,
+ "properties": {
+ "instrument": "guitar",
+ "note": "4",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 893,
+ "properties": {
+ "instrument": "guitar",
+ "note": "4",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 894,
+ "properties": {
+ "instrument": "guitar",
+ "note": "5",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 895,
+ "properties": {
+ "instrument": "guitar",
+ "note": "5",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 896,
+ "properties": {
+ "instrument": "guitar",
+ "note": "6",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 897,
+ "properties": {
+ "instrument": "guitar",
+ "note": "6",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 898,
+ "properties": {
+ "instrument": "guitar",
+ "note": "7",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 899,
+ "properties": {
+ "instrument": "guitar",
+ "note": "7",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 900,
+ "properties": {
+ "instrument": "guitar",
+ "note": "8",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 901,
+ "properties": {
+ "instrument": "guitar",
+ "note": "8",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 902,
+ "properties": {
+ "instrument": "guitar",
+ "note": "9",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 903,
+ "properties": {
+ "instrument": "guitar",
+ "note": "9",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 904,
+ "properties": {
+ "instrument": "guitar",
+ "note": "10",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 905,
+ "properties": {
+ "instrument": "guitar",
+ "note": "10",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 906,
+ "properties": {
+ "instrument": "guitar",
+ "note": "11",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 907,
+ "properties": {
+ "instrument": "guitar",
+ "note": "11",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 908,
+ "properties": {
+ "instrument": "guitar",
+ "note": "12",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 909,
+ "properties": {
+ "instrument": "guitar",
+ "note": "12",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 910,
+ "properties": {
+ "instrument": "guitar",
+ "note": "13",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 911,
+ "properties": {
+ "instrument": "guitar",
+ "note": "13",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 912,
+ "properties": {
+ "instrument": "guitar",
+ "note": "14",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 913,
+ "properties": {
+ "instrument": "guitar",
+ "note": "14",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 914,
+ "properties": {
+ "instrument": "guitar",
+ "note": "15",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 915,
+ "properties": {
+ "instrument": "guitar",
+ "note": "15",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 916,
+ "properties": {
+ "instrument": "guitar",
+ "note": "16",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 917,
+ "properties": {
+ "instrument": "guitar",
+ "note": "16",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 918,
+ "properties": {
+ "instrument": "guitar",
+ "note": "17",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 919,
+ "properties": {
+ "instrument": "guitar",
+ "note": "17",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 920,
+ "properties": {
+ "instrument": "guitar",
+ "note": "18",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 921,
+ "properties": {
+ "instrument": "guitar",
+ "note": "18",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 922,
+ "properties": {
+ "instrument": "guitar",
+ "note": "19",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 923,
+ "properties": {
+ "instrument": "guitar",
+ "note": "19",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 924,
+ "properties": {
+ "instrument": "guitar",
+ "note": "20",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 925,
+ "properties": {
+ "instrument": "guitar",
+ "note": "20",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 926,
+ "properties": {
+ "instrument": "guitar",
+ "note": "21",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 927,
+ "properties": {
+ "instrument": "guitar",
+ "note": "21",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 928,
+ "properties": {
+ "instrument": "guitar",
+ "note": "22",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 929,
+ "properties": {
+ "instrument": "guitar",
+ "note": "22",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 930,
+ "properties": {
+ "instrument": "guitar",
+ "note": "23",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 931,
+ "properties": {
+ "instrument": "guitar",
+ "note": "23",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 932,
"properties": {
"instrument": "guitar",
"note": "24",
@@ -133578,399 +137975,399 @@
}
},
{
- "id": 886,
+ "id": 933,
"properties": {
"instrument": "guitar",
"note": "24",
"powered": "false"
}
},
- {
- "id": 887,
- "properties": {
- "instrument": "chime",
- "note": "0",
- "powered": "true"
- }
- },
- {
- "id": 888,
- "properties": {
- "instrument": "chime",
- "note": "0",
- "powered": "false"
- }
- },
- {
- "id": 889,
- "properties": {
- "instrument": "chime",
- "note": "1",
- "powered": "true"
- }
- },
- {
- "id": 890,
- "properties": {
- "instrument": "chime",
- "note": "1",
- "powered": "false"
- }
- },
- {
- "id": 891,
- "properties": {
- "instrument": "chime",
- "note": "2",
- "powered": "true"
- }
- },
- {
- "id": 892,
- "properties": {
- "instrument": "chime",
- "note": "2",
- "powered": "false"
- }
- },
- {
- "id": 893,
- "properties": {
- "instrument": "chime",
- "note": "3",
- "powered": "true"
- }
- },
- {
- "id": 894,
- "properties": {
- "instrument": "chime",
- "note": "3",
- "powered": "false"
- }
- },
- {
- "id": 895,
- "properties": {
- "instrument": "chime",
- "note": "4",
- "powered": "true"
- }
- },
- {
- "id": 896,
- "properties": {
- "instrument": "chime",
- "note": "4",
- "powered": "false"
- }
- },
- {
- "id": 897,
- "properties": {
- "instrument": "chime",
- "note": "5",
- "powered": "true"
- }
- },
- {
- "id": 898,
- "properties": {
- "instrument": "chime",
- "note": "5",
- "powered": "false"
- }
- },
- {
- "id": 899,
- "properties": {
- "instrument": "chime",
- "note": "6",
- "powered": "true"
- }
- },
- {
- "id": 900,
- "properties": {
- "instrument": "chime",
- "note": "6",
- "powered": "false"
- }
- },
- {
- "id": 901,
- "properties": {
- "instrument": "chime",
- "note": "7",
- "powered": "true"
- }
- },
- {
- "id": 902,
- "properties": {
- "instrument": "chime",
- "note": "7",
- "powered": "false"
- }
- },
- {
- "id": 903,
- "properties": {
- "instrument": "chime",
- "note": "8",
- "powered": "true"
- }
- },
- {
- "id": 904,
- "properties": {
- "instrument": "chime",
- "note": "8",
- "powered": "false"
- }
- },
- {
- "id": 905,
- "properties": {
- "instrument": "chime",
- "note": "9",
- "powered": "true"
- }
- },
- {
- "id": 906,
- "properties": {
- "instrument": "chime",
- "note": "9",
- "powered": "false"
- }
- },
- {
- "id": 907,
- "properties": {
- "instrument": "chime",
- "note": "10",
- "powered": "true"
- }
- },
- {
- "id": 908,
- "properties": {
- "instrument": "chime",
- "note": "10",
- "powered": "false"
- }
- },
- {
- "id": 909,
- "properties": {
- "instrument": "chime",
- "note": "11",
- "powered": "true"
- }
- },
- {
- "id": 910,
- "properties": {
- "instrument": "chime",
- "note": "11",
- "powered": "false"
- }
- },
- {
- "id": 911,
- "properties": {
- "instrument": "chime",
- "note": "12",
- "powered": "true"
- }
- },
- {
- "id": 912,
- "properties": {
- "instrument": "chime",
- "note": "12",
- "powered": "false"
- }
- },
- {
- "id": 913,
- "properties": {
- "instrument": "chime",
- "note": "13",
- "powered": "true"
- }
- },
- {
- "id": 914,
- "properties": {
- "instrument": "chime",
- "note": "13",
- "powered": "false"
- }
- },
- {
- "id": 915,
- "properties": {
- "instrument": "chime",
- "note": "14",
- "powered": "true"
- }
- },
- {
- "id": 916,
- "properties": {
- "instrument": "chime",
- "note": "14",
- "powered": "false"
- }
- },
- {
- "id": 917,
- "properties": {
- "instrument": "chime",
- "note": "15",
- "powered": "true"
- }
- },
- {
- "id": 918,
- "properties": {
- "instrument": "chime",
- "note": "15",
- "powered": "false"
- }
- },
- {
- "id": 919,
- "properties": {
- "instrument": "chime",
- "note": "16",
- "powered": "true"
- }
- },
- {
- "id": 920,
- "properties": {
- "instrument": "chime",
- "note": "16",
- "powered": "false"
- }
- },
- {
- "id": 921,
- "properties": {
- "instrument": "chime",
- "note": "17",
- "powered": "true"
- }
- },
- {
- "id": 922,
- "properties": {
- "instrument": "chime",
- "note": "17",
- "powered": "false"
- }
- },
- {
- "id": 923,
- "properties": {
- "instrument": "chime",
- "note": "18",
- "powered": "true"
- }
- },
- {
- "id": 924,
- "properties": {
- "instrument": "chime",
- "note": "18",
- "powered": "false"
- }
- },
- {
- "id": 925,
- "properties": {
- "instrument": "chime",
- "note": "19",
- "powered": "true"
- }
- },
- {
- "id": 926,
- "properties": {
- "instrument": "chime",
- "note": "19",
- "powered": "false"
- }
- },
- {
- "id": 927,
- "properties": {
- "instrument": "chime",
- "note": "20",
- "powered": "true"
- }
- },
- {
- "id": 928,
- "properties": {
- "instrument": "chime",
- "note": "20",
- "powered": "false"
- }
- },
- {
- "id": 929,
- "properties": {
- "instrument": "chime",
- "note": "21",
- "powered": "true"
- }
- },
- {
- "id": 930,
- "properties": {
- "instrument": "chime",
- "note": "21",
- "powered": "false"
- }
- },
- {
- "id": 931,
- "properties": {
- "instrument": "chime",
- "note": "22",
- "powered": "true"
- }
- },
- {
- "id": 932,
- "properties": {
- "instrument": "chime",
- "note": "22",
- "powered": "false"
- }
- },
- {
- "id": 933,
- "properties": {
- "instrument": "chime",
- "note": "23",
- "powered": "true"
- }
- },
{
"id": 934,
"properties": {
"instrument": "chime",
- "note": "23",
- "powered": "false"
+ "note": "0",
+ "powered": "true"
}
},
{
"id": 935,
+ "properties": {
+ "instrument": "chime",
+ "note": "0",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 936,
+ "properties": {
+ "instrument": "chime",
+ "note": "1",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 937,
+ "properties": {
+ "instrument": "chime",
+ "note": "1",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 938,
+ "properties": {
+ "instrument": "chime",
+ "note": "2",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 939,
+ "properties": {
+ "instrument": "chime",
+ "note": "2",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 940,
+ "properties": {
+ "instrument": "chime",
+ "note": "3",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 941,
+ "properties": {
+ "instrument": "chime",
+ "note": "3",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 942,
+ "properties": {
+ "instrument": "chime",
+ "note": "4",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 943,
+ "properties": {
+ "instrument": "chime",
+ "note": "4",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 944,
+ "properties": {
+ "instrument": "chime",
+ "note": "5",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 945,
+ "properties": {
+ "instrument": "chime",
+ "note": "5",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 946,
+ "properties": {
+ "instrument": "chime",
+ "note": "6",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 947,
+ "properties": {
+ "instrument": "chime",
+ "note": "6",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 948,
+ "properties": {
+ "instrument": "chime",
+ "note": "7",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 949,
+ "properties": {
+ "instrument": "chime",
+ "note": "7",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 950,
+ "properties": {
+ "instrument": "chime",
+ "note": "8",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 951,
+ "properties": {
+ "instrument": "chime",
+ "note": "8",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 952,
+ "properties": {
+ "instrument": "chime",
+ "note": "9",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 953,
+ "properties": {
+ "instrument": "chime",
+ "note": "9",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 954,
+ "properties": {
+ "instrument": "chime",
+ "note": "10",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 955,
+ "properties": {
+ "instrument": "chime",
+ "note": "10",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 956,
+ "properties": {
+ "instrument": "chime",
+ "note": "11",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 957,
+ "properties": {
+ "instrument": "chime",
+ "note": "11",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 958,
+ "properties": {
+ "instrument": "chime",
+ "note": "12",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 959,
+ "properties": {
+ "instrument": "chime",
+ "note": "12",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 960,
+ "properties": {
+ "instrument": "chime",
+ "note": "13",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 961,
+ "properties": {
+ "instrument": "chime",
+ "note": "13",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 962,
+ "properties": {
+ "instrument": "chime",
+ "note": "14",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 963,
+ "properties": {
+ "instrument": "chime",
+ "note": "14",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 964,
+ "properties": {
+ "instrument": "chime",
+ "note": "15",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 965,
+ "properties": {
+ "instrument": "chime",
+ "note": "15",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 966,
+ "properties": {
+ "instrument": "chime",
+ "note": "16",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 967,
+ "properties": {
+ "instrument": "chime",
+ "note": "16",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 968,
+ "properties": {
+ "instrument": "chime",
+ "note": "17",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 969,
+ "properties": {
+ "instrument": "chime",
+ "note": "17",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 970,
+ "properties": {
+ "instrument": "chime",
+ "note": "18",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 971,
+ "properties": {
+ "instrument": "chime",
+ "note": "18",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 972,
+ "properties": {
+ "instrument": "chime",
+ "note": "19",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 973,
+ "properties": {
+ "instrument": "chime",
+ "note": "19",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 974,
+ "properties": {
+ "instrument": "chime",
+ "note": "20",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 975,
+ "properties": {
+ "instrument": "chime",
+ "note": "20",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 976,
+ "properties": {
+ "instrument": "chime",
+ "note": "21",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 977,
+ "properties": {
+ "instrument": "chime",
+ "note": "21",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 978,
+ "properties": {
+ "instrument": "chime",
+ "note": "22",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 979,
+ "properties": {
+ "instrument": "chime",
+ "note": "22",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 980,
+ "properties": {
+ "instrument": "chime",
+ "note": "23",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 981,
+ "properties": {
+ "instrument": "chime",
+ "note": "23",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 982,
"properties": {
"instrument": "chime",
"note": "24",
@@ -133978,399 +138375,399 @@
}
},
{
- "id": 936,
+ "id": 983,
"properties": {
"instrument": "chime",
"note": "24",
"powered": "false"
}
},
- {
- "id": 937,
- "properties": {
- "instrument": "xylophone",
- "note": "0",
- "powered": "true"
- }
- },
- {
- "id": 938,
- "properties": {
- "instrument": "xylophone",
- "note": "0",
- "powered": "false"
- }
- },
- {
- "id": 939,
- "properties": {
- "instrument": "xylophone",
- "note": "1",
- "powered": "true"
- }
- },
- {
- "id": 940,
- "properties": {
- "instrument": "xylophone",
- "note": "1",
- "powered": "false"
- }
- },
- {
- "id": 941,
- "properties": {
- "instrument": "xylophone",
- "note": "2",
- "powered": "true"
- }
- },
- {
- "id": 942,
- "properties": {
- "instrument": "xylophone",
- "note": "2",
- "powered": "false"
- }
- },
- {
- "id": 943,
- "properties": {
- "instrument": "xylophone",
- "note": "3",
- "powered": "true"
- }
- },
- {
- "id": 944,
- "properties": {
- "instrument": "xylophone",
- "note": "3",
- "powered": "false"
- }
- },
- {
- "id": 945,
- "properties": {
- "instrument": "xylophone",
- "note": "4",
- "powered": "true"
- }
- },
- {
- "id": 946,
- "properties": {
- "instrument": "xylophone",
- "note": "4",
- "powered": "false"
- }
- },
- {
- "id": 947,
- "properties": {
- "instrument": "xylophone",
- "note": "5",
- "powered": "true"
- }
- },
- {
- "id": 948,
- "properties": {
- "instrument": "xylophone",
- "note": "5",
- "powered": "false"
- }
- },
- {
- "id": 949,
- "properties": {
- "instrument": "xylophone",
- "note": "6",
- "powered": "true"
- }
- },
- {
- "id": 950,
- "properties": {
- "instrument": "xylophone",
- "note": "6",
- "powered": "false"
- }
- },
- {
- "id": 951,
- "properties": {
- "instrument": "xylophone",
- "note": "7",
- "powered": "true"
- }
- },
- {
- "id": 952,
- "properties": {
- "instrument": "xylophone",
- "note": "7",
- "powered": "false"
- }
- },
- {
- "id": 953,
- "properties": {
- "instrument": "xylophone",
- "note": "8",
- "powered": "true"
- }
- },
- {
- "id": 954,
- "properties": {
- "instrument": "xylophone",
- "note": "8",
- "powered": "false"
- }
- },
- {
- "id": 955,
- "properties": {
- "instrument": "xylophone",
- "note": "9",
- "powered": "true"
- }
- },
- {
- "id": 956,
- "properties": {
- "instrument": "xylophone",
- "note": "9",
- "powered": "false"
- }
- },
- {
- "id": 957,
- "properties": {
- "instrument": "xylophone",
- "note": "10",
- "powered": "true"
- }
- },
- {
- "id": 958,
- "properties": {
- "instrument": "xylophone",
- "note": "10",
- "powered": "false"
- }
- },
- {
- "id": 959,
- "properties": {
- "instrument": "xylophone",
- "note": "11",
- "powered": "true"
- }
- },
- {
- "id": 960,
- "properties": {
- "instrument": "xylophone",
- "note": "11",
- "powered": "false"
- }
- },
- {
- "id": 961,
- "properties": {
- "instrument": "xylophone",
- "note": "12",
- "powered": "true"
- }
- },
- {
- "id": 962,
- "properties": {
- "instrument": "xylophone",
- "note": "12",
- "powered": "false"
- }
- },
- {
- "id": 963,
- "properties": {
- "instrument": "xylophone",
- "note": "13",
- "powered": "true"
- }
- },
- {
- "id": 964,
- "properties": {
- "instrument": "xylophone",
- "note": "13",
- "powered": "false"
- }
- },
- {
- "id": 965,
- "properties": {
- "instrument": "xylophone",
- "note": "14",
- "powered": "true"
- }
- },
- {
- "id": 966,
- "properties": {
- "instrument": "xylophone",
- "note": "14",
- "powered": "false"
- }
- },
- {
- "id": 967,
- "properties": {
- "instrument": "xylophone",
- "note": "15",
- "powered": "true"
- }
- },
- {
- "id": 968,
- "properties": {
- "instrument": "xylophone",
- "note": "15",
- "powered": "false"
- }
- },
- {
- "id": 969,
- "properties": {
- "instrument": "xylophone",
- "note": "16",
- "powered": "true"
- }
- },
- {
- "id": 970,
- "properties": {
- "instrument": "xylophone",
- "note": "16",
- "powered": "false"
- }
- },
- {
- "id": 971,
- "properties": {
- "instrument": "xylophone",
- "note": "17",
- "powered": "true"
- }
- },
- {
- "id": 972,
- "properties": {
- "instrument": "xylophone",
- "note": "17",
- "powered": "false"
- }
- },
- {
- "id": 973,
- "properties": {
- "instrument": "xylophone",
- "note": "18",
- "powered": "true"
- }
- },
- {
- "id": 974,
- "properties": {
- "instrument": "xylophone",
- "note": "18",
- "powered": "false"
- }
- },
- {
- "id": 975,
- "properties": {
- "instrument": "xylophone",
- "note": "19",
- "powered": "true"
- }
- },
- {
- "id": 976,
- "properties": {
- "instrument": "xylophone",
- "note": "19",
- "powered": "false"
- }
- },
- {
- "id": 977,
- "properties": {
- "instrument": "xylophone",
- "note": "20",
- "powered": "true"
- }
- },
- {
- "id": 978,
- "properties": {
- "instrument": "xylophone",
- "note": "20",
- "powered": "false"
- }
- },
- {
- "id": 979,
- "properties": {
- "instrument": "xylophone",
- "note": "21",
- "powered": "true"
- }
- },
- {
- "id": 980,
- "properties": {
- "instrument": "xylophone",
- "note": "21",
- "powered": "false"
- }
- },
- {
- "id": 981,
- "properties": {
- "instrument": "xylophone",
- "note": "22",
- "powered": "true"
- }
- },
- {
- "id": 982,
- "properties": {
- "instrument": "xylophone",
- "note": "22",
- "powered": "false"
- }
- },
- {
- "id": 983,
- "properties": {
- "instrument": "xylophone",
- "note": "23",
- "powered": "true"
- }
- },
{
"id": 984,
"properties": {
"instrument": "xylophone",
- "note": "23",
- "powered": "false"
+ "note": "0",
+ "powered": "true"
}
},
{
"id": 985,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "0",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 986,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "1",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 987,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "1",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 988,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "2",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 989,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "2",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 990,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "3",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 991,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "3",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 992,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "4",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 993,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "4",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 994,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "5",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 995,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "5",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 996,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "6",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 997,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "6",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 998,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "7",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 999,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "7",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1000,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "8",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1001,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "8",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1002,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "9",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1003,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "9",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1004,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "10",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1005,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "10",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1006,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "11",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1007,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "11",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1008,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "12",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1009,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "12",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1010,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "13",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1011,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "13",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1012,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "14",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1013,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "14",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1014,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "15",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1015,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "15",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1016,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "16",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1017,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "16",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1018,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "17",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1019,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "17",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1020,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "18",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1021,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "18",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1022,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "19",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1023,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "19",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1024,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "20",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1025,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "20",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1026,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "21",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1027,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "21",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1028,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "22",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1029,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "22",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1030,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "23",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1031,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "23",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1032,
"properties": {
"instrument": "xylophone",
"note": "24",
@@ -134378,399 +138775,399 @@
}
},
{
- "id": 986,
+ "id": 1033,
"properties": {
"instrument": "xylophone",
"note": "24",
"powered": "false"
}
},
- {
- "id": 987,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "0",
- "powered": "true"
- }
- },
- {
- "id": 988,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "0",
- "powered": "false"
- }
- },
- {
- "id": 989,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "1",
- "powered": "true"
- }
- },
- {
- "id": 990,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "1",
- "powered": "false"
- }
- },
- {
- "id": 991,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "2",
- "powered": "true"
- }
- },
- {
- "id": 992,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "2",
- "powered": "false"
- }
- },
- {
- "id": 993,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "3",
- "powered": "true"
- }
- },
- {
- "id": 994,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "3",
- "powered": "false"
- }
- },
- {
- "id": 995,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "4",
- "powered": "true"
- }
- },
- {
- "id": 996,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "4",
- "powered": "false"
- }
- },
- {
- "id": 997,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "5",
- "powered": "true"
- }
- },
- {
- "id": 998,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "5",
- "powered": "false"
- }
- },
- {
- "id": 999,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "6",
- "powered": "true"
- }
- },
- {
- "id": 1000,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "6",
- "powered": "false"
- }
- },
- {
- "id": 1001,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "7",
- "powered": "true"
- }
- },
- {
- "id": 1002,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "7",
- "powered": "false"
- }
- },
- {
- "id": 1003,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "8",
- "powered": "true"
- }
- },
- {
- "id": 1004,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "8",
- "powered": "false"
- }
- },
- {
- "id": 1005,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "9",
- "powered": "true"
- }
- },
- {
- "id": 1006,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "9",
- "powered": "false"
- }
- },
- {
- "id": 1007,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "10",
- "powered": "true"
- }
- },
- {
- "id": 1008,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "10",
- "powered": "false"
- }
- },
- {
- "id": 1009,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "11",
- "powered": "true"
- }
- },
- {
- "id": 1010,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "11",
- "powered": "false"
- }
- },
- {
- "id": 1011,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "12",
- "powered": "true"
- }
- },
- {
- "id": 1012,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "12",
- "powered": "false"
- }
- },
- {
- "id": 1013,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "13",
- "powered": "true"
- }
- },
- {
- "id": 1014,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "13",
- "powered": "false"
- }
- },
- {
- "id": 1015,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "14",
- "powered": "true"
- }
- },
- {
- "id": 1016,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "14",
- "powered": "false"
- }
- },
- {
- "id": 1017,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "15",
- "powered": "true"
- }
- },
- {
- "id": 1018,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "15",
- "powered": "false"
- }
- },
- {
- "id": 1019,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "16",
- "powered": "true"
- }
- },
- {
- "id": 1020,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "16",
- "powered": "false"
- }
- },
- {
- "id": 1021,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "17",
- "powered": "true"
- }
- },
- {
- "id": 1022,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "17",
- "powered": "false"
- }
- },
- {
- "id": 1023,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "18",
- "powered": "true"
- }
- },
- {
- "id": 1024,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "18",
- "powered": "false"
- }
- },
- {
- "id": 1025,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "19",
- "powered": "true"
- }
- },
- {
- "id": 1026,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "19",
- "powered": "false"
- }
- },
- {
- "id": 1027,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "20",
- "powered": "true"
- }
- },
- {
- "id": 1028,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "20",
- "powered": "false"
- }
- },
- {
- "id": 1029,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "21",
- "powered": "true"
- }
- },
- {
- "id": 1030,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "21",
- "powered": "false"
- }
- },
- {
- "id": 1031,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "22",
- "powered": "true"
- }
- },
- {
- "id": 1032,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "22",
- "powered": "false"
- }
- },
- {
- "id": 1033,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "23",
- "powered": "true"
- }
- },
{
"id": 1034,
"properties": {
"instrument": "iron_xylophone",
- "note": "23",
- "powered": "false"
+ "note": "0",
+ "powered": "true"
}
},
{
"id": 1035,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "0",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1036,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "1",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1037,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "1",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1038,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "2",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1039,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "2",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1040,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "3",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1041,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "3",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1042,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "4",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1043,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "4",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1044,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "5",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1045,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "5",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1046,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "6",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1047,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "6",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1048,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "7",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1049,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "7",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1050,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "8",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1051,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "8",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1052,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "9",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1053,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "9",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1054,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "10",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1055,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "10",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1056,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "11",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1057,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "11",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1058,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "12",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1059,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "12",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1060,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "13",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1061,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "13",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1062,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "14",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1063,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "14",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1064,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "15",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1065,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "15",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1066,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "16",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1067,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "16",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1068,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "17",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1069,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "17",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1070,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "18",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1071,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "18",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1072,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "19",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1073,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "19",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1074,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "20",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1075,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "20",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1076,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "21",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1077,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "21",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1078,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "22",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1079,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "22",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1080,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "23",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1081,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "23",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1082,
"properties": {
"instrument": "iron_xylophone",
"note": "24",
@@ -134778,399 +139175,399 @@
}
},
{
- "id": 1036,
+ "id": 1083,
"properties": {
"instrument": "iron_xylophone",
"note": "24",
"powered": "false"
}
},
- {
- "id": 1037,
- "properties": {
- "instrument": "cow_bell",
- "note": "0",
- "powered": "true"
- }
- },
- {
- "id": 1038,
- "properties": {
- "instrument": "cow_bell",
- "note": "0",
- "powered": "false"
- }
- },
- {
- "id": 1039,
- "properties": {
- "instrument": "cow_bell",
- "note": "1",
- "powered": "true"
- }
- },
- {
- "id": 1040,
- "properties": {
- "instrument": "cow_bell",
- "note": "1",
- "powered": "false"
- }
- },
- {
- "id": 1041,
- "properties": {
- "instrument": "cow_bell",
- "note": "2",
- "powered": "true"
- }
- },
- {
- "id": 1042,
- "properties": {
- "instrument": "cow_bell",
- "note": "2",
- "powered": "false"
- }
- },
- {
- "id": 1043,
- "properties": {
- "instrument": "cow_bell",
- "note": "3",
- "powered": "true"
- }
- },
- {
- "id": 1044,
- "properties": {
- "instrument": "cow_bell",
- "note": "3",
- "powered": "false"
- }
- },
- {
- "id": 1045,
- "properties": {
- "instrument": "cow_bell",
- "note": "4",
- "powered": "true"
- }
- },
- {
- "id": 1046,
- "properties": {
- "instrument": "cow_bell",
- "note": "4",
- "powered": "false"
- }
- },
- {
- "id": 1047,
- "properties": {
- "instrument": "cow_bell",
- "note": "5",
- "powered": "true"
- }
- },
- {
- "id": 1048,
- "properties": {
- "instrument": "cow_bell",
- "note": "5",
- "powered": "false"
- }
- },
- {
- "id": 1049,
- "properties": {
- "instrument": "cow_bell",
- "note": "6",
- "powered": "true"
- }
- },
- {
- "id": 1050,
- "properties": {
- "instrument": "cow_bell",
- "note": "6",
- "powered": "false"
- }
- },
- {
- "id": 1051,
- "properties": {
- "instrument": "cow_bell",
- "note": "7",
- "powered": "true"
- }
- },
- {
- "id": 1052,
- "properties": {
- "instrument": "cow_bell",
- "note": "7",
- "powered": "false"
- }
- },
- {
- "id": 1053,
- "properties": {
- "instrument": "cow_bell",
- "note": "8",
- "powered": "true"
- }
- },
- {
- "id": 1054,
- "properties": {
- "instrument": "cow_bell",
- "note": "8",
- "powered": "false"
- }
- },
- {
- "id": 1055,
- "properties": {
- "instrument": "cow_bell",
- "note": "9",
- "powered": "true"
- }
- },
- {
- "id": 1056,
- "properties": {
- "instrument": "cow_bell",
- "note": "9",
- "powered": "false"
- }
- },
- {
- "id": 1057,
- "properties": {
- "instrument": "cow_bell",
- "note": "10",
- "powered": "true"
- }
- },
- {
- "id": 1058,
- "properties": {
- "instrument": "cow_bell",
- "note": "10",
- "powered": "false"
- }
- },
- {
- "id": 1059,
- "properties": {
- "instrument": "cow_bell",
- "note": "11",
- "powered": "true"
- }
- },
- {
- "id": 1060,
- "properties": {
- "instrument": "cow_bell",
- "note": "11",
- "powered": "false"
- }
- },
- {
- "id": 1061,
- "properties": {
- "instrument": "cow_bell",
- "note": "12",
- "powered": "true"
- }
- },
- {
- "id": 1062,
- "properties": {
- "instrument": "cow_bell",
- "note": "12",
- "powered": "false"
- }
- },
- {
- "id": 1063,
- "properties": {
- "instrument": "cow_bell",
- "note": "13",
- "powered": "true"
- }
- },
- {
- "id": 1064,
- "properties": {
- "instrument": "cow_bell",
- "note": "13",
- "powered": "false"
- }
- },
- {
- "id": 1065,
- "properties": {
- "instrument": "cow_bell",
- "note": "14",
- "powered": "true"
- }
- },
- {
- "id": 1066,
- "properties": {
- "instrument": "cow_bell",
- "note": "14",
- "powered": "false"
- }
- },
- {
- "id": 1067,
- "properties": {
- "instrument": "cow_bell",
- "note": "15",
- "powered": "true"
- }
- },
- {
- "id": 1068,
- "properties": {
- "instrument": "cow_bell",
- "note": "15",
- "powered": "false"
- }
- },
- {
- "id": 1069,
- "properties": {
- "instrument": "cow_bell",
- "note": "16",
- "powered": "true"
- }
- },
- {
- "id": 1070,
- "properties": {
- "instrument": "cow_bell",
- "note": "16",
- "powered": "false"
- }
- },
- {
- "id": 1071,
- "properties": {
- "instrument": "cow_bell",
- "note": "17",
- "powered": "true"
- }
- },
- {
- "id": 1072,
- "properties": {
- "instrument": "cow_bell",
- "note": "17",
- "powered": "false"
- }
- },
- {
- "id": 1073,
- "properties": {
- "instrument": "cow_bell",
- "note": "18",
- "powered": "true"
- }
- },
- {
- "id": 1074,
- "properties": {
- "instrument": "cow_bell",
- "note": "18",
- "powered": "false"
- }
- },
- {
- "id": 1075,
- "properties": {
- "instrument": "cow_bell",
- "note": "19",
- "powered": "true"
- }
- },
- {
- "id": 1076,
- "properties": {
- "instrument": "cow_bell",
- "note": "19",
- "powered": "false"
- }
- },
- {
- "id": 1077,
- "properties": {
- "instrument": "cow_bell",
- "note": "20",
- "powered": "true"
- }
- },
- {
- "id": 1078,
- "properties": {
- "instrument": "cow_bell",
- "note": "20",
- "powered": "false"
- }
- },
- {
- "id": 1079,
- "properties": {
- "instrument": "cow_bell",
- "note": "21",
- "powered": "true"
- }
- },
- {
- "id": 1080,
- "properties": {
- "instrument": "cow_bell",
- "note": "21",
- "powered": "false"
- }
- },
- {
- "id": 1081,
- "properties": {
- "instrument": "cow_bell",
- "note": "22",
- "powered": "true"
- }
- },
- {
- "id": 1082,
- "properties": {
- "instrument": "cow_bell",
- "note": "22",
- "powered": "false"
- }
- },
- {
- "id": 1083,
- "properties": {
- "instrument": "cow_bell",
- "note": "23",
- "powered": "true"
- }
- },
{
"id": 1084,
"properties": {
"instrument": "cow_bell",
- "note": "23",
- "powered": "false"
+ "note": "0",
+ "powered": "true"
}
},
{
"id": 1085,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "0",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1086,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "1",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1087,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "1",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1088,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "2",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1089,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "2",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1090,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "3",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1091,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "3",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1092,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "4",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1093,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "4",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1094,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "5",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1095,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "5",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1096,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "6",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1097,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "6",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1098,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "7",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1099,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "7",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1100,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "8",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1101,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "8",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1102,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "9",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1103,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "9",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1104,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "10",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1105,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "10",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1106,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "11",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1107,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "11",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1108,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "12",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1109,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "12",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1110,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "13",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1111,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "13",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1112,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "14",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1113,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "14",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1114,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "15",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1115,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "15",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1116,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "16",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1117,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "16",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1118,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "17",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1119,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "17",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1120,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "18",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1121,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "18",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1122,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "19",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1123,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "19",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1124,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "20",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1125,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "20",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1126,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "21",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1127,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "21",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1128,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "22",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1129,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "22",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1130,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "23",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1131,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "23",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1132,
"properties": {
"instrument": "cow_bell",
"note": "24",
@@ -135178,399 +139575,399 @@
}
},
{
- "id": 1086,
+ "id": 1133,
"properties": {
"instrument": "cow_bell",
"note": "24",
"powered": "false"
}
},
- {
- "id": 1087,
- "properties": {
- "instrument": "didgeridoo",
- "note": "0",
- "powered": "true"
- }
- },
- {
- "id": 1088,
- "properties": {
- "instrument": "didgeridoo",
- "note": "0",
- "powered": "false"
- }
- },
- {
- "id": 1089,
- "properties": {
- "instrument": "didgeridoo",
- "note": "1",
- "powered": "true"
- }
- },
- {
- "id": 1090,
- "properties": {
- "instrument": "didgeridoo",
- "note": "1",
- "powered": "false"
- }
- },
- {
- "id": 1091,
- "properties": {
- "instrument": "didgeridoo",
- "note": "2",
- "powered": "true"
- }
- },
- {
- "id": 1092,
- "properties": {
- "instrument": "didgeridoo",
- "note": "2",
- "powered": "false"
- }
- },
- {
- "id": 1093,
- "properties": {
- "instrument": "didgeridoo",
- "note": "3",
- "powered": "true"
- }
- },
- {
- "id": 1094,
- "properties": {
- "instrument": "didgeridoo",
- "note": "3",
- "powered": "false"
- }
- },
- {
- "id": 1095,
- "properties": {
- "instrument": "didgeridoo",
- "note": "4",
- "powered": "true"
- }
- },
- {
- "id": 1096,
- "properties": {
- "instrument": "didgeridoo",
- "note": "4",
- "powered": "false"
- }
- },
- {
- "id": 1097,
- "properties": {
- "instrument": "didgeridoo",
- "note": "5",
- "powered": "true"
- }
- },
- {
- "id": 1098,
- "properties": {
- "instrument": "didgeridoo",
- "note": "5",
- "powered": "false"
- }
- },
- {
- "id": 1099,
- "properties": {
- "instrument": "didgeridoo",
- "note": "6",
- "powered": "true"
- }
- },
- {
- "id": 1100,
- "properties": {
- "instrument": "didgeridoo",
- "note": "6",
- "powered": "false"
- }
- },
- {
- "id": 1101,
- "properties": {
- "instrument": "didgeridoo",
- "note": "7",
- "powered": "true"
- }
- },
- {
- "id": 1102,
- "properties": {
- "instrument": "didgeridoo",
- "note": "7",
- "powered": "false"
- }
- },
- {
- "id": 1103,
- "properties": {
- "instrument": "didgeridoo",
- "note": "8",
- "powered": "true"
- }
- },
- {
- "id": 1104,
- "properties": {
- "instrument": "didgeridoo",
- "note": "8",
- "powered": "false"
- }
- },
- {
- "id": 1105,
- "properties": {
- "instrument": "didgeridoo",
- "note": "9",
- "powered": "true"
- }
- },
- {
- "id": 1106,
- "properties": {
- "instrument": "didgeridoo",
- "note": "9",
- "powered": "false"
- }
- },
- {
- "id": 1107,
- "properties": {
- "instrument": "didgeridoo",
- "note": "10",
- "powered": "true"
- }
- },
- {
- "id": 1108,
- "properties": {
- "instrument": "didgeridoo",
- "note": "10",
- "powered": "false"
- }
- },
- {
- "id": 1109,
- "properties": {
- "instrument": "didgeridoo",
- "note": "11",
- "powered": "true"
- }
- },
- {
- "id": 1110,
- "properties": {
- "instrument": "didgeridoo",
- "note": "11",
- "powered": "false"
- }
- },
- {
- "id": 1111,
- "properties": {
- "instrument": "didgeridoo",
- "note": "12",
- "powered": "true"
- }
- },
- {
- "id": 1112,
- "properties": {
- "instrument": "didgeridoo",
- "note": "12",
- "powered": "false"
- }
- },
- {
- "id": 1113,
- "properties": {
- "instrument": "didgeridoo",
- "note": "13",
- "powered": "true"
- }
- },
- {
- "id": 1114,
- "properties": {
- "instrument": "didgeridoo",
- "note": "13",
- "powered": "false"
- }
- },
- {
- "id": 1115,
- "properties": {
- "instrument": "didgeridoo",
- "note": "14",
- "powered": "true"
- }
- },
- {
- "id": 1116,
- "properties": {
- "instrument": "didgeridoo",
- "note": "14",
- "powered": "false"
- }
- },
- {
- "id": 1117,
- "properties": {
- "instrument": "didgeridoo",
- "note": "15",
- "powered": "true"
- }
- },
- {
- "id": 1118,
- "properties": {
- "instrument": "didgeridoo",
- "note": "15",
- "powered": "false"
- }
- },
- {
- "id": 1119,
- "properties": {
- "instrument": "didgeridoo",
- "note": "16",
- "powered": "true"
- }
- },
- {
- "id": 1120,
- "properties": {
- "instrument": "didgeridoo",
- "note": "16",
- "powered": "false"
- }
- },
- {
- "id": 1121,
- "properties": {
- "instrument": "didgeridoo",
- "note": "17",
- "powered": "true"
- }
- },
- {
- "id": 1122,
- "properties": {
- "instrument": "didgeridoo",
- "note": "17",
- "powered": "false"
- }
- },
- {
- "id": 1123,
- "properties": {
- "instrument": "didgeridoo",
- "note": "18",
- "powered": "true"
- }
- },
- {
- "id": 1124,
- "properties": {
- "instrument": "didgeridoo",
- "note": "18",
- "powered": "false"
- }
- },
- {
- "id": 1125,
- "properties": {
- "instrument": "didgeridoo",
- "note": "19",
- "powered": "true"
- }
- },
- {
- "id": 1126,
- "properties": {
- "instrument": "didgeridoo",
- "note": "19",
- "powered": "false"
- }
- },
- {
- "id": 1127,
- "properties": {
- "instrument": "didgeridoo",
- "note": "20",
- "powered": "true"
- }
- },
- {
- "id": 1128,
- "properties": {
- "instrument": "didgeridoo",
- "note": "20",
- "powered": "false"
- }
- },
- {
- "id": 1129,
- "properties": {
- "instrument": "didgeridoo",
- "note": "21",
- "powered": "true"
- }
- },
- {
- "id": 1130,
- "properties": {
- "instrument": "didgeridoo",
- "note": "21",
- "powered": "false"
- }
- },
- {
- "id": 1131,
- "properties": {
- "instrument": "didgeridoo",
- "note": "22",
- "powered": "true"
- }
- },
- {
- "id": 1132,
- "properties": {
- "instrument": "didgeridoo",
- "note": "22",
- "powered": "false"
- }
- },
- {
- "id": 1133,
- "properties": {
- "instrument": "didgeridoo",
- "note": "23",
- "powered": "true"
- }
- },
{
"id": 1134,
"properties": {
"instrument": "didgeridoo",
- "note": "23",
- "powered": "false"
+ "note": "0",
+ "powered": "true"
}
},
{
"id": 1135,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "0",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1136,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "1",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1137,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "1",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1138,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "2",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1139,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "2",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1140,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "3",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1141,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "3",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1142,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "4",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1143,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "4",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1144,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "5",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1145,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "5",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1146,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "6",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1147,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "6",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1148,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "7",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1149,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "7",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1150,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "8",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1151,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "8",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1152,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "9",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1153,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "9",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1154,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "10",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1155,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "10",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1156,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "11",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1157,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "11",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1158,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "12",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1159,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "12",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1160,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "13",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1161,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "13",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1162,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "14",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1163,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "14",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1164,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "15",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1165,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "15",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1166,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "16",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1167,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "16",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1168,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "17",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1169,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "17",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1170,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "18",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1171,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "18",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1172,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "19",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1173,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "19",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1174,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "20",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1175,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "20",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1176,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "21",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1177,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "21",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1178,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "22",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1179,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "22",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1180,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "23",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1181,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "23",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1182,
"properties": {
"instrument": "didgeridoo",
"note": "24",
@@ -135578,399 +139975,399 @@
}
},
{
- "id": 1136,
+ "id": 1183,
"properties": {
"instrument": "didgeridoo",
"note": "24",
"powered": "false"
}
},
- {
- "id": 1137,
- "properties": {
- "instrument": "bit",
- "note": "0",
- "powered": "true"
- }
- },
- {
- "id": 1138,
- "properties": {
- "instrument": "bit",
- "note": "0",
- "powered": "false"
- }
- },
- {
- "id": 1139,
- "properties": {
- "instrument": "bit",
- "note": "1",
- "powered": "true"
- }
- },
- {
- "id": 1140,
- "properties": {
- "instrument": "bit",
- "note": "1",
- "powered": "false"
- }
- },
- {
- "id": 1141,
- "properties": {
- "instrument": "bit",
- "note": "2",
- "powered": "true"
- }
- },
- {
- "id": 1142,
- "properties": {
- "instrument": "bit",
- "note": "2",
- "powered": "false"
- }
- },
- {
- "id": 1143,
- "properties": {
- "instrument": "bit",
- "note": "3",
- "powered": "true"
- }
- },
- {
- "id": 1144,
- "properties": {
- "instrument": "bit",
- "note": "3",
- "powered": "false"
- }
- },
- {
- "id": 1145,
- "properties": {
- "instrument": "bit",
- "note": "4",
- "powered": "true"
- }
- },
- {
- "id": 1146,
- "properties": {
- "instrument": "bit",
- "note": "4",
- "powered": "false"
- }
- },
- {
- "id": 1147,
- "properties": {
- "instrument": "bit",
- "note": "5",
- "powered": "true"
- }
- },
- {
- "id": 1148,
- "properties": {
- "instrument": "bit",
- "note": "5",
- "powered": "false"
- }
- },
- {
- "id": 1149,
- "properties": {
- "instrument": "bit",
- "note": "6",
- "powered": "true"
- }
- },
- {
- "id": 1150,
- "properties": {
- "instrument": "bit",
- "note": "6",
- "powered": "false"
- }
- },
- {
- "id": 1151,
- "properties": {
- "instrument": "bit",
- "note": "7",
- "powered": "true"
- }
- },
- {
- "id": 1152,
- "properties": {
- "instrument": "bit",
- "note": "7",
- "powered": "false"
- }
- },
- {
- "id": 1153,
- "properties": {
- "instrument": "bit",
- "note": "8",
- "powered": "true"
- }
- },
- {
- "id": 1154,
- "properties": {
- "instrument": "bit",
- "note": "8",
- "powered": "false"
- }
- },
- {
- "id": 1155,
- "properties": {
- "instrument": "bit",
- "note": "9",
- "powered": "true"
- }
- },
- {
- "id": 1156,
- "properties": {
- "instrument": "bit",
- "note": "9",
- "powered": "false"
- }
- },
- {
- "id": 1157,
- "properties": {
- "instrument": "bit",
- "note": "10",
- "powered": "true"
- }
- },
- {
- "id": 1158,
- "properties": {
- "instrument": "bit",
- "note": "10",
- "powered": "false"
- }
- },
- {
- "id": 1159,
- "properties": {
- "instrument": "bit",
- "note": "11",
- "powered": "true"
- }
- },
- {
- "id": 1160,
- "properties": {
- "instrument": "bit",
- "note": "11",
- "powered": "false"
- }
- },
- {
- "id": 1161,
- "properties": {
- "instrument": "bit",
- "note": "12",
- "powered": "true"
- }
- },
- {
- "id": 1162,
- "properties": {
- "instrument": "bit",
- "note": "12",
- "powered": "false"
- }
- },
- {
- "id": 1163,
- "properties": {
- "instrument": "bit",
- "note": "13",
- "powered": "true"
- }
- },
- {
- "id": 1164,
- "properties": {
- "instrument": "bit",
- "note": "13",
- "powered": "false"
- }
- },
- {
- "id": 1165,
- "properties": {
- "instrument": "bit",
- "note": "14",
- "powered": "true"
- }
- },
- {
- "id": 1166,
- "properties": {
- "instrument": "bit",
- "note": "14",
- "powered": "false"
- }
- },
- {
- "id": 1167,
- "properties": {
- "instrument": "bit",
- "note": "15",
- "powered": "true"
- }
- },
- {
- "id": 1168,
- "properties": {
- "instrument": "bit",
- "note": "15",
- "powered": "false"
- }
- },
- {
- "id": 1169,
- "properties": {
- "instrument": "bit",
- "note": "16",
- "powered": "true"
- }
- },
- {
- "id": 1170,
- "properties": {
- "instrument": "bit",
- "note": "16",
- "powered": "false"
- }
- },
- {
- "id": 1171,
- "properties": {
- "instrument": "bit",
- "note": "17",
- "powered": "true"
- }
- },
- {
- "id": 1172,
- "properties": {
- "instrument": "bit",
- "note": "17",
- "powered": "false"
- }
- },
- {
- "id": 1173,
- "properties": {
- "instrument": "bit",
- "note": "18",
- "powered": "true"
- }
- },
- {
- "id": 1174,
- "properties": {
- "instrument": "bit",
- "note": "18",
- "powered": "false"
- }
- },
- {
- "id": 1175,
- "properties": {
- "instrument": "bit",
- "note": "19",
- "powered": "true"
- }
- },
- {
- "id": 1176,
- "properties": {
- "instrument": "bit",
- "note": "19",
- "powered": "false"
- }
- },
- {
- "id": 1177,
- "properties": {
- "instrument": "bit",
- "note": "20",
- "powered": "true"
- }
- },
- {
- "id": 1178,
- "properties": {
- "instrument": "bit",
- "note": "20",
- "powered": "false"
- }
- },
- {
- "id": 1179,
- "properties": {
- "instrument": "bit",
- "note": "21",
- "powered": "true"
- }
- },
- {
- "id": 1180,
- "properties": {
- "instrument": "bit",
- "note": "21",
- "powered": "false"
- }
- },
- {
- "id": 1181,
- "properties": {
- "instrument": "bit",
- "note": "22",
- "powered": "true"
- }
- },
- {
- "id": 1182,
- "properties": {
- "instrument": "bit",
- "note": "22",
- "powered": "false"
- }
- },
- {
- "id": 1183,
- "properties": {
- "instrument": "bit",
- "note": "23",
- "powered": "true"
- }
- },
{
"id": 1184,
"properties": {
"instrument": "bit",
- "note": "23",
- "powered": "false"
+ "note": "0",
+ "powered": "true"
}
},
{
"id": 1185,
+ "properties": {
+ "instrument": "bit",
+ "note": "0",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1186,
+ "properties": {
+ "instrument": "bit",
+ "note": "1",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1187,
+ "properties": {
+ "instrument": "bit",
+ "note": "1",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1188,
+ "properties": {
+ "instrument": "bit",
+ "note": "2",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1189,
+ "properties": {
+ "instrument": "bit",
+ "note": "2",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1190,
+ "properties": {
+ "instrument": "bit",
+ "note": "3",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1191,
+ "properties": {
+ "instrument": "bit",
+ "note": "3",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1192,
+ "properties": {
+ "instrument": "bit",
+ "note": "4",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1193,
+ "properties": {
+ "instrument": "bit",
+ "note": "4",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1194,
+ "properties": {
+ "instrument": "bit",
+ "note": "5",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1195,
+ "properties": {
+ "instrument": "bit",
+ "note": "5",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1196,
+ "properties": {
+ "instrument": "bit",
+ "note": "6",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1197,
+ "properties": {
+ "instrument": "bit",
+ "note": "6",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1198,
+ "properties": {
+ "instrument": "bit",
+ "note": "7",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1199,
+ "properties": {
+ "instrument": "bit",
+ "note": "7",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1200,
+ "properties": {
+ "instrument": "bit",
+ "note": "8",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1201,
+ "properties": {
+ "instrument": "bit",
+ "note": "8",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1202,
+ "properties": {
+ "instrument": "bit",
+ "note": "9",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1203,
+ "properties": {
+ "instrument": "bit",
+ "note": "9",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1204,
+ "properties": {
+ "instrument": "bit",
+ "note": "10",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1205,
+ "properties": {
+ "instrument": "bit",
+ "note": "10",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1206,
+ "properties": {
+ "instrument": "bit",
+ "note": "11",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1207,
+ "properties": {
+ "instrument": "bit",
+ "note": "11",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1208,
+ "properties": {
+ "instrument": "bit",
+ "note": "12",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1209,
+ "properties": {
+ "instrument": "bit",
+ "note": "12",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1210,
+ "properties": {
+ "instrument": "bit",
+ "note": "13",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1211,
+ "properties": {
+ "instrument": "bit",
+ "note": "13",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1212,
+ "properties": {
+ "instrument": "bit",
+ "note": "14",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1213,
+ "properties": {
+ "instrument": "bit",
+ "note": "14",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1214,
+ "properties": {
+ "instrument": "bit",
+ "note": "15",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1215,
+ "properties": {
+ "instrument": "bit",
+ "note": "15",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1216,
+ "properties": {
+ "instrument": "bit",
+ "note": "16",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1217,
+ "properties": {
+ "instrument": "bit",
+ "note": "16",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1218,
+ "properties": {
+ "instrument": "bit",
+ "note": "17",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1219,
+ "properties": {
+ "instrument": "bit",
+ "note": "17",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1220,
+ "properties": {
+ "instrument": "bit",
+ "note": "18",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1221,
+ "properties": {
+ "instrument": "bit",
+ "note": "18",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1222,
+ "properties": {
+ "instrument": "bit",
+ "note": "19",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1223,
+ "properties": {
+ "instrument": "bit",
+ "note": "19",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1224,
+ "properties": {
+ "instrument": "bit",
+ "note": "20",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1225,
+ "properties": {
+ "instrument": "bit",
+ "note": "20",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1226,
+ "properties": {
+ "instrument": "bit",
+ "note": "21",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1227,
+ "properties": {
+ "instrument": "bit",
+ "note": "21",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1228,
+ "properties": {
+ "instrument": "bit",
+ "note": "22",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1229,
+ "properties": {
+ "instrument": "bit",
+ "note": "22",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1230,
+ "properties": {
+ "instrument": "bit",
+ "note": "23",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1231,
+ "properties": {
+ "instrument": "bit",
+ "note": "23",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1232,
"properties": {
"instrument": "bit",
"note": "24",
@@ -135978,399 +140375,399 @@
}
},
{
- "id": 1186,
+ "id": 1233,
"properties": {
"instrument": "bit",
"note": "24",
"powered": "false"
}
},
- {
- "id": 1187,
- "properties": {
- "instrument": "banjo",
- "note": "0",
- "powered": "true"
- }
- },
- {
- "id": 1188,
- "properties": {
- "instrument": "banjo",
- "note": "0",
- "powered": "false"
- }
- },
- {
- "id": 1189,
- "properties": {
- "instrument": "banjo",
- "note": "1",
- "powered": "true"
- }
- },
- {
- "id": 1190,
- "properties": {
- "instrument": "banjo",
- "note": "1",
- "powered": "false"
- }
- },
- {
- "id": 1191,
- "properties": {
- "instrument": "banjo",
- "note": "2",
- "powered": "true"
- }
- },
- {
- "id": 1192,
- "properties": {
- "instrument": "banjo",
- "note": "2",
- "powered": "false"
- }
- },
- {
- "id": 1193,
- "properties": {
- "instrument": "banjo",
- "note": "3",
- "powered": "true"
- }
- },
- {
- "id": 1194,
- "properties": {
- "instrument": "banjo",
- "note": "3",
- "powered": "false"
- }
- },
- {
- "id": 1195,
- "properties": {
- "instrument": "banjo",
- "note": "4",
- "powered": "true"
- }
- },
- {
- "id": 1196,
- "properties": {
- "instrument": "banjo",
- "note": "4",
- "powered": "false"
- }
- },
- {
- "id": 1197,
- "properties": {
- "instrument": "banjo",
- "note": "5",
- "powered": "true"
- }
- },
- {
- "id": 1198,
- "properties": {
- "instrument": "banjo",
- "note": "5",
- "powered": "false"
- }
- },
- {
- "id": 1199,
- "properties": {
- "instrument": "banjo",
- "note": "6",
- "powered": "true"
- }
- },
- {
- "id": 1200,
- "properties": {
- "instrument": "banjo",
- "note": "6",
- "powered": "false"
- }
- },
- {
- "id": 1201,
- "properties": {
- "instrument": "banjo",
- "note": "7",
- "powered": "true"
- }
- },
- {
- "id": 1202,
- "properties": {
- "instrument": "banjo",
- "note": "7",
- "powered": "false"
- }
- },
- {
- "id": 1203,
- "properties": {
- "instrument": "banjo",
- "note": "8",
- "powered": "true"
- }
- },
- {
- "id": 1204,
- "properties": {
- "instrument": "banjo",
- "note": "8",
- "powered": "false"
- }
- },
- {
- "id": 1205,
- "properties": {
- "instrument": "banjo",
- "note": "9",
- "powered": "true"
- }
- },
- {
- "id": 1206,
- "properties": {
- "instrument": "banjo",
- "note": "9",
- "powered": "false"
- }
- },
- {
- "id": 1207,
- "properties": {
- "instrument": "banjo",
- "note": "10",
- "powered": "true"
- }
- },
- {
- "id": 1208,
- "properties": {
- "instrument": "banjo",
- "note": "10",
- "powered": "false"
- }
- },
- {
- "id": 1209,
- "properties": {
- "instrument": "banjo",
- "note": "11",
- "powered": "true"
- }
- },
- {
- "id": 1210,
- "properties": {
- "instrument": "banjo",
- "note": "11",
- "powered": "false"
- }
- },
- {
- "id": 1211,
- "properties": {
- "instrument": "banjo",
- "note": "12",
- "powered": "true"
- }
- },
- {
- "id": 1212,
- "properties": {
- "instrument": "banjo",
- "note": "12",
- "powered": "false"
- }
- },
- {
- "id": 1213,
- "properties": {
- "instrument": "banjo",
- "note": "13",
- "powered": "true"
- }
- },
- {
- "id": 1214,
- "properties": {
- "instrument": "banjo",
- "note": "13",
- "powered": "false"
- }
- },
- {
- "id": 1215,
- "properties": {
- "instrument": "banjo",
- "note": "14",
- "powered": "true"
- }
- },
- {
- "id": 1216,
- "properties": {
- "instrument": "banjo",
- "note": "14",
- "powered": "false"
- }
- },
- {
- "id": 1217,
- "properties": {
- "instrument": "banjo",
- "note": "15",
- "powered": "true"
- }
- },
- {
- "id": 1218,
- "properties": {
- "instrument": "banjo",
- "note": "15",
- "powered": "false"
- }
- },
- {
- "id": 1219,
- "properties": {
- "instrument": "banjo",
- "note": "16",
- "powered": "true"
- }
- },
- {
- "id": 1220,
- "properties": {
- "instrument": "banjo",
- "note": "16",
- "powered": "false"
- }
- },
- {
- "id": 1221,
- "properties": {
- "instrument": "banjo",
- "note": "17",
- "powered": "true"
- }
- },
- {
- "id": 1222,
- "properties": {
- "instrument": "banjo",
- "note": "17",
- "powered": "false"
- }
- },
- {
- "id": 1223,
- "properties": {
- "instrument": "banjo",
- "note": "18",
- "powered": "true"
- }
- },
- {
- "id": 1224,
- "properties": {
- "instrument": "banjo",
- "note": "18",
- "powered": "false"
- }
- },
- {
- "id": 1225,
- "properties": {
- "instrument": "banjo",
- "note": "19",
- "powered": "true"
- }
- },
- {
- "id": 1226,
- "properties": {
- "instrument": "banjo",
- "note": "19",
- "powered": "false"
- }
- },
- {
- "id": 1227,
- "properties": {
- "instrument": "banjo",
- "note": "20",
- "powered": "true"
- }
- },
- {
- "id": 1228,
- "properties": {
- "instrument": "banjo",
- "note": "20",
- "powered": "false"
- }
- },
- {
- "id": 1229,
- "properties": {
- "instrument": "banjo",
- "note": "21",
- "powered": "true"
- }
- },
- {
- "id": 1230,
- "properties": {
- "instrument": "banjo",
- "note": "21",
- "powered": "false"
- }
- },
- {
- "id": 1231,
- "properties": {
- "instrument": "banjo",
- "note": "22",
- "powered": "true"
- }
- },
- {
- "id": 1232,
- "properties": {
- "instrument": "banjo",
- "note": "22",
- "powered": "false"
- }
- },
- {
- "id": 1233,
- "properties": {
- "instrument": "banjo",
- "note": "23",
- "powered": "true"
- }
- },
{
"id": 1234,
"properties": {
"instrument": "banjo",
- "note": "23",
- "powered": "false"
+ "note": "0",
+ "powered": "true"
}
},
{
"id": 1235,
+ "properties": {
+ "instrument": "banjo",
+ "note": "0",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1236,
+ "properties": {
+ "instrument": "banjo",
+ "note": "1",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1237,
+ "properties": {
+ "instrument": "banjo",
+ "note": "1",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1238,
+ "properties": {
+ "instrument": "banjo",
+ "note": "2",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1239,
+ "properties": {
+ "instrument": "banjo",
+ "note": "2",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1240,
+ "properties": {
+ "instrument": "banjo",
+ "note": "3",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1241,
+ "properties": {
+ "instrument": "banjo",
+ "note": "3",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1242,
+ "properties": {
+ "instrument": "banjo",
+ "note": "4",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1243,
+ "properties": {
+ "instrument": "banjo",
+ "note": "4",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1244,
+ "properties": {
+ "instrument": "banjo",
+ "note": "5",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1245,
+ "properties": {
+ "instrument": "banjo",
+ "note": "5",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1246,
+ "properties": {
+ "instrument": "banjo",
+ "note": "6",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1247,
+ "properties": {
+ "instrument": "banjo",
+ "note": "6",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1248,
+ "properties": {
+ "instrument": "banjo",
+ "note": "7",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1249,
+ "properties": {
+ "instrument": "banjo",
+ "note": "7",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1250,
+ "properties": {
+ "instrument": "banjo",
+ "note": "8",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1251,
+ "properties": {
+ "instrument": "banjo",
+ "note": "8",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1252,
+ "properties": {
+ "instrument": "banjo",
+ "note": "9",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1253,
+ "properties": {
+ "instrument": "banjo",
+ "note": "9",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1254,
+ "properties": {
+ "instrument": "banjo",
+ "note": "10",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1255,
+ "properties": {
+ "instrument": "banjo",
+ "note": "10",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1256,
+ "properties": {
+ "instrument": "banjo",
+ "note": "11",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1257,
+ "properties": {
+ "instrument": "banjo",
+ "note": "11",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1258,
+ "properties": {
+ "instrument": "banjo",
+ "note": "12",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1259,
+ "properties": {
+ "instrument": "banjo",
+ "note": "12",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1260,
+ "properties": {
+ "instrument": "banjo",
+ "note": "13",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1261,
+ "properties": {
+ "instrument": "banjo",
+ "note": "13",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1262,
+ "properties": {
+ "instrument": "banjo",
+ "note": "14",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1263,
+ "properties": {
+ "instrument": "banjo",
+ "note": "14",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1264,
+ "properties": {
+ "instrument": "banjo",
+ "note": "15",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1265,
+ "properties": {
+ "instrument": "banjo",
+ "note": "15",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1266,
+ "properties": {
+ "instrument": "banjo",
+ "note": "16",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1267,
+ "properties": {
+ "instrument": "banjo",
+ "note": "16",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1268,
+ "properties": {
+ "instrument": "banjo",
+ "note": "17",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1269,
+ "properties": {
+ "instrument": "banjo",
+ "note": "17",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1270,
+ "properties": {
+ "instrument": "banjo",
+ "note": "18",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1271,
+ "properties": {
+ "instrument": "banjo",
+ "note": "18",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1272,
+ "properties": {
+ "instrument": "banjo",
+ "note": "19",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1273,
+ "properties": {
+ "instrument": "banjo",
+ "note": "19",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1274,
+ "properties": {
+ "instrument": "banjo",
+ "note": "20",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1275,
+ "properties": {
+ "instrument": "banjo",
+ "note": "20",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1276,
+ "properties": {
+ "instrument": "banjo",
+ "note": "21",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1277,
+ "properties": {
+ "instrument": "banjo",
+ "note": "21",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1278,
+ "properties": {
+ "instrument": "banjo",
+ "note": "22",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1279,
+ "properties": {
+ "instrument": "banjo",
+ "note": "22",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1280,
+ "properties": {
+ "instrument": "banjo",
+ "note": "23",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1281,
+ "properties": {
+ "instrument": "banjo",
+ "note": "23",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1282,
"properties": {
"instrument": "banjo",
"note": "24",
@@ -136378,399 +140775,399 @@
}
},
{
- "id": 1236,
+ "id": 1283,
"properties": {
"instrument": "banjo",
"note": "24",
"powered": "false"
}
},
- {
- "id": 1237,
- "properties": {
- "instrument": "pling",
- "note": "0",
- "powered": "true"
- }
- },
- {
- "id": 1238,
- "properties": {
- "instrument": "pling",
- "note": "0",
- "powered": "false"
- }
- },
- {
- "id": 1239,
- "properties": {
- "instrument": "pling",
- "note": "1",
- "powered": "true"
- }
- },
- {
- "id": 1240,
- "properties": {
- "instrument": "pling",
- "note": "1",
- "powered": "false"
- }
- },
- {
- "id": 1241,
- "properties": {
- "instrument": "pling",
- "note": "2",
- "powered": "true"
- }
- },
- {
- "id": 1242,
- "properties": {
- "instrument": "pling",
- "note": "2",
- "powered": "false"
- }
- },
- {
- "id": 1243,
- "properties": {
- "instrument": "pling",
- "note": "3",
- "powered": "true"
- }
- },
- {
- "id": 1244,
- "properties": {
- "instrument": "pling",
- "note": "3",
- "powered": "false"
- }
- },
- {
- "id": 1245,
- "properties": {
- "instrument": "pling",
- "note": "4",
- "powered": "true"
- }
- },
- {
- "id": 1246,
- "properties": {
- "instrument": "pling",
- "note": "4",
- "powered": "false"
- }
- },
- {
- "id": 1247,
- "properties": {
- "instrument": "pling",
- "note": "5",
- "powered": "true"
- }
- },
- {
- "id": 1248,
- "properties": {
- "instrument": "pling",
- "note": "5",
- "powered": "false"
- }
- },
- {
- "id": 1249,
- "properties": {
- "instrument": "pling",
- "note": "6",
- "powered": "true"
- }
- },
- {
- "id": 1250,
- "properties": {
- "instrument": "pling",
- "note": "6",
- "powered": "false"
- }
- },
- {
- "id": 1251,
- "properties": {
- "instrument": "pling",
- "note": "7",
- "powered": "true"
- }
- },
- {
- "id": 1252,
- "properties": {
- "instrument": "pling",
- "note": "7",
- "powered": "false"
- }
- },
- {
- "id": 1253,
- "properties": {
- "instrument": "pling",
- "note": "8",
- "powered": "true"
- }
- },
- {
- "id": 1254,
- "properties": {
- "instrument": "pling",
- "note": "8",
- "powered": "false"
- }
- },
- {
- "id": 1255,
- "properties": {
- "instrument": "pling",
- "note": "9",
- "powered": "true"
- }
- },
- {
- "id": 1256,
- "properties": {
- "instrument": "pling",
- "note": "9",
- "powered": "false"
- }
- },
- {
- "id": 1257,
- "properties": {
- "instrument": "pling",
- "note": "10",
- "powered": "true"
- }
- },
- {
- "id": 1258,
- "properties": {
- "instrument": "pling",
- "note": "10",
- "powered": "false"
- }
- },
- {
- "id": 1259,
- "properties": {
- "instrument": "pling",
- "note": "11",
- "powered": "true"
- }
- },
- {
- "id": 1260,
- "properties": {
- "instrument": "pling",
- "note": "11",
- "powered": "false"
- }
- },
- {
- "id": 1261,
- "properties": {
- "instrument": "pling",
- "note": "12",
- "powered": "true"
- }
- },
- {
- "id": 1262,
- "properties": {
- "instrument": "pling",
- "note": "12",
- "powered": "false"
- }
- },
- {
- "id": 1263,
- "properties": {
- "instrument": "pling",
- "note": "13",
- "powered": "true"
- }
- },
- {
- "id": 1264,
- "properties": {
- "instrument": "pling",
- "note": "13",
- "powered": "false"
- }
- },
- {
- "id": 1265,
- "properties": {
- "instrument": "pling",
- "note": "14",
- "powered": "true"
- }
- },
- {
- "id": 1266,
- "properties": {
- "instrument": "pling",
- "note": "14",
- "powered": "false"
- }
- },
- {
- "id": 1267,
- "properties": {
- "instrument": "pling",
- "note": "15",
- "powered": "true"
- }
- },
- {
- "id": 1268,
- "properties": {
- "instrument": "pling",
- "note": "15",
- "powered": "false"
- }
- },
- {
- "id": 1269,
- "properties": {
- "instrument": "pling",
- "note": "16",
- "powered": "true"
- }
- },
- {
- "id": 1270,
- "properties": {
- "instrument": "pling",
- "note": "16",
- "powered": "false"
- }
- },
- {
- "id": 1271,
- "properties": {
- "instrument": "pling",
- "note": "17",
- "powered": "true"
- }
- },
- {
- "id": 1272,
- "properties": {
- "instrument": "pling",
- "note": "17",
- "powered": "false"
- }
- },
- {
- "id": 1273,
- "properties": {
- "instrument": "pling",
- "note": "18",
- "powered": "true"
- }
- },
- {
- "id": 1274,
- "properties": {
- "instrument": "pling",
- "note": "18",
- "powered": "false"
- }
- },
- {
- "id": 1275,
- "properties": {
- "instrument": "pling",
- "note": "19",
- "powered": "true"
- }
- },
- {
- "id": 1276,
- "properties": {
- "instrument": "pling",
- "note": "19",
- "powered": "false"
- }
- },
- {
- "id": 1277,
- "properties": {
- "instrument": "pling",
- "note": "20",
- "powered": "true"
- }
- },
- {
- "id": 1278,
- "properties": {
- "instrument": "pling",
- "note": "20",
- "powered": "false"
- }
- },
- {
- "id": 1279,
- "properties": {
- "instrument": "pling",
- "note": "21",
- "powered": "true"
- }
- },
- {
- "id": 1280,
- "properties": {
- "instrument": "pling",
- "note": "21",
- "powered": "false"
- }
- },
- {
- "id": 1281,
- "properties": {
- "instrument": "pling",
- "note": "22",
- "powered": "true"
- }
- },
- {
- "id": 1282,
- "properties": {
- "instrument": "pling",
- "note": "22",
- "powered": "false"
- }
- },
- {
- "id": 1283,
- "properties": {
- "instrument": "pling",
- "note": "23",
- "powered": "true"
- }
- },
{
"id": 1284,
"properties": {
"instrument": "pling",
- "note": "23",
- "powered": "false"
+ "note": "0",
+ "powered": "true"
}
},
{
"id": 1285,
+ "properties": {
+ "instrument": "pling",
+ "note": "0",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1286,
+ "properties": {
+ "instrument": "pling",
+ "note": "1",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1287,
+ "properties": {
+ "instrument": "pling",
+ "note": "1",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1288,
+ "properties": {
+ "instrument": "pling",
+ "note": "2",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1289,
+ "properties": {
+ "instrument": "pling",
+ "note": "2",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1290,
+ "properties": {
+ "instrument": "pling",
+ "note": "3",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1291,
+ "properties": {
+ "instrument": "pling",
+ "note": "3",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1292,
+ "properties": {
+ "instrument": "pling",
+ "note": "4",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1293,
+ "properties": {
+ "instrument": "pling",
+ "note": "4",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1294,
+ "properties": {
+ "instrument": "pling",
+ "note": "5",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1295,
+ "properties": {
+ "instrument": "pling",
+ "note": "5",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1296,
+ "properties": {
+ "instrument": "pling",
+ "note": "6",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1297,
+ "properties": {
+ "instrument": "pling",
+ "note": "6",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1298,
+ "properties": {
+ "instrument": "pling",
+ "note": "7",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1299,
+ "properties": {
+ "instrument": "pling",
+ "note": "7",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1300,
+ "properties": {
+ "instrument": "pling",
+ "note": "8",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1301,
+ "properties": {
+ "instrument": "pling",
+ "note": "8",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1302,
+ "properties": {
+ "instrument": "pling",
+ "note": "9",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1303,
+ "properties": {
+ "instrument": "pling",
+ "note": "9",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1304,
+ "properties": {
+ "instrument": "pling",
+ "note": "10",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1305,
+ "properties": {
+ "instrument": "pling",
+ "note": "10",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1306,
+ "properties": {
+ "instrument": "pling",
+ "note": "11",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1307,
+ "properties": {
+ "instrument": "pling",
+ "note": "11",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1308,
+ "properties": {
+ "instrument": "pling",
+ "note": "12",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1309,
+ "properties": {
+ "instrument": "pling",
+ "note": "12",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1310,
+ "properties": {
+ "instrument": "pling",
+ "note": "13",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1311,
+ "properties": {
+ "instrument": "pling",
+ "note": "13",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1312,
+ "properties": {
+ "instrument": "pling",
+ "note": "14",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1313,
+ "properties": {
+ "instrument": "pling",
+ "note": "14",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1314,
+ "properties": {
+ "instrument": "pling",
+ "note": "15",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1315,
+ "properties": {
+ "instrument": "pling",
+ "note": "15",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1316,
+ "properties": {
+ "instrument": "pling",
+ "note": "16",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1317,
+ "properties": {
+ "instrument": "pling",
+ "note": "16",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1318,
+ "properties": {
+ "instrument": "pling",
+ "note": "17",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1319,
+ "properties": {
+ "instrument": "pling",
+ "note": "17",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1320,
+ "properties": {
+ "instrument": "pling",
+ "note": "18",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1321,
+ "properties": {
+ "instrument": "pling",
+ "note": "18",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1322,
+ "properties": {
+ "instrument": "pling",
+ "note": "19",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1323,
+ "properties": {
+ "instrument": "pling",
+ "note": "19",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1324,
+ "properties": {
+ "instrument": "pling",
+ "note": "20",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1325,
+ "properties": {
+ "instrument": "pling",
+ "note": "20",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1326,
+ "properties": {
+ "instrument": "pling",
+ "note": "21",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1327,
+ "properties": {
+ "instrument": "pling",
+ "note": "21",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1328,
+ "properties": {
+ "instrument": "pling",
+ "note": "22",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1329,
+ "properties": {
+ "instrument": "pling",
+ "note": "22",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1330,
+ "properties": {
+ "instrument": "pling",
+ "note": "23",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1331,
+ "properties": {
+ "instrument": "pling",
+ "note": "23",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1332,
"properties": {
"instrument": "pling",
"note": "24",
@@ -136778,399 +141175,399 @@
}
},
{
- "id": 1286,
+ "id": 1333,
"properties": {
"instrument": "pling",
"note": "24",
"powered": "false"
}
},
- {
- "id": 1287,
- "properties": {
- "instrument": "zombie",
- "note": "0",
- "powered": "true"
- }
- },
- {
- "id": 1288,
- "properties": {
- "instrument": "zombie",
- "note": "0",
- "powered": "false"
- }
- },
- {
- "id": 1289,
- "properties": {
- "instrument": "zombie",
- "note": "1",
- "powered": "true"
- }
- },
- {
- "id": 1290,
- "properties": {
- "instrument": "zombie",
- "note": "1",
- "powered": "false"
- }
- },
- {
- "id": 1291,
- "properties": {
- "instrument": "zombie",
- "note": "2",
- "powered": "true"
- }
- },
- {
- "id": 1292,
- "properties": {
- "instrument": "zombie",
- "note": "2",
- "powered": "false"
- }
- },
- {
- "id": 1293,
- "properties": {
- "instrument": "zombie",
- "note": "3",
- "powered": "true"
- }
- },
- {
- "id": 1294,
- "properties": {
- "instrument": "zombie",
- "note": "3",
- "powered": "false"
- }
- },
- {
- "id": 1295,
- "properties": {
- "instrument": "zombie",
- "note": "4",
- "powered": "true"
- }
- },
- {
- "id": 1296,
- "properties": {
- "instrument": "zombie",
- "note": "4",
- "powered": "false"
- }
- },
- {
- "id": 1297,
- "properties": {
- "instrument": "zombie",
- "note": "5",
- "powered": "true"
- }
- },
- {
- "id": 1298,
- "properties": {
- "instrument": "zombie",
- "note": "5",
- "powered": "false"
- }
- },
- {
- "id": 1299,
- "properties": {
- "instrument": "zombie",
- "note": "6",
- "powered": "true"
- }
- },
- {
- "id": 1300,
- "properties": {
- "instrument": "zombie",
- "note": "6",
- "powered": "false"
- }
- },
- {
- "id": 1301,
- "properties": {
- "instrument": "zombie",
- "note": "7",
- "powered": "true"
- }
- },
- {
- "id": 1302,
- "properties": {
- "instrument": "zombie",
- "note": "7",
- "powered": "false"
- }
- },
- {
- "id": 1303,
- "properties": {
- "instrument": "zombie",
- "note": "8",
- "powered": "true"
- }
- },
- {
- "id": 1304,
- "properties": {
- "instrument": "zombie",
- "note": "8",
- "powered": "false"
- }
- },
- {
- "id": 1305,
- "properties": {
- "instrument": "zombie",
- "note": "9",
- "powered": "true"
- }
- },
- {
- "id": 1306,
- "properties": {
- "instrument": "zombie",
- "note": "9",
- "powered": "false"
- }
- },
- {
- "id": 1307,
- "properties": {
- "instrument": "zombie",
- "note": "10",
- "powered": "true"
- }
- },
- {
- "id": 1308,
- "properties": {
- "instrument": "zombie",
- "note": "10",
- "powered": "false"
- }
- },
- {
- "id": 1309,
- "properties": {
- "instrument": "zombie",
- "note": "11",
- "powered": "true"
- }
- },
- {
- "id": 1310,
- "properties": {
- "instrument": "zombie",
- "note": "11",
- "powered": "false"
- }
- },
- {
- "id": 1311,
- "properties": {
- "instrument": "zombie",
- "note": "12",
- "powered": "true"
- }
- },
- {
- "id": 1312,
- "properties": {
- "instrument": "zombie",
- "note": "12",
- "powered": "false"
- }
- },
- {
- "id": 1313,
- "properties": {
- "instrument": "zombie",
- "note": "13",
- "powered": "true"
- }
- },
- {
- "id": 1314,
- "properties": {
- "instrument": "zombie",
- "note": "13",
- "powered": "false"
- }
- },
- {
- "id": 1315,
- "properties": {
- "instrument": "zombie",
- "note": "14",
- "powered": "true"
- }
- },
- {
- "id": 1316,
- "properties": {
- "instrument": "zombie",
- "note": "14",
- "powered": "false"
- }
- },
- {
- "id": 1317,
- "properties": {
- "instrument": "zombie",
- "note": "15",
- "powered": "true"
- }
- },
- {
- "id": 1318,
- "properties": {
- "instrument": "zombie",
- "note": "15",
- "powered": "false"
- }
- },
- {
- "id": 1319,
- "properties": {
- "instrument": "zombie",
- "note": "16",
- "powered": "true"
- }
- },
- {
- "id": 1320,
- "properties": {
- "instrument": "zombie",
- "note": "16",
- "powered": "false"
- }
- },
- {
- "id": 1321,
- "properties": {
- "instrument": "zombie",
- "note": "17",
- "powered": "true"
- }
- },
- {
- "id": 1322,
- "properties": {
- "instrument": "zombie",
- "note": "17",
- "powered": "false"
- }
- },
- {
- "id": 1323,
- "properties": {
- "instrument": "zombie",
- "note": "18",
- "powered": "true"
- }
- },
- {
- "id": 1324,
- "properties": {
- "instrument": "zombie",
- "note": "18",
- "powered": "false"
- }
- },
- {
- "id": 1325,
- "properties": {
- "instrument": "zombie",
- "note": "19",
- "powered": "true"
- }
- },
- {
- "id": 1326,
- "properties": {
- "instrument": "zombie",
- "note": "19",
- "powered": "false"
- }
- },
- {
- "id": 1327,
- "properties": {
- "instrument": "zombie",
- "note": "20",
- "powered": "true"
- }
- },
- {
- "id": 1328,
- "properties": {
- "instrument": "zombie",
- "note": "20",
- "powered": "false"
- }
- },
- {
- "id": 1329,
- "properties": {
- "instrument": "zombie",
- "note": "21",
- "powered": "true"
- }
- },
- {
- "id": 1330,
- "properties": {
- "instrument": "zombie",
- "note": "21",
- "powered": "false"
- }
- },
- {
- "id": 1331,
- "properties": {
- "instrument": "zombie",
- "note": "22",
- "powered": "true"
- }
- },
- {
- "id": 1332,
- "properties": {
- "instrument": "zombie",
- "note": "22",
- "powered": "false"
- }
- },
- {
- "id": 1333,
- "properties": {
- "instrument": "zombie",
- "note": "23",
- "powered": "true"
- }
- },
{
"id": 1334,
"properties": {
"instrument": "zombie",
- "note": "23",
- "powered": "false"
+ "note": "0",
+ "powered": "true"
}
},
{
"id": 1335,
+ "properties": {
+ "instrument": "zombie",
+ "note": "0",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1336,
+ "properties": {
+ "instrument": "zombie",
+ "note": "1",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1337,
+ "properties": {
+ "instrument": "zombie",
+ "note": "1",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1338,
+ "properties": {
+ "instrument": "zombie",
+ "note": "2",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1339,
+ "properties": {
+ "instrument": "zombie",
+ "note": "2",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1340,
+ "properties": {
+ "instrument": "zombie",
+ "note": "3",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1341,
+ "properties": {
+ "instrument": "zombie",
+ "note": "3",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1342,
+ "properties": {
+ "instrument": "zombie",
+ "note": "4",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1343,
+ "properties": {
+ "instrument": "zombie",
+ "note": "4",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1344,
+ "properties": {
+ "instrument": "zombie",
+ "note": "5",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1345,
+ "properties": {
+ "instrument": "zombie",
+ "note": "5",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1346,
+ "properties": {
+ "instrument": "zombie",
+ "note": "6",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1347,
+ "properties": {
+ "instrument": "zombie",
+ "note": "6",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1348,
+ "properties": {
+ "instrument": "zombie",
+ "note": "7",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1349,
+ "properties": {
+ "instrument": "zombie",
+ "note": "7",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1350,
+ "properties": {
+ "instrument": "zombie",
+ "note": "8",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1351,
+ "properties": {
+ "instrument": "zombie",
+ "note": "8",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1352,
+ "properties": {
+ "instrument": "zombie",
+ "note": "9",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1353,
+ "properties": {
+ "instrument": "zombie",
+ "note": "9",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1354,
+ "properties": {
+ "instrument": "zombie",
+ "note": "10",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1355,
+ "properties": {
+ "instrument": "zombie",
+ "note": "10",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1356,
+ "properties": {
+ "instrument": "zombie",
+ "note": "11",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1357,
+ "properties": {
+ "instrument": "zombie",
+ "note": "11",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1358,
+ "properties": {
+ "instrument": "zombie",
+ "note": "12",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1359,
+ "properties": {
+ "instrument": "zombie",
+ "note": "12",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1360,
+ "properties": {
+ "instrument": "zombie",
+ "note": "13",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1361,
+ "properties": {
+ "instrument": "zombie",
+ "note": "13",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1362,
+ "properties": {
+ "instrument": "zombie",
+ "note": "14",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1363,
+ "properties": {
+ "instrument": "zombie",
+ "note": "14",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1364,
+ "properties": {
+ "instrument": "zombie",
+ "note": "15",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1365,
+ "properties": {
+ "instrument": "zombie",
+ "note": "15",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1366,
+ "properties": {
+ "instrument": "zombie",
+ "note": "16",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1367,
+ "properties": {
+ "instrument": "zombie",
+ "note": "16",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1368,
+ "properties": {
+ "instrument": "zombie",
+ "note": "17",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1369,
+ "properties": {
+ "instrument": "zombie",
+ "note": "17",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1370,
+ "properties": {
+ "instrument": "zombie",
+ "note": "18",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1371,
+ "properties": {
+ "instrument": "zombie",
+ "note": "18",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1372,
+ "properties": {
+ "instrument": "zombie",
+ "note": "19",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1373,
+ "properties": {
+ "instrument": "zombie",
+ "note": "19",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1374,
+ "properties": {
+ "instrument": "zombie",
+ "note": "20",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1375,
+ "properties": {
+ "instrument": "zombie",
+ "note": "20",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1376,
+ "properties": {
+ "instrument": "zombie",
+ "note": "21",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1377,
+ "properties": {
+ "instrument": "zombie",
+ "note": "21",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1378,
+ "properties": {
+ "instrument": "zombie",
+ "note": "22",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1379,
+ "properties": {
+ "instrument": "zombie",
+ "note": "22",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1380,
+ "properties": {
+ "instrument": "zombie",
+ "note": "23",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1381,
+ "properties": {
+ "instrument": "zombie",
+ "note": "23",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1382,
"properties": {
"instrument": "zombie",
"note": "24",
@@ -137178,399 +141575,399 @@
}
},
{
- "id": 1336,
+ "id": 1383,
"properties": {
"instrument": "zombie",
"note": "24",
"powered": "false"
}
},
- {
- "id": 1337,
- "properties": {
- "instrument": "skeleton",
- "note": "0",
- "powered": "true"
- }
- },
- {
- "id": 1338,
- "properties": {
- "instrument": "skeleton",
- "note": "0",
- "powered": "false"
- }
- },
- {
- "id": 1339,
- "properties": {
- "instrument": "skeleton",
- "note": "1",
- "powered": "true"
- }
- },
- {
- "id": 1340,
- "properties": {
- "instrument": "skeleton",
- "note": "1",
- "powered": "false"
- }
- },
- {
- "id": 1341,
- "properties": {
- "instrument": "skeleton",
- "note": "2",
- "powered": "true"
- }
- },
- {
- "id": 1342,
- "properties": {
- "instrument": "skeleton",
- "note": "2",
- "powered": "false"
- }
- },
- {
- "id": 1343,
- "properties": {
- "instrument": "skeleton",
- "note": "3",
- "powered": "true"
- }
- },
- {
- "id": 1344,
- "properties": {
- "instrument": "skeleton",
- "note": "3",
- "powered": "false"
- }
- },
- {
- "id": 1345,
- "properties": {
- "instrument": "skeleton",
- "note": "4",
- "powered": "true"
- }
- },
- {
- "id": 1346,
- "properties": {
- "instrument": "skeleton",
- "note": "4",
- "powered": "false"
- }
- },
- {
- "id": 1347,
- "properties": {
- "instrument": "skeleton",
- "note": "5",
- "powered": "true"
- }
- },
- {
- "id": 1348,
- "properties": {
- "instrument": "skeleton",
- "note": "5",
- "powered": "false"
- }
- },
- {
- "id": 1349,
- "properties": {
- "instrument": "skeleton",
- "note": "6",
- "powered": "true"
- }
- },
- {
- "id": 1350,
- "properties": {
- "instrument": "skeleton",
- "note": "6",
- "powered": "false"
- }
- },
- {
- "id": 1351,
- "properties": {
- "instrument": "skeleton",
- "note": "7",
- "powered": "true"
- }
- },
- {
- "id": 1352,
- "properties": {
- "instrument": "skeleton",
- "note": "7",
- "powered": "false"
- }
- },
- {
- "id": 1353,
- "properties": {
- "instrument": "skeleton",
- "note": "8",
- "powered": "true"
- }
- },
- {
- "id": 1354,
- "properties": {
- "instrument": "skeleton",
- "note": "8",
- "powered": "false"
- }
- },
- {
- "id": 1355,
- "properties": {
- "instrument": "skeleton",
- "note": "9",
- "powered": "true"
- }
- },
- {
- "id": 1356,
- "properties": {
- "instrument": "skeleton",
- "note": "9",
- "powered": "false"
- }
- },
- {
- "id": 1357,
- "properties": {
- "instrument": "skeleton",
- "note": "10",
- "powered": "true"
- }
- },
- {
- "id": 1358,
- "properties": {
- "instrument": "skeleton",
- "note": "10",
- "powered": "false"
- }
- },
- {
- "id": 1359,
- "properties": {
- "instrument": "skeleton",
- "note": "11",
- "powered": "true"
- }
- },
- {
- "id": 1360,
- "properties": {
- "instrument": "skeleton",
- "note": "11",
- "powered": "false"
- }
- },
- {
- "id": 1361,
- "properties": {
- "instrument": "skeleton",
- "note": "12",
- "powered": "true"
- }
- },
- {
- "id": 1362,
- "properties": {
- "instrument": "skeleton",
- "note": "12",
- "powered": "false"
- }
- },
- {
- "id": 1363,
- "properties": {
- "instrument": "skeleton",
- "note": "13",
- "powered": "true"
- }
- },
- {
- "id": 1364,
- "properties": {
- "instrument": "skeleton",
- "note": "13",
- "powered": "false"
- }
- },
- {
- "id": 1365,
- "properties": {
- "instrument": "skeleton",
- "note": "14",
- "powered": "true"
- }
- },
- {
- "id": 1366,
- "properties": {
- "instrument": "skeleton",
- "note": "14",
- "powered": "false"
- }
- },
- {
- "id": 1367,
- "properties": {
- "instrument": "skeleton",
- "note": "15",
- "powered": "true"
- }
- },
- {
- "id": 1368,
- "properties": {
- "instrument": "skeleton",
- "note": "15",
- "powered": "false"
- }
- },
- {
- "id": 1369,
- "properties": {
- "instrument": "skeleton",
- "note": "16",
- "powered": "true"
- }
- },
- {
- "id": 1370,
- "properties": {
- "instrument": "skeleton",
- "note": "16",
- "powered": "false"
- }
- },
- {
- "id": 1371,
- "properties": {
- "instrument": "skeleton",
- "note": "17",
- "powered": "true"
- }
- },
- {
- "id": 1372,
- "properties": {
- "instrument": "skeleton",
- "note": "17",
- "powered": "false"
- }
- },
- {
- "id": 1373,
- "properties": {
- "instrument": "skeleton",
- "note": "18",
- "powered": "true"
- }
- },
- {
- "id": 1374,
- "properties": {
- "instrument": "skeleton",
- "note": "18",
- "powered": "false"
- }
- },
- {
- "id": 1375,
- "properties": {
- "instrument": "skeleton",
- "note": "19",
- "powered": "true"
- }
- },
- {
- "id": 1376,
- "properties": {
- "instrument": "skeleton",
- "note": "19",
- "powered": "false"
- }
- },
- {
- "id": 1377,
- "properties": {
- "instrument": "skeleton",
- "note": "20",
- "powered": "true"
- }
- },
- {
- "id": 1378,
- "properties": {
- "instrument": "skeleton",
- "note": "20",
- "powered": "false"
- }
- },
- {
- "id": 1379,
- "properties": {
- "instrument": "skeleton",
- "note": "21",
- "powered": "true"
- }
- },
- {
- "id": 1380,
- "properties": {
- "instrument": "skeleton",
- "note": "21",
- "powered": "false"
- }
- },
- {
- "id": 1381,
- "properties": {
- "instrument": "skeleton",
- "note": "22",
- "powered": "true"
- }
- },
- {
- "id": 1382,
- "properties": {
- "instrument": "skeleton",
- "note": "22",
- "powered": "false"
- }
- },
- {
- "id": 1383,
- "properties": {
- "instrument": "skeleton",
- "note": "23",
- "powered": "true"
- }
- },
{
"id": 1384,
"properties": {
"instrument": "skeleton",
- "note": "23",
- "powered": "false"
+ "note": "0",
+ "powered": "true"
}
},
{
"id": 1385,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "0",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1386,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "1",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1387,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "1",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1388,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "2",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1389,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "2",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1390,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "3",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1391,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "3",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1392,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "4",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1393,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "4",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1394,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "5",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1395,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "5",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1396,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "6",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1397,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "6",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1398,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "7",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1399,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "7",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1400,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "8",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1401,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "8",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1402,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "9",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1403,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "9",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1404,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "10",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1405,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "10",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1406,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "11",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1407,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "11",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1408,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "12",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1409,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "12",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1410,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "13",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1411,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "13",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1412,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "14",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1413,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "14",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1414,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "15",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1415,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "15",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1416,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "16",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1417,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "16",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1418,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "17",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1419,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "17",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1420,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "18",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1421,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "18",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1422,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "19",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1423,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "19",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1424,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "20",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1425,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "20",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1426,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "21",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1427,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "21",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1428,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "22",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1429,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "22",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1430,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "23",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1431,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "23",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1432,
"properties": {
"instrument": "skeleton",
"note": "24",
@@ -137578,399 +141975,399 @@
}
},
{
- "id": 1386,
+ "id": 1433,
"properties": {
"instrument": "skeleton",
"note": "24",
"powered": "false"
}
},
- {
- "id": 1387,
- "properties": {
- "instrument": "creeper",
- "note": "0",
- "powered": "true"
- }
- },
- {
- "id": 1388,
- "properties": {
- "instrument": "creeper",
- "note": "0",
- "powered": "false"
- }
- },
- {
- "id": 1389,
- "properties": {
- "instrument": "creeper",
- "note": "1",
- "powered": "true"
- }
- },
- {
- "id": 1390,
- "properties": {
- "instrument": "creeper",
- "note": "1",
- "powered": "false"
- }
- },
- {
- "id": 1391,
- "properties": {
- "instrument": "creeper",
- "note": "2",
- "powered": "true"
- }
- },
- {
- "id": 1392,
- "properties": {
- "instrument": "creeper",
- "note": "2",
- "powered": "false"
- }
- },
- {
- "id": 1393,
- "properties": {
- "instrument": "creeper",
- "note": "3",
- "powered": "true"
- }
- },
- {
- "id": 1394,
- "properties": {
- "instrument": "creeper",
- "note": "3",
- "powered": "false"
- }
- },
- {
- "id": 1395,
- "properties": {
- "instrument": "creeper",
- "note": "4",
- "powered": "true"
- }
- },
- {
- "id": 1396,
- "properties": {
- "instrument": "creeper",
- "note": "4",
- "powered": "false"
- }
- },
- {
- "id": 1397,
- "properties": {
- "instrument": "creeper",
- "note": "5",
- "powered": "true"
- }
- },
- {
- "id": 1398,
- "properties": {
- "instrument": "creeper",
- "note": "5",
- "powered": "false"
- }
- },
- {
- "id": 1399,
- "properties": {
- "instrument": "creeper",
- "note": "6",
- "powered": "true"
- }
- },
- {
- "id": 1400,
- "properties": {
- "instrument": "creeper",
- "note": "6",
- "powered": "false"
- }
- },
- {
- "id": 1401,
- "properties": {
- "instrument": "creeper",
- "note": "7",
- "powered": "true"
- }
- },
- {
- "id": 1402,
- "properties": {
- "instrument": "creeper",
- "note": "7",
- "powered": "false"
- }
- },
- {
- "id": 1403,
- "properties": {
- "instrument": "creeper",
- "note": "8",
- "powered": "true"
- }
- },
- {
- "id": 1404,
- "properties": {
- "instrument": "creeper",
- "note": "8",
- "powered": "false"
- }
- },
- {
- "id": 1405,
- "properties": {
- "instrument": "creeper",
- "note": "9",
- "powered": "true"
- }
- },
- {
- "id": 1406,
- "properties": {
- "instrument": "creeper",
- "note": "9",
- "powered": "false"
- }
- },
- {
- "id": 1407,
- "properties": {
- "instrument": "creeper",
- "note": "10",
- "powered": "true"
- }
- },
- {
- "id": 1408,
- "properties": {
- "instrument": "creeper",
- "note": "10",
- "powered": "false"
- }
- },
- {
- "id": 1409,
- "properties": {
- "instrument": "creeper",
- "note": "11",
- "powered": "true"
- }
- },
- {
- "id": 1410,
- "properties": {
- "instrument": "creeper",
- "note": "11",
- "powered": "false"
- }
- },
- {
- "id": 1411,
- "properties": {
- "instrument": "creeper",
- "note": "12",
- "powered": "true"
- }
- },
- {
- "id": 1412,
- "properties": {
- "instrument": "creeper",
- "note": "12",
- "powered": "false"
- }
- },
- {
- "id": 1413,
- "properties": {
- "instrument": "creeper",
- "note": "13",
- "powered": "true"
- }
- },
- {
- "id": 1414,
- "properties": {
- "instrument": "creeper",
- "note": "13",
- "powered": "false"
- }
- },
- {
- "id": 1415,
- "properties": {
- "instrument": "creeper",
- "note": "14",
- "powered": "true"
- }
- },
- {
- "id": 1416,
- "properties": {
- "instrument": "creeper",
- "note": "14",
- "powered": "false"
- }
- },
- {
- "id": 1417,
- "properties": {
- "instrument": "creeper",
- "note": "15",
- "powered": "true"
- }
- },
- {
- "id": 1418,
- "properties": {
- "instrument": "creeper",
- "note": "15",
- "powered": "false"
- }
- },
- {
- "id": 1419,
- "properties": {
- "instrument": "creeper",
- "note": "16",
- "powered": "true"
- }
- },
- {
- "id": 1420,
- "properties": {
- "instrument": "creeper",
- "note": "16",
- "powered": "false"
- }
- },
- {
- "id": 1421,
- "properties": {
- "instrument": "creeper",
- "note": "17",
- "powered": "true"
- }
- },
- {
- "id": 1422,
- "properties": {
- "instrument": "creeper",
- "note": "17",
- "powered": "false"
- }
- },
- {
- "id": 1423,
- "properties": {
- "instrument": "creeper",
- "note": "18",
- "powered": "true"
- }
- },
- {
- "id": 1424,
- "properties": {
- "instrument": "creeper",
- "note": "18",
- "powered": "false"
- }
- },
- {
- "id": 1425,
- "properties": {
- "instrument": "creeper",
- "note": "19",
- "powered": "true"
- }
- },
- {
- "id": 1426,
- "properties": {
- "instrument": "creeper",
- "note": "19",
- "powered": "false"
- }
- },
- {
- "id": 1427,
- "properties": {
- "instrument": "creeper",
- "note": "20",
- "powered": "true"
- }
- },
- {
- "id": 1428,
- "properties": {
- "instrument": "creeper",
- "note": "20",
- "powered": "false"
- }
- },
- {
- "id": 1429,
- "properties": {
- "instrument": "creeper",
- "note": "21",
- "powered": "true"
- }
- },
- {
- "id": 1430,
- "properties": {
- "instrument": "creeper",
- "note": "21",
- "powered": "false"
- }
- },
- {
- "id": 1431,
- "properties": {
- "instrument": "creeper",
- "note": "22",
- "powered": "true"
- }
- },
- {
- "id": 1432,
- "properties": {
- "instrument": "creeper",
- "note": "22",
- "powered": "false"
- }
- },
- {
- "id": 1433,
- "properties": {
- "instrument": "creeper",
- "note": "23",
- "powered": "true"
- }
- },
{
"id": 1434,
"properties": {
"instrument": "creeper",
- "note": "23",
- "powered": "false"
+ "note": "0",
+ "powered": "true"
}
},
{
"id": 1435,
+ "properties": {
+ "instrument": "creeper",
+ "note": "0",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1436,
+ "properties": {
+ "instrument": "creeper",
+ "note": "1",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1437,
+ "properties": {
+ "instrument": "creeper",
+ "note": "1",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1438,
+ "properties": {
+ "instrument": "creeper",
+ "note": "2",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1439,
+ "properties": {
+ "instrument": "creeper",
+ "note": "2",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1440,
+ "properties": {
+ "instrument": "creeper",
+ "note": "3",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1441,
+ "properties": {
+ "instrument": "creeper",
+ "note": "3",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1442,
+ "properties": {
+ "instrument": "creeper",
+ "note": "4",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1443,
+ "properties": {
+ "instrument": "creeper",
+ "note": "4",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1444,
+ "properties": {
+ "instrument": "creeper",
+ "note": "5",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1445,
+ "properties": {
+ "instrument": "creeper",
+ "note": "5",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1446,
+ "properties": {
+ "instrument": "creeper",
+ "note": "6",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1447,
+ "properties": {
+ "instrument": "creeper",
+ "note": "6",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1448,
+ "properties": {
+ "instrument": "creeper",
+ "note": "7",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1449,
+ "properties": {
+ "instrument": "creeper",
+ "note": "7",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1450,
+ "properties": {
+ "instrument": "creeper",
+ "note": "8",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1451,
+ "properties": {
+ "instrument": "creeper",
+ "note": "8",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1452,
+ "properties": {
+ "instrument": "creeper",
+ "note": "9",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1453,
+ "properties": {
+ "instrument": "creeper",
+ "note": "9",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1454,
+ "properties": {
+ "instrument": "creeper",
+ "note": "10",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1455,
+ "properties": {
+ "instrument": "creeper",
+ "note": "10",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1456,
+ "properties": {
+ "instrument": "creeper",
+ "note": "11",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1457,
+ "properties": {
+ "instrument": "creeper",
+ "note": "11",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1458,
+ "properties": {
+ "instrument": "creeper",
+ "note": "12",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1459,
+ "properties": {
+ "instrument": "creeper",
+ "note": "12",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1460,
+ "properties": {
+ "instrument": "creeper",
+ "note": "13",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1461,
+ "properties": {
+ "instrument": "creeper",
+ "note": "13",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1462,
+ "properties": {
+ "instrument": "creeper",
+ "note": "14",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1463,
+ "properties": {
+ "instrument": "creeper",
+ "note": "14",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1464,
+ "properties": {
+ "instrument": "creeper",
+ "note": "15",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1465,
+ "properties": {
+ "instrument": "creeper",
+ "note": "15",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1466,
+ "properties": {
+ "instrument": "creeper",
+ "note": "16",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1467,
+ "properties": {
+ "instrument": "creeper",
+ "note": "16",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1468,
+ "properties": {
+ "instrument": "creeper",
+ "note": "17",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1469,
+ "properties": {
+ "instrument": "creeper",
+ "note": "17",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1470,
+ "properties": {
+ "instrument": "creeper",
+ "note": "18",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1471,
+ "properties": {
+ "instrument": "creeper",
+ "note": "18",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1472,
+ "properties": {
+ "instrument": "creeper",
+ "note": "19",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1473,
+ "properties": {
+ "instrument": "creeper",
+ "note": "19",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1474,
+ "properties": {
+ "instrument": "creeper",
+ "note": "20",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1475,
+ "properties": {
+ "instrument": "creeper",
+ "note": "20",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1476,
+ "properties": {
+ "instrument": "creeper",
+ "note": "21",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1477,
+ "properties": {
+ "instrument": "creeper",
+ "note": "21",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1478,
+ "properties": {
+ "instrument": "creeper",
+ "note": "22",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1479,
+ "properties": {
+ "instrument": "creeper",
+ "note": "22",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1480,
+ "properties": {
+ "instrument": "creeper",
+ "note": "23",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1481,
+ "properties": {
+ "instrument": "creeper",
+ "note": "23",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1482,
"properties": {
"instrument": "creeper",
"note": "24",
@@ -137978,399 +142375,399 @@
}
},
{
- "id": 1436,
+ "id": 1483,
"properties": {
"instrument": "creeper",
"note": "24",
"powered": "false"
}
},
- {
- "id": 1437,
- "properties": {
- "instrument": "dragon",
- "note": "0",
- "powered": "true"
- }
- },
- {
- "id": 1438,
- "properties": {
- "instrument": "dragon",
- "note": "0",
- "powered": "false"
- }
- },
- {
- "id": 1439,
- "properties": {
- "instrument": "dragon",
- "note": "1",
- "powered": "true"
- }
- },
- {
- "id": 1440,
- "properties": {
- "instrument": "dragon",
- "note": "1",
- "powered": "false"
- }
- },
- {
- "id": 1441,
- "properties": {
- "instrument": "dragon",
- "note": "2",
- "powered": "true"
- }
- },
- {
- "id": 1442,
- "properties": {
- "instrument": "dragon",
- "note": "2",
- "powered": "false"
- }
- },
- {
- "id": 1443,
- "properties": {
- "instrument": "dragon",
- "note": "3",
- "powered": "true"
- }
- },
- {
- "id": 1444,
- "properties": {
- "instrument": "dragon",
- "note": "3",
- "powered": "false"
- }
- },
- {
- "id": 1445,
- "properties": {
- "instrument": "dragon",
- "note": "4",
- "powered": "true"
- }
- },
- {
- "id": 1446,
- "properties": {
- "instrument": "dragon",
- "note": "4",
- "powered": "false"
- }
- },
- {
- "id": 1447,
- "properties": {
- "instrument": "dragon",
- "note": "5",
- "powered": "true"
- }
- },
- {
- "id": 1448,
- "properties": {
- "instrument": "dragon",
- "note": "5",
- "powered": "false"
- }
- },
- {
- "id": 1449,
- "properties": {
- "instrument": "dragon",
- "note": "6",
- "powered": "true"
- }
- },
- {
- "id": 1450,
- "properties": {
- "instrument": "dragon",
- "note": "6",
- "powered": "false"
- }
- },
- {
- "id": 1451,
- "properties": {
- "instrument": "dragon",
- "note": "7",
- "powered": "true"
- }
- },
- {
- "id": 1452,
- "properties": {
- "instrument": "dragon",
- "note": "7",
- "powered": "false"
- }
- },
- {
- "id": 1453,
- "properties": {
- "instrument": "dragon",
- "note": "8",
- "powered": "true"
- }
- },
- {
- "id": 1454,
- "properties": {
- "instrument": "dragon",
- "note": "8",
- "powered": "false"
- }
- },
- {
- "id": 1455,
- "properties": {
- "instrument": "dragon",
- "note": "9",
- "powered": "true"
- }
- },
- {
- "id": 1456,
- "properties": {
- "instrument": "dragon",
- "note": "9",
- "powered": "false"
- }
- },
- {
- "id": 1457,
- "properties": {
- "instrument": "dragon",
- "note": "10",
- "powered": "true"
- }
- },
- {
- "id": 1458,
- "properties": {
- "instrument": "dragon",
- "note": "10",
- "powered": "false"
- }
- },
- {
- "id": 1459,
- "properties": {
- "instrument": "dragon",
- "note": "11",
- "powered": "true"
- }
- },
- {
- "id": 1460,
- "properties": {
- "instrument": "dragon",
- "note": "11",
- "powered": "false"
- }
- },
- {
- "id": 1461,
- "properties": {
- "instrument": "dragon",
- "note": "12",
- "powered": "true"
- }
- },
- {
- "id": 1462,
- "properties": {
- "instrument": "dragon",
- "note": "12",
- "powered": "false"
- }
- },
- {
- "id": 1463,
- "properties": {
- "instrument": "dragon",
- "note": "13",
- "powered": "true"
- }
- },
- {
- "id": 1464,
- "properties": {
- "instrument": "dragon",
- "note": "13",
- "powered": "false"
- }
- },
- {
- "id": 1465,
- "properties": {
- "instrument": "dragon",
- "note": "14",
- "powered": "true"
- }
- },
- {
- "id": 1466,
- "properties": {
- "instrument": "dragon",
- "note": "14",
- "powered": "false"
- }
- },
- {
- "id": 1467,
- "properties": {
- "instrument": "dragon",
- "note": "15",
- "powered": "true"
- }
- },
- {
- "id": 1468,
- "properties": {
- "instrument": "dragon",
- "note": "15",
- "powered": "false"
- }
- },
- {
- "id": 1469,
- "properties": {
- "instrument": "dragon",
- "note": "16",
- "powered": "true"
- }
- },
- {
- "id": 1470,
- "properties": {
- "instrument": "dragon",
- "note": "16",
- "powered": "false"
- }
- },
- {
- "id": 1471,
- "properties": {
- "instrument": "dragon",
- "note": "17",
- "powered": "true"
- }
- },
- {
- "id": 1472,
- "properties": {
- "instrument": "dragon",
- "note": "17",
- "powered": "false"
- }
- },
- {
- "id": 1473,
- "properties": {
- "instrument": "dragon",
- "note": "18",
- "powered": "true"
- }
- },
- {
- "id": 1474,
- "properties": {
- "instrument": "dragon",
- "note": "18",
- "powered": "false"
- }
- },
- {
- "id": 1475,
- "properties": {
- "instrument": "dragon",
- "note": "19",
- "powered": "true"
- }
- },
- {
- "id": 1476,
- "properties": {
- "instrument": "dragon",
- "note": "19",
- "powered": "false"
- }
- },
- {
- "id": 1477,
- "properties": {
- "instrument": "dragon",
- "note": "20",
- "powered": "true"
- }
- },
- {
- "id": 1478,
- "properties": {
- "instrument": "dragon",
- "note": "20",
- "powered": "false"
- }
- },
- {
- "id": 1479,
- "properties": {
- "instrument": "dragon",
- "note": "21",
- "powered": "true"
- }
- },
- {
- "id": 1480,
- "properties": {
- "instrument": "dragon",
- "note": "21",
- "powered": "false"
- }
- },
- {
- "id": 1481,
- "properties": {
- "instrument": "dragon",
- "note": "22",
- "powered": "true"
- }
- },
- {
- "id": 1482,
- "properties": {
- "instrument": "dragon",
- "note": "22",
- "powered": "false"
- }
- },
- {
- "id": 1483,
- "properties": {
- "instrument": "dragon",
- "note": "23",
- "powered": "true"
- }
- },
{
"id": 1484,
"properties": {
"instrument": "dragon",
- "note": "23",
- "powered": "false"
+ "note": "0",
+ "powered": "true"
}
},
{
"id": 1485,
+ "properties": {
+ "instrument": "dragon",
+ "note": "0",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1486,
+ "properties": {
+ "instrument": "dragon",
+ "note": "1",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1487,
+ "properties": {
+ "instrument": "dragon",
+ "note": "1",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1488,
+ "properties": {
+ "instrument": "dragon",
+ "note": "2",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1489,
+ "properties": {
+ "instrument": "dragon",
+ "note": "2",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1490,
+ "properties": {
+ "instrument": "dragon",
+ "note": "3",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1491,
+ "properties": {
+ "instrument": "dragon",
+ "note": "3",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1492,
+ "properties": {
+ "instrument": "dragon",
+ "note": "4",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1493,
+ "properties": {
+ "instrument": "dragon",
+ "note": "4",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1494,
+ "properties": {
+ "instrument": "dragon",
+ "note": "5",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1495,
+ "properties": {
+ "instrument": "dragon",
+ "note": "5",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1496,
+ "properties": {
+ "instrument": "dragon",
+ "note": "6",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1497,
+ "properties": {
+ "instrument": "dragon",
+ "note": "6",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1498,
+ "properties": {
+ "instrument": "dragon",
+ "note": "7",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1499,
+ "properties": {
+ "instrument": "dragon",
+ "note": "7",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1500,
+ "properties": {
+ "instrument": "dragon",
+ "note": "8",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1501,
+ "properties": {
+ "instrument": "dragon",
+ "note": "8",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1502,
+ "properties": {
+ "instrument": "dragon",
+ "note": "9",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1503,
+ "properties": {
+ "instrument": "dragon",
+ "note": "9",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1504,
+ "properties": {
+ "instrument": "dragon",
+ "note": "10",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1505,
+ "properties": {
+ "instrument": "dragon",
+ "note": "10",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1506,
+ "properties": {
+ "instrument": "dragon",
+ "note": "11",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1507,
+ "properties": {
+ "instrument": "dragon",
+ "note": "11",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1508,
+ "properties": {
+ "instrument": "dragon",
+ "note": "12",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1509,
+ "properties": {
+ "instrument": "dragon",
+ "note": "12",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1510,
+ "properties": {
+ "instrument": "dragon",
+ "note": "13",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1511,
+ "properties": {
+ "instrument": "dragon",
+ "note": "13",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1512,
+ "properties": {
+ "instrument": "dragon",
+ "note": "14",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1513,
+ "properties": {
+ "instrument": "dragon",
+ "note": "14",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1514,
+ "properties": {
+ "instrument": "dragon",
+ "note": "15",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1515,
+ "properties": {
+ "instrument": "dragon",
+ "note": "15",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1516,
+ "properties": {
+ "instrument": "dragon",
+ "note": "16",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1517,
+ "properties": {
+ "instrument": "dragon",
+ "note": "16",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1518,
+ "properties": {
+ "instrument": "dragon",
+ "note": "17",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1519,
+ "properties": {
+ "instrument": "dragon",
+ "note": "17",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1520,
+ "properties": {
+ "instrument": "dragon",
+ "note": "18",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1521,
+ "properties": {
+ "instrument": "dragon",
+ "note": "18",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1522,
+ "properties": {
+ "instrument": "dragon",
+ "note": "19",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1523,
+ "properties": {
+ "instrument": "dragon",
+ "note": "19",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1524,
+ "properties": {
+ "instrument": "dragon",
+ "note": "20",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1525,
+ "properties": {
+ "instrument": "dragon",
+ "note": "20",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1526,
+ "properties": {
+ "instrument": "dragon",
+ "note": "21",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1527,
+ "properties": {
+ "instrument": "dragon",
+ "note": "21",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1528,
+ "properties": {
+ "instrument": "dragon",
+ "note": "22",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1529,
+ "properties": {
+ "instrument": "dragon",
+ "note": "22",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1530,
+ "properties": {
+ "instrument": "dragon",
+ "note": "23",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1531,
+ "properties": {
+ "instrument": "dragon",
+ "note": "23",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1532,
"properties": {
"instrument": "dragon",
"note": "24",
@@ -138378,399 +142775,399 @@
}
},
{
- "id": 1486,
+ "id": 1533,
"properties": {
"instrument": "dragon",
"note": "24",
"powered": "false"
}
},
- {
- "id": 1487,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "0",
- "powered": "true"
- }
- },
- {
- "id": 1488,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "0",
- "powered": "false"
- }
- },
- {
- "id": 1489,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "1",
- "powered": "true"
- }
- },
- {
- "id": 1490,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "1",
- "powered": "false"
- }
- },
- {
- "id": 1491,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "2",
- "powered": "true"
- }
- },
- {
- "id": 1492,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "2",
- "powered": "false"
- }
- },
- {
- "id": 1493,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "3",
- "powered": "true"
- }
- },
- {
- "id": 1494,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "3",
- "powered": "false"
- }
- },
- {
- "id": 1495,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "4",
- "powered": "true"
- }
- },
- {
- "id": 1496,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "4",
- "powered": "false"
- }
- },
- {
- "id": 1497,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "5",
- "powered": "true"
- }
- },
- {
- "id": 1498,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "5",
- "powered": "false"
- }
- },
- {
- "id": 1499,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "6",
- "powered": "true"
- }
- },
- {
- "id": 1500,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "6",
- "powered": "false"
- }
- },
- {
- "id": 1501,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "7",
- "powered": "true"
- }
- },
- {
- "id": 1502,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "7",
- "powered": "false"
- }
- },
- {
- "id": 1503,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "8",
- "powered": "true"
- }
- },
- {
- "id": 1504,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "8",
- "powered": "false"
- }
- },
- {
- "id": 1505,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "9",
- "powered": "true"
- }
- },
- {
- "id": 1506,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "9",
- "powered": "false"
- }
- },
- {
- "id": 1507,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "10",
- "powered": "true"
- }
- },
- {
- "id": 1508,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "10",
- "powered": "false"
- }
- },
- {
- "id": 1509,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "11",
- "powered": "true"
- }
- },
- {
- "id": 1510,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "11",
- "powered": "false"
- }
- },
- {
- "id": 1511,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "12",
- "powered": "true"
- }
- },
- {
- "id": 1512,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "12",
- "powered": "false"
- }
- },
- {
- "id": 1513,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "13",
- "powered": "true"
- }
- },
- {
- "id": 1514,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "13",
- "powered": "false"
- }
- },
- {
- "id": 1515,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "14",
- "powered": "true"
- }
- },
- {
- "id": 1516,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "14",
- "powered": "false"
- }
- },
- {
- "id": 1517,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "15",
- "powered": "true"
- }
- },
- {
- "id": 1518,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "15",
- "powered": "false"
- }
- },
- {
- "id": 1519,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "16",
- "powered": "true"
- }
- },
- {
- "id": 1520,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "16",
- "powered": "false"
- }
- },
- {
- "id": 1521,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "17",
- "powered": "true"
- }
- },
- {
- "id": 1522,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "17",
- "powered": "false"
- }
- },
- {
- "id": 1523,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "18",
- "powered": "true"
- }
- },
- {
- "id": 1524,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "18",
- "powered": "false"
- }
- },
- {
- "id": 1525,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "19",
- "powered": "true"
- }
- },
- {
- "id": 1526,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "19",
- "powered": "false"
- }
- },
- {
- "id": 1527,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "20",
- "powered": "true"
- }
- },
- {
- "id": 1528,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "20",
- "powered": "false"
- }
- },
- {
- "id": 1529,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "21",
- "powered": "true"
- }
- },
- {
- "id": 1530,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "21",
- "powered": "false"
- }
- },
- {
- "id": 1531,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "22",
- "powered": "true"
- }
- },
- {
- "id": 1532,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "22",
- "powered": "false"
- }
- },
- {
- "id": 1533,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "23",
- "powered": "true"
- }
- },
{
"id": 1534,
"properties": {
"instrument": "wither_skeleton",
- "note": "23",
- "powered": "false"
+ "note": "0",
+ "powered": "true"
}
},
{
"id": 1535,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "0",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1536,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "1",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1537,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "1",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1538,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "2",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1539,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "2",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1540,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "3",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1541,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "3",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1542,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "4",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1543,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "4",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1544,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "5",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1545,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "5",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1546,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "6",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1547,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "6",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1548,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "7",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1549,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "7",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1550,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "8",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1551,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "8",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1552,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "9",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1553,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "9",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1554,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "10",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1555,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "10",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1556,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "11",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1557,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "11",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1558,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "12",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1559,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "12",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1560,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "13",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1561,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "13",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1562,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "14",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1563,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "14",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1564,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "15",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1565,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "15",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1566,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "16",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1567,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "16",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1568,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "17",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1569,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "17",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1570,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "18",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1571,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "18",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1572,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "19",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1573,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "19",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1574,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "20",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1575,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "20",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1576,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "21",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1577,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "21",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1578,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "22",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1579,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "22",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1580,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "23",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1581,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "23",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1582,
"properties": {
"instrument": "wither_skeleton",
"note": "24",
@@ -138778,399 +143175,399 @@
}
},
{
- "id": 1536,
+ "id": 1583,
"properties": {
"instrument": "wither_skeleton",
"note": "24",
"powered": "false"
}
},
- {
- "id": 1537,
- "properties": {
- "instrument": "piglin",
- "note": "0",
- "powered": "true"
- }
- },
- {
- "id": 1538,
- "properties": {
- "instrument": "piglin",
- "note": "0",
- "powered": "false"
- }
- },
- {
- "id": 1539,
- "properties": {
- "instrument": "piglin",
- "note": "1",
- "powered": "true"
- }
- },
- {
- "id": 1540,
- "properties": {
- "instrument": "piglin",
- "note": "1",
- "powered": "false"
- }
- },
- {
- "id": 1541,
- "properties": {
- "instrument": "piglin",
- "note": "2",
- "powered": "true"
- }
- },
- {
- "id": 1542,
- "properties": {
- "instrument": "piglin",
- "note": "2",
- "powered": "false"
- }
- },
- {
- "id": 1543,
- "properties": {
- "instrument": "piglin",
- "note": "3",
- "powered": "true"
- }
- },
- {
- "id": 1544,
- "properties": {
- "instrument": "piglin",
- "note": "3",
- "powered": "false"
- }
- },
- {
- "id": 1545,
- "properties": {
- "instrument": "piglin",
- "note": "4",
- "powered": "true"
- }
- },
- {
- "id": 1546,
- "properties": {
- "instrument": "piglin",
- "note": "4",
- "powered": "false"
- }
- },
- {
- "id": 1547,
- "properties": {
- "instrument": "piglin",
- "note": "5",
- "powered": "true"
- }
- },
- {
- "id": 1548,
- "properties": {
- "instrument": "piglin",
- "note": "5",
- "powered": "false"
- }
- },
- {
- "id": 1549,
- "properties": {
- "instrument": "piglin",
- "note": "6",
- "powered": "true"
- }
- },
- {
- "id": 1550,
- "properties": {
- "instrument": "piglin",
- "note": "6",
- "powered": "false"
- }
- },
- {
- "id": 1551,
- "properties": {
- "instrument": "piglin",
- "note": "7",
- "powered": "true"
- }
- },
- {
- "id": 1552,
- "properties": {
- "instrument": "piglin",
- "note": "7",
- "powered": "false"
- }
- },
- {
- "id": 1553,
- "properties": {
- "instrument": "piglin",
- "note": "8",
- "powered": "true"
- }
- },
- {
- "id": 1554,
- "properties": {
- "instrument": "piglin",
- "note": "8",
- "powered": "false"
- }
- },
- {
- "id": 1555,
- "properties": {
- "instrument": "piglin",
- "note": "9",
- "powered": "true"
- }
- },
- {
- "id": 1556,
- "properties": {
- "instrument": "piglin",
- "note": "9",
- "powered": "false"
- }
- },
- {
- "id": 1557,
- "properties": {
- "instrument": "piglin",
- "note": "10",
- "powered": "true"
- }
- },
- {
- "id": 1558,
- "properties": {
- "instrument": "piglin",
- "note": "10",
- "powered": "false"
- }
- },
- {
- "id": 1559,
- "properties": {
- "instrument": "piglin",
- "note": "11",
- "powered": "true"
- }
- },
- {
- "id": 1560,
- "properties": {
- "instrument": "piglin",
- "note": "11",
- "powered": "false"
- }
- },
- {
- "id": 1561,
- "properties": {
- "instrument": "piglin",
- "note": "12",
- "powered": "true"
- }
- },
- {
- "id": 1562,
- "properties": {
- "instrument": "piglin",
- "note": "12",
- "powered": "false"
- }
- },
- {
- "id": 1563,
- "properties": {
- "instrument": "piglin",
- "note": "13",
- "powered": "true"
- }
- },
- {
- "id": 1564,
- "properties": {
- "instrument": "piglin",
- "note": "13",
- "powered": "false"
- }
- },
- {
- "id": 1565,
- "properties": {
- "instrument": "piglin",
- "note": "14",
- "powered": "true"
- }
- },
- {
- "id": 1566,
- "properties": {
- "instrument": "piglin",
- "note": "14",
- "powered": "false"
- }
- },
- {
- "id": 1567,
- "properties": {
- "instrument": "piglin",
- "note": "15",
- "powered": "true"
- }
- },
- {
- "id": 1568,
- "properties": {
- "instrument": "piglin",
- "note": "15",
- "powered": "false"
- }
- },
- {
- "id": 1569,
- "properties": {
- "instrument": "piglin",
- "note": "16",
- "powered": "true"
- }
- },
- {
- "id": 1570,
- "properties": {
- "instrument": "piglin",
- "note": "16",
- "powered": "false"
- }
- },
- {
- "id": 1571,
- "properties": {
- "instrument": "piglin",
- "note": "17",
- "powered": "true"
- }
- },
- {
- "id": 1572,
- "properties": {
- "instrument": "piglin",
- "note": "17",
- "powered": "false"
- }
- },
- {
- "id": 1573,
- "properties": {
- "instrument": "piglin",
- "note": "18",
- "powered": "true"
- }
- },
- {
- "id": 1574,
- "properties": {
- "instrument": "piglin",
- "note": "18",
- "powered": "false"
- }
- },
- {
- "id": 1575,
- "properties": {
- "instrument": "piglin",
- "note": "19",
- "powered": "true"
- }
- },
- {
- "id": 1576,
- "properties": {
- "instrument": "piglin",
- "note": "19",
- "powered": "false"
- }
- },
- {
- "id": 1577,
- "properties": {
- "instrument": "piglin",
- "note": "20",
- "powered": "true"
- }
- },
- {
- "id": 1578,
- "properties": {
- "instrument": "piglin",
- "note": "20",
- "powered": "false"
- }
- },
- {
- "id": 1579,
- "properties": {
- "instrument": "piglin",
- "note": "21",
- "powered": "true"
- }
- },
- {
- "id": 1580,
- "properties": {
- "instrument": "piglin",
- "note": "21",
- "powered": "false"
- }
- },
- {
- "id": 1581,
- "properties": {
- "instrument": "piglin",
- "note": "22",
- "powered": "true"
- }
- },
- {
- "id": 1582,
- "properties": {
- "instrument": "piglin",
- "note": "22",
- "powered": "false"
- }
- },
- {
- "id": 1583,
- "properties": {
- "instrument": "piglin",
- "note": "23",
- "powered": "true"
- }
- },
{
"id": 1584,
"properties": {
"instrument": "piglin",
- "note": "23",
- "powered": "false"
+ "note": "0",
+ "powered": "true"
}
},
{
"id": 1585,
+ "properties": {
+ "instrument": "piglin",
+ "note": "0",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1586,
+ "properties": {
+ "instrument": "piglin",
+ "note": "1",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1587,
+ "properties": {
+ "instrument": "piglin",
+ "note": "1",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1588,
+ "properties": {
+ "instrument": "piglin",
+ "note": "2",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1589,
+ "properties": {
+ "instrument": "piglin",
+ "note": "2",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1590,
+ "properties": {
+ "instrument": "piglin",
+ "note": "3",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1591,
+ "properties": {
+ "instrument": "piglin",
+ "note": "3",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1592,
+ "properties": {
+ "instrument": "piglin",
+ "note": "4",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1593,
+ "properties": {
+ "instrument": "piglin",
+ "note": "4",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1594,
+ "properties": {
+ "instrument": "piglin",
+ "note": "5",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1595,
+ "properties": {
+ "instrument": "piglin",
+ "note": "5",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1596,
+ "properties": {
+ "instrument": "piglin",
+ "note": "6",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1597,
+ "properties": {
+ "instrument": "piglin",
+ "note": "6",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1598,
+ "properties": {
+ "instrument": "piglin",
+ "note": "7",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1599,
+ "properties": {
+ "instrument": "piglin",
+ "note": "7",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1600,
+ "properties": {
+ "instrument": "piglin",
+ "note": "8",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1601,
+ "properties": {
+ "instrument": "piglin",
+ "note": "8",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1602,
+ "properties": {
+ "instrument": "piglin",
+ "note": "9",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1603,
+ "properties": {
+ "instrument": "piglin",
+ "note": "9",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1604,
+ "properties": {
+ "instrument": "piglin",
+ "note": "10",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1605,
+ "properties": {
+ "instrument": "piglin",
+ "note": "10",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1606,
+ "properties": {
+ "instrument": "piglin",
+ "note": "11",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1607,
+ "properties": {
+ "instrument": "piglin",
+ "note": "11",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1608,
+ "properties": {
+ "instrument": "piglin",
+ "note": "12",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1609,
+ "properties": {
+ "instrument": "piglin",
+ "note": "12",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1610,
+ "properties": {
+ "instrument": "piglin",
+ "note": "13",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1611,
+ "properties": {
+ "instrument": "piglin",
+ "note": "13",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1612,
+ "properties": {
+ "instrument": "piglin",
+ "note": "14",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1613,
+ "properties": {
+ "instrument": "piglin",
+ "note": "14",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1614,
+ "properties": {
+ "instrument": "piglin",
+ "note": "15",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1615,
+ "properties": {
+ "instrument": "piglin",
+ "note": "15",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1616,
+ "properties": {
+ "instrument": "piglin",
+ "note": "16",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1617,
+ "properties": {
+ "instrument": "piglin",
+ "note": "16",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1618,
+ "properties": {
+ "instrument": "piglin",
+ "note": "17",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1619,
+ "properties": {
+ "instrument": "piglin",
+ "note": "17",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1620,
+ "properties": {
+ "instrument": "piglin",
+ "note": "18",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1621,
+ "properties": {
+ "instrument": "piglin",
+ "note": "18",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1622,
+ "properties": {
+ "instrument": "piglin",
+ "note": "19",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1623,
+ "properties": {
+ "instrument": "piglin",
+ "note": "19",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1624,
+ "properties": {
+ "instrument": "piglin",
+ "note": "20",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1625,
+ "properties": {
+ "instrument": "piglin",
+ "note": "20",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1626,
+ "properties": {
+ "instrument": "piglin",
+ "note": "21",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1627,
+ "properties": {
+ "instrument": "piglin",
+ "note": "21",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1628,
+ "properties": {
+ "instrument": "piglin",
+ "note": "22",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1629,
+ "properties": {
+ "instrument": "piglin",
+ "note": "22",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1630,
+ "properties": {
+ "instrument": "piglin",
+ "note": "23",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1631,
+ "properties": {
+ "instrument": "piglin",
+ "note": "23",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1632,
"properties": {
"instrument": "piglin",
"note": "24",
@@ -139178,399 +143575,399 @@
}
},
{
- "id": 1586,
+ "id": 1633,
"properties": {
"instrument": "piglin",
"note": "24",
"powered": "false"
}
},
- {
- "id": 1587,
- "properties": {
- "instrument": "custom_head",
- "note": "0",
- "powered": "true"
- }
- },
- {
- "id": 1588,
- "properties": {
- "instrument": "custom_head",
- "note": "0",
- "powered": "false"
- }
- },
- {
- "id": 1589,
- "properties": {
- "instrument": "custom_head",
- "note": "1",
- "powered": "true"
- }
- },
- {
- "id": 1590,
- "properties": {
- "instrument": "custom_head",
- "note": "1",
- "powered": "false"
- }
- },
- {
- "id": 1591,
- "properties": {
- "instrument": "custom_head",
- "note": "2",
- "powered": "true"
- }
- },
- {
- "id": 1592,
- "properties": {
- "instrument": "custom_head",
- "note": "2",
- "powered": "false"
- }
- },
- {
- "id": 1593,
- "properties": {
- "instrument": "custom_head",
- "note": "3",
- "powered": "true"
- }
- },
- {
- "id": 1594,
- "properties": {
- "instrument": "custom_head",
- "note": "3",
- "powered": "false"
- }
- },
- {
- "id": 1595,
- "properties": {
- "instrument": "custom_head",
- "note": "4",
- "powered": "true"
- }
- },
- {
- "id": 1596,
- "properties": {
- "instrument": "custom_head",
- "note": "4",
- "powered": "false"
- }
- },
- {
- "id": 1597,
- "properties": {
- "instrument": "custom_head",
- "note": "5",
- "powered": "true"
- }
- },
- {
- "id": 1598,
- "properties": {
- "instrument": "custom_head",
- "note": "5",
- "powered": "false"
- }
- },
- {
- "id": 1599,
- "properties": {
- "instrument": "custom_head",
- "note": "6",
- "powered": "true"
- }
- },
- {
- "id": 1600,
- "properties": {
- "instrument": "custom_head",
- "note": "6",
- "powered": "false"
- }
- },
- {
- "id": 1601,
- "properties": {
- "instrument": "custom_head",
- "note": "7",
- "powered": "true"
- }
- },
- {
- "id": 1602,
- "properties": {
- "instrument": "custom_head",
- "note": "7",
- "powered": "false"
- }
- },
- {
- "id": 1603,
- "properties": {
- "instrument": "custom_head",
- "note": "8",
- "powered": "true"
- }
- },
- {
- "id": 1604,
- "properties": {
- "instrument": "custom_head",
- "note": "8",
- "powered": "false"
- }
- },
- {
- "id": 1605,
- "properties": {
- "instrument": "custom_head",
- "note": "9",
- "powered": "true"
- }
- },
- {
- "id": 1606,
- "properties": {
- "instrument": "custom_head",
- "note": "9",
- "powered": "false"
- }
- },
- {
- "id": 1607,
- "properties": {
- "instrument": "custom_head",
- "note": "10",
- "powered": "true"
- }
- },
- {
- "id": 1608,
- "properties": {
- "instrument": "custom_head",
- "note": "10",
- "powered": "false"
- }
- },
- {
- "id": 1609,
- "properties": {
- "instrument": "custom_head",
- "note": "11",
- "powered": "true"
- }
- },
- {
- "id": 1610,
- "properties": {
- "instrument": "custom_head",
- "note": "11",
- "powered": "false"
- }
- },
- {
- "id": 1611,
- "properties": {
- "instrument": "custom_head",
- "note": "12",
- "powered": "true"
- }
- },
- {
- "id": 1612,
- "properties": {
- "instrument": "custom_head",
- "note": "12",
- "powered": "false"
- }
- },
- {
- "id": 1613,
- "properties": {
- "instrument": "custom_head",
- "note": "13",
- "powered": "true"
- }
- },
- {
- "id": 1614,
- "properties": {
- "instrument": "custom_head",
- "note": "13",
- "powered": "false"
- }
- },
- {
- "id": 1615,
- "properties": {
- "instrument": "custom_head",
- "note": "14",
- "powered": "true"
- }
- },
- {
- "id": 1616,
- "properties": {
- "instrument": "custom_head",
- "note": "14",
- "powered": "false"
- }
- },
- {
- "id": 1617,
- "properties": {
- "instrument": "custom_head",
- "note": "15",
- "powered": "true"
- }
- },
- {
- "id": 1618,
- "properties": {
- "instrument": "custom_head",
- "note": "15",
- "powered": "false"
- }
- },
- {
- "id": 1619,
- "properties": {
- "instrument": "custom_head",
- "note": "16",
- "powered": "true"
- }
- },
- {
- "id": 1620,
- "properties": {
- "instrument": "custom_head",
- "note": "16",
- "powered": "false"
- }
- },
- {
- "id": 1621,
- "properties": {
- "instrument": "custom_head",
- "note": "17",
- "powered": "true"
- }
- },
- {
- "id": 1622,
- "properties": {
- "instrument": "custom_head",
- "note": "17",
- "powered": "false"
- }
- },
- {
- "id": 1623,
- "properties": {
- "instrument": "custom_head",
- "note": "18",
- "powered": "true"
- }
- },
- {
- "id": 1624,
- "properties": {
- "instrument": "custom_head",
- "note": "18",
- "powered": "false"
- }
- },
- {
- "id": 1625,
- "properties": {
- "instrument": "custom_head",
- "note": "19",
- "powered": "true"
- }
- },
- {
- "id": 1626,
- "properties": {
- "instrument": "custom_head",
- "note": "19",
- "powered": "false"
- }
- },
- {
- "id": 1627,
- "properties": {
- "instrument": "custom_head",
- "note": "20",
- "powered": "true"
- }
- },
- {
- "id": 1628,
- "properties": {
- "instrument": "custom_head",
- "note": "20",
- "powered": "false"
- }
- },
- {
- "id": 1629,
- "properties": {
- "instrument": "custom_head",
- "note": "21",
- "powered": "true"
- }
- },
- {
- "id": 1630,
- "properties": {
- "instrument": "custom_head",
- "note": "21",
- "powered": "false"
- }
- },
- {
- "id": 1631,
- "properties": {
- "instrument": "custom_head",
- "note": "22",
- "powered": "true"
- }
- },
- {
- "id": 1632,
- "properties": {
- "instrument": "custom_head",
- "note": "22",
- "powered": "false"
- }
- },
- {
- "id": 1633,
- "properties": {
- "instrument": "custom_head",
- "note": "23",
- "powered": "true"
- }
- },
{
"id": 1634,
"properties": {
"instrument": "custom_head",
- "note": "23",
- "powered": "false"
+ "note": "0",
+ "powered": "true"
}
},
{
"id": 1635,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "0",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1636,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "1",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1637,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "1",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1638,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "2",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1639,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "2",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1640,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "3",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1641,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "3",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1642,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "4",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1643,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "4",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1644,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "5",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1645,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "5",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1646,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "6",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1647,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "6",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1648,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "7",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1649,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "7",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1650,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "8",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1651,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "8",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1652,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "9",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1653,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "9",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1654,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "10",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1655,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "10",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1656,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "11",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1657,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "11",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1658,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "12",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1659,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "12",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1660,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "13",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1661,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "13",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1662,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "14",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1663,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "14",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1664,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "15",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1665,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "15",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1666,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "16",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1667,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "16",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1668,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "17",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1669,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "17",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1670,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "18",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1671,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "18",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1672,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "19",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1673,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "19",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1674,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "20",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1675,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "20",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1676,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "21",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1677,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "21",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1678,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "22",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1679,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "22",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1680,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "23",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1681,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "23",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1682,
"properties": {
"instrument": "custom_head",
"note": "24",
@@ -139578,7 +143975,7 @@
}
},
{
- "id": 1636,
+ "id": 1683,
"properties": {
"instrument": "custom_head",
"note": "24",
@@ -139607,7 +144004,7 @@
},
"states": [
{
- "id": 8379,
+ "id": 8607,
"properties": {
"face": "floor",
"facing": "north",
@@ -139615,7 +144012,7 @@
}
},
{
- "id": 8380,
+ "id": 8608,
"properties": {
"face": "floor",
"facing": "north",
@@ -139623,7 +144020,7 @@
}
},
{
- "id": 8381,
+ "id": 8609,
"properties": {
"face": "floor",
"facing": "south",
@@ -139631,7 +144028,7 @@
}
},
{
- "id": 8382,
+ "id": 8610,
"properties": {
"face": "floor",
"facing": "south",
@@ -139639,7 +144036,7 @@
}
},
{
- "id": 8383,
+ "id": 8611,
"properties": {
"face": "floor",
"facing": "west",
@@ -139647,7 +144044,7 @@
}
},
{
- "id": 8384,
+ "id": 8612,
"properties": {
"face": "floor",
"facing": "west",
@@ -139655,7 +144052,7 @@
}
},
{
- "id": 8385,
+ "id": 8613,
"properties": {
"face": "floor",
"facing": "east",
@@ -139663,7 +144060,7 @@
}
},
{
- "id": 8386,
+ "id": 8614,
"properties": {
"face": "floor",
"facing": "east",
@@ -139671,7 +144068,7 @@
}
},
{
- "id": 8387,
+ "id": 8615,
"properties": {
"face": "wall",
"facing": "north",
@@ -139680,7 +144077,7 @@
},
{
"default": true,
- "id": 8388,
+ "id": 8616,
"properties": {
"face": "wall",
"facing": "north",
@@ -139688,7 +144085,7 @@
}
},
{
- "id": 8389,
+ "id": 8617,
"properties": {
"face": "wall",
"facing": "south",
@@ -139696,7 +144093,7 @@
}
},
{
- "id": 8390,
+ "id": 8618,
"properties": {
"face": "wall",
"facing": "south",
@@ -139704,7 +144101,7 @@
}
},
{
- "id": 8391,
+ "id": 8619,
"properties": {
"face": "wall",
"facing": "west",
@@ -139712,7 +144109,7 @@
}
},
{
- "id": 8392,
+ "id": 8620,
"properties": {
"face": "wall",
"facing": "west",
@@ -139720,7 +144117,7 @@
}
},
{
- "id": 8393,
+ "id": 8621,
"properties": {
"face": "wall",
"facing": "east",
@@ -139728,7 +144125,7 @@
}
},
{
- "id": 8394,
+ "id": 8622,
"properties": {
"face": "wall",
"facing": "east",
@@ -139736,7 +144133,7 @@
}
},
{
- "id": 8395,
+ "id": 8623,
"properties": {
"face": "ceiling",
"facing": "north",
@@ -139744,7 +144141,7 @@
}
},
{
- "id": 8396,
+ "id": 8624,
"properties": {
"face": "ceiling",
"facing": "north",
@@ -139752,7 +144149,7 @@
}
},
{
- "id": 8397,
+ "id": 8625,
"properties": {
"face": "ceiling",
"facing": "south",
@@ -139760,7 +144157,7 @@
}
},
{
- "id": 8398,
+ "id": 8626,
"properties": {
"face": "ceiling",
"facing": "south",
@@ -139768,7 +144165,7 @@
}
},
{
- "id": 8399,
+ "id": 8627,
"properties": {
"face": "ceiling",
"facing": "west",
@@ -139776,7 +144173,7 @@
}
},
{
- "id": 8400,
+ "id": 8628,
"properties": {
"face": "ceiling",
"facing": "west",
@@ -139784,7 +144181,7 @@
}
},
{
- "id": 8401,
+ "id": 8629,
"properties": {
"face": "ceiling",
"facing": "east",
@@ -139792,7 +144189,7 @@
}
},
{
- "id": 8402,
+ "id": 8630,
"properties": {
"face": "ceiling",
"facing": "east",
@@ -139828,7 +144225,7 @@
},
"states": [
{
- "id": 4506,
+ "id": 4586,
"properties": {
"facing": "north",
"half": "upper",
@@ -139838,7 +144235,7 @@
}
},
{
- "id": 4507,
+ "id": 4587,
"properties": {
"facing": "north",
"half": "upper",
@@ -139848,7 +144245,7 @@
}
},
{
- "id": 4508,
+ "id": 4588,
"properties": {
"facing": "north",
"half": "upper",
@@ -139858,7 +144255,7 @@
}
},
{
- "id": 4509,
+ "id": 4589,
"properties": {
"facing": "north",
"half": "upper",
@@ -139868,7 +144265,7 @@
}
},
{
- "id": 4510,
+ "id": 4590,
"properties": {
"facing": "north",
"half": "upper",
@@ -139878,7 +144275,7 @@
}
},
{
- "id": 4511,
+ "id": 4591,
"properties": {
"facing": "north",
"half": "upper",
@@ -139888,7 +144285,7 @@
}
},
{
- "id": 4512,
+ "id": 4592,
"properties": {
"facing": "north",
"half": "upper",
@@ -139898,7 +144295,7 @@
}
},
{
- "id": 4513,
+ "id": 4593,
"properties": {
"facing": "north",
"half": "upper",
@@ -139908,7 +144305,7 @@
}
},
{
- "id": 4514,
+ "id": 4594,
"properties": {
"facing": "north",
"half": "lower",
@@ -139918,7 +144315,7 @@
}
},
{
- "id": 4515,
+ "id": 4595,
"properties": {
"facing": "north",
"half": "lower",
@@ -139928,7 +144325,7 @@
}
},
{
- "id": 4516,
+ "id": 4596,
"properties": {
"facing": "north",
"half": "lower",
@@ -139939,7 +144336,7 @@
},
{
"default": true,
- "id": 4517,
+ "id": 4597,
"properties": {
"facing": "north",
"half": "lower",
@@ -139949,7 +144346,7 @@
}
},
{
- "id": 4518,
+ "id": 4598,
"properties": {
"facing": "north",
"half": "lower",
@@ -139959,7 +144356,7 @@
}
},
{
- "id": 4519,
+ "id": 4599,
"properties": {
"facing": "north",
"half": "lower",
@@ -139969,7 +144366,7 @@
}
},
{
- "id": 4520,
+ "id": 4600,
"properties": {
"facing": "north",
"half": "lower",
@@ -139979,7 +144376,7 @@
}
},
{
- "id": 4521,
+ "id": 4601,
"properties": {
"facing": "north",
"half": "lower",
@@ -139989,7 +144386,7 @@
}
},
{
- "id": 4522,
+ "id": 4602,
"properties": {
"facing": "south",
"half": "upper",
@@ -139999,7 +144396,7 @@
}
},
{
- "id": 4523,
+ "id": 4603,
"properties": {
"facing": "south",
"half": "upper",
@@ -140009,7 +144406,7 @@
}
},
{
- "id": 4524,
+ "id": 4604,
"properties": {
"facing": "south",
"half": "upper",
@@ -140019,7 +144416,7 @@
}
},
{
- "id": 4525,
+ "id": 4605,
"properties": {
"facing": "south",
"half": "upper",
@@ -140029,7 +144426,7 @@
}
},
{
- "id": 4526,
+ "id": 4606,
"properties": {
"facing": "south",
"half": "upper",
@@ -140039,7 +144436,7 @@
}
},
{
- "id": 4527,
+ "id": 4607,
"properties": {
"facing": "south",
"half": "upper",
@@ -140049,7 +144446,7 @@
}
},
{
- "id": 4528,
+ "id": 4608,
"properties": {
"facing": "south",
"half": "upper",
@@ -140059,7 +144456,7 @@
}
},
{
- "id": 4529,
+ "id": 4609,
"properties": {
"facing": "south",
"half": "upper",
@@ -140069,7 +144466,7 @@
}
},
{
- "id": 4530,
+ "id": 4610,
"properties": {
"facing": "south",
"half": "lower",
@@ -140079,7 +144476,7 @@
}
},
{
- "id": 4531,
+ "id": 4611,
"properties": {
"facing": "south",
"half": "lower",
@@ -140089,7 +144486,7 @@
}
},
{
- "id": 4532,
+ "id": 4612,
"properties": {
"facing": "south",
"half": "lower",
@@ -140099,7 +144496,7 @@
}
},
{
- "id": 4533,
+ "id": 4613,
"properties": {
"facing": "south",
"half": "lower",
@@ -140109,7 +144506,7 @@
}
},
{
- "id": 4534,
+ "id": 4614,
"properties": {
"facing": "south",
"half": "lower",
@@ -140119,7 +144516,7 @@
}
},
{
- "id": 4535,
+ "id": 4615,
"properties": {
"facing": "south",
"half": "lower",
@@ -140129,7 +144526,7 @@
}
},
{
- "id": 4536,
+ "id": 4616,
"properties": {
"facing": "south",
"half": "lower",
@@ -140139,7 +144536,7 @@
}
},
{
- "id": 4537,
+ "id": 4617,
"properties": {
"facing": "south",
"half": "lower",
@@ -140149,7 +144546,7 @@
}
},
{
- "id": 4538,
+ "id": 4618,
"properties": {
"facing": "west",
"half": "upper",
@@ -140159,7 +144556,7 @@
}
},
{
- "id": 4539,
+ "id": 4619,
"properties": {
"facing": "west",
"half": "upper",
@@ -140169,7 +144566,7 @@
}
},
{
- "id": 4540,
+ "id": 4620,
"properties": {
"facing": "west",
"half": "upper",
@@ -140179,7 +144576,7 @@
}
},
{
- "id": 4541,
+ "id": 4621,
"properties": {
"facing": "west",
"half": "upper",
@@ -140189,7 +144586,7 @@
}
},
{
- "id": 4542,
+ "id": 4622,
"properties": {
"facing": "west",
"half": "upper",
@@ -140199,7 +144596,7 @@
}
},
{
- "id": 4543,
+ "id": 4623,
"properties": {
"facing": "west",
"half": "upper",
@@ -140209,7 +144606,7 @@
}
},
{
- "id": 4544,
+ "id": 4624,
"properties": {
"facing": "west",
"half": "upper",
@@ -140219,7 +144616,7 @@
}
},
{
- "id": 4545,
+ "id": 4625,
"properties": {
"facing": "west",
"half": "upper",
@@ -140229,7 +144626,7 @@
}
},
{
- "id": 4546,
+ "id": 4626,
"properties": {
"facing": "west",
"half": "lower",
@@ -140239,7 +144636,7 @@
}
},
{
- "id": 4547,
+ "id": 4627,
"properties": {
"facing": "west",
"half": "lower",
@@ -140249,7 +144646,7 @@
}
},
{
- "id": 4548,
+ "id": 4628,
"properties": {
"facing": "west",
"half": "lower",
@@ -140259,7 +144656,7 @@
}
},
{
- "id": 4549,
+ "id": 4629,
"properties": {
"facing": "west",
"half": "lower",
@@ -140269,7 +144666,7 @@
}
},
{
- "id": 4550,
+ "id": 4630,
"properties": {
"facing": "west",
"half": "lower",
@@ -140279,7 +144676,7 @@
}
},
{
- "id": 4551,
+ "id": 4631,
"properties": {
"facing": "west",
"half": "lower",
@@ -140289,7 +144686,7 @@
}
},
{
- "id": 4552,
+ "id": 4632,
"properties": {
"facing": "west",
"half": "lower",
@@ -140299,7 +144696,7 @@
}
},
{
- "id": 4553,
+ "id": 4633,
"properties": {
"facing": "west",
"half": "lower",
@@ -140309,7 +144706,7 @@
}
},
{
- "id": 4554,
+ "id": 4634,
"properties": {
"facing": "east",
"half": "upper",
@@ -140319,7 +144716,7 @@
}
},
{
- "id": 4555,
+ "id": 4635,
"properties": {
"facing": "east",
"half": "upper",
@@ -140329,7 +144726,7 @@
}
},
{
- "id": 4556,
+ "id": 4636,
"properties": {
"facing": "east",
"half": "upper",
@@ -140339,7 +144736,7 @@
}
},
{
- "id": 4557,
+ "id": 4637,
"properties": {
"facing": "east",
"half": "upper",
@@ -140349,7 +144746,7 @@
}
},
{
- "id": 4558,
+ "id": 4638,
"properties": {
"facing": "east",
"half": "upper",
@@ -140359,7 +144756,7 @@
}
},
{
- "id": 4559,
+ "id": 4639,
"properties": {
"facing": "east",
"half": "upper",
@@ -140369,7 +144766,7 @@
}
},
{
- "id": 4560,
+ "id": 4640,
"properties": {
"facing": "east",
"half": "upper",
@@ -140379,7 +144776,7 @@
}
},
{
- "id": 4561,
+ "id": 4641,
"properties": {
"facing": "east",
"half": "upper",
@@ -140389,7 +144786,7 @@
}
},
{
- "id": 4562,
+ "id": 4642,
"properties": {
"facing": "east",
"half": "lower",
@@ -140399,7 +144796,7 @@
}
},
{
- "id": 4563,
+ "id": 4643,
"properties": {
"facing": "east",
"half": "lower",
@@ -140409,7 +144806,7 @@
}
},
{
- "id": 4564,
+ "id": 4644,
"properties": {
"facing": "east",
"half": "lower",
@@ -140419,7 +144816,7 @@
}
},
{
- "id": 4565,
+ "id": 4645,
"properties": {
"facing": "east",
"half": "lower",
@@ -140429,7 +144826,7 @@
}
},
{
- "id": 4566,
+ "id": 4646,
"properties": {
"facing": "east",
"half": "lower",
@@ -140439,7 +144836,7 @@
}
},
{
- "id": 4567,
+ "id": 4647,
"properties": {
"facing": "east",
"half": "lower",
@@ -140449,7 +144846,7 @@
}
},
{
- "id": 4568,
+ "id": 4648,
"properties": {
"facing": "east",
"half": "lower",
@@ -140459,7 +144856,7 @@
}
},
{
- "id": 4569,
+ "id": 4649,
"properties": {
"facing": "east",
"half": "lower",
@@ -140495,7 +144892,7 @@
},
"states": [
{
- "id": 5651,
+ "id": 5813,
"properties": {
"east": "true",
"north": "true",
@@ -140505,7 +144902,7 @@
}
},
{
- "id": 5652,
+ "id": 5814,
"properties": {
"east": "true",
"north": "true",
@@ -140515,7 +144912,7 @@
}
},
{
- "id": 5653,
+ "id": 5815,
"properties": {
"east": "true",
"north": "true",
@@ -140525,7 +144922,7 @@
}
},
{
- "id": 5654,
+ "id": 5816,
"properties": {
"east": "true",
"north": "true",
@@ -140535,7 +144932,7 @@
}
},
{
- "id": 5655,
+ "id": 5817,
"properties": {
"east": "true",
"north": "true",
@@ -140545,7 +144942,7 @@
}
},
{
- "id": 5656,
+ "id": 5818,
"properties": {
"east": "true",
"north": "true",
@@ -140555,7 +144952,7 @@
}
},
{
- "id": 5657,
+ "id": 5819,
"properties": {
"east": "true",
"north": "true",
@@ -140565,7 +144962,7 @@
}
},
{
- "id": 5658,
+ "id": 5820,
"properties": {
"east": "true",
"north": "true",
@@ -140575,7 +144972,7 @@
}
},
{
- "id": 5659,
+ "id": 5821,
"properties": {
"east": "true",
"north": "false",
@@ -140585,7 +144982,7 @@
}
},
{
- "id": 5660,
+ "id": 5822,
"properties": {
"east": "true",
"north": "false",
@@ -140595,7 +144992,7 @@
}
},
{
- "id": 5661,
+ "id": 5823,
"properties": {
"east": "true",
"north": "false",
@@ -140605,7 +145002,7 @@
}
},
{
- "id": 5662,
+ "id": 5824,
"properties": {
"east": "true",
"north": "false",
@@ -140615,7 +145012,7 @@
}
},
{
- "id": 5663,
+ "id": 5825,
"properties": {
"east": "true",
"north": "false",
@@ -140625,7 +145022,7 @@
}
},
{
- "id": 5664,
+ "id": 5826,
"properties": {
"east": "true",
"north": "false",
@@ -140635,7 +145032,7 @@
}
},
{
- "id": 5665,
+ "id": 5827,
"properties": {
"east": "true",
"north": "false",
@@ -140645,7 +145042,7 @@
}
},
{
- "id": 5666,
+ "id": 5828,
"properties": {
"east": "true",
"north": "false",
@@ -140655,7 +145052,7 @@
}
},
{
- "id": 5667,
+ "id": 5829,
"properties": {
"east": "false",
"north": "true",
@@ -140665,7 +145062,7 @@
}
},
{
- "id": 5668,
+ "id": 5830,
"properties": {
"east": "false",
"north": "true",
@@ -140675,7 +145072,7 @@
}
},
{
- "id": 5669,
+ "id": 5831,
"properties": {
"east": "false",
"north": "true",
@@ -140685,7 +145082,7 @@
}
},
{
- "id": 5670,
+ "id": 5832,
"properties": {
"east": "false",
"north": "true",
@@ -140695,7 +145092,7 @@
}
},
{
- "id": 5671,
+ "id": 5833,
"properties": {
"east": "false",
"north": "true",
@@ -140705,7 +145102,7 @@
}
},
{
- "id": 5672,
+ "id": 5834,
"properties": {
"east": "false",
"north": "true",
@@ -140715,7 +145112,7 @@
}
},
{
- "id": 5673,
+ "id": 5835,
"properties": {
"east": "false",
"north": "true",
@@ -140725,7 +145122,7 @@
}
},
{
- "id": 5674,
+ "id": 5836,
"properties": {
"east": "false",
"north": "true",
@@ -140735,7 +145132,7 @@
}
},
{
- "id": 5675,
+ "id": 5837,
"properties": {
"east": "false",
"north": "false",
@@ -140745,7 +145142,7 @@
}
},
{
- "id": 5676,
+ "id": 5838,
"properties": {
"east": "false",
"north": "false",
@@ -140755,7 +145152,7 @@
}
},
{
- "id": 5677,
+ "id": 5839,
"properties": {
"east": "false",
"north": "false",
@@ -140765,7 +145162,7 @@
}
},
{
- "id": 5678,
+ "id": 5840,
"properties": {
"east": "false",
"north": "false",
@@ -140775,7 +145172,7 @@
}
},
{
- "id": 5679,
+ "id": 5841,
"properties": {
"east": "false",
"north": "false",
@@ -140785,7 +145182,7 @@
}
},
{
- "id": 5680,
+ "id": 5842,
"properties": {
"east": "false",
"north": "false",
@@ -140795,7 +145192,7 @@
}
},
{
- "id": 5681,
+ "id": 5843,
"properties": {
"east": "false",
"north": "false",
@@ -140806,7 +145203,7 @@
},
{
"default": true,
- "id": 5682,
+ "id": 5844,
"properties": {
"east": "false",
"north": "false",
@@ -140840,7 +145237,7 @@
},
"states": [
{
- "id": 6767,
+ "id": 6993,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -140849,7 +145246,7 @@
}
},
{
- "id": 6768,
+ "id": 6994,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -140858,7 +145255,7 @@
}
},
{
- "id": 6769,
+ "id": 6995,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -140867,7 +145264,7 @@
}
},
{
- "id": 6770,
+ "id": 6996,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -140876,7 +145273,7 @@
}
},
{
- "id": 6771,
+ "id": 6997,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -140885,7 +145282,7 @@
}
},
{
- "id": 6772,
+ "id": 6998,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -140894,7 +145291,7 @@
}
},
{
- "id": 6773,
+ "id": 6999,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -140904,7 +145301,7 @@
},
{
"default": true,
- "id": 6774,
+ "id": 7000,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -140913,7 +145310,7 @@
}
},
{
- "id": 6775,
+ "id": 7001,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -140922,7 +145319,7 @@
}
},
{
- "id": 6776,
+ "id": 7002,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -140931,7 +145328,7 @@
}
},
{
- "id": 6777,
+ "id": 7003,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -140940,7 +145337,7 @@
}
},
{
- "id": 6778,
+ "id": 7004,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -140949,7 +145346,7 @@
}
},
{
- "id": 6779,
+ "id": 7005,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -140958,7 +145355,7 @@
}
},
{
- "id": 6780,
+ "id": 7006,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -140967,7 +145364,7 @@
}
},
{
- "id": 6781,
+ "id": 7007,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -140976,7 +145373,7 @@
}
},
{
- "id": 6782,
+ "id": 7008,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -140985,7 +145382,7 @@
}
},
{
- "id": 6783,
+ "id": 7009,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -140994,7 +145391,7 @@
}
},
{
- "id": 6784,
+ "id": 7010,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -141003,7 +145400,7 @@
}
},
{
- "id": 6785,
+ "id": 7011,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -141012,7 +145409,7 @@
}
},
{
- "id": 6786,
+ "id": 7012,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -141021,7 +145418,7 @@
}
},
{
- "id": 6787,
+ "id": 7013,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -141030,7 +145427,7 @@
}
},
{
- "id": 6788,
+ "id": 7014,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -141039,7 +145436,7 @@
}
},
{
- "id": 6789,
+ "id": 7015,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -141048,7 +145445,7 @@
}
},
{
- "id": 6790,
+ "id": 7016,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -141057,7 +145454,7 @@
}
},
{
- "id": 6791,
+ "id": 7017,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -141066,7 +145463,7 @@
}
},
{
- "id": 6792,
+ "id": 7018,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -141075,7 +145472,7 @@
}
},
{
- "id": 6793,
+ "id": 7019,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -141084,7 +145481,7 @@
}
},
{
- "id": 6794,
+ "id": 7020,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -141093,7 +145490,7 @@
}
},
{
- "id": 6795,
+ "id": 7021,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -141102,7 +145499,7 @@
}
},
{
- "id": 6796,
+ "id": 7022,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -141111,7 +145508,7 @@
}
},
{
- "id": 6797,
+ "id": 7023,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -141120,7 +145517,7 @@
}
},
{
- "id": 6798,
+ "id": 7024,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -141161,7 +145558,7 @@
},
"states": [
{
- "id": 4742,
+ "id": 4830,
"properties": {
"attached": "true",
"rotation": "0",
@@ -141169,7 +145566,7 @@
}
},
{
- "id": 4743,
+ "id": 4831,
"properties": {
"attached": "true",
"rotation": "0",
@@ -141177,7 +145574,7 @@
}
},
{
- "id": 4744,
+ "id": 4832,
"properties": {
"attached": "true",
"rotation": "1",
@@ -141185,7 +145582,7 @@
}
},
{
- "id": 4745,
+ "id": 4833,
"properties": {
"attached": "true",
"rotation": "1",
@@ -141193,7 +145590,7 @@
}
},
{
- "id": 4746,
+ "id": 4834,
"properties": {
"attached": "true",
"rotation": "2",
@@ -141201,7 +145598,7 @@
}
},
{
- "id": 4747,
+ "id": 4835,
"properties": {
"attached": "true",
"rotation": "2",
@@ -141209,7 +145606,7 @@
}
},
{
- "id": 4748,
+ "id": 4836,
"properties": {
"attached": "true",
"rotation": "3",
@@ -141217,7 +145614,7 @@
}
},
{
- "id": 4749,
+ "id": 4837,
"properties": {
"attached": "true",
"rotation": "3",
@@ -141225,7 +145622,7 @@
}
},
{
- "id": 4750,
+ "id": 4838,
"properties": {
"attached": "true",
"rotation": "4",
@@ -141233,7 +145630,7 @@
}
},
{
- "id": 4751,
+ "id": 4839,
"properties": {
"attached": "true",
"rotation": "4",
@@ -141241,7 +145638,7 @@
}
},
{
- "id": 4752,
+ "id": 4840,
"properties": {
"attached": "true",
"rotation": "5",
@@ -141249,7 +145646,7 @@
}
},
{
- "id": 4753,
+ "id": 4841,
"properties": {
"attached": "true",
"rotation": "5",
@@ -141257,7 +145654,7 @@
}
},
{
- "id": 4754,
+ "id": 4842,
"properties": {
"attached": "true",
"rotation": "6",
@@ -141265,7 +145662,7 @@
}
},
{
- "id": 4755,
+ "id": 4843,
"properties": {
"attached": "true",
"rotation": "6",
@@ -141273,7 +145670,7 @@
}
},
{
- "id": 4756,
+ "id": 4844,
"properties": {
"attached": "true",
"rotation": "7",
@@ -141281,7 +145678,7 @@
}
},
{
- "id": 4757,
+ "id": 4845,
"properties": {
"attached": "true",
"rotation": "7",
@@ -141289,7 +145686,7 @@
}
},
{
- "id": 4758,
+ "id": 4846,
"properties": {
"attached": "true",
"rotation": "8",
@@ -141297,7 +145694,7 @@
}
},
{
- "id": 4759,
+ "id": 4847,
"properties": {
"attached": "true",
"rotation": "8",
@@ -141305,7 +145702,7 @@
}
},
{
- "id": 4760,
+ "id": 4848,
"properties": {
"attached": "true",
"rotation": "9",
@@ -141313,7 +145710,7 @@
}
},
{
- "id": 4761,
+ "id": 4849,
"properties": {
"attached": "true",
"rotation": "9",
@@ -141321,7 +145718,7 @@
}
},
{
- "id": 4762,
+ "id": 4850,
"properties": {
"attached": "true",
"rotation": "10",
@@ -141329,7 +145726,7 @@
}
},
{
- "id": 4763,
+ "id": 4851,
"properties": {
"attached": "true",
"rotation": "10",
@@ -141337,7 +145734,7 @@
}
},
{
- "id": 4764,
+ "id": 4852,
"properties": {
"attached": "true",
"rotation": "11",
@@ -141345,7 +145742,7 @@
}
},
{
- "id": 4765,
+ "id": 4853,
"properties": {
"attached": "true",
"rotation": "11",
@@ -141353,7 +145750,7 @@
}
},
{
- "id": 4766,
+ "id": 4854,
"properties": {
"attached": "true",
"rotation": "12",
@@ -141361,7 +145758,7 @@
}
},
{
- "id": 4767,
+ "id": 4855,
"properties": {
"attached": "true",
"rotation": "12",
@@ -141369,7 +145766,7 @@
}
},
{
- "id": 4768,
+ "id": 4856,
"properties": {
"attached": "true",
"rotation": "13",
@@ -141377,7 +145774,7 @@
}
},
{
- "id": 4769,
+ "id": 4857,
"properties": {
"attached": "true",
"rotation": "13",
@@ -141385,7 +145782,7 @@
}
},
{
- "id": 4770,
+ "id": 4858,
"properties": {
"attached": "true",
"rotation": "14",
@@ -141393,7 +145790,7 @@
}
},
{
- "id": 4771,
+ "id": 4859,
"properties": {
"attached": "true",
"rotation": "14",
@@ -141401,7 +145798,7 @@
}
},
{
- "id": 4772,
+ "id": 4860,
"properties": {
"attached": "true",
"rotation": "15",
@@ -141409,7 +145806,7 @@
}
},
{
- "id": 4773,
+ "id": 4861,
"properties": {
"attached": "true",
"rotation": "15",
@@ -141417,7 +145814,7 @@
}
},
{
- "id": 4774,
+ "id": 4862,
"properties": {
"attached": "false",
"rotation": "0",
@@ -141426,7 +145823,7 @@
},
{
"default": true,
- "id": 4775,
+ "id": 4863,
"properties": {
"attached": "false",
"rotation": "0",
@@ -141434,7 +145831,7 @@
}
},
{
- "id": 4776,
+ "id": 4864,
"properties": {
"attached": "false",
"rotation": "1",
@@ -141442,7 +145839,7 @@
}
},
{
- "id": 4777,
+ "id": 4865,
"properties": {
"attached": "false",
"rotation": "1",
@@ -141450,7 +145847,7 @@
}
},
{
- "id": 4778,
+ "id": 4866,
"properties": {
"attached": "false",
"rotation": "2",
@@ -141458,7 +145855,7 @@
}
},
{
- "id": 4779,
+ "id": 4867,
"properties": {
"attached": "false",
"rotation": "2",
@@ -141466,7 +145863,7 @@
}
},
{
- "id": 4780,
+ "id": 4868,
"properties": {
"attached": "false",
"rotation": "3",
@@ -141474,7 +145871,7 @@
}
},
{
- "id": 4781,
+ "id": 4869,
"properties": {
"attached": "false",
"rotation": "3",
@@ -141482,7 +145879,7 @@
}
},
{
- "id": 4782,
+ "id": 4870,
"properties": {
"attached": "false",
"rotation": "4",
@@ -141490,7 +145887,7 @@
}
},
{
- "id": 4783,
+ "id": 4871,
"properties": {
"attached": "false",
"rotation": "4",
@@ -141498,7 +145895,7 @@
}
},
{
- "id": 4784,
+ "id": 4872,
"properties": {
"attached": "false",
"rotation": "5",
@@ -141506,7 +145903,7 @@
}
},
{
- "id": 4785,
+ "id": 4873,
"properties": {
"attached": "false",
"rotation": "5",
@@ -141514,7 +145911,7 @@
}
},
{
- "id": 4786,
+ "id": 4874,
"properties": {
"attached": "false",
"rotation": "6",
@@ -141522,7 +145919,7 @@
}
},
{
- "id": 4787,
+ "id": 4875,
"properties": {
"attached": "false",
"rotation": "6",
@@ -141530,7 +145927,7 @@
}
},
{
- "id": 4788,
+ "id": 4876,
"properties": {
"attached": "false",
"rotation": "7",
@@ -141538,7 +145935,7 @@
}
},
{
- "id": 4789,
+ "id": 4877,
"properties": {
"attached": "false",
"rotation": "7",
@@ -141546,7 +145943,7 @@
}
},
{
- "id": 4790,
+ "id": 4878,
"properties": {
"attached": "false",
"rotation": "8",
@@ -141554,7 +145951,7 @@
}
},
{
- "id": 4791,
+ "id": 4879,
"properties": {
"attached": "false",
"rotation": "8",
@@ -141562,7 +145959,7 @@
}
},
{
- "id": 4792,
+ "id": 4880,
"properties": {
"attached": "false",
"rotation": "9",
@@ -141570,7 +145967,7 @@
}
},
{
- "id": 4793,
+ "id": 4881,
"properties": {
"attached": "false",
"rotation": "9",
@@ -141578,7 +145975,7 @@
}
},
{
- "id": 4794,
+ "id": 4882,
"properties": {
"attached": "false",
"rotation": "10",
@@ -141586,7 +145983,7 @@
}
},
{
- "id": 4795,
+ "id": 4883,
"properties": {
"attached": "false",
"rotation": "10",
@@ -141594,7 +145991,7 @@
}
},
{
- "id": 4796,
+ "id": 4884,
"properties": {
"attached": "false",
"rotation": "11",
@@ -141602,7 +145999,7 @@
}
},
{
- "id": 4797,
+ "id": 4885,
"properties": {
"attached": "false",
"rotation": "11",
@@ -141610,7 +146007,7 @@
}
},
{
- "id": 4798,
+ "id": 4886,
"properties": {
"attached": "false",
"rotation": "12",
@@ -141618,7 +146015,7 @@
}
},
{
- "id": 4799,
+ "id": 4887,
"properties": {
"attached": "false",
"rotation": "12",
@@ -141626,7 +146023,7 @@
}
},
{
- "id": 4800,
+ "id": 4888,
"properties": {
"attached": "false",
"rotation": "13",
@@ -141634,7 +146031,7 @@
}
},
{
- "id": 4801,
+ "id": 4889,
"properties": {
"attached": "false",
"rotation": "13",
@@ -141642,7 +146039,7 @@
}
},
{
- "id": 4802,
+ "id": 4890,
"properties": {
"attached": "false",
"rotation": "14",
@@ -141650,7 +146047,7 @@
}
},
{
- "id": 4803,
+ "id": 4891,
"properties": {
"attached": "false",
"rotation": "14",
@@ -141658,7 +146055,7 @@
}
},
{
- "id": 4804,
+ "id": 4892,
"properties": {
"attached": "false",
"rotation": "15",
@@ -141666,7 +146063,7 @@
}
},
{
- "id": 4805,
+ "id": 4893,
"properties": {
"attached": "false",
"rotation": "15",
@@ -141696,192 +146093,192 @@
]
},
"states": [
- {
- "id": 214,
- "properties": {
- "distance": "1",
- "persistent": "true",
- "waterlogged": "true"
- }
- },
- {
- "id": 215,
- "properties": {
- "distance": "1",
- "persistent": "true",
- "waterlogged": "false"
- }
- },
- {
- "id": 216,
- "properties": {
- "distance": "1",
- "persistent": "false",
- "waterlogged": "true"
- }
- },
- {
- "id": 217,
- "properties": {
- "distance": "1",
- "persistent": "false",
- "waterlogged": "false"
- }
- },
- {
- "id": 218,
- "properties": {
- "distance": "2",
- "persistent": "true",
- "waterlogged": "true"
- }
- },
- {
- "id": 219,
- "properties": {
- "distance": "2",
- "persistent": "true",
- "waterlogged": "false"
- }
- },
- {
- "id": 220,
- "properties": {
- "distance": "2",
- "persistent": "false",
- "waterlogged": "true"
- }
- },
- {
- "id": 221,
- "properties": {
- "distance": "2",
- "persistent": "false",
- "waterlogged": "false"
- }
- },
- {
- "id": 222,
- "properties": {
- "distance": "3",
- "persistent": "true",
- "waterlogged": "true"
- }
- },
- {
- "id": 223,
- "properties": {
- "distance": "3",
- "persistent": "true",
- "waterlogged": "false"
- }
- },
- {
- "id": 224,
- "properties": {
- "distance": "3",
- "persistent": "false",
- "waterlogged": "true"
- }
- },
- {
- "id": 225,
- "properties": {
- "distance": "3",
- "persistent": "false",
- "waterlogged": "false"
- }
- },
- {
- "id": 226,
- "properties": {
- "distance": "4",
- "persistent": "true",
- "waterlogged": "true"
- }
- },
- {
- "id": 227,
- "properties": {
- "distance": "4",
- "persistent": "true",
- "waterlogged": "false"
- }
- },
- {
- "id": 228,
- "properties": {
- "distance": "4",
- "persistent": "false",
- "waterlogged": "true"
- }
- },
- {
- "id": 229,
- "properties": {
- "distance": "4",
- "persistent": "false",
- "waterlogged": "false"
- }
- },
- {
- "id": 230,
- "properties": {
- "distance": "5",
- "persistent": "true",
- "waterlogged": "true"
- }
- },
- {
- "id": 231,
- "properties": {
- "distance": "5",
- "persistent": "true",
- "waterlogged": "false"
- }
- },
- {
- "id": 232,
- "properties": {
- "distance": "5",
- "persistent": "false",
- "waterlogged": "true"
- }
- },
{
"id": 233,
"properties": {
- "distance": "5",
- "persistent": "false",
- "waterlogged": "false"
+ "distance": "1",
+ "persistent": "true",
+ "waterlogged": "true"
}
},
{
"id": 234,
"properties": {
- "distance": "6",
+ "distance": "1",
"persistent": "true",
- "waterlogged": "true"
+ "waterlogged": "false"
}
},
{
"id": 235,
"properties": {
- "distance": "6",
- "persistent": "true",
- "waterlogged": "false"
+ "distance": "1",
+ "persistent": "false",
+ "waterlogged": "true"
}
},
{
"id": 236,
"properties": {
- "distance": "6",
+ "distance": "1",
"persistent": "false",
- "waterlogged": "true"
+ "waterlogged": "false"
}
},
{
"id": 237,
+ "properties": {
+ "distance": "2",
+ "persistent": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 238,
+ "properties": {
+ "distance": "2",
+ "persistent": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 239,
+ "properties": {
+ "distance": "2",
+ "persistent": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 240,
+ "properties": {
+ "distance": "2",
+ "persistent": "false",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 241,
+ "properties": {
+ "distance": "3",
+ "persistent": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 242,
+ "properties": {
+ "distance": "3",
+ "persistent": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 243,
+ "properties": {
+ "distance": "3",
+ "persistent": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 244,
+ "properties": {
+ "distance": "3",
+ "persistent": "false",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 245,
+ "properties": {
+ "distance": "4",
+ "persistent": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 246,
+ "properties": {
+ "distance": "4",
+ "persistent": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 247,
+ "properties": {
+ "distance": "4",
+ "persistent": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 248,
+ "properties": {
+ "distance": "4",
+ "persistent": "false",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 249,
+ "properties": {
+ "distance": "5",
+ "persistent": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 250,
+ "properties": {
+ "distance": "5",
+ "persistent": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 251,
+ "properties": {
+ "distance": "5",
+ "persistent": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 252,
+ "properties": {
+ "distance": "5",
+ "persistent": "false",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 253,
+ "properties": {
+ "distance": "6",
+ "persistent": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 254,
+ "properties": {
+ "distance": "6",
+ "persistent": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 255,
+ "properties": {
+ "distance": "6",
+ "persistent": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 256,
"properties": {
"distance": "6",
"persistent": "false",
@@ -141889,7 +146286,7 @@
}
},
{
- "id": 238,
+ "id": 257,
"properties": {
"distance": "7",
"persistent": "true",
@@ -141897,7 +146294,7 @@
}
},
{
- "id": 239,
+ "id": 258,
"properties": {
"distance": "7",
"persistent": "true",
@@ -141905,7 +146302,7 @@
}
},
{
- "id": 240,
+ "id": 259,
"properties": {
"distance": "7",
"persistent": "false",
@@ -141914,7 +146311,7 @@
},
{
"default": true,
- "id": 241,
+ "id": 260,
"properties": {
"distance": "7",
"persistent": "false",
@@ -141933,20 +146330,20 @@
},
"states": [
{
- "id": 119,
+ "id": 126,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 120,
+ "id": 127,
"properties": {
"axis": "y"
}
},
{
- "id": 121,
+ "id": 128,
"properties": {
"axis": "z"
}
@@ -141970,14 +146367,14 @@
},
"states": [
{
- "id": 5552,
+ "id": 5712,
"properties": {
"powered": "true"
}
},
{
"default": true,
- "id": 5553,
+ "id": 5713,
"properties": {
"powered": "false"
}
@@ -141994,13 +146391,13 @@
"states": [
{
"default": true,
- "id": 24,
+ "id": 25,
"properties": {
"stage": "0"
}
},
{
- "id": 25,
+ "id": 26,
"properties": {
"stage": "1"
}
@@ -142034,7 +146431,7 @@
},
"states": [
{
- "id": 4250,
+ "id": 4298,
"properties": {
"rotation": "0",
"waterlogged": "true"
@@ -142042,217 +146439,217 @@
},
{
"default": true,
- "id": 4251,
+ "id": 4299,
"properties": {
"rotation": "0",
"waterlogged": "false"
}
},
{
- "id": 4252,
+ "id": 4300,
"properties": {
"rotation": "1",
"waterlogged": "true"
}
},
{
- "id": 4253,
+ "id": 4301,
"properties": {
"rotation": "1",
"waterlogged": "false"
}
},
{
- "id": 4254,
+ "id": 4302,
"properties": {
"rotation": "2",
"waterlogged": "true"
}
},
{
- "id": 4255,
+ "id": 4303,
"properties": {
"rotation": "2",
"waterlogged": "false"
}
},
{
- "id": 4256,
+ "id": 4304,
"properties": {
"rotation": "3",
"waterlogged": "true"
}
},
{
- "id": 4257,
+ "id": 4305,
"properties": {
"rotation": "3",
"waterlogged": "false"
}
},
{
- "id": 4258,
+ "id": 4306,
"properties": {
"rotation": "4",
"waterlogged": "true"
}
},
{
- "id": 4259,
+ "id": 4307,
"properties": {
"rotation": "4",
"waterlogged": "false"
}
},
{
- "id": 4260,
+ "id": 4308,
"properties": {
"rotation": "5",
"waterlogged": "true"
}
},
{
- "id": 4261,
+ "id": 4309,
"properties": {
"rotation": "5",
"waterlogged": "false"
}
},
{
- "id": 4262,
+ "id": 4310,
"properties": {
"rotation": "6",
"waterlogged": "true"
}
},
{
- "id": 4263,
+ "id": 4311,
"properties": {
"rotation": "6",
"waterlogged": "false"
}
},
{
- "id": 4264,
+ "id": 4312,
"properties": {
"rotation": "7",
"waterlogged": "true"
}
},
{
- "id": 4265,
+ "id": 4313,
"properties": {
"rotation": "7",
"waterlogged": "false"
}
},
{
- "id": 4266,
+ "id": 4314,
"properties": {
"rotation": "8",
"waterlogged": "true"
}
},
{
- "id": 4267,
+ "id": 4315,
"properties": {
"rotation": "8",
"waterlogged": "false"
}
},
{
- "id": 4268,
+ "id": 4316,
"properties": {
"rotation": "9",
"waterlogged": "true"
}
},
{
- "id": 4269,
+ "id": 4317,
"properties": {
"rotation": "9",
"waterlogged": "false"
}
},
{
- "id": 4270,
+ "id": 4318,
"properties": {
"rotation": "10",
"waterlogged": "true"
}
},
{
- "id": 4271,
+ "id": 4319,
"properties": {
"rotation": "10",
"waterlogged": "false"
}
},
{
- "id": 4272,
+ "id": 4320,
"properties": {
"rotation": "11",
"waterlogged": "true"
}
},
{
- "id": 4273,
+ "id": 4321,
"properties": {
"rotation": "11",
"waterlogged": "false"
}
},
{
- "id": 4274,
+ "id": 4322,
"properties": {
"rotation": "12",
"waterlogged": "true"
}
},
{
- "id": 4275,
+ "id": 4323,
"properties": {
"rotation": "12",
"waterlogged": "false"
}
},
{
- "id": 4276,
+ "id": 4324,
"properties": {
"rotation": "13",
"waterlogged": "true"
}
},
{
- "id": 4277,
+ "id": 4325,
"properties": {
"rotation": "13",
"waterlogged": "false"
}
},
{
- "id": 4278,
+ "id": 4326,
"properties": {
"rotation": "14",
"waterlogged": "true"
}
},
{
- "id": 4279,
+ "id": 4327,
"properties": {
"rotation": "14",
"waterlogged": "false"
}
},
{
- "id": 4280,
+ "id": 4328,
"properties": {
"rotation": "15",
"waterlogged": "true"
}
},
{
- "id": 4281,
+ "id": 4329,
"properties": {
"rotation": "15",
"waterlogged": "false"
@@ -142274,21 +146671,21 @@
},
"states": [
{
- "id": 10685,
+ "id": 11017,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 10686,
+ "id": 11018,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 10687,
+ "id": 11019,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -142296,21 +146693,21 @@
},
{
"default": true,
- "id": 10688,
+ "id": 11020,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 10689,
+ "id": 11021,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 10690,
+ "id": 11022,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -142344,7 +146741,7 @@
},
"states": [
{
- "id": 2822,
+ "id": 2870,
"properties": {
"facing": "north",
"half": "top",
@@ -142353,7 +146750,7 @@
}
},
{
- "id": 2823,
+ "id": 2871,
"properties": {
"facing": "north",
"half": "top",
@@ -142362,7 +146759,7 @@
}
},
{
- "id": 2824,
+ "id": 2872,
"properties": {
"facing": "north",
"half": "top",
@@ -142371,7 +146768,7 @@
}
},
{
- "id": 2825,
+ "id": 2873,
"properties": {
"facing": "north",
"half": "top",
@@ -142380,7 +146777,7 @@
}
},
{
- "id": 2826,
+ "id": 2874,
"properties": {
"facing": "north",
"half": "top",
@@ -142389,7 +146786,7 @@
}
},
{
- "id": 2827,
+ "id": 2875,
"properties": {
"facing": "north",
"half": "top",
@@ -142398,7 +146795,7 @@
}
},
{
- "id": 2828,
+ "id": 2876,
"properties": {
"facing": "north",
"half": "top",
@@ -142407,7 +146804,7 @@
}
},
{
- "id": 2829,
+ "id": 2877,
"properties": {
"facing": "north",
"half": "top",
@@ -142416,7 +146813,7 @@
}
},
{
- "id": 2830,
+ "id": 2878,
"properties": {
"facing": "north",
"half": "top",
@@ -142425,7 +146822,7 @@
}
},
{
- "id": 2831,
+ "id": 2879,
"properties": {
"facing": "north",
"half": "top",
@@ -142434,7 +146831,7 @@
}
},
{
- "id": 2832,
+ "id": 2880,
"properties": {
"facing": "north",
"half": "bottom",
@@ -142444,529 +146841,529 @@
},
{
"default": true,
- "id": 2833,
- "properties": {
- "facing": "north",
- "half": "bottom",
- "shape": "straight",
- "waterlogged": "false"
- }
- },
- {
- "id": 2834,
- "properties": {
- "facing": "north",
- "half": "bottom",
- "shape": "inner_left",
- "waterlogged": "true"
- }
- },
- {
- "id": 2835,
- "properties": {
- "facing": "north",
- "half": "bottom",
- "shape": "inner_left",
- "waterlogged": "false"
- }
- },
- {
- "id": 2836,
- "properties": {
- "facing": "north",
- "half": "bottom",
- "shape": "inner_right",
- "waterlogged": "true"
- }
- },
- {
- "id": 2837,
- "properties": {
- "facing": "north",
- "half": "bottom",
- "shape": "inner_right",
- "waterlogged": "false"
- }
- },
- {
- "id": 2838,
- "properties": {
- "facing": "north",
- "half": "bottom",
- "shape": "outer_left",
- "waterlogged": "true"
- }
- },
- {
- "id": 2839,
- "properties": {
- "facing": "north",
- "half": "bottom",
- "shape": "outer_left",
- "waterlogged": "false"
- }
- },
- {
- "id": 2840,
- "properties": {
- "facing": "north",
- "half": "bottom",
- "shape": "outer_right",
- "waterlogged": "true"
- }
- },
- {
- "id": 2841,
- "properties": {
- "facing": "north",
- "half": "bottom",
- "shape": "outer_right",
- "waterlogged": "false"
- }
- },
- {
- "id": 2842,
- "properties": {
- "facing": "south",
- "half": "top",
- "shape": "straight",
- "waterlogged": "true"
- }
- },
- {
- "id": 2843,
- "properties": {
- "facing": "south",
- "half": "top",
- "shape": "straight",
- "waterlogged": "false"
- }
- },
- {
- "id": 2844,
- "properties": {
- "facing": "south",
- "half": "top",
- "shape": "inner_left",
- "waterlogged": "true"
- }
- },
- {
- "id": 2845,
- "properties": {
- "facing": "south",
- "half": "top",
- "shape": "inner_left",
- "waterlogged": "false"
- }
- },
- {
- "id": 2846,
- "properties": {
- "facing": "south",
- "half": "top",
- "shape": "inner_right",
- "waterlogged": "true"
- }
- },
- {
- "id": 2847,
- "properties": {
- "facing": "south",
- "half": "top",
- "shape": "inner_right",
- "waterlogged": "false"
- }
- },
- {
- "id": 2848,
- "properties": {
- "facing": "south",
- "half": "top",
- "shape": "outer_left",
- "waterlogged": "true"
- }
- },
- {
- "id": 2849,
- "properties": {
- "facing": "south",
- "half": "top",
- "shape": "outer_left",
- "waterlogged": "false"
- }
- },
- {
- "id": 2850,
- "properties": {
- "facing": "south",
- "half": "top",
- "shape": "outer_right",
- "waterlogged": "true"
- }
- },
- {
- "id": 2851,
- "properties": {
- "facing": "south",
- "half": "top",
- "shape": "outer_right",
- "waterlogged": "false"
- }
- },
- {
- "id": 2852,
- "properties": {
- "facing": "south",
- "half": "bottom",
- "shape": "straight",
- "waterlogged": "true"
- }
- },
- {
- "id": 2853,
- "properties": {
- "facing": "south",
- "half": "bottom",
- "shape": "straight",
- "waterlogged": "false"
- }
- },
- {
- "id": 2854,
- "properties": {
- "facing": "south",
- "half": "bottom",
- "shape": "inner_left",
- "waterlogged": "true"
- }
- },
- {
- "id": 2855,
- "properties": {
- "facing": "south",
- "half": "bottom",
- "shape": "inner_left",
- "waterlogged": "false"
- }
- },
- {
- "id": 2856,
- "properties": {
- "facing": "south",
- "half": "bottom",
- "shape": "inner_right",
- "waterlogged": "true"
- }
- },
- {
- "id": 2857,
- "properties": {
- "facing": "south",
- "half": "bottom",
- "shape": "inner_right",
- "waterlogged": "false"
- }
- },
- {
- "id": 2858,
- "properties": {
- "facing": "south",
- "half": "bottom",
- "shape": "outer_left",
- "waterlogged": "true"
- }
- },
- {
- "id": 2859,
- "properties": {
- "facing": "south",
- "half": "bottom",
- "shape": "outer_left",
- "waterlogged": "false"
- }
- },
- {
- "id": 2860,
- "properties": {
- "facing": "south",
- "half": "bottom",
- "shape": "outer_right",
- "waterlogged": "true"
- }
- },
- {
- "id": 2861,
- "properties": {
- "facing": "south",
- "half": "bottom",
- "shape": "outer_right",
- "waterlogged": "false"
- }
- },
- {
- "id": 2862,
- "properties": {
- "facing": "west",
- "half": "top",
- "shape": "straight",
- "waterlogged": "true"
- }
- },
- {
- "id": 2863,
- "properties": {
- "facing": "west",
- "half": "top",
- "shape": "straight",
- "waterlogged": "false"
- }
- },
- {
- "id": 2864,
- "properties": {
- "facing": "west",
- "half": "top",
- "shape": "inner_left",
- "waterlogged": "true"
- }
- },
- {
- "id": 2865,
- "properties": {
- "facing": "west",
- "half": "top",
- "shape": "inner_left",
- "waterlogged": "false"
- }
- },
- {
- "id": 2866,
- "properties": {
- "facing": "west",
- "half": "top",
- "shape": "inner_right",
- "waterlogged": "true"
- }
- },
- {
- "id": 2867,
- "properties": {
- "facing": "west",
- "half": "top",
- "shape": "inner_right",
- "waterlogged": "false"
- }
- },
- {
- "id": 2868,
- "properties": {
- "facing": "west",
- "half": "top",
- "shape": "outer_left",
- "waterlogged": "true"
- }
- },
- {
- "id": 2869,
- "properties": {
- "facing": "west",
- "half": "top",
- "shape": "outer_left",
- "waterlogged": "false"
- }
- },
- {
- "id": 2870,
- "properties": {
- "facing": "west",
- "half": "top",
- "shape": "outer_right",
- "waterlogged": "true"
- }
- },
- {
- "id": 2871,
- "properties": {
- "facing": "west",
- "half": "top",
- "shape": "outer_right",
- "waterlogged": "false"
- }
- },
- {
- "id": 2872,
- "properties": {
- "facing": "west",
- "half": "bottom",
- "shape": "straight",
- "waterlogged": "true"
- }
- },
- {
- "id": 2873,
- "properties": {
- "facing": "west",
- "half": "bottom",
- "shape": "straight",
- "waterlogged": "false"
- }
- },
- {
- "id": 2874,
- "properties": {
- "facing": "west",
- "half": "bottom",
- "shape": "inner_left",
- "waterlogged": "true"
- }
- },
- {
- "id": 2875,
- "properties": {
- "facing": "west",
- "half": "bottom",
- "shape": "inner_left",
- "waterlogged": "false"
- }
- },
- {
- "id": 2876,
- "properties": {
- "facing": "west",
- "half": "bottom",
- "shape": "inner_right",
- "waterlogged": "true"
- }
- },
- {
- "id": 2877,
- "properties": {
- "facing": "west",
- "half": "bottom",
- "shape": "inner_right",
- "waterlogged": "false"
- }
- },
- {
- "id": 2878,
- "properties": {
- "facing": "west",
- "half": "bottom",
- "shape": "outer_left",
- "waterlogged": "true"
- }
- },
- {
- "id": 2879,
- "properties": {
- "facing": "west",
- "half": "bottom",
- "shape": "outer_left",
- "waterlogged": "false"
- }
- },
- {
- "id": 2880,
- "properties": {
- "facing": "west",
- "half": "bottom",
- "shape": "outer_right",
- "waterlogged": "true"
- }
- },
- {
"id": 2881,
"properties": {
- "facing": "west",
+ "facing": "north",
"half": "bottom",
- "shape": "outer_right",
+ "shape": "straight",
"waterlogged": "false"
}
},
{
"id": 2882,
"properties": {
- "facing": "east",
- "half": "top",
- "shape": "straight",
+ "facing": "north",
+ "half": "bottom",
+ "shape": "inner_left",
"waterlogged": "true"
}
},
{
"id": 2883,
"properties": {
- "facing": "east",
- "half": "top",
- "shape": "straight",
+ "facing": "north",
+ "half": "bottom",
+ "shape": "inner_left",
"waterlogged": "false"
}
},
{
"id": 2884,
"properties": {
- "facing": "east",
- "half": "top",
- "shape": "inner_left",
+ "facing": "north",
+ "half": "bottom",
+ "shape": "inner_right",
"waterlogged": "true"
}
},
{
"id": 2885,
"properties": {
- "facing": "east",
- "half": "top",
- "shape": "inner_left",
+ "facing": "north",
+ "half": "bottom",
+ "shape": "inner_right",
"waterlogged": "false"
}
},
{
"id": 2886,
"properties": {
- "facing": "east",
- "half": "top",
- "shape": "inner_right",
+ "facing": "north",
+ "half": "bottom",
+ "shape": "outer_left",
"waterlogged": "true"
}
},
{
"id": 2887,
"properties": {
- "facing": "east",
- "half": "top",
- "shape": "inner_right",
+ "facing": "north",
+ "half": "bottom",
+ "shape": "outer_left",
"waterlogged": "false"
}
},
{
"id": 2888,
"properties": {
- "facing": "east",
- "half": "top",
- "shape": "outer_left",
+ "facing": "north",
+ "half": "bottom",
+ "shape": "outer_right",
"waterlogged": "true"
}
},
{
"id": 2889,
"properties": {
- "facing": "east",
- "half": "top",
- "shape": "outer_left",
+ "facing": "north",
+ "half": "bottom",
+ "shape": "outer_right",
"waterlogged": "false"
}
},
{
"id": 2890,
"properties": {
- "facing": "east",
+ "facing": "south",
"half": "top",
- "shape": "outer_right",
+ "shape": "straight",
"waterlogged": "true"
}
},
{
"id": 2891,
+ "properties": {
+ "facing": "south",
+ "half": "top",
+ "shape": "straight",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 2892,
+ "properties": {
+ "facing": "south",
+ "half": "top",
+ "shape": "inner_left",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 2893,
+ "properties": {
+ "facing": "south",
+ "half": "top",
+ "shape": "inner_left",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 2894,
+ "properties": {
+ "facing": "south",
+ "half": "top",
+ "shape": "inner_right",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 2895,
+ "properties": {
+ "facing": "south",
+ "half": "top",
+ "shape": "inner_right",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 2896,
+ "properties": {
+ "facing": "south",
+ "half": "top",
+ "shape": "outer_left",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 2897,
+ "properties": {
+ "facing": "south",
+ "half": "top",
+ "shape": "outer_left",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 2898,
+ "properties": {
+ "facing": "south",
+ "half": "top",
+ "shape": "outer_right",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 2899,
+ "properties": {
+ "facing": "south",
+ "half": "top",
+ "shape": "outer_right",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 2900,
+ "properties": {
+ "facing": "south",
+ "half": "bottom",
+ "shape": "straight",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 2901,
+ "properties": {
+ "facing": "south",
+ "half": "bottom",
+ "shape": "straight",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 2902,
+ "properties": {
+ "facing": "south",
+ "half": "bottom",
+ "shape": "inner_left",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 2903,
+ "properties": {
+ "facing": "south",
+ "half": "bottom",
+ "shape": "inner_left",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 2904,
+ "properties": {
+ "facing": "south",
+ "half": "bottom",
+ "shape": "inner_right",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 2905,
+ "properties": {
+ "facing": "south",
+ "half": "bottom",
+ "shape": "inner_right",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 2906,
+ "properties": {
+ "facing": "south",
+ "half": "bottom",
+ "shape": "outer_left",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 2907,
+ "properties": {
+ "facing": "south",
+ "half": "bottom",
+ "shape": "outer_left",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 2908,
+ "properties": {
+ "facing": "south",
+ "half": "bottom",
+ "shape": "outer_right",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 2909,
+ "properties": {
+ "facing": "south",
+ "half": "bottom",
+ "shape": "outer_right",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 2910,
+ "properties": {
+ "facing": "west",
+ "half": "top",
+ "shape": "straight",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 2911,
+ "properties": {
+ "facing": "west",
+ "half": "top",
+ "shape": "straight",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 2912,
+ "properties": {
+ "facing": "west",
+ "half": "top",
+ "shape": "inner_left",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 2913,
+ "properties": {
+ "facing": "west",
+ "half": "top",
+ "shape": "inner_left",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 2914,
+ "properties": {
+ "facing": "west",
+ "half": "top",
+ "shape": "inner_right",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 2915,
+ "properties": {
+ "facing": "west",
+ "half": "top",
+ "shape": "inner_right",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 2916,
+ "properties": {
+ "facing": "west",
+ "half": "top",
+ "shape": "outer_left",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 2917,
+ "properties": {
+ "facing": "west",
+ "half": "top",
+ "shape": "outer_left",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 2918,
+ "properties": {
+ "facing": "west",
+ "half": "top",
+ "shape": "outer_right",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 2919,
+ "properties": {
+ "facing": "west",
+ "half": "top",
+ "shape": "outer_right",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 2920,
+ "properties": {
+ "facing": "west",
+ "half": "bottom",
+ "shape": "straight",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 2921,
+ "properties": {
+ "facing": "west",
+ "half": "bottom",
+ "shape": "straight",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 2922,
+ "properties": {
+ "facing": "west",
+ "half": "bottom",
+ "shape": "inner_left",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 2923,
+ "properties": {
+ "facing": "west",
+ "half": "bottom",
+ "shape": "inner_left",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 2924,
+ "properties": {
+ "facing": "west",
+ "half": "bottom",
+ "shape": "inner_right",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 2925,
+ "properties": {
+ "facing": "west",
+ "half": "bottom",
+ "shape": "inner_right",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 2926,
+ "properties": {
+ "facing": "west",
+ "half": "bottom",
+ "shape": "outer_left",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 2927,
+ "properties": {
+ "facing": "west",
+ "half": "bottom",
+ "shape": "outer_left",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 2928,
+ "properties": {
+ "facing": "west",
+ "half": "bottom",
+ "shape": "outer_right",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 2929,
+ "properties": {
+ "facing": "west",
+ "half": "bottom",
+ "shape": "outer_right",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 2930,
+ "properties": {
+ "facing": "east",
+ "half": "top",
+ "shape": "straight",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 2931,
+ "properties": {
+ "facing": "east",
+ "half": "top",
+ "shape": "straight",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 2932,
+ "properties": {
+ "facing": "east",
+ "half": "top",
+ "shape": "inner_left",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 2933,
+ "properties": {
+ "facing": "east",
+ "half": "top",
+ "shape": "inner_left",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 2934,
+ "properties": {
+ "facing": "east",
+ "half": "top",
+ "shape": "inner_right",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 2935,
+ "properties": {
+ "facing": "east",
+ "half": "top",
+ "shape": "inner_right",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 2936,
+ "properties": {
+ "facing": "east",
+ "half": "top",
+ "shape": "outer_left",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 2937,
+ "properties": {
+ "facing": "east",
+ "half": "top",
+ "shape": "outer_left",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 2938,
+ "properties": {
+ "facing": "east",
+ "half": "top",
+ "shape": "outer_right",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 2939,
"properties": {
"facing": "east",
"half": "top",
@@ -142975,7 +147372,7 @@
}
},
{
- "id": 2892,
+ "id": 2940,
"properties": {
"facing": "east",
"half": "bottom",
@@ -142984,7 +147381,7 @@
}
},
{
- "id": 2893,
+ "id": 2941,
"properties": {
"facing": "east",
"half": "bottom",
@@ -142993,7 +147390,7 @@
}
},
{
- "id": 2894,
+ "id": 2942,
"properties": {
"facing": "east",
"half": "bottom",
@@ -143002,7 +147399,7 @@
}
},
{
- "id": 2895,
+ "id": 2943,
"properties": {
"facing": "east",
"half": "bottom",
@@ -143011,7 +147408,7 @@
}
},
{
- "id": 2896,
+ "id": 2944,
"properties": {
"facing": "east",
"half": "bottom",
@@ -143020,7 +147417,7 @@
}
},
{
- "id": 2897,
+ "id": 2945,
"properties": {
"facing": "east",
"half": "bottom",
@@ -143029,7 +147426,7 @@
}
},
{
- "id": 2898,
+ "id": 2946,
"properties": {
"facing": "east",
"half": "bottom",
@@ -143038,7 +147435,7 @@
}
},
{
- "id": 2899,
+ "id": 2947,
"properties": {
"facing": "east",
"half": "bottom",
@@ -143047,7 +147444,7 @@
}
},
{
- "id": 2900,
+ "id": 2948,
"properties": {
"facing": "east",
"half": "bottom",
@@ -143056,7 +147453,7 @@
}
},
{
- "id": 2901,
+ "id": 2949,
"properties": {
"facing": "east",
"half": "bottom",
@@ -143093,7 +147490,7 @@
},
"states": [
{
- "id": 5796,
+ "id": 5958,
"properties": {
"facing": "north",
"half": "top",
@@ -143103,7 +147500,7 @@
}
},
{
- "id": 5797,
+ "id": 5959,
"properties": {
"facing": "north",
"half": "top",
@@ -143113,7 +147510,7 @@
}
},
{
- "id": 5798,
+ "id": 5960,
"properties": {
"facing": "north",
"half": "top",
@@ -143123,7 +147520,7 @@
}
},
{
- "id": 5799,
+ "id": 5961,
"properties": {
"facing": "north",
"half": "top",
@@ -143133,7 +147530,7 @@
}
},
{
- "id": 5800,
+ "id": 5962,
"properties": {
"facing": "north",
"half": "top",
@@ -143143,7 +147540,7 @@
}
},
{
- "id": 5801,
+ "id": 5963,
"properties": {
"facing": "north",
"half": "top",
@@ -143153,7 +147550,7 @@
}
},
{
- "id": 5802,
+ "id": 5964,
"properties": {
"facing": "north",
"half": "top",
@@ -143163,7 +147560,7 @@
}
},
{
- "id": 5803,
+ "id": 5965,
"properties": {
"facing": "north",
"half": "top",
@@ -143173,7 +147570,7 @@
}
},
{
- "id": 5804,
+ "id": 5966,
"properties": {
"facing": "north",
"half": "bottom",
@@ -143183,7 +147580,7 @@
}
},
{
- "id": 5805,
+ "id": 5967,
"properties": {
"facing": "north",
"half": "bottom",
@@ -143193,7 +147590,7 @@
}
},
{
- "id": 5806,
+ "id": 5968,
"properties": {
"facing": "north",
"half": "bottom",
@@ -143203,7 +147600,7 @@
}
},
{
- "id": 5807,
+ "id": 5969,
"properties": {
"facing": "north",
"half": "bottom",
@@ -143213,7 +147610,7 @@
}
},
{
- "id": 5808,
+ "id": 5970,
"properties": {
"facing": "north",
"half": "bottom",
@@ -143223,7 +147620,7 @@
}
},
{
- "id": 5809,
+ "id": 5971,
"properties": {
"facing": "north",
"half": "bottom",
@@ -143233,7 +147630,7 @@
}
},
{
- "id": 5810,
+ "id": 5972,
"properties": {
"facing": "north",
"half": "bottom",
@@ -143244,7 +147641,7 @@
},
{
"default": true,
- "id": 5811,
+ "id": 5973,
"properties": {
"facing": "north",
"half": "bottom",
@@ -143254,7 +147651,7 @@
}
},
{
- "id": 5812,
+ "id": 5974,
"properties": {
"facing": "south",
"half": "top",
@@ -143264,7 +147661,7 @@
}
},
{
- "id": 5813,
+ "id": 5975,
"properties": {
"facing": "south",
"half": "top",
@@ -143274,7 +147671,7 @@
}
},
{
- "id": 5814,
+ "id": 5976,
"properties": {
"facing": "south",
"half": "top",
@@ -143284,7 +147681,7 @@
}
},
{
- "id": 5815,
+ "id": 5977,
"properties": {
"facing": "south",
"half": "top",
@@ -143294,7 +147691,7 @@
}
},
{
- "id": 5816,
+ "id": 5978,
"properties": {
"facing": "south",
"half": "top",
@@ -143304,7 +147701,7 @@
}
},
{
- "id": 5817,
+ "id": 5979,
"properties": {
"facing": "south",
"half": "top",
@@ -143314,7 +147711,7 @@
}
},
{
- "id": 5818,
+ "id": 5980,
"properties": {
"facing": "south",
"half": "top",
@@ -143324,7 +147721,7 @@
}
},
{
- "id": 5819,
+ "id": 5981,
"properties": {
"facing": "south",
"half": "top",
@@ -143334,7 +147731,7 @@
}
},
{
- "id": 5820,
+ "id": 5982,
"properties": {
"facing": "south",
"half": "bottom",
@@ -143344,7 +147741,7 @@
}
},
{
- "id": 5821,
+ "id": 5983,
"properties": {
"facing": "south",
"half": "bottom",
@@ -143354,7 +147751,7 @@
}
},
{
- "id": 5822,
+ "id": 5984,
"properties": {
"facing": "south",
"half": "bottom",
@@ -143364,7 +147761,7 @@
}
},
{
- "id": 5823,
+ "id": 5985,
"properties": {
"facing": "south",
"half": "bottom",
@@ -143374,7 +147771,7 @@
}
},
{
- "id": 5824,
+ "id": 5986,
"properties": {
"facing": "south",
"half": "bottom",
@@ -143384,7 +147781,7 @@
}
},
{
- "id": 5825,
+ "id": 5987,
"properties": {
"facing": "south",
"half": "bottom",
@@ -143394,7 +147791,7 @@
}
},
{
- "id": 5826,
+ "id": 5988,
"properties": {
"facing": "south",
"half": "bottom",
@@ -143404,7 +147801,7 @@
}
},
{
- "id": 5827,
+ "id": 5989,
"properties": {
"facing": "south",
"half": "bottom",
@@ -143414,7 +147811,7 @@
}
},
{
- "id": 5828,
+ "id": 5990,
"properties": {
"facing": "west",
"half": "top",
@@ -143424,7 +147821,7 @@
}
},
{
- "id": 5829,
+ "id": 5991,
"properties": {
"facing": "west",
"half": "top",
@@ -143434,7 +147831,7 @@
}
},
{
- "id": 5830,
+ "id": 5992,
"properties": {
"facing": "west",
"half": "top",
@@ -143444,7 +147841,7 @@
}
},
{
- "id": 5831,
+ "id": 5993,
"properties": {
"facing": "west",
"half": "top",
@@ -143454,7 +147851,7 @@
}
},
{
- "id": 5832,
+ "id": 5994,
"properties": {
"facing": "west",
"half": "top",
@@ -143464,7 +147861,7 @@
}
},
{
- "id": 5833,
+ "id": 5995,
"properties": {
"facing": "west",
"half": "top",
@@ -143474,7 +147871,7 @@
}
},
{
- "id": 5834,
+ "id": 5996,
"properties": {
"facing": "west",
"half": "top",
@@ -143484,7 +147881,7 @@
}
},
{
- "id": 5835,
+ "id": 5997,
"properties": {
"facing": "west",
"half": "top",
@@ -143494,7 +147891,7 @@
}
},
{
- "id": 5836,
+ "id": 5998,
"properties": {
"facing": "west",
"half": "bottom",
@@ -143504,7 +147901,7 @@
}
},
{
- "id": 5837,
+ "id": 5999,
"properties": {
"facing": "west",
"half": "bottom",
@@ -143514,7 +147911,7 @@
}
},
{
- "id": 5838,
+ "id": 6000,
"properties": {
"facing": "west",
"half": "bottom",
@@ -143524,7 +147921,7 @@
}
},
{
- "id": 5839,
+ "id": 6001,
"properties": {
"facing": "west",
"half": "bottom",
@@ -143534,7 +147931,7 @@
}
},
{
- "id": 5840,
+ "id": 6002,
"properties": {
"facing": "west",
"half": "bottom",
@@ -143544,7 +147941,7 @@
}
},
{
- "id": 5841,
+ "id": 6003,
"properties": {
"facing": "west",
"half": "bottom",
@@ -143554,7 +147951,7 @@
}
},
{
- "id": 5842,
+ "id": 6004,
"properties": {
"facing": "west",
"half": "bottom",
@@ -143564,7 +147961,7 @@
}
},
{
- "id": 5843,
+ "id": 6005,
"properties": {
"facing": "west",
"half": "bottom",
@@ -143574,7 +147971,7 @@
}
},
{
- "id": 5844,
+ "id": 6006,
"properties": {
"facing": "east",
"half": "top",
@@ -143584,7 +147981,7 @@
}
},
{
- "id": 5845,
+ "id": 6007,
"properties": {
"facing": "east",
"half": "top",
@@ -143594,7 +147991,7 @@
}
},
{
- "id": 5846,
+ "id": 6008,
"properties": {
"facing": "east",
"half": "top",
@@ -143604,7 +148001,7 @@
}
},
{
- "id": 5847,
+ "id": 6009,
"properties": {
"facing": "east",
"half": "top",
@@ -143614,7 +148011,7 @@
}
},
{
- "id": 5848,
+ "id": 6010,
"properties": {
"facing": "east",
"half": "top",
@@ -143624,7 +148021,7 @@
}
},
{
- "id": 5849,
+ "id": 6011,
"properties": {
"facing": "east",
"half": "top",
@@ -143634,7 +148031,7 @@
}
},
{
- "id": 5850,
+ "id": 6012,
"properties": {
"facing": "east",
"half": "top",
@@ -143644,7 +148041,7 @@
}
},
{
- "id": 5851,
+ "id": 6013,
"properties": {
"facing": "east",
"half": "top",
@@ -143654,7 +148051,7 @@
}
},
{
- "id": 5852,
+ "id": 6014,
"properties": {
"facing": "east",
"half": "bottom",
@@ -143664,7 +148061,7 @@
}
},
{
- "id": 5853,
+ "id": 6015,
"properties": {
"facing": "east",
"half": "bottom",
@@ -143674,7 +148071,7 @@
}
},
{
- "id": 5854,
+ "id": 6016,
"properties": {
"facing": "east",
"half": "bottom",
@@ -143684,7 +148081,7 @@
}
},
{
- "id": 5855,
+ "id": 6017,
"properties": {
"facing": "east",
"half": "bottom",
@@ -143694,7 +148091,7 @@
}
},
{
- "id": 5856,
+ "id": 6018,
"properties": {
"facing": "east",
"half": "bottom",
@@ -143704,7 +148101,7 @@
}
},
{
- "id": 5857,
+ "id": 6019,
"properties": {
"facing": "east",
"half": "bottom",
@@ -143714,7 +148111,7 @@
}
},
{
- "id": 5858,
+ "id": 6020,
"properties": {
"facing": "east",
"half": "bottom",
@@ -143724,7 +148121,7 @@
}
},
{
- "id": 5859,
+ "id": 6021,
"properties": {
"facing": "east",
"half": "bottom",
@@ -143750,7 +148147,7 @@
},
"states": [
{
- "id": 5382,
+ "id": 5534,
"properties": {
"facing": "north",
"waterlogged": "true"
@@ -143758,49 +148155,49 @@
},
{
"default": true,
- "id": 5383,
+ "id": 5535,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 5384,
+ "id": 5536,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 5385,
+ "id": 5537,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 5386,
+ "id": 5538,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 5387,
+ "id": 5539,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 5388,
+ "id": 5540,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 5389,
+ "id": 5541,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -143823,7 +148220,7 @@
},
"states": [
{
- "id": 4678,
+ "id": 4758,
"properties": {
"facing": "north",
"waterlogged": "true"
@@ -143831,49 +148228,49 @@
},
{
"default": true,
- "id": 4679,
+ "id": 4759,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 4680,
+ "id": 4760,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 4681,
+ "id": 4761,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 4682,
+ "id": 4762,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 4683,
+ "id": 4763,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 4684,
+ "id": 4764,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 4685,
+ "id": 4765,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -143891,20 +148288,20 @@
},
"states": [
{
- "id": 172,
+ "id": 185,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 173,
+ "id": 186,
"properties": {
"axis": "y"
}
},
{
- "id": 174,
+ "id": 187,
"properties": {
"axis": "z"
}
@@ -143928,35 +148325,35 @@
},
"states": [
{
- "id": 11925,
+ "id": 12394,
"properties": {
"facing": "north",
"powered": "true"
}
},
{
- "id": 11926,
+ "id": 12395,
"properties": {
"facing": "north",
"powered": "false"
}
},
{
- "id": 11927,
+ "id": 12396,
"properties": {
"facing": "east",
"powered": "true"
}
},
{
- "id": 11928,
+ "id": 12397,
"properties": {
"facing": "east",
"powered": "false"
}
},
{
- "id": 11929,
+ "id": 12398,
"properties": {
"facing": "south",
"powered": "true"
@@ -143964,49 +148361,49 @@
},
{
"default": true,
- "id": 11930,
+ "id": 12399,
"properties": {
"facing": "south",
"powered": "false"
}
},
{
- "id": 11931,
+ "id": 12400,
"properties": {
"facing": "west",
"powered": "true"
}
},
{
- "id": 11932,
+ "id": 12401,
"properties": {
"facing": "west",
"powered": "false"
}
},
{
- "id": 11933,
+ "id": 12402,
"properties": {
"facing": "up",
"powered": "true"
}
},
{
- "id": 11934,
+ "id": 12403,
"properties": {
"facing": "up",
"powered": "false"
}
},
{
- "id": 11935,
+ "id": 12404,
"properties": {
"facing": "down",
"powered": "true"
}
},
{
- "id": 11936,
+ "id": 12405,
"properties": {
"facing": "down",
"powered": "false"
@@ -144018,7 +148415,7 @@
"states": [
{
"default": true,
- "id": 2302
+ "id": 2350
}
]
},
@@ -144032,20 +148429,20 @@
},
"states": [
{
- "id": 23221,
+ "id": 23706,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 23222,
+ "id": 23707,
"properties": {
"axis": "y"
}
},
{
- "id": 23223,
+ "id": 23708,
"properties": {
"axis": "z"
}
@@ -144076,97 +148473,97 @@
"states": [
{
"default": true,
- "id": 10298,
+ "id": 10630,
"properties": {
"rotation": "0"
}
},
{
- "id": 10299,
+ "id": 10631,
"properties": {
"rotation": "1"
}
},
{
- "id": 10300,
+ "id": 10632,
"properties": {
"rotation": "2"
}
},
{
- "id": 10301,
+ "id": 10633,
"properties": {
"rotation": "3"
}
},
{
- "id": 10302,
+ "id": 10634,
"properties": {
"rotation": "4"
}
},
{
- "id": 10303,
+ "id": 10635,
"properties": {
"rotation": "5"
}
},
{
- "id": 10304,
+ "id": 10636,
"properties": {
"rotation": "6"
}
},
{
- "id": 10305,
+ "id": 10637,
"properties": {
"rotation": "7"
}
},
{
- "id": 10306,
+ "id": 10638,
"properties": {
"rotation": "8"
}
},
{
- "id": 10307,
+ "id": 10639,
"properties": {
"rotation": "9"
}
},
{
- "id": 10308,
+ "id": 10640,
"properties": {
"rotation": "10"
}
},
{
- "id": 10309,
+ "id": 10641,
"properties": {
"rotation": "11"
}
},
{
- "id": 10310,
+ "id": 10642,
"properties": {
"rotation": "12"
}
},
{
- "id": 10311,
+ "id": 10643,
"properties": {
"rotation": "13"
}
},
{
- "id": 10312,
+ "id": 10644,
"properties": {
"rotation": "14"
}
},
{
- "id": 10313,
+ "id": 10645,
"properties": {
"rotation": "15"
}
@@ -144192,7 +148589,7 @@
},
"states": [
{
- "id": 1653,
+ "id": 1700,
"properties": {
"facing": "north",
"occupied": "true",
@@ -144200,7 +148597,7 @@
}
},
{
- "id": 1654,
+ "id": 1701,
"properties": {
"facing": "north",
"occupied": "true",
@@ -144208,7 +148605,7 @@
}
},
{
- "id": 1655,
+ "id": 1702,
"properties": {
"facing": "north",
"occupied": "false",
@@ -144217,7 +148614,7 @@
},
{
"default": true,
- "id": 1656,
+ "id": 1703,
"properties": {
"facing": "north",
"occupied": "false",
@@ -144225,7 +148622,7 @@
}
},
{
- "id": 1657,
+ "id": 1704,
"properties": {
"facing": "south",
"occupied": "true",
@@ -144233,7 +148630,7 @@
}
},
{
- "id": 1658,
+ "id": 1705,
"properties": {
"facing": "south",
"occupied": "true",
@@ -144241,7 +148638,7 @@
}
},
{
- "id": 1659,
+ "id": 1706,
"properties": {
"facing": "south",
"occupied": "false",
@@ -144249,7 +148646,7 @@
}
},
{
- "id": 1660,
+ "id": 1707,
"properties": {
"facing": "south",
"occupied": "false",
@@ -144257,7 +148654,7 @@
}
},
{
- "id": 1661,
+ "id": 1708,
"properties": {
"facing": "west",
"occupied": "true",
@@ -144265,7 +148662,7 @@
}
},
{
- "id": 1662,
+ "id": 1709,
"properties": {
"facing": "west",
"occupied": "true",
@@ -144273,7 +148670,7 @@
}
},
{
- "id": 1663,
+ "id": 1710,
"properties": {
"facing": "west",
"occupied": "false",
@@ -144281,7 +148678,7 @@
}
},
{
- "id": 1664,
+ "id": 1711,
"properties": {
"facing": "west",
"occupied": "false",
@@ -144289,7 +148686,7 @@
}
},
{
- "id": 1665,
+ "id": 1712,
"properties": {
"facing": "east",
"occupied": "true",
@@ -144297,7 +148694,7 @@
}
},
{
- "id": 1666,
+ "id": 1713,
"properties": {
"facing": "east",
"occupied": "true",
@@ -144305,7 +148702,7 @@
}
},
{
- "id": 1667,
+ "id": 1714,
"properties": {
"facing": "east",
"occupied": "false",
@@ -144313,7 +148710,7 @@
}
},
{
- "id": 1668,
+ "id": 1715,
"properties": {
"facing": "east",
"occupied": "false",
@@ -144341,7 +148738,7 @@
},
"states": [
{
- "id": 20129,
+ "id": 20598,
"properties": {
"candles": "1",
"lit": "true",
@@ -144349,7 +148746,7 @@
}
},
{
- "id": 20130,
+ "id": 20599,
"properties": {
"candles": "1",
"lit": "true",
@@ -144357,7 +148754,7 @@
}
},
{
- "id": 20131,
+ "id": 20600,
"properties": {
"candles": "1",
"lit": "false",
@@ -144366,7 +148763,7 @@
},
{
"default": true,
- "id": 20132,
+ "id": 20601,
"properties": {
"candles": "1",
"lit": "false",
@@ -144374,7 +148771,7 @@
}
},
{
- "id": 20133,
+ "id": 20602,
"properties": {
"candles": "2",
"lit": "true",
@@ -144382,7 +148779,7 @@
}
},
{
- "id": 20134,
+ "id": 20603,
"properties": {
"candles": "2",
"lit": "true",
@@ -144390,7 +148787,7 @@
}
},
{
- "id": 20135,
+ "id": 20604,
"properties": {
"candles": "2",
"lit": "false",
@@ -144398,7 +148795,7 @@
}
},
{
- "id": 20136,
+ "id": 20605,
"properties": {
"candles": "2",
"lit": "false",
@@ -144406,7 +148803,7 @@
}
},
{
- "id": 20137,
+ "id": 20606,
"properties": {
"candles": "3",
"lit": "true",
@@ -144414,7 +148811,7 @@
}
},
{
- "id": 20138,
+ "id": 20607,
"properties": {
"candles": "3",
"lit": "true",
@@ -144422,7 +148819,7 @@
}
},
{
- "id": 20139,
+ "id": 20608,
"properties": {
"candles": "3",
"lit": "false",
@@ -144430,7 +148827,7 @@
}
},
{
- "id": 20140,
+ "id": 20609,
"properties": {
"candles": "3",
"lit": "false",
@@ -144438,7 +148835,7 @@
}
},
{
- "id": 20141,
+ "id": 20610,
"properties": {
"candles": "4",
"lit": "true",
@@ -144446,7 +148843,7 @@
}
},
{
- "id": 20142,
+ "id": 20611,
"properties": {
"candles": "4",
"lit": "true",
@@ -144454,7 +148851,7 @@
}
},
{
- "id": 20143,
+ "id": 20612,
"properties": {
"candles": "4",
"lit": "false",
@@ -144462,7 +148859,7 @@
}
},
{
- "id": 20144,
+ "id": 20613,
"properties": {
"candles": "4",
"lit": "false",
@@ -144480,14 +148877,14 @@
},
"states": [
{
- "id": 20373,
+ "id": 20842,
"properties": {
"lit": "true"
}
},
{
"default": true,
- "id": 20374,
+ "id": 20843,
"properties": {
"lit": "false"
}
@@ -144498,7 +148895,7 @@
"states": [
{
"default": true,
- "id": 10252
+ "id": 10584
}
]
},
@@ -144506,7 +148903,7 @@
"states": [
{
"default": true,
- "id": 12104
+ "id": 12573
}
]
},
@@ -144514,7 +148911,7 @@
"states": [
{
"default": true,
- "id": 12120
+ "id": 12589
}
]
},
@@ -144530,25 +148927,25 @@
"states": [
{
"default": true,
- "id": 12043,
+ "id": 12512,
"properties": {
"facing": "north"
}
},
{
- "id": 12044,
+ "id": 12513,
"properties": {
"facing": "south"
}
},
{
- "id": 12045,
+ "id": 12514,
"properties": {
"facing": "west"
}
},
{
- "id": 12046,
+ "id": 12515,
"properties": {
"facing": "east"
}
@@ -144568,38 +148965,38 @@
},
"states": [
{
- "id": 11949,
+ "id": 12418,
"properties": {
"facing": "north"
}
},
{
- "id": 11950,
+ "id": 12419,
"properties": {
"facing": "east"
}
},
{
- "id": 11951,
+ "id": 12420,
"properties": {
"facing": "south"
}
},
{
- "id": 11952,
+ "id": 12421,
"properties": {
"facing": "west"
}
},
{
"default": true,
- "id": 11953,
+ "id": 12422,
"properties": {
"facing": "up"
}
},
{
- "id": 11954,
+ "id": 12423,
"properties": {
"facing": "down"
}
@@ -144610,7 +149007,7 @@
"states": [
{
"default": true,
- "id": 5781
+ "id": 5943
}
]
},
@@ -144639,7 +149036,7 @@
},
"states": [
{
- "id": 9008,
+ "id": 9260,
"properties": {
"east": "true",
"north": "true",
@@ -144649,7 +149046,7 @@
}
},
{
- "id": 9009,
+ "id": 9261,
"properties": {
"east": "true",
"north": "true",
@@ -144659,7 +149056,7 @@
}
},
{
- "id": 9010,
+ "id": 9262,
"properties": {
"east": "true",
"north": "true",
@@ -144669,7 +149066,7 @@
}
},
{
- "id": 9011,
+ "id": 9263,
"properties": {
"east": "true",
"north": "true",
@@ -144679,7 +149076,7 @@
}
},
{
- "id": 9012,
+ "id": 9264,
"properties": {
"east": "true",
"north": "true",
@@ -144689,7 +149086,7 @@
}
},
{
- "id": 9013,
+ "id": 9265,
"properties": {
"east": "true",
"north": "true",
@@ -144699,7 +149096,7 @@
}
},
{
- "id": 9014,
+ "id": 9266,
"properties": {
"east": "true",
"north": "true",
@@ -144709,7 +149106,7 @@
}
},
{
- "id": 9015,
+ "id": 9267,
"properties": {
"east": "true",
"north": "true",
@@ -144719,7 +149116,7 @@
}
},
{
- "id": 9016,
+ "id": 9268,
"properties": {
"east": "true",
"north": "false",
@@ -144729,7 +149126,7 @@
}
},
{
- "id": 9017,
+ "id": 9269,
"properties": {
"east": "true",
"north": "false",
@@ -144739,7 +149136,7 @@
}
},
{
- "id": 9018,
+ "id": 9270,
"properties": {
"east": "true",
"north": "false",
@@ -144749,7 +149146,7 @@
}
},
{
- "id": 9019,
+ "id": 9271,
"properties": {
"east": "true",
"north": "false",
@@ -144759,7 +149156,7 @@
}
},
{
- "id": 9020,
+ "id": 9272,
"properties": {
"east": "true",
"north": "false",
@@ -144769,7 +149166,7 @@
}
},
{
- "id": 9021,
+ "id": 9273,
"properties": {
"east": "true",
"north": "false",
@@ -144779,7 +149176,7 @@
}
},
{
- "id": 9022,
+ "id": 9274,
"properties": {
"east": "true",
"north": "false",
@@ -144789,7 +149186,7 @@
}
},
{
- "id": 9023,
+ "id": 9275,
"properties": {
"east": "true",
"north": "false",
@@ -144799,7 +149196,7 @@
}
},
{
- "id": 9024,
+ "id": 9276,
"properties": {
"east": "false",
"north": "true",
@@ -144809,7 +149206,7 @@
}
},
{
- "id": 9025,
+ "id": 9277,
"properties": {
"east": "false",
"north": "true",
@@ -144819,7 +149216,7 @@
}
},
{
- "id": 9026,
+ "id": 9278,
"properties": {
"east": "false",
"north": "true",
@@ -144829,7 +149226,7 @@
}
},
{
- "id": 9027,
+ "id": 9279,
"properties": {
"east": "false",
"north": "true",
@@ -144839,7 +149236,7 @@
}
},
{
- "id": 9028,
+ "id": 9280,
"properties": {
"east": "false",
"north": "true",
@@ -144849,7 +149246,7 @@
}
},
{
- "id": 9029,
+ "id": 9281,
"properties": {
"east": "false",
"north": "true",
@@ -144859,7 +149256,7 @@
}
},
{
- "id": 9030,
+ "id": 9282,
"properties": {
"east": "false",
"north": "true",
@@ -144869,7 +149266,7 @@
}
},
{
- "id": 9031,
+ "id": 9283,
"properties": {
"east": "false",
"north": "true",
@@ -144879,7 +149276,7 @@
}
},
{
- "id": 9032,
+ "id": 9284,
"properties": {
"east": "false",
"north": "false",
@@ -144889,7 +149286,7 @@
}
},
{
- "id": 9033,
+ "id": 9285,
"properties": {
"east": "false",
"north": "false",
@@ -144899,7 +149296,7 @@
}
},
{
- "id": 9034,
+ "id": 9286,
"properties": {
"east": "false",
"north": "false",
@@ -144909,7 +149306,7 @@
}
},
{
- "id": 9035,
+ "id": 9287,
"properties": {
"east": "false",
"north": "false",
@@ -144919,7 +149316,7 @@
}
},
{
- "id": 9036,
+ "id": 9288,
"properties": {
"east": "false",
"north": "false",
@@ -144929,7 +149326,7 @@
}
},
{
- "id": 9037,
+ "id": 9289,
"properties": {
"east": "false",
"north": "false",
@@ -144939,7 +149336,7 @@
}
},
{
- "id": 9038,
+ "id": 9290,
"properties": {
"east": "false",
"north": "false",
@@ -144950,7 +149347,7 @@
},
{
"default": true,
- "id": 9039,
+ "id": 9291,
"properties": {
"east": "false",
"north": "false",
@@ -144965,7 +149362,7 @@
"states": [
{
"default": true,
- "id": 8961
+ "id": 9213
}
]
},
@@ -144973,7 +149370,7 @@
"states": [
{
"default": true,
- "id": 2030
+ "id": 2078
}
]
},
@@ -144989,25 +149386,25 @@
"states": [
{
"default": true,
- "id": 10542,
+ "id": 10874,
"properties": {
"facing": "north"
}
},
{
- "id": 10543,
+ "id": 10875,
"properties": {
"facing": "south"
}
},
{
- "id": 10544,
+ "id": 10876,
"properties": {
"facing": "west"
}
},
{
- "id": 10545,
+ "id": 10877,
"properties": {
"facing": "east"
}
@@ -145018,7 +149415,7 @@
"states": [
{
"default": true,
- "id": 1997
+ "id": 2044
}
]
},
@@ -145026,7 +149423,7 @@
"states": [
{
"default": true,
- "id": 2033
+ "id": 2081
}
]
},
@@ -145034,7 +149431,7 @@
"states": [
{
"default": true,
- "id": 20692
+ "id": 21161
}
]
},
@@ -145042,7 +149439,7 @@
"states": [
{
"default": true,
- "id": 20698
+ "id": 21167
}
]
},
@@ -145060,21 +149457,21 @@
},
"states": [
{
- "id": 21022,
+ "id": 21491,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 21023,
+ "id": 21492,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 21024,
+ "id": 21493,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -145082,21 +149479,21 @@
},
{
"default": true,
- "id": 21025,
+ "id": 21494,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 21026,
+ "id": 21495,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 21027,
+ "id": 21496,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -145130,7 +149527,7 @@
},
"states": [
{
- "id": 20702,
+ "id": 21171,
"properties": {
"facing": "north",
"half": "top",
@@ -145139,7 +149536,7 @@
}
},
{
- "id": 20703,
+ "id": 21172,
"properties": {
"facing": "north",
"half": "top",
@@ -145148,7 +149545,7 @@
}
},
{
- "id": 20704,
+ "id": 21173,
"properties": {
"facing": "north",
"half": "top",
@@ -145157,7 +149554,7 @@
}
},
{
- "id": 20705,
+ "id": 21174,
"properties": {
"facing": "north",
"half": "top",
@@ -145166,7 +149563,7 @@
}
},
{
- "id": 20706,
+ "id": 21175,
"properties": {
"facing": "north",
"half": "top",
@@ -145175,7 +149572,7 @@
}
},
{
- "id": 20707,
+ "id": 21176,
"properties": {
"facing": "north",
"half": "top",
@@ -145184,7 +149581,7 @@
}
},
{
- "id": 20708,
+ "id": 21177,
"properties": {
"facing": "north",
"half": "top",
@@ -145193,7 +149590,7 @@
}
},
{
- "id": 20709,
+ "id": 21178,
"properties": {
"facing": "north",
"half": "top",
@@ -145202,7 +149599,7 @@
}
},
{
- "id": 20710,
+ "id": 21179,
"properties": {
"facing": "north",
"half": "top",
@@ -145211,7 +149608,7 @@
}
},
{
- "id": 20711,
+ "id": 21180,
"properties": {
"facing": "north",
"half": "top",
@@ -145220,7 +149617,7 @@
}
},
{
- "id": 20712,
+ "id": 21181,
"properties": {
"facing": "north",
"half": "bottom",
@@ -145230,7 +149627,7 @@
},
{
"default": true,
- "id": 20713,
+ "id": 21182,
"properties": {
"facing": "north",
"half": "bottom",
@@ -145239,7 +149636,7 @@
}
},
{
- "id": 20714,
+ "id": 21183,
"properties": {
"facing": "north",
"half": "bottom",
@@ -145248,7 +149645,7 @@
}
},
{
- "id": 20715,
+ "id": 21184,
"properties": {
"facing": "north",
"half": "bottom",
@@ -145257,7 +149654,7 @@
}
},
{
- "id": 20716,
+ "id": 21185,
"properties": {
"facing": "north",
"half": "bottom",
@@ -145266,7 +149663,7 @@
}
},
{
- "id": 20717,
+ "id": 21186,
"properties": {
"facing": "north",
"half": "bottom",
@@ -145275,7 +149672,7 @@
}
},
{
- "id": 20718,
+ "id": 21187,
"properties": {
"facing": "north",
"half": "bottom",
@@ -145284,7 +149681,7 @@
}
},
{
- "id": 20719,
+ "id": 21188,
"properties": {
"facing": "north",
"half": "bottom",
@@ -145293,7 +149690,7 @@
}
},
{
- "id": 20720,
+ "id": 21189,
"properties": {
"facing": "north",
"half": "bottom",
@@ -145302,7 +149699,7 @@
}
},
{
- "id": 20721,
+ "id": 21190,
"properties": {
"facing": "north",
"half": "bottom",
@@ -145311,7 +149708,7 @@
}
},
{
- "id": 20722,
+ "id": 21191,
"properties": {
"facing": "south",
"half": "top",
@@ -145320,7 +149717,7 @@
}
},
{
- "id": 20723,
+ "id": 21192,
"properties": {
"facing": "south",
"half": "top",
@@ -145329,7 +149726,7 @@
}
},
{
- "id": 20724,
+ "id": 21193,
"properties": {
"facing": "south",
"half": "top",
@@ -145338,7 +149735,7 @@
}
},
{
- "id": 20725,
+ "id": 21194,
"properties": {
"facing": "south",
"half": "top",
@@ -145347,7 +149744,7 @@
}
},
{
- "id": 20726,
+ "id": 21195,
"properties": {
"facing": "south",
"half": "top",
@@ -145356,7 +149753,7 @@
}
},
{
- "id": 20727,
+ "id": 21196,
"properties": {
"facing": "south",
"half": "top",
@@ -145365,7 +149762,7 @@
}
},
{
- "id": 20728,
+ "id": 21197,
"properties": {
"facing": "south",
"half": "top",
@@ -145374,7 +149771,7 @@
}
},
{
- "id": 20729,
+ "id": 21198,
"properties": {
"facing": "south",
"half": "top",
@@ -145383,7 +149780,7 @@
}
},
{
- "id": 20730,
+ "id": 21199,
"properties": {
"facing": "south",
"half": "top",
@@ -145392,7 +149789,7 @@
}
},
{
- "id": 20731,
+ "id": 21200,
"properties": {
"facing": "south",
"half": "top",
@@ -145401,7 +149798,7 @@
}
},
{
- "id": 20732,
+ "id": 21201,
"properties": {
"facing": "south",
"half": "bottom",
@@ -145410,7 +149807,7 @@
}
},
{
- "id": 20733,
+ "id": 21202,
"properties": {
"facing": "south",
"half": "bottom",
@@ -145419,7 +149816,7 @@
}
},
{
- "id": 20734,
+ "id": 21203,
"properties": {
"facing": "south",
"half": "bottom",
@@ -145428,7 +149825,7 @@
}
},
{
- "id": 20735,
+ "id": 21204,
"properties": {
"facing": "south",
"half": "bottom",
@@ -145437,7 +149834,7 @@
}
},
{
- "id": 20736,
+ "id": 21205,
"properties": {
"facing": "south",
"half": "bottom",
@@ -145446,7 +149843,7 @@
}
},
{
- "id": 20737,
+ "id": 21206,
"properties": {
"facing": "south",
"half": "bottom",
@@ -145455,7 +149852,7 @@
}
},
{
- "id": 20738,
+ "id": 21207,
"properties": {
"facing": "south",
"half": "bottom",
@@ -145464,7 +149861,7 @@
}
},
{
- "id": 20739,
+ "id": 21208,
"properties": {
"facing": "south",
"half": "bottom",
@@ -145473,7 +149870,7 @@
}
},
{
- "id": 20740,
+ "id": 21209,
"properties": {
"facing": "south",
"half": "bottom",
@@ -145482,7 +149879,7 @@
}
},
{
- "id": 20741,
+ "id": 21210,
"properties": {
"facing": "south",
"half": "bottom",
@@ -145491,7 +149888,7 @@
}
},
{
- "id": 20742,
+ "id": 21211,
"properties": {
"facing": "west",
"half": "top",
@@ -145500,7 +149897,7 @@
}
},
{
- "id": 20743,
+ "id": 21212,
"properties": {
"facing": "west",
"half": "top",
@@ -145509,7 +149906,7 @@
}
},
{
- "id": 20744,
+ "id": 21213,
"properties": {
"facing": "west",
"half": "top",
@@ -145518,7 +149915,7 @@
}
},
{
- "id": 20745,
+ "id": 21214,
"properties": {
"facing": "west",
"half": "top",
@@ -145527,7 +149924,7 @@
}
},
{
- "id": 20746,
+ "id": 21215,
"properties": {
"facing": "west",
"half": "top",
@@ -145536,7 +149933,7 @@
}
},
{
- "id": 20747,
+ "id": 21216,
"properties": {
"facing": "west",
"half": "top",
@@ -145545,7 +149942,7 @@
}
},
{
- "id": 20748,
+ "id": 21217,
"properties": {
"facing": "west",
"half": "top",
@@ -145554,7 +149951,7 @@
}
},
{
- "id": 20749,
+ "id": 21218,
"properties": {
"facing": "west",
"half": "top",
@@ -145563,7 +149960,7 @@
}
},
{
- "id": 20750,
+ "id": 21219,
"properties": {
"facing": "west",
"half": "top",
@@ -145572,7 +149969,7 @@
}
},
{
- "id": 20751,
+ "id": 21220,
"properties": {
"facing": "west",
"half": "top",
@@ -145581,7 +149978,7 @@
}
},
{
- "id": 20752,
+ "id": 21221,
"properties": {
"facing": "west",
"half": "bottom",
@@ -145590,7 +149987,7 @@
}
},
{
- "id": 20753,
+ "id": 21222,
"properties": {
"facing": "west",
"half": "bottom",
@@ -145599,7 +149996,7 @@
}
},
{
- "id": 20754,
+ "id": 21223,
"properties": {
"facing": "west",
"half": "bottom",
@@ -145608,7 +150005,7 @@
}
},
{
- "id": 20755,
+ "id": 21224,
"properties": {
"facing": "west",
"half": "bottom",
@@ -145617,7 +150014,7 @@
}
},
{
- "id": 20756,
+ "id": 21225,
"properties": {
"facing": "west",
"half": "bottom",
@@ -145626,7 +150023,7 @@
}
},
{
- "id": 20757,
+ "id": 21226,
"properties": {
"facing": "west",
"half": "bottom",
@@ -145635,7 +150032,7 @@
}
},
{
- "id": 20758,
+ "id": 21227,
"properties": {
"facing": "west",
"half": "bottom",
@@ -145644,7 +150041,7 @@
}
},
{
- "id": 20759,
+ "id": 21228,
"properties": {
"facing": "west",
"half": "bottom",
@@ -145653,7 +150050,7 @@
}
},
{
- "id": 20760,
+ "id": 21229,
"properties": {
"facing": "west",
"half": "bottom",
@@ -145662,7 +150059,7 @@
}
},
{
- "id": 20761,
+ "id": 21230,
"properties": {
"facing": "west",
"half": "bottom",
@@ -145671,7 +150068,7 @@
}
},
{
- "id": 20762,
+ "id": 21231,
"properties": {
"facing": "east",
"half": "top",
@@ -145680,7 +150077,7 @@
}
},
{
- "id": 20763,
+ "id": 21232,
"properties": {
"facing": "east",
"half": "top",
@@ -145689,7 +150086,7 @@
}
},
{
- "id": 20764,
+ "id": 21233,
"properties": {
"facing": "east",
"half": "top",
@@ -145698,7 +150095,7 @@
}
},
{
- "id": 20765,
+ "id": 21234,
"properties": {
"facing": "east",
"half": "top",
@@ -145707,7 +150104,7 @@
}
},
{
- "id": 20766,
+ "id": 21235,
"properties": {
"facing": "east",
"half": "top",
@@ -145716,7 +150113,7 @@
}
},
{
- "id": 20767,
+ "id": 21236,
"properties": {
"facing": "east",
"half": "top",
@@ -145725,7 +150122,7 @@
}
},
{
- "id": 20768,
+ "id": 21237,
"properties": {
"facing": "east",
"half": "top",
@@ -145734,7 +150131,7 @@
}
},
{
- "id": 20769,
+ "id": 21238,
"properties": {
"facing": "east",
"half": "top",
@@ -145743,7 +150140,7 @@
}
},
{
- "id": 20770,
+ "id": 21239,
"properties": {
"facing": "east",
"half": "top",
@@ -145752,7 +150149,7 @@
}
},
{
- "id": 20771,
+ "id": 21240,
"properties": {
"facing": "east",
"half": "top",
@@ -145761,7 +150158,7 @@
}
},
{
- "id": 20772,
+ "id": 21241,
"properties": {
"facing": "east",
"half": "bottom",
@@ -145770,7 +150167,7 @@
}
},
{
- "id": 20773,
+ "id": 21242,
"properties": {
"facing": "east",
"half": "bottom",
@@ -145779,7 +150176,7 @@
}
},
{
- "id": 20774,
+ "id": 21243,
"properties": {
"facing": "east",
"half": "bottom",
@@ -145788,7 +150185,7 @@
}
},
{
- "id": 20775,
+ "id": 21244,
"properties": {
"facing": "east",
"half": "bottom",
@@ -145797,7 +150194,7 @@
}
},
{
- "id": 20776,
+ "id": 21245,
"properties": {
"facing": "east",
"half": "bottom",
@@ -145806,7 +150203,7 @@
}
},
{
- "id": 20777,
+ "id": 21246,
"properties": {
"facing": "east",
"half": "bottom",
@@ -145815,7 +150212,7 @@
}
},
{
- "id": 20778,
+ "id": 21247,
"properties": {
"facing": "east",
"half": "bottom",
@@ -145824,7 +150221,7 @@
}
},
{
- "id": 20779,
+ "id": 21248,
"properties": {
"facing": "east",
"half": "bottom",
@@ -145833,7 +150230,7 @@
}
},
{
- "id": 20780,
+ "id": 21249,
"properties": {
"facing": "east",
"half": "bottom",
@@ -145842,7 +150239,7 @@
}
},
{
- "id": 20781,
+ "id": 21250,
"properties": {
"facing": "east",
"half": "bottom",
@@ -145856,7 +150253,7 @@
"states": [
{
"default": true,
- "id": 10269
+ "id": 10601
}
]
},
@@ -145864,7 +150261,7 @@
"states": [
{
"default": true,
- "id": 6312
+ "id": 6538
}
]
},
@@ -145878,20 +150275,20 @@
},
"states": [
{
- "id": 23227,
+ "id": 23712,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 23228,
+ "id": 23713,
"properties": {
"axis": "y"
}
},
{
- "id": 23229,
+ "id": 23714,
"properties": {
"axis": "z"
}
@@ -145907,14 +150304,14 @@
},
"states": [
{
- "id": 10276,
+ "id": 10608,
"properties": {
"half": "upper"
}
},
{
"default": true,
- "id": 10277,
+ "id": 10609,
"properties": {
"half": "lower"
}
@@ -145935,21 +150332,21 @@
},
"states": [
{
- "id": 10763,
+ "id": 11101,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 10764,
+ "id": 11102,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 10765,
+ "id": 11103,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -145957,21 +150354,21 @@
},
{
"default": true,
- "id": 10766,
+ "id": 11104,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 10767,
+ "id": 11105,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 10768,
+ "id": 11106,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -146003,97 +150400,97 @@
"states": [
{
"default": true,
- "id": 8691,
+ "id": 8943,
"properties": {
"rotation": "0"
}
},
{
- "id": 8692,
+ "id": 8944,
"properties": {
"rotation": "1"
}
},
{
- "id": 8693,
+ "id": 8945,
"properties": {
"rotation": "2"
}
},
{
- "id": 8694,
+ "id": 8946,
"properties": {
"rotation": "3"
}
},
{
- "id": 8695,
+ "id": 8947,
"properties": {
"rotation": "4"
}
},
{
- "id": 8696,
+ "id": 8948,
"properties": {
"rotation": "5"
}
},
{
- "id": 8697,
+ "id": 8949,
"properties": {
"rotation": "6"
}
},
{
- "id": 8698,
+ "id": 8950,
"properties": {
"rotation": "7"
}
},
{
- "id": 8699,
+ "id": 8951,
"properties": {
"rotation": "8"
}
},
{
- "id": 8700,
+ "id": 8952,
"properties": {
"rotation": "9"
}
},
{
- "id": 8701,
+ "id": 8953,
"properties": {
"rotation": "10"
}
},
{
- "id": 8702,
+ "id": 8954,
"properties": {
"rotation": "11"
}
},
{
- "id": 8703,
+ "id": 8955,
"properties": {
"rotation": "12"
}
},
{
- "id": 8704,
+ "id": 8956,
"properties": {
"rotation": "13"
}
},
{
- "id": 8705,
+ "id": 8957,
"properties": {
"rotation": "14"
}
},
{
- "id": 8706,
+ "id": 8958,
"properties": {
"rotation": "15"
}
@@ -146112,25 +150509,25 @@
"states": [
{
"default": true,
- "id": 8707,
+ "id": 8959,
"properties": {
"facing": "north"
}
},
{
- "id": 8708,
+ "id": 8960,
"properties": {
"facing": "south"
}
},
{
- "id": 8709,
+ "id": 8961,
"properties": {
"facing": "west"
}
},
{
- "id": 8710,
+ "id": 8962,
"properties": {
"facing": "east"
}
@@ -146161,97 +150558,97 @@
"states": [
{
"default": true,
- "id": 10378,
+ "id": 10710,
"properties": {
"rotation": "0"
}
},
{
- "id": 10379,
+ "id": 10711,
"properties": {
"rotation": "1"
}
},
{
- "id": 10380,
+ "id": 10712,
"properties": {
"rotation": "2"
}
},
{
- "id": 10381,
+ "id": 10713,
"properties": {
"rotation": "3"
}
},
{
- "id": 10382,
+ "id": 10714,
"properties": {
"rotation": "4"
}
},
{
- "id": 10383,
+ "id": 10715,
"properties": {
"rotation": "5"
}
},
{
- "id": 10384,
+ "id": 10716,
"properties": {
"rotation": "6"
}
},
{
- "id": 10385,
+ "id": 10717,
"properties": {
"rotation": "7"
}
},
{
- "id": 10386,
+ "id": 10718,
"properties": {
"rotation": "8"
}
},
{
- "id": 10387,
+ "id": 10719,
"properties": {
"rotation": "9"
}
},
{
- "id": 10388,
+ "id": 10720,
"properties": {
"rotation": "10"
}
},
{
- "id": 10389,
+ "id": 10721,
"properties": {
"rotation": "11"
}
},
{
- "id": 10390,
+ "id": 10722,
"properties": {
"rotation": "12"
}
},
{
- "id": 10391,
+ "id": 10723,
"properties": {
"rotation": "13"
}
},
{
- "id": 10392,
+ "id": 10724,
"properties": {
"rotation": "14"
}
},
{
- "id": 10393,
+ "id": 10725,
"properties": {
"rotation": "15"
}
@@ -146277,7 +150674,7 @@
},
"states": [
{
- "id": 1733,
+ "id": 1780,
"properties": {
"facing": "north",
"occupied": "true",
@@ -146285,7 +150682,7 @@
}
},
{
- "id": 1734,
+ "id": 1781,
"properties": {
"facing": "north",
"occupied": "true",
@@ -146293,7 +150690,7 @@
}
},
{
- "id": 1735,
+ "id": 1782,
"properties": {
"facing": "north",
"occupied": "false",
@@ -146302,7 +150699,7 @@
},
{
"default": true,
- "id": 1736,
+ "id": 1783,
"properties": {
"facing": "north",
"occupied": "false",
@@ -146310,7 +150707,7 @@
}
},
{
- "id": 1737,
+ "id": 1784,
"properties": {
"facing": "south",
"occupied": "true",
@@ -146318,7 +150715,7 @@
}
},
{
- "id": 1738,
+ "id": 1785,
"properties": {
"facing": "south",
"occupied": "true",
@@ -146326,7 +150723,7 @@
}
},
{
- "id": 1739,
+ "id": 1786,
"properties": {
"facing": "south",
"occupied": "false",
@@ -146334,7 +150731,7 @@
}
},
{
- "id": 1740,
+ "id": 1787,
"properties": {
"facing": "south",
"occupied": "false",
@@ -146342,7 +150739,7 @@
}
},
{
- "id": 1741,
+ "id": 1788,
"properties": {
"facing": "west",
"occupied": "true",
@@ -146350,7 +150747,7 @@
}
},
{
- "id": 1742,
+ "id": 1789,
"properties": {
"facing": "west",
"occupied": "true",
@@ -146358,7 +150755,7 @@
}
},
{
- "id": 1743,
+ "id": 1790,
"properties": {
"facing": "west",
"occupied": "false",
@@ -146366,7 +150763,7 @@
}
},
{
- "id": 1744,
+ "id": 1791,
"properties": {
"facing": "west",
"occupied": "false",
@@ -146374,7 +150771,7 @@
}
},
{
- "id": 1745,
+ "id": 1792,
"properties": {
"facing": "east",
"occupied": "true",
@@ -146382,7 +150779,7 @@
}
},
{
- "id": 1746,
+ "id": 1793,
"properties": {
"facing": "east",
"occupied": "true",
@@ -146390,7 +150787,7 @@
}
},
{
- "id": 1747,
+ "id": 1794,
"properties": {
"facing": "east",
"occupied": "false",
@@ -146398,7 +150795,7 @@
}
},
{
- "id": 1748,
+ "id": 1795,
"properties": {
"facing": "east",
"occupied": "false",
@@ -146426,7 +150823,7 @@
},
"states": [
{
- "id": 20209,
+ "id": 20678,
"properties": {
"candles": "1",
"lit": "true",
@@ -146434,7 +150831,7 @@
}
},
{
- "id": 20210,
+ "id": 20679,
"properties": {
"candles": "1",
"lit": "true",
@@ -146442,7 +150839,7 @@
}
},
{
- "id": 20211,
+ "id": 20680,
"properties": {
"candles": "1",
"lit": "false",
@@ -146451,7 +150848,7 @@
},
{
"default": true,
- "id": 20212,
+ "id": 20681,
"properties": {
"candles": "1",
"lit": "false",
@@ -146459,7 +150856,7 @@
}
},
{
- "id": 20213,
+ "id": 20682,
"properties": {
"candles": "2",
"lit": "true",
@@ -146467,7 +150864,7 @@
}
},
{
- "id": 20214,
+ "id": 20683,
"properties": {
"candles": "2",
"lit": "true",
@@ -146475,7 +150872,7 @@
}
},
{
- "id": 20215,
+ "id": 20684,
"properties": {
"candles": "2",
"lit": "false",
@@ -146483,7 +150880,7 @@
}
},
{
- "id": 20216,
+ "id": 20685,
"properties": {
"candles": "2",
"lit": "false",
@@ -146491,7 +150888,7 @@
}
},
{
- "id": 20217,
+ "id": 20686,
"properties": {
"candles": "3",
"lit": "true",
@@ -146499,7 +150896,7 @@
}
},
{
- "id": 20218,
+ "id": 20687,
"properties": {
"candles": "3",
"lit": "true",
@@ -146507,7 +150904,7 @@
}
},
{
- "id": 20219,
+ "id": 20688,
"properties": {
"candles": "3",
"lit": "false",
@@ -146515,7 +150912,7 @@
}
},
{
- "id": 20220,
+ "id": 20689,
"properties": {
"candles": "3",
"lit": "false",
@@ -146523,7 +150920,7 @@
}
},
{
- "id": 20221,
+ "id": 20690,
"properties": {
"candles": "4",
"lit": "true",
@@ -146531,7 +150928,7 @@
}
},
{
- "id": 20222,
+ "id": 20691,
"properties": {
"candles": "4",
"lit": "true",
@@ -146539,7 +150936,7 @@
}
},
{
- "id": 20223,
+ "id": 20692,
"properties": {
"candles": "4",
"lit": "false",
@@ -146547,7 +150944,7 @@
}
},
{
- "id": 20224,
+ "id": 20693,
"properties": {
"candles": "4",
"lit": "false",
@@ -146565,14 +150962,14 @@
},
"states": [
{
- "id": 20383,
+ "id": 20852,
"properties": {
"lit": "true"
}
},
{
"default": true,
- "id": 20384,
+ "id": 20853,
"properties": {
"lit": "false"
}
@@ -146583,7 +150980,7 @@
"states": [
{
"default": true,
- "id": 10257
+ "id": 10589
}
]
},
@@ -146591,7 +150988,7 @@
"states": [
{
"default": true,
- "id": 12109
+ "id": 12578
}
]
},
@@ -146599,7 +150996,7 @@
"states": [
{
"default": true,
- "id": 12125
+ "id": 12594
}
]
},
@@ -146615,31 +151012,162 @@
"states": [
{
"default": true,
- "id": 12063,
+ "id": 12532,
"properties": {
"facing": "north"
}
},
{
- "id": 12064,
+ "id": 12533,
"properties": {
"facing": "south"
}
},
{
- "id": 12065,
+ "id": 12534,
"properties": {
"facing": "west"
}
},
{
- "id": 12066,
+ "id": 12535,
"properties": {
"facing": "east"
}
}
]
},
+ "minecraft:pink_petals": {
+ "properties": {
+ "facing": [
+ "north",
+ "south",
+ "west",
+ "east"
+ ],
+ "flower_amount": [
+ "1",
+ "2",
+ "3",
+ "4"
+ ]
+ },
+ "states": [
+ {
+ "default": true,
+ "id": 21970,
+ "properties": {
+ "facing": "north",
+ "flower_amount": "1"
+ }
+ },
+ {
+ "id": 21971,
+ "properties": {
+ "facing": "north",
+ "flower_amount": "2"
+ }
+ },
+ {
+ "id": 21972,
+ "properties": {
+ "facing": "north",
+ "flower_amount": "3"
+ }
+ },
+ {
+ "id": 21973,
+ "properties": {
+ "facing": "north",
+ "flower_amount": "4"
+ }
+ },
+ {
+ "id": 21974,
+ "properties": {
+ "facing": "south",
+ "flower_amount": "1"
+ }
+ },
+ {
+ "id": 21975,
+ "properties": {
+ "facing": "south",
+ "flower_amount": "2"
+ }
+ },
+ {
+ "id": 21976,
+ "properties": {
+ "facing": "south",
+ "flower_amount": "3"
+ }
+ },
+ {
+ "id": 21977,
+ "properties": {
+ "facing": "south",
+ "flower_amount": "4"
+ }
+ },
+ {
+ "id": 21978,
+ "properties": {
+ "facing": "west",
+ "flower_amount": "1"
+ }
+ },
+ {
+ "id": 21979,
+ "properties": {
+ "facing": "west",
+ "flower_amount": "2"
+ }
+ },
+ {
+ "id": 21980,
+ "properties": {
+ "facing": "west",
+ "flower_amount": "3"
+ }
+ },
+ {
+ "id": 21981,
+ "properties": {
+ "facing": "west",
+ "flower_amount": "4"
+ }
+ },
+ {
+ "id": 21982,
+ "properties": {
+ "facing": "east",
+ "flower_amount": "1"
+ }
+ },
+ {
+ "id": 21983,
+ "properties": {
+ "facing": "east",
+ "flower_amount": "2"
+ }
+ },
+ {
+ "id": 21984,
+ "properties": {
+ "facing": "east",
+ "flower_amount": "3"
+ }
+ },
+ {
+ "id": 21985,
+ "properties": {
+ "facing": "east",
+ "flower_amount": "4"
+ }
+ }
+ ]
+ },
"minecraft:pink_shulker_box": {
"properties": {
"facing": [
@@ -146653,38 +151181,38 @@
},
"states": [
{
- "id": 11979,
+ "id": 12448,
"properties": {
"facing": "north"
}
},
{
- "id": 11980,
+ "id": 12449,
"properties": {
"facing": "east"
}
},
{
- "id": 11981,
+ "id": 12450,
"properties": {
"facing": "south"
}
},
{
- "id": 11982,
+ "id": 12451,
"properties": {
"facing": "west"
}
},
{
"default": true,
- "id": 11983,
+ "id": 12452,
"properties": {
"facing": "up"
}
},
{
- "id": 11984,
+ "id": 12453,
"properties": {
"facing": "down"
}
@@ -146695,7 +151223,7 @@
"states": [
{
"default": true,
- "id": 5786
+ "id": 5948
}
]
},
@@ -146724,7 +151252,7 @@
},
"states": [
{
- "id": 9168,
+ "id": 9420,
"properties": {
"east": "true",
"north": "true",
@@ -146734,7 +151262,7 @@
}
},
{
- "id": 9169,
+ "id": 9421,
"properties": {
"east": "true",
"north": "true",
@@ -146744,7 +151272,7 @@
}
},
{
- "id": 9170,
+ "id": 9422,
"properties": {
"east": "true",
"north": "true",
@@ -146754,7 +151282,7 @@
}
},
{
- "id": 9171,
+ "id": 9423,
"properties": {
"east": "true",
"north": "true",
@@ -146764,7 +151292,7 @@
}
},
{
- "id": 9172,
+ "id": 9424,
"properties": {
"east": "true",
"north": "true",
@@ -146774,7 +151302,7 @@
}
},
{
- "id": 9173,
+ "id": 9425,
"properties": {
"east": "true",
"north": "true",
@@ -146784,7 +151312,7 @@
}
},
{
- "id": 9174,
+ "id": 9426,
"properties": {
"east": "true",
"north": "true",
@@ -146794,7 +151322,7 @@
}
},
{
- "id": 9175,
+ "id": 9427,
"properties": {
"east": "true",
"north": "true",
@@ -146804,7 +151332,7 @@
}
},
{
- "id": 9176,
+ "id": 9428,
"properties": {
"east": "true",
"north": "false",
@@ -146814,7 +151342,7 @@
}
},
{
- "id": 9177,
+ "id": 9429,
"properties": {
"east": "true",
"north": "false",
@@ -146824,7 +151352,7 @@
}
},
{
- "id": 9178,
+ "id": 9430,
"properties": {
"east": "true",
"north": "false",
@@ -146834,7 +151362,7 @@
}
},
{
- "id": 9179,
+ "id": 9431,
"properties": {
"east": "true",
"north": "false",
@@ -146844,7 +151372,7 @@
}
},
{
- "id": 9180,
+ "id": 9432,
"properties": {
"east": "true",
"north": "false",
@@ -146854,7 +151382,7 @@
}
},
{
- "id": 9181,
+ "id": 9433,
"properties": {
"east": "true",
"north": "false",
@@ -146864,7 +151392,7 @@
}
},
{
- "id": 9182,
+ "id": 9434,
"properties": {
"east": "true",
"north": "false",
@@ -146874,7 +151402,7 @@
}
},
{
- "id": 9183,
+ "id": 9435,
"properties": {
"east": "true",
"north": "false",
@@ -146884,7 +151412,7 @@
}
},
{
- "id": 9184,
+ "id": 9436,
"properties": {
"east": "false",
"north": "true",
@@ -146894,7 +151422,7 @@
}
},
{
- "id": 9185,
+ "id": 9437,
"properties": {
"east": "false",
"north": "true",
@@ -146904,7 +151432,7 @@
}
},
{
- "id": 9186,
+ "id": 9438,
"properties": {
"east": "false",
"north": "true",
@@ -146914,7 +151442,7 @@
}
},
{
- "id": 9187,
+ "id": 9439,
"properties": {
"east": "false",
"north": "true",
@@ -146924,7 +151452,7 @@
}
},
{
- "id": 9188,
+ "id": 9440,
"properties": {
"east": "false",
"north": "true",
@@ -146934,7 +151462,7 @@
}
},
{
- "id": 9189,
+ "id": 9441,
"properties": {
"east": "false",
"north": "true",
@@ -146944,7 +151472,7 @@
}
},
{
- "id": 9190,
+ "id": 9442,
"properties": {
"east": "false",
"north": "true",
@@ -146954,7 +151482,7 @@
}
},
{
- "id": 9191,
+ "id": 9443,
"properties": {
"east": "false",
"north": "true",
@@ -146964,7 +151492,7 @@
}
},
{
- "id": 9192,
+ "id": 9444,
"properties": {
"east": "false",
"north": "false",
@@ -146974,7 +151502,7 @@
}
},
{
- "id": 9193,
+ "id": 9445,
"properties": {
"east": "false",
"north": "false",
@@ -146984,7 +151512,7 @@
}
},
{
- "id": 9194,
+ "id": 9446,
"properties": {
"east": "false",
"north": "false",
@@ -146994,7 +151522,7 @@
}
},
{
- "id": 9195,
+ "id": 9447,
"properties": {
"east": "false",
"north": "false",
@@ -147004,7 +151532,7 @@
}
},
{
- "id": 9196,
+ "id": 9448,
"properties": {
"east": "false",
"north": "false",
@@ -147014,7 +151542,7 @@
}
},
{
- "id": 9197,
+ "id": 9449,
"properties": {
"east": "false",
"north": "false",
@@ -147024,7 +151552,7 @@
}
},
{
- "id": 9198,
+ "id": 9450,
"properties": {
"east": "false",
"north": "false",
@@ -147035,7 +151563,7 @@
},
{
"default": true,
- "id": 9199,
+ "id": 9451,
"properties": {
"east": "false",
"north": "false",
@@ -147050,7 +151578,7 @@
"states": [
{
"default": true,
- "id": 8966
+ "id": 9218
}
]
},
@@ -147058,7 +151586,7 @@
"states": [
{
"default": true,
- "id": 2032
+ "id": 2080
}
]
},
@@ -147074,25 +151602,25 @@
"states": [
{
"default": true,
- "id": 10562,
+ "id": 10894,
"properties": {
"facing": "north"
}
},
{
- "id": 10563,
+ "id": 10895,
"properties": {
"facing": "south"
}
},
{
- "id": 10564,
+ "id": 10896,
"properties": {
"facing": "west"
}
},
{
- "id": 10565,
+ "id": 10897,
"properties": {
"facing": "east"
}
@@ -147103,7 +151631,7 @@
"states": [
{
"default": true,
- "id": 2002
+ "id": 2049
}
]
},
@@ -147124,42 +151652,42 @@
},
"states": [
{
- "id": 1960,
+ "id": 2007,
"properties": {
"extended": "true",
"facing": "north"
}
},
{
- "id": 1961,
+ "id": 2008,
"properties": {
"extended": "true",
"facing": "east"
}
},
{
- "id": 1962,
+ "id": 2009,
"properties": {
"extended": "true",
"facing": "south"
}
},
{
- "id": 1963,
+ "id": 2010,
"properties": {
"extended": "true",
"facing": "west"
}
},
{
- "id": 1964,
+ "id": 2011,
"properties": {
"extended": "true",
"facing": "up"
}
},
{
- "id": 1965,
+ "id": 2012,
"properties": {
"extended": "true",
"facing": "down"
@@ -147167,42 +151695,42 @@
},
{
"default": true,
- "id": 1966,
+ "id": 2013,
"properties": {
"extended": "false",
"facing": "north"
}
},
{
- "id": 1967,
+ "id": 2014,
"properties": {
"extended": "false",
"facing": "east"
}
},
{
- "id": 1968,
+ "id": 2015,
"properties": {
"extended": "false",
"facing": "south"
}
},
{
- "id": 1969,
+ "id": 2016,
"properties": {
"extended": "false",
"facing": "west"
}
},
{
- "id": 1970,
+ "id": 2017,
"properties": {
"extended": "false",
"facing": "up"
}
},
{
- "id": 1971,
+ "id": 2018,
"properties": {
"extended": "false",
"facing": "down"
@@ -147231,7 +151759,7 @@
},
"states": [
{
- "id": 1972,
+ "id": 2019,
"properties": {
"type": "normal",
"facing": "north",
@@ -147239,7 +151767,7 @@
}
},
{
- "id": 1973,
+ "id": 2020,
"properties": {
"type": "sticky",
"facing": "north",
@@ -147248,7 +151776,7 @@
},
{
"default": true,
- "id": 1974,
+ "id": 2021,
"properties": {
"type": "normal",
"facing": "north",
@@ -147256,7 +151784,7 @@
}
},
{
- "id": 1975,
+ "id": 2022,
"properties": {
"type": "sticky",
"facing": "north",
@@ -147264,7 +151792,7 @@
}
},
{
- "id": 1976,
+ "id": 2023,
"properties": {
"type": "normal",
"facing": "east",
@@ -147272,7 +151800,7 @@
}
},
{
- "id": 1977,
+ "id": 2024,
"properties": {
"type": "sticky",
"facing": "east",
@@ -147280,7 +151808,7 @@
}
},
{
- "id": 1978,
+ "id": 2025,
"properties": {
"type": "normal",
"facing": "east",
@@ -147288,7 +151816,7 @@
}
},
{
- "id": 1979,
+ "id": 2026,
"properties": {
"type": "sticky",
"facing": "east",
@@ -147296,7 +151824,7 @@
}
},
{
- "id": 1980,
+ "id": 2027,
"properties": {
"type": "normal",
"facing": "south",
@@ -147304,7 +151832,7 @@
}
},
{
- "id": 1981,
+ "id": 2028,
"properties": {
"type": "sticky",
"facing": "south",
@@ -147312,7 +151840,7 @@
}
},
{
- "id": 1982,
+ "id": 2029,
"properties": {
"type": "normal",
"facing": "south",
@@ -147320,7 +151848,7 @@
}
},
{
- "id": 1983,
+ "id": 2030,
"properties": {
"type": "sticky",
"facing": "south",
@@ -147328,7 +151856,7 @@
}
},
{
- "id": 1984,
+ "id": 2031,
"properties": {
"type": "normal",
"facing": "west",
@@ -147336,7 +151864,7 @@
}
},
{
- "id": 1985,
+ "id": 2032,
"properties": {
"type": "sticky",
"facing": "west",
@@ -147344,7 +151872,7 @@
}
},
{
- "id": 1986,
+ "id": 2033,
"properties": {
"type": "normal",
"facing": "west",
@@ -147352,7 +151880,7 @@
}
},
{
- "id": 1987,
+ "id": 2034,
"properties": {
"type": "sticky",
"facing": "west",
@@ -147360,7 +151888,7 @@
}
},
{
- "id": 1988,
+ "id": 2035,
"properties": {
"type": "normal",
"facing": "up",
@@ -147368,7 +151896,7 @@
}
},
{
- "id": 1989,
+ "id": 2036,
"properties": {
"type": "sticky",
"facing": "up",
@@ -147376,7 +151904,7 @@
}
},
{
- "id": 1990,
+ "id": 2037,
"properties": {
"type": "normal",
"facing": "up",
@@ -147384,7 +151912,7 @@
}
},
{
- "id": 1991,
+ "id": 2038,
"properties": {
"type": "sticky",
"facing": "up",
@@ -147392,7 +151920,7 @@
}
},
{
- "id": 1992,
+ "id": 2039,
"properties": {
"type": "normal",
"facing": "down",
@@ -147400,7 +151928,7 @@
}
},
{
- "id": 1993,
+ "id": 2040,
"properties": {
"type": "sticky",
"facing": "down",
@@ -147408,7 +151936,7 @@
}
},
{
- "id": 1994,
+ "id": 2041,
"properties": {
"type": "normal",
"facing": "down",
@@ -147416,7 +151944,7 @@
}
},
{
- "id": 1995,
+ "id": 2042,
"properties": {
"type": "sticky",
"facing": "down",
@@ -147449,97 +151977,97 @@
"states": [
{
"default": true,
- "id": 8631,
+ "id": 8883,
"properties": {
"rotation": "0"
}
},
{
- "id": 8632,
+ "id": 8884,
"properties": {
"rotation": "1"
}
},
{
- "id": 8633,
+ "id": 8885,
"properties": {
"rotation": "2"
}
},
{
- "id": 8634,
+ "id": 8886,
"properties": {
"rotation": "3"
}
},
{
- "id": 8635,
+ "id": 8887,
"properties": {
"rotation": "4"
}
},
{
- "id": 8636,
+ "id": 8888,
"properties": {
"rotation": "5"
}
},
{
- "id": 8637,
+ "id": 8889,
"properties": {
"rotation": "6"
}
},
{
- "id": 8638,
+ "id": 8890,
"properties": {
"rotation": "7"
}
},
{
- "id": 8639,
+ "id": 8891,
"properties": {
"rotation": "8"
}
},
{
- "id": 8640,
+ "id": 8892,
"properties": {
"rotation": "9"
}
},
{
- "id": 8641,
+ "id": 8893,
"properties": {
"rotation": "10"
}
},
{
- "id": 8642,
+ "id": 8894,
"properties": {
"rotation": "11"
}
},
{
- "id": 8643,
+ "id": 8895,
"properties": {
"rotation": "12"
}
},
{
- "id": 8644,
+ "id": 8896,
"properties": {
"rotation": "13"
}
},
{
- "id": 8645,
+ "id": 8897,
"properties": {
"rotation": "14"
}
},
{
- "id": 8646,
+ "id": 8898,
"properties": {
"rotation": "15"
}
@@ -147558,25 +152086,25 @@
"states": [
{
"default": true,
- "id": 8647,
+ "id": 8899,
"properties": {
"facing": "north"
}
},
{
- "id": 8648,
+ "id": 8900,
"properties": {
"facing": "south"
}
},
{
- "id": 8649,
+ "id": 8901,
"properties": {
"facing": "west"
}
},
{
- "id": 8650,
+ "id": 8902,
"properties": {
"facing": "east"
}
@@ -147626,7 +152154,7 @@
},
"states": [
{
- "id": 21422,
+ "id": 21891,
"properties": {
"thickness": "tip_merge",
"vertical_direction": "up",
@@ -147634,7 +152162,7 @@
}
},
{
- "id": 21423,
+ "id": 21892,
"properties": {
"thickness": "tip_merge",
"vertical_direction": "up",
@@ -147642,7 +152170,7 @@
}
},
{
- "id": 21424,
+ "id": 21893,
"properties": {
"thickness": "tip_merge",
"vertical_direction": "down",
@@ -147650,7 +152178,7 @@
}
},
{
- "id": 21425,
+ "id": 21894,
"properties": {
"thickness": "tip_merge",
"vertical_direction": "down",
@@ -147658,7 +152186,7 @@
}
},
{
- "id": 21426,
+ "id": 21895,
"properties": {
"thickness": "tip",
"vertical_direction": "up",
@@ -147667,7 +152195,7 @@
},
{
"default": true,
- "id": 21427,
+ "id": 21896,
"properties": {
"thickness": "tip",
"vertical_direction": "up",
@@ -147675,7 +152203,7 @@
}
},
{
- "id": 21428,
+ "id": 21897,
"properties": {
"thickness": "tip",
"vertical_direction": "down",
@@ -147683,7 +152211,7 @@
}
},
{
- "id": 21429,
+ "id": 21898,
"properties": {
"thickness": "tip",
"vertical_direction": "down",
@@ -147691,7 +152219,7 @@
}
},
{
- "id": 21430,
+ "id": 21899,
"properties": {
"thickness": "frustum",
"vertical_direction": "up",
@@ -147699,7 +152227,7 @@
}
},
{
- "id": 21431,
+ "id": 21900,
"properties": {
"thickness": "frustum",
"vertical_direction": "up",
@@ -147707,7 +152235,7 @@
}
},
{
- "id": 21432,
+ "id": 21901,
"properties": {
"thickness": "frustum",
"vertical_direction": "down",
@@ -147715,7 +152243,7 @@
}
},
{
- "id": 21433,
+ "id": 21902,
"properties": {
"thickness": "frustum",
"vertical_direction": "down",
@@ -147723,7 +152251,7 @@
}
},
{
- "id": 21434,
+ "id": 21903,
"properties": {
"thickness": "middle",
"vertical_direction": "up",
@@ -147731,7 +152259,7 @@
}
},
{
- "id": 21435,
+ "id": 21904,
"properties": {
"thickness": "middle",
"vertical_direction": "up",
@@ -147739,7 +152267,7 @@
}
},
{
- "id": 21436,
+ "id": 21905,
"properties": {
"thickness": "middle",
"vertical_direction": "down",
@@ -147747,7 +152275,7 @@
}
},
{
- "id": 21437,
+ "id": 21906,
"properties": {
"thickness": "middle",
"vertical_direction": "down",
@@ -147755,7 +152283,7 @@
}
},
{
- "id": 21438,
+ "id": 21907,
"properties": {
"thickness": "base",
"vertical_direction": "up",
@@ -147763,7 +152291,7 @@
}
},
{
- "id": 21439,
+ "id": 21908,
"properties": {
"thickness": "base",
"vertical_direction": "up",
@@ -147771,7 +152299,7 @@
}
},
{
- "id": 21440,
+ "id": 21909,
"properties": {
"thickness": "base",
"vertical_direction": "down",
@@ -147779,7 +152307,7 @@
}
},
{
- "id": 21441,
+ "id": 21910,
"properties": {
"thickness": "base",
"vertical_direction": "down",
@@ -147810,21 +152338,21 @@
},
"states": [
{
- "id": 13520,
+ "id": 13989,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 13521,
+ "id": 13990,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 13522,
+ "id": 13991,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -147832,21 +152360,21 @@
},
{
"default": true,
- "id": 13523,
+ "id": 13992,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 13524,
+ "id": 13993,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 13525,
+ "id": 13994,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -147880,7 +152408,7 @@
},
"states": [
{
- "id": 13294,
+ "id": 13763,
"properties": {
"facing": "north",
"half": "top",
@@ -147889,7 +152417,7 @@
}
},
{
- "id": 13295,
+ "id": 13764,
"properties": {
"facing": "north",
"half": "top",
@@ -147898,7 +152426,7 @@
}
},
{
- "id": 13296,
+ "id": 13765,
"properties": {
"facing": "north",
"half": "top",
@@ -147907,7 +152435,7 @@
}
},
{
- "id": 13297,
+ "id": 13766,
"properties": {
"facing": "north",
"half": "top",
@@ -147916,7 +152444,7 @@
}
},
{
- "id": 13298,
+ "id": 13767,
"properties": {
"facing": "north",
"half": "top",
@@ -147925,7 +152453,7 @@
}
},
{
- "id": 13299,
+ "id": 13768,
"properties": {
"facing": "north",
"half": "top",
@@ -147934,7 +152462,7 @@
}
},
{
- "id": 13300,
+ "id": 13769,
"properties": {
"facing": "north",
"half": "top",
@@ -147943,7 +152471,7 @@
}
},
{
- "id": 13301,
+ "id": 13770,
"properties": {
"facing": "north",
"half": "top",
@@ -147952,7 +152480,7 @@
}
},
{
- "id": 13302,
+ "id": 13771,
"properties": {
"facing": "north",
"half": "top",
@@ -147961,7 +152489,7 @@
}
},
{
- "id": 13303,
+ "id": 13772,
"properties": {
"facing": "north",
"half": "top",
@@ -147970,7 +152498,7 @@
}
},
{
- "id": 13304,
+ "id": 13773,
"properties": {
"facing": "north",
"half": "bottom",
@@ -147980,7 +152508,7 @@
},
{
"default": true,
- "id": 13305,
+ "id": 13774,
"properties": {
"facing": "north",
"half": "bottom",
@@ -147989,7 +152517,7 @@
}
},
{
- "id": 13306,
+ "id": 13775,
"properties": {
"facing": "north",
"half": "bottom",
@@ -147998,7 +152526,7 @@
}
},
{
- "id": 13307,
+ "id": 13776,
"properties": {
"facing": "north",
"half": "bottom",
@@ -148007,7 +152535,7 @@
}
},
{
- "id": 13308,
+ "id": 13777,
"properties": {
"facing": "north",
"half": "bottom",
@@ -148016,7 +152544,7 @@
}
},
{
- "id": 13309,
+ "id": 13778,
"properties": {
"facing": "north",
"half": "bottom",
@@ -148025,7 +152553,7 @@
}
},
{
- "id": 13310,
+ "id": 13779,
"properties": {
"facing": "north",
"half": "bottom",
@@ -148034,7 +152562,7 @@
}
},
{
- "id": 13311,
+ "id": 13780,
"properties": {
"facing": "north",
"half": "bottom",
@@ -148043,7 +152571,7 @@
}
},
{
- "id": 13312,
+ "id": 13781,
"properties": {
"facing": "north",
"half": "bottom",
@@ -148052,7 +152580,7 @@
}
},
{
- "id": 13313,
+ "id": 13782,
"properties": {
"facing": "north",
"half": "bottom",
@@ -148061,7 +152589,7 @@
}
},
{
- "id": 13314,
+ "id": 13783,
"properties": {
"facing": "south",
"half": "top",
@@ -148070,7 +152598,7 @@
}
},
{
- "id": 13315,
+ "id": 13784,
"properties": {
"facing": "south",
"half": "top",
@@ -148079,7 +152607,7 @@
}
},
{
- "id": 13316,
+ "id": 13785,
"properties": {
"facing": "south",
"half": "top",
@@ -148088,7 +152616,7 @@
}
},
{
- "id": 13317,
+ "id": 13786,
"properties": {
"facing": "south",
"half": "top",
@@ -148097,7 +152625,7 @@
}
},
{
- "id": 13318,
+ "id": 13787,
"properties": {
"facing": "south",
"half": "top",
@@ -148106,7 +152634,7 @@
}
},
{
- "id": 13319,
+ "id": 13788,
"properties": {
"facing": "south",
"half": "top",
@@ -148115,7 +152643,7 @@
}
},
{
- "id": 13320,
+ "id": 13789,
"properties": {
"facing": "south",
"half": "top",
@@ -148124,7 +152652,7 @@
}
},
{
- "id": 13321,
+ "id": 13790,
"properties": {
"facing": "south",
"half": "top",
@@ -148133,7 +152661,7 @@
}
},
{
- "id": 13322,
+ "id": 13791,
"properties": {
"facing": "south",
"half": "top",
@@ -148142,7 +152670,7 @@
}
},
{
- "id": 13323,
+ "id": 13792,
"properties": {
"facing": "south",
"half": "top",
@@ -148151,7 +152679,7 @@
}
},
{
- "id": 13324,
+ "id": 13793,
"properties": {
"facing": "south",
"half": "bottom",
@@ -148160,7 +152688,7 @@
}
},
{
- "id": 13325,
+ "id": 13794,
"properties": {
"facing": "south",
"half": "bottom",
@@ -148169,7 +152697,7 @@
}
},
{
- "id": 13326,
+ "id": 13795,
"properties": {
"facing": "south",
"half": "bottom",
@@ -148178,7 +152706,7 @@
}
},
{
- "id": 13327,
+ "id": 13796,
"properties": {
"facing": "south",
"half": "bottom",
@@ -148187,7 +152715,7 @@
}
},
{
- "id": 13328,
+ "id": 13797,
"properties": {
"facing": "south",
"half": "bottom",
@@ -148196,7 +152724,7 @@
}
},
{
- "id": 13329,
+ "id": 13798,
"properties": {
"facing": "south",
"half": "bottom",
@@ -148205,7 +152733,7 @@
}
},
{
- "id": 13330,
+ "id": 13799,
"properties": {
"facing": "south",
"half": "bottom",
@@ -148214,7 +152742,7 @@
}
},
{
- "id": 13331,
+ "id": 13800,
"properties": {
"facing": "south",
"half": "bottom",
@@ -148223,7 +152751,7 @@
}
},
{
- "id": 13332,
+ "id": 13801,
"properties": {
"facing": "south",
"half": "bottom",
@@ -148232,7 +152760,7 @@
}
},
{
- "id": 13333,
+ "id": 13802,
"properties": {
"facing": "south",
"half": "bottom",
@@ -148241,7 +152769,7 @@
}
},
{
- "id": 13334,
+ "id": 13803,
"properties": {
"facing": "west",
"half": "top",
@@ -148250,7 +152778,7 @@
}
},
{
- "id": 13335,
+ "id": 13804,
"properties": {
"facing": "west",
"half": "top",
@@ -148259,7 +152787,7 @@
}
},
{
- "id": 13336,
+ "id": 13805,
"properties": {
"facing": "west",
"half": "top",
@@ -148268,7 +152796,7 @@
}
},
{
- "id": 13337,
+ "id": 13806,
"properties": {
"facing": "west",
"half": "top",
@@ -148277,7 +152805,7 @@
}
},
{
- "id": 13338,
+ "id": 13807,
"properties": {
"facing": "west",
"half": "top",
@@ -148286,7 +152814,7 @@
}
},
{
- "id": 13339,
+ "id": 13808,
"properties": {
"facing": "west",
"half": "top",
@@ -148295,7 +152823,7 @@
}
},
{
- "id": 13340,
+ "id": 13809,
"properties": {
"facing": "west",
"half": "top",
@@ -148304,7 +152832,7 @@
}
},
{
- "id": 13341,
+ "id": 13810,
"properties": {
"facing": "west",
"half": "top",
@@ -148313,7 +152841,7 @@
}
},
{
- "id": 13342,
+ "id": 13811,
"properties": {
"facing": "west",
"half": "top",
@@ -148322,7 +152850,7 @@
}
},
{
- "id": 13343,
+ "id": 13812,
"properties": {
"facing": "west",
"half": "top",
@@ -148331,7 +152859,7 @@
}
},
{
- "id": 13344,
+ "id": 13813,
"properties": {
"facing": "west",
"half": "bottom",
@@ -148340,7 +152868,7 @@
}
},
{
- "id": 13345,
+ "id": 13814,
"properties": {
"facing": "west",
"half": "bottom",
@@ -148349,7 +152877,7 @@
}
},
{
- "id": 13346,
+ "id": 13815,
"properties": {
"facing": "west",
"half": "bottom",
@@ -148358,7 +152886,7 @@
}
},
{
- "id": 13347,
+ "id": 13816,
"properties": {
"facing": "west",
"half": "bottom",
@@ -148367,7 +152895,7 @@
}
},
{
- "id": 13348,
+ "id": 13817,
"properties": {
"facing": "west",
"half": "bottom",
@@ -148376,7 +152904,7 @@
}
},
{
- "id": 13349,
+ "id": 13818,
"properties": {
"facing": "west",
"half": "bottom",
@@ -148385,7 +152913,7 @@
}
},
{
- "id": 13350,
+ "id": 13819,
"properties": {
"facing": "west",
"half": "bottom",
@@ -148394,7 +152922,7 @@
}
},
{
- "id": 13351,
+ "id": 13820,
"properties": {
"facing": "west",
"half": "bottom",
@@ -148403,7 +152931,7 @@
}
},
{
- "id": 13352,
+ "id": 13821,
"properties": {
"facing": "west",
"half": "bottom",
@@ -148412,7 +152940,7 @@
}
},
{
- "id": 13353,
+ "id": 13822,
"properties": {
"facing": "west",
"half": "bottom",
@@ -148421,7 +152949,7 @@
}
},
{
- "id": 13354,
+ "id": 13823,
"properties": {
"facing": "east",
"half": "top",
@@ -148430,7 +152958,7 @@
}
},
{
- "id": 13355,
+ "id": 13824,
"properties": {
"facing": "east",
"half": "top",
@@ -148439,7 +152967,7 @@
}
},
{
- "id": 13356,
+ "id": 13825,
"properties": {
"facing": "east",
"half": "top",
@@ -148448,7 +152976,7 @@
}
},
{
- "id": 13357,
+ "id": 13826,
"properties": {
"facing": "east",
"half": "top",
@@ -148457,7 +152985,7 @@
}
},
{
- "id": 13358,
+ "id": 13827,
"properties": {
"facing": "east",
"half": "top",
@@ -148466,7 +152994,7 @@
}
},
{
- "id": 13359,
+ "id": 13828,
"properties": {
"facing": "east",
"half": "top",
@@ -148475,7 +153003,7 @@
}
},
{
- "id": 13360,
+ "id": 13829,
"properties": {
"facing": "east",
"half": "top",
@@ -148484,7 +153012,7 @@
}
},
{
- "id": 13361,
+ "id": 13830,
"properties": {
"facing": "east",
"half": "top",
@@ -148493,7 +153021,7 @@
}
},
{
- "id": 13362,
+ "id": 13831,
"properties": {
"facing": "east",
"half": "top",
@@ -148502,7 +153030,7 @@
}
},
{
- "id": 13363,
+ "id": 13832,
"properties": {
"facing": "east",
"half": "top",
@@ -148511,7 +153039,7 @@
}
},
{
- "id": 13364,
+ "id": 13833,
"properties": {
"facing": "east",
"half": "bottom",
@@ -148520,7 +153048,7 @@
}
},
{
- "id": 13365,
+ "id": 13834,
"properties": {
"facing": "east",
"half": "bottom",
@@ -148529,7 +153057,7 @@
}
},
{
- "id": 13366,
+ "id": 13835,
"properties": {
"facing": "east",
"half": "bottom",
@@ -148538,7 +153066,7 @@
}
},
{
- "id": 13367,
+ "id": 13836,
"properties": {
"facing": "east",
"half": "bottom",
@@ -148547,7 +153075,7 @@
}
},
{
- "id": 13368,
+ "id": 13837,
"properties": {
"facing": "east",
"half": "bottom",
@@ -148556,7 +153084,7 @@
}
},
{
- "id": 13369,
+ "id": 13838,
"properties": {
"facing": "east",
"half": "bottom",
@@ -148565,7 +153093,7 @@
}
},
{
- "id": 13370,
+ "id": 13839,
"properties": {
"facing": "east",
"half": "bottom",
@@ -148574,7 +153102,7 @@
}
},
{
- "id": 13371,
+ "id": 13840,
"properties": {
"facing": "east",
"half": "bottom",
@@ -148583,7 +153111,7 @@
}
},
{
- "id": 13372,
+ "id": 13841,
"properties": {
"facing": "east",
"half": "bottom",
@@ -148592,7 +153120,7 @@
}
},
{
- "id": 13373,
+ "id": 13842,
"properties": {
"facing": "east",
"half": "bottom",
@@ -148612,20 +153140,20 @@
},
"states": [
{
- "id": 5690,
+ "id": 5852,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 5691,
+ "id": 5853,
"properties": {
"axis": "y"
}
},
{
- "id": 5692,
+ "id": 5854,
"properties": {
"axis": "z"
}
@@ -148636,7 +153164,7 @@
"states": [
{
"default": true,
- "id": 19243
+ "id": 19712
}
]
},
@@ -148654,21 +153182,21 @@
},
"states": [
{
- "id": 19247,
+ "id": 19716,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 19248,
+ "id": 19717,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 19249,
+ "id": 19718,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -148676,21 +153204,21 @@
},
{
"default": true,
- "id": 19250,
+ "id": 19719,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 19251,
+ "id": 19720,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 19252,
+ "id": 19721,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -148724,7 +153252,7 @@
},
"states": [
{
- "id": 19253,
+ "id": 19722,
"properties": {
"facing": "north",
"half": "top",
@@ -148733,7 +153261,7 @@
}
},
{
- "id": 19254,
+ "id": 19723,
"properties": {
"facing": "north",
"half": "top",
@@ -148742,7 +153270,7 @@
}
},
{
- "id": 19255,
+ "id": 19724,
"properties": {
"facing": "north",
"half": "top",
@@ -148751,7 +153279,7 @@
}
},
{
- "id": 19256,
+ "id": 19725,
"properties": {
"facing": "north",
"half": "top",
@@ -148760,7 +153288,7 @@
}
},
{
- "id": 19257,
+ "id": 19726,
"properties": {
"facing": "north",
"half": "top",
@@ -148769,7 +153297,7 @@
}
},
{
- "id": 19258,
+ "id": 19727,
"properties": {
"facing": "north",
"half": "top",
@@ -148778,7 +153306,7 @@
}
},
{
- "id": 19259,
+ "id": 19728,
"properties": {
"facing": "north",
"half": "top",
@@ -148787,7 +153315,7 @@
}
},
{
- "id": 19260,
+ "id": 19729,
"properties": {
"facing": "north",
"half": "top",
@@ -148796,7 +153324,7 @@
}
},
{
- "id": 19261,
+ "id": 19730,
"properties": {
"facing": "north",
"half": "top",
@@ -148805,7 +153333,7 @@
}
},
{
- "id": 19262,
+ "id": 19731,
"properties": {
"facing": "north",
"half": "top",
@@ -148814,7 +153342,7 @@
}
},
{
- "id": 19263,
+ "id": 19732,
"properties": {
"facing": "north",
"half": "bottom",
@@ -148824,7 +153352,7 @@
},
{
"default": true,
- "id": 19264,
+ "id": 19733,
"properties": {
"facing": "north",
"half": "bottom",
@@ -148833,7 +153361,7 @@
}
},
{
- "id": 19265,
+ "id": 19734,
"properties": {
"facing": "north",
"half": "bottom",
@@ -148842,7 +153370,7 @@
}
},
{
- "id": 19266,
+ "id": 19735,
"properties": {
"facing": "north",
"half": "bottom",
@@ -148851,7 +153379,7 @@
}
},
{
- "id": 19267,
+ "id": 19736,
"properties": {
"facing": "north",
"half": "bottom",
@@ -148860,7 +153388,7 @@
}
},
{
- "id": 19268,
+ "id": 19737,
"properties": {
"facing": "north",
"half": "bottom",
@@ -148869,7 +153397,7 @@
}
},
{
- "id": 19269,
+ "id": 19738,
"properties": {
"facing": "north",
"half": "bottom",
@@ -148878,7 +153406,7 @@
}
},
{
- "id": 19270,
+ "id": 19739,
"properties": {
"facing": "north",
"half": "bottom",
@@ -148887,7 +153415,7 @@
}
},
{
- "id": 19271,
+ "id": 19740,
"properties": {
"facing": "north",
"half": "bottom",
@@ -148896,7 +153424,7 @@
}
},
{
- "id": 19272,
+ "id": 19741,
"properties": {
"facing": "north",
"half": "bottom",
@@ -148905,7 +153433,7 @@
}
},
{
- "id": 19273,
+ "id": 19742,
"properties": {
"facing": "south",
"half": "top",
@@ -148914,7 +153442,7 @@
}
},
{
- "id": 19274,
+ "id": 19743,
"properties": {
"facing": "south",
"half": "top",
@@ -148923,7 +153451,7 @@
}
},
{
- "id": 19275,
+ "id": 19744,
"properties": {
"facing": "south",
"half": "top",
@@ -148932,7 +153460,7 @@
}
},
{
- "id": 19276,
+ "id": 19745,
"properties": {
"facing": "south",
"half": "top",
@@ -148941,7 +153469,7 @@
}
},
{
- "id": 19277,
+ "id": 19746,
"properties": {
"facing": "south",
"half": "top",
@@ -148950,7 +153478,7 @@
}
},
{
- "id": 19278,
+ "id": 19747,
"properties": {
"facing": "south",
"half": "top",
@@ -148959,7 +153487,7 @@
}
},
{
- "id": 19279,
+ "id": 19748,
"properties": {
"facing": "south",
"half": "top",
@@ -148968,7 +153496,7 @@
}
},
{
- "id": 19280,
+ "id": 19749,
"properties": {
"facing": "south",
"half": "top",
@@ -148977,7 +153505,7 @@
}
},
{
- "id": 19281,
+ "id": 19750,
"properties": {
"facing": "south",
"half": "top",
@@ -148986,7 +153514,7 @@
}
},
{
- "id": 19282,
+ "id": 19751,
"properties": {
"facing": "south",
"half": "top",
@@ -148995,7 +153523,7 @@
}
},
{
- "id": 19283,
+ "id": 19752,
"properties": {
"facing": "south",
"half": "bottom",
@@ -149004,7 +153532,7 @@
}
},
{
- "id": 19284,
+ "id": 19753,
"properties": {
"facing": "south",
"half": "bottom",
@@ -149013,7 +153541,7 @@
}
},
{
- "id": 19285,
+ "id": 19754,
"properties": {
"facing": "south",
"half": "bottom",
@@ -149022,7 +153550,7 @@
}
},
{
- "id": 19286,
+ "id": 19755,
"properties": {
"facing": "south",
"half": "bottom",
@@ -149031,7 +153559,7 @@
}
},
{
- "id": 19287,
+ "id": 19756,
"properties": {
"facing": "south",
"half": "bottom",
@@ -149040,7 +153568,7 @@
}
},
{
- "id": 19288,
+ "id": 19757,
"properties": {
"facing": "south",
"half": "bottom",
@@ -149049,7 +153577,7 @@
}
},
{
- "id": 19289,
+ "id": 19758,
"properties": {
"facing": "south",
"half": "bottom",
@@ -149058,7 +153586,7 @@
}
},
{
- "id": 19290,
+ "id": 19759,
"properties": {
"facing": "south",
"half": "bottom",
@@ -149067,7 +153595,7 @@
}
},
{
- "id": 19291,
+ "id": 19760,
"properties": {
"facing": "south",
"half": "bottom",
@@ -149076,7 +153604,7 @@
}
},
{
- "id": 19292,
+ "id": 19761,
"properties": {
"facing": "south",
"half": "bottom",
@@ -149085,7 +153613,7 @@
}
},
{
- "id": 19293,
+ "id": 19762,
"properties": {
"facing": "west",
"half": "top",
@@ -149094,7 +153622,7 @@
}
},
{
- "id": 19294,
+ "id": 19763,
"properties": {
"facing": "west",
"half": "top",
@@ -149103,7 +153631,7 @@
}
},
{
- "id": 19295,
+ "id": 19764,
"properties": {
"facing": "west",
"half": "top",
@@ -149112,7 +153640,7 @@
}
},
{
- "id": 19296,
+ "id": 19765,
"properties": {
"facing": "west",
"half": "top",
@@ -149121,7 +153649,7 @@
}
},
{
- "id": 19297,
+ "id": 19766,
"properties": {
"facing": "west",
"half": "top",
@@ -149130,7 +153658,7 @@
}
},
{
- "id": 19298,
+ "id": 19767,
"properties": {
"facing": "west",
"half": "top",
@@ -149139,7 +153667,7 @@
}
},
{
- "id": 19299,
+ "id": 19768,
"properties": {
"facing": "west",
"half": "top",
@@ -149148,7 +153676,7 @@
}
},
{
- "id": 19300,
+ "id": 19769,
"properties": {
"facing": "west",
"half": "top",
@@ -149157,7 +153685,7 @@
}
},
{
- "id": 19301,
+ "id": 19770,
"properties": {
"facing": "west",
"half": "top",
@@ -149166,7 +153694,7 @@
}
},
{
- "id": 19302,
+ "id": 19771,
"properties": {
"facing": "west",
"half": "top",
@@ -149175,7 +153703,7 @@
}
},
{
- "id": 19303,
+ "id": 19772,
"properties": {
"facing": "west",
"half": "bottom",
@@ -149184,7 +153712,7 @@
}
},
{
- "id": 19304,
+ "id": 19773,
"properties": {
"facing": "west",
"half": "bottom",
@@ -149193,7 +153721,7 @@
}
},
{
- "id": 19305,
+ "id": 19774,
"properties": {
"facing": "west",
"half": "bottom",
@@ -149202,7 +153730,7 @@
}
},
{
- "id": 19306,
+ "id": 19775,
"properties": {
"facing": "west",
"half": "bottom",
@@ -149211,7 +153739,7 @@
}
},
{
- "id": 19307,
+ "id": 19776,
"properties": {
"facing": "west",
"half": "bottom",
@@ -149220,7 +153748,7 @@
}
},
{
- "id": 19308,
+ "id": 19777,
"properties": {
"facing": "west",
"half": "bottom",
@@ -149229,7 +153757,7 @@
}
},
{
- "id": 19309,
+ "id": 19778,
"properties": {
"facing": "west",
"half": "bottom",
@@ -149238,7 +153766,7 @@
}
},
{
- "id": 19310,
+ "id": 19779,
"properties": {
"facing": "west",
"half": "bottom",
@@ -149247,7 +153775,7 @@
}
},
{
- "id": 19311,
+ "id": 19780,
"properties": {
"facing": "west",
"half": "bottom",
@@ -149256,7 +153784,7 @@
}
},
{
- "id": 19312,
+ "id": 19781,
"properties": {
"facing": "west",
"half": "bottom",
@@ -149265,7 +153793,7 @@
}
},
{
- "id": 19313,
+ "id": 19782,
"properties": {
"facing": "east",
"half": "top",
@@ -149274,7 +153802,7 @@
}
},
{
- "id": 19314,
+ "id": 19783,
"properties": {
"facing": "east",
"half": "top",
@@ -149283,7 +153811,7 @@
}
},
{
- "id": 19315,
+ "id": 19784,
"properties": {
"facing": "east",
"half": "top",
@@ -149292,7 +153820,7 @@
}
},
{
- "id": 19316,
+ "id": 19785,
"properties": {
"facing": "east",
"half": "top",
@@ -149301,7 +153829,7 @@
}
},
{
- "id": 19317,
+ "id": 19786,
"properties": {
"facing": "east",
"half": "top",
@@ -149310,7 +153838,7 @@
}
},
{
- "id": 19318,
+ "id": 19787,
"properties": {
"facing": "east",
"half": "top",
@@ -149319,7 +153847,7 @@
}
},
{
- "id": 19319,
+ "id": 19788,
"properties": {
"facing": "east",
"half": "top",
@@ -149328,7 +153856,7 @@
}
},
{
- "id": 19320,
+ "id": 19789,
"properties": {
"facing": "east",
"half": "top",
@@ -149337,7 +153865,7 @@
}
},
{
- "id": 19321,
+ "id": 19790,
"properties": {
"facing": "east",
"half": "top",
@@ -149346,7 +153874,7 @@
}
},
{
- "id": 19322,
+ "id": 19791,
"properties": {
"facing": "east",
"half": "top",
@@ -149355,7 +153883,7 @@
}
},
{
- "id": 19323,
+ "id": 19792,
"properties": {
"facing": "east",
"half": "bottom",
@@ -149364,7 +153892,7 @@
}
},
{
- "id": 19324,
+ "id": 19793,
"properties": {
"facing": "east",
"half": "bottom",
@@ -149373,7 +153901,7 @@
}
},
{
- "id": 19325,
+ "id": 19794,
"properties": {
"facing": "east",
"half": "bottom",
@@ -149382,7 +153910,7 @@
}
},
{
- "id": 19326,
+ "id": 19795,
"properties": {
"facing": "east",
"half": "bottom",
@@ -149391,7 +153919,7 @@
}
},
{
- "id": 19327,
+ "id": 19796,
"properties": {
"facing": "east",
"half": "bottom",
@@ -149400,7 +153928,7 @@
}
},
{
- "id": 19328,
+ "id": 19797,
"properties": {
"facing": "east",
"half": "bottom",
@@ -149409,7 +153937,7 @@
}
},
{
- "id": 19329,
+ "id": 19798,
"properties": {
"facing": "east",
"half": "bottom",
@@ -149418,7 +153946,7 @@
}
},
{
- "id": 19330,
+ "id": 19799,
"properties": {
"facing": "east",
"half": "bottom",
@@ -149427,7 +153955,7 @@
}
},
{
- "id": 19331,
+ "id": 19800,
"properties": {
"facing": "east",
"half": "bottom",
@@ -149436,7 +153964,7 @@
}
},
{
- "id": 19332,
+ "id": 19801,
"properties": {
"facing": "east",
"half": "bottom",
@@ -149479,7 +154007,7 @@
},
"states": [
{
- "id": 19333,
+ "id": 19802,
"properties": {
"east": "none",
"north": "none",
@@ -149490,7 +154018,7 @@
}
},
{
- "id": 19334,
+ "id": 19803,
"properties": {
"east": "none",
"north": "none",
@@ -149501,7 +154029,7 @@
}
},
{
- "id": 19335,
+ "id": 19804,
"properties": {
"east": "none",
"north": "none",
@@ -149513,7 +154041,7 @@
},
{
"default": true,
- "id": 19336,
+ "id": 19805,
"properties": {
"east": "none",
"north": "none",
@@ -149524,7 +154052,7 @@
}
},
{
- "id": 19337,
+ "id": 19806,
"properties": {
"east": "none",
"north": "none",
@@ -149535,7 +154063,7 @@
}
},
{
- "id": 19338,
+ "id": 19807,
"properties": {
"east": "none",
"north": "none",
@@ -149546,7 +154074,7 @@
}
},
{
- "id": 19339,
+ "id": 19808,
"properties": {
"east": "none",
"north": "none",
@@ -149557,7 +154085,7 @@
}
},
{
- "id": 19340,
+ "id": 19809,
"properties": {
"east": "none",
"north": "none",
@@ -149568,7 +154096,7 @@
}
},
{
- "id": 19341,
+ "id": 19810,
"properties": {
"east": "none",
"north": "none",
@@ -149579,7 +154107,7 @@
}
},
{
- "id": 19342,
+ "id": 19811,
"properties": {
"east": "none",
"north": "none",
@@ -149590,7 +154118,7 @@
}
},
{
- "id": 19343,
+ "id": 19812,
"properties": {
"east": "none",
"north": "none",
@@ -149601,7 +154129,7 @@
}
},
{
- "id": 19344,
+ "id": 19813,
"properties": {
"east": "none",
"north": "none",
@@ -149612,7 +154140,7 @@
}
},
{
- "id": 19345,
+ "id": 19814,
"properties": {
"east": "none",
"north": "none",
@@ -149623,7 +154151,7 @@
}
},
{
- "id": 19346,
+ "id": 19815,
"properties": {
"east": "none",
"north": "none",
@@ -149634,7 +154162,7 @@
}
},
{
- "id": 19347,
+ "id": 19816,
"properties": {
"east": "none",
"north": "none",
@@ -149645,7 +154173,7 @@
}
},
{
- "id": 19348,
+ "id": 19817,
"properties": {
"east": "none",
"north": "none",
@@ -149656,7 +154184,7 @@
}
},
{
- "id": 19349,
+ "id": 19818,
"properties": {
"east": "none",
"north": "none",
@@ -149667,7 +154195,7 @@
}
},
{
- "id": 19350,
+ "id": 19819,
"properties": {
"east": "none",
"north": "none",
@@ -149678,7 +154206,7 @@
}
},
{
- "id": 19351,
+ "id": 19820,
"properties": {
"east": "none",
"north": "none",
@@ -149689,7 +154217,7 @@
}
},
{
- "id": 19352,
+ "id": 19821,
"properties": {
"east": "none",
"north": "none",
@@ -149700,7 +154228,7 @@
}
},
{
- "id": 19353,
+ "id": 19822,
"properties": {
"east": "none",
"north": "none",
@@ -149711,7 +154239,7 @@
}
},
{
- "id": 19354,
+ "id": 19823,
"properties": {
"east": "none",
"north": "none",
@@ -149722,7 +154250,7 @@
}
},
{
- "id": 19355,
+ "id": 19824,
"properties": {
"east": "none",
"north": "none",
@@ -149733,7 +154261,7 @@
}
},
{
- "id": 19356,
+ "id": 19825,
"properties": {
"east": "none",
"north": "none",
@@ -149744,7 +154272,7 @@
}
},
{
- "id": 19357,
+ "id": 19826,
"properties": {
"east": "none",
"north": "none",
@@ -149755,7 +154283,7 @@
}
},
{
- "id": 19358,
+ "id": 19827,
"properties": {
"east": "none",
"north": "none",
@@ -149766,7 +154294,7 @@
}
},
{
- "id": 19359,
+ "id": 19828,
"properties": {
"east": "none",
"north": "none",
@@ -149777,7 +154305,7 @@
}
},
{
- "id": 19360,
+ "id": 19829,
"properties": {
"east": "none",
"north": "none",
@@ -149788,7 +154316,7 @@
}
},
{
- "id": 19361,
+ "id": 19830,
"properties": {
"east": "none",
"north": "none",
@@ -149799,7 +154327,7 @@
}
},
{
- "id": 19362,
+ "id": 19831,
"properties": {
"east": "none",
"north": "none",
@@ -149810,7 +154338,7 @@
}
},
{
- "id": 19363,
+ "id": 19832,
"properties": {
"east": "none",
"north": "none",
@@ -149821,7 +154349,7 @@
}
},
{
- "id": 19364,
+ "id": 19833,
"properties": {
"east": "none",
"north": "none",
@@ -149832,7 +154360,7 @@
}
},
{
- "id": 19365,
+ "id": 19834,
"properties": {
"east": "none",
"north": "none",
@@ -149843,7 +154371,7 @@
}
},
{
- "id": 19366,
+ "id": 19835,
"properties": {
"east": "none",
"north": "none",
@@ -149854,7 +154382,7 @@
}
},
{
- "id": 19367,
+ "id": 19836,
"properties": {
"east": "none",
"north": "none",
@@ -149865,7 +154393,7 @@
}
},
{
- "id": 19368,
+ "id": 19837,
"properties": {
"east": "none",
"north": "none",
@@ -149876,7 +154404,7 @@
}
},
{
- "id": 19369,
+ "id": 19838,
"properties": {
"east": "none",
"north": "low",
@@ -149887,7 +154415,7 @@
}
},
{
- "id": 19370,
+ "id": 19839,
"properties": {
"east": "none",
"north": "low",
@@ -149898,7 +154426,7 @@
}
},
{
- "id": 19371,
+ "id": 19840,
"properties": {
"east": "none",
"north": "low",
@@ -149909,7 +154437,7 @@
}
},
{
- "id": 19372,
+ "id": 19841,
"properties": {
"east": "none",
"north": "low",
@@ -149920,7 +154448,7 @@
}
},
{
- "id": 19373,
+ "id": 19842,
"properties": {
"east": "none",
"north": "low",
@@ -149931,7 +154459,7 @@
}
},
{
- "id": 19374,
+ "id": 19843,
"properties": {
"east": "none",
"north": "low",
@@ -149942,7 +154470,7 @@
}
},
{
- "id": 19375,
+ "id": 19844,
"properties": {
"east": "none",
"north": "low",
@@ -149953,7 +154481,7 @@
}
},
{
- "id": 19376,
+ "id": 19845,
"properties": {
"east": "none",
"north": "low",
@@ -149964,7 +154492,7 @@
}
},
{
- "id": 19377,
+ "id": 19846,
"properties": {
"east": "none",
"north": "low",
@@ -149975,7 +154503,7 @@
}
},
{
- "id": 19378,
+ "id": 19847,
"properties": {
"east": "none",
"north": "low",
@@ -149986,7 +154514,7 @@
}
},
{
- "id": 19379,
+ "id": 19848,
"properties": {
"east": "none",
"north": "low",
@@ -149997,7 +154525,7 @@
}
},
{
- "id": 19380,
+ "id": 19849,
"properties": {
"east": "none",
"north": "low",
@@ -150008,7 +154536,7 @@
}
},
{
- "id": 19381,
+ "id": 19850,
"properties": {
"east": "none",
"north": "low",
@@ -150019,7 +154547,7 @@
}
},
{
- "id": 19382,
+ "id": 19851,
"properties": {
"east": "none",
"north": "low",
@@ -150030,7 +154558,7 @@
}
},
{
- "id": 19383,
+ "id": 19852,
"properties": {
"east": "none",
"north": "low",
@@ -150041,7 +154569,7 @@
}
},
{
- "id": 19384,
+ "id": 19853,
"properties": {
"east": "none",
"north": "low",
@@ -150052,7 +154580,7 @@
}
},
{
- "id": 19385,
+ "id": 19854,
"properties": {
"east": "none",
"north": "low",
@@ -150063,7 +154591,7 @@
}
},
{
- "id": 19386,
+ "id": 19855,
"properties": {
"east": "none",
"north": "low",
@@ -150074,7 +154602,7 @@
}
},
{
- "id": 19387,
+ "id": 19856,
"properties": {
"east": "none",
"north": "low",
@@ -150085,7 +154613,7 @@
}
},
{
- "id": 19388,
+ "id": 19857,
"properties": {
"east": "none",
"north": "low",
@@ -150096,7 +154624,7 @@
}
},
{
- "id": 19389,
+ "id": 19858,
"properties": {
"east": "none",
"north": "low",
@@ -150107,7 +154635,7 @@
}
},
{
- "id": 19390,
+ "id": 19859,
"properties": {
"east": "none",
"north": "low",
@@ -150118,7 +154646,7 @@
}
},
{
- "id": 19391,
+ "id": 19860,
"properties": {
"east": "none",
"north": "low",
@@ -150129,7 +154657,7 @@
}
},
{
- "id": 19392,
+ "id": 19861,
"properties": {
"east": "none",
"north": "low",
@@ -150140,7 +154668,7 @@
}
},
{
- "id": 19393,
+ "id": 19862,
"properties": {
"east": "none",
"north": "low",
@@ -150151,7 +154679,7 @@
}
},
{
- "id": 19394,
+ "id": 19863,
"properties": {
"east": "none",
"north": "low",
@@ -150162,7 +154690,7 @@
}
},
{
- "id": 19395,
+ "id": 19864,
"properties": {
"east": "none",
"north": "low",
@@ -150173,7 +154701,7 @@
}
},
{
- "id": 19396,
+ "id": 19865,
"properties": {
"east": "none",
"north": "low",
@@ -150184,7 +154712,7 @@
}
},
{
- "id": 19397,
+ "id": 19866,
"properties": {
"east": "none",
"north": "low",
@@ -150195,7 +154723,7 @@
}
},
{
- "id": 19398,
+ "id": 19867,
"properties": {
"east": "none",
"north": "low",
@@ -150206,7 +154734,7 @@
}
},
{
- "id": 19399,
+ "id": 19868,
"properties": {
"east": "none",
"north": "low",
@@ -150217,7 +154745,7 @@
}
},
{
- "id": 19400,
+ "id": 19869,
"properties": {
"east": "none",
"north": "low",
@@ -150228,7 +154756,7 @@
}
},
{
- "id": 19401,
+ "id": 19870,
"properties": {
"east": "none",
"north": "low",
@@ -150239,7 +154767,7 @@
}
},
{
- "id": 19402,
+ "id": 19871,
"properties": {
"east": "none",
"north": "low",
@@ -150250,7 +154778,7 @@
}
},
{
- "id": 19403,
+ "id": 19872,
"properties": {
"east": "none",
"north": "low",
@@ -150261,7 +154789,7 @@
}
},
{
- "id": 19404,
+ "id": 19873,
"properties": {
"east": "none",
"north": "low",
@@ -150272,7 +154800,7 @@
}
},
{
- "id": 19405,
+ "id": 19874,
"properties": {
"east": "none",
"north": "tall",
@@ -150283,7 +154811,7 @@
}
},
{
- "id": 19406,
+ "id": 19875,
"properties": {
"east": "none",
"north": "tall",
@@ -150294,7 +154822,7 @@
}
},
{
- "id": 19407,
+ "id": 19876,
"properties": {
"east": "none",
"north": "tall",
@@ -150305,7 +154833,7 @@
}
},
{
- "id": 19408,
+ "id": 19877,
"properties": {
"east": "none",
"north": "tall",
@@ -150316,7 +154844,7 @@
}
},
{
- "id": 19409,
+ "id": 19878,
"properties": {
"east": "none",
"north": "tall",
@@ -150327,7 +154855,7 @@
}
},
{
- "id": 19410,
+ "id": 19879,
"properties": {
"east": "none",
"north": "tall",
@@ -150338,7 +154866,7 @@
}
},
{
- "id": 19411,
+ "id": 19880,
"properties": {
"east": "none",
"north": "tall",
@@ -150349,7 +154877,7 @@
}
},
{
- "id": 19412,
+ "id": 19881,
"properties": {
"east": "none",
"north": "tall",
@@ -150360,7 +154888,7 @@
}
},
{
- "id": 19413,
+ "id": 19882,
"properties": {
"east": "none",
"north": "tall",
@@ -150371,7 +154899,7 @@
}
},
{
- "id": 19414,
+ "id": 19883,
"properties": {
"east": "none",
"north": "tall",
@@ -150382,7 +154910,7 @@
}
},
{
- "id": 19415,
+ "id": 19884,
"properties": {
"east": "none",
"north": "tall",
@@ -150393,7 +154921,7 @@
}
},
{
- "id": 19416,
+ "id": 19885,
"properties": {
"east": "none",
"north": "tall",
@@ -150404,7 +154932,7 @@
}
},
{
- "id": 19417,
+ "id": 19886,
"properties": {
"east": "none",
"north": "tall",
@@ -150415,7 +154943,7 @@
}
},
{
- "id": 19418,
+ "id": 19887,
"properties": {
"east": "none",
"north": "tall",
@@ -150426,7 +154954,7 @@
}
},
{
- "id": 19419,
+ "id": 19888,
"properties": {
"east": "none",
"north": "tall",
@@ -150437,7 +154965,7 @@
}
},
{
- "id": 19420,
+ "id": 19889,
"properties": {
"east": "none",
"north": "tall",
@@ -150448,7 +154976,7 @@
}
},
{
- "id": 19421,
+ "id": 19890,
"properties": {
"east": "none",
"north": "tall",
@@ -150459,7 +154987,7 @@
}
},
{
- "id": 19422,
+ "id": 19891,
"properties": {
"east": "none",
"north": "tall",
@@ -150470,7 +154998,7 @@
}
},
{
- "id": 19423,
+ "id": 19892,
"properties": {
"east": "none",
"north": "tall",
@@ -150481,7 +155009,7 @@
}
},
{
- "id": 19424,
+ "id": 19893,
"properties": {
"east": "none",
"north": "tall",
@@ -150492,7 +155020,7 @@
}
},
{
- "id": 19425,
+ "id": 19894,
"properties": {
"east": "none",
"north": "tall",
@@ -150503,7 +155031,7 @@
}
},
{
- "id": 19426,
+ "id": 19895,
"properties": {
"east": "none",
"north": "tall",
@@ -150514,7 +155042,7 @@
}
},
{
- "id": 19427,
+ "id": 19896,
"properties": {
"east": "none",
"north": "tall",
@@ -150525,7 +155053,7 @@
}
},
{
- "id": 19428,
+ "id": 19897,
"properties": {
"east": "none",
"north": "tall",
@@ -150536,7 +155064,7 @@
}
},
{
- "id": 19429,
+ "id": 19898,
"properties": {
"east": "none",
"north": "tall",
@@ -150547,7 +155075,7 @@
}
},
{
- "id": 19430,
+ "id": 19899,
"properties": {
"east": "none",
"north": "tall",
@@ -150558,7 +155086,7 @@
}
},
{
- "id": 19431,
+ "id": 19900,
"properties": {
"east": "none",
"north": "tall",
@@ -150569,7 +155097,7 @@
}
},
{
- "id": 19432,
+ "id": 19901,
"properties": {
"east": "none",
"north": "tall",
@@ -150580,7 +155108,7 @@
}
},
{
- "id": 19433,
+ "id": 19902,
"properties": {
"east": "none",
"north": "tall",
@@ -150591,7 +155119,7 @@
}
},
{
- "id": 19434,
+ "id": 19903,
"properties": {
"east": "none",
"north": "tall",
@@ -150602,7 +155130,7 @@
}
},
{
- "id": 19435,
+ "id": 19904,
"properties": {
"east": "none",
"north": "tall",
@@ -150613,7 +155141,7 @@
}
},
{
- "id": 19436,
+ "id": 19905,
"properties": {
"east": "none",
"north": "tall",
@@ -150624,7 +155152,7 @@
}
},
{
- "id": 19437,
+ "id": 19906,
"properties": {
"east": "none",
"north": "tall",
@@ -150635,7 +155163,7 @@
}
},
{
- "id": 19438,
+ "id": 19907,
"properties": {
"east": "none",
"north": "tall",
@@ -150646,7 +155174,7 @@
}
},
{
- "id": 19439,
+ "id": 19908,
"properties": {
"east": "none",
"north": "tall",
@@ -150657,7 +155185,7 @@
}
},
{
- "id": 19440,
+ "id": 19909,
"properties": {
"east": "none",
"north": "tall",
@@ -150668,7 +155196,7 @@
}
},
{
- "id": 19441,
+ "id": 19910,
"properties": {
"east": "low",
"north": "none",
@@ -150679,7 +155207,7 @@
}
},
{
- "id": 19442,
+ "id": 19911,
"properties": {
"east": "low",
"north": "none",
@@ -150690,7 +155218,7 @@
}
},
{
- "id": 19443,
+ "id": 19912,
"properties": {
"east": "low",
"north": "none",
@@ -150701,7 +155229,7 @@
}
},
{
- "id": 19444,
+ "id": 19913,
"properties": {
"east": "low",
"north": "none",
@@ -150712,7 +155240,7 @@
}
},
{
- "id": 19445,
+ "id": 19914,
"properties": {
"east": "low",
"north": "none",
@@ -150723,7 +155251,7 @@
}
},
{
- "id": 19446,
+ "id": 19915,
"properties": {
"east": "low",
"north": "none",
@@ -150734,7 +155262,7 @@
}
},
{
- "id": 19447,
+ "id": 19916,
"properties": {
"east": "low",
"north": "none",
@@ -150745,7 +155273,7 @@
}
},
{
- "id": 19448,
+ "id": 19917,
"properties": {
"east": "low",
"north": "none",
@@ -150756,7 +155284,7 @@
}
},
{
- "id": 19449,
+ "id": 19918,
"properties": {
"east": "low",
"north": "none",
@@ -150767,7 +155295,7 @@
}
},
{
- "id": 19450,
+ "id": 19919,
"properties": {
"east": "low",
"north": "none",
@@ -150778,7 +155306,7 @@
}
},
{
- "id": 19451,
+ "id": 19920,
"properties": {
"east": "low",
"north": "none",
@@ -150789,7 +155317,7 @@
}
},
{
- "id": 19452,
+ "id": 19921,
"properties": {
"east": "low",
"north": "none",
@@ -150800,7 +155328,7 @@
}
},
{
- "id": 19453,
+ "id": 19922,
"properties": {
"east": "low",
"north": "none",
@@ -150811,7 +155339,7 @@
}
},
{
- "id": 19454,
+ "id": 19923,
"properties": {
"east": "low",
"north": "none",
@@ -150822,7 +155350,7 @@
}
},
{
- "id": 19455,
+ "id": 19924,
"properties": {
"east": "low",
"north": "none",
@@ -150833,7 +155361,7 @@
}
},
{
- "id": 19456,
+ "id": 19925,
"properties": {
"east": "low",
"north": "none",
@@ -150844,7 +155372,7 @@
}
},
{
- "id": 19457,
+ "id": 19926,
"properties": {
"east": "low",
"north": "none",
@@ -150855,7 +155383,7 @@
}
},
{
- "id": 19458,
+ "id": 19927,
"properties": {
"east": "low",
"north": "none",
@@ -150866,7 +155394,7 @@
}
},
{
- "id": 19459,
+ "id": 19928,
"properties": {
"east": "low",
"north": "none",
@@ -150877,7 +155405,7 @@
}
},
{
- "id": 19460,
+ "id": 19929,
"properties": {
"east": "low",
"north": "none",
@@ -150888,7 +155416,7 @@
}
},
{
- "id": 19461,
+ "id": 19930,
"properties": {
"east": "low",
"north": "none",
@@ -150899,7 +155427,7 @@
}
},
{
- "id": 19462,
+ "id": 19931,
"properties": {
"east": "low",
"north": "none",
@@ -150910,7 +155438,7 @@
}
},
{
- "id": 19463,
+ "id": 19932,
"properties": {
"east": "low",
"north": "none",
@@ -150921,7 +155449,7 @@
}
},
{
- "id": 19464,
+ "id": 19933,
"properties": {
"east": "low",
"north": "none",
@@ -150932,7 +155460,7 @@
}
},
{
- "id": 19465,
+ "id": 19934,
"properties": {
"east": "low",
"north": "none",
@@ -150943,7 +155471,7 @@
}
},
{
- "id": 19466,
+ "id": 19935,
"properties": {
"east": "low",
"north": "none",
@@ -150954,7 +155482,7 @@
}
},
{
- "id": 19467,
+ "id": 19936,
"properties": {
"east": "low",
"north": "none",
@@ -150965,7 +155493,7 @@
}
},
{
- "id": 19468,
+ "id": 19937,
"properties": {
"east": "low",
"north": "none",
@@ -150976,7 +155504,7 @@
}
},
{
- "id": 19469,
+ "id": 19938,
"properties": {
"east": "low",
"north": "none",
@@ -150987,7 +155515,7 @@
}
},
{
- "id": 19470,
+ "id": 19939,
"properties": {
"east": "low",
"north": "none",
@@ -150998,7 +155526,7 @@
}
},
{
- "id": 19471,
+ "id": 19940,
"properties": {
"east": "low",
"north": "none",
@@ -151009,7 +155537,7 @@
}
},
{
- "id": 19472,
+ "id": 19941,
"properties": {
"east": "low",
"north": "none",
@@ -151020,7 +155548,7 @@
}
},
{
- "id": 19473,
+ "id": 19942,
"properties": {
"east": "low",
"north": "none",
@@ -151031,7 +155559,7 @@
}
},
{
- "id": 19474,
+ "id": 19943,
"properties": {
"east": "low",
"north": "none",
@@ -151042,7 +155570,7 @@
}
},
{
- "id": 19475,
+ "id": 19944,
"properties": {
"east": "low",
"north": "none",
@@ -151053,7 +155581,7 @@
}
},
{
- "id": 19476,
+ "id": 19945,
"properties": {
"east": "low",
"north": "none",
@@ -151064,7 +155592,7 @@
}
},
{
- "id": 19477,
+ "id": 19946,
"properties": {
"east": "low",
"north": "low",
@@ -151075,7 +155603,7 @@
}
},
{
- "id": 19478,
+ "id": 19947,
"properties": {
"east": "low",
"north": "low",
@@ -151086,7 +155614,7 @@
}
},
{
- "id": 19479,
+ "id": 19948,
"properties": {
"east": "low",
"north": "low",
@@ -151097,7 +155625,7 @@
}
},
{
- "id": 19480,
+ "id": 19949,
"properties": {
"east": "low",
"north": "low",
@@ -151108,7 +155636,7 @@
}
},
{
- "id": 19481,
+ "id": 19950,
"properties": {
"east": "low",
"north": "low",
@@ -151119,7 +155647,7 @@
}
},
{
- "id": 19482,
+ "id": 19951,
"properties": {
"east": "low",
"north": "low",
@@ -151130,7 +155658,7 @@
}
},
{
- "id": 19483,
+ "id": 19952,
"properties": {
"east": "low",
"north": "low",
@@ -151141,7 +155669,7 @@
}
},
{
- "id": 19484,
+ "id": 19953,
"properties": {
"east": "low",
"north": "low",
@@ -151152,7 +155680,7 @@
}
},
{
- "id": 19485,
+ "id": 19954,
"properties": {
"east": "low",
"north": "low",
@@ -151163,7 +155691,7 @@
}
},
{
- "id": 19486,
+ "id": 19955,
"properties": {
"east": "low",
"north": "low",
@@ -151174,7 +155702,7 @@
}
},
{
- "id": 19487,
+ "id": 19956,
"properties": {
"east": "low",
"north": "low",
@@ -151185,7 +155713,7 @@
}
},
{
- "id": 19488,
+ "id": 19957,
"properties": {
"east": "low",
"north": "low",
@@ -151196,7 +155724,7 @@
}
},
{
- "id": 19489,
+ "id": 19958,
"properties": {
"east": "low",
"north": "low",
@@ -151207,7 +155735,7 @@
}
},
{
- "id": 19490,
+ "id": 19959,
"properties": {
"east": "low",
"north": "low",
@@ -151218,7 +155746,7 @@
}
},
{
- "id": 19491,
+ "id": 19960,
"properties": {
"east": "low",
"north": "low",
@@ -151229,7 +155757,7 @@
}
},
{
- "id": 19492,
+ "id": 19961,
"properties": {
"east": "low",
"north": "low",
@@ -151240,7 +155768,7 @@
}
},
{
- "id": 19493,
+ "id": 19962,
"properties": {
"east": "low",
"north": "low",
@@ -151251,7 +155779,7 @@
}
},
{
- "id": 19494,
+ "id": 19963,
"properties": {
"east": "low",
"north": "low",
@@ -151262,7 +155790,7 @@
}
},
{
- "id": 19495,
+ "id": 19964,
"properties": {
"east": "low",
"north": "low",
@@ -151273,7 +155801,7 @@
}
},
{
- "id": 19496,
+ "id": 19965,
"properties": {
"east": "low",
"north": "low",
@@ -151284,7 +155812,7 @@
}
},
{
- "id": 19497,
+ "id": 19966,
"properties": {
"east": "low",
"north": "low",
@@ -151295,7 +155823,7 @@
}
},
{
- "id": 19498,
+ "id": 19967,
"properties": {
"east": "low",
"north": "low",
@@ -151306,7 +155834,7 @@
}
},
{
- "id": 19499,
+ "id": 19968,
"properties": {
"east": "low",
"north": "low",
@@ -151317,7 +155845,7 @@
}
},
{
- "id": 19500,
+ "id": 19969,
"properties": {
"east": "low",
"north": "low",
@@ -151328,7 +155856,7 @@
}
},
{
- "id": 19501,
+ "id": 19970,
"properties": {
"east": "low",
"north": "low",
@@ -151339,7 +155867,7 @@
}
},
{
- "id": 19502,
+ "id": 19971,
"properties": {
"east": "low",
"north": "low",
@@ -151350,7 +155878,7 @@
}
},
{
- "id": 19503,
+ "id": 19972,
"properties": {
"east": "low",
"north": "low",
@@ -151361,7 +155889,7 @@
}
},
{
- "id": 19504,
+ "id": 19973,
"properties": {
"east": "low",
"north": "low",
@@ -151372,7 +155900,7 @@
}
},
{
- "id": 19505,
+ "id": 19974,
"properties": {
"east": "low",
"north": "low",
@@ -151383,7 +155911,7 @@
}
},
{
- "id": 19506,
+ "id": 19975,
"properties": {
"east": "low",
"north": "low",
@@ -151394,7 +155922,7 @@
}
},
{
- "id": 19507,
+ "id": 19976,
"properties": {
"east": "low",
"north": "low",
@@ -151405,7 +155933,7 @@
}
},
{
- "id": 19508,
+ "id": 19977,
"properties": {
"east": "low",
"north": "low",
@@ -151416,7 +155944,7 @@
}
},
{
- "id": 19509,
+ "id": 19978,
"properties": {
"east": "low",
"north": "low",
@@ -151427,7 +155955,7 @@
}
},
{
- "id": 19510,
+ "id": 19979,
"properties": {
"east": "low",
"north": "low",
@@ -151438,7 +155966,7 @@
}
},
{
- "id": 19511,
+ "id": 19980,
"properties": {
"east": "low",
"north": "low",
@@ -151449,7 +155977,7 @@
}
},
{
- "id": 19512,
+ "id": 19981,
"properties": {
"east": "low",
"north": "low",
@@ -151460,7 +155988,7 @@
}
},
{
- "id": 19513,
+ "id": 19982,
"properties": {
"east": "low",
"north": "tall",
@@ -151471,7 +155999,7 @@
}
},
{
- "id": 19514,
+ "id": 19983,
"properties": {
"east": "low",
"north": "tall",
@@ -151482,7 +156010,7 @@
}
},
{
- "id": 19515,
+ "id": 19984,
"properties": {
"east": "low",
"north": "tall",
@@ -151493,7 +156021,7 @@
}
},
{
- "id": 19516,
+ "id": 19985,
"properties": {
"east": "low",
"north": "tall",
@@ -151504,7 +156032,7 @@
}
},
{
- "id": 19517,
+ "id": 19986,
"properties": {
"east": "low",
"north": "tall",
@@ -151515,7 +156043,7 @@
}
},
{
- "id": 19518,
+ "id": 19987,
"properties": {
"east": "low",
"north": "tall",
@@ -151526,7 +156054,7 @@
}
},
{
- "id": 19519,
+ "id": 19988,
"properties": {
"east": "low",
"north": "tall",
@@ -151537,7 +156065,7 @@
}
},
{
- "id": 19520,
+ "id": 19989,
"properties": {
"east": "low",
"north": "tall",
@@ -151548,7 +156076,7 @@
}
},
{
- "id": 19521,
+ "id": 19990,
"properties": {
"east": "low",
"north": "tall",
@@ -151559,7 +156087,7 @@
}
},
{
- "id": 19522,
+ "id": 19991,
"properties": {
"east": "low",
"north": "tall",
@@ -151570,7 +156098,7 @@
}
},
{
- "id": 19523,
+ "id": 19992,
"properties": {
"east": "low",
"north": "tall",
@@ -151581,7 +156109,7 @@
}
},
{
- "id": 19524,
+ "id": 19993,
"properties": {
"east": "low",
"north": "tall",
@@ -151592,7 +156120,7 @@
}
},
{
- "id": 19525,
+ "id": 19994,
"properties": {
"east": "low",
"north": "tall",
@@ -151603,7 +156131,7 @@
}
},
{
- "id": 19526,
+ "id": 19995,
"properties": {
"east": "low",
"north": "tall",
@@ -151614,7 +156142,7 @@
}
},
{
- "id": 19527,
+ "id": 19996,
"properties": {
"east": "low",
"north": "tall",
@@ -151625,7 +156153,7 @@
}
},
{
- "id": 19528,
+ "id": 19997,
"properties": {
"east": "low",
"north": "tall",
@@ -151636,7 +156164,7 @@
}
},
{
- "id": 19529,
+ "id": 19998,
"properties": {
"east": "low",
"north": "tall",
@@ -151647,7 +156175,7 @@
}
},
{
- "id": 19530,
+ "id": 19999,
"properties": {
"east": "low",
"north": "tall",
@@ -151658,7 +156186,7 @@
}
},
{
- "id": 19531,
+ "id": 20000,
"properties": {
"east": "low",
"north": "tall",
@@ -151669,7 +156197,7 @@
}
},
{
- "id": 19532,
+ "id": 20001,
"properties": {
"east": "low",
"north": "tall",
@@ -151680,7 +156208,7 @@
}
},
{
- "id": 19533,
+ "id": 20002,
"properties": {
"east": "low",
"north": "tall",
@@ -151691,7 +156219,7 @@
}
},
{
- "id": 19534,
+ "id": 20003,
"properties": {
"east": "low",
"north": "tall",
@@ -151702,7 +156230,7 @@
}
},
{
- "id": 19535,
+ "id": 20004,
"properties": {
"east": "low",
"north": "tall",
@@ -151713,7 +156241,7 @@
}
},
{
- "id": 19536,
+ "id": 20005,
"properties": {
"east": "low",
"north": "tall",
@@ -151724,7 +156252,7 @@
}
},
{
- "id": 19537,
+ "id": 20006,
"properties": {
"east": "low",
"north": "tall",
@@ -151735,7 +156263,7 @@
}
},
{
- "id": 19538,
+ "id": 20007,
"properties": {
"east": "low",
"north": "tall",
@@ -151746,7 +156274,7 @@
}
},
{
- "id": 19539,
+ "id": 20008,
"properties": {
"east": "low",
"north": "tall",
@@ -151757,7 +156285,7 @@
}
},
{
- "id": 19540,
+ "id": 20009,
"properties": {
"east": "low",
"north": "tall",
@@ -151768,7 +156296,7 @@
}
},
{
- "id": 19541,
+ "id": 20010,
"properties": {
"east": "low",
"north": "tall",
@@ -151779,7 +156307,7 @@
}
},
{
- "id": 19542,
+ "id": 20011,
"properties": {
"east": "low",
"north": "tall",
@@ -151790,7 +156318,7 @@
}
},
{
- "id": 19543,
+ "id": 20012,
"properties": {
"east": "low",
"north": "tall",
@@ -151801,7 +156329,7 @@
}
},
{
- "id": 19544,
+ "id": 20013,
"properties": {
"east": "low",
"north": "tall",
@@ -151812,7 +156340,7 @@
}
},
{
- "id": 19545,
+ "id": 20014,
"properties": {
"east": "low",
"north": "tall",
@@ -151823,7 +156351,7 @@
}
},
{
- "id": 19546,
+ "id": 20015,
"properties": {
"east": "low",
"north": "tall",
@@ -151834,7 +156362,7 @@
}
},
{
- "id": 19547,
+ "id": 20016,
"properties": {
"east": "low",
"north": "tall",
@@ -151845,7 +156373,7 @@
}
},
{
- "id": 19548,
+ "id": 20017,
"properties": {
"east": "low",
"north": "tall",
@@ -151856,7 +156384,7 @@
}
},
{
- "id": 19549,
+ "id": 20018,
"properties": {
"east": "tall",
"north": "none",
@@ -151867,7 +156395,7 @@
}
},
{
- "id": 19550,
+ "id": 20019,
"properties": {
"east": "tall",
"north": "none",
@@ -151878,7 +156406,7 @@
}
},
{
- "id": 19551,
+ "id": 20020,
"properties": {
"east": "tall",
"north": "none",
@@ -151889,7 +156417,7 @@
}
},
{
- "id": 19552,
+ "id": 20021,
"properties": {
"east": "tall",
"north": "none",
@@ -151900,7 +156428,7 @@
}
},
{
- "id": 19553,
+ "id": 20022,
"properties": {
"east": "tall",
"north": "none",
@@ -151911,7 +156439,7 @@
}
},
{
- "id": 19554,
+ "id": 20023,
"properties": {
"east": "tall",
"north": "none",
@@ -151922,7 +156450,7 @@
}
},
{
- "id": 19555,
+ "id": 20024,
"properties": {
"east": "tall",
"north": "none",
@@ -151933,7 +156461,7 @@
}
},
{
- "id": 19556,
+ "id": 20025,
"properties": {
"east": "tall",
"north": "none",
@@ -151944,7 +156472,7 @@
}
},
{
- "id": 19557,
+ "id": 20026,
"properties": {
"east": "tall",
"north": "none",
@@ -151955,7 +156483,7 @@
}
},
{
- "id": 19558,
+ "id": 20027,
"properties": {
"east": "tall",
"north": "none",
@@ -151966,7 +156494,7 @@
}
},
{
- "id": 19559,
+ "id": 20028,
"properties": {
"east": "tall",
"north": "none",
@@ -151977,7 +156505,7 @@
}
},
{
- "id": 19560,
+ "id": 20029,
"properties": {
"east": "tall",
"north": "none",
@@ -151988,7 +156516,7 @@
}
},
{
- "id": 19561,
+ "id": 20030,
"properties": {
"east": "tall",
"north": "none",
@@ -151999,7 +156527,7 @@
}
},
{
- "id": 19562,
+ "id": 20031,
"properties": {
"east": "tall",
"north": "none",
@@ -152010,7 +156538,7 @@
}
},
{
- "id": 19563,
+ "id": 20032,
"properties": {
"east": "tall",
"north": "none",
@@ -152021,7 +156549,7 @@
}
},
{
- "id": 19564,
+ "id": 20033,
"properties": {
"east": "tall",
"north": "none",
@@ -152032,7 +156560,7 @@
}
},
{
- "id": 19565,
+ "id": 20034,
"properties": {
"east": "tall",
"north": "none",
@@ -152043,7 +156571,7 @@
}
},
{
- "id": 19566,
+ "id": 20035,
"properties": {
"east": "tall",
"north": "none",
@@ -152054,7 +156582,7 @@
}
},
{
- "id": 19567,
+ "id": 20036,
"properties": {
"east": "tall",
"north": "none",
@@ -152065,7 +156593,7 @@
}
},
{
- "id": 19568,
+ "id": 20037,
"properties": {
"east": "tall",
"north": "none",
@@ -152076,7 +156604,7 @@
}
},
{
- "id": 19569,
+ "id": 20038,
"properties": {
"east": "tall",
"north": "none",
@@ -152087,7 +156615,7 @@
}
},
{
- "id": 19570,
+ "id": 20039,
"properties": {
"east": "tall",
"north": "none",
@@ -152098,7 +156626,7 @@
}
},
{
- "id": 19571,
+ "id": 20040,
"properties": {
"east": "tall",
"north": "none",
@@ -152109,7 +156637,7 @@
}
},
{
- "id": 19572,
+ "id": 20041,
"properties": {
"east": "tall",
"north": "none",
@@ -152120,7 +156648,7 @@
}
},
{
- "id": 19573,
+ "id": 20042,
"properties": {
"east": "tall",
"north": "none",
@@ -152131,7 +156659,7 @@
}
},
{
- "id": 19574,
+ "id": 20043,
"properties": {
"east": "tall",
"north": "none",
@@ -152142,7 +156670,7 @@
}
},
{
- "id": 19575,
+ "id": 20044,
"properties": {
"east": "tall",
"north": "none",
@@ -152153,7 +156681,7 @@
}
},
{
- "id": 19576,
+ "id": 20045,
"properties": {
"east": "tall",
"north": "none",
@@ -152164,7 +156692,7 @@
}
},
{
- "id": 19577,
+ "id": 20046,
"properties": {
"east": "tall",
"north": "none",
@@ -152175,7 +156703,7 @@
}
},
{
- "id": 19578,
+ "id": 20047,
"properties": {
"east": "tall",
"north": "none",
@@ -152186,7 +156714,7 @@
}
},
{
- "id": 19579,
+ "id": 20048,
"properties": {
"east": "tall",
"north": "none",
@@ -152197,7 +156725,7 @@
}
},
{
- "id": 19580,
+ "id": 20049,
"properties": {
"east": "tall",
"north": "none",
@@ -152208,7 +156736,7 @@
}
},
{
- "id": 19581,
+ "id": 20050,
"properties": {
"east": "tall",
"north": "none",
@@ -152219,7 +156747,7 @@
}
},
{
- "id": 19582,
+ "id": 20051,
"properties": {
"east": "tall",
"north": "none",
@@ -152230,7 +156758,7 @@
}
},
{
- "id": 19583,
+ "id": 20052,
"properties": {
"east": "tall",
"north": "none",
@@ -152241,7 +156769,7 @@
}
},
{
- "id": 19584,
+ "id": 20053,
"properties": {
"east": "tall",
"north": "none",
@@ -152252,7 +156780,7 @@
}
},
{
- "id": 19585,
+ "id": 20054,
"properties": {
"east": "tall",
"north": "low",
@@ -152263,7 +156791,7 @@
}
},
{
- "id": 19586,
+ "id": 20055,
"properties": {
"east": "tall",
"north": "low",
@@ -152274,7 +156802,7 @@
}
},
{
- "id": 19587,
+ "id": 20056,
"properties": {
"east": "tall",
"north": "low",
@@ -152285,7 +156813,7 @@
}
},
{
- "id": 19588,
+ "id": 20057,
"properties": {
"east": "tall",
"north": "low",
@@ -152296,7 +156824,7 @@
}
},
{
- "id": 19589,
+ "id": 20058,
"properties": {
"east": "tall",
"north": "low",
@@ -152307,7 +156835,7 @@
}
},
{
- "id": 19590,
+ "id": 20059,
"properties": {
"east": "tall",
"north": "low",
@@ -152318,7 +156846,7 @@
}
},
{
- "id": 19591,
+ "id": 20060,
"properties": {
"east": "tall",
"north": "low",
@@ -152329,7 +156857,7 @@
}
},
{
- "id": 19592,
+ "id": 20061,
"properties": {
"east": "tall",
"north": "low",
@@ -152340,7 +156868,7 @@
}
},
{
- "id": 19593,
+ "id": 20062,
"properties": {
"east": "tall",
"north": "low",
@@ -152351,7 +156879,7 @@
}
},
{
- "id": 19594,
+ "id": 20063,
"properties": {
"east": "tall",
"north": "low",
@@ -152362,7 +156890,7 @@
}
},
{
- "id": 19595,
+ "id": 20064,
"properties": {
"east": "tall",
"north": "low",
@@ -152373,7 +156901,7 @@
}
},
{
- "id": 19596,
+ "id": 20065,
"properties": {
"east": "tall",
"north": "low",
@@ -152384,7 +156912,7 @@
}
},
{
- "id": 19597,
+ "id": 20066,
"properties": {
"east": "tall",
"north": "low",
@@ -152395,7 +156923,7 @@
}
},
{
- "id": 19598,
+ "id": 20067,
"properties": {
"east": "tall",
"north": "low",
@@ -152406,7 +156934,7 @@
}
},
{
- "id": 19599,
+ "id": 20068,
"properties": {
"east": "tall",
"north": "low",
@@ -152417,7 +156945,7 @@
}
},
{
- "id": 19600,
+ "id": 20069,
"properties": {
"east": "tall",
"north": "low",
@@ -152428,7 +156956,7 @@
}
},
{
- "id": 19601,
+ "id": 20070,
"properties": {
"east": "tall",
"north": "low",
@@ -152439,7 +156967,7 @@
}
},
{
- "id": 19602,
+ "id": 20071,
"properties": {
"east": "tall",
"north": "low",
@@ -152450,7 +156978,7 @@
}
},
{
- "id": 19603,
+ "id": 20072,
"properties": {
"east": "tall",
"north": "low",
@@ -152461,7 +156989,7 @@
}
},
{
- "id": 19604,
+ "id": 20073,
"properties": {
"east": "tall",
"north": "low",
@@ -152472,7 +157000,7 @@
}
},
{
- "id": 19605,
+ "id": 20074,
"properties": {
"east": "tall",
"north": "low",
@@ -152483,7 +157011,7 @@
}
},
{
- "id": 19606,
+ "id": 20075,
"properties": {
"east": "tall",
"north": "low",
@@ -152494,7 +157022,7 @@
}
},
{
- "id": 19607,
+ "id": 20076,
"properties": {
"east": "tall",
"north": "low",
@@ -152505,7 +157033,7 @@
}
},
{
- "id": 19608,
+ "id": 20077,
"properties": {
"east": "tall",
"north": "low",
@@ -152516,7 +157044,7 @@
}
},
{
- "id": 19609,
+ "id": 20078,
"properties": {
"east": "tall",
"north": "low",
@@ -152527,7 +157055,7 @@
}
},
{
- "id": 19610,
+ "id": 20079,
"properties": {
"east": "tall",
"north": "low",
@@ -152538,7 +157066,7 @@
}
},
{
- "id": 19611,
+ "id": 20080,
"properties": {
"east": "tall",
"north": "low",
@@ -152549,7 +157077,7 @@
}
},
{
- "id": 19612,
+ "id": 20081,
"properties": {
"east": "tall",
"north": "low",
@@ -152560,7 +157088,7 @@
}
},
{
- "id": 19613,
+ "id": 20082,
"properties": {
"east": "tall",
"north": "low",
@@ -152571,7 +157099,7 @@
}
},
{
- "id": 19614,
+ "id": 20083,
"properties": {
"east": "tall",
"north": "low",
@@ -152582,7 +157110,7 @@
}
},
{
- "id": 19615,
+ "id": 20084,
"properties": {
"east": "tall",
"north": "low",
@@ -152593,7 +157121,7 @@
}
},
{
- "id": 19616,
+ "id": 20085,
"properties": {
"east": "tall",
"north": "low",
@@ -152604,7 +157132,7 @@
}
},
{
- "id": 19617,
+ "id": 20086,
"properties": {
"east": "tall",
"north": "low",
@@ -152615,7 +157143,7 @@
}
},
{
- "id": 19618,
+ "id": 20087,
"properties": {
"east": "tall",
"north": "low",
@@ -152626,7 +157154,7 @@
}
},
{
- "id": 19619,
+ "id": 20088,
"properties": {
"east": "tall",
"north": "low",
@@ -152637,7 +157165,7 @@
}
},
{
- "id": 19620,
+ "id": 20089,
"properties": {
"east": "tall",
"north": "low",
@@ -152648,7 +157176,7 @@
}
},
{
- "id": 19621,
+ "id": 20090,
"properties": {
"east": "tall",
"north": "tall",
@@ -152659,7 +157187,7 @@
}
},
{
- "id": 19622,
+ "id": 20091,
"properties": {
"east": "tall",
"north": "tall",
@@ -152670,7 +157198,7 @@
}
},
{
- "id": 19623,
+ "id": 20092,
"properties": {
"east": "tall",
"north": "tall",
@@ -152681,7 +157209,7 @@
}
},
{
- "id": 19624,
+ "id": 20093,
"properties": {
"east": "tall",
"north": "tall",
@@ -152692,7 +157220,7 @@
}
},
{
- "id": 19625,
+ "id": 20094,
"properties": {
"east": "tall",
"north": "tall",
@@ -152703,7 +157231,7 @@
}
},
{
- "id": 19626,
+ "id": 20095,
"properties": {
"east": "tall",
"north": "tall",
@@ -152714,7 +157242,7 @@
}
},
{
- "id": 19627,
+ "id": 20096,
"properties": {
"east": "tall",
"north": "tall",
@@ -152725,7 +157253,7 @@
}
},
{
- "id": 19628,
+ "id": 20097,
"properties": {
"east": "tall",
"north": "tall",
@@ -152736,7 +157264,7 @@
}
},
{
- "id": 19629,
+ "id": 20098,
"properties": {
"east": "tall",
"north": "tall",
@@ -152747,7 +157275,7 @@
}
},
{
- "id": 19630,
+ "id": 20099,
"properties": {
"east": "tall",
"north": "tall",
@@ -152758,7 +157286,7 @@
}
},
{
- "id": 19631,
+ "id": 20100,
"properties": {
"east": "tall",
"north": "tall",
@@ -152769,7 +157297,7 @@
}
},
{
- "id": 19632,
+ "id": 20101,
"properties": {
"east": "tall",
"north": "tall",
@@ -152780,7 +157308,7 @@
}
},
{
- "id": 19633,
+ "id": 20102,
"properties": {
"east": "tall",
"north": "tall",
@@ -152791,7 +157319,7 @@
}
},
{
- "id": 19634,
+ "id": 20103,
"properties": {
"east": "tall",
"north": "tall",
@@ -152802,7 +157330,7 @@
}
},
{
- "id": 19635,
+ "id": 20104,
"properties": {
"east": "tall",
"north": "tall",
@@ -152813,7 +157341,7 @@
}
},
{
- "id": 19636,
+ "id": 20105,
"properties": {
"east": "tall",
"north": "tall",
@@ -152824,7 +157352,7 @@
}
},
{
- "id": 19637,
+ "id": 20106,
"properties": {
"east": "tall",
"north": "tall",
@@ -152835,7 +157363,7 @@
}
},
{
- "id": 19638,
+ "id": 20107,
"properties": {
"east": "tall",
"north": "tall",
@@ -152846,7 +157374,7 @@
}
},
{
- "id": 19639,
+ "id": 20108,
"properties": {
"east": "tall",
"north": "tall",
@@ -152857,7 +157385,7 @@
}
},
{
- "id": 19640,
+ "id": 20109,
"properties": {
"east": "tall",
"north": "tall",
@@ -152868,7 +157396,7 @@
}
},
{
- "id": 19641,
+ "id": 20110,
"properties": {
"east": "tall",
"north": "tall",
@@ -152879,7 +157407,7 @@
}
},
{
- "id": 19642,
+ "id": 20111,
"properties": {
"east": "tall",
"north": "tall",
@@ -152890,7 +157418,7 @@
}
},
{
- "id": 19643,
+ "id": 20112,
"properties": {
"east": "tall",
"north": "tall",
@@ -152901,7 +157429,7 @@
}
},
{
- "id": 19644,
+ "id": 20113,
"properties": {
"east": "tall",
"north": "tall",
@@ -152912,7 +157440,7 @@
}
},
{
- "id": 19645,
+ "id": 20114,
"properties": {
"east": "tall",
"north": "tall",
@@ -152923,7 +157451,7 @@
}
},
{
- "id": 19646,
+ "id": 20115,
"properties": {
"east": "tall",
"north": "tall",
@@ -152934,7 +157462,7 @@
}
},
{
- "id": 19647,
+ "id": 20116,
"properties": {
"east": "tall",
"north": "tall",
@@ -152945,7 +157473,7 @@
}
},
{
- "id": 19648,
+ "id": 20117,
"properties": {
"east": "tall",
"north": "tall",
@@ -152956,7 +157484,7 @@
}
},
{
- "id": 19649,
+ "id": 20118,
"properties": {
"east": "tall",
"north": "tall",
@@ -152967,7 +157495,7 @@
}
},
{
- "id": 19650,
+ "id": 20119,
"properties": {
"east": "tall",
"north": "tall",
@@ -152978,7 +157506,7 @@
}
},
{
- "id": 19651,
+ "id": 20120,
"properties": {
"east": "tall",
"north": "tall",
@@ -152989,7 +157517,7 @@
}
},
{
- "id": 19652,
+ "id": 20121,
"properties": {
"east": "tall",
"north": "tall",
@@ -153000,7 +157528,7 @@
}
},
{
- "id": 19653,
+ "id": 20122,
"properties": {
"east": "tall",
"north": "tall",
@@ -153011,7 +157539,7 @@
}
},
{
- "id": 19654,
+ "id": 20123,
"properties": {
"east": "tall",
"north": "tall",
@@ -153022,7 +157550,7 @@
}
},
{
- "id": 19655,
+ "id": 20124,
"properties": {
"east": "tall",
"north": "tall",
@@ -153033,7 +157561,7 @@
}
},
{
- "id": 19656,
+ "id": 20125,
"properties": {
"east": "tall",
"north": "tall",
@@ -153049,7 +157577,7 @@
"states": [
{
"default": true,
- "id": 19244
+ "id": 19713
}
]
},
@@ -153073,7 +157601,7 @@
},
"states": [
{
- "id": 19746,
+ "id": 20215,
"properties": {
"face": "floor",
"facing": "north",
@@ -153081,7 +157609,7 @@
}
},
{
- "id": 19747,
+ "id": 20216,
"properties": {
"face": "floor",
"facing": "north",
@@ -153089,7 +157617,7 @@
}
},
{
- "id": 19748,
+ "id": 20217,
"properties": {
"face": "floor",
"facing": "south",
@@ -153097,7 +157625,7 @@
}
},
{
- "id": 19749,
+ "id": 20218,
"properties": {
"face": "floor",
"facing": "south",
@@ -153105,7 +157633,7 @@
}
},
{
- "id": 19750,
+ "id": 20219,
"properties": {
"face": "floor",
"facing": "west",
@@ -153113,7 +157641,7 @@
}
},
{
- "id": 19751,
+ "id": 20220,
"properties": {
"face": "floor",
"facing": "west",
@@ -153121,7 +157649,7 @@
}
},
{
- "id": 19752,
+ "id": 20221,
"properties": {
"face": "floor",
"facing": "east",
@@ -153129,7 +157657,7 @@
}
},
{
- "id": 19753,
+ "id": 20222,
"properties": {
"face": "floor",
"facing": "east",
@@ -153137,7 +157665,7 @@
}
},
{
- "id": 19754,
+ "id": 20223,
"properties": {
"face": "wall",
"facing": "north",
@@ -153146,7 +157674,7 @@
},
{
"default": true,
- "id": 19755,
+ "id": 20224,
"properties": {
"face": "wall",
"facing": "north",
@@ -153154,7 +157682,7 @@
}
},
{
- "id": 19756,
+ "id": 20225,
"properties": {
"face": "wall",
"facing": "south",
@@ -153162,7 +157690,7 @@
}
},
{
- "id": 19757,
+ "id": 20226,
"properties": {
"face": "wall",
"facing": "south",
@@ -153170,7 +157698,7 @@
}
},
{
- "id": 19758,
+ "id": 20227,
"properties": {
"face": "wall",
"facing": "west",
@@ -153178,7 +157706,7 @@
}
},
{
- "id": 19759,
+ "id": 20228,
"properties": {
"face": "wall",
"facing": "west",
@@ -153186,7 +157714,7 @@
}
},
{
- "id": 19760,
+ "id": 20229,
"properties": {
"face": "wall",
"facing": "east",
@@ -153194,7 +157722,7 @@
}
},
{
- "id": 19761,
+ "id": 20230,
"properties": {
"face": "wall",
"facing": "east",
@@ -153202,7 +157730,7 @@
}
},
{
- "id": 19762,
+ "id": 20231,
"properties": {
"face": "ceiling",
"facing": "north",
@@ -153210,7 +157738,7 @@
}
},
{
- "id": 19763,
+ "id": 20232,
"properties": {
"face": "ceiling",
"facing": "north",
@@ -153218,7 +157746,7 @@
}
},
{
- "id": 19764,
+ "id": 20233,
"properties": {
"face": "ceiling",
"facing": "south",
@@ -153226,7 +157754,7 @@
}
},
{
- "id": 19765,
+ "id": 20234,
"properties": {
"face": "ceiling",
"facing": "south",
@@ -153234,7 +157762,7 @@
}
},
{
- "id": 19766,
+ "id": 20235,
"properties": {
"face": "ceiling",
"facing": "west",
@@ -153242,7 +157770,7 @@
}
},
{
- "id": 19767,
+ "id": 20236,
"properties": {
"face": "ceiling",
"facing": "west",
@@ -153250,7 +157778,7 @@
}
},
{
- "id": 19768,
+ "id": 20237,
"properties": {
"face": "ceiling",
"facing": "east",
@@ -153258,7 +157786,7 @@
}
},
{
- "id": 19769,
+ "id": 20238,
"properties": {
"face": "ceiling",
"facing": "east",
@@ -153276,14 +157804,14 @@
},
"states": [
{
- "id": 19744,
+ "id": 20213,
"properties": {
"powered": "true"
}
},
{
"default": true,
- "id": 19745,
+ "id": 20214,
"properties": {
"powered": "false"
}
@@ -153304,21 +157832,21 @@
},
"states": [
{
- "id": 19738,
+ "id": 20207,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 19739,
+ "id": 20208,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 19740,
+ "id": 20209,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -153326,21 +157854,21 @@
},
{
"default": true,
- "id": 19741,
+ "id": 20210,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 19742,
+ "id": 20211,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 19743,
+ "id": 20212,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -153374,7 +157902,7 @@
},
"states": [
{
- "id": 19658,
+ "id": 20127,
"properties": {
"facing": "north",
"half": "top",
@@ -153383,7 +157911,7 @@
}
},
{
- "id": 19659,
+ "id": 20128,
"properties": {
"facing": "north",
"half": "top",
@@ -153392,7 +157920,7 @@
}
},
{
- "id": 19660,
+ "id": 20129,
"properties": {
"facing": "north",
"half": "top",
@@ -153401,7 +157929,7 @@
}
},
{
- "id": 19661,
+ "id": 20130,
"properties": {
"facing": "north",
"half": "top",
@@ -153410,7 +157938,7 @@
}
},
{
- "id": 19662,
+ "id": 20131,
"properties": {
"facing": "north",
"half": "top",
@@ -153419,7 +157947,7 @@
}
},
{
- "id": 19663,
+ "id": 20132,
"properties": {
"facing": "north",
"half": "top",
@@ -153428,7 +157956,7 @@
}
},
{
- "id": 19664,
+ "id": 20133,
"properties": {
"facing": "north",
"half": "top",
@@ -153437,7 +157965,7 @@
}
},
{
- "id": 19665,
+ "id": 20134,
"properties": {
"facing": "north",
"half": "top",
@@ -153446,7 +157974,7 @@
}
},
{
- "id": 19666,
+ "id": 20135,
"properties": {
"facing": "north",
"half": "top",
@@ -153455,7 +157983,7 @@
}
},
{
- "id": 19667,
+ "id": 20136,
"properties": {
"facing": "north",
"half": "top",
@@ -153464,7 +157992,7 @@
}
},
{
- "id": 19668,
+ "id": 20137,
"properties": {
"facing": "north",
"half": "bottom",
@@ -153474,7 +158002,7 @@
},
{
"default": true,
- "id": 19669,
+ "id": 20138,
"properties": {
"facing": "north",
"half": "bottom",
@@ -153483,7 +158011,7 @@
}
},
{
- "id": 19670,
+ "id": 20139,
"properties": {
"facing": "north",
"half": "bottom",
@@ -153492,7 +158020,7 @@
}
},
{
- "id": 19671,
+ "id": 20140,
"properties": {
"facing": "north",
"half": "bottom",
@@ -153501,7 +158029,7 @@
}
},
{
- "id": 19672,
+ "id": 20141,
"properties": {
"facing": "north",
"half": "bottom",
@@ -153510,7 +158038,7 @@
}
},
{
- "id": 19673,
+ "id": 20142,
"properties": {
"facing": "north",
"half": "bottom",
@@ -153519,7 +158047,7 @@
}
},
{
- "id": 19674,
+ "id": 20143,
"properties": {
"facing": "north",
"half": "bottom",
@@ -153528,7 +158056,7 @@
}
},
{
- "id": 19675,
+ "id": 20144,
"properties": {
"facing": "north",
"half": "bottom",
@@ -153537,7 +158065,7 @@
}
},
{
- "id": 19676,
+ "id": 20145,
"properties": {
"facing": "north",
"half": "bottom",
@@ -153546,7 +158074,7 @@
}
},
{
- "id": 19677,
+ "id": 20146,
"properties": {
"facing": "north",
"half": "bottom",
@@ -153555,7 +158083,7 @@
}
},
{
- "id": 19678,
+ "id": 20147,
"properties": {
"facing": "south",
"half": "top",
@@ -153564,7 +158092,7 @@
}
},
{
- "id": 19679,
+ "id": 20148,
"properties": {
"facing": "south",
"half": "top",
@@ -153573,7 +158101,7 @@
}
},
{
- "id": 19680,
+ "id": 20149,
"properties": {
"facing": "south",
"half": "top",
@@ -153582,7 +158110,7 @@
}
},
{
- "id": 19681,
+ "id": 20150,
"properties": {
"facing": "south",
"half": "top",
@@ -153591,7 +158119,7 @@
}
},
{
- "id": 19682,
+ "id": 20151,
"properties": {
"facing": "south",
"half": "top",
@@ -153600,7 +158128,7 @@
}
},
{
- "id": 19683,
+ "id": 20152,
"properties": {
"facing": "south",
"half": "top",
@@ -153609,7 +158137,7 @@
}
},
{
- "id": 19684,
+ "id": 20153,
"properties": {
"facing": "south",
"half": "top",
@@ -153618,7 +158146,7 @@
}
},
{
- "id": 19685,
+ "id": 20154,
"properties": {
"facing": "south",
"half": "top",
@@ -153627,7 +158155,7 @@
}
},
{
- "id": 19686,
+ "id": 20155,
"properties": {
"facing": "south",
"half": "top",
@@ -153636,7 +158164,7 @@
}
},
{
- "id": 19687,
+ "id": 20156,
"properties": {
"facing": "south",
"half": "top",
@@ -153645,7 +158173,7 @@
}
},
{
- "id": 19688,
+ "id": 20157,
"properties": {
"facing": "south",
"half": "bottom",
@@ -153654,7 +158182,7 @@
}
},
{
- "id": 19689,
+ "id": 20158,
"properties": {
"facing": "south",
"half": "bottom",
@@ -153663,7 +158191,7 @@
}
},
{
- "id": 19690,
+ "id": 20159,
"properties": {
"facing": "south",
"half": "bottom",
@@ -153672,7 +158200,7 @@
}
},
{
- "id": 19691,
+ "id": 20160,
"properties": {
"facing": "south",
"half": "bottom",
@@ -153681,7 +158209,7 @@
}
},
{
- "id": 19692,
+ "id": 20161,
"properties": {
"facing": "south",
"half": "bottom",
@@ -153690,7 +158218,7 @@
}
},
{
- "id": 19693,
+ "id": 20162,
"properties": {
"facing": "south",
"half": "bottom",
@@ -153699,7 +158227,7 @@
}
},
{
- "id": 19694,
+ "id": 20163,
"properties": {
"facing": "south",
"half": "bottom",
@@ -153708,7 +158236,7 @@
}
},
{
- "id": 19695,
+ "id": 20164,
"properties": {
"facing": "south",
"half": "bottom",
@@ -153717,7 +158245,7 @@
}
},
{
- "id": 19696,
+ "id": 20165,
"properties": {
"facing": "south",
"half": "bottom",
@@ -153726,7 +158254,7 @@
}
},
{
- "id": 19697,
+ "id": 20166,
"properties": {
"facing": "south",
"half": "bottom",
@@ -153735,7 +158263,7 @@
}
},
{
- "id": 19698,
+ "id": 20167,
"properties": {
"facing": "west",
"half": "top",
@@ -153744,7 +158272,7 @@
}
},
{
- "id": 19699,
+ "id": 20168,
"properties": {
"facing": "west",
"half": "top",
@@ -153753,7 +158281,7 @@
}
},
{
- "id": 19700,
+ "id": 20169,
"properties": {
"facing": "west",
"half": "top",
@@ -153762,7 +158290,7 @@
}
},
{
- "id": 19701,
+ "id": 20170,
"properties": {
"facing": "west",
"half": "top",
@@ -153771,7 +158299,7 @@
}
},
{
- "id": 19702,
+ "id": 20171,
"properties": {
"facing": "west",
"half": "top",
@@ -153780,7 +158308,7 @@
}
},
{
- "id": 19703,
+ "id": 20172,
"properties": {
"facing": "west",
"half": "top",
@@ -153789,7 +158317,7 @@
}
},
{
- "id": 19704,
+ "id": 20173,
"properties": {
"facing": "west",
"half": "top",
@@ -153798,7 +158326,7 @@
}
},
{
- "id": 19705,
+ "id": 20174,
"properties": {
"facing": "west",
"half": "top",
@@ -153807,7 +158335,7 @@
}
},
{
- "id": 19706,
+ "id": 20175,
"properties": {
"facing": "west",
"half": "top",
@@ -153816,7 +158344,7 @@
}
},
{
- "id": 19707,
+ "id": 20176,
"properties": {
"facing": "west",
"half": "top",
@@ -153825,7 +158353,7 @@
}
},
{
- "id": 19708,
+ "id": 20177,
"properties": {
"facing": "west",
"half": "bottom",
@@ -153834,7 +158362,7 @@
}
},
{
- "id": 19709,
+ "id": 20178,
"properties": {
"facing": "west",
"half": "bottom",
@@ -153843,7 +158371,7 @@
}
},
{
- "id": 19710,
+ "id": 20179,
"properties": {
"facing": "west",
"half": "bottom",
@@ -153852,7 +158380,7 @@
}
},
{
- "id": 19711,
+ "id": 20180,
"properties": {
"facing": "west",
"half": "bottom",
@@ -153861,7 +158389,7 @@
}
},
{
- "id": 19712,
+ "id": 20181,
"properties": {
"facing": "west",
"half": "bottom",
@@ -153870,7 +158398,7 @@
}
},
{
- "id": 19713,
+ "id": 20182,
"properties": {
"facing": "west",
"half": "bottom",
@@ -153879,7 +158407,7 @@
}
},
{
- "id": 19714,
+ "id": 20183,
"properties": {
"facing": "west",
"half": "bottom",
@@ -153888,7 +158416,7 @@
}
},
{
- "id": 19715,
+ "id": 20184,
"properties": {
"facing": "west",
"half": "bottom",
@@ -153897,7 +158425,7 @@
}
},
{
- "id": 19716,
+ "id": 20185,
"properties": {
"facing": "west",
"half": "bottom",
@@ -153906,7 +158434,7 @@
}
},
{
- "id": 19717,
+ "id": 20186,
"properties": {
"facing": "west",
"half": "bottom",
@@ -153915,7 +158443,7 @@
}
},
{
- "id": 19718,
+ "id": 20187,
"properties": {
"facing": "east",
"half": "top",
@@ -153924,7 +158452,7 @@
}
},
{
- "id": 19719,
+ "id": 20188,
"properties": {
"facing": "east",
"half": "top",
@@ -153933,7 +158461,7 @@
}
},
{
- "id": 19720,
+ "id": 20189,
"properties": {
"facing": "east",
"half": "top",
@@ -153942,7 +158470,7 @@
}
},
{
- "id": 19721,
+ "id": 20190,
"properties": {
"facing": "east",
"half": "top",
@@ -153951,7 +158479,7 @@
}
},
{
- "id": 19722,
+ "id": 20191,
"properties": {
"facing": "east",
"half": "top",
@@ -153960,7 +158488,7 @@
}
},
{
- "id": 19723,
+ "id": 20192,
"properties": {
"facing": "east",
"half": "top",
@@ -153969,7 +158497,7 @@
}
},
{
- "id": 19724,
+ "id": 20193,
"properties": {
"facing": "east",
"half": "top",
@@ -153978,7 +158506,7 @@
}
},
{
- "id": 19725,
+ "id": 20194,
"properties": {
"facing": "east",
"half": "top",
@@ -153987,7 +158515,7 @@
}
},
{
- "id": 19726,
+ "id": 20195,
"properties": {
"facing": "east",
"half": "top",
@@ -153996,7 +158524,7 @@
}
},
{
- "id": 19727,
+ "id": 20196,
"properties": {
"facing": "east",
"half": "top",
@@ -154005,7 +158533,7 @@
}
},
{
- "id": 19728,
+ "id": 20197,
"properties": {
"facing": "east",
"half": "bottom",
@@ -154014,7 +158542,7 @@
}
},
{
- "id": 19729,
+ "id": 20198,
"properties": {
"facing": "east",
"half": "bottom",
@@ -154023,7 +158551,7 @@
}
},
{
- "id": 19730,
+ "id": 20199,
"properties": {
"facing": "east",
"half": "bottom",
@@ -154032,7 +158560,7 @@
}
},
{
- "id": 19731,
+ "id": 20200,
"properties": {
"facing": "east",
"half": "bottom",
@@ -154041,7 +158569,7 @@
}
},
{
- "id": 19732,
+ "id": 20201,
"properties": {
"facing": "east",
"half": "bottom",
@@ -154050,7 +158578,7 @@
}
},
{
- "id": 19733,
+ "id": 20202,
"properties": {
"facing": "east",
"half": "bottom",
@@ -154059,7 +158587,7 @@
}
},
{
- "id": 19734,
+ "id": 20203,
"properties": {
"facing": "east",
"half": "bottom",
@@ -154068,7 +158596,7 @@
}
},
{
- "id": 19735,
+ "id": 20204,
"properties": {
"facing": "east",
"half": "bottom",
@@ -154077,7 +158605,7 @@
}
},
{
- "id": 19736,
+ "id": 20205,
"properties": {
"facing": "east",
"half": "bottom",
@@ -154086,7 +158614,7 @@
}
},
{
- "id": 19737,
+ "id": 20206,
"properties": {
"facing": "east",
"half": "bottom",
@@ -154129,7 +158657,7 @@
},
"states": [
{
- "id": 19770,
+ "id": 20239,
"properties": {
"east": "none",
"north": "none",
@@ -154140,7 +158668,7 @@
}
},
{
- "id": 19771,
+ "id": 20240,
"properties": {
"east": "none",
"north": "none",
@@ -154151,7 +158679,7 @@
}
},
{
- "id": 19772,
+ "id": 20241,
"properties": {
"east": "none",
"north": "none",
@@ -154163,7 +158691,7 @@
},
{
"default": true,
- "id": 19773,
+ "id": 20242,
"properties": {
"east": "none",
"north": "none",
@@ -154174,7 +158702,7 @@
}
},
{
- "id": 19774,
+ "id": 20243,
"properties": {
"east": "none",
"north": "none",
@@ -154185,7 +158713,7 @@
}
},
{
- "id": 19775,
+ "id": 20244,
"properties": {
"east": "none",
"north": "none",
@@ -154196,7 +158724,7 @@
}
},
{
- "id": 19776,
+ "id": 20245,
"properties": {
"east": "none",
"north": "none",
@@ -154207,7 +158735,7 @@
}
},
{
- "id": 19777,
+ "id": 20246,
"properties": {
"east": "none",
"north": "none",
@@ -154218,7 +158746,7 @@
}
},
{
- "id": 19778,
+ "id": 20247,
"properties": {
"east": "none",
"north": "none",
@@ -154229,7 +158757,7 @@
}
},
{
- "id": 19779,
+ "id": 20248,
"properties": {
"east": "none",
"north": "none",
@@ -154240,7 +158768,7 @@
}
},
{
- "id": 19780,
+ "id": 20249,
"properties": {
"east": "none",
"north": "none",
@@ -154251,7 +158779,7 @@
}
},
{
- "id": 19781,
+ "id": 20250,
"properties": {
"east": "none",
"north": "none",
@@ -154262,7 +158790,7 @@
}
},
{
- "id": 19782,
+ "id": 20251,
"properties": {
"east": "none",
"north": "none",
@@ -154273,7 +158801,7 @@
}
},
{
- "id": 19783,
+ "id": 20252,
"properties": {
"east": "none",
"north": "none",
@@ -154284,7 +158812,7 @@
}
},
{
- "id": 19784,
+ "id": 20253,
"properties": {
"east": "none",
"north": "none",
@@ -154295,7 +158823,7 @@
}
},
{
- "id": 19785,
+ "id": 20254,
"properties": {
"east": "none",
"north": "none",
@@ -154306,7 +158834,7 @@
}
},
{
- "id": 19786,
+ "id": 20255,
"properties": {
"east": "none",
"north": "none",
@@ -154317,7 +158845,7 @@
}
},
{
- "id": 19787,
+ "id": 20256,
"properties": {
"east": "none",
"north": "none",
@@ -154328,7 +158856,7 @@
}
},
{
- "id": 19788,
+ "id": 20257,
"properties": {
"east": "none",
"north": "none",
@@ -154339,7 +158867,7 @@
}
},
{
- "id": 19789,
+ "id": 20258,
"properties": {
"east": "none",
"north": "none",
@@ -154350,7 +158878,7 @@
}
},
{
- "id": 19790,
+ "id": 20259,
"properties": {
"east": "none",
"north": "none",
@@ -154361,7 +158889,7 @@
}
},
{
- "id": 19791,
+ "id": 20260,
"properties": {
"east": "none",
"north": "none",
@@ -154372,7 +158900,7 @@
}
},
{
- "id": 19792,
+ "id": 20261,
"properties": {
"east": "none",
"north": "none",
@@ -154383,7 +158911,7 @@
}
},
{
- "id": 19793,
+ "id": 20262,
"properties": {
"east": "none",
"north": "none",
@@ -154394,7 +158922,7 @@
}
},
{
- "id": 19794,
+ "id": 20263,
"properties": {
"east": "none",
"north": "none",
@@ -154405,7 +158933,7 @@
}
},
{
- "id": 19795,
+ "id": 20264,
"properties": {
"east": "none",
"north": "none",
@@ -154416,7 +158944,7 @@
}
},
{
- "id": 19796,
+ "id": 20265,
"properties": {
"east": "none",
"north": "none",
@@ -154427,7 +158955,7 @@
}
},
{
- "id": 19797,
+ "id": 20266,
"properties": {
"east": "none",
"north": "none",
@@ -154438,7 +158966,7 @@
}
},
{
- "id": 19798,
+ "id": 20267,
"properties": {
"east": "none",
"north": "none",
@@ -154449,7 +158977,7 @@
}
},
{
- "id": 19799,
+ "id": 20268,
"properties": {
"east": "none",
"north": "none",
@@ -154460,7 +158988,7 @@
}
},
{
- "id": 19800,
+ "id": 20269,
"properties": {
"east": "none",
"north": "none",
@@ -154471,7 +158999,7 @@
}
},
{
- "id": 19801,
+ "id": 20270,
"properties": {
"east": "none",
"north": "none",
@@ -154482,7 +159010,7 @@
}
},
{
- "id": 19802,
+ "id": 20271,
"properties": {
"east": "none",
"north": "none",
@@ -154493,7 +159021,7 @@
}
},
{
- "id": 19803,
+ "id": 20272,
"properties": {
"east": "none",
"north": "none",
@@ -154504,7 +159032,7 @@
}
},
{
- "id": 19804,
+ "id": 20273,
"properties": {
"east": "none",
"north": "none",
@@ -154515,7 +159043,7 @@
}
},
{
- "id": 19805,
+ "id": 20274,
"properties": {
"east": "none",
"north": "none",
@@ -154526,7 +159054,7 @@
}
},
{
- "id": 19806,
+ "id": 20275,
"properties": {
"east": "none",
"north": "low",
@@ -154537,7 +159065,7 @@
}
},
{
- "id": 19807,
+ "id": 20276,
"properties": {
"east": "none",
"north": "low",
@@ -154548,7 +159076,7 @@
}
},
{
- "id": 19808,
+ "id": 20277,
"properties": {
"east": "none",
"north": "low",
@@ -154559,7 +159087,7 @@
}
},
{
- "id": 19809,
+ "id": 20278,
"properties": {
"east": "none",
"north": "low",
@@ -154570,7 +159098,7 @@
}
},
{
- "id": 19810,
+ "id": 20279,
"properties": {
"east": "none",
"north": "low",
@@ -154581,7 +159109,7 @@
}
},
{
- "id": 19811,
+ "id": 20280,
"properties": {
"east": "none",
"north": "low",
@@ -154592,7 +159120,7 @@
}
},
{
- "id": 19812,
+ "id": 20281,
"properties": {
"east": "none",
"north": "low",
@@ -154603,7 +159131,7 @@
}
},
{
- "id": 19813,
+ "id": 20282,
"properties": {
"east": "none",
"north": "low",
@@ -154614,7 +159142,7 @@
}
},
{
- "id": 19814,
+ "id": 20283,
"properties": {
"east": "none",
"north": "low",
@@ -154625,7 +159153,7 @@
}
},
{
- "id": 19815,
+ "id": 20284,
"properties": {
"east": "none",
"north": "low",
@@ -154636,7 +159164,7 @@
}
},
{
- "id": 19816,
+ "id": 20285,
"properties": {
"east": "none",
"north": "low",
@@ -154647,7 +159175,7 @@
}
},
{
- "id": 19817,
+ "id": 20286,
"properties": {
"east": "none",
"north": "low",
@@ -154658,7 +159186,7 @@
}
},
{
- "id": 19818,
+ "id": 20287,
"properties": {
"east": "none",
"north": "low",
@@ -154669,7 +159197,7 @@
}
},
{
- "id": 19819,
+ "id": 20288,
"properties": {
"east": "none",
"north": "low",
@@ -154680,7 +159208,7 @@
}
},
{
- "id": 19820,
+ "id": 20289,
"properties": {
"east": "none",
"north": "low",
@@ -154691,7 +159219,7 @@
}
},
{
- "id": 19821,
+ "id": 20290,
"properties": {
"east": "none",
"north": "low",
@@ -154702,7 +159230,7 @@
}
},
{
- "id": 19822,
+ "id": 20291,
"properties": {
"east": "none",
"north": "low",
@@ -154713,7 +159241,7 @@
}
},
{
- "id": 19823,
+ "id": 20292,
"properties": {
"east": "none",
"north": "low",
@@ -154724,7 +159252,7 @@
}
},
{
- "id": 19824,
+ "id": 20293,
"properties": {
"east": "none",
"north": "low",
@@ -154735,7 +159263,7 @@
}
},
{
- "id": 19825,
+ "id": 20294,
"properties": {
"east": "none",
"north": "low",
@@ -154746,7 +159274,7 @@
}
},
{
- "id": 19826,
+ "id": 20295,
"properties": {
"east": "none",
"north": "low",
@@ -154757,7 +159285,7 @@
}
},
{
- "id": 19827,
+ "id": 20296,
"properties": {
"east": "none",
"north": "low",
@@ -154768,7 +159296,7 @@
}
},
{
- "id": 19828,
+ "id": 20297,
"properties": {
"east": "none",
"north": "low",
@@ -154779,7 +159307,7 @@
}
},
{
- "id": 19829,
+ "id": 20298,
"properties": {
"east": "none",
"north": "low",
@@ -154790,7 +159318,7 @@
}
},
{
- "id": 19830,
+ "id": 20299,
"properties": {
"east": "none",
"north": "low",
@@ -154801,7 +159329,7 @@
}
},
{
- "id": 19831,
+ "id": 20300,
"properties": {
"east": "none",
"north": "low",
@@ -154812,7 +159340,7 @@
}
},
{
- "id": 19832,
+ "id": 20301,
"properties": {
"east": "none",
"north": "low",
@@ -154823,7 +159351,7 @@
}
},
{
- "id": 19833,
+ "id": 20302,
"properties": {
"east": "none",
"north": "low",
@@ -154834,7 +159362,7 @@
}
},
{
- "id": 19834,
+ "id": 20303,
"properties": {
"east": "none",
"north": "low",
@@ -154845,7 +159373,7 @@
}
},
{
- "id": 19835,
+ "id": 20304,
"properties": {
"east": "none",
"north": "low",
@@ -154856,7 +159384,7 @@
}
},
{
- "id": 19836,
+ "id": 20305,
"properties": {
"east": "none",
"north": "low",
@@ -154867,7 +159395,7 @@
}
},
{
- "id": 19837,
+ "id": 20306,
"properties": {
"east": "none",
"north": "low",
@@ -154878,7 +159406,7 @@
}
},
{
- "id": 19838,
+ "id": 20307,
"properties": {
"east": "none",
"north": "low",
@@ -154889,7 +159417,7 @@
}
},
{
- "id": 19839,
+ "id": 20308,
"properties": {
"east": "none",
"north": "low",
@@ -154900,7 +159428,7 @@
}
},
{
- "id": 19840,
+ "id": 20309,
"properties": {
"east": "none",
"north": "low",
@@ -154911,7 +159439,7 @@
}
},
{
- "id": 19841,
+ "id": 20310,
"properties": {
"east": "none",
"north": "low",
@@ -154922,7 +159450,7 @@
}
},
{
- "id": 19842,
+ "id": 20311,
"properties": {
"east": "none",
"north": "tall",
@@ -154933,7 +159461,7 @@
}
},
{
- "id": 19843,
+ "id": 20312,
"properties": {
"east": "none",
"north": "tall",
@@ -154944,7 +159472,7 @@
}
},
{
- "id": 19844,
+ "id": 20313,
"properties": {
"east": "none",
"north": "tall",
@@ -154955,7 +159483,7 @@
}
},
{
- "id": 19845,
+ "id": 20314,
"properties": {
"east": "none",
"north": "tall",
@@ -154966,7 +159494,7 @@
}
},
{
- "id": 19846,
+ "id": 20315,
"properties": {
"east": "none",
"north": "tall",
@@ -154977,7 +159505,7 @@
}
},
{
- "id": 19847,
+ "id": 20316,
"properties": {
"east": "none",
"north": "tall",
@@ -154988,7 +159516,7 @@
}
},
{
- "id": 19848,
+ "id": 20317,
"properties": {
"east": "none",
"north": "tall",
@@ -154999,7 +159527,7 @@
}
},
{
- "id": 19849,
+ "id": 20318,
"properties": {
"east": "none",
"north": "tall",
@@ -155010,7 +159538,7 @@
}
},
{
- "id": 19850,
+ "id": 20319,
"properties": {
"east": "none",
"north": "tall",
@@ -155021,7 +159549,7 @@
}
},
{
- "id": 19851,
+ "id": 20320,
"properties": {
"east": "none",
"north": "tall",
@@ -155032,7 +159560,7 @@
}
},
{
- "id": 19852,
+ "id": 20321,
"properties": {
"east": "none",
"north": "tall",
@@ -155043,7 +159571,7 @@
}
},
{
- "id": 19853,
+ "id": 20322,
"properties": {
"east": "none",
"north": "tall",
@@ -155054,7 +159582,7 @@
}
},
{
- "id": 19854,
+ "id": 20323,
"properties": {
"east": "none",
"north": "tall",
@@ -155065,7 +159593,7 @@
}
},
{
- "id": 19855,
+ "id": 20324,
"properties": {
"east": "none",
"north": "tall",
@@ -155076,7 +159604,7 @@
}
},
{
- "id": 19856,
+ "id": 20325,
"properties": {
"east": "none",
"north": "tall",
@@ -155087,7 +159615,7 @@
}
},
{
- "id": 19857,
+ "id": 20326,
"properties": {
"east": "none",
"north": "tall",
@@ -155098,7 +159626,7 @@
}
},
{
- "id": 19858,
+ "id": 20327,
"properties": {
"east": "none",
"north": "tall",
@@ -155109,7 +159637,7 @@
}
},
{
- "id": 19859,
+ "id": 20328,
"properties": {
"east": "none",
"north": "tall",
@@ -155120,7 +159648,7 @@
}
},
{
- "id": 19860,
+ "id": 20329,
"properties": {
"east": "none",
"north": "tall",
@@ -155131,7 +159659,7 @@
}
},
{
- "id": 19861,
+ "id": 20330,
"properties": {
"east": "none",
"north": "tall",
@@ -155142,7 +159670,7 @@
}
},
{
- "id": 19862,
+ "id": 20331,
"properties": {
"east": "none",
"north": "tall",
@@ -155153,7 +159681,7 @@
}
},
{
- "id": 19863,
+ "id": 20332,
"properties": {
"east": "none",
"north": "tall",
@@ -155164,7 +159692,7 @@
}
},
{
- "id": 19864,
+ "id": 20333,
"properties": {
"east": "none",
"north": "tall",
@@ -155175,7 +159703,7 @@
}
},
{
- "id": 19865,
+ "id": 20334,
"properties": {
"east": "none",
"north": "tall",
@@ -155186,7 +159714,7 @@
}
},
{
- "id": 19866,
+ "id": 20335,
"properties": {
"east": "none",
"north": "tall",
@@ -155197,7 +159725,7 @@
}
},
{
- "id": 19867,
+ "id": 20336,
"properties": {
"east": "none",
"north": "tall",
@@ -155208,7 +159736,7 @@
}
},
{
- "id": 19868,
+ "id": 20337,
"properties": {
"east": "none",
"north": "tall",
@@ -155219,7 +159747,7 @@
}
},
{
- "id": 19869,
+ "id": 20338,
"properties": {
"east": "none",
"north": "tall",
@@ -155230,7 +159758,7 @@
}
},
{
- "id": 19870,
+ "id": 20339,
"properties": {
"east": "none",
"north": "tall",
@@ -155241,7 +159769,7 @@
}
},
{
- "id": 19871,
+ "id": 20340,
"properties": {
"east": "none",
"north": "tall",
@@ -155252,7 +159780,7 @@
}
},
{
- "id": 19872,
+ "id": 20341,
"properties": {
"east": "none",
"north": "tall",
@@ -155263,7 +159791,7 @@
}
},
{
- "id": 19873,
+ "id": 20342,
"properties": {
"east": "none",
"north": "tall",
@@ -155274,7 +159802,7 @@
}
},
{
- "id": 19874,
+ "id": 20343,
"properties": {
"east": "none",
"north": "tall",
@@ -155285,7 +159813,7 @@
}
},
{
- "id": 19875,
+ "id": 20344,
"properties": {
"east": "none",
"north": "tall",
@@ -155296,7 +159824,7 @@
}
},
{
- "id": 19876,
+ "id": 20345,
"properties": {
"east": "none",
"north": "tall",
@@ -155307,7 +159835,7 @@
}
},
{
- "id": 19877,
+ "id": 20346,
"properties": {
"east": "none",
"north": "tall",
@@ -155318,7 +159846,7 @@
}
},
{
- "id": 19878,
+ "id": 20347,
"properties": {
"east": "low",
"north": "none",
@@ -155329,7 +159857,7 @@
}
},
{
- "id": 19879,
+ "id": 20348,
"properties": {
"east": "low",
"north": "none",
@@ -155340,7 +159868,7 @@
}
},
{
- "id": 19880,
+ "id": 20349,
"properties": {
"east": "low",
"north": "none",
@@ -155351,7 +159879,7 @@
}
},
{
- "id": 19881,
+ "id": 20350,
"properties": {
"east": "low",
"north": "none",
@@ -155362,7 +159890,7 @@
}
},
{
- "id": 19882,
+ "id": 20351,
"properties": {
"east": "low",
"north": "none",
@@ -155373,7 +159901,7 @@
}
},
{
- "id": 19883,
+ "id": 20352,
"properties": {
"east": "low",
"north": "none",
@@ -155384,7 +159912,7 @@
}
},
{
- "id": 19884,
+ "id": 20353,
"properties": {
"east": "low",
"north": "none",
@@ -155395,7 +159923,7 @@
}
},
{
- "id": 19885,
+ "id": 20354,
"properties": {
"east": "low",
"north": "none",
@@ -155406,7 +159934,7 @@
}
},
{
- "id": 19886,
+ "id": 20355,
"properties": {
"east": "low",
"north": "none",
@@ -155417,7 +159945,7 @@
}
},
{
- "id": 19887,
+ "id": 20356,
"properties": {
"east": "low",
"north": "none",
@@ -155428,7 +159956,7 @@
}
},
{
- "id": 19888,
+ "id": 20357,
"properties": {
"east": "low",
"north": "none",
@@ -155439,7 +159967,7 @@
}
},
{
- "id": 19889,
+ "id": 20358,
"properties": {
"east": "low",
"north": "none",
@@ -155450,7 +159978,7 @@
}
},
{
- "id": 19890,
+ "id": 20359,
"properties": {
"east": "low",
"north": "none",
@@ -155461,7 +159989,7 @@
}
},
{
- "id": 19891,
+ "id": 20360,
"properties": {
"east": "low",
"north": "none",
@@ -155472,7 +160000,7 @@
}
},
{
- "id": 19892,
+ "id": 20361,
"properties": {
"east": "low",
"north": "none",
@@ -155483,7 +160011,7 @@
}
},
{
- "id": 19893,
+ "id": 20362,
"properties": {
"east": "low",
"north": "none",
@@ -155494,7 +160022,7 @@
}
},
{
- "id": 19894,
+ "id": 20363,
"properties": {
"east": "low",
"north": "none",
@@ -155505,7 +160033,7 @@
}
},
{
- "id": 19895,
+ "id": 20364,
"properties": {
"east": "low",
"north": "none",
@@ -155516,7 +160044,7 @@
}
},
{
- "id": 19896,
+ "id": 20365,
"properties": {
"east": "low",
"north": "none",
@@ -155527,7 +160055,7 @@
}
},
{
- "id": 19897,
+ "id": 20366,
"properties": {
"east": "low",
"north": "none",
@@ -155538,7 +160066,7 @@
}
},
{
- "id": 19898,
+ "id": 20367,
"properties": {
"east": "low",
"north": "none",
@@ -155549,7 +160077,7 @@
}
},
{
- "id": 19899,
+ "id": 20368,
"properties": {
"east": "low",
"north": "none",
@@ -155560,7 +160088,7 @@
}
},
{
- "id": 19900,
+ "id": 20369,
"properties": {
"east": "low",
"north": "none",
@@ -155571,7 +160099,7 @@
}
},
{
- "id": 19901,
+ "id": 20370,
"properties": {
"east": "low",
"north": "none",
@@ -155582,7 +160110,7 @@
}
},
{
- "id": 19902,
+ "id": 20371,
"properties": {
"east": "low",
"north": "none",
@@ -155593,7 +160121,7 @@
}
},
{
- "id": 19903,
+ "id": 20372,
"properties": {
"east": "low",
"north": "none",
@@ -155604,7 +160132,7 @@
}
},
{
- "id": 19904,
+ "id": 20373,
"properties": {
"east": "low",
"north": "none",
@@ -155615,7 +160143,7 @@
}
},
{
- "id": 19905,
+ "id": 20374,
"properties": {
"east": "low",
"north": "none",
@@ -155626,7 +160154,7 @@
}
},
{
- "id": 19906,
+ "id": 20375,
"properties": {
"east": "low",
"north": "none",
@@ -155637,7 +160165,7 @@
}
},
{
- "id": 19907,
+ "id": 20376,
"properties": {
"east": "low",
"north": "none",
@@ -155648,7 +160176,7 @@
}
},
{
- "id": 19908,
+ "id": 20377,
"properties": {
"east": "low",
"north": "none",
@@ -155659,7 +160187,7 @@
}
},
{
- "id": 19909,
+ "id": 20378,
"properties": {
"east": "low",
"north": "none",
@@ -155670,7 +160198,7 @@
}
},
{
- "id": 19910,
+ "id": 20379,
"properties": {
"east": "low",
"north": "none",
@@ -155681,7 +160209,7 @@
}
},
{
- "id": 19911,
+ "id": 20380,
"properties": {
"east": "low",
"north": "none",
@@ -155692,7 +160220,7 @@
}
},
{
- "id": 19912,
+ "id": 20381,
"properties": {
"east": "low",
"north": "none",
@@ -155703,7 +160231,7 @@
}
},
{
- "id": 19913,
+ "id": 20382,
"properties": {
"east": "low",
"north": "none",
@@ -155714,7 +160242,7 @@
}
},
{
- "id": 19914,
+ "id": 20383,
"properties": {
"east": "low",
"north": "low",
@@ -155725,7 +160253,7 @@
}
},
{
- "id": 19915,
+ "id": 20384,
"properties": {
"east": "low",
"north": "low",
@@ -155736,7 +160264,7 @@
}
},
{
- "id": 19916,
+ "id": 20385,
"properties": {
"east": "low",
"north": "low",
@@ -155747,7 +160275,7 @@
}
},
{
- "id": 19917,
+ "id": 20386,
"properties": {
"east": "low",
"north": "low",
@@ -155758,7 +160286,7 @@
}
},
{
- "id": 19918,
+ "id": 20387,
"properties": {
"east": "low",
"north": "low",
@@ -155769,7 +160297,7 @@
}
},
{
- "id": 19919,
+ "id": 20388,
"properties": {
"east": "low",
"north": "low",
@@ -155780,7 +160308,7 @@
}
},
{
- "id": 19920,
+ "id": 20389,
"properties": {
"east": "low",
"north": "low",
@@ -155791,7 +160319,7 @@
}
},
{
- "id": 19921,
+ "id": 20390,
"properties": {
"east": "low",
"north": "low",
@@ -155802,7 +160330,7 @@
}
},
{
- "id": 19922,
+ "id": 20391,
"properties": {
"east": "low",
"north": "low",
@@ -155813,7 +160341,7 @@
}
},
{
- "id": 19923,
+ "id": 20392,
"properties": {
"east": "low",
"north": "low",
@@ -155824,7 +160352,7 @@
}
},
{
- "id": 19924,
+ "id": 20393,
"properties": {
"east": "low",
"north": "low",
@@ -155835,7 +160363,7 @@
}
},
{
- "id": 19925,
+ "id": 20394,
"properties": {
"east": "low",
"north": "low",
@@ -155846,7 +160374,7 @@
}
},
{
- "id": 19926,
+ "id": 20395,
"properties": {
"east": "low",
"north": "low",
@@ -155857,7 +160385,7 @@
}
},
{
- "id": 19927,
+ "id": 20396,
"properties": {
"east": "low",
"north": "low",
@@ -155868,7 +160396,7 @@
}
},
{
- "id": 19928,
+ "id": 20397,
"properties": {
"east": "low",
"north": "low",
@@ -155879,7 +160407,7 @@
}
},
{
- "id": 19929,
+ "id": 20398,
"properties": {
"east": "low",
"north": "low",
@@ -155890,7 +160418,7 @@
}
},
{
- "id": 19930,
+ "id": 20399,
"properties": {
"east": "low",
"north": "low",
@@ -155901,7 +160429,7 @@
}
},
{
- "id": 19931,
+ "id": 20400,
"properties": {
"east": "low",
"north": "low",
@@ -155912,7 +160440,7 @@
}
},
{
- "id": 19932,
+ "id": 20401,
"properties": {
"east": "low",
"north": "low",
@@ -155923,7 +160451,7 @@
}
},
{
- "id": 19933,
+ "id": 20402,
"properties": {
"east": "low",
"north": "low",
@@ -155934,7 +160462,7 @@
}
},
{
- "id": 19934,
+ "id": 20403,
"properties": {
"east": "low",
"north": "low",
@@ -155945,7 +160473,7 @@
}
},
{
- "id": 19935,
+ "id": 20404,
"properties": {
"east": "low",
"north": "low",
@@ -155956,7 +160484,7 @@
}
},
{
- "id": 19936,
+ "id": 20405,
"properties": {
"east": "low",
"north": "low",
@@ -155967,7 +160495,7 @@
}
},
{
- "id": 19937,
+ "id": 20406,
"properties": {
"east": "low",
"north": "low",
@@ -155978,7 +160506,7 @@
}
},
{
- "id": 19938,
+ "id": 20407,
"properties": {
"east": "low",
"north": "low",
@@ -155989,7 +160517,7 @@
}
},
{
- "id": 19939,
+ "id": 20408,
"properties": {
"east": "low",
"north": "low",
@@ -156000,7 +160528,7 @@
}
},
{
- "id": 19940,
+ "id": 20409,
"properties": {
"east": "low",
"north": "low",
@@ -156011,7 +160539,7 @@
}
},
{
- "id": 19941,
+ "id": 20410,
"properties": {
"east": "low",
"north": "low",
@@ -156022,7 +160550,7 @@
}
},
{
- "id": 19942,
+ "id": 20411,
"properties": {
"east": "low",
"north": "low",
@@ -156033,7 +160561,7 @@
}
},
{
- "id": 19943,
+ "id": 20412,
"properties": {
"east": "low",
"north": "low",
@@ -156044,7 +160572,7 @@
}
},
{
- "id": 19944,
+ "id": 20413,
"properties": {
"east": "low",
"north": "low",
@@ -156055,7 +160583,7 @@
}
},
{
- "id": 19945,
+ "id": 20414,
"properties": {
"east": "low",
"north": "low",
@@ -156066,7 +160594,7 @@
}
},
{
- "id": 19946,
+ "id": 20415,
"properties": {
"east": "low",
"north": "low",
@@ -156077,7 +160605,7 @@
}
},
{
- "id": 19947,
+ "id": 20416,
"properties": {
"east": "low",
"north": "low",
@@ -156088,7 +160616,7 @@
}
},
{
- "id": 19948,
+ "id": 20417,
"properties": {
"east": "low",
"north": "low",
@@ -156099,7 +160627,7 @@
}
},
{
- "id": 19949,
+ "id": 20418,
"properties": {
"east": "low",
"north": "low",
@@ -156110,7 +160638,7 @@
}
},
{
- "id": 19950,
+ "id": 20419,
"properties": {
"east": "low",
"north": "tall",
@@ -156121,7 +160649,7 @@
}
},
{
- "id": 19951,
+ "id": 20420,
"properties": {
"east": "low",
"north": "tall",
@@ -156132,7 +160660,7 @@
}
},
{
- "id": 19952,
+ "id": 20421,
"properties": {
"east": "low",
"north": "tall",
@@ -156143,7 +160671,7 @@
}
},
{
- "id": 19953,
+ "id": 20422,
"properties": {
"east": "low",
"north": "tall",
@@ -156154,7 +160682,7 @@
}
},
{
- "id": 19954,
+ "id": 20423,
"properties": {
"east": "low",
"north": "tall",
@@ -156165,7 +160693,7 @@
}
},
{
- "id": 19955,
+ "id": 20424,
"properties": {
"east": "low",
"north": "tall",
@@ -156176,7 +160704,7 @@
}
},
{
- "id": 19956,
+ "id": 20425,
"properties": {
"east": "low",
"north": "tall",
@@ -156187,7 +160715,7 @@
}
},
{
- "id": 19957,
+ "id": 20426,
"properties": {
"east": "low",
"north": "tall",
@@ -156198,7 +160726,7 @@
}
},
{
- "id": 19958,
+ "id": 20427,
"properties": {
"east": "low",
"north": "tall",
@@ -156209,7 +160737,7 @@
}
},
{
- "id": 19959,
+ "id": 20428,
"properties": {
"east": "low",
"north": "tall",
@@ -156220,7 +160748,7 @@
}
},
{
- "id": 19960,
+ "id": 20429,
"properties": {
"east": "low",
"north": "tall",
@@ -156231,7 +160759,7 @@
}
},
{
- "id": 19961,
+ "id": 20430,
"properties": {
"east": "low",
"north": "tall",
@@ -156242,7 +160770,7 @@
}
},
{
- "id": 19962,
+ "id": 20431,
"properties": {
"east": "low",
"north": "tall",
@@ -156253,7 +160781,7 @@
}
},
{
- "id": 19963,
+ "id": 20432,
"properties": {
"east": "low",
"north": "tall",
@@ -156264,7 +160792,7 @@
}
},
{
- "id": 19964,
+ "id": 20433,
"properties": {
"east": "low",
"north": "tall",
@@ -156275,7 +160803,7 @@
}
},
{
- "id": 19965,
+ "id": 20434,
"properties": {
"east": "low",
"north": "tall",
@@ -156286,7 +160814,7 @@
}
},
{
- "id": 19966,
+ "id": 20435,
"properties": {
"east": "low",
"north": "tall",
@@ -156297,7 +160825,7 @@
}
},
{
- "id": 19967,
+ "id": 20436,
"properties": {
"east": "low",
"north": "tall",
@@ -156308,7 +160836,7 @@
}
},
{
- "id": 19968,
+ "id": 20437,
"properties": {
"east": "low",
"north": "tall",
@@ -156319,7 +160847,7 @@
}
},
{
- "id": 19969,
+ "id": 20438,
"properties": {
"east": "low",
"north": "tall",
@@ -156330,7 +160858,7 @@
}
},
{
- "id": 19970,
+ "id": 20439,
"properties": {
"east": "low",
"north": "tall",
@@ -156341,7 +160869,7 @@
}
},
{
- "id": 19971,
+ "id": 20440,
"properties": {
"east": "low",
"north": "tall",
@@ -156352,7 +160880,7 @@
}
},
{
- "id": 19972,
+ "id": 20441,
"properties": {
"east": "low",
"north": "tall",
@@ -156363,7 +160891,7 @@
}
},
{
- "id": 19973,
+ "id": 20442,
"properties": {
"east": "low",
"north": "tall",
@@ -156374,7 +160902,7 @@
}
},
{
- "id": 19974,
+ "id": 20443,
"properties": {
"east": "low",
"north": "tall",
@@ -156385,7 +160913,7 @@
}
},
{
- "id": 19975,
+ "id": 20444,
"properties": {
"east": "low",
"north": "tall",
@@ -156396,7 +160924,7 @@
}
},
{
- "id": 19976,
+ "id": 20445,
"properties": {
"east": "low",
"north": "tall",
@@ -156407,7 +160935,7 @@
}
},
{
- "id": 19977,
+ "id": 20446,
"properties": {
"east": "low",
"north": "tall",
@@ -156418,7 +160946,7 @@
}
},
{
- "id": 19978,
+ "id": 20447,
"properties": {
"east": "low",
"north": "tall",
@@ -156429,7 +160957,7 @@
}
},
{
- "id": 19979,
+ "id": 20448,
"properties": {
"east": "low",
"north": "tall",
@@ -156440,7 +160968,7 @@
}
},
{
- "id": 19980,
+ "id": 20449,
"properties": {
"east": "low",
"north": "tall",
@@ -156451,7 +160979,7 @@
}
},
{
- "id": 19981,
+ "id": 20450,
"properties": {
"east": "low",
"north": "tall",
@@ -156462,7 +160990,7 @@
}
},
{
- "id": 19982,
+ "id": 20451,
"properties": {
"east": "low",
"north": "tall",
@@ -156473,7 +161001,7 @@
}
},
{
- "id": 19983,
+ "id": 20452,
"properties": {
"east": "low",
"north": "tall",
@@ -156484,7 +161012,7 @@
}
},
{
- "id": 19984,
+ "id": 20453,
"properties": {
"east": "low",
"north": "tall",
@@ -156495,7 +161023,7 @@
}
},
{
- "id": 19985,
+ "id": 20454,
"properties": {
"east": "low",
"north": "tall",
@@ -156506,7 +161034,7 @@
}
},
{
- "id": 19986,
+ "id": 20455,
"properties": {
"east": "tall",
"north": "none",
@@ -156517,7 +161045,7 @@
}
},
{
- "id": 19987,
+ "id": 20456,
"properties": {
"east": "tall",
"north": "none",
@@ -156528,7 +161056,7 @@
}
},
{
- "id": 19988,
+ "id": 20457,
"properties": {
"east": "tall",
"north": "none",
@@ -156539,7 +161067,7 @@
}
},
{
- "id": 19989,
+ "id": 20458,
"properties": {
"east": "tall",
"north": "none",
@@ -156550,7 +161078,7 @@
}
},
{
- "id": 19990,
+ "id": 20459,
"properties": {
"east": "tall",
"north": "none",
@@ -156561,7 +161089,7 @@
}
},
{
- "id": 19991,
+ "id": 20460,
"properties": {
"east": "tall",
"north": "none",
@@ -156572,7 +161100,7 @@
}
},
{
- "id": 19992,
+ "id": 20461,
"properties": {
"east": "tall",
"north": "none",
@@ -156583,7 +161111,7 @@
}
},
{
- "id": 19993,
+ "id": 20462,
"properties": {
"east": "tall",
"north": "none",
@@ -156594,7 +161122,7 @@
}
},
{
- "id": 19994,
+ "id": 20463,
"properties": {
"east": "tall",
"north": "none",
@@ -156605,7 +161133,7 @@
}
},
{
- "id": 19995,
+ "id": 20464,
"properties": {
"east": "tall",
"north": "none",
@@ -156616,7 +161144,7 @@
}
},
{
- "id": 19996,
+ "id": 20465,
"properties": {
"east": "tall",
"north": "none",
@@ -156627,7 +161155,7 @@
}
},
{
- "id": 19997,
+ "id": 20466,
"properties": {
"east": "tall",
"north": "none",
@@ -156638,7 +161166,7 @@
}
},
{
- "id": 19998,
+ "id": 20467,
"properties": {
"east": "tall",
"north": "none",
@@ -156649,7 +161177,7 @@
}
},
{
- "id": 19999,
+ "id": 20468,
"properties": {
"east": "tall",
"north": "none",
@@ -156660,7 +161188,7 @@
}
},
{
- "id": 20000,
+ "id": 20469,
"properties": {
"east": "tall",
"north": "none",
@@ -156671,7 +161199,7 @@
}
},
{
- "id": 20001,
+ "id": 20470,
"properties": {
"east": "tall",
"north": "none",
@@ -156682,7 +161210,7 @@
}
},
{
- "id": 20002,
+ "id": 20471,
"properties": {
"east": "tall",
"north": "none",
@@ -156693,7 +161221,7 @@
}
},
{
- "id": 20003,
+ "id": 20472,
"properties": {
"east": "tall",
"north": "none",
@@ -156704,7 +161232,7 @@
}
},
{
- "id": 20004,
+ "id": 20473,
"properties": {
"east": "tall",
"north": "none",
@@ -156715,7 +161243,7 @@
}
},
{
- "id": 20005,
+ "id": 20474,
"properties": {
"east": "tall",
"north": "none",
@@ -156726,7 +161254,7 @@
}
},
{
- "id": 20006,
+ "id": 20475,
"properties": {
"east": "tall",
"north": "none",
@@ -156737,7 +161265,7 @@
}
},
{
- "id": 20007,
+ "id": 20476,
"properties": {
"east": "tall",
"north": "none",
@@ -156748,7 +161276,7 @@
}
},
{
- "id": 20008,
+ "id": 20477,
"properties": {
"east": "tall",
"north": "none",
@@ -156759,7 +161287,7 @@
}
},
{
- "id": 20009,
+ "id": 20478,
"properties": {
"east": "tall",
"north": "none",
@@ -156770,7 +161298,7 @@
}
},
{
- "id": 20010,
+ "id": 20479,
"properties": {
"east": "tall",
"north": "none",
@@ -156781,7 +161309,7 @@
}
},
{
- "id": 20011,
+ "id": 20480,
"properties": {
"east": "tall",
"north": "none",
@@ -156792,7 +161320,7 @@
}
},
{
- "id": 20012,
+ "id": 20481,
"properties": {
"east": "tall",
"north": "none",
@@ -156803,7 +161331,7 @@
}
},
{
- "id": 20013,
+ "id": 20482,
"properties": {
"east": "tall",
"north": "none",
@@ -156814,7 +161342,7 @@
}
},
{
- "id": 20014,
+ "id": 20483,
"properties": {
"east": "tall",
"north": "none",
@@ -156825,7 +161353,7 @@
}
},
{
- "id": 20015,
+ "id": 20484,
"properties": {
"east": "tall",
"north": "none",
@@ -156836,7 +161364,7 @@
}
},
{
- "id": 20016,
+ "id": 20485,
"properties": {
"east": "tall",
"north": "none",
@@ -156847,7 +161375,7 @@
}
},
{
- "id": 20017,
+ "id": 20486,
"properties": {
"east": "tall",
"north": "none",
@@ -156858,7 +161386,7 @@
}
},
{
- "id": 20018,
+ "id": 20487,
"properties": {
"east": "tall",
"north": "none",
@@ -156869,7 +161397,7 @@
}
},
{
- "id": 20019,
+ "id": 20488,
"properties": {
"east": "tall",
"north": "none",
@@ -156880,7 +161408,7 @@
}
},
{
- "id": 20020,
+ "id": 20489,
"properties": {
"east": "tall",
"north": "none",
@@ -156891,7 +161419,7 @@
}
},
{
- "id": 20021,
+ "id": 20490,
"properties": {
"east": "tall",
"north": "none",
@@ -156902,7 +161430,7 @@
}
},
{
- "id": 20022,
+ "id": 20491,
"properties": {
"east": "tall",
"north": "low",
@@ -156913,7 +161441,7 @@
}
},
{
- "id": 20023,
+ "id": 20492,
"properties": {
"east": "tall",
"north": "low",
@@ -156924,7 +161452,7 @@
}
},
{
- "id": 20024,
+ "id": 20493,
"properties": {
"east": "tall",
"north": "low",
@@ -156935,7 +161463,7 @@
}
},
{
- "id": 20025,
+ "id": 20494,
"properties": {
"east": "tall",
"north": "low",
@@ -156946,7 +161474,7 @@
}
},
{
- "id": 20026,
+ "id": 20495,
"properties": {
"east": "tall",
"north": "low",
@@ -156957,7 +161485,7 @@
}
},
{
- "id": 20027,
+ "id": 20496,
"properties": {
"east": "tall",
"north": "low",
@@ -156968,7 +161496,7 @@
}
},
{
- "id": 20028,
+ "id": 20497,
"properties": {
"east": "tall",
"north": "low",
@@ -156979,7 +161507,7 @@
}
},
{
- "id": 20029,
+ "id": 20498,
"properties": {
"east": "tall",
"north": "low",
@@ -156990,7 +161518,7 @@
}
},
{
- "id": 20030,
+ "id": 20499,
"properties": {
"east": "tall",
"north": "low",
@@ -157001,7 +161529,7 @@
}
},
{
- "id": 20031,
+ "id": 20500,
"properties": {
"east": "tall",
"north": "low",
@@ -157012,7 +161540,7 @@
}
},
{
- "id": 20032,
+ "id": 20501,
"properties": {
"east": "tall",
"north": "low",
@@ -157023,7 +161551,7 @@
}
},
{
- "id": 20033,
+ "id": 20502,
"properties": {
"east": "tall",
"north": "low",
@@ -157034,7 +161562,7 @@
}
},
{
- "id": 20034,
+ "id": 20503,
"properties": {
"east": "tall",
"north": "low",
@@ -157045,7 +161573,7 @@
}
},
{
- "id": 20035,
+ "id": 20504,
"properties": {
"east": "tall",
"north": "low",
@@ -157056,7 +161584,7 @@
}
},
{
- "id": 20036,
+ "id": 20505,
"properties": {
"east": "tall",
"north": "low",
@@ -157067,7 +161595,7 @@
}
},
{
- "id": 20037,
+ "id": 20506,
"properties": {
"east": "tall",
"north": "low",
@@ -157078,7 +161606,7 @@
}
},
{
- "id": 20038,
+ "id": 20507,
"properties": {
"east": "tall",
"north": "low",
@@ -157089,7 +161617,7 @@
}
},
{
- "id": 20039,
+ "id": 20508,
"properties": {
"east": "tall",
"north": "low",
@@ -157100,7 +161628,7 @@
}
},
{
- "id": 20040,
+ "id": 20509,
"properties": {
"east": "tall",
"north": "low",
@@ -157111,7 +161639,7 @@
}
},
{
- "id": 20041,
+ "id": 20510,
"properties": {
"east": "tall",
"north": "low",
@@ -157122,7 +161650,7 @@
}
},
{
- "id": 20042,
+ "id": 20511,
"properties": {
"east": "tall",
"north": "low",
@@ -157133,7 +161661,7 @@
}
},
{
- "id": 20043,
+ "id": 20512,
"properties": {
"east": "tall",
"north": "low",
@@ -157144,7 +161672,7 @@
}
},
{
- "id": 20044,
+ "id": 20513,
"properties": {
"east": "tall",
"north": "low",
@@ -157155,7 +161683,7 @@
}
},
{
- "id": 20045,
+ "id": 20514,
"properties": {
"east": "tall",
"north": "low",
@@ -157166,7 +161694,7 @@
}
},
{
- "id": 20046,
+ "id": 20515,
"properties": {
"east": "tall",
"north": "low",
@@ -157177,7 +161705,7 @@
}
},
{
- "id": 20047,
+ "id": 20516,
"properties": {
"east": "tall",
"north": "low",
@@ -157188,7 +161716,7 @@
}
},
{
- "id": 20048,
+ "id": 20517,
"properties": {
"east": "tall",
"north": "low",
@@ -157199,7 +161727,7 @@
}
},
{
- "id": 20049,
+ "id": 20518,
"properties": {
"east": "tall",
"north": "low",
@@ -157210,7 +161738,7 @@
}
},
{
- "id": 20050,
+ "id": 20519,
"properties": {
"east": "tall",
"north": "low",
@@ -157221,7 +161749,7 @@
}
},
{
- "id": 20051,
+ "id": 20520,
"properties": {
"east": "tall",
"north": "low",
@@ -157232,7 +161760,7 @@
}
},
{
- "id": 20052,
+ "id": 20521,
"properties": {
"east": "tall",
"north": "low",
@@ -157243,7 +161771,7 @@
}
},
{
- "id": 20053,
+ "id": 20522,
"properties": {
"east": "tall",
"north": "low",
@@ -157254,7 +161782,7 @@
}
},
{
- "id": 20054,
+ "id": 20523,
"properties": {
"east": "tall",
"north": "low",
@@ -157265,7 +161793,7 @@
}
},
{
- "id": 20055,
+ "id": 20524,
"properties": {
"east": "tall",
"north": "low",
@@ -157276,7 +161804,7 @@
}
},
{
- "id": 20056,
+ "id": 20525,
"properties": {
"east": "tall",
"north": "low",
@@ -157287,7 +161815,7 @@
}
},
{
- "id": 20057,
+ "id": 20526,
"properties": {
"east": "tall",
"north": "low",
@@ -157298,7 +161826,7 @@
}
},
{
- "id": 20058,
+ "id": 20527,
"properties": {
"east": "tall",
"north": "tall",
@@ -157309,7 +161837,7 @@
}
},
{
- "id": 20059,
+ "id": 20528,
"properties": {
"east": "tall",
"north": "tall",
@@ -157320,7 +161848,7 @@
}
},
{
- "id": 20060,
+ "id": 20529,
"properties": {
"east": "tall",
"north": "tall",
@@ -157331,7 +161859,7 @@
}
},
{
- "id": 20061,
+ "id": 20530,
"properties": {
"east": "tall",
"north": "tall",
@@ -157342,7 +161870,7 @@
}
},
{
- "id": 20062,
+ "id": 20531,
"properties": {
"east": "tall",
"north": "tall",
@@ -157353,7 +161881,7 @@
}
},
{
- "id": 20063,
+ "id": 20532,
"properties": {
"east": "tall",
"north": "tall",
@@ -157364,7 +161892,7 @@
}
},
{
- "id": 20064,
+ "id": 20533,
"properties": {
"east": "tall",
"north": "tall",
@@ -157375,7 +161903,7 @@
}
},
{
- "id": 20065,
+ "id": 20534,
"properties": {
"east": "tall",
"north": "tall",
@@ -157386,7 +161914,7 @@
}
},
{
- "id": 20066,
+ "id": 20535,
"properties": {
"east": "tall",
"north": "tall",
@@ -157397,7 +161925,7 @@
}
},
{
- "id": 20067,
+ "id": 20536,
"properties": {
"east": "tall",
"north": "tall",
@@ -157408,7 +161936,7 @@
}
},
{
- "id": 20068,
+ "id": 20537,
"properties": {
"east": "tall",
"north": "tall",
@@ -157419,7 +161947,7 @@
}
},
{
- "id": 20069,
+ "id": 20538,
"properties": {
"east": "tall",
"north": "tall",
@@ -157430,7 +161958,7 @@
}
},
{
- "id": 20070,
+ "id": 20539,
"properties": {
"east": "tall",
"north": "tall",
@@ -157441,7 +161969,7 @@
}
},
{
- "id": 20071,
+ "id": 20540,
"properties": {
"east": "tall",
"north": "tall",
@@ -157452,7 +161980,7 @@
}
},
{
- "id": 20072,
+ "id": 20541,
"properties": {
"east": "tall",
"north": "tall",
@@ -157463,7 +161991,7 @@
}
},
{
- "id": 20073,
+ "id": 20542,
"properties": {
"east": "tall",
"north": "tall",
@@ -157474,7 +162002,7 @@
}
},
{
- "id": 20074,
+ "id": 20543,
"properties": {
"east": "tall",
"north": "tall",
@@ -157485,7 +162013,7 @@
}
},
{
- "id": 20075,
+ "id": 20544,
"properties": {
"east": "tall",
"north": "tall",
@@ -157496,7 +162024,7 @@
}
},
{
- "id": 20076,
+ "id": 20545,
"properties": {
"east": "tall",
"north": "tall",
@@ -157507,7 +162035,7 @@
}
},
{
- "id": 20077,
+ "id": 20546,
"properties": {
"east": "tall",
"north": "tall",
@@ -157518,7 +162046,7 @@
}
},
{
- "id": 20078,
+ "id": 20547,
"properties": {
"east": "tall",
"north": "tall",
@@ -157529,7 +162057,7 @@
}
},
{
- "id": 20079,
+ "id": 20548,
"properties": {
"east": "tall",
"north": "tall",
@@ -157540,7 +162068,7 @@
}
},
{
- "id": 20080,
+ "id": 20549,
"properties": {
"east": "tall",
"north": "tall",
@@ -157551,7 +162079,7 @@
}
},
{
- "id": 20081,
+ "id": 20550,
"properties": {
"east": "tall",
"north": "tall",
@@ -157562,7 +162090,7 @@
}
},
{
- "id": 20082,
+ "id": 20551,
"properties": {
"east": "tall",
"north": "tall",
@@ -157573,7 +162101,7 @@
}
},
{
- "id": 20083,
+ "id": 20552,
"properties": {
"east": "tall",
"north": "tall",
@@ -157584,7 +162112,7 @@
}
},
{
- "id": 20084,
+ "id": 20553,
"properties": {
"east": "tall",
"north": "tall",
@@ -157595,7 +162123,7 @@
}
},
{
- "id": 20085,
+ "id": 20554,
"properties": {
"east": "tall",
"north": "tall",
@@ -157606,7 +162134,7 @@
}
},
{
- "id": 20086,
+ "id": 20555,
"properties": {
"east": "tall",
"north": "tall",
@@ -157617,7 +162145,7 @@
}
},
{
- "id": 20087,
+ "id": 20556,
"properties": {
"east": "tall",
"north": "tall",
@@ -157628,7 +162156,7 @@
}
},
{
- "id": 20088,
+ "id": 20557,
"properties": {
"east": "tall",
"north": "tall",
@@ -157639,7 +162167,7 @@
}
},
{
- "id": 20089,
+ "id": 20558,
"properties": {
"east": "tall",
"north": "tall",
@@ -157650,7 +162178,7 @@
}
},
{
- "id": 20090,
+ "id": 20559,
"properties": {
"east": "tall",
"north": "tall",
@@ -157661,7 +162189,7 @@
}
},
{
- "id": 20091,
+ "id": 20560,
"properties": {
"east": "tall",
"north": "tall",
@@ -157672,7 +162200,7 @@
}
},
{
- "id": 20092,
+ "id": 20561,
"properties": {
"east": "tall",
"north": "tall",
@@ -157683,7 +162211,7 @@
}
},
{
- "id": 20093,
+ "id": 20562,
"properties": {
"east": "tall",
"north": "tall",
@@ -157699,7 +162227,7 @@
"states": [
{
"default": true,
- "id": 21976
+ "id": 22461
}
]
},
@@ -157717,21 +162245,21 @@
},
"states": [
{
- "id": 22057,
+ "id": 22542,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 22058,
+ "id": 22543,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 22059,
+ "id": 22544,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -157739,21 +162267,21 @@
},
{
"default": true,
- "id": 22060,
+ "id": 22545,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 22061,
+ "id": 22546,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 22062,
+ "id": 22547,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -157787,7 +162315,7 @@
},
"states": [
{
- "id": 21977,
+ "id": 22462,
"properties": {
"facing": "north",
"half": "top",
@@ -157796,7 +162324,7 @@
}
},
{
- "id": 21978,
+ "id": 22463,
"properties": {
"facing": "north",
"half": "top",
@@ -157805,7 +162333,7 @@
}
},
{
- "id": 21979,
+ "id": 22464,
"properties": {
"facing": "north",
"half": "top",
@@ -157814,7 +162342,7 @@
}
},
{
- "id": 21980,
+ "id": 22465,
"properties": {
"facing": "north",
"half": "top",
@@ -157823,7 +162351,7 @@
}
},
{
- "id": 21981,
+ "id": 22466,
"properties": {
"facing": "north",
"half": "top",
@@ -157832,7 +162360,7 @@
}
},
{
- "id": 21982,
+ "id": 22467,
"properties": {
"facing": "north",
"half": "top",
@@ -157841,7 +162369,7 @@
}
},
{
- "id": 21983,
+ "id": 22468,
"properties": {
"facing": "north",
"half": "top",
@@ -157850,7 +162378,7 @@
}
},
{
- "id": 21984,
+ "id": 22469,
"properties": {
"facing": "north",
"half": "top",
@@ -157859,7 +162387,7 @@
}
},
{
- "id": 21985,
+ "id": 22470,
"properties": {
"facing": "north",
"half": "top",
@@ -157868,7 +162396,7 @@
}
},
{
- "id": 21986,
+ "id": 22471,
"properties": {
"facing": "north",
"half": "top",
@@ -157877,7 +162405,7 @@
}
},
{
- "id": 21987,
+ "id": 22472,
"properties": {
"facing": "north",
"half": "bottom",
@@ -157887,7 +162415,7 @@
},
{
"default": true,
- "id": 21988,
+ "id": 22473,
"properties": {
"facing": "north",
"half": "bottom",
@@ -157896,7 +162424,7 @@
}
},
{
- "id": 21989,
+ "id": 22474,
"properties": {
"facing": "north",
"half": "bottom",
@@ -157905,7 +162433,7 @@
}
},
{
- "id": 21990,
+ "id": 22475,
"properties": {
"facing": "north",
"half": "bottom",
@@ -157914,7 +162442,7 @@
}
},
{
- "id": 21991,
+ "id": 22476,
"properties": {
"facing": "north",
"half": "bottom",
@@ -157923,7 +162451,7 @@
}
},
{
- "id": 21992,
+ "id": 22477,
"properties": {
"facing": "north",
"half": "bottom",
@@ -157932,7 +162460,7 @@
}
},
{
- "id": 21993,
+ "id": 22478,
"properties": {
"facing": "north",
"half": "bottom",
@@ -157941,7 +162469,7 @@
}
},
{
- "id": 21994,
+ "id": 22479,
"properties": {
"facing": "north",
"half": "bottom",
@@ -157950,7 +162478,7 @@
}
},
{
- "id": 21995,
+ "id": 22480,
"properties": {
"facing": "north",
"half": "bottom",
@@ -157959,7 +162487,7 @@
}
},
{
- "id": 21996,
+ "id": 22481,
"properties": {
"facing": "north",
"half": "bottom",
@@ -157968,7 +162496,7 @@
}
},
{
- "id": 21997,
+ "id": 22482,
"properties": {
"facing": "south",
"half": "top",
@@ -157977,7 +162505,7 @@
}
},
{
- "id": 21998,
+ "id": 22483,
"properties": {
"facing": "south",
"half": "top",
@@ -157986,7 +162514,7 @@
}
},
{
- "id": 21999,
+ "id": 22484,
"properties": {
"facing": "south",
"half": "top",
@@ -157995,7 +162523,7 @@
}
},
{
- "id": 22000,
+ "id": 22485,
"properties": {
"facing": "south",
"half": "top",
@@ -158004,7 +162532,7 @@
}
},
{
- "id": 22001,
+ "id": 22486,
"properties": {
"facing": "south",
"half": "top",
@@ -158013,7 +162541,7 @@
}
},
{
- "id": 22002,
+ "id": 22487,
"properties": {
"facing": "south",
"half": "top",
@@ -158022,7 +162550,7 @@
}
},
{
- "id": 22003,
+ "id": 22488,
"properties": {
"facing": "south",
"half": "top",
@@ -158031,7 +162559,7 @@
}
},
{
- "id": 22004,
+ "id": 22489,
"properties": {
"facing": "south",
"half": "top",
@@ -158040,7 +162568,7 @@
}
},
{
- "id": 22005,
+ "id": 22490,
"properties": {
"facing": "south",
"half": "top",
@@ -158049,7 +162577,7 @@
}
},
{
- "id": 22006,
+ "id": 22491,
"properties": {
"facing": "south",
"half": "top",
@@ -158058,7 +162586,7 @@
}
},
{
- "id": 22007,
+ "id": 22492,
"properties": {
"facing": "south",
"half": "bottom",
@@ -158067,7 +162595,7 @@
}
},
{
- "id": 22008,
+ "id": 22493,
"properties": {
"facing": "south",
"half": "bottom",
@@ -158076,7 +162604,7 @@
}
},
{
- "id": 22009,
+ "id": 22494,
"properties": {
"facing": "south",
"half": "bottom",
@@ -158085,7 +162613,7 @@
}
},
{
- "id": 22010,
+ "id": 22495,
"properties": {
"facing": "south",
"half": "bottom",
@@ -158094,7 +162622,7 @@
}
},
{
- "id": 22011,
+ "id": 22496,
"properties": {
"facing": "south",
"half": "bottom",
@@ -158103,7 +162631,7 @@
}
},
{
- "id": 22012,
+ "id": 22497,
"properties": {
"facing": "south",
"half": "bottom",
@@ -158112,7 +162640,7 @@
}
},
{
- "id": 22013,
+ "id": 22498,
"properties": {
"facing": "south",
"half": "bottom",
@@ -158121,7 +162649,7 @@
}
},
{
- "id": 22014,
+ "id": 22499,
"properties": {
"facing": "south",
"half": "bottom",
@@ -158130,7 +162658,7 @@
}
},
{
- "id": 22015,
+ "id": 22500,
"properties": {
"facing": "south",
"half": "bottom",
@@ -158139,7 +162667,7 @@
}
},
{
- "id": 22016,
+ "id": 22501,
"properties": {
"facing": "south",
"half": "bottom",
@@ -158148,7 +162676,7 @@
}
},
{
- "id": 22017,
+ "id": 22502,
"properties": {
"facing": "west",
"half": "top",
@@ -158157,7 +162685,7 @@
}
},
{
- "id": 22018,
+ "id": 22503,
"properties": {
"facing": "west",
"half": "top",
@@ -158166,7 +162694,7 @@
}
},
{
- "id": 22019,
+ "id": 22504,
"properties": {
"facing": "west",
"half": "top",
@@ -158175,7 +162703,7 @@
}
},
{
- "id": 22020,
+ "id": 22505,
"properties": {
"facing": "west",
"half": "top",
@@ -158184,7 +162712,7 @@
}
},
{
- "id": 22021,
+ "id": 22506,
"properties": {
"facing": "west",
"half": "top",
@@ -158193,7 +162721,7 @@
}
},
{
- "id": 22022,
+ "id": 22507,
"properties": {
"facing": "west",
"half": "top",
@@ -158202,7 +162730,7 @@
}
},
{
- "id": 22023,
+ "id": 22508,
"properties": {
"facing": "west",
"half": "top",
@@ -158211,7 +162739,7 @@
}
},
{
- "id": 22024,
+ "id": 22509,
"properties": {
"facing": "west",
"half": "top",
@@ -158220,7 +162748,7 @@
}
},
{
- "id": 22025,
+ "id": 22510,
"properties": {
"facing": "west",
"half": "top",
@@ -158229,7 +162757,7 @@
}
},
{
- "id": 22026,
+ "id": 22511,
"properties": {
"facing": "west",
"half": "top",
@@ -158238,7 +162766,7 @@
}
},
{
- "id": 22027,
+ "id": 22512,
"properties": {
"facing": "west",
"half": "bottom",
@@ -158247,7 +162775,7 @@
}
},
{
- "id": 22028,
+ "id": 22513,
"properties": {
"facing": "west",
"half": "bottom",
@@ -158256,7 +162784,7 @@
}
},
{
- "id": 22029,
+ "id": 22514,
"properties": {
"facing": "west",
"half": "bottom",
@@ -158265,7 +162793,7 @@
}
},
{
- "id": 22030,
+ "id": 22515,
"properties": {
"facing": "west",
"half": "bottom",
@@ -158274,7 +162802,7 @@
}
},
{
- "id": 22031,
+ "id": 22516,
"properties": {
"facing": "west",
"half": "bottom",
@@ -158283,7 +162811,7 @@
}
},
{
- "id": 22032,
+ "id": 22517,
"properties": {
"facing": "west",
"half": "bottom",
@@ -158292,7 +162820,7 @@
}
},
{
- "id": 22033,
+ "id": 22518,
"properties": {
"facing": "west",
"half": "bottom",
@@ -158301,7 +162829,7 @@
}
},
{
- "id": 22034,
+ "id": 22519,
"properties": {
"facing": "west",
"half": "bottom",
@@ -158310,7 +162838,7 @@
}
},
{
- "id": 22035,
+ "id": 22520,
"properties": {
"facing": "west",
"half": "bottom",
@@ -158319,7 +162847,7 @@
}
},
{
- "id": 22036,
+ "id": 22521,
"properties": {
"facing": "west",
"half": "bottom",
@@ -158328,7 +162856,7 @@
}
},
{
- "id": 22037,
+ "id": 22522,
"properties": {
"facing": "east",
"half": "top",
@@ -158337,7 +162865,7 @@
}
},
{
- "id": 22038,
+ "id": 22523,
"properties": {
"facing": "east",
"half": "top",
@@ -158346,7 +162874,7 @@
}
},
{
- "id": 22039,
+ "id": 22524,
"properties": {
"facing": "east",
"half": "top",
@@ -158355,7 +162883,7 @@
}
},
{
- "id": 22040,
+ "id": 22525,
"properties": {
"facing": "east",
"half": "top",
@@ -158364,7 +162892,7 @@
}
},
{
- "id": 22041,
+ "id": 22526,
"properties": {
"facing": "east",
"half": "top",
@@ -158373,7 +162901,7 @@
}
},
{
- "id": 22042,
+ "id": 22527,
"properties": {
"facing": "east",
"half": "top",
@@ -158382,7 +162910,7 @@
}
},
{
- "id": 22043,
+ "id": 22528,
"properties": {
"facing": "east",
"half": "top",
@@ -158391,7 +162919,7 @@
}
},
{
- "id": 22044,
+ "id": 22529,
"properties": {
"facing": "east",
"half": "top",
@@ -158400,7 +162928,7 @@
}
},
{
- "id": 22045,
+ "id": 22530,
"properties": {
"facing": "east",
"half": "top",
@@ -158409,7 +162937,7 @@
}
},
{
- "id": 22046,
+ "id": 22531,
"properties": {
"facing": "east",
"half": "top",
@@ -158418,7 +162946,7 @@
}
},
{
- "id": 22047,
+ "id": 22532,
"properties": {
"facing": "east",
"half": "bottom",
@@ -158427,7 +162955,7 @@
}
},
{
- "id": 22048,
+ "id": 22533,
"properties": {
"facing": "east",
"half": "bottom",
@@ -158436,7 +162964,7 @@
}
},
{
- "id": 22049,
+ "id": 22534,
"properties": {
"facing": "east",
"half": "bottom",
@@ -158445,7 +162973,7 @@
}
},
{
- "id": 22050,
+ "id": 22535,
"properties": {
"facing": "east",
"half": "bottom",
@@ -158454,7 +162982,7 @@
}
},
{
- "id": 22051,
+ "id": 22536,
"properties": {
"facing": "east",
"half": "bottom",
@@ -158463,7 +162991,7 @@
}
},
{
- "id": 22052,
+ "id": 22537,
"properties": {
"facing": "east",
"half": "bottom",
@@ -158472,7 +163000,7 @@
}
},
{
- "id": 22053,
+ "id": 22538,
"properties": {
"facing": "east",
"half": "bottom",
@@ -158481,7 +163009,7 @@
}
},
{
- "id": 22054,
+ "id": 22539,
"properties": {
"facing": "east",
"half": "bottom",
@@ -158490,7 +163018,7 @@
}
},
{
- "id": 22055,
+ "id": 22540,
"properties": {
"facing": "east",
"half": "bottom",
@@ -158499,7 +163027,7 @@
}
},
{
- "id": 22056,
+ "id": 22541,
"properties": {
"facing": "east",
"half": "bottom",
@@ -158542,7 +163070,7 @@
},
"states": [
{
- "id": 22063,
+ "id": 22548,
"properties": {
"east": "none",
"north": "none",
@@ -158553,7 +163081,7 @@
}
},
{
- "id": 22064,
+ "id": 22549,
"properties": {
"east": "none",
"north": "none",
@@ -158564,7 +163092,7 @@
}
},
{
- "id": 22065,
+ "id": 22550,
"properties": {
"east": "none",
"north": "none",
@@ -158576,7 +163104,7 @@
},
{
"default": true,
- "id": 22066,
+ "id": 22551,
"properties": {
"east": "none",
"north": "none",
@@ -158587,7 +163115,7 @@
}
},
{
- "id": 22067,
+ "id": 22552,
"properties": {
"east": "none",
"north": "none",
@@ -158598,7 +163126,7 @@
}
},
{
- "id": 22068,
+ "id": 22553,
"properties": {
"east": "none",
"north": "none",
@@ -158609,7 +163137,7 @@
}
},
{
- "id": 22069,
+ "id": 22554,
"properties": {
"east": "none",
"north": "none",
@@ -158620,7 +163148,7 @@
}
},
{
- "id": 22070,
+ "id": 22555,
"properties": {
"east": "none",
"north": "none",
@@ -158631,7 +163159,7 @@
}
},
{
- "id": 22071,
+ "id": 22556,
"properties": {
"east": "none",
"north": "none",
@@ -158642,7 +163170,7 @@
}
},
{
- "id": 22072,
+ "id": 22557,
"properties": {
"east": "none",
"north": "none",
@@ -158653,7 +163181,7 @@
}
},
{
- "id": 22073,
+ "id": 22558,
"properties": {
"east": "none",
"north": "none",
@@ -158664,7 +163192,7 @@
}
},
{
- "id": 22074,
+ "id": 22559,
"properties": {
"east": "none",
"north": "none",
@@ -158675,7 +163203,7 @@
}
},
{
- "id": 22075,
+ "id": 22560,
"properties": {
"east": "none",
"north": "none",
@@ -158686,7 +163214,7 @@
}
},
{
- "id": 22076,
+ "id": 22561,
"properties": {
"east": "none",
"north": "none",
@@ -158697,7 +163225,7 @@
}
},
{
- "id": 22077,
+ "id": 22562,
"properties": {
"east": "none",
"north": "none",
@@ -158708,7 +163236,7 @@
}
},
{
- "id": 22078,
+ "id": 22563,
"properties": {
"east": "none",
"north": "none",
@@ -158719,7 +163247,7 @@
}
},
{
- "id": 22079,
+ "id": 22564,
"properties": {
"east": "none",
"north": "none",
@@ -158730,7 +163258,7 @@
}
},
{
- "id": 22080,
+ "id": 22565,
"properties": {
"east": "none",
"north": "none",
@@ -158741,7 +163269,7 @@
}
},
{
- "id": 22081,
+ "id": 22566,
"properties": {
"east": "none",
"north": "none",
@@ -158752,7 +163280,7 @@
}
},
{
- "id": 22082,
+ "id": 22567,
"properties": {
"east": "none",
"north": "none",
@@ -158763,7 +163291,7 @@
}
},
{
- "id": 22083,
+ "id": 22568,
"properties": {
"east": "none",
"north": "none",
@@ -158774,7 +163302,7 @@
}
},
{
- "id": 22084,
+ "id": 22569,
"properties": {
"east": "none",
"north": "none",
@@ -158785,7 +163313,7 @@
}
},
{
- "id": 22085,
+ "id": 22570,
"properties": {
"east": "none",
"north": "none",
@@ -158796,7 +163324,7 @@
}
},
{
- "id": 22086,
+ "id": 22571,
"properties": {
"east": "none",
"north": "none",
@@ -158807,7 +163335,7 @@
}
},
{
- "id": 22087,
+ "id": 22572,
"properties": {
"east": "none",
"north": "none",
@@ -158818,7 +163346,7 @@
}
},
{
- "id": 22088,
+ "id": 22573,
"properties": {
"east": "none",
"north": "none",
@@ -158829,7 +163357,7 @@
}
},
{
- "id": 22089,
+ "id": 22574,
"properties": {
"east": "none",
"north": "none",
@@ -158840,7 +163368,7 @@
}
},
{
- "id": 22090,
+ "id": 22575,
"properties": {
"east": "none",
"north": "none",
@@ -158851,7 +163379,7 @@
}
},
{
- "id": 22091,
+ "id": 22576,
"properties": {
"east": "none",
"north": "none",
@@ -158862,7 +163390,7 @@
}
},
{
- "id": 22092,
+ "id": 22577,
"properties": {
"east": "none",
"north": "none",
@@ -158873,7 +163401,7 @@
}
},
{
- "id": 22093,
+ "id": 22578,
"properties": {
"east": "none",
"north": "none",
@@ -158884,7 +163412,7 @@
}
},
{
- "id": 22094,
+ "id": 22579,
"properties": {
"east": "none",
"north": "none",
@@ -158895,7 +163423,7 @@
}
},
{
- "id": 22095,
+ "id": 22580,
"properties": {
"east": "none",
"north": "none",
@@ -158906,7 +163434,7 @@
}
},
{
- "id": 22096,
+ "id": 22581,
"properties": {
"east": "none",
"north": "none",
@@ -158917,7 +163445,7 @@
}
},
{
- "id": 22097,
+ "id": 22582,
"properties": {
"east": "none",
"north": "none",
@@ -158928,7 +163456,7 @@
}
},
{
- "id": 22098,
+ "id": 22583,
"properties": {
"east": "none",
"north": "none",
@@ -158939,7 +163467,7 @@
}
},
{
- "id": 22099,
+ "id": 22584,
"properties": {
"east": "none",
"north": "low",
@@ -158950,7 +163478,7 @@
}
},
{
- "id": 22100,
+ "id": 22585,
"properties": {
"east": "none",
"north": "low",
@@ -158961,7 +163489,7 @@
}
},
{
- "id": 22101,
+ "id": 22586,
"properties": {
"east": "none",
"north": "low",
@@ -158972,7 +163500,7 @@
}
},
{
- "id": 22102,
+ "id": 22587,
"properties": {
"east": "none",
"north": "low",
@@ -158983,7 +163511,7 @@
}
},
{
- "id": 22103,
+ "id": 22588,
"properties": {
"east": "none",
"north": "low",
@@ -158994,7 +163522,7 @@
}
},
{
- "id": 22104,
+ "id": 22589,
"properties": {
"east": "none",
"north": "low",
@@ -159005,7 +163533,7 @@
}
},
{
- "id": 22105,
+ "id": 22590,
"properties": {
"east": "none",
"north": "low",
@@ -159016,7 +163544,7 @@
}
},
{
- "id": 22106,
+ "id": 22591,
"properties": {
"east": "none",
"north": "low",
@@ -159027,7 +163555,7 @@
}
},
{
- "id": 22107,
+ "id": 22592,
"properties": {
"east": "none",
"north": "low",
@@ -159038,7 +163566,7 @@
}
},
{
- "id": 22108,
+ "id": 22593,
"properties": {
"east": "none",
"north": "low",
@@ -159049,7 +163577,7 @@
}
},
{
- "id": 22109,
+ "id": 22594,
"properties": {
"east": "none",
"north": "low",
@@ -159060,7 +163588,7 @@
}
},
{
- "id": 22110,
+ "id": 22595,
"properties": {
"east": "none",
"north": "low",
@@ -159071,7 +163599,7 @@
}
},
{
- "id": 22111,
+ "id": 22596,
"properties": {
"east": "none",
"north": "low",
@@ -159082,7 +163610,7 @@
}
},
{
- "id": 22112,
+ "id": 22597,
"properties": {
"east": "none",
"north": "low",
@@ -159093,7 +163621,7 @@
}
},
{
- "id": 22113,
+ "id": 22598,
"properties": {
"east": "none",
"north": "low",
@@ -159104,7 +163632,7 @@
}
},
{
- "id": 22114,
+ "id": 22599,
"properties": {
"east": "none",
"north": "low",
@@ -159115,7 +163643,7 @@
}
},
{
- "id": 22115,
+ "id": 22600,
"properties": {
"east": "none",
"north": "low",
@@ -159126,7 +163654,7 @@
}
},
{
- "id": 22116,
+ "id": 22601,
"properties": {
"east": "none",
"north": "low",
@@ -159137,7 +163665,7 @@
}
},
{
- "id": 22117,
+ "id": 22602,
"properties": {
"east": "none",
"north": "low",
@@ -159148,7 +163676,7 @@
}
},
{
- "id": 22118,
+ "id": 22603,
"properties": {
"east": "none",
"north": "low",
@@ -159159,7 +163687,7 @@
}
},
{
- "id": 22119,
+ "id": 22604,
"properties": {
"east": "none",
"north": "low",
@@ -159170,7 +163698,7 @@
}
},
{
- "id": 22120,
+ "id": 22605,
"properties": {
"east": "none",
"north": "low",
@@ -159181,7 +163709,7 @@
}
},
{
- "id": 22121,
+ "id": 22606,
"properties": {
"east": "none",
"north": "low",
@@ -159192,7 +163720,7 @@
}
},
{
- "id": 22122,
+ "id": 22607,
"properties": {
"east": "none",
"north": "low",
@@ -159203,7 +163731,7 @@
}
},
{
- "id": 22123,
+ "id": 22608,
"properties": {
"east": "none",
"north": "low",
@@ -159214,7 +163742,7 @@
}
},
{
- "id": 22124,
+ "id": 22609,
"properties": {
"east": "none",
"north": "low",
@@ -159225,7 +163753,7 @@
}
},
{
- "id": 22125,
+ "id": 22610,
"properties": {
"east": "none",
"north": "low",
@@ -159236,7 +163764,7 @@
}
},
{
- "id": 22126,
+ "id": 22611,
"properties": {
"east": "none",
"north": "low",
@@ -159247,7 +163775,7 @@
}
},
{
- "id": 22127,
+ "id": 22612,
"properties": {
"east": "none",
"north": "low",
@@ -159258,7 +163786,7 @@
}
},
{
- "id": 22128,
+ "id": 22613,
"properties": {
"east": "none",
"north": "low",
@@ -159269,7 +163797,7 @@
}
},
{
- "id": 22129,
+ "id": 22614,
"properties": {
"east": "none",
"north": "low",
@@ -159280,7 +163808,7 @@
}
},
{
- "id": 22130,
+ "id": 22615,
"properties": {
"east": "none",
"north": "low",
@@ -159291,7 +163819,7 @@
}
},
{
- "id": 22131,
+ "id": 22616,
"properties": {
"east": "none",
"north": "low",
@@ -159302,7 +163830,7 @@
}
},
{
- "id": 22132,
+ "id": 22617,
"properties": {
"east": "none",
"north": "low",
@@ -159313,7 +163841,7 @@
}
},
{
- "id": 22133,
+ "id": 22618,
"properties": {
"east": "none",
"north": "low",
@@ -159324,7 +163852,7 @@
}
},
{
- "id": 22134,
+ "id": 22619,
"properties": {
"east": "none",
"north": "low",
@@ -159335,7 +163863,7 @@
}
},
{
- "id": 22135,
+ "id": 22620,
"properties": {
"east": "none",
"north": "tall",
@@ -159346,7 +163874,7 @@
}
},
{
- "id": 22136,
+ "id": 22621,
"properties": {
"east": "none",
"north": "tall",
@@ -159357,7 +163885,7 @@
}
},
{
- "id": 22137,
+ "id": 22622,
"properties": {
"east": "none",
"north": "tall",
@@ -159368,7 +163896,7 @@
}
},
{
- "id": 22138,
+ "id": 22623,
"properties": {
"east": "none",
"north": "tall",
@@ -159379,7 +163907,7 @@
}
},
{
- "id": 22139,
+ "id": 22624,
"properties": {
"east": "none",
"north": "tall",
@@ -159390,7 +163918,7 @@
}
},
{
- "id": 22140,
+ "id": 22625,
"properties": {
"east": "none",
"north": "tall",
@@ -159401,7 +163929,7 @@
}
},
{
- "id": 22141,
+ "id": 22626,
"properties": {
"east": "none",
"north": "tall",
@@ -159412,7 +163940,7 @@
}
},
{
- "id": 22142,
+ "id": 22627,
"properties": {
"east": "none",
"north": "tall",
@@ -159423,7 +163951,7 @@
}
},
{
- "id": 22143,
+ "id": 22628,
"properties": {
"east": "none",
"north": "tall",
@@ -159434,7 +163962,7 @@
}
},
{
- "id": 22144,
+ "id": 22629,
"properties": {
"east": "none",
"north": "tall",
@@ -159445,7 +163973,7 @@
}
},
{
- "id": 22145,
+ "id": 22630,
"properties": {
"east": "none",
"north": "tall",
@@ -159456,7 +163984,7 @@
}
},
{
- "id": 22146,
+ "id": 22631,
"properties": {
"east": "none",
"north": "tall",
@@ -159467,7 +163995,7 @@
}
},
{
- "id": 22147,
+ "id": 22632,
"properties": {
"east": "none",
"north": "tall",
@@ -159478,7 +164006,7 @@
}
},
{
- "id": 22148,
+ "id": 22633,
"properties": {
"east": "none",
"north": "tall",
@@ -159489,7 +164017,7 @@
}
},
{
- "id": 22149,
+ "id": 22634,
"properties": {
"east": "none",
"north": "tall",
@@ -159500,7 +164028,7 @@
}
},
{
- "id": 22150,
+ "id": 22635,
"properties": {
"east": "none",
"north": "tall",
@@ -159511,7 +164039,7 @@
}
},
{
- "id": 22151,
+ "id": 22636,
"properties": {
"east": "none",
"north": "tall",
@@ -159522,7 +164050,7 @@
}
},
{
- "id": 22152,
+ "id": 22637,
"properties": {
"east": "none",
"north": "tall",
@@ -159533,7 +164061,7 @@
}
},
{
- "id": 22153,
+ "id": 22638,
"properties": {
"east": "none",
"north": "tall",
@@ -159544,7 +164072,7 @@
}
},
{
- "id": 22154,
+ "id": 22639,
"properties": {
"east": "none",
"north": "tall",
@@ -159555,7 +164083,7 @@
}
},
{
- "id": 22155,
+ "id": 22640,
"properties": {
"east": "none",
"north": "tall",
@@ -159566,7 +164094,7 @@
}
},
{
- "id": 22156,
+ "id": 22641,
"properties": {
"east": "none",
"north": "tall",
@@ -159577,7 +164105,7 @@
}
},
{
- "id": 22157,
+ "id": 22642,
"properties": {
"east": "none",
"north": "tall",
@@ -159588,7 +164116,7 @@
}
},
{
- "id": 22158,
+ "id": 22643,
"properties": {
"east": "none",
"north": "tall",
@@ -159599,7 +164127,7 @@
}
},
{
- "id": 22159,
+ "id": 22644,
"properties": {
"east": "none",
"north": "tall",
@@ -159610,7 +164138,7 @@
}
},
{
- "id": 22160,
+ "id": 22645,
"properties": {
"east": "none",
"north": "tall",
@@ -159621,7 +164149,7 @@
}
},
{
- "id": 22161,
+ "id": 22646,
"properties": {
"east": "none",
"north": "tall",
@@ -159632,7 +164160,7 @@
}
},
{
- "id": 22162,
+ "id": 22647,
"properties": {
"east": "none",
"north": "tall",
@@ -159643,7 +164171,7 @@
}
},
{
- "id": 22163,
+ "id": 22648,
"properties": {
"east": "none",
"north": "tall",
@@ -159654,7 +164182,7 @@
}
},
{
- "id": 22164,
+ "id": 22649,
"properties": {
"east": "none",
"north": "tall",
@@ -159665,7 +164193,7 @@
}
},
{
- "id": 22165,
+ "id": 22650,
"properties": {
"east": "none",
"north": "tall",
@@ -159676,7 +164204,7 @@
}
},
{
- "id": 22166,
+ "id": 22651,
"properties": {
"east": "none",
"north": "tall",
@@ -159687,7 +164215,7 @@
}
},
{
- "id": 22167,
+ "id": 22652,
"properties": {
"east": "none",
"north": "tall",
@@ -159698,7 +164226,7 @@
}
},
{
- "id": 22168,
+ "id": 22653,
"properties": {
"east": "none",
"north": "tall",
@@ -159709,7 +164237,7 @@
}
},
{
- "id": 22169,
+ "id": 22654,
"properties": {
"east": "none",
"north": "tall",
@@ -159720,7 +164248,7 @@
}
},
{
- "id": 22170,
+ "id": 22655,
"properties": {
"east": "none",
"north": "tall",
@@ -159731,7 +164259,7 @@
}
},
{
- "id": 22171,
+ "id": 22656,
"properties": {
"east": "low",
"north": "none",
@@ -159742,7 +164270,7 @@
}
},
{
- "id": 22172,
+ "id": 22657,
"properties": {
"east": "low",
"north": "none",
@@ -159753,7 +164281,7 @@
}
},
{
- "id": 22173,
+ "id": 22658,
"properties": {
"east": "low",
"north": "none",
@@ -159764,7 +164292,7 @@
}
},
{
- "id": 22174,
+ "id": 22659,
"properties": {
"east": "low",
"north": "none",
@@ -159775,7 +164303,7 @@
}
},
{
- "id": 22175,
+ "id": 22660,
"properties": {
"east": "low",
"north": "none",
@@ -159786,7 +164314,7 @@
}
},
{
- "id": 22176,
+ "id": 22661,
"properties": {
"east": "low",
"north": "none",
@@ -159797,7 +164325,7 @@
}
},
{
- "id": 22177,
+ "id": 22662,
"properties": {
"east": "low",
"north": "none",
@@ -159808,7 +164336,7 @@
}
},
{
- "id": 22178,
+ "id": 22663,
"properties": {
"east": "low",
"north": "none",
@@ -159819,7 +164347,7 @@
}
},
{
- "id": 22179,
+ "id": 22664,
"properties": {
"east": "low",
"north": "none",
@@ -159830,7 +164358,7 @@
}
},
{
- "id": 22180,
+ "id": 22665,
"properties": {
"east": "low",
"north": "none",
@@ -159841,7 +164369,7 @@
}
},
{
- "id": 22181,
+ "id": 22666,
"properties": {
"east": "low",
"north": "none",
@@ -159852,7 +164380,7 @@
}
},
{
- "id": 22182,
+ "id": 22667,
"properties": {
"east": "low",
"north": "none",
@@ -159863,7 +164391,7 @@
}
},
{
- "id": 22183,
+ "id": 22668,
"properties": {
"east": "low",
"north": "none",
@@ -159874,7 +164402,7 @@
}
},
{
- "id": 22184,
+ "id": 22669,
"properties": {
"east": "low",
"north": "none",
@@ -159885,7 +164413,7 @@
}
},
{
- "id": 22185,
+ "id": 22670,
"properties": {
"east": "low",
"north": "none",
@@ -159896,7 +164424,7 @@
}
},
{
- "id": 22186,
+ "id": 22671,
"properties": {
"east": "low",
"north": "none",
@@ -159907,7 +164435,7 @@
}
},
{
- "id": 22187,
+ "id": 22672,
"properties": {
"east": "low",
"north": "none",
@@ -159918,7 +164446,7 @@
}
},
{
- "id": 22188,
+ "id": 22673,
"properties": {
"east": "low",
"north": "none",
@@ -159929,7 +164457,7 @@
}
},
{
- "id": 22189,
+ "id": 22674,
"properties": {
"east": "low",
"north": "none",
@@ -159940,7 +164468,7 @@
}
},
{
- "id": 22190,
+ "id": 22675,
"properties": {
"east": "low",
"north": "none",
@@ -159951,7 +164479,7 @@
}
},
{
- "id": 22191,
+ "id": 22676,
"properties": {
"east": "low",
"north": "none",
@@ -159962,7 +164490,7 @@
}
},
{
- "id": 22192,
+ "id": 22677,
"properties": {
"east": "low",
"north": "none",
@@ -159973,7 +164501,7 @@
}
},
{
- "id": 22193,
+ "id": 22678,
"properties": {
"east": "low",
"north": "none",
@@ -159984,7 +164512,7 @@
}
},
{
- "id": 22194,
+ "id": 22679,
"properties": {
"east": "low",
"north": "none",
@@ -159995,7 +164523,7 @@
}
},
{
- "id": 22195,
+ "id": 22680,
"properties": {
"east": "low",
"north": "none",
@@ -160006,7 +164534,7 @@
}
},
{
- "id": 22196,
+ "id": 22681,
"properties": {
"east": "low",
"north": "none",
@@ -160017,7 +164545,7 @@
}
},
{
- "id": 22197,
+ "id": 22682,
"properties": {
"east": "low",
"north": "none",
@@ -160028,7 +164556,7 @@
}
},
{
- "id": 22198,
+ "id": 22683,
"properties": {
"east": "low",
"north": "none",
@@ -160039,7 +164567,7 @@
}
},
{
- "id": 22199,
+ "id": 22684,
"properties": {
"east": "low",
"north": "none",
@@ -160050,7 +164578,7 @@
}
},
{
- "id": 22200,
+ "id": 22685,
"properties": {
"east": "low",
"north": "none",
@@ -160061,7 +164589,7 @@
}
},
{
- "id": 22201,
+ "id": 22686,
"properties": {
"east": "low",
"north": "none",
@@ -160072,7 +164600,7 @@
}
},
{
- "id": 22202,
+ "id": 22687,
"properties": {
"east": "low",
"north": "none",
@@ -160083,7 +164611,7 @@
}
},
{
- "id": 22203,
+ "id": 22688,
"properties": {
"east": "low",
"north": "none",
@@ -160094,7 +164622,7 @@
}
},
{
- "id": 22204,
+ "id": 22689,
"properties": {
"east": "low",
"north": "none",
@@ -160105,7 +164633,7 @@
}
},
{
- "id": 22205,
+ "id": 22690,
"properties": {
"east": "low",
"north": "none",
@@ -160116,7 +164644,7 @@
}
},
{
- "id": 22206,
+ "id": 22691,
"properties": {
"east": "low",
"north": "none",
@@ -160127,7 +164655,7 @@
}
},
{
- "id": 22207,
+ "id": 22692,
"properties": {
"east": "low",
"north": "low",
@@ -160138,7 +164666,7 @@
}
},
{
- "id": 22208,
+ "id": 22693,
"properties": {
"east": "low",
"north": "low",
@@ -160149,7 +164677,7 @@
}
},
{
- "id": 22209,
+ "id": 22694,
"properties": {
"east": "low",
"north": "low",
@@ -160160,7 +164688,7 @@
}
},
{
- "id": 22210,
+ "id": 22695,
"properties": {
"east": "low",
"north": "low",
@@ -160171,7 +164699,7 @@
}
},
{
- "id": 22211,
+ "id": 22696,
"properties": {
"east": "low",
"north": "low",
@@ -160182,7 +164710,7 @@
}
},
{
- "id": 22212,
+ "id": 22697,
"properties": {
"east": "low",
"north": "low",
@@ -160193,7 +164721,7 @@
}
},
{
- "id": 22213,
+ "id": 22698,
"properties": {
"east": "low",
"north": "low",
@@ -160204,7 +164732,7 @@
}
},
{
- "id": 22214,
+ "id": 22699,
"properties": {
"east": "low",
"north": "low",
@@ -160215,7 +164743,7 @@
}
},
{
- "id": 22215,
+ "id": 22700,
"properties": {
"east": "low",
"north": "low",
@@ -160226,7 +164754,7 @@
}
},
{
- "id": 22216,
+ "id": 22701,
"properties": {
"east": "low",
"north": "low",
@@ -160237,7 +164765,7 @@
}
},
{
- "id": 22217,
+ "id": 22702,
"properties": {
"east": "low",
"north": "low",
@@ -160248,7 +164776,7 @@
}
},
{
- "id": 22218,
+ "id": 22703,
"properties": {
"east": "low",
"north": "low",
@@ -160259,7 +164787,7 @@
}
},
{
- "id": 22219,
+ "id": 22704,
"properties": {
"east": "low",
"north": "low",
@@ -160270,7 +164798,7 @@
}
},
{
- "id": 22220,
+ "id": 22705,
"properties": {
"east": "low",
"north": "low",
@@ -160281,7 +164809,7 @@
}
},
{
- "id": 22221,
+ "id": 22706,
"properties": {
"east": "low",
"north": "low",
@@ -160292,7 +164820,7 @@
}
},
{
- "id": 22222,
+ "id": 22707,
"properties": {
"east": "low",
"north": "low",
@@ -160303,7 +164831,7 @@
}
},
{
- "id": 22223,
+ "id": 22708,
"properties": {
"east": "low",
"north": "low",
@@ -160314,7 +164842,7 @@
}
},
{
- "id": 22224,
+ "id": 22709,
"properties": {
"east": "low",
"north": "low",
@@ -160325,7 +164853,7 @@
}
},
{
- "id": 22225,
+ "id": 22710,
"properties": {
"east": "low",
"north": "low",
@@ -160336,7 +164864,7 @@
}
},
{
- "id": 22226,
+ "id": 22711,
"properties": {
"east": "low",
"north": "low",
@@ -160347,7 +164875,7 @@
}
},
{
- "id": 22227,
+ "id": 22712,
"properties": {
"east": "low",
"north": "low",
@@ -160358,7 +164886,7 @@
}
},
{
- "id": 22228,
+ "id": 22713,
"properties": {
"east": "low",
"north": "low",
@@ -160369,7 +164897,7 @@
}
},
{
- "id": 22229,
+ "id": 22714,
"properties": {
"east": "low",
"north": "low",
@@ -160380,7 +164908,7 @@
}
},
{
- "id": 22230,
+ "id": 22715,
"properties": {
"east": "low",
"north": "low",
@@ -160391,7 +164919,7 @@
}
},
{
- "id": 22231,
+ "id": 22716,
"properties": {
"east": "low",
"north": "low",
@@ -160402,7 +164930,7 @@
}
},
{
- "id": 22232,
+ "id": 22717,
"properties": {
"east": "low",
"north": "low",
@@ -160413,7 +164941,7 @@
}
},
{
- "id": 22233,
+ "id": 22718,
"properties": {
"east": "low",
"north": "low",
@@ -160424,7 +164952,7 @@
}
},
{
- "id": 22234,
+ "id": 22719,
"properties": {
"east": "low",
"north": "low",
@@ -160435,7 +164963,7 @@
}
},
{
- "id": 22235,
+ "id": 22720,
"properties": {
"east": "low",
"north": "low",
@@ -160446,7 +164974,7 @@
}
},
{
- "id": 22236,
+ "id": 22721,
"properties": {
"east": "low",
"north": "low",
@@ -160457,7 +164985,7 @@
}
},
{
- "id": 22237,
+ "id": 22722,
"properties": {
"east": "low",
"north": "low",
@@ -160468,7 +164996,7 @@
}
},
{
- "id": 22238,
+ "id": 22723,
"properties": {
"east": "low",
"north": "low",
@@ -160479,7 +165007,7 @@
}
},
{
- "id": 22239,
+ "id": 22724,
"properties": {
"east": "low",
"north": "low",
@@ -160490,7 +165018,7 @@
}
},
{
- "id": 22240,
+ "id": 22725,
"properties": {
"east": "low",
"north": "low",
@@ -160501,7 +165029,7 @@
}
},
{
- "id": 22241,
+ "id": 22726,
"properties": {
"east": "low",
"north": "low",
@@ -160512,7 +165040,7 @@
}
},
{
- "id": 22242,
+ "id": 22727,
"properties": {
"east": "low",
"north": "low",
@@ -160523,7 +165051,7 @@
}
},
{
- "id": 22243,
+ "id": 22728,
"properties": {
"east": "low",
"north": "tall",
@@ -160534,7 +165062,7 @@
}
},
{
- "id": 22244,
+ "id": 22729,
"properties": {
"east": "low",
"north": "tall",
@@ -160545,7 +165073,7 @@
}
},
{
- "id": 22245,
+ "id": 22730,
"properties": {
"east": "low",
"north": "tall",
@@ -160556,7 +165084,7 @@
}
},
{
- "id": 22246,
+ "id": 22731,
"properties": {
"east": "low",
"north": "tall",
@@ -160567,7 +165095,7 @@
}
},
{
- "id": 22247,
+ "id": 22732,
"properties": {
"east": "low",
"north": "tall",
@@ -160578,7 +165106,7 @@
}
},
{
- "id": 22248,
+ "id": 22733,
"properties": {
"east": "low",
"north": "tall",
@@ -160589,7 +165117,7 @@
}
},
{
- "id": 22249,
+ "id": 22734,
"properties": {
"east": "low",
"north": "tall",
@@ -160600,7 +165128,7 @@
}
},
{
- "id": 22250,
+ "id": 22735,
"properties": {
"east": "low",
"north": "tall",
@@ -160611,7 +165139,7 @@
}
},
{
- "id": 22251,
+ "id": 22736,
"properties": {
"east": "low",
"north": "tall",
@@ -160622,7 +165150,7 @@
}
},
{
- "id": 22252,
+ "id": 22737,
"properties": {
"east": "low",
"north": "tall",
@@ -160633,7 +165161,7 @@
}
},
{
- "id": 22253,
+ "id": 22738,
"properties": {
"east": "low",
"north": "tall",
@@ -160644,7 +165172,7 @@
}
},
{
- "id": 22254,
+ "id": 22739,
"properties": {
"east": "low",
"north": "tall",
@@ -160655,7 +165183,7 @@
}
},
{
- "id": 22255,
+ "id": 22740,
"properties": {
"east": "low",
"north": "tall",
@@ -160666,7 +165194,7 @@
}
},
{
- "id": 22256,
+ "id": 22741,
"properties": {
"east": "low",
"north": "tall",
@@ -160677,7 +165205,7 @@
}
},
{
- "id": 22257,
+ "id": 22742,
"properties": {
"east": "low",
"north": "tall",
@@ -160688,7 +165216,7 @@
}
},
{
- "id": 22258,
+ "id": 22743,
"properties": {
"east": "low",
"north": "tall",
@@ -160699,7 +165227,7 @@
}
},
{
- "id": 22259,
+ "id": 22744,
"properties": {
"east": "low",
"north": "tall",
@@ -160710,7 +165238,7 @@
}
},
{
- "id": 22260,
+ "id": 22745,
"properties": {
"east": "low",
"north": "tall",
@@ -160721,7 +165249,7 @@
}
},
{
- "id": 22261,
+ "id": 22746,
"properties": {
"east": "low",
"north": "tall",
@@ -160732,7 +165260,7 @@
}
},
{
- "id": 22262,
+ "id": 22747,
"properties": {
"east": "low",
"north": "tall",
@@ -160743,7 +165271,7 @@
}
},
{
- "id": 22263,
+ "id": 22748,
"properties": {
"east": "low",
"north": "tall",
@@ -160754,7 +165282,7 @@
}
},
{
- "id": 22264,
+ "id": 22749,
"properties": {
"east": "low",
"north": "tall",
@@ -160765,7 +165293,7 @@
}
},
{
- "id": 22265,
+ "id": 22750,
"properties": {
"east": "low",
"north": "tall",
@@ -160776,7 +165304,7 @@
}
},
{
- "id": 22266,
+ "id": 22751,
"properties": {
"east": "low",
"north": "tall",
@@ -160787,7 +165315,7 @@
}
},
{
- "id": 22267,
+ "id": 22752,
"properties": {
"east": "low",
"north": "tall",
@@ -160798,7 +165326,7 @@
}
},
{
- "id": 22268,
+ "id": 22753,
"properties": {
"east": "low",
"north": "tall",
@@ -160809,7 +165337,7 @@
}
},
{
- "id": 22269,
+ "id": 22754,
"properties": {
"east": "low",
"north": "tall",
@@ -160820,7 +165348,7 @@
}
},
{
- "id": 22270,
+ "id": 22755,
"properties": {
"east": "low",
"north": "tall",
@@ -160831,7 +165359,7 @@
}
},
{
- "id": 22271,
+ "id": 22756,
"properties": {
"east": "low",
"north": "tall",
@@ -160842,7 +165370,7 @@
}
},
{
- "id": 22272,
+ "id": 22757,
"properties": {
"east": "low",
"north": "tall",
@@ -160853,7 +165381,7 @@
}
},
{
- "id": 22273,
+ "id": 22758,
"properties": {
"east": "low",
"north": "tall",
@@ -160864,7 +165392,7 @@
}
},
{
- "id": 22274,
+ "id": 22759,
"properties": {
"east": "low",
"north": "tall",
@@ -160875,7 +165403,7 @@
}
},
{
- "id": 22275,
+ "id": 22760,
"properties": {
"east": "low",
"north": "tall",
@@ -160886,7 +165414,7 @@
}
},
{
- "id": 22276,
+ "id": 22761,
"properties": {
"east": "low",
"north": "tall",
@@ -160897,7 +165425,7 @@
}
},
{
- "id": 22277,
+ "id": 22762,
"properties": {
"east": "low",
"north": "tall",
@@ -160908,7 +165436,7 @@
}
},
{
- "id": 22278,
+ "id": 22763,
"properties": {
"east": "low",
"north": "tall",
@@ -160919,7 +165447,7 @@
}
},
{
- "id": 22279,
+ "id": 22764,
"properties": {
"east": "tall",
"north": "none",
@@ -160930,7 +165458,7 @@
}
},
{
- "id": 22280,
+ "id": 22765,
"properties": {
"east": "tall",
"north": "none",
@@ -160941,7 +165469,7 @@
}
},
{
- "id": 22281,
+ "id": 22766,
"properties": {
"east": "tall",
"north": "none",
@@ -160952,7 +165480,7 @@
}
},
{
- "id": 22282,
+ "id": 22767,
"properties": {
"east": "tall",
"north": "none",
@@ -160963,7 +165491,7 @@
}
},
{
- "id": 22283,
+ "id": 22768,
"properties": {
"east": "tall",
"north": "none",
@@ -160974,7 +165502,7 @@
}
},
{
- "id": 22284,
+ "id": 22769,
"properties": {
"east": "tall",
"north": "none",
@@ -160985,7 +165513,7 @@
}
},
{
- "id": 22285,
+ "id": 22770,
"properties": {
"east": "tall",
"north": "none",
@@ -160996,7 +165524,7 @@
}
},
{
- "id": 22286,
+ "id": 22771,
"properties": {
"east": "tall",
"north": "none",
@@ -161007,7 +165535,7 @@
}
},
{
- "id": 22287,
+ "id": 22772,
"properties": {
"east": "tall",
"north": "none",
@@ -161018,7 +165546,7 @@
}
},
{
- "id": 22288,
+ "id": 22773,
"properties": {
"east": "tall",
"north": "none",
@@ -161029,7 +165557,7 @@
}
},
{
- "id": 22289,
+ "id": 22774,
"properties": {
"east": "tall",
"north": "none",
@@ -161040,7 +165568,7 @@
}
},
{
- "id": 22290,
+ "id": 22775,
"properties": {
"east": "tall",
"north": "none",
@@ -161051,7 +165579,7 @@
}
},
{
- "id": 22291,
+ "id": 22776,
"properties": {
"east": "tall",
"north": "none",
@@ -161062,7 +165590,7 @@
}
},
{
- "id": 22292,
+ "id": 22777,
"properties": {
"east": "tall",
"north": "none",
@@ -161073,7 +165601,7 @@
}
},
{
- "id": 22293,
+ "id": 22778,
"properties": {
"east": "tall",
"north": "none",
@@ -161084,7 +165612,7 @@
}
},
{
- "id": 22294,
+ "id": 22779,
"properties": {
"east": "tall",
"north": "none",
@@ -161095,7 +165623,7 @@
}
},
{
- "id": 22295,
+ "id": 22780,
"properties": {
"east": "tall",
"north": "none",
@@ -161106,7 +165634,7 @@
}
},
{
- "id": 22296,
+ "id": 22781,
"properties": {
"east": "tall",
"north": "none",
@@ -161117,7 +165645,7 @@
}
},
{
- "id": 22297,
+ "id": 22782,
"properties": {
"east": "tall",
"north": "none",
@@ -161128,7 +165656,7 @@
}
},
{
- "id": 22298,
+ "id": 22783,
"properties": {
"east": "tall",
"north": "none",
@@ -161139,7 +165667,7 @@
}
},
{
- "id": 22299,
+ "id": 22784,
"properties": {
"east": "tall",
"north": "none",
@@ -161150,7 +165678,7 @@
}
},
{
- "id": 22300,
+ "id": 22785,
"properties": {
"east": "tall",
"north": "none",
@@ -161161,7 +165689,7 @@
}
},
{
- "id": 22301,
+ "id": 22786,
"properties": {
"east": "tall",
"north": "none",
@@ -161172,7 +165700,7 @@
}
},
{
- "id": 22302,
+ "id": 22787,
"properties": {
"east": "tall",
"north": "none",
@@ -161183,7 +165711,7 @@
}
},
{
- "id": 22303,
+ "id": 22788,
"properties": {
"east": "tall",
"north": "none",
@@ -161194,7 +165722,7 @@
}
},
{
- "id": 22304,
+ "id": 22789,
"properties": {
"east": "tall",
"north": "none",
@@ -161205,7 +165733,7 @@
}
},
{
- "id": 22305,
+ "id": 22790,
"properties": {
"east": "tall",
"north": "none",
@@ -161216,7 +165744,7 @@
}
},
{
- "id": 22306,
+ "id": 22791,
"properties": {
"east": "tall",
"north": "none",
@@ -161227,7 +165755,7 @@
}
},
{
- "id": 22307,
+ "id": 22792,
"properties": {
"east": "tall",
"north": "none",
@@ -161238,7 +165766,7 @@
}
},
{
- "id": 22308,
+ "id": 22793,
"properties": {
"east": "tall",
"north": "none",
@@ -161249,7 +165777,7 @@
}
},
{
- "id": 22309,
+ "id": 22794,
"properties": {
"east": "tall",
"north": "none",
@@ -161260,7 +165788,7 @@
}
},
{
- "id": 22310,
+ "id": 22795,
"properties": {
"east": "tall",
"north": "none",
@@ -161271,7 +165799,7 @@
}
},
{
- "id": 22311,
+ "id": 22796,
"properties": {
"east": "tall",
"north": "none",
@@ -161282,7 +165810,7 @@
}
},
{
- "id": 22312,
+ "id": 22797,
"properties": {
"east": "tall",
"north": "none",
@@ -161293,7 +165821,7 @@
}
},
{
- "id": 22313,
+ "id": 22798,
"properties": {
"east": "tall",
"north": "none",
@@ -161304,7 +165832,7 @@
}
},
{
- "id": 22314,
+ "id": 22799,
"properties": {
"east": "tall",
"north": "none",
@@ -161315,7 +165843,7 @@
}
},
{
- "id": 22315,
+ "id": 22800,
"properties": {
"east": "tall",
"north": "low",
@@ -161326,7 +165854,7 @@
}
},
{
- "id": 22316,
+ "id": 22801,
"properties": {
"east": "tall",
"north": "low",
@@ -161337,7 +165865,7 @@
}
},
{
- "id": 22317,
+ "id": 22802,
"properties": {
"east": "tall",
"north": "low",
@@ -161348,7 +165876,7 @@
}
},
{
- "id": 22318,
+ "id": 22803,
"properties": {
"east": "tall",
"north": "low",
@@ -161359,7 +165887,7 @@
}
},
{
- "id": 22319,
+ "id": 22804,
"properties": {
"east": "tall",
"north": "low",
@@ -161370,7 +165898,7 @@
}
},
{
- "id": 22320,
+ "id": 22805,
"properties": {
"east": "tall",
"north": "low",
@@ -161381,7 +165909,7 @@
}
},
{
- "id": 22321,
+ "id": 22806,
"properties": {
"east": "tall",
"north": "low",
@@ -161392,7 +165920,7 @@
}
},
{
- "id": 22322,
+ "id": 22807,
"properties": {
"east": "tall",
"north": "low",
@@ -161403,7 +165931,7 @@
}
},
{
- "id": 22323,
+ "id": 22808,
"properties": {
"east": "tall",
"north": "low",
@@ -161414,7 +165942,7 @@
}
},
{
- "id": 22324,
+ "id": 22809,
"properties": {
"east": "tall",
"north": "low",
@@ -161425,7 +165953,7 @@
}
},
{
- "id": 22325,
+ "id": 22810,
"properties": {
"east": "tall",
"north": "low",
@@ -161436,7 +165964,7 @@
}
},
{
- "id": 22326,
+ "id": 22811,
"properties": {
"east": "tall",
"north": "low",
@@ -161447,7 +165975,7 @@
}
},
{
- "id": 22327,
+ "id": 22812,
"properties": {
"east": "tall",
"north": "low",
@@ -161458,7 +165986,7 @@
}
},
{
- "id": 22328,
+ "id": 22813,
"properties": {
"east": "tall",
"north": "low",
@@ -161469,7 +165997,7 @@
}
},
{
- "id": 22329,
+ "id": 22814,
"properties": {
"east": "tall",
"north": "low",
@@ -161480,7 +166008,7 @@
}
},
{
- "id": 22330,
+ "id": 22815,
"properties": {
"east": "tall",
"north": "low",
@@ -161491,7 +166019,7 @@
}
},
{
- "id": 22331,
+ "id": 22816,
"properties": {
"east": "tall",
"north": "low",
@@ -161502,7 +166030,7 @@
}
},
{
- "id": 22332,
+ "id": 22817,
"properties": {
"east": "tall",
"north": "low",
@@ -161513,7 +166041,7 @@
}
},
{
- "id": 22333,
+ "id": 22818,
"properties": {
"east": "tall",
"north": "low",
@@ -161524,7 +166052,7 @@
}
},
{
- "id": 22334,
+ "id": 22819,
"properties": {
"east": "tall",
"north": "low",
@@ -161535,7 +166063,7 @@
}
},
{
- "id": 22335,
+ "id": 22820,
"properties": {
"east": "tall",
"north": "low",
@@ -161546,7 +166074,7 @@
}
},
{
- "id": 22336,
+ "id": 22821,
"properties": {
"east": "tall",
"north": "low",
@@ -161557,7 +166085,7 @@
}
},
{
- "id": 22337,
+ "id": 22822,
"properties": {
"east": "tall",
"north": "low",
@@ -161568,7 +166096,7 @@
}
},
{
- "id": 22338,
+ "id": 22823,
"properties": {
"east": "tall",
"north": "low",
@@ -161579,7 +166107,7 @@
}
},
{
- "id": 22339,
+ "id": 22824,
"properties": {
"east": "tall",
"north": "low",
@@ -161590,7 +166118,7 @@
}
},
{
- "id": 22340,
+ "id": 22825,
"properties": {
"east": "tall",
"north": "low",
@@ -161601,7 +166129,7 @@
}
},
{
- "id": 22341,
+ "id": 22826,
"properties": {
"east": "tall",
"north": "low",
@@ -161612,7 +166140,7 @@
}
},
{
- "id": 22342,
+ "id": 22827,
"properties": {
"east": "tall",
"north": "low",
@@ -161623,7 +166151,7 @@
}
},
{
- "id": 22343,
+ "id": 22828,
"properties": {
"east": "tall",
"north": "low",
@@ -161634,7 +166162,7 @@
}
},
{
- "id": 22344,
+ "id": 22829,
"properties": {
"east": "tall",
"north": "low",
@@ -161645,7 +166173,7 @@
}
},
{
- "id": 22345,
+ "id": 22830,
"properties": {
"east": "tall",
"north": "low",
@@ -161656,7 +166184,7 @@
}
},
{
- "id": 22346,
+ "id": 22831,
"properties": {
"east": "tall",
"north": "low",
@@ -161667,7 +166195,7 @@
}
},
{
- "id": 22347,
+ "id": 22832,
"properties": {
"east": "tall",
"north": "low",
@@ -161678,7 +166206,7 @@
}
},
{
- "id": 22348,
+ "id": 22833,
"properties": {
"east": "tall",
"north": "low",
@@ -161689,7 +166217,7 @@
}
},
{
- "id": 22349,
+ "id": 22834,
"properties": {
"east": "tall",
"north": "low",
@@ -161700,7 +166228,7 @@
}
},
{
- "id": 22350,
+ "id": 22835,
"properties": {
"east": "tall",
"north": "low",
@@ -161711,7 +166239,7 @@
}
},
{
- "id": 22351,
+ "id": 22836,
"properties": {
"east": "tall",
"north": "tall",
@@ -161722,7 +166250,7 @@
}
},
{
- "id": 22352,
+ "id": 22837,
"properties": {
"east": "tall",
"north": "tall",
@@ -161733,7 +166261,7 @@
}
},
{
- "id": 22353,
+ "id": 22838,
"properties": {
"east": "tall",
"north": "tall",
@@ -161744,7 +166272,7 @@
}
},
{
- "id": 22354,
+ "id": 22839,
"properties": {
"east": "tall",
"north": "tall",
@@ -161755,7 +166283,7 @@
}
},
{
- "id": 22355,
+ "id": 22840,
"properties": {
"east": "tall",
"north": "tall",
@@ -161766,7 +166294,7 @@
}
},
{
- "id": 22356,
+ "id": 22841,
"properties": {
"east": "tall",
"north": "tall",
@@ -161777,7 +166305,7 @@
}
},
{
- "id": 22357,
+ "id": 22842,
"properties": {
"east": "tall",
"north": "tall",
@@ -161788,7 +166316,7 @@
}
},
{
- "id": 22358,
+ "id": 22843,
"properties": {
"east": "tall",
"north": "tall",
@@ -161799,7 +166327,7 @@
}
},
{
- "id": 22359,
+ "id": 22844,
"properties": {
"east": "tall",
"north": "tall",
@@ -161810,7 +166338,7 @@
}
},
{
- "id": 22360,
+ "id": 22845,
"properties": {
"east": "tall",
"north": "tall",
@@ -161821,7 +166349,7 @@
}
},
{
- "id": 22361,
+ "id": 22846,
"properties": {
"east": "tall",
"north": "tall",
@@ -161832,7 +166360,7 @@
}
},
{
- "id": 22362,
+ "id": 22847,
"properties": {
"east": "tall",
"north": "tall",
@@ -161843,7 +166371,7 @@
}
},
{
- "id": 22363,
+ "id": 22848,
"properties": {
"east": "tall",
"north": "tall",
@@ -161854,7 +166382,7 @@
}
},
{
- "id": 22364,
+ "id": 22849,
"properties": {
"east": "tall",
"north": "tall",
@@ -161865,7 +166393,7 @@
}
},
{
- "id": 22365,
+ "id": 22850,
"properties": {
"east": "tall",
"north": "tall",
@@ -161876,7 +166404,7 @@
}
},
{
- "id": 22366,
+ "id": 22851,
"properties": {
"east": "tall",
"north": "tall",
@@ -161887,7 +166415,7 @@
}
},
{
- "id": 22367,
+ "id": 22852,
"properties": {
"east": "tall",
"north": "tall",
@@ -161898,7 +166426,7 @@
}
},
{
- "id": 22368,
+ "id": 22853,
"properties": {
"east": "tall",
"north": "tall",
@@ -161909,7 +166437,7 @@
}
},
{
- "id": 22369,
+ "id": 22854,
"properties": {
"east": "tall",
"north": "tall",
@@ -161920,7 +166448,7 @@
}
},
{
- "id": 22370,
+ "id": 22855,
"properties": {
"east": "tall",
"north": "tall",
@@ -161931,7 +166459,7 @@
}
},
{
- "id": 22371,
+ "id": 22856,
"properties": {
"east": "tall",
"north": "tall",
@@ -161942,7 +166470,7 @@
}
},
{
- "id": 22372,
+ "id": 22857,
"properties": {
"east": "tall",
"north": "tall",
@@ -161953,7 +166481,7 @@
}
},
{
- "id": 22373,
+ "id": 22858,
"properties": {
"east": "tall",
"north": "tall",
@@ -161964,7 +166492,7 @@
}
},
{
- "id": 22374,
+ "id": 22859,
"properties": {
"east": "tall",
"north": "tall",
@@ -161975,7 +166503,7 @@
}
},
{
- "id": 22375,
+ "id": 22860,
"properties": {
"east": "tall",
"north": "tall",
@@ -161986,7 +166514,7 @@
}
},
{
- "id": 22376,
+ "id": 22861,
"properties": {
"east": "tall",
"north": "tall",
@@ -161997,7 +166525,7 @@
}
},
{
- "id": 22377,
+ "id": 22862,
"properties": {
"east": "tall",
"north": "tall",
@@ -162008,7 +166536,7 @@
}
},
{
- "id": 22378,
+ "id": 22863,
"properties": {
"east": "tall",
"north": "tall",
@@ -162019,7 +166547,7 @@
}
},
{
- "id": 22379,
+ "id": 22864,
"properties": {
"east": "tall",
"north": "tall",
@@ -162030,7 +166558,7 @@
}
},
{
- "id": 22380,
+ "id": 22865,
"properties": {
"east": "tall",
"north": "tall",
@@ -162041,7 +166569,7 @@
}
},
{
- "id": 22381,
+ "id": 22866,
"properties": {
"east": "tall",
"north": "tall",
@@ -162052,7 +166580,7 @@
}
},
{
- "id": 22382,
+ "id": 22867,
"properties": {
"east": "tall",
"north": "tall",
@@ -162063,7 +166591,7 @@
}
},
{
- "id": 22383,
+ "id": 22868,
"properties": {
"east": "tall",
"north": "tall",
@@ -162074,7 +166602,7 @@
}
},
{
- "id": 22384,
+ "id": 22869,
"properties": {
"east": "tall",
"north": "tall",
@@ -162085,7 +166613,7 @@
}
},
{
- "id": 22385,
+ "id": 22870,
"properties": {
"east": "tall",
"north": "tall",
@@ -162096,7 +166624,7 @@
}
},
{
- "id": 22386,
+ "id": 22871,
"properties": {
"east": "tall",
"north": "tall",
@@ -162130,21 +166658,21 @@
},
"states": [
{
- "id": 13472,
+ "id": 13941,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 13473,
+ "id": 13942,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 13474,
+ "id": 13943,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -162152,21 +166680,21 @@
},
{
"default": true,
- "id": 13475,
+ "id": 13944,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 13476,
+ "id": 13945,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 13477,
+ "id": 13946,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -162200,7 +166728,7 @@
},
"states": [
{
- "id": 12574,
+ "id": 13043,
"properties": {
"facing": "north",
"half": "top",
@@ -162209,7 +166737,7 @@
}
},
{
- "id": 12575,
+ "id": 13044,
"properties": {
"facing": "north",
"half": "top",
@@ -162218,7 +166746,7 @@
}
},
{
- "id": 12576,
+ "id": 13045,
"properties": {
"facing": "north",
"half": "top",
@@ -162227,7 +166755,7 @@
}
},
{
- "id": 12577,
+ "id": 13046,
"properties": {
"facing": "north",
"half": "top",
@@ -162236,7 +166764,7 @@
}
},
{
- "id": 12578,
+ "id": 13047,
"properties": {
"facing": "north",
"half": "top",
@@ -162245,7 +166773,7 @@
}
},
{
- "id": 12579,
+ "id": 13048,
"properties": {
"facing": "north",
"half": "top",
@@ -162254,7 +166782,7 @@
}
},
{
- "id": 12580,
+ "id": 13049,
"properties": {
"facing": "north",
"half": "top",
@@ -162263,7 +166791,7 @@
}
},
{
- "id": 12581,
+ "id": 13050,
"properties": {
"facing": "north",
"half": "top",
@@ -162272,7 +166800,7 @@
}
},
{
- "id": 12582,
+ "id": 13051,
"properties": {
"facing": "north",
"half": "top",
@@ -162281,7 +166809,7 @@
}
},
{
- "id": 12583,
+ "id": 13052,
"properties": {
"facing": "north",
"half": "top",
@@ -162290,7 +166818,7 @@
}
},
{
- "id": 12584,
+ "id": 13053,
"properties": {
"facing": "north",
"half": "bottom",
@@ -162300,7 +166828,7 @@
},
{
"default": true,
- "id": 12585,
+ "id": 13054,
"properties": {
"facing": "north",
"half": "bottom",
@@ -162309,7 +166837,7 @@
}
},
{
- "id": 12586,
+ "id": 13055,
"properties": {
"facing": "north",
"half": "bottom",
@@ -162318,7 +166846,7 @@
}
},
{
- "id": 12587,
+ "id": 13056,
"properties": {
"facing": "north",
"half": "bottom",
@@ -162327,7 +166855,7 @@
}
},
{
- "id": 12588,
+ "id": 13057,
"properties": {
"facing": "north",
"half": "bottom",
@@ -162336,7 +166864,7 @@
}
},
{
- "id": 12589,
+ "id": 13058,
"properties": {
"facing": "north",
"half": "bottom",
@@ -162345,7 +166873,7 @@
}
},
{
- "id": 12590,
+ "id": 13059,
"properties": {
"facing": "north",
"half": "bottom",
@@ -162354,7 +166882,7 @@
}
},
{
- "id": 12591,
+ "id": 13060,
"properties": {
"facing": "north",
"half": "bottom",
@@ -162363,7 +166891,7 @@
}
},
{
- "id": 12592,
+ "id": 13061,
"properties": {
"facing": "north",
"half": "bottom",
@@ -162372,7 +166900,7 @@
}
},
{
- "id": 12593,
+ "id": 13062,
"properties": {
"facing": "north",
"half": "bottom",
@@ -162381,7 +166909,7 @@
}
},
{
- "id": 12594,
+ "id": 13063,
"properties": {
"facing": "south",
"half": "top",
@@ -162390,7 +166918,7 @@
}
},
{
- "id": 12595,
+ "id": 13064,
"properties": {
"facing": "south",
"half": "top",
@@ -162399,7 +166927,7 @@
}
},
{
- "id": 12596,
+ "id": 13065,
"properties": {
"facing": "south",
"half": "top",
@@ -162408,7 +166936,7 @@
}
},
{
- "id": 12597,
+ "id": 13066,
"properties": {
"facing": "south",
"half": "top",
@@ -162417,7 +166945,7 @@
}
},
{
- "id": 12598,
+ "id": 13067,
"properties": {
"facing": "south",
"half": "top",
@@ -162426,7 +166954,7 @@
}
},
{
- "id": 12599,
+ "id": 13068,
"properties": {
"facing": "south",
"half": "top",
@@ -162435,7 +166963,7 @@
}
},
{
- "id": 12600,
+ "id": 13069,
"properties": {
"facing": "south",
"half": "top",
@@ -162444,7 +166972,7 @@
}
},
{
- "id": 12601,
+ "id": 13070,
"properties": {
"facing": "south",
"half": "top",
@@ -162453,7 +166981,7 @@
}
},
{
- "id": 12602,
+ "id": 13071,
"properties": {
"facing": "south",
"half": "top",
@@ -162462,7 +166990,7 @@
}
},
{
- "id": 12603,
+ "id": 13072,
"properties": {
"facing": "south",
"half": "top",
@@ -162471,7 +166999,7 @@
}
},
{
- "id": 12604,
+ "id": 13073,
"properties": {
"facing": "south",
"half": "bottom",
@@ -162480,7 +167008,7 @@
}
},
{
- "id": 12605,
+ "id": 13074,
"properties": {
"facing": "south",
"half": "bottom",
@@ -162489,7 +167017,7 @@
}
},
{
- "id": 12606,
+ "id": 13075,
"properties": {
"facing": "south",
"half": "bottom",
@@ -162498,7 +167026,7 @@
}
},
{
- "id": 12607,
+ "id": 13076,
"properties": {
"facing": "south",
"half": "bottom",
@@ -162507,7 +167035,7 @@
}
},
{
- "id": 12608,
+ "id": 13077,
"properties": {
"facing": "south",
"half": "bottom",
@@ -162516,7 +167044,7 @@
}
},
{
- "id": 12609,
+ "id": 13078,
"properties": {
"facing": "south",
"half": "bottom",
@@ -162525,7 +167053,7 @@
}
},
{
- "id": 12610,
+ "id": 13079,
"properties": {
"facing": "south",
"half": "bottom",
@@ -162534,7 +167062,7 @@
}
},
{
- "id": 12611,
+ "id": 13080,
"properties": {
"facing": "south",
"half": "bottom",
@@ -162543,7 +167071,7 @@
}
},
{
- "id": 12612,
+ "id": 13081,
"properties": {
"facing": "south",
"half": "bottom",
@@ -162552,7 +167080,7 @@
}
},
{
- "id": 12613,
+ "id": 13082,
"properties": {
"facing": "south",
"half": "bottom",
@@ -162561,7 +167089,7 @@
}
},
{
- "id": 12614,
+ "id": 13083,
"properties": {
"facing": "west",
"half": "top",
@@ -162570,7 +167098,7 @@
}
},
{
- "id": 12615,
+ "id": 13084,
"properties": {
"facing": "west",
"half": "top",
@@ -162579,7 +167107,7 @@
}
},
{
- "id": 12616,
+ "id": 13085,
"properties": {
"facing": "west",
"half": "top",
@@ -162588,7 +167116,7 @@
}
},
{
- "id": 12617,
+ "id": 13086,
"properties": {
"facing": "west",
"half": "top",
@@ -162597,7 +167125,7 @@
}
},
{
- "id": 12618,
+ "id": 13087,
"properties": {
"facing": "west",
"half": "top",
@@ -162606,7 +167134,7 @@
}
},
{
- "id": 12619,
+ "id": 13088,
"properties": {
"facing": "west",
"half": "top",
@@ -162615,7 +167143,7 @@
}
},
{
- "id": 12620,
+ "id": 13089,
"properties": {
"facing": "west",
"half": "top",
@@ -162624,7 +167152,7 @@
}
},
{
- "id": 12621,
+ "id": 13090,
"properties": {
"facing": "west",
"half": "top",
@@ -162633,7 +167161,7 @@
}
},
{
- "id": 12622,
+ "id": 13091,
"properties": {
"facing": "west",
"half": "top",
@@ -162642,7 +167170,7 @@
}
},
{
- "id": 12623,
+ "id": 13092,
"properties": {
"facing": "west",
"half": "top",
@@ -162651,7 +167179,7 @@
}
},
{
- "id": 12624,
+ "id": 13093,
"properties": {
"facing": "west",
"half": "bottom",
@@ -162660,7 +167188,7 @@
}
},
{
- "id": 12625,
+ "id": 13094,
"properties": {
"facing": "west",
"half": "bottom",
@@ -162669,7 +167197,7 @@
}
},
{
- "id": 12626,
+ "id": 13095,
"properties": {
"facing": "west",
"half": "bottom",
@@ -162678,7 +167206,7 @@
}
},
{
- "id": 12627,
+ "id": 13096,
"properties": {
"facing": "west",
"half": "bottom",
@@ -162687,7 +167215,7 @@
}
},
{
- "id": 12628,
+ "id": 13097,
"properties": {
"facing": "west",
"half": "bottom",
@@ -162696,7 +167224,7 @@
}
},
{
- "id": 12629,
+ "id": 13098,
"properties": {
"facing": "west",
"half": "bottom",
@@ -162705,7 +167233,7 @@
}
},
{
- "id": 12630,
+ "id": 13099,
"properties": {
"facing": "west",
"half": "bottom",
@@ -162714,7 +167242,7 @@
}
},
{
- "id": 12631,
+ "id": 13100,
"properties": {
"facing": "west",
"half": "bottom",
@@ -162723,7 +167251,7 @@
}
},
{
- "id": 12632,
+ "id": 13101,
"properties": {
"facing": "west",
"half": "bottom",
@@ -162732,7 +167260,7 @@
}
},
{
- "id": 12633,
+ "id": 13102,
"properties": {
"facing": "west",
"half": "bottom",
@@ -162741,7 +167269,7 @@
}
},
{
- "id": 12634,
+ "id": 13103,
"properties": {
"facing": "east",
"half": "top",
@@ -162750,7 +167278,7 @@
}
},
{
- "id": 12635,
+ "id": 13104,
"properties": {
"facing": "east",
"half": "top",
@@ -162759,7 +167287,7 @@
}
},
{
- "id": 12636,
+ "id": 13105,
"properties": {
"facing": "east",
"half": "top",
@@ -162768,7 +167296,7 @@
}
},
{
- "id": 12637,
+ "id": 13106,
"properties": {
"facing": "east",
"half": "top",
@@ -162777,7 +167305,7 @@
}
},
{
- "id": 12638,
+ "id": 13107,
"properties": {
"facing": "east",
"half": "top",
@@ -162786,7 +167314,7 @@
}
},
{
- "id": 12639,
+ "id": 13108,
"properties": {
"facing": "east",
"half": "top",
@@ -162795,7 +167323,7 @@
}
},
{
- "id": 12640,
+ "id": 13109,
"properties": {
"facing": "east",
"half": "top",
@@ -162804,7 +167332,7 @@
}
},
{
- "id": 12641,
+ "id": 13110,
"properties": {
"facing": "east",
"half": "top",
@@ -162813,7 +167341,7 @@
}
},
{
- "id": 12642,
+ "id": 13111,
"properties": {
"facing": "east",
"half": "top",
@@ -162822,7 +167350,7 @@
}
},
{
- "id": 12643,
+ "id": 13112,
"properties": {
"facing": "east",
"half": "top",
@@ -162831,7 +167359,7 @@
}
},
{
- "id": 12644,
+ "id": 13113,
"properties": {
"facing": "east",
"half": "bottom",
@@ -162840,7 +167368,7 @@
}
},
{
- "id": 12645,
+ "id": 13114,
"properties": {
"facing": "east",
"half": "bottom",
@@ -162849,7 +167377,7 @@
}
},
{
- "id": 12646,
+ "id": 13115,
"properties": {
"facing": "east",
"half": "bottom",
@@ -162858,7 +167386,7 @@
}
},
{
- "id": 12647,
+ "id": 13116,
"properties": {
"facing": "east",
"half": "bottom",
@@ -162867,7 +167395,7 @@
}
},
{
- "id": 12648,
+ "id": 13117,
"properties": {
"facing": "east",
"half": "bottom",
@@ -162876,7 +167404,7 @@
}
},
{
- "id": 12649,
+ "id": 13118,
"properties": {
"facing": "east",
"half": "bottom",
@@ -162885,7 +167413,7 @@
}
},
{
- "id": 12650,
+ "id": 13119,
"properties": {
"facing": "east",
"half": "bottom",
@@ -162894,7 +167422,7 @@
}
},
{
- "id": 12651,
+ "id": 13120,
"properties": {
"facing": "east",
"half": "bottom",
@@ -162903,7 +167431,7 @@
}
},
{
- "id": 12652,
+ "id": 13121,
"properties": {
"facing": "east",
"half": "bottom",
@@ -162912,7 +167440,7 @@
}
},
{
- "id": 12653,
+ "id": 13122,
"properties": {
"facing": "east",
"half": "bottom",
@@ -162944,21 +167472,21 @@
},
"states": [
{
- "id": 13454,
+ "id": 13923,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 13455,
+ "id": 13924,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 13456,
+ "id": 13925,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -162966,21 +167494,21 @@
},
{
"default": true,
- "id": 13457,
+ "id": 13926,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 13458,
+ "id": 13927,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 13459,
+ "id": 13928,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -163014,7 +167542,7 @@
},
"states": [
{
- "id": 12334,
+ "id": 12803,
"properties": {
"facing": "north",
"half": "top",
@@ -163023,7 +167551,7 @@
}
},
{
- "id": 12335,
+ "id": 12804,
"properties": {
"facing": "north",
"half": "top",
@@ -163032,7 +167560,7 @@
}
},
{
- "id": 12336,
+ "id": 12805,
"properties": {
"facing": "north",
"half": "top",
@@ -163041,7 +167569,7 @@
}
},
{
- "id": 12337,
+ "id": 12806,
"properties": {
"facing": "north",
"half": "top",
@@ -163050,7 +167578,7 @@
}
},
{
- "id": 12338,
+ "id": 12807,
"properties": {
"facing": "north",
"half": "top",
@@ -163059,7 +167587,7 @@
}
},
{
- "id": 12339,
+ "id": 12808,
"properties": {
"facing": "north",
"half": "top",
@@ -163068,7 +167596,7 @@
}
},
{
- "id": 12340,
+ "id": 12809,
"properties": {
"facing": "north",
"half": "top",
@@ -163077,7 +167605,7 @@
}
},
{
- "id": 12341,
+ "id": 12810,
"properties": {
"facing": "north",
"half": "top",
@@ -163086,7 +167614,7 @@
}
},
{
- "id": 12342,
+ "id": 12811,
"properties": {
"facing": "north",
"half": "top",
@@ -163095,7 +167623,7 @@
}
},
{
- "id": 12343,
+ "id": 12812,
"properties": {
"facing": "north",
"half": "top",
@@ -163104,7 +167632,7 @@
}
},
{
- "id": 12344,
+ "id": 12813,
"properties": {
"facing": "north",
"half": "bottom",
@@ -163114,7 +167642,7 @@
},
{
"default": true,
- "id": 12345,
+ "id": 12814,
"properties": {
"facing": "north",
"half": "bottom",
@@ -163123,7 +167651,7 @@
}
},
{
- "id": 12346,
+ "id": 12815,
"properties": {
"facing": "north",
"half": "bottom",
@@ -163132,7 +167660,7 @@
}
},
{
- "id": 12347,
+ "id": 12816,
"properties": {
"facing": "north",
"half": "bottom",
@@ -163141,7 +167669,7 @@
}
},
{
- "id": 12348,
+ "id": 12817,
"properties": {
"facing": "north",
"half": "bottom",
@@ -163150,7 +167678,7 @@
}
},
{
- "id": 12349,
+ "id": 12818,
"properties": {
"facing": "north",
"half": "bottom",
@@ -163159,7 +167687,7 @@
}
},
{
- "id": 12350,
+ "id": 12819,
"properties": {
"facing": "north",
"half": "bottom",
@@ -163168,7 +167696,7 @@
}
},
{
- "id": 12351,
+ "id": 12820,
"properties": {
"facing": "north",
"half": "bottom",
@@ -163177,7 +167705,7 @@
}
},
{
- "id": 12352,
+ "id": 12821,
"properties": {
"facing": "north",
"half": "bottom",
@@ -163186,7 +167714,7 @@
}
},
{
- "id": 12353,
+ "id": 12822,
"properties": {
"facing": "north",
"half": "bottom",
@@ -163195,7 +167723,7 @@
}
},
{
- "id": 12354,
+ "id": 12823,
"properties": {
"facing": "south",
"half": "top",
@@ -163204,7 +167732,7 @@
}
},
{
- "id": 12355,
+ "id": 12824,
"properties": {
"facing": "south",
"half": "top",
@@ -163213,7 +167741,7 @@
}
},
{
- "id": 12356,
+ "id": 12825,
"properties": {
"facing": "south",
"half": "top",
@@ -163222,7 +167750,7 @@
}
},
{
- "id": 12357,
+ "id": 12826,
"properties": {
"facing": "south",
"half": "top",
@@ -163231,7 +167759,7 @@
}
},
{
- "id": 12358,
+ "id": 12827,
"properties": {
"facing": "south",
"half": "top",
@@ -163240,7 +167768,7 @@
}
},
{
- "id": 12359,
+ "id": 12828,
"properties": {
"facing": "south",
"half": "top",
@@ -163249,7 +167777,7 @@
}
},
{
- "id": 12360,
+ "id": 12829,
"properties": {
"facing": "south",
"half": "top",
@@ -163258,7 +167786,7 @@
}
},
{
- "id": 12361,
+ "id": 12830,
"properties": {
"facing": "south",
"half": "top",
@@ -163267,7 +167795,7 @@
}
},
{
- "id": 12362,
+ "id": 12831,
"properties": {
"facing": "south",
"half": "top",
@@ -163276,7 +167804,7 @@
}
},
{
- "id": 12363,
+ "id": 12832,
"properties": {
"facing": "south",
"half": "top",
@@ -163285,7 +167813,7 @@
}
},
{
- "id": 12364,
+ "id": 12833,
"properties": {
"facing": "south",
"half": "bottom",
@@ -163294,7 +167822,7 @@
}
},
{
- "id": 12365,
+ "id": 12834,
"properties": {
"facing": "south",
"half": "bottom",
@@ -163303,7 +167831,7 @@
}
},
{
- "id": 12366,
+ "id": 12835,
"properties": {
"facing": "south",
"half": "bottom",
@@ -163312,7 +167840,7 @@
}
},
{
- "id": 12367,
+ "id": 12836,
"properties": {
"facing": "south",
"half": "bottom",
@@ -163321,7 +167849,7 @@
}
},
{
- "id": 12368,
+ "id": 12837,
"properties": {
"facing": "south",
"half": "bottom",
@@ -163330,7 +167858,7 @@
}
},
{
- "id": 12369,
+ "id": 12838,
"properties": {
"facing": "south",
"half": "bottom",
@@ -163339,7 +167867,7 @@
}
},
{
- "id": 12370,
+ "id": 12839,
"properties": {
"facing": "south",
"half": "bottom",
@@ -163348,7 +167876,7 @@
}
},
{
- "id": 12371,
+ "id": 12840,
"properties": {
"facing": "south",
"half": "bottom",
@@ -163357,7 +167885,7 @@
}
},
{
- "id": 12372,
+ "id": 12841,
"properties": {
"facing": "south",
"half": "bottom",
@@ -163366,7 +167894,7 @@
}
},
{
- "id": 12373,
+ "id": 12842,
"properties": {
"facing": "south",
"half": "bottom",
@@ -163375,7 +167903,7 @@
}
},
{
- "id": 12374,
+ "id": 12843,
"properties": {
"facing": "west",
"half": "top",
@@ -163384,7 +167912,7 @@
}
},
{
- "id": 12375,
+ "id": 12844,
"properties": {
"facing": "west",
"half": "top",
@@ -163393,7 +167921,7 @@
}
},
{
- "id": 12376,
+ "id": 12845,
"properties": {
"facing": "west",
"half": "top",
@@ -163402,7 +167930,7 @@
}
},
{
- "id": 12377,
+ "id": 12846,
"properties": {
"facing": "west",
"half": "top",
@@ -163411,7 +167939,7 @@
}
},
{
- "id": 12378,
+ "id": 12847,
"properties": {
"facing": "west",
"half": "top",
@@ -163420,7 +167948,7 @@
}
},
{
- "id": 12379,
+ "id": 12848,
"properties": {
"facing": "west",
"half": "top",
@@ -163429,7 +167957,7 @@
}
},
{
- "id": 12380,
+ "id": 12849,
"properties": {
"facing": "west",
"half": "top",
@@ -163438,7 +167966,7 @@
}
},
{
- "id": 12381,
+ "id": 12850,
"properties": {
"facing": "west",
"half": "top",
@@ -163447,7 +167975,7 @@
}
},
{
- "id": 12382,
+ "id": 12851,
"properties": {
"facing": "west",
"half": "top",
@@ -163456,7 +167984,7 @@
}
},
{
- "id": 12383,
+ "id": 12852,
"properties": {
"facing": "west",
"half": "top",
@@ -163465,7 +167993,7 @@
}
},
{
- "id": 12384,
+ "id": 12853,
"properties": {
"facing": "west",
"half": "bottom",
@@ -163474,7 +168002,7 @@
}
},
{
- "id": 12385,
+ "id": 12854,
"properties": {
"facing": "west",
"half": "bottom",
@@ -163483,7 +168011,7 @@
}
},
{
- "id": 12386,
+ "id": 12855,
"properties": {
"facing": "west",
"half": "bottom",
@@ -163492,7 +168020,7 @@
}
},
{
- "id": 12387,
+ "id": 12856,
"properties": {
"facing": "west",
"half": "bottom",
@@ -163501,7 +168029,7 @@
}
},
{
- "id": 12388,
+ "id": 12857,
"properties": {
"facing": "west",
"half": "bottom",
@@ -163510,7 +168038,7 @@
}
},
{
- "id": 12389,
+ "id": 12858,
"properties": {
"facing": "west",
"half": "bottom",
@@ -163519,7 +168047,7 @@
}
},
{
- "id": 12390,
+ "id": 12859,
"properties": {
"facing": "west",
"half": "bottom",
@@ -163528,7 +168056,7 @@
}
},
{
- "id": 12391,
+ "id": 12860,
"properties": {
"facing": "west",
"half": "bottom",
@@ -163537,7 +168065,7 @@
}
},
{
- "id": 12392,
+ "id": 12861,
"properties": {
"facing": "west",
"half": "bottom",
@@ -163546,7 +168074,7 @@
}
},
{
- "id": 12393,
+ "id": 12862,
"properties": {
"facing": "west",
"half": "bottom",
@@ -163555,7 +168083,7 @@
}
},
{
- "id": 12394,
+ "id": 12863,
"properties": {
"facing": "east",
"half": "top",
@@ -163564,7 +168092,7 @@
}
},
{
- "id": 12395,
+ "id": 12864,
"properties": {
"facing": "east",
"half": "top",
@@ -163573,7 +168101,7 @@
}
},
{
- "id": 12396,
+ "id": 12865,
"properties": {
"facing": "east",
"half": "top",
@@ -163582,7 +168110,7 @@
}
},
{
- "id": 12397,
+ "id": 12866,
"properties": {
"facing": "east",
"half": "top",
@@ -163591,7 +168119,7 @@
}
},
{
- "id": 12398,
+ "id": 12867,
"properties": {
"facing": "east",
"half": "top",
@@ -163600,7 +168128,7 @@
}
},
{
- "id": 12399,
+ "id": 12868,
"properties": {
"facing": "east",
"half": "top",
@@ -163609,7 +168137,7 @@
}
},
{
- "id": 12400,
+ "id": 12869,
"properties": {
"facing": "east",
"half": "top",
@@ -163618,7 +168146,7 @@
}
},
{
- "id": 12401,
+ "id": 12870,
"properties": {
"facing": "east",
"half": "top",
@@ -163627,7 +168155,7 @@
}
},
{
- "id": 12402,
+ "id": 12871,
"properties": {
"facing": "east",
"half": "top",
@@ -163636,7 +168164,7 @@
}
},
{
- "id": 12403,
+ "id": 12872,
"properties": {
"facing": "east",
"half": "top",
@@ -163645,7 +168173,7 @@
}
},
{
- "id": 12404,
+ "id": 12873,
"properties": {
"facing": "east",
"half": "bottom",
@@ -163654,7 +168182,7 @@
}
},
{
- "id": 12405,
+ "id": 12874,
"properties": {
"facing": "east",
"half": "bottom",
@@ -163663,7 +168191,7 @@
}
},
{
- "id": 12406,
+ "id": 12875,
"properties": {
"facing": "east",
"half": "bottom",
@@ -163672,7 +168200,7 @@
}
},
{
- "id": 12407,
+ "id": 12876,
"properties": {
"facing": "east",
"half": "bottom",
@@ -163681,7 +168209,7 @@
}
},
{
- "id": 12408,
+ "id": 12877,
"properties": {
"facing": "east",
"half": "bottom",
@@ -163690,7 +168218,7 @@
}
},
{
- "id": 12409,
+ "id": 12878,
"properties": {
"facing": "east",
"half": "bottom",
@@ -163699,7 +168227,7 @@
}
},
{
- "id": 12410,
+ "id": 12879,
"properties": {
"facing": "east",
"half": "bottom",
@@ -163708,7 +168236,7 @@
}
},
{
- "id": 12411,
+ "id": 12880,
"properties": {
"facing": "east",
"half": "bottom",
@@ -163717,7 +168245,7 @@
}
},
{
- "id": 12412,
+ "id": 12881,
"properties": {
"facing": "east",
"half": "bottom",
@@ -163726,7 +168254,7 @@
}
},
{
- "id": 12413,
+ "id": 12882,
"properties": {
"facing": "east",
"half": "bottom",
@@ -163740,7 +168268,7 @@
"states": [
{
"default": true,
- "id": 2025
+ "id": 2073
}
]
},
@@ -163760,49 +168288,49 @@
"states": [
{
"default": true,
- "id": 8371,
+ "id": 8599,
"properties": {
"age": "0"
}
},
{
- "id": 8372,
+ "id": 8600,
"properties": {
"age": "1"
}
},
{
- "id": 8373,
+ "id": 8601,
"properties": {
"age": "2"
}
},
{
- "id": 8374,
+ "id": 8602,
"properties": {
"age": "3"
}
},
{
- "id": 8375,
+ "id": 8603,
"properties": {
"age": "4"
}
},
{
- "id": 8376,
+ "id": 8604,
"properties": {
"age": "5"
}
},
{
- "id": 8377,
+ "id": 8605,
"properties": {
"age": "6"
}
},
{
- "id": 8378,
+ "id": 8606,
"properties": {
"age": "7"
}
@@ -163813,7 +168341,7 @@
"states": [
{
"default": true,
- "id": 8342
+ "id": 8569
}
]
},
@@ -163821,7 +168349,7 @@
"states": [
{
"default": true,
- "id": 8349
+ "id": 8577
}
]
},
@@ -163829,7 +168357,7 @@
"states": [
{
"default": true,
- "id": 23219
+ "id": 23704
}
]
},
@@ -163837,7 +168365,7 @@
"states": [
{
"default": true,
- "id": 8350
+ "id": 8578
}
]
},
@@ -163845,7 +168373,7 @@
"states": [
{
"default": true,
- "id": 12329
+ "id": 12798
}
]
},
@@ -163853,7 +168381,7 @@
"states": [
{
"default": true,
- "id": 8340
+ "id": 8567
}
]
},
@@ -163861,7 +168389,7 @@
"states": [
{
"default": true,
- "id": 8348
+ "id": 8576
}
]
},
@@ -163869,7 +168397,7 @@
"states": [
{
"default": true,
- "id": 8360
+ "id": 8588
}
]
},
@@ -163877,7 +168405,15 @@
"states": [
{
"default": true,
- "id": 8362
+ "id": 8590
+ }
+ ]
+ },
+ "minecraft:potted_cherry_sapling": {
+ "states": [
+ {
+ "default": true,
+ "id": 8570
}
]
},
@@ -163885,7 +168421,7 @@
"states": [
{
"default": true,
- "id": 8356
+ "id": 8584
}
]
},
@@ -163893,7 +168429,7 @@
"states": [
{
"default": true,
- "id": 18827
+ "id": 19296
}
]
},
@@ -163901,7 +168437,7 @@
"states": [
{
"default": true,
- "id": 18829
+ "id": 19298
}
]
},
@@ -163909,7 +168445,7 @@
"states": [
{
"default": true,
- "id": 8346
+ "id": 8574
}
]
},
@@ -163917,7 +168453,7 @@
"states": [
{
"default": true,
- "id": 8343
+ "id": 8571
}
]
},
@@ -163925,7 +168461,7 @@
"states": [
{
"default": true,
- "id": 8361
+ "id": 8589
}
]
},
@@ -163933,7 +168469,7 @@
"states": [
{
"default": true,
- "id": 8345
+ "id": 8573
}
]
},
@@ -163941,7 +168477,7 @@
"states": [
{
"default": true,
- "id": 23220
+ "id": 23705
}
]
},
@@ -163949,7 +168485,7 @@
"states": [
{
"default": true,
- "id": 8341
+ "id": 8568
}
]
},
@@ -163957,7 +168493,7 @@
"states": [
{
"default": true,
- "id": 8357
+ "id": 8585
}
]
},
@@ -163965,7 +168501,7 @@
"states": [
{
"default": true,
- "id": 8344
+ "id": 8572
}
]
},
@@ -163973,7 +168509,7 @@
"states": [
{
"default": true,
- "id": 8338
+ "id": 8565
}
]
},
@@ -163981,7 +168517,7 @@
"states": [
{
"default": true,
- "id": 8352
+ "id": 8580
}
]
},
@@ -163989,7 +168525,7 @@
"states": [
{
"default": true,
- "id": 8355
+ "id": 8583
}
]
},
@@ -163997,7 +168533,7 @@
"states": [
{
"default": true,
- "id": 8354
+ "id": 8582
}
]
},
@@ -164005,7 +168541,7 @@
"states": [
{
"default": true,
- "id": 8347
+ "id": 8575
}
]
},
@@ -164013,7 +168549,7 @@
"states": [
{
"default": true,
- "id": 8359
+ "id": 8587
}
]
},
@@ -164021,7 +168557,7 @@
"states": [
{
"default": true,
- "id": 8351
+ "id": 8579
}
]
},
@@ -164029,7 +168565,15 @@
"states": [
{
"default": true,
- "id": 8339
+ "id": 8566
+ }
+ ]
+ },
+ "minecraft:potted_torchflower": {
+ "states": [
+ {
+ "default": true,
+ "id": 8564
}
]
},
@@ -164037,7 +168581,7 @@
"states": [
{
"default": true,
- "id": 18828
+ "id": 19297
}
]
},
@@ -164045,7 +168589,7 @@
"states": [
{
"default": true,
- "id": 18830
+ "id": 19299
}
]
},
@@ -164053,7 +168597,7 @@
"states": [
{
"default": true,
- "id": 8353
+ "id": 8581
}
]
},
@@ -164061,7 +168605,7 @@
"states": [
{
"default": true,
- "id": 8358
+ "id": 8586
}
]
},
@@ -164069,7 +168613,7 @@
"states": [
{
"default": true,
- "id": 20456
+ "id": 20925
}
]
},
@@ -164084,19 +168628,19 @@
"states": [
{
"default": true,
- "id": 7173,
+ "id": 7399,
"properties": {
"level": "1"
}
},
{
- "id": 7174,
+ "id": 7400,
"properties": {
"level": "2"
}
},
{
- "id": 7175,
+ "id": 7401,
"properties": {
"level": "3"
}
@@ -164124,7 +168668,7 @@
},
"states": [
{
- "id": 1893,
+ "id": 1940,
"properties": {
"powered": "true",
"shape": "north_south",
@@ -164132,7 +168676,7 @@
}
},
{
- "id": 1894,
+ "id": 1941,
"properties": {
"powered": "true",
"shape": "north_south",
@@ -164140,7 +168684,7 @@
}
},
{
- "id": 1895,
+ "id": 1942,
"properties": {
"powered": "true",
"shape": "east_west",
@@ -164148,7 +168692,7 @@
}
},
{
- "id": 1896,
+ "id": 1943,
"properties": {
"powered": "true",
"shape": "east_west",
@@ -164156,7 +168700,7 @@
}
},
{
- "id": 1897,
+ "id": 1944,
"properties": {
"powered": "true",
"shape": "ascending_east",
@@ -164164,7 +168708,7 @@
}
},
{
- "id": 1898,
+ "id": 1945,
"properties": {
"powered": "true",
"shape": "ascending_east",
@@ -164172,7 +168716,7 @@
}
},
{
- "id": 1899,
+ "id": 1946,
"properties": {
"powered": "true",
"shape": "ascending_west",
@@ -164180,7 +168724,7 @@
}
},
{
- "id": 1900,
+ "id": 1947,
"properties": {
"powered": "true",
"shape": "ascending_west",
@@ -164188,7 +168732,7 @@
}
},
{
- "id": 1901,
+ "id": 1948,
"properties": {
"powered": "true",
"shape": "ascending_north",
@@ -164196,7 +168740,7 @@
}
},
{
- "id": 1902,
+ "id": 1949,
"properties": {
"powered": "true",
"shape": "ascending_north",
@@ -164204,7 +168748,7 @@
}
},
{
- "id": 1903,
+ "id": 1950,
"properties": {
"powered": "true",
"shape": "ascending_south",
@@ -164212,7 +168756,7 @@
}
},
{
- "id": 1904,
+ "id": 1951,
"properties": {
"powered": "true",
"shape": "ascending_south",
@@ -164220,7 +168764,7 @@
}
},
{
- "id": 1905,
+ "id": 1952,
"properties": {
"powered": "false",
"shape": "north_south",
@@ -164229,7 +168773,7 @@
},
{
"default": true,
- "id": 1906,
+ "id": 1953,
"properties": {
"powered": "false",
"shape": "north_south",
@@ -164237,7 +168781,7 @@
}
},
{
- "id": 1907,
+ "id": 1954,
"properties": {
"powered": "false",
"shape": "east_west",
@@ -164245,7 +168789,7 @@
}
},
{
- "id": 1908,
+ "id": 1955,
"properties": {
"powered": "false",
"shape": "east_west",
@@ -164253,7 +168797,7 @@
}
},
{
- "id": 1909,
+ "id": 1956,
"properties": {
"powered": "false",
"shape": "ascending_east",
@@ -164261,7 +168805,7 @@
}
},
{
- "id": 1910,
+ "id": 1957,
"properties": {
"powered": "false",
"shape": "ascending_east",
@@ -164269,7 +168813,7 @@
}
},
{
- "id": 1911,
+ "id": 1958,
"properties": {
"powered": "false",
"shape": "ascending_west",
@@ -164277,7 +168821,7 @@
}
},
{
- "id": 1912,
+ "id": 1959,
"properties": {
"powered": "false",
"shape": "ascending_west",
@@ -164285,7 +168829,7 @@
}
},
{
- "id": 1913,
+ "id": 1960,
"properties": {
"powered": "false",
"shape": "ascending_north",
@@ -164293,7 +168837,7 @@
}
},
{
- "id": 1914,
+ "id": 1961,
"properties": {
"powered": "false",
"shape": "ascending_north",
@@ -164301,7 +168845,7 @@
}
},
{
- "id": 1915,
+ "id": 1962,
"properties": {
"powered": "false",
"shape": "ascending_south",
@@ -164309,7 +168853,7 @@
}
},
{
- "id": 1916,
+ "id": 1963,
"properties": {
"powered": "false",
"shape": "ascending_south",
@@ -164322,7 +168866,7 @@
"states": [
{
"default": true,
- "id": 9986
+ "id": 10318
}
]
},
@@ -164340,21 +168884,21 @@
},
"states": [
{
- "id": 10235,
+ "id": 10567,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 10236,
+ "id": 10568,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 10237,
+ "id": 10569,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -164362,21 +168906,21 @@
},
{
"default": true,
- "id": 10238,
+ "id": 10570,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 10239,
+ "id": 10571,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 10240,
+ "id": 10572,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -164410,7 +168954,7 @@
},
"states": [
{
- "id": 10069,
+ "id": 10401,
"properties": {
"facing": "north",
"half": "top",
@@ -164419,7 +168963,7 @@
}
},
{
- "id": 10070,
+ "id": 10402,
"properties": {
"facing": "north",
"half": "top",
@@ -164428,7 +168972,7 @@
}
},
{
- "id": 10071,
+ "id": 10403,
"properties": {
"facing": "north",
"half": "top",
@@ -164437,7 +168981,7 @@
}
},
{
- "id": 10072,
+ "id": 10404,
"properties": {
"facing": "north",
"half": "top",
@@ -164446,7 +168990,7 @@
}
},
{
- "id": 10073,
+ "id": 10405,
"properties": {
"facing": "north",
"half": "top",
@@ -164455,7 +168999,7 @@
}
},
{
- "id": 10074,
+ "id": 10406,
"properties": {
"facing": "north",
"half": "top",
@@ -164464,7 +169008,7 @@
}
},
{
- "id": 10075,
+ "id": 10407,
"properties": {
"facing": "north",
"half": "top",
@@ -164473,7 +169017,7 @@
}
},
{
- "id": 10076,
+ "id": 10408,
"properties": {
"facing": "north",
"half": "top",
@@ -164482,7 +169026,7 @@
}
},
{
- "id": 10077,
+ "id": 10409,
"properties": {
"facing": "north",
"half": "top",
@@ -164491,7 +169035,7 @@
}
},
{
- "id": 10078,
+ "id": 10410,
"properties": {
"facing": "north",
"half": "top",
@@ -164500,7 +169044,7 @@
}
},
{
- "id": 10079,
+ "id": 10411,
"properties": {
"facing": "north",
"half": "bottom",
@@ -164510,7 +169054,7 @@
},
{
"default": true,
- "id": 10080,
+ "id": 10412,
"properties": {
"facing": "north",
"half": "bottom",
@@ -164519,7 +169063,7 @@
}
},
{
- "id": 10081,
+ "id": 10413,
"properties": {
"facing": "north",
"half": "bottom",
@@ -164528,7 +169072,7 @@
}
},
{
- "id": 10082,
+ "id": 10414,
"properties": {
"facing": "north",
"half": "bottom",
@@ -164537,7 +169081,7 @@
}
},
{
- "id": 10083,
+ "id": 10415,
"properties": {
"facing": "north",
"half": "bottom",
@@ -164546,7 +169090,7 @@
}
},
{
- "id": 10084,
+ "id": 10416,
"properties": {
"facing": "north",
"half": "bottom",
@@ -164555,7 +169099,7 @@
}
},
{
- "id": 10085,
+ "id": 10417,
"properties": {
"facing": "north",
"half": "bottom",
@@ -164564,7 +169108,7 @@
}
},
{
- "id": 10086,
+ "id": 10418,
"properties": {
"facing": "north",
"half": "bottom",
@@ -164573,7 +169117,7 @@
}
},
{
- "id": 10087,
+ "id": 10419,
"properties": {
"facing": "north",
"half": "bottom",
@@ -164582,7 +169126,7 @@
}
},
{
- "id": 10088,
+ "id": 10420,
"properties": {
"facing": "north",
"half": "bottom",
@@ -164591,7 +169135,7 @@
}
},
{
- "id": 10089,
+ "id": 10421,
"properties": {
"facing": "south",
"half": "top",
@@ -164600,7 +169144,7 @@
}
},
{
- "id": 10090,
+ "id": 10422,
"properties": {
"facing": "south",
"half": "top",
@@ -164609,7 +169153,7 @@
}
},
{
- "id": 10091,
+ "id": 10423,
"properties": {
"facing": "south",
"half": "top",
@@ -164618,7 +169162,7 @@
}
},
{
- "id": 10092,
+ "id": 10424,
"properties": {
"facing": "south",
"half": "top",
@@ -164627,7 +169171,7 @@
}
},
{
- "id": 10093,
+ "id": 10425,
"properties": {
"facing": "south",
"half": "top",
@@ -164636,7 +169180,7 @@
}
},
{
- "id": 10094,
+ "id": 10426,
"properties": {
"facing": "south",
"half": "top",
@@ -164645,7 +169189,7 @@
}
},
{
- "id": 10095,
+ "id": 10427,
"properties": {
"facing": "south",
"half": "top",
@@ -164654,7 +169198,7 @@
}
},
{
- "id": 10096,
+ "id": 10428,
"properties": {
"facing": "south",
"half": "top",
@@ -164663,7 +169207,7 @@
}
},
{
- "id": 10097,
+ "id": 10429,
"properties": {
"facing": "south",
"half": "top",
@@ -164672,7 +169216,7 @@
}
},
{
- "id": 10098,
+ "id": 10430,
"properties": {
"facing": "south",
"half": "top",
@@ -164681,7 +169225,7 @@
}
},
{
- "id": 10099,
+ "id": 10431,
"properties": {
"facing": "south",
"half": "bottom",
@@ -164690,7 +169234,7 @@
}
},
{
- "id": 10100,
+ "id": 10432,
"properties": {
"facing": "south",
"half": "bottom",
@@ -164699,7 +169243,7 @@
}
},
{
- "id": 10101,
+ "id": 10433,
"properties": {
"facing": "south",
"half": "bottom",
@@ -164708,7 +169252,7 @@
}
},
{
- "id": 10102,
+ "id": 10434,
"properties": {
"facing": "south",
"half": "bottom",
@@ -164717,7 +169261,7 @@
}
},
{
- "id": 10103,
+ "id": 10435,
"properties": {
"facing": "south",
"half": "bottom",
@@ -164726,7 +169270,7 @@
}
},
{
- "id": 10104,
+ "id": 10436,
"properties": {
"facing": "south",
"half": "bottom",
@@ -164735,7 +169279,7 @@
}
},
{
- "id": 10105,
+ "id": 10437,
"properties": {
"facing": "south",
"half": "bottom",
@@ -164744,7 +169288,7 @@
}
},
{
- "id": 10106,
+ "id": 10438,
"properties": {
"facing": "south",
"half": "bottom",
@@ -164753,7 +169297,7 @@
}
},
{
- "id": 10107,
+ "id": 10439,
"properties": {
"facing": "south",
"half": "bottom",
@@ -164762,7 +169306,7 @@
}
},
{
- "id": 10108,
+ "id": 10440,
"properties": {
"facing": "south",
"half": "bottom",
@@ -164771,7 +169315,7 @@
}
},
{
- "id": 10109,
+ "id": 10441,
"properties": {
"facing": "west",
"half": "top",
@@ -164780,7 +169324,7 @@
}
},
{
- "id": 10110,
+ "id": 10442,
"properties": {
"facing": "west",
"half": "top",
@@ -164789,7 +169333,7 @@
}
},
{
- "id": 10111,
+ "id": 10443,
"properties": {
"facing": "west",
"half": "top",
@@ -164798,7 +169342,7 @@
}
},
{
- "id": 10112,
+ "id": 10444,
"properties": {
"facing": "west",
"half": "top",
@@ -164807,7 +169351,7 @@
}
},
{
- "id": 10113,
+ "id": 10445,
"properties": {
"facing": "west",
"half": "top",
@@ -164816,7 +169360,7 @@
}
},
{
- "id": 10114,
+ "id": 10446,
"properties": {
"facing": "west",
"half": "top",
@@ -164825,7 +169369,7 @@
}
},
{
- "id": 10115,
+ "id": 10447,
"properties": {
"facing": "west",
"half": "top",
@@ -164834,7 +169378,7 @@
}
},
{
- "id": 10116,
+ "id": 10448,
"properties": {
"facing": "west",
"half": "top",
@@ -164843,7 +169387,7 @@
}
},
{
- "id": 10117,
+ "id": 10449,
"properties": {
"facing": "west",
"half": "top",
@@ -164852,7 +169396,7 @@
}
},
{
- "id": 10118,
+ "id": 10450,
"properties": {
"facing": "west",
"half": "top",
@@ -164861,7 +169405,7 @@
}
},
{
- "id": 10119,
+ "id": 10451,
"properties": {
"facing": "west",
"half": "bottom",
@@ -164870,7 +169414,7 @@
}
},
{
- "id": 10120,
+ "id": 10452,
"properties": {
"facing": "west",
"half": "bottom",
@@ -164879,7 +169423,7 @@
}
},
{
- "id": 10121,
+ "id": 10453,
"properties": {
"facing": "west",
"half": "bottom",
@@ -164888,7 +169432,7 @@
}
},
{
- "id": 10122,
+ "id": 10454,
"properties": {
"facing": "west",
"half": "bottom",
@@ -164897,7 +169441,7 @@
}
},
{
- "id": 10123,
+ "id": 10455,
"properties": {
"facing": "west",
"half": "bottom",
@@ -164906,7 +169450,7 @@
}
},
{
- "id": 10124,
+ "id": 10456,
"properties": {
"facing": "west",
"half": "bottom",
@@ -164915,7 +169459,7 @@
}
},
{
- "id": 10125,
+ "id": 10457,
"properties": {
"facing": "west",
"half": "bottom",
@@ -164924,7 +169468,7 @@
}
},
{
- "id": 10126,
+ "id": 10458,
"properties": {
"facing": "west",
"half": "bottom",
@@ -164933,7 +169477,7 @@
}
},
{
- "id": 10127,
+ "id": 10459,
"properties": {
"facing": "west",
"half": "bottom",
@@ -164942,7 +169486,7 @@
}
},
{
- "id": 10128,
+ "id": 10460,
"properties": {
"facing": "west",
"half": "bottom",
@@ -164951,7 +169495,7 @@
}
},
{
- "id": 10129,
+ "id": 10461,
"properties": {
"facing": "east",
"half": "top",
@@ -164960,7 +169504,7 @@
}
},
{
- "id": 10130,
+ "id": 10462,
"properties": {
"facing": "east",
"half": "top",
@@ -164969,7 +169513,7 @@
}
},
{
- "id": 10131,
+ "id": 10463,
"properties": {
"facing": "east",
"half": "top",
@@ -164978,7 +169522,7 @@
}
},
{
- "id": 10132,
+ "id": 10464,
"properties": {
"facing": "east",
"half": "top",
@@ -164987,7 +169531,7 @@
}
},
{
- "id": 10133,
+ "id": 10465,
"properties": {
"facing": "east",
"half": "top",
@@ -164996,7 +169540,7 @@
}
},
{
- "id": 10134,
+ "id": 10466,
"properties": {
"facing": "east",
"half": "top",
@@ -165005,7 +169549,7 @@
}
},
{
- "id": 10135,
+ "id": 10467,
"properties": {
"facing": "east",
"half": "top",
@@ -165014,7 +169558,7 @@
}
},
{
- "id": 10136,
+ "id": 10468,
"properties": {
"facing": "east",
"half": "top",
@@ -165023,7 +169567,7 @@
}
},
{
- "id": 10137,
+ "id": 10469,
"properties": {
"facing": "east",
"half": "top",
@@ -165032,7 +169576,7 @@
}
},
{
- "id": 10138,
+ "id": 10470,
"properties": {
"facing": "east",
"half": "top",
@@ -165041,7 +169585,7 @@
}
},
{
- "id": 10139,
+ "id": 10471,
"properties": {
"facing": "east",
"half": "bottom",
@@ -165050,7 +169594,7 @@
}
},
{
- "id": 10140,
+ "id": 10472,
"properties": {
"facing": "east",
"half": "bottom",
@@ -165059,7 +169603,7 @@
}
},
{
- "id": 10141,
+ "id": 10473,
"properties": {
"facing": "east",
"half": "bottom",
@@ -165068,7 +169612,7 @@
}
},
{
- "id": 10142,
+ "id": 10474,
"properties": {
"facing": "east",
"half": "bottom",
@@ -165077,7 +169621,7 @@
}
},
{
- "id": 10143,
+ "id": 10475,
"properties": {
"facing": "east",
"half": "bottom",
@@ -165086,7 +169630,7 @@
}
},
{
- "id": 10144,
+ "id": 10476,
"properties": {
"facing": "east",
"half": "bottom",
@@ -165095,7 +169639,7 @@
}
},
{
- "id": 10145,
+ "id": 10477,
"properties": {
"facing": "east",
"half": "bottom",
@@ -165104,7 +169648,7 @@
}
},
{
- "id": 10146,
+ "id": 10478,
"properties": {
"facing": "east",
"half": "bottom",
@@ -165113,7 +169657,7 @@
}
},
{
- "id": 10147,
+ "id": 10479,
"properties": {
"facing": "east",
"half": "bottom",
@@ -165122,7 +169666,7 @@
}
},
{
- "id": 10148,
+ "id": 10480,
"properties": {
"facing": "east",
"half": "bottom",
@@ -165136,7 +169680,7 @@
"states": [
{
"default": true,
- "id": 9987
+ "id": 10319
}
]
},
@@ -165154,21 +169698,21 @@
},
"states": [
{
- "id": 10229,
+ "id": 10561,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 10230,
+ "id": 10562,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 10231,
+ "id": 10563,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -165176,21 +169720,21 @@
},
{
"default": true,
- "id": 10232,
+ "id": 10564,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 10233,
+ "id": 10565,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 10234,
+ "id": 10566,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -165224,7 +169768,7 @@
},
"states": [
{
- "id": 9989,
+ "id": 10321,
"properties": {
"facing": "north",
"half": "top",
@@ -165233,7 +169777,7 @@
}
},
{
- "id": 9990,
+ "id": 10322,
"properties": {
"facing": "north",
"half": "top",
@@ -165242,7 +169786,7 @@
}
},
{
- "id": 9991,
+ "id": 10323,
"properties": {
"facing": "north",
"half": "top",
@@ -165251,7 +169795,7 @@
}
},
{
- "id": 9992,
+ "id": 10324,
"properties": {
"facing": "north",
"half": "top",
@@ -165260,7 +169804,7 @@
}
},
{
- "id": 9993,
+ "id": 10325,
"properties": {
"facing": "north",
"half": "top",
@@ -165269,7 +169813,7 @@
}
},
{
- "id": 9994,
+ "id": 10326,
"properties": {
"facing": "north",
"half": "top",
@@ -165278,7 +169822,7 @@
}
},
{
- "id": 9995,
+ "id": 10327,
"properties": {
"facing": "north",
"half": "top",
@@ -165287,7 +169831,7 @@
}
},
{
- "id": 9996,
+ "id": 10328,
"properties": {
"facing": "north",
"half": "top",
@@ -165296,7 +169840,7 @@
}
},
{
- "id": 9997,
+ "id": 10329,
"properties": {
"facing": "north",
"half": "top",
@@ -165305,7 +169849,7 @@
}
},
{
- "id": 9998,
+ "id": 10330,
"properties": {
"facing": "north",
"half": "top",
@@ -165314,7 +169858,7 @@
}
},
{
- "id": 9999,
+ "id": 10331,
"properties": {
"facing": "north",
"half": "bottom",
@@ -165324,7 +169868,7 @@
},
{
"default": true,
- "id": 10000,
+ "id": 10332,
"properties": {
"facing": "north",
"half": "bottom",
@@ -165333,7 +169877,7 @@
}
},
{
- "id": 10001,
+ "id": 10333,
"properties": {
"facing": "north",
"half": "bottom",
@@ -165342,7 +169886,7 @@
}
},
{
- "id": 10002,
+ "id": 10334,
"properties": {
"facing": "north",
"half": "bottom",
@@ -165351,7 +169895,7 @@
}
},
{
- "id": 10003,
+ "id": 10335,
"properties": {
"facing": "north",
"half": "bottom",
@@ -165360,7 +169904,7 @@
}
},
{
- "id": 10004,
+ "id": 10336,
"properties": {
"facing": "north",
"half": "bottom",
@@ -165369,7 +169913,7 @@
}
},
{
- "id": 10005,
+ "id": 10337,
"properties": {
"facing": "north",
"half": "bottom",
@@ -165378,7 +169922,7 @@
}
},
{
- "id": 10006,
+ "id": 10338,
"properties": {
"facing": "north",
"half": "bottom",
@@ -165387,7 +169931,7 @@
}
},
{
- "id": 10007,
+ "id": 10339,
"properties": {
"facing": "north",
"half": "bottom",
@@ -165396,7 +169940,7 @@
}
},
{
- "id": 10008,
+ "id": 10340,
"properties": {
"facing": "north",
"half": "bottom",
@@ -165405,7 +169949,7 @@
}
},
{
- "id": 10009,
+ "id": 10341,
"properties": {
"facing": "south",
"half": "top",
@@ -165414,7 +169958,7 @@
}
},
{
- "id": 10010,
+ "id": 10342,
"properties": {
"facing": "south",
"half": "top",
@@ -165423,7 +169967,7 @@
}
},
{
- "id": 10011,
+ "id": 10343,
"properties": {
"facing": "south",
"half": "top",
@@ -165432,7 +169976,7 @@
}
},
{
- "id": 10012,
+ "id": 10344,
"properties": {
"facing": "south",
"half": "top",
@@ -165441,7 +169985,7 @@
}
},
{
- "id": 10013,
+ "id": 10345,
"properties": {
"facing": "south",
"half": "top",
@@ -165450,7 +169994,7 @@
}
},
{
- "id": 10014,
+ "id": 10346,
"properties": {
"facing": "south",
"half": "top",
@@ -165459,7 +170003,7 @@
}
},
{
- "id": 10015,
+ "id": 10347,
"properties": {
"facing": "south",
"half": "top",
@@ -165468,7 +170012,7 @@
}
},
{
- "id": 10016,
+ "id": 10348,
"properties": {
"facing": "south",
"half": "top",
@@ -165477,7 +170021,7 @@
}
},
{
- "id": 10017,
+ "id": 10349,
"properties": {
"facing": "south",
"half": "top",
@@ -165486,7 +170030,7 @@
}
},
{
- "id": 10018,
+ "id": 10350,
"properties": {
"facing": "south",
"half": "top",
@@ -165495,7 +170039,7 @@
}
},
{
- "id": 10019,
+ "id": 10351,
"properties": {
"facing": "south",
"half": "bottom",
@@ -165504,7 +170048,7 @@
}
},
{
- "id": 10020,
+ "id": 10352,
"properties": {
"facing": "south",
"half": "bottom",
@@ -165513,7 +170057,7 @@
}
},
{
- "id": 10021,
+ "id": 10353,
"properties": {
"facing": "south",
"half": "bottom",
@@ -165522,7 +170066,7 @@
}
},
{
- "id": 10022,
+ "id": 10354,
"properties": {
"facing": "south",
"half": "bottom",
@@ -165531,7 +170075,7 @@
}
},
{
- "id": 10023,
+ "id": 10355,
"properties": {
"facing": "south",
"half": "bottom",
@@ -165540,7 +170084,7 @@
}
},
{
- "id": 10024,
+ "id": 10356,
"properties": {
"facing": "south",
"half": "bottom",
@@ -165549,7 +170093,7 @@
}
},
{
- "id": 10025,
+ "id": 10357,
"properties": {
"facing": "south",
"half": "bottom",
@@ -165558,7 +170102,7 @@
}
},
{
- "id": 10026,
+ "id": 10358,
"properties": {
"facing": "south",
"half": "bottom",
@@ -165567,7 +170111,7 @@
}
},
{
- "id": 10027,
+ "id": 10359,
"properties": {
"facing": "south",
"half": "bottom",
@@ -165576,7 +170120,7 @@
}
},
{
- "id": 10028,
+ "id": 10360,
"properties": {
"facing": "south",
"half": "bottom",
@@ -165585,7 +170129,7 @@
}
},
{
- "id": 10029,
+ "id": 10361,
"properties": {
"facing": "west",
"half": "top",
@@ -165594,7 +170138,7 @@
}
},
{
- "id": 10030,
+ "id": 10362,
"properties": {
"facing": "west",
"half": "top",
@@ -165603,7 +170147,7 @@
}
},
{
- "id": 10031,
+ "id": 10363,
"properties": {
"facing": "west",
"half": "top",
@@ -165612,7 +170156,7 @@
}
},
{
- "id": 10032,
+ "id": 10364,
"properties": {
"facing": "west",
"half": "top",
@@ -165621,7 +170165,7 @@
}
},
{
- "id": 10033,
+ "id": 10365,
"properties": {
"facing": "west",
"half": "top",
@@ -165630,7 +170174,7 @@
}
},
{
- "id": 10034,
+ "id": 10366,
"properties": {
"facing": "west",
"half": "top",
@@ -165639,7 +170183,7 @@
}
},
{
- "id": 10035,
+ "id": 10367,
"properties": {
"facing": "west",
"half": "top",
@@ -165648,7 +170192,7 @@
}
},
{
- "id": 10036,
+ "id": 10368,
"properties": {
"facing": "west",
"half": "top",
@@ -165657,7 +170201,7 @@
}
},
{
- "id": 10037,
+ "id": 10369,
"properties": {
"facing": "west",
"half": "top",
@@ -165666,7 +170210,7 @@
}
},
{
- "id": 10038,
+ "id": 10370,
"properties": {
"facing": "west",
"half": "top",
@@ -165675,7 +170219,7 @@
}
},
{
- "id": 10039,
+ "id": 10371,
"properties": {
"facing": "west",
"half": "bottom",
@@ -165684,7 +170228,7 @@
}
},
{
- "id": 10040,
+ "id": 10372,
"properties": {
"facing": "west",
"half": "bottom",
@@ -165693,7 +170237,7 @@
}
},
{
- "id": 10041,
+ "id": 10373,
"properties": {
"facing": "west",
"half": "bottom",
@@ -165702,7 +170246,7 @@
}
},
{
- "id": 10042,
+ "id": 10374,
"properties": {
"facing": "west",
"half": "bottom",
@@ -165711,7 +170255,7 @@
}
},
{
- "id": 10043,
+ "id": 10375,
"properties": {
"facing": "west",
"half": "bottom",
@@ -165720,7 +170264,7 @@
}
},
{
- "id": 10044,
+ "id": 10376,
"properties": {
"facing": "west",
"half": "bottom",
@@ -165729,7 +170273,7 @@
}
},
{
- "id": 10045,
+ "id": 10377,
"properties": {
"facing": "west",
"half": "bottom",
@@ -165738,7 +170282,7 @@
}
},
{
- "id": 10046,
+ "id": 10378,
"properties": {
"facing": "west",
"half": "bottom",
@@ -165747,7 +170291,7 @@
}
},
{
- "id": 10047,
+ "id": 10379,
"properties": {
"facing": "west",
"half": "bottom",
@@ -165756,7 +170300,7 @@
}
},
{
- "id": 10048,
+ "id": 10380,
"properties": {
"facing": "west",
"half": "bottom",
@@ -165765,7 +170309,7 @@
}
},
{
- "id": 10049,
+ "id": 10381,
"properties": {
"facing": "east",
"half": "top",
@@ -165774,7 +170318,7 @@
}
},
{
- "id": 10050,
+ "id": 10382,
"properties": {
"facing": "east",
"half": "top",
@@ -165783,7 +170327,7 @@
}
},
{
- "id": 10051,
+ "id": 10383,
"properties": {
"facing": "east",
"half": "top",
@@ -165792,7 +170336,7 @@
}
},
{
- "id": 10052,
+ "id": 10384,
"properties": {
"facing": "east",
"half": "top",
@@ -165801,7 +170345,7 @@
}
},
{
- "id": 10053,
+ "id": 10385,
"properties": {
"facing": "east",
"half": "top",
@@ -165810,7 +170354,7 @@
}
},
{
- "id": 10054,
+ "id": 10386,
"properties": {
"facing": "east",
"half": "top",
@@ -165819,7 +170363,7 @@
}
},
{
- "id": 10055,
+ "id": 10387,
"properties": {
"facing": "east",
"half": "top",
@@ -165828,7 +170372,7 @@
}
},
{
- "id": 10056,
+ "id": 10388,
"properties": {
"facing": "east",
"half": "top",
@@ -165837,7 +170381,7 @@
}
},
{
- "id": 10057,
+ "id": 10389,
"properties": {
"facing": "east",
"half": "top",
@@ -165846,7 +170390,7 @@
}
},
{
- "id": 10058,
+ "id": 10390,
"properties": {
"facing": "east",
"half": "top",
@@ -165855,7 +170399,7 @@
}
},
{
- "id": 10059,
+ "id": 10391,
"properties": {
"facing": "east",
"half": "bottom",
@@ -165864,7 +170408,7 @@
}
},
{
- "id": 10060,
+ "id": 10392,
"properties": {
"facing": "east",
"half": "bottom",
@@ -165873,7 +170417,7 @@
}
},
{
- "id": 10061,
+ "id": 10393,
"properties": {
"facing": "east",
"half": "bottom",
@@ -165882,7 +170426,7 @@
}
},
{
- "id": 10062,
+ "id": 10394,
"properties": {
"facing": "east",
"half": "bottom",
@@ -165891,7 +170435,7 @@
}
},
{
- "id": 10063,
+ "id": 10395,
"properties": {
"facing": "east",
"half": "bottom",
@@ -165900,7 +170444,7 @@
}
},
{
- "id": 10064,
+ "id": 10396,
"properties": {
"facing": "east",
"half": "bottom",
@@ -165909,7 +170453,7 @@
}
},
{
- "id": 10065,
+ "id": 10397,
"properties": {
"facing": "east",
"half": "bottom",
@@ -165918,7 +170462,7 @@
}
},
{
- "id": 10066,
+ "id": 10398,
"properties": {
"facing": "east",
"half": "bottom",
@@ -165927,7 +170471,7 @@
}
},
{
- "id": 10067,
+ "id": 10399,
"properties": {
"facing": "east",
"half": "bottom",
@@ -165936,7 +170480,7 @@
}
},
{
- "id": 10068,
+ "id": 10400,
"properties": {
"facing": "east",
"half": "bottom",
@@ -165979,7 +170523,7 @@
},
"states": [
{
- "id": 13856,
+ "id": 14325,
"properties": {
"east": "none",
"north": "none",
@@ -165990,7 +170534,7 @@
}
},
{
- "id": 13857,
+ "id": 14326,
"properties": {
"east": "none",
"north": "none",
@@ -166001,7 +170545,7 @@
}
},
{
- "id": 13858,
+ "id": 14327,
"properties": {
"east": "none",
"north": "none",
@@ -166013,7 +170557,7 @@
},
{
"default": true,
- "id": 13859,
+ "id": 14328,
"properties": {
"east": "none",
"north": "none",
@@ -166024,7 +170568,7 @@
}
},
{
- "id": 13860,
+ "id": 14329,
"properties": {
"east": "none",
"north": "none",
@@ -166035,7 +170579,7 @@
}
},
{
- "id": 13861,
+ "id": 14330,
"properties": {
"east": "none",
"north": "none",
@@ -166046,7 +170590,7 @@
}
},
{
- "id": 13862,
+ "id": 14331,
"properties": {
"east": "none",
"north": "none",
@@ -166057,7 +170601,7 @@
}
},
{
- "id": 13863,
+ "id": 14332,
"properties": {
"east": "none",
"north": "none",
@@ -166068,7 +170612,7 @@
}
},
{
- "id": 13864,
+ "id": 14333,
"properties": {
"east": "none",
"north": "none",
@@ -166079,7 +170623,7 @@
}
},
{
- "id": 13865,
+ "id": 14334,
"properties": {
"east": "none",
"north": "none",
@@ -166090,7 +170634,7 @@
}
},
{
- "id": 13866,
+ "id": 14335,
"properties": {
"east": "none",
"north": "none",
@@ -166101,7 +170645,7 @@
}
},
{
- "id": 13867,
+ "id": 14336,
"properties": {
"east": "none",
"north": "none",
@@ -166112,7 +170656,7 @@
}
},
{
- "id": 13868,
+ "id": 14337,
"properties": {
"east": "none",
"north": "none",
@@ -166123,7 +170667,7 @@
}
},
{
- "id": 13869,
+ "id": 14338,
"properties": {
"east": "none",
"north": "none",
@@ -166134,7 +170678,7 @@
}
},
{
- "id": 13870,
+ "id": 14339,
"properties": {
"east": "none",
"north": "none",
@@ -166145,7 +170689,7 @@
}
},
{
- "id": 13871,
+ "id": 14340,
"properties": {
"east": "none",
"north": "none",
@@ -166156,7 +170700,7 @@
}
},
{
- "id": 13872,
+ "id": 14341,
"properties": {
"east": "none",
"north": "none",
@@ -166167,7 +170711,7 @@
}
},
{
- "id": 13873,
+ "id": 14342,
"properties": {
"east": "none",
"north": "none",
@@ -166178,7 +170722,7 @@
}
},
{
- "id": 13874,
+ "id": 14343,
"properties": {
"east": "none",
"north": "none",
@@ -166189,7 +170733,7 @@
}
},
{
- "id": 13875,
+ "id": 14344,
"properties": {
"east": "none",
"north": "none",
@@ -166200,7 +170744,7 @@
}
},
{
- "id": 13876,
+ "id": 14345,
"properties": {
"east": "none",
"north": "none",
@@ -166211,7 +170755,7 @@
}
},
{
- "id": 13877,
+ "id": 14346,
"properties": {
"east": "none",
"north": "none",
@@ -166222,7 +170766,7 @@
}
},
{
- "id": 13878,
+ "id": 14347,
"properties": {
"east": "none",
"north": "none",
@@ -166233,7 +170777,7 @@
}
},
{
- "id": 13879,
+ "id": 14348,
"properties": {
"east": "none",
"north": "none",
@@ -166244,7 +170788,7 @@
}
},
{
- "id": 13880,
+ "id": 14349,
"properties": {
"east": "none",
"north": "none",
@@ -166255,7 +170799,7 @@
}
},
{
- "id": 13881,
+ "id": 14350,
"properties": {
"east": "none",
"north": "none",
@@ -166266,7 +170810,7 @@
}
},
{
- "id": 13882,
+ "id": 14351,
"properties": {
"east": "none",
"north": "none",
@@ -166277,7 +170821,7 @@
}
},
{
- "id": 13883,
+ "id": 14352,
"properties": {
"east": "none",
"north": "none",
@@ -166288,7 +170832,7 @@
}
},
{
- "id": 13884,
+ "id": 14353,
"properties": {
"east": "none",
"north": "none",
@@ -166299,7 +170843,7 @@
}
},
{
- "id": 13885,
+ "id": 14354,
"properties": {
"east": "none",
"north": "none",
@@ -166310,7 +170854,7 @@
}
},
{
- "id": 13886,
+ "id": 14355,
"properties": {
"east": "none",
"north": "none",
@@ -166321,7 +170865,7 @@
}
},
{
- "id": 13887,
+ "id": 14356,
"properties": {
"east": "none",
"north": "none",
@@ -166332,7 +170876,7 @@
}
},
{
- "id": 13888,
+ "id": 14357,
"properties": {
"east": "none",
"north": "none",
@@ -166343,7 +170887,7 @@
}
},
{
- "id": 13889,
+ "id": 14358,
"properties": {
"east": "none",
"north": "none",
@@ -166354,7 +170898,7 @@
}
},
{
- "id": 13890,
+ "id": 14359,
"properties": {
"east": "none",
"north": "none",
@@ -166365,7 +170909,7 @@
}
},
{
- "id": 13891,
+ "id": 14360,
"properties": {
"east": "none",
"north": "none",
@@ -166376,7 +170920,7 @@
}
},
{
- "id": 13892,
+ "id": 14361,
"properties": {
"east": "none",
"north": "low",
@@ -166387,7 +170931,7 @@
}
},
{
- "id": 13893,
+ "id": 14362,
"properties": {
"east": "none",
"north": "low",
@@ -166398,7 +170942,7 @@
}
},
{
- "id": 13894,
+ "id": 14363,
"properties": {
"east": "none",
"north": "low",
@@ -166409,7 +170953,7 @@
}
},
{
- "id": 13895,
+ "id": 14364,
"properties": {
"east": "none",
"north": "low",
@@ -166420,7 +170964,7 @@
}
},
{
- "id": 13896,
+ "id": 14365,
"properties": {
"east": "none",
"north": "low",
@@ -166431,7 +170975,7 @@
}
},
{
- "id": 13897,
+ "id": 14366,
"properties": {
"east": "none",
"north": "low",
@@ -166442,7 +170986,7 @@
}
},
{
- "id": 13898,
+ "id": 14367,
"properties": {
"east": "none",
"north": "low",
@@ -166453,7 +170997,7 @@
}
},
{
- "id": 13899,
+ "id": 14368,
"properties": {
"east": "none",
"north": "low",
@@ -166464,7 +171008,7 @@
}
},
{
- "id": 13900,
+ "id": 14369,
"properties": {
"east": "none",
"north": "low",
@@ -166475,7 +171019,7 @@
}
},
{
- "id": 13901,
+ "id": 14370,
"properties": {
"east": "none",
"north": "low",
@@ -166486,7 +171030,7 @@
}
},
{
- "id": 13902,
+ "id": 14371,
"properties": {
"east": "none",
"north": "low",
@@ -166497,7 +171041,7 @@
}
},
{
- "id": 13903,
+ "id": 14372,
"properties": {
"east": "none",
"north": "low",
@@ -166508,7 +171052,7 @@
}
},
{
- "id": 13904,
+ "id": 14373,
"properties": {
"east": "none",
"north": "low",
@@ -166519,7 +171063,7 @@
}
},
{
- "id": 13905,
+ "id": 14374,
"properties": {
"east": "none",
"north": "low",
@@ -166530,7 +171074,7 @@
}
},
{
- "id": 13906,
+ "id": 14375,
"properties": {
"east": "none",
"north": "low",
@@ -166541,7 +171085,7 @@
}
},
{
- "id": 13907,
+ "id": 14376,
"properties": {
"east": "none",
"north": "low",
@@ -166552,7 +171096,7 @@
}
},
{
- "id": 13908,
+ "id": 14377,
"properties": {
"east": "none",
"north": "low",
@@ -166563,7 +171107,7 @@
}
},
{
- "id": 13909,
+ "id": 14378,
"properties": {
"east": "none",
"north": "low",
@@ -166574,7 +171118,7 @@
}
},
{
- "id": 13910,
+ "id": 14379,
"properties": {
"east": "none",
"north": "low",
@@ -166585,7 +171129,7 @@
}
},
{
- "id": 13911,
+ "id": 14380,
"properties": {
"east": "none",
"north": "low",
@@ -166596,7 +171140,7 @@
}
},
{
- "id": 13912,
+ "id": 14381,
"properties": {
"east": "none",
"north": "low",
@@ -166607,7 +171151,7 @@
}
},
{
- "id": 13913,
+ "id": 14382,
"properties": {
"east": "none",
"north": "low",
@@ -166618,7 +171162,7 @@
}
},
{
- "id": 13914,
+ "id": 14383,
"properties": {
"east": "none",
"north": "low",
@@ -166629,7 +171173,7 @@
}
},
{
- "id": 13915,
+ "id": 14384,
"properties": {
"east": "none",
"north": "low",
@@ -166640,7 +171184,7 @@
}
},
{
- "id": 13916,
+ "id": 14385,
"properties": {
"east": "none",
"north": "low",
@@ -166651,7 +171195,7 @@
}
},
{
- "id": 13917,
+ "id": 14386,
"properties": {
"east": "none",
"north": "low",
@@ -166662,7 +171206,7 @@
}
},
{
- "id": 13918,
+ "id": 14387,
"properties": {
"east": "none",
"north": "low",
@@ -166673,7 +171217,7 @@
}
},
{
- "id": 13919,
+ "id": 14388,
"properties": {
"east": "none",
"north": "low",
@@ -166684,7 +171228,7 @@
}
},
{
- "id": 13920,
+ "id": 14389,
"properties": {
"east": "none",
"north": "low",
@@ -166695,7 +171239,7 @@
}
},
{
- "id": 13921,
+ "id": 14390,
"properties": {
"east": "none",
"north": "low",
@@ -166706,7 +171250,7 @@
}
},
{
- "id": 13922,
+ "id": 14391,
"properties": {
"east": "none",
"north": "low",
@@ -166717,7 +171261,7 @@
}
},
{
- "id": 13923,
+ "id": 14392,
"properties": {
"east": "none",
"north": "low",
@@ -166728,7 +171272,7 @@
}
},
{
- "id": 13924,
+ "id": 14393,
"properties": {
"east": "none",
"north": "low",
@@ -166739,7 +171283,7 @@
}
},
{
- "id": 13925,
+ "id": 14394,
"properties": {
"east": "none",
"north": "low",
@@ -166750,7 +171294,7 @@
}
},
{
- "id": 13926,
+ "id": 14395,
"properties": {
"east": "none",
"north": "low",
@@ -166761,7 +171305,7 @@
}
},
{
- "id": 13927,
+ "id": 14396,
"properties": {
"east": "none",
"north": "low",
@@ -166772,7 +171316,7 @@
}
},
{
- "id": 13928,
+ "id": 14397,
"properties": {
"east": "none",
"north": "tall",
@@ -166783,7 +171327,7 @@
}
},
{
- "id": 13929,
+ "id": 14398,
"properties": {
"east": "none",
"north": "tall",
@@ -166794,7 +171338,7 @@
}
},
{
- "id": 13930,
+ "id": 14399,
"properties": {
"east": "none",
"north": "tall",
@@ -166805,7 +171349,7 @@
}
},
{
- "id": 13931,
+ "id": 14400,
"properties": {
"east": "none",
"north": "tall",
@@ -166816,7 +171360,7 @@
}
},
{
- "id": 13932,
+ "id": 14401,
"properties": {
"east": "none",
"north": "tall",
@@ -166827,7 +171371,7 @@
}
},
{
- "id": 13933,
+ "id": 14402,
"properties": {
"east": "none",
"north": "tall",
@@ -166838,7 +171382,7 @@
}
},
{
- "id": 13934,
+ "id": 14403,
"properties": {
"east": "none",
"north": "tall",
@@ -166849,7 +171393,7 @@
}
},
{
- "id": 13935,
+ "id": 14404,
"properties": {
"east": "none",
"north": "tall",
@@ -166860,7 +171404,7 @@
}
},
{
- "id": 13936,
+ "id": 14405,
"properties": {
"east": "none",
"north": "tall",
@@ -166871,7 +171415,7 @@
}
},
{
- "id": 13937,
+ "id": 14406,
"properties": {
"east": "none",
"north": "tall",
@@ -166882,7 +171426,7 @@
}
},
{
- "id": 13938,
+ "id": 14407,
"properties": {
"east": "none",
"north": "tall",
@@ -166893,7 +171437,7 @@
}
},
{
- "id": 13939,
+ "id": 14408,
"properties": {
"east": "none",
"north": "tall",
@@ -166904,7 +171448,7 @@
}
},
{
- "id": 13940,
+ "id": 14409,
"properties": {
"east": "none",
"north": "tall",
@@ -166915,7 +171459,7 @@
}
},
{
- "id": 13941,
+ "id": 14410,
"properties": {
"east": "none",
"north": "tall",
@@ -166926,7 +171470,7 @@
}
},
{
- "id": 13942,
+ "id": 14411,
"properties": {
"east": "none",
"north": "tall",
@@ -166937,7 +171481,7 @@
}
},
{
- "id": 13943,
+ "id": 14412,
"properties": {
"east": "none",
"north": "tall",
@@ -166948,7 +171492,7 @@
}
},
{
- "id": 13944,
+ "id": 14413,
"properties": {
"east": "none",
"north": "tall",
@@ -166959,7 +171503,7 @@
}
},
{
- "id": 13945,
+ "id": 14414,
"properties": {
"east": "none",
"north": "tall",
@@ -166970,7 +171514,7 @@
}
},
{
- "id": 13946,
+ "id": 14415,
"properties": {
"east": "none",
"north": "tall",
@@ -166981,7 +171525,7 @@
}
},
{
- "id": 13947,
+ "id": 14416,
"properties": {
"east": "none",
"north": "tall",
@@ -166992,7 +171536,7 @@
}
},
{
- "id": 13948,
+ "id": 14417,
"properties": {
"east": "none",
"north": "tall",
@@ -167003,7 +171547,7 @@
}
},
{
- "id": 13949,
+ "id": 14418,
"properties": {
"east": "none",
"north": "tall",
@@ -167014,7 +171558,7 @@
}
},
{
- "id": 13950,
+ "id": 14419,
"properties": {
"east": "none",
"north": "tall",
@@ -167025,7 +171569,7 @@
}
},
{
- "id": 13951,
+ "id": 14420,
"properties": {
"east": "none",
"north": "tall",
@@ -167036,7 +171580,7 @@
}
},
{
- "id": 13952,
+ "id": 14421,
"properties": {
"east": "none",
"north": "tall",
@@ -167047,7 +171591,7 @@
}
},
{
- "id": 13953,
+ "id": 14422,
"properties": {
"east": "none",
"north": "tall",
@@ -167058,7 +171602,7 @@
}
},
{
- "id": 13954,
+ "id": 14423,
"properties": {
"east": "none",
"north": "tall",
@@ -167069,7 +171613,7 @@
}
},
{
- "id": 13955,
+ "id": 14424,
"properties": {
"east": "none",
"north": "tall",
@@ -167080,7 +171624,7 @@
}
},
{
- "id": 13956,
+ "id": 14425,
"properties": {
"east": "none",
"north": "tall",
@@ -167091,7 +171635,7 @@
}
},
{
- "id": 13957,
+ "id": 14426,
"properties": {
"east": "none",
"north": "tall",
@@ -167102,7 +171646,7 @@
}
},
{
- "id": 13958,
+ "id": 14427,
"properties": {
"east": "none",
"north": "tall",
@@ -167113,7 +171657,7 @@
}
},
{
- "id": 13959,
+ "id": 14428,
"properties": {
"east": "none",
"north": "tall",
@@ -167124,7 +171668,7 @@
}
},
{
- "id": 13960,
+ "id": 14429,
"properties": {
"east": "none",
"north": "tall",
@@ -167135,7 +171679,7 @@
}
},
{
- "id": 13961,
+ "id": 14430,
"properties": {
"east": "none",
"north": "tall",
@@ -167146,7 +171690,7 @@
}
},
{
- "id": 13962,
+ "id": 14431,
"properties": {
"east": "none",
"north": "tall",
@@ -167157,7 +171701,7 @@
}
},
{
- "id": 13963,
+ "id": 14432,
"properties": {
"east": "none",
"north": "tall",
@@ -167168,7 +171712,7 @@
}
},
{
- "id": 13964,
+ "id": 14433,
"properties": {
"east": "low",
"north": "none",
@@ -167179,7 +171723,7 @@
}
},
{
- "id": 13965,
+ "id": 14434,
"properties": {
"east": "low",
"north": "none",
@@ -167190,7 +171734,7 @@
}
},
{
- "id": 13966,
+ "id": 14435,
"properties": {
"east": "low",
"north": "none",
@@ -167201,7 +171745,7 @@
}
},
{
- "id": 13967,
+ "id": 14436,
"properties": {
"east": "low",
"north": "none",
@@ -167212,7 +171756,7 @@
}
},
{
- "id": 13968,
+ "id": 14437,
"properties": {
"east": "low",
"north": "none",
@@ -167223,7 +171767,7 @@
}
},
{
- "id": 13969,
+ "id": 14438,
"properties": {
"east": "low",
"north": "none",
@@ -167234,7 +171778,7 @@
}
},
{
- "id": 13970,
+ "id": 14439,
"properties": {
"east": "low",
"north": "none",
@@ -167245,7 +171789,7 @@
}
},
{
- "id": 13971,
+ "id": 14440,
"properties": {
"east": "low",
"north": "none",
@@ -167256,7 +171800,7 @@
}
},
{
- "id": 13972,
+ "id": 14441,
"properties": {
"east": "low",
"north": "none",
@@ -167267,7 +171811,7 @@
}
},
{
- "id": 13973,
+ "id": 14442,
"properties": {
"east": "low",
"north": "none",
@@ -167278,7 +171822,7 @@
}
},
{
- "id": 13974,
+ "id": 14443,
"properties": {
"east": "low",
"north": "none",
@@ -167289,7 +171833,7 @@
}
},
{
- "id": 13975,
+ "id": 14444,
"properties": {
"east": "low",
"north": "none",
@@ -167300,7 +171844,7 @@
}
},
{
- "id": 13976,
+ "id": 14445,
"properties": {
"east": "low",
"north": "none",
@@ -167311,7 +171855,7 @@
}
},
{
- "id": 13977,
+ "id": 14446,
"properties": {
"east": "low",
"north": "none",
@@ -167322,7 +171866,7 @@
}
},
{
- "id": 13978,
+ "id": 14447,
"properties": {
"east": "low",
"north": "none",
@@ -167333,7 +171877,7 @@
}
},
{
- "id": 13979,
+ "id": 14448,
"properties": {
"east": "low",
"north": "none",
@@ -167344,7 +171888,7 @@
}
},
{
- "id": 13980,
+ "id": 14449,
"properties": {
"east": "low",
"north": "none",
@@ -167355,7 +171899,7 @@
}
},
{
- "id": 13981,
+ "id": 14450,
"properties": {
"east": "low",
"north": "none",
@@ -167366,7 +171910,7 @@
}
},
{
- "id": 13982,
+ "id": 14451,
"properties": {
"east": "low",
"north": "none",
@@ -167377,7 +171921,7 @@
}
},
{
- "id": 13983,
+ "id": 14452,
"properties": {
"east": "low",
"north": "none",
@@ -167388,7 +171932,7 @@
}
},
{
- "id": 13984,
+ "id": 14453,
"properties": {
"east": "low",
"north": "none",
@@ -167399,7 +171943,7 @@
}
},
{
- "id": 13985,
+ "id": 14454,
"properties": {
"east": "low",
"north": "none",
@@ -167410,7 +171954,7 @@
}
},
{
- "id": 13986,
+ "id": 14455,
"properties": {
"east": "low",
"north": "none",
@@ -167421,7 +171965,7 @@
}
},
{
- "id": 13987,
+ "id": 14456,
"properties": {
"east": "low",
"north": "none",
@@ -167432,7 +171976,7 @@
}
},
{
- "id": 13988,
+ "id": 14457,
"properties": {
"east": "low",
"north": "none",
@@ -167443,7 +171987,7 @@
}
},
{
- "id": 13989,
+ "id": 14458,
"properties": {
"east": "low",
"north": "none",
@@ -167454,7 +171998,7 @@
}
},
{
- "id": 13990,
+ "id": 14459,
"properties": {
"east": "low",
"north": "none",
@@ -167465,7 +172009,7 @@
}
},
{
- "id": 13991,
+ "id": 14460,
"properties": {
"east": "low",
"north": "none",
@@ -167476,7 +172020,7 @@
}
},
{
- "id": 13992,
+ "id": 14461,
"properties": {
"east": "low",
"north": "none",
@@ -167487,7 +172031,7 @@
}
},
{
- "id": 13993,
+ "id": 14462,
"properties": {
"east": "low",
"north": "none",
@@ -167498,7 +172042,7 @@
}
},
{
- "id": 13994,
+ "id": 14463,
"properties": {
"east": "low",
"north": "none",
@@ -167509,7 +172053,7 @@
}
},
{
- "id": 13995,
+ "id": 14464,
"properties": {
"east": "low",
"north": "none",
@@ -167520,7 +172064,7 @@
}
},
{
- "id": 13996,
+ "id": 14465,
"properties": {
"east": "low",
"north": "none",
@@ -167531,7 +172075,7 @@
}
},
{
- "id": 13997,
+ "id": 14466,
"properties": {
"east": "low",
"north": "none",
@@ -167542,7 +172086,7 @@
}
},
{
- "id": 13998,
+ "id": 14467,
"properties": {
"east": "low",
"north": "none",
@@ -167553,7 +172097,7 @@
}
},
{
- "id": 13999,
+ "id": 14468,
"properties": {
"east": "low",
"north": "none",
@@ -167564,7 +172108,7 @@
}
},
{
- "id": 14000,
+ "id": 14469,
"properties": {
"east": "low",
"north": "low",
@@ -167575,7 +172119,7 @@
}
},
{
- "id": 14001,
+ "id": 14470,
"properties": {
"east": "low",
"north": "low",
@@ -167586,7 +172130,7 @@
}
},
{
- "id": 14002,
+ "id": 14471,
"properties": {
"east": "low",
"north": "low",
@@ -167597,7 +172141,7 @@
}
},
{
- "id": 14003,
+ "id": 14472,
"properties": {
"east": "low",
"north": "low",
@@ -167608,7 +172152,7 @@
}
},
{
- "id": 14004,
+ "id": 14473,
"properties": {
"east": "low",
"north": "low",
@@ -167619,7 +172163,7 @@
}
},
{
- "id": 14005,
+ "id": 14474,
"properties": {
"east": "low",
"north": "low",
@@ -167630,7 +172174,7 @@
}
},
{
- "id": 14006,
+ "id": 14475,
"properties": {
"east": "low",
"north": "low",
@@ -167641,7 +172185,7 @@
}
},
{
- "id": 14007,
+ "id": 14476,
"properties": {
"east": "low",
"north": "low",
@@ -167652,7 +172196,7 @@
}
},
{
- "id": 14008,
+ "id": 14477,
"properties": {
"east": "low",
"north": "low",
@@ -167663,7 +172207,7 @@
}
},
{
- "id": 14009,
+ "id": 14478,
"properties": {
"east": "low",
"north": "low",
@@ -167674,7 +172218,7 @@
}
},
{
- "id": 14010,
+ "id": 14479,
"properties": {
"east": "low",
"north": "low",
@@ -167685,7 +172229,7 @@
}
},
{
- "id": 14011,
+ "id": 14480,
"properties": {
"east": "low",
"north": "low",
@@ -167696,7 +172240,7 @@
}
},
{
- "id": 14012,
+ "id": 14481,
"properties": {
"east": "low",
"north": "low",
@@ -167707,7 +172251,7 @@
}
},
{
- "id": 14013,
+ "id": 14482,
"properties": {
"east": "low",
"north": "low",
@@ -167718,7 +172262,7 @@
}
},
{
- "id": 14014,
+ "id": 14483,
"properties": {
"east": "low",
"north": "low",
@@ -167729,7 +172273,7 @@
}
},
{
- "id": 14015,
+ "id": 14484,
"properties": {
"east": "low",
"north": "low",
@@ -167740,7 +172284,7 @@
}
},
{
- "id": 14016,
+ "id": 14485,
"properties": {
"east": "low",
"north": "low",
@@ -167751,7 +172295,7 @@
}
},
{
- "id": 14017,
+ "id": 14486,
"properties": {
"east": "low",
"north": "low",
@@ -167762,7 +172306,7 @@
}
},
{
- "id": 14018,
+ "id": 14487,
"properties": {
"east": "low",
"north": "low",
@@ -167773,7 +172317,7 @@
}
},
{
- "id": 14019,
+ "id": 14488,
"properties": {
"east": "low",
"north": "low",
@@ -167784,7 +172328,7 @@
}
},
{
- "id": 14020,
+ "id": 14489,
"properties": {
"east": "low",
"north": "low",
@@ -167795,7 +172339,7 @@
}
},
{
- "id": 14021,
+ "id": 14490,
"properties": {
"east": "low",
"north": "low",
@@ -167806,7 +172350,7 @@
}
},
{
- "id": 14022,
+ "id": 14491,
"properties": {
"east": "low",
"north": "low",
@@ -167817,7 +172361,7 @@
}
},
{
- "id": 14023,
+ "id": 14492,
"properties": {
"east": "low",
"north": "low",
@@ -167828,7 +172372,7 @@
}
},
{
- "id": 14024,
+ "id": 14493,
"properties": {
"east": "low",
"north": "low",
@@ -167839,7 +172383,7 @@
}
},
{
- "id": 14025,
+ "id": 14494,
"properties": {
"east": "low",
"north": "low",
@@ -167850,7 +172394,7 @@
}
},
{
- "id": 14026,
+ "id": 14495,
"properties": {
"east": "low",
"north": "low",
@@ -167861,7 +172405,7 @@
}
},
{
- "id": 14027,
+ "id": 14496,
"properties": {
"east": "low",
"north": "low",
@@ -167872,7 +172416,7 @@
}
},
{
- "id": 14028,
+ "id": 14497,
"properties": {
"east": "low",
"north": "low",
@@ -167883,7 +172427,7 @@
}
},
{
- "id": 14029,
+ "id": 14498,
"properties": {
"east": "low",
"north": "low",
@@ -167894,7 +172438,7 @@
}
},
{
- "id": 14030,
+ "id": 14499,
"properties": {
"east": "low",
"north": "low",
@@ -167905,7 +172449,7 @@
}
},
{
- "id": 14031,
+ "id": 14500,
"properties": {
"east": "low",
"north": "low",
@@ -167916,7 +172460,7 @@
}
},
{
- "id": 14032,
+ "id": 14501,
"properties": {
"east": "low",
"north": "low",
@@ -167927,7 +172471,7 @@
}
},
{
- "id": 14033,
+ "id": 14502,
"properties": {
"east": "low",
"north": "low",
@@ -167938,7 +172482,7 @@
}
},
{
- "id": 14034,
+ "id": 14503,
"properties": {
"east": "low",
"north": "low",
@@ -167949,7 +172493,7 @@
}
},
{
- "id": 14035,
+ "id": 14504,
"properties": {
"east": "low",
"north": "low",
@@ -167960,7 +172504,7 @@
}
},
{
- "id": 14036,
+ "id": 14505,
"properties": {
"east": "low",
"north": "tall",
@@ -167971,7 +172515,7 @@
}
},
{
- "id": 14037,
+ "id": 14506,
"properties": {
"east": "low",
"north": "tall",
@@ -167982,7 +172526,7 @@
}
},
{
- "id": 14038,
+ "id": 14507,
"properties": {
"east": "low",
"north": "tall",
@@ -167993,7 +172537,7 @@
}
},
{
- "id": 14039,
+ "id": 14508,
"properties": {
"east": "low",
"north": "tall",
@@ -168004,7 +172548,7 @@
}
},
{
- "id": 14040,
+ "id": 14509,
"properties": {
"east": "low",
"north": "tall",
@@ -168015,7 +172559,7 @@
}
},
{
- "id": 14041,
+ "id": 14510,
"properties": {
"east": "low",
"north": "tall",
@@ -168026,7 +172570,7 @@
}
},
{
- "id": 14042,
+ "id": 14511,
"properties": {
"east": "low",
"north": "tall",
@@ -168037,7 +172581,7 @@
}
},
{
- "id": 14043,
+ "id": 14512,
"properties": {
"east": "low",
"north": "tall",
@@ -168048,7 +172592,7 @@
}
},
{
- "id": 14044,
+ "id": 14513,
"properties": {
"east": "low",
"north": "tall",
@@ -168059,7 +172603,7 @@
}
},
{
- "id": 14045,
+ "id": 14514,
"properties": {
"east": "low",
"north": "tall",
@@ -168070,7 +172614,7 @@
}
},
{
- "id": 14046,
+ "id": 14515,
"properties": {
"east": "low",
"north": "tall",
@@ -168081,7 +172625,7 @@
}
},
{
- "id": 14047,
+ "id": 14516,
"properties": {
"east": "low",
"north": "tall",
@@ -168092,7 +172636,7 @@
}
},
{
- "id": 14048,
+ "id": 14517,
"properties": {
"east": "low",
"north": "tall",
@@ -168103,7 +172647,7 @@
}
},
{
- "id": 14049,
+ "id": 14518,
"properties": {
"east": "low",
"north": "tall",
@@ -168114,7 +172658,7 @@
}
},
{
- "id": 14050,
+ "id": 14519,
"properties": {
"east": "low",
"north": "tall",
@@ -168125,7 +172669,7 @@
}
},
{
- "id": 14051,
+ "id": 14520,
"properties": {
"east": "low",
"north": "tall",
@@ -168136,7 +172680,7 @@
}
},
{
- "id": 14052,
+ "id": 14521,
"properties": {
"east": "low",
"north": "tall",
@@ -168147,7 +172691,7 @@
}
},
{
- "id": 14053,
+ "id": 14522,
"properties": {
"east": "low",
"north": "tall",
@@ -168158,7 +172702,7 @@
}
},
{
- "id": 14054,
+ "id": 14523,
"properties": {
"east": "low",
"north": "tall",
@@ -168169,7 +172713,7 @@
}
},
{
- "id": 14055,
+ "id": 14524,
"properties": {
"east": "low",
"north": "tall",
@@ -168180,7 +172724,7 @@
}
},
{
- "id": 14056,
+ "id": 14525,
"properties": {
"east": "low",
"north": "tall",
@@ -168191,7 +172735,7 @@
}
},
{
- "id": 14057,
+ "id": 14526,
"properties": {
"east": "low",
"north": "tall",
@@ -168202,7 +172746,7 @@
}
},
{
- "id": 14058,
+ "id": 14527,
"properties": {
"east": "low",
"north": "tall",
@@ -168213,7 +172757,7 @@
}
},
{
- "id": 14059,
+ "id": 14528,
"properties": {
"east": "low",
"north": "tall",
@@ -168224,7 +172768,7 @@
}
},
{
- "id": 14060,
+ "id": 14529,
"properties": {
"east": "low",
"north": "tall",
@@ -168235,7 +172779,7 @@
}
},
{
- "id": 14061,
+ "id": 14530,
"properties": {
"east": "low",
"north": "tall",
@@ -168246,7 +172790,7 @@
}
},
{
- "id": 14062,
+ "id": 14531,
"properties": {
"east": "low",
"north": "tall",
@@ -168257,7 +172801,7 @@
}
},
{
- "id": 14063,
+ "id": 14532,
"properties": {
"east": "low",
"north": "tall",
@@ -168268,7 +172812,7 @@
}
},
{
- "id": 14064,
+ "id": 14533,
"properties": {
"east": "low",
"north": "tall",
@@ -168279,7 +172823,7 @@
}
},
{
- "id": 14065,
+ "id": 14534,
"properties": {
"east": "low",
"north": "tall",
@@ -168290,7 +172834,7 @@
}
},
{
- "id": 14066,
+ "id": 14535,
"properties": {
"east": "low",
"north": "tall",
@@ -168301,7 +172845,7 @@
}
},
{
- "id": 14067,
+ "id": 14536,
"properties": {
"east": "low",
"north": "tall",
@@ -168312,7 +172856,7 @@
}
},
{
- "id": 14068,
+ "id": 14537,
"properties": {
"east": "low",
"north": "tall",
@@ -168323,7 +172867,7 @@
}
},
{
- "id": 14069,
+ "id": 14538,
"properties": {
"east": "low",
"north": "tall",
@@ -168334,7 +172878,7 @@
}
},
{
- "id": 14070,
+ "id": 14539,
"properties": {
"east": "low",
"north": "tall",
@@ -168345,7 +172889,7 @@
}
},
{
- "id": 14071,
+ "id": 14540,
"properties": {
"east": "low",
"north": "tall",
@@ -168356,7 +172900,7 @@
}
},
{
- "id": 14072,
+ "id": 14541,
"properties": {
"east": "tall",
"north": "none",
@@ -168367,7 +172911,7 @@
}
},
{
- "id": 14073,
+ "id": 14542,
"properties": {
"east": "tall",
"north": "none",
@@ -168378,7 +172922,7 @@
}
},
{
- "id": 14074,
+ "id": 14543,
"properties": {
"east": "tall",
"north": "none",
@@ -168389,7 +172933,7 @@
}
},
{
- "id": 14075,
+ "id": 14544,
"properties": {
"east": "tall",
"north": "none",
@@ -168400,7 +172944,7 @@
}
},
{
- "id": 14076,
+ "id": 14545,
"properties": {
"east": "tall",
"north": "none",
@@ -168411,7 +172955,7 @@
}
},
{
- "id": 14077,
+ "id": 14546,
"properties": {
"east": "tall",
"north": "none",
@@ -168422,7 +172966,7 @@
}
},
{
- "id": 14078,
+ "id": 14547,
"properties": {
"east": "tall",
"north": "none",
@@ -168433,7 +172977,7 @@
}
},
{
- "id": 14079,
+ "id": 14548,
"properties": {
"east": "tall",
"north": "none",
@@ -168444,7 +172988,7 @@
}
},
{
- "id": 14080,
+ "id": 14549,
"properties": {
"east": "tall",
"north": "none",
@@ -168455,7 +172999,7 @@
}
},
{
- "id": 14081,
+ "id": 14550,
"properties": {
"east": "tall",
"north": "none",
@@ -168466,7 +173010,7 @@
}
},
{
- "id": 14082,
+ "id": 14551,
"properties": {
"east": "tall",
"north": "none",
@@ -168477,7 +173021,7 @@
}
},
{
- "id": 14083,
+ "id": 14552,
"properties": {
"east": "tall",
"north": "none",
@@ -168488,7 +173032,7 @@
}
},
{
- "id": 14084,
+ "id": 14553,
"properties": {
"east": "tall",
"north": "none",
@@ -168499,7 +173043,7 @@
}
},
{
- "id": 14085,
+ "id": 14554,
"properties": {
"east": "tall",
"north": "none",
@@ -168510,7 +173054,7 @@
}
},
{
- "id": 14086,
+ "id": 14555,
"properties": {
"east": "tall",
"north": "none",
@@ -168521,7 +173065,7 @@
}
},
{
- "id": 14087,
+ "id": 14556,
"properties": {
"east": "tall",
"north": "none",
@@ -168532,7 +173076,7 @@
}
},
{
- "id": 14088,
+ "id": 14557,
"properties": {
"east": "tall",
"north": "none",
@@ -168543,7 +173087,7 @@
}
},
{
- "id": 14089,
+ "id": 14558,
"properties": {
"east": "tall",
"north": "none",
@@ -168554,7 +173098,7 @@
}
},
{
- "id": 14090,
+ "id": 14559,
"properties": {
"east": "tall",
"north": "none",
@@ -168565,7 +173109,7 @@
}
},
{
- "id": 14091,
+ "id": 14560,
"properties": {
"east": "tall",
"north": "none",
@@ -168576,7 +173120,7 @@
}
},
{
- "id": 14092,
+ "id": 14561,
"properties": {
"east": "tall",
"north": "none",
@@ -168587,7 +173131,7 @@
}
},
{
- "id": 14093,
+ "id": 14562,
"properties": {
"east": "tall",
"north": "none",
@@ -168598,7 +173142,7 @@
}
},
{
- "id": 14094,
+ "id": 14563,
"properties": {
"east": "tall",
"north": "none",
@@ -168609,7 +173153,7 @@
}
},
{
- "id": 14095,
+ "id": 14564,
"properties": {
"east": "tall",
"north": "none",
@@ -168620,7 +173164,7 @@
}
},
{
- "id": 14096,
+ "id": 14565,
"properties": {
"east": "tall",
"north": "none",
@@ -168631,7 +173175,7 @@
}
},
{
- "id": 14097,
+ "id": 14566,
"properties": {
"east": "tall",
"north": "none",
@@ -168642,7 +173186,7 @@
}
},
{
- "id": 14098,
+ "id": 14567,
"properties": {
"east": "tall",
"north": "none",
@@ -168653,7 +173197,7 @@
}
},
{
- "id": 14099,
+ "id": 14568,
"properties": {
"east": "tall",
"north": "none",
@@ -168664,7 +173208,7 @@
}
},
{
- "id": 14100,
+ "id": 14569,
"properties": {
"east": "tall",
"north": "none",
@@ -168675,7 +173219,7 @@
}
},
{
- "id": 14101,
+ "id": 14570,
"properties": {
"east": "tall",
"north": "none",
@@ -168686,7 +173230,7 @@
}
},
{
- "id": 14102,
+ "id": 14571,
"properties": {
"east": "tall",
"north": "none",
@@ -168697,7 +173241,7 @@
}
},
{
- "id": 14103,
+ "id": 14572,
"properties": {
"east": "tall",
"north": "none",
@@ -168708,7 +173252,7 @@
}
},
{
- "id": 14104,
+ "id": 14573,
"properties": {
"east": "tall",
"north": "none",
@@ -168719,7 +173263,7 @@
}
},
{
- "id": 14105,
+ "id": 14574,
"properties": {
"east": "tall",
"north": "none",
@@ -168730,7 +173274,7 @@
}
},
{
- "id": 14106,
+ "id": 14575,
"properties": {
"east": "tall",
"north": "none",
@@ -168741,7 +173285,7 @@
}
},
{
- "id": 14107,
+ "id": 14576,
"properties": {
"east": "tall",
"north": "none",
@@ -168752,7 +173296,7 @@
}
},
{
- "id": 14108,
+ "id": 14577,
"properties": {
"east": "tall",
"north": "low",
@@ -168763,7 +173307,7 @@
}
},
{
- "id": 14109,
+ "id": 14578,
"properties": {
"east": "tall",
"north": "low",
@@ -168774,7 +173318,7 @@
}
},
{
- "id": 14110,
+ "id": 14579,
"properties": {
"east": "tall",
"north": "low",
@@ -168785,7 +173329,7 @@
}
},
{
- "id": 14111,
+ "id": 14580,
"properties": {
"east": "tall",
"north": "low",
@@ -168796,7 +173340,7 @@
}
},
{
- "id": 14112,
+ "id": 14581,
"properties": {
"east": "tall",
"north": "low",
@@ -168807,7 +173351,7 @@
}
},
{
- "id": 14113,
+ "id": 14582,
"properties": {
"east": "tall",
"north": "low",
@@ -168818,7 +173362,7 @@
}
},
{
- "id": 14114,
+ "id": 14583,
"properties": {
"east": "tall",
"north": "low",
@@ -168829,7 +173373,7 @@
}
},
{
- "id": 14115,
+ "id": 14584,
"properties": {
"east": "tall",
"north": "low",
@@ -168840,7 +173384,7 @@
}
},
{
- "id": 14116,
+ "id": 14585,
"properties": {
"east": "tall",
"north": "low",
@@ -168851,7 +173395,7 @@
}
},
{
- "id": 14117,
+ "id": 14586,
"properties": {
"east": "tall",
"north": "low",
@@ -168862,7 +173406,7 @@
}
},
{
- "id": 14118,
+ "id": 14587,
"properties": {
"east": "tall",
"north": "low",
@@ -168873,7 +173417,7 @@
}
},
{
- "id": 14119,
+ "id": 14588,
"properties": {
"east": "tall",
"north": "low",
@@ -168884,7 +173428,7 @@
}
},
{
- "id": 14120,
+ "id": 14589,
"properties": {
"east": "tall",
"north": "low",
@@ -168895,7 +173439,7 @@
}
},
{
- "id": 14121,
+ "id": 14590,
"properties": {
"east": "tall",
"north": "low",
@@ -168906,7 +173450,7 @@
}
},
{
- "id": 14122,
+ "id": 14591,
"properties": {
"east": "tall",
"north": "low",
@@ -168917,7 +173461,7 @@
}
},
{
- "id": 14123,
+ "id": 14592,
"properties": {
"east": "tall",
"north": "low",
@@ -168928,7 +173472,7 @@
}
},
{
- "id": 14124,
+ "id": 14593,
"properties": {
"east": "tall",
"north": "low",
@@ -168939,7 +173483,7 @@
}
},
{
- "id": 14125,
+ "id": 14594,
"properties": {
"east": "tall",
"north": "low",
@@ -168950,7 +173494,7 @@
}
},
{
- "id": 14126,
+ "id": 14595,
"properties": {
"east": "tall",
"north": "low",
@@ -168961,7 +173505,7 @@
}
},
{
- "id": 14127,
+ "id": 14596,
"properties": {
"east": "tall",
"north": "low",
@@ -168972,7 +173516,7 @@
}
},
{
- "id": 14128,
+ "id": 14597,
"properties": {
"east": "tall",
"north": "low",
@@ -168983,7 +173527,7 @@
}
},
{
- "id": 14129,
+ "id": 14598,
"properties": {
"east": "tall",
"north": "low",
@@ -168994,7 +173538,7 @@
}
},
{
- "id": 14130,
+ "id": 14599,
"properties": {
"east": "tall",
"north": "low",
@@ -169005,7 +173549,7 @@
}
},
{
- "id": 14131,
+ "id": 14600,
"properties": {
"east": "tall",
"north": "low",
@@ -169016,7 +173560,7 @@
}
},
{
- "id": 14132,
+ "id": 14601,
"properties": {
"east": "tall",
"north": "low",
@@ -169027,7 +173571,7 @@
}
},
{
- "id": 14133,
+ "id": 14602,
"properties": {
"east": "tall",
"north": "low",
@@ -169038,7 +173582,7 @@
}
},
{
- "id": 14134,
+ "id": 14603,
"properties": {
"east": "tall",
"north": "low",
@@ -169049,7 +173593,7 @@
}
},
{
- "id": 14135,
+ "id": 14604,
"properties": {
"east": "tall",
"north": "low",
@@ -169060,7 +173604,7 @@
}
},
{
- "id": 14136,
+ "id": 14605,
"properties": {
"east": "tall",
"north": "low",
@@ -169071,7 +173615,7 @@
}
},
{
- "id": 14137,
+ "id": 14606,
"properties": {
"east": "tall",
"north": "low",
@@ -169082,7 +173626,7 @@
}
},
{
- "id": 14138,
+ "id": 14607,
"properties": {
"east": "tall",
"north": "low",
@@ -169093,7 +173637,7 @@
}
},
{
- "id": 14139,
+ "id": 14608,
"properties": {
"east": "tall",
"north": "low",
@@ -169104,7 +173648,7 @@
}
},
{
- "id": 14140,
+ "id": 14609,
"properties": {
"east": "tall",
"north": "low",
@@ -169115,7 +173659,7 @@
}
},
{
- "id": 14141,
+ "id": 14610,
"properties": {
"east": "tall",
"north": "low",
@@ -169126,7 +173670,7 @@
}
},
{
- "id": 14142,
+ "id": 14611,
"properties": {
"east": "tall",
"north": "low",
@@ -169137,7 +173681,7 @@
}
},
{
- "id": 14143,
+ "id": 14612,
"properties": {
"east": "tall",
"north": "low",
@@ -169148,7 +173692,7 @@
}
},
{
- "id": 14144,
+ "id": 14613,
"properties": {
"east": "tall",
"north": "tall",
@@ -169159,7 +173703,7 @@
}
},
{
- "id": 14145,
+ "id": 14614,
"properties": {
"east": "tall",
"north": "tall",
@@ -169170,7 +173714,7 @@
}
},
{
- "id": 14146,
+ "id": 14615,
"properties": {
"east": "tall",
"north": "tall",
@@ -169181,7 +173725,7 @@
}
},
{
- "id": 14147,
+ "id": 14616,
"properties": {
"east": "tall",
"north": "tall",
@@ -169192,7 +173736,7 @@
}
},
{
- "id": 14148,
+ "id": 14617,
"properties": {
"east": "tall",
"north": "tall",
@@ -169203,7 +173747,7 @@
}
},
{
- "id": 14149,
+ "id": 14618,
"properties": {
"east": "tall",
"north": "tall",
@@ -169214,7 +173758,7 @@
}
},
{
- "id": 14150,
+ "id": 14619,
"properties": {
"east": "tall",
"north": "tall",
@@ -169225,7 +173769,7 @@
}
},
{
- "id": 14151,
+ "id": 14620,
"properties": {
"east": "tall",
"north": "tall",
@@ -169236,7 +173780,7 @@
}
},
{
- "id": 14152,
+ "id": 14621,
"properties": {
"east": "tall",
"north": "tall",
@@ -169247,7 +173791,7 @@
}
},
{
- "id": 14153,
+ "id": 14622,
"properties": {
"east": "tall",
"north": "tall",
@@ -169258,7 +173802,7 @@
}
},
{
- "id": 14154,
+ "id": 14623,
"properties": {
"east": "tall",
"north": "tall",
@@ -169269,7 +173813,7 @@
}
},
{
- "id": 14155,
+ "id": 14624,
"properties": {
"east": "tall",
"north": "tall",
@@ -169280,7 +173824,7 @@
}
},
{
- "id": 14156,
+ "id": 14625,
"properties": {
"east": "tall",
"north": "tall",
@@ -169291,7 +173835,7 @@
}
},
{
- "id": 14157,
+ "id": 14626,
"properties": {
"east": "tall",
"north": "tall",
@@ -169302,7 +173846,7 @@
}
},
{
- "id": 14158,
+ "id": 14627,
"properties": {
"east": "tall",
"north": "tall",
@@ -169313,7 +173857,7 @@
}
},
{
- "id": 14159,
+ "id": 14628,
"properties": {
"east": "tall",
"north": "tall",
@@ -169324,7 +173868,7 @@
}
},
{
- "id": 14160,
+ "id": 14629,
"properties": {
"east": "tall",
"north": "tall",
@@ -169335,7 +173879,7 @@
}
},
{
- "id": 14161,
+ "id": 14630,
"properties": {
"east": "tall",
"north": "tall",
@@ -169346,7 +173890,7 @@
}
},
{
- "id": 14162,
+ "id": 14631,
"properties": {
"east": "tall",
"north": "tall",
@@ -169357,7 +173901,7 @@
}
},
{
- "id": 14163,
+ "id": 14632,
"properties": {
"east": "tall",
"north": "tall",
@@ -169368,7 +173912,7 @@
}
},
{
- "id": 14164,
+ "id": 14633,
"properties": {
"east": "tall",
"north": "tall",
@@ -169379,7 +173923,7 @@
}
},
{
- "id": 14165,
+ "id": 14634,
"properties": {
"east": "tall",
"north": "tall",
@@ -169390,7 +173934,7 @@
}
},
{
- "id": 14166,
+ "id": 14635,
"properties": {
"east": "tall",
"north": "tall",
@@ -169401,7 +173945,7 @@
}
},
{
- "id": 14167,
+ "id": 14636,
"properties": {
"east": "tall",
"north": "tall",
@@ -169412,7 +173956,7 @@
}
},
{
- "id": 14168,
+ "id": 14637,
"properties": {
"east": "tall",
"north": "tall",
@@ -169423,7 +173967,7 @@
}
},
{
- "id": 14169,
+ "id": 14638,
"properties": {
"east": "tall",
"north": "tall",
@@ -169434,7 +173978,7 @@
}
},
{
- "id": 14170,
+ "id": 14639,
"properties": {
"east": "tall",
"north": "tall",
@@ -169445,7 +173989,7 @@
}
},
{
- "id": 14171,
+ "id": 14640,
"properties": {
"east": "tall",
"north": "tall",
@@ -169456,7 +174000,7 @@
}
},
{
- "id": 14172,
+ "id": 14641,
"properties": {
"east": "tall",
"north": "tall",
@@ -169467,7 +174011,7 @@
}
},
{
- "id": 14173,
+ "id": 14642,
"properties": {
"east": "tall",
"north": "tall",
@@ -169478,7 +174022,7 @@
}
},
{
- "id": 14174,
+ "id": 14643,
"properties": {
"east": "tall",
"north": "tall",
@@ -169489,7 +174033,7 @@
}
},
{
- "id": 14175,
+ "id": 14644,
"properties": {
"east": "tall",
"north": "tall",
@@ -169500,7 +174044,7 @@
}
},
{
- "id": 14176,
+ "id": 14645,
"properties": {
"east": "tall",
"north": "tall",
@@ -169511,7 +174055,7 @@
}
},
{
- "id": 14177,
+ "id": 14646,
"properties": {
"east": "tall",
"north": "tall",
@@ -169522,7 +174066,7 @@
}
},
{
- "id": 14178,
+ "id": 14647,
"properties": {
"east": "tall",
"north": "tall",
@@ -169533,7 +174077,7 @@
}
},
{
- "id": 14179,
+ "id": 14648,
"properties": {
"east": "tall",
"north": "tall",
@@ -169549,7 +174093,7 @@
"states": [
{
"default": true,
- "id": 5683
+ "id": 5845
}
]
},
@@ -169569,49 +174113,49 @@
"states": [
{
"default": true,
- "id": 6591,
+ "id": 6817,
"properties": {
"age": "0"
}
},
{
- "id": 6592,
+ "id": 6818,
"properties": {
"age": "1"
}
},
{
- "id": 6593,
+ "id": 6819,
"properties": {
"age": "2"
}
},
{
- "id": 6594,
+ "id": 6820,
"properties": {
"age": "3"
}
},
{
- "id": 6595,
+ "id": 6821,
"properties": {
"age": "4"
}
},
{
- "id": 6596,
+ "id": 6822,
"properties": {
"age": "5"
}
},
{
- "id": 6597,
+ "id": 6823,
"properties": {
"age": "6"
}
},
{
- "id": 6598,
+ "id": 6824,
"properties": {
"age": "7"
}
@@ -169642,97 +174186,97 @@
"states": [
{
"default": true,
- "id": 10442,
+ "id": 10774,
"properties": {
"rotation": "0"
}
},
{
- "id": 10443,
+ "id": 10775,
"properties": {
"rotation": "1"
}
},
{
- "id": 10444,
+ "id": 10776,
"properties": {
"rotation": "2"
}
},
{
- "id": 10445,
+ "id": 10777,
"properties": {
"rotation": "3"
}
},
{
- "id": 10446,
+ "id": 10778,
"properties": {
"rotation": "4"
}
},
{
- "id": 10447,
+ "id": 10779,
"properties": {
"rotation": "5"
}
},
{
- "id": 10448,
+ "id": 10780,
"properties": {
"rotation": "6"
}
},
{
- "id": 10449,
+ "id": 10781,
"properties": {
"rotation": "7"
}
},
{
- "id": 10450,
+ "id": 10782,
"properties": {
"rotation": "8"
}
},
{
- "id": 10451,
+ "id": 10783,
"properties": {
"rotation": "9"
}
},
{
- "id": 10452,
+ "id": 10784,
"properties": {
"rotation": "10"
}
},
{
- "id": 10453,
+ "id": 10785,
"properties": {
"rotation": "11"
}
},
{
- "id": 10454,
+ "id": 10786,
"properties": {
"rotation": "12"
}
},
{
- "id": 10455,
+ "id": 10787,
"properties": {
"rotation": "13"
}
},
{
- "id": 10456,
+ "id": 10788,
"properties": {
"rotation": "14"
}
},
{
- "id": 10457,
+ "id": 10789,
"properties": {
"rotation": "15"
}
@@ -169758,7 +174302,7 @@
},
"states": [
{
- "id": 1797,
+ "id": 1844,
"properties": {
"facing": "north",
"occupied": "true",
@@ -169766,7 +174310,7 @@
}
},
{
- "id": 1798,
+ "id": 1845,
"properties": {
"facing": "north",
"occupied": "true",
@@ -169774,7 +174318,7 @@
}
},
{
- "id": 1799,
+ "id": 1846,
"properties": {
"facing": "north",
"occupied": "false",
@@ -169783,7 +174327,7 @@
},
{
"default": true,
- "id": 1800,
+ "id": 1847,
"properties": {
"facing": "north",
"occupied": "false",
@@ -169791,7 +174335,7 @@
}
},
{
- "id": 1801,
+ "id": 1848,
"properties": {
"facing": "south",
"occupied": "true",
@@ -169799,7 +174343,7 @@
}
},
{
- "id": 1802,
+ "id": 1849,
"properties": {
"facing": "south",
"occupied": "true",
@@ -169807,7 +174351,7 @@
}
},
{
- "id": 1803,
+ "id": 1850,
"properties": {
"facing": "south",
"occupied": "false",
@@ -169815,7 +174359,7 @@
}
},
{
- "id": 1804,
+ "id": 1851,
"properties": {
"facing": "south",
"occupied": "false",
@@ -169823,7 +174367,7 @@
}
},
{
- "id": 1805,
+ "id": 1852,
"properties": {
"facing": "west",
"occupied": "true",
@@ -169831,7 +174375,7 @@
}
},
{
- "id": 1806,
+ "id": 1853,
"properties": {
"facing": "west",
"occupied": "true",
@@ -169839,7 +174383,7 @@
}
},
{
- "id": 1807,
+ "id": 1854,
"properties": {
"facing": "west",
"occupied": "false",
@@ -169847,7 +174391,7 @@
}
},
{
- "id": 1808,
+ "id": 1855,
"properties": {
"facing": "west",
"occupied": "false",
@@ -169855,7 +174399,7 @@
}
},
{
- "id": 1809,
+ "id": 1856,
"properties": {
"facing": "east",
"occupied": "true",
@@ -169863,7 +174407,7 @@
}
},
{
- "id": 1810,
+ "id": 1857,
"properties": {
"facing": "east",
"occupied": "true",
@@ -169871,7 +174415,7 @@
}
},
{
- "id": 1811,
+ "id": 1858,
"properties": {
"facing": "east",
"occupied": "false",
@@ -169879,7 +174423,7 @@
}
},
{
- "id": 1812,
+ "id": 1859,
"properties": {
"facing": "east",
"occupied": "false",
@@ -169907,7 +174451,7 @@
},
"states": [
{
- "id": 20273,
+ "id": 20742,
"properties": {
"candles": "1",
"lit": "true",
@@ -169915,7 +174459,7 @@
}
},
{
- "id": 20274,
+ "id": 20743,
"properties": {
"candles": "1",
"lit": "true",
@@ -169923,7 +174467,7 @@
}
},
{
- "id": 20275,
+ "id": 20744,
"properties": {
"candles": "1",
"lit": "false",
@@ -169932,7 +174476,7 @@
},
{
"default": true,
- "id": 20276,
+ "id": 20745,
"properties": {
"candles": "1",
"lit": "false",
@@ -169940,7 +174484,7 @@
}
},
{
- "id": 20277,
+ "id": 20746,
"properties": {
"candles": "2",
"lit": "true",
@@ -169948,7 +174492,7 @@
}
},
{
- "id": 20278,
+ "id": 20747,
"properties": {
"candles": "2",
"lit": "true",
@@ -169956,7 +174500,7 @@
}
},
{
- "id": 20279,
+ "id": 20748,
"properties": {
"candles": "2",
"lit": "false",
@@ -169964,7 +174508,7 @@
}
},
{
- "id": 20280,
+ "id": 20749,
"properties": {
"candles": "2",
"lit": "false",
@@ -169972,7 +174516,7 @@
}
},
{
- "id": 20281,
+ "id": 20750,
"properties": {
"candles": "3",
"lit": "true",
@@ -169980,7 +174524,7 @@
}
},
{
- "id": 20282,
+ "id": 20751,
"properties": {
"candles": "3",
"lit": "true",
@@ -169988,7 +174532,7 @@
}
},
{
- "id": 20283,
+ "id": 20752,
"properties": {
"candles": "3",
"lit": "false",
@@ -169996,7 +174540,7 @@
}
},
{
- "id": 20284,
+ "id": 20753,
"properties": {
"candles": "3",
"lit": "false",
@@ -170004,7 +174548,7 @@
}
},
{
- "id": 20285,
+ "id": 20754,
"properties": {
"candles": "4",
"lit": "true",
@@ -170012,7 +174556,7 @@
}
},
{
- "id": 20286,
+ "id": 20755,
"properties": {
"candles": "4",
"lit": "true",
@@ -170020,7 +174564,7 @@
}
},
{
- "id": 20287,
+ "id": 20756,
"properties": {
"candles": "4",
"lit": "false",
@@ -170028,7 +174572,7 @@
}
},
{
- "id": 20288,
+ "id": 20757,
"properties": {
"candles": "4",
"lit": "false",
@@ -170046,14 +174590,14 @@
},
"states": [
{
- "id": 20391,
+ "id": 20860,
"properties": {
"lit": "true"
}
},
{
"default": true,
- "id": 20392,
+ "id": 20861,
"properties": {
"lit": "false"
}
@@ -170064,7 +174608,7 @@
"states": [
{
"default": true,
- "id": 10261
+ "id": 10593
}
]
},
@@ -170072,7 +174616,7 @@
"states": [
{
"default": true,
- "id": 12113
+ "id": 12582
}
]
},
@@ -170080,7 +174624,7 @@
"states": [
{
"default": true,
- "id": 12129
+ "id": 12598
}
]
},
@@ -170096,25 +174640,25 @@
"states": [
{
"default": true,
- "id": 12079,
+ "id": 12548,
"properties": {
"facing": "north"
}
},
{
- "id": 12080,
+ "id": 12549,
"properties": {
"facing": "south"
}
},
{
- "id": 12081,
+ "id": 12550,
"properties": {
"facing": "west"
}
},
{
- "id": 12082,
+ "id": 12551,
"properties": {
"facing": "east"
}
@@ -170134,38 +174678,38 @@
},
"states": [
{
- "id": 12003,
+ "id": 12472,
"properties": {
"facing": "north"
}
},
{
- "id": 12004,
+ "id": 12473,
"properties": {
"facing": "east"
}
},
{
- "id": 12005,
+ "id": 12474,
"properties": {
"facing": "south"
}
},
{
- "id": 12006,
+ "id": 12475,
"properties": {
"facing": "west"
}
},
{
"default": true,
- "id": 12007,
+ "id": 12476,
"properties": {
"facing": "up"
}
},
{
- "id": 12008,
+ "id": 12477,
"properties": {
"facing": "down"
}
@@ -170176,7 +174720,7 @@
"states": [
{
"default": true,
- "id": 5790
+ "id": 5952
}
]
},
@@ -170205,7 +174749,7 @@
},
"states": [
{
- "id": 9296,
+ "id": 9548,
"properties": {
"east": "true",
"north": "true",
@@ -170215,7 +174759,7 @@
}
},
{
- "id": 9297,
+ "id": 9549,
"properties": {
"east": "true",
"north": "true",
@@ -170225,7 +174769,7 @@
}
},
{
- "id": 9298,
+ "id": 9550,
"properties": {
"east": "true",
"north": "true",
@@ -170235,7 +174779,7 @@
}
},
{
- "id": 9299,
+ "id": 9551,
"properties": {
"east": "true",
"north": "true",
@@ -170245,7 +174789,7 @@
}
},
{
- "id": 9300,
+ "id": 9552,
"properties": {
"east": "true",
"north": "true",
@@ -170255,7 +174799,7 @@
}
},
{
- "id": 9301,
+ "id": 9553,
"properties": {
"east": "true",
"north": "true",
@@ -170265,7 +174809,7 @@
}
},
{
- "id": 9302,
+ "id": 9554,
"properties": {
"east": "true",
"north": "true",
@@ -170275,7 +174819,7 @@
}
},
{
- "id": 9303,
+ "id": 9555,
"properties": {
"east": "true",
"north": "true",
@@ -170285,7 +174829,7 @@
}
},
{
- "id": 9304,
+ "id": 9556,
"properties": {
"east": "true",
"north": "false",
@@ -170295,7 +174839,7 @@
}
},
{
- "id": 9305,
+ "id": 9557,
"properties": {
"east": "true",
"north": "false",
@@ -170305,7 +174849,7 @@
}
},
{
- "id": 9306,
+ "id": 9558,
"properties": {
"east": "true",
"north": "false",
@@ -170315,7 +174859,7 @@
}
},
{
- "id": 9307,
+ "id": 9559,
"properties": {
"east": "true",
"north": "false",
@@ -170325,7 +174869,7 @@
}
},
{
- "id": 9308,
+ "id": 9560,
"properties": {
"east": "true",
"north": "false",
@@ -170335,7 +174879,7 @@
}
},
{
- "id": 9309,
+ "id": 9561,
"properties": {
"east": "true",
"north": "false",
@@ -170345,7 +174889,7 @@
}
},
{
- "id": 9310,
+ "id": 9562,
"properties": {
"east": "true",
"north": "false",
@@ -170355,7 +174899,7 @@
}
},
{
- "id": 9311,
+ "id": 9563,
"properties": {
"east": "true",
"north": "false",
@@ -170365,7 +174909,7 @@
}
},
{
- "id": 9312,
+ "id": 9564,
"properties": {
"east": "false",
"north": "true",
@@ -170375,7 +174919,7 @@
}
},
{
- "id": 9313,
+ "id": 9565,
"properties": {
"east": "false",
"north": "true",
@@ -170385,7 +174929,7 @@
}
},
{
- "id": 9314,
+ "id": 9566,
"properties": {
"east": "false",
"north": "true",
@@ -170395,7 +174939,7 @@
}
},
{
- "id": 9315,
+ "id": 9567,
"properties": {
"east": "false",
"north": "true",
@@ -170405,7 +174949,7 @@
}
},
{
- "id": 9316,
+ "id": 9568,
"properties": {
"east": "false",
"north": "true",
@@ -170415,7 +174959,7 @@
}
},
{
- "id": 9317,
+ "id": 9569,
"properties": {
"east": "false",
"north": "true",
@@ -170425,7 +174969,7 @@
}
},
{
- "id": 9318,
+ "id": 9570,
"properties": {
"east": "false",
"north": "true",
@@ -170435,7 +174979,7 @@
}
},
{
- "id": 9319,
+ "id": 9571,
"properties": {
"east": "false",
"north": "true",
@@ -170445,7 +174989,7 @@
}
},
{
- "id": 9320,
+ "id": 9572,
"properties": {
"east": "false",
"north": "false",
@@ -170455,7 +174999,7 @@
}
},
{
- "id": 9321,
+ "id": 9573,
"properties": {
"east": "false",
"north": "false",
@@ -170465,7 +175009,7 @@
}
},
{
- "id": 9322,
+ "id": 9574,
"properties": {
"east": "false",
"north": "false",
@@ -170475,7 +175019,7 @@
}
},
{
- "id": 9323,
+ "id": 9575,
"properties": {
"east": "false",
"north": "false",
@@ -170485,7 +175029,7 @@
}
},
{
- "id": 9324,
+ "id": 9576,
"properties": {
"east": "false",
"north": "false",
@@ -170495,7 +175039,7 @@
}
},
{
- "id": 9325,
+ "id": 9577,
"properties": {
"east": "false",
"north": "false",
@@ -170505,7 +175049,7 @@
}
},
{
- "id": 9326,
+ "id": 9578,
"properties": {
"east": "false",
"north": "false",
@@ -170516,7 +175060,7 @@
},
{
"default": true,
- "id": 9327,
+ "id": 9579,
"properties": {
"east": "false",
"north": "false",
@@ -170531,7 +175075,7 @@
"states": [
{
"default": true,
- "id": 8970
+ "id": 9222
}
]
},
@@ -170547,25 +175091,25 @@
"states": [
{
"default": true,
- "id": 10578,
+ "id": 10910,
"properties": {
"facing": "north"
}
},
{
- "id": 10579,
+ "id": 10911,
"properties": {
"facing": "south"
}
},
{
- "id": 10580,
+ "id": 10912,
"properties": {
"facing": "west"
}
},
{
- "id": 10581,
+ "id": 10913,
"properties": {
"facing": "east"
}
@@ -170576,7 +175120,7 @@
"states": [
{
"default": true,
- "id": 2006
+ "id": 2053
}
]
},
@@ -170584,7 +175128,7 @@
"states": [
{
"default": true,
- "id": 11799
+ "id": 12265
}
]
},
@@ -170598,20 +175142,20 @@
},
"states": [
{
- "id": 11800,
+ "id": 12266,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 11801,
+ "id": 12267,
"properties": {
"axis": "y"
}
},
{
- "id": 11802,
+ "id": 12268,
"properties": {
"axis": "z"
}
@@ -170632,21 +175176,21 @@
},
"states": [
{
- "id": 10817,
+ "id": 11155,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 10818,
+ "id": 11156,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 10819,
+ "id": 11157,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -170654,21 +175198,21 @@
},
{
"default": true,
- "id": 10820,
+ "id": 11158,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 10821,
+ "id": 11159,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 10822,
+ "id": 11160,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -170702,7 +175246,7 @@
},
"states": [
{
- "id": 11803,
+ "id": 12269,
"properties": {
"facing": "north",
"half": "top",
@@ -170711,7 +175255,7 @@
}
},
{
- "id": 11804,
+ "id": 12270,
"properties": {
"facing": "north",
"half": "top",
@@ -170720,7 +175264,7 @@
}
},
{
- "id": 11805,
+ "id": 12271,
"properties": {
"facing": "north",
"half": "top",
@@ -170729,7 +175273,7 @@
}
},
{
- "id": 11806,
+ "id": 12272,
"properties": {
"facing": "north",
"half": "top",
@@ -170738,7 +175282,7 @@
}
},
{
- "id": 11807,
+ "id": 12273,
"properties": {
"facing": "north",
"half": "top",
@@ -170747,7 +175291,7 @@
}
},
{
- "id": 11808,
+ "id": 12274,
"properties": {
"facing": "north",
"half": "top",
@@ -170756,7 +175300,7 @@
}
},
{
- "id": 11809,
+ "id": 12275,
"properties": {
"facing": "north",
"half": "top",
@@ -170765,7 +175309,7 @@
}
},
{
- "id": 11810,
+ "id": 12276,
"properties": {
"facing": "north",
"half": "top",
@@ -170774,7 +175318,7 @@
}
},
{
- "id": 11811,
+ "id": 12277,
"properties": {
"facing": "north",
"half": "top",
@@ -170783,7 +175327,7 @@
}
},
{
- "id": 11812,
+ "id": 12278,
"properties": {
"facing": "north",
"half": "top",
@@ -170792,7 +175336,7 @@
}
},
{
- "id": 11813,
+ "id": 12279,
"properties": {
"facing": "north",
"half": "bottom",
@@ -170802,7 +175346,7 @@
},
{
"default": true,
- "id": 11814,
+ "id": 12280,
"properties": {
"facing": "north",
"half": "bottom",
@@ -170811,7 +175355,7 @@
}
},
{
- "id": 11815,
+ "id": 12281,
"properties": {
"facing": "north",
"half": "bottom",
@@ -170820,7 +175364,7 @@
}
},
{
- "id": 11816,
+ "id": 12282,
"properties": {
"facing": "north",
"half": "bottom",
@@ -170829,7 +175373,7 @@
}
},
{
- "id": 11817,
+ "id": 12283,
"properties": {
"facing": "north",
"half": "bottom",
@@ -170838,7 +175382,7 @@
}
},
{
- "id": 11818,
+ "id": 12284,
"properties": {
"facing": "north",
"half": "bottom",
@@ -170847,7 +175391,7 @@
}
},
{
- "id": 11819,
+ "id": 12285,
"properties": {
"facing": "north",
"half": "bottom",
@@ -170856,7 +175400,7 @@
}
},
{
- "id": 11820,
+ "id": 12286,
"properties": {
"facing": "north",
"half": "bottom",
@@ -170865,7 +175409,7 @@
}
},
{
- "id": 11821,
+ "id": 12287,
"properties": {
"facing": "north",
"half": "bottom",
@@ -170874,7 +175418,7 @@
}
},
{
- "id": 11822,
+ "id": 12288,
"properties": {
"facing": "north",
"half": "bottom",
@@ -170883,7 +175427,7 @@
}
},
{
- "id": 11823,
+ "id": 12289,
"properties": {
"facing": "south",
"half": "top",
@@ -170892,7 +175436,7 @@
}
},
{
- "id": 11824,
+ "id": 12290,
"properties": {
"facing": "south",
"half": "top",
@@ -170901,7 +175445,7 @@
}
},
{
- "id": 11825,
+ "id": 12291,
"properties": {
"facing": "south",
"half": "top",
@@ -170910,7 +175454,7 @@
}
},
{
- "id": 11826,
+ "id": 12292,
"properties": {
"facing": "south",
"half": "top",
@@ -170919,7 +175463,7 @@
}
},
{
- "id": 11827,
+ "id": 12293,
"properties": {
"facing": "south",
"half": "top",
@@ -170928,7 +175472,7 @@
}
},
{
- "id": 11828,
+ "id": 12294,
"properties": {
"facing": "south",
"half": "top",
@@ -170937,7 +175481,7 @@
}
},
{
- "id": 11829,
+ "id": 12295,
"properties": {
"facing": "south",
"half": "top",
@@ -170946,7 +175490,7 @@
}
},
{
- "id": 11830,
+ "id": 12296,
"properties": {
"facing": "south",
"half": "top",
@@ -170955,7 +175499,7 @@
}
},
{
- "id": 11831,
+ "id": 12297,
"properties": {
"facing": "south",
"half": "top",
@@ -170964,7 +175508,7 @@
}
},
{
- "id": 11832,
+ "id": 12298,
"properties": {
"facing": "south",
"half": "top",
@@ -170973,7 +175517,7 @@
}
},
{
- "id": 11833,
+ "id": 12299,
"properties": {
"facing": "south",
"half": "bottom",
@@ -170982,7 +175526,7 @@
}
},
{
- "id": 11834,
+ "id": 12300,
"properties": {
"facing": "south",
"half": "bottom",
@@ -170991,7 +175535,7 @@
}
},
{
- "id": 11835,
+ "id": 12301,
"properties": {
"facing": "south",
"half": "bottom",
@@ -171000,7 +175544,7 @@
}
},
{
- "id": 11836,
+ "id": 12302,
"properties": {
"facing": "south",
"half": "bottom",
@@ -171009,7 +175553,7 @@
}
},
{
- "id": 11837,
+ "id": 12303,
"properties": {
"facing": "south",
"half": "bottom",
@@ -171018,7 +175562,7 @@
}
},
{
- "id": 11838,
+ "id": 12304,
"properties": {
"facing": "south",
"half": "bottom",
@@ -171027,7 +175571,7 @@
}
},
{
- "id": 11839,
+ "id": 12305,
"properties": {
"facing": "south",
"half": "bottom",
@@ -171036,7 +175580,7 @@
}
},
{
- "id": 11840,
+ "id": 12306,
"properties": {
"facing": "south",
"half": "bottom",
@@ -171045,7 +175589,7 @@
}
},
{
- "id": 11841,
+ "id": 12307,
"properties": {
"facing": "south",
"half": "bottom",
@@ -171054,7 +175598,7 @@
}
},
{
- "id": 11842,
+ "id": 12308,
"properties": {
"facing": "south",
"half": "bottom",
@@ -171063,7 +175607,7 @@
}
},
{
- "id": 11843,
+ "id": 12309,
"properties": {
"facing": "west",
"half": "top",
@@ -171072,7 +175616,7 @@
}
},
{
- "id": 11844,
+ "id": 12310,
"properties": {
"facing": "west",
"half": "top",
@@ -171081,7 +175625,7 @@
}
},
{
- "id": 11845,
+ "id": 12311,
"properties": {
"facing": "west",
"half": "top",
@@ -171090,7 +175634,7 @@
}
},
{
- "id": 11846,
+ "id": 12312,
"properties": {
"facing": "west",
"half": "top",
@@ -171099,7 +175643,7 @@
}
},
{
- "id": 11847,
+ "id": 12313,
"properties": {
"facing": "west",
"half": "top",
@@ -171108,7 +175652,7 @@
}
},
{
- "id": 11848,
+ "id": 12314,
"properties": {
"facing": "west",
"half": "top",
@@ -171117,7 +175661,7 @@
}
},
{
- "id": 11849,
+ "id": 12315,
"properties": {
"facing": "west",
"half": "top",
@@ -171126,7 +175670,7 @@
}
},
{
- "id": 11850,
+ "id": 12316,
"properties": {
"facing": "west",
"half": "top",
@@ -171135,7 +175679,7 @@
}
},
{
- "id": 11851,
+ "id": 12317,
"properties": {
"facing": "west",
"half": "top",
@@ -171144,7 +175688,7 @@
}
},
{
- "id": 11852,
+ "id": 12318,
"properties": {
"facing": "west",
"half": "top",
@@ -171153,7 +175697,7 @@
}
},
{
- "id": 11853,
+ "id": 12319,
"properties": {
"facing": "west",
"half": "bottom",
@@ -171162,7 +175706,7 @@
}
},
{
- "id": 11854,
+ "id": 12320,
"properties": {
"facing": "west",
"half": "bottom",
@@ -171171,7 +175715,7 @@
}
},
{
- "id": 11855,
+ "id": 12321,
"properties": {
"facing": "west",
"half": "bottom",
@@ -171180,7 +175724,7 @@
}
},
{
- "id": 11856,
+ "id": 12322,
"properties": {
"facing": "west",
"half": "bottom",
@@ -171189,7 +175733,7 @@
}
},
{
- "id": 11857,
+ "id": 12323,
"properties": {
"facing": "west",
"half": "bottom",
@@ -171198,7 +175742,7 @@
}
},
{
- "id": 11858,
+ "id": 12324,
"properties": {
"facing": "west",
"half": "bottom",
@@ -171207,7 +175751,7 @@
}
},
{
- "id": 11859,
+ "id": 12325,
"properties": {
"facing": "west",
"half": "bottom",
@@ -171216,7 +175760,7 @@
}
},
{
- "id": 11860,
+ "id": 12326,
"properties": {
"facing": "west",
"half": "bottom",
@@ -171225,7 +175769,7 @@
}
},
{
- "id": 11861,
+ "id": 12327,
"properties": {
"facing": "west",
"half": "bottom",
@@ -171234,7 +175778,7 @@
}
},
{
- "id": 11862,
+ "id": 12328,
"properties": {
"facing": "west",
"half": "bottom",
@@ -171243,7 +175787,7 @@
}
},
{
- "id": 11863,
+ "id": 12329,
"properties": {
"facing": "east",
"half": "top",
@@ -171252,7 +175796,7 @@
}
},
{
- "id": 11864,
+ "id": 12330,
"properties": {
"facing": "east",
"half": "top",
@@ -171261,7 +175805,7 @@
}
},
{
- "id": 11865,
+ "id": 12331,
"properties": {
"facing": "east",
"half": "top",
@@ -171270,7 +175814,7 @@
}
},
{
- "id": 11866,
+ "id": 12332,
"properties": {
"facing": "east",
"half": "top",
@@ -171279,7 +175823,7 @@
}
},
{
- "id": 11867,
+ "id": 12333,
"properties": {
"facing": "east",
"half": "top",
@@ -171288,7 +175832,7 @@
}
},
{
- "id": 11868,
+ "id": 12334,
"properties": {
"facing": "east",
"half": "top",
@@ -171297,7 +175841,7 @@
}
},
{
- "id": 11869,
+ "id": 12335,
"properties": {
"facing": "east",
"half": "top",
@@ -171306,7 +175850,7 @@
}
},
{
- "id": 11870,
+ "id": 12336,
"properties": {
"facing": "east",
"half": "top",
@@ -171315,7 +175859,7 @@
}
},
{
- "id": 11871,
+ "id": 12337,
"properties": {
"facing": "east",
"half": "top",
@@ -171324,7 +175868,7 @@
}
},
{
- "id": 11872,
+ "id": 12338,
"properties": {
"facing": "east",
"half": "top",
@@ -171333,7 +175877,7 @@
}
},
{
- "id": 11873,
+ "id": 12339,
"properties": {
"facing": "east",
"half": "bottom",
@@ -171342,7 +175886,7 @@
}
},
{
- "id": 11874,
+ "id": 12340,
"properties": {
"facing": "east",
"half": "bottom",
@@ -171351,7 +175895,7 @@
}
},
{
- "id": 11875,
+ "id": 12341,
"properties": {
"facing": "east",
"half": "bottom",
@@ -171360,7 +175904,7 @@
}
},
{
- "id": 11876,
+ "id": 12342,
"properties": {
"facing": "east",
"half": "bottom",
@@ -171369,7 +175913,7 @@
}
},
{
- "id": 11877,
+ "id": 12343,
"properties": {
"facing": "east",
"half": "bottom",
@@ -171378,7 +175922,7 @@
}
},
{
- "id": 11878,
+ "id": 12344,
"properties": {
"facing": "east",
"half": "bottom",
@@ -171387,7 +175931,7 @@
}
},
{
- "id": 11879,
+ "id": 12345,
"properties": {
"facing": "east",
"half": "bottom",
@@ -171396,7 +175940,7 @@
}
},
{
- "id": 11880,
+ "id": 12346,
"properties": {
"facing": "east",
"half": "bottom",
@@ -171405,7 +175949,7 @@
}
},
{
- "id": 11881,
+ "id": 12347,
"properties": {
"facing": "east",
"half": "bottom",
@@ -171414,7 +175958,7 @@
}
},
{
- "id": 11882,
+ "id": 12348,
"properties": {
"facing": "east",
"half": "bottom",
@@ -171428,7 +175972,7 @@
"states": [
{
"default": true,
- "id": 8839
+ "id": 9091
}
]
},
@@ -171436,7 +175980,7 @@
"states": [
{
"default": true,
- "id": 20096
+ "id": 20565
}
]
},
@@ -171450,20 +175994,20 @@
},
"states": [
{
- "id": 8841,
+ "id": 9093,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 8842,
+ "id": 9094,
"properties": {
"axis": "y"
}
},
{
- "id": 8843,
+ "id": 9095,
"properties": {
"axis": "z"
}
@@ -171484,21 +176028,21 @@
},
"states": [
{
- "id": 10799,
+ "id": 11137,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 10800,
+ "id": 11138,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 10801,
+ "id": 11139,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -171506,21 +176050,21 @@
},
{
"default": true,
- "id": 10802,
+ "id": 11140,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 10803,
+ "id": 11141,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 10804,
+ "id": 11142,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -171554,7 +176098,7 @@
},
"states": [
{
- "id": 8844,
+ "id": 9096,
"properties": {
"facing": "north",
"half": "top",
@@ -171563,7 +176107,7 @@
}
},
{
- "id": 8845,
+ "id": 9097,
"properties": {
"facing": "north",
"half": "top",
@@ -171572,7 +176116,7 @@
}
},
{
- "id": 8846,
+ "id": 9098,
"properties": {
"facing": "north",
"half": "top",
@@ -171581,7 +176125,7 @@
}
},
{
- "id": 8847,
+ "id": 9099,
"properties": {
"facing": "north",
"half": "top",
@@ -171590,7 +176134,7 @@
}
},
{
- "id": 8848,
+ "id": 9100,
"properties": {
"facing": "north",
"half": "top",
@@ -171599,7 +176143,7 @@
}
},
{
- "id": 8849,
+ "id": 9101,
"properties": {
"facing": "north",
"half": "top",
@@ -171608,7 +176152,7 @@
}
},
{
- "id": 8850,
+ "id": 9102,
"properties": {
"facing": "north",
"half": "top",
@@ -171617,7 +176161,7 @@
}
},
{
- "id": 8851,
+ "id": 9103,
"properties": {
"facing": "north",
"half": "top",
@@ -171626,7 +176170,7 @@
}
},
{
- "id": 8852,
+ "id": 9104,
"properties": {
"facing": "north",
"half": "top",
@@ -171635,7 +176179,7 @@
}
},
{
- "id": 8853,
+ "id": 9105,
"properties": {
"facing": "north",
"half": "top",
@@ -171644,7 +176188,7 @@
}
},
{
- "id": 8854,
+ "id": 9106,
"properties": {
"facing": "north",
"half": "bottom",
@@ -171654,7 +176198,7 @@
},
{
"default": true,
- "id": 8855,
+ "id": 9107,
"properties": {
"facing": "north",
"half": "bottom",
@@ -171663,7 +176207,7 @@
}
},
{
- "id": 8856,
+ "id": 9108,
"properties": {
"facing": "north",
"half": "bottom",
@@ -171672,7 +176216,7 @@
}
},
{
- "id": 8857,
+ "id": 9109,
"properties": {
"facing": "north",
"half": "bottom",
@@ -171681,7 +176225,7 @@
}
},
{
- "id": 8858,
+ "id": 9110,
"properties": {
"facing": "north",
"half": "bottom",
@@ -171690,7 +176234,7 @@
}
},
{
- "id": 8859,
+ "id": 9111,
"properties": {
"facing": "north",
"half": "bottom",
@@ -171699,7 +176243,7 @@
}
},
{
- "id": 8860,
+ "id": 9112,
"properties": {
"facing": "north",
"half": "bottom",
@@ -171708,7 +176252,7 @@
}
},
{
- "id": 8861,
+ "id": 9113,
"properties": {
"facing": "north",
"half": "bottom",
@@ -171717,7 +176261,7 @@
}
},
{
- "id": 8862,
+ "id": 9114,
"properties": {
"facing": "north",
"half": "bottom",
@@ -171726,7 +176270,7 @@
}
},
{
- "id": 8863,
+ "id": 9115,
"properties": {
"facing": "north",
"half": "bottom",
@@ -171735,7 +176279,7 @@
}
},
{
- "id": 8864,
+ "id": 9116,
"properties": {
"facing": "south",
"half": "top",
@@ -171744,7 +176288,7 @@
}
},
{
- "id": 8865,
+ "id": 9117,
"properties": {
"facing": "south",
"half": "top",
@@ -171753,7 +176297,7 @@
}
},
{
- "id": 8866,
+ "id": 9118,
"properties": {
"facing": "south",
"half": "top",
@@ -171762,7 +176306,7 @@
}
},
{
- "id": 8867,
+ "id": 9119,
"properties": {
"facing": "south",
"half": "top",
@@ -171771,7 +176315,7 @@
}
},
{
- "id": 8868,
+ "id": 9120,
"properties": {
"facing": "south",
"half": "top",
@@ -171780,7 +176324,7 @@
}
},
{
- "id": 8869,
+ "id": 9121,
"properties": {
"facing": "south",
"half": "top",
@@ -171789,7 +176333,7 @@
}
},
{
- "id": 8870,
+ "id": 9122,
"properties": {
"facing": "south",
"half": "top",
@@ -171798,7 +176342,7 @@
}
},
{
- "id": 8871,
+ "id": 9123,
"properties": {
"facing": "south",
"half": "top",
@@ -171807,7 +176351,7 @@
}
},
{
- "id": 8872,
+ "id": 9124,
"properties": {
"facing": "south",
"half": "top",
@@ -171816,7 +176360,7 @@
}
},
{
- "id": 8873,
+ "id": 9125,
"properties": {
"facing": "south",
"half": "top",
@@ -171825,7 +176369,7 @@
}
},
{
- "id": 8874,
+ "id": 9126,
"properties": {
"facing": "south",
"half": "bottom",
@@ -171834,7 +176378,7 @@
}
},
{
- "id": 8875,
+ "id": 9127,
"properties": {
"facing": "south",
"half": "bottom",
@@ -171843,7 +176387,7 @@
}
},
{
- "id": 8876,
+ "id": 9128,
"properties": {
"facing": "south",
"half": "bottom",
@@ -171852,7 +176396,7 @@
}
},
{
- "id": 8877,
+ "id": 9129,
"properties": {
"facing": "south",
"half": "bottom",
@@ -171861,7 +176405,7 @@
}
},
{
- "id": 8878,
+ "id": 9130,
"properties": {
"facing": "south",
"half": "bottom",
@@ -171870,7 +176414,7 @@
}
},
{
- "id": 8879,
+ "id": 9131,
"properties": {
"facing": "south",
"half": "bottom",
@@ -171879,7 +176423,7 @@
}
},
{
- "id": 8880,
+ "id": 9132,
"properties": {
"facing": "south",
"half": "bottom",
@@ -171888,7 +176432,7 @@
}
},
{
- "id": 8881,
+ "id": 9133,
"properties": {
"facing": "south",
"half": "bottom",
@@ -171897,7 +176441,7 @@
}
},
{
- "id": 8882,
+ "id": 9134,
"properties": {
"facing": "south",
"half": "bottom",
@@ -171906,7 +176450,7 @@
}
},
{
- "id": 8883,
+ "id": 9135,
"properties": {
"facing": "south",
"half": "bottom",
@@ -171915,7 +176459,7 @@
}
},
{
- "id": 8884,
+ "id": 9136,
"properties": {
"facing": "west",
"half": "top",
@@ -171924,7 +176468,7 @@
}
},
{
- "id": 8885,
+ "id": 9137,
"properties": {
"facing": "west",
"half": "top",
@@ -171933,7 +176477,7 @@
}
},
{
- "id": 8886,
+ "id": 9138,
"properties": {
"facing": "west",
"half": "top",
@@ -171942,7 +176486,7 @@
}
},
{
- "id": 8887,
+ "id": 9139,
"properties": {
"facing": "west",
"half": "top",
@@ -171951,7 +176495,7 @@
}
},
{
- "id": 8888,
+ "id": 9140,
"properties": {
"facing": "west",
"half": "top",
@@ -171960,7 +176504,7 @@
}
},
{
- "id": 8889,
+ "id": 9141,
"properties": {
"facing": "west",
"half": "top",
@@ -171969,7 +176513,7 @@
}
},
{
- "id": 8890,
+ "id": 9142,
"properties": {
"facing": "west",
"half": "top",
@@ -171978,7 +176522,7 @@
}
},
{
- "id": 8891,
+ "id": 9143,
"properties": {
"facing": "west",
"half": "top",
@@ -171987,7 +176531,7 @@
}
},
{
- "id": 8892,
+ "id": 9144,
"properties": {
"facing": "west",
"half": "top",
@@ -171996,7 +176540,7 @@
}
},
{
- "id": 8893,
+ "id": 9145,
"properties": {
"facing": "west",
"half": "top",
@@ -172005,7 +176549,7 @@
}
},
{
- "id": 8894,
+ "id": 9146,
"properties": {
"facing": "west",
"half": "bottom",
@@ -172014,7 +176558,7 @@
}
},
{
- "id": 8895,
+ "id": 9147,
"properties": {
"facing": "west",
"half": "bottom",
@@ -172023,7 +176567,7 @@
}
},
{
- "id": 8896,
+ "id": 9148,
"properties": {
"facing": "west",
"half": "bottom",
@@ -172032,7 +176576,7 @@
}
},
{
- "id": 8897,
+ "id": 9149,
"properties": {
"facing": "west",
"half": "bottom",
@@ -172041,7 +176585,7 @@
}
},
{
- "id": 8898,
+ "id": 9150,
"properties": {
"facing": "west",
"half": "bottom",
@@ -172050,7 +176594,7 @@
}
},
{
- "id": 8899,
+ "id": 9151,
"properties": {
"facing": "west",
"half": "bottom",
@@ -172059,7 +176603,7 @@
}
},
{
- "id": 8900,
+ "id": 9152,
"properties": {
"facing": "west",
"half": "bottom",
@@ -172068,7 +176612,7 @@
}
},
{
- "id": 8901,
+ "id": 9153,
"properties": {
"facing": "west",
"half": "bottom",
@@ -172077,7 +176621,7 @@
}
},
{
- "id": 8902,
+ "id": 9154,
"properties": {
"facing": "west",
"half": "bottom",
@@ -172086,7 +176630,7 @@
}
},
{
- "id": 8903,
+ "id": 9155,
"properties": {
"facing": "west",
"half": "bottom",
@@ -172095,7 +176639,7 @@
}
},
{
- "id": 8904,
+ "id": 9156,
"properties": {
"facing": "east",
"half": "top",
@@ -172104,7 +176648,7 @@
}
},
{
- "id": 8905,
+ "id": 9157,
"properties": {
"facing": "east",
"half": "top",
@@ -172113,7 +176657,7 @@
}
},
{
- "id": 8906,
+ "id": 9158,
"properties": {
"facing": "east",
"half": "top",
@@ -172122,7 +176666,7 @@
}
},
{
- "id": 8907,
+ "id": 9159,
"properties": {
"facing": "east",
"half": "top",
@@ -172131,7 +176675,7 @@
}
},
{
- "id": 8908,
+ "id": 9160,
"properties": {
"facing": "east",
"half": "top",
@@ -172140,7 +176684,7 @@
}
},
{
- "id": 8909,
+ "id": 9161,
"properties": {
"facing": "east",
"half": "top",
@@ -172149,7 +176693,7 @@
}
},
{
- "id": 8910,
+ "id": 9162,
"properties": {
"facing": "east",
"half": "top",
@@ -172158,7 +176702,7 @@
}
},
{
- "id": 8911,
+ "id": 9163,
"properties": {
"facing": "east",
"half": "top",
@@ -172167,7 +176711,7 @@
}
},
{
- "id": 8912,
+ "id": 9164,
"properties": {
"facing": "east",
"half": "top",
@@ -172176,7 +176720,7 @@
}
},
{
- "id": 8913,
+ "id": 9165,
"properties": {
"facing": "east",
"half": "top",
@@ -172185,7 +176729,7 @@
}
},
{
- "id": 8914,
+ "id": 9166,
"properties": {
"facing": "east",
"half": "bottom",
@@ -172194,7 +176738,7 @@
}
},
{
- "id": 8915,
+ "id": 9167,
"properties": {
"facing": "east",
"half": "bottom",
@@ -172203,7 +176747,7 @@
}
},
{
- "id": 8916,
+ "id": 9168,
"properties": {
"facing": "east",
"half": "bottom",
@@ -172212,7 +176756,7 @@
}
},
{
- "id": 8917,
+ "id": 9169,
"properties": {
"facing": "east",
"half": "bottom",
@@ -172221,7 +176765,7 @@
}
},
{
- "id": 8918,
+ "id": 9170,
"properties": {
"facing": "east",
"half": "bottom",
@@ -172230,7 +176774,7 @@
}
},
{
- "id": 8919,
+ "id": 9171,
"properties": {
"facing": "east",
"half": "bottom",
@@ -172239,7 +176783,7 @@
}
},
{
- "id": 8920,
+ "id": 9172,
"properties": {
"facing": "east",
"half": "bottom",
@@ -172248,7 +176792,7 @@
}
},
{
- "id": 8921,
+ "id": 9173,
"properties": {
"facing": "east",
"half": "bottom",
@@ -172257,7 +176801,7 @@
}
},
{
- "id": 8922,
+ "id": 9174,
"properties": {
"facing": "east",
"half": "bottom",
@@ -172266,7 +176810,7 @@
}
},
{
- "id": 8923,
+ "id": 9175,
"properties": {
"facing": "east",
"half": "bottom",
@@ -172297,7 +176841,7 @@
},
"states": [
{
- "id": 4578,
+ "id": 4658,
"properties": {
"shape": "north_south",
"waterlogged": "true"
@@ -172305,133 +176849,133 @@
},
{
"default": true,
- "id": 4579,
+ "id": 4659,
"properties": {
"shape": "north_south",
"waterlogged": "false"
}
},
{
- "id": 4580,
+ "id": 4660,
"properties": {
"shape": "east_west",
"waterlogged": "true"
}
},
{
- "id": 4581,
+ "id": 4661,
"properties": {
"shape": "east_west",
"waterlogged": "false"
}
},
{
- "id": 4582,
+ "id": 4662,
"properties": {
"shape": "ascending_east",
"waterlogged": "true"
}
},
{
- "id": 4583,
+ "id": 4663,
"properties": {
"shape": "ascending_east",
"waterlogged": "false"
}
},
{
- "id": 4584,
+ "id": 4664,
"properties": {
"shape": "ascending_west",
"waterlogged": "true"
}
},
{
- "id": 4585,
+ "id": 4665,
"properties": {
"shape": "ascending_west",
"waterlogged": "false"
}
},
{
- "id": 4586,
+ "id": 4666,
"properties": {
"shape": "ascending_north",
"waterlogged": "true"
}
},
{
- "id": 4587,
+ "id": 4667,
"properties": {
"shape": "ascending_north",
"waterlogged": "false"
}
},
{
- "id": 4588,
+ "id": 4668,
"properties": {
"shape": "ascending_south",
"waterlogged": "true"
}
},
{
- "id": 4589,
+ "id": 4669,
"properties": {
"shape": "ascending_south",
"waterlogged": "false"
}
},
{
- "id": 4590,
+ "id": 4670,
"properties": {
"shape": "south_east",
"waterlogged": "true"
}
},
{
- "id": 4591,
+ "id": 4671,
"properties": {
"shape": "south_east",
"waterlogged": "false"
}
},
{
- "id": 4592,
+ "id": 4672,
"properties": {
"shape": "south_west",
"waterlogged": "true"
}
},
{
- "id": 4593,
+ "id": 4673,
"properties": {
"shape": "south_west",
"waterlogged": "false"
}
},
{
- "id": 4594,
+ "id": 4674,
"properties": {
"shape": "north_west",
"waterlogged": "true"
}
},
{
- "id": 4595,
+ "id": 4675,
"properties": {
"shape": "north_west",
"waterlogged": "false"
}
},
{
- "id": 4596,
+ "id": 4676,
"properties": {
"shape": "north_east",
"waterlogged": "true"
}
},
{
- "id": 4597,
+ "id": 4677,
"properties": {
"shape": "north_east",
"waterlogged": "false"
@@ -172443,7 +176987,7 @@
"states": [
{
"default": true,
- "id": 23217
+ "id": 23702
}
]
},
@@ -172451,7 +176995,7 @@
"states": [
{
"default": true,
- "id": 23218
+ "id": 23703
}
]
},
@@ -172459,7 +177003,7 @@
"states": [
{
"default": true,
- "id": 23216
+ "id": 23701
}
]
},
@@ -172487,97 +177031,97 @@
"states": [
{
"default": true,
- "id": 10506,
+ "id": 10838,
"properties": {
"rotation": "0"
}
},
{
- "id": 10507,
+ "id": 10839,
"properties": {
"rotation": "1"
}
},
{
- "id": 10508,
+ "id": 10840,
"properties": {
"rotation": "2"
}
},
{
- "id": 10509,
+ "id": 10841,
"properties": {
"rotation": "3"
}
},
{
- "id": 10510,
+ "id": 10842,
"properties": {
"rotation": "4"
}
},
{
- "id": 10511,
+ "id": 10843,
"properties": {
"rotation": "5"
}
},
{
- "id": 10512,
+ "id": 10844,
"properties": {
"rotation": "6"
}
},
{
- "id": 10513,
+ "id": 10845,
"properties": {
"rotation": "7"
}
},
{
- "id": 10514,
+ "id": 10846,
"properties": {
"rotation": "8"
}
},
{
- "id": 10515,
+ "id": 10847,
"properties": {
"rotation": "9"
}
},
{
- "id": 10516,
+ "id": 10848,
"properties": {
"rotation": "10"
}
},
{
- "id": 10517,
+ "id": 10849,
"properties": {
"rotation": "11"
}
},
{
- "id": 10518,
+ "id": 10850,
"properties": {
"rotation": "12"
}
},
{
- "id": 10519,
+ "id": 10851,
"properties": {
"rotation": "13"
}
},
{
- "id": 10520,
+ "id": 10852,
"properties": {
"rotation": "14"
}
},
{
- "id": 10521,
+ "id": 10853,
"properties": {
"rotation": "15"
}
@@ -172603,7 +177147,7 @@
},
"states": [
{
- "id": 1861,
+ "id": 1908,
"properties": {
"facing": "north",
"occupied": "true",
@@ -172611,7 +177155,7 @@
}
},
{
- "id": 1862,
+ "id": 1909,
"properties": {
"facing": "north",
"occupied": "true",
@@ -172619,7 +177163,7 @@
}
},
{
- "id": 1863,
+ "id": 1910,
"properties": {
"facing": "north",
"occupied": "false",
@@ -172628,7 +177172,7 @@
},
{
"default": true,
- "id": 1864,
+ "id": 1911,
"properties": {
"facing": "north",
"occupied": "false",
@@ -172636,7 +177180,7 @@
}
},
{
- "id": 1865,
+ "id": 1912,
"properties": {
"facing": "south",
"occupied": "true",
@@ -172644,7 +177188,7 @@
}
},
{
- "id": 1866,
+ "id": 1913,
"properties": {
"facing": "south",
"occupied": "true",
@@ -172652,7 +177196,7 @@
}
},
{
- "id": 1867,
+ "id": 1914,
"properties": {
"facing": "south",
"occupied": "false",
@@ -172660,7 +177204,7 @@
}
},
{
- "id": 1868,
+ "id": 1915,
"properties": {
"facing": "south",
"occupied": "false",
@@ -172668,7 +177212,7 @@
}
},
{
- "id": 1869,
+ "id": 1916,
"properties": {
"facing": "west",
"occupied": "true",
@@ -172676,7 +177220,7 @@
}
},
{
- "id": 1870,
+ "id": 1917,
"properties": {
"facing": "west",
"occupied": "true",
@@ -172684,7 +177228,7 @@
}
},
{
- "id": 1871,
+ "id": 1918,
"properties": {
"facing": "west",
"occupied": "false",
@@ -172692,7 +177236,7 @@
}
},
{
- "id": 1872,
+ "id": 1919,
"properties": {
"facing": "west",
"occupied": "false",
@@ -172700,7 +177244,7 @@
}
},
{
- "id": 1873,
+ "id": 1920,
"properties": {
"facing": "east",
"occupied": "true",
@@ -172708,7 +177252,7 @@
}
},
{
- "id": 1874,
+ "id": 1921,
"properties": {
"facing": "east",
"occupied": "true",
@@ -172716,7 +177260,7 @@
}
},
{
- "id": 1875,
+ "id": 1922,
"properties": {
"facing": "east",
"occupied": "false",
@@ -172724,7 +177268,7 @@
}
},
{
- "id": 1876,
+ "id": 1923,
"properties": {
"facing": "east",
"occupied": "false",
@@ -172752,7 +177296,7 @@
},
"states": [
{
- "id": 20337,
+ "id": 20806,
"properties": {
"candles": "1",
"lit": "true",
@@ -172760,7 +177304,7 @@
}
},
{
- "id": 20338,
+ "id": 20807,
"properties": {
"candles": "1",
"lit": "true",
@@ -172768,7 +177312,7 @@
}
},
{
- "id": 20339,
+ "id": 20808,
"properties": {
"candles": "1",
"lit": "false",
@@ -172777,7 +177321,7 @@
},
{
"default": true,
- "id": 20340,
+ "id": 20809,
"properties": {
"candles": "1",
"lit": "false",
@@ -172785,7 +177329,7 @@
}
},
{
- "id": 20341,
+ "id": 20810,
"properties": {
"candles": "2",
"lit": "true",
@@ -172793,7 +177337,7 @@
}
},
{
- "id": 20342,
+ "id": 20811,
"properties": {
"candles": "2",
"lit": "true",
@@ -172801,7 +177345,7 @@
}
},
{
- "id": 20343,
+ "id": 20812,
"properties": {
"candles": "2",
"lit": "false",
@@ -172809,7 +177353,7 @@
}
},
{
- "id": 20344,
+ "id": 20813,
"properties": {
"candles": "2",
"lit": "false",
@@ -172817,7 +177361,7 @@
}
},
{
- "id": 20345,
+ "id": 20814,
"properties": {
"candles": "3",
"lit": "true",
@@ -172825,7 +177369,7 @@
}
},
{
- "id": 20346,
+ "id": 20815,
"properties": {
"candles": "3",
"lit": "true",
@@ -172833,7 +177377,7 @@
}
},
{
- "id": 20347,
+ "id": 20816,
"properties": {
"candles": "3",
"lit": "false",
@@ -172841,7 +177385,7 @@
}
},
{
- "id": 20348,
+ "id": 20817,
"properties": {
"candles": "3",
"lit": "false",
@@ -172849,7 +177393,7 @@
}
},
{
- "id": 20349,
+ "id": 20818,
"properties": {
"candles": "4",
"lit": "true",
@@ -172857,7 +177401,7 @@
}
},
{
- "id": 20350,
+ "id": 20819,
"properties": {
"candles": "4",
"lit": "true",
@@ -172865,7 +177409,7 @@
}
},
{
- "id": 20351,
+ "id": 20820,
"properties": {
"candles": "4",
"lit": "false",
@@ -172873,7 +177417,7 @@
}
},
{
- "id": 20352,
+ "id": 20821,
"properties": {
"candles": "4",
"lit": "false",
@@ -172891,14 +177435,14 @@
},
"states": [
{
- "id": 20399,
+ "id": 20868,
"properties": {
"lit": "true"
}
},
{
"default": true,
- "id": 20400,
+ "id": 20869,
"properties": {
"lit": "false"
}
@@ -172909,7 +177453,7 @@
"states": [
{
"default": true,
- "id": 10265
+ "id": 10597
}
]
},
@@ -172917,7 +177461,7 @@
"states": [
{
"default": true,
- "id": 12117
+ "id": 12586
}
]
},
@@ -172925,7 +177469,7 @@
"states": [
{
"default": true,
- "id": 12133
+ "id": 12602
}
]
},
@@ -172941,25 +177485,25 @@
"states": [
{
"default": true,
- "id": 12095,
+ "id": 12564,
"properties": {
"facing": "north"
}
},
{
- "id": 12096,
+ "id": 12565,
"properties": {
"facing": "south"
}
},
{
- "id": 12097,
+ "id": 12566,
"properties": {
"facing": "west"
}
},
{
- "id": 12098,
+ "id": 12567,
"properties": {
"facing": "east"
}
@@ -172970,7 +177514,7 @@
"states": [
{
"default": true,
- "id": 2038
+ "id": 2086
}
]
},
@@ -173004,7 +177548,7 @@
"states": [
{
"default": true,
- "id": 6384,
+ "id": 6610,
"properties": {
"down": "true",
"east": "true",
@@ -173015,7 +177559,7 @@
}
},
{
- "id": 6385,
+ "id": 6611,
"properties": {
"down": "true",
"east": "true",
@@ -173026,7 +177570,7 @@
}
},
{
- "id": 6386,
+ "id": 6612,
"properties": {
"down": "true",
"east": "true",
@@ -173037,7 +177581,7 @@
}
},
{
- "id": 6387,
+ "id": 6613,
"properties": {
"down": "true",
"east": "true",
@@ -173048,7 +177592,7 @@
}
},
{
- "id": 6388,
+ "id": 6614,
"properties": {
"down": "true",
"east": "true",
@@ -173059,7 +177603,7 @@
}
},
{
- "id": 6389,
+ "id": 6615,
"properties": {
"down": "true",
"east": "true",
@@ -173070,7 +177614,7 @@
}
},
{
- "id": 6390,
+ "id": 6616,
"properties": {
"down": "true",
"east": "true",
@@ -173081,7 +177625,7 @@
}
},
{
- "id": 6391,
+ "id": 6617,
"properties": {
"down": "true",
"east": "true",
@@ -173092,7 +177636,7 @@
}
},
{
- "id": 6392,
+ "id": 6618,
"properties": {
"down": "true",
"east": "true",
@@ -173103,7 +177647,7 @@
}
},
{
- "id": 6393,
+ "id": 6619,
"properties": {
"down": "true",
"east": "true",
@@ -173114,7 +177658,7 @@
}
},
{
- "id": 6394,
+ "id": 6620,
"properties": {
"down": "true",
"east": "true",
@@ -173125,7 +177669,7 @@
}
},
{
- "id": 6395,
+ "id": 6621,
"properties": {
"down": "true",
"east": "true",
@@ -173136,7 +177680,7 @@
}
},
{
- "id": 6396,
+ "id": 6622,
"properties": {
"down": "true",
"east": "true",
@@ -173147,7 +177691,7 @@
}
},
{
- "id": 6397,
+ "id": 6623,
"properties": {
"down": "true",
"east": "true",
@@ -173158,7 +177702,7 @@
}
},
{
- "id": 6398,
+ "id": 6624,
"properties": {
"down": "true",
"east": "true",
@@ -173169,7 +177713,7 @@
}
},
{
- "id": 6399,
+ "id": 6625,
"properties": {
"down": "true",
"east": "true",
@@ -173180,7 +177724,7 @@
}
},
{
- "id": 6400,
+ "id": 6626,
"properties": {
"down": "true",
"east": "false",
@@ -173191,7 +177735,7 @@
}
},
{
- "id": 6401,
+ "id": 6627,
"properties": {
"down": "true",
"east": "false",
@@ -173202,7 +177746,7 @@
}
},
{
- "id": 6402,
+ "id": 6628,
"properties": {
"down": "true",
"east": "false",
@@ -173213,7 +177757,7 @@
}
},
{
- "id": 6403,
+ "id": 6629,
"properties": {
"down": "true",
"east": "false",
@@ -173224,7 +177768,7 @@
}
},
{
- "id": 6404,
+ "id": 6630,
"properties": {
"down": "true",
"east": "false",
@@ -173235,7 +177779,7 @@
}
},
{
- "id": 6405,
+ "id": 6631,
"properties": {
"down": "true",
"east": "false",
@@ -173246,7 +177790,7 @@
}
},
{
- "id": 6406,
+ "id": 6632,
"properties": {
"down": "true",
"east": "false",
@@ -173257,7 +177801,7 @@
}
},
{
- "id": 6407,
+ "id": 6633,
"properties": {
"down": "true",
"east": "false",
@@ -173268,7 +177812,7 @@
}
},
{
- "id": 6408,
+ "id": 6634,
"properties": {
"down": "true",
"east": "false",
@@ -173279,7 +177823,7 @@
}
},
{
- "id": 6409,
+ "id": 6635,
"properties": {
"down": "true",
"east": "false",
@@ -173290,7 +177834,7 @@
}
},
{
- "id": 6410,
+ "id": 6636,
"properties": {
"down": "true",
"east": "false",
@@ -173301,7 +177845,7 @@
}
},
{
- "id": 6411,
+ "id": 6637,
"properties": {
"down": "true",
"east": "false",
@@ -173312,7 +177856,7 @@
}
},
{
- "id": 6412,
+ "id": 6638,
"properties": {
"down": "true",
"east": "false",
@@ -173323,7 +177867,7 @@
}
},
{
- "id": 6413,
+ "id": 6639,
"properties": {
"down": "true",
"east": "false",
@@ -173334,7 +177878,7 @@
}
},
{
- "id": 6414,
+ "id": 6640,
"properties": {
"down": "true",
"east": "false",
@@ -173345,7 +177889,7 @@
}
},
{
- "id": 6415,
+ "id": 6641,
"properties": {
"down": "true",
"east": "false",
@@ -173356,7 +177900,7 @@
}
},
{
- "id": 6416,
+ "id": 6642,
"properties": {
"down": "false",
"east": "true",
@@ -173367,7 +177911,7 @@
}
},
{
- "id": 6417,
+ "id": 6643,
"properties": {
"down": "false",
"east": "true",
@@ -173378,7 +177922,7 @@
}
},
{
- "id": 6418,
+ "id": 6644,
"properties": {
"down": "false",
"east": "true",
@@ -173389,7 +177933,7 @@
}
},
{
- "id": 6419,
+ "id": 6645,
"properties": {
"down": "false",
"east": "true",
@@ -173400,7 +177944,7 @@
}
},
{
- "id": 6420,
+ "id": 6646,
"properties": {
"down": "false",
"east": "true",
@@ -173411,7 +177955,7 @@
}
},
{
- "id": 6421,
+ "id": 6647,
"properties": {
"down": "false",
"east": "true",
@@ -173422,7 +177966,7 @@
}
},
{
- "id": 6422,
+ "id": 6648,
"properties": {
"down": "false",
"east": "true",
@@ -173433,7 +177977,7 @@
}
},
{
- "id": 6423,
+ "id": 6649,
"properties": {
"down": "false",
"east": "true",
@@ -173444,7 +177988,7 @@
}
},
{
- "id": 6424,
+ "id": 6650,
"properties": {
"down": "false",
"east": "true",
@@ -173455,7 +177999,7 @@
}
},
{
- "id": 6425,
+ "id": 6651,
"properties": {
"down": "false",
"east": "true",
@@ -173466,7 +178010,7 @@
}
},
{
- "id": 6426,
+ "id": 6652,
"properties": {
"down": "false",
"east": "true",
@@ -173477,7 +178021,7 @@
}
},
{
- "id": 6427,
+ "id": 6653,
"properties": {
"down": "false",
"east": "true",
@@ -173488,7 +178032,7 @@
}
},
{
- "id": 6428,
+ "id": 6654,
"properties": {
"down": "false",
"east": "true",
@@ -173499,7 +178043,7 @@
}
},
{
- "id": 6429,
+ "id": 6655,
"properties": {
"down": "false",
"east": "true",
@@ -173510,7 +178054,7 @@
}
},
{
- "id": 6430,
+ "id": 6656,
"properties": {
"down": "false",
"east": "true",
@@ -173521,7 +178065,7 @@
}
},
{
- "id": 6431,
+ "id": 6657,
"properties": {
"down": "false",
"east": "true",
@@ -173532,7 +178076,7 @@
}
},
{
- "id": 6432,
+ "id": 6658,
"properties": {
"down": "false",
"east": "false",
@@ -173543,7 +178087,7 @@
}
},
{
- "id": 6433,
+ "id": 6659,
"properties": {
"down": "false",
"east": "false",
@@ -173554,7 +178098,7 @@
}
},
{
- "id": 6434,
+ "id": 6660,
"properties": {
"down": "false",
"east": "false",
@@ -173565,7 +178109,7 @@
}
},
{
- "id": 6435,
+ "id": 6661,
"properties": {
"down": "false",
"east": "false",
@@ -173576,7 +178120,7 @@
}
},
{
- "id": 6436,
+ "id": 6662,
"properties": {
"down": "false",
"east": "false",
@@ -173587,7 +178131,7 @@
}
},
{
- "id": 6437,
+ "id": 6663,
"properties": {
"down": "false",
"east": "false",
@@ -173598,7 +178142,7 @@
}
},
{
- "id": 6438,
+ "id": 6664,
"properties": {
"down": "false",
"east": "false",
@@ -173609,7 +178153,7 @@
}
},
{
- "id": 6439,
+ "id": 6665,
"properties": {
"down": "false",
"east": "false",
@@ -173620,7 +178164,7 @@
}
},
{
- "id": 6440,
+ "id": 6666,
"properties": {
"down": "false",
"east": "false",
@@ -173631,7 +178175,7 @@
}
},
{
- "id": 6441,
+ "id": 6667,
"properties": {
"down": "false",
"east": "false",
@@ -173642,7 +178186,7 @@
}
},
{
- "id": 6442,
+ "id": 6668,
"properties": {
"down": "false",
"east": "false",
@@ -173653,7 +178197,7 @@
}
},
{
- "id": 6443,
+ "id": 6669,
"properties": {
"down": "false",
"east": "false",
@@ -173664,7 +178208,7 @@
}
},
{
- "id": 6444,
+ "id": 6670,
"properties": {
"down": "false",
"east": "false",
@@ -173675,7 +178219,7 @@
}
},
{
- "id": 6445,
+ "id": 6671,
"properties": {
"down": "false",
"east": "false",
@@ -173686,7 +178230,7 @@
}
},
{
- "id": 6446,
+ "id": 6672,
"properties": {
"down": "false",
"east": "false",
@@ -173697,7 +178241,7 @@
}
},
{
- "id": 6447,
+ "id": 6673,
"properties": {
"down": "false",
"east": "false",
@@ -173723,21 +178267,21 @@
},
"states": [
{
- "id": 13514,
+ "id": 13983,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 13515,
+ "id": 13984,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 13516,
+ "id": 13985,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -173745,21 +178289,21 @@
},
{
"default": true,
- "id": 13517,
+ "id": 13986,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 13518,
+ "id": 13987,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 13519,
+ "id": 13988,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -173793,7 +178337,7 @@
},
"states": [
{
- "id": 13214,
+ "id": 13683,
"properties": {
"facing": "north",
"half": "top",
@@ -173802,7 +178346,7 @@
}
},
{
- "id": 13215,
+ "id": 13684,
"properties": {
"facing": "north",
"half": "top",
@@ -173811,7 +178355,7 @@
}
},
{
- "id": 13216,
+ "id": 13685,
"properties": {
"facing": "north",
"half": "top",
@@ -173820,7 +178364,7 @@
}
},
{
- "id": 13217,
+ "id": 13686,
"properties": {
"facing": "north",
"half": "top",
@@ -173829,7 +178373,7 @@
}
},
{
- "id": 13218,
+ "id": 13687,
"properties": {
"facing": "north",
"half": "top",
@@ -173838,7 +178382,7 @@
}
},
{
- "id": 13219,
+ "id": 13688,
"properties": {
"facing": "north",
"half": "top",
@@ -173847,7 +178391,7 @@
}
},
{
- "id": 13220,
+ "id": 13689,
"properties": {
"facing": "north",
"half": "top",
@@ -173856,7 +178400,7 @@
}
},
{
- "id": 13221,
+ "id": 13690,
"properties": {
"facing": "north",
"half": "top",
@@ -173865,7 +178409,7 @@
}
},
{
- "id": 13222,
+ "id": 13691,
"properties": {
"facing": "north",
"half": "top",
@@ -173874,7 +178418,7 @@
}
},
{
- "id": 13223,
+ "id": 13692,
"properties": {
"facing": "north",
"half": "top",
@@ -173883,7 +178427,7 @@
}
},
{
- "id": 13224,
+ "id": 13693,
"properties": {
"facing": "north",
"half": "bottom",
@@ -173893,7 +178437,7 @@
},
{
"default": true,
- "id": 13225,
+ "id": 13694,
"properties": {
"facing": "north",
"half": "bottom",
@@ -173902,7 +178446,7 @@
}
},
{
- "id": 13226,
+ "id": 13695,
"properties": {
"facing": "north",
"half": "bottom",
@@ -173911,7 +178455,7 @@
}
},
{
- "id": 13227,
+ "id": 13696,
"properties": {
"facing": "north",
"half": "bottom",
@@ -173920,7 +178464,7 @@
}
},
{
- "id": 13228,
+ "id": 13697,
"properties": {
"facing": "north",
"half": "bottom",
@@ -173929,7 +178473,7 @@
}
},
{
- "id": 13229,
+ "id": 13698,
"properties": {
"facing": "north",
"half": "bottom",
@@ -173938,7 +178482,7 @@
}
},
{
- "id": 13230,
+ "id": 13699,
"properties": {
"facing": "north",
"half": "bottom",
@@ -173947,7 +178491,7 @@
}
},
{
- "id": 13231,
+ "id": 13700,
"properties": {
"facing": "north",
"half": "bottom",
@@ -173956,7 +178500,7 @@
}
},
{
- "id": 13232,
+ "id": 13701,
"properties": {
"facing": "north",
"half": "bottom",
@@ -173965,7 +178509,7 @@
}
},
{
- "id": 13233,
+ "id": 13702,
"properties": {
"facing": "north",
"half": "bottom",
@@ -173974,7 +178518,7 @@
}
},
{
- "id": 13234,
+ "id": 13703,
"properties": {
"facing": "south",
"half": "top",
@@ -173983,7 +178527,7 @@
}
},
{
- "id": 13235,
+ "id": 13704,
"properties": {
"facing": "south",
"half": "top",
@@ -173992,7 +178536,7 @@
}
},
{
- "id": 13236,
+ "id": 13705,
"properties": {
"facing": "south",
"half": "top",
@@ -174001,7 +178545,7 @@
}
},
{
- "id": 13237,
+ "id": 13706,
"properties": {
"facing": "south",
"half": "top",
@@ -174010,7 +178554,7 @@
}
},
{
- "id": 13238,
+ "id": 13707,
"properties": {
"facing": "south",
"half": "top",
@@ -174019,7 +178563,7 @@
}
},
{
- "id": 13239,
+ "id": 13708,
"properties": {
"facing": "south",
"half": "top",
@@ -174028,7 +178572,7 @@
}
},
{
- "id": 13240,
+ "id": 13709,
"properties": {
"facing": "south",
"half": "top",
@@ -174037,7 +178581,7 @@
}
},
{
- "id": 13241,
+ "id": 13710,
"properties": {
"facing": "south",
"half": "top",
@@ -174046,7 +178590,7 @@
}
},
{
- "id": 13242,
+ "id": 13711,
"properties": {
"facing": "south",
"half": "top",
@@ -174055,7 +178599,7 @@
}
},
{
- "id": 13243,
+ "id": 13712,
"properties": {
"facing": "south",
"half": "top",
@@ -174064,7 +178608,7 @@
}
},
{
- "id": 13244,
+ "id": 13713,
"properties": {
"facing": "south",
"half": "bottom",
@@ -174073,7 +178617,7 @@
}
},
{
- "id": 13245,
+ "id": 13714,
"properties": {
"facing": "south",
"half": "bottom",
@@ -174082,7 +178626,7 @@
}
},
{
- "id": 13246,
+ "id": 13715,
"properties": {
"facing": "south",
"half": "bottom",
@@ -174091,7 +178635,7 @@
}
},
{
- "id": 13247,
+ "id": 13716,
"properties": {
"facing": "south",
"half": "bottom",
@@ -174100,7 +178644,7 @@
}
},
{
- "id": 13248,
+ "id": 13717,
"properties": {
"facing": "south",
"half": "bottom",
@@ -174109,7 +178653,7 @@
}
},
{
- "id": 13249,
+ "id": 13718,
"properties": {
"facing": "south",
"half": "bottom",
@@ -174118,7 +178662,7 @@
}
},
{
- "id": 13250,
+ "id": 13719,
"properties": {
"facing": "south",
"half": "bottom",
@@ -174127,7 +178671,7 @@
}
},
{
- "id": 13251,
+ "id": 13720,
"properties": {
"facing": "south",
"half": "bottom",
@@ -174136,7 +178680,7 @@
}
},
{
- "id": 13252,
+ "id": 13721,
"properties": {
"facing": "south",
"half": "bottom",
@@ -174145,7 +178689,7 @@
}
},
{
- "id": 13253,
+ "id": 13722,
"properties": {
"facing": "south",
"half": "bottom",
@@ -174154,7 +178698,7 @@
}
},
{
- "id": 13254,
+ "id": 13723,
"properties": {
"facing": "west",
"half": "top",
@@ -174163,7 +178707,7 @@
}
},
{
- "id": 13255,
+ "id": 13724,
"properties": {
"facing": "west",
"half": "top",
@@ -174172,7 +178716,7 @@
}
},
{
- "id": 13256,
+ "id": 13725,
"properties": {
"facing": "west",
"half": "top",
@@ -174181,7 +178725,7 @@
}
},
{
- "id": 13257,
+ "id": 13726,
"properties": {
"facing": "west",
"half": "top",
@@ -174190,7 +178734,7 @@
}
},
{
- "id": 13258,
+ "id": 13727,
"properties": {
"facing": "west",
"half": "top",
@@ -174199,7 +178743,7 @@
}
},
{
- "id": 13259,
+ "id": 13728,
"properties": {
"facing": "west",
"half": "top",
@@ -174208,7 +178752,7 @@
}
},
{
- "id": 13260,
+ "id": 13729,
"properties": {
"facing": "west",
"half": "top",
@@ -174217,7 +178761,7 @@
}
},
{
- "id": 13261,
+ "id": 13730,
"properties": {
"facing": "west",
"half": "top",
@@ -174226,7 +178770,7 @@
}
},
{
- "id": 13262,
+ "id": 13731,
"properties": {
"facing": "west",
"half": "top",
@@ -174235,7 +178779,7 @@
}
},
{
- "id": 13263,
+ "id": 13732,
"properties": {
"facing": "west",
"half": "top",
@@ -174244,7 +178788,7 @@
}
},
{
- "id": 13264,
+ "id": 13733,
"properties": {
"facing": "west",
"half": "bottom",
@@ -174253,7 +178797,7 @@
}
},
{
- "id": 13265,
+ "id": 13734,
"properties": {
"facing": "west",
"half": "bottom",
@@ -174262,7 +178806,7 @@
}
},
{
- "id": 13266,
+ "id": 13735,
"properties": {
"facing": "west",
"half": "bottom",
@@ -174271,7 +178815,7 @@
}
},
{
- "id": 13267,
+ "id": 13736,
"properties": {
"facing": "west",
"half": "bottom",
@@ -174280,7 +178824,7 @@
}
},
{
- "id": 13268,
+ "id": 13737,
"properties": {
"facing": "west",
"half": "bottom",
@@ -174289,7 +178833,7 @@
}
},
{
- "id": 13269,
+ "id": 13738,
"properties": {
"facing": "west",
"half": "bottom",
@@ -174298,7 +178842,7 @@
}
},
{
- "id": 13270,
+ "id": 13739,
"properties": {
"facing": "west",
"half": "bottom",
@@ -174307,7 +178851,7 @@
}
},
{
- "id": 13271,
+ "id": 13740,
"properties": {
"facing": "west",
"half": "bottom",
@@ -174316,7 +178860,7 @@
}
},
{
- "id": 13272,
+ "id": 13741,
"properties": {
"facing": "west",
"half": "bottom",
@@ -174325,7 +178869,7 @@
}
},
{
- "id": 13273,
+ "id": 13742,
"properties": {
"facing": "west",
"half": "bottom",
@@ -174334,7 +178878,7 @@
}
},
{
- "id": 13274,
+ "id": 13743,
"properties": {
"facing": "east",
"half": "top",
@@ -174343,7 +178887,7 @@
}
},
{
- "id": 13275,
+ "id": 13744,
"properties": {
"facing": "east",
"half": "top",
@@ -174352,7 +178896,7 @@
}
},
{
- "id": 13276,
+ "id": 13745,
"properties": {
"facing": "east",
"half": "top",
@@ -174361,7 +178905,7 @@
}
},
{
- "id": 13277,
+ "id": 13746,
"properties": {
"facing": "east",
"half": "top",
@@ -174370,7 +178914,7 @@
}
},
{
- "id": 13278,
+ "id": 13747,
"properties": {
"facing": "east",
"half": "top",
@@ -174379,7 +178923,7 @@
}
},
{
- "id": 13279,
+ "id": 13748,
"properties": {
"facing": "east",
"half": "top",
@@ -174388,7 +178932,7 @@
}
},
{
- "id": 13280,
+ "id": 13749,
"properties": {
"facing": "east",
"half": "top",
@@ -174397,7 +178941,7 @@
}
},
{
- "id": 13281,
+ "id": 13750,
"properties": {
"facing": "east",
"half": "top",
@@ -174406,7 +178950,7 @@
}
},
{
- "id": 13282,
+ "id": 13751,
"properties": {
"facing": "east",
"half": "top",
@@ -174415,7 +178959,7 @@
}
},
{
- "id": 13283,
+ "id": 13752,
"properties": {
"facing": "east",
"half": "top",
@@ -174424,7 +178968,7 @@
}
},
{
- "id": 13284,
+ "id": 13753,
"properties": {
"facing": "east",
"half": "bottom",
@@ -174433,7 +178977,7 @@
}
},
{
- "id": 13285,
+ "id": 13754,
"properties": {
"facing": "east",
"half": "bottom",
@@ -174442,7 +178986,7 @@
}
},
{
- "id": 13286,
+ "id": 13755,
"properties": {
"facing": "east",
"half": "bottom",
@@ -174451,7 +178995,7 @@
}
},
{
- "id": 13287,
+ "id": 13756,
"properties": {
"facing": "east",
"half": "bottom",
@@ -174460,7 +179004,7 @@
}
},
{
- "id": 13288,
+ "id": 13757,
"properties": {
"facing": "east",
"half": "bottom",
@@ -174469,7 +179013,7 @@
}
},
{
- "id": 13289,
+ "id": 13758,
"properties": {
"facing": "east",
"half": "bottom",
@@ -174478,7 +179022,7 @@
}
},
{
- "id": 13290,
+ "id": 13759,
"properties": {
"facing": "east",
"half": "bottom",
@@ -174487,7 +179031,7 @@
}
},
{
- "id": 13291,
+ "id": 13760,
"properties": {
"facing": "east",
"half": "bottom",
@@ -174496,7 +179040,7 @@
}
},
{
- "id": 13292,
+ "id": 13761,
"properties": {
"facing": "east",
"half": "bottom",
@@ -174505,7 +179049,7 @@
}
},
{
- "id": 13293,
+ "id": 13762,
"properties": {
"facing": "east",
"half": "bottom",
@@ -174548,7 +179092,7 @@
},
"states": [
{
- "id": 16448,
+ "id": 16917,
"properties": {
"east": "none",
"north": "none",
@@ -174559,7 +179103,7 @@
}
},
{
- "id": 16449,
+ "id": 16918,
"properties": {
"east": "none",
"north": "none",
@@ -174570,7 +179114,7 @@
}
},
{
- "id": 16450,
+ "id": 16919,
"properties": {
"east": "none",
"north": "none",
@@ -174582,7 +179126,7 @@
},
{
"default": true,
- "id": 16451,
+ "id": 16920,
"properties": {
"east": "none",
"north": "none",
@@ -174593,7 +179137,7 @@
}
},
{
- "id": 16452,
+ "id": 16921,
"properties": {
"east": "none",
"north": "none",
@@ -174604,7 +179148,7 @@
}
},
{
- "id": 16453,
+ "id": 16922,
"properties": {
"east": "none",
"north": "none",
@@ -174615,7 +179159,7 @@
}
},
{
- "id": 16454,
+ "id": 16923,
"properties": {
"east": "none",
"north": "none",
@@ -174626,7 +179170,7 @@
}
},
{
- "id": 16455,
+ "id": 16924,
"properties": {
"east": "none",
"north": "none",
@@ -174637,7 +179181,7 @@
}
},
{
- "id": 16456,
+ "id": 16925,
"properties": {
"east": "none",
"north": "none",
@@ -174648,7 +179192,7 @@
}
},
{
- "id": 16457,
+ "id": 16926,
"properties": {
"east": "none",
"north": "none",
@@ -174659,7 +179203,7 @@
}
},
{
- "id": 16458,
+ "id": 16927,
"properties": {
"east": "none",
"north": "none",
@@ -174670,7 +179214,7 @@
}
},
{
- "id": 16459,
+ "id": 16928,
"properties": {
"east": "none",
"north": "none",
@@ -174681,7 +179225,7 @@
}
},
{
- "id": 16460,
+ "id": 16929,
"properties": {
"east": "none",
"north": "none",
@@ -174692,7 +179236,7 @@
}
},
{
- "id": 16461,
+ "id": 16930,
"properties": {
"east": "none",
"north": "none",
@@ -174703,7 +179247,7 @@
}
},
{
- "id": 16462,
+ "id": 16931,
"properties": {
"east": "none",
"north": "none",
@@ -174714,7 +179258,7 @@
}
},
{
- "id": 16463,
+ "id": 16932,
"properties": {
"east": "none",
"north": "none",
@@ -174725,7 +179269,7 @@
}
},
{
- "id": 16464,
+ "id": 16933,
"properties": {
"east": "none",
"north": "none",
@@ -174736,7 +179280,7 @@
}
},
{
- "id": 16465,
+ "id": 16934,
"properties": {
"east": "none",
"north": "none",
@@ -174747,7 +179291,7 @@
}
},
{
- "id": 16466,
+ "id": 16935,
"properties": {
"east": "none",
"north": "none",
@@ -174758,7 +179302,7 @@
}
},
{
- "id": 16467,
+ "id": 16936,
"properties": {
"east": "none",
"north": "none",
@@ -174769,7 +179313,7 @@
}
},
{
- "id": 16468,
+ "id": 16937,
"properties": {
"east": "none",
"north": "none",
@@ -174780,7 +179324,7 @@
}
},
{
- "id": 16469,
+ "id": 16938,
"properties": {
"east": "none",
"north": "none",
@@ -174791,7 +179335,7 @@
}
},
{
- "id": 16470,
+ "id": 16939,
"properties": {
"east": "none",
"north": "none",
@@ -174802,7 +179346,7 @@
}
},
{
- "id": 16471,
+ "id": 16940,
"properties": {
"east": "none",
"north": "none",
@@ -174813,7 +179357,7 @@
}
},
{
- "id": 16472,
+ "id": 16941,
"properties": {
"east": "none",
"north": "none",
@@ -174824,7 +179368,7 @@
}
},
{
- "id": 16473,
+ "id": 16942,
"properties": {
"east": "none",
"north": "none",
@@ -174835,7 +179379,7 @@
}
},
{
- "id": 16474,
+ "id": 16943,
"properties": {
"east": "none",
"north": "none",
@@ -174846,7 +179390,7 @@
}
},
{
- "id": 16475,
+ "id": 16944,
"properties": {
"east": "none",
"north": "none",
@@ -174857,7 +179401,7 @@
}
},
{
- "id": 16476,
+ "id": 16945,
"properties": {
"east": "none",
"north": "none",
@@ -174868,7 +179412,7 @@
}
},
{
- "id": 16477,
+ "id": 16946,
"properties": {
"east": "none",
"north": "none",
@@ -174879,7 +179423,7 @@
}
},
{
- "id": 16478,
+ "id": 16947,
"properties": {
"east": "none",
"north": "none",
@@ -174890,7 +179434,7 @@
}
},
{
- "id": 16479,
+ "id": 16948,
"properties": {
"east": "none",
"north": "none",
@@ -174901,7 +179445,7 @@
}
},
{
- "id": 16480,
+ "id": 16949,
"properties": {
"east": "none",
"north": "none",
@@ -174912,7 +179456,7 @@
}
},
{
- "id": 16481,
+ "id": 16950,
"properties": {
"east": "none",
"north": "none",
@@ -174923,7 +179467,7 @@
}
},
{
- "id": 16482,
+ "id": 16951,
"properties": {
"east": "none",
"north": "none",
@@ -174934,7 +179478,7 @@
}
},
{
- "id": 16483,
+ "id": 16952,
"properties": {
"east": "none",
"north": "none",
@@ -174945,7 +179489,7 @@
}
},
{
- "id": 16484,
+ "id": 16953,
"properties": {
"east": "none",
"north": "low",
@@ -174956,7 +179500,7 @@
}
},
{
- "id": 16485,
+ "id": 16954,
"properties": {
"east": "none",
"north": "low",
@@ -174967,7 +179511,7 @@
}
},
{
- "id": 16486,
+ "id": 16955,
"properties": {
"east": "none",
"north": "low",
@@ -174978,7 +179522,7 @@
}
},
{
- "id": 16487,
+ "id": 16956,
"properties": {
"east": "none",
"north": "low",
@@ -174989,7 +179533,7 @@
}
},
{
- "id": 16488,
+ "id": 16957,
"properties": {
"east": "none",
"north": "low",
@@ -175000,7 +179544,7 @@
}
},
{
- "id": 16489,
+ "id": 16958,
"properties": {
"east": "none",
"north": "low",
@@ -175011,7 +179555,7 @@
}
},
{
- "id": 16490,
+ "id": 16959,
"properties": {
"east": "none",
"north": "low",
@@ -175022,7 +179566,7 @@
}
},
{
- "id": 16491,
+ "id": 16960,
"properties": {
"east": "none",
"north": "low",
@@ -175033,7 +179577,7 @@
}
},
{
- "id": 16492,
+ "id": 16961,
"properties": {
"east": "none",
"north": "low",
@@ -175044,7 +179588,7 @@
}
},
{
- "id": 16493,
+ "id": 16962,
"properties": {
"east": "none",
"north": "low",
@@ -175055,7 +179599,7 @@
}
},
{
- "id": 16494,
+ "id": 16963,
"properties": {
"east": "none",
"north": "low",
@@ -175066,7 +179610,7 @@
}
},
{
- "id": 16495,
+ "id": 16964,
"properties": {
"east": "none",
"north": "low",
@@ -175077,7 +179621,7 @@
}
},
{
- "id": 16496,
+ "id": 16965,
"properties": {
"east": "none",
"north": "low",
@@ -175088,7 +179632,7 @@
}
},
{
- "id": 16497,
+ "id": 16966,
"properties": {
"east": "none",
"north": "low",
@@ -175099,7 +179643,7 @@
}
},
{
- "id": 16498,
+ "id": 16967,
"properties": {
"east": "none",
"north": "low",
@@ -175110,7 +179654,7 @@
}
},
{
- "id": 16499,
+ "id": 16968,
"properties": {
"east": "none",
"north": "low",
@@ -175121,7 +179665,7 @@
}
},
{
- "id": 16500,
+ "id": 16969,
"properties": {
"east": "none",
"north": "low",
@@ -175132,7 +179676,7 @@
}
},
{
- "id": 16501,
+ "id": 16970,
"properties": {
"east": "none",
"north": "low",
@@ -175143,7 +179687,7 @@
}
},
{
- "id": 16502,
+ "id": 16971,
"properties": {
"east": "none",
"north": "low",
@@ -175154,7 +179698,7 @@
}
},
{
- "id": 16503,
+ "id": 16972,
"properties": {
"east": "none",
"north": "low",
@@ -175165,7 +179709,7 @@
}
},
{
- "id": 16504,
+ "id": 16973,
"properties": {
"east": "none",
"north": "low",
@@ -175176,7 +179720,7 @@
}
},
{
- "id": 16505,
+ "id": 16974,
"properties": {
"east": "none",
"north": "low",
@@ -175187,7 +179731,7 @@
}
},
{
- "id": 16506,
+ "id": 16975,
"properties": {
"east": "none",
"north": "low",
@@ -175198,7 +179742,7 @@
}
},
{
- "id": 16507,
+ "id": 16976,
"properties": {
"east": "none",
"north": "low",
@@ -175209,7 +179753,7 @@
}
},
{
- "id": 16508,
+ "id": 16977,
"properties": {
"east": "none",
"north": "low",
@@ -175220,7 +179764,7 @@
}
},
{
- "id": 16509,
+ "id": 16978,
"properties": {
"east": "none",
"north": "low",
@@ -175231,7 +179775,7 @@
}
},
{
- "id": 16510,
+ "id": 16979,
"properties": {
"east": "none",
"north": "low",
@@ -175242,7 +179786,7 @@
}
},
{
- "id": 16511,
+ "id": 16980,
"properties": {
"east": "none",
"north": "low",
@@ -175253,7 +179797,7 @@
}
},
{
- "id": 16512,
+ "id": 16981,
"properties": {
"east": "none",
"north": "low",
@@ -175264,7 +179808,7 @@
}
},
{
- "id": 16513,
+ "id": 16982,
"properties": {
"east": "none",
"north": "low",
@@ -175275,7 +179819,7 @@
}
},
{
- "id": 16514,
+ "id": 16983,
"properties": {
"east": "none",
"north": "low",
@@ -175286,7 +179830,7 @@
}
},
{
- "id": 16515,
+ "id": 16984,
"properties": {
"east": "none",
"north": "low",
@@ -175297,7 +179841,7 @@
}
},
{
- "id": 16516,
+ "id": 16985,
"properties": {
"east": "none",
"north": "low",
@@ -175308,7 +179852,7 @@
}
},
{
- "id": 16517,
+ "id": 16986,
"properties": {
"east": "none",
"north": "low",
@@ -175319,7 +179863,7 @@
}
},
{
- "id": 16518,
+ "id": 16987,
"properties": {
"east": "none",
"north": "low",
@@ -175330,7 +179874,7 @@
}
},
{
- "id": 16519,
+ "id": 16988,
"properties": {
"east": "none",
"north": "low",
@@ -175341,7 +179885,7 @@
}
},
{
- "id": 16520,
+ "id": 16989,
"properties": {
"east": "none",
"north": "tall",
@@ -175352,7 +179896,7 @@
}
},
{
- "id": 16521,
+ "id": 16990,
"properties": {
"east": "none",
"north": "tall",
@@ -175363,7 +179907,7 @@
}
},
{
- "id": 16522,
+ "id": 16991,
"properties": {
"east": "none",
"north": "tall",
@@ -175374,7 +179918,7 @@
}
},
{
- "id": 16523,
+ "id": 16992,
"properties": {
"east": "none",
"north": "tall",
@@ -175385,7 +179929,7 @@
}
},
{
- "id": 16524,
+ "id": 16993,
"properties": {
"east": "none",
"north": "tall",
@@ -175396,7 +179940,7 @@
}
},
{
- "id": 16525,
+ "id": 16994,
"properties": {
"east": "none",
"north": "tall",
@@ -175407,7 +179951,7 @@
}
},
{
- "id": 16526,
+ "id": 16995,
"properties": {
"east": "none",
"north": "tall",
@@ -175418,7 +179962,7 @@
}
},
{
- "id": 16527,
+ "id": 16996,
"properties": {
"east": "none",
"north": "tall",
@@ -175429,7 +179973,7 @@
}
},
{
- "id": 16528,
+ "id": 16997,
"properties": {
"east": "none",
"north": "tall",
@@ -175440,7 +179984,7 @@
}
},
{
- "id": 16529,
+ "id": 16998,
"properties": {
"east": "none",
"north": "tall",
@@ -175451,7 +179995,7 @@
}
},
{
- "id": 16530,
+ "id": 16999,
"properties": {
"east": "none",
"north": "tall",
@@ -175462,7 +180006,7 @@
}
},
{
- "id": 16531,
+ "id": 17000,
"properties": {
"east": "none",
"north": "tall",
@@ -175473,7 +180017,7 @@
}
},
{
- "id": 16532,
+ "id": 17001,
"properties": {
"east": "none",
"north": "tall",
@@ -175484,7 +180028,7 @@
}
},
{
- "id": 16533,
+ "id": 17002,
"properties": {
"east": "none",
"north": "tall",
@@ -175495,7 +180039,7 @@
}
},
{
- "id": 16534,
+ "id": 17003,
"properties": {
"east": "none",
"north": "tall",
@@ -175506,7 +180050,7 @@
}
},
{
- "id": 16535,
+ "id": 17004,
"properties": {
"east": "none",
"north": "tall",
@@ -175517,7 +180061,7 @@
}
},
{
- "id": 16536,
+ "id": 17005,
"properties": {
"east": "none",
"north": "tall",
@@ -175528,7 +180072,7 @@
}
},
{
- "id": 16537,
+ "id": 17006,
"properties": {
"east": "none",
"north": "tall",
@@ -175539,7 +180083,7 @@
}
},
{
- "id": 16538,
+ "id": 17007,
"properties": {
"east": "none",
"north": "tall",
@@ -175550,7 +180094,7 @@
}
},
{
- "id": 16539,
+ "id": 17008,
"properties": {
"east": "none",
"north": "tall",
@@ -175561,7 +180105,7 @@
}
},
{
- "id": 16540,
+ "id": 17009,
"properties": {
"east": "none",
"north": "tall",
@@ -175572,7 +180116,7 @@
}
},
{
- "id": 16541,
+ "id": 17010,
"properties": {
"east": "none",
"north": "tall",
@@ -175583,7 +180127,7 @@
}
},
{
- "id": 16542,
+ "id": 17011,
"properties": {
"east": "none",
"north": "tall",
@@ -175594,7 +180138,7 @@
}
},
{
- "id": 16543,
+ "id": 17012,
"properties": {
"east": "none",
"north": "tall",
@@ -175605,7 +180149,7 @@
}
},
{
- "id": 16544,
+ "id": 17013,
"properties": {
"east": "none",
"north": "tall",
@@ -175616,7 +180160,7 @@
}
},
{
- "id": 16545,
+ "id": 17014,
"properties": {
"east": "none",
"north": "tall",
@@ -175627,7 +180171,7 @@
}
},
{
- "id": 16546,
+ "id": 17015,
"properties": {
"east": "none",
"north": "tall",
@@ -175638,7 +180182,7 @@
}
},
{
- "id": 16547,
+ "id": 17016,
"properties": {
"east": "none",
"north": "tall",
@@ -175649,7 +180193,7 @@
}
},
{
- "id": 16548,
+ "id": 17017,
"properties": {
"east": "none",
"north": "tall",
@@ -175660,7 +180204,7 @@
}
},
{
- "id": 16549,
+ "id": 17018,
"properties": {
"east": "none",
"north": "tall",
@@ -175671,7 +180215,7 @@
}
},
{
- "id": 16550,
+ "id": 17019,
"properties": {
"east": "none",
"north": "tall",
@@ -175682,7 +180226,7 @@
}
},
{
- "id": 16551,
+ "id": 17020,
"properties": {
"east": "none",
"north": "tall",
@@ -175693,7 +180237,7 @@
}
},
{
- "id": 16552,
+ "id": 17021,
"properties": {
"east": "none",
"north": "tall",
@@ -175704,7 +180248,7 @@
}
},
{
- "id": 16553,
+ "id": 17022,
"properties": {
"east": "none",
"north": "tall",
@@ -175715,7 +180259,7 @@
}
},
{
- "id": 16554,
+ "id": 17023,
"properties": {
"east": "none",
"north": "tall",
@@ -175726,7 +180270,7 @@
}
},
{
- "id": 16555,
+ "id": 17024,
"properties": {
"east": "none",
"north": "tall",
@@ -175737,7 +180281,7 @@
}
},
{
- "id": 16556,
+ "id": 17025,
"properties": {
"east": "low",
"north": "none",
@@ -175748,7 +180292,7 @@
}
},
{
- "id": 16557,
+ "id": 17026,
"properties": {
"east": "low",
"north": "none",
@@ -175759,7 +180303,7 @@
}
},
{
- "id": 16558,
+ "id": 17027,
"properties": {
"east": "low",
"north": "none",
@@ -175770,7 +180314,7 @@
}
},
{
- "id": 16559,
+ "id": 17028,
"properties": {
"east": "low",
"north": "none",
@@ -175781,7 +180325,7 @@
}
},
{
- "id": 16560,
+ "id": 17029,
"properties": {
"east": "low",
"north": "none",
@@ -175792,7 +180336,7 @@
}
},
{
- "id": 16561,
+ "id": 17030,
"properties": {
"east": "low",
"north": "none",
@@ -175803,7 +180347,7 @@
}
},
{
- "id": 16562,
+ "id": 17031,
"properties": {
"east": "low",
"north": "none",
@@ -175814,7 +180358,7 @@
}
},
{
- "id": 16563,
+ "id": 17032,
"properties": {
"east": "low",
"north": "none",
@@ -175825,7 +180369,7 @@
}
},
{
- "id": 16564,
+ "id": 17033,
"properties": {
"east": "low",
"north": "none",
@@ -175836,7 +180380,7 @@
}
},
{
- "id": 16565,
+ "id": 17034,
"properties": {
"east": "low",
"north": "none",
@@ -175847,7 +180391,7 @@
}
},
{
- "id": 16566,
+ "id": 17035,
"properties": {
"east": "low",
"north": "none",
@@ -175858,7 +180402,7 @@
}
},
{
- "id": 16567,
+ "id": 17036,
"properties": {
"east": "low",
"north": "none",
@@ -175869,7 +180413,7 @@
}
},
{
- "id": 16568,
+ "id": 17037,
"properties": {
"east": "low",
"north": "none",
@@ -175880,7 +180424,7 @@
}
},
{
- "id": 16569,
+ "id": 17038,
"properties": {
"east": "low",
"north": "none",
@@ -175891,7 +180435,7 @@
}
},
{
- "id": 16570,
+ "id": 17039,
"properties": {
"east": "low",
"north": "none",
@@ -175902,7 +180446,7 @@
}
},
{
- "id": 16571,
+ "id": 17040,
"properties": {
"east": "low",
"north": "none",
@@ -175913,7 +180457,7 @@
}
},
{
- "id": 16572,
+ "id": 17041,
"properties": {
"east": "low",
"north": "none",
@@ -175924,7 +180468,7 @@
}
},
{
- "id": 16573,
+ "id": 17042,
"properties": {
"east": "low",
"north": "none",
@@ -175935,7 +180479,7 @@
}
},
{
- "id": 16574,
+ "id": 17043,
"properties": {
"east": "low",
"north": "none",
@@ -175946,7 +180490,7 @@
}
},
{
- "id": 16575,
+ "id": 17044,
"properties": {
"east": "low",
"north": "none",
@@ -175957,7 +180501,7 @@
}
},
{
- "id": 16576,
+ "id": 17045,
"properties": {
"east": "low",
"north": "none",
@@ -175968,7 +180512,7 @@
}
},
{
- "id": 16577,
+ "id": 17046,
"properties": {
"east": "low",
"north": "none",
@@ -175979,7 +180523,7 @@
}
},
{
- "id": 16578,
+ "id": 17047,
"properties": {
"east": "low",
"north": "none",
@@ -175990,7 +180534,7 @@
}
},
{
- "id": 16579,
+ "id": 17048,
"properties": {
"east": "low",
"north": "none",
@@ -176001,7 +180545,7 @@
}
},
{
- "id": 16580,
+ "id": 17049,
"properties": {
"east": "low",
"north": "none",
@@ -176012,7 +180556,7 @@
}
},
{
- "id": 16581,
+ "id": 17050,
"properties": {
"east": "low",
"north": "none",
@@ -176023,7 +180567,7 @@
}
},
{
- "id": 16582,
+ "id": 17051,
"properties": {
"east": "low",
"north": "none",
@@ -176034,7 +180578,7 @@
}
},
{
- "id": 16583,
+ "id": 17052,
"properties": {
"east": "low",
"north": "none",
@@ -176045,7 +180589,7 @@
}
},
{
- "id": 16584,
+ "id": 17053,
"properties": {
"east": "low",
"north": "none",
@@ -176056,7 +180600,7 @@
}
},
{
- "id": 16585,
+ "id": 17054,
"properties": {
"east": "low",
"north": "none",
@@ -176067,7 +180611,7 @@
}
},
{
- "id": 16586,
+ "id": 17055,
"properties": {
"east": "low",
"north": "none",
@@ -176078,7 +180622,7 @@
}
},
{
- "id": 16587,
+ "id": 17056,
"properties": {
"east": "low",
"north": "none",
@@ -176089,7 +180633,7 @@
}
},
{
- "id": 16588,
+ "id": 17057,
"properties": {
"east": "low",
"north": "none",
@@ -176100,7 +180644,7 @@
}
},
{
- "id": 16589,
+ "id": 17058,
"properties": {
"east": "low",
"north": "none",
@@ -176111,7 +180655,7 @@
}
},
{
- "id": 16590,
+ "id": 17059,
"properties": {
"east": "low",
"north": "none",
@@ -176122,7 +180666,7 @@
}
},
{
- "id": 16591,
+ "id": 17060,
"properties": {
"east": "low",
"north": "none",
@@ -176133,7 +180677,7 @@
}
},
{
- "id": 16592,
+ "id": 17061,
"properties": {
"east": "low",
"north": "low",
@@ -176144,7 +180688,7 @@
}
},
{
- "id": 16593,
+ "id": 17062,
"properties": {
"east": "low",
"north": "low",
@@ -176155,7 +180699,7 @@
}
},
{
- "id": 16594,
+ "id": 17063,
"properties": {
"east": "low",
"north": "low",
@@ -176166,7 +180710,7 @@
}
},
{
- "id": 16595,
+ "id": 17064,
"properties": {
"east": "low",
"north": "low",
@@ -176177,7 +180721,7 @@
}
},
{
- "id": 16596,
+ "id": 17065,
"properties": {
"east": "low",
"north": "low",
@@ -176188,7 +180732,7 @@
}
},
{
- "id": 16597,
+ "id": 17066,
"properties": {
"east": "low",
"north": "low",
@@ -176199,7 +180743,7 @@
}
},
{
- "id": 16598,
+ "id": 17067,
"properties": {
"east": "low",
"north": "low",
@@ -176210,7 +180754,7 @@
}
},
{
- "id": 16599,
+ "id": 17068,
"properties": {
"east": "low",
"north": "low",
@@ -176221,7 +180765,7 @@
}
},
{
- "id": 16600,
+ "id": 17069,
"properties": {
"east": "low",
"north": "low",
@@ -176232,7 +180776,7 @@
}
},
{
- "id": 16601,
+ "id": 17070,
"properties": {
"east": "low",
"north": "low",
@@ -176243,7 +180787,7 @@
}
},
{
- "id": 16602,
+ "id": 17071,
"properties": {
"east": "low",
"north": "low",
@@ -176254,7 +180798,7 @@
}
},
{
- "id": 16603,
+ "id": 17072,
"properties": {
"east": "low",
"north": "low",
@@ -176265,7 +180809,7 @@
}
},
{
- "id": 16604,
+ "id": 17073,
"properties": {
"east": "low",
"north": "low",
@@ -176276,7 +180820,7 @@
}
},
{
- "id": 16605,
+ "id": 17074,
"properties": {
"east": "low",
"north": "low",
@@ -176287,7 +180831,7 @@
}
},
{
- "id": 16606,
+ "id": 17075,
"properties": {
"east": "low",
"north": "low",
@@ -176298,7 +180842,7 @@
}
},
{
- "id": 16607,
+ "id": 17076,
"properties": {
"east": "low",
"north": "low",
@@ -176309,7 +180853,7 @@
}
},
{
- "id": 16608,
+ "id": 17077,
"properties": {
"east": "low",
"north": "low",
@@ -176320,7 +180864,7 @@
}
},
{
- "id": 16609,
+ "id": 17078,
"properties": {
"east": "low",
"north": "low",
@@ -176331,7 +180875,7 @@
}
},
{
- "id": 16610,
+ "id": 17079,
"properties": {
"east": "low",
"north": "low",
@@ -176342,7 +180886,7 @@
}
},
{
- "id": 16611,
+ "id": 17080,
"properties": {
"east": "low",
"north": "low",
@@ -176353,7 +180897,7 @@
}
},
{
- "id": 16612,
+ "id": 17081,
"properties": {
"east": "low",
"north": "low",
@@ -176364,7 +180908,7 @@
}
},
{
- "id": 16613,
+ "id": 17082,
"properties": {
"east": "low",
"north": "low",
@@ -176375,7 +180919,7 @@
}
},
{
- "id": 16614,
+ "id": 17083,
"properties": {
"east": "low",
"north": "low",
@@ -176386,7 +180930,7 @@
}
},
{
- "id": 16615,
+ "id": 17084,
"properties": {
"east": "low",
"north": "low",
@@ -176397,7 +180941,7 @@
}
},
{
- "id": 16616,
+ "id": 17085,
"properties": {
"east": "low",
"north": "low",
@@ -176408,7 +180952,7 @@
}
},
{
- "id": 16617,
+ "id": 17086,
"properties": {
"east": "low",
"north": "low",
@@ -176419,7 +180963,7 @@
}
},
{
- "id": 16618,
+ "id": 17087,
"properties": {
"east": "low",
"north": "low",
@@ -176430,7 +180974,7 @@
}
},
{
- "id": 16619,
+ "id": 17088,
"properties": {
"east": "low",
"north": "low",
@@ -176441,7 +180985,7 @@
}
},
{
- "id": 16620,
+ "id": 17089,
"properties": {
"east": "low",
"north": "low",
@@ -176452,7 +180996,7 @@
}
},
{
- "id": 16621,
+ "id": 17090,
"properties": {
"east": "low",
"north": "low",
@@ -176463,7 +181007,7 @@
}
},
{
- "id": 16622,
+ "id": 17091,
"properties": {
"east": "low",
"north": "low",
@@ -176474,7 +181018,7 @@
}
},
{
- "id": 16623,
+ "id": 17092,
"properties": {
"east": "low",
"north": "low",
@@ -176485,7 +181029,7 @@
}
},
{
- "id": 16624,
+ "id": 17093,
"properties": {
"east": "low",
"north": "low",
@@ -176496,7 +181040,7 @@
}
},
{
- "id": 16625,
+ "id": 17094,
"properties": {
"east": "low",
"north": "low",
@@ -176507,7 +181051,7 @@
}
},
{
- "id": 16626,
+ "id": 17095,
"properties": {
"east": "low",
"north": "low",
@@ -176518,7 +181062,7 @@
}
},
{
- "id": 16627,
+ "id": 17096,
"properties": {
"east": "low",
"north": "low",
@@ -176529,7 +181073,7 @@
}
},
{
- "id": 16628,
+ "id": 17097,
"properties": {
"east": "low",
"north": "tall",
@@ -176540,7 +181084,7 @@
}
},
{
- "id": 16629,
+ "id": 17098,
"properties": {
"east": "low",
"north": "tall",
@@ -176551,7 +181095,7 @@
}
},
{
- "id": 16630,
+ "id": 17099,
"properties": {
"east": "low",
"north": "tall",
@@ -176562,7 +181106,7 @@
}
},
{
- "id": 16631,
+ "id": 17100,
"properties": {
"east": "low",
"north": "tall",
@@ -176573,7 +181117,7 @@
}
},
{
- "id": 16632,
+ "id": 17101,
"properties": {
"east": "low",
"north": "tall",
@@ -176584,7 +181128,7 @@
}
},
{
- "id": 16633,
+ "id": 17102,
"properties": {
"east": "low",
"north": "tall",
@@ -176595,7 +181139,7 @@
}
},
{
- "id": 16634,
+ "id": 17103,
"properties": {
"east": "low",
"north": "tall",
@@ -176606,7 +181150,7 @@
}
},
{
- "id": 16635,
+ "id": 17104,
"properties": {
"east": "low",
"north": "tall",
@@ -176617,7 +181161,7 @@
}
},
{
- "id": 16636,
+ "id": 17105,
"properties": {
"east": "low",
"north": "tall",
@@ -176628,7 +181172,7 @@
}
},
{
- "id": 16637,
+ "id": 17106,
"properties": {
"east": "low",
"north": "tall",
@@ -176639,7 +181183,7 @@
}
},
{
- "id": 16638,
+ "id": 17107,
"properties": {
"east": "low",
"north": "tall",
@@ -176650,7 +181194,7 @@
}
},
{
- "id": 16639,
+ "id": 17108,
"properties": {
"east": "low",
"north": "tall",
@@ -176661,7 +181205,7 @@
}
},
{
- "id": 16640,
+ "id": 17109,
"properties": {
"east": "low",
"north": "tall",
@@ -176672,7 +181216,7 @@
}
},
{
- "id": 16641,
+ "id": 17110,
"properties": {
"east": "low",
"north": "tall",
@@ -176683,7 +181227,7 @@
}
},
{
- "id": 16642,
+ "id": 17111,
"properties": {
"east": "low",
"north": "tall",
@@ -176694,7 +181238,7 @@
}
},
{
- "id": 16643,
+ "id": 17112,
"properties": {
"east": "low",
"north": "tall",
@@ -176705,7 +181249,7 @@
}
},
{
- "id": 16644,
+ "id": 17113,
"properties": {
"east": "low",
"north": "tall",
@@ -176716,7 +181260,7 @@
}
},
{
- "id": 16645,
+ "id": 17114,
"properties": {
"east": "low",
"north": "tall",
@@ -176727,7 +181271,7 @@
}
},
{
- "id": 16646,
+ "id": 17115,
"properties": {
"east": "low",
"north": "tall",
@@ -176738,7 +181282,7 @@
}
},
{
- "id": 16647,
+ "id": 17116,
"properties": {
"east": "low",
"north": "tall",
@@ -176749,7 +181293,7 @@
}
},
{
- "id": 16648,
+ "id": 17117,
"properties": {
"east": "low",
"north": "tall",
@@ -176760,7 +181304,7 @@
}
},
{
- "id": 16649,
+ "id": 17118,
"properties": {
"east": "low",
"north": "tall",
@@ -176771,7 +181315,7 @@
}
},
{
- "id": 16650,
+ "id": 17119,
"properties": {
"east": "low",
"north": "tall",
@@ -176782,7 +181326,7 @@
}
},
{
- "id": 16651,
+ "id": 17120,
"properties": {
"east": "low",
"north": "tall",
@@ -176793,7 +181337,7 @@
}
},
{
- "id": 16652,
+ "id": 17121,
"properties": {
"east": "low",
"north": "tall",
@@ -176804,7 +181348,7 @@
}
},
{
- "id": 16653,
+ "id": 17122,
"properties": {
"east": "low",
"north": "tall",
@@ -176815,7 +181359,7 @@
}
},
{
- "id": 16654,
+ "id": 17123,
"properties": {
"east": "low",
"north": "tall",
@@ -176826,7 +181370,7 @@
}
},
{
- "id": 16655,
+ "id": 17124,
"properties": {
"east": "low",
"north": "tall",
@@ -176837,7 +181381,7 @@
}
},
{
- "id": 16656,
+ "id": 17125,
"properties": {
"east": "low",
"north": "tall",
@@ -176848,7 +181392,7 @@
}
},
{
- "id": 16657,
+ "id": 17126,
"properties": {
"east": "low",
"north": "tall",
@@ -176859,7 +181403,7 @@
}
},
{
- "id": 16658,
+ "id": 17127,
"properties": {
"east": "low",
"north": "tall",
@@ -176870,7 +181414,7 @@
}
},
{
- "id": 16659,
+ "id": 17128,
"properties": {
"east": "low",
"north": "tall",
@@ -176881,7 +181425,7 @@
}
},
{
- "id": 16660,
+ "id": 17129,
"properties": {
"east": "low",
"north": "tall",
@@ -176892,7 +181436,7 @@
}
},
{
- "id": 16661,
+ "id": 17130,
"properties": {
"east": "low",
"north": "tall",
@@ -176903,7 +181447,7 @@
}
},
{
- "id": 16662,
+ "id": 17131,
"properties": {
"east": "low",
"north": "tall",
@@ -176914,7 +181458,7 @@
}
},
{
- "id": 16663,
+ "id": 17132,
"properties": {
"east": "low",
"north": "tall",
@@ -176925,7 +181469,7 @@
}
},
{
- "id": 16664,
+ "id": 17133,
"properties": {
"east": "tall",
"north": "none",
@@ -176936,7 +181480,7 @@
}
},
{
- "id": 16665,
+ "id": 17134,
"properties": {
"east": "tall",
"north": "none",
@@ -176947,7 +181491,7 @@
}
},
{
- "id": 16666,
+ "id": 17135,
"properties": {
"east": "tall",
"north": "none",
@@ -176958,7 +181502,7 @@
}
},
{
- "id": 16667,
+ "id": 17136,
"properties": {
"east": "tall",
"north": "none",
@@ -176969,7 +181513,7 @@
}
},
{
- "id": 16668,
+ "id": 17137,
"properties": {
"east": "tall",
"north": "none",
@@ -176980,7 +181524,7 @@
}
},
{
- "id": 16669,
+ "id": 17138,
"properties": {
"east": "tall",
"north": "none",
@@ -176991,7 +181535,7 @@
}
},
{
- "id": 16670,
+ "id": 17139,
"properties": {
"east": "tall",
"north": "none",
@@ -177002,7 +181546,7 @@
}
},
{
- "id": 16671,
+ "id": 17140,
"properties": {
"east": "tall",
"north": "none",
@@ -177013,7 +181557,7 @@
}
},
{
- "id": 16672,
+ "id": 17141,
"properties": {
"east": "tall",
"north": "none",
@@ -177024,7 +181568,7 @@
}
},
{
- "id": 16673,
+ "id": 17142,
"properties": {
"east": "tall",
"north": "none",
@@ -177035,7 +181579,7 @@
}
},
{
- "id": 16674,
+ "id": 17143,
"properties": {
"east": "tall",
"north": "none",
@@ -177046,7 +181590,7 @@
}
},
{
- "id": 16675,
+ "id": 17144,
"properties": {
"east": "tall",
"north": "none",
@@ -177057,7 +181601,7 @@
}
},
{
- "id": 16676,
+ "id": 17145,
"properties": {
"east": "tall",
"north": "none",
@@ -177068,7 +181612,7 @@
}
},
{
- "id": 16677,
+ "id": 17146,
"properties": {
"east": "tall",
"north": "none",
@@ -177079,7 +181623,7 @@
}
},
{
- "id": 16678,
+ "id": 17147,
"properties": {
"east": "tall",
"north": "none",
@@ -177090,7 +181634,7 @@
}
},
{
- "id": 16679,
+ "id": 17148,
"properties": {
"east": "tall",
"north": "none",
@@ -177101,7 +181645,7 @@
}
},
{
- "id": 16680,
+ "id": 17149,
"properties": {
"east": "tall",
"north": "none",
@@ -177112,7 +181656,7 @@
}
},
{
- "id": 16681,
+ "id": 17150,
"properties": {
"east": "tall",
"north": "none",
@@ -177123,7 +181667,7 @@
}
},
{
- "id": 16682,
+ "id": 17151,
"properties": {
"east": "tall",
"north": "none",
@@ -177134,7 +181678,7 @@
}
},
{
- "id": 16683,
+ "id": 17152,
"properties": {
"east": "tall",
"north": "none",
@@ -177145,7 +181689,7 @@
}
},
{
- "id": 16684,
+ "id": 17153,
"properties": {
"east": "tall",
"north": "none",
@@ -177156,7 +181700,7 @@
}
},
{
- "id": 16685,
+ "id": 17154,
"properties": {
"east": "tall",
"north": "none",
@@ -177167,7 +181711,7 @@
}
},
{
- "id": 16686,
+ "id": 17155,
"properties": {
"east": "tall",
"north": "none",
@@ -177178,7 +181722,7 @@
}
},
{
- "id": 16687,
+ "id": 17156,
"properties": {
"east": "tall",
"north": "none",
@@ -177189,7 +181733,7 @@
}
},
{
- "id": 16688,
+ "id": 17157,
"properties": {
"east": "tall",
"north": "none",
@@ -177200,7 +181744,7 @@
}
},
{
- "id": 16689,
+ "id": 17158,
"properties": {
"east": "tall",
"north": "none",
@@ -177211,7 +181755,7 @@
}
},
{
- "id": 16690,
+ "id": 17159,
"properties": {
"east": "tall",
"north": "none",
@@ -177222,7 +181766,7 @@
}
},
{
- "id": 16691,
+ "id": 17160,
"properties": {
"east": "tall",
"north": "none",
@@ -177233,7 +181777,7 @@
}
},
{
- "id": 16692,
+ "id": 17161,
"properties": {
"east": "tall",
"north": "none",
@@ -177244,7 +181788,7 @@
}
},
{
- "id": 16693,
+ "id": 17162,
"properties": {
"east": "tall",
"north": "none",
@@ -177255,7 +181799,7 @@
}
},
{
- "id": 16694,
+ "id": 17163,
"properties": {
"east": "tall",
"north": "none",
@@ -177266,7 +181810,7 @@
}
},
{
- "id": 16695,
+ "id": 17164,
"properties": {
"east": "tall",
"north": "none",
@@ -177277,7 +181821,7 @@
}
},
{
- "id": 16696,
+ "id": 17165,
"properties": {
"east": "tall",
"north": "none",
@@ -177288,7 +181832,7 @@
}
},
{
- "id": 16697,
+ "id": 17166,
"properties": {
"east": "tall",
"north": "none",
@@ -177299,7 +181843,7 @@
}
},
{
- "id": 16698,
+ "id": 17167,
"properties": {
"east": "tall",
"north": "none",
@@ -177310,7 +181854,7 @@
}
},
{
- "id": 16699,
+ "id": 17168,
"properties": {
"east": "tall",
"north": "none",
@@ -177321,7 +181865,7 @@
}
},
{
- "id": 16700,
+ "id": 17169,
"properties": {
"east": "tall",
"north": "low",
@@ -177332,7 +181876,7 @@
}
},
{
- "id": 16701,
+ "id": 17170,
"properties": {
"east": "tall",
"north": "low",
@@ -177343,7 +181887,7 @@
}
},
{
- "id": 16702,
+ "id": 17171,
"properties": {
"east": "tall",
"north": "low",
@@ -177354,7 +181898,7 @@
}
},
{
- "id": 16703,
+ "id": 17172,
"properties": {
"east": "tall",
"north": "low",
@@ -177365,7 +181909,7 @@
}
},
{
- "id": 16704,
+ "id": 17173,
"properties": {
"east": "tall",
"north": "low",
@@ -177376,7 +181920,7 @@
}
},
{
- "id": 16705,
+ "id": 17174,
"properties": {
"east": "tall",
"north": "low",
@@ -177387,7 +181931,7 @@
}
},
{
- "id": 16706,
+ "id": 17175,
"properties": {
"east": "tall",
"north": "low",
@@ -177398,7 +181942,7 @@
}
},
{
- "id": 16707,
+ "id": 17176,
"properties": {
"east": "tall",
"north": "low",
@@ -177409,7 +181953,7 @@
}
},
{
- "id": 16708,
+ "id": 17177,
"properties": {
"east": "tall",
"north": "low",
@@ -177420,7 +181964,7 @@
}
},
{
- "id": 16709,
+ "id": 17178,
"properties": {
"east": "tall",
"north": "low",
@@ -177431,7 +181975,7 @@
}
},
{
- "id": 16710,
+ "id": 17179,
"properties": {
"east": "tall",
"north": "low",
@@ -177442,7 +181986,7 @@
}
},
{
- "id": 16711,
+ "id": 17180,
"properties": {
"east": "tall",
"north": "low",
@@ -177453,7 +181997,7 @@
}
},
{
- "id": 16712,
+ "id": 17181,
"properties": {
"east": "tall",
"north": "low",
@@ -177464,7 +182008,7 @@
}
},
{
- "id": 16713,
+ "id": 17182,
"properties": {
"east": "tall",
"north": "low",
@@ -177475,7 +182019,7 @@
}
},
{
- "id": 16714,
+ "id": 17183,
"properties": {
"east": "tall",
"north": "low",
@@ -177486,7 +182030,7 @@
}
},
{
- "id": 16715,
+ "id": 17184,
"properties": {
"east": "tall",
"north": "low",
@@ -177497,7 +182041,7 @@
}
},
{
- "id": 16716,
+ "id": 17185,
"properties": {
"east": "tall",
"north": "low",
@@ -177508,7 +182052,7 @@
}
},
{
- "id": 16717,
+ "id": 17186,
"properties": {
"east": "tall",
"north": "low",
@@ -177519,7 +182063,7 @@
}
},
{
- "id": 16718,
+ "id": 17187,
"properties": {
"east": "tall",
"north": "low",
@@ -177530,7 +182074,7 @@
}
},
{
- "id": 16719,
+ "id": 17188,
"properties": {
"east": "tall",
"north": "low",
@@ -177541,7 +182085,7 @@
}
},
{
- "id": 16720,
+ "id": 17189,
"properties": {
"east": "tall",
"north": "low",
@@ -177552,7 +182096,7 @@
}
},
{
- "id": 16721,
+ "id": 17190,
"properties": {
"east": "tall",
"north": "low",
@@ -177563,7 +182107,7 @@
}
},
{
- "id": 16722,
+ "id": 17191,
"properties": {
"east": "tall",
"north": "low",
@@ -177574,7 +182118,7 @@
}
},
{
- "id": 16723,
+ "id": 17192,
"properties": {
"east": "tall",
"north": "low",
@@ -177585,7 +182129,7 @@
}
},
{
- "id": 16724,
+ "id": 17193,
"properties": {
"east": "tall",
"north": "low",
@@ -177596,7 +182140,7 @@
}
},
{
- "id": 16725,
+ "id": 17194,
"properties": {
"east": "tall",
"north": "low",
@@ -177607,7 +182151,7 @@
}
},
{
- "id": 16726,
+ "id": 17195,
"properties": {
"east": "tall",
"north": "low",
@@ -177618,7 +182162,7 @@
}
},
{
- "id": 16727,
+ "id": 17196,
"properties": {
"east": "tall",
"north": "low",
@@ -177629,7 +182173,7 @@
}
},
{
- "id": 16728,
+ "id": 17197,
"properties": {
"east": "tall",
"north": "low",
@@ -177640,7 +182184,7 @@
}
},
{
- "id": 16729,
+ "id": 17198,
"properties": {
"east": "tall",
"north": "low",
@@ -177651,7 +182195,7 @@
}
},
{
- "id": 16730,
+ "id": 17199,
"properties": {
"east": "tall",
"north": "low",
@@ -177662,7 +182206,7 @@
}
},
{
- "id": 16731,
+ "id": 17200,
"properties": {
"east": "tall",
"north": "low",
@@ -177673,7 +182217,7 @@
}
},
{
- "id": 16732,
+ "id": 17201,
"properties": {
"east": "tall",
"north": "low",
@@ -177684,7 +182228,7 @@
}
},
{
- "id": 16733,
+ "id": 17202,
"properties": {
"east": "tall",
"north": "low",
@@ -177695,7 +182239,7 @@
}
},
{
- "id": 16734,
+ "id": 17203,
"properties": {
"east": "tall",
"north": "low",
@@ -177706,7 +182250,7 @@
}
},
{
- "id": 16735,
+ "id": 17204,
"properties": {
"east": "tall",
"north": "low",
@@ -177717,7 +182261,7 @@
}
},
{
- "id": 16736,
+ "id": 17205,
"properties": {
"east": "tall",
"north": "tall",
@@ -177728,7 +182272,7 @@
}
},
{
- "id": 16737,
+ "id": 17206,
"properties": {
"east": "tall",
"north": "tall",
@@ -177739,7 +182283,7 @@
}
},
{
- "id": 16738,
+ "id": 17207,
"properties": {
"east": "tall",
"north": "tall",
@@ -177750,7 +182294,7 @@
}
},
{
- "id": 16739,
+ "id": 17208,
"properties": {
"east": "tall",
"north": "tall",
@@ -177761,7 +182305,7 @@
}
},
{
- "id": 16740,
+ "id": 17209,
"properties": {
"east": "tall",
"north": "tall",
@@ -177772,7 +182316,7 @@
}
},
{
- "id": 16741,
+ "id": 17210,
"properties": {
"east": "tall",
"north": "tall",
@@ -177783,7 +182327,7 @@
}
},
{
- "id": 16742,
+ "id": 17211,
"properties": {
"east": "tall",
"north": "tall",
@@ -177794,7 +182338,7 @@
}
},
{
- "id": 16743,
+ "id": 17212,
"properties": {
"east": "tall",
"north": "tall",
@@ -177805,7 +182349,7 @@
}
},
{
- "id": 16744,
+ "id": 17213,
"properties": {
"east": "tall",
"north": "tall",
@@ -177816,7 +182360,7 @@
}
},
{
- "id": 16745,
+ "id": 17214,
"properties": {
"east": "tall",
"north": "tall",
@@ -177827,7 +182371,7 @@
}
},
{
- "id": 16746,
+ "id": 17215,
"properties": {
"east": "tall",
"north": "tall",
@@ -177838,7 +182382,7 @@
}
},
{
- "id": 16747,
+ "id": 17216,
"properties": {
"east": "tall",
"north": "tall",
@@ -177849,7 +182393,7 @@
}
},
{
- "id": 16748,
+ "id": 17217,
"properties": {
"east": "tall",
"north": "tall",
@@ -177860,7 +182404,7 @@
}
},
{
- "id": 16749,
+ "id": 17218,
"properties": {
"east": "tall",
"north": "tall",
@@ -177871,7 +182415,7 @@
}
},
{
- "id": 16750,
+ "id": 17219,
"properties": {
"east": "tall",
"north": "tall",
@@ -177882,7 +182426,7 @@
}
},
{
- "id": 16751,
+ "id": 17220,
"properties": {
"east": "tall",
"north": "tall",
@@ -177893,7 +182437,7 @@
}
},
{
- "id": 16752,
+ "id": 17221,
"properties": {
"east": "tall",
"north": "tall",
@@ -177904,7 +182448,7 @@
}
},
{
- "id": 16753,
+ "id": 17222,
"properties": {
"east": "tall",
"north": "tall",
@@ -177915,7 +182459,7 @@
}
},
{
- "id": 16754,
+ "id": 17223,
"properties": {
"east": "tall",
"north": "tall",
@@ -177926,7 +182470,7 @@
}
},
{
- "id": 16755,
+ "id": 17224,
"properties": {
"east": "tall",
"north": "tall",
@@ -177937,7 +182481,7 @@
}
},
{
- "id": 16756,
+ "id": 17225,
"properties": {
"east": "tall",
"north": "tall",
@@ -177948,7 +182492,7 @@
}
},
{
- "id": 16757,
+ "id": 17226,
"properties": {
"east": "tall",
"north": "tall",
@@ -177959,7 +182503,7 @@
}
},
{
- "id": 16758,
+ "id": 17227,
"properties": {
"east": "tall",
"north": "tall",
@@ -177970,7 +182514,7 @@
}
},
{
- "id": 16759,
+ "id": 17228,
"properties": {
"east": "tall",
"north": "tall",
@@ -177981,7 +182525,7 @@
}
},
{
- "id": 16760,
+ "id": 17229,
"properties": {
"east": "tall",
"north": "tall",
@@ -177992,7 +182536,7 @@
}
},
{
- "id": 16761,
+ "id": 17230,
"properties": {
"east": "tall",
"north": "tall",
@@ -178003,7 +182547,7 @@
}
},
{
- "id": 16762,
+ "id": 17231,
"properties": {
"east": "tall",
"north": "tall",
@@ -178014,7 +182558,7 @@
}
},
{
- "id": 16763,
+ "id": 17232,
"properties": {
"east": "tall",
"north": "tall",
@@ -178025,7 +182569,7 @@
}
},
{
- "id": 16764,
+ "id": 17233,
"properties": {
"east": "tall",
"north": "tall",
@@ -178036,7 +182580,7 @@
}
},
{
- "id": 16765,
+ "id": 17234,
"properties": {
"east": "tall",
"north": "tall",
@@ -178047,7 +182591,7 @@
}
},
{
- "id": 16766,
+ "id": 17235,
"properties": {
"east": "tall",
"north": "tall",
@@ -178058,7 +182602,7 @@
}
},
{
- "id": 16767,
+ "id": 17236,
"properties": {
"east": "tall",
"north": "tall",
@@ -178069,7 +182613,7 @@
}
},
{
- "id": 16768,
+ "id": 17237,
"properties": {
"east": "tall",
"north": "tall",
@@ -178080,7 +182624,7 @@
}
},
{
- "id": 16769,
+ "id": 17238,
"properties": {
"east": "tall",
"north": "tall",
@@ -178091,7 +182635,7 @@
}
},
{
- "id": 16770,
+ "id": 17239,
"properties": {
"east": "tall",
"north": "tall",
@@ -178102,7 +182646,7 @@
}
},
{
- "id": 16771,
+ "id": 17240,
"properties": {
"east": "tall",
"north": "tall",
@@ -178118,7 +182662,7 @@
"states": [
{
"default": true,
- "id": 11920
+ "id": 12389
}
]
},
@@ -178126,7 +182670,7 @@
"states": [
{
"default": true,
- "id": 110
+ "id": 117
}
]
},
@@ -178134,7 +182678,7 @@
"states": [
{
"default": true,
- "id": 10602
+ "id": 10934
}
]
},
@@ -178152,21 +182696,21 @@
},
"states": [
{
- "id": 10805,
+ "id": 11143,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 10806,
+ "id": 11144,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 10807,
+ "id": 11145,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -178174,21 +182718,21 @@
},
{
"default": true,
- "id": 10808,
+ "id": 11146,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 10809,
+ "id": 11147,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 10810,
+ "id": 11148,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -178222,7 +182766,7 @@
},
"states": [
{
- "id": 10605,
+ "id": 10937,
"properties": {
"facing": "north",
"half": "top",
@@ -178231,7 +182775,7 @@
}
},
{
- "id": 10606,
+ "id": 10938,
"properties": {
"facing": "north",
"half": "top",
@@ -178240,7 +182784,7 @@
}
},
{
- "id": 10607,
+ "id": 10939,
"properties": {
"facing": "north",
"half": "top",
@@ -178249,7 +182793,7 @@
}
},
{
- "id": 10608,
+ "id": 10940,
"properties": {
"facing": "north",
"half": "top",
@@ -178258,7 +182802,7 @@
}
},
{
- "id": 10609,
+ "id": 10941,
"properties": {
"facing": "north",
"half": "top",
@@ -178267,7 +182811,7 @@
}
},
{
- "id": 10610,
+ "id": 10942,
"properties": {
"facing": "north",
"half": "top",
@@ -178276,7 +182820,7 @@
}
},
{
- "id": 10611,
+ "id": 10943,
"properties": {
"facing": "north",
"half": "top",
@@ -178285,7 +182829,7 @@
}
},
{
- "id": 10612,
+ "id": 10944,
"properties": {
"facing": "north",
"half": "top",
@@ -178294,7 +182838,7 @@
}
},
{
- "id": 10613,
+ "id": 10945,
"properties": {
"facing": "north",
"half": "top",
@@ -178303,7 +182847,7 @@
}
},
{
- "id": 10614,
+ "id": 10946,
"properties": {
"facing": "north",
"half": "top",
@@ -178312,7 +182856,7 @@
}
},
{
- "id": 10615,
+ "id": 10947,
"properties": {
"facing": "north",
"half": "bottom",
@@ -178322,7 +182866,7 @@
},
{
"default": true,
- "id": 10616,
+ "id": 10948,
"properties": {
"facing": "north",
"half": "bottom",
@@ -178331,7 +182875,7 @@
}
},
{
- "id": 10617,
+ "id": 10949,
"properties": {
"facing": "north",
"half": "bottom",
@@ -178340,7 +182884,7 @@
}
},
{
- "id": 10618,
+ "id": 10950,
"properties": {
"facing": "north",
"half": "bottom",
@@ -178349,7 +182893,7 @@
}
},
{
- "id": 10619,
+ "id": 10951,
"properties": {
"facing": "north",
"half": "bottom",
@@ -178358,7 +182902,7 @@
}
},
{
- "id": 10620,
+ "id": 10952,
"properties": {
"facing": "north",
"half": "bottom",
@@ -178367,7 +182911,7 @@
}
},
{
- "id": 10621,
+ "id": 10953,
"properties": {
"facing": "north",
"half": "bottom",
@@ -178376,7 +182920,7 @@
}
},
{
- "id": 10622,
+ "id": 10954,
"properties": {
"facing": "north",
"half": "bottom",
@@ -178385,7 +182929,7 @@
}
},
{
- "id": 10623,
+ "id": 10955,
"properties": {
"facing": "north",
"half": "bottom",
@@ -178394,7 +182938,7 @@
}
},
{
- "id": 10624,
+ "id": 10956,
"properties": {
"facing": "north",
"half": "bottom",
@@ -178403,7 +182947,7 @@
}
},
{
- "id": 10625,
+ "id": 10957,
"properties": {
"facing": "south",
"half": "top",
@@ -178412,7 +182956,7 @@
}
},
{
- "id": 10626,
+ "id": 10958,
"properties": {
"facing": "south",
"half": "top",
@@ -178421,7 +182965,7 @@
}
},
{
- "id": 10627,
+ "id": 10959,
"properties": {
"facing": "south",
"half": "top",
@@ -178430,7 +182974,7 @@
}
},
{
- "id": 10628,
+ "id": 10960,
"properties": {
"facing": "south",
"half": "top",
@@ -178439,7 +182983,7 @@
}
},
{
- "id": 10629,
+ "id": 10961,
"properties": {
"facing": "south",
"half": "top",
@@ -178448,7 +182992,7 @@
}
},
{
- "id": 10630,
+ "id": 10962,
"properties": {
"facing": "south",
"half": "top",
@@ -178457,7 +183001,7 @@
}
},
{
- "id": 10631,
+ "id": 10963,
"properties": {
"facing": "south",
"half": "top",
@@ -178466,7 +183010,7 @@
}
},
{
- "id": 10632,
+ "id": 10964,
"properties": {
"facing": "south",
"half": "top",
@@ -178475,7 +183019,7 @@
}
},
{
- "id": 10633,
+ "id": 10965,
"properties": {
"facing": "south",
"half": "top",
@@ -178484,7 +183028,7 @@
}
},
{
- "id": 10634,
+ "id": 10966,
"properties": {
"facing": "south",
"half": "top",
@@ -178493,7 +183037,7 @@
}
},
{
- "id": 10635,
+ "id": 10967,
"properties": {
"facing": "south",
"half": "bottom",
@@ -178502,7 +183046,7 @@
}
},
{
- "id": 10636,
+ "id": 10968,
"properties": {
"facing": "south",
"half": "bottom",
@@ -178511,7 +183055,7 @@
}
},
{
- "id": 10637,
+ "id": 10969,
"properties": {
"facing": "south",
"half": "bottom",
@@ -178520,7 +183064,7 @@
}
},
{
- "id": 10638,
+ "id": 10970,
"properties": {
"facing": "south",
"half": "bottom",
@@ -178529,7 +183073,7 @@
}
},
{
- "id": 10639,
+ "id": 10971,
"properties": {
"facing": "south",
"half": "bottom",
@@ -178538,7 +183082,7 @@
}
},
{
- "id": 10640,
+ "id": 10972,
"properties": {
"facing": "south",
"half": "bottom",
@@ -178547,7 +183091,7 @@
}
},
{
- "id": 10641,
+ "id": 10973,
"properties": {
"facing": "south",
"half": "bottom",
@@ -178556,7 +183100,7 @@
}
},
{
- "id": 10642,
+ "id": 10974,
"properties": {
"facing": "south",
"half": "bottom",
@@ -178565,7 +183109,7 @@
}
},
{
- "id": 10643,
+ "id": 10975,
"properties": {
"facing": "south",
"half": "bottom",
@@ -178574,7 +183118,7 @@
}
},
{
- "id": 10644,
+ "id": 10976,
"properties": {
"facing": "south",
"half": "bottom",
@@ -178583,7 +183127,7 @@
}
},
{
- "id": 10645,
+ "id": 10977,
"properties": {
"facing": "west",
"half": "top",
@@ -178592,7 +183136,7 @@
}
},
{
- "id": 10646,
+ "id": 10978,
"properties": {
"facing": "west",
"half": "top",
@@ -178601,7 +183145,7 @@
}
},
{
- "id": 10647,
+ "id": 10979,
"properties": {
"facing": "west",
"half": "top",
@@ -178610,7 +183154,7 @@
}
},
{
- "id": 10648,
+ "id": 10980,
"properties": {
"facing": "west",
"half": "top",
@@ -178619,7 +183163,7 @@
}
},
{
- "id": 10649,
+ "id": 10981,
"properties": {
"facing": "west",
"half": "top",
@@ -178628,7 +183172,7 @@
}
},
{
- "id": 10650,
+ "id": 10982,
"properties": {
"facing": "west",
"half": "top",
@@ -178637,7 +183181,7 @@
}
},
{
- "id": 10651,
+ "id": 10983,
"properties": {
"facing": "west",
"half": "top",
@@ -178646,7 +183190,7 @@
}
},
{
- "id": 10652,
+ "id": 10984,
"properties": {
"facing": "west",
"half": "top",
@@ -178655,7 +183199,7 @@
}
},
{
- "id": 10653,
+ "id": 10985,
"properties": {
"facing": "west",
"half": "top",
@@ -178664,7 +183208,7 @@
}
},
{
- "id": 10654,
+ "id": 10986,
"properties": {
"facing": "west",
"half": "top",
@@ -178673,7 +183217,7 @@
}
},
{
- "id": 10655,
+ "id": 10987,
"properties": {
"facing": "west",
"half": "bottom",
@@ -178682,7 +183226,7 @@
}
},
{
- "id": 10656,
+ "id": 10988,
"properties": {
"facing": "west",
"half": "bottom",
@@ -178691,7 +183235,7 @@
}
},
{
- "id": 10657,
+ "id": 10989,
"properties": {
"facing": "west",
"half": "bottom",
@@ -178700,7 +183244,7 @@
}
},
{
- "id": 10658,
+ "id": 10990,
"properties": {
"facing": "west",
"half": "bottom",
@@ -178709,7 +183253,7 @@
}
},
{
- "id": 10659,
+ "id": 10991,
"properties": {
"facing": "west",
"half": "bottom",
@@ -178718,7 +183262,7 @@
}
},
{
- "id": 10660,
+ "id": 10992,
"properties": {
"facing": "west",
"half": "bottom",
@@ -178727,7 +183271,7 @@
}
},
{
- "id": 10661,
+ "id": 10993,
"properties": {
"facing": "west",
"half": "bottom",
@@ -178736,7 +183280,7 @@
}
},
{
- "id": 10662,
+ "id": 10994,
"properties": {
"facing": "west",
"half": "bottom",
@@ -178745,7 +183289,7 @@
}
},
{
- "id": 10663,
+ "id": 10995,
"properties": {
"facing": "west",
"half": "bottom",
@@ -178754,7 +183298,7 @@
}
},
{
- "id": 10664,
+ "id": 10996,
"properties": {
"facing": "west",
"half": "bottom",
@@ -178763,7 +183307,7 @@
}
},
{
- "id": 10665,
+ "id": 10997,
"properties": {
"facing": "east",
"half": "top",
@@ -178772,7 +183316,7 @@
}
},
{
- "id": 10666,
+ "id": 10998,
"properties": {
"facing": "east",
"half": "top",
@@ -178781,7 +183325,7 @@
}
},
{
- "id": 10667,
+ "id": 10999,
"properties": {
"facing": "east",
"half": "top",
@@ -178790,7 +183334,7 @@
}
},
{
- "id": 10668,
+ "id": 11000,
"properties": {
"facing": "east",
"half": "top",
@@ -178799,7 +183343,7 @@
}
},
{
- "id": 10669,
+ "id": 11001,
"properties": {
"facing": "east",
"half": "top",
@@ -178808,7 +183352,7 @@
}
},
{
- "id": 10670,
+ "id": 11002,
"properties": {
"facing": "east",
"half": "top",
@@ -178817,7 +183361,7 @@
}
},
{
- "id": 10671,
+ "id": 11003,
"properties": {
"facing": "east",
"half": "top",
@@ -178826,7 +183370,7 @@
}
},
{
- "id": 10672,
+ "id": 11004,
"properties": {
"facing": "east",
"half": "top",
@@ -178835,7 +183379,7 @@
}
},
{
- "id": 10673,
+ "id": 11005,
"properties": {
"facing": "east",
"half": "top",
@@ -178844,7 +183388,7 @@
}
},
{
- "id": 10674,
+ "id": 11006,
"properties": {
"facing": "east",
"half": "top",
@@ -178853,7 +183397,7 @@
}
},
{
- "id": 10675,
+ "id": 11007,
"properties": {
"facing": "east",
"half": "bottom",
@@ -178862,7 +183406,7 @@
}
},
{
- "id": 10676,
+ "id": 11008,
"properties": {
"facing": "east",
"half": "bottom",
@@ -178871,7 +183415,7 @@
}
},
{
- "id": 10677,
+ "id": 11009,
"properties": {
"facing": "east",
"half": "bottom",
@@ -178880,7 +183424,7 @@
}
},
{
- "id": 10678,
+ "id": 11010,
"properties": {
"facing": "east",
"half": "bottom",
@@ -178889,7 +183433,7 @@
}
},
{
- "id": 10679,
+ "id": 11011,
"properties": {
"facing": "east",
"half": "bottom",
@@ -178898,7 +183442,7 @@
}
},
{
- "id": 10680,
+ "id": 11012,
"properties": {
"facing": "east",
"half": "bottom",
@@ -178907,7 +183451,7 @@
}
},
{
- "id": 10681,
+ "id": 11013,
"properties": {
"facing": "east",
"half": "bottom",
@@ -178916,7 +183460,7 @@
}
},
{
- "id": 10682,
+ "id": 11014,
"properties": {
"facing": "east",
"half": "bottom",
@@ -178925,7 +183469,7 @@
}
},
{
- "id": 10683,
+ "id": 11015,
"properties": {
"facing": "east",
"half": "bottom",
@@ -178934,7 +183478,7 @@
}
},
{
- "id": 10684,
+ "id": 11016,
"properties": {
"facing": "east",
"half": "bottom",
@@ -178977,7 +183521,7 @@
},
"states": [
{
- "id": 14180,
+ "id": 14649,
"properties": {
"east": "none",
"north": "none",
@@ -178988,7 +183532,7 @@
}
},
{
- "id": 14181,
+ "id": 14650,
"properties": {
"east": "none",
"north": "none",
@@ -178999,7 +183543,7 @@
}
},
{
- "id": 14182,
+ "id": 14651,
"properties": {
"east": "none",
"north": "none",
@@ -179011,7 +183555,7 @@
},
{
"default": true,
- "id": 14183,
+ "id": 14652,
"properties": {
"east": "none",
"north": "none",
@@ -179022,7 +183566,7 @@
}
},
{
- "id": 14184,
+ "id": 14653,
"properties": {
"east": "none",
"north": "none",
@@ -179033,7 +183577,7 @@
}
},
{
- "id": 14185,
+ "id": 14654,
"properties": {
"east": "none",
"north": "none",
@@ -179044,7 +183588,7 @@
}
},
{
- "id": 14186,
+ "id": 14655,
"properties": {
"east": "none",
"north": "none",
@@ -179055,7 +183599,7 @@
}
},
{
- "id": 14187,
+ "id": 14656,
"properties": {
"east": "none",
"north": "none",
@@ -179066,7 +183610,7 @@
}
},
{
- "id": 14188,
+ "id": 14657,
"properties": {
"east": "none",
"north": "none",
@@ -179077,7 +183621,7 @@
}
},
{
- "id": 14189,
+ "id": 14658,
"properties": {
"east": "none",
"north": "none",
@@ -179088,7 +183632,7 @@
}
},
{
- "id": 14190,
+ "id": 14659,
"properties": {
"east": "none",
"north": "none",
@@ -179099,7 +183643,7 @@
}
},
{
- "id": 14191,
+ "id": 14660,
"properties": {
"east": "none",
"north": "none",
@@ -179110,7 +183654,7 @@
}
},
{
- "id": 14192,
+ "id": 14661,
"properties": {
"east": "none",
"north": "none",
@@ -179121,7 +183665,7 @@
}
},
{
- "id": 14193,
+ "id": 14662,
"properties": {
"east": "none",
"north": "none",
@@ -179132,7 +183676,7 @@
}
},
{
- "id": 14194,
+ "id": 14663,
"properties": {
"east": "none",
"north": "none",
@@ -179143,7 +183687,7 @@
}
},
{
- "id": 14195,
+ "id": 14664,
"properties": {
"east": "none",
"north": "none",
@@ -179154,7 +183698,7 @@
}
},
{
- "id": 14196,
+ "id": 14665,
"properties": {
"east": "none",
"north": "none",
@@ -179165,7 +183709,7 @@
}
},
{
- "id": 14197,
+ "id": 14666,
"properties": {
"east": "none",
"north": "none",
@@ -179176,7 +183720,7 @@
}
},
{
- "id": 14198,
+ "id": 14667,
"properties": {
"east": "none",
"north": "none",
@@ -179187,7 +183731,7 @@
}
},
{
- "id": 14199,
+ "id": 14668,
"properties": {
"east": "none",
"north": "none",
@@ -179198,7 +183742,7 @@
}
},
{
- "id": 14200,
+ "id": 14669,
"properties": {
"east": "none",
"north": "none",
@@ -179209,7 +183753,7 @@
}
},
{
- "id": 14201,
+ "id": 14670,
"properties": {
"east": "none",
"north": "none",
@@ -179220,7 +183764,7 @@
}
},
{
- "id": 14202,
+ "id": 14671,
"properties": {
"east": "none",
"north": "none",
@@ -179231,7 +183775,7 @@
}
},
{
- "id": 14203,
+ "id": 14672,
"properties": {
"east": "none",
"north": "none",
@@ -179242,7 +183786,7 @@
}
},
{
- "id": 14204,
+ "id": 14673,
"properties": {
"east": "none",
"north": "none",
@@ -179253,7 +183797,7 @@
}
},
{
- "id": 14205,
+ "id": 14674,
"properties": {
"east": "none",
"north": "none",
@@ -179264,7 +183808,7 @@
}
},
{
- "id": 14206,
+ "id": 14675,
"properties": {
"east": "none",
"north": "none",
@@ -179275,7 +183819,7 @@
}
},
{
- "id": 14207,
+ "id": 14676,
"properties": {
"east": "none",
"north": "none",
@@ -179286,7 +183830,7 @@
}
},
{
- "id": 14208,
+ "id": 14677,
"properties": {
"east": "none",
"north": "none",
@@ -179297,7 +183841,7 @@
}
},
{
- "id": 14209,
+ "id": 14678,
"properties": {
"east": "none",
"north": "none",
@@ -179308,7 +183852,7 @@
}
},
{
- "id": 14210,
+ "id": 14679,
"properties": {
"east": "none",
"north": "none",
@@ -179319,7 +183863,7 @@
}
},
{
- "id": 14211,
+ "id": 14680,
"properties": {
"east": "none",
"north": "none",
@@ -179330,7 +183874,7 @@
}
},
{
- "id": 14212,
+ "id": 14681,
"properties": {
"east": "none",
"north": "none",
@@ -179341,7 +183885,7 @@
}
},
{
- "id": 14213,
+ "id": 14682,
"properties": {
"east": "none",
"north": "none",
@@ -179352,7 +183896,7 @@
}
},
{
- "id": 14214,
+ "id": 14683,
"properties": {
"east": "none",
"north": "none",
@@ -179363,7 +183907,7 @@
}
},
{
- "id": 14215,
+ "id": 14684,
"properties": {
"east": "none",
"north": "none",
@@ -179374,7 +183918,7 @@
}
},
{
- "id": 14216,
+ "id": 14685,
"properties": {
"east": "none",
"north": "low",
@@ -179385,7 +183929,7 @@
}
},
{
- "id": 14217,
+ "id": 14686,
"properties": {
"east": "none",
"north": "low",
@@ -179396,7 +183940,7 @@
}
},
{
- "id": 14218,
+ "id": 14687,
"properties": {
"east": "none",
"north": "low",
@@ -179407,7 +183951,7 @@
}
},
{
- "id": 14219,
+ "id": 14688,
"properties": {
"east": "none",
"north": "low",
@@ -179418,7 +183962,7 @@
}
},
{
- "id": 14220,
+ "id": 14689,
"properties": {
"east": "none",
"north": "low",
@@ -179429,7 +183973,7 @@
}
},
{
- "id": 14221,
+ "id": 14690,
"properties": {
"east": "none",
"north": "low",
@@ -179440,7 +183984,7 @@
}
},
{
- "id": 14222,
+ "id": 14691,
"properties": {
"east": "none",
"north": "low",
@@ -179451,7 +183995,7 @@
}
},
{
- "id": 14223,
+ "id": 14692,
"properties": {
"east": "none",
"north": "low",
@@ -179462,7 +184006,7 @@
}
},
{
- "id": 14224,
+ "id": 14693,
"properties": {
"east": "none",
"north": "low",
@@ -179473,7 +184017,7 @@
}
},
{
- "id": 14225,
+ "id": 14694,
"properties": {
"east": "none",
"north": "low",
@@ -179484,7 +184028,7 @@
}
},
{
- "id": 14226,
+ "id": 14695,
"properties": {
"east": "none",
"north": "low",
@@ -179495,7 +184039,7 @@
}
},
{
- "id": 14227,
+ "id": 14696,
"properties": {
"east": "none",
"north": "low",
@@ -179506,7 +184050,7 @@
}
},
{
- "id": 14228,
+ "id": 14697,
"properties": {
"east": "none",
"north": "low",
@@ -179517,7 +184061,7 @@
}
},
{
- "id": 14229,
+ "id": 14698,
"properties": {
"east": "none",
"north": "low",
@@ -179528,7 +184072,7 @@
}
},
{
- "id": 14230,
+ "id": 14699,
"properties": {
"east": "none",
"north": "low",
@@ -179539,7 +184083,7 @@
}
},
{
- "id": 14231,
+ "id": 14700,
"properties": {
"east": "none",
"north": "low",
@@ -179550,7 +184094,7 @@
}
},
{
- "id": 14232,
+ "id": 14701,
"properties": {
"east": "none",
"north": "low",
@@ -179561,7 +184105,7 @@
}
},
{
- "id": 14233,
+ "id": 14702,
"properties": {
"east": "none",
"north": "low",
@@ -179572,7 +184116,7 @@
}
},
{
- "id": 14234,
+ "id": 14703,
"properties": {
"east": "none",
"north": "low",
@@ -179583,7 +184127,7 @@
}
},
{
- "id": 14235,
+ "id": 14704,
"properties": {
"east": "none",
"north": "low",
@@ -179594,7 +184138,7 @@
}
},
{
- "id": 14236,
+ "id": 14705,
"properties": {
"east": "none",
"north": "low",
@@ -179605,7 +184149,7 @@
}
},
{
- "id": 14237,
+ "id": 14706,
"properties": {
"east": "none",
"north": "low",
@@ -179616,7 +184160,7 @@
}
},
{
- "id": 14238,
+ "id": 14707,
"properties": {
"east": "none",
"north": "low",
@@ -179627,7 +184171,7 @@
}
},
{
- "id": 14239,
+ "id": 14708,
"properties": {
"east": "none",
"north": "low",
@@ -179638,7 +184182,7 @@
}
},
{
- "id": 14240,
+ "id": 14709,
"properties": {
"east": "none",
"north": "low",
@@ -179649,7 +184193,7 @@
}
},
{
- "id": 14241,
+ "id": 14710,
"properties": {
"east": "none",
"north": "low",
@@ -179660,7 +184204,7 @@
}
},
{
- "id": 14242,
+ "id": 14711,
"properties": {
"east": "none",
"north": "low",
@@ -179671,7 +184215,7 @@
}
},
{
- "id": 14243,
+ "id": 14712,
"properties": {
"east": "none",
"north": "low",
@@ -179682,7 +184226,7 @@
}
},
{
- "id": 14244,
+ "id": 14713,
"properties": {
"east": "none",
"north": "low",
@@ -179693,7 +184237,7 @@
}
},
{
- "id": 14245,
+ "id": 14714,
"properties": {
"east": "none",
"north": "low",
@@ -179704,7 +184248,7 @@
}
},
{
- "id": 14246,
+ "id": 14715,
"properties": {
"east": "none",
"north": "low",
@@ -179715,7 +184259,7 @@
}
},
{
- "id": 14247,
+ "id": 14716,
"properties": {
"east": "none",
"north": "low",
@@ -179726,7 +184270,7 @@
}
},
{
- "id": 14248,
+ "id": 14717,
"properties": {
"east": "none",
"north": "low",
@@ -179737,7 +184281,7 @@
}
},
{
- "id": 14249,
+ "id": 14718,
"properties": {
"east": "none",
"north": "low",
@@ -179748,7 +184292,7 @@
}
},
{
- "id": 14250,
+ "id": 14719,
"properties": {
"east": "none",
"north": "low",
@@ -179759,7 +184303,7 @@
}
},
{
- "id": 14251,
+ "id": 14720,
"properties": {
"east": "none",
"north": "low",
@@ -179770,7 +184314,7 @@
}
},
{
- "id": 14252,
+ "id": 14721,
"properties": {
"east": "none",
"north": "tall",
@@ -179781,7 +184325,7 @@
}
},
{
- "id": 14253,
+ "id": 14722,
"properties": {
"east": "none",
"north": "tall",
@@ -179792,7 +184336,7 @@
}
},
{
- "id": 14254,
+ "id": 14723,
"properties": {
"east": "none",
"north": "tall",
@@ -179803,7 +184347,7 @@
}
},
{
- "id": 14255,
+ "id": 14724,
"properties": {
"east": "none",
"north": "tall",
@@ -179814,7 +184358,7 @@
}
},
{
- "id": 14256,
+ "id": 14725,
"properties": {
"east": "none",
"north": "tall",
@@ -179825,7 +184369,7 @@
}
},
{
- "id": 14257,
+ "id": 14726,
"properties": {
"east": "none",
"north": "tall",
@@ -179836,7 +184380,7 @@
}
},
{
- "id": 14258,
+ "id": 14727,
"properties": {
"east": "none",
"north": "tall",
@@ -179847,7 +184391,7 @@
}
},
{
- "id": 14259,
+ "id": 14728,
"properties": {
"east": "none",
"north": "tall",
@@ -179858,7 +184402,7 @@
}
},
{
- "id": 14260,
+ "id": 14729,
"properties": {
"east": "none",
"north": "tall",
@@ -179869,7 +184413,7 @@
}
},
{
- "id": 14261,
+ "id": 14730,
"properties": {
"east": "none",
"north": "tall",
@@ -179880,7 +184424,7 @@
}
},
{
- "id": 14262,
+ "id": 14731,
"properties": {
"east": "none",
"north": "tall",
@@ -179891,7 +184435,7 @@
}
},
{
- "id": 14263,
+ "id": 14732,
"properties": {
"east": "none",
"north": "tall",
@@ -179902,7 +184446,7 @@
}
},
{
- "id": 14264,
+ "id": 14733,
"properties": {
"east": "none",
"north": "tall",
@@ -179913,7 +184457,7 @@
}
},
{
- "id": 14265,
+ "id": 14734,
"properties": {
"east": "none",
"north": "tall",
@@ -179924,7 +184468,7 @@
}
},
{
- "id": 14266,
+ "id": 14735,
"properties": {
"east": "none",
"north": "tall",
@@ -179935,7 +184479,7 @@
}
},
{
- "id": 14267,
+ "id": 14736,
"properties": {
"east": "none",
"north": "tall",
@@ -179946,7 +184490,7 @@
}
},
{
- "id": 14268,
+ "id": 14737,
"properties": {
"east": "none",
"north": "tall",
@@ -179957,7 +184501,7 @@
}
},
{
- "id": 14269,
+ "id": 14738,
"properties": {
"east": "none",
"north": "tall",
@@ -179968,7 +184512,7 @@
}
},
{
- "id": 14270,
+ "id": 14739,
"properties": {
"east": "none",
"north": "tall",
@@ -179979,7 +184523,7 @@
}
},
{
- "id": 14271,
+ "id": 14740,
"properties": {
"east": "none",
"north": "tall",
@@ -179990,7 +184534,7 @@
}
},
{
- "id": 14272,
+ "id": 14741,
"properties": {
"east": "none",
"north": "tall",
@@ -180001,7 +184545,7 @@
}
},
{
- "id": 14273,
+ "id": 14742,
"properties": {
"east": "none",
"north": "tall",
@@ -180012,7 +184556,7 @@
}
},
{
- "id": 14274,
+ "id": 14743,
"properties": {
"east": "none",
"north": "tall",
@@ -180023,7 +184567,7 @@
}
},
{
- "id": 14275,
+ "id": 14744,
"properties": {
"east": "none",
"north": "tall",
@@ -180034,7 +184578,7 @@
}
},
{
- "id": 14276,
+ "id": 14745,
"properties": {
"east": "none",
"north": "tall",
@@ -180045,7 +184589,7 @@
}
},
{
- "id": 14277,
+ "id": 14746,
"properties": {
"east": "none",
"north": "tall",
@@ -180056,7 +184600,7 @@
}
},
{
- "id": 14278,
+ "id": 14747,
"properties": {
"east": "none",
"north": "tall",
@@ -180067,7 +184611,7 @@
}
},
{
- "id": 14279,
+ "id": 14748,
"properties": {
"east": "none",
"north": "tall",
@@ -180078,7 +184622,7 @@
}
},
{
- "id": 14280,
+ "id": 14749,
"properties": {
"east": "none",
"north": "tall",
@@ -180089,7 +184633,7 @@
}
},
{
- "id": 14281,
+ "id": 14750,
"properties": {
"east": "none",
"north": "tall",
@@ -180100,7 +184644,7 @@
}
},
{
- "id": 14282,
+ "id": 14751,
"properties": {
"east": "none",
"north": "tall",
@@ -180111,7 +184655,7 @@
}
},
{
- "id": 14283,
+ "id": 14752,
"properties": {
"east": "none",
"north": "tall",
@@ -180122,7 +184666,7 @@
}
},
{
- "id": 14284,
+ "id": 14753,
"properties": {
"east": "none",
"north": "tall",
@@ -180133,7 +184677,7 @@
}
},
{
- "id": 14285,
+ "id": 14754,
"properties": {
"east": "none",
"north": "tall",
@@ -180144,7 +184688,7 @@
}
},
{
- "id": 14286,
+ "id": 14755,
"properties": {
"east": "none",
"north": "tall",
@@ -180155,7 +184699,7 @@
}
},
{
- "id": 14287,
+ "id": 14756,
"properties": {
"east": "none",
"north": "tall",
@@ -180166,7 +184710,7 @@
}
},
{
- "id": 14288,
+ "id": 14757,
"properties": {
"east": "low",
"north": "none",
@@ -180177,7 +184721,7 @@
}
},
{
- "id": 14289,
+ "id": 14758,
"properties": {
"east": "low",
"north": "none",
@@ -180188,7 +184732,7 @@
}
},
{
- "id": 14290,
+ "id": 14759,
"properties": {
"east": "low",
"north": "none",
@@ -180199,7 +184743,7 @@
}
},
{
- "id": 14291,
+ "id": 14760,
"properties": {
"east": "low",
"north": "none",
@@ -180210,7 +184754,7 @@
}
},
{
- "id": 14292,
+ "id": 14761,
"properties": {
"east": "low",
"north": "none",
@@ -180221,7 +184765,7 @@
}
},
{
- "id": 14293,
+ "id": 14762,
"properties": {
"east": "low",
"north": "none",
@@ -180232,7 +184776,7 @@
}
},
{
- "id": 14294,
+ "id": 14763,
"properties": {
"east": "low",
"north": "none",
@@ -180243,7 +184787,7 @@
}
},
{
- "id": 14295,
+ "id": 14764,
"properties": {
"east": "low",
"north": "none",
@@ -180254,7 +184798,7 @@
}
},
{
- "id": 14296,
+ "id": 14765,
"properties": {
"east": "low",
"north": "none",
@@ -180265,7 +184809,7 @@
}
},
{
- "id": 14297,
+ "id": 14766,
"properties": {
"east": "low",
"north": "none",
@@ -180276,7 +184820,7 @@
}
},
{
- "id": 14298,
+ "id": 14767,
"properties": {
"east": "low",
"north": "none",
@@ -180287,7 +184831,7 @@
}
},
{
- "id": 14299,
+ "id": 14768,
"properties": {
"east": "low",
"north": "none",
@@ -180298,7 +184842,7 @@
}
},
{
- "id": 14300,
+ "id": 14769,
"properties": {
"east": "low",
"north": "none",
@@ -180309,7 +184853,7 @@
}
},
{
- "id": 14301,
+ "id": 14770,
"properties": {
"east": "low",
"north": "none",
@@ -180320,7 +184864,7 @@
}
},
{
- "id": 14302,
+ "id": 14771,
"properties": {
"east": "low",
"north": "none",
@@ -180331,7 +184875,7 @@
}
},
{
- "id": 14303,
+ "id": 14772,
"properties": {
"east": "low",
"north": "none",
@@ -180342,7 +184886,7 @@
}
},
{
- "id": 14304,
+ "id": 14773,
"properties": {
"east": "low",
"north": "none",
@@ -180353,7 +184897,7 @@
}
},
{
- "id": 14305,
+ "id": 14774,
"properties": {
"east": "low",
"north": "none",
@@ -180364,7 +184908,7 @@
}
},
{
- "id": 14306,
+ "id": 14775,
"properties": {
"east": "low",
"north": "none",
@@ -180375,7 +184919,7 @@
}
},
{
- "id": 14307,
+ "id": 14776,
"properties": {
"east": "low",
"north": "none",
@@ -180386,7 +184930,7 @@
}
},
{
- "id": 14308,
+ "id": 14777,
"properties": {
"east": "low",
"north": "none",
@@ -180397,7 +184941,7 @@
}
},
{
- "id": 14309,
+ "id": 14778,
"properties": {
"east": "low",
"north": "none",
@@ -180408,7 +184952,7 @@
}
},
{
- "id": 14310,
+ "id": 14779,
"properties": {
"east": "low",
"north": "none",
@@ -180419,7 +184963,7 @@
}
},
{
- "id": 14311,
+ "id": 14780,
"properties": {
"east": "low",
"north": "none",
@@ -180430,7 +184974,7 @@
}
},
{
- "id": 14312,
+ "id": 14781,
"properties": {
"east": "low",
"north": "none",
@@ -180441,7 +184985,7 @@
}
},
{
- "id": 14313,
+ "id": 14782,
"properties": {
"east": "low",
"north": "none",
@@ -180452,7 +184996,7 @@
}
},
{
- "id": 14314,
+ "id": 14783,
"properties": {
"east": "low",
"north": "none",
@@ -180463,7 +185007,7 @@
}
},
{
- "id": 14315,
+ "id": 14784,
"properties": {
"east": "low",
"north": "none",
@@ -180474,7 +185018,7 @@
}
},
{
- "id": 14316,
+ "id": 14785,
"properties": {
"east": "low",
"north": "none",
@@ -180485,7 +185029,7 @@
}
},
{
- "id": 14317,
+ "id": 14786,
"properties": {
"east": "low",
"north": "none",
@@ -180496,7 +185040,7 @@
}
},
{
- "id": 14318,
+ "id": 14787,
"properties": {
"east": "low",
"north": "none",
@@ -180507,7 +185051,7 @@
}
},
{
- "id": 14319,
+ "id": 14788,
"properties": {
"east": "low",
"north": "none",
@@ -180518,7 +185062,7 @@
}
},
{
- "id": 14320,
+ "id": 14789,
"properties": {
"east": "low",
"north": "none",
@@ -180529,7 +185073,7 @@
}
},
{
- "id": 14321,
+ "id": 14790,
"properties": {
"east": "low",
"north": "none",
@@ -180540,7 +185084,7 @@
}
},
{
- "id": 14322,
+ "id": 14791,
"properties": {
"east": "low",
"north": "none",
@@ -180551,7 +185095,7 @@
}
},
{
- "id": 14323,
+ "id": 14792,
"properties": {
"east": "low",
"north": "none",
@@ -180562,7 +185106,7 @@
}
},
{
- "id": 14324,
+ "id": 14793,
"properties": {
"east": "low",
"north": "low",
@@ -180573,7 +185117,7 @@
}
},
{
- "id": 14325,
+ "id": 14794,
"properties": {
"east": "low",
"north": "low",
@@ -180584,7 +185128,7 @@
}
},
{
- "id": 14326,
+ "id": 14795,
"properties": {
"east": "low",
"north": "low",
@@ -180595,7 +185139,7 @@
}
},
{
- "id": 14327,
+ "id": 14796,
"properties": {
"east": "low",
"north": "low",
@@ -180606,7 +185150,7 @@
}
},
{
- "id": 14328,
+ "id": 14797,
"properties": {
"east": "low",
"north": "low",
@@ -180617,7 +185161,7 @@
}
},
{
- "id": 14329,
+ "id": 14798,
"properties": {
"east": "low",
"north": "low",
@@ -180628,7 +185172,7 @@
}
},
{
- "id": 14330,
+ "id": 14799,
"properties": {
"east": "low",
"north": "low",
@@ -180639,7 +185183,7 @@
}
},
{
- "id": 14331,
+ "id": 14800,
"properties": {
"east": "low",
"north": "low",
@@ -180650,7 +185194,7 @@
}
},
{
- "id": 14332,
+ "id": 14801,
"properties": {
"east": "low",
"north": "low",
@@ -180661,7 +185205,7 @@
}
},
{
- "id": 14333,
+ "id": 14802,
"properties": {
"east": "low",
"north": "low",
@@ -180672,7 +185216,7 @@
}
},
{
- "id": 14334,
+ "id": 14803,
"properties": {
"east": "low",
"north": "low",
@@ -180683,7 +185227,7 @@
}
},
{
- "id": 14335,
+ "id": 14804,
"properties": {
"east": "low",
"north": "low",
@@ -180694,7 +185238,7 @@
}
},
{
- "id": 14336,
+ "id": 14805,
"properties": {
"east": "low",
"north": "low",
@@ -180705,7 +185249,7 @@
}
},
{
- "id": 14337,
+ "id": 14806,
"properties": {
"east": "low",
"north": "low",
@@ -180716,7 +185260,7 @@
}
},
{
- "id": 14338,
+ "id": 14807,
"properties": {
"east": "low",
"north": "low",
@@ -180727,7 +185271,7 @@
}
},
{
- "id": 14339,
+ "id": 14808,
"properties": {
"east": "low",
"north": "low",
@@ -180738,7 +185282,7 @@
}
},
{
- "id": 14340,
+ "id": 14809,
"properties": {
"east": "low",
"north": "low",
@@ -180749,7 +185293,7 @@
}
},
{
- "id": 14341,
+ "id": 14810,
"properties": {
"east": "low",
"north": "low",
@@ -180760,7 +185304,7 @@
}
},
{
- "id": 14342,
+ "id": 14811,
"properties": {
"east": "low",
"north": "low",
@@ -180771,7 +185315,7 @@
}
},
{
- "id": 14343,
+ "id": 14812,
"properties": {
"east": "low",
"north": "low",
@@ -180782,7 +185326,7 @@
}
},
{
- "id": 14344,
+ "id": 14813,
"properties": {
"east": "low",
"north": "low",
@@ -180793,7 +185337,7 @@
}
},
{
- "id": 14345,
+ "id": 14814,
"properties": {
"east": "low",
"north": "low",
@@ -180804,7 +185348,7 @@
}
},
{
- "id": 14346,
+ "id": 14815,
"properties": {
"east": "low",
"north": "low",
@@ -180815,7 +185359,7 @@
}
},
{
- "id": 14347,
+ "id": 14816,
"properties": {
"east": "low",
"north": "low",
@@ -180826,7 +185370,7 @@
}
},
{
- "id": 14348,
+ "id": 14817,
"properties": {
"east": "low",
"north": "low",
@@ -180837,7 +185381,7 @@
}
},
{
- "id": 14349,
+ "id": 14818,
"properties": {
"east": "low",
"north": "low",
@@ -180848,7 +185392,7 @@
}
},
{
- "id": 14350,
+ "id": 14819,
"properties": {
"east": "low",
"north": "low",
@@ -180859,7 +185403,7 @@
}
},
{
- "id": 14351,
+ "id": 14820,
"properties": {
"east": "low",
"north": "low",
@@ -180870,7 +185414,7 @@
}
},
{
- "id": 14352,
+ "id": 14821,
"properties": {
"east": "low",
"north": "low",
@@ -180881,7 +185425,7 @@
}
},
{
- "id": 14353,
+ "id": 14822,
"properties": {
"east": "low",
"north": "low",
@@ -180892,7 +185436,7 @@
}
},
{
- "id": 14354,
+ "id": 14823,
"properties": {
"east": "low",
"north": "low",
@@ -180903,7 +185447,7 @@
}
},
{
- "id": 14355,
+ "id": 14824,
"properties": {
"east": "low",
"north": "low",
@@ -180914,7 +185458,7 @@
}
},
{
- "id": 14356,
+ "id": 14825,
"properties": {
"east": "low",
"north": "low",
@@ -180925,7 +185469,7 @@
}
},
{
- "id": 14357,
+ "id": 14826,
"properties": {
"east": "low",
"north": "low",
@@ -180936,7 +185480,7 @@
}
},
{
- "id": 14358,
+ "id": 14827,
"properties": {
"east": "low",
"north": "low",
@@ -180947,7 +185491,7 @@
}
},
{
- "id": 14359,
+ "id": 14828,
"properties": {
"east": "low",
"north": "low",
@@ -180958,7 +185502,7 @@
}
},
{
- "id": 14360,
+ "id": 14829,
"properties": {
"east": "low",
"north": "tall",
@@ -180969,7 +185513,7 @@
}
},
{
- "id": 14361,
+ "id": 14830,
"properties": {
"east": "low",
"north": "tall",
@@ -180980,7 +185524,7 @@
}
},
{
- "id": 14362,
+ "id": 14831,
"properties": {
"east": "low",
"north": "tall",
@@ -180991,7 +185535,7 @@
}
},
{
- "id": 14363,
+ "id": 14832,
"properties": {
"east": "low",
"north": "tall",
@@ -181002,7 +185546,7 @@
}
},
{
- "id": 14364,
+ "id": 14833,
"properties": {
"east": "low",
"north": "tall",
@@ -181013,7 +185557,7 @@
}
},
{
- "id": 14365,
+ "id": 14834,
"properties": {
"east": "low",
"north": "tall",
@@ -181024,7 +185568,7 @@
}
},
{
- "id": 14366,
+ "id": 14835,
"properties": {
"east": "low",
"north": "tall",
@@ -181035,7 +185579,7 @@
}
},
{
- "id": 14367,
+ "id": 14836,
"properties": {
"east": "low",
"north": "tall",
@@ -181046,7 +185590,7 @@
}
},
{
- "id": 14368,
+ "id": 14837,
"properties": {
"east": "low",
"north": "tall",
@@ -181057,7 +185601,7 @@
}
},
{
- "id": 14369,
+ "id": 14838,
"properties": {
"east": "low",
"north": "tall",
@@ -181068,7 +185612,7 @@
}
},
{
- "id": 14370,
+ "id": 14839,
"properties": {
"east": "low",
"north": "tall",
@@ -181079,7 +185623,7 @@
}
},
{
- "id": 14371,
+ "id": 14840,
"properties": {
"east": "low",
"north": "tall",
@@ -181090,7 +185634,7 @@
}
},
{
- "id": 14372,
+ "id": 14841,
"properties": {
"east": "low",
"north": "tall",
@@ -181101,7 +185645,7 @@
}
},
{
- "id": 14373,
+ "id": 14842,
"properties": {
"east": "low",
"north": "tall",
@@ -181112,7 +185656,7 @@
}
},
{
- "id": 14374,
+ "id": 14843,
"properties": {
"east": "low",
"north": "tall",
@@ -181123,7 +185667,7 @@
}
},
{
- "id": 14375,
+ "id": 14844,
"properties": {
"east": "low",
"north": "tall",
@@ -181134,7 +185678,7 @@
}
},
{
- "id": 14376,
+ "id": 14845,
"properties": {
"east": "low",
"north": "tall",
@@ -181145,7 +185689,7 @@
}
},
{
- "id": 14377,
+ "id": 14846,
"properties": {
"east": "low",
"north": "tall",
@@ -181156,7 +185700,7 @@
}
},
{
- "id": 14378,
+ "id": 14847,
"properties": {
"east": "low",
"north": "tall",
@@ -181167,7 +185711,7 @@
}
},
{
- "id": 14379,
+ "id": 14848,
"properties": {
"east": "low",
"north": "tall",
@@ -181178,7 +185722,7 @@
}
},
{
- "id": 14380,
+ "id": 14849,
"properties": {
"east": "low",
"north": "tall",
@@ -181189,7 +185733,7 @@
}
},
{
- "id": 14381,
+ "id": 14850,
"properties": {
"east": "low",
"north": "tall",
@@ -181200,7 +185744,7 @@
}
},
{
- "id": 14382,
+ "id": 14851,
"properties": {
"east": "low",
"north": "tall",
@@ -181211,7 +185755,7 @@
}
},
{
- "id": 14383,
+ "id": 14852,
"properties": {
"east": "low",
"north": "tall",
@@ -181222,7 +185766,7 @@
}
},
{
- "id": 14384,
+ "id": 14853,
"properties": {
"east": "low",
"north": "tall",
@@ -181233,7 +185777,7 @@
}
},
{
- "id": 14385,
+ "id": 14854,
"properties": {
"east": "low",
"north": "tall",
@@ -181244,7 +185788,7 @@
}
},
{
- "id": 14386,
+ "id": 14855,
"properties": {
"east": "low",
"north": "tall",
@@ -181255,7 +185799,7 @@
}
},
{
- "id": 14387,
+ "id": 14856,
"properties": {
"east": "low",
"north": "tall",
@@ -181266,7 +185810,7 @@
}
},
{
- "id": 14388,
+ "id": 14857,
"properties": {
"east": "low",
"north": "tall",
@@ -181277,7 +185821,7 @@
}
},
{
- "id": 14389,
+ "id": 14858,
"properties": {
"east": "low",
"north": "tall",
@@ -181288,7 +185832,7 @@
}
},
{
- "id": 14390,
+ "id": 14859,
"properties": {
"east": "low",
"north": "tall",
@@ -181299,7 +185843,7 @@
}
},
{
- "id": 14391,
+ "id": 14860,
"properties": {
"east": "low",
"north": "tall",
@@ -181310,7 +185854,7 @@
}
},
{
- "id": 14392,
+ "id": 14861,
"properties": {
"east": "low",
"north": "tall",
@@ -181321,7 +185865,7 @@
}
},
{
- "id": 14393,
+ "id": 14862,
"properties": {
"east": "low",
"north": "tall",
@@ -181332,7 +185876,7 @@
}
},
{
- "id": 14394,
+ "id": 14863,
"properties": {
"east": "low",
"north": "tall",
@@ -181343,7 +185887,7 @@
}
},
{
- "id": 14395,
+ "id": 14864,
"properties": {
"east": "low",
"north": "tall",
@@ -181354,7 +185898,7 @@
}
},
{
- "id": 14396,
+ "id": 14865,
"properties": {
"east": "tall",
"north": "none",
@@ -181365,7 +185909,7 @@
}
},
{
- "id": 14397,
+ "id": 14866,
"properties": {
"east": "tall",
"north": "none",
@@ -181376,7 +185920,7 @@
}
},
{
- "id": 14398,
+ "id": 14867,
"properties": {
"east": "tall",
"north": "none",
@@ -181387,7 +185931,7 @@
}
},
{
- "id": 14399,
+ "id": 14868,
"properties": {
"east": "tall",
"north": "none",
@@ -181398,7 +185942,7 @@
}
},
{
- "id": 14400,
+ "id": 14869,
"properties": {
"east": "tall",
"north": "none",
@@ -181409,7 +185953,7 @@
}
},
{
- "id": 14401,
+ "id": 14870,
"properties": {
"east": "tall",
"north": "none",
@@ -181420,7 +185964,7 @@
}
},
{
- "id": 14402,
+ "id": 14871,
"properties": {
"east": "tall",
"north": "none",
@@ -181431,7 +185975,7 @@
}
},
{
- "id": 14403,
+ "id": 14872,
"properties": {
"east": "tall",
"north": "none",
@@ -181442,7 +185986,7 @@
}
},
{
- "id": 14404,
+ "id": 14873,
"properties": {
"east": "tall",
"north": "none",
@@ -181453,7 +185997,7 @@
}
},
{
- "id": 14405,
+ "id": 14874,
"properties": {
"east": "tall",
"north": "none",
@@ -181464,7 +186008,7 @@
}
},
{
- "id": 14406,
+ "id": 14875,
"properties": {
"east": "tall",
"north": "none",
@@ -181475,7 +186019,7 @@
}
},
{
- "id": 14407,
+ "id": 14876,
"properties": {
"east": "tall",
"north": "none",
@@ -181486,7 +186030,7 @@
}
},
{
- "id": 14408,
+ "id": 14877,
"properties": {
"east": "tall",
"north": "none",
@@ -181497,7 +186041,7 @@
}
},
{
- "id": 14409,
+ "id": 14878,
"properties": {
"east": "tall",
"north": "none",
@@ -181508,7 +186052,7 @@
}
},
{
- "id": 14410,
+ "id": 14879,
"properties": {
"east": "tall",
"north": "none",
@@ -181519,7 +186063,7 @@
}
},
{
- "id": 14411,
+ "id": 14880,
"properties": {
"east": "tall",
"north": "none",
@@ -181530,7 +186074,7 @@
}
},
{
- "id": 14412,
+ "id": 14881,
"properties": {
"east": "tall",
"north": "none",
@@ -181541,7 +186085,7 @@
}
},
{
- "id": 14413,
+ "id": 14882,
"properties": {
"east": "tall",
"north": "none",
@@ -181552,7 +186096,7 @@
}
},
{
- "id": 14414,
+ "id": 14883,
"properties": {
"east": "tall",
"north": "none",
@@ -181563,7 +186107,7 @@
}
},
{
- "id": 14415,
+ "id": 14884,
"properties": {
"east": "tall",
"north": "none",
@@ -181574,7 +186118,7 @@
}
},
{
- "id": 14416,
+ "id": 14885,
"properties": {
"east": "tall",
"north": "none",
@@ -181585,7 +186129,7 @@
}
},
{
- "id": 14417,
+ "id": 14886,
"properties": {
"east": "tall",
"north": "none",
@@ -181596,7 +186140,7 @@
}
},
{
- "id": 14418,
+ "id": 14887,
"properties": {
"east": "tall",
"north": "none",
@@ -181607,7 +186151,7 @@
}
},
{
- "id": 14419,
+ "id": 14888,
"properties": {
"east": "tall",
"north": "none",
@@ -181618,7 +186162,7 @@
}
},
{
- "id": 14420,
+ "id": 14889,
"properties": {
"east": "tall",
"north": "none",
@@ -181629,7 +186173,7 @@
}
},
{
- "id": 14421,
+ "id": 14890,
"properties": {
"east": "tall",
"north": "none",
@@ -181640,7 +186184,7 @@
}
},
{
- "id": 14422,
+ "id": 14891,
"properties": {
"east": "tall",
"north": "none",
@@ -181651,7 +186195,7 @@
}
},
{
- "id": 14423,
+ "id": 14892,
"properties": {
"east": "tall",
"north": "none",
@@ -181662,7 +186206,7 @@
}
},
{
- "id": 14424,
+ "id": 14893,
"properties": {
"east": "tall",
"north": "none",
@@ -181673,7 +186217,7 @@
}
},
{
- "id": 14425,
+ "id": 14894,
"properties": {
"east": "tall",
"north": "none",
@@ -181684,7 +186228,7 @@
}
},
{
- "id": 14426,
+ "id": 14895,
"properties": {
"east": "tall",
"north": "none",
@@ -181695,7 +186239,7 @@
}
},
{
- "id": 14427,
+ "id": 14896,
"properties": {
"east": "tall",
"north": "none",
@@ -181706,7 +186250,7 @@
}
},
{
- "id": 14428,
+ "id": 14897,
"properties": {
"east": "tall",
"north": "none",
@@ -181717,7 +186261,7 @@
}
},
{
- "id": 14429,
+ "id": 14898,
"properties": {
"east": "tall",
"north": "none",
@@ -181728,7 +186272,7 @@
}
},
{
- "id": 14430,
+ "id": 14899,
"properties": {
"east": "tall",
"north": "none",
@@ -181739,7 +186283,7 @@
}
},
{
- "id": 14431,
+ "id": 14900,
"properties": {
"east": "tall",
"north": "none",
@@ -181750,7 +186294,7 @@
}
},
{
- "id": 14432,
+ "id": 14901,
"properties": {
"east": "tall",
"north": "low",
@@ -181761,7 +186305,7 @@
}
},
{
- "id": 14433,
+ "id": 14902,
"properties": {
"east": "tall",
"north": "low",
@@ -181772,7 +186316,7 @@
}
},
{
- "id": 14434,
+ "id": 14903,
"properties": {
"east": "tall",
"north": "low",
@@ -181783,7 +186327,7 @@
}
},
{
- "id": 14435,
+ "id": 14904,
"properties": {
"east": "tall",
"north": "low",
@@ -181794,7 +186338,7 @@
}
},
{
- "id": 14436,
+ "id": 14905,
"properties": {
"east": "tall",
"north": "low",
@@ -181805,7 +186349,7 @@
}
},
{
- "id": 14437,
+ "id": 14906,
"properties": {
"east": "tall",
"north": "low",
@@ -181816,7 +186360,7 @@
}
},
{
- "id": 14438,
+ "id": 14907,
"properties": {
"east": "tall",
"north": "low",
@@ -181827,7 +186371,7 @@
}
},
{
- "id": 14439,
+ "id": 14908,
"properties": {
"east": "tall",
"north": "low",
@@ -181838,7 +186382,7 @@
}
},
{
- "id": 14440,
+ "id": 14909,
"properties": {
"east": "tall",
"north": "low",
@@ -181849,7 +186393,7 @@
}
},
{
- "id": 14441,
+ "id": 14910,
"properties": {
"east": "tall",
"north": "low",
@@ -181860,7 +186404,7 @@
}
},
{
- "id": 14442,
+ "id": 14911,
"properties": {
"east": "tall",
"north": "low",
@@ -181871,7 +186415,7 @@
}
},
{
- "id": 14443,
+ "id": 14912,
"properties": {
"east": "tall",
"north": "low",
@@ -181882,7 +186426,7 @@
}
},
{
- "id": 14444,
+ "id": 14913,
"properties": {
"east": "tall",
"north": "low",
@@ -181893,7 +186437,7 @@
}
},
{
- "id": 14445,
+ "id": 14914,
"properties": {
"east": "tall",
"north": "low",
@@ -181904,7 +186448,7 @@
}
},
{
- "id": 14446,
+ "id": 14915,
"properties": {
"east": "tall",
"north": "low",
@@ -181915,7 +186459,7 @@
}
},
{
- "id": 14447,
+ "id": 14916,
"properties": {
"east": "tall",
"north": "low",
@@ -181926,7 +186470,7 @@
}
},
{
- "id": 14448,
+ "id": 14917,
"properties": {
"east": "tall",
"north": "low",
@@ -181937,7 +186481,7 @@
}
},
{
- "id": 14449,
+ "id": 14918,
"properties": {
"east": "tall",
"north": "low",
@@ -181948,7 +186492,7 @@
}
},
{
- "id": 14450,
+ "id": 14919,
"properties": {
"east": "tall",
"north": "low",
@@ -181959,7 +186503,7 @@
}
},
{
- "id": 14451,
+ "id": 14920,
"properties": {
"east": "tall",
"north": "low",
@@ -181970,7 +186514,7 @@
}
},
{
- "id": 14452,
+ "id": 14921,
"properties": {
"east": "tall",
"north": "low",
@@ -181981,7 +186525,7 @@
}
},
{
- "id": 14453,
+ "id": 14922,
"properties": {
"east": "tall",
"north": "low",
@@ -181992,7 +186536,7 @@
}
},
{
- "id": 14454,
+ "id": 14923,
"properties": {
"east": "tall",
"north": "low",
@@ -182003,7 +186547,7 @@
}
},
{
- "id": 14455,
+ "id": 14924,
"properties": {
"east": "tall",
"north": "low",
@@ -182014,7 +186558,7 @@
}
},
{
- "id": 14456,
+ "id": 14925,
"properties": {
"east": "tall",
"north": "low",
@@ -182025,7 +186569,7 @@
}
},
{
- "id": 14457,
+ "id": 14926,
"properties": {
"east": "tall",
"north": "low",
@@ -182036,7 +186580,7 @@
}
},
{
- "id": 14458,
+ "id": 14927,
"properties": {
"east": "tall",
"north": "low",
@@ -182047,7 +186591,7 @@
}
},
{
- "id": 14459,
+ "id": 14928,
"properties": {
"east": "tall",
"north": "low",
@@ -182058,7 +186602,7 @@
}
},
{
- "id": 14460,
+ "id": 14929,
"properties": {
"east": "tall",
"north": "low",
@@ -182069,7 +186613,7 @@
}
},
{
- "id": 14461,
+ "id": 14930,
"properties": {
"east": "tall",
"north": "low",
@@ -182080,7 +186624,7 @@
}
},
{
- "id": 14462,
+ "id": 14931,
"properties": {
"east": "tall",
"north": "low",
@@ -182091,7 +186635,7 @@
}
},
{
- "id": 14463,
+ "id": 14932,
"properties": {
"east": "tall",
"north": "low",
@@ -182102,7 +186646,7 @@
}
},
{
- "id": 14464,
+ "id": 14933,
"properties": {
"east": "tall",
"north": "low",
@@ -182113,7 +186657,7 @@
}
},
{
- "id": 14465,
+ "id": 14934,
"properties": {
"east": "tall",
"north": "low",
@@ -182124,7 +186668,7 @@
}
},
{
- "id": 14466,
+ "id": 14935,
"properties": {
"east": "tall",
"north": "low",
@@ -182135,7 +186679,7 @@
}
},
{
- "id": 14467,
+ "id": 14936,
"properties": {
"east": "tall",
"north": "low",
@@ -182146,7 +186690,7 @@
}
},
{
- "id": 14468,
+ "id": 14937,
"properties": {
"east": "tall",
"north": "tall",
@@ -182157,7 +186701,7 @@
}
},
{
- "id": 14469,
+ "id": 14938,
"properties": {
"east": "tall",
"north": "tall",
@@ -182168,7 +186712,7 @@
}
},
{
- "id": 14470,
+ "id": 14939,
"properties": {
"east": "tall",
"north": "tall",
@@ -182179,7 +186723,7 @@
}
},
{
- "id": 14471,
+ "id": 14940,
"properties": {
"east": "tall",
"north": "tall",
@@ -182190,7 +186734,7 @@
}
},
{
- "id": 14472,
+ "id": 14941,
"properties": {
"east": "tall",
"north": "tall",
@@ -182201,7 +186745,7 @@
}
},
{
- "id": 14473,
+ "id": 14942,
"properties": {
"east": "tall",
"north": "tall",
@@ -182212,7 +186756,7 @@
}
},
{
- "id": 14474,
+ "id": 14943,
"properties": {
"east": "tall",
"north": "tall",
@@ -182223,7 +186767,7 @@
}
},
{
- "id": 14475,
+ "id": 14944,
"properties": {
"east": "tall",
"north": "tall",
@@ -182234,7 +186778,7 @@
}
},
{
- "id": 14476,
+ "id": 14945,
"properties": {
"east": "tall",
"north": "tall",
@@ -182245,7 +186789,7 @@
}
},
{
- "id": 14477,
+ "id": 14946,
"properties": {
"east": "tall",
"north": "tall",
@@ -182256,7 +186800,7 @@
}
},
{
- "id": 14478,
+ "id": 14947,
"properties": {
"east": "tall",
"north": "tall",
@@ -182267,7 +186811,7 @@
}
},
{
- "id": 14479,
+ "id": 14948,
"properties": {
"east": "tall",
"north": "tall",
@@ -182278,7 +186822,7 @@
}
},
{
- "id": 14480,
+ "id": 14949,
"properties": {
"east": "tall",
"north": "tall",
@@ -182289,7 +186833,7 @@
}
},
{
- "id": 14481,
+ "id": 14950,
"properties": {
"east": "tall",
"north": "tall",
@@ -182300,7 +186844,7 @@
}
},
{
- "id": 14482,
+ "id": 14951,
"properties": {
"east": "tall",
"north": "tall",
@@ -182311,7 +186855,7 @@
}
},
{
- "id": 14483,
+ "id": 14952,
"properties": {
"east": "tall",
"north": "tall",
@@ -182322,7 +186866,7 @@
}
},
{
- "id": 14484,
+ "id": 14953,
"properties": {
"east": "tall",
"north": "tall",
@@ -182333,7 +186877,7 @@
}
},
{
- "id": 14485,
+ "id": 14954,
"properties": {
"east": "tall",
"north": "tall",
@@ -182344,7 +186888,7 @@
}
},
{
- "id": 14486,
+ "id": 14955,
"properties": {
"east": "tall",
"north": "tall",
@@ -182355,7 +186899,7 @@
}
},
{
- "id": 14487,
+ "id": 14956,
"properties": {
"east": "tall",
"north": "tall",
@@ -182366,7 +186910,7 @@
}
},
{
- "id": 14488,
+ "id": 14957,
"properties": {
"east": "tall",
"north": "tall",
@@ -182377,7 +186921,7 @@
}
},
{
- "id": 14489,
+ "id": 14958,
"properties": {
"east": "tall",
"north": "tall",
@@ -182388,7 +186932,7 @@
}
},
{
- "id": 14490,
+ "id": 14959,
"properties": {
"east": "tall",
"north": "tall",
@@ -182399,7 +186943,7 @@
}
},
{
- "id": 14491,
+ "id": 14960,
"properties": {
"east": "tall",
"north": "tall",
@@ -182410,7 +186954,7 @@
}
},
{
- "id": 14492,
+ "id": 14961,
"properties": {
"east": "tall",
"north": "tall",
@@ -182421,7 +186965,7 @@
}
},
{
- "id": 14493,
+ "id": 14962,
"properties": {
"east": "tall",
"north": "tall",
@@ -182432,7 +186976,7 @@
}
},
{
- "id": 14494,
+ "id": 14963,
"properties": {
"east": "tall",
"north": "tall",
@@ -182443,7 +186987,7 @@
}
},
{
- "id": 14495,
+ "id": 14964,
"properties": {
"east": "tall",
"north": "tall",
@@ -182454,7 +186998,7 @@
}
},
{
- "id": 14496,
+ "id": 14965,
"properties": {
"east": "tall",
"north": "tall",
@@ -182465,7 +187009,7 @@
}
},
{
- "id": 14497,
+ "id": 14966,
"properties": {
"east": "tall",
"north": "tall",
@@ -182476,7 +187020,7 @@
}
},
{
- "id": 14498,
+ "id": 14967,
"properties": {
"east": "tall",
"north": "tall",
@@ -182487,7 +187031,7 @@
}
},
{
- "id": 14499,
+ "id": 14968,
"properties": {
"east": "tall",
"north": "tall",
@@ -182498,7 +187042,7 @@
}
},
{
- "id": 14500,
+ "id": 14969,
"properties": {
"east": "tall",
"north": "tall",
@@ -182509,7 +187053,7 @@
}
},
{
- "id": 14501,
+ "id": 14970,
"properties": {
"east": "tall",
"north": "tall",
@@ -182520,7 +187064,7 @@
}
},
{
- "id": 14502,
+ "id": 14971,
"properties": {
"east": "tall",
"north": "tall",
@@ -182531,7 +187075,7 @@
}
},
{
- "id": 14503,
+ "id": 14972,
"properties": {
"east": "tall",
"north": "tall",
@@ -182556,38 +187100,38 @@
},
"states": [
{
- "id": 12027,
+ "id": 12496,
"properties": {
"facing": "north"
}
},
{
- "id": 12028,
+ "id": 12497,
"properties": {
"facing": "east"
}
},
{
- "id": 12029,
+ "id": 12498,
"properties": {
"facing": "south"
}
},
{
- "id": 12030,
+ "id": 12499,
"properties": {
"facing": "west"
}
},
{
"default": true,
- "id": 12031,
+ "id": 12500,
"properties": {
"facing": "up"
}
},
{
- "id": 12032,
+ "id": 12501,
"properties": {
"facing": "down"
}
@@ -182598,7 +187142,7 @@
"states": [
{
"default": true,
- "id": 5794
+ "id": 5956
}
]
},
@@ -182627,7 +187171,7 @@
},
"states": [
{
- "id": 9424,
+ "id": 9676,
"properties": {
"east": "true",
"north": "true",
@@ -182637,7 +187181,7 @@
}
},
{
- "id": 9425,
+ "id": 9677,
"properties": {
"east": "true",
"north": "true",
@@ -182647,7 +187191,7 @@
}
},
{
- "id": 9426,
+ "id": 9678,
"properties": {
"east": "true",
"north": "true",
@@ -182657,7 +187201,7 @@
}
},
{
- "id": 9427,
+ "id": 9679,
"properties": {
"east": "true",
"north": "true",
@@ -182667,7 +187211,7 @@
}
},
{
- "id": 9428,
+ "id": 9680,
"properties": {
"east": "true",
"north": "true",
@@ -182677,7 +187221,7 @@
}
},
{
- "id": 9429,
+ "id": 9681,
"properties": {
"east": "true",
"north": "true",
@@ -182687,7 +187231,7 @@
}
},
{
- "id": 9430,
+ "id": 9682,
"properties": {
"east": "true",
"north": "true",
@@ -182697,7 +187241,7 @@
}
},
{
- "id": 9431,
+ "id": 9683,
"properties": {
"east": "true",
"north": "true",
@@ -182707,7 +187251,7 @@
}
},
{
- "id": 9432,
+ "id": 9684,
"properties": {
"east": "true",
"north": "false",
@@ -182717,7 +187261,7 @@
}
},
{
- "id": 9433,
+ "id": 9685,
"properties": {
"east": "true",
"north": "false",
@@ -182727,7 +187271,7 @@
}
},
{
- "id": 9434,
+ "id": 9686,
"properties": {
"east": "true",
"north": "false",
@@ -182737,7 +187281,7 @@
}
},
{
- "id": 9435,
+ "id": 9687,
"properties": {
"east": "true",
"north": "false",
@@ -182747,7 +187291,7 @@
}
},
{
- "id": 9436,
+ "id": 9688,
"properties": {
"east": "true",
"north": "false",
@@ -182757,7 +187301,7 @@
}
},
{
- "id": 9437,
+ "id": 9689,
"properties": {
"east": "true",
"north": "false",
@@ -182767,7 +187311,7 @@
}
},
{
- "id": 9438,
+ "id": 9690,
"properties": {
"east": "true",
"north": "false",
@@ -182777,7 +187321,7 @@
}
},
{
- "id": 9439,
+ "id": 9691,
"properties": {
"east": "true",
"north": "false",
@@ -182787,7 +187331,7 @@
}
},
{
- "id": 9440,
+ "id": 9692,
"properties": {
"east": "false",
"north": "true",
@@ -182797,7 +187341,7 @@
}
},
{
- "id": 9441,
+ "id": 9693,
"properties": {
"east": "false",
"north": "true",
@@ -182807,7 +187351,7 @@
}
},
{
- "id": 9442,
+ "id": 9694,
"properties": {
"east": "false",
"north": "true",
@@ -182817,7 +187361,7 @@
}
},
{
- "id": 9443,
+ "id": 9695,
"properties": {
"east": "false",
"north": "true",
@@ -182827,7 +187371,7 @@
}
},
{
- "id": 9444,
+ "id": 9696,
"properties": {
"east": "false",
"north": "true",
@@ -182837,7 +187381,7 @@
}
},
{
- "id": 9445,
+ "id": 9697,
"properties": {
"east": "false",
"north": "true",
@@ -182847,7 +187391,7 @@
}
},
{
- "id": 9446,
+ "id": 9698,
"properties": {
"east": "false",
"north": "true",
@@ -182857,7 +187401,7 @@
}
},
{
- "id": 9447,
+ "id": 9699,
"properties": {
"east": "false",
"north": "true",
@@ -182867,7 +187411,7 @@
}
},
{
- "id": 9448,
+ "id": 9700,
"properties": {
"east": "false",
"north": "false",
@@ -182877,7 +187421,7 @@
}
},
{
- "id": 9449,
+ "id": 9701,
"properties": {
"east": "false",
"north": "false",
@@ -182887,7 +187431,7 @@
}
},
{
- "id": 9450,
+ "id": 9702,
"properties": {
"east": "false",
"north": "false",
@@ -182897,7 +187441,7 @@
}
},
{
- "id": 9451,
+ "id": 9703,
"properties": {
"east": "false",
"north": "false",
@@ -182907,7 +187451,7 @@
}
},
{
- "id": 9452,
+ "id": 9704,
"properties": {
"east": "false",
"north": "false",
@@ -182917,7 +187461,7 @@
}
},
{
- "id": 9453,
+ "id": 9705,
"properties": {
"east": "false",
"north": "false",
@@ -182927,7 +187471,7 @@
}
},
{
- "id": 9454,
+ "id": 9706,
"properties": {
"east": "false",
"north": "false",
@@ -182938,7 +187482,7 @@
},
{
"default": true,
- "id": 9455,
+ "id": 9707,
"properties": {
"east": "false",
"north": "false",
@@ -182953,7 +187497,7 @@
"states": [
{
"default": true,
- "id": 8974
+ "id": 9226
}
]
},
@@ -182961,7 +187505,7 @@
"states": [
{
"default": true,
- "id": 2029
+ "id": 2077
}
]
},
@@ -182977,25 +187521,25 @@
"states": [
{
"default": true,
- "id": 10594,
+ "id": 10926,
"properties": {
"facing": "north"
}
},
{
- "id": 10595,
+ "id": 10927,
"properties": {
"facing": "south"
}
},
{
- "id": 10596,
+ "id": 10928,
"properties": {
"facing": "west"
}
},
{
- "id": 10597,
+ "id": 10929,
"properties": {
"facing": "east"
}
@@ -183006,7 +187550,7 @@
"states": [
{
"default": true,
- "id": 2010
+ "id": 2057
}
]
},
@@ -183014,7 +187558,7 @@
"states": [
{
"default": true,
- "id": 8827
+ "id": 9079
}
]
},
@@ -183027,14 +187571,14 @@
},
"states": [
{
- "id": 7187,
+ "id": 7413,
"properties": {
"lit": "true"
}
},
{
"default": true,
- "id": 7188,
+ "id": 7414,
"properties": {
"lit": "false"
}
@@ -183050,14 +187594,14 @@
},
"states": [
{
- "id": 5568,
+ "id": 5730,
"properties": {
"lit": "true"
}
},
{
"default": true,
- "id": 5569,
+ "id": 5731,
"properties": {
"lit": "false"
}
@@ -183074,13 +187618,13 @@
"states": [
{
"default": true,
- "id": 5572,
+ "id": 5734,
"properties": {
"lit": "true"
}
},
{
- "id": 5573,
+ "id": 5735,
"properties": {
"lit": "false"
}
@@ -183103,56 +187647,56 @@
"states": [
{
"default": true,
- "id": 5574,
+ "id": 5736,
"properties": {
"facing": "north",
"lit": "true"
}
},
{
- "id": 5575,
+ "id": 5737,
"properties": {
"facing": "north",
"lit": "false"
}
},
{
- "id": 5576,
+ "id": 5738,
"properties": {
"facing": "south",
"lit": "true"
}
},
{
- "id": 5577,
+ "id": 5739,
"properties": {
"facing": "south",
"lit": "false"
}
},
{
- "id": 5578,
+ "id": 5740,
"properties": {
"facing": "west",
"lit": "true"
}
},
{
- "id": 5579,
+ "id": 5741,
"properties": {
"facing": "west",
"lit": "false"
}
},
{
- "id": 5580,
+ "id": 5742,
"properties": {
"facing": "east",
"lit": "true"
}
},
{
- "id": 5581,
+ "id": 5743,
"properties": {
"facing": "east",
"lit": "false"
@@ -183202,493 +187746,13 @@
]
},
"states": [
- {
- "id": 2926,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "0",
- "south": "up",
- "west": "up"
- }
- },
- {
- "id": 2927,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "0",
- "south": "up",
- "west": "side"
- }
- },
- {
- "id": 2928,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "0",
- "south": "up",
- "west": "none"
- }
- },
- {
- "id": 2929,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "0",
- "south": "side",
- "west": "up"
- }
- },
- {
- "id": 2930,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "0",
- "south": "side",
- "west": "side"
- }
- },
- {
- "id": 2931,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "0",
- "south": "side",
- "west": "none"
- }
- },
- {
- "id": 2932,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "0",
- "south": "none",
- "west": "up"
- }
- },
- {
- "id": 2933,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "0",
- "south": "none",
- "west": "side"
- }
- },
- {
- "id": 2934,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "0",
- "south": "none",
- "west": "none"
- }
- },
- {
- "id": 2935,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "1",
- "south": "up",
- "west": "up"
- }
- },
- {
- "id": 2936,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "1",
- "south": "up",
- "west": "side"
- }
- },
- {
- "id": 2937,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "1",
- "south": "up",
- "west": "none"
- }
- },
- {
- "id": 2938,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "1",
- "south": "side",
- "west": "up"
- }
- },
- {
- "id": 2939,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "1",
- "south": "side",
- "west": "side"
- }
- },
- {
- "id": 2940,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "1",
- "south": "side",
- "west": "none"
- }
- },
- {
- "id": 2941,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "1",
- "south": "none",
- "west": "up"
- }
- },
- {
- "id": 2942,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "1",
- "south": "none",
- "west": "side"
- }
- },
- {
- "id": 2943,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "1",
- "south": "none",
- "west": "none"
- }
- },
- {
- "id": 2944,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "2",
- "south": "up",
- "west": "up"
- }
- },
- {
- "id": 2945,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "2",
- "south": "up",
- "west": "side"
- }
- },
- {
- "id": 2946,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "2",
- "south": "up",
- "west": "none"
- }
- },
- {
- "id": 2947,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "2",
- "south": "side",
- "west": "up"
- }
- },
- {
- "id": 2948,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "2",
- "south": "side",
- "west": "side"
- }
- },
- {
- "id": 2949,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "2",
- "south": "side",
- "west": "none"
- }
- },
- {
- "id": 2950,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "2",
- "south": "none",
- "west": "up"
- }
- },
- {
- "id": 2951,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "2",
- "south": "none",
- "west": "side"
- }
- },
- {
- "id": 2952,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "2",
- "south": "none",
- "west": "none"
- }
- },
- {
- "id": 2953,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "3",
- "south": "up",
- "west": "up"
- }
- },
- {
- "id": 2954,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "3",
- "south": "up",
- "west": "side"
- }
- },
- {
- "id": 2955,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "3",
- "south": "up",
- "west": "none"
- }
- },
- {
- "id": 2956,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "3",
- "south": "side",
- "west": "up"
- }
- },
- {
- "id": 2957,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "3",
- "south": "side",
- "west": "side"
- }
- },
- {
- "id": 2958,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "3",
- "south": "side",
- "west": "none"
- }
- },
- {
- "id": 2959,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "3",
- "south": "none",
- "west": "up"
- }
- },
- {
- "id": 2960,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "3",
- "south": "none",
- "west": "side"
- }
- },
- {
- "id": 2961,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "3",
- "south": "none",
- "west": "none"
- }
- },
- {
- "id": 2962,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "4",
- "south": "up",
- "west": "up"
- }
- },
- {
- "id": 2963,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "4",
- "south": "up",
- "west": "side"
- }
- },
- {
- "id": 2964,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "4",
- "south": "up",
- "west": "none"
- }
- },
- {
- "id": 2965,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "4",
- "south": "side",
- "west": "up"
- }
- },
- {
- "id": 2966,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "4",
- "south": "side",
- "west": "side"
- }
- },
- {
- "id": 2967,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "4",
- "south": "side",
- "west": "none"
- }
- },
- {
- "id": 2968,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "4",
- "south": "none",
- "west": "up"
- }
- },
- {
- "id": 2969,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "4",
- "south": "none",
- "west": "side"
- }
- },
- {
- "id": 2970,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "4",
- "south": "none",
- "west": "none"
- }
- },
- {
- "id": 2971,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "5",
- "south": "up",
- "west": "up"
- }
- },
- {
- "id": 2972,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "5",
- "south": "up",
- "west": "side"
- }
- },
- {
- "id": 2973,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "5",
- "south": "up",
- "west": "none"
- }
- },
{
"id": 2974,
"properties": {
"east": "up",
"north": "up",
- "power": "5",
- "south": "side",
+ "power": "0",
+ "south": "up",
"west": "up"
}
},
@@ -183697,8 +187761,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "5",
- "south": "side",
+ "power": "0",
+ "south": "up",
"west": "side"
}
},
@@ -183707,8 +187771,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "5",
- "south": "side",
+ "power": "0",
+ "south": "up",
"west": "none"
}
},
@@ -183717,8 +187781,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "5",
- "south": "none",
+ "power": "0",
+ "south": "side",
"west": "up"
}
},
@@ -183727,8 +187791,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "5",
- "south": "none",
+ "power": "0",
+ "south": "side",
"west": "side"
}
},
@@ -183737,8 +187801,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "5",
- "south": "none",
+ "power": "0",
+ "south": "side",
"west": "none"
}
},
@@ -183747,8 +187811,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "6",
- "south": "up",
+ "power": "0",
+ "south": "none",
"west": "up"
}
},
@@ -183757,8 +187821,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "6",
- "south": "up",
+ "power": "0",
+ "south": "none",
"west": "side"
}
},
@@ -183767,8 +187831,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "6",
- "south": "up",
+ "power": "0",
+ "south": "none",
"west": "none"
}
},
@@ -183777,8 +187841,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "6",
- "south": "side",
+ "power": "1",
+ "south": "up",
"west": "up"
}
},
@@ -183787,8 +187851,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "6",
- "south": "side",
+ "power": "1",
+ "south": "up",
"west": "side"
}
},
@@ -183797,8 +187861,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "6",
- "south": "side",
+ "power": "1",
+ "south": "up",
"west": "none"
}
},
@@ -183807,8 +187871,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "6",
- "south": "none",
+ "power": "1",
+ "south": "side",
"west": "up"
}
},
@@ -183817,8 +187881,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "6",
- "south": "none",
+ "power": "1",
+ "south": "side",
"west": "side"
}
},
@@ -183827,8 +187891,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "6",
- "south": "none",
+ "power": "1",
+ "south": "side",
"west": "none"
}
},
@@ -183837,8 +187901,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "7",
- "south": "up",
+ "power": "1",
+ "south": "none",
"west": "up"
}
},
@@ -183847,8 +187911,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "7",
- "south": "up",
+ "power": "1",
+ "south": "none",
"west": "side"
}
},
@@ -183857,8 +187921,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "7",
- "south": "up",
+ "power": "1",
+ "south": "none",
"west": "none"
}
},
@@ -183867,8 +187931,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "7",
- "south": "side",
+ "power": "2",
+ "south": "up",
"west": "up"
}
},
@@ -183877,8 +187941,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "7",
- "south": "side",
+ "power": "2",
+ "south": "up",
"west": "side"
}
},
@@ -183887,8 +187951,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "7",
- "south": "side",
+ "power": "2",
+ "south": "up",
"west": "none"
}
},
@@ -183897,8 +187961,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "7",
- "south": "none",
+ "power": "2",
+ "south": "side",
"west": "up"
}
},
@@ -183907,8 +187971,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "7",
- "south": "none",
+ "power": "2",
+ "south": "side",
"west": "side"
}
},
@@ -183917,8 +187981,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "7",
- "south": "none",
+ "power": "2",
+ "south": "side",
"west": "none"
}
},
@@ -183927,8 +187991,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "8",
- "south": "up",
+ "power": "2",
+ "south": "none",
"west": "up"
}
},
@@ -183937,8 +188001,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "8",
- "south": "up",
+ "power": "2",
+ "south": "none",
"west": "side"
}
},
@@ -183947,8 +188011,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "8",
- "south": "up",
+ "power": "2",
+ "south": "none",
"west": "none"
}
},
@@ -183957,8 +188021,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "8",
- "south": "side",
+ "power": "3",
+ "south": "up",
"west": "up"
}
},
@@ -183967,8 +188031,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "8",
- "south": "side",
+ "power": "3",
+ "south": "up",
"west": "side"
}
},
@@ -183977,8 +188041,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "8",
- "south": "side",
+ "power": "3",
+ "south": "up",
"west": "none"
}
},
@@ -183987,8 +188051,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "8",
- "south": "none",
+ "power": "3",
+ "south": "side",
"west": "up"
}
},
@@ -183997,8 +188061,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "8",
- "south": "none",
+ "power": "3",
+ "south": "side",
"west": "side"
}
},
@@ -184007,8 +188071,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "8",
- "south": "none",
+ "power": "3",
+ "south": "side",
"west": "none"
}
},
@@ -184017,8 +188081,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "9",
- "south": "up",
+ "power": "3",
+ "south": "none",
"west": "up"
}
},
@@ -184027,8 +188091,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "9",
- "south": "up",
+ "power": "3",
+ "south": "none",
"west": "side"
}
},
@@ -184037,8 +188101,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "9",
- "south": "up",
+ "power": "3",
+ "south": "none",
"west": "none"
}
},
@@ -184047,8 +188111,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "9",
- "south": "side",
+ "power": "4",
+ "south": "up",
"west": "up"
}
},
@@ -184057,8 +188121,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "9",
- "south": "side",
+ "power": "4",
+ "south": "up",
"west": "side"
}
},
@@ -184067,8 +188131,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "9",
- "south": "side",
+ "power": "4",
+ "south": "up",
"west": "none"
}
},
@@ -184077,8 +188141,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "9",
- "south": "none",
+ "power": "4",
+ "south": "side",
"west": "up"
}
},
@@ -184087,8 +188151,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "9",
- "south": "none",
+ "power": "4",
+ "south": "side",
"west": "side"
}
},
@@ -184097,8 +188161,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "9",
- "south": "none",
+ "power": "4",
+ "south": "side",
"west": "none"
}
},
@@ -184107,8 +188171,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "10",
- "south": "up",
+ "power": "4",
+ "south": "none",
"west": "up"
}
},
@@ -184117,8 +188181,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "10",
- "south": "up",
+ "power": "4",
+ "south": "none",
"west": "side"
}
},
@@ -184127,8 +188191,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "10",
- "south": "up",
+ "power": "4",
+ "south": "none",
"west": "none"
}
},
@@ -184137,8 +188201,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "10",
- "south": "side",
+ "power": "5",
+ "south": "up",
"west": "up"
}
},
@@ -184147,8 +188211,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "10",
- "south": "side",
+ "power": "5",
+ "south": "up",
"west": "side"
}
},
@@ -184157,8 +188221,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "10",
- "south": "side",
+ "power": "5",
+ "south": "up",
"west": "none"
}
},
@@ -184167,8 +188231,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "10",
- "south": "none",
+ "power": "5",
+ "south": "side",
"west": "up"
}
},
@@ -184177,8 +188241,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "10",
- "south": "none",
+ "power": "5",
+ "south": "side",
"west": "side"
}
},
@@ -184187,8 +188251,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "10",
- "south": "none",
+ "power": "5",
+ "south": "side",
"west": "none"
}
},
@@ -184197,8 +188261,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "11",
- "south": "up",
+ "power": "5",
+ "south": "none",
"west": "up"
}
},
@@ -184207,8 +188271,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "11",
- "south": "up",
+ "power": "5",
+ "south": "none",
"west": "side"
}
},
@@ -184217,8 +188281,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "11",
- "south": "up",
+ "power": "5",
+ "south": "none",
"west": "none"
}
},
@@ -184227,8 +188291,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "11",
- "south": "side",
+ "power": "6",
+ "south": "up",
"west": "up"
}
},
@@ -184237,8 +188301,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "11",
- "south": "side",
+ "power": "6",
+ "south": "up",
"west": "side"
}
},
@@ -184247,8 +188311,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "11",
- "south": "side",
+ "power": "6",
+ "south": "up",
"west": "none"
}
},
@@ -184257,8 +188321,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "11",
- "south": "none",
+ "power": "6",
+ "south": "side",
"west": "up"
}
},
@@ -184267,8 +188331,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "11",
- "south": "none",
+ "power": "6",
+ "south": "side",
"west": "side"
}
},
@@ -184277,8 +188341,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "11",
- "south": "none",
+ "power": "6",
+ "south": "side",
"west": "none"
}
},
@@ -184287,8 +188351,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "12",
- "south": "up",
+ "power": "6",
+ "south": "none",
"west": "up"
}
},
@@ -184297,8 +188361,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "12",
- "south": "up",
+ "power": "6",
+ "south": "none",
"west": "side"
}
},
@@ -184307,8 +188371,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "12",
- "south": "up",
+ "power": "6",
+ "south": "none",
"west": "none"
}
},
@@ -184317,8 +188381,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "12",
- "south": "side",
+ "power": "7",
+ "south": "up",
"west": "up"
}
},
@@ -184327,8 +188391,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "12",
- "south": "side",
+ "power": "7",
+ "south": "up",
"west": "side"
}
},
@@ -184337,8 +188401,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "12",
- "south": "side",
+ "power": "7",
+ "south": "up",
"west": "none"
}
},
@@ -184347,8 +188411,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "12",
- "south": "none",
+ "power": "7",
+ "south": "side",
"west": "up"
}
},
@@ -184357,8 +188421,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "12",
- "south": "none",
+ "power": "7",
+ "south": "side",
"west": "side"
}
},
@@ -184367,8 +188431,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "12",
- "south": "none",
+ "power": "7",
+ "south": "side",
"west": "none"
}
},
@@ -184377,8 +188441,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "13",
- "south": "up",
+ "power": "7",
+ "south": "none",
"west": "up"
}
},
@@ -184387,8 +188451,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "13",
- "south": "up",
+ "power": "7",
+ "south": "none",
"west": "side"
}
},
@@ -184397,8 +188461,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "13",
- "south": "up",
+ "power": "7",
+ "south": "none",
"west": "none"
}
},
@@ -184407,8 +188471,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "13",
- "south": "side",
+ "power": "8",
+ "south": "up",
"west": "up"
}
},
@@ -184417,8 +188481,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "13",
- "south": "side",
+ "power": "8",
+ "south": "up",
"west": "side"
}
},
@@ -184427,8 +188491,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "13",
- "south": "side",
+ "power": "8",
+ "south": "up",
"west": "none"
}
},
@@ -184437,8 +188501,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "13",
- "south": "none",
+ "power": "8",
+ "south": "side",
"west": "up"
}
},
@@ -184447,8 +188511,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "13",
- "south": "none",
+ "power": "8",
+ "south": "side",
"west": "side"
}
},
@@ -184457,8 +188521,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "13",
- "south": "none",
+ "power": "8",
+ "south": "side",
"west": "none"
}
},
@@ -184467,8 +188531,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "14",
- "south": "up",
+ "power": "8",
+ "south": "none",
"west": "up"
}
},
@@ -184477,8 +188541,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "14",
- "south": "up",
+ "power": "8",
+ "south": "none",
"west": "side"
}
},
@@ -184487,8 +188551,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "14",
- "south": "up",
+ "power": "8",
+ "south": "none",
"west": "none"
}
},
@@ -184497,8 +188561,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "14",
- "south": "side",
+ "power": "9",
+ "south": "up",
"west": "up"
}
},
@@ -184507,8 +188571,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "14",
- "south": "side",
+ "power": "9",
+ "south": "up",
"west": "side"
}
},
@@ -184517,8 +188581,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "14",
- "south": "side",
+ "power": "9",
+ "south": "up",
"west": "none"
}
},
@@ -184527,8 +188591,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "14",
- "south": "none",
+ "power": "9",
+ "south": "side",
"west": "up"
}
},
@@ -184537,8 +188601,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "14",
- "south": "none",
+ "power": "9",
+ "south": "side",
"west": "side"
}
},
@@ -184547,8 +188611,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "14",
- "south": "none",
+ "power": "9",
+ "south": "side",
"west": "none"
}
},
@@ -184557,8 +188621,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "15",
- "south": "up",
+ "power": "9",
+ "south": "none",
"west": "up"
}
},
@@ -184567,8 +188631,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "15",
- "south": "up",
+ "power": "9",
+ "south": "none",
"west": "side"
}
},
@@ -184577,8 +188641,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "15",
- "south": "up",
+ "power": "9",
+ "south": "none",
"west": "none"
}
},
@@ -184587,8 +188651,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "15",
- "south": "side",
+ "power": "10",
+ "south": "up",
"west": "up"
}
},
@@ -184597,8 +188661,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "15",
- "south": "side",
+ "power": "10",
+ "south": "up",
"west": "side"
}
},
@@ -184607,8 +188671,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "15",
- "south": "side",
+ "power": "10",
+ "south": "up",
"west": "none"
}
},
@@ -184617,8 +188681,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "15",
- "south": "none",
+ "power": "10",
+ "south": "side",
"west": "up"
}
},
@@ -184627,8 +188691,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "15",
- "south": "none",
+ "power": "10",
+ "south": "side",
"west": "side"
}
},
@@ -184637,8 +188701,8 @@
"properties": {
"east": "up",
"north": "up",
- "power": "15",
- "south": "none",
+ "power": "10",
+ "south": "side",
"west": "none"
}
},
@@ -184646,9 +188710,9 @@
"id": 3070,
"properties": {
"east": "up",
- "north": "side",
- "power": "0",
- "south": "up",
+ "north": "up",
+ "power": "10",
+ "south": "none",
"west": "up"
}
},
@@ -184656,9 +188720,9 @@
"id": 3071,
"properties": {
"east": "up",
- "north": "side",
- "power": "0",
- "south": "up",
+ "north": "up",
+ "power": "10",
+ "south": "none",
"west": "side"
}
},
@@ -184666,9 +188730,9 @@
"id": 3072,
"properties": {
"east": "up",
- "north": "side",
- "power": "0",
- "south": "up",
+ "north": "up",
+ "power": "10",
+ "south": "none",
"west": "none"
}
},
@@ -184676,9 +188740,9 @@
"id": 3073,
"properties": {
"east": "up",
- "north": "side",
- "power": "0",
- "south": "side",
+ "north": "up",
+ "power": "11",
+ "south": "up",
"west": "up"
}
},
@@ -184686,9 +188750,9 @@
"id": 3074,
"properties": {
"east": "up",
- "north": "side",
- "power": "0",
- "south": "side",
+ "north": "up",
+ "power": "11",
+ "south": "up",
"west": "side"
}
},
@@ -184696,9 +188760,9 @@
"id": 3075,
"properties": {
"east": "up",
- "north": "side",
- "power": "0",
- "south": "side",
+ "north": "up",
+ "power": "11",
+ "south": "up",
"west": "none"
}
},
@@ -184706,9 +188770,9 @@
"id": 3076,
"properties": {
"east": "up",
- "north": "side",
- "power": "0",
- "south": "none",
+ "north": "up",
+ "power": "11",
+ "south": "side",
"west": "up"
}
},
@@ -184716,9 +188780,9 @@
"id": 3077,
"properties": {
"east": "up",
- "north": "side",
- "power": "0",
- "south": "none",
+ "north": "up",
+ "power": "11",
+ "south": "side",
"west": "side"
}
},
@@ -184726,9 +188790,9 @@
"id": 3078,
"properties": {
"east": "up",
- "north": "side",
- "power": "0",
- "south": "none",
+ "north": "up",
+ "power": "11",
+ "south": "side",
"west": "none"
}
},
@@ -184736,9 +188800,9 @@
"id": 3079,
"properties": {
"east": "up",
- "north": "side",
- "power": "1",
- "south": "up",
+ "north": "up",
+ "power": "11",
+ "south": "none",
"west": "up"
}
},
@@ -184746,9 +188810,9 @@
"id": 3080,
"properties": {
"east": "up",
- "north": "side",
- "power": "1",
- "south": "up",
+ "north": "up",
+ "power": "11",
+ "south": "none",
"west": "side"
}
},
@@ -184756,9 +188820,9 @@
"id": 3081,
"properties": {
"east": "up",
- "north": "side",
- "power": "1",
- "south": "up",
+ "north": "up",
+ "power": "11",
+ "south": "none",
"west": "none"
}
},
@@ -184766,9 +188830,9 @@
"id": 3082,
"properties": {
"east": "up",
- "north": "side",
- "power": "1",
- "south": "side",
+ "north": "up",
+ "power": "12",
+ "south": "up",
"west": "up"
}
},
@@ -184776,9 +188840,9 @@
"id": 3083,
"properties": {
"east": "up",
- "north": "side",
- "power": "1",
- "south": "side",
+ "north": "up",
+ "power": "12",
+ "south": "up",
"west": "side"
}
},
@@ -184786,9 +188850,9 @@
"id": 3084,
"properties": {
"east": "up",
- "north": "side",
- "power": "1",
- "south": "side",
+ "north": "up",
+ "power": "12",
+ "south": "up",
"west": "none"
}
},
@@ -184796,9 +188860,9 @@
"id": 3085,
"properties": {
"east": "up",
- "north": "side",
- "power": "1",
- "south": "none",
+ "north": "up",
+ "power": "12",
+ "south": "side",
"west": "up"
}
},
@@ -184806,9 +188870,9 @@
"id": 3086,
"properties": {
"east": "up",
- "north": "side",
- "power": "1",
- "south": "none",
+ "north": "up",
+ "power": "12",
+ "south": "side",
"west": "side"
}
},
@@ -184816,9 +188880,9 @@
"id": 3087,
"properties": {
"east": "up",
- "north": "side",
- "power": "1",
- "south": "none",
+ "north": "up",
+ "power": "12",
+ "south": "side",
"west": "none"
}
},
@@ -184826,9 +188890,9 @@
"id": 3088,
"properties": {
"east": "up",
- "north": "side",
- "power": "2",
- "south": "up",
+ "north": "up",
+ "power": "12",
+ "south": "none",
"west": "up"
}
},
@@ -184836,9 +188900,9 @@
"id": 3089,
"properties": {
"east": "up",
- "north": "side",
- "power": "2",
- "south": "up",
+ "north": "up",
+ "power": "12",
+ "south": "none",
"west": "side"
}
},
@@ -184846,9 +188910,9 @@
"id": 3090,
"properties": {
"east": "up",
- "north": "side",
- "power": "2",
- "south": "up",
+ "north": "up",
+ "power": "12",
+ "south": "none",
"west": "none"
}
},
@@ -184856,9 +188920,9 @@
"id": 3091,
"properties": {
"east": "up",
- "north": "side",
- "power": "2",
- "south": "side",
+ "north": "up",
+ "power": "13",
+ "south": "up",
"west": "up"
}
},
@@ -184866,9 +188930,9 @@
"id": 3092,
"properties": {
"east": "up",
- "north": "side",
- "power": "2",
- "south": "side",
+ "north": "up",
+ "power": "13",
+ "south": "up",
"west": "side"
}
},
@@ -184876,9 +188940,9 @@
"id": 3093,
"properties": {
"east": "up",
- "north": "side",
- "power": "2",
- "south": "side",
+ "north": "up",
+ "power": "13",
+ "south": "up",
"west": "none"
}
},
@@ -184886,9 +188950,9 @@
"id": 3094,
"properties": {
"east": "up",
- "north": "side",
- "power": "2",
- "south": "none",
+ "north": "up",
+ "power": "13",
+ "south": "side",
"west": "up"
}
},
@@ -184896,9 +188960,9 @@
"id": 3095,
"properties": {
"east": "up",
- "north": "side",
- "power": "2",
- "south": "none",
+ "north": "up",
+ "power": "13",
+ "south": "side",
"west": "side"
}
},
@@ -184906,9 +188970,9 @@
"id": 3096,
"properties": {
"east": "up",
- "north": "side",
- "power": "2",
- "south": "none",
+ "north": "up",
+ "power": "13",
+ "south": "side",
"west": "none"
}
},
@@ -184916,9 +188980,9 @@
"id": 3097,
"properties": {
"east": "up",
- "north": "side",
- "power": "3",
- "south": "up",
+ "north": "up",
+ "power": "13",
+ "south": "none",
"west": "up"
}
},
@@ -184926,9 +188990,9 @@
"id": 3098,
"properties": {
"east": "up",
- "north": "side",
- "power": "3",
- "south": "up",
+ "north": "up",
+ "power": "13",
+ "south": "none",
"west": "side"
}
},
@@ -184936,9 +189000,9 @@
"id": 3099,
"properties": {
"east": "up",
- "north": "side",
- "power": "3",
- "south": "up",
+ "north": "up",
+ "power": "13",
+ "south": "none",
"west": "none"
}
},
@@ -184946,9 +189010,9 @@
"id": 3100,
"properties": {
"east": "up",
- "north": "side",
- "power": "3",
- "south": "side",
+ "north": "up",
+ "power": "14",
+ "south": "up",
"west": "up"
}
},
@@ -184956,9 +189020,9 @@
"id": 3101,
"properties": {
"east": "up",
- "north": "side",
- "power": "3",
- "south": "side",
+ "north": "up",
+ "power": "14",
+ "south": "up",
"west": "side"
}
},
@@ -184966,9 +189030,9 @@
"id": 3102,
"properties": {
"east": "up",
- "north": "side",
- "power": "3",
- "south": "side",
+ "north": "up",
+ "power": "14",
+ "south": "up",
"west": "none"
}
},
@@ -184976,9 +189040,9 @@
"id": 3103,
"properties": {
"east": "up",
- "north": "side",
- "power": "3",
- "south": "none",
+ "north": "up",
+ "power": "14",
+ "south": "side",
"west": "up"
}
},
@@ -184986,9 +189050,9 @@
"id": 3104,
"properties": {
"east": "up",
- "north": "side",
- "power": "3",
- "south": "none",
+ "north": "up",
+ "power": "14",
+ "south": "side",
"west": "side"
}
},
@@ -184996,9 +189060,9 @@
"id": 3105,
"properties": {
"east": "up",
- "north": "side",
- "power": "3",
- "south": "none",
+ "north": "up",
+ "power": "14",
+ "south": "side",
"west": "none"
}
},
@@ -185006,9 +189070,9 @@
"id": 3106,
"properties": {
"east": "up",
- "north": "side",
- "power": "4",
- "south": "up",
+ "north": "up",
+ "power": "14",
+ "south": "none",
"west": "up"
}
},
@@ -185016,9 +189080,9 @@
"id": 3107,
"properties": {
"east": "up",
- "north": "side",
- "power": "4",
- "south": "up",
+ "north": "up",
+ "power": "14",
+ "south": "none",
"west": "side"
}
},
@@ -185026,9 +189090,9 @@
"id": 3108,
"properties": {
"east": "up",
- "north": "side",
- "power": "4",
- "south": "up",
+ "north": "up",
+ "power": "14",
+ "south": "none",
"west": "none"
}
},
@@ -185036,9 +189100,9 @@
"id": 3109,
"properties": {
"east": "up",
- "north": "side",
- "power": "4",
- "south": "side",
+ "north": "up",
+ "power": "15",
+ "south": "up",
"west": "up"
}
},
@@ -185046,9 +189110,9 @@
"id": 3110,
"properties": {
"east": "up",
- "north": "side",
- "power": "4",
- "south": "side",
+ "north": "up",
+ "power": "15",
+ "south": "up",
"west": "side"
}
},
@@ -185056,9 +189120,9 @@
"id": 3111,
"properties": {
"east": "up",
- "north": "side",
- "power": "4",
- "south": "side",
+ "north": "up",
+ "power": "15",
+ "south": "up",
"west": "none"
}
},
@@ -185066,9 +189130,9 @@
"id": 3112,
"properties": {
"east": "up",
- "north": "side",
- "power": "4",
- "south": "none",
+ "north": "up",
+ "power": "15",
+ "south": "side",
"west": "up"
}
},
@@ -185076,9 +189140,9 @@
"id": 3113,
"properties": {
"east": "up",
- "north": "side",
- "power": "4",
- "south": "none",
+ "north": "up",
+ "power": "15",
+ "south": "side",
"west": "side"
}
},
@@ -185086,9 +189150,9 @@
"id": 3114,
"properties": {
"east": "up",
- "north": "side",
- "power": "4",
- "south": "none",
+ "north": "up",
+ "power": "15",
+ "south": "side",
"west": "none"
}
},
@@ -185096,9 +189160,9 @@
"id": 3115,
"properties": {
"east": "up",
- "north": "side",
- "power": "5",
- "south": "up",
+ "north": "up",
+ "power": "15",
+ "south": "none",
"west": "up"
}
},
@@ -185106,9 +189170,9 @@
"id": 3116,
"properties": {
"east": "up",
- "north": "side",
- "power": "5",
- "south": "up",
+ "north": "up",
+ "power": "15",
+ "south": "none",
"west": "side"
}
},
@@ -185116,9 +189180,9 @@
"id": 3117,
"properties": {
"east": "up",
- "north": "side",
- "power": "5",
- "south": "up",
+ "north": "up",
+ "power": "15",
+ "south": "none",
"west": "none"
}
},
@@ -185127,8 +189191,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "5",
- "south": "side",
+ "power": "0",
+ "south": "up",
"west": "up"
}
},
@@ -185137,8 +189201,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "5",
- "south": "side",
+ "power": "0",
+ "south": "up",
"west": "side"
}
},
@@ -185147,8 +189211,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "5",
- "south": "side",
+ "power": "0",
+ "south": "up",
"west": "none"
}
},
@@ -185157,8 +189221,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "5",
- "south": "none",
+ "power": "0",
+ "south": "side",
"west": "up"
}
},
@@ -185167,8 +189231,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "5",
- "south": "none",
+ "power": "0",
+ "south": "side",
"west": "side"
}
},
@@ -185177,8 +189241,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "5",
- "south": "none",
+ "power": "0",
+ "south": "side",
"west": "none"
}
},
@@ -185187,8 +189251,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "6",
- "south": "up",
+ "power": "0",
+ "south": "none",
"west": "up"
}
},
@@ -185197,8 +189261,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "6",
- "south": "up",
+ "power": "0",
+ "south": "none",
"west": "side"
}
},
@@ -185207,8 +189271,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "6",
- "south": "up",
+ "power": "0",
+ "south": "none",
"west": "none"
}
},
@@ -185217,8 +189281,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "6",
- "south": "side",
+ "power": "1",
+ "south": "up",
"west": "up"
}
},
@@ -185227,8 +189291,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "6",
- "south": "side",
+ "power": "1",
+ "south": "up",
"west": "side"
}
},
@@ -185237,8 +189301,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "6",
- "south": "side",
+ "power": "1",
+ "south": "up",
"west": "none"
}
},
@@ -185247,8 +189311,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "6",
- "south": "none",
+ "power": "1",
+ "south": "side",
"west": "up"
}
},
@@ -185257,8 +189321,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "6",
- "south": "none",
+ "power": "1",
+ "south": "side",
"west": "side"
}
},
@@ -185267,8 +189331,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "6",
- "south": "none",
+ "power": "1",
+ "south": "side",
"west": "none"
}
},
@@ -185277,8 +189341,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "7",
- "south": "up",
+ "power": "1",
+ "south": "none",
"west": "up"
}
},
@@ -185287,8 +189351,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "7",
- "south": "up",
+ "power": "1",
+ "south": "none",
"west": "side"
}
},
@@ -185297,8 +189361,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "7",
- "south": "up",
+ "power": "1",
+ "south": "none",
"west": "none"
}
},
@@ -185307,8 +189371,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "7",
- "south": "side",
+ "power": "2",
+ "south": "up",
"west": "up"
}
},
@@ -185317,8 +189381,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "7",
- "south": "side",
+ "power": "2",
+ "south": "up",
"west": "side"
}
},
@@ -185327,8 +189391,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "7",
- "south": "side",
+ "power": "2",
+ "south": "up",
"west": "none"
}
},
@@ -185337,8 +189401,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "7",
- "south": "none",
+ "power": "2",
+ "south": "side",
"west": "up"
}
},
@@ -185347,8 +189411,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "7",
- "south": "none",
+ "power": "2",
+ "south": "side",
"west": "side"
}
},
@@ -185357,8 +189421,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "7",
- "south": "none",
+ "power": "2",
+ "south": "side",
"west": "none"
}
},
@@ -185367,8 +189431,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "8",
- "south": "up",
+ "power": "2",
+ "south": "none",
"west": "up"
}
},
@@ -185377,8 +189441,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "8",
- "south": "up",
+ "power": "2",
+ "south": "none",
"west": "side"
}
},
@@ -185387,8 +189451,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "8",
- "south": "up",
+ "power": "2",
+ "south": "none",
"west": "none"
}
},
@@ -185397,8 +189461,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "8",
- "south": "side",
+ "power": "3",
+ "south": "up",
"west": "up"
}
},
@@ -185407,8 +189471,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "8",
- "south": "side",
+ "power": "3",
+ "south": "up",
"west": "side"
}
},
@@ -185417,8 +189481,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "8",
- "south": "side",
+ "power": "3",
+ "south": "up",
"west": "none"
}
},
@@ -185427,8 +189491,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "8",
- "south": "none",
+ "power": "3",
+ "south": "side",
"west": "up"
}
},
@@ -185437,8 +189501,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "8",
- "south": "none",
+ "power": "3",
+ "south": "side",
"west": "side"
}
},
@@ -185447,8 +189511,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "8",
- "south": "none",
+ "power": "3",
+ "south": "side",
"west": "none"
}
},
@@ -185457,8 +189521,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "9",
- "south": "up",
+ "power": "3",
+ "south": "none",
"west": "up"
}
},
@@ -185467,8 +189531,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "9",
- "south": "up",
+ "power": "3",
+ "south": "none",
"west": "side"
}
},
@@ -185477,8 +189541,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "9",
- "south": "up",
+ "power": "3",
+ "south": "none",
"west": "none"
}
},
@@ -185487,8 +189551,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "9",
- "south": "side",
+ "power": "4",
+ "south": "up",
"west": "up"
}
},
@@ -185497,8 +189561,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "9",
- "south": "side",
+ "power": "4",
+ "south": "up",
"west": "side"
}
},
@@ -185507,8 +189571,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "9",
- "south": "side",
+ "power": "4",
+ "south": "up",
"west": "none"
}
},
@@ -185517,8 +189581,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "9",
- "south": "none",
+ "power": "4",
+ "south": "side",
"west": "up"
}
},
@@ -185527,8 +189591,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "9",
- "south": "none",
+ "power": "4",
+ "south": "side",
"west": "side"
}
},
@@ -185537,8 +189601,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "9",
- "south": "none",
+ "power": "4",
+ "south": "side",
"west": "none"
}
},
@@ -185547,8 +189611,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "10",
- "south": "up",
+ "power": "4",
+ "south": "none",
"west": "up"
}
},
@@ -185557,8 +189621,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "10",
- "south": "up",
+ "power": "4",
+ "south": "none",
"west": "side"
}
},
@@ -185567,8 +189631,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "10",
- "south": "up",
+ "power": "4",
+ "south": "none",
"west": "none"
}
},
@@ -185577,8 +189641,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "10",
- "south": "side",
+ "power": "5",
+ "south": "up",
"west": "up"
}
},
@@ -185587,8 +189651,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "10",
- "south": "side",
+ "power": "5",
+ "south": "up",
"west": "side"
}
},
@@ -185597,8 +189661,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "10",
- "south": "side",
+ "power": "5",
+ "south": "up",
"west": "none"
}
},
@@ -185607,8 +189671,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "10",
- "south": "none",
+ "power": "5",
+ "south": "side",
"west": "up"
}
},
@@ -185617,8 +189681,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "10",
- "south": "none",
+ "power": "5",
+ "south": "side",
"west": "side"
}
},
@@ -185627,8 +189691,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "10",
- "south": "none",
+ "power": "5",
+ "south": "side",
"west": "none"
}
},
@@ -185637,8 +189701,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "11",
- "south": "up",
+ "power": "5",
+ "south": "none",
"west": "up"
}
},
@@ -185647,8 +189711,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "11",
- "south": "up",
+ "power": "5",
+ "south": "none",
"west": "side"
}
},
@@ -185657,8 +189721,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "11",
- "south": "up",
+ "power": "5",
+ "south": "none",
"west": "none"
}
},
@@ -185667,8 +189731,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "11",
- "south": "side",
+ "power": "6",
+ "south": "up",
"west": "up"
}
},
@@ -185677,8 +189741,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "11",
- "south": "side",
+ "power": "6",
+ "south": "up",
"west": "side"
}
},
@@ -185687,8 +189751,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "11",
- "south": "side",
+ "power": "6",
+ "south": "up",
"west": "none"
}
},
@@ -185697,8 +189761,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "11",
- "south": "none",
+ "power": "6",
+ "south": "side",
"west": "up"
}
},
@@ -185707,8 +189771,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "11",
- "south": "none",
+ "power": "6",
+ "south": "side",
"west": "side"
}
},
@@ -185717,8 +189781,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "11",
- "south": "none",
+ "power": "6",
+ "south": "side",
"west": "none"
}
},
@@ -185727,8 +189791,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "12",
- "south": "up",
+ "power": "6",
+ "south": "none",
"west": "up"
}
},
@@ -185737,8 +189801,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "12",
- "south": "up",
+ "power": "6",
+ "south": "none",
"west": "side"
}
},
@@ -185747,8 +189811,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "12",
- "south": "up",
+ "power": "6",
+ "south": "none",
"west": "none"
}
},
@@ -185757,8 +189821,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "12",
- "south": "side",
+ "power": "7",
+ "south": "up",
"west": "up"
}
},
@@ -185767,8 +189831,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "12",
- "south": "side",
+ "power": "7",
+ "south": "up",
"west": "side"
}
},
@@ -185777,8 +189841,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "12",
- "south": "side",
+ "power": "7",
+ "south": "up",
"west": "none"
}
},
@@ -185787,8 +189851,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "12",
- "south": "none",
+ "power": "7",
+ "south": "side",
"west": "up"
}
},
@@ -185797,8 +189861,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "12",
- "south": "none",
+ "power": "7",
+ "south": "side",
"west": "side"
}
},
@@ -185807,8 +189871,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "12",
- "south": "none",
+ "power": "7",
+ "south": "side",
"west": "none"
}
},
@@ -185817,8 +189881,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "13",
- "south": "up",
+ "power": "7",
+ "south": "none",
"west": "up"
}
},
@@ -185827,8 +189891,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "13",
- "south": "up",
+ "power": "7",
+ "south": "none",
"west": "side"
}
},
@@ -185837,8 +189901,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "13",
- "south": "up",
+ "power": "7",
+ "south": "none",
"west": "none"
}
},
@@ -185847,8 +189911,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "13",
- "south": "side",
+ "power": "8",
+ "south": "up",
"west": "up"
}
},
@@ -185857,8 +189921,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "13",
- "south": "side",
+ "power": "8",
+ "south": "up",
"west": "side"
}
},
@@ -185867,8 +189931,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "13",
- "south": "side",
+ "power": "8",
+ "south": "up",
"west": "none"
}
},
@@ -185877,8 +189941,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "13",
- "south": "none",
+ "power": "8",
+ "south": "side",
"west": "up"
}
},
@@ -185887,8 +189951,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "13",
- "south": "none",
+ "power": "8",
+ "south": "side",
"west": "side"
}
},
@@ -185897,8 +189961,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "13",
- "south": "none",
+ "power": "8",
+ "south": "side",
"west": "none"
}
},
@@ -185907,8 +189971,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "14",
- "south": "up",
+ "power": "8",
+ "south": "none",
"west": "up"
}
},
@@ -185917,8 +189981,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "14",
- "south": "up",
+ "power": "8",
+ "south": "none",
"west": "side"
}
},
@@ -185927,8 +189991,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "14",
- "south": "up",
+ "power": "8",
+ "south": "none",
"west": "none"
}
},
@@ -185937,8 +190001,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "14",
- "south": "side",
+ "power": "9",
+ "south": "up",
"west": "up"
}
},
@@ -185947,8 +190011,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "14",
- "south": "side",
+ "power": "9",
+ "south": "up",
"west": "side"
}
},
@@ -185957,8 +190021,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "14",
- "south": "side",
+ "power": "9",
+ "south": "up",
"west": "none"
}
},
@@ -185967,8 +190031,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "14",
- "south": "none",
+ "power": "9",
+ "south": "side",
"west": "up"
}
},
@@ -185977,8 +190041,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "14",
- "south": "none",
+ "power": "9",
+ "south": "side",
"west": "side"
}
},
@@ -185987,8 +190051,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "14",
- "south": "none",
+ "power": "9",
+ "south": "side",
"west": "none"
}
},
@@ -185997,8 +190061,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "15",
- "south": "up",
+ "power": "9",
+ "south": "none",
"west": "up"
}
},
@@ -186007,8 +190071,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "15",
- "south": "up",
+ "power": "9",
+ "south": "none",
"west": "side"
}
},
@@ -186017,8 +190081,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "15",
- "south": "up",
+ "power": "9",
+ "south": "none",
"west": "none"
}
},
@@ -186027,8 +190091,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "15",
- "south": "side",
+ "power": "10",
+ "south": "up",
"west": "up"
}
},
@@ -186037,8 +190101,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "15",
- "south": "side",
+ "power": "10",
+ "south": "up",
"west": "side"
}
},
@@ -186047,8 +190111,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "15",
- "south": "side",
+ "power": "10",
+ "south": "up",
"west": "none"
}
},
@@ -186057,8 +190121,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "15",
- "south": "none",
+ "power": "10",
+ "south": "side",
"west": "up"
}
},
@@ -186067,8 +190131,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "15",
- "south": "none",
+ "power": "10",
+ "south": "side",
"west": "side"
}
},
@@ -186077,8 +190141,8 @@
"properties": {
"east": "up",
"north": "side",
- "power": "15",
- "south": "none",
+ "power": "10",
+ "south": "side",
"west": "none"
}
},
@@ -186086,9 +190150,9 @@
"id": 3214,
"properties": {
"east": "up",
- "north": "none",
- "power": "0",
- "south": "up",
+ "north": "side",
+ "power": "10",
+ "south": "none",
"west": "up"
}
},
@@ -186096,9 +190160,9 @@
"id": 3215,
"properties": {
"east": "up",
- "north": "none",
- "power": "0",
- "south": "up",
+ "north": "side",
+ "power": "10",
+ "south": "none",
"west": "side"
}
},
@@ -186106,9 +190170,9 @@
"id": 3216,
"properties": {
"east": "up",
- "north": "none",
- "power": "0",
- "south": "up",
+ "north": "side",
+ "power": "10",
+ "south": "none",
"west": "none"
}
},
@@ -186116,9 +190180,9 @@
"id": 3217,
"properties": {
"east": "up",
- "north": "none",
- "power": "0",
- "south": "side",
+ "north": "side",
+ "power": "11",
+ "south": "up",
"west": "up"
}
},
@@ -186126,9 +190190,9 @@
"id": 3218,
"properties": {
"east": "up",
- "north": "none",
- "power": "0",
- "south": "side",
+ "north": "side",
+ "power": "11",
+ "south": "up",
"west": "side"
}
},
@@ -186136,9 +190200,9 @@
"id": 3219,
"properties": {
"east": "up",
- "north": "none",
- "power": "0",
- "south": "side",
+ "north": "side",
+ "power": "11",
+ "south": "up",
"west": "none"
}
},
@@ -186146,9 +190210,9 @@
"id": 3220,
"properties": {
"east": "up",
- "north": "none",
- "power": "0",
- "south": "none",
+ "north": "side",
+ "power": "11",
+ "south": "side",
"west": "up"
}
},
@@ -186156,9 +190220,9 @@
"id": 3221,
"properties": {
"east": "up",
- "north": "none",
- "power": "0",
- "south": "none",
+ "north": "side",
+ "power": "11",
+ "south": "side",
"west": "side"
}
},
@@ -186166,9 +190230,9 @@
"id": 3222,
"properties": {
"east": "up",
- "north": "none",
- "power": "0",
- "south": "none",
+ "north": "side",
+ "power": "11",
+ "south": "side",
"west": "none"
}
},
@@ -186176,9 +190240,9 @@
"id": 3223,
"properties": {
"east": "up",
- "north": "none",
- "power": "1",
- "south": "up",
+ "north": "side",
+ "power": "11",
+ "south": "none",
"west": "up"
}
},
@@ -186186,9 +190250,9 @@
"id": 3224,
"properties": {
"east": "up",
- "north": "none",
- "power": "1",
- "south": "up",
+ "north": "side",
+ "power": "11",
+ "south": "none",
"west": "side"
}
},
@@ -186196,9 +190260,9 @@
"id": 3225,
"properties": {
"east": "up",
- "north": "none",
- "power": "1",
- "south": "up",
+ "north": "side",
+ "power": "11",
+ "south": "none",
"west": "none"
}
},
@@ -186206,9 +190270,9 @@
"id": 3226,
"properties": {
"east": "up",
- "north": "none",
- "power": "1",
- "south": "side",
+ "north": "side",
+ "power": "12",
+ "south": "up",
"west": "up"
}
},
@@ -186216,9 +190280,9 @@
"id": 3227,
"properties": {
"east": "up",
- "north": "none",
- "power": "1",
- "south": "side",
+ "north": "side",
+ "power": "12",
+ "south": "up",
"west": "side"
}
},
@@ -186226,9 +190290,9 @@
"id": 3228,
"properties": {
"east": "up",
- "north": "none",
- "power": "1",
- "south": "side",
+ "north": "side",
+ "power": "12",
+ "south": "up",
"west": "none"
}
},
@@ -186236,9 +190300,9 @@
"id": 3229,
"properties": {
"east": "up",
- "north": "none",
- "power": "1",
- "south": "none",
+ "north": "side",
+ "power": "12",
+ "south": "side",
"west": "up"
}
},
@@ -186246,9 +190310,9 @@
"id": 3230,
"properties": {
"east": "up",
- "north": "none",
- "power": "1",
- "south": "none",
+ "north": "side",
+ "power": "12",
+ "south": "side",
"west": "side"
}
},
@@ -186256,9 +190320,9 @@
"id": 3231,
"properties": {
"east": "up",
- "north": "none",
- "power": "1",
- "south": "none",
+ "north": "side",
+ "power": "12",
+ "south": "side",
"west": "none"
}
},
@@ -186266,9 +190330,9 @@
"id": 3232,
"properties": {
"east": "up",
- "north": "none",
- "power": "2",
- "south": "up",
+ "north": "side",
+ "power": "12",
+ "south": "none",
"west": "up"
}
},
@@ -186276,9 +190340,9 @@
"id": 3233,
"properties": {
"east": "up",
- "north": "none",
- "power": "2",
- "south": "up",
+ "north": "side",
+ "power": "12",
+ "south": "none",
"west": "side"
}
},
@@ -186286,9 +190350,9 @@
"id": 3234,
"properties": {
"east": "up",
- "north": "none",
- "power": "2",
- "south": "up",
+ "north": "side",
+ "power": "12",
+ "south": "none",
"west": "none"
}
},
@@ -186296,9 +190360,9 @@
"id": 3235,
"properties": {
"east": "up",
- "north": "none",
- "power": "2",
- "south": "side",
+ "north": "side",
+ "power": "13",
+ "south": "up",
"west": "up"
}
},
@@ -186306,9 +190370,9 @@
"id": 3236,
"properties": {
"east": "up",
- "north": "none",
- "power": "2",
- "south": "side",
+ "north": "side",
+ "power": "13",
+ "south": "up",
"west": "side"
}
},
@@ -186316,9 +190380,9 @@
"id": 3237,
"properties": {
"east": "up",
- "north": "none",
- "power": "2",
- "south": "side",
+ "north": "side",
+ "power": "13",
+ "south": "up",
"west": "none"
}
},
@@ -186326,9 +190390,9 @@
"id": 3238,
"properties": {
"east": "up",
- "north": "none",
- "power": "2",
- "south": "none",
+ "north": "side",
+ "power": "13",
+ "south": "side",
"west": "up"
}
},
@@ -186336,9 +190400,9 @@
"id": 3239,
"properties": {
"east": "up",
- "north": "none",
- "power": "2",
- "south": "none",
+ "north": "side",
+ "power": "13",
+ "south": "side",
"west": "side"
}
},
@@ -186346,9 +190410,9 @@
"id": 3240,
"properties": {
"east": "up",
- "north": "none",
- "power": "2",
- "south": "none",
+ "north": "side",
+ "power": "13",
+ "south": "side",
"west": "none"
}
},
@@ -186356,9 +190420,9 @@
"id": 3241,
"properties": {
"east": "up",
- "north": "none",
- "power": "3",
- "south": "up",
+ "north": "side",
+ "power": "13",
+ "south": "none",
"west": "up"
}
},
@@ -186366,9 +190430,9 @@
"id": 3242,
"properties": {
"east": "up",
- "north": "none",
- "power": "3",
- "south": "up",
+ "north": "side",
+ "power": "13",
+ "south": "none",
"west": "side"
}
},
@@ -186376,9 +190440,9 @@
"id": 3243,
"properties": {
"east": "up",
- "north": "none",
- "power": "3",
- "south": "up",
+ "north": "side",
+ "power": "13",
+ "south": "none",
"west": "none"
}
},
@@ -186386,9 +190450,9 @@
"id": 3244,
"properties": {
"east": "up",
- "north": "none",
- "power": "3",
- "south": "side",
+ "north": "side",
+ "power": "14",
+ "south": "up",
"west": "up"
}
},
@@ -186396,9 +190460,9 @@
"id": 3245,
"properties": {
"east": "up",
- "north": "none",
- "power": "3",
- "south": "side",
+ "north": "side",
+ "power": "14",
+ "south": "up",
"west": "side"
}
},
@@ -186406,9 +190470,9 @@
"id": 3246,
"properties": {
"east": "up",
- "north": "none",
- "power": "3",
- "south": "side",
+ "north": "side",
+ "power": "14",
+ "south": "up",
"west": "none"
}
},
@@ -186416,9 +190480,9 @@
"id": 3247,
"properties": {
"east": "up",
- "north": "none",
- "power": "3",
- "south": "none",
+ "north": "side",
+ "power": "14",
+ "south": "side",
"west": "up"
}
},
@@ -186426,9 +190490,9 @@
"id": 3248,
"properties": {
"east": "up",
- "north": "none",
- "power": "3",
- "south": "none",
+ "north": "side",
+ "power": "14",
+ "south": "side",
"west": "side"
}
},
@@ -186436,9 +190500,9 @@
"id": 3249,
"properties": {
"east": "up",
- "north": "none",
- "power": "3",
- "south": "none",
+ "north": "side",
+ "power": "14",
+ "south": "side",
"west": "none"
}
},
@@ -186446,9 +190510,9 @@
"id": 3250,
"properties": {
"east": "up",
- "north": "none",
- "power": "4",
- "south": "up",
+ "north": "side",
+ "power": "14",
+ "south": "none",
"west": "up"
}
},
@@ -186456,9 +190520,9 @@
"id": 3251,
"properties": {
"east": "up",
- "north": "none",
- "power": "4",
- "south": "up",
+ "north": "side",
+ "power": "14",
+ "south": "none",
"west": "side"
}
},
@@ -186466,9 +190530,9 @@
"id": 3252,
"properties": {
"east": "up",
- "north": "none",
- "power": "4",
- "south": "up",
+ "north": "side",
+ "power": "14",
+ "south": "none",
"west": "none"
}
},
@@ -186476,9 +190540,9 @@
"id": 3253,
"properties": {
"east": "up",
- "north": "none",
- "power": "4",
- "south": "side",
+ "north": "side",
+ "power": "15",
+ "south": "up",
"west": "up"
}
},
@@ -186486,9 +190550,9 @@
"id": 3254,
"properties": {
"east": "up",
- "north": "none",
- "power": "4",
- "south": "side",
+ "north": "side",
+ "power": "15",
+ "south": "up",
"west": "side"
}
},
@@ -186496,9 +190560,9 @@
"id": 3255,
"properties": {
"east": "up",
- "north": "none",
- "power": "4",
- "south": "side",
+ "north": "side",
+ "power": "15",
+ "south": "up",
"west": "none"
}
},
@@ -186506,9 +190570,9 @@
"id": 3256,
"properties": {
"east": "up",
- "north": "none",
- "power": "4",
- "south": "none",
+ "north": "side",
+ "power": "15",
+ "south": "side",
"west": "up"
}
},
@@ -186516,9 +190580,9 @@
"id": 3257,
"properties": {
"east": "up",
- "north": "none",
- "power": "4",
- "south": "none",
+ "north": "side",
+ "power": "15",
+ "south": "side",
"west": "side"
}
},
@@ -186526,9 +190590,9 @@
"id": 3258,
"properties": {
"east": "up",
- "north": "none",
- "power": "4",
- "south": "none",
+ "north": "side",
+ "power": "15",
+ "south": "side",
"west": "none"
}
},
@@ -186536,9 +190600,9 @@
"id": 3259,
"properties": {
"east": "up",
- "north": "none",
- "power": "5",
- "south": "up",
+ "north": "side",
+ "power": "15",
+ "south": "none",
"west": "up"
}
},
@@ -186546,9 +190610,9 @@
"id": 3260,
"properties": {
"east": "up",
- "north": "none",
- "power": "5",
- "south": "up",
+ "north": "side",
+ "power": "15",
+ "south": "none",
"west": "side"
}
},
@@ -186556,9 +190620,9 @@
"id": 3261,
"properties": {
"east": "up",
- "north": "none",
- "power": "5",
- "south": "up",
+ "north": "side",
+ "power": "15",
+ "south": "none",
"west": "none"
}
},
@@ -186567,8 +190631,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "5",
- "south": "side",
+ "power": "0",
+ "south": "up",
"west": "up"
}
},
@@ -186577,8 +190641,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "5",
- "south": "side",
+ "power": "0",
+ "south": "up",
"west": "side"
}
},
@@ -186587,8 +190651,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "5",
- "south": "side",
+ "power": "0",
+ "south": "up",
"west": "none"
}
},
@@ -186597,8 +190661,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "5",
- "south": "none",
+ "power": "0",
+ "south": "side",
"west": "up"
}
},
@@ -186607,8 +190671,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "5",
- "south": "none",
+ "power": "0",
+ "south": "side",
"west": "side"
}
},
@@ -186617,8 +190681,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "5",
- "south": "none",
+ "power": "0",
+ "south": "side",
"west": "none"
}
},
@@ -186627,8 +190691,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "6",
- "south": "up",
+ "power": "0",
+ "south": "none",
"west": "up"
}
},
@@ -186637,8 +190701,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "6",
- "south": "up",
+ "power": "0",
+ "south": "none",
"west": "side"
}
},
@@ -186647,8 +190711,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "6",
- "south": "up",
+ "power": "0",
+ "south": "none",
"west": "none"
}
},
@@ -186657,8 +190721,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "6",
- "south": "side",
+ "power": "1",
+ "south": "up",
"west": "up"
}
},
@@ -186667,8 +190731,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "6",
- "south": "side",
+ "power": "1",
+ "south": "up",
"west": "side"
}
},
@@ -186677,8 +190741,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "6",
- "south": "side",
+ "power": "1",
+ "south": "up",
"west": "none"
}
},
@@ -186687,8 +190751,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "6",
- "south": "none",
+ "power": "1",
+ "south": "side",
"west": "up"
}
},
@@ -186697,8 +190761,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "6",
- "south": "none",
+ "power": "1",
+ "south": "side",
"west": "side"
}
},
@@ -186707,8 +190771,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "6",
- "south": "none",
+ "power": "1",
+ "south": "side",
"west": "none"
}
},
@@ -186717,8 +190781,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "7",
- "south": "up",
+ "power": "1",
+ "south": "none",
"west": "up"
}
},
@@ -186727,8 +190791,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "7",
- "south": "up",
+ "power": "1",
+ "south": "none",
"west": "side"
}
},
@@ -186737,8 +190801,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "7",
- "south": "up",
+ "power": "1",
+ "south": "none",
"west": "none"
}
},
@@ -186747,8 +190811,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "7",
- "south": "side",
+ "power": "2",
+ "south": "up",
"west": "up"
}
},
@@ -186757,8 +190821,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "7",
- "south": "side",
+ "power": "2",
+ "south": "up",
"west": "side"
}
},
@@ -186767,8 +190831,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "7",
- "south": "side",
+ "power": "2",
+ "south": "up",
"west": "none"
}
},
@@ -186777,8 +190841,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "7",
- "south": "none",
+ "power": "2",
+ "south": "side",
"west": "up"
}
},
@@ -186787,8 +190851,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "7",
- "south": "none",
+ "power": "2",
+ "south": "side",
"west": "side"
}
},
@@ -186797,8 +190861,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "7",
- "south": "none",
+ "power": "2",
+ "south": "side",
"west": "none"
}
},
@@ -186807,8 +190871,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "8",
- "south": "up",
+ "power": "2",
+ "south": "none",
"west": "up"
}
},
@@ -186817,8 +190881,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "8",
- "south": "up",
+ "power": "2",
+ "south": "none",
"west": "side"
}
},
@@ -186827,8 +190891,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "8",
- "south": "up",
+ "power": "2",
+ "south": "none",
"west": "none"
}
},
@@ -186837,8 +190901,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "8",
- "south": "side",
+ "power": "3",
+ "south": "up",
"west": "up"
}
},
@@ -186847,8 +190911,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "8",
- "south": "side",
+ "power": "3",
+ "south": "up",
"west": "side"
}
},
@@ -186857,8 +190921,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "8",
- "south": "side",
+ "power": "3",
+ "south": "up",
"west": "none"
}
},
@@ -186867,8 +190931,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "8",
- "south": "none",
+ "power": "3",
+ "south": "side",
"west": "up"
}
},
@@ -186877,8 +190941,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "8",
- "south": "none",
+ "power": "3",
+ "south": "side",
"west": "side"
}
},
@@ -186887,8 +190951,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "8",
- "south": "none",
+ "power": "3",
+ "south": "side",
"west": "none"
}
},
@@ -186897,8 +190961,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "9",
- "south": "up",
+ "power": "3",
+ "south": "none",
"west": "up"
}
},
@@ -186907,8 +190971,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "9",
- "south": "up",
+ "power": "3",
+ "south": "none",
"west": "side"
}
},
@@ -186917,8 +190981,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "9",
- "south": "up",
+ "power": "3",
+ "south": "none",
"west": "none"
}
},
@@ -186927,8 +190991,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "9",
- "south": "side",
+ "power": "4",
+ "south": "up",
"west": "up"
}
},
@@ -186937,8 +191001,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "9",
- "south": "side",
+ "power": "4",
+ "south": "up",
"west": "side"
}
},
@@ -186947,8 +191011,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "9",
- "south": "side",
+ "power": "4",
+ "south": "up",
"west": "none"
}
},
@@ -186957,8 +191021,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "9",
- "south": "none",
+ "power": "4",
+ "south": "side",
"west": "up"
}
},
@@ -186967,8 +191031,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "9",
- "south": "none",
+ "power": "4",
+ "south": "side",
"west": "side"
}
},
@@ -186977,8 +191041,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "9",
- "south": "none",
+ "power": "4",
+ "south": "side",
"west": "none"
}
},
@@ -186987,8 +191051,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "10",
- "south": "up",
+ "power": "4",
+ "south": "none",
"west": "up"
}
},
@@ -186997,8 +191061,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "10",
- "south": "up",
+ "power": "4",
+ "south": "none",
"west": "side"
}
},
@@ -187007,8 +191071,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "10",
- "south": "up",
+ "power": "4",
+ "south": "none",
"west": "none"
}
},
@@ -187017,8 +191081,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "10",
- "south": "side",
+ "power": "5",
+ "south": "up",
"west": "up"
}
},
@@ -187027,8 +191091,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "10",
- "south": "side",
+ "power": "5",
+ "south": "up",
"west": "side"
}
},
@@ -187037,8 +191101,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "10",
- "south": "side",
+ "power": "5",
+ "south": "up",
"west": "none"
}
},
@@ -187047,8 +191111,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "10",
- "south": "none",
+ "power": "5",
+ "south": "side",
"west": "up"
}
},
@@ -187057,8 +191121,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "10",
- "south": "none",
+ "power": "5",
+ "south": "side",
"west": "side"
}
},
@@ -187067,8 +191131,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "10",
- "south": "none",
+ "power": "5",
+ "south": "side",
"west": "none"
}
},
@@ -187077,8 +191141,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "11",
- "south": "up",
+ "power": "5",
+ "south": "none",
"west": "up"
}
},
@@ -187087,8 +191151,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "11",
- "south": "up",
+ "power": "5",
+ "south": "none",
"west": "side"
}
},
@@ -187097,8 +191161,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "11",
- "south": "up",
+ "power": "5",
+ "south": "none",
"west": "none"
}
},
@@ -187107,8 +191171,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "11",
- "south": "side",
+ "power": "6",
+ "south": "up",
"west": "up"
}
},
@@ -187117,8 +191181,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "11",
- "south": "side",
+ "power": "6",
+ "south": "up",
"west": "side"
}
},
@@ -187127,8 +191191,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "11",
- "south": "side",
+ "power": "6",
+ "south": "up",
"west": "none"
}
},
@@ -187137,8 +191201,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "11",
- "south": "none",
+ "power": "6",
+ "south": "side",
"west": "up"
}
},
@@ -187147,8 +191211,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "11",
- "south": "none",
+ "power": "6",
+ "south": "side",
"west": "side"
}
},
@@ -187157,8 +191221,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "11",
- "south": "none",
+ "power": "6",
+ "south": "side",
"west": "none"
}
},
@@ -187167,8 +191231,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "12",
- "south": "up",
+ "power": "6",
+ "south": "none",
"west": "up"
}
},
@@ -187177,8 +191241,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "12",
- "south": "up",
+ "power": "6",
+ "south": "none",
"west": "side"
}
},
@@ -187187,8 +191251,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "12",
- "south": "up",
+ "power": "6",
+ "south": "none",
"west": "none"
}
},
@@ -187197,8 +191261,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "12",
- "south": "side",
+ "power": "7",
+ "south": "up",
"west": "up"
}
},
@@ -187207,8 +191271,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "12",
- "south": "side",
+ "power": "7",
+ "south": "up",
"west": "side"
}
},
@@ -187217,8 +191281,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "12",
- "south": "side",
+ "power": "7",
+ "south": "up",
"west": "none"
}
},
@@ -187227,8 +191291,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "12",
- "south": "none",
+ "power": "7",
+ "south": "side",
"west": "up"
}
},
@@ -187237,8 +191301,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "12",
- "south": "none",
+ "power": "7",
+ "south": "side",
"west": "side"
}
},
@@ -187247,8 +191311,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "12",
- "south": "none",
+ "power": "7",
+ "south": "side",
"west": "none"
}
},
@@ -187257,8 +191321,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "13",
- "south": "up",
+ "power": "7",
+ "south": "none",
"west": "up"
}
},
@@ -187267,8 +191331,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "13",
- "south": "up",
+ "power": "7",
+ "south": "none",
"west": "side"
}
},
@@ -187277,8 +191341,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "13",
- "south": "up",
+ "power": "7",
+ "south": "none",
"west": "none"
}
},
@@ -187287,8 +191351,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "13",
- "south": "side",
+ "power": "8",
+ "south": "up",
"west": "up"
}
},
@@ -187297,8 +191361,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "13",
- "south": "side",
+ "power": "8",
+ "south": "up",
"west": "side"
}
},
@@ -187307,8 +191371,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "13",
- "south": "side",
+ "power": "8",
+ "south": "up",
"west": "none"
}
},
@@ -187317,8 +191381,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "13",
- "south": "none",
+ "power": "8",
+ "south": "side",
"west": "up"
}
},
@@ -187327,8 +191391,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "13",
- "south": "none",
+ "power": "8",
+ "south": "side",
"west": "side"
}
},
@@ -187337,8 +191401,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "13",
- "south": "none",
+ "power": "8",
+ "south": "side",
"west": "none"
}
},
@@ -187347,8 +191411,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "14",
- "south": "up",
+ "power": "8",
+ "south": "none",
"west": "up"
}
},
@@ -187357,8 +191421,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "14",
- "south": "up",
+ "power": "8",
+ "south": "none",
"west": "side"
}
},
@@ -187367,8 +191431,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "14",
- "south": "up",
+ "power": "8",
+ "south": "none",
"west": "none"
}
},
@@ -187377,8 +191441,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "14",
- "south": "side",
+ "power": "9",
+ "south": "up",
"west": "up"
}
},
@@ -187387,8 +191451,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "14",
- "south": "side",
+ "power": "9",
+ "south": "up",
"west": "side"
}
},
@@ -187397,8 +191461,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "14",
- "south": "side",
+ "power": "9",
+ "south": "up",
"west": "none"
}
},
@@ -187407,8 +191471,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "14",
- "south": "none",
+ "power": "9",
+ "south": "side",
"west": "up"
}
},
@@ -187417,8 +191481,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "14",
- "south": "none",
+ "power": "9",
+ "south": "side",
"west": "side"
}
},
@@ -187427,8 +191491,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "14",
- "south": "none",
+ "power": "9",
+ "south": "side",
"west": "none"
}
},
@@ -187437,8 +191501,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "15",
- "south": "up",
+ "power": "9",
+ "south": "none",
"west": "up"
}
},
@@ -187447,8 +191511,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "15",
- "south": "up",
+ "power": "9",
+ "south": "none",
"west": "side"
}
},
@@ -187457,8 +191521,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "15",
- "south": "up",
+ "power": "9",
+ "south": "none",
"west": "none"
}
},
@@ -187467,8 +191531,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "15",
- "south": "side",
+ "power": "10",
+ "south": "up",
"west": "up"
}
},
@@ -187477,8 +191541,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "15",
- "south": "side",
+ "power": "10",
+ "south": "up",
"west": "side"
}
},
@@ -187487,8 +191551,8 @@
"properties": {
"east": "up",
"north": "none",
- "power": "15",
- "south": "side",
+ "power": "10",
+ "south": "up",
"west": "none"
}
},
@@ -187497,13 +191561,493 @@
"properties": {
"east": "up",
"north": "none",
- "power": "15",
- "south": "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",
@@ -187513,7 +192057,7 @@
}
},
{
- "id": 3357,
+ "id": 3405,
"properties": {
"east": "up",
"north": "none",
@@ -187522,493 +192066,13 @@
"west": "none"
}
},
- {
- "id": 3358,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "0",
- "south": "up",
- "west": "up"
- }
- },
- {
- "id": 3359,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "0",
- "south": "up",
- "west": "side"
- }
- },
- {
- "id": 3360,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "0",
- "south": "up",
- "west": "none"
- }
- },
- {
- "id": 3361,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "0",
- "south": "side",
- "west": "up"
- }
- },
- {
- "id": 3362,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "0",
- "south": "side",
- "west": "side"
- }
- },
- {
- "id": 3363,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "0",
- "south": "side",
- "west": "none"
- }
- },
- {
- "id": 3364,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "0",
- "south": "none",
- "west": "up"
- }
- },
- {
- "id": 3365,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "0",
- "south": "none",
- "west": "side"
- }
- },
- {
- "id": 3366,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "0",
- "south": "none",
- "west": "none"
- }
- },
- {
- "id": 3367,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "1",
- "south": "up",
- "west": "up"
- }
- },
- {
- "id": 3368,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "1",
- "south": "up",
- "west": "side"
- }
- },
- {
- "id": 3369,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "1",
- "south": "up",
- "west": "none"
- }
- },
- {
- "id": 3370,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "1",
- "south": "side",
- "west": "up"
- }
- },
- {
- "id": 3371,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "1",
- "south": "side",
- "west": "side"
- }
- },
- {
- "id": 3372,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "1",
- "south": "side",
- "west": "none"
- }
- },
- {
- "id": 3373,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "1",
- "south": "none",
- "west": "up"
- }
- },
- {
- "id": 3374,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "1",
- "south": "none",
- "west": "side"
- }
- },
- {
- "id": 3375,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "1",
- "south": "none",
- "west": "none"
- }
- },
- {
- "id": 3376,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "2",
- "south": "up",
- "west": "up"
- }
- },
- {
- "id": 3377,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "2",
- "south": "up",
- "west": "side"
- }
- },
- {
- "id": 3378,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "2",
- "south": "up",
- "west": "none"
- }
- },
- {
- "id": 3379,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "2",
- "south": "side",
- "west": "up"
- }
- },
- {
- "id": 3380,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "2",
- "south": "side",
- "west": "side"
- }
- },
- {
- "id": 3381,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "2",
- "south": "side",
- "west": "none"
- }
- },
- {
- "id": 3382,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "2",
- "south": "none",
- "west": "up"
- }
- },
- {
- "id": 3383,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "2",
- "south": "none",
- "west": "side"
- }
- },
- {
- "id": 3384,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "2",
- "south": "none",
- "west": "none"
- }
- },
- {
- "id": 3385,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "3",
- "south": "up",
- "west": "up"
- }
- },
- {
- "id": 3386,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "3",
- "south": "up",
- "west": "side"
- }
- },
- {
- "id": 3387,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "3",
- "south": "up",
- "west": "none"
- }
- },
- {
- "id": 3388,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "3",
- "south": "side",
- "west": "up"
- }
- },
- {
- "id": 3389,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "3",
- "south": "side",
- "west": "side"
- }
- },
- {
- "id": 3390,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "3",
- "south": "side",
- "west": "none"
- }
- },
- {
- "id": 3391,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "3",
- "south": "none",
- "west": "up"
- }
- },
- {
- "id": 3392,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "3",
- "south": "none",
- "west": "side"
- }
- },
- {
- "id": 3393,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "3",
- "south": "none",
- "west": "none"
- }
- },
- {
- "id": 3394,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "4",
- "south": "up",
- "west": "up"
- }
- },
- {
- "id": 3395,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "4",
- "south": "up",
- "west": "side"
- }
- },
- {
- "id": 3396,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "4",
- "south": "up",
- "west": "none"
- }
- },
- {
- "id": 3397,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "4",
- "south": "side",
- "west": "up"
- }
- },
- {
- "id": 3398,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "4",
- "south": "side",
- "west": "side"
- }
- },
- {
- "id": 3399,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "4",
- "south": "side",
- "west": "none"
- }
- },
- {
- "id": 3400,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "4",
- "south": "none",
- "west": "up"
- }
- },
- {
- "id": 3401,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "4",
- "south": "none",
- "west": "side"
- }
- },
- {
- "id": 3402,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "4",
- "south": "none",
- "west": "none"
- }
- },
- {
- "id": 3403,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "5",
- "south": "up",
- "west": "up"
- }
- },
- {
- "id": 3404,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "5",
- "south": "up",
- "west": "side"
- }
- },
- {
- "id": 3405,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "5",
- "south": "up",
- "west": "none"
- }
- },
{
"id": 3406,
"properties": {
"east": "side",
"north": "up",
- "power": "5",
- "south": "side",
+ "power": "0",
+ "south": "up",
"west": "up"
}
},
@@ -188017,8 +192081,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "5",
- "south": "side",
+ "power": "0",
+ "south": "up",
"west": "side"
}
},
@@ -188027,8 +192091,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "5",
- "south": "side",
+ "power": "0",
+ "south": "up",
"west": "none"
}
},
@@ -188037,8 +192101,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "5",
- "south": "none",
+ "power": "0",
+ "south": "side",
"west": "up"
}
},
@@ -188047,8 +192111,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "5",
- "south": "none",
+ "power": "0",
+ "south": "side",
"west": "side"
}
},
@@ -188057,8 +192121,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "5",
- "south": "none",
+ "power": "0",
+ "south": "side",
"west": "none"
}
},
@@ -188067,8 +192131,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "6",
- "south": "up",
+ "power": "0",
+ "south": "none",
"west": "up"
}
},
@@ -188077,8 +192141,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "6",
- "south": "up",
+ "power": "0",
+ "south": "none",
"west": "side"
}
},
@@ -188087,8 +192151,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "6",
- "south": "up",
+ "power": "0",
+ "south": "none",
"west": "none"
}
},
@@ -188097,8 +192161,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "6",
- "south": "side",
+ "power": "1",
+ "south": "up",
"west": "up"
}
},
@@ -188107,8 +192171,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "6",
- "south": "side",
+ "power": "1",
+ "south": "up",
"west": "side"
}
},
@@ -188117,8 +192181,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "6",
- "south": "side",
+ "power": "1",
+ "south": "up",
"west": "none"
}
},
@@ -188127,8 +192191,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "6",
- "south": "none",
+ "power": "1",
+ "south": "side",
"west": "up"
}
},
@@ -188137,8 +192201,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "6",
- "south": "none",
+ "power": "1",
+ "south": "side",
"west": "side"
}
},
@@ -188147,8 +192211,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "6",
- "south": "none",
+ "power": "1",
+ "south": "side",
"west": "none"
}
},
@@ -188157,8 +192221,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "7",
- "south": "up",
+ "power": "1",
+ "south": "none",
"west": "up"
}
},
@@ -188167,8 +192231,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "7",
- "south": "up",
+ "power": "1",
+ "south": "none",
"west": "side"
}
},
@@ -188177,8 +192241,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "7",
- "south": "up",
+ "power": "1",
+ "south": "none",
"west": "none"
}
},
@@ -188187,8 +192251,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "7",
- "south": "side",
+ "power": "2",
+ "south": "up",
"west": "up"
}
},
@@ -188197,8 +192261,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "7",
- "south": "side",
+ "power": "2",
+ "south": "up",
"west": "side"
}
},
@@ -188207,8 +192271,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "7",
- "south": "side",
+ "power": "2",
+ "south": "up",
"west": "none"
}
},
@@ -188217,8 +192281,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "7",
- "south": "none",
+ "power": "2",
+ "south": "side",
"west": "up"
}
},
@@ -188227,8 +192291,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "7",
- "south": "none",
+ "power": "2",
+ "south": "side",
"west": "side"
}
},
@@ -188237,8 +192301,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "7",
- "south": "none",
+ "power": "2",
+ "south": "side",
"west": "none"
}
},
@@ -188247,8 +192311,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "8",
- "south": "up",
+ "power": "2",
+ "south": "none",
"west": "up"
}
},
@@ -188257,8 +192321,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "8",
- "south": "up",
+ "power": "2",
+ "south": "none",
"west": "side"
}
},
@@ -188267,8 +192331,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "8",
- "south": "up",
+ "power": "2",
+ "south": "none",
"west": "none"
}
},
@@ -188277,8 +192341,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "8",
- "south": "side",
+ "power": "3",
+ "south": "up",
"west": "up"
}
},
@@ -188287,8 +192351,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "8",
- "south": "side",
+ "power": "3",
+ "south": "up",
"west": "side"
}
},
@@ -188297,8 +192361,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "8",
- "south": "side",
+ "power": "3",
+ "south": "up",
"west": "none"
}
},
@@ -188307,8 +192371,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "8",
- "south": "none",
+ "power": "3",
+ "south": "side",
"west": "up"
}
},
@@ -188317,8 +192381,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "8",
- "south": "none",
+ "power": "3",
+ "south": "side",
"west": "side"
}
},
@@ -188327,8 +192391,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "8",
- "south": "none",
+ "power": "3",
+ "south": "side",
"west": "none"
}
},
@@ -188337,8 +192401,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "9",
- "south": "up",
+ "power": "3",
+ "south": "none",
"west": "up"
}
},
@@ -188347,8 +192411,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "9",
- "south": "up",
+ "power": "3",
+ "south": "none",
"west": "side"
}
},
@@ -188357,8 +192421,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "9",
- "south": "up",
+ "power": "3",
+ "south": "none",
"west": "none"
}
},
@@ -188367,8 +192431,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "9",
- "south": "side",
+ "power": "4",
+ "south": "up",
"west": "up"
}
},
@@ -188377,8 +192441,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "9",
- "south": "side",
+ "power": "4",
+ "south": "up",
"west": "side"
}
},
@@ -188387,8 +192451,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "9",
- "south": "side",
+ "power": "4",
+ "south": "up",
"west": "none"
}
},
@@ -188397,8 +192461,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "9",
- "south": "none",
+ "power": "4",
+ "south": "side",
"west": "up"
}
},
@@ -188407,8 +192471,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "9",
- "south": "none",
+ "power": "4",
+ "south": "side",
"west": "side"
}
},
@@ -188417,8 +192481,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "9",
- "south": "none",
+ "power": "4",
+ "south": "side",
"west": "none"
}
},
@@ -188427,8 +192491,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "10",
- "south": "up",
+ "power": "4",
+ "south": "none",
"west": "up"
}
},
@@ -188437,8 +192501,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "10",
- "south": "up",
+ "power": "4",
+ "south": "none",
"west": "side"
}
},
@@ -188447,8 +192511,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "10",
- "south": "up",
+ "power": "4",
+ "south": "none",
"west": "none"
}
},
@@ -188457,8 +192521,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "10",
- "south": "side",
+ "power": "5",
+ "south": "up",
"west": "up"
}
},
@@ -188467,8 +192531,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "10",
- "south": "side",
+ "power": "5",
+ "south": "up",
"west": "side"
}
},
@@ -188477,8 +192541,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "10",
- "south": "side",
+ "power": "5",
+ "south": "up",
"west": "none"
}
},
@@ -188487,8 +192551,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "10",
- "south": "none",
+ "power": "5",
+ "south": "side",
"west": "up"
}
},
@@ -188497,8 +192561,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "10",
- "south": "none",
+ "power": "5",
+ "south": "side",
"west": "side"
}
},
@@ -188507,8 +192571,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "10",
- "south": "none",
+ "power": "5",
+ "south": "side",
"west": "none"
}
},
@@ -188517,8 +192581,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "11",
- "south": "up",
+ "power": "5",
+ "south": "none",
"west": "up"
}
},
@@ -188527,8 +192591,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "11",
- "south": "up",
+ "power": "5",
+ "south": "none",
"west": "side"
}
},
@@ -188537,8 +192601,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "11",
- "south": "up",
+ "power": "5",
+ "south": "none",
"west": "none"
}
},
@@ -188547,8 +192611,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "11",
- "south": "side",
+ "power": "6",
+ "south": "up",
"west": "up"
}
},
@@ -188557,8 +192621,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "11",
- "south": "side",
+ "power": "6",
+ "south": "up",
"west": "side"
}
},
@@ -188567,8 +192631,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "11",
- "south": "side",
+ "power": "6",
+ "south": "up",
"west": "none"
}
},
@@ -188577,8 +192641,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "11",
- "south": "none",
+ "power": "6",
+ "south": "side",
"west": "up"
}
},
@@ -188587,8 +192651,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "11",
- "south": "none",
+ "power": "6",
+ "south": "side",
"west": "side"
}
},
@@ -188597,8 +192661,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "11",
- "south": "none",
+ "power": "6",
+ "south": "side",
"west": "none"
}
},
@@ -188607,8 +192671,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "12",
- "south": "up",
+ "power": "6",
+ "south": "none",
"west": "up"
}
},
@@ -188617,8 +192681,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "12",
- "south": "up",
+ "power": "6",
+ "south": "none",
"west": "side"
}
},
@@ -188627,8 +192691,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "12",
- "south": "up",
+ "power": "6",
+ "south": "none",
"west": "none"
}
},
@@ -188637,8 +192701,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "12",
- "south": "side",
+ "power": "7",
+ "south": "up",
"west": "up"
}
},
@@ -188647,8 +192711,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "12",
- "south": "side",
+ "power": "7",
+ "south": "up",
"west": "side"
}
},
@@ -188657,8 +192721,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "12",
- "south": "side",
+ "power": "7",
+ "south": "up",
"west": "none"
}
},
@@ -188667,8 +192731,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "12",
- "south": "none",
+ "power": "7",
+ "south": "side",
"west": "up"
}
},
@@ -188677,8 +192741,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "12",
- "south": "none",
+ "power": "7",
+ "south": "side",
"west": "side"
}
},
@@ -188687,8 +192751,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "12",
- "south": "none",
+ "power": "7",
+ "south": "side",
"west": "none"
}
},
@@ -188697,8 +192761,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "13",
- "south": "up",
+ "power": "7",
+ "south": "none",
"west": "up"
}
},
@@ -188707,8 +192771,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "13",
- "south": "up",
+ "power": "7",
+ "south": "none",
"west": "side"
}
},
@@ -188717,8 +192781,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "13",
- "south": "up",
+ "power": "7",
+ "south": "none",
"west": "none"
}
},
@@ -188727,8 +192791,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "13",
- "south": "side",
+ "power": "8",
+ "south": "up",
"west": "up"
}
},
@@ -188737,8 +192801,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "13",
- "south": "side",
+ "power": "8",
+ "south": "up",
"west": "side"
}
},
@@ -188747,8 +192811,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "13",
- "south": "side",
+ "power": "8",
+ "south": "up",
"west": "none"
}
},
@@ -188757,8 +192821,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "13",
- "south": "none",
+ "power": "8",
+ "south": "side",
"west": "up"
}
},
@@ -188767,8 +192831,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "13",
- "south": "none",
+ "power": "8",
+ "south": "side",
"west": "side"
}
},
@@ -188777,8 +192841,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "13",
- "south": "none",
+ "power": "8",
+ "south": "side",
"west": "none"
}
},
@@ -188787,8 +192851,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "14",
- "south": "up",
+ "power": "8",
+ "south": "none",
"west": "up"
}
},
@@ -188797,8 +192861,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "14",
- "south": "up",
+ "power": "8",
+ "south": "none",
"west": "side"
}
},
@@ -188807,8 +192871,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "14",
- "south": "up",
+ "power": "8",
+ "south": "none",
"west": "none"
}
},
@@ -188817,8 +192881,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "14",
- "south": "side",
+ "power": "9",
+ "south": "up",
"west": "up"
}
},
@@ -188827,8 +192891,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "14",
- "south": "side",
+ "power": "9",
+ "south": "up",
"west": "side"
}
},
@@ -188837,8 +192901,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "14",
- "south": "side",
+ "power": "9",
+ "south": "up",
"west": "none"
}
},
@@ -188847,8 +192911,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "14",
- "south": "none",
+ "power": "9",
+ "south": "side",
"west": "up"
}
},
@@ -188857,8 +192921,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "14",
- "south": "none",
+ "power": "9",
+ "south": "side",
"west": "side"
}
},
@@ -188867,8 +192931,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "14",
- "south": "none",
+ "power": "9",
+ "south": "side",
"west": "none"
}
},
@@ -188877,8 +192941,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "15",
- "south": "up",
+ "power": "9",
+ "south": "none",
"west": "up"
}
},
@@ -188887,8 +192951,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "15",
- "south": "up",
+ "power": "9",
+ "south": "none",
"west": "side"
}
},
@@ -188897,8 +192961,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "15",
- "south": "up",
+ "power": "9",
+ "south": "none",
"west": "none"
}
},
@@ -188907,8 +192971,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "15",
- "south": "side",
+ "power": "10",
+ "south": "up",
"west": "up"
}
},
@@ -188917,8 +192981,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "15",
- "south": "side",
+ "power": "10",
+ "south": "up",
"west": "side"
}
},
@@ -188927,8 +192991,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "15",
- "south": "side",
+ "power": "10",
+ "south": "up",
"west": "none"
}
},
@@ -188937,8 +193001,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "15",
- "south": "none",
+ "power": "10",
+ "south": "side",
"west": "up"
}
},
@@ -188947,8 +193011,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "15",
- "south": "none",
+ "power": "10",
+ "south": "side",
"west": "side"
}
},
@@ -188957,8 +193021,8 @@
"properties": {
"east": "side",
"north": "up",
- "power": "15",
- "south": "none",
+ "power": "10",
+ "south": "side",
"west": "none"
}
},
@@ -188966,9 +193030,9 @@
"id": 3502,
"properties": {
"east": "side",
- "north": "side",
- "power": "0",
- "south": "up",
+ "north": "up",
+ "power": "10",
+ "south": "none",
"west": "up"
}
},
@@ -188976,9 +193040,9 @@
"id": 3503,
"properties": {
"east": "side",
- "north": "side",
- "power": "0",
- "south": "up",
+ "north": "up",
+ "power": "10",
+ "south": "none",
"west": "side"
}
},
@@ -188986,9 +193050,9 @@
"id": 3504,
"properties": {
"east": "side",
- "north": "side",
- "power": "0",
- "south": "up",
+ "north": "up",
+ "power": "10",
+ "south": "none",
"west": "none"
}
},
@@ -188996,9 +193060,9 @@
"id": 3505,
"properties": {
"east": "side",
- "north": "side",
- "power": "0",
- "south": "side",
+ "north": "up",
+ "power": "11",
+ "south": "up",
"west": "up"
}
},
@@ -189006,9 +193070,9 @@
"id": 3506,
"properties": {
"east": "side",
- "north": "side",
- "power": "0",
- "south": "side",
+ "north": "up",
+ "power": "11",
+ "south": "up",
"west": "side"
}
},
@@ -189016,9 +193080,9 @@
"id": 3507,
"properties": {
"east": "side",
- "north": "side",
- "power": "0",
- "south": "side",
+ "north": "up",
+ "power": "11",
+ "south": "up",
"west": "none"
}
},
@@ -189026,9 +193090,9 @@
"id": 3508,
"properties": {
"east": "side",
- "north": "side",
- "power": "0",
- "south": "none",
+ "north": "up",
+ "power": "11",
+ "south": "side",
"west": "up"
}
},
@@ -189036,9 +193100,9 @@
"id": 3509,
"properties": {
"east": "side",
- "north": "side",
- "power": "0",
- "south": "none",
+ "north": "up",
+ "power": "11",
+ "south": "side",
"west": "side"
}
},
@@ -189046,9 +193110,9 @@
"id": 3510,
"properties": {
"east": "side",
- "north": "side",
- "power": "0",
- "south": "none",
+ "north": "up",
+ "power": "11",
+ "south": "side",
"west": "none"
}
},
@@ -189056,9 +193120,9 @@
"id": 3511,
"properties": {
"east": "side",
- "north": "side",
- "power": "1",
- "south": "up",
+ "north": "up",
+ "power": "11",
+ "south": "none",
"west": "up"
}
},
@@ -189066,9 +193130,9 @@
"id": 3512,
"properties": {
"east": "side",
- "north": "side",
- "power": "1",
- "south": "up",
+ "north": "up",
+ "power": "11",
+ "south": "none",
"west": "side"
}
},
@@ -189076,9 +193140,9 @@
"id": 3513,
"properties": {
"east": "side",
- "north": "side",
- "power": "1",
- "south": "up",
+ "north": "up",
+ "power": "11",
+ "south": "none",
"west": "none"
}
},
@@ -189086,9 +193150,9 @@
"id": 3514,
"properties": {
"east": "side",
- "north": "side",
- "power": "1",
- "south": "side",
+ "north": "up",
+ "power": "12",
+ "south": "up",
"west": "up"
}
},
@@ -189096,9 +193160,9 @@
"id": 3515,
"properties": {
"east": "side",
- "north": "side",
- "power": "1",
- "south": "side",
+ "north": "up",
+ "power": "12",
+ "south": "up",
"west": "side"
}
},
@@ -189106,9 +193170,9 @@
"id": 3516,
"properties": {
"east": "side",
- "north": "side",
- "power": "1",
- "south": "side",
+ "north": "up",
+ "power": "12",
+ "south": "up",
"west": "none"
}
},
@@ -189116,9 +193180,9 @@
"id": 3517,
"properties": {
"east": "side",
- "north": "side",
- "power": "1",
- "south": "none",
+ "north": "up",
+ "power": "12",
+ "south": "side",
"west": "up"
}
},
@@ -189126,9 +193190,9 @@
"id": 3518,
"properties": {
"east": "side",
- "north": "side",
- "power": "1",
- "south": "none",
+ "north": "up",
+ "power": "12",
+ "south": "side",
"west": "side"
}
},
@@ -189136,9 +193200,9 @@
"id": 3519,
"properties": {
"east": "side",
- "north": "side",
- "power": "1",
- "south": "none",
+ "north": "up",
+ "power": "12",
+ "south": "side",
"west": "none"
}
},
@@ -189146,9 +193210,9 @@
"id": 3520,
"properties": {
"east": "side",
- "north": "side",
- "power": "2",
- "south": "up",
+ "north": "up",
+ "power": "12",
+ "south": "none",
"west": "up"
}
},
@@ -189156,9 +193220,9 @@
"id": 3521,
"properties": {
"east": "side",
- "north": "side",
- "power": "2",
- "south": "up",
+ "north": "up",
+ "power": "12",
+ "south": "none",
"west": "side"
}
},
@@ -189166,9 +193230,9 @@
"id": 3522,
"properties": {
"east": "side",
- "north": "side",
- "power": "2",
- "south": "up",
+ "north": "up",
+ "power": "12",
+ "south": "none",
"west": "none"
}
},
@@ -189176,9 +193240,9 @@
"id": 3523,
"properties": {
"east": "side",
- "north": "side",
- "power": "2",
- "south": "side",
+ "north": "up",
+ "power": "13",
+ "south": "up",
"west": "up"
}
},
@@ -189186,9 +193250,9 @@
"id": 3524,
"properties": {
"east": "side",
- "north": "side",
- "power": "2",
- "south": "side",
+ "north": "up",
+ "power": "13",
+ "south": "up",
"west": "side"
}
},
@@ -189196,9 +193260,9 @@
"id": 3525,
"properties": {
"east": "side",
- "north": "side",
- "power": "2",
- "south": "side",
+ "north": "up",
+ "power": "13",
+ "south": "up",
"west": "none"
}
},
@@ -189206,9 +193270,9 @@
"id": 3526,
"properties": {
"east": "side",
- "north": "side",
- "power": "2",
- "south": "none",
+ "north": "up",
+ "power": "13",
+ "south": "side",
"west": "up"
}
},
@@ -189216,9 +193280,9 @@
"id": 3527,
"properties": {
"east": "side",
- "north": "side",
- "power": "2",
- "south": "none",
+ "north": "up",
+ "power": "13",
+ "south": "side",
"west": "side"
}
},
@@ -189226,9 +193290,9 @@
"id": 3528,
"properties": {
"east": "side",
- "north": "side",
- "power": "2",
- "south": "none",
+ "north": "up",
+ "power": "13",
+ "south": "side",
"west": "none"
}
},
@@ -189236,9 +193300,9 @@
"id": 3529,
"properties": {
"east": "side",
- "north": "side",
- "power": "3",
- "south": "up",
+ "north": "up",
+ "power": "13",
+ "south": "none",
"west": "up"
}
},
@@ -189246,9 +193310,9 @@
"id": 3530,
"properties": {
"east": "side",
- "north": "side",
- "power": "3",
- "south": "up",
+ "north": "up",
+ "power": "13",
+ "south": "none",
"west": "side"
}
},
@@ -189256,9 +193320,9 @@
"id": 3531,
"properties": {
"east": "side",
- "north": "side",
- "power": "3",
- "south": "up",
+ "north": "up",
+ "power": "13",
+ "south": "none",
"west": "none"
}
},
@@ -189266,9 +193330,9 @@
"id": 3532,
"properties": {
"east": "side",
- "north": "side",
- "power": "3",
- "south": "side",
+ "north": "up",
+ "power": "14",
+ "south": "up",
"west": "up"
}
},
@@ -189276,9 +193340,9 @@
"id": 3533,
"properties": {
"east": "side",
- "north": "side",
- "power": "3",
- "south": "side",
+ "north": "up",
+ "power": "14",
+ "south": "up",
"west": "side"
}
},
@@ -189286,9 +193350,9 @@
"id": 3534,
"properties": {
"east": "side",
- "north": "side",
- "power": "3",
- "south": "side",
+ "north": "up",
+ "power": "14",
+ "south": "up",
"west": "none"
}
},
@@ -189296,9 +193360,9 @@
"id": 3535,
"properties": {
"east": "side",
- "north": "side",
- "power": "3",
- "south": "none",
+ "north": "up",
+ "power": "14",
+ "south": "side",
"west": "up"
}
},
@@ -189306,9 +193370,9 @@
"id": 3536,
"properties": {
"east": "side",
- "north": "side",
- "power": "3",
- "south": "none",
+ "north": "up",
+ "power": "14",
+ "south": "side",
"west": "side"
}
},
@@ -189316,9 +193380,9 @@
"id": 3537,
"properties": {
"east": "side",
- "north": "side",
- "power": "3",
- "south": "none",
+ "north": "up",
+ "power": "14",
+ "south": "side",
"west": "none"
}
},
@@ -189326,9 +193390,9 @@
"id": 3538,
"properties": {
"east": "side",
- "north": "side",
- "power": "4",
- "south": "up",
+ "north": "up",
+ "power": "14",
+ "south": "none",
"west": "up"
}
},
@@ -189336,9 +193400,9 @@
"id": 3539,
"properties": {
"east": "side",
- "north": "side",
- "power": "4",
- "south": "up",
+ "north": "up",
+ "power": "14",
+ "south": "none",
"west": "side"
}
},
@@ -189346,9 +193410,9 @@
"id": 3540,
"properties": {
"east": "side",
- "north": "side",
- "power": "4",
- "south": "up",
+ "north": "up",
+ "power": "14",
+ "south": "none",
"west": "none"
}
},
@@ -189356,9 +193420,9 @@
"id": 3541,
"properties": {
"east": "side",
- "north": "side",
- "power": "4",
- "south": "side",
+ "north": "up",
+ "power": "15",
+ "south": "up",
"west": "up"
}
},
@@ -189366,9 +193430,9 @@
"id": 3542,
"properties": {
"east": "side",
- "north": "side",
- "power": "4",
- "south": "side",
+ "north": "up",
+ "power": "15",
+ "south": "up",
"west": "side"
}
},
@@ -189376,9 +193440,9 @@
"id": 3543,
"properties": {
"east": "side",
- "north": "side",
- "power": "4",
- "south": "side",
+ "north": "up",
+ "power": "15",
+ "south": "up",
"west": "none"
}
},
@@ -189386,9 +193450,9 @@
"id": 3544,
"properties": {
"east": "side",
- "north": "side",
- "power": "4",
- "south": "none",
+ "north": "up",
+ "power": "15",
+ "south": "side",
"west": "up"
}
},
@@ -189396,9 +193460,9 @@
"id": 3545,
"properties": {
"east": "side",
- "north": "side",
- "power": "4",
- "south": "none",
+ "north": "up",
+ "power": "15",
+ "south": "side",
"west": "side"
}
},
@@ -189406,9 +193470,9 @@
"id": 3546,
"properties": {
"east": "side",
- "north": "side",
- "power": "4",
- "south": "none",
+ "north": "up",
+ "power": "15",
+ "south": "side",
"west": "none"
}
},
@@ -189416,9 +193480,9 @@
"id": 3547,
"properties": {
"east": "side",
- "north": "side",
- "power": "5",
- "south": "up",
+ "north": "up",
+ "power": "15",
+ "south": "none",
"west": "up"
}
},
@@ -189426,9 +193490,9 @@
"id": 3548,
"properties": {
"east": "side",
- "north": "side",
- "power": "5",
- "south": "up",
+ "north": "up",
+ "power": "15",
+ "south": "none",
"west": "side"
}
},
@@ -189436,9 +193500,9 @@
"id": 3549,
"properties": {
"east": "side",
- "north": "side",
- "power": "5",
- "south": "up",
+ "north": "up",
+ "power": "15",
+ "south": "none",
"west": "none"
}
},
@@ -189447,8 +193511,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "5",
- "south": "side",
+ "power": "0",
+ "south": "up",
"west": "up"
}
},
@@ -189457,8 +193521,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "5",
- "south": "side",
+ "power": "0",
+ "south": "up",
"west": "side"
}
},
@@ -189467,8 +193531,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "5",
- "south": "side",
+ "power": "0",
+ "south": "up",
"west": "none"
}
},
@@ -189477,8 +193541,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "5",
- "south": "none",
+ "power": "0",
+ "south": "side",
"west": "up"
}
},
@@ -189487,8 +193551,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "5",
- "south": "none",
+ "power": "0",
+ "south": "side",
"west": "side"
}
},
@@ -189497,8 +193561,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "5",
- "south": "none",
+ "power": "0",
+ "south": "side",
"west": "none"
}
},
@@ -189507,8 +193571,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "6",
- "south": "up",
+ "power": "0",
+ "south": "none",
"west": "up"
}
},
@@ -189517,8 +193581,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "6",
- "south": "up",
+ "power": "0",
+ "south": "none",
"west": "side"
}
},
@@ -189527,8 +193591,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "6",
- "south": "up",
+ "power": "0",
+ "south": "none",
"west": "none"
}
},
@@ -189537,8 +193601,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "6",
- "south": "side",
+ "power": "1",
+ "south": "up",
"west": "up"
}
},
@@ -189547,8 +193611,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "6",
- "south": "side",
+ "power": "1",
+ "south": "up",
"west": "side"
}
},
@@ -189557,8 +193621,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "6",
- "south": "side",
+ "power": "1",
+ "south": "up",
"west": "none"
}
},
@@ -189567,8 +193631,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "6",
- "south": "none",
+ "power": "1",
+ "south": "side",
"west": "up"
}
},
@@ -189577,8 +193641,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "6",
- "south": "none",
+ "power": "1",
+ "south": "side",
"west": "side"
}
},
@@ -189587,8 +193651,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "6",
- "south": "none",
+ "power": "1",
+ "south": "side",
"west": "none"
}
},
@@ -189597,8 +193661,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "7",
- "south": "up",
+ "power": "1",
+ "south": "none",
"west": "up"
}
},
@@ -189607,8 +193671,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "7",
- "south": "up",
+ "power": "1",
+ "south": "none",
"west": "side"
}
},
@@ -189617,8 +193681,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "7",
- "south": "up",
+ "power": "1",
+ "south": "none",
"west": "none"
}
},
@@ -189627,8 +193691,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "7",
- "south": "side",
+ "power": "2",
+ "south": "up",
"west": "up"
}
},
@@ -189637,8 +193701,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "7",
- "south": "side",
+ "power": "2",
+ "south": "up",
"west": "side"
}
},
@@ -189647,8 +193711,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "7",
- "south": "side",
+ "power": "2",
+ "south": "up",
"west": "none"
}
},
@@ -189657,8 +193721,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "7",
- "south": "none",
+ "power": "2",
+ "south": "side",
"west": "up"
}
},
@@ -189667,8 +193731,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "7",
- "south": "none",
+ "power": "2",
+ "south": "side",
"west": "side"
}
},
@@ -189677,8 +193741,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "7",
- "south": "none",
+ "power": "2",
+ "south": "side",
"west": "none"
}
},
@@ -189687,8 +193751,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "8",
- "south": "up",
+ "power": "2",
+ "south": "none",
"west": "up"
}
},
@@ -189697,8 +193761,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "8",
- "south": "up",
+ "power": "2",
+ "south": "none",
"west": "side"
}
},
@@ -189707,8 +193771,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "8",
- "south": "up",
+ "power": "2",
+ "south": "none",
"west": "none"
}
},
@@ -189717,8 +193781,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "8",
- "south": "side",
+ "power": "3",
+ "south": "up",
"west": "up"
}
},
@@ -189727,8 +193791,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "8",
- "south": "side",
+ "power": "3",
+ "south": "up",
"west": "side"
}
},
@@ -189737,8 +193801,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "8",
- "south": "side",
+ "power": "3",
+ "south": "up",
"west": "none"
}
},
@@ -189747,8 +193811,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "8",
- "south": "none",
+ "power": "3",
+ "south": "side",
"west": "up"
}
},
@@ -189757,8 +193821,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "8",
- "south": "none",
+ "power": "3",
+ "south": "side",
"west": "side"
}
},
@@ -189767,8 +193831,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "8",
- "south": "none",
+ "power": "3",
+ "south": "side",
"west": "none"
}
},
@@ -189777,8 +193841,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "9",
- "south": "up",
+ "power": "3",
+ "south": "none",
"west": "up"
}
},
@@ -189787,8 +193851,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "9",
- "south": "up",
+ "power": "3",
+ "south": "none",
"west": "side"
}
},
@@ -189797,8 +193861,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "9",
- "south": "up",
+ "power": "3",
+ "south": "none",
"west": "none"
}
},
@@ -189807,8 +193871,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "9",
- "south": "side",
+ "power": "4",
+ "south": "up",
"west": "up"
}
},
@@ -189817,8 +193881,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "9",
- "south": "side",
+ "power": "4",
+ "south": "up",
"west": "side"
}
},
@@ -189827,8 +193891,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "9",
- "south": "side",
+ "power": "4",
+ "south": "up",
"west": "none"
}
},
@@ -189837,8 +193901,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "9",
- "south": "none",
+ "power": "4",
+ "south": "side",
"west": "up"
}
},
@@ -189847,8 +193911,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "9",
- "south": "none",
+ "power": "4",
+ "south": "side",
"west": "side"
}
},
@@ -189857,8 +193921,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "9",
- "south": "none",
+ "power": "4",
+ "south": "side",
"west": "none"
}
},
@@ -189867,8 +193931,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "10",
- "south": "up",
+ "power": "4",
+ "south": "none",
"west": "up"
}
},
@@ -189877,8 +193941,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "10",
- "south": "up",
+ "power": "4",
+ "south": "none",
"west": "side"
}
},
@@ -189887,8 +193951,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "10",
- "south": "up",
+ "power": "4",
+ "south": "none",
"west": "none"
}
},
@@ -189897,8 +193961,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "10",
- "south": "side",
+ "power": "5",
+ "south": "up",
"west": "up"
}
},
@@ -189907,8 +193971,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "10",
- "south": "side",
+ "power": "5",
+ "south": "up",
"west": "side"
}
},
@@ -189917,8 +193981,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "10",
- "south": "side",
+ "power": "5",
+ "south": "up",
"west": "none"
}
},
@@ -189927,8 +193991,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "10",
- "south": "none",
+ "power": "5",
+ "south": "side",
"west": "up"
}
},
@@ -189937,8 +194001,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "10",
- "south": "none",
+ "power": "5",
+ "south": "side",
"west": "side"
}
},
@@ -189947,8 +194011,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "10",
- "south": "none",
+ "power": "5",
+ "south": "side",
"west": "none"
}
},
@@ -189957,8 +194021,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "11",
- "south": "up",
+ "power": "5",
+ "south": "none",
"west": "up"
}
},
@@ -189967,8 +194031,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "11",
- "south": "up",
+ "power": "5",
+ "south": "none",
"west": "side"
}
},
@@ -189977,8 +194041,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "11",
- "south": "up",
+ "power": "5",
+ "south": "none",
"west": "none"
}
},
@@ -189987,8 +194051,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "11",
- "south": "side",
+ "power": "6",
+ "south": "up",
"west": "up"
}
},
@@ -189997,8 +194061,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "11",
- "south": "side",
+ "power": "6",
+ "south": "up",
"west": "side"
}
},
@@ -190007,8 +194071,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "11",
- "south": "side",
+ "power": "6",
+ "south": "up",
"west": "none"
}
},
@@ -190017,8 +194081,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "11",
- "south": "none",
+ "power": "6",
+ "south": "side",
"west": "up"
}
},
@@ -190027,8 +194091,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "11",
- "south": "none",
+ "power": "6",
+ "south": "side",
"west": "side"
}
},
@@ -190037,8 +194101,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "11",
- "south": "none",
+ "power": "6",
+ "south": "side",
"west": "none"
}
},
@@ -190047,8 +194111,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "12",
- "south": "up",
+ "power": "6",
+ "south": "none",
"west": "up"
}
},
@@ -190057,8 +194121,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "12",
- "south": "up",
+ "power": "6",
+ "south": "none",
"west": "side"
}
},
@@ -190067,8 +194131,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "12",
- "south": "up",
+ "power": "6",
+ "south": "none",
"west": "none"
}
},
@@ -190077,8 +194141,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "12",
- "south": "side",
+ "power": "7",
+ "south": "up",
"west": "up"
}
},
@@ -190087,8 +194151,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "12",
- "south": "side",
+ "power": "7",
+ "south": "up",
"west": "side"
}
},
@@ -190097,8 +194161,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "12",
- "south": "side",
+ "power": "7",
+ "south": "up",
"west": "none"
}
},
@@ -190107,8 +194171,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "12",
- "south": "none",
+ "power": "7",
+ "south": "side",
"west": "up"
}
},
@@ -190117,8 +194181,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "12",
- "south": "none",
+ "power": "7",
+ "south": "side",
"west": "side"
}
},
@@ -190127,8 +194191,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "12",
- "south": "none",
+ "power": "7",
+ "south": "side",
"west": "none"
}
},
@@ -190137,8 +194201,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "13",
- "south": "up",
+ "power": "7",
+ "south": "none",
"west": "up"
}
},
@@ -190147,8 +194211,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "13",
- "south": "up",
+ "power": "7",
+ "south": "none",
"west": "side"
}
},
@@ -190157,8 +194221,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "13",
- "south": "up",
+ "power": "7",
+ "south": "none",
"west": "none"
}
},
@@ -190167,8 +194231,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "13",
- "south": "side",
+ "power": "8",
+ "south": "up",
"west": "up"
}
},
@@ -190177,8 +194241,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "13",
- "south": "side",
+ "power": "8",
+ "south": "up",
"west": "side"
}
},
@@ -190187,8 +194251,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "13",
- "south": "side",
+ "power": "8",
+ "south": "up",
"west": "none"
}
},
@@ -190197,8 +194261,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "13",
- "south": "none",
+ "power": "8",
+ "south": "side",
"west": "up"
}
},
@@ -190207,8 +194271,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "13",
- "south": "none",
+ "power": "8",
+ "south": "side",
"west": "side"
}
},
@@ -190217,8 +194281,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "13",
- "south": "none",
+ "power": "8",
+ "south": "side",
"west": "none"
}
},
@@ -190227,8 +194291,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "14",
- "south": "up",
+ "power": "8",
+ "south": "none",
"west": "up"
}
},
@@ -190237,8 +194301,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "14",
- "south": "up",
+ "power": "8",
+ "south": "none",
"west": "side"
}
},
@@ -190247,8 +194311,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "14",
- "south": "up",
+ "power": "8",
+ "south": "none",
"west": "none"
}
},
@@ -190257,8 +194321,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "14",
- "south": "side",
+ "power": "9",
+ "south": "up",
"west": "up"
}
},
@@ -190267,8 +194331,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "14",
- "south": "side",
+ "power": "9",
+ "south": "up",
"west": "side"
}
},
@@ -190277,8 +194341,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "14",
- "south": "side",
+ "power": "9",
+ "south": "up",
"west": "none"
}
},
@@ -190287,8 +194351,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "14",
- "south": "none",
+ "power": "9",
+ "south": "side",
"west": "up"
}
},
@@ -190297,8 +194361,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "14",
- "south": "none",
+ "power": "9",
+ "south": "side",
"west": "side"
}
},
@@ -190307,8 +194371,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "14",
- "south": "none",
+ "power": "9",
+ "south": "side",
"west": "none"
}
},
@@ -190317,8 +194381,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "15",
- "south": "up",
+ "power": "9",
+ "south": "none",
"west": "up"
}
},
@@ -190327,8 +194391,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "15",
- "south": "up",
+ "power": "9",
+ "south": "none",
"west": "side"
}
},
@@ -190337,8 +194401,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "15",
- "south": "up",
+ "power": "9",
+ "south": "none",
"west": "none"
}
},
@@ -190347,8 +194411,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "15",
- "south": "side",
+ "power": "10",
+ "south": "up",
"west": "up"
}
},
@@ -190357,8 +194421,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "15",
- "south": "side",
+ "power": "10",
+ "south": "up",
"west": "side"
}
},
@@ -190367,8 +194431,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "15",
- "south": "side",
+ "power": "10",
+ "south": "up",
"west": "none"
}
},
@@ -190377,8 +194441,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "15",
- "south": "none",
+ "power": "10",
+ "south": "side",
"west": "up"
}
},
@@ -190387,8 +194451,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "15",
- "south": "none",
+ "power": "10",
+ "south": "side",
"west": "side"
}
},
@@ -190397,8 +194461,8 @@
"properties": {
"east": "side",
"north": "side",
- "power": "15",
- "south": "none",
+ "power": "10",
+ "south": "side",
"west": "none"
}
},
@@ -190406,9 +194470,9 @@
"id": 3646,
"properties": {
"east": "side",
- "north": "none",
- "power": "0",
- "south": "up",
+ "north": "side",
+ "power": "10",
+ "south": "none",
"west": "up"
}
},
@@ -190416,9 +194480,9 @@
"id": 3647,
"properties": {
"east": "side",
- "north": "none",
- "power": "0",
- "south": "up",
+ "north": "side",
+ "power": "10",
+ "south": "none",
"west": "side"
}
},
@@ -190426,9 +194490,9 @@
"id": 3648,
"properties": {
"east": "side",
- "north": "none",
- "power": "0",
- "south": "up",
+ "north": "side",
+ "power": "10",
+ "south": "none",
"west": "none"
}
},
@@ -190436,9 +194500,9 @@
"id": 3649,
"properties": {
"east": "side",
- "north": "none",
- "power": "0",
- "south": "side",
+ "north": "side",
+ "power": "11",
+ "south": "up",
"west": "up"
}
},
@@ -190446,9 +194510,9 @@
"id": 3650,
"properties": {
"east": "side",
- "north": "none",
- "power": "0",
- "south": "side",
+ "north": "side",
+ "power": "11",
+ "south": "up",
"west": "side"
}
},
@@ -190456,9 +194520,9 @@
"id": 3651,
"properties": {
"east": "side",
- "north": "none",
- "power": "0",
- "south": "side",
+ "north": "side",
+ "power": "11",
+ "south": "up",
"west": "none"
}
},
@@ -190466,9 +194530,9 @@
"id": 3652,
"properties": {
"east": "side",
- "north": "none",
- "power": "0",
- "south": "none",
+ "north": "side",
+ "power": "11",
+ "south": "side",
"west": "up"
}
},
@@ -190476,9 +194540,9 @@
"id": 3653,
"properties": {
"east": "side",
- "north": "none",
- "power": "0",
- "south": "none",
+ "north": "side",
+ "power": "11",
+ "south": "side",
"west": "side"
}
},
@@ -190486,9 +194550,9 @@
"id": 3654,
"properties": {
"east": "side",
- "north": "none",
- "power": "0",
- "south": "none",
+ "north": "side",
+ "power": "11",
+ "south": "side",
"west": "none"
}
},
@@ -190496,9 +194560,9 @@
"id": 3655,
"properties": {
"east": "side",
- "north": "none",
- "power": "1",
- "south": "up",
+ "north": "side",
+ "power": "11",
+ "south": "none",
"west": "up"
}
},
@@ -190506,9 +194570,9 @@
"id": 3656,
"properties": {
"east": "side",
- "north": "none",
- "power": "1",
- "south": "up",
+ "north": "side",
+ "power": "11",
+ "south": "none",
"west": "side"
}
},
@@ -190516,9 +194580,9 @@
"id": 3657,
"properties": {
"east": "side",
- "north": "none",
- "power": "1",
- "south": "up",
+ "north": "side",
+ "power": "11",
+ "south": "none",
"west": "none"
}
},
@@ -190526,9 +194590,9 @@
"id": 3658,
"properties": {
"east": "side",
- "north": "none",
- "power": "1",
- "south": "side",
+ "north": "side",
+ "power": "12",
+ "south": "up",
"west": "up"
}
},
@@ -190536,9 +194600,9 @@
"id": 3659,
"properties": {
"east": "side",
- "north": "none",
- "power": "1",
- "south": "side",
+ "north": "side",
+ "power": "12",
+ "south": "up",
"west": "side"
}
},
@@ -190546,9 +194610,9 @@
"id": 3660,
"properties": {
"east": "side",
- "north": "none",
- "power": "1",
- "south": "side",
+ "north": "side",
+ "power": "12",
+ "south": "up",
"west": "none"
}
},
@@ -190556,9 +194620,9 @@
"id": 3661,
"properties": {
"east": "side",
- "north": "none",
- "power": "1",
- "south": "none",
+ "north": "side",
+ "power": "12",
+ "south": "side",
"west": "up"
}
},
@@ -190566,9 +194630,9 @@
"id": 3662,
"properties": {
"east": "side",
- "north": "none",
- "power": "1",
- "south": "none",
+ "north": "side",
+ "power": "12",
+ "south": "side",
"west": "side"
}
},
@@ -190576,9 +194640,9 @@
"id": 3663,
"properties": {
"east": "side",
- "north": "none",
- "power": "1",
- "south": "none",
+ "north": "side",
+ "power": "12",
+ "south": "side",
"west": "none"
}
},
@@ -190586,9 +194650,9 @@
"id": 3664,
"properties": {
"east": "side",
- "north": "none",
- "power": "2",
- "south": "up",
+ "north": "side",
+ "power": "12",
+ "south": "none",
"west": "up"
}
},
@@ -190596,9 +194660,9 @@
"id": 3665,
"properties": {
"east": "side",
- "north": "none",
- "power": "2",
- "south": "up",
+ "north": "side",
+ "power": "12",
+ "south": "none",
"west": "side"
}
},
@@ -190606,9 +194670,9 @@
"id": 3666,
"properties": {
"east": "side",
- "north": "none",
- "power": "2",
- "south": "up",
+ "north": "side",
+ "power": "12",
+ "south": "none",
"west": "none"
}
},
@@ -190616,9 +194680,9 @@
"id": 3667,
"properties": {
"east": "side",
- "north": "none",
- "power": "2",
- "south": "side",
+ "north": "side",
+ "power": "13",
+ "south": "up",
"west": "up"
}
},
@@ -190626,9 +194690,9 @@
"id": 3668,
"properties": {
"east": "side",
- "north": "none",
- "power": "2",
- "south": "side",
+ "north": "side",
+ "power": "13",
+ "south": "up",
"west": "side"
}
},
@@ -190636,9 +194700,9 @@
"id": 3669,
"properties": {
"east": "side",
- "north": "none",
- "power": "2",
- "south": "side",
+ "north": "side",
+ "power": "13",
+ "south": "up",
"west": "none"
}
},
@@ -190646,9 +194710,9 @@
"id": 3670,
"properties": {
"east": "side",
- "north": "none",
- "power": "2",
- "south": "none",
+ "north": "side",
+ "power": "13",
+ "south": "side",
"west": "up"
}
},
@@ -190656,9 +194720,9 @@
"id": 3671,
"properties": {
"east": "side",
- "north": "none",
- "power": "2",
- "south": "none",
+ "north": "side",
+ "power": "13",
+ "south": "side",
"west": "side"
}
},
@@ -190666,9 +194730,9 @@
"id": 3672,
"properties": {
"east": "side",
- "north": "none",
- "power": "2",
- "south": "none",
+ "north": "side",
+ "power": "13",
+ "south": "side",
"west": "none"
}
},
@@ -190676,9 +194740,9 @@
"id": 3673,
"properties": {
"east": "side",
- "north": "none",
- "power": "3",
- "south": "up",
+ "north": "side",
+ "power": "13",
+ "south": "none",
"west": "up"
}
},
@@ -190686,9 +194750,9 @@
"id": 3674,
"properties": {
"east": "side",
- "north": "none",
- "power": "3",
- "south": "up",
+ "north": "side",
+ "power": "13",
+ "south": "none",
"west": "side"
}
},
@@ -190696,9 +194760,9 @@
"id": 3675,
"properties": {
"east": "side",
- "north": "none",
- "power": "3",
- "south": "up",
+ "north": "side",
+ "power": "13",
+ "south": "none",
"west": "none"
}
},
@@ -190706,9 +194770,9 @@
"id": 3676,
"properties": {
"east": "side",
- "north": "none",
- "power": "3",
- "south": "side",
+ "north": "side",
+ "power": "14",
+ "south": "up",
"west": "up"
}
},
@@ -190716,9 +194780,9 @@
"id": 3677,
"properties": {
"east": "side",
- "north": "none",
- "power": "3",
- "south": "side",
+ "north": "side",
+ "power": "14",
+ "south": "up",
"west": "side"
}
},
@@ -190726,9 +194790,9 @@
"id": 3678,
"properties": {
"east": "side",
- "north": "none",
- "power": "3",
- "south": "side",
+ "north": "side",
+ "power": "14",
+ "south": "up",
"west": "none"
}
},
@@ -190736,9 +194800,9 @@
"id": 3679,
"properties": {
"east": "side",
- "north": "none",
- "power": "3",
- "south": "none",
+ "north": "side",
+ "power": "14",
+ "south": "side",
"west": "up"
}
},
@@ -190746,9 +194810,9 @@
"id": 3680,
"properties": {
"east": "side",
- "north": "none",
- "power": "3",
- "south": "none",
+ "north": "side",
+ "power": "14",
+ "south": "side",
"west": "side"
}
},
@@ -190756,9 +194820,9 @@
"id": 3681,
"properties": {
"east": "side",
- "north": "none",
- "power": "3",
- "south": "none",
+ "north": "side",
+ "power": "14",
+ "south": "side",
"west": "none"
}
},
@@ -190766,9 +194830,9 @@
"id": 3682,
"properties": {
"east": "side",
- "north": "none",
- "power": "4",
- "south": "up",
+ "north": "side",
+ "power": "14",
+ "south": "none",
"west": "up"
}
},
@@ -190776,9 +194840,9 @@
"id": 3683,
"properties": {
"east": "side",
- "north": "none",
- "power": "4",
- "south": "up",
+ "north": "side",
+ "power": "14",
+ "south": "none",
"west": "side"
}
},
@@ -190786,9 +194850,9 @@
"id": 3684,
"properties": {
"east": "side",
- "north": "none",
- "power": "4",
- "south": "up",
+ "north": "side",
+ "power": "14",
+ "south": "none",
"west": "none"
}
},
@@ -190796,9 +194860,9 @@
"id": 3685,
"properties": {
"east": "side",
- "north": "none",
- "power": "4",
- "south": "side",
+ "north": "side",
+ "power": "15",
+ "south": "up",
"west": "up"
}
},
@@ -190806,9 +194870,9 @@
"id": 3686,
"properties": {
"east": "side",
- "north": "none",
- "power": "4",
- "south": "side",
+ "north": "side",
+ "power": "15",
+ "south": "up",
"west": "side"
}
},
@@ -190816,9 +194880,9 @@
"id": 3687,
"properties": {
"east": "side",
- "north": "none",
- "power": "4",
- "south": "side",
+ "north": "side",
+ "power": "15",
+ "south": "up",
"west": "none"
}
},
@@ -190826,9 +194890,9 @@
"id": 3688,
"properties": {
"east": "side",
- "north": "none",
- "power": "4",
- "south": "none",
+ "north": "side",
+ "power": "15",
+ "south": "side",
"west": "up"
}
},
@@ -190836,9 +194900,9 @@
"id": 3689,
"properties": {
"east": "side",
- "north": "none",
- "power": "4",
- "south": "none",
+ "north": "side",
+ "power": "15",
+ "south": "side",
"west": "side"
}
},
@@ -190846,9 +194910,9 @@
"id": 3690,
"properties": {
"east": "side",
- "north": "none",
- "power": "4",
- "south": "none",
+ "north": "side",
+ "power": "15",
+ "south": "side",
"west": "none"
}
},
@@ -190856,9 +194920,9 @@
"id": 3691,
"properties": {
"east": "side",
- "north": "none",
- "power": "5",
- "south": "up",
+ "north": "side",
+ "power": "15",
+ "south": "none",
"west": "up"
}
},
@@ -190866,9 +194930,9 @@
"id": 3692,
"properties": {
"east": "side",
- "north": "none",
- "power": "5",
- "south": "up",
+ "north": "side",
+ "power": "15",
+ "south": "none",
"west": "side"
}
},
@@ -190876,9 +194940,9 @@
"id": 3693,
"properties": {
"east": "side",
- "north": "none",
- "power": "5",
- "south": "up",
+ "north": "side",
+ "power": "15",
+ "south": "none",
"west": "none"
}
},
@@ -190887,8 +194951,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "5",
- "south": "side",
+ "power": "0",
+ "south": "up",
"west": "up"
}
},
@@ -190897,8 +194961,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "5",
- "south": "side",
+ "power": "0",
+ "south": "up",
"west": "side"
}
},
@@ -190907,8 +194971,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "5",
- "south": "side",
+ "power": "0",
+ "south": "up",
"west": "none"
}
},
@@ -190917,8 +194981,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "5",
- "south": "none",
+ "power": "0",
+ "south": "side",
"west": "up"
}
},
@@ -190927,8 +194991,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "5",
- "south": "none",
+ "power": "0",
+ "south": "side",
"west": "side"
}
},
@@ -190937,8 +195001,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "5",
- "south": "none",
+ "power": "0",
+ "south": "side",
"west": "none"
}
},
@@ -190947,8 +195011,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "6",
- "south": "up",
+ "power": "0",
+ "south": "none",
"west": "up"
}
},
@@ -190957,8 +195021,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "6",
- "south": "up",
+ "power": "0",
+ "south": "none",
"west": "side"
}
},
@@ -190967,8 +195031,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "6",
- "south": "up",
+ "power": "0",
+ "south": "none",
"west": "none"
}
},
@@ -190977,8 +195041,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "6",
- "south": "side",
+ "power": "1",
+ "south": "up",
"west": "up"
}
},
@@ -190987,8 +195051,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "6",
- "south": "side",
+ "power": "1",
+ "south": "up",
"west": "side"
}
},
@@ -190997,8 +195061,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "6",
- "south": "side",
+ "power": "1",
+ "south": "up",
"west": "none"
}
},
@@ -191007,8 +195071,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "6",
- "south": "none",
+ "power": "1",
+ "south": "side",
"west": "up"
}
},
@@ -191017,8 +195081,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "6",
- "south": "none",
+ "power": "1",
+ "south": "side",
"west": "side"
}
},
@@ -191027,8 +195091,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "6",
- "south": "none",
+ "power": "1",
+ "south": "side",
"west": "none"
}
},
@@ -191037,8 +195101,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "7",
- "south": "up",
+ "power": "1",
+ "south": "none",
"west": "up"
}
},
@@ -191047,8 +195111,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "7",
- "south": "up",
+ "power": "1",
+ "south": "none",
"west": "side"
}
},
@@ -191057,8 +195121,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "7",
- "south": "up",
+ "power": "1",
+ "south": "none",
"west": "none"
}
},
@@ -191067,8 +195131,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "7",
- "south": "side",
+ "power": "2",
+ "south": "up",
"west": "up"
}
},
@@ -191077,8 +195141,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "7",
- "south": "side",
+ "power": "2",
+ "south": "up",
"west": "side"
}
},
@@ -191087,8 +195151,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "7",
- "south": "side",
+ "power": "2",
+ "south": "up",
"west": "none"
}
},
@@ -191097,8 +195161,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "7",
- "south": "none",
+ "power": "2",
+ "south": "side",
"west": "up"
}
},
@@ -191107,8 +195171,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "7",
- "south": "none",
+ "power": "2",
+ "south": "side",
"west": "side"
}
},
@@ -191117,8 +195181,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "7",
- "south": "none",
+ "power": "2",
+ "south": "side",
"west": "none"
}
},
@@ -191127,8 +195191,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "8",
- "south": "up",
+ "power": "2",
+ "south": "none",
"west": "up"
}
},
@@ -191137,8 +195201,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "8",
- "south": "up",
+ "power": "2",
+ "south": "none",
"west": "side"
}
},
@@ -191147,8 +195211,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "8",
- "south": "up",
+ "power": "2",
+ "south": "none",
"west": "none"
}
},
@@ -191157,8 +195221,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "8",
- "south": "side",
+ "power": "3",
+ "south": "up",
"west": "up"
}
},
@@ -191167,8 +195231,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "8",
- "south": "side",
+ "power": "3",
+ "south": "up",
"west": "side"
}
},
@@ -191177,8 +195241,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "8",
- "south": "side",
+ "power": "3",
+ "south": "up",
"west": "none"
}
},
@@ -191187,8 +195251,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "8",
- "south": "none",
+ "power": "3",
+ "south": "side",
"west": "up"
}
},
@@ -191197,8 +195261,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "8",
- "south": "none",
+ "power": "3",
+ "south": "side",
"west": "side"
}
},
@@ -191207,8 +195271,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "8",
- "south": "none",
+ "power": "3",
+ "south": "side",
"west": "none"
}
},
@@ -191217,8 +195281,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "9",
- "south": "up",
+ "power": "3",
+ "south": "none",
"west": "up"
}
},
@@ -191227,8 +195291,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "9",
- "south": "up",
+ "power": "3",
+ "south": "none",
"west": "side"
}
},
@@ -191237,8 +195301,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "9",
- "south": "up",
+ "power": "3",
+ "south": "none",
"west": "none"
}
},
@@ -191247,8 +195311,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "9",
- "south": "side",
+ "power": "4",
+ "south": "up",
"west": "up"
}
},
@@ -191257,8 +195321,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "9",
- "south": "side",
+ "power": "4",
+ "south": "up",
"west": "side"
}
},
@@ -191267,8 +195331,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "9",
- "south": "side",
+ "power": "4",
+ "south": "up",
"west": "none"
}
},
@@ -191277,8 +195341,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "9",
- "south": "none",
+ "power": "4",
+ "south": "side",
"west": "up"
}
},
@@ -191287,8 +195351,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "9",
- "south": "none",
+ "power": "4",
+ "south": "side",
"west": "side"
}
},
@@ -191297,8 +195361,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "9",
- "south": "none",
+ "power": "4",
+ "south": "side",
"west": "none"
}
},
@@ -191307,8 +195371,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "10",
- "south": "up",
+ "power": "4",
+ "south": "none",
"west": "up"
}
},
@@ -191317,8 +195381,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "10",
- "south": "up",
+ "power": "4",
+ "south": "none",
"west": "side"
}
},
@@ -191327,8 +195391,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "10",
- "south": "up",
+ "power": "4",
+ "south": "none",
"west": "none"
}
},
@@ -191337,8 +195401,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "10",
- "south": "side",
+ "power": "5",
+ "south": "up",
"west": "up"
}
},
@@ -191347,8 +195411,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "10",
- "south": "side",
+ "power": "5",
+ "south": "up",
"west": "side"
}
},
@@ -191357,8 +195421,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "10",
- "south": "side",
+ "power": "5",
+ "south": "up",
"west": "none"
}
},
@@ -191367,8 +195431,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "10",
- "south": "none",
+ "power": "5",
+ "south": "side",
"west": "up"
}
},
@@ -191377,8 +195441,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "10",
- "south": "none",
+ "power": "5",
+ "south": "side",
"west": "side"
}
},
@@ -191387,8 +195451,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "10",
- "south": "none",
+ "power": "5",
+ "south": "side",
"west": "none"
}
},
@@ -191397,8 +195461,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "11",
- "south": "up",
+ "power": "5",
+ "south": "none",
"west": "up"
}
},
@@ -191407,8 +195471,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "11",
- "south": "up",
+ "power": "5",
+ "south": "none",
"west": "side"
}
},
@@ -191417,8 +195481,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "11",
- "south": "up",
+ "power": "5",
+ "south": "none",
"west": "none"
}
},
@@ -191427,8 +195491,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "11",
- "south": "side",
+ "power": "6",
+ "south": "up",
"west": "up"
}
},
@@ -191437,8 +195501,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "11",
- "south": "side",
+ "power": "6",
+ "south": "up",
"west": "side"
}
},
@@ -191447,8 +195511,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "11",
- "south": "side",
+ "power": "6",
+ "south": "up",
"west": "none"
}
},
@@ -191457,8 +195521,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "11",
- "south": "none",
+ "power": "6",
+ "south": "side",
"west": "up"
}
},
@@ -191467,8 +195531,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "11",
- "south": "none",
+ "power": "6",
+ "south": "side",
"west": "side"
}
},
@@ -191477,8 +195541,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "11",
- "south": "none",
+ "power": "6",
+ "south": "side",
"west": "none"
}
},
@@ -191487,8 +195551,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "12",
- "south": "up",
+ "power": "6",
+ "south": "none",
"west": "up"
}
},
@@ -191497,8 +195561,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "12",
- "south": "up",
+ "power": "6",
+ "south": "none",
"west": "side"
}
},
@@ -191507,8 +195571,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "12",
- "south": "up",
+ "power": "6",
+ "south": "none",
"west": "none"
}
},
@@ -191517,8 +195581,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "12",
- "south": "side",
+ "power": "7",
+ "south": "up",
"west": "up"
}
},
@@ -191527,8 +195591,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "12",
- "south": "side",
+ "power": "7",
+ "south": "up",
"west": "side"
}
},
@@ -191537,8 +195601,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "12",
- "south": "side",
+ "power": "7",
+ "south": "up",
"west": "none"
}
},
@@ -191547,8 +195611,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "12",
- "south": "none",
+ "power": "7",
+ "south": "side",
"west": "up"
}
},
@@ -191557,8 +195621,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "12",
- "south": "none",
+ "power": "7",
+ "south": "side",
"west": "side"
}
},
@@ -191567,8 +195631,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "12",
- "south": "none",
+ "power": "7",
+ "south": "side",
"west": "none"
}
},
@@ -191577,8 +195641,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "13",
- "south": "up",
+ "power": "7",
+ "south": "none",
"west": "up"
}
},
@@ -191587,8 +195651,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "13",
- "south": "up",
+ "power": "7",
+ "south": "none",
"west": "side"
}
},
@@ -191597,8 +195661,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "13",
- "south": "up",
+ "power": "7",
+ "south": "none",
"west": "none"
}
},
@@ -191607,8 +195671,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "13",
- "south": "side",
+ "power": "8",
+ "south": "up",
"west": "up"
}
},
@@ -191617,8 +195681,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "13",
- "south": "side",
+ "power": "8",
+ "south": "up",
"west": "side"
}
},
@@ -191627,8 +195691,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "13",
- "south": "side",
+ "power": "8",
+ "south": "up",
"west": "none"
}
},
@@ -191637,8 +195701,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "13",
- "south": "none",
+ "power": "8",
+ "south": "side",
"west": "up"
}
},
@@ -191647,8 +195711,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "13",
- "south": "none",
+ "power": "8",
+ "south": "side",
"west": "side"
}
},
@@ -191657,8 +195721,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "13",
- "south": "none",
+ "power": "8",
+ "south": "side",
"west": "none"
}
},
@@ -191667,8 +195731,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "14",
- "south": "up",
+ "power": "8",
+ "south": "none",
"west": "up"
}
},
@@ -191677,8 +195741,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "14",
- "south": "up",
+ "power": "8",
+ "south": "none",
"west": "side"
}
},
@@ -191687,8 +195751,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "14",
- "south": "up",
+ "power": "8",
+ "south": "none",
"west": "none"
}
},
@@ -191697,8 +195761,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "14",
- "south": "side",
+ "power": "9",
+ "south": "up",
"west": "up"
}
},
@@ -191707,8 +195771,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "14",
- "south": "side",
+ "power": "9",
+ "south": "up",
"west": "side"
}
},
@@ -191717,8 +195781,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "14",
- "south": "side",
+ "power": "9",
+ "south": "up",
"west": "none"
}
},
@@ -191727,8 +195791,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "14",
- "south": "none",
+ "power": "9",
+ "south": "side",
"west": "up"
}
},
@@ -191737,8 +195801,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "14",
- "south": "none",
+ "power": "9",
+ "south": "side",
"west": "side"
}
},
@@ -191747,8 +195811,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "14",
- "south": "none",
+ "power": "9",
+ "south": "side",
"west": "none"
}
},
@@ -191757,8 +195821,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "15",
- "south": "up",
+ "power": "9",
+ "south": "none",
"west": "up"
}
},
@@ -191767,8 +195831,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "15",
- "south": "up",
+ "power": "9",
+ "south": "none",
"west": "side"
}
},
@@ -191777,8 +195841,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "15",
- "south": "up",
+ "power": "9",
+ "south": "none",
"west": "none"
}
},
@@ -191787,8 +195851,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "15",
- "south": "side",
+ "power": "10",
+ "south": "up",
"west": "up"
}
},
@@ -191797,8 +195861,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "15",
- "south": "side",
+ "power": "10",
+ "south": "up",
"west": "side"
}
},
@@ -191807,8 +195871,8 @@
"properties": {
"east": "side",
"north": "none",
- "power": "15",
- "south": "side",
+ "power": "10",
+ "south": "up",
"west": "none"
}
},
@@ -191817,13 +195881,493 @@
"properties": {
"east": "side",
"north": "none",
- "power": "15",
- "south": "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",
@@ -191833,7 +196377,7 @@
}
},
{
- "id": 3789,
+ "id": 3837,
"properties": {
"east": "side",
"north": "none",
@@ -191842,493 +196386,13 @@
"west": "none"
}
},
- {
- "id": 3790,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "0",
- "south": "up",
- "west": "up"
- }
- },
- {
- "id": 3791,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "0",
- "south": "up",
- "west": "side"
- }
- },
- {
- "id": 3792,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "0",
- "south": "up",
- "west": "none"
- }
- },
- {
- "id": 3793,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "0",
- "south": "side",
- "west": "up"
- }
- },
- {
- "id": 3794,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "0",
- "south": "side",
- "west": "side"
- }
- },
- {
- "id": 3795,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "0",
- "south": "side",
- "west": "none"
- }
- },
- {
- "id": 3796,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "0",
- "south": "none",
- "west": "up"
- }
- },
- {
- "id": 3797,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "0",
- "south": "none",
- "west": "side"
- }
- },
- {
- "id": 3798,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "0",
- "south": "none",
- "west": "none"
- }
- },
- {
- "id": 3799,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "1",
- "south": "up",
- "west": "up"
- }
- },
- {
- "id": 3800,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "1",
- "south": "up",
- "west": "side"
- }
- },
- {
- "id": 3801,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "1",
- "south": "up",
- "west": "none"
- }
- },
- {
- "id": 3802,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "1",
- "south": "side",
- "west": "up"
- }
- },
- {
- "id": 3803,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "1",
- "south": "side",
- "west": "side"
- }
- },
- {
- "id": 3804,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "1",
- "south": "side",
- "west": "none"
- }
- },
- {
- "id": 3805,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "1",
- "south": "none",
- "west": "up"
- }
- },
- {
- "id": 3806,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "1",
- "south": "none",
- "west": "side"
- }
- },
- {
- "id": 3807,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "1",
- "south": "none",
- "west": "none"
- }
- },
- {
- "id": 3808,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "2",
- "south": "up",
- "west": "up"
- }
- },
- {
- "id": 3809,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "2",
- "south": "up",
- "west": "side"
- }
- },
- {
- "id": 3810,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "2",
- "south": "up",
- "west": "none"
- }
- },
- {
- "id": 3811,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "2",
- "south": "side",
- "west": "up"
- }
- },
- {
- "id": 3812,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "2",
- "south": "side",
- "west": "side"
- }
- },
- {
- "id": 3813,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "2",
- "south": "side",
- "west": "none"
- }
- },
- {
- "id": 3814,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "2",
- "south": "none",
- "west": "up"
- }
- },
- {
- "id": 3815,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "2",
- "south": "none",
- "west": "side"
- }
- },
- {
- "id": 3816,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "2",
- "south": "none",
- "west": "none"
- }
- },
- {
- "id": 3817,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "3",
- "south": "up",
- "west": "up"
- }
- },
- {
- "id": 3818,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "3",
- "south": "up",
- "west": "side"
- }
- },
- {
- "id": 3819,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "3",
- "south": "up",
- "west": "none"
- }
- },
- {
- "id": 3820,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "3",
- "south": "side",
- "west": "up"
- }
- },
- {
- "id": 3821,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "3",
- "south": "side",
- "west": "side"
- }
- },
- {
- "id": 3822,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "3",
- "south": "side",
- "west": "none"
- }
- },
- {
- "id": 3823,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "3",
- "south": "none",
- "west": "up"
- }
- },
- {
- "id": 3824,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "3",
- "south": "none",
- "west": "side"
- }
- },
- {
- "id": 3825,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "3",
- "south": "none",
- "west": "none"
- }
- },
- {
- "id": 3826,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "4",
- "south": "up",
- "west": "up"
- }
- },
- {
- "id": 3827,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "4",
- "south": "up",
- "west": "side"
- }
- },
- {
- "id": 3828,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "4",
- "south": "up",
- "west": "none"
- }
- },
- {
- "id": 3829,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "4",
- "south": "side",
- "west": "up"
- }
- },
- {
- "id": 3830,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "4",
- "south": "side",
- "west": "side"
- }
- },
- {
- "id": 3831,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "4",
- "south": "side",
- "west": "none"
- }
- },
- {
- "id": 3832,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "4",
- "south": "none",
- "west": "up"
- }
- },
- {
- "id": 3833,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "4",
- "south": "none",
- "west": "side"
- }
- },
- {
- "id": 3834,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "4",
- "south": "none",
- "west": "none"
- }
- },
- {
- "id": 3835,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "5",
- "south": "up",
- "west": "up"
- }
- },
- {
- "id": 3836,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "5",
- "south": "up",
- "west": "side"
- }
- },
- {
- "id": 3837,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "5",
- "south": "up",
- "west": "none"
- }
- },
{
"id": 3838,
"properties": {
"east": "none",
"north": "up",
- "power": "5",
- "south": "side",
+ "power": "0",
+ "south": "up",
"west": "up"
}
},
@@ -192337,8 +196401,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "5",
- "south": "side",
+ "power": "0",
+ "south": "up",
"west": "side"
}
},
@@ -192347,8 +196411,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "5",
- "south": "side",
+ "power": "0",
+ "south": "up",
"west": "none"
}
},
@@ -192357,8 +196421,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "5",
- "south": "none",
+ "power": "0",
+ "south": "side",
"west": "up"
}
},
@@ -192367,8 +196431,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "5",
- "south": "none",
+ "power": "0",
+ "south": "side",
"west": "side"
}
},
@@ -192377,8 +196441,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "5",
- "south": "none",
+ "power": "0",
+ "south": "side",
"west": "none"
}
},
@@ -192387,8 +196451,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "6",
- "south": "up",
+ "power": "0",
+ "south": "none",
"west": "up"
}
},
@@ -192397,8 +196461,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "6",
- "south": "up",
+ "power": "0",
+ "south": "none",
"west": "side"
}
},
@@ -192407,8 +196471,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "6",
- "south": "up",
+ "power": "0",
+ "south": "none",
"west": "none"
}
},
@@ -192417,8 +196481,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "6",
- "south": "side",
+ "power": "1",
+ "south": "up",
"west": "up"
}
},
@@ -192427,8 +196491,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "6",
- "south": "side",
+ "power": "1",
+ "south": "up",
"west": "side"
}
},
@@ -192437,8 +196501,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "6",
- "south": "side",
+ "power": "1",
+ "south": "up",
"west": "none"
}
},
@@ -192447,8 +196511,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "6",
- "south": "none",
+ "power": "1",
+ "south": "side",
"west": "up"
}
},
@@ -192457,8 +196521,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "6",
- "south": "none",
+ "power": "1",
+ "south": "side",
"west": "side"
}
},
@@ -192467,8 +196531,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "6",
- "south": "none",
+ "power": "1",
+ "south": "side",
"west": "none"
}
},
@@ -192477,8 +196541,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "7",
- "south": "up",
+ "power": "1",
+ "south": "none",
"west": "up"
}
},
@@ -192487,8 +196551,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "7",
- "south": "up",
+ "power": "1",
+ "south": "none",
"west": "side"
}
},
@@ -192497,8 +196561,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "7",
- "south": "up",
+ "power": "1",
+ "south": "none",
"west": "none"
}
},
@@ -192507,8 +196571,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "7",
- "south": "side",
+ "power": "2",
+ "south": "up",
"west": "up"
}
},
@@ -192517,8 +196581,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "7",
- "south": "side",
+ "power": "2",
+ "south": "up",
"west": "side"
}
},
@@ -192527,8 +196591,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "7",
- "south": "side",
+ "power": "2",
+ "south": "up",
"west": "none"
}
},
@@ -192537,8 +196601,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "7",
- "south": "none",
+ "power": "2",
+ "south": "side",
"west": "up"
}
},
@@ -192547,8 +196611,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "7",
- "south": "none",
+ "power": "2",
+ "south": "side",
"west": "side"
}
},
@@ -192557,8 +196621,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "7",
- "south": "none",
+ "power": "2",
+ "south": "side",
"west": "none"
}
},
@@ -192567,8 +196631,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "8",
- "south": "up",
+ "power": "2",
+ "south": "none",
"west": "up"
}
},
@@ -192577,8 +196641,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "8",
- "south": "up",
+ "power": "2",
+ "south": "none",
"west": "side"
}
},
@@ -192587,8 +196651,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "8",
- "south": "up",
+ "power": "2",
+ "south": "none",
"west": "none"
}
},
@@ -192597,8 +196661,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "8",
- "south": "side",
+ "power": "3",
+ "south": "up",
"west": "up"
}
},
@@ -192607,8 +196671,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "8",
- "south": "side",
+ "power": "3",
+ "south": "up",
"west": "side"
}
},
@@ -192617,8 +196681,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "8",
- "south": "side",
+ "power": "3",
+ "south": "up",
"west": "none"
}
},
@@ -192627,8 +196691,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "8",
- "south": "none",
+ "power": "3",
+ "south": "side",
"west": "up"
}
},
@@ -192637,8 +196701,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "8",
- "south": "none",
+ "power": "3",
+ "south": "side",
"west": "side"
}
},
@@ -192647,8 +196711,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "8",
- "south": "none",
+ "power": "3",
+ "south": "side",
"west": "none"
}
},
@@ -192657,8 +196721,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "9",
- "south": "up",
+ "power": "3",
+ "south": "none",
"west": "up"
}
},
@@ -192667,8 +196731,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "9",
- "south": "up",
+ "power": "3",
+ "south": "none",
"west": "side"
}
},
@@ -192677,8 +196741,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "9",
- "south": "up",
+ "power": "3",
+ "south": "none",
"west": "none"
}
},
@@ -192687,8 +196751,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "9",
- "south": "side",
+ "power": "4",
+ "south": "up",
"west": "up"
}
},
@@ -192697,8 +196761,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "9",
- "south": "side",
+ "power": "4",
+ "south": "up",
"west": "side"
}
},
@@ -192707,8 +196771,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "9",
- "south": "side",
+ "power": "4",
+ "south": "up",
"west": "none"
}
},
@@ -192717,8 +196781,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "9",
- "south": "none",
+ "power": "4",
+ "south": "side",
"west": "up"
}
},
@@ -192727,8 +196791,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "9",
- "south": "none",
+ "power": "4",
+ "south": "side",
"west": "side"
}
},
@@ -192737,8 +196801,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "9",
- "south": "none",
+ "power": "4",
+ "south": "side",
"west": "none"
}
},
@@ -192747,8 +196811,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "10",
- "south": "up",
+ "power": "4",
+ "south": "none",
"west": "up"
}
},
@@ -192757,8 +196821,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "10",
- "south": "up",
+ "power": "4",
+ "south": "none",
"west": "side"
}
},
@@ -192767,8 +196831,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "10",
- "south": "up",
+ "power": "4",
+ "south": "none",
"west": "none"
}
},
@@ -192777,8 +196841,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "10",
- "south": "side",
+ "power": "5",
+ "south": "up",
"west": "up"
}
},
@@ -192787,8 +196851,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "10",
- "south": "side",
+ "power": "5",
+ "south": "up",
"west": "side"
}
},
@@ -192797,8 +196861,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "10",
- "south": "side",
+ "power": "5",
+ "south": "up",
"west": "none"
}
},
@@ -192807,8 +196871,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "10",
- "south": "none",
+ "power": "5",
+ "south": "side",
"west": "up"
}
},
@@ -192817,8 +196881,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "10",
- "south": "none",
+ "power": "5",
+ "south": "side",
"west": "side"
}
},
@@ -192827,8 +196891,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "10",
- "south": "none",
+ "power": "5",
+ "south": "side",
"west": "none"
}
},
@@ -192837,8 +196901,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "11",
- "south": "up",
+ "power": "5",
+ "south": "none",
"west": "up"
}
},
@@ -192847,8 +196911,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "11",
- "south": "up",
+ "power": "5",
+ "south": "none",
"west": "side"
}
},
@@ -192857,8 +196921,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "11",
- "south": "up",
+ "power": "5",
+ "south": "none",
"west": "none"
}
},
@@ -192867,8 +196931,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "11",
- "south": "side",
+ "power": "6",
+ "south": "up",
"west": "up"
}
},
@@ -192877,8 +196941,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "11",
- "south": "side",
+ "power": "6",
+ "south": "up",
"west": "side"
}
},
@@ -192887,8 +196951,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "11",
- "south": "side",
+ "power": "6",
+ "south": "up",
"west": "none"
}
},
@@ -192897,8 +196961,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "11",
- "south": "none",
+ "power": "6",
+ "south": "side",
"west": "up"
}
},
@@ -192907,8 +196971,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "11",
- "south": "none",
+ "power": "6",
+ "south": "side",
"west": "side"
}
},
@@ -192917,8 +196981,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "11",
- "south": "none",
+ "power": "6",
+ "south": "side",
"west": "none"
}
},
@@ -192927,8 +196991,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "12",
- "south": "up",
+ "power": "6",
+ "south": "none",
"west": "up"
}
},
@@ -192937,8 +197001,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "12",
- "south": "up",
+ "power": "6",
+ "south": "none",
"west": "side"
}
},
@@ -192947,8 +197011,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "12",
- "south": "up",
+ "power": "6",
+ "south": "none",
"west": "none"
}
},
@@ -192957,8 +197021,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "12",
- "south": "side",
+ "power": "7",
+ "south": "up",
"west": "up"
}
},
@@ -192967,8 +197031,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "12",
- "south": "side",
+ "power": "7",
+ "south": "up",
"west": "side"
}
},
@@ -192977,8 +197041,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "12",
- "south": "side",
+ "power": "7",
+ "south": "up",
"west": "none"
}
},
@@ -192987,8 +197051,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "12",
- "south": "none",
+ "power": "7",
+ "south": "side",
"west": "up"
}
},
@@ -192997,8 +197061,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "12",
- "south": "none",
+ "power": "7",
+ "south": "side",
"west": "side"
}
},
@@ -193007,8 +197071,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "12",
- "south": "none",
+ "power": "7",
+ "south": "side",
"west": "none"
}
},
@@ -193017,8 +197081,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "13",
- "south": "up",
+ "power": "7",
+ "south": "none",
"west": "up"
}
},
@@ -193027,8 +197091,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "13",
- "south": "up",
+ "power": "7",
+ "south": "none",
"west": "side"
}
},
@@ -193037,8 +197101,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "13",
- "south": "up",
+ "power": "7",
+ "south": "none",
"west": "none"
}
},
@@ -193047,8 +197111,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "13",
- "south": "side",
+ "power": "8",
+ "south": "up",
"west": "up"
}
},
@@ -193057,8 +197121,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "13",
- "south": "side",
+ "power": "8",
+ "south": "up",
"west": "side"
}
},
@@ -193067,8 +197131,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "13",
- "south": "side",
+ "power": "8",
+ "south": "up",
"west": "none"
}
},
@@ -193077,8 +197141,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "13",
- "south": "none",
+ "power": "8",
+ "south": "side",
"west": "up"
}
},
@@ -193087,8 +197151,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "13",
- "south": "none",
+ "power": "8",
+ "south": "side",
"west": "side"
}
},
@@ -193097,8 +197161,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "13",
- "south": "none",
+ "power": "8",
+ "south": "side",
"west": "none"
}
},
@@ -193107,8 +197171,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "14",
- "south": "up",
+ "power": "8",
+ "south": "none",
"west": "up"
}
},
@@ -193117,8 +197181,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "14",
- "south": "up",
+ "power": "8",
+ "south": "none",
"west": "side"
}
},
@@ -193127,8 +197191,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "14",
- "south": "up",
+ "power": "8",
+ "south": "none",
"west": "none"
}
},
@@ -193137,8 +197201,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "14",
- "south": "side",
+ "power": "9",
+ "south": "up",
"west": "up"
}
},
@@ -193147,8 +197211,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "14",
- "south": "side",
+ "power": "9",
+ "south": "up",
"west": "side"
}
},
@@ -193157,8 +197221,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "14",
- "south": "side",
+ "power": "9",
+ "south": "up",
"west": "none"
}
},
@@ -193167,8 +197231,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "14",
- "south": "none",
+ "power": "9",
+ "south": "side",
"west": "up"
}
},
@@ -193177,8 +197241,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "14",
- "south": "none",
+ "power": "9",
+ "south": "side",
"west": "side"
}
},
@@ -193187,8 +197251,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "14",
- "south": "none",
+ "power": "9",
+ "south": "side",
"west": "none"
}
},
@@ -193197,8 +197261,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "15",
- "south": "up",
+ "power": "9",
+ "south": "none",
"west": "up"
}
},
@@ -193207,8 +197271,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "15",
- "south": "up",
+ "power": "9",
+ "south": "none",
"west": "side"
}
},
@@ -193217,8 +197281,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "15",
- "south": "up",
+ "power": "9",
+ "south": "none",
"west": "none"
}
},
@@ -193227,8 +197291,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "15",
- "south": "side",
+ "power": "10",
+ "south": "up",
"west": "up"
}
},
@@ -193237,8 +197301,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "15",
- "south": "side",
+ "power": "10",
+ "south": "up",
"west": "side"
}
},
@@ -193247,8 +197311,8 @@
"properties": {
"east": "none",
"north": "up",
- "power": "15",
- "south": "side",
+ "power": "10",
+ "south": "up",
"west": "none"
}
},
@@ -193257,13 +197321,493 @@
"properties": {
"east": "none",
"north": "up",
- "power": "15",
- "south": "none",
+ "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",
@@ -193273,7 +197817,7 @@
}
},
{
- "id": 3933,
+ "id": 3981,
"properties": {
"east": "none",
"north": "up",
@@ -193282,493 +197826,13 @@
"west": "none"
}
},
- {
- "id": 3934,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "0",
- "south": "up",
- "west": "up"
- }
- },
- {
- "id": 3935,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "0",
- "south": "up",
- "west": "side"
- }
- },
- {
- "id": 3936,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "0",
- "south": "up",
- "west": "none"
- }
- },
- {
- "id": 3937,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "0",
- "south": "side",
- "west": "up"
- }
- },
- {
- "id": 3938,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "0",
- "south": "side",
- "west": "side"
- }
- },
- {
- "id": 3939,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "0",
- "south": "side",
- "west": "none"
- }
- },
- {
- "id": 3940,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "0",
- "south": "none",
- "west": "up"
- }
- },
- {
- "id": 3941,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "0",
- "south": "none",
- "west": "side"
- }
- },
- {
- "id": 3942,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "0",
- "south": "none",
- "west": "none"
- }
- },
- {
- "id": 3943,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "1",
- "south": "up",
- "west": "up"
- }
- },
- {
- "id": 3944,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "1",
- "south": "up",
- "west": "side"
- }
- },
- {
- "id": 3945,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "1",
- "south": "up",
- "west": "none"
- }
- },
- {
- "id": 3946,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "1",
- "south": "side",
- "west": "up"
- }
- },
- {
- "id": 3947,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "1",
- "south": "side",
- "west": "side"
- }
- },
- {
- "id": 3948,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "1",
- "south": "side",
- "west": "none"
- }
- },
- {
- "id": 3949,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "1",
- "south": "none",
- "west": "up"
- }
- },
- {
- "id": 3950,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "1",
- "south": "none",
- "west": "side"
- }
- },
- {
- "id": 3951,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "1",
- "south": "none",
- "west": "none"
- }
- },
- {
- "id": 3952,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "2",
- "south": "up",
- "west": "up"
- }
- },
- {
- "id": 3953,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "2",
- "south": "up",
- "west": "side"
- }
- },
- {
- "id": 3954,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "2",
- "south": "up",
- "west": "none"
- }
- },
- {
- "id": 3955,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "2",
- "south": "side",
- "west": "up"
- }
- },
- {
- "id": 3956,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "2",
- "south": "side",
- "west": "side"
- }
- },
- {
- "id": 3957,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "2",
- "south": "side",
- "west": "none"
- }
- },
- {
- "id": 3958,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "2",
- "south": "none",
- "west": "up"
- }
- },
- {
- "id": 3959,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "2",
- "south": "none",
- "west": "side"
- }
- },
- {
- "id": 3960,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "2",
- "south": "none",
- "west": "none"
- }
- },
- {
- "id": 3961,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "3",
- "south": "up",
- "west": "up"
- }
- },
- {
- "id": 3962,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "3",
- "south": "up",
- "west": "side"
- }
- },
- {
- "id": 3963,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "3",
- "south": "up",
- "west": "none"
- }
- },
- {
- "id": 3964,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "3",
- "south": "side",
- "west": "up"
- }
- },
- {
- "id": 3965,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "3",
- "south": "side",
- "west": "side"
- }
- },
- {
- "id": 3966,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "3",
- "south": "side",
- "west": "none"
- }
- },
- {
- "id": 3967,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "3",
- "south": "none",
- "west": "up"
- }
- },
- {
- "id": 3968,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "3",
- "south": "none",
- "west": "side"
- }
- },
- {
- "id": 3969,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "3",
- "south": "none",
- "west": "none"
- }
- },
- {
- "id": 3970,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "4",
- "south": "up",
- "west": "up"
- }
- },
- {
- "id": 3971,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "4",
- "south": "up",
- "west": "side"
- }
- },
- {
- "id": 3972,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "4",
- "south": "up",
- "west": "none"
- }
- },
- {
- "id": 3973,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "4",
- "south": "side",
- "west": "up"
- }
- },
- {
- "id": 3974,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "4",
- "south": "side",
- "west": "side"
- }
- },
- {
- "id": 3975,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "4",
- "south": "side",
- "west": "none"
- }
- },
- {
- "id": 3976,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "4",
- "south": "none",
- "west": "up"
- }
- },
- {
- "id": 3977,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "4",
- "south": "none",
- "west": "side"
- }
- },
- {
- "id": 3978,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "4",
- "south": "none",
- "west": "none"
- }
- },
- {
- "id": 3979,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "5",
- "south": "up",
- "west": "up"
- }
- },
- {
- "id": 3980,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "5",
- "south": "up",
- "west": "side"
- }
- },
- {
- "id": 3981,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "5",
- "south": "up",
- "west": "none"
- }
- },
{
"id": 3982,
"properties": {
"east": "none",
"north": "side",
- "power": "5",
- "south": "side",
+ "power": "0",
+ "south": "up",
"west": "up"
}
},
@@ -193777,8 +197841,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "5",
- "south": "side",
+ "power": "0",
+ "south": "up",
"west": "side"
}
},
@@ -193787,8 +197851,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "5",
- "south": "side",
+ "power": "0",
+ "south": "up",
"west": "none"
}
},
@@ -193797,8 +197861,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "5",
- "south": "none",
+ "power": "0",
+ "south": "side",
"west": "up"
}
},
@@ -193807,8 +197871,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "5",
- "south": "none",
+ "power": "0",
+ "south": "side",
"west": "side"
}
},
@@ -193817,8 +197881,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "5",
- "south": "none",
+ "power": "0",
+ "south": "side",
"west": "none"
}
},
@@ -193827,8 +197891,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "6",
- "south": "up",
+ "power": "0",
+ "south": "none",
"west": "up"
}
},
@@ -193837,8 +197901,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "6",
- "south": "up",
+ "power": "0",
+ "south": "none",
"west": "side"
}
},
@@ -193847,8 +197911,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "6",
- "south": "up",
+ "power": "0",
+ "south": "none",
"west": "none"
}
},
@@ -193857,8 +197921,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "6",
- "south": "side",
+ "power": "1",
+ "south": "up",
"west": "up"
}
},
@@ -193867,8 +197931,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "6",
- "south": "side",
+ "power": "1",
+ "south": "up",
"west": "side"
}
},
@@ -193877,8 +197941,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "6",
- "south": "side",
+ "power": "1",
+ "south": "up",
"west": "none"
}
},
@@ -193887,8 +197951,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "6",
- "south": "none",
+ "power": "1",
+ "south": "side",
"west": "up"
}
},
@@ -193897,8 +197961,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "6",
- "south": "none",
+ "power": "1",
+ "south": "side",
"west": "side"
}
},
@@ -193907,8 +197971,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "6",
- "south": "none",
+ "power": "1",
+ "south": "side",
"west": "none"
}
},
@@ -193917,8 +197981,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "7",
- "south": "up",
+ "power": "1",
+ "south": "none",
"west": "up"
}
},
@@ -193927,8 +197991,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "7",
- "south": "up",
+ "power": "1",
+ "south": "none",
"west": "side"
}
},
@@ -193937,8 +198001,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "7",
- "south": "up",
+ "power": "1",
+ "south": "none",
"west": "none"
}
},
@@ -193947,8 +198011,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "7",
- "south": "side",
+ "power": "2",
+ "south": "up",
"west": "up"
}
},
@@ -193957,8 +198021,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "7",
- "south": "side",
+ "power": "2",
+ "south": "up",
"west": "side"
}
},
@@ -193967,8 +198031,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "7",
- "south": "side",
+ "power": "2",
+ "south": "up",
"west": "none"
}
},
@@ -193977,8 +198041,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "7",
- "south": "none",
+ "power": "2",
+ "south": "side",
"west": "up"
}
},
@@ -193987,8 +198051,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "7",
- "south": "none",
+ "power": "2",
+ "south": "side",
"west": "side"
}
},
@@ -193997,8 +198061,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "7",
- "south": "none",
+ "power": "2",
+ "south": "side",
"west": "none"
}
},
@@ -194007,8 +198071,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "8",
- "south": "up",
+ "power": "2",
+ "south": "none",
"west": "up"
}
},
@@ -194017,8 +198081,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "8",
- "south": "up",
+ "power": "2",
+ "south": "none",
"west": "side"
}
},
@@ -194027,8 +198091,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "8",
- "south": "up",
+ "power": "2",
+ "south": "none",
"west": "none"
}
},
@@ -194037,8 +198101,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "8",
- "south": "side",
+ "power": "3",
+ "south": "up",
"west": "up"
}
},
@@ -194047,8 +198111,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "8",
- "south": "side",
+ "power": "3",
+ "south": "up",
"west": "side"
}
},
@@ -194057,8 +198121,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "8",
- "south": "side",
+ "power": "3",
+ "south": "up",
"west": "none"
}
},
@@ -194067,8 +198131,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "8",
- "south": "none",
+ "power": "3",
+ "south": "side",
"west": "up"
}
},
@@ -194077,8 +198141,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "8",
- "south": "none",
+ "power": "3",
+ "south": "side",
"west": "side"
}
},
@@ -194087,8 +198151,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "8",
- "south": "none",
+ "power": "3",
+ "south": "side",
"west": "none"
}
},
@@ -194097,8 +198161,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "9",
- "south": "up",
+ "power": "3",
+ "south": "none",
"west": "up"
}
},
@@ -194107,8 +198171,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "9",
- "south": "up",
+ "power": "3",
+ "south": "none",
"west": "side"
}
},
@@ -194117,8 +198181,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "9",
- "south": "up",
+ "power": "3",
+ "south": "none",
"west": "none"
}
},
@@ -194127,8 +198191,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "9",
- "south": "side",
+ "power": "4",
+ "south": "up",
"west": "up"
}
},
@@ -194137,8 +198201,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "9",
- "south": "side",
+ "power": "4",
+ "south": "up",
"west": "side"
}
},
@@ -194147,8 +198211,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "9",
- "south": "side",
+ "power": "4",
+ "south": "up",
"west": "none"
}
},
@@ -194157,8 +198221,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "9",
- "south": "none",
+ "power": "4",
+ "south": "side",
"west": "up"
}
},
@@ -194167,8 +198231,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "9",
- "south": "none",
+ "power": "4",
+ "south": "side",
"west": "side"
}
},
@@ -194177,8 +198241,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "9",
- "south": "none",
+ "power": "4",
+ "south": "side",
"west": "none"
}
},
@@ -194187,8 +198251,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "10",
- "south": "up",
+ "power": "4",
+ "south": "none",
"west": "up"
}
},
@@ -194197,8 +198261,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "10",
- "south": "up",
+ "power": "4",
+ "south": "none",
"west": "side"
}
},
@@ -194207,8 +198271,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "10",
- "south": "up",
+ "power": "4",
+ "south": "none",
"west": "none"
}
},
@@ -194217,8 +198281,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "10",
- "south": "side",
+ "power": "5",
+ "south": "up",
"west": "up"
}
},
@@ -194227,8 +198291,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "10",
- "south": "side",
+ "power": "5",
+ "south": "up",
"west": "side"
}
},
@@ -194237,8 +198301,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "10",
- "south": "side",
+ "power": "5",
+ "south": "up",
"west": "none"
}
},
@@ -194247,8 +198311,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "10",
- "south": "none",
+ "power": "5",
+ "south": "side",
"west": "up"
}
},
@@ -194257,8 +198321,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "10",
- "south": "none",
+ "power": "5",
+ "south": "side",
"west": "side"
}
},
@@ -194267,8 +198331,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "10",
- "south": "none",
+ "power": "5",
+ "south": "side",
"west": "none"
}
},
@@ -194277,8 +198341,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "11",
- "south": "up",
+ "power": "5",
+ "south": "none",
"west": "up"
}
},
@@ -194287,8 +198351,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "11",
- "south": "up",
+ "power": "5",
+ "south": "none",
"west": "side"
}
},
@@ -194297,8 +198361,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "11",
- "south": "up",
+ "power": "5",
+ "south": "none",
"west": "none"
}
},
@@ -194307,8 +198371,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "11",
- "south": "side",
+ "power": "6",
+ "south": "up",
"west": "up"
}
},
@@ -194317,8 +198381,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "11",
- "south": "side",
+ "power": "6",
+ "south": "up",
"west": "side"
}
},
@@ -194327,8 +198391,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "11",
- "south": "side",
+ "power": "6",
+ "south": "up",
"west": "none"
}
},
@@ -194337,8 +198401,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "11",
- "south": "none",
+ "power": "6",
+ "south": "side",
"west": "up"
}
},
@@ -194347,8 +198411,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "11",
- "south": "none",
+ "power": "6",
+ "south": "side",
"west": "side"
}
},
@@ -194357,8 +198421,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "11",
- "south": "none",
+ "power": "6",
+ "south": "side",
"west": "none"
}
},
@@ -194367,8 +198431,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "12",
- "south": "up",
+ "power": "6",
+ "south": "none",
"west": "up"
}
},
@@ -194377,8 +198441,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "12",
- "south": "up",
+ "power": "6",
+ "south": "none",
"west": "side"
}
},
@@ -194387,8 +198451,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "12",
- "south": "up",
+ "power": "6",
+ "south": "none",
"west": "none"
}
},
@@ -194397,8 +198461,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "12",
- "south": "side",
+ "power": "7",
+ "south": "up",
"west": "up"
}
},
@@ -194407,8 +198471,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "12",
- "south": "side",
+ "power": "7",
+ "south": "up",
"west": "side"
}
},
@@ -194417,8 +198481,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "12",
- "south": "side",
+ "power": "7",
+ "south": "up",
"west": "none"
}
},
@@ -194427,8 +198491,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "12",
- "south": "none",
+ "power": "7",
+ "south": "side",
"west": "up"
}
},
@@ -194437,8 +198501,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "12",
- "south": "none",
+ "power": "7",
+ "south": "side",
"west": "side"
}
},
@@ -194447,8 +198511,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "12",
- "south": "none",
+ "power": "7",
+ "south": "side",
"west": "none"
}
},
@@ -194457,8 +198521,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "13",
- "south": "up",
+ "power": "7",
+ "south": "none",
"west": "up"
}
},
@@ -194467,8 +198531,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "13",
- "south": "up",
+ "power": "7",
+ "south": "none",
"west": "side"
}
},
@@ -194477,8 +198541,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "13",
- "south": "up",
+ "power": "7",
+ "south": "none",
"west": "none"
}
},
@@ -194487,8 +198551,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "13",
- "south": "side",
+ "power": "8",
+ "south": "up",
"west": "up"
}
},
@@ -194497,8 +198561,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "13",
- "south": "side",
+ "power": "8",
+ "south": "up",
"west": "side"
}
},
@@ -194507,8 +198571,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "13",
- "south": "side",
+ "power": "8",
+ "south": "up",
"west": "none"
}
},
@@ -194517,8 +198581,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "13",
- "south": "none",
+ "power": "8",
+ "south": "side",
"west": "up"
}
},
@@ -194527,8 +198591,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "13",
- "south": "none",
+ "power": "8",
+ "south": "side",
"west": "side"
}
},
@@ -194537,8 +198601,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "13",
- "south": "none",
+ "power": "8",
+ "south": "side",
"west": "none"
}
},
@@ -194547,8 +198611,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "14",
- "south": "up",
+ "power": "8",
+ "south": "none",
"west": "up"
}
},
@@ -194557,8 +198621,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "14",
- "south": "up",
+ "power": "8",
+ "south": "none",
"west": "side"
}
},
@@ -194567,8 +198631,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "14",
- "south": "up",
+ "power": "8",
+ "south": "none",
"west": "none"
}
},
@@ -194577,8 +198641,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "14",
- "south": "side",
+ "power": "9",
+ "south": "up",
"west": "up"
}
},
@@ -194587,8 +198651,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "14",
- "south": "side",
+ "power": "9",
+ "south": "up",
"west": "side"
}
},
@@ -194597,8 +198661,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "14",
- "south": "side",
+ "power": "9",
+ "south": "up",
"west": "none"
}
},
@@ -194607,8 +198671,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "14",
- "south": "none",
+ "power": "9",
+ "south": "side",
"west": "up"
}
},
@@ -194617,8 +198681,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "14",
- "south": "none",
+ "power": "9",
+ "south": "side",
"west": "side"
}
},
@@ -194627,8 +198691,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "14",
- "south": "none",
+ "power": "9",
+ "south": "side",
"west": "none"
}
},
@@ -194637,8 +198701,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "15",
- "south": "up",
+ "power": "9",
+ "south": "none",
"west": "up"
}
},
@@ -194647,8 +198711,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "15",
- "south": "up",
+ "power": "9",
+ "south": "none",
"west": "side"
}
},
@@ -194657,8 +198721,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "15",
- "south": "up",
+ "power": "9",
+ "south": "none",
"west": "none"
}
},
@@ -194667,8 +198731,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "15",
- "south": "side",
+ "power": "10",
+ "south": "up",
"west": "up"
}
},
@@ -194677,8 +198741,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "15",
- "south": "side",
+ "power": "10",
+ "south": "up",
"west": "side"
}
},
@@ -194687,8 +198751,8 @@
"properties": {
"east": "none",
"north": "side",
- "power": "15",
- "south": "side",
+ "power": "10",
+ "south": "up",
"west": "none"
}
},
@@ -194697,13 +198761,493 @@
"properties": {
"east": "none",
"north": "side",
- "power": "15",
- "south": "none",
+ "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",
@@ -194713,7 +199257,7 @@
}
},
{
- "id": 4077,
+ "id": 4125,
"properties": {
"east": "none",
"north": "side",
@@ -194723,7 +199267,7 @@
}
},
{
- "id": 4078,
+ "id": 4126,
"properties": {
"east": "none",
"north": "none",
@@ -194733,7 +199277,7 @@
}
},
{
- "id": 4079,
+ "id": 4127,
"properties": {
"east": "none",
"north": "none",
@@ -194743,7 +199287,7 @@
}
},
{
- "id": 4080,
+ "id": 4128,
"properties": {
"east": "none",
"north": "none",
@@ -194753,7 +199297,7 @@
}
},
{
- "id": 4081,
+ "id": 4129,
"properties": {
"east": "none",
"north": "none",
@@ -194763,7 +199307,7 @@
}
},
{
- "id": 4082,
+ "id": 4130,
"properties": {
"east": "none",
"north": "none",
@@ -194773,7 +199317,7 @@
}
},
{
- "id": 4083,
+ "id": 4131,
"properties": {
"east": "none",
"north": "none",
@@ -194783,7 +199327,7 @@
}
},
{
- "id": 4084,
+ "id": 4132,
"properties": {
"east": "none",
"north": "none",
@@ -194793,7 +199337,7 @@
}
},
{
- "id": 4085,
+ "id": 4133,
"properties": {
"east": "none",
"north": "none",
@@ -194804,7 +199348,7 @@
},
{
"default": true,
- "id": 4086,
+ "id": 4134,
"properties": {
"east": "none",
"north": "none",
@@ -194813,493 +199357,13 @@
"west": "none"
}
},
- {
- "id": 4087,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "1",
- "south": "up",
- "west": "up"
- }
- },
- {
- "id": 4088,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "1",
- "south": "up",
- "west": "side"
- }
- },
- {
- "id": 4089,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "1",
- "south": "up",
- "west": "none"
- }
- },
- {
- "id": 4090,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "1",
- "south": "side",
- "west": "up"
- }
- },
- {
- "id": 4091,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "1",
- "south": "side",
- "west": "side"
- }
- },
- {
- "id": 4092,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "1",
- "south": "side",
- "west": "none"
- }
- },
- {
- "id": 4093,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "1",
- "south": "none",
- "west": "up"
- }
- },
- {
- "id": 4094,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "1",
- "south": "none",
- "west": "side"
- }
- },
- {
- "id": 4095,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "1",
- "south": "none",
- "west": "none"
- }
- },
- {
- "id": 4096,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "2",
- "south": "up",
- "west": "up"
- }
- },
- {
- "id": 4097,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "2",
- "south": "up",
- "west": "side"
- }
- },
- {
- "id": 4098,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "2",
- "south": "up",
- "west": "none"
- }
- },
- {
- "id": 4099,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "2",
- "south": "side",
- "west": "up"
- }
- },
- {
- "id": 4100,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "2",
- "south": "side",
- "west": "side"
- }
- },
- {
- "id": 4101,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "2",
- "south": "side",
- "west": "none"
- }
- },
- {
- "id": 4102,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "2",
- "south": "none",
- "west": "up"
- }
- },
- {
- "id": 4103,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "2",
- "south": "none",
- "west": "side"
- }
- },
- {
- "id": 4104,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "2",
- "south": "none",
- "west": "none"
- }
- },
- {
- "id": 4105,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "3",
- "south": "up",
- "west": "up"
- }
- },
- {
- "id": 4106,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "3",
- "south": "up",
- "west": "side"
- }
- },
- {
- "id": 4107,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "3",
- "south": "up",
- "west": "none"
- }
- },
- {
- "id": 4108,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "3",
- "south": "side",
- "west": "up"
- }
- },
- {
- "id": 4109,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "3",
- "south": "side",
- "west": "side"
- }
- },
- {
- "id": 4110,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "3",
- "south": "side",
- "west": "none"
- }
- },
- {
- "id": 4111,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "3",
- "south": "none",
- "west": "up"
- }
- },
- {
- "id": 4112,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "3",
- "south": "none",
- "west": "side"
- }
- },
- {
- "id": 4113,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "3",
- "south": "none",
- "west": "none"
- }
- },
- {
- "id": 4114,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "4",
- "south": "up",
- "west": "up"
- }
- },
- {
- "id": 4115,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "4",
- "south": "up",
- "west": "side"
- }
- },
- {
- "id": 4116,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "4",
- "south": "up",
- "west": "none"
- }
- },
- {
- "id": 4117,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "4",
- "south": "side",
- "west": "up"
- }
- },
- {
- "id": 4118,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "4",
- "south": "side",
- "west": "side"
- }
- },
- {
- "id": 4119,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "4",
- "south": "side",
- "west": "none"
- }
- },
- {
- "id": 4120,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "4",
- "south": "none",
- "west": "up"
- }
- },
- {
- "id": 4121,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "4",
- "south": "none",
- "west": "side"
- }
- },
- {
- "id": 4122,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "4",
- "south": "none",
- "west": "none"
- }
- },
- {
- "id": 4123,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "5",
- "south": "up",
- "west": "up"
- }
- },
- {
- "id": 4124,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "5",
- "south": "up",
- "west": "side"
- }
- },
- {
- "id": 4125,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "5",
- "south": "up",
- "west": "none"
- }
- },
- {
- "id": 4126,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "5",
- "south": "side",
- "west": "up"
- }
- },
- {
- "id": 4127,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "5",
- "south": "side",
- "west": "side"
- }
- },
- {
- "id": 4128,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "5",
- "south": "side",
- "west": "none"
- }
- },
- {
- "id": 4129,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "5",
- "south": "none",
- "west": "up"
- }
- },
- {
- "id": 4130,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "5",
- "south": "none",
- "west": "side"
- }
- },
- {
- "id": 4131,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "5",
- "south": "none",
- "west": "none"
- }
- },
- {
- "id": 4132,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "6",
- "south": "up",
- "west": "up"
- }
- },
- {
- "id": 4133,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "6",
- "south": "up",
- "west": "side"
- }
- },
- {
- "id": 4134,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "6",
- "south": "up",
- "west": "none"
- }
- },
{
"id": 4135,
"properties": {
"east": "none",
"north": "none",
- "power": "6",
- "south": "side",
+ "power": "1",
+ "south": "up",
"west": "up"
}
},
@@ -195308,8 +199372,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "6",
- "south": "side",
+ "power": "1",
+ "south": "up",
"west": "side"
}
},
@@ -195318,8 +199382,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "6",
- "south": "side",
+ "power": "1",
+ "south": "up",
"west": "none"
}
},
@@ -195328,8 +199392,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "6",
- "south": "none",
+ "power": "1",
+ "south": "side",
"west": "up"
}
},
@@ -195338,8 +199402,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "6",
- "south": "none",
+ "power": "1",
+ "south": "side",
"west": "side"
}
},
@@ -195348,8 +199412,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "6",
- "south": "none",
+ "power": "1",
+ "south": "side",
"west": "none"
}
},
@@ -195358,8 +199422,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "7",
- "south": "up",
+ "power": "1",
+ "south": "none",
"west": "up"
}
},
@@ -195368,8 +199432,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "7",
- "south": "up",
+ "power": "1",
+ "south": "none",
"west": "side"
}
},
@@ -195378,8 +199442,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "7",
- "south": "up",
+ "power": "1",
+ "south": "none",
"west": "none"
}
},
@@ -195388,8 +199452,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "7",
- "south": "side",
+ "power": "2",
+ "south": "up",
"west": "up"
}
},
@@ -195398,8 +199462,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "7",
- "south": "side",
+ "power": "2",
+ "south": "up",
"west": "side"
}
},
@@ -195408,8 +199472,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "7",
- "south": "side",
+ "power": "2",
+ "south": "up",
"west": "none"
}
},
@@ -195418,8 +199482,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "7",
- "south": "none",
+ "power": "2",
+ "south": "side",
"west": "up"
}
},
@@ -195428,8 +199492,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "7",
- "south": "none",
+ "power": "2",
+ "south": "side",
"west": "side"
}
},
@@ -195438,8 +199502,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "7",
- "south": "none",
+ "power": "2",
+ "south": "side",
"west": "none"
}
},
@@ -195448,8 +199512,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "8",
- "south": "up",
+ "power": "2",
+ "south": "none",
"west": "up"
}
},
@@ -195458,8 +199522,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "8",
- "south": "up",
+ "power": "2",
+ "south": "none",
"west": "side"
}
},
@@ -195468,8 +199532,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "8",
- "south": "up",
+ "power": "2",
+ "south": "none",
"west": "none"
}
},
@@ -195478,8 +199542,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "8",
- "south": "side",
+ "power": "3",
+ "south": "up",
"west": "up"
}
},
@@ -195488,8 +199552,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "8",
- "south": "side",
+ "power": "3",
+ "south": "up",
"west": "side"
}
},
@@ -195498,8 +199562,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "8",
- "south": "side",
+ "power": "3",
+ "south": "up",
"west": "none"
}
},
@@ -195508,8 +199572,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "8",
- "south": "none",
+ "power": "3",
+ "south": "side",
"west": "up"
}
},
@@ -195518,8 +199582,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "8",
- "south": "none",
+ "power": "3",
+ "south": "side",
"west": "side"
}
},
@@ -195528,8 +199592,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "8",
- "south": "none",
+ "power": "3",
+ "south": "side",
"west": "none"
}
},
@@ -195538,8 +199602,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "9",
- "south": "up",
+ "power": "3",
+ "south": "none",
"west": "up"
}
},
@@ -195548,8 +199612,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "9",
- "south": "up",
+ "power": "3",
+ "south": "none",
"west": "side"
}
},
@@ -195558,8 +199622,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "9",
- "south": "up",
+ "power": "3",
+ "south": "none",
"west": "none"
}
},
@@ -195568,8 +199632,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "9",
- "south": "side",
+ "power": "4",
+ "south": "up",
"west": "up"
}
},
@@ -195578,8 +199642,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "9",
- "south": "side",
+ "power": "4",
+ "south": "up",
"west": "side"
}
},
@@ -195588,8 +199652,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "9",
- "south": "side",
+ "power": "4",
+ "south": "up",
"west": "none"
}
},
@@ -195598,8 +199662,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "9",
- "south": "none",
+ "power": "4",
+ "south": "side",
"west": "up"
}
},
@@ -195608,8 +199672,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "9",
- "south": "none",
+ "power": "4",
+ "south": "side",
"west": "side"
}
},
@@ -195618,8 +199682,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "9",
- "south": "none",
+ "power": "4",
+ "south": "side",
"west": "none"
}
},
@@ -195628,8 +199692,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "10",
- "south": "up",
+ "power": "4",
+ "south": "none",
"west": "up"
}
},
@@ -195638,8 +199702,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "10",
- "south": "up",
+ "power": "4",
+ "south": "none",
"west": "side"
}
},
@@ -195648,8 +199712,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "10",
- "south": "up",
+ "power": "4",
+ "south": "none",
"west": "none"
}
},
@@ -195658,8 +199722,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "10",
- "south": "side",
+ "power": "5",
+ "south": "up",
"west": "up"
}
},
@@ -195668,8 +199732,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "10",
- "south": "side",
+ "power": "5",
+ "south": "up",
"west": "side"
}
},
@@ -195678,8 +199742,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "10",
- "south": "side",
+ "power": "5",
+ "south": "up",
"west": "none"
}
},
@@ -195688,8 +199752,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "10",
- "south": "none",
+ "power": "5",
+ "south": "side",
"west": "up"
}
},
@@ -195698,8 +199762,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "10",
- "south": "none",
+ "power": "5",
+ "south": "side",
"west": "side"
}
},
@@ -195708,8 +199772,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "10",
- "south": "none",
+ "power": "5",
+ "south": "side",
"west": "none"
}
},
@@ -195718,8 +199782,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "11",
- "south": "up",
+ "power": "5",
+ "south": "none",
"west": "up"
}
},
@@ -195728,8 +199792,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "11",
- "south": "up",
+ "power": "5",
+ "south": "none",
"west": "side"
}
},
@@ -195738,8 +199802,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "11",
- "south": "up",
+ "power": "5",
+ "south": "none",
"west": "none"
}
},
@@ -195748,8 +199812,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "11",
- "south": "side",
+ "power": "6",
+ "south": "up",
"west": "up"
}
},
@@ -195758,8 +199822,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "11",
- "south": "side",
+ "power": "6",
+ "south": "up",
"west": "side"
}
},
@@ -195768,8 +199832,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "11",
- "south": "side",
+ "power": "6",
+ "south": "up",
"west": "none"
}
},
@@ -195778,8 +199842,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "11",
- "south": "none",
+ "power": "6",
+ "south": "side",
"west": "up"
}
},
@@ -195788,8 +199852,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "11",
- "south": "none",
+ "power": "6",
+ "south": "side",
"west": "side"
}
},
@@ -195798,8 +199862,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "11",
- "south": "none",
+ "power": "6",
+ "south": "side",
"west": "none"
}
},
@@ -195808,8 +199872,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "12",
- "south": "up",
+ "power": "6",
+ "south": "none",
"west": "up"
}
},
@@ -195818,8 +199882,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "12",
- "south": "up",
+ "power": "6",
+ "south": "none",
"west": "side"
}
},
@@ -195828,8 +199892,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "12",
- "south": "up",
+ "power": "6",
+ "south": "none",
"west": "none"
}
},
@@ -195838,8 +199902,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "12",
- "south": "side",
+ "power": "7",
+ "south": "up",
"west": "up"
}
},
@@ -195848,8 +199912,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "12",
- "south": "side",
+ "power": "7",
+ "south": "up",
"west": "side"
}
},
@@ -195858,8 +199922,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "12",
- "south": "side",
+ "power": "7",
+ "south": "up",
"west": "none"
}
},
@@ -195868,8 +199932,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "12",
- "south": "none",
+ "power": "7",
+ "south": "side",
"west": "up"
}
},
@@ -195878,8 +199942,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "12",
- "south": "none",
+ "power": "7",
+ "south": "side",
"west": "side"
}
},
@@ -195888,8 +199952,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "12",
- "south": "none",
+ "power": "7",
+ "south": "side",
"west": "none"
}
},
@@ -195898,8 +199962,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "13",
- "south": "up",
+ "power": "7",
+ "south": "none",
"west": "up"
}
},
@@ -195908,8 +199972,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "13",
- "south": "up",
+ "power": "7",
+ "south": "none",
"west": "side"
}
},
@@ -195918,8 +199982,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "13",
- "south": "up",
+ "power": "7",
+ "south": "none",
"west": "none"
}
},
@@ -195928,8 +199992,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "13",
- "south": "side",
+ "power": "8",
+ "south": "up",
"west": "up"
}
},
@@ -195938,8 +200002,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "13",
- "south": "side",
+ "power": "8",
+ "south": "up",
"west": "side"
}
},
@@ -195948,8 +200012,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "13",
- "south": "side",
+ "power": "8",
+ "south": "up",
"west": "none"
}
},
@@ -195958,8 +200022,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "13",
- "south": "none",
+ "power": "8",
+ "south": "side",
"west": "up"
}
},
@@ -195968,8 +200032,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "13",
- "south": "none",
+ "power": "8",
+ "south": "side",
"west": "side"
}
},
@@ -195978,8 +200042,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "13",
- "south": "none",
+ "power": "8",
+ "south": "side",
"west": "none"
}
},
@@ -195988,8 +200052,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "14",
- "south": "up",
+ "power": "8",
+ "south": "none",
"west": "up"
}
},
@@ -195998,8 +200062,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "14",
- "south": "up",
+ "power": "8",
+ "south": "none",
"west": "side"
}
},
@@ -196008,8 +200072,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "14",
- "south": "up",
+ "power": "8",
+ "south": "none",
"west": "none"
}
},
@@ -196018,8 +200082,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "14",
- "south": "side",
+ "power": "9",
+ "south": "up",
"west": "up"
}
},
@@ -196028,8 +200092,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "14",
- "south": "side",
+ "power": "9",
+ "south": "up",
"west": "side"
}
},
@@ -196038,8 +200102,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "14",
- "south": "side",
+ "power": "9",
+ "south": "up",
"west": "none"
}
},
@@ -196048,8 +200112,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "14",
- "south": "none",
+ "power": "9",
+ "south": "side",
"west": "up"
}
},
@@ -196058,8 +200122,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "14",
- "south": "none",
+ "power": "9",
+ "south": "side",
"west": "side"
}
},
@@ -196068,8 +200132,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "14",
- "south": "none",
+ "power": "9",
+ "south": "side",
"west": "none"
}
},
@@ -196078,8 +200142,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "15",
- "south": "up",
+ "power": "9",
+ "south": "none",
"west": "up"
}
},
@@ -196088,8 +200152,8 @@
"properties": {
"east": "none",
"north": "none",
- "power": "15",
- "south": "up",
+ "power": "9",
+ "south": "none",
"west": "side"
}
},
@@ -196098,13 +200162,493 @@
"properties": {
"east": "none",
"north": "none",
- "power": "15",
- "south": "up",
+ "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",
@@ -196114,7 +200658,7 @@
}
},
{
- "id": 4217,
+ "id": 4265,
"properties": {
"east": "none",
"north": "none",
@@ -196124,7 +200668,7 @@
}
},
{
- "id": 4218,
+ "id": 4266,
"properties": {
"east": "none",
"north": "none",
@@ -196134,7 +200678,7 @@
}
},
{
- "id": 4219,
+ "id": 4267,
"properties": {
"east": "none",
"north": "none",
@@ -196144,7 +200688,7 @@
}
},
{
- "id": 4220,
+ "id": 4268,
"properties": {
"east": "none",
"north": "none",
@@ -196154,7 +200698,7 @@
}
},
{
- "id": 4221,
+ "id": 4269,
"properties": {
"east": "none",
"north": "none",
@@ -196169,7 +200713,7 @@
"states": [
{
"default": true,
- "id": 23231
+ "id": 23716
}
]
},
@@ -196198,7 +200742,7 @@
},
"states": [
{
- "id": 5716,
+ "id": 5878,
"properties": {
"delay": "1",
"facing": "north",
@@ -196207,7 +200751,7 @@
}
},
{
- "id": 5717,
+ "id": 5879,
"properties": {
"delay": "1",
"facing": "north",
@@ -196216,7 +200760,7 @@
}
},
{
- "id": 5718,
+ "id": 5880,
"properties": {
"delay": "1",
"facing": "north",
@@ -196226,7 +200770,7 @@
},
{
"default": true,
- "id": 5719,
+ "id": 5881,
"properties": {
"delay": "1",
"facing": "north",
@@ -196235,7 +200779,7 @@
}
},
{
- "id": 5720,
+ "id": 5882,
"properties": {
"delay": "1",
"facing": "south",
@@ -196244,7 +200788,7 @@
}
},
{
- "id": 5721,
+ "id": 5883,
"properties": {
"delay": "1",
"facing": "south",
@@ -196253,7 +200797,7 @@
}
},
{
- "id": 5722,
+ "id": 5884,
"properties": {
"delay": "1",
"facing": "south",
@@ -196262,7 +200806,7 @@
}
},
{
- "id": 5723,
+ "id": 5885,
"properties": {
"delay": "1",
"facing": "south",
@@ -196271,7 +200815,7 @@
}
},
{
- "id": 5724,
+ "id": 5886,
"properties": {
"delay": "1",
"facing": "west",
@@ -196280,7 +200824,7 @@
}
},
{
- "id": 5725,
+ "id": 5887,
"properties": {
"delay": "1",
"facing": "west",
@@ -196289,7 +200833,7 @@
}
},
{
- "id": 5726,
+ "id": 5888,
"properties": {
"delay": "1",
"facing": "west",
@@ -196298,7 +200842,7 @@
}
},
{
- "id": 5727,
+ "id": 5889,
"properties": {
"delay": "1",
"facing": "west",
@@ -196307,7 +200851,7 @@
}
},
{
- "id": 5728,
+ "id": 5890,
"properties": {
"delay": "1",
"facing": "east",
@@ -196316,7 +200860,7 @@
}
},
{
- "id": 5729,
+ "id": 5891,
"properties": {
"delay": "1",
"facing": "east",
@@ -196325,7 +200869,7 @@
}
},
{
- "id": 5730,
+ "id": 5892,
"properties": {
"delay": "1",
"facing": "east",
@@ -196334,7 +200878,7 @@
}
},
{
- "id": 5731,
+ "id": 5893,
"properties": {
"delay": "1",
"facing": "east",
@@ -196343,7 +200887,7 @@
}
},
{
- "id": 5732,
+ "id": 5894,
"properties": {
"delay": "2",
"facing": "north",
@@ -196352,7 +200896,7 @@
}
},
{
- "id": 5733,
+ "id": 5895,
"properties": {
"delay": "2",
"facing": "north",
@@ -196361,7 +200905,7 @@
}
},
{
- "id": 5734,
+ "id": 5896,
"properties": {
"delay": "2",
"facing": "north",
@@ -196370,7 +200914,7 @@
}
},
{
- "id": 5735,
+ "id": 5897,
"properties": {
"delay": "2",
"facing": "north",
@@ -196379,7 +200923,7 @@
}
},
{
- "id": 5736,
+ "id": 5898,
"properties": {
"delay": "2",
"facing": "south",
@@ -196388,7 +200932,7 @@
}
},
{
- "id": 5737,
+ "id": 5899,
"properties": {
"delay": "2",
"facing": "south",
@@ -196397,7 +200941,7 @@
}
},
{
- "id": 5738,
+ "id": 5900,
"properties": {
"delay": "2",
"facing": "south",
@@ -196406,7 +200950,7 @@
}
},
{
- "id": 5739,
+ "id": 5901,
"properties": {
"delay": "2",
"facing": "south",
@@ -196415,7 +200959,7 @@
}
},
{
- "id": 5740,
+ "id": 5902,
"properties": {
"delay": "2",
"facing": "west",
@@ -196424,7 +200968,7 @@
}
},
{
- "id": 5741,
+ "id": 5903,
"properties": {
"delay": "2",
"facing": "west",
@@ -196433,7 +200977,7 @@
}
},
{
- "id": 5742,
+ "id": 5904,
"properties": {
"delay": "2",
"facing": "west",
@@ -196442,7 +200986,7 @@
}
},
{
- "id": 5743,
+ "id": 5905,
"properties": {
"delay": "2",
"facing": "west",
@@ -196451,7 +200995,7 @@
}
},
{
- "id": 5744,
+ "id": 5906,
"properties": {
"delay": "2",
"facing": "east",
@@ -196460,7 +201004,7 @@
}
},
{
- "id": 5745,
+ "id": 5907,
"properties": {
"delay": "2",
"facing": "east",
@@ -196469,7 +201013,7 @@
}
},
{
- "id": 5746,
+ "id": 5908,
"properties": {
"delay": "2",
"facing": "east",
@@ -196478,7 +201022,7 @@
}
},
{
- "id": 5747,
+ "id": 5909,
"properties": {
"delay": "2",
"facing": "east",
@@ -196487,7 +201031,7 @@
}
},
{
- "id": 5748,
+ "id": 5910,
"properties": {
"delay": "3",
"facing": "north",
@@ -196496,7 +201040,7 @@
}
},
{
- "id": 5749,
+ "id": 5911,
"properties": {
"delay": "3",
"facing": "north",
@@ -196505,7 +201049,7 @@
}
},
{
- "id": 5750,
+ "id": 5912,
"properties": {
"delay": "3",
"facing": "north",
@@ -196514,7 +201058,7 @@
}
},
{
- "id": 5751,
+ "id": 5913,
"properties": {
"delay": "3",
"facing": "north",
@@ -196523,7 +201067,7 @@
}
},
{
- "id": 5752,
+ "id": 5914,
"properties": {
"delay": "3",
"facing": "south",
@@ -196532,7 +201076,7 @@
}
},
{
- "id": 5753,
+ "id": 5915,
"properties": {
"delay": "3",
"facing": "south",
@@ -196541,7 +201085,7 @@
}
},
{
- "id": 5754,
+ "id": 5916,
"properties": {
"delay": "3",
"facing": "south",
@@ -196550,7 +201094,7 @@
}
},
{
- "id": 5755,
+ "id": 5917,
"properties": {
"delay": "3",
"facing": "south",
@@ -196559,7 +201103,7 @@
}
},
{
- "id": 5756,
+ "id": 5918,
"properties": {
"delay": "3",
"facing": "west",
@@ -196568,7 +201112,7 @@
}
},
{
- "id": 5757,
+ "id": 5919,
"properties": {
"delay": "3",
"facing": "west",
@@ -196577,7 +201121,7 @@
}
},
{
- "id": 5758,
+ "id": 5920,
"properties": {
"delay": "3",
"facing": "west",
@@ -196586,7 +201130,7 @@
}
},
{
- "id": 5759,
+ "id": 5921,
"properties": {
"delay": "3",
"facing": "west",
@@ -196595,7 +201139,7 @@
}
},
{
- "id": 5760,
+ "id": 5922,
"properties": {
"delay": "3",
"facing": "east",
@@ -196604,7 +201148,7 @@
}
},
{
- "id": 5761,
+ "id": 5923,
"properties": {
"delay": "3",
"facing": "east",
@@ -196613,7 +201157,7 @@
}
},
{
- "id": 5762,
+ "id": 5924,
"properties": {
"delay": "3",
"facing": "east",
@@ -196622,7 +201166,7 @@
}
},
{
- "id": 5763,
+ "id": 5925,
"properties": {
"delay": "3",
"facing": "east",
@@ -196631,7 +201175,7 @@
}
},
{
- "id": 5764,
+ "id": 5926,
"properties": {
"delay": "4",
"facing": "north",
@@ -196640,7 +201184,7 @@
}
},
{
- "id": 5765,
+ "id": 5927,
"properties": {
"delay": "4",
"facing": "north",
@@ -196649,7 +201193,7 @@
}
},
{
- "id": 5766,
+ "id": 5928,
"properties": {
"delay": "4",
"facing": "north",
@@ -196658,7 +201202,7 @@
}
},
{
- "id": 5767,
+ "id": 5929,
"properties": {
"delay": "4",
"facing": "north",
@@ -196667,7 +201211,7 @@
}
},
{
- "id": 5768,
+ "id": 5930,
"properties": {
"delay": "4",
"facing": "south",
@@ -196676,7 +201220,7 @@
}
},
{
- "id": 5769,
+ "id": 5931,
"properties": {
"delay": "4",
"facing": "south",
@@ -196685,7 +201229,7 @@
}
},
{
- "id": 5770,
+ "id": 5932,
"properties": {
"delay": "4",
"facing": "south",
@@ -196694,7 +201238,7 @@
}
},
{
- "id": 5771,
+ "id": 5933,
"properties": {
"delay": "4",
"facing": "south",
@@ -196703,7 +201247,7 @@
}
},
{
- "id": 5772,
+ "id": 5934,
"properties": {
"delay": "4",
"facing": "west",
@@ -196712,7 +201256,7 @@
}
},
{
- "id": 5773,
+ "id": 5935,
"properties": {
"delay": "4",
"facing": "west",
@@ -196721,7 +201265,7 @@
}
},
{
- "id": 5774,
+ "id": 5936,
"properties": {
"delay": "4",
"facing": "west",
@@ -196730,7 +201274,7 @@
}
},
{
- "id": 5775,
+ "id": 5937,
"properties": {
"delay": "4",
"facing": "west",
@@ -196739,7 +201283,7 @@
}
},
{
- "id": 5776,
+ "id": 5938,
"properties": {
"delay": "4",
"facing": "east",
@@ -196748,7 +201292,7 @@
}
},
{
- "id": 5777,
+ "id": 5939,
"properties": {
"delay": "4",
"facing": "east",
@@ -196757,7 +201301,7 @@
}
},
{
- "id": 5778,
+ "id": 5940,
"properties": {
"delay": "4",
"facing": "east",
@@ -196766,7 +201310,7 @@
}
},
{
- "id": 5779,
+ "id": 5941,
"properties": {
"delay": "4",
"facing": "east",
@@ -196793,42 +201337,42 @@
},
"states": [
{
- "id": 11890,
+ "id": 12359,
"properties": {
"conditional": "true",
"facing": "north"
}
},
{
- "id": 11891,
+ "id": 12360,
"properties": {
"conditional": "true",
"facing": "east"
}
},
{
- "id": 11892,
+ "id": 12361,
"properties": {
"conditional": "true",
"facing": "south"
}
},
{
- "id": 11893,
+ "id": 12362,
"properties": {
"conditional": "true",
"facing": "west"
}
},
{
- "id": 11894,
+ "id": 12363,
"properties": {
"conditional": "true",
"facing": "up"
}
},
{
- "id": 11895,
+ "id": 12364,
"properties": {
"conditional": "true",
"facing": "down"
@@ -196836,42 +201380,42 @@
},
{
"default": true,
- "id": 11896,
+ "id": 12365,
"properties": {
"conditional": "false",
"facing": "north"
}
},
{
- "id": 11897,
+ "id": 12366,
"properties": {
"conditional": "false",
"facing": "east"
}
},
{
- "id": 11898,
+ "id": 12367,
"properties": {
"conditional": "false",
"facing": "south"
}
},
{
- "id": 11899,
+ "id": 12368,
"properties": {
"conditional": "false",
"facing": "west"
}
},
{
- "id": 11900,
+ "id": 12369,
"properties": {
"conditional": "false",
"facing": "up"
}
},
{
- "id": 11901,
+ "id": 12370,
"properties": {
"conditional": "false",
"facing": "down"
@@ -196892,31 +201436,31 @@
"states": [
{
"default": true,
- "id": 18822,
+ "id": 19291,
"properties": {
"charges": "0"
}
},
{
- "id": 18823,
+ "id": 19292,
"properties": {
"charges": "1"
}
},
{
- "id": 18824,
+ "id": 19293,
"properties": {
"charges": "2"
}
},
{
- "id": 18825,
+ "id": 19294,
"properties": {
"charges": "3"
}
},
{
- "id": 18826,
+ "id": 19295,
"properties": {
"charges": "4"
}
@@ -196927,7 +201471,7 @@
"states": [
{
"default": true,
- "id": 21560
+ "id": 22045
}
]
},
@@ -196940,14 +201484,14 @@
},
"states": [
{
- "id": 10274,
+ "id": 10606,
"properties": {
"half": "upper"
}
},
{
"default": true,
- "id": 10275,
+ "id": 10607,
"properties": {
"half": "lower"
}
@@ -196958,7 +201502,7 @@
"states": [
{
"default": true,
- "id": 109
+ "id": 112
}
]
},
@@ -196966,7 +201510,7 @@
"states": [
{
"default": true,
- "id": 484
+ "id": 531
}
]
},
@@ -196984,21 +201528,21 @@
},
"states": [
{
- "id": 10751,
+ "id": 11089,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 10752,
+ "id": 11090,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 10753,
+ "id": 11091,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -197006,21 +201550,21 @@
},
{
"default": true,
- "id": 10754,
+ "id": 11092,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 10755,
+ "id": 11093,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 10756,
+ "id": 11094,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -197054,7 +201598,7 @@
},
"states": [
{
- "id": 7201,
+ "id": 7427,
"properties": {
"facing": "north",
"half": "top",
@@ -197063,7 +201607,7 @@
}
},
{
- "id": 7202,
+ "id": 7428,
"properties": {
"facing": "north",
"half": "top",
@@ -197072,7 +201616,7 @@
}
},
{
- "id": 7203,
+ "id": 7429,
"properties": {
"facing": "north",
"half": "top",
@@ -197081,7 +201625,7 @@
}
},
{
- "id": 7204,
+ "id": 7430,
"properties": {
"facing": "north",
"half": "top",
@@ -197090,7 +201634,7 @@
}
},
{
- "id": 7205,
+ "id": 7431,
"properties": {
"facing": "north",
"half": "top",
@@ -197099,7 +201643,7 @@
}
},
{
- "id": 7206,
+ "id": 7432,
"properties": {
"facing": "north",
"half": "top",
@@ -197108,7 +201652,7 @@
}
},
{
- "id": 7207,
+ "id": 7433,
"properties": {
"facing": "north",
"half": "top",
@@ -197117,7 +201661,7 @@
}
},
{
- "id": 7208,
+ "id": 7434,
"properties": {
"facing": "north",
"half": "top",
@@ -197126,7 +201670,7 @@
}
},
{
- "id": 7209,
+ "id": 7435,
"properties": {
"facing": "north",
"half": "top",
@@ -197135,7 +201679,7 @@
}
},
{
- "id": 7210,
+ "id": 7436,
"properties": {
"facing": "north",
"half": "top",
@@ -197144,7 +201688,7 @@
}
},
{
- "id": 7211,
+ "id": 7437,
"properties": {
"facing": "north",
"half": "bottom",
@@ -197154,7 +201698,7 @@
},
{
"default": true,
- "id": 7212,
+ "id": 7438,
"properties": {
"facing": "north",
"half": "bottom",
@@ -197163,7 +201707,7 @@
}
},
{
- "id": 7213,
+ "id": 7439,
"properties": {
"facing": "north",
"half": "bottom",
@@ -197172,7 +201716,7 @@
}
},
{
- "id": 7214,
+ "id": 7440,
"properties": {
"facing": "north",
"half": "bottom",
@@ -197181,7 +201725,7 @@
}
},
{
- "id": 7215,
+ "id": 7441,
"properties": {
"facing": "north",
"half": "bottom",
@@ -197190,7 +201734,7 @@
}
},
{
- "id": 7216,
+ "id": 7442,
"properties": {
"facing": "north",
"half": "bottom",
@@ -197199,7 +201743,7 @@
}
},
{
- "id": 7217,
+ "id": 7443,
"properties": {
"facing": "north",
"half": "bottom",
@@ -197208,7 +201752,7 @@
}
},
{
- "id": 7218,
+ "id": 7444,
"properties": {
"facing": "north",
"half": "bottom",
@@ -197217,7 +201761,7 @@
}
},
{
- "id": 7219,
+ "id": 7445,
"properties": {
"facing": "north",
"half": "bottom",
@@ -197226,7 +201770,7 @@
}
},
{
- "id": 7220,
+ "id": 7446,
"properties": {
"facing": "north",
"half": "bottom",
@@ -197235,7 +201779,7 @@
}
},
{
- "id": 7221,
+ "id": 7447,
"properties": {
"facing": "south",
"half": "top",
@@ -197244,7 +201788,7 @@
}
},
{
- "id": 7222,
+ "id": 7448,
"properties": {
"facing": "south",
"half": "top",
@@ -197253,7 +201797,7 @@
}
},
{
- "id": 7223,
+ "id": 7449,
"properties": {
"facing": "south",
"half": "top",
@@ -197262,7 +201806,7 @@
}
},
{
- "id": 7224,
+ "id": 7450,
"properties": {
"facing": "south",
"half": "top",
@@ -197271,7 +201815,7 @@
}
},
{
- "id": 7225,
+ "id": 7451,
"properties": {
"facing": "south",
"half": "top",
@@ -197280,7 +201824,7 @@
}
},
{
- "id": 7226,
+ "id": 7452,
"properties": {
"facing": "south",
"half": "top",
@@ -197289,7 +201833,7 @@
}
},
{
- "id": 7227,
+ "id": 7453,
"properties": {
"facing": "south",
"half": "top",
@@ -197298,7 +201842,7 @@
}
},
{
- "id": 7228,
+ "id": 7454,
"properties": {
"facing": "south",
"half": "top",
@@ -197307,7 +201851,7 @@
}
},
{
- "id": 7229,
+ "id": 7455,
"properties": {
"facing": "south",
"half": "top",
@@ -197316,7 +201860,7 @@
}
},
{
- "id": 7230,
+ "id": 7456,
"properties": {
"facing": "south",
"half": "top",
@@ -197325,7 +201869,7 @@
}
},
{
- "id": 7231,
+ "id": 7457,
"properties": {
"facing": "south",
"half": "bottom",
@@ -197334,7 +201878,7 @@
}
},
{
- "id": 7232,
+ "id": 7458,
"properties": {
"facing": "south",
"half": "bottom",
@@ -197343,7 +201887,7 @@
}
},
{
- "id": 7233,
+ "id": 7459,
"properties": {
"facing": "south",
"half": "bottom",
@@ -197352,7 +201896,7 @@
}
},
{
- "id": 7234,
+ "id": 7460,
"properties": {
"facing": "south",
"half": "bottom",
@@ -197361,7 +201905,7 @@
}
},
{
- "id": 7235,
+ "id": 7461,
"properties": {
"facing": "south",
"half": "bottom",
@@ -197370,7 +201914,7 @@
}
},
{
- "id": 7236,
+ "id": 7462,
"properties": {
"facing": "south",
"half": "bottom",
@@ -197379,7 +201923,7 @@
}
},
{
- "id": 7237,
+ "id": 7463,
"properties": {
"facing": "south",
"half": "bottom",
@@ -197388,7 +201932,7 @@
}
},
{
- "id": 7238,
+ "id": 7464,
"properties": {
"facing": "south",
"half": "bottom",
@@ -197397,7 +201941,7 @@
}
},
{
- "id": 7239,
+ "id": 7465,
"properties": {
"facing": "south",
"half": "bottom",
@@ -197406,7 +201950,7 @@
}
},
{
- "id": 7240,
+ "id": 7466,
"properties": {
"facing": "south",
"half": "bottom",
@@ -197415,7 +201959,7 @@
}
},
{
- "id": 7241,
+ "id": 7467,
"properties": {
"facing": "west",
"half": "top",
@@ -197424,7 +201968,7 @@
}
},
{
- "id": 7242,
+ "id": 7468,
"properties": {
"facing": "west",
"half": "top",
@@ -197433,7 +201977,7 @@
}
},
{
- "id": 7243,
+ "id": 7469,
"properties": {
"facing": "west",
"half": "top",
@@ -197442,7 +201986,7 @@
}
},
{
- "id": 7244,
+ "id": 7470,
"properties": {
"facing": "west",
"half": "top",
@@ -197451,7 +201995,7 @@
}
},
{
- "id": 7245,
+ "id": 7471,
"properties": {
"facing": "west",
"half": "top",
@@ -197460,7 +202004,7 @@
}
},
{
- "id": 7246,
+ "id": 7472,
"properties": {
"facing": "west",
"half": "top",
@@ -197469,7 +202013,7 @@
}
},
{
- "id": 7247,
+ "id": 7473,
"properties": {
"facing": "west",
"half": "top",
@@ -197478,7 +202022,7 @@
}
},
{
- "id": 7248,
+ "id": 7474,
"properties": {
"facing": "west",
"half": "top",
@@ -197487,7 +202031,7 @@
}
},
{
- "id": 7249,
+ "id": 7475,
"properties": {
"facing": "west",
"half": "top",
@@ -197496,7 +202040,7 @@
}
},
{
- "id": 7250,
+ "id": 7476,
"properties": {
"facing": "west",
"half": "top",
@@ -197505,7 +202049,7 @@
}
},
{
- "id": 7251,
+ "id": 7477,
"properties": {
"facing": "west",
"half": "bottom",
@@ -197514,7 +202058,7 @@
}
},
{
- "id": 7252,
+ "id": 7478,
"properties": {
"facing": "west",
"half": "bottom",
@@ -197523,7 +202067,7 @@
}
},
{
- "id": 7253,
+ "id": 7479,
"properties": {
"facing": "west",
"half": "bottom",
@@ -197532,7 +202076,7 @@
}
},
{
- "id": 7254,
+ "id": 7480,
"properties": {
"facing": "west",
"half": "bottom",
@@ -197541,7 +202085,7 @@
}
},
{
- "id": 7255,
+ "id": 7481,
"properties": {
"facing": "west",
"half": "bottom",
@@ -197550,7 +202094,7 @@
}
},
{
- "id": 7256,
+ "id": 7482,
"properties": {
"facing": "west",
"half": "bottom",
@@ -197559,7 +202103,7 @@
}
},
{
- "id": 7257,
+ "id": 7483,
"properties": {
"facing": "west",
"half": "bottom",
@@ -197568,7 +202112,7 @@
}
},
{
- "id": 7258,
+ "id": 7484,
"properties": {
"facing": "west",
"half": "bottom",
@@ -197577,7 +202121,7 @@
}
},
{
- "id": 7259,
+ "id": 7485,
"properties": {
"facing": "west",
"half": "bottom",
@@ -197586,7 +202130,7 @@
}
},
{
- "id": 7260,
+ "id": 7486,
"properties": {
"facing": "west",
"half": "bottom",
@@ -197595,7 +202139,7 @@
}
},
{
- "id": 7261,
+ "id": 7487,
"properties": {
"facing": "east",
"half": "top",
@@ -197604,7 +202148,7 @@
}
},
{
- "id": 7262,
+ "id": 7488,
"properties": {
"facing": "east",
"half": "top",
@@ -197613,7 +202157,7 @@
}
},
{
- "id": 7263,
+ "id": 7489,
"properties": {
"facing": "east",
"half": "top",
@@ -197622,7 +202166,7 @@
}
},
{
- "id": 7264,
+ "id": 7490,
"properties": {
"facing": "east",
"half": "top",
@@ -197631,7 +202175,7 @@
}
},
{
- "id": 7265,
+ "id": 7491,
"properties": {
"facing": "east",
"half": "top",
@@ -197640,7 +202184,7 @@
}
},
{
- "id": 7266,
+ "id": 7492,
"properties": {
"facing": "east",
"half": "top",
@@ -197649,7 +202193,7 @@
}
},
{
- "id": 7267,
+ "id": 7493,
"properties": {
"facing": "east",
"half": "top",
@@ -197658,7 +202202,7 @@
}
},
{
- "id": 7268,
+ "id": 7494,
"properties": {
"facing": "east",
"half": "top",
@@ -197667,7 +202211,7 @@
}
},
{
- "id": 7269,
+ "id": 7495,
"properties": {
"facing": "east",
"half": "top",
@@ -197676,7 +202220,7 @@
}
},
{
- "id": 7270,
+ "id": 7496,
"properties": {
"facing": "east",
"half": "top",
@@ -197685,7 +202229,7 @@
}
},
{
- "id": 7271,
+ "id": 7497,
"properties": {
"facing": "east",
"half": "bottom",
@@ -197694,7 +202238,7 @@
}
},
{
- "id": 7272,
+ "id": 7498,
"properties": {
"facing": "east",
"half": "bottom",
@@ -197703,7 +202247,7 @@
}
},
{
- "id": 7273,
+ "id": 7499,
"properties": {
"facing": "east",
"half": "bottom",
@@ -197712,7 +202256,7 @@
}
},
{
- "id": 7274,
+ "id": 7500,
"properties": {
"facing": "east",
"half": "bottom",
@@ -197721,7 +202265,7 @@
}
},
{
- "id": 7275,
+ "id": 7501,
"properties": {
"facing": "east",
"half": "bottom",
@@ -197730,7 +202274,7 @@
}
},
{
- "id": 7276,
+ "id": 7502,
"properties": {
"facing": "east",
"half": "bottom",
@@ -197739,7 +202283,7 @@
}
},
{
- "id": 7277,
+ "id": 7503,
"properties": {
"facing": "east",
"half": "bottom",
@@ -197748,7 +202292,7 @@
}
},
{
- "id": 7278,
+ "id": 7504,
"properties": {
"facing": "east",
"half": "bottom",
@@ -197757,7 +202301,7 @@
}
},
{
- "id": 7279,
+ "id": 7505,
"properties": {
"facing": "east",
"half": "bottom",
@@ -197766,7 +202310,7 @@
}
},
{
- "id": 7280,
+ "id": 7506,
"properties": {
"facing": "east",
"half": "bottom",
@@ -197809,7 +202353,7 @@
},
"states": [
{
- "id": 16772,
+ "id": 17241,
"properties": {
"east": "none",
"north": "none",
@@ -197820,7 +202364,7 @@
}
},
{
- "id": 16773,
+ "id": 17242,
"properties": {
"east": "none",
"north": "none",
@@ -197831,7 +202375,7 @@
}
},
{
- "id": 16774,
+ "id": 17243,
"properties": {
"east": "none",
"north": "none",
@@ -197843,7 +202387,7 @@
},
{
"default": true,
- "id": 16775,
+ "id": 17244,
"properties": {
"east": "none",
"north": "none",
@@ -197854,7 +202398,7 @@
}
},
{
- "id": 16776,
+ "id": 17245,
"properties": {
"east": "none",
"north": "none",
@@ -197865,7 +202409,7 @@
}
},
{
- "id": 16777,
+ "id": 17246,
"properties": {
"east": "none",
"north": "none",
@@ -197876,7 +202420,7 @@
}
},
{
- "id": 16778,
+ "id": 17247,
"properties": {
"east": "none",
"north": "none",
@@ -197887,7 +202431,7 @@
}
},
{
- "id": 16779,
+ "id": 17248,
"properties": {
"east": "none",
"north": "none",
@@ -197898,7 +202442,7 @@
}
},
{
- "id": 16780,
+ "id": 17249,
"properties": {
"east": "none",
"north": "none",
@@ -197909,7 +202453,7 @@
}
},
{
- "id": 16781,
+ "id": 17250,
"properties": {
"east": "none",
"north": "none",
@@ -197920,7 +202464,7 @@
}
},
{
- "id": 16782,
+ "id": 17251,
"properties": {
"east": "none",
"north": "none",
@@ -197931,7 +202475,7 @@
}
},
{
- "id": 16783,
+ "id": 17252,
"properties": {
"east": "none",
"north": "none",
@@ -197942,7 +202486,7 @@
}
},
{
- "id": 16784,
+ "id": 17253,
"properties": {
"east": "none",
"north": "none",
@@ -197953,7 +202497,7 @@
}
},
{
- "id": 16785,
+ "id": 17254,
"properties": {
"east": "none",
"north": "none",
@@ -197964,7 +202508,7 @@
}
},
{
- "id": 16786,
+ "id": 17255,
"properties": {
"east": "none",
"north": "none",
@@ -197975,7 +202519,7 @@
}
},
{
- "id": 16787,
+ "id": 17256,
"properties": {
"east": "none",
"north": "none",
@@ -197986,7 +202530,7 @@
}
},
{
- "id": 16788,
+ "id": 17257,
"properties": {
"east": "none",
"north": "none",
@@ -197997,7 +202541,7 @@
}
},
{
- "id": 16789,
+ "id": 17258,
"properties": {
"east": "none",
"north": "none",
@@ -198008,7 +202552,7 @@
}
},
{
- "id": 16790,
+ "id": 17259,
"properties": {
"east": "none",
"north": "none",
@@ -198019,7 +202563,7 @@
}
},
{
- "id": 16791,
+ "id": 17260,
"properties": {
"east": "none",
"north": "none",
@@ -198030,7 +202574,7 @@
}
},
{
- "id": 16792,
+ "id": 17261,
"properties": {
"east": "none",
"north": "none",
@@ -198041,7 +202585,7 @@
}
},
{
- "id": 16793,
+ "id": 17262,
"properties": {
"east": "none",
"north": "none",
@@ -198052,7 +202596,7 @@
}
},
{
- "id": 16794,
+ "id": 17263,
"properties": {
"east": "none",
"north": "none",
@@ -198063,7 +202607,7 @@
}
},
{
- "id": 16795,
+ "id": 17264,
"properties": {
"east": "none",
"north": "none",
@@ -198074,7 +202618,7 @@
}
},
{
- "id": 16796,
+ "id": 17265,
"properties": {
"east": "none",
"north": "none",
@@ -198085,7 +202629,7 @@
}
},
{
- "id": 16797,
+ "id": 17266,
"properties": {
"east": "none",
"north": "none",
@@ -198096,7 +202640,7 @@
}
},
{
- "id": 16798,
+ "id": 17267,
"properties": {
"east": "none",
"north": "none",
@@ -198107,7 +202651,7 @@
}
},
{
- "id": 16799,
+ "id": 17268,
"properties": {
"east": "none",
"north": "none",
@@ -198118,7 +202662,7 @@
}
},
{
- "id": 16800,
+ "id": 17269,
"properties": {
"east": "none",
"north": "none",
@@ -198129,7 +202673,7 @@
}
},
{
- "id": 16801,
+ "id": 17270,
"properties": {
"east": "none",
"north": "none",
@@ -198140,7 +202684,7 @@
}
},
{
- "id": 16802,
+ "id": 17271,
"properties": {
"east": "none",
"north": "none",
@@ -198151,7 +202695,7 @@
}
},
{
- "id": 16803,
+ "id": 17272,
"properties": {
"east": "none",
"north": "none",
@@ -198162,7 +202706,7 @@
}
},
{
- "id": 16804,
+ "id": 17273,
"properties": {
"east": "none",
"north": "none",
@@ -198173,7 +202717,7 @@
}
},
{
- "id": 16805,
+ "id": 17274,
"properties": {
"east": "none",
"north": "none",
@@ -198184,7 +202728,7 @@
}
},
{
- "id": 16806,
+ "id": 17275,
"properties": {
"east": "none",
"north": "none",
@@ -198195,7 +202739,7 @@
}
},
{
- "id": 16807,
+ "id": 17276,
"properties": {
"east": "none",
"north": "none",
@@ -198206,7 +202750,7 @@
}
},
{
- "id": 16808,
+ "id": 17277,
"properties": {
"east": "none",
"north": "low",
@@ -198217,7 +202761,7 @@
}
},
{
- "id": 16809,
+ "id": 17278,
"properties": {
"east": "none",
"north": "low",
@@ -198228,7 +202772,7 @@
}
},
{
- "id": 16810,
+ "id": 17279,
"properties": {
"east": "none",
"north": "low",
@@ -198239,7 +202783,7 @@
}
},
{
- "id": 16811,
+ "id": 17280,
"properties": {
"east": "none",
"north": "low",
@@ -198250,7 +202794,7 @@
}
},
{
- "id": 16812,
+ "id": 17281,
"properties": {
"east": "none",
"north": "low",
@@ -198261,7 +202805,7 @@
}
},
{
- "id": 16813,
+ "id": 17282,
"properties": {
"east": "none",
"north": "low",
@@ -198272,7 +202816,7 @@
}
},
{
- "id": 16814,
+ "id": 17283,
"properties": {
"east": "none",
"north": "low",
@@ -198283,7 +202827,7 @@
}
},
{
- "id": 16815,
+ "id": 17284,
"properties": {
"east": "none",
"north": "low",
@@ -198294,7 +202838,7 @@
}
},
{
- "id": 16816,
+ "id": 17285,
"properties": {
"east": "none",
"north": "low",
@@ -198305,7 +202849,7 @@
}
},
{
- "id": 16817,
+ "id": 17286,
"properties": {
"east": "none",
"north": "low",
@@ -198316,7 +202860,7 @@
}
},
{
- "id": 16818,
+ "id": 17287,
"properties": {
"east": "none",
"north": "low",
@@ -198327,7 +202871,7 @@
}
},
{
- "id": 16819,
+ "id": 17288,
"properties": {
"east": "none",
"north": "low",
@@ -198338,7 +202882,7 @@
}
},
{
- "id": 16820,
+ "id": 17289,
"properties": {
"east": "none",
"north": "low",
@@ -198349,7 +202893,7 @@
}
},
{
- "id": 16821,
+ "id": 17290,
"properties": {
"east": "none",
"north": "low",
@@ -198360,7 +202904,7 @@
}
},
{
- "id": 16822,
+ "id": 17291,
"properties": {
"east": "none",
"north": "low",
@@ -198371,7 +202915,7 @@
}
},
{
- "id": 16823,
+ "id": 17292,
"properties": {
"east": "none",
"north": "low",
@@ -198382,7 +202926,7 @@
}
},
{
- "id": 16824,
+ "id": 17293,
"properties": {
"east": "none",
"north": "low",
@@ -198393,7 +202937,7 @@
}
},
{
- "id": 16825,
+ "id": 17294,
"properties": {
"east": "none",
"north": "low",
@@ -198404,7 +202948,7 @@
}
},
{
- "id": 16826,
+ "id": 17295,
"properties": {
"east": "none",
"north": "low",
@@ -198415,7 +202959,7 @@
}
},
{
- "id": 16827,
+ "id": 17296,
"properties": {
"east": "none",
"north": "low",
@@ -198426,7 +202970,7 @@
}
},
{
- "id": 16828,
+ "id": 17297,
"properties": {
"east": "none",
"north": "low",
@@ -198437,7 +202981,7 @@
}
},
{
- "id": 16829,
+ "id": 17298,
"properties": {
"east": "none",
"north": "low",
@@ -198448,7 +202992,7 @@
}
},
{
- "id": 16830,
+ "id": 17299,
"properties": {
"east": "none",
"north": "low",
@@ -198459,7 +203003,7 @@
}
},
{
- "id": 16831,
+ "id": 17300,
"properties": {
"east": "none",
"north": "low",
@@ -198470,7 +203014,7 @@
}
},
{
- "id": 16832,
+ "id": 17301,
"properties": {
"east": "none",
"north": "low",
@@ -198481,7 +203025,7 @@
}
},
{
- "id": 16833,
+ "id": 17302,
"properties": {
"east": "none",
"north": "low",
@@ -198492,7 +203036,7 @@
}
},
{
- "id": 16834,
+ "id": 17303,
"properties": {
"east": "none",
"north": "low",
@@ -198503,7 +203047,7 @@
}
},
{
- "id": 16835,
+ "id": 17304,
"properties": {
"east": "none",
"north": "low",
@@ -198514,7 +203058,7 @@
}
},
{
- "id": 16836,
+ "id": 17305,
"properties": {
"east": "none",
"north": "low",
@@ -198525,7 +203069,7 @@
}
},
{
- "id": 16837,
+ "id": 17306,
"properties": {
"east": "none",
"north": "low",
@@ -198536,7 +203080,7 @@
}
},
{
- "id": 16838,
+ "id": 17307,
"properties": {
"east": "none",
"north": "low",
@@ -198547,7 +203091,7 @@
}
},
{
- "id": 16839,
+ "id": 17308,
"properties": {
"east": "none",
"north": "low",
@@ -198558,7 +203102,7 @@
}
},
{
- "id": 16840,
+ "id": 17309,
"properties": {
"east": "none",
"north": "low",
@@ -198569,7 +203113,7 @@
}
},
{
- "id": 16841,
+ "id": 17310,
"properties": {
"east": "none",
"north": "low",
@@ -198580,7 +203124,7 @@
}
},
{
- "id": 16842,
+ "id": 17311,
"properties": {
"east": "none",
"north": "low",
@@ -198591,7 +203135,7 @@
}
},
{
- "id": 16843,
+ "id": 17312,
"properties": {
"east": "none",
"north": "low",
@@ -198602,7 +203146,7 @@
}
},
{
- "id": 16844,
+ "id": 17313,
"properties": {
"east": "none",
"north": "tall",
@@ -198613,7 +203157,7 @@
}
},
{
- "id": 16845,
+ "id": 17314,
"properties": {
"east": "none",
"north": "tall",
@@ -198624,7 +203168,7 @@
}
},
{
- "id": 16846,
+ "id": 17315,
"properties": {
"east": "none",
"north": "tall",
@@ -198635,7 +203179,7 @@
}
},
{
- "id": 16847,
+ "id": 17316,
"properties": {
"east": "none",
"north": "tall",
@@ -198646,7 +203190,7 @@
}
},
{
- "id": 16848,
+ "id": 17317,
"properties": {
"east": "none",
"north": "tall",
@@ -198657,7 +203201,7 @@
}
},
{
- "id": 16849,
+ "id": 17318,
"properties": {
"east": "none",
"north": "tall",
@@ -198668,7 +203212,7 @@
}
},
{
- "id": 16850,
+ "id": 17319,
"properties": {
"east": "none",
"north": "tall",
@@ -198679,7 +203223,7 @@
}
},
{
- "id": 16851,
+ "id": 17320,
"properties": {
"east": "none",
"north": "tall",
@@ -198690,7 +203234,7 @@
}
},
{
- "id": 16852,
+ "id": 17321,
"properties": {
"east": "none",
"north": "tall",
@@ -198701,7 +203245,7 @@
}
},
{
- "id": 16853,
+ "id": 17322,
"properties": {
"east": "none",
"north": "tall",
@@ -198712,7 +203256,7 @@
}
},
{
- "id": 16854,
+ "id": 17323,
"properties": {
"east": "none",
"north": "tall",
@@ -198723,7 +203267,7 @@
}
},
{
- "id": 16855,
+ "id": 17324,
"properties": {
"east": "none",
"north": "tall",
@@ -198734,7 +203278,7 @@
}
},
{
- "id": 16856,
+ "id": 17325,
"properties": {
"east": "none",
"north": "tall",
@@ -198745,7 +203289,7 @@
}
},
{
- "id": 16857,
+ "id": 17326,
"properties": {
"east": "none",
"north": "tall",
@@ -198756,7 +203300,7 @@
}
},
{
- "id": 16858,
+ "id": 17327,
"properties": {
"east": "none",
"north": "tall",
@@ -198767,7 +203311,7 @@
}
},
{
- "id": 16859,
+ "id": 17328,
"properties": {
"east": "none",
"north": "tall",
@@ -198778,7 +203322,7 @@
}
},
{
- "id": 16860,
+ "id": 17329,
"properties": {
"east": "none",
"north": "tall",
@@ -198789,7 +203333,7 @@
}
},
{
- "id": 16861,
+ "id": 17330,
"properties": {
"east": "none",
"north": "tall",
@@ -198800,7 +203344,7 @@
}
},
{
- "id": 16862,
+ "id": 17331,
"properties": {
"east": "none",
"north": "tall",
@@ -198811,7 +203355,7 @@
}
},
{
- "id": 16863,
+ "id": 17332,
"properties": {
"east": "none",
"north": "tall",
@@ -198822,7 +203366,7 @@
}
},
{
- "id": 16864,
+ "id": 17333,
"properties": {
"east": "none",
"north": "tall",
@@ -198833,7 +203377,7 @@
}
},
{
- "id": 16865,
+ "id": 17334,
"properties": {
"east": "none",
"north": "tall",
@@ -198844,7 +203388,7 @@
}
},
{
- "id": 16866,
+ "id": 17335,
"properties": {
"east": "none",
"north": "tall",
@@ -198855,7 +203399,7 @@
}
},
{
- "id": 16867,
+ "id": 17336,
"properties": {
"east": "none",
"north": "tall",
@@ -198866,7 +203410,7 @@
}
},
{
- "id": 16868,
+ "id": 17337,
"properties": {
"east": "none",
"north": "tall",
@@ -198877,7 +203421,7 @@
}
},
{
- "id": 16869,
+ "id": 17338,
"properties": {
"east": "none",
"north": "tall",
@@ -198888,7 +203432,7 @@
}
},
{
- "id": 16870,
+ "id": 17339,
"properties": {
"east": "none",
"north": "tall",
@@ -198899,7 +203443,7 @@
}
},
{
- "id": 16871,
+ "id": 17340,
"properties": {
"east": "none",
"north": "tall",
@@ -198910,7 +203454,7 @@
}
},
{
- "id": 16872,
+ "id": 17341,
"properties": {
"east": "none",
"north": "tall",
@@ -198921,7 +203465,7 @@
}
},
{
- "id": 16873,
+ "id": 17342,
"properties": {
"east": "none",
"north": "tall",
@@ -198932,7 +203476,7 @@
}
},
{
- "id": 16874,
+ "id": 17343,
"properties": {
"east": "none",
"north": "tall",
@@ -198943,7 +203487,7 @@
}
},
{
- "id": 16875,
+ "id": 17344,
"properties": {
"east": "none",
"north": "tall",
@@ -198954,7 +203498,7 @@
}
},
{
- "id": 16876,
+ "id": 17345,
"properties": {
"east": "none",
"north": "tall",
@@ -198965,7 +203509,7 @@
}
},
{
- "id": 16877,
+ "id": 17346,
"properties": {
"east": "none",
"north": "tall",
@@ -198976,7 +203520,7 @@
}
},
{
- "id": 16878,
+ "id": 17347,
"properties": {
"east": "none",
"north": "tall",
@@ -198987,7 +203531,7 @@
}
},
{
- "id": 16879,
+ "id": 17348,
"properties": {
"east": "none",
"north": "tall",
@@ -198998,7 +203542,7 @@
}
},
{
- "id": 16880,
+ "id": 17349,
"properties": {
"east": "low",
"north": "none",
@@ -199009,7 +203553,7 @@
}
},
{
- "id": 16881,
+ "id": 17350,
"properties": {
"east": "low",
"north": "none",
@@ -199020,7 +203564,7 @@
}
},
{
- "id": 16882,
+ "id": 17351,
"properties": {
"east": "low",
"north": "none",
@@ -199031,7 +203575,7 @@
}
},
{
- "id": 16883,
+ "id": 17352,
"properties": {
"east": "low",
"north": "none",
@@ -199042,7 +203586,7 @@
}
},
{
- "id": 16884,
+ "id": 17353,
"properties": {
"east": "low",
"north": "none",
@@ -199053,7 +203597,7 @@
}
},
{
- "id": 16885,
+ "id": 17354,
"properties": {
"east": "low",
"north": "none",
@@ -199064,7 +203608,7 @@
}
},
{
- "id": 16886,
+ "id": 17355,
"properties": {
"east": "low",
"north": "none",
@@ -199075,7 +203619,7 @@
}
},
{
- "id": 16887,
+ "id": 17356,
"properties": {
"east": "low",
"north": "none",
@@ -199086,7 +203630,7 @@
}
},
{
- "id": 16888,
+ "id": 17357,
"properties": {
"east": "low",
"north": "none",
@@ -199097,7 +203641,7 @@
}
},
{
- "id": 16889,
+ "id": 17358,
"properties": {
"east": "low",
"north": "none",
@@ -199108,7 +203652,7 @@
}
},
{
- "id": 16890,
+ "id": 17359,
"properties": {
"east": "low",
"north": "none",
@@ -199119,7 +203663,7 @@
}
},
{
- "id": 16891,
+ "id": 17360,
"properties": {
"east": "low",
"north": "none",
@@ -199130,7 +203674,7 @@
}
},
{
- "id": 16892,
+ "id": 17361,
"properties": {
"east": "low",
"north": "none",
@@ -199141,7 +203685,7 @@
}
},
{
- "id": 16893,
+ "id": 17362,
"properties": {
"east": "low",
"north": "none",
@@ -199152,7 +203696,7 @@
}
},
{
- "id": 16894,
+ "id": 17363,
"properties": {
"east": "low",
"north": "none",
@@ -199163,7 +203707,7 @@
}
},
{
- "id": 16895,
+ "id": 17364,
"properties": {
"east": "low",
"north": "none",
@@ -199174,7 +203718,7 @@
}
},
{
- "id": 16896,
+ "id": 17365,
"properties": {
"east": "low",
"north": "none",
@@ -199185,7 +203729,7 @@
}
},
{
- "id": 16897,
+ "id": 17366,
"properties": {
"east": "low",
"north": "none",
@@ -199196,7 +203740,7 @@
}
},
{
- "id": 16898,
+ "id": 17367,
"properties": {
"east": "low",
"north": "none",
@@ -199207,7 +203751,7 @@
}
},
{
- "id": 16899,
+ "id": 17368,
"properties": {
"east": "low",
"north": "none",
@@ -199218,7 +203762,7 @@
}
},
{
- "id": 16900,
+ "id": 17369,
"properties": {
"east": "low",
"north": "none",
@@ -199229,7 +203773,7 @@
}
},
{
- "id": 16901,
+ "id": 17370,
"properties": {
"east": "low",
"north": "none",
@@ -199240,7 +203784,7 @@
}
},
{
- "id": 16902,
+ "id": 17371,
"properties": {
"east": "low",
"north": "none",
@@ -199251,7 +203795,7 @@
}
},
{
- "id": 16903,
+ "id": 17372,
"properties": {
"east": "low",
"north": "none",
@@ -199262,7 +203806,7 @@
}
},
{
- "id": 16904,
+ "id": 17373,
"properties": {
"east": "low",
"north": "none",
@@ -199273,7 +203817,7 @@
}
},
{
- "id": 16905,
+ "id": 17374,
"properties": {
"east": "low",
"north": "none",
@@ -199284,7 +203828,7 @@
}
},
{
- "id": 16906,
+ "id": 17375,
"properties": {
"east": "low",
"north": "none",
@@ -199295,7 +203839,7 @@
}
},
{
- "id": 16907,
+ "id": 17376,
"properties": {
"east": "low",
"north": "none",
@@ -199306,7 +203850,7 @@
}
},
{
- "id": 16908,
+ "id": 17377,
"properties": {
"east": "low",
"north": "none",
@@ -199317,7 +203861,7 @@
}
},
{
- "id": 16909,
+ "id": 17378,
"properties": {
"east": "low",
"north": "none",
@@ -199328,7 +203872,7 @@
}
},
{
- "id": 16910,
+ "id": 17379,
"properties": {
"east": "low",
"north": "none",
@@ -199339,7 +203883,7 @@
}
},
{
- "id": 16911,
+ "id": 17380,
"properties": {
"east": "low",
"north": "none",
@@ -199350,7 +203894,7 @@
}
},
{
- "id": 16912,
+ "id": 17381,
"properties": {
"east": "low",
"north": "none",
@@ -199361,7 +203905,7 @@
}
},
{
- "id": 16913,
+ "id": 17382,
"properties": {
"east": "low",
"north": "none",
@@ -199372,7 +203916,7 @@
}
},
{
- "id": 16914,
+ "id": 17383,
"properties": {
"east": "low",
"north": "none",
@@ -199383,7 +203927,7 @@
}
},
{
- "id": 16915,
+ "id": 17384,
"properties": {
"east": "low",
"north": "none",
@@ -199394,7 +203938,7 @@
}
},
{
- "id": 16916,
+ "id": 17385,
"properties": {
"east": "low",
"north": "low",
@@ -199405,7 +203949,7 @@
}
},
{
- "id": 16917,
+ "id": 17386,
"properties": {
"east": "low",
"north": "low",
@@ -199416,7 +203960,7 @@
}
},
{
- "id": 16918,
+ "id": 17387,
"properties": {
"east": "low",
"north": "low",
@@ -199427,7 +203971,7 @@
}
},
{
- "id": 16919,
+ "id": 17388,
"properties": {
"east": "low",
"north": "low",
@@ -199438,7 +203982,7 @@
}
},
{
- "id": 16920,
+ "id": 17389,
"properties": {
"east": "low",
"north": "low",
@@ -199449,7 +203993,7 @@
}
},
{
- "id": 16921,
+ "id": 17390,
"properties": {
"east": "low",
"north": "low",
@@ -199460,7 +204004,7 @@
}
},
{
- "id": 16922,
+ "id": 17391,
"properties": {
"east": "low",
"north": "low",
@@ -199471,7 +204015,7 @@
}
},
{
- "id": 16923,
+ "id": 17392,
"properties": {
"east": "low",
"north": "low",
@@ -199482,7 +204026,7 @@
}
},
{
- "id": 16924,
+ "id": 17393,
"properties": {
"east": "low",
"north": "low",
@@ -199493,7 +204037,7 @@
}
},
{
- "id": 16925,
+ "id": 17394,
"properties": {
"east": "low",
"north": "low",
@@ -199504,7 +204048,7 @@
}
},
{
- "id": 16926,
+ "id": 17395,
"properties": {
"east": "low",
"north": "low",
@@ -199515,7 +204059,7 @@
}
},
{
- "id": 16927,
+ "id": 17396,
"properties": {
"east": "low",
"north": "low",
@@ -199526,7 +204070,7 @@
}
},
{
- "id": 16928,
+ "id": 17397,
"properties": {
"east": "low",
"north": "low",
@@ -199537,7 +204081,7 @@
}
},
{
- "id": 16929,
+ "id": 17398,
"properties": {
"east": "low",
"north": "low",
@@ -199548,7 +204092,7 @@
}
},
{
- "id": 16930,
+ "id": 17399,
"properties": {
"east": "low",
"north": "low",
@@ -199559,7 +204103,7 @@
}
},
{
- "id": 16931,
+ "id": 17400,
"properties": {
"east": "low",
"north": "low",
@@ -199570,7 +204114,7 @@
}
},
{
- "id": 16932,
+ "id": 17401,
"properties": {
"east": "low",
"north": "low",
@@ -199581,7 +204125,7 @@
}
},
{
- "id": 16933,
+ "id": 17402,
"properties": {
"east": "low",
"north": "low",
@@ -199592,7 +204136,7 @@
}
},
{
- "id": 16934,
+ "id": 17403,
"properties": {
"east": "low",
"north": "low",
@@ -199603,7 +204147,7 @@
}
},
{
- "id": 16935,
+ "id": 17404,
"properties": {
"east": "low",
"north": "low",
@@ -199614,7 +204158,7 @@
}
},
{
- "id": 16936,
+ "id": 17405,
"properties": {
"east": "low",
"north": "low",
@@ -199625,7 +204169,7 @@
}
},
{
- "id": 16937,
+ "id": 17406,
"properties": {
"east": "low",
"north": "low",
@@ -199636,7 +204180,7 @@
}
},
{
- "id": 16938,
+ "id": 17407,
"properties": {
"east": "low",
"north": "low",
@@ -199647,7 +204191,7 @@
}
},
{
- "id": 16939,
+ "id": 17408,
"properties": {
"east": "low",
"north": "low",
@@ -199658,7 +204202,7 @@
}
},
{
- "id": 16940,
+ "id": 17409,
"properties": {
"east": "low",
"north": "low",
@@ -199669,7 +204213,7 @@
}
},
{
- "id": 16941,
+ "id": 17410,
"properties": {
"east": "low",
"north": "low",
@@ -199680,7 +204224,7 @@
}
},
{
- "id": 16942,
+ "id": 17411,
"properties": {
"east": "low",
"north": "low",
@@ -199691,7 +204235,7 @@
}
},
{
- "id": 16943,
+ "id": 17412,
"properties": {
"east": "low",
"north": "low",
@@ -199702,7 +204246,7 @@
}
},
{
- "id": 16944,
+ "id": 17413,
"properties": {
"east": "low",
"north": "low",
@@ -199713,7 +204257,7 @@
}
},
{
- "id": 16945,
+ "id": 17414,
"properties": {
"east": "low",
"north": "low",
@@ -199724,7 +204268,7 @@
}
},
{
- "id": 16946,
+ "id": 17415,
"properties": {
"east": "low",
"north": "low",
@@ -199735,7 +204279,7 @@
}
},
{
- "id": 16947,
+ "id": 17416,
"properties": {
"east": "low",
"north": "low",
@@ -199746,7 +204290,7 @@
}
},
{
- "id": 16948,
+ "id": 17417,
"properties": {
"east": "low",
"north": "low",
@@ -199757,7 +204301,7 @@
}
},
{
- "id": 16949,
+ "id": 17418,
"properties": {
"east": "low",
"north": "low",
@@ -199768,7 +204312,7 @@
}
},
{
- "id": 16950,
+ "id": 17419,
"properties": {
"east": "low",
"north": "low",
@@ -199779,7 +204323,7 @@
}
},
{
- "id": 16951,
+ "id": 17420,
"properties": {
"east": "low",
"north": "low",
@@ -199790,7 +204334,7 @@
}
},
{
- "id": 16952,
+ "id": 17421,
"properties": {
"east": "low",
"north": "tall",
@@ -199801,7 +204345,7 @@
}
},
{
- "id": 16953,
+ "id": 17422,
"properties": {
"east": "low",
"north": "tall",
@@ -199812,7 +204356,7 @@
}
},
{
- "id": 16954,
+ "id": 17423,
"properties": {
"east": "low",
"north": "tall",
@@ -199823,7 +204367,7 @@
}
},
{
- "id": 16955,
+ "id": 17424,
"properties": {
"east": "low",
"north": "tall",
@@ -199834,7 +204378,7 @@
}
},
{
- "id": 16956,
+ "id": 17425,
"properties": {
"east": "low",
"north": "tall",
@@ -199845,7 +204389,7 @@
}
},
{
- "id": 16957,
+ "id": 17426,
"properties": {
"east": "low",
"north": "tall",
@@ -199856,7 +204400,7 @@
}
},
{
- "id": 16958,
+ "id": 17427,
"properties": {
"east": "low",
"north": "tall",
@@ -199867,7 +204411,7 @@
}
},
{
- "id": 16959,
+ "id": 17428,
"properties": {
"east": "low",
"north": "tall",
@@ -199878,7 +204422,7 @@
}
},
{
- "id": 16960,
+ "id": 17429,
"properties": {
"east": "low",
"north": "tall",
@@ -199889,7 +204433,7 @@
}
},
{
- "id": 16961,
+ "id": 17430,
"properties": {
"east": "low",
"north": "tall",
@@ -199900,7 +204444,7 @@
}
},
{
- "id": 16962,
+ "id": 17431,
"properties": {
"east": "low",
"north": "tall",
@@ -199911,7 +204455,7 @@
}
},
{
- "id": 16963,
+ "id": 17432,
"properties": {
"east": "low",
"north": "tall",
@@ -199922,7 +204466,7 @@
}
},
{
- "id": 16964,
+ "id": 17433,
"properties": {
"east": "low",
"north": "tall",
@@ -199933,7 +204477,7 @@
}
},
{
- "id": 16965,
+ "id": 17434,
"properties": {
"east": "low",
"north": "tall",
@@ -199944,7 +204488,7 @@
}
},
{
- "id": 16966,
+ "id": 17435,
"properties": {
"east": "low",
"north": "tall",
@@ -199955,7 +204499,7 @@
}
},
{
- "id": 16967,
+ "id": 17436,
"properties": {
"east": "low",
"north": "tall",
@@ -199966,7 +204510,7 @@
}
},
{
- "id": 16968,
+ "id": 17437,
"properties": {
"east": "low",
"north": "tall",
@@ -199977,7 +204521,7 @@
}
},
{
- "id": 16969,
+ "id": 17438,
"properties": {
"east": "low",
"north": "tall",
@@ -199988,7 +204532,7 @@
}
},
{
- "id": 16970,
+ "id": 17439,
"properties": {
"east": "low",
"north": "tall",
@@ -199999,7 +204543,7 @@
}
},
{
- "id": 16971,
+ "id": 17440,
"properties": {
"east": "low",
"north": "tall",
@@ -200010,7 +204554,7 @@
}
},
{
- "id": 16972,
+ "id": 17441,
"properties": {
"east": "low",
"north": "tall",
@@ -200021,7 +204565,7 @@
}
},
{
- "id": 16973,
+ "id": 17442,
"properties": {
"east": "low",
"north": "tall",
@@ -200032,7 +204576,7 @@
}
},
{
- "id": 16974,
+ "id": 17443,
"properties": {
"east": "low",
"north": "tall",
@@ -200043,7 +204587,7 @@
}
},
{
- "id": 16975,
+ "id": 17444,
"properties": {
"east": "low",
"north": "tall",
@@ -200054,7 +204598,7 @@
}
},
{
- "id": 16976,
+ "id": 17445,
"properties": {
"east": "low",
"north": "tall",
@@ -200065,7 +204609,7 @@
}
},
{
- "id": 16977,
+ "id": 17446,
"properties": {
"east": "low",
"north": "tall",
@@ -200076,7 +204620,7 @@
}
},
{
- "id": 16978,
+ "id": 17447,
"properties": {
"east": "low",
"north": "tall",
@@ -200087,7 +204631,7 @@
}
},
{
- "id": 16979,
+ "id": 17448,
"properties": {
"east": "low",
"north": "tall",
@@ -200098,7 +204642,7 @@
}
},
{
- "id": 16980,
+ "id": 17449,
"properties": {
"east": "low",
"north": "tall",
@@ -200109,7 +204653,7 @@
}
},
{
- "id": 16981,
+ "id": 17450,
"properties": {
"east": "low",
"north": "tall",
@@ -200120,7 +204664,7 @@
}
},
{
- "id": 16982,
+ "id": 17451,
"properties": {
"east": "low",
"north": "tall",
@@ -200131,7 +204675,7 @@
}
},
{
- "id": 16983,
+ "id": 17452,
"properties": {
"east": "low",
"north": "tall",
@@ -200142,7 +204686,7 @@
}
},
{
- "id": 16984,
+ "id": 17453,
"properties": {
"east": "low",
"north": "tall",
@@ -200153,7 +204697,7 @@
}
},
{
- "id": 16985,
+ "id": 17454,
"properties": {
"east": "low",
"north": "tall",
@@ -200164,7 +204708,7 @@
}
},
{
- "id": 16986,
+ "id": 17455,
"properties": {
"east": "low",
"north": "tall",
@@ -200175,7 +204719,7 @@
}
},
{
- "id": 16987,
+ "id": 17456,
"properties": {
"east": "low",
"north": "tall",
@@ -200186,7 +204730,7 @@
}
},
{
- "id": 16988,
+ "id": 17457,
"properties": {
"east": "tall",
"north": "none",
@@ -200197,7 +204741,7 @@
}
},
{
- "id": 16989,
+ "id": 17458,
"properties": {
"east": "tall",
"north": "none",
@@ -200208,7 +204752,7 @@
}
},
{
- "id": 16990,
+ "id": 17459,
"properties": {
"east": "tall",
"north": "none",
@@ -200219,7 +204763,7 @@
}
},
{
- "id": 16991,
+ "id": 17460,
"properties": {
"east": "tall",
"north": "none",
@@ -200230,7 +204774,7 @@
}
},
{
- "id": 16992,
+ "id": 17461,
"properties": {
"east": "tall",
"north": "none",
@@ -200241,7 +204785,7 @@
}
},
{
- "id": 16993,
+ "id": 17462,
"properties": {
"east": "tall",
"north": "none",
@@ -200252,7 +204796,7 @@
}
},
{
- "id": 16994,
+ "id": 17463,
"properties": {
"east": "tall",
"north": "none",
@@ -200263,7 +204807,7 @@
}
},
{
- "id": 16995,
+ "id": 17464,
"properties": {
"east": "tall",
"north": "none",
@@ -200274,7 +204818,7 @@
}
},
{
- "id": 16996,
+ "id": 17465,
"properties": {
"east": "tall",
"north": "none",
@@ -200285,7 +204829,7 @@
}
},
{
- "id": 16997,
+ "id": 17466,
"properties": {
"east": "tall",
"north": "none",
@@ -200296,7 +204840,7 @@
}
},
{
- "id": 16998,
+ "id": 17467,
"properties": {
"east": "tall",
"north": "none",
@@ -200307,7 +204851,7 @@
}
},
{
- "id": 16999,
+ "id": 17468,
"properties": {
"east": "tall",
"north": "none",
@@ -200318,7 +204862,7 @@
}
},
{
- "id": 17000,
+ "id": 17469,
"properties": {
"east": "tall",
"north": "none",
@@ -200329,7 +204873,7 @@
}
},
{
- "id": 17001,
+ "id": 17470,
"properties": {
"east": "tall",
"north": "none",
@@ -200340,7 +204884,7 @@
}
},
{
- "id": 17002,
+ "id": 17471,
"properties": {
"east": "tall",
"north": "none",
@@ -200351,7 +204895,7 @@
}
},
{
- "id": 17003,
+ "id": 17472,
"properties": {
"east": "tall",
"north": "none",
@@ -200362,7 +204906,7 @@
}
},
{
- "id": 17004,
+ "id": 17473,
"properties": {
"east": "tall",
"north": "none",
@@ -200373,7 +204917,7 @@
}
},
{
- "id": 17005,
+ "id": 17474,
"properties": {
"east": "tall",
"north": "none",
@@ -200384,7 +204928,7 @@
}
},
{
- "id": 17006,
+ "id": 17475,
"properties": {
"east": "tall",
"north": "none",
@@ -200395,7 +204939,7 @@
}
},
{
- "id": 17007,
+ "id": 17476,
"properties": {
"east": "tall",
"north": "none",
@@ -200406,7 +204950,7 @@
}
},
{
- "id": 17008,
+ "id": 17477,
"properties": {
"east": "tall",
"north": "none",
@@ -200417,7 +204961,7 @@
}
},
{
- "id": 17009,
+ "id": 17478,
"properties": {
"east": "tall",
"north": "none",
@@ -200428,7 +204972,7 @@
}
},
{
- "id": 17010,
+ "id": 17479,
"properties": {
"east": "tall",
"north": "none",
@@ -200439,7 +204983,7 @@
}
},
{
- "id": 17011,
+ "id": 17480,
"properties": {
"east": "tall",
"north": "none",
@@ -200450,7 +204994,7 @@
}
},
{
- "id": 17012,
+ "id": 17481,
"properties": {
"east": "tall",
"north": "none",
@@ -200461,7 +205005,7 @@
}
},
{
- "id": 17013,
+ "id": 17482,
"properties": {
"east": "tall",
"north": "none",
@@ -200472,7 +205016,7 @@
}
},
{
- "id": 17014,
+ "id": 17483,
"properties": {
"east": "tall",
"north": "none",
@@ -200483,7 +205027,7 @@
}
},
{
- "id": 17015,
+ "id": 17484,
"properties": {
"east": "tall",
"north": "none",
@@ -200494,7 +205038,7 @@
}
},
{
- "id": 17016,
+ "id": 17485,
"properties": {
"east": "tall",
"north": "none",
@@ -200505,7 +205049,7 @@
}
},
{
- "id": 17017,
+ "id": 17486,
"properties": {
"east": "tall",
"north": "none",
@@ -200516,7 +205060,7 @@
}
},
{
- "id": 17018,
+ "id": 17487,
"properties": {
"east": "tall",
"north": "none",
@@ -200527,7 +205071,7 @@
}
},
{
- "id": 17019,
+ "id": 17488,
"properties": {
"east": "tall",
"north": "none",
@@ -200538,7 +205082,7 @@
}
},
{
- "id": 17020,
+ "id": 17489,
"properties": {
"east": "tall",
"north": "none",
@@ -200549,7 +205093,7 @@
}
},
{
- "id": 17021,
+ "id": 17490,
"properties": {
"east": "tall",
"north": "none",
@@ -200560,7 +205104,7 @@
}
},
{
- "id": 17022,
+ "id": 17491,
"properties": {
"east": "tall",
"north": "none",
@@ -200571,7 +205115,7 @@
}
},
{
- "id": 17023,
+ "id": 17492,
"properties": {
"east": "tall",
"north": "none",
@@ -200582,7 +205126,7 @@
}
},
{
- "id": 17024,
+ "id": 17493,
"properties": {
"east": "tall",
"north": "low",
@@ -200593,7 +205137,7 @@
}
},
{
- "id": 17025,
+ "id": 17494,
"properties": {
"east": "tall",
"north": "low",
@@ -200604,7 +205148,7 @@
}
},
{
- "id": 17026,
+ "id": 17495,
"properties": {
"east": "tall",
"north": "low",
@@ -200615,7 +205159,7 @@
}
},
{
- "id": 17027,
+ "id": 17496,
"properties": {
"east": "tall",
"north": "low",
@@ -200626,7 +205170,7 @@
}
},
{
- "id": 17028,
+ "id": 17497,
"properties": {
"east": "tall",
"north": "low",
@@ -200637,7 +205181,7 @@
}
},
{
- "id": 17029,
+ "id": 17498,
"properties": {
"east": "tall",
"north": "low",
@@ -200648,7 +205192,7 @@
}
},
{
- "id": 17030,
+ "id": 17499,
"properties": {
"east": "tall",
"north": "low",
@@ -200659,7 +205203,7 @@
}
},
{
- "id": 17031,
+ "id": 17500,
"properties": {
"east": "tall",
"north": "low",
@@ -200670,7 +205214,7 @@
}
},
{
- "id": 17032,
+ "id": 17501,
"properties": {
"east": "tall",
"north": "low",
@@ -200681,7 +205225,7 @@
}
},
{
- "id": 17033,
+ "id": 17502,
"properties": {
"east": "tall",
"north": "low",
@@ -200692,7 +205236,7 @@
}
},
{
- "id": 17034,
+ "id": 17503,
"properties": {
"east": "tall",
"north": "low",
@@ -200703,7 +205247,7 @@
}
},
{
- "id": 17035,
+ "id": 17504,
"properties": {
"east": "tall",
"north": "low",
@@ -200714,7 +205258,7 @@
}
},
{
- "id": 17036,
+ "id": 17505,
"properties": {
"east": "tall",
"north": "low",
@@ -200725,7 +205269,7 @@
}
},
{
- "id": 17037,
+ "id": 17506,
"properties": {
"east": "tall",
"north": "low",
@@ -200736,7 +205280,7 @@
}
},
{
- "id": 17038,
+ "id": 17507,
"properties": {
"east": "tall",
"north": "low",
@@ -200747,7 +205291,7 @@
}
},
{
- "id": 17039,
+ "id": 17508,
"properties": {
"east": "tall",
"north": "low",
@@ -200758,7 +205302,7 @@
}
},
{
- "id": 17040,
+ "id": 17509,
"properties": {
"east": "tall",
"north": "low",
@@ -200769,7 +205313,7 @@
}
},
{
- "id": 17041,
+ "id": 17510,
"properties": {
"east": "tall",
"north": "low",
@@ -200780,7 +205324,7 @@
}
},
{
- "id": 17042,
+ "id": 17511,
"properties": {
"east": "tall",
"north": "low",
@@ -200791,7 +205335,7 @@
}
},
{
- "id": 17043,
+ "id": 17512,
"properties": {
"east": "tall",
"north": "low",
@@ -200802,7 +205346,7 @@
}
},
{
- "id": 17044,
+ "id": 17513,
"properties": {
"east": "tall",
"north": "low",
@@ -200813,7 +205357,7 @@
}
},
{
- "id": 17045,
+ "id": 17514,
"properties": {
"east": "tall",
"north": "low",
@@ -200824,7 +205368,7 @@
}
},
{
- "id": 17046,
+ "id": 17515,
"properties": {
"east": "tall",
"north": "low",
@@ -200835,7 +205379,7 @@
}
},
{
- "id": 17047,
+ "id": 17516,
"properties": {
"east": "tall",
"north": "low",
@@ -200846,7 +205390,7 @@
}
},
{
- "id": 17048,
+ "id": 17517,
"properties": {
"east": "tall",
"north": "low",
@@ -200857,7 +205401,7 @@
}
},
{
- "id": 17049,
+ "id": 17518,
"properties": {
"east": "tall",
"north": "low",
@@ -200868,7 +205412,7 @@
}
},
{
- "id": 17050,
+ "id": 17519,
"properties": {
"east": "tall",
"north": "low",
@@ -200879,7 +205423,7 @@
}
},
{
- "id": 17051,
+ "id": 17520,
"properties": {
"east": "tall",
"north": "low",
@@ -200890,7 +205434,7 @@
}
},
{
- "id": 17052,
+ "id": 17521,
"properties": {
"east": "tall",
"north": "low",
@@ -200901,7 +205445,7 @@
}
},
{
- "id": 17053,
+ "id": 17522,
"properties": {
"east": "tall",
"north": "low",
@@ -200912,7 +205456,7 @@
}
},
{
- "id": 17054,
+ "id": 17523,
"properties": {
"east": "tall",
"north": "low",
@@ -200923,7 +205467,7 @@
}
},
{
- "id": 17055,
+ "id": 17524,
"properties": {
"east": "tall",
"north": "low",
@@ -200934,7 +205478,7 @@
}
},
{
- "id": 17056,
+ "id": 17525,
"properties": {
"east": "tall",
"north": "low",
@@ -200945,7 +205489,7 @@
}
},
{
- "id": 17057,
+ "id": 17526,
"properties": {
"east": "tall",
"north": "low",
@@ -200956,7 +205500,7 @@
}
},
{
- "id": 17058,
+ "id": 17527,
"properties": {
"east": "tall",
"north": "low",
@@ -200967,7 +205511,7 @@
}
},
{
- "id": 17059,
+ "id": 17528,
"properties": {
"east": "tall",
"north": "low",
@@ -200978,7 +205522,7 @@
}
},
{
- "id": 17060,
+ "id": 17529,
"properties": {
"east": "tall",
"north": "tall",
@@ -200989,7 +205533,7 @@
}
},
{
- "id": 17061,
+ "id": 17530,
"properties": {
"east": "tall",
"north": "tall",
@@ -201000,7 +205544,7 @@
}
},
{
- "id": 17062,
+ "id": 17531,
"properties": {
"east": "tall",
"north": "tall",
@@ -201011,7 +205555,7 @@
}
},
{
- "id": 17063,
+ "id": 17532,
"properties": {
"east": "tall",
"north": "tall",
@@ -201022,7 +205566,7 @@
}
},
{
- "id": 17064,
+ "id": 17533,
"properties": {
"east": "tall",
"north": "tall",
@@ -201033,7 +205577,7 @@
}
},
{
- "id": 17065,
+ "id": 17534,
"properties": {
"east": "tall",
"north": "tall",
@@ -201044,7 +205588,7 @@
}
},
{
- "id": 17066,
+ "id": 17535,
"properties": {
"east": "tall",
"north": "tall",
@@ -201055,7 +205599,7 @@
}
},
{
- "id": 17067,
+ "id": 17536,
"properties": {
"east": "tall",
"north": "tall",
@@ -201066,7 +205610,7 @@
}
},
{
- "id": 17068,
+ "id": 17537,
"properties": {
"east": "tall",
"north": "tall",
@@ -201077,7 +205621,7 @@
}
},
{
- "id": 17069,
+ "id": 17538,
"properties": {
"east": "tall",
"north": "tall",
@@ -201088,7 +205632,7 @@
}
},
{
- "id": 17070,
+ "id": 17539,
"properties": {
"east": "tall",
"north": "tall",
@@ -201099,7 +205643,7 @@
}
},
{
- "id": 17071,
+ "id": 17540,
"properties": {
"east": "tall",
"north": "tall",
@@ -201110,7 +205654,7 @@
}
},
{
- "id": 17072,
+ "id": 17541,
"properties": {
"east": "tall",
"north": "tall",
@@ -201121,7 +205665,7 @@
}
},
{
- "id": 17073,
+ "id": 17542,
"properties": {
"east": "tall",
"north": "tall",
@@ -201132,7 +205676,7 @@
}
},
{
- "id": 17074,
+ "id": 17543,
"properties": {
"east": "tall",
"north": "tall",
@@ -201143,7 +205687,7 @@
}
},
{
- "id": 17075,
+ "id": 17544,
"properties": {
"east": "tall",
"north": "tall",
@@ -201154,7 +205698,7 @@
}
},
{
- "id": 17076,
+ "id": 17545,
"properties": {
"east": "tall",
"north": "tall",
@@ -201165,7 +205709,7 @@
}
},
{
- "id": 17077,
+ "id": 17546,
"properties": {
"east": "tall",
"north": "tall",
@@ -201176,7 +205720,7 @@
}
},
{
- "id": 17078,
+ "id": 17547,
"properties": {
"east": "tall",
"north": "tall",
@@ -201187,7 +205731,7 @@
}
},
{
- "id": 17079,
+ "id": 17548,
"properties": {
"east": "tall",
"north": "tall",
@@ -201198,7 +205742,7 @@
}
},
{
- "id": 17080,
+ "id": 17549,
"properties": {
"east": "tall",
"north": "tall",
@@ -201209,7 +205753,7 @@
}
},
{
- "id": 17081,
+ "id": 17550,
"properties": {
"east": "tall",
"north": "tall",
@@ -201220,7 +205764,7 @@
}
},
{
- "id": 17082,
+ "id": 17551,
"properties": {
"east": "tall",
"north": "tall",
@@ -201231,7 +205775,7 @@
}
},
{
- "id": 17083,
+ "id": 17552,
"properties": {
"east": "tall",
"north": "tall",
@@ -201242,7 +205786,7 @@
}
},
{
- "id": 17084,
+ "id": 17553,
"properties": {
"east": "tall",
"north": "tall",
@@ -201253,7 +205797,7 @@
}
},
{
- "id": 17085,
+ "id": 17554,
"properties": {
"east": "tall",
"north": "tall",
@@ -201264,7 +205808,7 @@
}
},
{
- "id": 17086,
+ "id": 17555,
"properties": {
"east": "tall",
"north": "tall",
@@ -201275,7 +205819,7 @@
}
},
{
- "id": 17087,
+ "id": 17556,
"properties": {
"east": "tall",
"north": "tall",
@@ -201286,7 +205830,7 @@
}
},
{
- "id": 17088,
+ "id": 17557,
"properties": {
"east": "tall",
"north": "tall",
@@ -201297,7 +205841,7 @@
}
},
{
- "id": 17089,
+ "id": 17558,
"properties": {
"east": "tall",
"north": "tall",
@@ -201308,7 +205852,7 @@
}
},
{
- "id": 17090,
+ "id": 17559,
"properties": {
"east": "tall",
"north": "tall",
@@ -201319,7 +205863,7 @@
}
},
{
- "id": 17091,
+ "id": 17560,
"properties": {
"east": "tall",
"north": "tall",
@@ -201330,7 +205874,7 @@
}
},
{
- "id": 17092,
+ "id": 17561,
"properties": {
"east": "tall",
"north": "tall",
@@ -201341,7 +205885,7 @@
}
},
{
- "id": 17093,
+ "id": 17562,
"properties": {
"east": "tall",
"north": "tall",
@@ -201352,7 +205896,7 @@
}
},
{
- "id": 17094,
+ "id": 17563,
"properties": {
"east": "tall",
"north": "tall",
@@ -201363,7 +205907,7 @@
}
},
{
- "id": 17095,
+ "id": 17564,
"properties": {
"east": "tall",
"north": "tall",
@@ -201398,7 +205942,7 @@
},
"states": [
{
- "id": 17744,
+ "id": 18213,
"properties": {
"bottom": "true",
"distance": "0",
@@ -201406,7 +205950,7 @@
}
},
{
- "id": 17745,
+ "id": 18214,
"properties": {
"bottom": "true",
"distance": "0",
@@ -201414,7 +205958,7 @@
}
},
{
- "id": 17746,
+ "id": 18215,
"properties": {
"bottom": "true",
"distance": "1",
@@ -201422,7 +205966,7 @@
}
},
{
- "id": 17747,
+ "id": 18216,
"properties": {
"bottom": "true",
"distance": "1",
@@ -201430,7 +205974,7 @@
}
},
{
- "id": 17748,
+ "id": 18217,
"properties": {
"bottom": "true",
"distance": "2",
@@ -201438,7 +205982,7 @@
}
},
{
- "id": 17749,
+ "id": 18218,
"properties": {
"bottom": "true",
"distance": "2",
@@ -201446,7 +205990,7 @@
}
},
{
- "id": 17750,
+ "id": 18219,
"properties": {
"bottom": "true",
"distance": "3",
@@ -201454,7 +205998,7 @@
}
},
{
- "id": 17751,
+ "id": 18220,
"properties": {
"bottom": "true",
"distance": "3",
@@ -201462,7 +206006,7 @@
}
},
{
- "id": 17752,
+ "id": 18221,
"properties": {
"bottom": "true",
"distance": "4",
@@ -201470,7 +206014,7 @@
}
},
{
- "id": 17753,
+ "id": 18222,
"properties": {
"bottom": "true",
"distance": "4",
@@ -201478,7 +206022,7 @@
}
},
{
- "id": 17754,
+ "id": 18223,
"properties": {
"bottom": "true",
"distance": "5",
@@ -201486,7 +206030,7 @@
}
},
{
- "id": 17755,
+ "id": 18224,
"properties": {
"bottom": "true",
"distance": "5",
@@ -201494,7 +206038,7 @@
}
},
{
- "id": 17756,
+ "id": 18225,
"properties": {
"bottom": "true",
"distance": "6",
@@ -201502,7 +206046,7 @@
}
},
{
- "id": 17757,
+ "id": 18226,
"properties": {
"bottom": "true",
"distance": "6",
@@ -201510,7 +206054,7 @@
}
},
{
- "id": 17758,
+ "id": 18227,
"properties": {
"bottom": "true",
"distance": "7",
@@ -201518,7 +206062,7 @@
}
},
{
- "id": 17759,
+ "id": 18228,
"properties": {
"bottom": "true",
"distance": "7",
@@ -201526,7 +206070,7 @@
}
},
{
- "id": 17760,
+ "id": 18229,
"properties": {
"bottom": "false",
"distance": "0",
@@ -201534,7 +206078,7 @@
}
},
{
- "id": 17761,
+ "id": 18230,
"properties": {
"bottom": "false",
"distance": "0",
@@ -201542,7 +206086,7 @@
}
},
{
- "id": 17762,
+ "id": 18231,
"properties": {
"bottom": "false",
"distance": "1",
@@ -201550,7 +206094,7 @@
}
},
{
- "id": 17763,
+ "id": 18232,
"properties": {
"bottom": "false",
"distance": "1",
@@ -201558,7 +206102,7 @@
}
},
{
- "id": 17764,
+ "id": 18233,
"properties": {
"bottom": "false",
"distance": "2",
@@ -201566,7 +206110,7 @@
}
},
{
- "id": 17765,
+ "id": 18234,
"properties": {
"bottom": "false",
"distance": "2",
@@ -201574,7 +206118,7 @@
}
},
{
- "id": 17766,
+ "id": 18235,
"properties": {
"bottom": "false",
"distance": "3",
@@ -201582,7 +206126,7 @@
}
},
{
- "id": 17767,
+ "id": 18236,
"properties": {
"bottom": "false",
"distance": "3",
@@ -201590,7 +206134,7 @@
}
},
{
- "id": 17768,
+ "id": 18237,
"properties": {
"bottom": "false",
"distance": "4",
@@ -201598,7 +206142,7 @@
}
},
{
- "id": 17769,
+ "id": 18238,
"properties": {
"bottom": "false",
"distance": "4",
@@ -201606,7 +206150,7 @@
}
},
{
- "id": 17770,
+ "id": 18239,
"properties": {
"bottom": "false",
"distance": "5",
@@ -201614,7 +206158,7 @@
}
},
{
- "id": 17771,
+ "id": 18240,
"properties": {
"bottom": "false",
"distance": "5",
@@ -201622,7 +206166,7 @@
}
},
{
- "id": 17772,
+ "id": 18241,
"properties": {
"bottom": "false",
"distance": "6",
@@ -201630,7 +206174,7 @@
}
},
{
- "id": 17773,
+ "id": 18242,
"properties": {
"bottom": "false",
"distance": "6",
@@ -201638,7 +206182,7 @@
}
},
{
- "id": 17774,
+ "id": 18243,
"properties": {
"bottom": "false",
"distance": "7",
@@ -201647,7 +206191,7 @@
},
{
"default": true,
- "id": 17775,
+ "id": 18244,
"properties": {
"bottom": "false",
"distance": "7",
@@ -201660,7 +206204,7 @@
"states": [
{
"default": true,
- "id": 20553
+ "id": 21022
}
]
},
@@ -201673,14 +206217,14 @@
},
"states": [
{
- "id": 20682,
+ "id": 21151,
"properties": {
"bloom": "true"
}
},
{
"default": true,
- "id": 20683,
+ "id": 21152,
"properties": {
"bloom": "false"
}
@@ -201719,7 +206263,7 @@
},
"states": [
{
- "id": 20457,
+ "id": 20926,
"properties": {
"power": "0",
"sculk_sensor_phase": "inactive",
@@ -201728,7 +206272,7 @@
},
{
"default": true,
- "id": 20458,
+ "id": 20927,
"properties": {
"power": "0",
"sculk_sensor_phase": "inactive",
@@ -201736,7 +206280,7 @@
}
},
{
- "id": 20459,
+ "id": 20928,
"properties": {
"power": "0",
"sculk_sensor_phase": "active",
@@ -201744,7 +206288,7 @@
}
},
{
- "id": 20460,
+ "id": 20929,
"properties": {
"power": "0",
"sculk_sensor_phase": "active",
@@ -201752,7 +206296,7 @@
}
},
{
- "id": 20461,
+ "id": 20930,
"properties": {
"power": "0",
"sculk_sensor_phase": "cooldown",
@@ -201760,7 +206304,7 @@
}
},
{
- "id": 20462,
+ "id": 20931,
"properties": {
"power": "0",
"sculk_sensor_phase": "cooldown",
@@ -201768,7 +206312,7 @@
}
},
{
- "id": 20463,
+ "id": 20932,
"properties": {
"power": "1",
"sculk_sensor_phase": "inactive",
@@ -201776,7 +206320,7 @@
}
},
{
- "id": 20464,
+ "id": 20933,
"properties": {
"power": "1",
"sculk_sensor_phase": "inactive",
@@ -201784,7 +206328,7 @@
}
},
{
- "id": 20465,
+ "id": 20934,
"properties": {
"power": "1",
"sculk_sensor_phase": "active",
@@ -201792,7 +206336,7 @@
}
},
{
- "id": 20466,
+ "id": 20935,
"properties": {
"power": "1",
"sculk_sensor_phase": "active",
@@ -201800,7 +206344,7 @@
}
},
{
- "id": 20467,
+ "id": 20936,
"properties": {
"power": "1",
"sculk_sensor_phase": "cooldown",
@@ -201808,7 +206352,7 @@
}
},
{
- "id": 20468,
+ "id": 20937,
"properties": {
"power": "1",
"sculk_sensor_phase": "cooldown",
@@ -201816,7 +206360,7 @@
}
},
{
- "id": 20469,
+ "id": 20938,
"properties": {
"power": "2",
"sculk_sensor_phase": "inactive",
@@ -201824,7 +206368,7 @@
}
},
{
- "id": 20470,
+ "id": 20939,
"properties": {
"power": "2",
"sculk_sensor_phase": "inactive",
@@ -201832,7 +206376,7 @@
}
},
{
- "id": 20471,
+ "id": 20940,
"properties": {
"power": "2",
"sculk_sensor_phase": "active",
@@ -201840,7 +206384,7 @@
}
},
{
- "id": 20472,
+ "id": 20941,
"properties": {
"power": "2",
"sculk_sensor_phase": "active",
@@ -201848,7 +206392,7 @@
}
},
{
- "id": 20473,
+ "id": 20942,
"properties": {
"power": "2",
"sculk_sensor_phase": "cooldown",
@@ -201856,7 +206400,7 @@
}
},
{
- "id": 20474,
+ "id": 20943,
"properties": {
"power": "2",
"sculk_sensor_phase": "cooldown",
@@ -201864,7 +206408,7 @@
}
},
{
- "id": 20475,
+ "id": 20944,
"properties": {
"power": "3",
"sculk_sensor_phase": "inactive",
@@ -201872,7 +206416,7 @@
}
},
{
- "id": 20476,
+ "id": 20945,
"properties": {
"power": "3",
"sculk_sensor_phase": "inactive",
@@ -201880,7 +206424,7 @@
}
},
{
- "id": 20477,
+ "id": 20946,
"properties": {
"power": "3",
"sculk_sensor_phase": "active",
@@ -201888,7 +206432,7 @@
}
},
{
- "id": 20478,
+ "id": 20947,
"properties": {
"power": "3",
"sculk_sensor_phase": "active",
@@ -201896,7 +206440,7 @@
}
},
{
- "id": 20479,
+ "id": 20948,
"properties": {
"power": "3",
"sculk_sensor_phase": "cooldown",
@@ -201904,7 +206448,7 @@
}
},
{
- "id": 20480,
+ "id": 20949,
"properties": {
"power": "3",
"sculk_sensor_phase": "cooldown",
@@ -201912,7 +206456,7 @@
}
},
{
- "id": 20481,
+ "id": 20950,
"properties": {
"power": "4",
"sculk_sensor_phase": "inactive",
@@ -201920,7 +206464,7 @@
}
},
{
- "id": 20482,
+ "id": 20951,
"properties": {
"power": "4",
"sculk_sensor_phase": "inactive",
@@ -201928,7 +206472,7 @@
}
},
{
- "id": 20483,
+ "id": 20952,
"properties": {
"power": "4",
"sculk_sensor_phase": "active",
@@ -201936,7 +206480,7 @@
}
},
{
- "id": 20484,
+ "id": 20953,
"properties": {
"power": "4",
"sculk_sensor_phase": "active",
@@ -201944,7 +206488,7 @@
}
},
{
- "id": 20485,
+ "id": 20954,
"properties": {
"power": "4",
"sculk_sensor_phase": "cooldown",
@@ -201952,7 +206496,7 @@
}
},
{
- "id": 20486,
+ "id": 20955,
"properties": {
"power": "4",
"sculk_sensor_phase": "cooldown",
@@ -201960,7 +206504,7 @@
}
},
{
- "id": 20487,
+ "id": 20956,
"properties": {
"power": "5",
"sculk_sensor_phase": "inactive",
@@ -201968,7 +206512,7 @@
}
},
{
- "id": 20488,
+ "id": 20957,
"properties": {
"power": "5",
"sculk_sensor_phase": "inactive",
@@ -201976,7 +206520,7 @@
}
},
{
- "id": 20489,
+ "id": 20958,
"properties": {
"power": "5",
"sculk_sensor_phase": "active",
@@ -201984,7 +206528,7 @@
}
},
{
- "id": 20490,
+ "id": 20959,
"properties": {
"power": "5",
"sculk_sensor_phase": "active",
@@ -201992,7 +206536,7 @@
}
},
{
- "id": 20491,
+ "id": 20960,
"properties": {
"power": "5",
"sculk_sensor_phase": "cooldown",
@@ -202000,7 +206544,7 @@
}
},
{
- "id": 20492,
+ "id": 20961,
"properties": {
"power": "5",
"sculk_sensor_phase": "cooldown",
@@ -202008,7 +206552,7 @@
}
},
{
- "id": 20493,
+ "id": 20962,
"properties": {
"power": "6",
"sculk_sensor_phase": "inactive",
@@ -202016,7 +206560,7 @@
}
},
{
- "id": 20494,
+ "id": 20963,
"properties": {
"power": "6",
"sculk_sensor_phase": "inactive",
@@ -202024,7 +206568,7 @@
}
},
{
- "id": 20495,
+ "id": 20964,
"properties": {
"power": "6",
"sculk_sensor_phase": "active",
@@ -202032,7 +206576,7 @@
}
},
{
- "id": 20496,
+ "id": 20965,
"properties": {
"power": "6",
"sculk_sensor_phase": "active",
@@ -202040,7 +206584,7 @@
}
},
{
- "id": 20497,
+ "id": 20966,
"properties": {
"power": "6",
"sculk_sensor_phase": "cooldown",
@@ -202048,7 +206592,7 @@
}
},
{
- "id": 20498,
+ "id": 20967,
"properties": {
"power": "6",
"sculk_sensor_phase": "cooldown",
@@ -202056,7 +206600,7 @@
}
},
{
- "id": 20499,
+ "id": 20968,
"properties": {
"power": "7",
"sculk_sensor_phase": "inactive",
@@ -202064,7 +206608,7 @@
}
},
{
- "id": 20500,
+ "id": 20969,
"properties": {
"power": "7",
"sculk_sensor_phase": "inactive",
@@ -202072,7 +206616,7 @@
}
},
{
- "id": 20501,
+ "id": 20970,
"properties": {
"power": "7",
"sculk_sensor_phase": "active",
@@ -202080,7 +206624,7 @@
}
},
{
- "id": 20502,
+ "id": 20971,
"properties": {
"power": "7",
"sculk_sensor_phase": "active",
@@ -202088,7 +206632,7 @@
}
},
{
- "id": 20503,
+ "id": 20972,
"properties": {
"power": "7",
"sculk_sensor_phase": "cooldown",
@@ -202096,7 +206640,7 @@
}
},
{
- "id": 20504,
+ "id": 20973,
"properties": {
"power": "7",
"sculk_sensor_phase": "cooldown",
@@ -202104,7 +206648,7 @@
}
},
{
- "id": 20505,
+ "id": 20974,
"properties": {
"power": "8",
"sculk_sensor_phase": "inactive",
@@ -202112,7 +206656,7 @@
}
},
{
- "id": 20506,
+ "id": 20975,
"properties": {
"power": "8",
"sculk_sensor_phase": "inactive",
@@ -202120,7 +206664,7 @@
}
},
{
- "id": 20507,
+ "id": 20976,
"properties": {
"power": "8",
"sculk_sensor_phase": "active",
@@ -202128,7 +206672,7 @@
}
},
{
- "id": 20508,
+ "id": 20977,
"properties": {
"power": "8",
"sculk_sensor_phase": "active",
@@ -202136,7 +206680,7 @@
}
},
{
- "id": 20509,
+ "id": 20978,
"properties": {
"power": "8",
"sculk_sensor_phase": "cooldown",
@@ -202144,7 +206688,7 @@
}
},
{
- "id": 20510,
+ "id": 20979,
"properties": {
"power": "8",
"sculk_sensor_phase": "cooldown",
@@ -202152,7 +206696,7 @@
}
},
{
- "id": 20511,
+ "id": 20980,
"properties": {
"power": "9",
"sculk_sensor_phase": "inactive",
@@ -202160,7 +206704,7 @@
}
},
{
- "id": 20512,
+ "id": 20981,
"properties": {
"power": "9",
"sculk_sensor_phase": "inactive",
@@ -202168,7 +206712,7 @@
}
},
{
- "id": 20513,
+ "id": 20982,
"properties": {
"power": "9",
"sculk_sensor_phase": "active",
@@ -202176,7 +206720,7 @@
}
},
{
- "id": 20514,
+ "id": 20983,
"properties": {
"power": "9",
"sculk_sensor_phase": "active",
@@ -202184,7 +206728,7 @@
}
},
{
- "id": 20515,
+ "id": 20984,
"properties": {
"power": "9",
"sculk_sensor_phase": "cooldown",
@@ -202192,7 +206736,7 @@
}
},
{
- "id": 20516,
+ "id": 20985,
"properties": {
"power": "9",
"sculk_sensor_phase": "cooldown",
@@ -202200,7 +206744,7 @@
}
},
{
- "id": 20517,
+ "id": 20986,
"properties": {
"power": "10",
"sculk_sensor_phase": "inactive",
@@ -202208,7 +206752,7 @@
}
},
{
- "id": 20518,
+ "id": 20987,
"properties": {
"power": "10",
"sculk_sensor_phase": "inactive",
@@ -202216,7 +206760,7 @@
}
},
{
- "id": 20519,
+ "id": 20988,
"properties": {
"power": "10",
"sculk_sensor_phase": "active",
@@ -202224,7 +206768,7 @@
}
},
{
- "id": 20520,
+ "id": 20989,
"properties": {
"power": "10",
"sculk_sensor_phase": "active",
@@ -202232,7 +206776,7 @@
}
},
{
- "id": 20521,
+ "id": 20990,
"properties": {
"power": "10",
"sculk_sensor_phase": "cooldown",
@@ -202240,7 +206784,7 @@
}
},
{
- "id": 20522,
+ "id": 20991,
"properties": {
"power": "10",
"sculk_sensor_phase": "cooldown",
@@ -202248,7 +206792,7 @@
}
},
{
- "id": 20523,
+ "id": 20992,
"properties": {
"power": "11",
"sculk_sensor_phase": "inactive",
@@ -202256,7 +206800,7 @@
}
},
{
- "id": 20524,
+ "id": 20993,
"properties": {
"power": "11",
"sculk_sensor_phase": "inactive",
@@ -202264,7 +206808,7 @@
}
},
{
- "id": 20525,
+ "id": 20994,
"properties": {
"power": "11",
"sculk_sensor_phase": "active",
@@ -202272,7 +206816,7 @@
}
},
{
- "id": 20526,
+ "id": 20995,
"properties": {
"power": "11",
"sculk_sensor_phase": "active",
@@ -202280,7 +206824,7 @@
}
},
{
- "id": 20527,
+ "id": 20996,
"properties": {
"power": "11",
"sculk_sensor_phase": "cooldown",
@@ -202288,7 +206832,7 @@
}
},
{
- "id": 20528,
+ "id": 20997,
"properties": {
"power": "11",
"sculk_sensor_phase": "cooldown",
@@ -202296,7 +206840,7 @@
}
},
{
- "id": 20529,
+ "id": 20998,
"properties": {
"power": "12",
"sculk_sensor_phase": "inactive",
@@ -202304,7 +206848,7 @@
}
},
{
- "id": 20530,
+ "id": 20999,
"properties": {
"power": "12",
"sculk_sensor_phase": "inactive",
@@ -202312,7 +206856,7 @@
}
},
{
- "id": 20531,
+ "id": 21000,
"properties": {
"power": "12",
"sculk_sensor_phase": "active",
@@ -202320,7 +206864,7 @@
}
},
{
- "id": 20532,
+ "id": 21001,
"properties": {
"power": "12",
"sculk_sensor_phase": "active",
@@ -202328,7 +206872,7 @@
}
},
{
- "id": 20533,
+ "id": 21002,
"properties": {
"power": "12",
"sculk_sensor_phase": "cooldown",
@@ -202336,7 +206880,7 @@
}
},
{
- "id": 20534,
+ "id": 21003,
"properties": {
"power": "12",
"sculk_sensor_phase": "cooldown",
@@ -202344,7 +206888,7 @@
}
},
{
- "id": 20535,
+ "id": 21004,
"properties": {
"power": "13",
"sculk_sensor_phase": "inactive",
@@ -202352,7 +206896,7 @@
}
},
{
- "id": 20536,
+ "id": 21005,
"properties": {
"power": "13",
"sculk_sensor_phase": "inactive",
@@ -202360,7 +206904,7 @@
}
},
{
- "id": 20537,
+ "id": 21006,
"properties": {
"power": "13",
"sculk_sensor_phase": "active",
@@ -202368,7 +206912,7 @@
}
},
{
- "id": 20538,
+ "id": 21007,
"properties": {
"power": "13",
"sculk_sensor_phase": "active",
@@ -202376,7 +206920,7 @@
}
},
{
- "id": 20539,
+ "id": 21008,
"properties": {
"power": "13",
"sculk_sensor_phase": "cooldown",
@@ -202384,7 +206928,7 @@
}
},
{
- "id": 20540,
+ "id": 21009,
"properties": {
"power": "13",
"sculk_sensor_phase": "cooldown",
@@ -202392,7 +206936,7 @@
}
},
{
- "id": 20541,
+ "id": 21010,
"properties": {
"power": "14",
"sculk_sensor_phase": "inactive",
@@ -202400,7 +206944,7 @@
}
},
{
- "id": 20542,
+ "id": 21011,
"properties": {
"power": "14",
"sculk_sensor_phase": "inactive",
@@ -202408,7 +206952,7 @@
}
},
{
- "id": 20543,
+ "id": 21012,
"properties": {
"power": "14",
"sculk_sensor_phase": "active",
@@ -202416,7 +206960,7 @@
}
},
{
- "id": 20544,
+ "id": 21013,
"properties": {
"power": "14",
"sculk_sensor_phase": "active",
@@ -202424,7 +206968,7 @@
}
},
{
- "id": 20545,
+ "id": 21014,
"properties": {
"power": "14",
"sculk_sensor_phase": "cooldown",
@@ -202432,7 +206976,7 @@
}
},
{
- "id": 20546,
+ "id": 21015,
"properties": {
"power": "14",
"sculk_sensor_phase": "cooldown",
@@ -202440,7 +206984,7 @@
}
},
{
- "id": 20547,
+ "id": 21016,
"properties": {
"power": "15",
"sculk_sensor_phase": "inactive",
@@ -202448,7 +206992,7 @@
}
},
{
- "id": 20548,
+ "id": 21017,
"properties": {
"power": "15",
"sculk_sensor_phase": "inactive",
@@ -202456,7 +207000,7 @@
}
},
{
- "id": 20549,
+ "id": 21018,
"properties": {
"power": "15",
"sculk_sensor_phase": "active",
@@ -202464,7 +207008,7 @@
}
},
{
- "id": 20550,
+ "id": 21019,
"properties": {
"power": "15",
"sculk_sensor_phase": "active",
@@ -202472,7 +207016,7 @@
}
},
{
- "id": 20551,
+ "id": 21020,
"properties": {
"power": "15",
"sculk_sensor_phase": "cooldown",
@@ -202480,7 +207024,7 @@
}
},
{
- "id": 20552,
+ "id": 21021,
"properties": {
"power": "15",
"sculk_sensor_phase": "cooldown",
@@ -202506,7 +207050,7 @@
},
"states": [
{
- "id": 20684,
+ "id": 21153,
"properties": {
"can_summon": "true",
"shrieking": "true",
@@ -202514,7 +207058,7 @@
}
},
{
- "id": 20685,
+ "id": 21154,
"properties": {
"can_summon": "true",
"shrieking": "true",
@@ -202522,7 +207066,7 @@
}
},
{
- "id": 20686,
+ "id": 21155,
"properties": {
"can_summon": "true",
"shrieking": "false",
@@ -202530,7 +207074,7 @@
}
},
{
- "id": 20687,
+ "id": 21156,
"properties": {
"can_summon": "true",
"shrieking": "false",
@@ -202538,7 +207082,7 @@
}
},
{
- "id": 20688,
+ "id": 21157,
"properties": {
"can_summon": "false",
"shrieking": "true",
@@ -202546,7 +207090,7 @@
}
},
{
- "id": 20689,
+ "id": 21158,
"properties": {
"can_summon": "false",
"shrieking": "true",
@@ -202554,7 +207098,7 @@
}
},
{
- "id": 20690,
+ "id": 21159,
"properties": {
"can_summon": "false",
"shrieking": "false",
@@ -202563,7 +207107,7 @@
},
{
"default": true,
- "id": 20691,
+ "id": 21160,
"properties": {
"can_summon": "false",
"shrieking": "false",
@@ -202605,7 +207149,7 @@
},
"states": [
{
- "id": 20554,
+ "id": 21023,
"properties": {
"down": "true",
"east": "true",
@@ -202617,7 +207161,7 @@
}
},
{
- "id": 20555,
+ "id": 21024,
"properties": {
"down": "true",
"east": "true",
@@ -202629,7 +207173,7 @@
}
},
{
- "id": 20556,
+ "id": 21025,
"properties": {
"down": "true",
"east": "true",
@@ -202641,7 +207185,7 @@
}
},
{
- "id": 20557,
+ "id": 21026,
"properties": {
"down": "true",
"east": "true",
@@ -202653,7 +207197,7 @@
}
},
{
- "id": 20558,
+ "id": 21027,
"properties": {
"down": "true",
"east": "true",
@@ -202665,7 +207209,7 @@
}
},
{
- "id": 20559,
+ "id": 21028,
"properties": {
"down": "true",
"east": "true",
@@ -202677,7 +207221,7 @@
}
},
{
- "id": 20560,
+ "id": 21029,
"properties": {
"down": "true",
"east": "true",
@@ -202689,7 +207233,7 @@
}
},
{
- "id": 20561,
+ "id": 21030,
"properties": {
"down": "true",
"east": "true",
@@ -202701,7 +207245,7 @@
}
},
{
- "id": 20562,
+ "id": 21031,
"properties": {
"down": "true",
"east": "true",
@@ -202713,7 +207257,7 @@
}
},
{
- "id": 20563,
+ "id": 21032,
"properties": {
"down": "true",
"east": "true",
@@ -202725,7 +207269,7 @@
}
},
{
- "id": 20564,
+ "id": 21033,
"properties": {
"down": "true",
"east": "true",
@@ -202737,7 +207281,7 @@
}
},
{
- "id": 20565,
+ "id": 21034,
"properties": {
"down": "true",
"east": "true",
@@ -202749,7 +207293,7 @@
}
},
{
- "id": 20566,
+ "id": 21035,
"properties": {
"down": "true",
"east": "true",
@@ -202761,7 +207305,7 @@
}
},
{
- "id": 20567,
+ "id": 21036,
"properties": {
"down": "true",
"east": "true",
@@ -202773,7 +207317,7 @@
}
},
{
- "id": 20568,
+ "id": 21037,
"properties": {
"down": "true",
"east": "true",
@@ -202785,7 +207329,7 @@
}
},
{
- "id": 20569,
+ "id": 21038,
"properties": {
"down": "true",
"east": "true",
@@ -202797,7 +207341,7 @@
}
},
{
- "id": 20570,
+ "id": 21039,
"properties": {
"down": "true",
"east": "true",
@@ -202809,7 +207353,7 @@
}
},
{
- "id": 20571,
+ "id": 21040,
"properties": {
"down": "true",
"east": "true",
@@ -202821,7 +207365,7 @@
}
},
{
- "id": 20572,
+ "id": 21041,
"properties": {
"down": "true",
"east": "true",
@@ -202833,7 +207377,7 @@
}
},
{
- "id": 20573,
+ "id": 21042,
"properties": {
"down": "true",
"east": "true",
@@ -202845,7 +207389,7 @@
}
},
{
- "id": 20574,
+ "id": 21043,
"properties": {
"down": "true",
"east": "true",
@@ -202857,7 +207401,7 @@
}
},
{
- "id": 20575,
+ "id": 21044,
"properties": {
"down": "true",
"east": "true",
@@ -202869,7 +207413,7 @@
}
},
{
- "id": 20576,
+ "id": 21045,
"properties": {
"down": "true",
"east": "true",
@@ -202881,7 +207425,7 @@
}
},
{
- "id": 20577,
+ "id": 21046,
"properties": {
"down": "true",
"east": "true",
@@ -202893,7 +207437,7 @@
}
},
{
- "id": 20578,
+ "id": 21047,
"properties": {
"down": "true",
"east": "true",
@@ -202905,7 +207449,7 @@
}
},
{
- "id": 20579,
+ "id": 21048,
"properties": {
"down": "true",
"east": "true",
@@ -202917,7 +207461,7 @@
}
},
{
- "id": 20580,
+ "id": 21049,
"properties": {
"down": "true",
"east": "true",
@@ -202929,7 +207473,7 @@
}
},
{
- "id": 20581,
+ "id": 21050,
"properties": {
"down": "true",
"east": "true",
@@ -202941,7 +207485,7 @@
}
},
{
- "id": 20582,
+ "id": 21051,
"properties": {
"down": "true",
"east": "true",
@@ -202953,7 +207497,7 @@
}
},
{
- "id": 20583,
+ "id": 21052,
"properties": {
"down": "true",
"east": "true",
@@ -202965,7 +207509,7 @@
}
},
{
- "id": 20584,
+ "id": 21053,
"properties": {
"down": "true",
"east": "true",
@@ -202977,7 +207521,7 @@
}
},
{
- "id": 20585,
+ "id": 21054,
"properties": {
"down": "true",
"east": "true",
@@ -202989,7 +207533,7 @@
}
},
{
- "id": 20586,
+ "id": 21055,
"properties": {
"down": "true",
"east": "false",
@@ -203001,7 +207545,7 @@
}
},
{
- "id": 20587,
+ "id": 21056,
"properties": {
"down": "true",
"east": "false",
@@ -203013,7 +207557,7 @@
}
},
{
- "id": 20588,
+ "id": 21057,
"properties": {
"down": "true",
"east": "false",
@@ -203025,7 +207569,7 @@
}
},
{
- "id": 20589,
+ "id": 21058,
"properties": {
"down": "true",
"east": "false",
@@ -203037,7 +207581,7 @@
}
},
{
- "id": 20590,
+ "id": 21059,
"properties": {
"down": "true",
"east": "false",
@@ -203049,7 +207593,7 @@
}
},
{
- "id": 20591,
+ "id": 21060,
"properties": {
"down": "true",
"east": "false",
@@ -203061,7 +207605,7 @@
}
},
{
- "id": 20592,
+ "id": 21061,
"properties": {
"down": "true",
"east": "false",
@@ -203073,7 +207617,7 @@
}
},
{
- "id": 20593,
+ "id": 21062,
"properties": {
"down": "true",
"east": "false",
@@ -203085,7 +207629,7 @@
}
},
{
- "id": 20594,
+ "id": 21063,
"properties": {
"down": "true",
"east": "false",
@@ -203097,7 +207641,7 @@
}
},
{
- "id": 20595,
+ "id": 21064,
"properties": {
"down": "true",
"east": "false",
@@ -203109,7 +207653,7 @@
}
},
{
- "id": 20596,
+ "id": 21065,
"properties": {
"down": "true",
"east": "false",
@@ -203121,7 +207665,7 @@
}
},
{
- "id": 20597,
+ "id": 21066,
"properties": {
"down": "true",
"east": "false",
@@ -203133,7 +207677,7 @@
}
},
{
- "id": 20598,
+ "id": 21067,
"properties": {
"down": "true",
"east": "false",
@@ -203145,7 +207689,7 @@
}
},
{
- "id": 20599,
+ "id": 21068,
"properties": {
"down": "true",
"east": "false",
@@ -203157,7 +207701,7 @@
}
},
{
- "id": 20600,
+ "id": 21069,
"properties": {
"down": "true",
"east": "false",
@@ -203169,7 +207713,7 @@
}
},
{
- "id": 20601,
+ "id": 21070,
"properties": {
"down": "true",
"east": "false",
@@ -203181,7 +207725,7 @@
}
},
{
- "id": 20602,
+ "id": 21071,
"properties": {
"down": "true",
"east": "false",
@@ -203193,7 +207737,7 @@
}
},
{
- "id": 20603,
+ "id": 21072,
"properties": {
"down": "true",
"east": "false",
@@ -203205,7 +207749,7 @@
}
},
{
- "id": 20604,
+ "id": 21073,
"properties": {
"down": "true",
"east": "false",
@@ -203217,7 +207761,7 @@
}
},
{
- "id": 20605,
+ "id": 21074,
"properties": {
"down": "true",
"east": "false",
@@ -203229,7 +207773,7 @@
}
},
{
- "id": 20606,
+ "id": 21075,
"properties": {
"down": "true",
"east": "false",
@@ -203241,7 +207785,7 @@
}
},
{
- "id": 20607,
+ "id": 21076,
"properties": {
"down": "true",
"east": "false",
@@ -203253,7 +207797,7 @@
}
},
{
- "id": 20608,
+ "id": 21077,
"properties": {
"down": "true",
"east": "false",
@@ -203265,7 +207809,7 @@
}
},
{
- "id": 20609,
+ "id": 21078,
"properties": {
"down": "true",
"east": "false",
@@ -203277,7 +207821,7 @@
}
},
{
- "id": 20610,
+ "id": 21079,
"properties": {
"down": "true",
"east": "false",
@@ -203289,7 +207833,7 @@
}
},
{
- "id": 20611,
+ "id": 21080,
"properties": {
"down": "true",
"east": "false",
@@ -203301,7 +207845,7 @@
}
},
{
- "id": 20612,
+ "id": 21081,
"properties": {
"down": "true",
"east": "false",
@@ -203313,7 +207857,7 @@
}
},
{
- "id": 20613,
+ "id": 21082,
"properties": {
"down": "true",
"east": "false",
@@ -203325,7 +207869,7 @@
}
},
{
- "id": 20614,
+ "id": 21083,
"properties": {
"down": "true",
"east": "false",
@@ -203337,7 +207881,7 @@
}
},
{
- "id": 20615,
+ "id": 21084,
"properties": {
"down": "true",
"east": "false",
@@ -203349,7 +207893,7 @@
}
},
{
- "id": 20616,
+ "id": 21085,
"properties": {
"down": "true",
"east": "false",
@@ -203361,7 +207905,7 @@
}
},
{
- "id": 20617,
+ "id": 21086,
"properties": {
"down": "true",
"east": "false",
@@ -203373,7 +207917,7 @@
}
},
{
- "id": 20618,
+ "id": 21087,
"properties": {
"down": "false",
"east": "true",
@@ -203385,7 +207929,7 @@
}
},
{
- "id": 20619,
+ "id": 21088,
"properties": {
"down": "false",
"east": "true",
@@ -203397,7 +207941,7 @@
}
},
{
- "id": 20620,
+ "id": 21089,
"properties": {
"down": "false",
"east": "true",
@@ -203409,7 +207953,7 @@
}
},
{
- "id": 20621,
+ "id": 21090,
"properties": {
"down": "false",
"east": "true",
@@ -203421,7 +207965,7 @@
}
},
{
- "id": 20622,
+ "id": 21091,
"properties": {
"down": "false",
"east": "true",
@@ -203433,7 +207977,7 @@
}
},
{
- "id": 20623,
+ "id": 21092,
"properties": {
"down": "false",
"east": "true",
@@ -203445,7 +207989,7 @@
}
},
{
- "id": 20624,
+ "id": 21093,
"properties": {
"down": "false",
"east": "true",
@@ -203457,7 +208001,7 @@
}
},
{
- "id": 20625,
+ "id": 21094,
"properties": {
"down": "false",
"east": "true",
@@ -203469,7 +208013,7 @@
}
},
{
- "id": 20626,
+ "id": 21095,
"properties": {
"down": "false",
"east": "true",
@@ -203481,7 +208025,7 @@
}
},
{
- "id": 20627,
+ "id": 21096,
"properties": {
"down": "false",
"east": "true",
@@ -203493,7 +208037,7 @@
}
},
{
- "id": 20628,
+ "id": 21097,
"properties": {
"down": "false",
"east": "true",
@@ -203505,7 +208049,7 @@
}
},
{
- "id": 20629,
+ "id": 21098,
"properties": {
"down": "false",
"east": "true",
@@ -203517,7 +208061,7 @@
}
},
{
- "id": 20630,
+ "id": 21099,
"properties": {
"down": "false",
"east": "true",
@@ -203529,7 +208073,7 @@
}
},
{
- "id": 20631,
+ "id": 21100,
"properties": {
"down": "false",
"east": "true",
@@ -203541,7 +208085,7 @@
}
},
{
- "id": 20632,
+ "id": 21101,
"properties": {
"down": "false",
"east": "true",
@@ -203553,7 +208097,7 @@
}
},
{
- "id": 20633,
+ "id": 21102,
"properties": {
"down": "false",
"east": "true",
@@ -203565,7 +208109,7 @@
}
},
{
- "id": 20634,
+ "id": 21103,
"properties": {
"down": "false",
"east": "true",
@@ -203577,7 +208121,7 @@
}
},
{
- "id": 20635,
+ "id": 21104,
"properties": {
"down": "false",
"east": "true",
@@ -203589,7 +208133,7 @@
}
},
{
- "id": 20636,
+ "id": 21105,
"properties": {
"down": "false",
"east": "true",
@@ -203601,7 +208145,7 @@
}
},
{
- "id": 20637,
+ "id": 21106,
"properties": {
"down": "false",
"east": "true",
@@ -203613,7 +208157,7 @@
}
},
{
- "id": 20638,
+ "id": 21107,
"properties": {
"down": "false",
"east": "true",
@@ -203625,7 +208169,7 @@
}
},
{
- "id": 20639,
+ "id": 21108,
"properties": {
"down": "false",
"east": "true",
@@ -203637,7 +208181,7 @@
}
},
{
- "id": 20640,
+ "id": 21109,
"properties": {
"down": "false",
"east": "true",
@@ -203649,7 +208193,7 @@
}
},
{
- "id": 20641,
+ "id": 21110,
"properties": {
"down": "false",
"east": "true",
@@ -203661,7 +208205,7 @@
}
},
{
- "id": 20642,
+ "id": 21111,
"properties": {
"down": "false",
"east": "true",
@@ -203673,7 +208217,7 @@
}
},
{
- "id": 20643,
+ "id": 21112,
"properties": {
"down": "false",
"east": "true",
@@ -203685,7 +208229,7 @@
}
},
{
- "id": 20644,
+ "id": 21113,
"properties": {
"down": "false",
"east": "true",
@@ -203697,7 +208241,7 @@
}
},
{
- "id": 20645,
+ "id": 21114,
"properties": {
"down": "false",
"east": "true",
@@ -203709,7 +208253,7 @@
}
},
{
- "id": 20646,
+ "id": 21115,
"properties": {
"down": "false",
"east": "true",
@@ -203721,7 +208265,7 @@
}
},
{
- "id": 20647,
+ "id": 21116,
"properties": {
"down": "false",
"east": "true",
@@ -203733,7 +208277,7 @@
}
},
{
- "id": 20648,
+ "id": 21117,
"properties": {
"down": "false",
"east": "true",
@@ -203745,7 +208289,7 @@
}
},
{
- "id": 20649,
+ "id": 21118,
"properties": {
"down": "false",
"east": "true",
@@ -203757,7 +208301,7 @@
}
},
{
- "id": 20650,
+ "id": 21119,
"properties": {
"down": "false",
"east": "false",
@@ -203769,7 +208313,7 @@
}
},
{
- "id": 20651,
+ "id": 21120,
"properties": {
"down": "false",
"east": "false",
@@ -203781,7 +208325,7 @@
}
},
{
- "id": 20652,
+ "id": 21121,
"properties": {
"down": "false",
"east": "false",
@@ -203793,7 +208337,7 @@
}
},
{
- "id": 20653,
+ "id": 21122,
"properties": {
"down": "false",
"east": "false",
@@ -203805,7 +208349,7 @@
}
},
{
- "id": 20654,
+ "id": 21123,
"properties": {
"down": "false",
"east": "false",
@@ -203817,7 +208361,7 @@
}
},
{
- "id": 20655,
+ "id": 21124,
"properties": {
"down": "false",
"east": "false",
@@ -203829,7 +208373,7 @@
}
},
{
- "id": 20656,
+ "id": 21125,
"properties": {
"down": "false",
"east": "false",
@@ -203841,7 +208385,7 @@
}
},
{
- "id": 20657,
+ "id": 21126,
"properties": {
"down": "false",
"east": "false",
@@ -203853,7 +208397,7 @@
}
},
{
- "id": 20658,
+ "id": 21127,
"properties": {
"down": "false",
"east": "false",
@@ -203865,7 +208409,7 @@
}
},
{
- "id": 20659,
+ "id": 21128,
"properties": {
"down": "false",
"east": "false",
@@ -203877,7 +208421,7 @@
}
},
{
- "id": 20660,
+ "id": 21129,
"properties": {
"down": "false",
"east": "false",
@@ -203889,7 +208433,7 @@
}
},
{
- "id": 20661,
+ "id": 21130,
"properties": {
"down": "false",
"east": "false",
@@ -203901,7 +208445,7 @@
}
},
{
- "id": 20662,
+ "id": 21131,
"properties": {
"down": "false",
"east": "false",
@@ -203913,7 +208457,7 @@
}
},
{
- "id": 20663,
+ "id": 21132,
"properties": {
"down": "false",
"east": "false",
@@ -203925,7 +208469,7 @@
}
},
{
- "id": 20664,
+ "id": 21133,
"properties": {
"down": "false",
"east": "false",
@@ -203937,7 +208481,7 @@
}
},
{
- "id": 20665,
+ "id": 21134,
"properties": {
"down": "false",
"east": "false",
@@ -203949,7 +208493,7 @@
}
},
{
- "id": 20666,
+ "id": 21135,
"properties": {
"down": "false",
"east": "false",
@@ -203961,7 +208505,7 @@
}
},
{
- "id": 20667,
+ "id": 21136,
"properties": {
"down": "false",
"east": "false",
@@ -203973,7 +208517,7 @@
}
},
{
- "id": 20668,
+ "id": 21137,
"properties": {
"down": "false",
"east": "false",
@@ -203985,7 +208529,7 @@
}
},
{
- "id": 20669,
+ "id": 21138,
"properties": {
"down": "false",
"east": "false",
@@ -203997,7 +208541,7 @@
}
},
{
- "id": 20670,
+ "id": 21139,
"properties": {
"down": "false",
"east": "false",
@@ -204009,7 +208553,7 @@
}
},
{
- "id": 20671,
+ "id": 21140,
"properties": {
"down": "false",
"east": "false",
@@ -204021,7 +208565,7 @@
}
},
{
- "id": 20672,
+ "id": 21141,
"properties": {
"down": "false",
"east": "false",
@@ -204033,7 +208577,7 @@
}
},
{
- "id": 20673,
+ "id": 21142,
"properties": {
"down": "false",
"east": "false",
@@ -204045,7 +208589,7 @@
}
},
{
- "id": 20674,
+ "id": 21143,
"properties": {
"down": "false",
"east": "false",
@@ -204057,7 +208601,7 @@
}
},
{
- "id": 20675,
+ "id": 21144,
"properties": {
"down": "false",
"east": "false",
@@ -204069,7 +208613,7 @@
}
},
{
- "id": 20676,
+ "id": 21145,
"properties": {
"down": "false",
"east": "false",
@@ -204081,7 +208625,7 @@
}
},
{
- "id": 20677,
+ "id": 21146,
"properties": {
"down": "false",
"east": "false",
@@ -204093,7 +208637,7 @@
}
},
{
- "id": 20678,
+ "id": 21147,
"properties": {
"down": "false",
"east": "false",
@@ -204105,7 +208649,7 @@
}
},
{
- "id": 20679,
+ "id": 21148,
"properties": {
"down": "false",
"east": "false",
@@ -204117,7 +208661,7 @@
}
},
{
- "id": 20680,
+ "id": 21149,
"properties": {
"down": "false",
"east": "false",
@@ -204130,7 +208674,7 @@
},
{
"default": true,
- "id": 20681,
+ "id": 21150,
"properties": {
"down": "false",
"east": "false",
@@ -204147,7 +208691,7 @@
"states": [
{
"default": true,
- "id": 10247
+ "id": 10579
}
]
},
@@ -204167,56 +208711,56 @@
"states": [
{
"default": true,
- "id": 12305,
+ "id": 12774,
"properties": {
"pickles": "1",
"waterlogged": "true"
}
},
{
- "id": 12306,
+ "id": 12775,
"properties": {
"pickles": "1",
"waterlogged": "false"
}
},
{
- "id": 12307,
+ "id": 12776,
"properties": {
"pickles": "2",
"waterlogged": "true"
}
},
{
- "id": 12308,
+ "id": 12777,
"properties": {
"pickles": "2",
"waterlogged": "false"
}
},
{
- "id": 12309,
+ "id": 12778,
"properties": {
"pickles": "3",
"waterlogged": "true"
}
},
{
- "id": 12310,
+ "id": 12779,
"properties": {
"pickles": "3",
"waterlogged": "false"
}
},
{
- "id": 12311,
+ "id": 12780,
"properties": {
"pickles": "4",
"waterlogged": "true"
}
},
{
- "id": 12312,
+ "id": 12781,
"properties": {
"pickles": "4",
"waterlogged": "false"
@@ -204228,7 +208772,7 @@
"states": [
{
"default": true,
- "id": 1957
+ "id": 2004
}
]
},
@@ -204236,7 +208780,7 @@
"states": [
{
"default": true,
- "id": 17982
+ "id": 18451
}
]
},
@@ -204253,38 +208797,38 @@
},
"states": [
{
- "id": 11937,
+ "id": 12406,
"properties": {
"facing": "north"
}
},
{
- "id": 11938,
+ "id": 12407,
"properties": {
"facing": "east"
}
},
{
- "id": 11939,
+ "id": 12408,
"properties": {
"facing": "south"
}
},
{
- "id": 11940,
+ "id": 12409,
"properties": {
"facing": "west"
}
},
{
"default": true,
- "id": 11941,
+ "id": 12410,
"properties": {
"facing": "up"
}
},
{
- "id": 11942,
+ "id": 12411,
"properties": {
"facing": "down"
}
@@ -204315,97 +208859,97 @@
"states": [
{
"default": true,
- "id": 8571,
+ "id": 8823,
"properties": {
"rotation": "0"
}
},
{
- "id": 8572,
+ "id": 8824,
"properties": {
"rotation": "1"
}
},
{
- "id": 8573,
+ "id": 8825,
"properties": {
"rotation": "2"
}
},
{
- "id": 8574,
+ "id": 8826,
"properties": {
"rotation": "3"
}
},
{
- "id": 8575,
+ "id": 8827,
"properties": {
"rotation": "4"
}
},
{
- "id": 8576,
+ "id": 8828,
"properties": {
"rotation": "5"
}
},
{
- "id": 8577,
+ "id": 8829,
"properties": {
"rotation": "6"
}
},
{
- "id": 8578,
+ "id": 8830,
"properties": {
"rotation": "7"
}
},
{
- "id": 8579,
+ "id": 8831,
"properties": {
"rotation": "8"
}
},
{
- "id": 8580,
+ "id": 8832,
"properties": {
"rotation": "9"
}
},
{
- "id": 8581,
+ "id": 8833,
"properties": {
"rotation": "10"
}
},
{
- "id": 8582,
+ "id": 8834,
"properties": {
"rotation": "11"
}
},
{
- "id": 8583,
+ "id": 8835,
"properties": {
"rotation": "12"
}
},
{
- "id": 8584,
+ "id": 8836,
"properties": {
"rotation": "13"
}
},
{
- "id": 8585,
+ "id": 8837,
"properties": {
"rotation": "14"
}
},
{
- "id": 8586,
+ "id": 8838,
"properties": {
"rotation": "15"
}
@@ -204424,25 +208968,25 @@
"states": [
{
"default": true,
- "id": 8587,
+ "id": 8839,
"properties": {
"facing": "north"
}
},
{
- "id": 8588,
+ "id": 8840,
"properties": {
"facing": "south"
}
},
{
- "id": 8589,
+ "id": 8841,
"properties": {
"facing": "west"
}
},
{
- "id": 8590,
+ "id": 8842,
"properties": {
"facing": "east"
}
@@ -204453,7 +208997,7 @@
"states": [
{
"default": true,
- "id": 9888
+ "id": 10220
}
]
},
@@ -204474,63 +209018,63 @@
},
"states": [
{
- "id": 20441,
+ "id": 20910,
"properties": {
"facing": "north",
"waterlogged": "true"
}
},
{
- "id": 20442,
+ "id": 20911,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 20443,
+ "id": 20912,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 20444,
+ "id": 20913,
"properties": {
"facing": "east",
"waterlogged": "false"
}
},
{
- "id": 20445,
+ "id": 20914,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 20446,
+ "id": 20915,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 20447,
+ "id": 20916,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 20448,
+ "id": 20917,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 20449,
+ "id": 20918,
"properties": {
"facing": "up",
"waterlogged": "true"
@@ -204538,21 +209082,21 @@
},
{
"default": true,
- "id": 20450,
+ "id": 20919,
"properties": {
"facing": "up",
"waterlogged": "false"
}
},
{
- "id": 20451,
+ "id": 20920,
"properties": {
"facing": "down",
"waterlogged": "true"
}
},
{
- "id": 20452,
+ "id": 20921,
"properties": {
"facing": "down",
"waterlogged": "false"
@@ -204579,7 +209123,7 @@
},
"states": [
{
- "id": 21542,
+ "id": 22027,
"properties": {
"facing": "north",
"half": "upper",
@@ -204587,7 +209131,7 @@
}
},
{
- "id": 21543,
+ "id": 22028,
"properties": {
"facing": "north",
"half": "upper",
@@ -204595,7 +209139,7 @@
}
},
{
- "id": 21544,
+ "id": 22029,
"properties": {
"facing": "north",
"half": "lower",
@@ -204604,7 +209148,7 @@
},
{
"default": true,
- "id": 21545,
+ "id": 22030,
"properties": {
"facing": "north",
"half": "lower",
@@ -204612,7 +209156,7 @@
}
},
{
- "id": 21546,
+ "id": 22031,
"properties": {
"facing": "south",
"half": "upper",
@@ -204620,7 +209164,7 @@
}
},
{
- "id": 21547,
+ "id": 22032,
"properties": {
"facing": "south",
"half": "upper",
@@ -204628,7 +209172,7 @@
}
},
{
- "id": 21548,
+ "id": 22033,
"properties": {
"facing": "south",
"half": "lower",
@@ -204636,7 +209180,7 @@
}
},
{
- "id": 21549,
+ "id": 22034,
"properties": {
"facing": "south",
"half": "lower",
@@ -204644,7 +209188,7 @@
}
},
{
- "id": 21550,
+ "id": 22035,
"properties": {
"facing": "west",
"half": "upper",
@@ -204652,7 +209196,7 @@
}
},
{
- "id": 21551,
+ "id": 22036,
"properties": {
"facing": "west",
"half": "upper",
@@ -204660,7 +209204,7 @@
}
},
{
- "id": 21552,
+ "id": 22037,
"properties": {
"facing": "west",
"half": "lower",
@@ -204668,7 +209212,7 @@
}
},
{
- "id": 21553,
+ "id": 22038,
"properties": {
"facing": "west",
"half": "lower",
@@ -204676,7 +209220,7 @@
}
},
{
- "id": 21554,
+ "id": 22039,
"properties": {
"facing": "east",
"half": "upper",
@@ -204684,7 +209228,7 @@
}
},
{
- "id": 21555,
+ "id": 22040,
"properties": {
"facing": "east",
"half": "upper",
@@ -204692,7 +209236,7 @@
}
},
{
- "id": 21556,
+ "id": 22041,
"properties": {
"facing": "east",
"half": "lower",
@@ -204700,7 +209244,7 @@
}
},
{
- "id": 21557,
+ "id": 22042,
"properties": {
"facing": "east",
"half": "lower",
@@ -204713,7 +209257,7 @@
"states": [
{
"default": true,
- "id": 17838
+ "id": 18307
}
]
},
@@ -204732,7 +209276,7 @@
},
"states": [
{
- "id": 17792,
+ "id": 18261,
"properties": {
"facing": "north",
"lit": "true"
@@ -204740,49 +209284,49 @@
},
{
"default": true,
- "id": 17793,
+ "id": 18262,
"properties": {
"facing": "north",
"lit": "false"
}
},
{
- "id": 17794,
+ "id": 18263,
"properties": {
"facing": "south",
"lit": "true"
}
},
{
- "id": 17795,
+ "id": 18264,
"properties": {
"facing": "south",
"lit": "false"
}
},
{
- "id": 17796,
+ "id": 18265,
"properties": {
"facing": "west",
"lit": "true"
}
},
{
- "id": 17797,
+ "id": 18266,
"properties": {
"facing": "west",
"lit": "false"
}
},
{
- "id": 17798,
+ "id": 18267,
"properties": {
"facing": "east",
"lit": "true"
}
},
{
- "id": 17799,
+ "id": 18268,
"properties": {
"facing": "east",
"lit": "false"
@@ -204794,7 +209338,7 @@
"states": [
{
"default": true,
- "id": 23215
+ "id": 23700
}
]
},
@@ -204802,7 +209346,7 @@
"states": [
{
"default": true,
- "id": 10825
+ "id": 11163
}
]
},
@@ -204820,21 +209364,21 @@
},
"states": [
{
- "id": 13496,
+ "id": 13965,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 13497,
+ "id": 13966,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 13498,
+ "id": 13967,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -204842,21 +209386,21 @@
},
{
"default": true,
- "id": 13499,
+ "id": 13968,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 13500,
+ "id": 13969,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 13501,
+ "id": 13970,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -204890,7 +209434,7 @@
},
"states": [
{
- "id": 12974,
+ "id": 13443,
"properties": {
"facing": "north",
"half": "top",
@@ -204899,7 +209443,7 @@
}
},
{
- "id": 12975,
+ "id": 13444,
"properties": {
"facing": "north",
"half": "top",
@@ -204908,7 +209452,7 @@
}
},
{
- "id": 12976,
+ "id": 13445,
"properties": {
"facing": "north",
"half": "top",
@@ -204917,7 +209461,7 @@
}
},
{
- "id": 12977,
+ "id": 13446,
"properties": {
"facing": "north",
"half": "top",
@@ -204926,7 +209470,7 @@
}
},
{
- "id": 12978,
+ "id": 13447,
"properties": {
"facing": "north",
"half": "top",
@@ -204935,7 +209479,7 @@
}
},
{
- "id": 12979,
+ "id": 13448,
"properties": {
"facing": "north",
"half": "top",
@@ -204944,7 +209488,7 @@
}
},
{
- "id": 12980,
+ "id": 13449,
"properties": {
"facing": "north",
"half": "top",
@@ -204953,7 +209497,7 @@
}
},
{
- "id": 12981,
+ "id": 13450,
"properties": {
"facing": "north",
"half": "top",
@@ -204962,7 +209506,7 @@
}
},
{
- "id": 12982,
+ "id": 13451,
"properties": {
"facing": "north",
"half": "top",
@@ -204971,7 +209515,7 @@
}
},
{
- "id": 12983,
+ "id": 13452,
"properties": {
"facing": "north",
"half": "top",
@@ -204980,7 +209524,7 @@
}
},
{
- "id": 12984,
+ "id": 13453,
"properties": {
"facing": "north",
"half": "bottom",
@@ -204990,7 +209534,7 @@
},
{
"default": true,
- "id": 12985,
+ "id": 13454,
"properties": {
"facing": "north",
"half": "bottom",
@@ -204999,7 +209543,7 @@
}
},
{
- "id": 12986,
+ "id": 13455,
"properties": {
"facing": "north",
"half": "bottom",
@@ -205008,7 +209552,7 @@
}
},
{
- "id": 12987,
+ "id": 13456,
"properties": {
"facing": "north",
"half": "bottom",
@@ -205017,7 +209561,7 @@
}
},
{
- "id": 12988,
+ "id": 13457,
"properties": {
"facing": "north",
"half": "bottom",
@@ -205026,7 +209570,7 @@
}
},
{
- "id": 12989,
+ "id": 13458,
"properties": {
"facing": "north",
"half": "bottom",
@@ -205035,7 +209579,7 @@
}
},
{
- "id": 12990,
+ "id": 13459,
"properties": {
"facing": "north",
"half": "bottom",
@@ -205044,7 +209588,7 @@
}
},
{
- "id": 12991,
+ "id": 13460,
"properties": {
"facing": "north",
"half": "bottom",
@@ -205053,7 +209597,7 @@
}
},
{
- "id": 12992,
+ "id": 13461,
"properties": {
"facing": "north",
"half": "bottom",
@@ -205062,7 +209606,7 @@
}
},
{
- "id": 12993,
+ "id": 13462,
"properties": {
"facing": "north",
"half": "bottom",
@@ -205071,7 +209615,7 @@
}
},
{
- "id": 12994,
+ "id": 13463,
"properties": {
"facing": "south",
"half": "top",
@@ -205080,7 +209624,7 @@
}
},
{
- "id": 12995,
+ "id": 13464,
"properties": {
"facing": "south",
"half": "top",
@@ -205089,7 +209633,7 @@
}
},
{
- "id": 12996,
+ "id": 13465,
"properties": {
"facing": "south",
"half": "top",
@@ -205098,7 +209642,7 @@
}
},
{
- "id": 12997,
+ "id": 13466,
"properties": {
"facing": "south",
"half": "top",
@@ -205107,7 +209651,7 @@
}
},
{
- "id": 12998,
+ "id": 13467,
"properties": {
"facing": "south",
"half": "top",
@@ -205116,7 +209660,7 @@
}
},
{
- "id": 12999,
+ "id": 13468,
"properties": {
"facing": "south",
"half": "top",
@@ -205125,7 +209669,7 @@
}
},
{
- "id": 13000,
+ "id": 13469,
"properties": {
"facing": "south",
"half": "top",
@@ -205134,7 +209678,7 @@
}
},
{
- "id": 13001,
+ "id": 13470,
"properties": {
"facing": "south",
"half": "top",
@@ -205143,7 +209687,7 @@
}
},
{
- "id": 13002,
+ "id": 13471,
"properties": {
"facing": "south",
"half": "top",
@@ -205152,7 +209696,7 @@
}
},
{
- "id": 13003,
+ "id": 13472,
"properties": {
"facing": "south",
"half": "top",
@@ -205161,7 +209705,7 @@
}
},
{
- "id": 13004,
+ "id": 13473,
"properties": {
"facing": "south",
"half": "bottom",
@@ -205170,7 +209714,7 @@
}
},
{
- "id": 13005,
+ "id": 13474,
"properties": {
"facing": "south",
"half": "bottom",
@@ -205179,7 +209723,7 @@
}
},
{
- "id": 13006,
+ "id": 13475,
"properties": {
"facing": "south",
"half": "bottom",
@@ -205188,7 +209732,7 @@
}
},
{
- "id": 13007,
+ "id": 13476,
"properties": {
"facing": "south",
"half": "bottom",
@@ -205197,7 +209741,7 @@
}
},
{
- "id": 13008,
+ "id": 13477,
"properties": {
"facing": "south",
"half": "bottom",
@@ -205206,7 +209750,7 @@
}
},
{
- "id": 13009,
+ "id": 13478,
"properties": {
"facing": "south",
"half": "bottom",
@@ -205215,7 +209759,7 @@
}
},
{
- "id": 13010,
+ "id": 13479,
"properties": {
"facing": "south",
"half": "bottom",
@@ -205224,7 +209768,7 @@
}
},
{
- "id": 13011,
+ "id": 13480,
"properties": {
"facing": "south",
"half": "bottom",
@@ -205233,7 +209777,7 @@
}
},
{
- "id": 13012,
+ "id": 13481,
"properties": {
"facing": "south",
"half": "bottom",
@@ -205242,7 +209786,7 @@
}
},
{
- "id": 13013,
+ "id": 13482,
"properties": {
"facing": "south",
"half": "bottom",
@@ -205251,7 +209795,7 @@
}
},
{
- "id": 13014,
+ "id": 13483,
"properties": {
"facing": "west",
"half": "top",
@@ -205260,7 +209804,7 @@
}
},
{
- "id": 13015,
+ "id": 13484,
"properties": {
"facing": "west",
"half": "top",
@@ -205269,7 +209813,7 @@
}
},
{
- "id": 13016,
+ "id": 13485,
"properties": {
"facing": "west",
"half": "top",
@@ -205278,7 +209822,7 @@
}
},
{
- "id": 13017,
+ "id": 13486,
"properties": {
"facing": "west",
"half": "top",
@@ -205287,7 +209831,7 @@
}
},
{
- "id": 13018,
+ "id": 13487,
"properties": {
"facing": "west",
"half": "top",
@@ -205296,7 +209840,7 @@
}
},
{
- "id": 13019,
+ "id": 13488,
"properties": {
"facing": "west",
"half": "top",
@@ -205305,7 +209849,7 @@
}
},
{
- "id": 13020,
+ "id": 13489,
"properties": {
"facing": "west",
"half": "top",
@@ -205314,7 +209858,7 @@
}
},
{
- "id": 13021,
+ "id": 13490,
"properties": {
"facing": "west",
"half": "top",
@@ -205323,7 +209867,7 @@
}
},
{
- "id": 13022,
+ "id": 13491,
"properties": {
"facing": "west",
"half": "top",
@@ -205332,7 +209876,7 @@
}
},
{
- "id": 13023,
+ "id": 13492,
"properties": {
"facing": "west",
"half": "top",
@@ -205341,7 +209885,7 @@
}
},
{
- "id": 13024,
+ "id": 13493,
"properties": {
"facing": "west",
"half": "bottom",
@@ -205350,7 +209894,7 @@
}
},
{
- "id": 13025,
+ "id": 13494,
"properties": {
"facing": "west",
"half": "bottom",
@@ -205359,7 +209903,7 @@
}
},
{
- "id": 13026,
+ "id": 13495,
"properties": {
"facing": "west",
"half": "bottom",
@@ -205368,7 +209912,7 @@
}
},
{
- "id": 13027,
+ "id": 13496,
"properties": {
"facing": "west",
"half": "bottom",
@@ -205377,7 +209921,7 @@
}
},
{
- "id": 13028,
+ "id": 13497,
"properties": {
"facing": "west",
"half": "bottom",
@@ -205386,7 +209930,7 @@
}
},
{
- "id": 13029,
+ "id": 13498,
"properties": {
"facing": "west",
"half": "bottom",
@@ -205395,7 +209939,7 @@
}
},
{
- "id": 13030,
+ "id": 13499,
"properties": {
"facing": "west",
"half": "bottom",
@@ -205404,7 +209948,7 @@
}
},
{
- "id": 13031,
+ "id": 13500,
"properties": {
"facing": "west",
"half": "bottom",
@@ -205413,7 +209957,7 @@
}
},
{
- "id": 13032,
+ "id": 13501,
"properties": {
"facing": "west",
"half": "bottom",
@@ -205422,7 +209966,7 @@
}
},
{
- "id": 13033,
+ "id": 13502,
"properties": {
"facing": "west",
"half": "bottom",
@@ -205431,7 +209975,7 @@
}
},
{
- "id": 13034,
+ "id": 13503,
"properties": {
"facing": "east",
"half": "top",
@@ -205440,7 +209984,7 @@
}
},
{
- "id": 13035,
+ "id": 13504,
"properties": {
"facing": "east",
"half": "top",
@@ -205449,7 +209993,7 @@
}
},
{
- "id": 13036,
+ "id": 13505,
"properties": {
"facing": "east",
"half": "top",
@@ -205458,7 +210002,7 @@
}
},
{
- "id": 13037,
+ "id": 13506,
"properties": {
"facing": "east",
"half": "top",
@@ -205467,7 +210011,7 @@
}
},
{
- "id": 13038,
+ "id": 13507,
"properties": {
"facing": "east",
"half": "top",
@@ -205476,7 +210020,7 @@
}
},
{
- "id": 13039,
+ "id": 13508,
"properties": {
"facing": "east",
"half": "top",
@@ -205485,7 +210029,7 @@
}
},
{
- "id": 13040,
+ "id": 13509,
"properties": {
"facing": "east",
"half": "top",
@@ -205494,7 +210038,7 @@
}
},
{
- "id": 13041,
+ "id": 13510,
"properties": {
"facing": "east",
"half": "top",
@@ -205503,7 +210047,7 @@
}
},
{
- "id": 13042,
+ "id": 13511,
"properties": {
"facing": "east",
"half": "top",
@@ -205512,7 +210056,7 @@
}
},
{
- "id": 13043,
+ "id": 13512,
"properties": {
"facing": "east",
"half": "top",
@@ -205521,7 +210065,7 @@
}
},
{
- "id": 13044,
+ "id": 13513,
"properties": {
"facing": "east",
"half": "bottom",
@@ -205530,7 +210074,7 @@
}
},
{
- "id": 13045,
+ "id": 13514,
"properties": {
"facing": "east",
"half": "bottom",
@@ -205539,7 +210083,7 @@
}
},
{
- "id": 13046,
+ "id": 13515,
"properties": {
"facing": "east",
"half": "bottom",
@@ -205548,7 +210092,7 @@
}
},
{
- "id": 13047,
+ "id": 13516,
"properties": {
"facing": "east",
"half": "bottom",
@@ -205557,7 +210101,7 @@
}
},
{
- "id": 13048,
+ "id": 13517,
"properties": {
"facing": "east",
"half": "bottom",
@@ -205566,7 +210110,7 @@
}
},
{
- "id": 13049,
+ "id": 13518,
"properties": {
"facing": "east",
"half": "bottom",
@@ -205575,7 +210119,7 @@
}
},
{
- "id": 13050,
+ "id": 13519,
"properties": {
"facing": "east",
"half": "bottom",
@@ -205584,7 +210128,7 @@
}
},
{
- "id": 13051,
+ "id": 13520,
"properties": {
"facing": "east",
"half": "bottom",
@@ -205593,7 +210137,7 @@
}
},
{
- "id": 13052,
+ "id": 13521,
"properties": {
"facing": "east",
"half": "bottom",
@@ -205602,7 +210146,7 @@
}
},
{
- "id": 13053,
+ "id": 13522,
"properties": {
"facing": "east",
"half": "bottom",
@@ -205616,7 +210160,7 @@
"states": [
{
"default": true,
- "id": 10826
+ "id": 11164
}
]
},
@@ -205634,21 +210178,21 @@
},
"states": [
{
- "id": 13460,
+ "id": 13929,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 13461,
+ "id": 13930,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 13462,
+ "id": 13931,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -205656,21 +210200,21 @@
},
{
"default": true,
- "id": 13463,
+ "id": 13932,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 13464,
+ "id": 13933,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 13465,
+ "id": 13934,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -205704,7 +210248,7 @@
},
"states": [
{
- "id": 12414,
+ "id": 12883,
"properties": {
"facing": "north",
"half": "top",
@@ -205713,7 +210257,7 @@
}
},
{
- "id": 12415,
+ "id": 12884,
"properties": {
"facing": "north",
"half": "top",
@@ -205722,7 +210266,7 @@
}
},
{
- "id": 12416,
+ "id": 12885,
"properties": {
"facing": "north",
"half": "top",
@@ -205731,7 +210275,7 @@
}
},
{
- "id": 12417,
+ "id": 12886,
"properties": {
"facing": "north",
"half": "top",
@@ -205740,7 +210284,7 @@
}
},
{
- "id": 12418,
+ "id": 12887,
"properties": {
"facing": "north",
"half": "top",
@@ -205749,7 +210293,7 @@
}
},
{
- "id": 12419,
+ "id": 12888,
"properties": {
"facing": "north",
"half": "top",
@@ -205758,7 +210302,7 @@
}
},
{
- "id": 12420,
+ "id": 12889,
"properties": {
"facing": "north",
"half": "top",
@@ -205767,7 +210311,7 @@
}
},
{
- "id": 12421,
+ "id": 12890,
"properties": {
"facing": "north",
"half": "top",
@@ -205776,7 +210320,7 @@
}
},
{
- "id": 12422,
+ "id": 12891,
"properties": {
"facing": "north",
"half": "top",
@@ -205785,7 +210329,7 @@
}
},
{
- "id": 12423,
+ "id": 12892,
"properties": {
"facing": "north",
"half": "top",
@@ -205794,7 +210338,7 @@
}
},
{
- "id": 12424,
+ "id": 12893,
"properties": {
"facing": "north",
"half": "bottom",
@@ -205804,7 +210348,7 @@
},
{
"default": true,
- "id": 12425,
+ "id": 12894,
"properties": {
"facing": "north",
"half": "bottom",
@@ -205813,7 +210357,7 @@
}
},
{
- "id": 12426,
+ "id": 12895,
"properties": {
"facing": "north",
"half": "bottom",
@@ -205822,7 +210366,7 @@
}
},
{
- "id": 12427,
+ "id": 12896,
"properties": {
"facing": "north",
"half": "bottom",
@@ -205831,7 +210375,7 @@
}
},
{
- "id": 12428,
+ "id": 12897,
"properties": {
"facing": "north",
"half": "bottom",
@@ -205840,7 +210384,7 @@
}
},
{
- "id": 12429,
+ "id": 12898,
"properties": {
"facing": "north",
"half": "bottom",
@@ -205849,7 +210393,7 @@
}
},
{
- "id": 12430,
+ "id": 12899,
"properties": {
"facing": "north",
"half": "bottom",
@@ -205858,7 +210402,7 @@
}
},
{
- "id": 12431,
+ "id": 12900,
"properties": {
"facing": "north",
"half": "bottom",
@@ -205867,7 +210411,7 @@
}
},
{
- "id": 12432,
+ "id": 12901,
"properties": {
"facing": "north",
"half": "bottom",
@@ -205876,7 +210420,7 @@
}
},
{
- "id": 12433,
+ "id": 12902,
"properties": {
"facing": "north",
"half": "bottom",
@@ -205885,7 +210429,7 @@
}
},
{
- "id": 12434,
+ "id": 12903,
"properties": {
"facing": "south",
"half": "top",
@@ -205894,7 +210438,7 @@
}
},
{
- "id": 12435,
+ "id": 12904,
"properties": {
"facing": "south",
"half": "top",
@@ -205903,7 +210447,7 @@
}
},
{
- "id": 12436,
+ "id": 12905,
"properties": {
"facing": "south",
"half": "top",
@@ -205912,7 +210456,7 @@
}
},
{
- "id": 12437,
+ "id": 12906,
"properties": {
"facing": "south",
"half": "top",
@@ -205921,7 +210465,7 @@
}
},
{
- "id": 12438,
+ "id": 12907,
"properties": {
"facing": "south",
"half": "top",
@@ -205930,7 +210474,7 @@
}
},
{
- "id": 12439,
+ "id": 12908,
"properties": {
"facing": "south",
"half": "top",
@@ -205939,7 +210483,7 @@
}
},
{
- "id": 12440,
+ "id": 12909,
"properties": {
"facing": "south",
"half": "top",
@@ -205948,7 +210492,7 @@
}
},
{
- "id": 12441,
+ "id": 12910,
"properties": {
"facing": "south",
"half": "top",
@@ -205957,7 +210501,7 @@
}
},
{
- "id": 12442,
+ "id": 12911,
"properties": {
"facing": "south",
"half": "top",
@@ -205966,7 +210510,7 @@
}
},
{
- "id": 12443,
+ "id": 12912,
"properties": {
"facing": "south",
"half": "top",
@@ -205975,7 +210519,7 @@
}
},
{
- "id": 12444,
+ "id": 12913,
"properties": {
"facing": "south",
"half": "bottom",
@@ -205984,7 +210528,7 @@
}
},
{
- "id": 12445,
+ "id": 12914,
"properties": {
"facing": "south",
"half": "bottom",
@@ -205993,7 +210537,7 @@
}
},
{
- "id": 12446,
+ "id": 12915,
"properties": {
"facing": "south",
"half": "bottom",
@@ -206002,7 +210546,7 @@
}
},
{
- "id": 12447,
+ "id": 12916,
"properties": {
"facing": "south",
"half": "bottom",
@@ -206011,7 +210555,7 @@
}
},
{
- "id": 12448,
+ "id": 12917,
"properties": {
"facing": "south",
"half": "bottom",
@@ -206020,7 +210564,7 @@
}
},
{
- "id": 12449,
+ "id": 12918,
"properties": {
"facing": "south",
"half": "bottom",
@@ -206029,7 +210573,7 @@
}
},
{
- "id": 12450,
+ "id": 12919,
"properties": {
"facing": "south",
"half": "bottom",
@@ -206038,7 +210582,7 @@
}
},
{
- "id": 12451,
+ "id": 12920,
"properties": {
"facing": "south",
"half": "bottom",
@@ -206047,7 +210591,7 @@
}
},
{
- "id": 12452,
+ "id": 12921,
"properties": {
"facing": "south",
"half": "bottom",
@@ -206056,7 +210600,7 @@
}
},
{
- "id": 12453,
+ "id": 12922,
"properties": {
"facing": "south",
"half": "bottom",
@@ -206065,7 +210609,7 @@
}
},
{
- "id": 12454,
+ "id": 12923,
"properties": {
"facing": "west",
"half": "top",
@@ -206074,7 +210618,7 @@
}
},
{
- "id": 12455,
+ "id": 12924,
"properties": {
"facing": "west",
"half": "top",
@@ -206083,7 +210627,7 @@
}
},
{
- "id": 12456,
+ "id": 12925,
"properties": {
"facing": "west",
"half": "top",
@@ -206092,7 +210636,7 @@
}
},
{
- "id": 12457,
+ "id": 12926,
"properties": {
"facing": "west",
"half": "top",
@@ -206101,7 +210645,7 @@
}
},
{
- "id": 12458,
+ "id": 12927,
"properties": {
"facing": "west",
"half": "top",
@@ -206110,7 +210654,7 @@
}
},
{
- "id": 12459,
+ "id": 12928,
"properties": {
"facing": "west",
"half": "top",
@@ -206119,7 +210663,7 @@
}
},
{
- "id": 12460,
+ "id": 12929,
"properties": {
"facing": "west",
"half": "top",
@@ -206128,7 +210672,7 @@
}
},
{
- "id": 12461,
+ "id": 12930,
"properties": {
"facing": "west",
"half": "top",
@@ -206137,7 +210681,7 @@
}
},
{
- "id": 12462,
+ "id": 12931,
"properties": {
"facing": "west",
"half": "top",
@@ -206146,7 +210690,7 @@
}
},
{
- "id": 12463,
+ "id": 12932,
"properties": {
"facing": "west",
"half": "top",
@@ -206155,7 +210699,7 @@
}
},
{
- "id": 12464,
+ "id": 12933,
"properties": {
"facing": "west",
"half": "bottom",
@@ -206164,7 +210708,7 @@
}
},
{
- "id": 12465,
+ "id": 12934,
"properties": {
"facing": "west",
"half": "bottom",
@@ -206173,7 +210717,7 @@
}
},
{
- "id": 12466,
+ "id": 12935,
"properties": {
"facing": "west",
"half": "bottom",
@@ -206182,7 +210726,7 @@
}
},
{
- "id": 12467,
+ "id": 12936,
"properties": {
"facing": "west",
"half": "bottom",
@@ -206191,7 +210735,7 @@
}
},
{
- "id": 12468,
+ "id": 12937,
"properties": {
"facing": "west",
"half": "bottom",
@@ -206200,7 +210744,7 @@
}
},
{
- "id": 12469,
+ "id": 12938,
"properties": {
"facing": "west",
"half": "bottom",
@@ -206209,7 +210753,7 @@
}
},
{
- "id": 12470,
+ "id": 12939,
"properties": {
"facing": "west",
"half": "bottom",
@@ -206218,7 +210762,7 @@
}
},
{
- "id": 12471,
+ "id": 12940,
"properties": {
"facing": "west",
"half": "bottom",
@@ -206227,7 +210771,7 @@
}
},
{
- "id": 12472,
+ "id": 12941,
"properties": {
"facing": "west",
"half": "bottom",
@@ -206236,7 +210780,7 @@
}
},
{
- "id": 12473,
+ "id": 12942,
"properties": {
"facing": "west",
"half": "bottom",
@@ -206245,7 +210789,7 @@
}
},
{
- "id": 12474,
+ "id": 12943,
"properties": {
"facing": "east",
"half": "top",
@@ -206254,7 +210798,7 @@
}
},
{
- "id": 12475,
+ "id": 12944,
"properties": {
"facing": "east",
"half": "top",
@@ -206263,7 +210807,7 @@
}
},
{
- "id": 12476,
+ "id": 12945,
"properties": {
"facing": "east",
"half": "top",
@@ -206272,7 +210816,7 @@
}
},
{
- "id": 12477,
+ "id": 12946,
"properties": {
"facing": "east",
"half": "top",
@@ -206281,7 +210825,7 @@
}
},
{
- "id": 12478,
+ "id": 12947,
"properties": {
"facing": "east",
"half": "top",
@@ -206290,7 +210834,7 @@
}
},
{
- "id": 12479,
+ "id": 12948,
"properties": {
"facing": "east",
"half": "top",
@@ -206299,7 +210843,7 @@
}
},
{
- "id": 12480,
+ "id": 12949,
"properties": {
"facing": "east",
"half": "top",
@@ -206308,7 +210852,7 @@
}
},
{
- "id": 12481,
+ "id": 12950,
"properties": {
"facing": "east",
"half": "top",
@@ -206317,7 +210861,7 @@
}
},
{
- "id": 12482,
+ "id": 12951,
"properties": {
"facing": "east",
"half": "top",
@@ -206326,7 +210870,7 @@
}
},
{
- "id": 12483,
+ "id": 12952,
"properties": {
"facing": "east",
"half": "top",
@@ -206335,7 +210879,7 @@
}
},
{
- "id": 12484,
+ "id": 12953,
"properties": {
"facing": "east",
"half": "bottom",
@@ -206344,7 +210888,7 @@
}
},
{
- "id": 12485,
+ "id": 12954,
"properties": {
"facing": "east",
"half": "bottom",
@@ -206353,7 +210897,7 @@
}
},
{
- "id": 12486,
+ "id": 12955,
"properties": {
"facing": "east",
"half": "bottom",
@@ -206362,7 +210906,7 @@
}
},
{
- "id": 12487,
+ "id": 12956,
"properties": {
"facing": "east",
"half": "bottom",
@@ -206371,7 +210915,7 @@
}
},
{
- "id": 12488,
+ "id": 12957,
"properties": {
"facing": "east",
"half": "bottom",
@@ -206380,7 +210924,7 @@
}
},
{
- "id": 12489,
+ "id": 12958,
"properties": {
"facing": "east",
"half": "bottom",
@@ -206389,7 +210933,7 @@
}
},
{
- "id": 12490,
+ "id": 12959,
"properties": {
"facing": "east",
"half": "bottom",
@@ -206398,7 +210942,7 @@
}
},
{
- "id": 12491,
+ "id": 12960,
"properties": {
"facing": "east",
"half": "bottom",
@@ -206407,7 +210951,7 @@
}
},
{
- "id": 12492,
+ "id": 12961,
"properties": {
"facing": "east",
"half": "bottom",
@@ -206416,7 +210960,7 @@
}
},
{
- "id": 12493,
+ "id": 12962,
"properties": {
"facing": "east",
"half": "bottom",
@@ -206430,7 +210974,7 @@
"states": [
{
"default": true,
- "id": 10824
+ "id": 11162
}
]
},
@@ -206448,21 +210992,21 @@
},
"states": [
{
- "id": 13490,
+ "id": 13959,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 13491,
+ "id": 13960,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 13492,
+ "id": 13961,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -206470,21 +211014,21 @@
},
{
"default": true,
- "id": 13493,
+ "id": 13962,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 13494,
+ "id": 13963,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 13495,
+ "id": 13964,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -206518,7 +211062,7 @@
},
"states": [
{
- "id": 12894,
+ "id": 13363,
"properties": {
"facing": "north",
"half": "top",
@@ -206527,7 +211071,7 @@
}
},
{
- "id": 12895,
+ "id": 13364,
"properties": {
"facing": "north",
"half": "top",
@@ -206536,7 +211080,7 @@
}
},
{
- "id": 12896,
+ "id": 13365,
"properties": {
"facing": "north",
"half": "top",
@@ -206545,7 +211089,7 @@
}
},
{
- "id": 12897,
+ "id": 13366,
"properties": {
"facing": "north",
"half": "top",
@@ -206554,7 +211098,7 @@
}
},
{
- "id": 12898,
+ "id": 13367,
"properties": {
"facing": "north",
"half": "top",
@@ -206563,7 +211107,7 @@
}
},
{
- "id": 12899,
+ "id": 13368,
"properties": {
"facing": "north",
"half": "top",
@@ -206572,7 +211116,7 @@
}
},
{
- "id": 12900,
+ "id": 13369,
"properties": {
"facing": "north",
"half": "top",
@@ -206581,7 +211125,7 @@
}
},
{
- "id": 12901,
+ "id": 13370,
"properties": {
"facing": "north",
"half": "top",
@@ -206590,7 +211134,7 @@
}
},
{
- "id": 12902,
+ "id": 13371,
"properties": {
"facing": "north",
"half": "top",
@@ -206599,7 +211143,7 @@
}
},
{
- "id": 12903,
+ "id": 13372,
"properties": {
"facing": "north",
"half": "top",
@@ -206608,7 +211152,7 @@
}
},
{
- "id": 12904,
+ "id": 13373,
"properties": {
"facing": "north",
"half": "bottom",
@@ -206618,7 +211162,7 @@
},
{
"default": true,
- "id": 12905,
+ "id": 13374,
"properties": {
"facing": "north",
"half": "bottom",
@@ -206627,7 +211171,7 @@
}
},
{
- "id": 12906,
+ "id": 13375,
"properties": {
"facing": "north",
"half": "bottom",
@@ -206636,7 +211180,7 @@
}
},
{
- "id": 12907,
+ "id": 13376,
"properties": {
"facing": "north",
"half": "bottom",
@@ -206645,7 +211189,7 @@
}
},
{
- "id": 12908,
+ "id": 13377,
"properties": {
"facing": "north",
"half": "bottom",
@@ -206654,7 +211198,7 @@
}
},
{
- "id": 12909,
+ "id": 13378,
"properties": {
"facing": "north",
"half": "bottom",
@@ -206663,7 +211207,7 @@
}
},
{
- "id": 12910,
+ "id": 13379,
"properties": {
"facing": "north",
"half": "bottom",
@@ -206672,7 +211216,7 @@
}
},
{
- "id": 12911,
+ "id": 13380,
"properties": {
"facing": "north",
"half": "bottom",
@@ -206681,7 +211225,7 @@
}
},
{
- "id": 12912,
+ "id": 13381,
"properties": {
"facing": "north",
"half": "bottom",
@@ -206690,7 +211234,7 @@
}
},
{
- "id": 12913,
+ "id": 13382,
"properties": {
"facing": "north",
"half": "bottom",
@@ -206699,7 +211243,7 @@
}
},
{
- "id": 12914,
+ "id": 13383,
"properties": {
"facing": "south",
"half": "top",
@@ -206708,7 +211252,7 @@
}
},
{
- "id": 12915,
+ "id": 13384,
"properties": {
"facing": "south",
"half": "top",
@@ -206717,7 +211261,7 @@
}
},
{
- "id": 12916,
+ "id": 13385,
"properties": {
"facing": "south",
"half": "top",
@@ -206726,7 +211270,7 @@
}
},
{
- "id": 12917,
+ "id": 13386,
"properties": {
"facing": "south",
"half": "top",
@@ -206735,7 +211279,7 @@
}
},
{
- "id": 12918,
+ "id": 13387,
"properties": {
"facing": "south",
"half": "top",
@@ -206744,7 +211288,7 @@
}
},
{
- "id": 12919,
+ "id": 13388,
"properties": {
"facing": "south",
"half": "top",
@@ -206753,7 +211297,7 @@
}
},
{
- "id": 12920,
+ "id": 13389,
"properties": {
"facing": "south",
"half": "top",
@@ -206762,7 +211306,7 @@
}
},
{
- "id": 12921,
+ "id": 13390,
"properties": {
"facing": "south",
"half": "top",
@@ -206771,7 +211315,7 @@
}
},
{
- "id": 12922,
+ "id": 13391,
"properties": {
"facing": "south",
"half": "top",
@@ -206780,7 +211324,7 @@
}
},
{
- "id": 12923,
+ "id": 13392,
"properties": {
"facing": "south",
"half": "top",
@@ -206789,7 +211333,7 @@
}
},
{
- "id": 12924,
+ "id": 13393,
"properties": {
"facing": "south",
"half": "bottom",
@@ -206798,7 +211342,7 @@
}
},
{
- "id": 12925,
+ "id": 13394,
"properties": {
"facing": "south",
"half": "bottom",
@@ -206807,7 +211351,7 @@
}
},
{
- "id": 12926,
+ "id": 13395,
"properties": {
"facing": "south",
"half": "bottom",
@@ -206816,7 +211360,7 @@
}
},
{
- "id": 12927,
+ "id": 13396,
"properties": {
"facing": "south",
"half": "bottom",
@@ -206825,7 +211369,7 @@
}
},
{
- "id": 12928,
+ "id": 13397,
"properties": {
"facing": "south",
"half": "bottom",
@@ -206834,7 +211378,7 @@
}
},
{
- "id": 12929,
+ "id": 13398,
"properties": {
"facing": "south",
"half": "bottom",
@@ -206843,7 +211387,7 @@
}
},
{
- "id": 12930,
+ "id": 13399,
"properties": {
"facing": "south",
"half": "bottom",
@@ -206852,7 +211396,7 @@
}
},
{
- "id": 12931,
+ "id": 13400,
"properties": {
"facing": "south",
"half": "bottom",
@@ -206861,7 +211405,7 @@
}
},
{
- "id": 12932,
+ "id": 13401,
"properties": {
"facing": "south",
"half": "bottom",
@@ -206870,7 +211414,7 @@
}
},
{
- "id": 12933,
+ "id": 13402,
"properties": {
"facing": "south",
"half": "bottom",
@@ -206879,7 +211423,7 @@
}
},
{
- "id": 12934,
+ "id": 13403,
"properties": {
"facing": "west",
"half": "top",
@@ -206888,7 +211432,7 @@
}
},
{
- "id": 12935,
+ "id": 13404,
"properties": {
"facing": "west",
"half": "top",
@@ -206897,7 +211441,7 @@
}
},
{
- "id": 12936,
+ "id": 13405,
"properties": {
"facing": "west",
"half": "top",
@@ -206906,7 +211450,7 @@
}
},
{
- "id": 12937,
+ "id": 13406,
"properties": {
"facing": "west",
"half": "top",
@@ -206915,7 +211459,7 @@
}
},
{
- "id": 12938,
+ "id": 13407,
"properties": {
"facing": "west",
"half": "top",
@@ -206924,7 +211468,7 @@
}
},
{
- "id": 12939,
+ "id": 13408,
"properties": {
"facing": "west",
"half": "top",
@@ -206933,7 +211477,7 @@
}
},
{
- "id": 12940,
+ "id": 13409,
"properties": {
"facing": "west",
"half": "top",
@@ -206942,7 +211486,7 @@
}
},
{
- "id": 12941,
+ "id": 13410,
"properties": {
"facing": "west",
"half": "top",
@@ -206951,7 +211495,7 @@
}
},
{
- "id": 12942,
+ "id": 13411,
"properties": {
"facing": "west",
"half": "top",
@@ -206960,7 +211504,7 @@
}
},
{
- "id": 12943,
+ "id": 13412,
"properties": {
"facing": "west",
"half": "top",
@@ -206969,7 +211513,7 @@
}
},
{
- "id": 12944,
+ "id": 13413,
"properties": {
"facing": "west",
"half": "bottom",
@@ -206978,7 +211522,7 @@
}
},
{
- "id": 12945,
+ "id": 13414,
"properties": {
"facing": "west",
"half": "bottom",
@@ -206987,7 +211531,7 @@
}
},
{
- "id": 12946,
+ "id": 13415,
"properties": {
"facing": "west",
"half": "bottom",
@@ -206996,7 +211540,7 @@
}
},
{
- "id": 12947,
+ "id": 13416,
"properties": {
"facing": "west",
"half": "bottom",
@@ -207005,7 +211549,7 @@
}
},
{
- "id": 12948,
+ "id": 13417,
"properties": {
"facing": "west",
"half": "bottom",
@@ -207014,7 +211558,7 @@
}
},
{
- "id": 12949,
+ "id": 13418,
"properties": {
"facing": "west",
"half": "bottom",
@@ -207023,7 +211567,7 @@
}
},
{
- "id": 12950,
+ "id": 13419,
"properties": {
"facing": "west",
"half": "bottom",
@@ -207032,7 +211576,7 @@
}
},
{
- "id": 12951,
+ "id": 13420,
"properties": {
"facing": "west",
"half": "bottom",
@@ -207041,7 +211585,7 @@
}
},
{
- "id": 12952,
+ "id": 13421,
"properties": {
"facing": "west",
"half": "bottom",
@@ -207050,7 +211594,7 @@
}
},
{
- "id": 12953,
+ "id": 13422,
"properties": {
"facing": "west",
"half": "bottom",
@@ -207059,7 +211603,7 @@
}
},
{
- "id": 12954,
+ "id": 13423,
"properties": {
"facing": "east",
"half": "top",
@@ -207068,7 +211612,7 @@
}
},
{
- "id": 12955,
+ "id": 13424,
"properties": {
"facing": "east",
"half": "top",
@@ -207077,7 +211621,7 @@
}
},
{
- "id": 12956,
+ "id": 13425,
"properties": {
"facing": "east",
"half": "top",
@@ -207086,7 +211630,7 @@
}
},
{
- "id": 12957,
+ "id": 13426,
"properties": {
"facing": "east",
"half": "top",
@@ -207095,7 +211639,7 @@
}
},
{
- "id": 12958,
+ "id": 13427,
"properties": {
"facing": "east",
"half": "top",
@@ -207104,7 +211648,7 @@
}
},
{
- "id": 12959,
+ "id": 13428,
"properties": {
"facing": "east",
"half": "top",
@@ -207113,7 +211657,7 @@
}
},
{
- "id": 12960,
+ "id": 13429,
"properties": {
"facing": "east",
"half": "top",
@@ -207122,7 +211666,7 @@
}
},
{
- "id": 12961,
+ "id": 13430,
"properties": {
"facing": "east",
"half": "top",
@@ -207131,7 +211675,7 @@
}
},
{
- "id": 12962,
+ "id": 13431,
"properties": {
"facing": "east",
"half": "top",
@@ -207140,7 +211684,7 @@
}
},
{
- "id": 12963,
+ "id": 13432,
"properties": {
"facing": "east",
"half": "top",
@@ -207149,7 +211693,7 @@
}
},
{
- "id": 12964,
+ "id": 13433,
"properties": {
"facing": "east",
"half": "bottom",
@@ -207158,7 +211702,7 @@
}
},
{
- "id": 12965,
+ "id": 13434,
"properties": {
"facing": "east",
"half": "bottom",
@@ -207167,7 +211711,7 @@
}
},
{
- "id": 12966,
+ "id": 13435,
"properties": {
"facing": "east",
"half": "bottom",
@@ -207176,7 +211720,7 @@
}
},
{
- "id": 12967,
+ "id": 13436,
"properties": {
"facing": "east",
"half": "bottom",
@@ -207185,7 +211729,7 @@
}
},
{
- "id": 12968,
+ "id": 13437,
"properties": {
"facing": "east",
"half": "bottom",
@@ -207194,7 +211738,7 @@
}
},
{
- "id": 12969,
+ "id": 13438,
"properties": {
"facing": "east",
"half": "bottom",
@@ -207203,7 +211747,7 @@
}
},
{
- "id": 12970,
+ "id": 13439,
"properties": {
"facing": "east",
"half": "bottom",
@@ -207212,7 +211756,7 @@
}
},
{
- "id": 12971,
+ "id": 13440,
"properties": {
"facing": "east",
"half": "bottom",
@@ -207221,7 +211765,7 @@
}
},
{
- "id": 12972,
+ "id": 13441,
"properties": {
"facing": "east",
"half": "bottom",
@@ -207230,7 +211774,7 @@
}
},
{
- "id": 12973,
+ "id": 13442,
"properties": {
"facing": "east",
"half": "bottom",
@@ -207244,7 +211788,7 @@
"states": [
{
"default": true,
- "id": 10823
+ "id": 11161
}
]
},
@@ -207262,21 +211806,21 @@
},
"states": [
{
- "id": 10745,
+ "id": 11083,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 10746,
+ "id": 11084,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 10747,
+ "id": 11085,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -207284,21 +211828,21 @@
},
{
"default": true,
- "id": 10748,
+ "id": 11086,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 10749,
+ "id": 11087,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 10750,
+ "id": 11088,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -207322,49 +211866,49 @@
"states": [
{
"default": true,
- "id": 5606,
+ "id": 5768,
"properties": {
"layers": "1"
}
},
{
- "id": 5607,
+ "id": 5769,
"properties": {
"layers": "2"
}
},
{
- "id": 5608,
+ "id": 5770,
"properties": {
"layers": "3"
}
},
{
- "id": 5609,
+ "id": 5771,
"properties": {
"layers": "4"
}
},
{
- "id": 5610,
+ "id": 5772,
"properties": {
"layers": "5"
}
},
{
- "id": 5611,
+ "id": 5773,
"properties": {
"layers": "6"
}
},
{
- "id": 5612,
+ "id": 5774,
"properties": {
"layers": "7"
}
},
{
- "id": 5613,
+ "id": 5775,
"properties": {
"layers": "8"
}
@@ -207375,7 +211919,7 @@
"states": [
{
"default": true,
- "id": 5615
+ "id": 5777
}
]
},
@@ -207402,7 +211946,7 @@
},
"states": [
{
- "id": 17915,
+ "id": 18384,
"properties": {
"facing": "north",
"lit": "true",
@@ -207411,7 +211955,7 @@
}
},
{
- "id": 17916,
+ "id": 18385,
"properties": {
"facing": "north",
"lit": "true",
@@ -207420,7 +211964,7 @@
}
},
{
- "id": 17917,
+ "id": 18386,
"properties": {
"facing": "north",
"lit": "true",
@@ -207430,7 +211974,7 @@
},
{
"default": true,
- "id": 17918,
+ "id": 18387,
"properties": {
"facing": "north",
"lit": "true",
@@ -207439,7 +211983,7 @@
}
},
{
- "id": 17919,
+ "id": 18388,
"properties": {
"facing": "north",
"lit": "false",
@@ -207448,7 +211992,7 @@
}
},
{
- "id": 17920,
+ "id": 18389,
"properties": {
"facing": "north",
"lit": "false",
@@ -207457,7 +212001,7 @@
}
},
{
- "id": 17921,
+ "id": 18390,
"properties": {
"facing": "north",
"lit": "false",
@@ -207466,7 +212010,7 @@
}
},
{
- "id": 17922,
+ "id": 18391,
"properties": {
"facing": "north",
"lit": "false",
@@ -207475,7 +212019,7 @@
}
},
{
- "id": 17923,
+ "id": 18392,
"properties": {
"facing": "south",
"lit": "true",
@@ -207484,7 +212028,7 @@
}
},
{
- "id": 17924,
+ "id": 18393,
"properties": {
"facing": "south",
"lit": "true",
@@ -207493,7 +212037,7 @@
}
},
{
- "id": 17925,
+ "id": 18394,
"properties": {
"facing": "south",
"lit": "true",
@@ -207502,7 +212046,7 @@
}
},
{
- "id": 17926,
+ "id": 18395,
"properties": {
"facing": "south",
"lit": "true",
@@ -207511,7 +212055,7 @@
}
},
{
- "id": 17927,
+ "id": 18396,
"properties": {
"facing": "south",
"lit": "false",
@@ -207520,7 +212064,7 @@
}
},
{
- "id": 17928,
+ "id": 18397,
"properties": {
"facing": "south",
"lit": "false",
@@ -207529,7 +212073,7 @@
}
},
{
- "id": 17929,
+ "id": 18398,
"properties": {
"facing": "south",
"lit": "false",
@@ -207538,7 +212082,7 @@
}
},
{
- "id": 17930,
+ "id": 18399,
"properties": {
"facing": "south",
"lit": "false",
@@ -207547,7 +212091,7 @@
}
},
{
- "id": 17931,
+ "id": 18400,
"properties": {
"facing": "west",
"lit": "true",
@@ -207556,7 +212100,7 @@
}
},
{
- "id": 17932,
+ "id": 18401,
"properties": {
"facing": "west",
"lit": "true",
@@ -207565,7 +212109,7 @@
}
},
{
- "id": 17933,
+ "id": 18402,
"properties": {
"facing": "west",
"lit": "true",
@@ -207574,7 +212118,7 @@
}
},
{
- "id": 17934,
+ "id": 18403,
"properties": {
"facing": "west",
"lit": "true",
@@ -207583,7 +212127,7 @@
}
},
{
- "id": 17935,
+ "id": 18404,
"properties": {
"facing": "west",
"lit": "false",
@@ -207592,7 +212136,7 @@
}
},
{
- "id": 17936,
+ "id": 18405,
"properties": {
"facing": "west",
"lit": "false",
@@ -207601,7 +212145,7 @@
}
},
{
- "id": 17937,
+ "id": 18406,
"properties": {
"facing": "west",
"lit": "false",
@@ -207610,7 +212154,7 @@
}
},
{
- "id": 17938,
+ "id": 18407,
"properties": {
"facing": "west",
"lit": "false",
@@ -207619,7 +212163,7 @@
}
},
{
- "id": 17939,
+ "id": 18408,
"properties": {
"facing": "east",
"lit": "true",
@@ -207628,7 +212172,7 @@
}
},
{
- "id": 17940,
+ "id": 18409,
"properties": {
"facing": "east",
"lit": "true",
@@ -207637,7 +212181,7 @@
}
},
{
- "id": 17941,
+ "id": 18410,
"properties": {
"facing": "east",
"lit": "true",
@@ -207646,7 +212190,7 @@
}
},
{
- "id": 17942,
+ "id": 18411,
"properties": {
"facing": "east",
"lit": "true",
@@ -207655,7 +212199,7 @@
}
},
{
- "id": 17943,
+ "id": 18412,
"properties": {
"facing": "east",
"lit": "false",
@@ -207664,7 +212208,7 @@
}
},
{
- "id": 17944,
+ "id": 18413,
"properties": {
"facing": "east",
"lit": "false",
@@ -207673,7 +212217,7 @@
}
},
{
- "id": 17945,
+ "id": 18414,
"properties": {
"facing": "east",
"lit": "false",
@@ -207682,7 +212226,7 @@
}
},
{
- "id": 17946,
+ "id": 18415,
"properties": {
"facing": "east",
"lit": "false",
@@ -207696,7 +212240,7 @@
"states": [
{
"default": true,
- "id": 2820
+ "id": 2868
}
]
},
@@ -207713,21 +212257,21 @@
},
"states": [
{
- "id": 17879,
+ "id": 18348,
"properties": {
"hanging": "true",
"waterlogged": "true"
}
},
{
- "id": 17880,
+ "id": 18349,
"properties": {
"hanging": "true",
"waterlogged": "false"
}
},
{
- "id": 17881,
+ "id": 18350,
"properties": {
"hanging": "false",
"waterlogged": "true"
@@ -207735,7 +212279,7 @@
},
{
"default": true,
- "id": 17882,
+ "id": 18351,
"properties": {
"hanging": "false",
"waterlogged": "false"
@@ -207747,7 +212291,7 @@
"states": [
{
"default": true,
- "id": 5685
+ "id": 5847
}
]
},
@@ -207755,7 +212299,7 @@
"states": [
{
"default": true,
- "id": 5686
+ "id": 5848
}
]
},
@@ -207763,7 +212307,7 @@
"states": [
{
"default": true,
- "id": 5693
+ "id": 5855
}
]
},
@@ -207779,25 +212323,25 @@
"states": [
{
"default": true,
- "id": 5694,
+ "id": 5856,
"properties": {
"facing": "north"
}
},
{
- "id": 5695,
+ "id": 5857,
"properties": {
"facing": "south"
}
},
{
- "id": 5696,
+ "id": 5858,
"properties": {
"facing": "west"
}
},
{
- "id": 5697,
+ "id": 5859,
"properties": {
"facing": "east"
}
@@ -207808,7 +212352,7 @@
"states": [
{
"default": true,
- "id": 2821
+ "id": 2869
}
]
},
@@ -207816,7 +212360,7 @@
"states": [
{
"default": true,
- "id": 466
+ "id": 513
}
]
},
@@ -207824,7 +212368,7 @@
"states": [
{
"default": true,
- "id": 21497
+ "id": 21966
}
]
},
@@ -207848,7 +212392,7 @@
},
"states": [
{
- "id": 8403,
+ "id": 8631,
"properties": {
"face": "floor",
"facing": "north",
@@ -207856,7 +212400,7 @@
}
},
{
- "id": 8404,
+ "id": 8632,
"properties": {
"face": "floor",
"facing": "north",
@@ -207864,7 +212408,7 @@
}
},
{
- "id": 8405,
+ "id": 8633,
"properties": {
"face": "floor",
"facing": "south",
@@ -207872,7 +212416,7 @@
}
},
{
- "id": 8406,
+ "id": 8634,
"properties": {
"face": "floor",
"facing": "south",
@@ -207880,7 +212424,7 @@
}
},
{
- "id": 8407,
+ "id": 8635,
"properties": {
"face": "floor",
"facing": "west",
@@ -207888,7 +212432,7 @@
}
},
{
- "id": 8408,
+ "id": 8636,
"properties": {
"face": "floor",
"facing": "west",
@@ -207896,7 +212440,7 @@
}
},
{
- "id": 8409,
+ "id": 8637,
"properties": {
"face": "floor",
"facing": "east",
@@ -207904,7 +212448,7 @@
}
},
{
- "id": 8410,
+ "id": 8638,
"properties": {
"face": "floor",
"facing": "east",
@@ -207912,7 +212456,7 @@
}
},
{
- "id": 8411,
+ "id": 8639,
"properties": {
"face": "wall",
"facing": "north",
@@ -207921,7 +212465,7 @@
},
{
"default": true,
- "id": 8412,
+ "id": 8640,
"properties": {
"face": "wall",
"facing": "north",
@@ -207929,7 +212473,7 @@
}
},
{
- "id": 8413,
+ "id": 8641,
"properties": {
"face": "wall",
"facing": "south",
@@ -207937,7 +212481,7 @@
}
},
{
- "id": 8414,
+ "id": 8642,
"properties": {
"face": "wall",
"facing": "south",
@@ -207945,7 +212489,7 @@
}
},
{
- "id": 8415,
+ "id": 8643,
"properties": {
"face": "wall",
"facing": "west",
@@ -207953,7 +212497,7 @@
}
},
{
- "id": 8416,
+ "id": 8644,
"properties": {
"face": "wall",
"facing": "west",
@@ -207961,7 +212505,7 @@
}
},
{
- "id": 8417,
+ "id": 8645,
"properties": {
"face": "wall",
"facing": "east",
@@ -207969,7 +212513,7 @@
}
},
{
- "id": 8418,
+ "id": 8646,
"properties": {
"face": "wall",
"facing": "east",
@@ -207977,7 +212521,7 @@
}
},
{
- "id": 8419,
+ "id": 8647,
"properties": {
"face": "ceiling",
"facing": "north",
@@ -207985,7 +212529,7 @@
}
},
{
- "id": 8420,
+ "id": 8648,
"properties": {
"face": "ceiling",
"facing": "north",
@@ -207993,7 +212537,7 @@
}
},
{
- "id": 8421,
+ "id": 8649,
"properties": {
"face": "ceiling",
"facing": "south",
@@ -208001,7 +212545,7 @@
}
},
{
- "id": 8422,
+ "id": 8650,
"properties": {
"face": "ceiling",
"facing": "south",
@@ -208009,7 +212553,7 @@
}
},
{
- "id": 8423,
+ "id": 8651,
"properties": {
"face": "ceiling",
"facing": "west",
@@ -208017,7 +212561,7 @@
}
},
{
- "id": 8424,
+ "id": 8652,
"properties": {
"face": "ceiling",
"facing": "west",
@@ -208025,7 +212569,7 @@
}
},
{
- "id": 8425,
+ "id": 8653,
"properties": {
"face": "ceiling",
"facing": "east",
@@ -208033,7 +212577,7 @@
}
},
{
- "id": 8426,
+ "id": 8654,
"properties": {
"face": "ceiling",
"facing": "east",
@@ -208069,7 +212613,7 @@
},
"states": [
{
- "id": 11275,
+ "id": 11677,
"properties": {
"facing": "north",
"half": "upper",
@@ -208079,7 +212623,7 @@
}
},
{
- "id": 11276,
+ "id": 11678,
"properties": {
"facing": "north",
"half": "upper",
@@ -208089,7 +212633,7 @@
}
},
{
- "id": 11277,
+ "id": 11679,
"properties": {
"facing": "north",
"half": "upper",
@@ -208099,7 +212643,7 @@
}
},
{
- "id": 11278,
+ "id": 11680,
"properties": {
"facing": "north",
"half": "upper",
@@ -208109,7 +212653,7 @@
}
},
{
- "id": 11279,
+ "id": 11681,
"properties": {
"facing": "north",
"half": "upper",
@@ -208119,7 +212663,7 @@
}
},
{
- "id": 11280,
+ "id": 11682,
"properties": {
"facing": "north",
"half": "upper",
@@ -208129,7 +212673,7 @@
}
},
{
- "id": 11281,
+ "id": 11683,
"properties": {
"facing": "north",
"half": "upper",
@@ -208139,7 +212683,7 @@
}
},
{
- "id": 11282,
+ "id": 11684,
"properties": {
"facing": "north",
"half": "upper",
@@ -208149,7 +212693,7 @@
}
},
{
- "id": 11283,
+ "id": 11685,
"properties": {
"facing": "north",
"half": "lower",
@@ -208159,7 +212703,7 @@
}
},
{
- "id": 11284,
+ "id": 11686,
"properties": {
"facing": "north",
"half": "lower",
@@ -208169,7 +212713,7 @@
}
},
{
- "id": 11285,
+ "id": 11687,
"properties": {
"facing": "north",
"half": "lower",
@@ -208180,7 +212724,7 @@
},
{
"default": true,
- "id": 11286,
+ "id": 11688,
"properties": {
"facing": "north",
"half": "lower",
@@ -208190,7 +212734,7 @@
}
},
{
- "id": 11287,
+ "id": 11689,
"properties": {
"facing": "north",
"half": "lower",
@@ -208200,7 +212744,7 @@
}
},
{
- "id": 11288,
+ "id": 11690,
"properties": {
"facing": "north",
"half": "lower",
@@ -208210,7 +212754,7 @@
}
},
{
- "id": 11289,
+ "id": 11691,
"properties": {
"facing": "north",
"half": "lower",
@@ -208220,7 +212764,7 @@
}
},
{
- "id": 11290,
+ "id": 11692,
"properties": {
"facing": "north",
"half": "lower",
@@ -208230,7 +212774,7 @@
}
},
{
- "id": 11291,
+ "id": 11693,
"properties": {
"facing": "south",
"half": "upper",
@@ -208240,7 +212784,7 @@
}
},
{
- "id": 11292,
+ "id": 11694,
"properties": {
"facing": "south",
"half": "upper",
@@ -208250,7 +212794,7 @@
}
},
{
- "id": 11293,
+ "id": 11695,
"properties": {
"facing": "south",
"half": "upper",
@@ -208260,7 +212804,7 @@
}
},
{
- "id": 11294,
+ "id": 11696,
"properties": {
"facing": "south",
"half": "upper",
@@ -208270,7 +212814,7 @@
}
},
{
- "id": 11295,
+ "id": 11697,
"properties": {
"facing": "south",
"half": "upper",
@@ -208280,7 +212824,7 @@
}
},
{
- "id": 11296,
+ "id": 11698,
"properties": {
"facing": "south",
"half": "upper",
@@ -208290,7 +212834,7 @@
}
},
{
- "id": 11297,
+ "id": 11699,
"properties": {
"facing": "south",
"half": "upper",
@@ -208300,7 +212844,7 @@
}
},
{
- "id": 11298,
+ "id": 11700,
"properties": {
"facing": "south",
"half": "upper",
@@ -208310,7 +212854,7 @@
}
},
{
- "id": 11299,
+ "id": 11701,
"properties": {
"facing": "south",
"half": "lower",
@@ -208320,7 +212864,7 @@
}
},
{
- "id": 11300,
+ "id": 11702,
"properties": {
"facing": "south",
"half": "lower",
@@ -208330,7 +212874,7 @@
}
},
{
- "id": 11301,
+ "id": 11703,
"properties": {
"facing": "south",
"half": "lower",
@@ -208340,7 +212884,7 @@
}
},
{
- "id": 11302,
+ "id": 11704,
"properties": {
"facing": "south",
"half": "lower",
@@ -208350,7 +212894,7 @@
}
},
{
- "id": 11303,
+ "id": 11705,
"properties": {
"facing": "south",
"half": "lower",
@@ -208360,7 +212904,7 @@
}
},
{
- "id": 11304,
+ "id": 11706,
"properties": {
"facing": "south",
"half": "lower",
@@ -208370,7 +212914,7 @@
}
},
{
- "id": 11305,
+ "id": 11707,
"properties": {
"facing": "south",
"half": "lower",
@@ -208380,7 +212924,7 @@
}
},
{
- "id": 11306,
+ "id": 11708,
"properties": {
"facing": "south",
"half": "lower",
@@ -208390,7 +212934,7 @@
}
},
{
- "id": 11307,
+ "id": 11709,
"properties": {
"facing": "west",
"half": "upper",
@@ -208400,7 +212944,7 @@
}
},
{
- "id": 11308,
+ "id": 11710,
"properties": {
"facing": "west",
"half": "upper",
@@ -208410,7 +212954,7 @@
}
},
{
- "id": 11309,
+ "id": 11711,
"properties": {
"facing": "west",
"half": "upper",
@@ -208420,7 +212964,7 @@
}
},
{
- "id": 11310,
+ "id": 11712,
"properties": {
"facing": "west",
"half": "upper",
@@ -208430,7 +212974,7 @@
}
},
{
- "id": 11311,
+ "id": 11713,
"properties": {
"facing": "west",
"half": "upper",
@@ -208440,7 +212984,7 @@
}
},
{
- "id": 11312,
+ "id": 11714,
"properties": {
"facing": "west",
"half": "upper",
@@ -208450,7 +212994,7 @@
}
},
{
- "id": 11313,
+ "id": 11715,
"properties": {
"facing": "west",
"half": "upper",
@@ -208460,7 +213004,7 @@
}
},
{
- "id": 11314,
+ "id": 11716,
"properties": {
"facing": "west",
"half": "upper",
@@ -208470,7 +213014,7 @@
}
},
{
- "id": 11315,
+ "id": 11717,
"properties": {
"facing": "west",
"half": "lower",
@@ -208480,7 +213024,7 @@
}
},
{
- "id": 11316,
+ "id": 11718,
"properties": {
"facing": "west",
"half": "lower",
@@ -208490,7 +213034,7 @@
}
},
{
- "id": 11317,
+ "id": 11719,
"properties": {
"facing": "west",
"half": "lower",
@@ -208500,7 +213044,7 @@
}
},
{
- "id": 11318,
+ "id": 11720,
"properties": {
"facing": "west",
"half": "lower",
@@ -208510,7 +213054,7 @@
}
},
{
- "id": 11319,
+ "id": 11721,
"properties": {
"facing": "west",
"half": "lower",
@@ -208520,7 +213064,7 @@
}
},
{
- "id": 11320,
+ "id": 11722,
"properties": {
"facing": "west",
"half": "lower",
@@ -208530,7 +213074,7 @@
}
},
{
- "id": 11321,
+ "id": 11723,
"properties": {
"facing": "west",
"half": "lower",
@@ -208540,7 +213084,7 @@
}
},
{
- "id": 11322,
+ "id": 11724,
"properties": {
"facing": "west",
"half": "lower",
@@ -208550,7 +213094,7 @@
}
},
{
- "id": 11323,
+ "id": 11725,
"properties": {
"facing": "east",
"half": "upper",
@@ -208560,7 +213104,7 @@
}
},
{
- "id": 11324,
+ "id": 11726,
"properties": {
"facing": "east",
"half": "upper",
@@ -208570,7 +213114,7 @@
}
},
{
- "id": 11325,
+ "id": 11727,
"properties": {
"facing": "east",
"half": "upper",
@@ -208580,7 +213124,7 @@
}
},
{
- "id": 11326,
+ "id": 11728,
"properties": {
"facing": "east",
"half": "upper",
@@ -208590,7 +213134,7 @@
}
},
{
- "id": 11327,
+ "id": 11729,
"properties": {
"facing": "east",
"half": "upper",
@@ -208600,7 +213144,7 @@
}
},
{
- "id": 11328,
+ "id": 11730,
"properties": {
"facing": "east",
"half": "upper",
@@ -208610,7 +213154,7 @@
}
},
{
- "id": 11329,
+ "id": 11731,
"properties": {
"facing": "east",
"half": "upper",
@@ -208620,7 +213164,7 @@
}
},
{
- "id": 11330,
+ "id": 11732,
"properties": {
"facing": "east",
"half": "upper",
@@ -208630,7 +213174,7 @@
}
},
{
- "id": 11331,
+ "id": 11733,
"properties": {
"facing": "east",
"half": "lower",
@@ -208640,7 +213184,7 @@
}
},
{
- "id": 11332,
+ "id": 11734,
"properties": {
"facing": "east",
"half": "lower",
@@ -208650,7 +213194,7 @@
}
},
{
- "id": 11333,
+ "id": 11735,
"properties": {
"facing": "east",
"half": "lower",
@@ -208660,7 +213204,7 @@
}
},
{
- "id": 11334,
+ "id": 11736,
"properties": {
"facing": "east",
"half": "lower",
@@ -208670,7 +213214,7 @@
}
},
{
- "id": 11335,
+ "id": 11737,
"properties": {
"facing": "east",
"half": "lower",
@@ -208680,7 +213224,7 @@
}
},
{
- "id": 11336,
+ "id": 11738,
"properties": {
"facing": "east",
"half": "lower",
@@ -208690,7 +213234,7 @@
}
},
{
- "id": 11337,
+ "id": 11739,
"properties": {
"facing": "east",
"half": "lower",
@@ -208700,7 +213244,7 @@
}
},
{
- "id": 11338,
+ "id": 11740,
"properties": {
"facing": "east",
"half": "lower",
@@ -208736,7 +213280,7 @@
},
"states": [
{
- "id": 11051,
+ "id": 11421,
"properties": {
"east": "true",
"north": "true",
@@ -208746,7 +213290,7 @@
}
},
{
- "id": 11052,
+ "id": 11422,
"properties": {
"east": "true",
"north": "true",
@@ -208756,7 +213300,7 @@
}
},
{
- "id": 11053,
+ "id": 11423,
"properties": {
"east": "true",
"north": "true",
@@ -208766,7 +213310,7 @@
}
},
{
- "id": 11054,
+ "id": 11424,
"properties": {
"east": "true",
"north": "true",
@@ -208776,7 +213320,7 @@
}
},
{
- "id": 11055,
+ "id": 11425,
"properties": {
"east": "true",
"north": "true",
@@ -208786,7 +213330,7 @@
}
},
{
- "id": 11056,
+ "id": 11426,
"properties": {
"east": "true",
"north": "true",
@@ -208796,7 +213340,7 @@
}
},
{
- "id": 11057,
+ "id": 11427,
"properties": {
"east": "true",
"north": "true",
@@ -208806,7 +213350,7 @@
}
},
{
- "id": 11058,
+ "id": 11428,
"properties": {
"east": "true",
"north": "true",
@@ -208816,7 +213360,7 @@
}
},
{
- "id": 11059,
+ "id": 11429,
"properties": {
"east": "true",
"north": "false",
@@ -208826,7 +213370,7 @@
}
},
{
- "id": 11060,
+ "id": 11430,
"properties": {
"east": "true",
"north": "false",
@@ -208836,7 +213380,7 @@
}
},
{
- "id": 11061,
+ "id": 11431,
"properties": {
"east": "true",
"north": "false",
@@ -208846,7 +213390,7 @@
}
},
{
- "id": 11062,
+ "id": 11432,
"properties": {
"east": "true",
"north": "false",
@@ -208856,7 +213400,7 @@
}
},
{
- "id": 11063,
+ "id": 11433,
"properties": {
"east": "true",
"north": "false",
@@ -208866,7 +213410,7 @@
}
},
{
- "id": 11064,
+ "id": 11434,
"properties": {
"east": "true",
"north": "false",
@@ -208876,7 +213420,7 @@
}
},
{
- "id": 11065,
+ "id": 11435,
"properties": {
"east": "true",
"north": "false",
@@ -208886,7 +213430,7 @@
}
},
{
- "id": 11066,
+ "id": 11436,
"properties": {
"east": "true",
"north": "false",
@@ -208896,7 +213440,7 @@
}
},
{
- "id": 11067,
+ "id": 11437,
"properties": {
"east": "false",
"north": "true",
@@ -208906,7 +213450,7 @@
}
},
{
- "id": 11068,
+ "id": 11438,
"properties": {
"east": "false",
"north": "true",
@@ -208916,7 +213460,7 @@
}
},
{
- "id": 11069,
+ "id": 11439,
"properties": {
"east": "false",
"north": "true",
@@ -208926,7 +213470,7 @@
}
},
{
- "id": 11070,
+ "id": 11440,
"properties": {
"east": "false",
"north": "true",
@@ -208936,7 +213480,7 @@
}
},
{
- "id": 11071,
+ "id": 11441,
"properties": {
"east": "false",
"north": "true",
@@ -208946,7 +213490,7 @@
}
},
{
- "id": 11072,
+ "id": 11442,
"properties": {
"east": "false",
"north": "true",
@@ -208956,7 +213500,7 @@
}
},
{
- "id": 11073,
+ "id": 11443,
"properties": {
"east": "false",
"north": "true",
@@ -208966,7 +213510,7 @@
}
},
{
- "id": 11074,
+ "id": 11444,
"properties": {
"east": "false",
"north": "true",
@@ -208976,7 +213520,7 @@
}
},
{
- "id": 11075,
+ "id": 11445,
"properties": {
"east": "false",
"north": "false",
@@ -208986,7 +213530,7 @@
}
},
{
- "id": 11076,
+ "id": 11446,
"properties": {
"east": "false",
"north": "false",
@@ -208996,7 +213540,7 @@
}
},
{
- "id": 11077,
+ "id": 11447,
"properties": {
"east": "false",
"north": "false",
@@ -209006,7 +213550,7 @@
}
},
{
- "id": 11078,
+ "id": 11448,
"properties": {
"east": "false",
"north": "false",
@@ -209016,7 +213560,7 @@
}
},
{
- "id": 11079,
+ "id": 11449,
"properties": {
"east": "false",
"north": "false",
@@ -209026,7 +213570,7 @@
}
},
{
- "id": 11080,
+ "id": 11450,
"properties": {
"east": "false",
"north": "false",
@@ -209036,7 +213580,7 @@
}
},
{
- "id": 11081,
+ "id": 11451,
"properties": {
"east": "false",
"north": "false",
@@ -209047,7 +213591,7 @@
},
{
"default": true,
- "id": 11082,
+ "id": 11452,
"properties": {
"east": "false",
"north": "false",
@@ -209081,7 +213625,7 @@
},
"states": [
{
- "id": 10827,
+ "id": 11165,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -209090,7 +213634,7 @@
}
},
{
- "id": 10828,
+ "id": 11166,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -209099,7 +213643,7 @@
}
},
{
- "id": 10829,
+ "id": 11167,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -209108,7 +213652,7 @@
}
},
{
- "id": 10830,
+ "id": 11168,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -209117,7 +213661,7 @@
}
},
{
- "id": 10831,
+ "id": 11169,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -209126,7 +213670,7 @@
}
},
{
- "id": 10832,
+ "id": 11170,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -209135,7 +213679,7 @@
}
},
{
- "id": 10833,
+ "id": 11171,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -209145,7 +213689,7 @@
},
{
"default": true,
- "id": 10834,
+ "id": 11172,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -209154,7 +213698,7 @@
}
},
{
- "id": 10835,
+ "id": 11173,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -209163,7 +213707,7 @@
}
},
{
- "id": 10836,
+ "id": 11174,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -209172,7 +213716,7 @@
}
},
{
- "id": 10837,
+ "id": 11175,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -209181,7 +213725,7 @@
}
},
{
- "id": 10838,
+ "id": 11176,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -209190,7 +213734,7 @@
}
},
{
- "id": 10839,
+ "id": 11177,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -209199,7 +213743,7 @@
}
},
{
- "id": 10840,
+ "id": 11178,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -209208,7 +213752,7 @@
}
},
{
- "id": 10841,
+ "id": 11179,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -209217,7 +213761,7 @@
}
},
{
- "id": 10842,
+ "id": 11180,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -209226,7 +213770,7 @@
}
},
{
- "id": 10843,
+ "id": 11181,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -209235,7 +213779,7 @@
}
},
{
- "id": 10844,
+ "id": 11182,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -209244,7 +213788,7 @@
}
},
{
- "id": 10845,
+ "id": 11183,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -209253,7 +213797,7 @@
}
},
{
- "id": 10846,
+ "id": 11184,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -209262,7 +213806,7 @@
}
},
{
- "id": 10847,
+ "id": 11185,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -209271,7 +213815,7 @@
}
},
{
- "id": 10848,
+ "id": 11186,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -209280,7 +213824,7 @@
}
},
{
- "id": 10849,
+ "id": 11187,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -209289,7 +213833,7 @@
}
},
{
- "id": 10850,
+ "id": 11188,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -209298,7 +213842,7 @@
}
},
{
- "id": 10851,
+ "id": 11189,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -209307,7 +213851,7 @@
}
},
{
- "id": 10852,
+ "id": 11190,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -209316,7 +213860,7 @@
}
},
{
- "id": 10853,
+ "id": 11191,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -209325,7 +213869,7 @@
}
},
{
- "id": 10854,
+ "id": 11192,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -209334,7 +213878,7 @@
}
},
{
- "id": 10855,
+ "id": 11193,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -209343,7 +213887,7 @@
}
},
{
- "id": 10856,
+ "id": 11194,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -209352,7 +213896,7 @@
}
},
{
- "id": 10857,
+ "id": 11195,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -209361,7 +213905,7 @@
}
},
{
- "id": 10858,
+ "id": 11196,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -209402,7 +213946,7 @@
},
"states": [
{
- "id": 4806,
+ "id": 4894,
"properties": {
"attached": "true",
"rotation": "0",
@@ -209410,7 +213954,7 @@
}
},
{
- "id": 4807,
+ "id": 4895,
"properties": {
"attached": "true",
"rotation": "0",
@@ -209418,7 +213962,7 @@
}
},
{
- "id": 4808,
+ "id": 4896,
"properties": {
"attached": "true",
"rotation": "1",
@@ -209426,7 +213970,7 @@
}
},
{
- "id": 4809,
+ "id": 4897,
"properties": {
"attached": "true",
"rotation": "1",
@@ -209434,7 +213978,7 @@
}
},
{
- "id": 4810,
+ "id": 4898,
"properties": {
"attached": "true",
"rotation": "2",
@@ -209442,7 +213986,7 @@
}
},
{
- "id": 4811,
+ "id": 4899,
"properties": {
"attached": "true",
"rotation": "2",
@@ -209450,7 +213994,7 @@
}
},
{
- "id": 4812,
+ "id": 4900,
"properties": {
"attached": "true",
"rotation": "3",
@@ -209458,7 +214002,7 @@
}
},
{
- "id": 4813,
+ "id": 4901,
"properties": {
"attached": "true",
"rotation": "3",
@@ -209466,7 +214010,7 @@
}
},
{
- "id": 4814,
+ "id": 4902,
"properties": {
"attached": "true",
"rotation": "4",
@@ -209474,7 +214018,7 @@
}
},
{
- "id": 4815,
+ "id": 4903,
"properties": {
"attached": "true",
"rotation": "4",
@@ -209482,7 +214026,7 @@
}
},
{
- "id": 4816,
+ "id": 4904,
"properties": {
"attached": "true",
"rotation": "5",
@@ -209490,7 +214034,7 @@
}
},
{
- "id": 4817,
+ "id": 4905,
"properties": {
"attached": "true",
"rotation": "5",
@@ -209498,7 +214042,7 @@
}
},
{
- "id": 4818,
+ "id": 4906,
"properties": {
"attached": "true",
"rotation": "6",
@@ -209506,7 +214050,7 @@
}
},
{
- "id": 4819,
+ "id": 4907,
"properties": {
"attached": "true",
"rotation": "6",
@@ -209514,7 +214058,7 @@
}
},
{
- "id": 4820,
+ "id": 4908,
"properties": {
"attached": "true",
"rotation": "7",
@@ -209522,7 +214066,7 @@
}
},
{
- "id": 4821,
+ "id": 4909,
"properties": {
"attached": "true",
"rotation": "7",
@@ -209530,7 +214074,7 @@
}
},
{
- "id": 4822,
+ "id": 4910,
"properties": {
"attached": "true",
"rotation": "8",
@@ -209538,7 +214082,7 @@
}
},
{
- "id": 4823,
+ "id": 4911,
"properties": {
"attached": "true",
"rotation": "8",
@@ -209546,7 +214090,7 @@
}
},
{
- "id": 4824,
+ "id": 4912,
"properties": {
"attached": "true",
"rotation": "9",
@@ -209554,7 +214098,7 @@
}
},
{
- "id": 4825,
+ "id": 4913,
"properties": {
"attached": "true",
"rotation": "9",
@@ -209562,7 +214106,7 @@
}
},
{
- "id": 4826,
+ "id": 4914,
"properties": {
"attached": "true",
"rotation": "10",
@@ -209570,7 +214114,7 @@
}
},
{
- "id": 4827,
+ "id": 4915,
"properties": {
"attached": "true",
"rotation": "10",
@@ -209578,7 +214122,7 @@
}
},
{
- "id": 4828,
+ "id": 4916,
"properties": {
"attached": "true",
"rotation": "11",
@@ -209586,7 +214130,7 @@
}
},
{
- "id": 4829,
+ "id": 4917,
"properties": {
"attached": "true",
"rotation": "11",
@@ -209594,7 +214138,7 @@
}
},
{
- "id": 4830,
+ "id": 4918,
"properties": {
"attached": "true",
"rotation": "12",
@@ -209602,7 +214146,7 @@
}
},
{
- "id": 4831,
+ "id": 4919,
"properties": {
"attached": "true",
"rotation": "12",
@@ -209610,7 +214154,7 @@
}
},
{
- "id": 4832,
+ "id": 4920,
"properties": {
"attached": "true",
"rotation": "13",
@@ -209618,7 +214162,7 @@
}
},
{
- "id": 4833,
+ "id": 4921,
"properties": {
"attached": "true",
"rotation": "13",
@@ -209626,7 +214170,7 @@
}
},
{
- "id": 4834,
+ "id": 4922,
"properties": {
"attached": "true",
"rotation": "14",
@@ -209634,7 +214178,7 @@
}
},
{
- "id": 4835,
+ "id": 4923,
"properties": {
"attached": "true",
"rotation": "14",
@@ -209642,7 +214186,7 @@
}
},
{
- "id": 4836,
+ "id": 4924,
"properties": {
"attached": "true",
"rotation": "15",
@@ -209650,7 +214194,7 @@
}
},
{
- "id": 4837,
+ "id": 4925,
"properties": {
"attached": "true",
"rotation": "15",
@@ -209658,7 +214202,7 @@
}
},
{
- "id": 4838,
+ "id": 4926,
"properties": {
"attached": "false",
"rotation": "0",
@@ -209667,7 +214211,7 @@
},
{
"default": true,
- "id": 4839,
+ "id": 4927,
"properties": {
"attached": "false",
"rotation": "0",
@@ -209675,7 +214219,7 @@
}
},
{
- "id": 4840,
+ "id": 4928,
"properties": {
"attached": "false",
"rotation": "1",
@@ -209683,7 +214227,7 @@
}
},
{
- "id": 4841,
+ "id": 4929,
"properties": {
"attached": "false",
"rotation": "1",
@@ -209691,7 +214235,7 @@
}
},
{
- "id": 4842,
+ "id": 4930,
"properties": {
"attached": "false",
"rotation": "2",
@@ -209699,7 +214243,7 @@
}
},
{
- "id": 4843,
+ "id": 4931,
"properties": {
"attached": "false",
"rotation": "2",
@@ -209707,7 +214251,7 @@
}
},
{
- "id": 4844,
+ "id": 4932,
"properties": {
"attached": "false",
"rotation": "3",
@@ -209715,7 +214259,7 @@
}
},
{
- "id": 4845,
+ "id": 4933,
"properties": {
"attached": "false",
"rotation": "3",
@@ -209723,7 +214267,7 @@
}
},
{
- "id": 4846,
+ "id": 4934,
"properties": {
"attached": "false",
"rotation": "4",
@@ -209731,7 +214275,7 @@
}
},
{
- "id": 4847,
+ "id": 4935,
"properties": {
"attached": "false",
"rotation": "4",
@@ -209739,7 +214283,7 @@
}
},
{
- "id": 4848,
+ "id": 4936,
"properties": {
"attached": "false",
"rotation": "5",
@@ -209747,7 +214291,7 @@
}
},
{
- "id": 4849,
+ "id": 4937,
"properties": {
"attached": "false",
"rotation": "5",
@@ -209755,7 +214299,7 @@
}
},
{
- "id": 4850,
+ "id": 4938,
"properties": {
"attached": "false",
"rotation": "6",
@@ -209763,7 +214307,7 @@
}
},
{
- "id": 4851,
+ "id": 4939,
"properties": {
"attached": "false",
"rotation": "6",
@@ -209771,7 +214315,7 @@
}
},
{
- "id": 4852,
+ "id": 4940,
"properties": {
"attached": "false",
"rotation": "7",
@@ -209779,7 +214323,7 @@
}
},
{
- "id": 4853,
+ "id": 4941,
"properties": {
"attached": "false",
"rotation": "7",
@@ -209787,7 +214331,7 @@
}
},
{
- "id": 4854,
+ "id": 4942,
"properties": {
"attached": "false",
"rotation": "8",
@@ -209795,7 +214339,7 @@
}
},
{
- "id": 4855,
+ "id": 4943,
"properties": {
"attached": "false",
"rotation": "8",
@@ -209803,7 +214347,7 @@
}
},
{
- "id": 4856,
+ "id": 4944,
"properties": {
"attached": "false",
"rotation": "9",
@@ -209811,7 +214355,7 @@
}
},
{
- "id": 4857,
+ "id": 4945,
"properties": {
"attached": "false",
"rotation": "9",
@@ -209819,7 +214363,7 @@
}
},
{
- "id": 4858,
+ "id": 4946,
"properties": {
"attached": "false",
"rotation": "10",
@@ -209827,7 +214371,7 @@
}
},
{
- "id": 4859,
+ "id": 4947,
"properties": {
"attached": "false",
"rotation": "10",
@@ -209835,7 +214379,7 @@
}
},
{
- "id": 4860,
+ "id": 4948,
"properties": {
"attached": "false",
"rotation": "11",
@@ -209843,7 +214387,7 @@
}
},
{
- "id": 4861,
+ "id": 4949,
"properties": {
"attached": "false",
"rotation": "11",
@@ -209851,7 +214395,7 @@
}
},
{
- "id": 4862,
+ "id": 4950,
"properties": {
"attached": "false",
"rotation": "12",
@@ -209859,7 +214403,7 @@
}
},
{
- "id": 4863,
+ "id": 4951,
"properties": {
"attached": "false",
"rotation": "12",
@@ -209867,7 +214411,7 @@
}
},
{
- "id": 4864,
+ "id": 4952,
"properties": {
"attached": "false",
"rotation": "13",
@@ -209875,7 +214419,7 @@
}
},
{
- "id": 4865,
+ "id": 4953,
"properties": {
"attached": "false",
"rotation": "13",
@@ -209883,7 +214427,7 @@
}
},
{
- "id": 4866,
+ "id": 4954,
"properties": {
"attached": "false",
"rotation": "14",
@@ -209891,7 +214435,7 @@
}
},
{
- "id": 4867,
+ "id": 4955,
"properties": {
"attached": "false",
"rotation": "14",
@@ -209899,7 +214443,7 @@
}
},
{
- "id": 4868,
+ "id": 4956,
"properties": {
"attached": "false",
"rotation": "15",
@@ -209907,7 +214451,7 @@
}
},
{
- "id": 4869,
+ "id": 4957,
"properties": {
"attached": "false",
"rotation": "15",
@@ -209937,192 +214481,192 @@
]
},
"states": [
- {
- "id": 242,
- "properties": {
- "distance": "1",
- "persistent": "true",
- "waterlogged": "true"
- }
- },
- {
- "id": 243,
- "properties": {
- "distance": "1",
- "persistent": "true",
- "waterlogged": "false"
- }
- },
- {
- "id": 244,
- "properties": {
- "distance": "1",
- "persistent": "false",
- "waterlogged": "true"
- }
- },
- {
- "id": 245,
- "properties": {
- "distance": "1",
- "persistent": "false",
- "waterlogged": "false"
- }
- },
- {
- "id": 246,
- "properties": {
- "distance": "2",
- "persistent": "true",
- "waterlogged": "true"
- }
- },
- {
- "id": 247,
- "properties": {
- "distance": "2",
- "persistent": "true",
- "waterlogged": "false"
- }
- },
- {
- "id": 248,
- "properties": {
- "distance": "2",
- "persistent": "false",
- "waterlogged": "true"
- }
- },
- {
- "id": 249,
- "properties": {
- "distance": "2",
- "persistent": "false",
- "waterlogged": "false"
- }
- },
- {
- "id": 250,
- "properties": {
- "distance": "3",
- "persistent": "true",
- "waterlogged": "true"
- }
- },
- {
- "id": 251,
- "properties": {
- "distance": "3",
- "persistent": "true",
- "waterlogged": "false"
- }
- },
- {
- "id": 252,
- "properties": {
- "distance": "3",
- "persistent": "false",
- "waterlogged": "true"
- }
- },
- {
- "id": 253,
- "properties": {
- "distance": "3",
- "persistent": "false",
- "waterlogged": "false"
- }
- },
- {
- "id": 254,
- "properties": {
- "distance": "4",
- "persistent": "true",
- "waterlogged": "true"
- }
- },
- {
- "id": 255,
- "properties": {
- "distance": "4",
- "persistent": "true",
- "waterlogged": "false"
- }
- },
- {
- "id": 256,
- "properties": {
- "distance": "4",
- "persistent": "false",
- "waterlogged": "true"
- }
- },
- {
- "id": 257,
- "properties": {
- "distance": "4",
- "persistent": "false",
- "waterlogged": "false"
- }
- },
- {
- "id": 258,
- "properties": {
- "distance": "5",
- "persistent": "true",
- "waterlogged": "true"
- }
- },
- {
- "id": 259,
- "properties": {
- "distance": "5",
- "persistent": "true",
- "waterlogged": "false"
- }
- },
- {
- "id": 260,
- "properties": {
- "distance": "5",
- "persistent": "false",
- "waterlogged": "true"
- }
- },
{
"id": 261,
"properties": {
- "distance": "5",
- "persistent": "false",
- "waterlogged": "false"
+ "distance": "1",
+ "persistent": "true",
+ "waterlogged": "true"
}
},
{
"id": 262,
"properties": {
- "distance": "6",
+ "distance": "1",
"persistent": "true",
- "waterlogged": "true"
+ "waterlogged": "false"
}
},
{
"id": 263,
"properties": {
- "distance": "6",
- "persistent": "true",
- "waterlogged": "false"
+ "distance": "1",
+ "persistent": "false",
+ "waterlogged": "true"
}
},
{
"id": 264,
"properties": {
- "distance": "6",
+ "distance": "1",
"persistent": "false",
- "waterlogged": "true"
+ "waterlogged": "false"
}
},
{
"id": 265,
+ "properties": {
+ "distance": "2",
+ "persistent": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 266,
+ "properties": {
+ "distance": "2",
+ "persistent": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 267,
+ "properties": {
+ "distance": "2",
+ "persistent": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 268,
+ "properties": {
+ "distance": "2",
+ "persistent": "false",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 269,
+ "properties": {
+ "distance": "3",
+ "persistent": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 270,
+ "properties": {
+ "distance": "3",
+ "persistent": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 271,
+ "properties": {
+ "distance": "3",
+ "persistent": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 272,
+ "properties": {
+ "distance": "3",
+ "persistent": "false",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 273,
+ "properties": {
+ "distance": "4",
+ "persistent": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 274,
+ "properties": {
+ "distance": "4",
+ "persistent": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 275,
+ "properties": {
+ "distance": "4",
+ "persistent": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 276,
+ "properties": {
+ "distance": "4",
+ "persistent": "false",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 277,
+ "properties": {
+ "distance": "5",
+ "persistent": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 278,
+ "properties": {
+ "distance": "5",
+ "persistent": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 279,
+ "properties": {
+ "distance": "5",
+ "persistent": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 280,
+ "properties": {
+ "distance": "5",
+ "persistent": "false",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 281,
+ "properties": {
+ "distance": "6",
+ "persistent": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 282,
+ "properties": {
+ "distance": "6",
+ "persistent": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 283,
+ "properties": {
+ "distance": "6",
+ "persistent": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 284,
"properties": {
"distance": "6",
"persistent": "false",
@@ -210130,7 +214674,7 @@
}
},
{
- "id": 266,
+ "id": 285,
"properties": {
"distance": "7",
"persistent": "true",
@@ -210138,7 +214682,7 @@
}
},
{
- "id": 267,
+ "id": 286,
"properties": {
"distance": "7",
"persistent": "true",
@@ -210146,7 +214690,7 @@
}
},
{
- "id": 268,
+ "id": 287,
"properties": {
"distance": "7",
"persistent": "false",
@@ -210155,7 +214699,7 @@
},
{
"default": true,
- "id": 269,
+ "id": 288,
"properties": {
"distance": "7",
"persistent": "false",
@@ -210174,20 +214718,20 @@
},
"states": [
{
- "id": 122,
+ "id": 129,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 123,
+ "id": 130,
"properties": {
"axis": "y"
}
},
{
- "id": 124,
+ "id": 131,
"properties": {
"axis": "z"
}
@@ -210211,14 +214755,14 @@
},
"states": [
{
- "id": 5554,
+ "id": 5714,
"properties": {
"powered": "true"
}
},
{
"default": true,
- "id": 5555,
+ "id": 5715,
"properties": {
"powered": "false"
}
@@ -210235,13 +214779,13 @@
"states": [
{
"default": true,
- "id": 26,
+ "id": 27,
"properties": {
"stage": "0"
}
},
{
- "id": 27,
+ "id": 28,
"properties": {
"stage": "1"
}
@@ -210275,7 +214819,7 @@
},
"states": [
{
- "id": 4282,
+ "id": 4330,
"properties": {
"rotation": "0",
"waterlogged": "true"
@@ -210283,217 +214827,217 @@
},
{
"default": true,
- "id": 4283,
+ "id": 4331,
"properties": {
"rotation": "0",
"waterlogged": "false"
}
},
{
- "id": 4284,
+ "id": 4332,
"properties": {
"rotation": "1",
"waterlogged": "true"
}
},
{
- "id": 4285,
+ "id": 4333,
"properties": {
"rotation": "1",
"waterlogged": "false"
}
},
{
- "id": 4286,
+ "id": 4334,
"properties": {
"rotation": "2",
"waterlogged": "true"
}
},
{
- "id": 4287,
+ "id": 4335,
"properties": {
"rotation": "2",
"waterlogged": "false"
}
},
{
- "id": 4288,
+ "id": 4336,
"properties": {
"rotation": "3",
"waterlogged": "true"
}
},
{
- "id": 4289,
+ "id": 4337,
"properties": {
"rotation": "3",
"waterlogged": "false"
}
},
{
- "id": 4290,
+ "id": 4338,
"properties": {
"rotation": "4",
"waterlogged": "true"
}
},
{
- "id": 4291,
+ "id": 4339,
"properties": {
"rotation": "4",
"waterlogged": "false"
}
},
{
- "id": 4292,
+ "id": 4340,
"properties": {
"rotation": "5",
"waterlogged": "true"
}
},
{
- "id": 4293,
+ "id": 4341,
"properties": {
"rotation": "5",
"waterlogged": "false"
}
},
{
- "id": 4294,
+ "id": 4342,
"properties": {
"rotation": "6",
"waterlogged": "true"
}
},
{
- "id": 4295,
+ "id": 4343,
"properties": {
"rotation": "6",
"waterlogged": "false"
}
},
{
- "id": 4296,
+ "id": 4344,
"properties": {
"rotation": "7",
"waterlogged": "true"
}
},
{
- "id": 4297,
+ "id": 4345,
"properties": {
"rotation": "7",
"waterlogged": "false"
}
},
{
- "id": 4298,
+ "id": 4346,
"properties": {
"rotation": "8",
"waterlogged": "true"
}
},
{
- "id": 4299,
+ "id": 4347,
"properties": {
"rotation": "8",
"waterlogged": "false"
}
},
{
- "id": 4300,
+ "id": 4348,
"properties": {
"rotation": "9",
"waterlogged": "true"
}
},
{
- "id": 4301,
+ "id": 4349,
"properties": {
"rotation": "9",
"waterlogged": "false"
}
},
{
- "id": 4302,
+ "id": 4350,
"properties": {
"rotation": "10",
"waterlogged": "true"
}
},
{
- "id": 4303,
+ "id": 4351,
"properties": {
"rotation": "10",
"waterlogged": "false"
}
},
{
- "id": 4304,
+ "id": 4352,
"properties": {
"rotation": "11",
"waterlogged": "true"
}
},
{
- "id": 4305,
+ "id": 4353,
"properties": {
"rotation": "11",
"waterlogged": "false"
}
},
{
- "id": 4306,
+ "id": 4354,
"properties": {
"rotation": "12",
"waterlogged": "true"
}
},
{
- "id": 4307,
+ "id": 4355,
"properties": {
"rotation": "12",
"waterlogged": "false"
}
},
{
- "id": 4308,
+ "id": 4356,
"properties": {
"rotation": "13",
"waterlogged": "true"
}
},
{
- "id": 4309,
+ "id": 4357,
"properties": {
"rotation": "13",
"waterlogged": "false"
}
},
{
- "id": 4310,
+ "id": 4358,
"properties": {
"rotation": "14",
"waterlogged": "true"
}
},
{
- "id": 4311,
+ "id": 4359,
"properties": {
"rotation": "14",
"waterlogged": "false"
}
},
{
- "id": 4312,
+ "id": 4360,
"properties": {
"rotation": "15",
"waterlogged": "true"
}
},
{
- "id": 4313,
+ "id": 4361,
"properties": {
"rotation": "15",
"waterlogged": "false"
@@ -210515,21 +215059,21 @@
},
"states": [
{
- "id": 10691,
+ "id": 11023,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 10692,
+ "id": 11024,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 10693,
+ "id": 11025,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -210537,21 +215081,21 @@
},
{
"default": true,
- "id": 10694,
+ "id": 11026,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 10695,
+ "id": 11027,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 10696,
+ "id": 11028,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -210585,7 +215129,7 @@
},
"states": [
{
- "id": 7436,
+ "id": 7662,
"properties": {
"facing": "north",
"half": "top",
@@ -210594,7 +215138,7 @@
}
},
{
- "id": 7437,
+ "id": 7663,
"properties": {
"facing": "north",
"half": "top",
@@ -210603,7 +215147,7 @@
}
},
{
- "id": 7438,
+ "id": 7664,
"properties": {
"facing": "north",
"half": "top",
@@ -210612,7 +215156,7 @@
}
},
{
- "id": 7439,
+ "id": 7665,
"properties": {
"facing": "north",
"half": "top",
@@ -210621,7 +215165,7 @@
}
},
{
- "id": 7440,
+ "id": 7666,
"properties": {
"facing": "north",
"half": "top",
@@ -210630,7 +215174,7 @@
}
},
{
- "id": 7441,
+ "id": 7667,
"properties": {
"facing": "north",
"half": "top",
@@ -210639,7 +215183,7 @@
}
},
{
- "id": 7442,
+ "id": 7668,
"properties": {
"facing": "north",
"half": "top",
@@ -210648,7 +215192,7 @@
}
},
{
- "id": 7443,
+ "id": 7669,
"properties": {
"facing": "north",
"half": "top",
@@ -210657,7 +215201,7 @@
}
},
{
- "id": 7444,
+ "id": 7670,
"properties": {
"facing": "north",
"half": "top",
@@ -210666,7 +215210,7 @@
}
},
{
- "id": 7445,
+ "id": 7671,
"properties": {
"facing": "north",
"half": "top",
@@ -210675,7 +215219,7 @@
}
},
{
- "id": 7446,
+ "id": 7672,
"properties": {
"facing": "north",
"half": "bottom",
@@ -210685,7 +215229,7 @@
},
{
"default": true,
- "id": 7447,
+ "id": 7673,
"properties": {
"facing": "north",
"half": "bottom",
@@ -210694,7 +215238,7 @@
}
},
{
- "id": 7448,
+ "id": 7674,
"properties": {
"facing": "north",
"half": "bottom",
@@ -210703,7 +215247,7 @@
}
},
{
- "id": 7449,
+ "id": 7675,
"properties": {
"facing": "north",
"half": "bottom",
@@ -210712,7 +215256,7 @@
}
},
{
- "id": 7450,
+ "id": 7676,
"properties": {
"facing": "north",
"half": "bottom",
@@ -210721,7 +215265,7 @@
}
},
{
- "id": 7451,
+ "id": 7677,
"properties": {
"facing": "north",
"half": "bottom",
@@ -210730,7 +215274,7 @@
}
},
{
- "id": 7452,
+ "id": 7678,
"properties": {
"facing": "north",
"half": "bottom",
@@ -210739,7 +215283,7 @@
}
},
{
- "id": 7453,
+ "id": 7679,
"properties": {
"facing": "north",
"half": "bottom",
@@ -210748,7 +215292,7 @@
}
},
{
- "id": 7454,
+ "id": 7680,
"properties": {
"facing": "north",
"half": "bottom",
@@ -210757,7 +215301,7 @@
}
},
{
- "id": 7455,
+ "id": 7681,
"properties": {
"facing": "north",
"half": "bottom",
@@ -210766,7 +215310,7 @@
}
},
{
- "id": 7456,
+ "id": 7682,
"properties": {
"facing": "south",
"half": "top",
@@ -210775,7 +215319,7 @@
}
},
{
- "id": 7457,
+ "id": 7683,
"properties": {
"facing": "south",
"half": "top",
@@ -210784,7 +215328,7 @@
}
},
{
- "id": 7458,
+ "id": 7684,
"properties": {
"facing": "south",
"half": "top",
@@ -210793,7 +215337,7 @@
}
},
{
- "id": 7459,
+ "id": 7685,
"properties": {
"facing": "south",
"half": "top",
@@ -210802,7 +215346,7 @@
}
},
{
- "id": 7460,
+ "id": 7686,
"properties": {
"facing": "south",
"half": "top",
@@ -210811,7 +215355,7 @@
}
},
{
- "id": 7461,
+ "id": 7687,
"properties": {
"facing": "south",
"half": "top",
@@ -210820,7 +215364,7 @@
}
},
{
- "id": 7462,
+ "id": 7688,
"properties": {
"facing": "south",
"half": "top",
@@ -210829,7 +215373,7 @@
}
},
{
- "id": 7463,
+ "id": 7689,
"properties": {
"facing": "south",
"half": "top",
@@ -210838,7 +215382,7 @@
}
},
{
- "id": 7464,
+ "id": 7690,
"properties": {
"facing": "south",
"half": "top",
@@ -210847,7 +215391,7 @@
}
},
{
- "id": 7465,
+ "id": 7691,
"properties": {
"facing": "south",
"half": "top",
@@ -210856,7 +215400,7 @@
}
},
{
- "id": 7466,
+ "id": 7692,
"properties": {
"facing": "south",
"half": "bottom",
@@ -210865,7 +215409,7 @@
}
},
{
- "id": 7467,
+ "id": 7693,
"properties": {
"facing": "south",
"half": "bottom",
@@ -210874,7 +215418,7 @@
}
},
{
- "id": 7468,
+ "id": 7694,
"properties": {
"facing": "south",
"half": "bottom",
@@ -210883,7 +215427,7 @@
}
},
{
- "id": 7469,
+ "id": 7695,
"properties": {
"facing": "south",
"half": "bottom",
@@ -210892,7 +215436,7 @@
}
},
{
- "id": 7470,
+ "id": 7696,
"properties": {
"facing": "south",
"half": "bottom",
@@ -210901,7 +215445,7 @@
}
},
{
- "id": 7471,
+ "id": 7697,
"properties": {
"facing": "south",
"half": "bottom",
@@ -210910,7 +215454,7 @@
}
},
{
- "id": 7472,
+ "id": 7698,
"properties": {
"facing": "south",
"half": "bottom",
@@ -210919,7 +215463,7 @@
}
},
{
- "id": 7473,
+ "id": 7699,
"properties": {
"facing": "south",
"half": "bottom",
@@ -210928,7 +215472,7 @@
}
},
{
- "id": 7474,
+ "id": 7700,
"properties": {
"facing": "south",
"half": "bottom",
@@ -210937,7 +215481,7 @@
}
},
{
- "id": 7475,
+ "id": 7701,
"properties": {
"facing": "south",
"half": "bottom",
@@ -210946,7 +215490,7 @@
}
},
{
- "id": 7476,
+ "id": 7702,
"properties": {
"facing": "west",
"half": "top",
@@ -210955,7 +215499,7 @@
}
},
{
- "id": 7477,
+ "id": 7703,
"properties": {
"facing": "west",
"half": "top",
@@ -210964,7 +215508,7 @@
}
},
{
- "id": 7478,
+ "id": 7704,
"properties": {
"facing": "west",
"half": "top",
@@ -210973,7 +215517,7 @@
}
},
{
- "id": 7479,
+ "id": 7705,
"properties": {
"facing": "west",
"half": "top",
@@ -210982,7 +215526,7 @@
}
},
{
- "id": 7480,
+ "id": 7706,
"properties": {
"facing": "west",
"half": "top",
@@ -210991,7 +215535,7 @@
}
},
{
- "id": 7481,
+ "id": 7707,
"properties": {
"facing": "west",
"half": "top",
@@ -211000,7 +215544,7 @@
}
},
{
- "id": 7482,
+ "id": 7708,
"properties": {
"facing": "west",
"half": "top",
@@ -211009,7 +215553,7 @@
}
},
{
- "id": 7483,
+ "id": 7709,
"properties": {
"facing": "west",
"half": "top",
@@ -211018,7 +215562,7 @@
}
},
{
- "id": 7484,
+ "id": 7710,
"properties": {
"facing": "west",
"half": "top",
@@ -211027,7 +215571,7 @@
}
},
{
- "id": 7485,
+ "id": 7711,
"properties": {
"facing": "west",
"half": "top",
@@ -211036,7 +215580,7 @@
}
},
{
- "id": 7486,
+ "id": 7712,
"properties": {
"facing": "west",
"half": "bottom",
@@ -211045,7 +215589,7 @@
}
},
{
- "id": 7487,
+ "id": 7713,
"properties": {
"facing": "west",
"half": "bottom",
@@ -211054,7 +215598,7 @@
}
},
{
- "id": 7488,
+ "id": 7714,
"properties": {
"facing": "west",
"half": "bottom",
@@ -211063,7 +215607,7 @@
}
},
{
- "id": 7489,
+ "id": 7715,
"properties": {
"facing": "west",
"half": "bottom",
@@ -211072,7 +215616,7 @@
}
},
{
- "id": 7490,
+ "id": 7716,
"properties": {
"facing": "west",
"half": "bottom",
@@ -211081,7 +215625,7 @@
}
},
{
- "id": 7491,
+ "id": 7717,
"properties": {
"facing": "west",
"half": "bottom",
@@ -211090,7 +215634,7 @@
}
},
{
- "id": 7492,
+ "id": 7718,
"properties": {
"facing": "west",
"half": "bottom",
@@ -211099,7 +215643,7 @@
}
},
{
- "id": 7493,
+ "id": 7719,
"properties": {
"facing": "west",
"half": "bottom",
@@ -211108,7 +215652,7 @@
}
},
{
- "id": 7494,
+ "id": 7720,
"properties": {
"facing": "west",
"half": "bottom",
@@ -211117,7 +215661,7 @@
}
},
{
- "id": 7495,
+ "id": 7721,
"properties": {
"facing": "west",
"half": "bottom",
@@ -211126,7 +215670,7 @@
}
},
{
- "id": 7496,
+ "id": 7722,
"properties": {
"facing": "east",
"half": "top",
@@ -211135,7 +215679,7 @@
}
},
{
- "id": 7497,
+ "id": 7723,
"properties": {
"facing": "east",
"half": "top",
@@ -211144,7 +215688,7 @@
}
},
{
- "id": 7498,
+ "id": 7724,
"properties": {
"facing": "east",
"half": "top",
@@ -211153,7 +215697,7 @@
}
},
{
- "id": 7499,
+ "id": 7725,
"properties": {
"facing": "east",
"half": "top",
@@ -211162,7 +215706,7 @@
}
},
{
- "id": 7500,
+ "id": 7726,
"properties": {
"facing": "east",
"half": "top",
@@ -211171,7 +215715,7 @@
}
},
{
- "id": 7501,
+ "id": 7727,
"properties": {
"facing": "east",
"half": "top",
@@ -211180,7 +215724,7 @@
}
},
{
- "id": 7502,
+ "id": 7728,
"properties": {
"facing": "east",
"half": "top",
@@ -211189,7 +215733,7 @@
}
},
{
- "id": 7503,
+ "id": 7729,
"properties": {
"facing": "east",
"half": "top",
@@ -211198,7 +215742,7 @@
}
},
{
- "id": 7504,
+ "id": 7730,
"properties": {
"facing": "east",
"half": "top",
@@ -211207,7 +215751,7 @@
}
},
{
- "id": 7505,
+ "id": 7731,
"properties": {
"facing": "east",
"half": "top",
@@ -211216,7 +215760,7 @@
}
},
{
- "id": 7506,
+ "id": 7732,
"properties": {
"facing": "east",
"half": "bottom",
@@ -211225,7 +215769,7 @@
}
},
{
- "id": 7507,
+ "id": 7733,
"properties": {
"facing": "east",
"half": "bottom",
@@ -211234,7 +215778,7 @@
}
},
{
- "id": 7508,
+ "id": 7734,
"properties": {
"facing": "east",
"half": "bottom",
@@ -211243,7 +215787,7 @@
}
},
{
- "id": 7509,
+ "id": 7735,
"properties": {
"facing": "east",
"half": "bottom",
@@ -211252,7 +215796,7 @@
}
},
{
- "id": 7510,
+ "id": 7736,
"properties": {
"facing": "east",
"half": "bottom",
@@ -211261,7 +215805,7 @@
}
},
{
- "id": 7511,
+ "id": 7737,
"properties": {
"facing": "east",
"half": "bottom",
@@ -211270,7 +215814,7 @@
}
},
{
- "id": 7512,
+ "id": 7738,
"properties": {
"facing": "east",
"half": "bottom",
@@ -211279,7 +215823,7 @@
}
},
{
- "id": 7513,
+ "id": 7739,
"properties": {
"facing": "east",
"half": "bottom",
@@ -211288,7 +215832,7 @@
}
},
{
- "id": 7514,
+ "id": 7740,
"properties": {
"facing": "east",
"half": "bottom",
@@ -211297,7 +215841,7 @@
}
},
{
- "id": 7515,
+ "id": 7741,
"properties": {
"facing": "east",
"half": "bottom",
@@ -211334,7 +215878,7 @@
},
"states": [
{
- "id": 5860,
+ "id": 6022,
"properties": {
"facing": "north",
"half": "top",
@@ -211344,7 +215888,7 @@
}
},
{
- "id": 5861,
+ "id": 6023,
"properties": {
"facing": "north",
"half": "top",
@@ -211354,7 +215898,7 @@
}
},
{
- "id": 5862,
+ "id": 6024,
"properties": {
"facing": "north",
"half": "top",
@@ -211364,7 +215908,7 @@
}
},
{
- "id": 5863,
+ "id": 6025,
"properties": {
"facing": "north",
"half": "top",
@@ -211374,7 +215918,7 @@
}
},
{
- "id": 5864,
+ "id": 6026,
"properties": {
"facing": "north",
"half": "top",
@@ -211384,7 +215928,7 @@
}
},
{
- "id": 5865,
+ "id": 6027,
"properties": {
"facing": "north",
"half": "top",
@@ -211394,7 +215938,7 @@
}
},
{
- "id": 5866,
+ "id": 6028,
"properties": {
"facing": "north",
"half": "top",
@@ -211404,7 +215948,7 @@
}
},
{
- "id": 5867,
+ "id": 6029,
"properties": {
"facing": "north",
"half": "top",
@@ -211414,7 +215958,7 @@
}
},
{
- "id": 5868,
+ "id": 6030,
"properties": {
"facing": "north",
"half": "bottom",
@@ -211424,7 +215968,7 @@
}
},
{
- "id": 5869,
+ "id": 6031,
"properties": {
"facing": "north",
"half": "bottom",
@@ -211434,7 +215978,7 @@
}
},
{
- "id": 5870,
+ "id": 6032,
"properties": {
"facing": "north",
"half": "bottom",
@@ -211444,7 +215988,7 @@
}
},
{
- "id": 5871,
+ "id": 6033,
"properties": {
"facing": "north",
"half": "bottom",
@@ -211454,7 +215998,7 @@
}
},
{
- "id": 5872,
+ "id": 6034,
"properties": {
"facing": "north",
"half": "bottom",
@@ -211464,7 +216008,7 @@
}
},
{
- "id": 5873,
+ "id": 6035,
"properties": {
"facing": "north",
"half": "bottom",
@@ -211474,7 +216018,7 @@
}
},
{
- "id": 5874,
+ "id": 6036,
"properties": {
"facing": "north",
"half": "bottom",
@@ -211485,7 +216029,7 @@
},
{
"default": true,
- "id": 5875,
+ "id": 6037,
"properties": {
"facing": "north",
"half": "bottom",
@@ -211495,7 +216039,7 @@
}
},
{
- "id": 5876,
+ "id": 6038,
"properties": {
"facing": "south",
"half": "top",
@@ -211505,7 +216049,7 @@
}
},
{
- "id": 5877,
+ "id": 6039,
"properties": {
"facing": "south",
"half": "top",
@@ -211515,7 +216059,7 @@
}
},
{
- "id": 5878,
+ "id": 6040,
"properties": {
"facing": "south",
"half": "top",
@@ -211525,7 +216069,7 @@
}
},
{
- "id": 5879,
+ "id": 6041,
"properties": {
"facing": "south",
"half": "top",
@@ -211535,7 +216079,7 @@
}
},
{
- "id": 5880,
+ "id": 6042,
"properties": {
"facing": "south",
"half": "top",
@@ -211545,7 +216089,7 @@
}
},
{
- "id": 5881,
+ "id": 6043,
"properties": {
"facing": "south",
"half": "top",
@@ -211555,7 +216099,7 @@
}
},
{
- "id": 5882,
+ "id": 6044,
"properties": {
"facing": "south",
"half": "top",
@@ -211565,7 +216109,7 @@
}
},
{
- "id": 5883,
+ "id": 6045,
"properties": {
"facing": "south",
"half": "top",
@@ -211575,7 +216119,7 @@
}
},
{
- "id": 5884,
+ "id": 6046,
"properties": {
"facing": "south",
"half": "bottom",
@@ -211585,7 +216129,7 @@
}
},
{
- "id": 5885,
+ "id": 6047,
"properties": {
"facing": "south",
"half": "bottom",
@@ -211595,7 +216139,7 @@
}
},
{
- "id": 5886,
+ "id": 6048,
"properties": {
"facing": "south",
"half": "bottom",
@@ -211605,7 +216149,7 @@
}
},
{
- "id": 5887,
+ "id": 6049,
"properties": {
"facing": "south",
"half": "bottom",
@@ -211615,7 +216159,7 @@
}
},
{
- "id": 5888,
+ "id": 6050,
"properties": {
"facing": "south",
"half": "bottom",
@@ -211625,7 +216169,7 @@
}
},
{
- "id": 5889,
+ "id": 6051,
"properties": {
"facing": "south",
"half": "bottom",
@@ -211635,7 +216179,7 @@
}
},
{
- "id": 5890,
+ "id": 6052,
"properties": {
"facing": "south",
"half": "bottom",
@@ -211645,7 +216189,7 @@
}
},
{
- "id": 5891,
+ "id": 6053,
"properties": {
"facing": "south",
"half": "bottom",
@@ -211655,7 +216199,7 @@
}
},
{
- "id": 5892,
+ "id": 6054,
"properties": {
"facing": "west",
"half": "top",
@@ -211665,7 +216209,7 @@
}
},
{
- "id": 5893,
+ "id": 6055,
"properties": {
"facing": "west",
"half": "top",
@@ -211675,7 +216219,7 @@
}
},
{
- "id": 5894,
+ "id": 6056,
"properties": {
"facing": "west",
"half": "top",
@@ -211685,7 +216229,7 @@
}
},
{
- "id": 5895,
+ "id": 6057,
"properties": {
"facing": "west",
"half": "top",
@@ -211695,7 +216239,7 @@
}
},
{
- "id": 5896,
+ "id": 6058,
"properties": {
"facing": "west",
"half": "top",
@@ -211705,7 +216249,7 @@
}
},
{
- "id": 5897,
+ "id": 6059,
"properties": {
"facing": "west",
"half": "top",
@@ -211715,7 +216259,7 @@
}
},
{
- "id": 5898,
+ "id": 6060,
"properties": {
"facing": "west",
"half": "top",
@@ -211725,7 +216269,7 @@
}
},
{
- "id": 5899,
+ "id": 6061,
"properties": {
"facing": "west",
"half": "top",
@@ -211735,7 +216279,7 @@
}
},
{
- "id": 5900,
+ "id": 6062,
"properties": {
"facing": "west",
"half": "bottom",
@@ -211745,7 +216289,7 @@
}
},
{
- "id": 5901,
+ "id": 6063,
"properties": {
"facing": "west",
"half": "bottom",
@@ -211755,7 +216299,7 @@
}
},
{
- "id": 5902,
+ "id": 6064,
"properties": {
"facing": "west",
"half": "bottom",
@@ -211765,7 +216309,7 @@
}
},
{
- "id": 5903,
+ "id": 6065,
"properties": {
"facing": "west",
"half": "bottom",
@@ -211775,7 +216319,7 @@
}
},
{
- "id": 5904,
+ "id": 6066,
"properties": {
"facing": "west",
"half": "bottom",
@@ -211785,7 +216329,7 @@
}
},
{
- "id": 5905,
+ "id": 6067,
"properties": {
"facing": "west",
"half": "bottom",
@@ -211795,7 +216339,7 @@
}
},
{
- "id": 5906,
+ "id": 6068,
"properties": {
"facing": "west",
"half": "bottom",
@@ -211805,7 +216349,7 @@
}
},
{
- "id": 5907,
+ "id": 6069,
"properties": {
"facing": "west",
"half": "bottom",
@@ -211815,7 +216359,7 @@
}
},
{
- "id": 5908,
+ "id": 6070,
"properties": {
"facing": "east",
"half": "top",
@@ -211825,7 +216369,7 @@
}
},
{
- "id": 5909,
+ "id": 6071,
"properties": {
"facing": "east",
"half": "top",
@@ -211835,7 +216379,7 @@
}
},
{
- "id": 5910,
+ "id": 6072,
"properties": {
"facing": "east",
"half": "top",
@@ -211845,7 +216389,7 @@
}
},
{
- "id": 5911,
+ "id": 6073,
"properties": {
"facing": "east",
"half": "top",
@@ -211855,7 +216399,7 @@
}
},
{
- "id": 5912,
+ "id": 6074,
"properties": {
"facing": "east",
"half": "top",
@@ -211865,7 +216409,7 @@
}
},
{
- "id": 5913,
+ "id": 6075,
"properties": {
"facing": "east",
"half": "top",
@@ -211875,7 +216419,7 @@
}
},
{
- "id": 5914,
+ "id": 6076,
"properties": {
"facing": "east",
"half": "top",
@@ -211885,7 +216429,7 @@
}
},
{
- "id": 5915,
+ "id": 6077,
"properties": {
"facing": "east",
"half": "top",
@@ -211895,7 +216439,7 @@
}
},
{
- "id": 5916,
+ "id": 6078,
"properties": {
"facing": "east",
"half": "bottom",
@@ -211905,7 +216449,7 @@
}
},
{
- "id": 5917,
+ "id": 6079,
"properties": {
"facing": "east",
"half": "bottom",
@@ -211915,7 +216459,7 @@
}
},
{
- "id": 5918,
+ "id": 6080,
"properties": {
"facing": "east",
"half": "bottom",
@@ -211925,7 +216469,7 @@
}
},
{
- "id": 5919,
+ "id": 6081,
"properties": {
"facing": "east",
"half": "bottom",
@@ -211935,7 +216479,7 @@
}
},
{
- "id": 5920,
+ "id": 6082,
"properties": {
"facing": "east",
"half": "bottom",
@@ -211945,7 +216489,7 @@
}
},
{
- "id": 5921,
+ "id": 6083,
"properties": {
"facing": "east",
"half": "bottom",
@@ -211955,7 +216499,7 @@
}
},
{
- "id": 5922,
+ "id": 6084,
"properties": {
"facing": "east",
"half": "bottom",
@@ -211965,7 +216509,7 @@
}
},
{
- "id": 5923,
+ "id": 6085,
"properties": {
"facing": "east",
"half": "bottom",
@@ -211991,7 +216535,7 @@
},
"states": [
{
- "id": 5390,
+ "id": 5542,
"properties": {
"facing": "north",
"waterlogged": "true"
@@ -211999,49 +216543,49 @@
},
{
"default": true,
- "id": 5391,
+ "id": 5543,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 5392,
+ "id": 5544,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 5393,
+ "id": 5545,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 5394,
+ "id": 5546,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 5395,
+ "id": 5547,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 5396,
+ "id": 5548,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 5397,
+ "id": 5549,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -212064,7 +216608,7 @@
},
"states": [
{
- "id": 4686,
+ "id": 4766,
"properties": {
"facing": "north",
"waterlogged": "true"
@@ -212072,49 +216616,49 @@
},
{
"default": true,
- "id": 4687,
+ "id": 4767,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 4688,
+ "id": 4768,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 4689,
+ "id": 4769,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 4690,
+ "id": 4770,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 4691,
+ "id": 4771,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 4692,
+ "id": 4772,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 4693,
+ "id": 4773,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -212132,20 +216676,20 @@
},
"states": [
{
- "id": 175,
+ "id": 188,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 176,
+ "id": 189,
"properties": {
"axis": "y"
}
},
{
- "id": 177,
+ "id": 190,
"properties": {
"axis": "z"
}
@@ -212169,42 +216713,42 @@
},
"states": [
{
- "id": 1941,
+ "id": 1988,
"properties": {
"extended": "true",
"facing": "north"
}
},
{
- "id": 1942,
+ "id": 1989,
"properties": {
"extended": "true",
"facing": "east"
}
},
{
- "id": 1943,
+ "id": 1990,
"properties": {
"extended": "true",
"facing": "south"
}
},
{
- "id": 1944,
+ "id": 1991,
"properties": {
"extended": "true",
"facing": "west"
}
},
{
- "id": 1945,
+ "id": 1992,
"properties": {
"extended": "true",
"facing": "up"
}
},
{
- "id": 1946,
+ "id": 1993,
"properties": {
"extended": "true",
"facing": "down"
@@ -212212,42 +216756,42 @@
},
{
"default": true,
- "id": 1947,
+ "id": 1994,
"properties": {
"extended": "false",
"facing": "north"
}
},
{
- "id": 1948,
+ "id": 1995,
"properties": {
"extended": "false",
"facing": "east"
}
},
{
- "id": 1949,
+ "id": 1996,
"properties": {
"extended": "false",
"facing": "south"
}
},
{
- "id": 1950,
+ "id": 1997,
"properties": {
"extended": "false",
"facing": "west"
}
},
{
- "id": 1951,
+ "id": 1998,
"properties": {
"extended": "false",
"facing": "up"
}
},
{
- "id": 1952,
+ "id": 1999,
"properties": {
"extended": "false",
"facing": "down"
@@ -212277,21 +216821,21 @@
},
"states": [
{
- "id": 10781,
+ "id": 11119,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 10782,
+ "id": 11120,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 10783,
+ "id": 11121,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -212299,21 +216843,21 @@
},
{
"default": true,
- "id": 10784,
+ "id": 11122,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 10785,
+ "id": 11123,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 10786,
+ "id": 11124,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -212347,7 +216891,7 @@
},
"states": [
{
- "id": 6879,
+ "id": 7105,
"properties": {
"facing": "north",
"half": "top",
@@ -212356,7 +216900,7 @@
}
},
{
- "id": 6880,
+ "id": 7106,
"properties": {
"facing": "north",
"half": "top",
@@ -212365,7 +216909,7 @@
}
},
{
- "id": 6881,
+ "id": 7107,
"properties": {
"facing": "north",
"half": "top",
@@ -212374,7 +216918,7 @@
}
},
{
- "id": 6882,
+ "id": 7108,
"properties": {
"facing": "north",
"half": "top",
@@ -212383,7 +216927,7 @@
}
},
{
- "id": 6883,
+ "id": 7109,
"properties": {
"facing": "north",
"half": "top",
@@ -212392,7 +216936,7 @@
}
},
{
- "id": 6884,
+ "id": 7110,
"properties": {
"facing": "north",
"half": "top",
@@ -212401,7 +216945,7 @@
}
},
{
- "id": 6885,
+ "id": 7111,
"properties": {
"facing": "north",
"half": "top",
@@ -212410,7 +216954,7 @@
}
},
{
- "id": 6886,
+ "id": 7112,
"properties": {
"facing": "north",
"half": "top",
@@ -212419,7 +216963,7 @@
}
},
{
- "id": 6887,
+ "id": 7113,
"properties": {
"facing": "north",
"half": "top",
@@ -212428,7 +216972,7 @@
}
},
{
- "id": 6888,
+ "id": 7114,
"properties": {
"facing": "north",
"half": "top",
@@ -212437,7 +216981,7 @@
}
},
{
- "id": 6889,
+ "id": 7115,
"properties": {
"facing": "north",
"half": "bottom",
@@ -212447,7 +216991,7 @@
},
{
"default": true,
- "id": 6890,
+ "id": 7116,
"properties": {
"facing": "north",
"half": "bottom",
@@ -212456,7 +217000,7 @@
}
},
{
- "id": 6891,
+ "id": 7117,
"properties": {
"facing": "north",
"half": "bottom",
@@ -212465,7 +217009,7 @@
}
},
{
- "id": 6892,
+ "id": 7118,
"properties": {
"facing": "north",
"half": "bottom",
@@ -212474,7 +217018,7 @@
}
},
{
- "id": 6893,
+ "id": 7119,
"properties": {
"facing": "north",
"half": "bottom",
@@ -212483,7 +217027,7 @@
}
},
{
- "id": 6894,
+ "id": 7120,
"properties": {
"facing": "north",
"half": "bottom",
@@ -212492,7 +217036,7 @@
}
},
{
- "id": 6895,
+ "id": 7121,
"properties": {
"facing": "north",
"half": "bottom",
@@ -212501,7 +217045,7 @@
}
},
{
- "id": 6896,
+ "id": 7122,
"properties": {
"facing": "north",
"half": "bottom",
@@ -212510,7 +217054,7 @@
}
},
{
- "id": 6897,
+ "id": 7123,
"properties": {
"facing": "north",
"half": "bottom",
@@ -212519,7 +217063,7 @@
}
},
{
- "id": 6898,
+ "id": 7124,
"properties": {
"facing": "north",
"half": "bottom",
@@ -212528,7 +217072,7 @@
}
},
{
- "id": 6899,
+ "id": 7125,
"properties": {
"facing": "south",
"half": "top",
@@ -212537,7 +217081,7 @@
}
},
{
- "id": 6900,
+ "id": 7126,
"properties": {
"facing": "south",
"half": "top",
@@ -212546,7 +217090,7 @@
}
},
{
- "id": 6901,
+ "id": 7127,
"properties": {
"facing": "south",
"half": "top",
@@ -212555,7 +217099,7 @@
}
},
{
- "id": 6902,
+ "id": 7128,
"properties": {
"facing": "south",
"half": "top",
@@ -212564,7 +217108,7 @@
}
},
{
- "id": 6903,
+ "id": 7129,
"properties": {
"facing": "south",
"half": "top",
@@ -212573,7 +217117,7 @@
}
},
{
- "id": 6904,
+ "id": 7130,
"properties": {
"facing": "south",
"half": "top",
@@ -212582,7 +217126,7 @@
}
},
{
- "id": 6905,
+ "id": 7131,
"properties": {
"facing": "south",
"half": "top",
@@ -212591,7 +217135,7 @@
}
},
{
- "id": 6906,
+ "id": 7132,
"properties": {
"facing": "south",
"half": "top",
@@ -212600,7 +217144,7 @@
}
},
{
- "id": 6907,
+ "id": 7133,
"properties": {
"facing": "south",
"half": "top",
@@ -212609,7 +217153,7 @@
}
},
{
- "id": 6908,
+ "id": 7134,
"properties": {
"facing": "south",
"half": "top",
@@ -212618,7 +217162,7 @@
}
},
{
- "id": 6909,
+ "id": 7135,
"properties": {
"facing": "south",
"half": "bottom",
@@ -212627,7 +217171,7 @@
}
},
{
- "id": 6910,
+ "id": 7136,
"properties": {
"facing": "south",
"half": "bottom",
@@ -212636,7 +217180,7 @@
}
},
{
- "id": 6911,
+ "id": 7137,
"properties": {
"facing": "south",
"half": "bottom",
@@ -212645,7 +217189,7 @@
}
},
{
- "id": 6912,
+ "id": 7138,
"properties": {
"facing": "south",
"half": "bottom",
@@ -212654,7 +217198,7 @@
}
},
{
- "id": 6913,
+ "id": 7139,
"properties": {
"facing": "south",
"half": "bottom",
@@ -212663,7 +217207,7 @@
}
},
{
- "id": 6914,
+ "id": 7140,
"properties": {
"facing": "south",
"half": "bottom",
@@ -212672,7 +217216,7 @@
}
},
{
- "id": 6915,
+ "id": 7141,
"properties": {
"facing": "south",
"half": "bottom",
@@ -212681,7 +217225,7 @@
}
},
{
- "id": 6916,
+ "id": 7142,
"properties": {
"facing": "south",
"half": "bottom",
@@ -212690,7 +217234,7 @@
}
},
{
- "id": 6917,
+ "id": 7143,
"properties": {
"facing": "south",
"half": "bottom",
@@ -212699,7 +217243,7 @@
}
},
{
- "id": 6918,
+ "id": 7144,
"properties": {
"facing": "south",
"half": "bottom",
@@ -212708,7 +217252,7 @@
}
},
{
- "id": 6919,
+ "id": 7145,
"properties": {
"facing": "west",
"half": "top",
@@ -212717,7 +217261,7 @@
}
},
{
- "id": 6920,
+ "id": 7146,
"properties": {
"facing": "west",
"half": "top",
@@ -212726,7 +217270,7 @@
}
},
{
- "id": 6921,
+ "id": 7147,
"properties": {
"facing": "west",
"half": "top",
@@ -212735,7 +217279,7 @@
}
},
{
- "id": 6922,
+ "id": 7148,
"properties": {
"facing": "west",
"half": "top",
@@ -212744,7 +217288,7 @@
}
},
{
- "id": 6923,
+ "id": 7149,
"properties": {
"facing": "west",
"half": "top",
@@ -212753,7 +217297,7 @@
}
},
{
- "id": 6924,
+ "id": 7150,
"properties": {
"facing": "west",
"half": "top",
@@ -212762,7 +217306,7 @@
}
},
{
- "id": 6925,
+ "id": 7151,
"properties": {
"facing": "west",
"half": "top",
@@ -212771,7 +217315,7 @@
}
},
{
- "id": 6926,
+ "id": 7152,
"properties": {
"facing": "west",
"half": "top",
@@ -212780,7 +217324,7 @@
}
},
{
- "id": 6927,
+ "id": 7153,
"properties": {
"facing": "west",
"half": "top",
@@ -212789,7 +217333,7 @@
}
},
{
- "id": 6928,
+ "id": 7154,
"properties": {
"facing": "west",
"half": "top",
@@ -212798,7 +217342,7 @@
}
},
{
- "id": 6929,
+ "id": 7155,
"properties": {
"facing": "west",
"half": "bottom",
@@ -212807,7 +217351,7 @@
}
},
{
- "id": 6930,
+ "id": 7156,
"properties": {
"facing": "west",
"half": "bottom",
@@ -212816,7 +217360,7 @@
}
},
{
- "id": 6931,
+ "id": 7157,
"properties": {
"facing": "west",
"half": "bottom",
@@ -212825,7 +217369,7 @@
}
},
{
- "id": 6932,
+ "id": 7158,
"properties": {
"facing": "west",
"half": "bottom",
@@ -212834,7 +217378,7 @@
}
},
{
- "id": 6933,
+ "id": 7159,
"properties": {
"facing": "west",
"half": "bottom",
@@ -212843,7 +217387,7 @@
}
},
{
- "id": 6934,
+ "id": 7160,
"properties": {
"facing": "west",
"half": "bottom",
@@ -212852,7 +217396,7 @@
}
},
{
- "id": 6935,
+ "id": 7161,
"properties": {
"facing": "west",
"half": "bottom",
@@ -212861,7 +217405,7 @@
}
},
{
- "id": 6936,
+ "id": 7162,
"properties": {
"facing": "west",
"half": "bottom",
@@ -212870,7 +217414,7 @@
}
},
{
- "id": 6937,
+ "id": 7163,
"properties": {
"facing": "west",
"half": "bottom",
@@ -212879,7 +217423,7 @@
}
},
{
- "id": 6938,
+ "id": 7164,
"properties": {
"facing": "west",
"half": "bottom",
@@ -212888,7 +217432,7 @@
}
},
{
- "id": 6939,
+ "id": 7165,
"properties": {
"facing": "east",
"half": "top",
@@ -212897,7 +217441,7 @@
}
},
{
- "id": 6940,
+ "id": 7166,
"properties": {
"facing": "east",
"half": "top",
@@ -212906,7 +217450,7 @@
}
},
{
- "id": 6941,
+ "id": 7167,
"properties": {
"facing": "east",
"half": "top",
@@ -212915,7 +217459,7 @@
}
},
{
- "id": 6942,
+ "id": 7168,
"properties": {
"facing": "east",
"half": "top",
@@ -212924,7 +217468,7 @@
}
},
{
- "id": 6943,
+ "id": 7169,
"properties": {
"facing": "east",
"half": "top",
@@ -212933,7 +217477,7 @@
}
},
{
- "id": 6944,
+ "id": 7170,
"properties": {
"facing": "east",
"half": "top",
@@ -212942,7 +217486,7 @@
}
},
{
- "id": 6945,
+ "id": 7171,
"properties": {
"facing": "east",
"half": "top",
@@ -212951,7 +217495,7 @@
}
},
{
- "id": 6946,
+ "id": 7172,
"properties": {
"facing": "east",
"half": "top",
@@ -212960,7 +217504,7 @@
}
},
{
- "id": 6947,
+ "id": 7173,
"properties": {
"facing": "east",
"half": "top",
@@ -212969,7 +217513,7 @@
}
},
{
- "id": 6948,
+ "id": 7174,
"properties": {
"facing": "east",
"half": "top",
@@ -212978,7 +217522,7 @@
}
},
{
- "id": 6949,
+ "id": 7175,
"properties": {
"facing": "east",
"half": "bottom",
@@ -212987,7 +217531,7 @@
}
},
{
- "id": 6950,
+ "id": 7176,
"properties": {
"facing": "east",
"half": "bottom",
@@ -212996,7 +217540,7 @@
}
},
{
- "id": 6951,
+ "id": 7177,
"properties": {
"facing": "east",
"half": "bottom",
@@ -213005,7 +217549,7 @@
}
},
{
- "id": 6952,
+ "id": 7178,
"properties": {
"facing": "east",
"half": "bottom",
@@ -213014,7 +217558,7 @@
}
},
{
- "id": 6953,
+ "id": 7179,
"properties": {
"facing": "east",
"half": "bottom",
@@ -213023,7 +217567,7 @@
}
},
{
- "id": 6954,
+ "id": 7180,
"properties": {
"facing": "east",
"half": "bottom",
@@ -213032,7 +217576,7 @@
}
},
{
- "id": 6955,
+ "id": 7181,
"properties": {
"facing": "east",
"half": "bottom",
@@ -213041,7 +217585,7 @@
}
},
{
- "id": 6956,
+ "id": 7182,
"properties": {
"facing": "east",
"half": "bottom",
@@ -213050,7 +217594,7 @@
}
},
{
- "id": 6957,
+ "id": 7183,
"properties": {
"facing": "east",
"half": "bottom",
@@ -213059,7 +217603,7 @@
}
},
{
- "id": 6958,
+ "id": 7184,
"properties": {
"facing": "east",
"half": "bottom",
@@ -213102,7 +217646,7 @@
},
"states": [
{
- "id": 15152,
+ "id": 15621,
"properties": {
"east": "none",
"north": "none",
@@ -213113,7 +217657,7 @@
}
},
{
- "id": 15153,
+ "id": 15622,
"properties": {
"east": "none",
"north": "none",
@@ -213124,7 +217668,7 @@
}
},
{
- "id": 15154,
+ "id": 15623,
"properties": {
"east": "none",
"north": "none",
@@ -213136,7 +217680,7 @@
},
{
"default": true,
- "id": 15155,
+ "id": 15624,
"properties": {
"east": "none",
"north": "none",
@@ -213147,7 +217691,7 @@
}
},
{
- "id": 15156,
+ "id": 15625,
"properties": {
"east": "none",
"north": "none",
@@ -213158,7 +217702,7 @@
}
},
{
- "id": 15157,
+ "id": 15626,
"properties": {
"east": "none",
"north": "none",
@@ -213169,7 +217713,7 @@
}
},
{
- "id": 15158,
+ "id": 15627,
"properties": {
"east": "none",
"north": "none",
@@ -213180,7 +217724,7 @@
}
},
{
- "id": 15159,
+ "id": 15628,
"properties": {
"east": "none",
"north": "none",
@@ -213191,7 +217735,7 @@
}
},
{
- "id": 15160,
+ "id": 15629,
"properties": {
"east": "none",
"north": "none",
@@ -213202,7 +217746,7 @@
}
},
{
- "id": 15161,
+ "id": 15630,
"properties": {
"east": "none",
"north": "none",
@@ -213213,7 +217757,7 @@
}
},
{
- "id": 15162,
+ "id": 15631,
"properties": {
"east": "none",
"north": "none",
@@ -213224,7 +217768,7 @@
}
},
{
- "id": 15163,
+ "id": 15632,
"properties": {
"east": "none",
"north": "none",
@@ -213235,7 +217779,7 @@
}
},
{
- "id": 15164,
+ "id": 15633,
"properties": {
"east": "none",
"north": "none",
@@ -213246,7 +217790,7 @@
}
},
{
- "id": 15165,
+ "id": 15634,
"properties": {
"east": "none",
"north": "none",
@@ -213257,7 +217801,7 @@
}
},
{
- "id": 15166,
+ "id": 15635,
"properties": {
"east": "none",
"north": "none",
@@ -213268,7 +217812,7 @@
}
},
{
- "id": 15167,
+ "id": 15636,
"properties": {
"east": "none",
"north": "none",
@@ -213279,7 +217823,7 @@
}
},
{
- "id": 15168,
+ "id": 15637,
"properties": {
"east": "none",
"north": "none",
@@ -213290,7 +217834,7 @@
}
},
{
- "id": 15169,
+ "id": 15638,
"properties": {
"east": "none",
"north": "none",
@@ -213301,7 +217845,7 @@
}
},
{
- "id": 15170,
+ "id": 15639,
"properties": {
"east": "none",
"north": "none",
@@ -213312,7 +217856,7 @@
}
},
{
- "id": 15171,
+ "id": 15640,
"properties": {
"east": "none",
"north": "none",
@@ -213323,7 +217867,7 @@
}
},
{
- "id": 15172,
+ "id": 15641,
"properties": {
"east": "none",
"north": "none",
@@ -213334,7 +217878,7 @@
}
},
{
- "id": 15173,
+ "id": 15642,
"properties": {
"east": "none",
"north": "none",
@@ -213345,7 +217889,7 @@
}
},
{
- "id": 15174,
+ "id": 15643,
"properties": {
"east": "none",
"north": "none",
@@ -213356,7 +217900,7 @@
}
},
{
- "id": 15175,
+ "id": 15644,
"properties": {
"east": "none",
"north": "none",
@@ -213367,7 +217911,7 @@
}
},
{
- "id": 15176,
+ "id": 15645,
"properties": {
"east": "none",
"north": "none",
@@ -213378,7 +217922,7 @@
}
},
{
- "id": 15177,
+ "id": 15646,
"properties": {
"east": "none",
"north": "none",
@@ -213389,7 +217933,7 @@
}
},
{
- "id": 15178,
+ "id": 15647,
"properties": {
"east": "none",
"north": "none",
@@ -213400,7 +217944,7 @@
}
},
{
- "id": 15179,
+ "id": 15648,
"properties": {
"east": "none",
"north": "none",
@@ -213411,7 +217955,7 @@
}
},
{
- "id": 15180,
+ "id": 15649,
"properties": {
"east": "none",
"north": "none",
@@ -213422,7 +217966,7 @@
}
},
{
- "id": 15181,
+ "id": 15650,
"properties": {
"east": "none",
"north": "none",
@@ -213433,7 +217977,7 @@
}
},
{
- "id": 15182,
+ "id": 15651,
"properties": {
"east": "none",
"north": "none",
@@ -213444,7 +217988,7 @@
}
},
{
- "id": 15183,
+ "id": 15652,
"properties": {
"east": "none",
"north": "none",
@@ -213455,7 +217999,7 @@
}
},
{
- "id": 15184,
+ "id": 15653,
"properties": {
"east": "none",
"north": "none",
@@ -213466,7 +218010,7 @@
}
},
{
- "id": 15185,
+ "id": 15654,
"properties": {
"east": "none",
"north": "none",
@@ -213477,7 +218021,7 @@
}
},
{
- "id": 15186,
+ "id": 15655,
"properties": {
"east": "none",
"north": "none",
@@ -213488,7 +218032,7 @@
}
},
{
- "id": 15187,
+ "id": 15656,
"properties": {
"east": "none",
"north": "none",
@@ -213499,7 +218043,7 @@
}
},
{
- "id": 15188,
+ "id": 15657,
"properties": {
"east": "none",
"north": "low",
@@ -213510,7 +218054,7 @@
}
},
{
- "id": 15189,
+ "id": 15658,
"properties": {
"east": "none",
"north": "low",
@@ -213521,7 +218065,7 @@
}
},
{
- "id": 15190,
+ "id": 15659,
"properties": {
"east": "none",
"north": "low",
@@ -213532,7 +218076,7 @@
}
},
{
- "id": 15191,
+ "id": 15660,
"properties": {
"east": "none",
"north": "low",
@@ -213543,7 +218087,7 @@
}
},
{
- "id": 15192,
+ "id": 15661,
"properties": {
"east": "none",
"north": "low",
@@ -213554,7 +218098,7 @@
}
},
{
- "id": 15193,
+ "id": 15662,
"properties": {
"east": "none",
"north": "low",
@@ -213565,7 +218109,7 @@
}
},
{
- "id": 15194,
+ "id": 15663,
"properties": {
"east": "none",
"north": "low",
@@ -213576,7 +218120,7 @@
}
},
{
- "id": 15195,
+ "id": 15664,
"properties": {
"east": "none",
"north": "low",
@@ -213587,7 +218131,7 @@
}
},
{
- "id": 15196,
+ "id": 15665,
"properties": {
"east": "none",
"north": "low",
@@ -213598,7 +218142,7 @@
}
},
{
- "id": 15197,
+ "id": 15666,
"properties": {
"east": "none",
"north": "low",
@@ -213609,7 +218153,7 @@
}
},
{
- "id": 15198,
+ "id": 15667,
"properties": {
"east": "none",
"north": "low",
@@ -213620,7 +218164,7 @@
}
},
{
- "id": 15199,
+ "id": 15668,
"properties": {
"east": "none",
"north": "low",
@@ -213631,7 +218175,7 @@
}
},
{
- "id": 15200,
+ "id": 15669,
"properties": {
"east": "none",
"north": "low",
@@ -213642,7 +218186,7 @@
}
},
{
- "id": 15201,
+ "id": 15670,
"properties": {
"east": "none",
"north": "low",
@@ -213653,7 +218197,7 @@
}
},
{
- "id": 15202,
+ "id": 15671,
"properties": {
"east": "none",
"north": "low",
@@ -213664,7 +218208,7 @@
}
},
{
- "id": 15203,
+ "id": 15672,
"properties": {
"east": "none",
"north": "low",
@@ -213675,7 +218219,7 @@
}
},
{
- "id": 15204,
+ "id": 15673,
"properties": {
"east": "none",
"north": "low",
@@ -213686,7 +218230,7 @@
}
},
{
- "id": 15205,
+ "id": 15674,
"properties": {
"east": "none",
"north": "low",
@@ -213697,7 +218241,7 @@
}
},
{
- "id": 15206,
+ "id": 15675,
"properties": {
"east": "none",
"north": "low",
@@ -213708,7 +218252,7 @@
}
},
{
- "id": 15207,
+ "id": 15676,
"properties": {
"east": "none",
"north": "low",
@@ -213719,7 +218263,7 @@
}
},
{
- "id": 15208,
+ "id": 15677,
"properties": {
"east": "none",
"north": "low",
@@ -213730,7 +218274,7 @@
}
},
{
- "id": 15209,
+ "id": 15678,
"properties": {
"east": "none",
"north": "low",
@@ -213741,7 +218285,7 @@
}
},
{
- "id": 15210,
+ "id": 15679,
"properties": {
"east": "none",
"north": "low",
@@ -213752,7 +218296,7 @@
}
},
{
- "id": 15211,
+ "id": 15680,
"properties": {
"east": "none",
"north": "low",
@@ -213763,7 +218307,7 @@
}
},
{
- "id": 15212,
+ "id": 15681,
"properties": {
"east": "none",
"north": "low",
@@ -213774,7 +218318,7 @@
}
},
{
- "id": 15213,
+ "id": 15682,
"properties": {
"east": "none",
"north": "low",
@@ -213785,7 +218329,7 @@
}
},
{
- "id": 15214,
+ "id": 15683,
"properties": {
"east": "none",
"north": "low",
@@ -213796,7 +218340,7 @@
}
},
{
- "id": 15215,
+ "id": 15684,
"properties": {
"east": "none",
"north": "low",
@@ -213807,7 +218351,7 @@
}
},
{
- "id": 15216,
+ "id": 15685,
"properties": {
"east": "none",
"north": "low",
@@ -213818,7 +218362,7 @@
}
},
{
- "id": 15217,
+ "id": 15686,
"properties": {
"east": "none",
"north": "low",
@@ -213829,7 +218373,7 @@
}
},
{
- "id": 15218,
+ "id": 15687,
"properties": {
"east": "none",
"north": "low",
@@ -213840,7 +218384,7 @@
}
},
{
- "id": 15219,
+ "id": 15688,
"properties": {
"east": "none",
"north": "low",
@@ -213851,7 +218395,7 @@
}
},
{
- "id": 15220,
+ "id": 15689,
"properties": {
"east": "none",
"north": "low",
@@ -213862,7 +218406,7 @@
}
},
{
- "id": 15221,
+ "id": 15690,
"properties": {
"east": "none",
"north": "low",
@@ -213873,7 +218417,7 @@
}
},
{
- "id": 15222,
+ "id": 15691,
"properties": {
"east": "none",
"north": "low",
@@ -213884,7 +218428,7 @@
}
},
{
- "id": 15223,
+ "id": 15692,
"properties": {
"east": "none",
"north": "low",
@@ -213895,7 +218439,7 @@
}
},
{
- "id": 15224,
+ "id": 15693,
"properties": {
"east": "none",
"north": "tall",
@@ -213906,7 +218450,7 @@
}
},
{
- "id": 15225,
+ "id": 15694,
"properties": {
"east": "none",
"north": "tall",
@@ -213917,7 +218461,7 @@
}
},
{
- "id": 15226,
+ "id": 15695,
"properties": {
"east": "none",
"north": "tall",
@@ -213928,7 +218472,7 @@
}
},
{
- "id": 15227,
+ "id": 15696,
"properties": {
"east": "none",
"north": "tall",
@@ -213939,7 +218483,7 @@
}
},
{
- "id": 15228,
+ "id": 15697,
"properties": {
"east": "none",
"north": "tall",
@@ -213950,7 +218494,7 @@
}
},
{
- "id": 15229,
+ "id": 15698,
"properties": {
"east": "none",
"north": "tall",
@@ -213961,7 +218505,7 @@
}
},
{
- "id": 15230,
+ "id": 15699,
"properties": {
"east": "none",
"north": "tall",
@@ -213972,7 +218516,7 @@
}
},
{
- "id": 15231,
+ "id": 15700,
"properties": {
"east": "none",
"north": "tall",
@@ -213983,7 +218527,7 @@
}
},
{
- "id": 15232,
+ "id": 15701,
"properties": {
"east": "none",
"north": "tall",
@@ -213994,7 +218538,7 @@
}
},
{
- "id": 15233,
+ "id": 15702,
"properties": {
"east": "none",
"north": "tall",
@@ -214005,7 +218549,7 @@
}
},
{
- "id": 15234,
+ "id": 15703,
"properties": {
"east": "none",
"north": "tall",
@@ -214016,7 +218560,7 @@
}
},
{
- "id": 15235,
+ "id": 15704,
"properties": {
"east": "none",
"north": "tall",
@@ -214027,7 +218571,7 @@
}
},
{
- "id": 15236,
+ "id": 15705,
"properties": {
"east": "none",
"north": "tall",
@@ -214038,7 +218582,7 @@
}
},
{
- "id": 15237,
+ "id": 15706,
"properties": {
"east": "none",
"north": "tall",
@@ -214049,7 +218593,7 @@
}
},
{
- "id": 15238,
+ "id": 15707,
"properties": {
"east": "none",
"north": "tall",
@@ -214060,7 +218604,7 @@
}
},
{
- "id": 15239,
+ "id": 15708,
"properties": {
"east": "none",
"north": "tall",
@@ -214071,7 +218615,7 @@
}
},
{
- "id": 15240,
+ "id": 15709,
"properties": {
"east": "none",
"north": "tall",
@@ -214082,7 +218626,7 @@
}
},
{
- "id": 15241,
+ "id": 15710,
"properties": {
"east": "none",
"north": "tall",
@@ -214093,7 +218637,7 @@
}
},
{
- "id": 15242,
+ "id": 15711,
"properties": {
"east": "none",
"north": "tall",
@@ -214104,7 +218648,7 @@
}
},
{
- "id": 15243,
+ "id": 15712,
"properties": {
"east": "none",
"north": "tall",
@@ -214115,7 +218659,7 @@
}
},
{
- "id": 15244,
+ "id": 15713,
"properties": {
"east": "none",
"north": "tall",
@@ -214126,7 +218670,7 @@
}
},
{
- "id": 15245,
+ "id": 15714,
"properties": {
"east": "none",
"north": "tall",
@@ -214137,7 +218681,7 @@
}
},
{
- "id": 15246,
+ "id": 15715,
"properties": {
"east": "none",
"north": "tall",
@@ -214148,7 +218692,7 @@
}
},
{
- "id": 15247,
+ "id": 15716,
"properties": {
"east": "none",
"north": "tall",
@@ -214159,7 +218703,7 @@
}
},
{
- "id": 15248,
+ "id": 15717,
"properties": {
"east": "none",
"north": "tall",
@@ -214170,7 +218714,7 @@
}
},
{
- "id": 15249,
+ "id": 15718,
"properties": {
"east": "none",
"north": "tall",
@@ -214181,7 +218725,7 @@
}
},
{
- "id": 15250,
+ "id": 15719,
"properties": {
"east": "none",
"north": "tall",
@@ -214192,7 +218736,7 @@
}
},
{
- "id": 15251,
+ "id": 15720,
"properties": {
"east": "none",
"north": "tall",
@@ -214203,7 +218747,7 @@
}
},
{
- "id": 15252,
+ "id": 15721,
"properties": {
"east": "none",
"north": "tall",
@@ -214214,7 +218758,7 @@
}
},
{
- "id": 15253,
+ "id": 15722,
"properties": {
"east": "none",
"north": "tall",
@@ -214225,7 +218769,7 @@
}
},
{
- "id": 15254,
+ "id": 15723,
"properties": {
"east": "none",
"north": "tall",
@@ -214236,7 +218780,7 @@
}
},
{
- "id": 15255,
+ "id": 15724,
"properties": {
"east": "none",
"north": "tall",
@@ -214247,7 +218791,7 @@
}
},
{
- "id": 15256,
+ "id": 15725,
"properties": {
"east": "none",
"north": "tall",
@@ -214258,7 +218802,7 @@
}
},
{
- "id": 15257,
+ "id": 15726,
"properties": {
"east": "none",
"north": "tall",
@@ -214269,7 +218813,7 @@
}
},
{
- "id": 15258,
+ "id": 15727,
"properties": {
"east": "none",
"north": "tall",
@@ -214280,7 +218824,7 @@
}
},
{
- "id": 15259,
+ "id": 15728,
"properties": {
"east": "none",
"north": "tall",
@@ -214291,7 +218835,7 @@
}
},
{
- "id": 15260,
+ "id": 15729,
"properties": {
"east": "low",
"north": "none",
@@ -214302,7 +218846,7 @@
}
},
{
- "id": 15261,
+ "id": 15730,
"properties": {
"east": "low",
"north": "none",
@@ -214313,7 +218857,7 @@
}
},
{
- "id": 15262,
+ "id": 15731,
"properties": {
"east": "low",
"north": "none",
@@ -214324,7 +218868,7 @@
}
},
{
- "id": 15263,
+ "id": 15732,
"properties": {
"east": "low",
"north": "none",
@@ -214335,7 +218879,7 @@
}
},
{
- "id": 15264,
+ "id": 15733,
"properties": {
"east": "low",
"north": "none",
@@ -214346,7 +218890,7 @@
}
},
{
- "id": 15265,
+ "id": 15734,
"properties": {
"east": "low",
"north": "none",
@@ -214357,7 +218901,7 @@
}
},
{
- "id": 15266,
+ "id": 15735,
"properties": {
"east": "low",
"north": "none",
@@ -214368,7 +218912,7 @@
}
},
{
- "id": 15267,
+ "id": 15736,
"properties": {
"east": "low",
"north": "none",
@@ -214379,7 +218923,7 @@
}
},
{
- "id": 15268,
+ "id": 15737,
"properties": {
"east": "low",
"north": "none",
@@ -214390,7 +218934,7 @@
}
},
{
- "id": 15269,
+ "id": 15738,
"properties": {
"east": "low",
"north": "none",
@@ -214401,7 +218945,7 @@
}
},
{
- "id": 15270,
+ "id": 15739,
"properties": {
"east": "low",
"north": "none",
@@ -214412,7 +218956,7 @@
}
},
{
- "id": 15271,
+ "id": 15740,
"properties": {
"east": "low",
"north": "none",
@@ -214423,7 +218967,7 @@
}
},
{
- "id": 15272,
+ "id": 15741,
"properties": {
"east": "low",
"north": "none",
@@ -214434,7 +218978,7 @@
}
},
{
- "id": 15273,
+ "id": 15742,
"properties": {
"east": "low",
"north": "none",
@@ -214445,7 +218989,7 @@
}
},
{
- "id": 15274,
+ "id": 15743,
"properties": {
"east": "low",
"north": "none",
@@ -214456,7 +219000,7 @@
}
},
{
- "id": 15275,
+ "id": 15744,
"properties": {
"east": "low",
"north": "none",
@@ -214467,7 +219011,7 @@
}
},
{
- "id": 15276,
+ "id": 15745,
"properties": {
"east": "low",
"north": "none",
@@ -214478,7 +219022,7 @@
}
},
{
- "id": 15277,
+ "id": 15746,
"properties": {
"east": "low",
"north": "none",
@@ -214489,7 +219033,7 @@
}
},
{
- "id": 15278,
+ "id": 15747,
"properties": {
"east": "low",
"north": "none",
@@ -214500,7 +219044,7 @@
}
},
{
- "id": 15279,
+ "id": 15748,
"properties": {
"east": "low",
"north": "none",
@@ -214511,7 +219055,7 @@
}
},
{
- "id": 15280,
+ "id": 15749,
"properties": {
"east": "low",
"north": "none",
@@ -214522,7 +219066,7 @@
}
},
{
- "id": 15281,
+ "id": 15750,
"properties": {
"east": "low",
"north": "none",
@@ -214533,7 +219077,7 @@
}
},
{
- "id": 15282,
+ "id": 15751,
"properties": {
"east": "low",
"north": "none",
@@ -214544,7 +219088,7 @@
}
},
{
- "id": 15283,
+ "id": 15752,
"properties": {
"east": "low",
"north": "none",
@@ -214555,7 +219099,7 @@
}
},
{
- "id": 15284,
+ "id": 15753,
"properties": {
"east": "low",
"north": "none",
@@ -214566,7 +219110,7 @@
}
},
{
- "id": 15285,
+ "id": 15754,
"properties": {
"east": "low",
"north": "none",
@@ -214577,7 +219121,7 @@
}
},
{
- "id": 15286,
+ "id": 15755,
"properties": {
"east": "low",
"north": "none",
@@ -214588,7 +219132,7 @@
}
},
{
- "id": 15287,
+ "id": 15756,
"properties": {
"east": "low",
"north": "none",
@@ -214599,7 +219143,7 @@
}
},
{
- "id": 15288,
+ "id": 15757,
"properties": {
"east": "low",
"north": "none",
@@ -214610,7 +219154,7 @@
}
},
{
- "id": 15289,
+ "id": 15758,
"properties": {
"east": "low",
"north": "none",
@@ -214621,7 +219165,7 @@
}
},
{
- "id": 15290,
+ "id": 15759,
"properties": {
"east": "low",
"north": "none",
@@ -214632,7 +219176,7 @@
}
},
{
- "id": 15291,
+ "id": 15760,
"properties": {
"east": "low",
"north": "none",
@@ -214643,7 +219187,7 @@
}
},
{
- "id": 15292,
+ "id": 15761,
"properties": {
"east": "low",
"north": "none",
@@ -214654,7 +219198,7 @@
}
},
{
- "id": 15293,
+ "id": 15762,
"properties": {
"east": "low",
"north": "none",
@@ -214665,7 +219209,7 @@
}
},
{
- "id": 15294,
+ "id": 15763,
"properties": {
"east": "low",
"north": "none",
@@ -214676,7 +219220,7 @@
}
},
{
- "id": 15295,
+ "id": 15764,
"properties": {
"east": "low",
"north": "none",
@@ -214687,7 +219231,7 @@
}
},
{
- "id": 15296,
+ "id": 15765,
"properties": {
"east": "low",
"north": "low",
@@ -214698,7 +219242,7 @@
}
},
{
- "id": 15297,
+ "id": 15766,
"properties": {
"east": "low",
"north": "low",
@@ -214709,7 +219253,7 @@
}
},
{
- "id": 15298,
+ "id": 15767,
"properties": {
"east": "low",
"north": "low",
@@ -214720,7 +219264,7 @@
}
},
{
- "id": 15299,
+ "id": 15768,
"properties": {
"east": "low",
"north": "low",
@@ -214731,7 +219275,7 @@
}
},
{
- "id": 15300,
+ "id": 15769,
"properties": {
"east": "low",
"north": "low",
@@ -214742,7 +219286,7 @@
}
},
{
- "id": 15301,
+ "id": 15770,
"properties": {
"east": "low",
"north": "low",
@@ -214753,7 +219297,7 @@
}
},
{
- "id": 15302,
+ "id": 15771,
"properties": {
"east": "low",
"north": "low",
@@ -214764,7 +219308,7 @@
}
},
{
- "id": 15303,
+ "id": 15772,
"properties": {
"east": "low",
"north": "low",
@@ -214775,7 +219319,7 @@
}
},
{
- "id": 15304,
+ "id": 15773,
"properties": {
"east": "low",
"north": "low",
@@ -214786,7 +219330,7 @@
}
},
{
- "id": 15305,
+ "id": 15774,
"properties": {
"east": "low",
"north": "low",
@@ -214797,7 +219341,7 @@
}
},
{
- "id": 15306,
+ "id": 15775,
"properties": {
"east": "low",
"north": "low",
@@ -214808,7 +219352,7 @@
}
},
{
- "id": 15307,
+ "id": 15776,
"properties": {
"east": "low",
"north": "low",
@@ -214819,7 +219363,7 @@
}
},
{
- "id": 15308,
+ "id": 15777,
"properties": {
"east": "low",
"north": "low",
@@ -214830,7 +219374,7 @@
}
},
{
- "id": 15309,
+ "id": 15778,
"properties": {
"east": "low",
"north": "low",
@@ -214841,7 +219385,7 @@
}
},
{
- "id": 15310,
+ "id": 15779,
"properties": {
"east": "low",
"north": "low",
@@ -214852,7 +219396,7 @@
}
},
{
- "id": 15311,
+ "id": 15780,
"properties": {
"east": "low",
"north": "low",
@@ -214863,7 +219407,7 @@
}
},
{
- "id": 15312,
+ "id": 15781,
"properties": {
"east": "low",
"north": "low",
@@ -214874,7 +219418,7 @@
}
},
{
- "id": 15313,
+ "id": 15782,
"properties": {
"east": "low",
"north": "low",
@@ -214885,7 +219429,7 @@
}
},
{
- "id": 15314,
+ "id": 15783,
"properties": {
"east": "low",
"north": "low",
@@ -214896,7 +219440,7 @@
}
},
{
- "id": 15315,
+ "id": 15784,
"properties": {
"east": "low",
"north": "low",
@@ -214907,7 +219451,7 @@
}
},
{
- "id": 15316,
+ "id": 15785,
"properties": {
"east": "low",
"north": "low",
@@ -214918,7 +219462,7 @@
}
},
{
- "id": 15317,
+ "id": 15786,
"properties": {
"east": "low",
"north": "low",
@@ -214929,7 +219473,7 @@
}
},
{
- "id": 15318,
+ "id": 15787,
"properties": {
"east": "low",
"north": "low",
@@ -214940,7 +219484,7 @@
}
},
{
- "id": 15319,
+ "id": 15788,
"properties": {
"east": "low",
"north": "low",
@@ -214951,7 +219495,7 @@
}
},
{
- "id": 15320,
+ "id": 15789,
"properties": {
"east": "low",
"north": "low",
@@ -214962,7 +219506,7 @@
}
},
{
- "id": 15321,
+ "id": 15790,
"properties": {
"east": "low",
"north": "low",
@@ -214973,7 +219517,7 @@
}
},
{
- "id": 15322,
+ "id": 15791,
"properties": {
"east": "low",
"north": "low",
@@ -214984,7 +219528,7 @@
}
},
{
- "id": 15323,
+ "id": 15792,
"properties": {
"east": "low",
"north": "low",
@@ -214995,7 +219539,7 @@
}
},
{
- "id": 15324,
+ "id": 15793,
"properties": {
"east": "low",
"north": "low",
@@ -215006,7 +219550,7 @@
}
},
{
- "id": 15325,
+ "id": 15794,
"properties": {
"east": "low",
"north": "low",
@@ -215017,7 +219561,7 @@
}
},
{
- "id": 15326,
+ "id": 15795,
"properties": {
"east": "low",
"north": "low",
@@ -215028,7 +219572,7 @@
}
},
{
- "id": 15327,
+ "id": 15796,
"properties": {
"east": "low",
"north": "low",
@@ -215039,7 +219583,7 @@
}
},
{
- "id": 15328,
+ "id": 15797,
"properties": {
"east": "low",
"north": "low",
@@ -215050,7 +219594,7 @@
}
},
{
- "id": 15329,
+ "id": 15798,
"properties": {
"east": "low",
"north": "low",
@@ -215061,7 +219605,7 @@
}
},
{
- "id": 15330,
+ "id": 15799,
"properties": {
"east": "low",
"north": "low",
@@ -215072,7 +219616,7 @@
}
},
{
- "id": 15331,
+ "id": 15800,
"properties": {
"east": "low",
"north": "low",
@@ -215083,7 +219627,7 @@
}
},
{
- "id": 15332,
+ "id": 15801,
"properties": {
"east": "low",
"north": "tall",
@@ -215094,7 +219638,7 @@
}
},
{
- "id": 15333,
+ "id": 15802,
"properties": {
"east": "low",
"north": "tall",
@@ -215105,7 +219649,7 @@
}
},
{
- "id": 15334,
+ "id": 15803,
"properties": {
"east": "low",
"north": "tall",
@@ -215116,7 +219660,7 @@
}
},
{
- "id": 15335,
+ "id": 15804,
"properties": {
"east": "low",
"north": "tall",
@@ -215127,7 +219671,7 @@
}
},
{
- "id": 15336,
+ "id": 15805,
"properties": {
"east": "low",
"north": "tall",
@@ -215138,7 +219682,7 @@
}
},
{
- "id": 15337,
+ "id": 15806,
"properties": {
"east": "low",
"north": "tall",
@@ -215149,7 +219693,7 @@
}
},
{
- "id": 15338,
+ "id": 15807,
"properties": {
"east": "low",
"north": "tall",
@@ -215160,7 +219704,7 @@
}
},
{
- "id": 15339,
+ "id": 15808,
"properties": {
"east": "low",
"north": "tall",
@@ -215171,7 +219715,7 @@
}
},
{
- "id": 15340,
+ "id": 15809,
"properties": {
"east": "low",
"north": "tall",
@@ -215182,7 +219726,7 @@
}
},
{
- "id": 15341,
+ "id": 15810,
"properties": {
"east": "low",
"north": "tall",
@@ -215193,7 +219737,7 @@
}
},
{
- "id": 15342,
+ "id": 15811,
"properties": {
"east": "low",
"north": "tall",
@@ -215204,7 +219748,7 @@
}
},
{
- "id": 15343,
+ "id": 15812,
"properties": {
"east": "low",
"north": "tall",
@@ -215215,7 +219759,7 @@
}
},
{
- "id": 15344,
+ "id": 15813,
"properties": {
"east": "low",
"north": "tall",
@@ -215226,7 +219770,7 @@
}
},
{
- "id": 15345,
+ "id": 15814,
"properties": {
"east": "low",
"north": "tall",
@@ -215237,7 +219781,7 @@
}
},
{
- "id": 15346,
+ "id": 15815,
"properties": {
"east": "low",
"north": "tall",
@@ -215248,7 +219792,7 @@
}
},
{
- "id": 15347,
+ "id": 15816,
"properties": {
"east": "low",
"north": "tall",
@@ -215259,7 +219803,7 @@
}
},
{
- "id": 15348,
+ "id": 15817,
"properties": {
"east": "low",
"north": "tall",
@@ -215270,7 +219814,7 @@
}
},
{
- "id": 15349,
+ "id": 15818,
"properties": {
"east": "low",
"north": "tall",
@@ -215281,7 +219825,7 @@
}
},
{
- "id": 15350,
+ "id": 15819,
"properties": {
"east": "low",
"north": "tall",
@@ -215292,7 +219836,7 @@
}
},
{
- "id": 15351,
+ "id": 15820,
"properties": {
"east": "low",
"north": "tall",
@@ -215303,7 +219847,7 @@
}
},
{
- "id": 15352,
+ "id": 15821,
"properties": {
"east": "low",
"north": "tall",
@@ -215314,7 +219858,7 @@
}
},
{
- "id": 15353,
+ "id": 15822,
"properties": {
"east": "low",
"north": "tall",
@@ -215325,7 +219869,7 @@
}
},
{
- "id": 15354,
+ "id": 15823,
"properties": {
"east": "low",
"north": "tall",
@@ -215336,7 +219880,7 @@
}
},
{
- "id": 15355,
+ "id": 15824,
"properties": {
"east": "low",
"north": "tall",
@@ -215347,7 +219891,7 @@
}
},
{
- "id": 15356,
+ "id": 15825,
"properties": {
"east": "low",
"north": "tall",
@@ -215358,7 +219902,7 @@
}
},
{
- "id": 15357,
+ "id": 15826,
"properties": {
"east": "low",
"north": "tall",
@@ -215369,7 +219913,7 @@
}
},
{
- "id": 15358,
+ "id": 15827,
"properties": {
"east": "low",
"north": "tall",
@@ -215380,7 +219924,7 @@
}
},
{
- "id": 15359,
+ "id": 15828,
"properties": {
"east": "low",
"north": "tall",
@@ -215391,7 +219935,7 @@
}
},
{
- "id": 15360,
+ "id": 15829,
"properties": {
"east": "low",
"north": "tall",
@@ -215402,7 +219946,7 @@
}
},
{
- "id": 15361,
+ "id": 15830,
"properties": {
"east": "low",
"north": "tall",
@@ -215413,7 +219957,7 @@
}
},
{
- "id": 15362,
+ "id": 15831,
"properties": {
"east": "low",
"north": "tall",
@@ -215424,7 +219968,7 @@
}
},
{
- "id": 15363,
+ "id": 15832,
"properties": {
"east": "low",
"north": "tall",
@@ -215435,7 +219979,7 @@
}
},
{
- "id": 15364,
+ "id": 15833,
"properties": {
"east": "low",
"north": "tall",
@@ -215446,7 +219990,7 @@
}
},
{
- "id": 15365,
+ "id": 15834,
"properties": {
"east": "low",
"north": "tall",
@@ -215457,7 +220001,7 @@
}
},
{
- "id": 15366,
+ "id": 15835,
"properties": {
"east": "low",
"north": "tall",
@@ -215468,7 +220012,7 @@
}
},
{
- "id": 15367,
+ "id": 15836,
"properties": {
"east": "low",
"north": "tall",
@@ -215479,7 +220023,7 @@
}
},
{
- "id": 15368,
+ "id": 15837,
"properties": {
"east": "tall",
"north": "none",
@@ -215490,7 +220034,7 @@
}
},
{
- "id": 15369,
+ "id": 15838,
"properties": {
"east": "tall",
"north": "none",
@@ -215501,7 +220045,7 @@
}
},
{
- "id": 15370,
+ "id": 15839,
"properties": {
"east": "tall",
"north": "none",
@@ -215512,7 +220056,7 @@
}
},
{
- "id": 15371,
+ "id": 15840,
"properties": {
"east": "tall",
"north": "none",
@@ -215523,7 +220067,7 @@
}
},
{
- "id": 15372,
+ "id": 15841,
"properties": {
"east": "tall",
"north": "none",
@@ -215534,7 +220078,7 @@
}
},
{
- "id": 15373,
+ "id": 15842,
"properties": {
"east": "tall",
"north": "none",
@@ -215545,7 +220089,7 @@
}
},
{
- "id": 15374,
+ "id": 15843,
"properties": {
"east": "tall",
"north": "none",
@@ -215556,7 +220100,7 @@
}
},
{
- "id": 15375,
+ "id": 15844,
"properties": {
"east": "tall",
"north": "none",
@@ -215567,7 +220111,7 @@
}
},
{
- "id": 15376,
+ "id": 15845,
"properties": {
"east": "tall",
"north": "none",
@@ -215578,7 +220122,7 @@
}
},
{
- "id": 15377,
+ "id": 15846,
"properties": {
"east": "tall",
"north": "none",
@@ -215589,7 +220133,7 @@
}
},
{
- "id": 15378,
+ "id": 15847,
"properties": {
"east": "tall",
"north": "none",
@@ -215600,7 +220144,7 @@
}
},
{
- "id": 15379,
+ "id": 15848,
"properties": {
"east": "tall",
"north": "none",
@@ -215611,7 +220155,7 @@
}
},
{
- "id": 15380,
+ "id": 15849,
"properties": {
"east": "tall",
"north": "none",
@@ -215622,7 +220166,7 @@
}
},
{
- "id": 15381,
+ "id": 15850,
"properties": {
"east": "tall",
"north": "none",
@@ -215633,7 +220177,7 @@
}
},
{
- "id": 15382,
+ "id": 15851,
"properties": {
"east": "tall",
"north": "none",
@@ -215644,7 +220188,7 @@
}
},
{
- "id": 15383,
+ "id": 15852,
"properties": {
"east": "tall",
"north": "none",
@@ -215655,7 +220199,7 @@
}
},
{
- "id": 15384,
+ "id": 15853,
"properties": {
"east": "tall",
"north": "none",
@@ -215666,7 +220210,7 @@
}
},
{
- "id": 15385,
+ "id": 15854,
"properties": {
"east": "tall",
"north": "none",
@@ -215677,7 +220221,7 @@
}
},
{
- "id": 15386,
+ "id": 15855,
"properties": {
"east": "tall",
"north": "none",
@@ -215688,7 +220232,7 @@
}
},
{
- "id": 15387,
+ "id": 15856,
"properties": {
"east": "tall",
"north": "none",
@@ -215699,7 +220243,7 @@
}
},
{
- "id": 15388,
+ "id": 15857,
"properties": {
"east": "tall",
"north": "none",
@@ -215710,7 +220254,7 @@
}
},
{
- "id": 15389,
+ "id": 15858,
"properties": {
"east": "tall",
"north": "none",
@@ -215721,7 +220265,7 @@
}
},
{
- "id": 15390,
+ "id": 15859,
"properties": {
"east": "tall",
"north": "none",
@@ -215732,7 +220276,7 @@
}
},
{
- "id": 15391,
+ "id": 15860,
"properties": {
"east": "tall",
"north": "none",
@@ -215743,7 +220287,7 @@
}
},
{
- "id": 15392,
+ "id": 15861,
"properties": {
"east": "tall",
"north": "none",
@@ -215754,7 +220298,7 @@
}
},
{
- "id": 15393,
+ "id": 15862,
"properties": {
"east": "tall",
"north": "none",
@@ -215765,7 +220309,7 @@
}
},
{
- "id": 15394,
+ "id": 15863,
"properties": {
"east": "tall",
"north": "none",
@@ -215776,7 +220320,7 @@
}
},
{
- "id": 15395,
+ "id": 15864,
"properties": {
"east": "tall",
"north": "none",
@@ -215787,7 +220331,7 @@
}
},
{
- "id": 15396,
+ "id": 15865,
"properties": {
"east": "tall",
"north": "none",
@@ -215798,7 +220342,7 @@
}
},
{
- "id": 15397,
+ "id": 15866,
"properties": {
"east": "tall",
"north": "none",
@@ -215809,7 +220353,7 @@
}
},
{
- "id": 15398,
+ "id": 15867,
"properties": {
"east": "tall",
"north": "none",
@@ -215820,7 +220364,7 @@
}
},
{
- "id": 15399,
+ "id": 15868,
"properties": {
"east": "tall",
"north": "none",
@@ -215831,7 +220375,7 @@
}
},
{
- "id": 15400,
+ "id": 15869,
"properties": {
"east": "tall",
"north": "none",
@@ -215842,7 +220386,7 @@
}
},
{
- "id": 15401,
+ "id": 15870,
"properties": {
"east": "tall",
"north": "none",
@@ -215853,7 +220397,7 @@
}
},
{
- "id": 15402,
+ "id": 15871,
"properties": {
"east": "tall",
"north": "none",
@@ -215864,7 +220408,7 @@
}
},
{
- "id": 15403,
+ "id": 15872,
"properties": {
"east": "tall",
"north": "none",
@@ -215875,7 +220419,7 @@
}
},
{
- "id": 15404,
+ "id": 15873,
"properties": {
"east": "tall",
"north": "low",
@@ -215886,7 +220430,7 @@
}
},
{
- "id": 15405,
+ "id": 15874,
"properties": {
"east": "tall",
"north": "low",
@@ -215897,7 +220441,7 @@
}
},
{
- "id": 15406,
+ "id": 15875,
"properties": {
"east": "tall",
"north": "low",
@@ -215908,7 +220452,7 @@
}
},
{
- "id": 15407,
+ "id": 15876,
"properties": {
"east": "tall",
"north": "low",
@@ -215919,7 +220463,7 @@
}
},
{
- "id": 15408,
+ "id": 15877,
"properties": {
"east": "tall",
"north": "low",
@@ -215930,7 +220474,7 @@
}
},
{
- "id": 15409,
+ "id": 15878,
"properties": {
"east": "tall",
"north": "low",
@@ -215941,7 +220485,7 @@
}
},
{
- "id": 15410,
+ "id": 15879,
"properties": {
"east": "tall",
"north": "low",
@@ -215952,7 +220496,7 @@
}
},
{
- "id": 15411,
+ "id": 15880,
"properties": {
"east": "tall",
"north": "low",
@@ -215963,7 +220507,7 @@
}
},
{
- "id": 15412,
+ "id": 15881,
"properties": {
"east": "tall",
"north": "low",
@@ -215974,7 +220518,7 @@
}
},
{
- "id": 15413,
+ "id": 15882,
"properties": {
"east": "tall",
"north": "low",
@@ -215985,7 +220529,7 @@
}
},
{
- "id": 15414,
+ "id": 15883,
"properties": {
"east": "tall",
"north": "low",
@@ -215996,7 +220540,7 @@
}
},
{
- "id": 15415,
+ "id": 15884,
"properties": {
"east": "tall",
"north": "low",
@@ -216007,7 +220551,7 @@
}
},
{
- "id": 15416,
+ "id": 15885,
"properties": {
"east": "tall",
"north": "low",
@@ -216018,7 +220562,7 @@
}
},
{
- "id": 15417,
+ "id": 15886,
"properties": {
"east": "tall",
"north": "low",
@@ -216029,7 +220573,7 @@
}
},
{
- "id": 15418,
+ "id": 15887,
"properties": {
"east": "tall",
"north": "low",
@@ -216040,7 +220584,7 @@
}
},
{
- "id": 15419,
+ "id": 15888,
"properties": {
"east": "tall",
"north": "low",
@@ -216051,7 +220595,7 @@
}
},
{
- "id": 15420,
+ "id": 15889,
"properties": {
"east": "tall",
"north": "low",
@@ -216062,7 +220606,7 @@
}
},
{
- "id": 15421,
+ "id": 15890,
"properties": {
"east": "tall",
"north": "low",
@@ -216073,7 +220617,7 @@
}
},
{
- "id": 15422,
+ "id": 15891,
"properties": {
"east": "tall",
"north": "low",
@@ -216084,7 +220628,7 @@
}
},
{
- "id": 15423,
+ "id": 15892,
"properties": {
"east": "tall",
"north": "low",
@@ -216095,7 +220639,7 @@
}
},
{
- "id": 15424,
+ "id": 15893,
"properties": {
"east": "tall",
"north": "low",
@@ -216106,7 +220650,7 @@
}
},
{
- "id": 15425,
+ "id": 15894,
"properties": {
"east": "tall",
"north": "low",
@@ -216117,7 +220661,7 @@
}
},
{
- "id": 15426,
+ "id": 15895,
"properties": {
"east": "tall",
"north": "low",
@@ -216128,7 +220672,7 @@
}
},
{
- "id": 15427,
+ "id": 15896,
"properties": {
"east": "tall",
"north": "low",
@@ -216139,7 +220683,7 @@
}
},
{
- "id": 15428,
+ "id": 15897,
"properties": {
"east": "tall",
"north": "low",
@@ -216150,7 +220694,7 @@
}
},
{
- "id": 15429,
+ "id": 15898,
"properties": {
"east": "tall",
"north": "low",
@@ -216161,7 +220705,7 @@
}
},
{
- "id": 15430,
+ "id": 15899,
"properties": {
"east": "tall",
"north": "low",
@@ -216172,7 +220716,7 @@
}
},
{
- "id": 15431,
+ "id": 15900,
"properties": {
"east": "tall",
"north": "low",
@@ -216183,7 +220727,7 @@
}
},
{
- "id": 15432,
+ "id": 15901,
"properties": {
"east": "tall",
"north": "low",
@@ -216194,7 +220738,7 @@
}
},
{
- "id": 15433,
+ "id": 15902,
"properties": {
"east": "tall",
"north": "low",
@@ -216205,7 +220749,7 @@
}
},
{
- "id": 15434,
+ "id": 15903,
"properties": {
"east": "tall",
"north": "low",
@@ -216216,7 +220760,7 @@
}
},
{
- "id": 15435,
+ "id": 15904,
"properties": {
"east": "tall",
"north": "low",
@@ -216227,7 +220771,7 @@
}
},
{
- "id": 15436,
+ "id": 15905,
"properties": {
"east": "tall",
"north": "low",
@@ -216238,7 +220782,7 @@
}
},
{
- "id": 15437,
+ "id": 15906,
"properties": {
"east": "tall",
"north": "low",
@@ -216249,7 +220793,7 @@
}
},
{
- "id": 15438,
+ "id": 15907,
"properties": {
"east": "tall",
"north": "low",
@@ -216260,7 +220804,7 @@
}
},
{
- "id": 15439,
+ "id": 15908,
"properties": {
"east": "tall",
"north": "low",
@@ -216271,7 +220815,7 @@
}
},
{
- "id": 15440,
+ "id": 15909,
"properties": {
"east": "tall",
"north": "tall",
@@ -216282,7 +220826,7 @@
}
},
{
- "id": 15441,
+ "id": 15910,
"properties": {
"east": "tall",
"north": "tall",
@@ -216293,7 +220837,7 @@
}
},
{
- "id": 15442,
+ "id": 15911,
"properties": {
"east": "tall",
"north": "tall",
@@ -216304,7 +220848,7 @@
}
},
{
- "id": 15443,
+ "id": 15912,
"properties": {
"east": "tall",
"north": "tall",
@@ -216315,7 +220859,7 @@
}
},
{
- "id": 15444,
+ "id": 15913,
"properties": {
"east": "tall",
"north": "tall",
@@ -216326,7 +220870,7 @@
}
},
{
- "id": 15445,
+ "id": 15914,
"properties": {
"east": "tall",
"north": "tall",
@@ -216337,7 +220881,7 @@
}
},
{
- "id": 15446,
+ "id": 15915,
"properties": {
"east": "tall",
"north": "tall",
@@ -216348,7 +220892,7 @@
}
},
{
- "id": 15447,
+ "id": 15916,
"properties": {
"east": "tall",
"north": "tall",
@@ -216359,7 +220903,7 @@
}
},
{
- "id": 15448,
+ "id": 15917,
"properties": {
"east": "tall",
"north": "tall",
@@ -216370,7 +220914,7 @@
}
},
{
- "id": 15449,
+ "id": 15918,
"properties": {
"east": "tall",
"north": "tall",
@@ -216381,7 +220925,7 @@
}
},
{
- "id": 15450,
+ "id": 15919,
"properties": {
"east": "tall",
"north": "tall",
@@ -216392,7 +220936,7 @@
}
},
{
- "id": 15451,
+ "id": 15920,
"properties": {
"east": "tall",
"north": "tall",
@@ -216403,7 +220947,7 @@
}
},
{
- "id": 15452,
+ "id": 15921,
"properties": {
"east": "tall",
"north": "tall",
@@ -216414,7 +220958,7 @@
}
},
{
- "id": 15453,
+ "id": 15922,
"properties": {
"east": "tall",
"north": "tall",
@@ -216425,7 +220969,7 @@
}
},
{
- "id": 15454,
+ "id": 15923,
"properties": {
"east": "tall",
"north": "tall",
@@ -216436,7 +220980,7 @@
}
},
{
- "id": 15455,
+ "id": 15924,
"properties": {
"east": "tall",
"north": "tall",
@@ -216447,7 +220991,7 @@
}
},
{
- "id": 15456,
+ "id": 15925,
"properties": {
"east": "tall",
"north": "tall",
@@ -216458,7 +221002,7 @@
}
},
{
- "id": 15457,
+ "id": 15926,
"properties": {
"east": "tall",
"north": "tall",
@@ -216469,7 +221013,7 @@
}
},
{
- "id": 15458,
+ "id": 15927,
"properties": {
"east": "tall",
"north": "tall",
@@ -216480,7 +221024,7 @@
}
},
{
- "id": 15459,
+ "id": 15928,
"properties": {
"east": "tall",
"north": "tall",
@@ -216491,7 +221035,7 @@
}
},
{
- "id": 15460,
+ "id": 15929,
"properties": {
"east": "tall",
"north": "tall",
@@ -216502,7 +221046,7 @@
}
},
{
- "id": 15461,
+ "id": 15930,
"properties": {
"east": "tall",
"north": "tall",
@@ -216513,7 +221057,7 @@
}
},
{
- "id": 15462,
+ "id": 15931,
"properties": {
"east": "tall",
"north": "tall",
@@ -216524,7 +221068,7 @@
}
},
{
- "id": 15463,
+ "id": 15932,
"properties": {
"east": "tall",
"north": "tall",
@@ -216535,7 +221079,7 @@
}
},
{
- "id": 15464,
+ "id": 15933,
"properties": {
"east": "tall",
"north": "tall",
@@ -216546,7 +221090,7 @@
}
},
{
- "id": 15465,
+ "id": 15934,
"properties": {
"east": "tall",
"north": "tall",
@@ -216557,7 +221101,7 @@
}
},
{
- "id": 15466,
+ "id": 15935,
"properties": {
"east": "tall",
"north": "tall",
@@ -216568,7 +221112,7 @@
}
},
{
- "id": 15467,
+ "id": 15936,
"properties": {
"east": "tall",
"north": "tall",
@@ -216579,7 +221123,7 @@
}
},
{
- "id": 15468,
+ "id": 15937,
"properties": {
"east": "tall",
"north": "tall",
@@ -216590,7 +221134,7 @@
}
},
{
- "id": 15469,
+ "id": 15938,
"properties": {
"east": "tall",
"north": "tall",
@@ -216601,7 +221145,7 @@
}
},
{
- "id": 15470,
+ "id": 15939,
"properties": {
"east": "tall",
"north": "tall",
@@ -216612,7 +221156,7 @@
}
},
{
- "id": 15471,
+ "id": 15940,
"properties": {
"east": "tall",
"north": "tall",
@@ -216623,7 +221167,7 @@
}
},
{
- "id": 15472,
+ "id": 15941,
"properties": {
"east": "tall",
"north": "tall",
@@ -216634,7 +221178,7 @@
}
},
{
- "id": 15473,
+ "id": 15942,
"properties": {
"east": "tall",
"north": "tall",
@@ -216645,7 +221189,7 @@
}
},
{
- "id": 15474,
+ "id": 15943,
"properties": {
"east": "tall",
"north": "tall",
@@ -216656,7 +221200,7 @@
}
},
{
- "id": 15475,
+ "id": 15944,
"properties": {
"east": "tall",
"north": "tall",
@@ -216672,7 +221216,7 @@
"states": [
{
"default": true,
- "id": 6308
+ "id": 6534
}
]
},
@@ -216696,7 +221240,7 @@
},
"states": [
{
- "id": 5582,
+ "id": 5744,
"properties": {
"face": "floor",
"facing": "north",
@@ -216704,7 +221248,7 @@
}
},
{
- "id": 5583,
+ "id": 5745,
"properties": {
"face": "floor",
"facing": "north",
@@ -216712,7 +221256,7 @@
}
},
{
- "id": 5584,
+ "id": 5746,
"properties": {
"face": "floor",
"facing": "south",
@@ -216720,7 +221264,7 @@
}
},
{
- "id": 5585,
+ "id": 5747,
"properties": {
"face": "floor",
"facing": "south",
@@ -216728,7 +221272,7 @@
}
},
{
- "id": 5586,
+ "id": 5748,
"properties": {
"face": "floor",
"facing": "west",
@@ -216736,7 +221280,7 @@
}
},
{
- "id": 5587,
+ "id": 5749,
"properties": {
"face": "floor",
"facing": "west",
@@ -216744,7 +221288,7 @@
}
},
{
- "id": 5588,
+ "id": 5750,
"properties": {
"face": "floor",
"facing": "east",
@@ -216752,7 +221296,7 @@
}
},
{
- "id": 5589,
+ "id": 5751,
"properties": {
"face": "floor",
"facing": "east",
@@ -216760,7 +221304,7 @@
}
},
{
- "id": 5590,
+ "id": 5752,
"properties": {
"face": "wall",
"facing": "north",
@@ -216769,7 +221313,7 @@
},
{
"default": true,
- "id": 5591,
+ "id": 5753,
"properties": {
"face": "wall",
"facing": "north",
@@ -216777,7 +221321,7 @@
}
},
{
- "id": 5592,
+ "id": 5754,
"properties": {
"face": "wall",
"facing": "south",
@@ -216785,7 +221329,7 @@
}
},
{
- "id": 5593,
+ "id": 5755,
"properties": {
"face": "wall",
"facing": "south",
@@ -216793,7 +221337,7 @@
}
},
{
- "id": 5594,
+ "id": 5756,
"properties": {
"face": "wall",
"facing": "west",
@@ -216801,7 +221345,7 @@
}
},
{
- "id": 5595,
+ "id": 5757,
"properties": {
"face": "wall",
"facing": "west",
@@ -216809,7 +221353,7 @@
}
},
{
- "id": 5596,
+ "id": 5758,
"properties": {
"face": "wall",
"facing": "east",
@@ -216817,7 +221361,7 @@
}
},
{
- "id": 5597,
+ "id": 5759,
"properties": {
"face": "wall",
"facing": "east",
@@ -216825,7 +221369,7 @@
}
},
{
- "id": 5598,
+ "id": 5760,
"properties": {
"face": "ceiling",
"facing": "north",
@@ -216833,7 +221377,7 @@
}
},
{
- "id": 5599,
+ "id": 5761,
"properties": {
"face": "ceiling",
"facing": "north",
@@ -216841,7 +221385,7 @@
}
},
{
- "id": 5600,
+ "id": 5762,
"properties": {
"face": "ceiling",
"facing": "south",
@@ -216849,7 +221393,7 @@
}
},
{
- "id": 5601,
+ "id": 5763,
"properties": {
"face": "ceiling",
"facing": "south",
@@ -216857,7 +221401,7 @@
}
},
{
- "id": 5602,
+ "id": 5764,
"properties": {
"face": "ceiling",
"facing": "west",
@@ -216865,7 +221409,7 @@
}
},
{
- "id": 5603,
+ "id": 5765,
"properties": {
"face": "ceiling",
"facing": "west",
@@ -216873,7 +221417,7 @@
}
},
{
- "id": 5604,
+ "id": 5766,
"properties": {
"face": "ceiling",
"facing": "east",
@@ -216881,7 +221425,7 @@
}
},
{
- "id": 5605,
+ "id": 5767,
"properties": {
"face": "ceiling",
"facing": "east",
@@ -216899,14 +221443,14 @@
},
"states": [
{
- "id": 5486,
+ "id": 5646,
"properties": {
"powered": "true"
}
},
{
"default": true,
- "id": 5487,
+ "id": 5647,
"properties": {
"powered": "false"
}
@@ -216927,21 +221471,21 @@
},
"states": [
{
- "id": 10739,
+ "id": 11077,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 10740,
+ "id": 11078,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 10741,
+ "id": 11079,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -216949,21 +221493,21 @@
},
{
"default": true,
- "id": 10742,
+ "id": 11080,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 10743,
+ "id": 11081,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 10744,
+ "id": 11082,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -216997,7 +221541,7 @@
},
"states": [
{
- "id": 12814,
+ "id": 13283,
"properties": {
"facing": "north",
"half": "top",
@@ -217006,7 +221550,7 @@
}
},
{
- "id": 12815,
+ "id": 13284,
"properties": {
"facing": "north",
"half": "top",
@@ -217015,7 +221559,7 @@
}
},
{
- "id": 12816,
+ "id": 13285,
"properties": {
"facing": "north",
"half": "top",
@@ -217024,7 +221568,7 @@
}
},
{
- "id": 12817,
+ "id": 13286,
"properties": {
"facing": "north",
"half": "top",
@@ -217033,7 +221577,7 @@
}
},
{
- "id": 12818,
+ "id": 13287,
"properties": {
"facing": "north",
"half": "top",
@@ -217042,7 +221586,7 @@
}
},
{
- "id": 12819,
+ "id": 13288,
"properties": {
"facing": "north",
"half": "top",
@@ -217051,7 +221595,7 @@
}
},
{
- "id": 12820,
+ "id": 13289,
"properties": {
"facing": "north",
"half": "top",
@@ -217060,7 +221604,7 @@
}
},
{
- "id": 12821,
+ "id": 13290,
"properties": {
"facing": "north",
"half": "top",
@@ -217069,7 +221613,7 @@
}
},
{
- "id": 12822,
+ "id": 13291,
"properties": {
"facing": "north",
"half": "top",
@@ -217078,7 +221622,7 @@
}
},
{
- "id": 12823,
+ "id": 13292,
"properties": {
"facing": "north",
"half": "top",
@@ -217087,7 +221631,7 @@
}
},
{
- "id": 12824,
+ "id": 13293,
"properties": {
"facing": "north",
"half": "bottom",
@@ -217097,7 +221641,7 @@
},
{
"default": true,
- "id": 12825,
+ "id": 13294,
"properties": {
"facing": "north",
"half": "bottom",
@@ -217106,7 +221650,7 @@
}
},
{
- "id": 12826,
+ "id": 13295,
"properties": {
"facing": "north",
"half": "bottom",
@@ -217115,7 +221659,7 @@
}
},
{
- "id": 12827,
+ "id": 13296,
"properties": {
"facing": "north",
"half": "bottom",
@@ -217124,7 +221668,7 @@
}
},
{
- "id": 12828,
+ "id": 13297,
"properties": {
"facing": "north",
"half": "bottom",
@@ -217133,7 +221677,7 @@
}
},
{
- "id": 12829,
+ "id": 13298,
"properties": {
"facing": "north",
"half": "bottom",
@@ -217142,7 +221686,7 @@
}
},
{
- "id": 12830,
+ "id": 13299,
"properties": {
"facing": "north",
"half": "bottom",
@@ -217151,7 +221695,7 @@
}
},
{
- "id": 12831,
+ "id": 13300,
"properties": {
"facing": "north",
"half": "bottom",
@@ -217160,7 +221704,7 @@
}
},
{
- "id": 12832,
+ "id": 13301,
"properties": {
"facing": "north",
"half": "bottom",
@@ -217169,7 +221713,7 @@
}
},
{
- "id": 12833,
+ "id": 13302,
"properties": {
"facing": "north",
"half": "bottom",
@@ -217178,7 +221722,7 @@
}
},
{
- "id": 12834,
+ "id": 13303,
"properties": {
"facing": "south",
"half": "top",
@@ -217187,7 +221731,7 @@
}
},
{
- "id": 12835,
+ "id": 13304,
"properties": {
"facing": "south",
"half": "top",
@@ -217196,7 +221740,7 @@
}
},
{
- "id": 12836,
+ "id": 13305,
"properties": {
"facing": "south",
"half": "top",
@@ -217205,7 +221749,7 @@
}
},
{
- "id": 12837,
+ "id": 13306,
"properties": {
"facing": "south",
"half": "top",
@@ -217214,7 +221758,7 @@
}
},
{
- "id": 12838,
+ "id": 13307,
"properties": {
"facing": "south",
"half": "top",
@@ -217223,7 +221767,7 @@
}
},
{
- "id": 12839,
+ "id": 13308,
"properties": {
"facing": "south",
"half": "top",
@@ -217232,7 +221776,7 @@
}
},
{
- "id": 12840,
+ "id": 13309,
"properties": {
"facing": "south",
"half": "top",
@@ -217241,7 +221785,7 @@
}
},
{
- "id": 12841,
+ "id": 13310,
"properties": {
"facing": "south",
"half": "top",
@@ -217250,7 +221794,7 @@
}
},
{
- "id": 12842,
+ "id": 13311,
"properties": {
"facing": "south",
"half": "top",
@@ -217259,7 +221803,7 @@
}
},
{
- "id": 12843,
+ "id": 13312,
"properties": {
"facing": "south",
"half": "top",
@@ -217268,7 +221812,7 @@
}
},
{
- "id": 12844,
+ "id": 13313,
"properties": {
"facing": "south",
"half": "bottom",
@@ -217277,7 +221821,7 @@
}
},
{
- "id": 12845,
+ "id": 13314,
"properties": {
"facing": "south",
"half": "bottom",
@@ -217286,7 +221830,7 @@
}
},
{
- "id": 12846,
+ "id": 13315,
"properties": {
"facing": "south",
"half": "bottom",
@@ -217295,7 +221839,7 @@
}
},
{
- "id": 12847,
+ "id": 13316,
"properties": {
"facing": "south",
"half": "bottom",
@@ -217304,7 +221848,7 @@
}
},
{
- "id": 12848,
+ "id": 13317,
"properties": {
"facing": "south",
"half": "bottom",
@@ -217313,7 +221857,7 @@
}
},
{
- "id": 12849,
+ "id": 13318,
"properties": {
"facing": "south",
"half": "bottom",
@@ -217322,7 +221866,7 @@
}
},
{
- "id": 12850,
+ "id": 13319,
"properties": {
"facing": "south",
"half": "bottom",
@@ -217331,7 +221875,7 @@
}
},
{
- "id": 12851,
+ "id": 13320,
"properties": {
"facing": "south",
"half": "bottom",
@@ -217340,7 +221884,7 @@
}
},
{
- "id": 12852,
+ "id": 13321,
"properties": {
"facing": "south",
"half": "bottom",
@@ -217349,7 +221893,7 @@
}
},
{
- "id": 12853,
+ "id": 13322,
"properties": {
"facing": "south",
"half": "bottom",
@@ -217358,7 +221902,7 @@
}
},
{
- "id": 12854,
+ "id": 13323,
"properties": {
"facing": "west",
"half": "top",
@@ -217367,7 +221911,7 @@
}
},
{
- "id": 12855,
+ "id": 13324,
"properties": {
"facing": "west",
"half": "top",
@@ -217376,7 +221920,7 @@
}
},
{
- "id": 12856,
+ "id": 13325,
"properties": {
"facing": "west",
"half": "top",
@@ -217385,7 +221929,7 @@
}
},
{
- "id": 12857,
+ "id": 13326,
"properties": {
"facing": "west",
"half": "top",
@@ -217394,7 +221938,7 @@
}
},
{
- "id": 12858,
+ "id": 13327,
"properties": {
"facing": "west",
"half": "top",
@@ -217403,7 +221947,7 @@
}
},
{
- "id": 12859,
+ "id": 13328,
"properties": {
"facing": "west",
"half": "top",
@@ -217412,7 +221956,7 @@
}
},
{
- "id": 12860,
+ "id": 13329,
"properties": {
"facing": "west",
"half": "top",
@@ -217421,7 +221965,7 @@
}
},
{
- "id": 12861,
+ "id": 13330,
"properties": {
"facing": "west",
"half": "top",
@@ -217430,7 +221974,7 @@
}
},
{
- "id": 12862,
+ "id": 13331,
"properties": {
"facing": "west",
"half": "top",
@@ -217439,7 +221983,7 @@
}
},
{
- "id": 12863,
+ "id": 13332,
"properties": {
"facing": "west",
"half": "top",
@@ -217448,7 +221992,7 @@
}
},
{
- "id": 12864,
+ "id": 13333,
"properties": {
"facing": "west",
"half": "bottom",
@@ -217457,7 +222001,7 @@
}
},
{
- "id": 12865,
+ "id": 13334,
"properties": {
"facing": "west",
"half": "bottom",
@@ -217466,7 +222010,7 @@
}
},
{
- "id": 12866,
+ "id": 13335,
"properties": {
"facing": "west",
"half": "bottom",
@@ -217475,7 +222019,7 @@
}
},
{
- "id": 12867,
+ "id": 13336,
"properties": {
"facing": "west",
"half": "bottom",
@@ -217484,7 +222028,7 @@
}
},
{
- "id": 12868,
+ "id": 13337,
"properties": {
"facing": "west",
"half": "bottom",
@@ -217493,7 +222037,7 @@
}
},
{
- "id": 12869,
+ "id": 13338,
"properties": {
"facing": "west",
"half": "bottom",
@@ -217502,7 +222046,7 @@
}
},
{
- "id": 12870,
+ "id": 13339,
"properties": {
"facing": "west",
"half": "bottom",
@@ -217511,7 +222055,7 @@
}
},
{
- "id": 12871,
+ "id": 13340,
"properties": {
"facing": "west",
"half": "bottom",
@@ -217520,7 +222064,7 @@
}
},
{
- "id": 12872,
+ "id": 13341,
"properties": {
"facing": "west",
"half": "bottom",
@@ -217529,7 +222073,7 @@
}
},
{
- "id": 12873,
+ "id": 13342,
"properties": {
"facing": "west",
"half": "bottom",
@@ -217538,7 +222082,7 @@
}
},
{
- "id": 12874,
+ "id": 13343,
"properties": {
"facing": "east",
"half": "top",
@@ -217547,7 +222091,7 @@
}
},
{
- "id": 12875,
+ "id": 13344,
"properties": {
"facing": "east",
"half": "top",
@@ -217556,7 +222100,7 @@
}
},
{
- "id": 12876,
+ "id": 13345,
"properties": {
"facing": "east",
"half": "top",
@@ -217565,7 +222109,7 @@
}
},
{
- "id": 12877,
+ "id": 13346,
"properties": {
"facing": "east",
"half": "top",
@@ -217574,7 +222118,7 @@
}
},
{
- "id": 12878,
+ "id": 13347,
"properties": {
"facing": "east",
"half": "top",
@@ -217583,7 +222127,7 @@
}
},
{
- "id": 12879,
+ "id": 13348,
"properties": {
"facing": "east",
"half": "top",
@@ -217592,7 +222136,7 @@
}
},
{
- "id": 12880,
+ "id": 13349,
"properties": {
"facing": "east",
"half": "top",
@@ -217601,7 +222145,7 @@
}
},
{
- "id": 12881,
+ "id": 13350,
"properties": {
"facing": "east",
"half": "top",
@@ -217610,7 +222154,7 @@
}
},
{
- "id": 12882,
+ "id": 13351,
"properties": {
"facing": "east",
"half": "top",
@@ -217619,7 +222163,7 @@
}
},
{
- "id": 12883,
+ "id": 13352,
"properties": {
"facing": "east",
"half": "top",
@@ -217628,7 +222172,7 @@
}
},
{
- "id": 12884,
+ "id": 13353,
"properties": {
"facing": "east",
"half": "bottom",
@@ -217637,7 +222181,7 @@
}
},
{
- "id": 12885,
+ "id": 13354,
"properties": {
"facing": "east",
"half": "bottom",
@@ -217646,7 +222190,7 @@
}
},
{
- "id": 12886,
+ "id": 13355,
"properties": {
"facing": "east",
"half": "bottom",
@@ -217655,7 +222199,7 @@
}
},
{
- "id": 12887,
+ "id": 13356,
"properties": {
"facing": "east",
"half": "bottom",
@@ -217664,7 +222208,7 @@
}
},
{
- "id": 12888,
+ "id": 13357,
"properties": {
"facing": "east",
"half": "bottom",
@@ -217673,7 +222217,7 @@
}
},
{
- "id": 12889,
+ "id": 13358,
"properties": {
"facing": "east",
"half": "bottom",
@@ -217682,7 +222226,7 @@
}
},
{
- "id": 12890,
+ "id": 13359,
"properties": {
"facing": "east",
"half": "bottom",
@@ -217691,7 +222235,7 @@
}
},
{
- "id": 12891,
+ "id": 13360,
"properties": {
"facing": "east",
"half": "bottom",
@@ -217700,7 +222244,7 @@
}
},
{
- "id": 12892,
+ "id": 13361,
"properties": {
"facing": "east",
"half": "bottom",
@@ -217709,7 +222253,7 @@
}
},
{
- "id": 12893,
+ "id": 13362,
"properties": {
"facing": "east",
"half": "bottom",
@@ -217731,25 +222275,25 @@
"states": [
{
"default": true,
- "id": 17839,
+ "id": 18308,
"properties": {
"facing": "north"
}
},
{
- "id": 17840,
+ "id": 18309,
"properties": {
"facing": "south"
}
},
{
- "id": 17841,
+ "id": 18310,
"properties": {
"facing": "west"
}
},
{
- "id": 17842,
+ "id": 18311,
"properties": {
"facing": "east"
}
@@ -217766,20 +222310,20 @@
},
"states": [
{
- "id": 157,
+ "id": 167,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 158,
+ "id": 168,
"properties": {
"axis": "y"
}
},
{
- "id": 159,
+ "id": 169,
"properties": {
"axis": "z"
}
@@ -217796,20 +222340,20 @@
},
"states": [
{
- "id": 205,
+ "id": 221,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 206,
+ "id": 222,
"properties": {
"axis": "y"
}
},
{
- "id": 207,
+ "id": 223,
"properties": {
"axis": "z"
}
@@ -217826,20 +222370,20 @@
},
"states": [
{
- "id": 169,
+ "id": 182,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 170,
+ "id": 183,
"properties": {
"axis": "y"
}
},
{
- "id": 171,
+ "id": 184,
"properties": {
"axis": "z"
}
@@ -217856,20 +222400,20 @@
},
"states": [
{
- "id": 151,
+ "id": 161,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 152,
+ "id": 162,
"properties": {
"axis": "y"
}
},
{
- "id": 153,
+ "id": 163,
"properties": {
"axis": "z"
}
@@ -217886,20 +222430,80 @@
},
"states": [
{
- "id": 199,
+ "id": 215,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 200,
+ "id": 216,
"properties": {
"axis": "y"
}
},
{
- "id": 201,
+ "id": 217,
+ "properties": {
+ "axis": "z"
+ }
+ }
+ ]
+ },
+ "minecraft:stripped_cherry_log": {
+ "properties": {
+ "axis": [
+ "x",
+ "y",
+ "z"
+ ]
+ },
+ "states": [
+ {
+ "id": 170,
+ "properties": {
+ "axis": "x"
+ }
+ },
+ {
+ "default": true,
+ "id": 171,
+ "properties": {
+ "axis": "y"
+ }
+ },
+ {
+ "id": 172,
+ "properties": {
+ "axis": "z"
+ }
+ }
+ ]
+ },
+ "minecraft:stripped_cherry_wood": {
+ "properties": {
+ "axis": [
+ "x",
+ "y",
+ "z"
+ ]
+ },
+ "states": [
+ {
+ "id": 224,
+ "properties": {
+ "axis": "x"
+ }
+ },
+ {
+ "default": true,
+ "id": 225,
+ "properties": {
+ "axis": "y"
+ }
+ },
+ {
+ "id": 226,
"properties": {
"axis": "z"
}
@@ -217916,20 +222520,20 @@
},
"states": [
{
- "id": 17977,
+ "id": 18446,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 17978,
+ "id": 18447,
"properties": {
"axis": "y"
}
},
{
- "id": 17979,
+ "id": 18448,
"properties": {
"axis": "z"
}
@@ -217946,20 +222550,20 @@
},
"states": [
{
- "id": 17971,
+ "id": 18440,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 17972,
+ "id": 18441,
"properties": {
"axis": "y"
}
},
{
- "id": 17973,
+ "id": 18442,
"properties": {
"axis": "z"
}
@@ -217976,20 +222580,20 @@
},
"states": [
{
- "id": 160,
+ "id": 173,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 161,
+ "id": 174,
"properties": {
"axis": "y"
}
},
{
- "id": 162,
+ "id": 175,
"properties": {
"axis": "z"
}
@@ -218006,20 +222610,20 @@
},
"states": [
{
- "id": 208,
+ "id": 227,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 209,
+ "id": 228,
"properties": {
"axis": "y"
}
},
{
- "id": 210,
+ "id": 229,
"properties": {
"axis": "z"
}
@@ -218036,20 +222640,20 @@
},
"states": [
{
- "id": 154,
+ "id": 164,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 155,
+ "id": 165,
"properties": {
"axis": "y"
}
},
{
- "id": 156,
+ "id": 166,
"properties": {
"axis": "z"
}
@@ -218066,20 +222670,20 @@
},
"states": [
{
- "id": 202,
+ "id": 218,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 203,
+ "id": 219,
"properties": {
"axis": "y"
}
},
{
- "id": 204,
+ "id": 220,
"properties": {
"axis": "z"
}
@@ -218096,20 +222700,20 @@
},
"states": [
{
- "id": 166,
+ "id": 179,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 167,
+ "id": 180,
"properties": {
"axis": "y"
}
},
{
- "id": 168,
+ "id": 181,
"properties": {
"axis": "z"
}
@@ -218126,20 +222730,20 @@
},
"states": [
{
- "id": 211,
+ "id": 230,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 212,
+ "id": 231,
"properties": {
"axis": "y"
}
},
{
- "id": 213,
+ "id": 232,
"properties": {
"axis": "z"
}
@@ -218156,20 +222760,20 @@
},
"states": [
{
- "id": 163,
+ "id": 176,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 164,
+ "id": 177,
"properties": {
"axis": "y"
}
},
{
- "id": 165,
+ "id": 178,
"properties": {
"axis": "z"
}
@@ -218186,20 +222790,20 @@
},
"states": [
{
- "id": 193,
+ "id": 209,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 194,
+ "id": 210,
"properties": {
"axis": "y"
}
},
{
- "id": 195,
+ "id": 211,
"properties": {
"axis": "z"
}
@@ -218216,20 +222820,20 @@
},
"states": [
{
- "id": 148,
+ "id": 158,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 149,
+ "id": 159,
"properties": {
"axis": "y"
}
},
{
- "id": 150,
+ "id": 160,
"properties": {
"axis": "z"
}
@@ -218246,20 +222850,20 @@
},
"states": [
{
- "id": 196,
+ "id": 212,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 197,
+ "id": 213,
"properties": {
"axis": "y"
}
},
{
- "id": 198,
+ "id": 214,
"properties": {
"axis": "z"
}
@@ -218276,20 +222880,20 @@
},
"states": [
{
- "id": 17960,
+ "id": 18429,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 17961,
+ "id": 18430,
"properties": {
"axis": "y"
}
},
{
- "id": 17962,
+ "id": 18431,
"properties": {
"axis": "z"
}
@@ -218306,20 +222910,20 @@
},
"states": [
{
- "id": 17954,
+ "id": 18423,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 17955,
+ "id": 18424,
"properties": {
"axis": "y"
}
},
{
- "id": 17956,
+ "id": 18425,
"properties": {
"axis": "z"
}
@@ -218337,26 +222941,26 @@
},
"states": [
{
- "id": 18728,
+ "id": 19197,
"properties": {
"mode": "save"
}
},
{
"default": true,
- "id": 18729,
+ "id": 19198,
"properties": {
"mode": "load"
}
},
{
- "id": 18730,
+ "id": 19199,
"properties": {
"mode": "corner"
}
},
{
- "id": 18731,
+ "id": 19200,
"properties": {
"mode": "data"
}
@@ -218367,7 +222971,7 @@
"states": [
{
"default": true,
- "id": 11924
+ "id": 12393
}
]
},
@@ -218395,97 +222999,97 @@
"states": [
{
"default": true,
- "id": 5633,
+ "id": 5795,
"properties": {
"age": "0"
}
},
{
- "id": 5634,
+ "id": 5796,
"properties": {
"age": "1"
}
},
{
- "id": 5635,
+ "id": 5797,
"properties": {
"age": "2"
}
},
{
- "id": 5636,
+ "id": 5798,
"properties": {
"age": "3"
}
},
{
- "id": 5637,
+ "id": 5799,
"properties": {
"age": "4"
}
},
{
- "id": 5638,
+ "id": 5800,
"properties": {
"age": "5"
}
},
{
- "id": 5639,
+ "id": 5801,
"properties": {
"age": "6"
}
},
{
- "id": 5640,
+ "id": 5802,
"properties": {
"age": "7"
}
},
{
- "id": 5641,
+ "id": 5803,
"properties": {
"age": "8"
}
},
{
- "id": 5642,
+ "id": 5804,
"properties": {
"age": "9"
}
},
{
- "id": 5643,
+ "id": 5805,
"properties": {
"age": "10"
}
},
{
- "id": 5644,
+ "id": 5806,
"properties": {
"age": "11"
}
},
{
- "id": 5645,
+ "id": 5807,
"properties": {
"age": "12"
}
},
{
- "id": 5646,
+ "id": 5808,
"properties": {
"age": "13"
}
},
{
- "id": 5647,
+ "id": 5809,
"properties": {
"age": "14"
}
},
{
- "id": 5648,
+ "id": 5810,
"properties": {
"age": "15"
}
@@ -218501,20 +223105,57 @@
},
"states": [
{
- "id": 10270,
+ "id": 10602,
"properties": {
"half": "upper"
}
},
{
"default": true,
- "id": 10271,
+ "id": 10603,
"properties": {
"half": "lower"
}
}
]
},
+ "minecraft:suspicious_sand": {
+ "properties": {
+ "dusted": [
+ "0",
+ "1",
+ "2",
+ "3"
+ ]
+ },
+ "states": [
+ {
+ "default": true,
+ "id": 113,
+ "properties": {
+ "dusted": "0"
+ }
+ },
+ {
+ "id": 114,
+ "properties": {
+ "dusted": "1"
+ }
+ },
+ {
+ "id": 115,
+ "properties": {
+ "dusted": "2"
+ }
+ },
+ {
+ "id": 116,
+ "properties": {
+ "dusted": "3"
+ }
+ }
+ ]
+ },
"minecraft:sweet_berry_bush": {
"properties": {
"age": [
@@ -218527,25 +223168,25 @@
"states": [
{
"default": true,
- "id": 17947,
+ "id": 18416,
"properties": {
"age": "0"
}
},
{
- "id": 17948,
+ "id": 18417,
"properties": {
"age": "1"
}
},
{
- "id": 17949,
+ "id": 18418,
"properties": {
"age": "2"
}
},
{
- "id": 17950,
+ "id": 18419,
"properties": {
"age": "3"
}
@@ -218561,14 +223202,14 @@
},
"states": [
{
- "id": 10278,
+ "id": 10610,
"properties": {
"half": "upper"
}
},
{
"default": true,
- "id": 10279,
+ "id": 10611,
"properties": {
"half": "lower"
}
@@ -218584,14 +223225,14 @@
},
"states": [
{
- "id": 1958,
+ "id": 2005,
"properties": {
"half": "upper"
}
},
{
"default": true,
- "id": 1959,
+ "id": 2006,
"properties": {
"half": "lower"
}
@@ -218622,97 +223263,97 @@
"states": [
{
"default": true,
- "id": 18753,
+ "id": 19222,
"properties": {
"power": "0"
}
},
{
- "id": 18754,
+ "id": 19223,
"properties": {
"power": "1"
}
},
{
- "id": 18755,
+ "id": 19224,
"properties": {
"power": "2"
}
},
{
- "id": 18756,
+ "id": 19225,
"properties": {
"power": "3"
}
},
{
- "id": 18757,
+ "id": 19226,
"properties": {
"power": "4"
}
},
{
- "id": 18758,
+ "id": 19227,
"properties": {
"power": "5"
}
},
{
- "id": 18759,
+ "id": 19228,
"properties": {
"power": "6"
}
},
{
- "id": 18760,
+ "id": 19229,
"properties": {
"power": "7"
}
},
{
- "id": 18761,
+ "id": 19230,
"properties": {
"power": "8"
}
},
{
- "id": 18762,
+ "id": 19231,
"properties": {
"power": "9"
}
},
{
- "id": 18763,
+ "id": 19232,
"properties": {
"power": "10"
}
},
{
- "id": 18764,
+ "id": 19233,
"properties": {
"power": "11"
}
},
{
- "id": 18765,
+ "id": 19234,
"properties": {
"power": "12"
}
},
{
- "id": 18766,
+ "id": 19235,
"properties": {
"power": "13"
}
},
{
- "id": 18767,
+ "id": 19236,
"properties": {
"power": "14"
}
},
{
- "id": 18768,
+ "id": 19237,
"properties": {
"power": "15"
}
@@ -218723,7 +223364,7 @@
"states": [
{
"default": true,
- "id": 10267
+ "id": 10599
}
]
},
@@ -218731,7 +223372,7 @@
"states": [
{
"default": true,
- "id": 20455
+ "id": 20924
}
]
},
@@ -218744,14 +223385,14 @@
},
"states": [
{
- "id": 2042,
+ "id": 2090,
"properties": {
"unstable": "true"
}
},
{
"default": true,
- "id": 2043,
+ "id": 2091,
"properties": {
"unstable": "false"
}
@@ -218762,7 +223403,45 @@
"states": [
{
"default": true,
- "id": 2303
+ "id": 2351
+ }
+ ]
+ },
+ "minecraft:torchflower": {
+ "states": [
+ {
+ "default": true,
+ "id": 2072
+ }
+ ]
+ },
+ "minecraft:torchflower_crop": {
+ "properties": {
+ "age": [
+ "0",
+ "1",
+ "2"
+ ]
+ },
+ "states": [
+ {
+ "default": true,
+ "id": 12350,
+ "properties": {
+ "age": "0"
+ }
+ },
+ {
+ "id": 12351,
+ "properties": {
+ "age": "1"
+ }
+ },
+ {
+ "id": 12352,
+ "properties": {
+ "age": "2"
+ }
}
]
},
@@ -218786,7 +223465,7 @@
},
"states": [
{
- "id": 8723,
+ "id": 8975,
"properties": {
"type": "single",
"facing": "north",
@@ -218795,7 +223474,7 @@
},
{
"default": true,
- "id": 8724,
+ "id": 8976,
"properties": {
"type": "single",
"facing": "north",
@@ -218803,7 +223482,7 @@
}
},
{
- "id": 8725,
+ "id": 8977,
"properties": {
"type": "left",
"facing": "north",
@@ -218811,7 +223490,7 @@
}
},
{
- "id": 8726,
+ "id": 8978,
"properties": {
"type": "left",
"facing": "north",
@@ -218819,7 +223498,7 @@
}
},
{
- "id": 8727,
+ "id": 8979,
"properties": {
"type": "right",
"facing": "north",
@@ -218827,7 +223506,7 @@
}
},
{
- "id": 8728,
+ "id": 8980,
"properties": {
"type": "right",
"facing": "north",
@@ -218835,7 +223514,7 @@
}
},
{
- "id": 8729,
+ "id": 8981,
"properties": {
"type": "single",
"facing": "south",
@@ -218843,7 +223522,7 @@
}
},
{
- "id": 8730,
+ "id": 8982,
"properties": {
"type": "single",
"facing": "south",
@@ -218851,7 +223530,7 @@
}
},
{
- "id": 8731,
+ "id": 8983,
"properties": {
"type": "left",
"facing": "south",
@@ -218859,7 +223538,7 @@
}
},
{
- "id": 8732,
+ "id": 8984,
"properties": {
"type": "left",
"facing": "south",
@@ -218867,7 +223546,7 @@
}
},
{
- "id": 8733,
+ "id": 8985,
"properties": {
"type": "right",
"facing": "south",
@@ -218875,7 +223554,7 @@
}
},
{
- "id": 8734,
+ "id": 8986,
"properties": {
"type": "right",
"facing": "south",
@@ -218883,7 +223562,7 @@
}
},
{
- "id": 8735,
+ "id": 8987,
"properties": {
"type": "single",
"facing": "west",
@@ -218891,7 +223570,7 @@
}
},
{
- "id": 8736,
+ "id": 8988,
"properties": {
"type": "single",
"facing": "west",
@@ -218899,7 +223578,7 @@
}
},
{
- "id": 8737,
+ "id": 8989,
"properties": {
"type": "left",
"facing": "west",
@@ -218907,7 +223586,7 @@
}
},
{
- "id": 8738,
+ "id": 8990,
"properties": {
"type": "left",
"facing": "west",
@@ -218915,7 +223594,7 @@
}
},
{
- "id": 8739,
+ "id": 8991,
"properties": {
"type": "right",
"facing": "west",
@@ -218923,7 +223602,7 @@
}
},
{
- "id": 8740,
+ "id": 8992,
"properties": {
"type": "right",
"facing": "west",
@@ -218931,7 +223610,7 @@
}
},
{
- "id": 8741,
+ "id": 8993,
"properties": {
"type": "single",
"facing": "east",
@@ -218939,7 +223618,7 @@
}
},
{
- "id": 8742,
+ "id": 8994,
"properties": {
"type": "single",
"facing": "east",
@@ -218947,7 +223626,7 @@
}
},
{
- "id": 8743,
+ "id": 8995,
"properties": {
"type": "left",
"facing": "east",
@@ -218955,7 +223634,7 @@
}
},
{
- "id": 8744,
+ "id": 8996,
"properties": {
"type": "left",
"facing": "east",
@@ -218963,7 +223642,7 @@
}
},
{
- "id": 8745,
+ "id": 8997,
"properties": {
"type": "right",
"facing": "east",
@@ -218971,7 +223650,7 @@
}
},
{
- "id": 8746,
+ "id": 8998,
"properties": {
"type": "right",
"facing": "east",
@@ -219013,7 +223692,7 @@
},
"states": [
{
- "id": 7307,
+ "id": 7533,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -219025,7 +223704,7 @@
}
},
{
- "id": 7308,
+ "id": 7534,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -219037,7 +223716,7 @@
}
},
{
- "id": 7309,
+ "id": 7535,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -219049,7 +223728,7 @@
}
},
{
- "id": 7310,
+ "id": 7536,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -219061,7 +223740,7 @@
}
},
{
- "id": 7311,
+ "id": 7537,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -219073,7 +223752,7 @@
}
},
{
- "id": 7312,
+ "id": 7538,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -219085,7 +223764,7 @@
}
},
{
- "id": 7313,
+ "id": 7539,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -219097,7 +223776,7 @@
}
},
{
- "id": 7314,
+ "id": 7540,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -219109,7 +223788,7 @@
}
},
{
- "id": 7315,
+ "id": 7541,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -219121,7 +223800,7 @@
}
},
{
- "id": 7316,
+ "id": 7542,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -219133,7 +223812,7 @@
}
},
{
- "id": 7317,
+ "id": 7543,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -219145,7 +223824,7 @@
}
},
{
- "id": 7318,
+ "id": 7544,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -219157,7 +223836,7 @@
}
},
{
- "id": 7319,
+ "id": 7545,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -219169,7 +223848,7 @@
}
},
{
- "id": 7320,
+ "id": 7546,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -219181,7 +223860,7 @@
}
},
{
- "id": 7321,
+ "id": 7547,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -219193,7 +223872,7 @@
}
},
{
- "id": 7322,
+ "id": 7548,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -219205,7 +223884,7 @@
}
},
{
- "id": 7323,
+ "id": 7549,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -219217,7 +223896,7 @@
}
},
{
- "id": 7324,
+ "id": 7550,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -219229,7 +223908,7 @@
}
},
{
- "id": 7325,
+ "id": 7551,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -219241,7 +223920,7 @@
}
},
{
- "id": 7326,
+ "id": 7552,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -219253,7 +223932,7 @@
}
},
{
- "id": 7327,
+ "id": 7553,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -219265,7 +223944,7 @@
}
},
{
- "id": 7328,
+ "id": 7554,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -219277,7 +223956,7 @@
}
},
{
- "id": 7329,
+ "id": 7555,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -219289,7 +223968,7 @@
}
},
{
- "id": 7330,
+ "id": 7556,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -219301,7 +223980,7 @@
}
},
{
- "id": 7331,
+ "id": 7557,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -219313,7 +223992,7 @@
}
},
{
- "id": 7332,
+ "id": 7558,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -219325,7 +224004,7 @@
}
},
{
- "id": 7333,
+ "id": 7559,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -219337,7 +224016,7 @@
}
},
{
- "id": 7334,
+ "id": 7560,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -219349,7 +224028,7 @@
}
},
{
- "id": 7335,
+ "id": 7561,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -219361,7 +224040,7 @@
}
},
{
- "id": 7336,
+ "id": 7562,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -219373,7 +224052,7 @@
}
},
{
- "id": 7337,
+ "id": 7563,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -219385,7 +224064,7 @@
}
},
{
- "id": 7338,
+ "id": 7564,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -219397,7 +224076,7 @@
}
},
{
- "id": 7339,
+ "id": 7565,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -219409,7 +224088,7 @@
}
},
{
- "id": 7340,
+ "id": 7566,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -219421,7 +224100,7 @@
}
},
{
- "id": 7341,
+ "id": 7567,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -219433,7 +224112,7 @@
}
},
{
- "id": 7342,
+ "id": 7568,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -219445,7 +224124,7 @@
}
},
{
- "id": 7343,
+ "id": 7569,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -219457,7 +224136,7 @@
}
},
{
- "id": 7344,
+ "id": 7570,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -219469,7 +224148,7 @@
}
},
{
- "id": 7345,
+ "id": 7571,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -219481,7 +224160,7 @@
}
},
{
- "id": 7346,
+ "id": 7572,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -219493,7 +224172,7 @@
}
},
{
- "id": 7347,
+ "id": 7573,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -219505,7 +224184,7 @@
}
},
{
- "id": 7348,
+ "id": 7574,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -219517,7 +224196,7 @@
}
},
{
- "id": 7349,
+ "id": 7575,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -219529,7 +224208,7 @@
}
},
{
- "id": 7350,
+ "id": 7576,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -219541,7 +224220,7 @@
}
},
{
- "id": 7351,
+ "id": 7577,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -219553,7 +224232,7 @@
}
},
{
- "id": 7352,
+ "id": 7578,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -219565,7 +224244,7 @@
}
},
{
- "id": 7353,
+ "id": 7579,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -219577,7 +224256,7 @@
}
},
{
- "id": 7354,
+ "id": 7580,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -219589,7 +224268,7 @@
}
},
{
- "id": 7355,
+ "id": 7581,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -219601,7 +224280,7 @@
}
},
{
- "id": 7356,
+ "id": 7582,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -219613,7 +224292,7 @@
}
},
{
- "id": 7357,
+ "id": 7583,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -219625,7 +224304,7 @@
}
},
{
- "id": 7358,
+ "id": 7584,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -219637,7 +224316,7 @@
}
},
{
- "id": 7359,
+ "id": 7585,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -219649,7 +224328,7 @@
}
},
{
- "id": 7360,
+ "id": 7586,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -219661,7 +224340,7 @@
}
},
{
- "id": 7361,
+ "id": 7587,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -219673,7 +224352,7 @@
}
},
{
- "id": 7362,
+ "id": 7588,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -219685,7 +224364,7 @@
}
},
{
- "id": 7363,
+ "id": 7589,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -219697,7 +224376,7 @@
}
},
{
- "id": 7364,
+ "id": 7590,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -219709,7 +224388,7 @@
}
},
{
- "id": 7365,
+ "id": 7591,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -219721,7 +224400,7 @@
}
},
{
- "id": 7366,
+ "id": 7592,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -219733,7 +224412,7 @@
}
},
{
- "id": 7367,
+ "id": 7593,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -219745,7 +224424,7 @@
}
},
{
- "id": 7368,
+ "id": 7594,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -219757,7 +224436,7 @@
}
},
{
- "id": 7369,
+ "id": 7595,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -219769,7 +224448,7 @@
}
},
{
- "id": 7370,
+ "id": 7596,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -219781,7 +224460,7 @@
}
},
{
- "id": 7371,
+ "id": 7597,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -219793,7 +224472,7 @@
}
},
{
- "id": 7372,
+ "id": 7598,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -219805,7 +224484,7 @@
}
},
{
- "id": 7373,
+ "id": 7599,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -219817,7 +224496,7 @@
}
},
{
- "id": 7374,
+ "id": 7600,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -219829,7 +224508,7 @@
}
},
{
- "id": 7375,
+ "id": 7601,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -219841,7 +224520,7 @@
}
},
{
- "id": 7376,
+ "id": 7602,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -219853,7 +224532,7 @@
}
},
{
- "id": 7377,
+ "id": 7603,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -219865,7 +224544,7 @@
}
},
{
- "id": 7378,
+ "id": 7604,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -219877,7 +224556,7 @@
}
},
{
- "id": 7379,
+ "id": 7605,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -219889,7 +224568,7 @@
}
},
{
- "id": 7380,
+ "id": 7606,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -219901,7 +224580,7 @@
}
},
{
- "id": 7381,
+ "id": 7607,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -219913,7 +224592,7 @@
}
},
{
- "id": 7382,
+ "id": 7608,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -219925,7 +224604,7 @@
}
},
{
- "id": 7383,
+ "id": 7609,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -219937,7 +224616,7 @@
}
},
{
- "id": 7384,
+ "id": 7610,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -219949,7 +224628,7 @@
}
},
{
- "id": 7385,
+ "id": 7611,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -219961,7 +224640,7 @@
}
},
{
- "id": 7386,
+ "id": 7612,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -219973,7 +224652,7 @@
}
},
{
- "id": 7387,
+ "id": 7613,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -219985,7 +224664,7 @@
}
},
{
- "id": 7388,
+ "id": 7614,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -219997,7 +224676,7 @@
}
},
{
- "id": 7389,
+ "id": 7615,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -220009,7 +224688,7 @@
}
},
{
- "id": 7390,
+ "id": 7616,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -220021,7 +224700,7 @@
}
},
{
- "id": 7391,
+ "id": 7617,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -220033,7 +224712,7 @@
}
},
{
- "id": 7392,
+ "id": 7618,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -220045,7 +224724,7 @@
}
},
{
- "id": 7393,
+ "id": 7619,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -220057,7 +224736,7 @@
}
},
{
- "id": 7394,
+ "id": 7620,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -220069,7 +224748,7 @@
}
},
{
- "id": 7395,
+ "id": 7621,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -220081,7 +224760,7 @@
}
},
{
- "id": 7396,
+ "id": 7622,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -220093,7 +224772,7 @@
}
},
{
- "id": 7397,
+ "id": 7623,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -220105,7 +224784,7 @@
}
},
{
- "id": 7398,
+ "id": 7624,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -220117,7 +224796,7 @@
}
},
{
- "id": 7399,
+ "id": 7625,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -220129,7 +224808,7 @@
}
},
{
- "id": 7400,
+ "id": 7626,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -220141,7 +224820,7 @@
}
},
{
- "id": 7401,
+ "id": 7627,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -220153,7 +224832,7 @@
}
},
{
- "id": 7402,
+ "id": 7628,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -220165,7 +224844,7 @@
}
},
{
- "id": 7403,
+ "id": 7629,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -220177,7 +224856,7 @@
}
},
{
- "id": 7404,
+ "id": 7630,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -220189,7 +224868,7 @@
}
},
{
- "id": 7405,
+ "id": 7631,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -220201,7 +224880,7 @@
}
},
{
- "id": 7406,
+ "id": 7632,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -220213,7 +224892,7 @@
}
},
{
- "id": 7407,
+ "id": 7633,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -220225,7 +224904,7 @@
}
},
{
- "id": 7408,
+ "id": 7634,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -220237,7 +224916,7 @@
}
},
{
- "id": 7409,
+ "id": 7635,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -220249,7 +224928,7 @@
}
},
{
- "id": 7410,
+ "id": 7636,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -220261,7 +224940,7 @@
}
},
{
- "id": 7411,
+ "id": 7637,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -220273,7 +224952,7 @@
}
},
{
- "id": 7412,
+ "id": 7638,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -220285,7 +224964,7 @@
}
},
{
- "id": 7413,
+ "id": 7639,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -220297,7 +224976,7 @@
}
},
{
- "id": 7414,
+ "id": 7640,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -220309,7 +224988,7 @@
}
},
{
- "id": 7415,
+ "id": 7641,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -220321,7 +225000,7 @@
}
},
{
- "id": 7416,
+ "id": 7642,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -220333,7 +225012,7 @@
}
},
{
- "id": 7417,
+ "id": 7643,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -220345,7 +225024,7 @@
}
},
{
- "id": 7418,
+ "id": 7644,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -220357,7 +225036,7 @@
}
},
{
- "id": 7419,
+ "id": 7645,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -220369,7 +225048,7 @@
}
},
{
- "id": 7420,
+ "id": 7646,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -220381,7 +225060,7 @@
}
},
{
- "id": 7421,
+ "id": 7647,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -220393,7 +225072,7 @@
}
},
{
- "id": 7422,
+ "id": 7648,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -220405,7 +225084,7 @@
}
},
{
- "id": 7423,
+ "id": 7649,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -220417,7 +225096,7 @@
}
},
{
- "id": 7424,
+ "id": 7650,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -220429,7 +225108,7 @@
}
},
{
- "id": 7425,
+ "id": 7651,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -220441,7 +225120,7 @@
}
},
{
- "id": 7426,
+ "id": 7652,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -220453,7 +225132,7 @@
}
},
{
- "id": 7427,
+ "id": 7653,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -220465,7 +225144,7 @@
}
},
{
- "id": 7428,
+ "id": 7654,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -220477,7 +225156,7 @@
}
},
{
- "id": 7429,
+ "id": 7655,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -220489,7 +225168,7 @@
}
},
{
- "id": 7430,
+ "id": 7656,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -220501,7 +225180,7 @@
}
},
{
- "id": 7431,
+ "id": 7657,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -220513,7 +225192,7 @@
}
},
{
- "id": 7432,
+ "id": 7658,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -220525,7 +225204,7 @@
}
},
{
- "id": 7433,
+ "id": 7659,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -220538,7 +225217,7 @@
},
{
"default": true,
- "id": 7434,
+ "id": 7660,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -220570,7 +225249,7 @@
},
"states": [
{
- "id": 7291,
+ "id": 7517,
"properties": {
"attached": "true",
"facing": "north",
@@ -220578,7 +225257,7 @@
}
},
{
- "id": 7292,
+ "id": 7518,
"properties": {
"attached": "true",
"facing": "north",
@@ -220586,7 +225265,7 @@
}
},
{
- "id": 7293,
+ "id": 7519,
"properties": {
"attached": "true",
"facing": "south",
@@ -220594,7 +225273,7 @@
}
},
{
- "id": 7294,
+ "id": 7520,
"properties": {
"attached": "true",
"facing": "south",
@@ -220602,7 +225281,7 @@
}
},
{
- "id": 7295,
+ "id": 7521,
"properties": {
"attached": "true",
"facing": "west",
@@ -220610,7 +225289,7 @@
}
},
{
- "id": 7296,
+ "id": 7522,
"properties": {
"attached": "true",
"facing": "west",
@@ -220618,7 +225297,7 @@
}
},
{
- "id": 7297,
+ "id": 7523,
"properties": {
"attached": "true",
"facing": "east",
@@ -220626,7 +225305,7 @@
}
},
{
- "id": 7298,
+ "id": 7524,
"properties": {
"attached": "true",
"facing": "east",
@@ -220634,7 +225313,7 @@
}
},
{
- "id": 7299,
+ "id": 7525,
"properties": {
"attached": "false",
"facing": "north",
@@ -220643,7 +225322,7 @@
},
{
"default": true,
- "id": 7300,
+ "id": 7526,
"properties": {
"attached": "false",
"facing": "north",
@@ -220651,7 +225330,7 @@
}
},
{
- "id": 7301,
+ "id": 7527,
"properties": {
"attached": "false",
"facing": "south",
@@ -220659,7 +225338,7 @@
}
},
{
- "id": 7302,
+ "id": 7528,
"properties": {
"attached": "false",
"facing": "south",
@@ -220667,7 +225346,7 @@
}
},
{
- "id": 7303,
+ "id": 7529,
"properties": {
"attached": "false",
"facing": "west",
@@ -220675,7 +225354,7 @@
}
},
{
- "id": 7304,
+ "id": 7530,
"properties": {
"attached": "false",
"facing": "west",
@@ -220683,7 +225362,7 @@
}
},
{
- "id": 7305,
+ "id": 7531,
"properties": {
"attached": "false",
"facing": "east",
@@ -220691,7 +225370,7 @@
}
},
{
- "id": 7306,
+ "id": 7532,
"properties": {
"attached": "false",
"facing": "east",
@@ -220710,13 +225389,13 @@
"states": [
{
"default": true,
- "id": 12195,
+ "id": 12664,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12196,
+ "id": 12665,
"properties": {
"waterlogged": "false"
}
@@ -220727,7 +225406,7 @@
"states": [
{
"default": true,
- "id": 12180
+ "id": 12649
}
]
},
@@ -220741,13 +225420,13 @@
"states": [
{
"default": true,
- "id": 12215,
+ "id": 12684,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12216,
+ "id": 12685,
"properties": {
"waterlogged": "false"
}
@@ -220770,56 +225449,56 @@
"states": [
{
"default": true,
- "id": 12265,
+ "id": 12734,
"properties": {
"facing": "north",
"waterlogged": "true"
}
},
{
- "id": 12266,
+ "id": 12735,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 12267,
+ "id": 12736,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 12268,
+ "id": 12737,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 12269,
+ "id": 12738,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 12270,
+ "id": 12739,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 12271,
+ "id": 12740,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 12272,
+ "id": 12741,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -220831,7 +225510,7 @@
"states": [
{
"default": true,
- "id": 20453
+ "id": 20922
}
]
},
@@ -220852,84 +225531,84 @@
"states": [
{
"default": true,
- "id": 12163,
+ "id": 12632,
"properties": {
"eggs": "1",
"hatch": "0"
}
},
{
- "id": 12164,
+ "id": 12633,
"properties": {
"eggs": "1",
"hatch": "1"
}
},
{
- "id": 12165,
+ "id": 12634,
"properties": {
"eggs": "1",
"hatch": "2"
}
},
{
- "id": 12166,
+ "id": 12635,
"properties": {
"eggs": "2",
"hatch": "0"
}
},
{
- "id": 12167,
+ "id": 12636,
"properties": {
"eggs": "2",
"hatch": "1"
}
},
{
- "id": 12168,
+ "id": 12637,
"properties": {
"eggs": "2",
"hatch": "2"
}
},
{
- "id": 12169,
+ "id": 12638,
"properties": {
"eggs": "3",
"hatch": "0"
}
},
{
- "id": 12170,
+ "id": 12639,
"properties": {
"eggs": "3",
"hatch": "1"
}
},
{
- "id": 12171,
+ "id": 12640,
"properties": {
"eggs": "3",
"hatch": "2"
}
},
{
- "id": 12172,
+ "id": 12641,
"properties": {
"eggs": "4",
"hatch": "0"
}
},
{
- "id": 12173,
+ "id": 12642,
"properties": {
"eggs": "4",
"hatch": "1"
}
},
{
- "id": 12174,
+ "id": 12643,
"properties": {
"eggs": "4",
"hatch": "2"
@@ -220971,157 +225650,157 @@
"states": [
{
"default": true,
- "id": 18010,
+ "id": 18479,
"properties": {
"age": "0"
}
},
{
- "id": 18011,
+ "id": 18480,
"properties": {
"age": "1"
}
},
{
- "id": 18012,
+ "id": 18481,
"properties": {
"age": "2"
}
},
{
- "id": 18013,
+ "id": 18482,
"properties": {
"age": "3"
}
},
{
- "id": 18014,
+ "id": 18483,
"properties": {
"age": "4"
}
},
{
- "id": 18015,
+ "id": 18484,
"properties": {
"age": "5"
}
},
{
- "id": 18016,
+ "id": 18485,
"properties": {
"age": "6"
}
},
{
- "id": 18017,
+ "id": 18486,
"properties": {
"age": "7"
}
},
{
- "id": 18018,
+ "id": 18487,
"properties": {
"age": "8"
}
},
{
- "id": 18019,
+ "id": 18488,
"properties": {
"age": "9"
}
},
{
- "id": 18020,
+ "id": 18489,
"properties": {
"age": "10"
}
},
{
- "id": 18021,
+ "id": 18490,
"properties": {
"age": "11"
}
},
{
- "id": 18022,
+ "id": 18491,
"properties": {
"age": "12"
}
},
{
- "id": 18023,
+ "id": 18492,
"properties": {
"age": "13"
}
},
{
- "id": 18024,
+ "id": 18493,
"properties": {
"age": "14"
}
},
{
- "id": 18025,
+ "id": 18494,
"properties": {
"age": "15"
}
},
{
- "id": 18026,
+ "id": 18495,
"properties": {
"age": "16"
}
},
{
- "id": 18027,
+ "id": 18496,
"properties": {
"age": "17"
}
},
{
- "id": 18028,
+ "id": 18497,
"properties": {
"age": "18"
}
},
{
- "id": 18029,
+ "id": 18498,
"properties": {
"age": "19"
}
},
{
- "id": 18030,
+ "id": 18499,
"properties": {
"age": "20"
}
},
{
- "id": 18031,
+ "id": 18500,
"properties": {
"age": "21"
}
},
{
- "id": 18032,
+ "id": 18501,
"properties": {
"age": "22"
}
},
{
- "id": 18033,
+ "id": 18502,
"properties": {
"age": "23"
}
},
{
- "id": 18034,
+ "id": 18503,
"properties": {
"age": "24"
}
},
{
- "id": 18035,
+ "id": 18504,
"properties": {
"age": "25"
}
@@ -221132,7 +225811,7 @@
"states": [
{
"default": true,
- "id": 18036
+ "id": 18505
}
]
},
@@ -221146,20 +225825,20 @@
},
"states": [
{
- "id": 23224,
+ "id": 23709,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 23225,
+ "id": 23710,
"properties": {
"axis": "y"
}
},
{
- "id": 23226,
+ "id": 23711,
"properties": {
"axis": "z"
}
@@ -221191,7 +225870,7 @@
},
"states": [
{
- "id": 6607,
+ "id": 6833,
"properties": {
"east": "true",
"north": "true",
@@ -221201,7 +225880,7 @@
}
},
{
- "id": 6608,
+ "id": 6834,
"properties": {
"east": "true",
"north": "true",
@@ -221211,7 +225890,7 @@
}
},
{
- "id": 6609,
+ "id": 6835,
"properties": {
"east": "true",
"north": "true",
@@ -221221,7 +225900,7 @@
}
},
{
- "id": 6610,
+ "id": 6836,
"properties": {
"east": "true",
"north": "true",
@@ -221231,7 +225910,7 @@
}
},
{
- "id": 6611,
+ "id": 6837,
"properties": {
"east": "true",
"north": "true",
@@ -221241,7 +225920,7 @@
}
},
{
- "id": 6612,
+ "id": 6838,
"properties": {
"east": "true",
"north": "true",
@@ -221251,7 +225930,7 @@
}
},
{
- "id": 6613,
+ "id": 6839,
"properties": {
"east": "true",
"north": "true",
@@ -221261,7 +225940,7 @@
}
},
{
- "id": 6614,
+ "id": 6840,
"properties": {
"east": "true",
"north": "true",
@@ -221271,7 +225950,7 @@
}
},
{
- "id": 6615,
+ "id": 6841,
"properties": {
"east": "true",
"north": "false",
@@ -221281,7 +225960,7 @@
}
},
{
- "id": 6616,
+ "id": 6842,
"properties": {
"east": "true",
"north": "false",
@@ -221291,7 +225970,7 @@
}
},
{
- "id": 6617,
+ "id": 6843,
"properties": {
"east": "true",
"north": "false",
@@ -221301,7 +225980,7 @@
}
},
{
- "id": 6618,
+ "id": 6844,
"properties": {
"east": "true",
"north": "false",
@@ -221311,7 +225990,7 @@
}
},
{
- "id": 6619,
+ "id": 6845,
"properties": {
"east": "true",
"north": "false",
@@ -221321,7 +226000,7 @@
}
},
{
- "id": 6620,
+ "id": 6846,
"properties": {
"east": "true",
"north": "false",
@@ -221331,7 +226010,7 @@
}
},
{
- "id": 6621,
+ "id": 6847,
"properties": {
"east": "true",
"north": "false",
@@ -221341,7 +226020,7 @@
}
},
{
- "id": 6622,
+ "id": 6848,
"properties": {
"east": "true",
"north": "false",
@@ -221351,7 +226030,7 @@
}
},
{
- "id": 6623,
+ "id": 6849,
"properties": {
"east": "false",
"north": "true",
@@ -221361,7 +226040,7 @@
}
},
{
- "id": 6624,
+ "id": 6850,
"properties": {
"east": "false",
"north": "true",
@@ -221371,7 +226050,7 @@
}
},
{
- "id": 6625,
+ "id": 6851,
"properties": {
"east": "false",
"north": "true",
@@ -221381,7 +226060,7 @@
}
},
{
- "id": 6626,
+ "id": 6852,
"properties": {
"east": "false",
"north": "true",
@@ -221391,7 +226070,7 @@
}
},
{
- "id": 6627,
+ "id": 6853,
"properties": {
"east": "false",
"north": "true",
@@ -221401,7 +226080,7 @@
}
},
{
- "id": 6628,
+ "id": 6854,
"properties": {
"east": "false",
"north": "true",
@@ -221411,7 +226090,7 @@
}
},
{
- "id": 6629,
+ "id": 6855,
"properties": {
"east": "false",
"north": "true",
@@ -221421,7 +226100,7 @@
}
},
{
- "id": 6630,
+ "id": 6856,
"properties": {
"east": "false",
"north": "true",
@@ -221431,7 +226110,7 @@
}
},
{
- "id": 6631,
+ "id": 6857,
"properties": {
"east": "false",
"north": "false",
@@ -221441,7 +226120,7 @@
}
},
{
- "id": 6632,
+ "id": 6858,
"properties": {
"east": "false",
"north": "false",
@@ -221451,7 +226130,7 @@
}
},
{
- "id": 6633,
+ "id": 6859,
"properties": {
"east": "false",
"north": "false",
@@ -221461,7 +226140,7 @@
}
},
{
- "id": 6634,
+ "id": 6860,
"properties": {
"east": "false",
"north": "false",
@@ -221471,7 +226150,7 @@
}
},
{
- "id": 6635,
+ "id": 6861,
"properties": {
"east": "false",
"north": "false",
@@ -221481,7 +226160,7 @@
}
},
{
- "id": 6636,
+ "id": 6862,
"properties": {
"east": "false",
"north": "false",
@@ -221491,7 +226170,7 @@
}
},
{
- "id": 6637,
+ "id": 6863,
"properties": {
"east": "false",
"north": "false",
@@ -221502,7 +226181,7 @@
},
{
"default": true,
- "id": 6638,
+ "id": 6864,
"properties": {
"east": "false",
"north": "false",
@@ -221517,7 +226196,7 @@
"states": [
{
"default": true,
- "id": 12330
+ "id": 12799
}
]
},
@@ -221533,25 +226212,25 @@
"states": [
{
"default": true,
- "id": 2304,
+ "id": 2352,
"properties": {
"facing": "north"
}
},
{
- "id": 2305,
+ "id": 2353,
"properties": {
"facing": "south"
}
},
{
- "id": 2306,
+ "id": 2354,
"properties": {
"facing": "west"
}
},
{
- "id": 2307,
+ "id": 2355,
"properties": {
"facing": "east"
}
@@ -221578,7 +226257,7 @@
},
"states": [
{
- "id": 18496,
+ "id": 18965,
"properties": {
"face": "floor",
"facing": "north",
@@ -221586,7 +226265,7 @@
}
},
{
- "id": 18497,
+ "id": 18966,
"properties": {
"face": "floor",
"facing": "north",
@@ -221594,7 +226273,7 @@
}
},
{
- "id": 18498,
+ "id": 18967,
"properties": {
"face": "floor",
"facing": "south",
@@ -221602,7 +226281,7 @@
}
},
{
- "id": 18499,
+ "id": 18968,
"properties": {
"face": "floor",
"facing": "south",
@@ -221610,7 +226289,7 @@
}
},
{
- "id": 18500,
+ "id": 18969,
"properties": {
"face": "floor",
"facing": "west",
@@ -221618,7 +226297,7 @@
}
},
{
- "id": 18501,
+ "id": 18970,
"properties": {
"face": "floor",
"facing": "west",
@@ -221626,7 +226305,7 @@
}
},
{
- "id": 18502,
+ "id": 18971,
"properties": {
"face": "floor",
"facing": "east",
@@ -221634,7 +226313,7 @@
}
},
{
- "id": 18503,
+ "id": 18972,
"properties": {
"face": "floor",
"facing": "east",
@@ -221642,7 +226321,7 @@
}
},
{
- "id": 18504,
+ "id": 18973,
"properties": {
"face": "wall",
"facing": "north",
@@ -221651,7 +226330,7 @@
},
{
"default": true,
- "id": 18505,
+ "id": 18974,
"properties": {
"face": "wall",
"facing": "north",
@@ -221659,7 +226338,7 @@
}
},
{
- "id": 18506,
+ "id": 18975,
"properties": {
"face": "wall",
"facing": "south",
@@ -221667,7 +226346,7 @@
}
},
{
- "id": 18507,
+ "id": 18976,
"properties": {
"face": "wall",
"facing": "south",
@@ -221675,7 +226354,7 @@
}
},
{
- "id": 18508,
+ "id": 18977,
"properties": {
"face": "wall",
"facing": "west",
@@ -221683,7 +226362,7 @@
}
},
{
- "id": 18509,
+ "id": 18978,
"properties": {
"face": "wall",
"facing": "west",
@@ -221691,7 +226370,7 @@
}
},
{
- "id": 18510,
+ "id": 18979,
"properties": {
"face": "wall",
"facing": "east",
@@ -221699,7 +226378,7 @@
}
},
{
- "id": 18511,
+ "id": 18980,
"properties": {
"face": "wall",
"facing": "east",
@@ -221707,7 +226386,7 @@
}
},
{
- "id": 18512,
+ "id": 18981,
"properties": {
"face": "ceiling",
"facing": "north",
@@ -221715,7 +226394,7 @@
}
},
{
- "id": 18513,
+ "id": 18982,
"properties": {
"face": "ceiling",
"facing": "north",
@@ -221723,7 +226402,7 @@
}
},
{
- "id": 18514,
+ "id": 18983,
"properties": {
"face": "ceiling",
"facing": "south",
@@ -221731,7 +226410,7 @@
}
},
{
- "id": 18515,
+ "id": 18984,
"properties": {
"face": "ceiling",
"facing": "south",
@@ -221739,7 +226418,7 @@
}
},
{
- "id": 18516,
+ "id": 18985,
"properties": {
"face": "ceiling",
"facing": "west",
@@ -221747,7 +226426,7 @@
}
},
{
- "id": 18517,
+ "id": 18986,
"properties": {
"face": "ceiling",
"facing": "west",
@@ -221755,7 +226434,7 @@
}
},
{
- "id": 18518,
+ "id": 18987,
"properties": {
"face": "ceiling",
"facing": "east",
@@ -221763,7 +226442,7 @@
}
},
{
- "id": 18519,
+ "id": 18988,
"properties": {
"face": "ceiling",
"facing": "east",
@@ -221799,7 +226478,7 @@
},
"states": [
{
- "id": 18584,
+ "id": 19053,
"properties": {
"facing": "north",
"half": "upper",
@@ -221809,7 +226488,7 @@
}
},
{
- "id": 18585,
+ "id": 19054,
"properties": {
"facing": "north",
"half": "upper",
@@ -221819,7 +226498,7 @@
}
},
{
- "id": 18586,
+ "id": 19055,
"properties": {
"facing": "north",
"half": "upper",
@@ -221829,7 +226508,7 @@
}
},
{
- "id": 18587,
+ "id": 19056,
"properties": {
"facing": "north",
"half": "upper",
@@ -221839,7 +226518,7 @@
}
},
{
- "id": 18588,
+ "id": 19057,
"properties": {
"facing": "north",
"half": "upper",
@@ -221849,7 +226528,7 @@
}
},
{
- "id": 18589,
+ "id": 19058,
"properties": {
"facing": "north",
"half": "upper",
@@ -221859,7 +226538,7 @@
}
},
{
- "id": 18590,
+ "id": 19059,
"properties": {
"facing": "north",
"half": "upper",
@@ -221869,7 +226548,7 @@
}
},
{
- "id": 18591,
+ "id": 19060,
"properties": {
"facing": "north",
"half": "upper",
@@ -221879,7 +226558,7 @@
}
},
{
- "id": 18592,
+ "id": 19061,
"properties": {
"facing": "north",
"half": "lower",
@@ -221889,7 +226568,7 @@
}
},
{
- "id": 18593,
+ "id": 19062,
"properties": {
"facing": "north",
"half": "lower",
@@ -221899,7 +226578,7 @@
}
},
{
- "id": 18594,
+ "id": 19063,
"properties": {
"facing": "north",
"half": "lower",
@@ -221910,7 +226589,7 @@
},
{
"default": true,
- "id": 18595,
+ "id": 19064,
"properties": {
"facing": "north",
"half": "lower",
@@ -221920,7 +226599,7 @@
}
},
{
- "id": 18596,
+ "id": 19065,
"properties": {
"facing": "north",
"half": "lower",
@@ -221930,7 +226609,7 @@
}
},
{
- "id": 18597,
+ "id": 19066,
"properties": {
"facing": "north",
"half": "lower",
@@ -221940,7 +226619,7 @@
}
},
{
- "id": 18598,
+ "id": 19067,
"properties": {
"facing": "north",
"half": "lower",
@@ -221950,7 +226629,7 @@
}
},
{
- "id": 18599,
+ "id": 19068,
"properties": {
"facing": "north",
"half": "lower",
@@ -221960,7 +226639,7 @@
}
},
{
- "id": 18600,
+ "id": 19069,
"properties": {
"facing": "south",
"half": "upper",
@@ -221970,7 +226649,7 @@
}
},
{
- "id": 18601,
+ "id": 19070,
"properties": {
"facing": "south",
"half": "upper",
@@ -221980,7 +226659,7 @@
}
},
{
- "id": 18602,
+ "id": 19071,
"properties": {
"facing": "south",
"half": "upper",
@@ -221990,7 +226669,7 @@
}
},
{
- "id": 18603,
+ "id": 19072,
"properties": {
"facing": "south",
"half": "upper",
@@ -222000,7 +226679,7 @@
}
},
{
- "id": 18604,
+ "id": 19073,
"properties": {
"facing": "south",
"half": "upper",
@@ -222010,7 +226689,7 @@
}
},
{
- "id": 18605,
+ "id": 19074,
"properties": {
"facing": "south",
"half": "upper",
@@ -222020,7 +226699,7 @@
}
},
{
- "id": 18606,
+ "id": 19075,
"properties": {
"facing": "south",
"half": "upper",
@@ -222030,7 +226709,7 @@
}
},
{
- "id": 18607,
+ "id": 19076,
"properties": {
"facing": "south",
"half": "upper",
@@ -222040,7 +226719,7 @@
}
},
{
- "id": 18608,
+ "id": 19077,
"properties": {
"facing": "south",
"half": "lower",
@@ -222050,7 +226729,7 @@
}
},
{
- "id": 18609,
+ "id": 19078,
"properties": {
"facing": "south",
"half": "lower",
@@ -222060,7 +226739,7 @@
}
},
{
- "id": 18610,
+ "id": 19079,
"properties": {
"facing": "south",
"half": "lower",
@@ -222070,7 +226749,7 @@
}
},
{
- "id": 18611,
+ "id": 19080,
"properties": {
"facing": "south",
"half": "lower",
@@ -222080,7 +226759,7 @@
}
},
{
- "id": 18612,
+ "id": 19081,
"properties": {
"facing": "south",
"half": "lower",
@@ -222090,7 +226769,7 @@
}
},
{
- "id": 18613,
+ "id": 19082,
"properties": {
"facing": "south",
"half": "lower",
@@ -222100,7 +226779,7 @@
}
},
{
- "id": 18614,
+ "id": 19083,
"properties": {
"facing": "south",
"half": "lower",
@@ -222110,7 +226789,7 @@
}
},
{
- "id": 18615,
+ "id": 19084,
"properties": {
"facing": "south",
"half": "lower",
@@ -222120,7 +226799,7 @@
}
},
{
- "id": 18616,
+ "id": 19085,
"properties": {
"facing": "west",
"half": "upper",
@@ -222130,7 +226809,7 @@
}
},
{
- "id": 18617,
+ "id": 19086,
"properties": {
"facing": "west",
"half": "upper",
@@ -222140,7 +226819,7 @@
}
},
{
- "id": 18618,
+ "id": 19087,
"properties": {
"facing": "west",
"half": "upper",
@@ -222150,7 +226829,7 @@
}
},
{
- "id": 18619,
+ "id": 19088,
"properties": {
"facing": "west",
"half": "upper",
@@ -222160,7 +226839,7 @@
}
},
{
- "id": 18620,
+ "id": 19089,
"properties": {
"facing": "west",
"half": "upper",
@@ -222170,7 +226849,7 @@
}
},
{
- "id": 18621,
+ "id": 19090,
"properties": {
"facing": "west",
"half": "upper",
@@ -222180,7 +226859,7 @@
}
},
{
- "id": 18622,
+ "id": 19091,
"properties": {
"facing": "west",
"half": "upper",
@@ -222190,7 +226869,7 @@
}
},
{
- "id": 18623,
+ "id": 19092,
"properties": {
"facing": "west",
"half": "upper",
@@ -222200,7 +226879,7 @@
}
},
{
- "id": 18624,
+ "id": 19093,
"properties": {
"facing": "west",
"half": "lower",
@@ -222210,7 +226889,7 @@
}
},
{
- "id": 18625,
+ "id": 19094,
"properties": {
"facing": "west",
"half": "lower",
@@ -222220,7 +226899,7 @@
}
},
{
- "id": 18626,
+ "id": 19095,
"properties": {
"facing": "west",
"half": "lower",
@@ -222230,7 +226909,7 @@
}
},
{
- "id": 18627,
+ "id": 19096,
"properties": {
"facing": "west",
"half": "lower",
@@ -222240,7 +226919,7 @@
}
},
{
- "id": 18628,
+ "id": 19097,
"properties": {
"facing": "west",
"half": "lower",
@@ -222250,7 +226929,7 @@
}
},
{
- "id": 18629,
+ "id": 19098,
"properties": {
"facing": "west",
"half": "lower",
@@ -222260,7 +226939,7 @@
}
},
{
- "id": 18630,
+ "id": 19099,
"properties": {
"facing": "west",
"half": "lower",
@@ -222270,7 +226949,7 @@
}
},
{
- "id": 18631,
+ "id": 19100,
"properties": {
"facing": "west",
"half": "lower",
@@ -222280,7 +226959,7 @@
}
},
{
- "id": 18632,
+ "id": 19101,
"properties": {
"facing": "east",
"half": "upper",
@@ -222290,7 +226969,7 @@
}
},
{
- "id": 18633,
+ "id": 19102,
"properties": {
"facing": "east",
"half": "upper",
@@ -222300,7 +226979,7 @@
}
},
{
- "id": 18634,
+ "id": 19103,
"properties": {
"facing": "east",
"half": "upper",
@@ -222310,7 +226989,7 @@
}
},
{
- "id": 18635,
+ "id": 19104,
"properties": {
"facing": "east",
"half": "upper",
@@ -222320,7 +226999,7 @@
}
},
{
- "id": 18636,
+ "id": 19105,
"properties": {
"facing": "east",
"half": "upper",
@@ -222330,7 +227009,7 @@
}
},
{
- "id": 18637,
+ "id": 19106,
"properties": {
"facing": "east",
"half": "upper",
@@ -222340,7 +227019,7 @@
}
},
{
- "id": 18638,
+ "id": 19107,
"properties": {
"facing": "east",
"half": "upper",
@@ -222350,7 +227029,7 @@
}
},
{
- "id": 18639,
+ "id": 19108,
"properties": {
"facing": "east",
"half": "upper",
@@ -222360,7 +227039,7 @@
}
},
{
- "id": 18640,
+ "id": 19109,
"properties": {
"facing": "east",
"half": "lower",
@@ -222370,7 +227049,7 @@
}
},
{
- "id": 18641,
+ "id": 19110,
"properties": {
"facing": "east",
"half": "lower",
@@ -222380,7 +227059,7 @@
}
},
{
- "id": 18642,
+ "id": 19111,
"properties": {
"facing": "east",
"half": "lower",
@@ -222390,7 +227069,7 @@
}
},
{
- "id": 18643,
+ "id": 19112,
"properties": {
"facing": "east",
"half": "lower",
@@ -222400,7 +227079,7 @@
}
},
{
- "id": 18644,
+ "id": 19113,
"properties": {
"facing": "east",
"half": "lower",
@@ -222410,7 +227089,7 @@
}
},
{
- "id": 18645,
+ "id": 19114,
"properties": {
"facing": "east",
"half": "lower",
@@ -222420,7 +227099,7 @@
}
},
{
- "id": 18646,
+ "id": 19115,
"properties": {
"facing": "east",
"half": "lower",
@@ -222430,7 +227109,7 @@
}
},
{
- "id": 18647,
+ "id": 19116,
"properties": {
"facing": "east",
"half": "lower",
@@ -222466,7 +227145,7 @@
},
"states": [
{
- "id": 18088,
+ "id": 18557,
"properties": {
"east": "true",
"north": "true",
@@ -222476,7 +227155,7 @@
}
},
{
- "id": 18089,
+ "id": 18558,
"properties": {
"east": "true",
"north": "true",
@@ -222486,7 +227165,7 @@
}
},
{
- "id": 18090,
+ "id": 18559,
"properties": {
"east": "true",
"north": "true",
@@ -222496,7 +227175,7 @@
}
},
{
- "id": 18091,
+ "id": 18560,
"properties": {
"east": "true",
"north": "true",
@@ -222506,7 +227185,7 @@
}
},
{
- "id": 18092,
+ "id": 18561,
"properties": {
"east": "true",
"north": "true",
@@ -222516,7 +227195,7 @@
}
},
{
- "id": 18093,
+ "id": 18562,
"properties": {
"east": "true",
"north": "true",
@@ -222526,7 +227205,7 @@
}
},
{
- "id": 18094,
+ "id": 18563,
"properties": {
"east": "true",
"north": "true",
@@ -222536,7 +227215,7 @@
}
},
{
- "id": 18095,
+ "id": 18564,
"properties": {
"east": "true",
"north": "true",
@@ -222546,7 +227225,7 @@
}
},
{
- "id": 18096,
+ "id": 18565,
"properties": {
"east": "true",
"north": "false",
@@ -222556,7 +227235,7 @@
}
},
{
- "id": 18097,
+ "id": 18566,
"properties": {
"east": "true",
"north": "false",
@@ -222566,7 +227245,7 @@
}
},
{
- "id": 18098,
+ "id": 18567,
"properties": {
"east": "true",
"north": "false",
@@ -222576,7 +227255,7 @@
}
},
{
- "id": 18099,
+ "id": 18568,
"properties": {
"east": "true",
"north": "false",
@@ -222586,7 +227265,7 @@
}
},
{
- "id": 18100,
+ "id": 18569,
"properties": {
"east": "true",
"north": "false",
@@ -222596,7 +227275,7 @@
}
},
{
- "id": 18101,
+ "id": 18570,
"properties": {
"east": "true",
"north": "false",
@@ -222606,7 +227285,7 @@
}
},
{
- "id": 18102,
+ "id": 18571,
"properties": {
"east": "true",
"north": "false",
@@ -222616,7 +227295,7 @@
}
},
{
- "id": 18103,
+ "id": 18572,
"properties": {
"east": "true",
"north": "false",
@@ -222626,7 +227305,7 @@
}
},
{
- "id": 18104,
+ "id": 18573,
"properties": {
"east": "false",
"north": "true",
@@ -222636,7 +227315,7 @@
}
},
{
- "id": 18105,
+ "id": 18574,
"properties": {
"east": "false",
"north": "true",
@@ -222646,7 +227325,7 @@
}
},
{
- "id": 18106,
+ "id": 18575,
"properties": {
"east": "false",
"north": "true",
@@ -222656,7 +227335,7 @@
}
},
{
- "id": 18107,
+ "id": 18576,
"properties": {
"east": "false",
"north": "true",
@@ -222666,7 +227345,7 @@
}
},
{
- "id": 18108,
+ "id": 18577,
"properties": {
"east": "false",
"north": "true",
@@ -222676,7 +227355,7 @@
}
},
{
- "id": 18109,
+ "id": 18578,
"properties": {
"east": "false",
"north": "true",
@@ -222686,7 +227365,7 @@
}
},
{
- "id": 18110,
+ "id": 18579,
"properties": {
"east": "false",
"north": "true",
@@ -222696,7 +227375,7 @@
}
},
{
- "id": 18111,
+ "id": 18580,
"properties": {
"east": "false",
"north": "true",
@@ -222706,7 +227385,7 @@
}
},
{
- "id": 18112,
+ "id": 18581,
"properties": {
"east": "false",
"north": "false",
@@ -222716,7 +227395,7 @@
}
},
{
- "id": 18113,
+ "id": 18582,
"properties": {
"east": "false",
"north": "false",
@@ -222726,7 +227405,7 @@
}
},
{
- "id": 18114,
+ "id": 18583,
"properties": {
"east": "false",
"north": "false",
@@ -222736,7 +227415,7 @@
}
},
{
- "id": 18115,
+ "id": 18584,
"properties": {
"east": "false",
"north": "false",
@@ -222746,7 +227425,7 @@
}
},
{
- "id": 18116,
+ "id": 18585,
"properties": {
"east": "false",
"north": "false",
@@ -222756,7 +227435,7 @@
}
},
{
- "id": 18117,
+ "id": 18586,
"properties": {
"east": "false",
"north": "false",
@@ -222766,7 +227445,7 @@
}
},
{
- "id": 18118,
+ "id": 18587,
"properties": {
"east": "false",
"north": "false",
@@ -222777,7 +227456,7 @@
},
{
"default": true,
- "id": 18119,
+ "id": 18588,
"properties": {
"east": "false",
"north": "false",
@@ -222811,7 +227490,7 @@
},
"states": [
{
- "id": 18280,
+ "id": 18749,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -222820,7 +227499,7 @@
}
},
{
- "id": 18281,
+ "id": 18750,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -222829,7 +227508,7 @@
}
},
{
- "id": 18282,
+ "id": 18751,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -222838,7 +227517,7 @@
}
},
{
- "id": 18283,
+ "id": 18752,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -222847,7 +227526,7 @@
}
},
{
- "id": 18284,
+ "id": 18753,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -222856,7 +227535,7 @@
}
},
{
- "id": 18285,
+ "id": 18754,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -222865,7 +227544,7 @@
}
},
{
- "id": 18286,
+ "id": 18755,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -222875,7 +227554,7 @@
},
{
"default": true,
- "id": 18287,
+ "id": 18756,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -222884,7 +227563,7 @@
}
},
{
- "id": 18288,
+ "id": 18757,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -222893,7 +227572,7 @@
}
},
{
- "id": 18289,
+ "id": 18758,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -222902,7 +227581,7 @@
}
},
{
- "id": 18290,
+ "id": 18759,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -222911,7 +227590,7 @@
}
},
{
- "id": 18291,
+ "id": 18760,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -222920,7 +227599,7 @@
}
},
{
- "id": 18292,
+ "id": 18761,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -222929,7 +227608,7 @@
}
},
{
- "id": 18293,
+ "id": 18762,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -222938,7 +227617,7 @@
}
},
{
- "id": 18294,
+ "id": 18763,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -222947,7 +227626,7 @@
}
},
{
- "id": 18295,
+ "id": 18764,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -222956,7 +227635,7 @@
}
},
{
- "id": 18296,
+ "id": 18765,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -222965,7 +227644,7 @@
}
},
{
- "id": 18297,
+ "id": 18766,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -222974,7 +227653,7 @@
}
},
{
- "id": 18298,
+ "id": 18767,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -222983,7 +227662,7 @@
}
},
{
- "id": 18299,
+ "id": 18768,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -222992,7 +227671,7 @@
}
},
{
- "id": 18300,
+ "id": 18769,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -223001,7 +227680,7 @@
}
},
{
- "id": 18301,
+ "id": 18770,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -223010,7 +227689,7 @@
}
},
{
- "id": 18302,
+ "id": 18771,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -223019,7 +227698,7 @@
}
},
{
- "id": 18303,
+ "id": 18772,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -223028,7 +227707,7 @@
}
},
{
- "id": 18304,
+ "id": 18773,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -223037,7 +227716,7 @@
}
},
{
- "id": 18305,
+ "id": 18774,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -223046,7 +227725,7 @@
}
},
{
- "id": 18306,
+ "id": 18775,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -223055,7 +227734,7 @@
}
},
{
- "id": 18307,
+ "id": 18776,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -223064,7 +227743,7 @@
}
},
{
- "id": 18308,
+ "id": 18777,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -223073,7 +227752,7 @@
}
},
{
- "id": 18309,
+ "id": 18778,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -223082,7 +227761,7 @@
}
},
{
- "id": 18310,
+ "id": 18779,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -223091,7 +227770,7 @@
}
},
{
- "id": 18311,
+ "id": 18780,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -223105,7 +227784,7 @@
"states": [
{
"default": true,
- "id": 17964
+ "id": 18433
}
]
},
@@ -223140,7 +227819,7 @@
},
"states": [
{
- "id": 5190,
+ "id": 5342,
"properties": {
"attached": "true",
"rotation": "0",
@@ -223148,7 +227827,7 @@
}
},
{
- "id": 5191,
+ "id": 5343,
"properties": {
"attached": "true",
"rotation": "0",
@@ -223156,7 +227835,7 @@
}
},
{
- "id": 5192,
+ "id": 5344,
"properties": {
"attached": "true",
"rotation": "1",
@@ -223164,7 +227843,7 @@
}
},
{
- "id": 5193,
+ "id": 5345,
"properties": {
"attached": "true",
"rotation": "1",
@@ -223172,7 +227851,7 @@
}
},
{
- "id": 5194,
+ "id": 5346,
"properties": {
"attached": "true",
"rotation": "2",
@@ -223180,7 +227859,7 @@
}
},
{
- "id": 5195,
+ "id": 5347,
"properties": {
"attached": "true",
"rotation": "2",
@@ -223188,7 +227867,7 @@
}
},
{
- "id": 5196,
+ "id": 5348,
"properties": {
"attached": "true",
"rotation": "3",
@@ -223196,7 +227875,7 @@
}
},
{
- "id": 5197,
+ "id": 5349,
"properties": {
"attached": "true",
"rotation": "3",
@@ -223204,7 +227883,7 @@
}
},
{
- "id": 5198,
+ "id": 5350,
"properties": {
"attached": "true",
"rotation": "4",
@@ -223212,7 +227891,7 @@
}
},
{
- "id": 5199,
+ "id": 5351,
"properties": {
"attached": "true",
"rotation": "4",
@@ -223220,7 +227899,7 @@
}
},
{
- "id": 5200,
+ "id": 5352,
"properties": {
"attached": "true",
"rotation": "5",
@@ -223228,7 +227907,7 @@
}
},
{
- "id": 5201,
+ "id": 5353,
"properties": {
"attached": "true",
"rotation": "5",
@@ -223236,7 +227915,7 @@
}
},
{
- "id": 5202,
+ "id": 5354,
"properties": {
"attached": "true",
"rotation": "6",
@@ -223244,7 +227923,7 @@
}
},
{
- "id": 5203,
+ "id": 5355,
"properties": {
"attached": "true",
"rotation": "6",
@@ -223252,7 +227931,7 @@
}
},
{
- "id": 5204,
+ "id": 5356,
"properties": {
"attached": "true",
"rotation": "7",
@@ -223260,7 +227939,7 @@
}
},
{
- "id": 5205,
+ "id": 5357,
"properties": {
"attached": "true",
"rotation": "7",
@@ -223268,7 +227947,7 @@
}
},
{
- "id": 5206,
+ "id": 5358,
"properties": {
"attached": "true",
"rotation": "8",
@@ -223276,7 +227955,7 @@
}
},
{
- "id": 5207,
+ "id": 5359,
"properties": {
"attached": "true",
"rotation": "8",
@@ -223284,7 +227963,7 @@
}
},
{
- "id": 5208,
+ "id": 5360,
"properties": {
"attached": "true",
"rotation": "9",
@@ -223292,7 +227971,7 @@
}
},
{
- "id": 5209,
+ "id": 5361,
"properties": {
"attached": "true",
"rotation": "9",
@@ -223300,7 +227979,7 @@
}
},
{
- "id": 5210,
+ "id": 5362,
"properties": {
"attached": "true",
"rotation": "10",
@@ -223308,7 +227987,7 @@
}
},
{
- "id": 5211,
+ "id": 5363,
"properties": {
"attached": "true",
"rotation": "10",
@@ -223316,7 +227995,7 @@
}
},
{
- "id": 5212,
+ "id": 5364,
"properties": {
"attached": "true",
"rotation": "11",
@@ -223324,7 +228003,7 @@
}
},
{
- "id": 5213,
+ "id": 5365,
"properties": {
"attached": "true",
"rotation": "11",
@@ -223332,7 +228011,7 @@
}
},
{
- "id": 5214,
+ "id": 5366,
"properties": {
"attached": "true",
"rotation": "12",
@@ -223340,7 +228019,7 @@
}
},
{
- "id": 5215,
+ "id": 5367,
"properties": {
"attached": "true",
"rotation": "12",
@@ -223348,7 +228027,7 @@
}
},
{
- "id": 5216,
+ "id": 5368,
"properties": {
"attached": "true",
"rotation": "13",
@@ -223356,7 +228035,7 @@
}
},
{
- "id": 5217,
+ "id": 5369,
"properties": {
"attached": "true",
"rotation": "13",
@@ -223364,7 +228043,7 @@
}
},
{
- "id": 5218,
+ "id": 5370,
"properties": {
"attached": "true",
"rotation": "14",
@@ -223372,7 +228051,7 @@
}
},
{
- "id": 5219,
+ "id": 5371,
"properties": {
"attached": "true",
"rotation": "14",
@@ -223380,7 +228059,7 @@
}
},
{
- "id": 5220,
+ "id": 5372,
"properties": {
"attached": "true",
"rotation": "15",
@@ -223388,7 +228067,7 @@
}
},
{
- "id": 5221,
+ "id": 5373,
"properties": {
"attached": "true",
"rotation": "15",
@@ -223396,7 +228075,7 @@
}
},
{
- "id": 5222,
+ "id": 5374,
"properties": {
"attached": "false",
"rotation": "0",
@@ -223405,7 +228084,7 @@
},
{
"default": true,
- "id": 5223,
+ "id": 5375,
"properties": {
"attached": "false",
"rotation": "0",
@@ -223413,7 +228092,7 @@
}
},
{
- "id": 5224,
+ "id": 5376,
"properties": {
"attached": "false",
"rotation": "1",
@@ -223421,7 +228100,7 @@
}
},
{
- "id": 5225,
+ "id": 5377,
"properties": {
"attached": "false",
"rotation": "1",
@@ -223429,7 +228108,7 @@
}
},
{
- "id": 5226,
+ "id": 5378,
"properties": {
"attached": "false",
"rotation": "2",
@@ -223437,7 +228116,7 @@
}
},
{
- "id": 5227,
+ "id": 5379,
"properties": {
"attached": "false",
"rotation": "2",
@@ -223445,7 +228124,7 @@
}
},
{
- "id": 5228,
+ "id": 5380,
"properties": {
"attached": "false",
"rotation": "3",
@@ -223453,7 +228132,7 @@
}
},
{
- "id": 5229,
+ "id": 5381,
"properties": {
"attached": "false",
"rotation": "3",
@@ -223461,7 +228140,7 @@
}
},
{
- "id": 5230,
+ "id": 5382,
"properties": {
"attached": "false",
"rotation": "4",
@@ -223469,7 +228148,7 @@
}
},
{
- "id": 5231,
+ "id": 5383,
"properties": {
"attached": "false",
"rotation": "4",
@@ -223477,7 +228156,7 @@
}
},
{
- "id": 5232,
+ "id": 5384,
"properties": {
"attached": "false",
"rotation": "5",
@@ -223485,7 +228164,7 @@
}
},
{
- "id": 5233,
+ "id": 5385,
"properties": {
"attached": "false",
"rotation": "5",
@@ -223493,7 +228172,7 @@
}
},
{
- "id": 5234,
+ "id": 5386,
"properties": {
"attached": "false",
"rotation": "6",
@@ -223501,7 +228180,7 @@
}
},
{
- "id": 5235,
+ "id": 5387,
"properties": {
"attached": "false",
"rotation": "6",
@@ -223509,7 +228188,7 @@
}
},
{
- "id": 5236,
+ "id": 5388,
"properties": {
"attached": "false",
"rotation": "7",
@@ -223517,7 +228196,7 @@
}
},
{
- "id": 5237,
+ "id": 5389,
"properties": {
"attached": "false",
"rotation": "7",
@@ -223525,7 +228204,7 @@
}
},
{
- "id": 5238,
+ "id": 5390,
"properties": {
"attached": "false",
"rotation": "8",
@@ -223533,7 +228212,7 @@
}
},
{
- "id": 5239,
+ "id": 5391,
"properties": {
"attached": "false",
"rotation": "8",
@@ -223541,7 +228220,7 @@
}
},
{
- "id": 5240,
+ "id": 5392,
"properties": {
"attached": "false",
"rotation": "9",
@@ -223549,7 +228228,7 @@
}
},
{
- "id": 5241,
+ "id": 5393,
"properties": {
"attached": "false",
"rotation": "9",
@@ -223557,7 +228236,7 @@
}
},
{
- "id": 5242,
+ "id": 5394,
"properties": {
"attached": "false",
"rotation": "10",
@@ -223565,7 +228244,7 @@
}
},
{
- "id": 5243,
+ "id": 5395,
"properties": {
"attached": "false",
"rotation": "10",
@@ -223573,7 +228252,7 @@
}
},
{
- "id": 5244,
+ "id": 5396,
"properties": {
"attached": "false",
"rotation": "11",
@@ -223581,7 +228260,7 @@
}
},
{
- "id": 5245,
+ "id": 5397,
"properties": {
"attached": "false",
"rotation": "11",
@@ -223589,7 +228268,7 @@
}
},
{
- "id": 5246,
+ "id": 5398,
"properties": {
"attached": "false",
"rotation": "12",
@@ -223597,7 +228276,7 @@
}
},
{
- "id": 5247,
+ "id": 5399,
"properties": {
"attached": "false",
"rotation": "12",
@@ -223605,7 +228284,7 @@
}
},
{
- "id": 5248,
+ "id": 5400,
"properties": {
"attached": "false",
"rotation": "13",
@@ -223613,7 +228292,7 @@
}
},
{
- "id": 5249,
+ "id": 5401,
"properties": {
"attached": "false",
"rotation": "13",
@@ -223621,7 +228300,7 @@
}
},
{
- "id": 5250,
+ "id": 5402,
"properties": {
"attached": "false",
"rotation": "14",
@@ -223629,7 +228308,7 @@
}
},
{
- "id": 5251,
+ "id": 5403,
"properties": {
"attached": "false",
"rotation": "14",
@@ -223637,7 +228316,7 @@
}
},
{
- "id": 5252,
+ "id": 5404,
"properties": {
"attached": "false",
"rotation": "15",
@@ -223645,7 +228324,7 @@
}
},
{
- "id": 5253,
+ "id": 5405,
"properties": {
"attached": "false",
"rotation": "15",
@@ -223664,20 +228343,20 @@
},
"states": [
{
- "id": 17957,
+ "id": 18426,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 17958,
+ "id": 18427,
"properties": {
"axis": "y"
}
},
{
- "id": 17959,
+ "id": 18428,
"properties": {
"axis": "z"
}
@@ -223688,7 +228367,7 @@
"states": [
{
"default": true,
- "id": 17963
+ "id": 18432
}
]
},
@@ -223696,7 +228375,7 @@
"states": [
{
"default": true,
- "id": 18039
+ "id": 18508
}
]
},
@@ -223709,14 +228388,14 @@
},
"states": [
{
- "id": 18054,
+ "id": 18523,
"properties": {
"powered": "true"
}
},
{
"default": true,
- "id": 18055,
+ "id": 18524,
"properties": {
"powered": "false"
}
@@ -223727,7 +228406,7 @@
"states": [
{
"default": true,
- "id": 17966
+ "id": 18435
}
]
},
@@ -223758,7 +228437,7 @@
},
"states": [
{
- "id": 18680,
+ "id": 19149,
"properties": {
"rotation": "0",
"waterlogged": "true"
@@ -223766,217 +228445,217 @@
},
{
"default": true,
- "id": 18681,
+ "id": 19150,
"properties": {
"rotation": "0",
"waterlogged": "false"
}
},
{
- "id": 18682,
+ "id": 19151,
"properties": {
"rotation": "1",
"waterlogged": "true"
}
},
{
- "id": 18683,
+ "id": 19152,
"properties": {
"rotation": "1",
"waterlogged": "false"
}
},
{
- "id": 18684,
+ "id": 19153,
"properties": {
"rotation": "2",
"waterlogged": "true"
}
},
{
- "id": 18685,
+ "id": 19154,
"properties": {
"rotation": "2",
"waterlogged": "false"
}
},
{
- "id": 18686,
+ "id": 19155,
"properties": {
"rotation": "3",
"waterlogged": "true"
}
},
{
- "id": 18687,
+ "id": 19156,
"properties": {
"rotation": "3",
"waterlogged": "false"
}
},
{
- "id": 18688,
+ "id": 19157,
"properties": {
"rotation": "4",
"waterlogged": "true"
}
},
{
- "id": 18689,
+ "id": 19158,
"properties": {
"rotation": "4",
"waterlogged": "false"
}
},
{
- "id": 18690,
+ "id": 19159,
"properties": {
"rotation": "5",
"waterlogged": "true"
}
},
{
- "id": 18691,
+ "id": 19160,
"properties": {
"rotation": "5",
"waterlogged": "false"
}
},
{
- "id": 18692,
+ "id": 19161,
"properties": {
"rotation": "6",
"waterlogged": "true"
}
},
{
- "id": 18693,
+ "id": 19162,
"properties": {
"rotation": "6",
"waterlogged": "false"
}
},
{
- "id": 18694,
+ "id": 19163,
"properties": {
"rotation": "7",
"waterlogged": "true"
}
},
{
- "id": 18695,
+ "id": 19164,
"properties": {
"rotation": "7",
"waterlogged": "false"
}
},
{
- "id": 18696,
+ "id": 19165,
"properties": {
"rotation": "8",
"waterlogged": "true"
}
},
{
- "id": 18697,
+ "id": 19166,
"properties": {
"rotation": "8",
"waterlogged": "false"
}
},
{
- "id": 18698,
+ "id": 19167,
"properties": {
"rotation": "9",
"waterlogged": "true"
}
},
{
- "id": 18699,
+ "id": 19168,
"properties": {
"rotation": "9",
"waterlogged": "false"
}
},
{
- "id": 18700,
+ "id": 19169,
"properties": {
"rotation": "10",
"waterlogged": "true"
}
},
{
- "id": 18701,
+ "id": 19170,
"properties": {
"rotation": "10",
"waterlogged": "false"
}
},
{
- "id": 18702,
+ "id": 19171,
"properties": {
"rotation": "11",
"waterlogged": "true"
}
},
{
- "id": 18703,
+ "id": 19172,
"properties": {
"rotation": "11",
"waterlogged": "false"
}
},
{
- "id": 18704,
+ "id": 19173,
"properties": {
"rotation": "12",
"waterlogged": "true"
}
},
{
- "id": 18705,
+ "id": 19174,
"properties": {
"rotation": "12",
"waterlogged": "false"
}
},
{
- "id": 18706,
+ "id": 19175,
"properties": {
"rotation": "13",
"waterlogged": "true"
}
},
{
- "id": 18707,
+ "id": 19176,
"properties": {
"rotation": "13",
"waterlogged": "false"
}
},
{
- "id": 18708,
+ "id": 19177,
"properties": {
"rotation": "14",
"waterlogged": "true"
}
},
{
- "id": 18709,
+ "id": 19178,
"properties": {
"rotation": "14",
"waterlogged": "false"
}
},
{
- "id": 18710,
+ "id": 19179,
"properties": {
"rotation": "15",
"waterlogged": "true"
}
},
{
- "id": 18711,
+ "id": 19180,
"properties": {
"rotation": "15",
"waterlogged": "false"
@@ -223998,21 +228677,21 @@
},
"states": [
{
- "id": 18046,
+ "id": 18515,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 18047,
+ "id": 18516,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 18048,
+ "id": 18517,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -224020,21 +228699,21 @@
},
{
"default": true,
- "id": 18049,
+ "id": 18518,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 18050,
+ "id": 18519,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 18051,
+ "id": 18520,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -224068,7 +228747,7 @@
},
"states": [
{
- "id": 18392,
+ "id": 18861,
"properties": {
"facing": "north",
"half": "top",
@@ -224077,7 +228756,7 @@
}
},
{
- "id": 18393,
+ "id": 18862,
"properties": {
"facing": "north",
"half": "top",
@@ -224086,7 +228765,7 @@
}
},
{
- "id": 18394,
+ "id": 18863,
"properties": {
"facing": "north",
"half": "top",
@@ -224095,7 +228774,7 @@
}
},
{
- "id": 18395,
+ "id": 18864,
"properties": {
"facing": "north",
"half": "top",
@@ -224104,7 +228783,7 @@
}
},
{
- "id": 18396,
+ "id": 18865,
"properties": {
"facing": "north",
"half": "top",
@@ -224113,7 +228792,7 @@
}
},
{
- "id": 18397,
+ "id": 18866,
"properties": {
"facing": "north",
"half": "top",
@@ -224122,7 +228801,7 @@
}
},
{
- "id": 18398,
+ "id": 18867,
"properties": {
"facing": "north",
"half": "top",
@@ -224131,7 +228810,7 @@
}
},
{
- "id": 18399,
+ "id": 18868,
"properties": {
"facing": "north",
"half": "top",
@@ -224140,7 +228819,7 @@
}
},
{
- "id": 18400,
+ "id": 18869,
"properties": {
"facing": "north",
"half": "top",
@@ -224149,7 +228828,7 @@
}
},
{
- "id": 18401,
+ "id": 18870,
"properties": {
"facing": "north",
"half": "top",
@@ -224158,7 +228837,7 @@
}
},
{
- "id": 18402,
+ "id": 18871,
"properties": {
"facing": "north",
"half": "bottom",
@@ -224168,7 +228847,7 @@
},
{
"default": true,
- "id": 18403,
+ "id": 18872,
"properties": {
"facing": "north",
"half": "bottom",
@@ -224177,7 +228856,7 @@
}
},
{
- "id": 18404,
+ "id": 18873,
"properties": {
"facing": "north",
"half": "bottom",
@@ -224186,7 +228865,7 @@
}
},
{
- "id": 18405,
+ "id": 18874,
"properties": {
"facing": "north",
"half": "bottom",
@@ -224195,7 +228874,7 @@
}
},
{
- "id": 18406,
+ "id": 18875,
"properties": {
"facing": "north",
"half": "bottom",
@@ -224204,7 +228883,7 @@
}
},
{
- "id": 18407,
+ "id": 18876,
"properties": {
"facing": "north",
"half": "bottom",
@@ -224213,7 +228892,7 @@
}
},
{
- "id": 18408,
+ "id": 18877,
"properties": {
"facing": "north",
"half": "bottom",
@@ -224222,7 +228901,7 @@
}
},
{
- "id": 18409,
+ "id": 18878,
"properties": {
"facing": "north",
"half": "bottom",
@@ -224231,7 +228910,7 @@
}
},
{
- "id": 18410,
+ "id": 18879,
"properties": {
"facing": "north",
"half": "bottom",
@@ -224240,7 +228919,7 @@
}
},
{
- "id": 18411,
+ "id": 18880,
"properties": {
"facing": "north",
"half": "bottom",
@@ -224249,7 +228928,7 @@
}
},
{
- "id": 18412,
+ "id": 18881,
"properties": {
"facing": "south",
"half": "top",
@@ -224258,7 +228937,7 @@
}
},
{
- "id": 18413,
+ "id": 18882,
"properties": {
"facing": "south",
"half": "top",
@@ -224267,7 +228946,7 @@
}
},
{
- "id": 18414,
+ "id": 18883,
"properties": {
"facing": "south",
"half": "top",
@@ -224276,7 +228955,7 @@
}
},
{
- "id": 18415,
+ "id": 18884,
"properties": {
"facing": "south",
"half": "top",
@@ -224285,7 +228964,7 @@
}
},
{
- "id": 18416,
+ "id": 18885,
"properties": {
"facing": "south",
"half": "top",
@@ -224294,7 +228973,7 @@
}
},
{
- "id": 18417,
+ "id": 18886,
"properties": {
"facing": "south",
"half": "top",
@@ -224303,7 +228982,7 @@
}
},
{
- "id": 18418,
+ "id": 18887,
"properties": {
"facing": "south",
"half": "top",
@@ -224312,7 +228991,7 @@
}
},
{
- "id": 18419,
+ "id": 18888,
"properties": {
"facing": "south",
"half": "top",
@@ -224321,7 +229000,7 @@
}
},
{
- "id": 18420,
+ "id": 18889,
"properties": {
"facing": "south",
"half": "top",
@@ -224330,7 +229009,7 @@
}
},
{
- "id": 18421,
+ "id": 18890,
"properties": {
"facing": "south",
"half": "top",
@@ -224339,7 +229018,7 @@
}
},
{
- "id": 18422,
+ "id": 18891,
"properties": {
"facing": "south",
"half": "bottom",
@@ -224348,7 +229027,7 @@
}
},
{
- "id": 18423,
+ "id": 18892,
"properties": {
"facing": "south",
"half": "bottom",
@@ -224357,7 +229036,7 @@
}
},
{
- "id": 18424,
+ "id": 18893,
"properties": {
"facing": "south",
"half": "bottom",
@@ -224366,7 +229045,7 @@
}
},
{
- "id": 18425,
+ "id": 18894,
"properties": {
"facing": "south",
"half": "bottom",
@@ -224375,7 +229054,7 @@
}
},
{
- "id": 18426,
+ "id": 18895,
"properties": {
"facing": "south",
"half": "bottom",
@@ -224384,7 +229063,7 @@
}
},
{
- "id": 18427,
+ "id": 18896,
"properties": {
"facing": "south",
"half": "bottom",
@@ -224393,7 +229072,7 @@
}
},
{
- "id": 18428,
+ "id": 18897,
"properties": {
"facing": "south",
"half": "bottom",
@@ -224402,7 +229081,7 @@
}
},
{
- "id": 18429,
+ "id": 18898,
"properties": {
"facing": "south",
"half": "bottom",
@@ -224411,7 +229090,7 @@
}
},
{
- "id": 18430,
+ "id": 18899,
"properties": {
"facing": "south",
"half": "bottom",
@@ -224420,7 +229099,7 @@
}
},
{
- "id": 18431,
+ "id": 18900,
"properties": {
"facing": "south",
"half": "bottom",
@@ -224429,7 +229108,7 @@
}
},
{
- "id": 18432,
+ "id": 18901,
"properties": {
"facing": "west",
"half": "top",
@@ -224438,7 +229117,7 @@
}
},
{
- "id": 18433,
+ "id": 18902,
"properties": {
"facing": "west",
"half": "top",
@@ -224447,7 +229126,7 @@
}
},
{
- "id": 18434,
+ "id": 18903,
"properties": {
"facing": "west",
"half": "top",
@@ -224456,7 +229135,7 @@
}
},
{
- "id": 18435,
+ "id": 18904,
"properties": {
"facing": "west",
"half": "top",
@@ -224465,7 +229144,7 @@
}
},
{
- "id": 18436,
+ "id": 18905,
"properties": {
"facing": "west",
"half": "top",
@@ -224474,7 +229153,7 @@
}
},
{
- "id": 18437,
+ "id": 18906,
"properties": {
"facing": "west",
"half": "top",
@@ -224483,7 +229162,7 @@
}
},
{
- "id": 18438,
+ "id": 18907,
"properties": {
"facing": "west",
"half": "top",
@@ -224492,7 +229171,7 @@
}
},
{
- "id": 18439,
+ "id": 18908,
"properties": {
"facing": "west",
"half": "top",
@@ -224501,7 +229180,7 @@
}
},
{
- "id": 18440,
+ "id": 18909,
"properties": {
"facing": "west",
"half": "top",
@@ -224510,7 +229189,7 @@
}
},
{
- "id": 18441,
+ "id": 18910,
"properties": {
"facing": "west",
"half": "top",
@@ -224519,7 +229198,7 @@
}
},
{
- "id": 18442,
+ "id": 18911,
"properties": {
"facing": "west",
"half": "bottom",
@@ -224528,7 +229207,7 @@
}
},
{
- "id": 18443,
+ "id": 18912,
"properties": {
"facing": "west",
"half": "bottom",
@@ -224537,7 +229216,7 @@
}
},
{
- "id": 18444,
+ "id": 18913,
"properties": {
"facing": "west",
"half": "bottom",
@@ -224546,7 +229225,7 @@
}
},
{
- "id": 18445,
+ "id": 18914,
"properties": {
"facing": "west",
"half": "bottom",
@@ -224555,7 +229234,7 @@
}
},
{
- "id": 18446,
+ "id": 18915,
"properties": {
"facing": "west",
"half": "bottom",
@@ -224564,7 +229243,7 @@
}
},
{
- "id": 18447,
+ "id": 18916,
"properties": {
"facing": "west",
"half": "bottom",
@@ -224573,7 +229252,7 @@
}
},
{
- "id": 18448,
+ "id": 18917,
"properties": {
"facing": "west",
"half": "bottom",
@@ -224582,7 +229261,7 @@
}
},
{
- "id": 18449,
+ "id": 18918,
"properties": {
"facing": "west",
"half": "bottom",
@@ -224591,7 +229270,7 @@
}
},
{
- "id": 18450,
+ "id": 18919,
"properties": {
"facing": "west",
"half": "bottom",
@@ -224600,7 +229279,7 @@
}
},
{
- "id": 18451,
+ "id": 18920,
"properties": {
"facing": "west",
"half": "bottom",
@@ -224609,7 +229288,7 @@
}
},
{
- "id": 18452,
+ "id": 18921,
"properties": {
"facing": "east",
"half": "top",
@@ -224618,7 +229297,7 @@
}
},
{
- "id": 18453,
+ "id": 18922,
"properties": {
"facing": "east",
"half": "top",
@@ -224627,7 +229306,7 @@
}
},
{
- "id": 18454,
+ "id": 18923,
"properties": {
"facing": "east",
"half": "top",
@@ -224636,7 +229315,7 @@
}
},
{
- "id": 18455,
+ "id": 18924,
"properties": {
"facing": "east",
"half": "top",
@@ -224645,7 +229324,7 @@
}
},
{
- "id": 18456,
+ "id": 18925,
"properties": {
"facing": "east",
"half": "top",
@@ -224654,7 +229333,7 @@
}
},
{
- "id": 18457,
+ "id": 18926,
"properties": {
"facing": "east",
"half": "top",
@@ -224663,7 +229342,7 @@
}
},
{
- "id": 18458,
+ "id": 18927,
"properties": {
"facing": "east",
"half": "top",
@@ -224672,7 +229351,7 @@
}
},
{
- "id": 18459,
+ "id": 18928,
"properties": {
"facing": "east",
"half": "top",
@@ -224681,7 +229360,7 @@
}
},
{
- "id": 18460,
+ "id": 18929,
"properties": {
"facing": "east",
"half": "top",
@@ -224690,7 +229369,7 @@
}
},
{
- "id": 18461,
+ "id": 18930,
"properties": {
"facing": "east",
"half": "top",
@@ -224699,7 +229378,7 @@
}
},
{
- "id": 18462,
+ "id": 18931,
"properties": {
"facing": "east",
"half": "bottom",
@@ -224708,7 +229387,7 @@
}
},
{
- "id": 18463,
+ "id": 18932,
"properties": {
"facing": "east",
"half": "bottom",
@@ -224717,7 +229396,7 @@
}
},
{
- "id": 18464,
+ "id": 18933,
"properties": {
"facing": "east",
"half": "bottom",
@@ -224726,7 +229405,7 @@
}
},
{
- "id": 18465,
+ "id": 18934,
"properties": {
"facing": "east",
"half": "bottom",
@@ -224735,7 +229414,7 @@
}
},
{
- "id": 18466,
+ "id": 18935,
"properties": {
"facing": "east",
"half": "bottom",
@@ -224744,7 +229423,7 @@
}
},
{
- "id": 18467,
+ "id": 18936,
"properties": {
"facing": "east",
"half": "bottom",
@@ -224753,7 +229432,7 @@
}
},
{
- "id": 18468,
+ "id": 18937,
"properties": {
"facing": "east",
"half": "bottom",
@@ -224762,7 +229441,7 @@
}
},
{
- "id": 18469,
+ "id": 18938,
"properties": {
"facing": "east",
"half": "bottom",
@@ -224771,7 +229450,7 @@
}
},
{
- "id": 18470,
+ "id": 18939,
"properties": {
"facing": "east",
"half": "bottom",
@@ -224780,7 +229459,7 @@
}
},
{
- "id": 18471,
+ "id": 18940,
"properties": {
"facing": "east",
"half": "bottom",
@@ -224800,20 +229479,20 @@
},
"states": [
{
- "id": 17951,
+ "id": 18420,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 17952,
+ "id": 18421,
"properties": {
"axis": "y"
}
},
{
- "id": 17953,
+ "id": 18422,
"properties": {
"axis": "z"
}
@@ -224847,7 +229526,7 @@
},
"states": [
{
- "id": 18184,
+ "id": 18653,
"properties": {
"facing": "north",
"half": "top",
@@ -224857,7 +229536,7 @@
}
},
{
- "id": 18185,
+ "id": 18654,
"properties": {
"facing": "north",
"half": "top",
@@ -224867,7 +229546,7 @@
}
},
{
- "id": 18186,
+ "id": 18655,
"properties": {
"facing": "north",
"half": "top",
@@ -224877,7 +229556,7 @@
}
},
{
- "id": 18187,
+ "id": 18656,
"properties": {
"facing": "north",
"half": "top",
@@ -224887,7 +229566,7 @@
}
},
{
- "id": 18188,
+ "id": 18657,
"properties": {
"facing": "north",
"half": "top",
@@ -224897,7 +229576,7 @@
}
},
{
- "id": 18189,
+ "id": 18658,
"properties": {
"facing": "north",
"half": "top",
@@ -224907,7 +229586,7 @@
}
},
{
- "id": 18190,
+ "id": 18659,
"properties": {
"facing": "north",
"half": "top",
@@ -224917,7 +229596,7 @@
}
},
{
- "id": 18191,
+ "id": 18660,
"properties": {
"facing": "north",
"half": "top",
@@ -224927,7 +229606,7 @@
}
},
{
- "id": 18192,
+ "id": 18661,
"properties": {
"facing": "north",
"half": "bottom",
@@ -224937,7 +229616,7 @@
}
},
{
- "id": 18193,
+ "id": 18662,
"properties": {
"facing": "north",
"half": "bottom",
@@ -224947,7 +229626,7 @@
}
},
{
- "id": 18194,
+ "id": 18663,
"properties": {
"facing": "north",
"half": "bottom",
@@ -224957,7 +229636,7 @@
}
},
{
- "id": 18195,
+ "id": 18664,
"properties": {
"facing": "north",
"half": "bottom",
@@ -224967,7 +229646,7 @@
}
},
{
- "id": 18196,
+ "id": 18665,
"properties": {
"facing": "north",
"half": "bottom",
@@ -224977,7 +229656,7 @@
}
},
{
- "id": 18197,
+ "id": 18666,
"properties": {
"facing": "north",
"half": "bottom",
@@ -224987,7 +229666,7 @@
}
},
{
- "id": 18198,
+ "id": 18667,
"properties": {
"facing": "north",
"half": "bottom",
@@ -224998,7 +229677,7 @@
},
{
"default": true,
- "id": 18199,
+ "id": 18668,
"properties": {
"facing": "north",
"half": "bottom",
@@ -225008,7 +229687,7 @@
}
},
{
- "id": 18200,
+ "id": 18669,
"properties": {
"facing": "south",
"half": "top",
@@ -225018,7 +229697,7 @@
}
},
{
- "id": 18201,
+ "id": 18670,
"properties": {
"facing": "south",
"half": "top",
@@ -225028,7 +229707,7 @@
}
},
{
- "id": 18202,
+ "id": 18671,
"properties": {
"facing": "south",
"half": "top",
@@ -225038,7 +229717,7 @@
}
},
{
- "id": 18203,
+ "id": 18672,
"properties": {
"facing": "south",
"half": "top",
@@ -225048,7 +229727,7 @@
}
},
{
- "id": 18204,
+ "id": 18673,
"properties": {
"facing": "south",
"half": "top",
@@ -225058,7 +229737,7 @@
}
},
{
- "id": 18205,
+ "id": 18674,
"properties": {
"facing": "south",
"half": "top",
@@ -225068,7 +229747,7 @@
}
},
{
- "id": 18206,
+ "id": 18675,
"properties": {
"facing": "south",
"half": "top",
@@ -225078,7 +229757,7 @@
}
},
{
- "id": 18207,
+ "id": 18676,
"properties": {
"facing": "south",
"half": "top",
@@ -225088,7 +229767,7 @@
}
},
{
- "id": 18208,
+ "id": 18677,
"properties": {
"facing": "south",
"half": "bottom",
@@ -225098,7 +229777,7 @@
}
},
{
- "id": 18209,
+ "id": 18678,
"properties": {
"facing": "south",
"half": "bottom",
@@ -225108,7 +229787,7 @@
}
},
{
- "id": 18210,
+ "id": 18679,
"properties": {
"facing": "south",
"half": "bottom",
@@ -225118,7 +229797,7 @@
}
},
{
- "id": 18211,
+ "id": 18680,
"properties": {
"facing": "south",
"half": "bottom",
@@ -225128,7 +229807,7 @@
}
},
{
- "id": 18212,
+ "id": 18681,
"properties": {
"facing": "south",
"half": "bottom",
@@ -225138,7 +229817,7 @@
}
},
{
- "id": 18213,
+ "id": 18682,
"properties": {
"facing": "south",
"half": "bottom",
@@ -225148,7 +229827,7 @@
}
},
{
- "id": 18214,
+ "id": 18683,
"properties": {
"facing": "south",
"half": "bottom",
@@ -225158,7 +229837,7 @@
}
},
{
- "id": 18215,
+ "id": 18684,
"properties": {
"facing": "south",
"half": "bottom",
@@ -225168,7 +229847,7 @@
}
},
{
- "id": 18216,
+ "id": 18685,
"properties": {
"facing": "west",
"half": "top",
@@ -225178,7 +229857,7 @@
}
},
{
- "id": 18217,
+ "id": 18686,
"properties": {
"facing": "west",
"half": "top",
@@ -225188,7 +229867,7 @@
}
},
{
- "id": 18218,
+ "id": 18687,
"properties": {
"facing": "west",
"half": "top",
@@ -225198,7 +229877,7 @@
}
},
{
- "id": 18219,
+ "id": 18688,
"properties": {
"facing": "west",
"half": "top",
@@ -225208,7 +229887,7 @@
}
},
{
- "id": 18220,
+ "id": 18689,
"properties": {
"facing": "west",
"half": "top",
@@ -225218,7 +229897,7 @@
}
},
{
- "id": 18221,
+ "id": 18690,
"properties": {
"facing": "west",
"half": "top",
@@ -225228,7 +229907,7 @@
}
},
{
- "id": 18222,
+ "id": 18691,
"properties": {
"facing": "west",
"half": "top",
@@ -225238,7 +229917,7 @@
}
},
{
- "id": 18223,
+ "id": 18692,
"properties": {
"facing": "west",
"half": "top",
@@ -225248,7 +229927,7 @@
}
},
{
- "id": 18224,
+ "id": 18693,
"properties": {
"facing": "west",
"half": "bottom",
@@ -225258,7 +229937,7 @@
}
},
{
- "id": 18225,
+ "id": 18694,
"properties": {
"facing": "west",
"half": "bottom",
@@ -225268,7 +229947,7 @@
}
},
{
- "id": 18226,
+ "id": 18695,
"properties": {
"facing": "west",
"half": "bottom",
@@ -225278,7 +229957,7 @@
}
},
{
- "id": 18227,
+ "id": 18696,
"properties": {
"facing": "west",
"half": "bottom",
@@ -225288,7 +229967,7 @@
}
},
{
- "id": 18228,
+ "id": 18697,
"properties": {
"facing": "west",
"half": "bottom",
@@ -225298,7 +229977,7 @@
}
},
{
- "id": 18229,
+ "id": 18698,
"properties": {
"facing": "west",
"half": "bottom",
@@ -225308,7 +229987,7 @@
}
},
{
- "id": 18230,
+ "id": 18699,
"properties": {
"facing": "west",
"half": "bottom",
@@ -225318,7 +229997,7 @@
}
},
{
- "id": 18231,
+ "id": 18700,
"properties": {
"facing": "west",
"half": "bottom",
@@ -225328,7 +230007,7 @@
}
},
{
- "id": 18232,
+ "id": 18701,
"properties": {
"facing": "east",
"half": "top",
@@ -225338,7 +230017,7 @@
}
},
{
- "id": 18233,
+ "id": 18702,
"properties": {
"facing": "east",
"half": "top",
@@ -225348,7 +230027,7 @@
}
},
{
- "id": 18234,
+ "id": 18703,
"properties": {
"facing": "east",
"half": "top",
@@ -225358,7 +230037,7 @@
}
},
{
- "id": 18235,
+ "id": 18704,
"properties": {
"facing": "east",
"half": "top",
@@ -225368,7 +230047,7 @@
}
},
{
- "id": 18236,
+ "id": 18705,
"properties": {
"facing": "east",
"half": "top",
@@ -225378,7 +230057,7 @@
}
},
{
- "id": 18237,
+ "id": 18706,
"properties": {
"facing": "east",
"half": "top",
@@ -225388,7 +230067,7 @@
}
},
{
- "id": 18238,
+ "id": 18707,
"properties": {
"facing": "east",
"half": "top",
@@ -225398,7 +230077,7 @@
}
},
{
- "id": 18239,
+ "id": 18708,
"properties": {
"facing": "east",
"half": "top",
@@ -225408,7 +230087,7 @@
}
},
{
- "id": 18240,
+ "id": 18709,
"properties": {
"facing": "east",
"half": "bottom",
@@ -225418,7 +230097,7 @@
}
},
{
- "id": 18241,
+ "id": 18710,
"properties": {
"facing": "east",
"half": "bottom",
@@ -225428,7 +230107,7 @@
}
},
{
- "id": 18242,
+ "id": 18711,
"properties": {
"facing": "east",
"half": "bottom",
@@ -225438,7 +230117,7 @@
}
},
{
- "id": 18243,
+ "id": 18712,
"properties": {
"facing": "east",
"half": "bottom",
@@ -225448,7 +230127,7 @@
}
},
{
- "id": 18244,
+ "id": 18713,
"properties": {
"facing": "east",
"half": "bottom",
@@ -225458,7 +230137,7 @@
}
},
{
- "id": 18245,
+ "id": 18714,
"properties": {
"facing": "east",
"half": "bottom",
@@ -225468,7 +230147,7 @@
}
},
{
- "id": 18246,
+ "id": 18715,
"properties": {
"facing": "east",
"half": "bottom",
@@ -225478,7 +230157,7 @@
}
},
{
- "id": 18247,
+ "id": 18716,
"properties": {
"facing": "east",
"half": "bottom",
@@ -225504,7 +230183,7 @@
},
"states": [
{
- "id": 5446,
+ "id": 5606,
"properties": {
"facing": "north",
"waterlogged": "true"
@@ -225512,49 +230191,49 @@
},
{
"default": true,
- "id": 5447,
+ "id": 5607,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 5448,
+ "id": 5608,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 5449,
+ "id": 5609,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 5450,
+ "id": 5610,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 5451,
+ "id": 5611,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 5452,
+ "id": 5612,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 5453,
+ "id": 5613,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -225577,7 +230256,7 @@
},
"states": [
{
- "id": 18720,
+ "id": 19189,
"properties": {
"facing": "north",
"waterlogged": "true"
@@ -225585,49 +230264,49 @@
},
{
"default": true,
- "id": 18721,
+ "id": 19190,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 18722,
+ "id": 19191,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 18723,
+ "id": 19192,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 18724,
+ "id": 19193,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 18725,
+ "id": 19194,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 18726,
+ "id": 19195,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 18727,
+ "id": 19196,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -225639,7 +230318,7 @@
"states": [
{
"default": true,
- "id": 17965
+ "id": 18434
}
]
},
@@ -225667,97 +230346,97 @@
"states": [
{
"default": true,
- "id": 77,
+ "id": 80,
"properties": {
"level": "0"
}
},
{
- "id": 78,
+ "id": 81,
"properties": {
"level": "1"
}
},
{
- "id": 79,
+ "id": 82,
"properties": {
"level": "2"
}
},
{
- "id": 80,
+ "id": 83,
"properties": {
"level": "3"
}
},
{
- "id": 81,
+ "id": 84,
"properties": {
"level": "4"
}
},
{
- "id": 82,
+ "id": 85,
"properties": {
"level": "5"
}
},
{
- "id": 83,
+ "id": 86,
"properties": {
"level": "6"
}
},
{
- "id": 84,
+ "id": 87,
"properties": {
"level": "7"
}
},
{
- "id": 85,
+ "id": 88,
"properties": {
"level": "8"
}
},
{
- "id": 86,
+ "id": 89,
"properties": {
"level": "9"
}
},
{
- "id": 87,
+ "id": 90,
"properties": {
"level": "10"
}
},
{
- "id": 88,
+ "id": 91,
"properties": {
"level": "11"
}
},
{
- "id": 89,
+ "id": 92,
"properties": {
"level": "12"
}
},
{
- "id": 90,
+ "id": 93,
"properties": {
"level": "13"
}
},
{
- "id": 91,
+ "id": 94,
"properties": {
"level": "14"
}
},
{
- "id": 92,
+ "id": 95,
"properties": {
"level": "15"
}
@@ -225775,19 +230454,19 @@
"states": [
{
"default": true,
- "id": 7169,
+ "id": 7395,
"properties": {
"level": "1"
}
},
{
- "id": 7170,
+ "id": 7396,
"properties": {
"level": "2"
}
},
{
- "id": 7171,
+ "id": 7397,
"properties": {
"level": "3"
}
@@ -225798,7 +230477,7 @@
"states": [
{
"default": true,
- "id": 21046
+ "id": 21515
}
]
},
@@ -225806,7 +230485,7 @@
"states": [
{
"default": true,
- "id": 21053
+ "id": 21522
}
]
},
@@ -225824,21 +230503,21 @@
},
"states": [
{
- "id": 21392,
+ "id": 21861,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 21393,
+ "id": 21862,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 21394,
+ "id": 21863,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -225846,21 +230525,21 @@
},
{
"default": true,
- "id": 21395,
+ "id": 21864,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 21396,
+ "id": 21865,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 21397,
+ "id": 21866,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -225894,7 +230573,7 @@
},
"states": [
{
- "id": 21294,
+ "id": 21763,
"properties": {
"facing": "north",
"half": "top",
@@ -225903,7 +230582,7 @@
}
},
{
- "id": 21295,
+ "id": 21764,
"properties": {
"facing": "north",
"half": "top",
@@ -225912,7 +230591,7 @@
}
},
{
- "id": 21296,
+ "id": 21765,
"properties": {
"facing": "north",
"half": "top",
@@ -225921,7 +230600,7 @@
}
},
{
- "id": 21297,
+ "id": 21766,
"properties": {
"facing": "north",
"half": "top",
@@ -225930,7 +230609,7 @@
}
},
{
- "id": 21298,
+ "id": 21767,
"properties": {
"facing": "north",
"half": "top",
@@ -225939,7 +230618,7 @@
}
},
{
- "id": 21299,
+ "id": 21768,
"properties": {
"facing": "north",
"half": "top",
@@ -225948,7 +230627,7 @@
}
},
{
- "id": 21300,
+ "id": 21769,
"properties": {
"facing": "north",
"half": "top",
@@ -225957,7 +230636,7 @@
}
},
{
- "id": 21301,
+ "id": 21770,
"properties": {
"facing": "north",
"half": "top",
@@ -225966,7 +230645,7 @@
}
},
{
- "id": 21302,
+ "id": 21771,
"properties": {
"facing": "north",
"half": "top",
@@ -225975,7 +230654,7 @@
}
},
{
- "id": 21303,
+ "id": 21772,
"properties": {
"facing": "north",
"half": "top",
@@ -225984,7 +230663,7 @@
}
},
{
- "id": 21304,
+ "id": 21773,
"properties": {
"facing": "north",
"half": "bottom",
@@ -225994,7 +230673,7 @@
},
{
"default": true,
- "id": 21305,
+ "id": 21774,
"properties": {
"facing": "north",
"half": "bottom",
@@ -226003,7 +230682,7 @@
}
},
{
- "id": 21306,
+ "id": 21775,
"properties": {
"facing": "north",
"half": "bottom",
@@ -226012,7 +230691,7 @@
}
},
{
- "id": 21307,
+ "id": 21776,
"properties": {
"facing": "north",
"half": "bottom",
@@ -226021,7 +230700,7 @@
}
},
{
- "id": 21308,
+ "id": 21777,
"properties": {
"facing": "north",
"half": "bottom",
@@ -226030,7 +230709,7 @@
}
},
{
- "id": 21309,
+ "id": 21778,
"properties": {
"facing": "north",
"half": "bottom",
@@ -226039,7 +230718,7 @@
}
},
{
- "id": 21310,
+ "id": 21779,
"properties": {
"facing": "north",
"half": "bottom",
@@ -226048,7 +230727,7 @@
}
},
{
- "id": 21311,
+ "id": 21780,
"properties": {
"facing": "north",
"half": "bottom",
@@ -226057,7 +230736,7 @@
}
},
{
- "id": 21312,
+ "id": 21781,
"properties": {
"facing": "north",
"half": "bottom",
@@ -226066,7 +230745,7 @@
}
},
{
- "id": 21313,
+ "id": 21782,
"properties": {
"facing": "north",
"half": "bottom",
@@ -226075,7 +230754,7 @@
}
},
{
- "id": 21314,
+ "id": 21783,
"properties": {
"facing": "south",
"half": "top",
@@ -226084,7 +230763,7 @@
}
},
{
- "id": 21315,
+ "id": 21784,
"properties": {
"facing": "south",
"half": "top",
@@ -226093,7 +230772,7 @@
}
},
{
- "id": 21316,
+ "id": 21785,
"properties": {
"facing": "south",
"half": "top",
@@ -226102,7 +230781,7 @@
}
},
{
- "id": 21317,
+ "id": 21786,
"properties": {
"facing": "south",
"half": "top",
@@ -226111,7 +230790,7 @@
}
},
{
- "id": 21318,
+ "id": 21787,
"properties": {
"facing": "south",
"half": "top",
@@ -226120,7 +230799,7 @@
}
},
{
- "id": 21319,
+ "id": 21788,
"properties": {
"facing": "south",
"half": "top",
@@ -226129,7 +230808,7 @@
}
},
{
- "id": 21320,
+ "id": 21789,
"properties": {
"facing": "south",
"half": "top",
@@ -226138,7 +230817,7 @@
}
},
{
- "id": 21321,
+ "id": 21790,
"properties": {
"facing": "south",
"half": "top",
@@ -226147,7 +230826,7 @@
}
},
{
- "id": 21322,
+ "id": 21791,
"properties": {
"facing": "south",
"half": "top",
@@ -226156,7 +230835,7 @@
}
},
{
- "id": 21323,
+ "id": 21792,
"properties": {
"facing": "south",
"half": "top",
@@ -226165,7 +230844,7 @@
}
},
{
- "id": 21324,
+ "id": 21793,
"properties": {
"facing": "south",
"half": "bottom",
@@ -226174,7 +230853,7 @@
}
},
{
- "id": 21325,
+ "id": 21794,
"properties": {
"facing": "south",
"half": "bottom",
@@ -226183,7 +230862,7 @@
}
},
{
- "id": 21326,
+ "id": 21795,
"properties": {
"facing": "south",
"half": "bottom",
@@ -226192,7 +230871,7 @@
}
},
{
- "id": 21327,
+ "id": 21796,
"properties": {
"facing": "south",
"half": "bottom",
@@ -226201,7 +230880,7 @@
}
},
{
- "id": 21328,
+ "id": 21797,
"properties": {
"facing": "south",
"half": "bottom",
@@ -226210,7 +230889,7 @@
}
},
{
- "id": 21329,
+ "id": 21798,
"properties": {
"facing": "south",
"half": "bottom",
@@ -226219,7 +230898,7 @@
}
},
{
- "id": 21330,
+ "id": 21799,
"properties": {
"facing": "south",
"half": "bottom",
@@ -226228,7 +230907,7 @@
}
},
{
- "id": 21331,
+ "id": 21800,
"properties": {
"facing": "south",
"half": "bottom",
@@ -226237,7 +230916,7 @@
}
},
{
- "id": 21332,
+ "id": 21801,
"properties": {
"facing": "south",
"half": "bottom",
@@ -226246,7 +230925,7 @@
}
},
{
- "id": 21333,
+ "id": 21802,
"properties": {
"facing": "south",
"half": "bottom",
@@ -226255,7 +230934,7 @@
}
},
{
- "id": 21334,
+ "id": 21803,
"properties": {
"facing": "west",
"half": "top",
@@ -226264,7 +230943,7 @@
}
},
{
- "id": 21335,
+ "id": 21804,
"properties": {
"facing": "west",
"half": "top",
@@ -226273,7 +230952,7 @@
}
},
{
- "id": 21336,
+ "id": 21805,
"properties": {
"facing": "west",
"half": "top",
@@ -226282,7 +230961,7 @@
}
},
{
- "id": 21337,
+ "id": 21806,
"properties": {
"facing": "west",
"half": "top",
@@ -226291,7 +230970,7 @@
}
},
{
- "id": 21338,
+ "id": 21807,
"properties": {
"facing": "west",
"half": "top",
@@ -226300,7 +230979,7 @@
}
},
{
- "id": 21339,
+ "id": 21808,
"properties": {
"facing": "west",
"half": "top",
@@ -226309,7 +230988,7 @@
}
},
{
- "id": 21340,
+ "id": 21809,
"properties": {
"facing": "west",
"half": "top",
@@ -226318,7 +230997,7 @@
}
},
{
- "id": 21341,
+ "id": 21810,
"properties": {
"facing": "west",
"half": "top",
@@ -226327,7 +231006,7 @@
}
},
{
- "id": 21342,
+ "id": 21811,
"properties": {
"facing": "west",
"half": "top",
@@ -226336,7 +231015,7 @@
}
},
{
- "id": 21343,
+ "id": 21812,
"properties": {
"facing": "west",
"half": "top",
@@ -226345,7 +231024,7 @@
}
},
{
- "id": 21344,
+ "id": 21813,
"properties": {
"facing": "west",
"half": "bottom",
@@ -226354,7 +231033,7 @@
}
},
{
- "id": 21345,
+ "id": 21814,
"properties": {
"facing": "west",
"half": "bottom",
@@ -226363,7 +231042,7 @@
}
},
{
- "id": 21346,
+ "id": 21815,
"properties": {
"facing": "west",
"half": "bottom",
@@ -226372,7 +231051,7 @@
}
},
{
- "id": 21347,
+ "id": 21816,
"properties": {
"facing": "west",
"half": "bottom",
@@ -226381,7 +231060,7 @@
}
},
{
- "id": 21348,
+ "id": 21817,
"properties": {
"facing": "west",
"half": "bottom",
@@ -226390,7 +231069,7 @@
}
},
{
- "id": 21349,
+ "id": 21818,
"properties": {
"facing": "west",
"half": "bottom",
@@ -226399,7 +231078,7 @@
}
},
{
- "id": 21350,
+ "id": 21819,
"properties": {
"facing": "west",
"half": "bottom",
@@ -226408,7 +231087,7 @@
}
},
{
- "id": 21351,
+ "id": 21820,
"properties": {
"facing": "west",
"half": "bottom",
@@ -226417,7 +231096,7 @@
}
},
{
- "id": 21352,
+ "id": 21821,
"properties": {
"facing": "west",
"half": "bottom",
@@ -226426,7 +231105,7 @@
}
},
{
- "id": 21353,
+ "id": 21822,
"properties": {
"facing": "west",
"half": "bottom",
@@ -226435,7 +231114,7 @@
}
},
{
- "id": 21354,
+ "id": 21823,
"properties": {
"facing": "east",
"half": "top",
@@ -226444,7 +231123,7 @@
}
},
{
- "id": 21355,
+ "id": 21824,
"properties": {
"facing": "east",
"half": "top",
@@ -226453,7 +231132,7 @@
}
},
{
- "id": 21356,
+ "id": 21825,
"properties": {
"facing": "east",
"half": "top",
@@ -226462,7 +231141,7 @@
}
},
{
- "id": 21357,
+ "id": 21826,
"properties": {
"facing": "east",
"half": "top",
@@ -226471,7 +231150,7 @@
}
},
{
- "id": 21358,
+ "id": 21827,
"properties": {
"facing": "east",
"half": "top",
@@ -226480,7 +231159,7 @@
}
},
{
- "id": 21359,
+ "id": 21828,
"properties": {
"facing": "east",
"half": "top",
@@ -226489,7 +231168,7 @@
}
},
{
- "id": 21360,
+ "id": 21829,
"properties": {
"facing": "east",
"half": "top",
@@ -226498,7 +231177,7 @@
}
},
{
- "id": 21361,
+ "id": 21830,
"properties": {
"facing": "east",
"half": "top",
@@ -226507,7 +231186,7 @@
}
},
{
- "id": 21362,
+ "id": 21831,
"properties": {
"facing": "east",
"half": "top",
@@ -226516,7 +231195,7 @@
}
},
{
- "id": 21363,
+ "id": 21832,
"properties": {
"facing": "east",
"half": "top",
@@ -226525,7 +231204,7 @@
}
},
{
- "id": 21364,
+ "id": 21833,
"properties": {
"facing": "east",
"half": "bottom",
@@ -226534,7 +231213,7 @@
}
},
{
- "id": 21365,
+ "id": 21834,
"properties": {
"facing": "east",
"half": "bottom",
@@ -226543,7 +231222,7 @@
}
},
{
- "id": 21366,
+ "id": 21835,
"properties": {
"facing": "east",
"half": "bottom",
@@ -226552,7 +231231,7 @@
}
},
{
- "id": 21367,
+ "id": 21836,
"properties": {
"facing": "east",
"half": "bottom",
@@ -226561,7 +231240,7 @@
}
},
{
- "id": 21368,
+ "id": 21837,
"properties": {
"facing": "east",
"half": "bottom",
@@ -226570,7 +231249,7 @@
}
},
{
- "id": 21369,
+ "id": 21838,
"properties": {
"facing": "east",
"half": "bottom",
@@ -226579,7 +231258,7 @@
}
},
{
- "id": 21370,
+ "id": 21839,
"properties": {
"facing": "east",
"half": "bottom",
@@ -226588,7 +231267,7 @@
}
},
{
- "id": 21371,
+ "id": 21840,
"properties": {
"facing": "east",
"half": "bottom",
@@ -226597,7 +231276,7 @@
}
},
{
- "id": 21372,
+ "id": 21841,
"properties": {
"facing": "east",
"half": "bottom",
@@ -226606,7 +231285,7 @@
}
},
{
- "id": 21373,
+ "id": 21842,
"properties": {
"facing": "east",
"half": "bottom",
@@ -226620,7 +231299,7 @@
"states": [
{
"default": true,
- "id": 21048
+ "id": 21517
}
]
},
@@ -226628,7 +231307,7 @@
"states": [
{
"default": true,
- "id": 21052
+ "id": 21521
}
]
},
@@ -226646,21 +231325,21 @@
},
"states": [
{
- "id": 21386,
+ "id": 21855,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 21387,
+ "id": 21856,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 21388,
+ "id": 21857,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -226668,21 +231347,21 @@
},
{
"default": true,
- "id": 21389,
+ "id": 21858,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 21390,
+ "id": 21859,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 21391,
+ "id": 21860,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -226716,7 +231395,7 @@
},
"states": [
{
- "id": 21214,
+ "id": 21683,
"properties": {
"facing": "north",
"half": "top",
@@ -226725,7 +231404,7 @@
}
},
{
- "id": 21215,
+ "id": 21684,
"properties": {
"facing": "north",
"half": "top",
@@ -226734,7 +231413,7 @@
}
},
{
- "id": 21216,
+ "id": 21685,
"properties": {
"facing": "north",
"half": "top",
@@ -226743,7 +231422,7 @@
}
},
{
- "id": 21217,
+ "id": 21686,
"properties": {
"facing": "north",
"half": "top",
@@ -226752,7 +231431,7 @@
}
},
{
- "id": 21218,
+ "id": 21687,
"properties": {
"facing": "north",
"half": "top",
@@ -226761,7 +231440,7 @@
}
},
{
- "id": 21219,
+ "id": 21688,
"properties": {
"facing": "north",
"half": "top",
@@ -226770,7 +231449,7 @@
}
},
{
- "id": 21220,
+ "id": 21689,
"properties": {
"facing": "north",
"half": "top",
@@ -226779,7 +231458,7 @@
}
},
{
- "id": 21221,
+ "id": 21690,
"properties": {
"facing": "north",
"half": "top",
@@ -226788,7 +231467,7 @@
}
},
{
- "id": 21222,
+ "id": 21691,
"properties": {
"facing": "north",
"half": "top",
@@ -226797,7 +231476,7 @@
}
},
{
- "id": 21223,
+ "id": 21692,
"properties": {
"facing": "north",
"half": "top",
@@ -226806,7 +231485,7 @@
}
},
{
- "id": 21224,
+ "id": 21693,
"properties": {
"facing": "north",
"half": "bottom",
@@ -226816,7 +231495,7 @@
},
{
"default": true,
- "id": 21225,
+ "id": 21694,
"properties": {
"facing": "north",
"half": "bottom",
@@ -226825,7 +231504,7 @@
}
},
{
- "id": 21226,
+ "id": 21695,
"properties": {
"facing": "north",
"half": "bottom",
@@ -226834,7 +231513,7 @@
}
},
{
- "id": 21227,
+ "id": 21696,
"properties": {
"facing": "north",
"half": "bottom",
@@ -226843,7 +231522,7 @@
}
},
{
- "id": 21228,
+ "id": 21697,
"properties": {
"facing": "north",
"half": "bottom",
@@ -226852,7 +231531,7 @@
}
},
{
- "id": 21229,
+ "id": 21698,
"properties": {
"facing": "north",
"half": "bottom",
@@ -226861,7 +231540,7 @@
}
},
{
- "id": 21230,
+ "id": 21699,
"properties": {
"facing": "north",
"half": "bottom",
@@ -226870,7 +231549,7 @@
}
},
{
- "id": 21231,
+ "id": 21700,
"properties": {
"facing": "north",
"half": "bottom",
@@ -226879,7 +231558,7 @@
}
},
{
- "id": 21232,
+ "id": 21701,
"properties": {
"facing": "north",
"half": "bottom",
@@ -226888,7 +231567,7 @@
}
},
{
- "id": 21233,
+ "id": 21702,
"properties": {
"facing": "north",
"half": "bottom",
@@ -226897,7 +231576,7 @@
}
},
{
- "id": 21234,
+ "id": 21703,
"properties": {
"facing": "south",
"half": "top",
@@ -226906,7 +231585,7 @@
}
},
{
- "id": 21235,
+ "id": 21704,
"properties": {
"facing": "south",
"half": "top",
@@ -226915,7 +231594,7 @@
}
},
{
- "id": 21236,
+ "id": 21705,
"properties": {
"facing": "south",
"half": "top",
@@ -226924,7 +231603,7 @@
}
},
{
- "id": 21237,
+ "id": 21706,
"properties": {
"facing": "south",
"half": "top",
@@ -226933,7 +231612,7 @@
}
},
{
- "id": 21238,
+ "id": 21707,
"properties": {
"facing": "south",
"half": "top",
@@ -226942,7 +231621,7 @@
}
},
{
- "id": 21239,
+ "id": 21708,
"properties": {
"facing": "south",
"half": "top",
@@ -226951,7 +231630,7 @@
}
},
{
- "id": 21240,
+ "id": 21709,
"properties": {
"facing": "south",
"half": "top",
@@ -226960,7 +231639,7 @@
}
},
{
- "id": 21241,
+ "id": 21710,
"properties": {
"facing": "south",
"half": "top",
@@ -226969,7 +231648,7 @@
}
},
{
- "id": 21242,
+ "id": 21711,
"properties": {
"facing": "south",
"half": "top",
@@ -226978,7 +231657,7 @@
}
},
{
- "id": 21243,
+ "id": 21712,
"properties": {
"facing": "south",
"half": "top",
@@ -226987,7 +231666,7 @@
}
},
{
- "id": 21244,
+ "id": 21713,
"properties": {
"facing": "south",
"half": "bottom",
@@ -226996,7 +231675,7 @@
}
},
{
- "id": 21245,
+ "id": 21714,
"properties": {
"facing": "south",
"half": "bottom",
@@ -227005,7 +231684,7 @@
}
},
{
- "id": 21246,
+ "id": 21715,
"properties": {
"facing": "south",
"half": "bottom",
@@ -227014,7 +231693,7 @@
}
},
{
- "id": 21247,
+ "id": 21716,
"properties": {
"facing": "south",
"half": "bottom",
@@ -227023,7 +231702,7 @@
}
},
{
- "id": 21248,
+ "id": 21717,
"properties": {
"facing": "south",
"half": "bottom",
@@ -227032,7 +231711,7 @@
}
},
{
- "id": 21249,
+ "id": 21718,
"properties": {
"facing": "south",
"half": "bottom",
@@ -227041,7 +231720,7 @@
}
},
{
- "id": 21250,
+ "id": 21719,
"properties": {
"facing": "south",
"half": "bottom",
@@ -227050,7 +231729,7 @@
}
},
{
- "id": 21251,
+ "id": 21720,
"properties": {
"facing": "south",
"half": "bottom",
@@ -227059,7 +231738,7 @@
}
},
{
- "id": 21252,
+ "id": 21721,
"properties": {
"facing": "south",
"half": "bottom",
@@ -227068,7 +231747,7 @@
}
},
{
- "id": 21253,
+ "id": 21722,
"properties": {
"facing": "south",
"half": "bottom",
@@ -227077,7 +231756,7 @@
}
},
{
- "id": 21254,
+ "id": 21723,
"properties": {
"facing": "west",
"half": "top",
@@ -227086,7 +231765,7 @@
}
},
{
- "id": 21255,
+ "id": 21724,
"properties": {
"facing": "west",
"half": "top",
@@ -227095,7 +231774,7 @@
}
},
{
- "id": 21256,
+ "id": 21725,
"properties": {
"facing": "west",
"half": "top",
@@ -227104,7 +231783,7 @@
}
},
{
- "id": 21257,
+ "id": 21726,
"properties": {
"facing": "west",
"half": "top",
@@ -227113,7 +231792,7 @@
}
},
{
- "id": 21258,
+ "id": 21727,
"properties": {
"facing": "west",
"half": "top",
@@ -227122,7 +231801,7 @@
}
},
{
- "id": 21259,
+ "id": 21728,
"properties": {
"facing": "west",
"half": "top",
@@ -227131,7 +231810,7 @@
}
},
{
- "id": 21260,
+ "id": 21729,
"properties": {
"facing": "west",
"half": "top",
@@ -227140,7 +231819,7 @@
}
},
{
- "id": 21261,
+ "id": 21730,
"properties": {
"facing": "west",
"half": "top",
@@ -227149,7 +231828,7 @@
}
},
{
- "id": 21262,
+ "id": 21731,
"properties": {
"facing": "west",
"half": "top",
@@ -227158,7 +231837,7 @@
}
},
{
- "id": 21263,
+ "id": 21732,
"properties": {
"facing": "west",
"half": "top",
@@ -227167,7 +231846,7 @@
}
},
{
- "id": 21264,
+ "id": 21733,
"properties": {
"facing": "west",
"half": "bottom",
@@ -227176,7 +231855,7 @@
}
},
{
- "id": 21265,
+ "id": 21734,
"properties": {
"facing": "west",
"half": "bottom",
@@ -227185,7 +231864,7 @@
}
},
{
- "id": 21266,
+ "id": 21735,
"properties": {
"facing": "west",
"half": "bottom",
@@ -227194,7 +231873,7 @@
}
},
{
- "id": 21267,
+ "id": 21736,
"properties": {
"facing": "west",
"half": "bottom",
@@ -227203,7 +231882,7 @@
}
},
{
- "id": 21268,
+ "id": 21737,
"properties": {
"facing": "west",
"half": "bottom",
@@ -227212,7 +231891,7 @@
}
},
{
- "id": 21269,
+ "id": 21738,
"properties": {
"facing": "west",
"half": "bottom",
@@ -227221,7 +231900,7 @@
}
},
{
- "id": 21270,
+ "id": 21739,
"properties": {
"facing": "west",
"half": "bottom",
@@ -227230,7 +231909,7 @@
}
},
{
- "id": 21271,
+ "id": 21740,
"properties": {
"facing": "west",
"half": "bottom",
@@ -227239,7 +231918,7 @@
}
},
{
- "id": 21272,
+ "id": 21741,
"properties": {
"facing": "west",
"half": "bottom",
@@ -227248,7 +231927,7 @@
}
},
{
- "id": 21273,
+ "id": 21742,
"properties": {
"facing": "west",
"half": "bottom",
@@ -227257,7 +231936,7 @@
}
},
{
- "id": 21274,
+ "id": 21743,
"properties": {
"facing": "east",
"half": "top",
@@ -227266,7 +231945,7 @@
}
},
{
- "id": 21275,
+ "id": 21744,
"properties": {
"facing": "east",
"half": "top",
@@ -227275,7 +231954,7 @@
}
},
{
- "id": 21276,
+ "id": 21745,
"properties": {
"facing": "east",
"half": "top",
@@ -227284,7 +231963,7 @@
}
},
{
- "id": 21277,
+ "id": 21746,
"properties": {
"facing": "east",
"half": "top",
@@ -227293,7 +231972,7 @@
}
},
{
- "id": 21278,
+ "id": 21747,
"properties": {
"facing": "east",
"half": "top",
@@ -227302,7 +231981,7 @@
}
},
{
- "id": 21279,
+ "id": 21748,
"properties": {
"facing": "east",
"half": "top",
@@ -227311,7 +231990,7 @@
}
},
{
- "id": 21280,
+ "id": 21749,
"properties": {
"facing": "east",
"half": "top",
@@ -227320,7 +231999,7 @@
}
},
{
- "id": 21281,
+ "id": 21750,
"properties": {
"facing": "east",
"half": "top",
@@ -227329,7 +232008,7 @@
}
},
{
- "id": 21282,
+ "id": 21751,
"properties": {
"facing": "east",
"half": "top",
@@ -227338,7 +232017,7 @@
}
},
{
- "id": 21283,
+ "id": 21752,
"properties": {
"facing": "east",
"half": "top",
@@ -227347,7 +232026,7 @@
}
},
{
- "id": 21284,
+ "id": 21753,
"properties": {
"facing": "east",
"half": "bottom",
@@ -227356,7 +232035,7 @@
}
},
{
- "id": 21285,
+ "id": 21754,
"properties": {
"facing": "east",
"half": "bottom",
@@ -227365,7 +232044,7 @@
}
},
{
- "id": 21286,
+ "id": 21755,
"properties": {
"facing": "east",
"half": "bottom",
@@ -227374,7 +232053,7 @@
}
},
{
- "id": 21287,
+ "id": 21756,
"properties": {
"facing": "east",
"half": "bottom",
@@ -227383,7 +232062,7 @@
}
},
{
- "id": 21288,
+ "id": 21757,
"properties": {
"facing": "east",
"half": "bottom",
@@ -227392,7 +232071,7 @@
}
},
{
- "id": 21289,
+ "id": 21758,
"properties": {
"facing": "east",
"half": "bottom",
@@ -227401,7 +232080,7 @@
}
},
{
- "id": 21290,
+ "id": 21759,
"properties": {
"facing": "east",
"half": "bottom",
@@ -227410,7 +232089,7 @@
}
},
{
- "id": 21291,
+ "id": 21760,
"properties": {
"facing": "east",
"half": "bottom",
@@ -227419,7 +232098,7 @@
}
},
{
- "id": 21292,
+ "id": 21761,
"properties": {
"facing": "east",
"half": "bottom",
@@ -227428,7 +232107,7 @@
}
},
{
- "id": 21293,
+ "id": 21762,
"properties": {
"facing": "east",
"half": "bottom",
@@ -227442,7 +232121,7 @@
"states": [
{
"default": true,
- "id": 21049
+ "id": 21518
}
]
},
@@ -227450,7 +232129,7 @@
"states": [
{
"default": true,
- "id": 21050
+ "id": 21519
}
]
},
@@ -227468,21 +232147,21 @@
},
"states": [
{
- "id": 21374,
+ "id": 21843,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 21375,
+ "id": 21844,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 21376,
+ "id": 21845,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -227490,21 +232169,21 @@
},
{
"default": true,
- "id": 21377,
+ "id": 21846,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 21378,
+ "id": 21847,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 21379,
+ "id": 21848,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -227538,7 +232217,7 @@
},
"states": [
{
- "id": 21054,
+ "id": 21523,
"properties": {
"facing": "north",
"half": "top",
@@ -227547,7 +232226,7 @@
}
},
{
- "id": 21055,
+ "id": 21524,
"properties": {
"facing": "north",
"half": "top",
@@ -227556,7 +232235,7 @@
}
},
{
- "id": 21056,
+ "id": 21525,
"properties": {
"facing": "north",
"half": "top",
@@ -227565,7 +232244,7 @@
}
},
{
- "id": 21057,
+ "id": 21526,
"properties": {
"facing": "north",
"half": "top",
@@ -227574,7 +232253,7 @@
}
},
{
- "id": 21058,
+ "id": 21527,
"properties": {
"facing": "north",
"half": "top",
@@ -227583,7 +232262,7 @@
}
},
{
- "id": 21059,
+ "id": 21528,
"properties": {
"facing": "north",
"half": "top",
@@ -227592,7 +232271,7 @@
}
},
{
- "id": 21060,
+ "id": 21529,
"properties": {
"facing": "north",
"half": "top",
@@ -227601,7 +232280,7 @@
}
},
{
- "id": 21061,
+ "id": 21530,
"properties": {
"facing": "north",
"half": "top",
@@ -227610,7 +232289,7 @@
}
},
{
- "id": 21062,
+ "id": 21531,
"properties": {
"facing": "north",
"half": "top",
@@ -227619,7 +232298,7 @@
}
},
{
- "id": 21063,
+ "id": 21532,
"properties": {
"facing": "north",
"half": "top",
@@ -227628,7 +232307,7 @@
}
},
{
- "id": 21064,
+ "id": 21533,
"properties": {
"facing": "north",
"half": "bottom",
@@ -227638,7 +232317,7 @@
},
{
"default": true,
- "id": 21065,
+ "id": 21534,
"properties": {
"facing": "north",
"half": "bottom",
@@ -227647,7 +232326,7 @@
}
},
{
- "id": 21066,
+ "id": 21535,
"properties": {
"facing": "north",
"half": "bottom",
@@ -227656,7 +232335,7 @@
}
},
{
- "id": 21067,
+ "id": 21536,
"properties": {
"facing": "north",
"half": "bottom",
@@ -227665,7 +232344,7 @@
}
},
{
- "id": 21068,
+ "id": 21537,
"properties": {
"facing": "north",
"half": "bottom",
@@ -227674,7 +232353,7 @@
}
},
{
- "id": 21069,
+ "id": 21538,
"properties": {
"facing": "north",
"half": "bottom",
@@ -227683,7 +232362,7 @@
}
},
{
- "id": 21070,
+ "id": 21539,
"properties": {
"facing": "north",
"half": "bottom",
@@ -227692,7 +232371,7 @@
}
},
{
- "id": 21071,
+ "id": 21540,
"properties": {
"facing": "north",
"half": "bottom",
@@ -227701,7 +232380,7 @@
}
},
{
- "id": 21072,
+ "id": 21541,
"properties": {
"facing": "north",
"half": "bottom",
@@ -227710,7 +232389,7 @@
}
},
{
- "id": 21073,
+ "id": 21542,
"properties": {
"facing": "north",
"half": "bottom",
@@ -227719,7 +232398,7 @@
}
},
{
- "id": 21074,
+ "id": 21543,
"properties": {
"facing": "south",
"half": "top",
@@ -227728,7 +232407,7 @@
}
},
{
- "id": 21075,
+ "id": 21544,
"properties": {
"facing": "south",
"half": "top",
@@ -227737,7 +232416,7 @@
}
},
{
- "id": 21076,
+ "id": 21545,
"properties": {
"facing": "south",
"half": "top",
@@ -227746,7 +232425,7 @@
}
},
{
- "id": 21077,
+ "id": 21546,
"properties": {
"facing": "south",
"half": "top",
@@ -227755,7 +232434,7 @@
}
},
{
- "id": 21078,
+ "id": 21547,
"properties": {
"facing": "south",
"half": "top",
@@ -227764,7 +232443,7 @@
}
},
{
- "id": 21079,
+ "id": 21548,
"properties": {
"facing": "south",
"half": "top",
@@ -227773,7 +232452,7 @@
}
},
{
- "id": 21080,
+ "id": 21549,
"properties": {
"facing": "south",
"half": "top",
@@ -227782,7 +232461,7 @@
}
},
{
- "id": 21081,
+ "id": 21550,
"properties": {
"facing": "south",
"half": "top",
@@ -227791,7 +232470,7 @@
}
},
{
- "id": 21082,
+ "id": 21551,
"properties": {
"facing": "south",
"half": "top",
@@ -227800,7 +232479,7 @@
}
},
{
- "id": 21083,
+ "id": 21552,
"properties": {
"facing": "south",
"half": "top",
@@ -227809,7 +232488,7 @@
}
},
{
- "id": 21084,
+ "id": 21553,
"properties": {
"facing": "south",
"half": "bottom",
@@ -227818,7 +232497,7 @@
}
},
{
- "id": 21085,
+ "id": 21554,
"properties": {
"facing": "south",
"half": "bottom",
@@ -227827,7 +232506,7 @@
}
},
{
- "id": 21086,
+ "id": 21555,
"properties": {
"facing": "south",
"half": "bottom",
@@ -227836,7 +232515,7 @@
}
},
{
- "id": 21087,
+ "id": 21556,
"properties": {
"facing": "south",
"half": "bottom",
@@ -227845,7 +232524,7 @@
}
},
{
- "id": 21088,
+ "id": 21557,
"properties": {
"facing": "south",
"half": "bottom",
@@ -227854,7 +232533,7 @@
}
},
{
- "id": 21089,
+ "id": 21558,
"properties": {
"facing": "south",
"half": "bottom",
@@ -227863,7 +232542,7 @@
}
},
{
- "id": 21090,
+ "id": 21559,
"properties": {
"facing": "south",
"half": "bottom",
@@ -227872,7 +232551,7 @@
}
},
{
- "id": 21091,
+ "id": 21560,
"properties": {
"facing": "south",
"half": "bottom",
@@ -227881,7 +232560,7 @@
}
},
{
- "id": 21092,
+ "id": 21561,
"properties": {
"facing": "south",
"half": "bottom",
@@ -227890,7 +232569,7 @@
}
},
{
- "id": 21093,
+ "id": 21562,
"properties": {
"facing": "south",
"half": "bottom",
@@ -227899,7 +232578,7 @@
}
},
{
- "id": 21094,
+ "id": 21563,
"properties": {
"facing": "west",
"half": "top",
@@ -227908,7 +232587,7 @@
}
},
{
- "id": 21095,
+ "id": 21564,
"properties": {
"facing": "west",
"half": "top",
@@ -227917,7 +232596,7 @@
}
},
{
- "id": 21096,
+ "id": 21565,
"properties": {
"facing": "west",
"half": "top",
@@ -227926,7 +232605,7 @@
}
},
{
- "id": 21097,
+ "id": 21566,
"properties": {
"facing": "west",
"half": "top",
@@ -227935,7 +232614,7 @@
}
},
{
- "id": 21098,
+ "id": 21567,
"properties": {
"facing": "west",
"half": "top",
@@ -227944,7 +232623,7 @@
}
},
{
- "id": 21099,
+ "id": 21568,
"properties": {
"facing": "west",
"half": "top",
@@ -227953,7 +232632,7 @@
}
},
{
- "id": 21100,
+ "id": 21569,
"properties": {
"facing": "west",
"half": "top",
@@ -227962,7 +232641,7 @@
}
},
{
- "id": 21101,
+ "id": 21570,
"properties": {
"facing": "west",
"half": "top",
@@ -227971,7 +232650,7 @@
}
},
{
- "id": 21102,
+ "id": 21571,
"properties": {
"facing": "west",
"half": "top",
@@ -227980,7 +232659,7 @@
}
},
{
- "id": 21103,
+ "id": 21572,
"properties": {
"facing": "west",
"half": "top",
@@ -227989,7 +232668,7 @@
}
},
{
- "id": 21104,
+ "id": 21573,
"properties": {
"facing": "west",
"half": "bottom",
@@ -227998,7 +232677,7 @@
}
},
{
- "id": 21105,
+ "id": 21574,
"properties": {
"facing": "west",
"half": "bottom",
@@ -228007,7 +232686,7 @@
}
},
{
- "id": 21106,
+ "id": 21575,
"properties": {
"facing": "west",
"half": "bottom",
@@ -228016,7 +232695,7 @@
}
},
{
- "id": 21107,
+ "id": 21576,
"properties": {
"facing": "west",
"half": "bottom",
@@ -228025,7 +232704,7 @@
}
},
{
- "id": 21108,
+ "id": 21577,
"properties": {
"facing": "west",
"half": "bottom",
@@ -228034,7 +232713,7 @@
}
},
{
- "id": 21109,
+ "id": 21578,
"properties": {
"facing": "west",
"half": "bottom",
@@ -228043,7 +232722,7 @@
}
},
{
- "id": 21110,
+ "id": 21579,
"properties": {
"facing": "west",
"half": "bottom",
@@ -228052,7 +232731,7 @@
}
},
{
- "id": 21111,
+ "id": 21580,
"properties": {
"facing": "west",
"half": "bottom",
@@ -228061,7 +232740,7 @@
}
},
{
- "id": 21112,
+ "id": 21581,
"properties": {
"facing": "west",
"half": "bottom",
@@ -228070,7 +232749,7 @@
}
},
{
- "id": 21113,
+ "id": 21582,
"properties": {
"facing": "west",
"half": "bottom",
@@ -228079,7 +232758,7 @@
}
},
{
- "id": 21114,
+ "id": 21583,
"properties": {
"facing": "east",
"half": "top",
@@ -228088,7 +232767,7 @@
}
},
{
- "id": 21115,
+ "id": 21584,
"properties": {
"facing": "east",
"half": "top",
@@ -228097,7 +232776,7 @@
}
},
{
- "id": 21116,
+ "id": 21585,
"properties": {
"facing": "east",
"half": "top",
@@ -228106,7 +232785,7 @@
}
},
{
- "id": 21117,
+ "id": 21586,
"properties": {
"facing": "east",
"half": "top",
@@ -228115,7 +232794,7 @@
}
},
{
- "id": 21118,
+ "id": 21587,
"properties": {
"facing": "east",
"half": "top",
@@ -228124,7 +232803,7 @@
}
},
{
- "id": 21119,
+ "id": 21588,
"properties": {
"facing": "east",
"half": "top",
@@ -228133,7 +232812,7 @@
}
},
{
- "id": 21120,
+ "id": 21589,
"properties": {
"facing": "east",
"half": "top",
@@ -228142,7 +232821,7 @@
}
},
{
- "id": 21121,
+ "id": 21590,
"properties": {
"facing": "east",
"half": "top",
@@ -228151,7 +232830,7 @@
}
},
{
- "id": 21122,
+ "id": 21591,
"properties": {
"facing": "east",
"half": "top",
@@ -228160,7 +232839,7 @@
}
},
{
- "id": 21123,
+ "id": 21592,
"properties": {
"facing": "east",
"half": "top",
@@ -228169,7 +232848,7 @@
}
},
{
- "id": 21124,
+ "id": 21593,
"properties": {
"facing": "east",
"half": "bottom",
@@ -228178,7 +232857,7 @@
}
},
{
- "id": 21125,
+ "id": 21594,
"properties": {
"facing": "east",
"half": "bottom",
@@ -228187,7 +232866,7 @@
}
},
{
- "id": 21126,
+ "id": 21595,
"properties": {
"facing": "east",
"half": "bottom",
@@ -228196,7 +232875,7 @@
}
},
{
- "id": 21127,
+ "id": 21596,
"properties": {
"facing": "east",
"half": "bottom",
@@ -228205,7 +232884,7 @@
}
},
{
- "id": 21128,
+ "id": 21597,
"properties": {
"facing": "east",
"half": "bottom",
@@ -228214,7 +232893,7 @@
}
},
{
- "id": 21129,
+ "id": 21598,
"properties": {
"facing": "east",
"half": "bottom",
@@ -228223,7 +232902,7 @@
}
},
{
- "id": 21130,
+ "id": 21599,
"properties": {
"facing": "east",
"half": "bottom",
@@ -228232,7 +232911,7 @@
}
},
{
- "id": 21131,
+ "id": 21600,
"properties": {
"facing": "east",
"half": "bottom",
@@ -228241,7 +232920,7 @@
}
},
{
- "id": 21132,
+ "id": 21601,
"properties": {
"facing": "east",
"half": "bottom",
@@ -228250,7 +232929,7 @@
}
},
{
- "id": 21133,
+ "id": 21602,
"properties": {
"facing": "east",
"half": "bottom",
@@ -228264,7 +232943,7 @@
"states": [
{
"default": true,
- "id": 21047
+ "id": 21516
}
]
},
@@ -228272,7 +232951,7 @@
"states": [
{
"default": true,
- "id": 21051
+ "id": 21520
}
]
},
@@ -228290,21 +232969,21 @@
},
"states": [
{
- "id": 21380,
+ "id": 21849,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 21381,
+ "id": 21850,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 21382,
+ "id": 21851,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -228312,21 +232991,21 @@
},
{
"default": true,
- "id": 21383,
+ "id": 21852,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 21384,
+ "id": 21853,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 21385,
+ "id": 21854,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -228360,7 +233039,7 @@
},
"states": [
{
- "id": 21134,
+ "id": 21603,
"properties": {
"facing": "north",
"half": "top",
@@ -228369,7 +233048,7 @@
}
},
{
- "id": 21135,
+ "id": 21604,
"properties": {
"facing": "north",
"half": "top",
@@ -228378,7 +233057,7 @@
}
},
{
- "id": 21136,
+ "id": 21605,
"properties": {
"facing": "north",
"half": "top",
@@ -228387,7 +233066,7 @@
}
},
{
- "id": 21137,
+ "id": 21606,
"properties": {
"facing": "north",
"half": "top",
@@ -228396,7 +233075,7 @@
}
},
{
- "id": 21138,
+ "id": 21607,
"properties": {
"facing": "north",
"half": "top",
@@ -228405,7 +233084,7 @@
}
},
{
- "id": 21139,
+ "id": 21608,
"properties": {
"facing": "north",
"half": "top",
@@ -228414,7 +233093,7 @@
}
},
{
- "id": 21140,
+ "id": 21609,
"properties": {
"facing": "north",
"half": "top",
@@ -228423,7 +233102,7 @@
}
},
{
- "id": 21141,
+ "id": 21610,
"properties": {
"facing": "north",
"half": "top",
@@ -228432,7 +233111,7 @@
}
},
{
- "id": 21142,
+ "id": 21611,
"properties": {
"facing": "north",
"half": "top",
@@ -228441,7 +233120,7 @@
}
},
{
- "id": 21143,
+ "id": 21612,
"properties": {
"facing": "north",
"half": "top",
@@ -228450,7 +233129,7 @@
}
},
{
- "id": 21144,
+ "id": 21613,
"properties": {
"facing": "north",
"half": "bottom",
@@ -228460,7 +233139,7 @@
},
{
"default": true,
- "id": 21145,
+ "id": 21614,
"properties": {
"facing": "north",
"half": "bottom",
@@ -228469,7 +233148,7 @@
}
},
{
- "id": 21146,
+ "id": 21615,
"properties": {
"facing": "north",
"half": "bottom",
@@ -228478,7 +233157,7 @@
}
},
{
- "id": 21147,
+ "id": 21616,
"properties": {
"facing": "north",
"half": "bottom",
@@ -228487,7 +233166,7 @@
}
},
{
- "id": 21148,
+ "id": 21617,
"properties": {
"facing": "north",
"half": "bottom",
@@ -228496,7 +233175,7 @@
}
},
{
- "id": 21149,
+ "id": 21618,
"properties": {
"facing": "north",
"half": "bottom",
@@ -228505,7 +233184,7 @@
}
},
{
- "id": 21150,
+ "id": 21619,
"properties": {
"facing": "north",
"half": "bottom",
@@ -228514,7 +233193,7 @@
}
},
{
- "id": 21151,
+ "id": 21620,
"properties": {
"facing": "north",
"half": "bottom",
@@ -228523,7 +233202,7 @@
}
},
{
- "id": 21152,
+ "id": 21621,
"properties": {
"facing": "north",
"half": "bottom",
@@ -228532,7 +233211,7 @@
}
},
{
- "id": 21153,
+ "id": 21622,
"properties": {
"facing": "north",
"half": "bottom",
@@ -228541,7 +233220,7 @@
}
},
{
- "id": 21154,
+ "id": 21623,
"properties": {
"facing": "south",
"half": "top",
@@ -228550,7 +233229,7 @@
}
},
{
- "id": 21155,
+ "id": 21624,
"properties": {
"facing": "south",
"half": "top",
@@ -228559,7 +233238,7 @@
}
},
{
- "id": 21156,
+ "id": 21625,
"properties": {
"facing": "south",
"half": "top",
@@ -228568,7 +233247,7 @@
}
},
{
- "id": 21157,
+ "id": 21626,
"properties": {
"facing": "south",
"half": "top",
@@ -228577,7 +233256,7 @@
}
},
{
- "id": 21158,
+ "id": 21627,
"properties": {
"facing": "south",
"half": "top",
@@ -228586,7 +233265,7 @@
}
},
{
- "id": 21159,
+ "id": 21628,
"properties": {
"facing": "south",
"half": "top",
@@ -228595,7 +233274,7 @@
}
},
{
- "id": 21160,
+ "id": 21629,
"properties": {
"facing": "south",
"half": "top",
@@ -228604,7 +233283,7 @@
}
},
{
- "id": 21161,
+ "id": 21630,
"properties": {
"facing": "south",
"half": "top",
@@ -228613,7 +233292,7 @@
}
},
{
- "id": 21162,
+ "id": 21631,
"properties": {
"facing": "south",
"half": "top",
@@ -228622,7 +233301,7 @@
}
},
{
- "id": 21163,
+ "id": 21632,
"properties": {
"facing": "south",
"half": "top",
@@ -228631,7 +233310,7 @@
}
},
{
- "id": 21164,
+ "id": 21633,
"properties": {
"facing": "south",
"half": "bottom",
@@ -228640,7 +233319,7 @@
}
},
{
- "id": 21165,
+ "id": 21634,
"properties": {
"facing": "south",
"half": "bottom",
@@ -228649,7 +233328,7 @@
}
},
{
- "id": 21166,
+ "id": 21635,
"properties": {
"facing": "south",
"half": "bottom",
@@ -228658,7 +233337,7 @@
}
},
{
- "id": 21167,
+ "id": 21636,
"properties": {
"facing": "south",
"half": "bottom",
@@ -228667,7 +233346,7 @@
}
},
{
- "id": 21168,
+ "id": 21637,
"properties": {
"facing": "south",
"half": "bottom",
@@ -228676,7 +233355,7 @@
}
},
{
- "id": 21169,
+ "id": 21638,
"properties": {
"facing": "south",
"half": "bottom",
@@ -228685,7 +233364,7 @@
}
},
{
- "id": 21170,
+ "id": 21639,
"properties": {
"facing": "south",
"half": "bottom",
@@ -228694,7 +233373,7 @@
}
},
{
- "id": 21171,
+ "id": 21640,
"properties": {
"facing": "south",
"half": "bottom",
@@ -228703,7 +233382,7 @@
}
},
{
- "id": 21172,
+ "id": 21641,
"properties": {
"facing": "south",
"half": "bottom",
@@ -228712,7 +233391,7 @@
}
},
{
- "id": 21173,
+ "id": 21642,
"properties": {
"facing": "south",
"half": "bottom",
@@ -228721,7 +233400,7 @@
}
},
{
- "id": 21174,
+ "id": 21643,
"properties": {
"facing": "west",
"half": "top",
@@ -228730,7 +233409,7 @@
}
},
{
- "id": 21175,
+ "id": 21644,
"properties": {
"facing": "west",
"half": "top",
@@ -228739,7 +233418,7 @@
}
},
{
- "id": 21176,
+ "id": 21645,
"properties": {
"facing": "west",
"half": "top",
@@ -228748,7 +233427,7 @@
}
},
{
- "id": 21177,
+ "id": 21646,
"properties": {
"facing": "west",
"half": "top",
@@ -228757,7 +233436,7 @@
}
},
{
- "id": 21178,
+ "id": 21647,
"properties": {
"facing": "west",
"half": "top",
@@ -228766,7 +233445,7 @@
}
},
{
- "id": 21179,
+ "id": 21648,
"properties": {
"facing": "west",
"half": "top",
@@ -228775,7 +233454,7 @@
}
},
{
- "id": 21180,
+ "id": 21649,
"properties": {
"facing": "west",
"half": "top",
@@ -228784,7 +233463,7 @@
}
},
{
- "id": 21181,
+ "id": 21650,
"properties": {
"facing": "west",
"half": "top",
@@ -228793,7 +233472,7 @@
}
},
{
- "id": 21182,
+ "id": 21651,
"properties": {
"facing": "west",
"half": "top",
@@ -228802,7 +233481,7 @@
}
},
{
- "id": 21183,
+ "id": 21652,
"properties": {
"facing": "west",
"half": "top",
@@ -228811,7 +233490,7 @@
}
},
{
- "id": 21184,
+ "id": 21653,
"properties": {
"facing": "west",
"half": "bottom",
@@ -228820,7 +233499,7 @@
}
},
{
- "id": 21185,
+ "id": 21654,
"properties": {
"facing": "west",
"half": "bottom",
@@ -228829,7 +233508,7 @@
}
},
{
- "id": 21186,
+ "id": 21655,
"properties": {
"facing": "west",
"half": "bottom",
@@ -228838,7 +233517,7 @@
}
},
{
- "id": 21187,
+ "id": 21656,
"properties": {
"facing": "west",
"half": "bottom",
@@ -228847,7 +233526,7 @@
}
},
{
- "id": 21188,
+ "id": 21657,
"properties": {
"facing": "west",
"half": "bottom",
@@ -228856,7 +233535,7 @@
}
},
{
- "id": 21189,
+ "id": 21658,
"properties": {
"facing": "west",
"half": "bottom",
@@ -228865,7 +233544,7 @@
}
},
{
- "id": 21190,
+ "id": 21659,
"properties": {
"facing": "west",
"half": "bottom",
@@ -228874,7 +233553,7 @@
}
},
{
- "id": 21191,
+ "id": 21660,
"properties": {
"facing": "west",
"half": "bottom",
@@ -228883,7 +233562,7 @@
}
},
{
- "id": 21192,
+ "id": 21661,
"properties": {
"facing": "west",
"half": "bottom",
@@ -228892,7 +233571,7 @@
}
},
{
- "id": 21193,
+ "id": 21662,
"properties": {
"facing": "west",
"half": "bottom",
@@ -228901,7 +233580,7 @@
}
},
{
- "id": 21194,
+ "id": 21663,
"properties": {
"facing": "east",
"half": "top",
@@ -228910,7 +233589,7 @@
}
},
{
- "id": 21195,
+ "id": 21664,
"properties": {
"facing": "east",
"half": "top",
@@ -228919,7 +233598,7 @@
}
},
{
- "id": 21196,
+ "id": 21665,
"properties": {
"facing": "east",
"half": "top",
@@ -228928,7 +233607,7 @@
}
},
{
- "id": 21197,
+ "id": 21666,
"properties": {
"facing": "east",
"half": "top",
@@ -228937,7 +233616,7 @@
}
},
{
- "id": 21198,
+ "id": 21667,
"properties": {
"facing": "east",
"half": "top",
@@ -228946,7 +233625,7 @@
}
},
{
- "id": 21199,
+ "id": 21668,
"properties": {
"facing": "east",
"half": "top",
@@ -228955,7 +233634,7 @@
}
},
{
- "id": 21200,
+ "id": 21669,
"properties": {
"facing": "east",
"half": "top",
@@ -228964,7 +233643,7 @@
}
},
{
- "id": 21201,
+ "id": 21670,
"properties": {
"facing": "east",
"half": "top",
@@ -228973,7 +233652,7 @@
}
},
{
- "id": 21202,
+ "id": 21671,
"properties": {
"facing": "east",
"half": "top",
@@ -228982,7 +233661,7 @@
}
},
{
- "id": 21203,
+ "id": 21672,
"properties": {
"facing": "east",
"half": "top",
@@ -228991,7 +233670,7 @@
}
},
{
- "id": 21204,
+ "id": 21673,
"properties": {
"facing": "east",
"half": "bottom",
@@ -229000,7 +233679,7 @@
}
},
{
- "id": 21205,
+ "id": 21674,
"properties": {
"facing": "east",
"half": "bottom",
@@ -229009,7 +233688,7 @@
}
},
{
- "id": 21206,
+ "id": 21675,
"properties": {
"facing": "east",
"half": "bottom",
@@ -229018,7 +233697,7 @@
}
},
{
- "id": 21207,
+ "id": 21676,
"properties": {
"facing": "east",
"half": "bottom",
@@ -229027,7 +233706,7 @@
}
},
{
- "id": 21208,
+ "id": 21677,
"properties": {
"facing": "east",
"half": "bottom",
@@ -229036,7 +233715,7 @@
}
},
{
- "id": 21209,
+ "id": 21678,
"properties": {
"facing": "east",
"half": "bottom",
@@ -229045,7 +233724,7 @@
}
},
{
- "id": 21210,
+ "id": 21679,
"properties": {
"facing": "east",
"half": "bottom",
@@ -229054,7 +233733,7 @@
}
},
{
- "id": 21211,
+ "id": 21680,
"properties": {
"facing": "east",
"half": "bottom",
@@ -229063,7 +233742,7 @@
}
},
{
- "id": 21212,
+ "id": 21681,
"properties": {
"facing": "east",
"half": "bottom",
@@ -229072,7 +233751,7 @@
}
},
{
- "id": 21213,
+ "id": 21682,
"properties": {
"facing": "east",
"half": "bottom",
@@ -229086,7 +233765,7 @@
"states": [
{
"default": true,
- "id": 20693
+ "id": 21162
}
]
},
@@ -229094,7 +233773,7 @@
"states": [
{
"default": true,
- "id": 20699
+ "id": 21168
}
]
},
@@ -229112,21 +233791,21 @@
},
"states": [
{
- "id": 21028,
+ "id": 21497,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 21029,
+ "id": 21498,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 21030,
+ "id": 21499,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -229134,21 +233813,21 @@
},
{
"default": true,
- "id": 21031,
+ "id": 21500,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 21032,
+ "id": 21501,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 21033,
+ "id": 21502,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -229182,7 +233861,7 @@
},
"states": [
{
- "id": 20782,
+ "id": 21251,
"properties": {
"facing": "north",
"half": "top",
@@ -229191,7 +233870,7 @@
}
},
{
- "id": 20783,
+ "id": 21252,
"properties": {
"facing": "north",
"half": "top",
@@ -229200,7 +233879,7 @@
}
},
{
- "id": 20784,
+ "id": 21253,
"properties": {
"facing": "north",
"half": "top",
@@ -229209,7 +233888,7 @@
}
},
{
- "id": 20785,
+ "id": 21254,
"properties": {
"facing": "north",
"half": "top",
@@ -229218,7 +233897,7 @@
}
},
{
- "id": 20786,
+ "id": 21255,
"properties": {
"facing": "north",
"half": "top",
@@ -229227,7 +233906,7 @@
}
},
{
- "id": 20787,
+ "id": 21256,
"properties": {
"facing": "north",
"half": "top",
@@ -229236,7 +233915,7 @@
}
},
{
- "id": 20788,
+ "id": 21257,
"properties": {
"facing": "north",
"half": "top",
@@ -229245,7 +233924,7 @@
}
},
{
- "id": 20789,
+ "id": 21258,
"properties": {
"facing": "north",
"half": "top",
@@ -229254,7 +233933,7 @@
}
},
{
- "id": 20790,
+ "id": 21259,
"properties": {
"facing": "north",
"half": "top",
@@ -229263,7 +233942,7 @@
}
},
{
- "id": 20791,
+ "id": 21260,
"properties": {
"facing": "north",
"half": "top",
@@ -229272,7 +233951,7 @@
}
},
{
- "id": 20792,
+ "id": 21261,
"properties": {
"facing": "north",
"half": "bottom",
@@ -229282,7 +233961,7 @@
},
{
"default": true,
- "id": 20793,
+ "id": 21262,
"properties": {
"facing": "north",
"half": "bottom",
@@ -229291,7 +233970,7 @@
}
},
{
- "id": 20794,
+ "id": 21263,
"properties": {
"facing": "north",
"half": "bottom",
@@ -229300,7 +233979,7 @@
}
},
{
- "id": 20795,
+ "id": 21264,
"properties": {
"facing": "north",
"half": "bottom",
@@ -229309,7 +233988,7 @@
}
},
{
- "id": 20796,
+ "id": 21265,
"properties": {
"facing": "north",
"half": "bottom",
@@ -229318,7 +233997,7 @@
}
},
{
- "id": 20797,
+ "id": 21266,
"properties": {
"facing": "north",
"half": "bottom",
@@ -229327,7 +234006,7 @@
}
},
{
- "id": 20798,
+ "id": 21267,
"properties": {
"facing": "north",
"half": "bottom",
@@ -229336,7 +234015,7 @@
}
},
{
- "id": 20799,
+ "id": 21268,
"properties": {
"facing": "north",
"half": "bottom",
@@ -229345,7 +234024,7 @@
}
},
{
- "id": 20800,
+ "id": 21269,
"properties": {
"facing": "north",
"half": "bottom",
@@ -229354,7 +234033,7 @@
}
},
{
- "id": 20801,
+ "id": 21270,
"properties": {
"facing": "north",
"half": "bottom",
@@ -229363,7 +234042,7 @@
}
},
{
- "id": 20802,
+ "id": 21271,
"properties": {
"facing": "south",
"half": "top",
@@ -229372,7 +234051,7 @@
}
},
{
- "id": 20803,
+ "id": 21272,
"properties": {
"facing": "south",
"half": "top",
@@ -229381,7 +234060,7 @@
}
},
{
- "id": 20804,
+ "id": 21273,
"properties": {
"facing": "south",
"half": "top",
@@ -229390,7 +234069,7 @@
}
},
{
- "id": 20805,
+ "id": 21274,
"properties": {
"facing": "south",
"half": "top",
@@ -229399,7 +234078,7 @@
}
},
{
- "id": 20806,
+ "id": 21275,
"properties": {
"facing": "south",
"half": "top",
@@ -229408,7 +234087,7 @@
}
},
{
- "id": 20807,
+ "id": 21276,
"properties": {
"facing": "south",
"half": "top",
@@ -229417,7 +234096,7 @@
}
},
{
- "id": 20808,
+ "id": 21277,
"properties": {
"facing": "south",
"half": "top",
@@ -229426,7 +234105,7 @@
}
},
{
- "id": 20809,
+ "id": 21278,
"properties": {
"facing": "south",
"half": "top",
@@ -229435,7 +234114,7 @@
}
},
{
- "id": 20810,
+ "id": 21279,
"properties": {
"facing": "south",
"half": "top",
@@ -229444,7 +234123,7 @@
}
},
{
- "id": 20811,
+ "id": 21280,
"properties": {
"facing": "south",
"half": "top",
@@ -229453,7 +234132,7 @@
}
},
{
- "id": 20812,
+ "id": 21281,
"properties": {
"facing": "south",
"half": "bottom",
@@ -229462,7 +234141,7 @@
}
},
{
- "id": 20813,
+ "id": 21282,
"properties": {
"facing": "south",
"half": "bottom",
@@ -229471,7 +234150,7 @@
}
},
{
- "id": 20814,
+ "id": 21283,
"properties": {
"facing": "south",
"half": "bottom",
@@ -229480,7 +234159,7 @@
}
},
{
- "id": 20815,
+ "id": 21284,
"properties": {
"facing": "south",
"half": "bottom",
@@ -229489,7 +234168,7 @@
}
},
{
- "id": 20816,
+ "id": 21285,
"properties": {
"facing": "south",
"half": "bottom",
@@ -229498,7 +234177,7 @@
}
},
{
- "id": 20817,
+ "id": 21286,
"properties": {
"facing": "south",
"half": "bottom",
@@ -229507,7 +234186,7 @@
}
},
{
- "id": 20818,
+ "id": 21287,
"properties": {
"facing": "south",
"half": "bottom",
@@ -229516,7 +234195,7 @@
}
},
{
- "id": 20819,
+ "id": 21288,
"properties": {
"facing": "south",
"half": "bottom",
@@ -229525,7 +234204,7 @@
}
},
{
- "id": 20820,
+ "id": 21289,
"properties": {
"facing": "south",
"half": "bottom",
@@ -229534,7 +234213,7 @@
}
},
{
- "id": 20821,
+ "id": 21290,
"properties": {
"facing": "south",
"half": "bottom",
@@ -229543,7 +234222,7 @@
}
},
{
- "id": 20822,
+ "id": 21291,
"properties": {
"facing": "west",
"half": "top",
@@ -229552,7 +234231,7 @@
}
},
{
- "id": 20823,
+ "id": 21292,
"properties": {
"facing": "west",
"half": "top",
@@ -229561,7 +234240,7 @@
}
},
{
- "id": 20824,
+ "id": 21293,
"properties": {
"facing": "west",
"half": "top",
@@ -229570,7 +234249,7 @@
}
},
{
- "id": 20825,
+ "id": 21294,
"properties": {
"facing": "west",
"half": "top",
@@ -229579,7 +234258,7 @@
}
},
{
- "id": 20826,
+ "id": 21295,
"properties": {
"facing": "west",
"half": "top",
@@ -229588,7 +234267,7 @@
}
},
{
- "id": 20827,
+ "id": 21296,
"properties": {
"facing": "west",
"half": "top",
@@ -229597,7 +234276,7 @@
}
},
{
- "id": 20828,
+ "id": 21297,
"properties": {
"facing": "west",
"half": "top",
@@ -229606,7 +234285,7 @@
}
},
{
- "id": 20829,
+ "id": 21298,
"properties": {
"facing": "west",
"half": "top",
@@ -229615,7 +234294,7 @@
}
},
{
- "id": 20830,
+ "id": 21299,
"properties": {
"facing": "west",
"half": "top",
@@ -229624,7 +234303,7 @@
}
},
{
- "id": 20831,
+ "id": 21300,
"properties": {
"facing": "west",
"half": "top",
@@ -229633,7 +234312,7 @@
}
},
{
- "id": 20832,
+ "id": 21301,
"properties": {
"facing": "west",
"half": "bottom",
@@ -229642,7 +234321,7 @@
}
},
{
- "id": 20833,
+ "id": 21302,
"properties": {
"facing": "west",
"half": "bottom",
@@ -229651,7 +234330,7 @@
}
},
{
- "id": 20834,
+ "id": 21303,
"properties": {
"facing": "west",
"half": "bottom",
@@ -229660,7 +234339,7 @@
}
},
{
- "id": 20835,
+ "id": 21304,
"properties": {
"facing": "west",
"half": "bottom",
@@ -229669,7 +234348,7 @@
}
},
{
- "id": 20836,
+ "id": 21305,
"properties": {
"facing": "west",
"half": "bottom",
@@ -229678,7 +234357,7 @@
}
},
{
- "id": 20837,
+ "id": 21306,
"properties": {
"facing": "west",
"half": "bottom",
@@ -229687,7 +234366,7 @@
}
},
{
- "id": 20838,
+ "id": 21307,
"properties": {
"facing": "west",
"half": "bottom",
@@ -229696,7 +234375,7 @@
}
},
{
- "id": 20839,
+ "id": 21308,
"properties": {
"facing": "west",
"half": "bottom",
@@ -229705,7 +234384,7 @@
}
},
{
- "id": 20840,
+ "id": 21309,
"properties": {
"facing": "west",
"half": "bottom",
@@ -229714,7 +234393,7 @@
}
},
{
- "id": 20841,
+ "id": 21310,
"properties": {
"facing": "west",
"half": "bottom",
@@ -229723,7 +234402,7 @@
}
},
{
- "id": 20842,
+ "id": 21311,
"properties": {
"facing": "east",
"half": "top",
@@ -229732,7 +234411,7 @@
}
},
{
- "id": 20843,
+ "id": 21312,
"properties": {
"facing": "east",
"half": "top",
@@ -229741,7 +234420,7 @@
}
},
{
- "id": 20844,
+ "id": 21313,
"properties": {
"facing": "east",
"half": "top",
@@ -229750,7 +234429,7 @@
}
},
{
- "id": 20845,
+ "id": 21314,
"properties": {
"facing": "east",
"half": "top",
@@ -229759,7 +234438,7 @@
}
},
{
- "id": 20846,
+ "id": 21315,
"properties": {
"facing": "east",
"half": "top",
@@ -229768,7 +234447,7 @@
}
},
{
- "id": 20847,
+ "id": 21316,
"properties": {
"facing": "east",
"half": "top",
@@ -229777,7 +234456,7 @@
}
},
{
- "id": 20848,
+ "id": 21317,
"properties": {
"facing": "east",
"half": "top",
@@ -229786,7 +234465,7 @@
}
},
{
- "id": 20849,
+ "id": 21318,
"properties": {
"facing": "east",
"half": "top",
@@ -229795,7 +234474,7 @@
}
},
{
- "id": 20850,
+ "id": 21319,
"properties": {
"facing": "east",
"half": "top",
@@ -229804,7 +234483,7 @@
}
},
{
- "id": 20851,
+ "id": 21320,
"properties": {
"facing": "east",
"half": "top",
@@ -229813,7 +234492,7 @@
}
},
{
- "id": 20852,
+ "id": 21321,
"properties": {
"facing": "east",
"half": "bottom",
@@ -229822,7 +234501,7 @@
}
},
{
- "id": 20853,
+ "id": 21322,
"properties": {
"facing": "east",
"half": "bottom",
@@ -229831,7 +234510,7 @@
}
},
{
- "id": 20854,
+ "id": 21323,
"properties": {
"facing": "east",
"half": "bottom",
@@ -229840,7 +234519,7 @@
}
},
{
- "id": 20855,
+ "id": 21324,
"properties": {
"facing": "east",
"half": "bottom",
@@ -229849,7 +234528,7 @@
}
},
{
- "id": 20856,
+ "id": 21325,
"properties": {
"facing": "east",
"half": "bottom",
@@ -229858,7 +234537,7 @@
}
},
{
- "id": 20857,
+ "id": 21326,
"properties": {
"facing": "east",
"half": "bottom",
@@ -229867,7 +234546,7 @@
}
},
{
- "id": 20858,
+ "id": 21327,
"properties": {
"facing": "east",
"half": "bottom",
@@ -229876,7 +234555,7 @@
}
},
{
- "id": 20859,
+ "id": 21328,
"properties": {
"facing": "east",
"half": "bottom",
@@ -229885,7 +234564,7 @@
}
},
{
- "id": 20860,
+ "id": 21329,
"properties": {
"facing": "east",
"half": "bottom",
@@ -229894,7 +234573,7 @@
}
},
{
- "id": 20861,
+ "id": 21330,
"properties": {
"facing": "east",
"half": "bottom",
@@ -229938,157 +234617,157 @@
"states": [
{
"default": true,
- "id": 17983,
+ "id": 18452,
"properties": {
"age": "0"
}
},
{
- "id": 17984,
+ "id": 18453,
"properties": {
"age": "1"
}
},
{
- "id": 17985,
+ "id": 18454,
"properties": {
"age": "2"
}
},
{
- "id": 17986,
+ "id": 18455,
"properties": {
"age": "3"
}
},
{
- "id": 17987,
+ "id": 18456,
"properties": {
"age": "4"
}
},
{
- "id": 17988,
+ "id": 18457,
"properties": {
"age": "5"
}
},
{
- "id": 17989,
+ "id": 18458,
"properties": {
"age": "6"
}
},
{
- "id": 17990,
+ "id": 18459,
"properties": {
"age": "7"
}
},
{
- "id": 17991,
+ "id": 18460,
"properties": {
"age": "8"
}
},
{
- "id": 17992,
+ "id": 18461,
"properties": {
"age": "9"
}
},
{
- "id": 17993,
+ "id": 18462,
"properties": {
"age": "10"
}
},
{
- "id": 17994,
+ "id": 18463,
"properties": {
"age": "11"
}
},
{
- "id": 17995,
+ "id": 18464,
"properties": {
"age": "12"
}
},
{
- "id": 17996,
+ "id": 18465,
"properties": {
"age": "13"
}
},
{
- "id": 17997,
+ "id": 18466,
"properties": {
"age": "14"
}
},
{
- "id": 17998,
+ "id": 18467,
"properties": {
"age": "15"
}
},
{
- "id": 17999,
+ "id": 18468,
"properties": {
"age": "16"
}
},
{
- "id": 18000,
+ "id": 18469,
"properties": {
"age": "17"
}
},
{
- "id": 18001,
+ "id": 18470,
"properties": {
"age": "18"
}
},
{
- "id": 18002,
+ "id": 18471,
"properties": {
"age": "19"
}
},
{
- "id": 18003,
+ "id": 18472,
"properties": {
"age": "20"
}
},
{
- "id": 18004,
+ "id": 18473,
"properties": {
"age": "21"
}
},
{
- "id": 18005,
+ "id": 18474,
"properties": {
"age": "22"
}
},
{
- "id": 18006,
+ "id": 18475,
"properties": {
"age": "23"
}
},
{
- "id": 18007,
+ "id": 18476,
"properties": {
"age": "24"
}
},
{
- "id": 18008,
+ "id": 18477,
"properties": {
"age": "25"
}
@@ -230099,7 +234778,7 @@
"states": [
{
"default": true,
- "id": 18009
+ "id": 18478
}
]
},
@@ -230107,7 +234786,7 @@
"states": [
{
"default": true,
- "id": 467
+ "id": 514
}
]
},
@@ -230127,49 +234806,49 @@
"states": [
{
"default": true,
- "id": 4226,
+ "id": 4274,
"properties": {
"age": "0"
}
},
{
- "id": 4227,
+ "id": 4275,
"properties": {
"age": "1"
}
},
{
- "id": 4228,
+ "id": 4276,
"properties": {
"age": "2"
}
},
{
- "id": 4229,
+ "id": 4277,
"properties": {
"age": "3"
}
},
{
- "id": 4230,
+ "id": 4278,
"properties": {
"age": "4"
}
},
{
- "id": 4231,
+ "id": 4279,
"properties": {
"age": "5"
}
},
{
- "id": 4232,
+ "id": 4280,
"properties": {
"age": "6"
}
},
{
- "id": 4233,
+ "id": 4281,
"properties": {
"age": "7"
}
@@ -230200,97 +234879,97 @@
"states": [
{
"default": true,
- "id": 10282,
+ "id": 10614,
"properties": {
"rotation": "0"
}
},
{
- "id": 10283,
+ "id": 10615,
"properties": {
"rotation": "1"
}
},
{
- "id": 10284,
+ "id": 10616,
"properties": {
"rotation": "2"
}
},
{
- "id": 10285,
+ "id": 10617,
"properties": {
"rotation": "3"
}
},
{
- "id": 10286,
+ "id": 10618,
"properties": {
"rotation": "4"
}
},
{
- "id": 10287,
+ "id": 10619,
"properties": {
"rotation": "5"
}
},
{
- "id": 10288,
+ "id": 10620,
"properties": {
"rotation": "6"
}
},
{
- "id": 10289,
+ "id": 10621,
"properties": {
"rotation": "7"
}
},
{
- "id": 10290,
+ "id": 10622,
"properties": {
"rotation": "8"
}
},
{
- "id": 10291,
+ "id": 10623,
"properties": {
"rotation": "9"
}
},
{
- "id": 10292,
+ "id": 10624,
"properties": {
"rotation": "10"
}
},
{
- "id": 10293,
+ "id": 10625,
"properties": {
"rotation": "11"
}
},
{
- "id": 10294,
+ "id": 10626,
"properties": {
"rotation": "12"
}
},
{
- "id": 10295,
+ "id": 10627,
"properties": {
"rotation": "13"
}
},
{
- "id": 10296,
+ "id": 10628,
"properties": {
"rotation": "14"
}
},
{
- "id": 10297,
+ "id": 10629,
"properties": {
"rotation": "15"
}
@@ -230316,7 +234995,7 @@
},
"states": [
{
- "id": 1637,
+ "id": 1684,
"properties": {
"facing": "north",
"occupied": "true",
@@ -230324,7 +235003,7 @@
}
},
{
- "id": 1638,
+ "id": 1685,
"properties": {
"facing": "north",
"occupied": "true",
@@ -230332,7 +235011,7 @@
}
},
{
- "id": 1639,
+ "id": 1686,
"properties": {
"facing": "north",
"occupied": "false",
@@ -230341,7 +235020,7 @@
},
{
"default": true,
- "id": 1640,
+ "id": 1687,
"properties": {
"facing": "north",
"occupied": "false",
@@ -230349,7 +235028,7 @@
}
},
{
- "id": 1641,
+ "id": 1688,
"properties": {
"facing": "south",
"occupied": "true",
@@ -230357,7 +235036,7 @@
}
},
{
- "id": 1642,
+ "id": 1689,
"properties": {
"facing": "south",
"occupied": "true",
@@ -230365,7 +235044,7 @@
}
},
{
- "id": 1643,
+ "id": 1690,
"properties": {
"facing": "south",
"occupied": "false",
@@ -230373,7 +235052,7 @@
}
},
{
- "id": 1644,
+ "id": 1691,
"properties": {
"facing": "south",
"occupied": "false",
@@ -230381,7 +235060,7 @@
}
},
{
- "id": 1645,
+ "id": 1692,
"properties": {
"facing": "west",
"occupied": "true",
@@ -230389,7 +235068,7 @@
}
},
{
- "id": 1646,
+ "id": 1693,
"properties": {
"facing": "west",
"occupied": "true",
@@ -230397,7 +235076,7 @@
}
},
{
- "id": 1647,
+ "id": 1694,
"properties": {
"facing": "west",
"occupied": "false",
@@ -230405,7 +235084,7 @@
}
},
{
- "id": 1648,
+ "id": 1695,
"properties": {
"facing": "west",
"occupied": "false",
@@ -230413,7 +235092,7 @@
}
},
{
- "id": 1649,
+ "id": 1696,
"properties": {
"facing": "east",
"occupied": "true",
@@ -230421,7 +235100,7 @@
}
},
{
- "id": 1650,
+ "id": 1697,
"properties": {
"facing": "east",
"occupied": "true",
@@ -230429,7 +235108,7 @@
}
},
{
- "id": 1651,
+ "id": 1698,
"properties": {
"facing": "east",
"occupied": "false",
@@ -230437,7 +235116,7 @@
}
},
{
- "id": 1652,
+ "id": 1699,
"properties": {
"facing": "east",
"occupied": "false",
@@ -230465,7 +235144,7 @@
},
"states": [
{
- "id": 20113,
+ "id": 20582,
"properties": {
"candles": "1",
"lit": "true",
@@ -230473,7 +235152,7 @@
}
},
{
- "id": 20114,
+ "id": 20583,
"properties": {
"candles": "1",
"lit": "true",
@@ -230481,7 +235160,7 @@
}
},
{
- "id": 20115,
+ "id": 20584,
"properties": {
"candles": "1",
"lit": "false",
@@ -230490,7 +235169,7 @@
},
{
"default": true,
- "id": 20116,
+ "id": 20585,
"properties": {
"candles": "1",
"lit": "false",
@@ -230498,7 +235177,7 @@
}
},
{
- "id": 20117,
+ "id": 20586,
"properties": {
"candles": "2",
"lit": "true",
@@ -230506,7 +235185,7 @@
}
},
{
- "id": 20118,
+ "id": 20587,
"properties": {
"candles": "2",
"lit": "true",
@@ -230514,7 +235193,7 @@
}
},
{
- "id": 20119,
+ "id": 20588,
"properties": {
"candles": "2",
"lit": "false",
@@ -230522,7 +235201,7 @@
}
},
{
- "id": 20120,
+ "id": 20589,
"properties": {
"candles": "2",
"lit": "false",
@@ -230530,7 +235209,7 @@
}
},
{
- "id": 20121,
+ "id": 20590,
"properties": {
"candles": "3",
"lit": "true",
@@ -230538,7 +235217,7 @@
}
},
{
- "id": 20122,
+ "id": 20591,
"properties": {
"candles": "3",
"lit": "true",
@@ -230546,7 +235225,7 @@
}
},
{
- "id": 20123,
+ "id": 20592,
"properties": {
"candles": "3",
"lit": "false",
@@ -230554,7 +235233,7 @@
}
},
{
- "id": 20124,
+ "id": 20593,
"properties": {
"candles": "3",
"lit": "false",
@@ -230562,7 +235241,7 @@
}
},
{
- "id": 20125,
+ "id": 20594,
"properties": {
"candles": "4",
"lit": "true",
@@ -230570,7 +235249,7 @@
}
},
{
- "id": 20126,
+ "id": 20595,
"properties": {
"candles": "4",
"lit": "true",
@@ -230578,7 +235257,7 @@
}
},
{
- "id": 20127,
+ "id": 20596,
"properties": {
"candles": "4",
"lit": "false",
@@ -230586,7 +235265,7 @@
}
},
{
- "id": 20128,
+ "id": 20597,
"properties": {
"candles": "4",
"lit": "false",
@@ -230604,14 +235283,14 @@
},
"states": [
{
- "id": 20371,
+ "id": 20840,
"properties": {
"lit": "true"
}
},
{
"default": true,
- "id": 20372,
+ "id": 20841,
"properties": {
"lit": "false"
}
@@ -230622,7 +235301,7 @@
"states": [
{
"default": true,
- "id": 10251
+ "id": 10583
}
]
},
@@ -230630,7 +235309,7 @@
"states": [
{
"default": true,
- "id": 12103
+ "id": 12572
}
]
},
@@ -230638,7 +235317,7 @@
"states": [
{
"default": true,
- "id": 12119
+ "id": 12588
}
]
},
@@ -230654,25 +235333,25 @@
"states": [
{
"default": true,
- "id": 12039,
+ "id": 12508,
"properties": {
"facing": "north"
}
},
{
- "id": 12040,
+ "id": 12509,
"properties": {
"facing": "south"
}
},
{
- "id": 12041,
+ "id": 12510,
"properties": {
"facing": "west"
}
},
{
- "id": 12042,
+ "id": 12511,
"properties": {
"facing": "east"
}
@@ -230692,38 +235371,38 @@
},
"states": [
{
- "id": 11943,
+ "id": 12412,
"properties": {
"facing": "north"
}
},
{
- "id": 11944,
+ "id": 12413,
"properties": {
"facing": "east"
}
},
{
- "id": 11945,
+ "id": 12414,
"properties": {
"facing": "south"
}
},
{
- "id": 11946,
+ "id": 12415,
"properties": {
"facing": "west"
}
},
{
"default": true,
- "id": 11947,
+ "id": 12416,
"properties": {
"facing": "up"
}
},
{
- "id": 11948,
+ "id": 12417,
"properties": {
"facing": "down"
}
@@ -230734,7 +235413,7 @@
"states": [
{
"default": true,
- "id": 5780
+ "id": 5942
}
]
},
@@ -230763,7 +235442,7 @@
},
"states": [
{
- "id": 8976,
+ "id": 9228,
"properties": {
"east": "true",
"north": "true",
@@ -230773,7 +235452,7 @@
}
},
{
- "id": 8977,
+ "id": 9229,
"properties": {
"east": "true",
"north": "true",
@@ -230783,7 +235462,7 @@
}
},
{
- "id": 8978,
+ "id": 9230,
"properties": {
"east": "true",
"north": "true",
@@ -230793,7 +235472,7 @@
}
},
{
- "id": 8979,
+ "id": 9231,
"properties": {
"east": "true",
"north": "true",
@@ -230803,7 +235482,7 @@
}
},
{
- "id": 8980,
+ "id": 9232,
"properties": {
"east": "true",
"north": "true",
@@ -230813,7 +235492,7 @@
}
},
{
- "id": 8981,
+ "id": 9233,
"properties": {
"east": "true",
"north": "true",
@@ -230823,7 +235502,7 @@
}
},
{
- "id": 8982,
+ "id": 9234,
"properties": {
"east": "true",
"north": "true",
@@ -230833,7 +235512,7 @@
}
},
{
- "id": 8983,
+ "id": 9235,
"properties": {
"east": "true",
"north": "true",
@@ -230843,7 +235522,7 @@
}
},
{
- "id": 8984,
+ "id": 9236,
"properties": {
"east": "true",
"north": "false",
@@ -230853,7 +235532,7 @@
}
},
{
- "id": 8985,
+ "id": 9237,
"properties": {
"east": "true",
"north": "false",
@@ -230863,7 +235542,7 @@
}
},
{
- "id": 8986,
+ "id": 9238,
"properties": {
"east": "true",
"north": "false",
@@ -230873,7 +235552,7 @@
}
},
{
- "id": 8987,
+ "id": 9239,
"properties": {
"east": "true",
"north": "false",
@@ -230883,7 +235562,7 @@
}
},
{
- "id": 8988,
+ "id": 9240,
"properties": {
"east": "true",
"north": "false",
@@ -230893,7 +235572,7 @@
}
},
{
- "id": 8989,
+ "id": 9241,
"properties": {
"east": "true",
"north": "false",
@@ -230903,7 +235582,7 @@
}
},
{
- "id": 8990,
+ "id": 9242,
"properties": {
"east": "true",
"north": "false",
@@ -230913,7 +235592,7 @@
}
},
{
- "id": 8991,
+ "id": 9243,
"properties": {
"east": "true",
"north": "false",
@@ -230923,7 +235602,7 @@
}
},
{
- "id": 8992,
+ "id": 9244,
"properties": {
"east": "false",
"north": "true",
@@ -230933,7 +235612,7 @@
}
},
{
- "id": 8993,
+ "id": 9245,
"properties": {
"east": "false",
"north": "true",
@@ -230943,7 +235622,7 @@
}
},
{
- "id": 8994,
+ "id": 9246,
"properties": {
"east": "false",
"north": "true",
@@ -230953,7 +235632,7 @@
}
},
{
- "id": 8995,
+ "id": 9247,
"properties": {
"east": "false",
"north": "true",
@@ -230963,7 +235642,7 @@
}
},
{
- "id": 8996,
+ "id": 9248,
"properties": {
"east": "false",
"north": "true",
@@ -230973,7 +235652,7 @@
}
},
{
- "id": 8997,
+ "id": 9249,
"properties": {
"east": "false",
"north": "true",
@@ -230983,7 +235662,7 @@
}
},
{
- "id": 8998,
+ "id": 9250,
"properties": {
"east": "false",
"north": "true",
@@ -230993,7 +235672,7 @@
}
},
{
- "id": 8999,
+ "id": 9251,
"properties": {
"east": "false",
"north": "true",
@@ -231003,7 +235682,7 @@
}
},
{
- "id": 9000,
+ "id": 9252,
"properties": {
"east": "false",
"north": "false",
@@ -231013,7 +235692,7 @@
}
},
{
- "id": 9001,
+ "id": 9253,
"properties": {
"east": "false",
"north": "false",
@@ -231023,7 +235702,7 @@
}
},
{
- "id": 9002,
+ "id": 9254,
"properties": {
"east": "false",
"north": "false",
@@ -231033,7 +235712,7 @@
}
},
{
- "id": 9003,
+ "id": 9255,
"properties": {
"east": "false",
"north": "false",
@@ -231043,7 +235722,7 @@
}
},
{
- "id": 9004,
+ "id": 9256,
"properties": {
"east": "false",
"north": "false",
@@ -231053,7 +235732,7 @@
}
},
{
- "id": 9005,
+ "id": 9257,
"properties": {
"east": "false",
"north": "false",
@@ -231063,7 +235742,7 @@
}
},
{
- "id": 9006,
+ "id": 9258,
"properties": {
"east": "false",
"north": "false",
@@ -231074,7 +235753,7 @@
},
{
"default": true,
- "id": 9007,
+ "id": 9259,
"properties": {
"east": "false",
"north": "false",
@@ -231089,7 +235768,7 @@
"states": [
{
"default": true,
- "id": 8960
+ "id": 9212
}
]
},
@@ -231097,7 +235776,7 @@
"states": [
{
"default": true,
- "id": 2031
+ "id": 2079
}
]
},
@@ -231113,25 +235792,25 @@
"states": [
{
"default": true,
- "id": 10538,
+ "id": 10870,
"properties": {
"facing": "north"
}
},
{
- "id": 10539,
+ "id": 10871,
"properties": {
"facing": "south"
}
},
{
- "id": 10540,
+ "id": 10872,
"properties": {
"facing": "west"
}
},
{
- "id": 10541,
+ "id": 10873,
"properties": {
"facing": "east"
}
@@ -231142,7 +235821,7 @@
"states": [
{
"default": true,
- "id": 1996
+ "id": 2043
}
]
},
@@ -231150,7 +235829,7 @@
"states": [
{
"default": true,
- "id": 2035
+ "id": 2083
}
]
},
@@ -231178,97 +235857,97 @@
"states": [
{
"default": true,
- "id": 8591,
+ "id": 8843,
"properties": {
"rotation": "0"
}
},
{
- "id": 8592,
+ "id": 8844,
"properties": {
"rotation": "1"
}
},
{
- "id": 8593,
+ "id": 8845,
"properties": {
"rotation": "2"
}
},
{
- "id": 8594,
+ "id": 8846,
"properties": {
"rotation": "3"
}
},
{
- "id": 8595,
+ "id": 8847,
"properties": {
"rotation": "4"
}
},
{
- "id": 8596,
+ "id": 8848,
"properties": {
"rotation": "5"
}
},
{
- "id": 8597,
+ "id": 8849,
"properties": {
"rotation": "6"
}
},
{
- "id": 8598,
+ "id": 8850,
"properties": {
"rotation": "7"
}
},
{
- "id": 8599,
+ "id": 8851,
"properties": {
"rotation": "8"
}
},
{
- "id": 8600,
+ "id": 8852,
"properties": {
"rotation": "9"
}
},
{
- "id": 8601,
+ "id": 8853,
"properties": {
"rotation": "10"
}
},
{
- "id": 8602,
+ "id": 8854,
"properties": {
"rotation": "11"
}
},
{
- "id": 8603,
+ "id": 8855,
"properties": {
"rotation": "12"
}
},
{
- "id": 8604,
+ "id": 8856,
"properties": {
"rotation": "13"
}
},
{
- "id": 8605,
+ "id": 8857,
"properties": {
"rotation": "14"
}
},
{
- "id": 8606,
+ "id": 8858,
"properties": {
"rotation": "15"
}
@@ -231287,25 +235966,25 @@
"states": [
{
"default": true,
- "id": 8607,
+ "id": 8859,
"properties": {
"facing": "north"
}
},
{
- "id": 8608,
+ "id": 8860,
"properties": {
"facing": "south"
}
},
{
- "id": 8609,
+ "id": 8861,
"properties": {
"facing": "west"
}
},
{
- "id": 8610,
+ "id": 8862,
"properties": {
"facing": "east"
}
@@ -231336,97 +236015,97 @@
"states": [
{
"default": true,
- "id": 10346,
+ "id": 10678,
"properties": {
"rotation": "0"
}
},
{
- "id": 10347,
+ "id": 10679,
"properties": {
"rotation": "1"
}
},
{
- "id": 10348,
+ "id": 10680,
"properties": {
"rotation": "2"
}
},
{
- "id": 10349,
+ "id": 10681,
"properties": {
"rotation": "3"
}
},
{
- "id": 10350,
+ "id": 10682,
"properties": {
"rotation": "4"
}
},
{
- "id": 10351,
+ "id": 10683,
"properties": {
"rotation": "5"
}
},
{
- "id": 10352,
+ "id": 10684,
"properties": {
"rotation": "6"
}
},
{
- "id": 10353,
+ "id": 10685,
"properties": {
"rotation": "7"
}
},
{
- "id": 10354,
+ "id": 10686,
"properties": {
"rotation": "8"
}
},
{
- "id": 10355,
+ "id": 10687,
"properties": {
"rotation": "9"
}
},
{
- "id": 10356,
+ "id": 10688,
"properties": {
"rotation": "10"
}
},
{
- "id": 10357,
+ "id": 10689,
"properties": {
"rotation": "11"
}
},
{
- "id": 10358,
+ "id": 10690,
"properties": {
"rotation": "12"
}
},
{
- "id": 10359,
+ "id": 10691,
"properties": {
"rotation": "13"
}
},
{
- "id": 10360,
+ "id": 10692,
"properties": {
"rotation": "14"
}
},
{
- "id": 10361,
+ "id": 10693,
"properties": {
"rotation": "15"
}
@@ -231452,7 +236131,7 @@
},
"states": [
{
- "id": 1701,
+ "id": 1748,
"properties": {
"facing": "north",
"occupied": "true",
@@ -231460,7 +236139,7 @@
}
},
{
- "id": 1702,
+ "id": 1749,
"properties": {
"facing": "north",
"occupied": "true",
@@ -231468,7 +236147,7 @@
}
},
{
- "id": 1703,
+ "id": 1750,
"properties": {
"facing": "north",
"occupied": "false",
@@ -231477,7 +236156,7 @@
},
{
"default": true,
- "id": 1704,
+ "id": 1751,
"properties": {
"facing": "north",
"occupied": "false",
@@ -231485,7 +236164,7 @@
}
},
{
- "id": 1705,
+ "id": 1752,
"properties": {
"facing": "south",
"occupied": "true",
@@ -231493,7 +236172,7 @@
}
},
{
- "id": 1706,
+ "id": 1753,
"properties": {
"facing": "south",
"occupied": "true",
@@ -231501,7 +236180,7 @@
}
},
{
- "id": 1707,
+ "id": 1754,
"properties": {
"facing": "south",
"occupied": "false",
@@ -231509,7 +236188,7 @@
}
},
{
- "id": 1708,
+ "id": 1755,
"properties": {
"facing": "south",
"occupied": "false",
@@ -231517,7 +236196,7 @@
}
},
{
- "id": 1709,
+ "id": 1756,
"properties": {
"facing": "west",
"occupied": "true",
@@ -231525,7 +236204,7 @@
}
},
{
- "id": 1710,
+ "id": 1757,
"properties": {
"facing": "west",
"occupied": "true",
@@ -231533,7 +236212,7 @@
}
},
{
- "id": 1711,
+ "id": 1758,
"properties": {
"facing": "west",
"occupied": "false",
@@ -231541,7 +236220,7 @@
}
},
{
- "id": 1712,
+ "id": 1759,
"properties": {
"facing": "west",
"occupied": "false",
@@ -231549,7 +236228,7 @@
}
},
{
- "id": 1713,
+ "id": 1760,
"properties": {
"facing": "east",
"occupied": "true",
@@ -231557,7 +236236,7 @@
}
},
{
- "id": 1714,
+ "id": 1761,
"properties": {
"facing": "east",
"occupied": "true",
@@ -231565,7 +236244,7 @@
}
},
{
- "id": 1715,
+ "id": 1762,
"properties": {
"facing": "east",
"occupied": "false",
@@ -231573,7 +236252,7 @@
}
},
{
- "id": 1716,
+ "id": 1763,
"properties": {
"facing": "east",
"occupied": "false",
@@ -231601,7 +236280,7 @@
},
"states": [
{
- "id": 20177,
+ "id": 20646,
"properties": {
"candles": "1",
"lit": "true",
@@ -231609,7 +236288,7 @@
}
},
{
- "id": 20178,
+ "id": 20647,
"properties": {
"candles": "1",
"lit": "true",
@@ -231617,7 +236296,7 @@
}
},
{
- "id": 20179,
+ "id": 20648,
"properties": {
"candles": "1",
"lit": "false",
@@ -231626,7 +236305,7 @@
},
{
"default": true,
- "id": 20180,
+ "id": 20649,
"properties": {
"candles": "1",
"lit": "false",
@@ -231634,7 +236313,7 @@
}
},
{
- "id": 20181,
+ "id": 20650,
"properties": {
"candles": "2",
"lit": "true",
@@ -231642,7 +236321,7 @@
}
},
{
- "id": 20182,
+ "id": 20651,
"properties": {
"candles": "2",
"lit": "true",
@@ -231650,7 +236329,7 @@
}
},
{
- "id": 20183,
+ "id": 20652,
"properties": {
"candles": "2",
"lit": "false",
@@ -231658,7 +236337,7 @@
}
},
{
- "id": 20184,
+ "id": 20653,
"properties": {
"candles": "2",
"lit": "false",
@@ -231666,7 +236345,7 @@
}
},
{
- "id": 20185,
+ "id": 20654,
"properties": {
"candles": "3",
"lit": "true",
@@ -231674,7 +236353,7 @@
}
},
{
- "id": 20186,
+ "id": 20655,
"properties": {
"candles": "3",
"lit": "true",
@@ -231682,7 +236361,7 @@
}
},
{
- "id": 20187,
+ "id": 20656,
"properties": {
"candles": "3",
"lit": "false",
@@ -231690,7 +236369,7 @@
}
},
{
- "id": 20188,
+ "id": 20657,
"properties": {
"candles": "3",
"lit": "false",
@@ -231698,7 +236377,7 @@
}
},
{
- "id": 20189,
+ "id": 20658,
"properties": {
"candles": "4",
"lit": "true",
@@ -231706,7 +236385,7 @@
}
},
{
- "id": 20190,
+ "id": 20659,
"properties": {
"candles": "4",
"lit": "true",
@@ -231714,7 +236393,7 @@
}
},
{
- "id": 20191,
+ "id": 20660,
"properties": {
"candles": "4",
"lit": "false",
@@ -231722,7 +236401,7 @@
}
},
{
- "id": 20192,
+ "id": 20661,
"properties": {
"candles": "4",
"lit": "false",
@@ -231740,14 +236419,14 @@
},
"states": [
{
- "id": 20379,
+ "id": 20848,
"properties": {
"lit": "true"
}
},
{
"default": true,
- "id": 20380,
+ "id": 20849,
"properties": {
"lit": "false"
}
@@ -231758,7 +236437,7 @@
"states": [
{
"default": true,
- "id": 10255
+ "id": 10587
}
]
},
@@ -231766,7 +236445,7 @@
"states": [
{
"default": true,
- "id": 12107
+ "id": 12576
}
]
},
@@ -231774,7 +236453,7 @@
"states": [
{
"default": true,
- "id": 12123
+ "id": 12592
}
]
},
@@ -231790,25 +236469,25 @@
"states": [
{
"default": true,
- "id": 12055,
+ "id": 12524,
"properties": {
"facing": "north"
}
},
{
- "id": 12056,
+ "id": 12525,
"properties": {
"facing": "south"
}
},
{
- "id": 12057,
+ "id": 12526,
"properties": {
"facing": "west"
}
},
{
- "id": 12058,
+ "id": 12527,
"properties": {
"facing": "east"
}
@@ -231828,38 +236507,38 @@
},
"states": [
{
- "id": 11967,
+ "id": 12436,
"properties": {
"facing": "north"
}
},
{
- "id": 11968,
+ "id": 12437,
"properties": {
"facing": "east"
}
},
{
- "id": 11969,
+ "id": 12438,
"properties": {
"facing": "south"
}
},
{
- "id": 11970,
+ "id": 12439,
"properties": {
"facing": "west"
}
},
{
"default": true,
- "id": 11971,
+ "id": 12440,
"properties": {
"facing": "up"
}
},
{
- "id": 11972,
+ "id": 12441,
"properties": {
"facing": "down"
}
@@ -231870,7 +236549,7 @@
"states": [
{
"default": true,
- "id": 5784
+ "id": 5946
}
]
},
@@ -231899,7 +236578,7 @@
},
"states": [
{
- "id": 9104,
+ "id": 9356,
"properties": {
"east": "true",
"north": "true",
@@ -231909,7 +236588,7 @@
}
},
{
- "id": 9105,
+ "id": 9357,
"properties": {
"east": "true",
"north": "true",
@@ -231919,7 +236598,7 @@
}
},
{
- "id": 9106,
+ "id": 9358,
"properties": {
"east": "true",
"north": "true",
@@ -231929,7 +236608,7 @@
}
},
{
- "id": 9107,
+ "id": 9359,
"properties": {
"east": "true",
"north": "true",
@@ -231939,7 +236618,7 @@
}
},
{
- "id": 9108,
+ "id": 9360,
"properties": {
"east": "true",
"north": "true",
@@ -231949,7 +236628,7 @@
}
},
{
- "id": 9109,
+ "id": 9361,
"properties": {
"east": "true",
"north": "true",
@@ -231959,7 +236638,7 @@
}
},
{
- "id": 9110,
+ "id": 9362,
"properties": {
"east": "true",
"north": "true",
@@ -231969,7 +236648,7 @@
}
},
{
- "id": 9111,
+ "id": 9363,
"properties": {
"east": "true",
"north": "true",
@@ -231979,7 +236658,7 @@
}
},
{
- "id": 9112,
+ "id": 9364,
"properties": {
"east": "true",
"north": "false",
@@ -231989,7 +236668,7 @@
}
},
{
- "id": 9113,
+ "id": 9365,
"properties": {
"east": "true",
"north": "false",
@@ -231999,7 +236678,7 @@
}
},
{
- "id": 9114,
+ "id": 9366,
"properties": {
"east": "true",
"north": "false",
@@ -232009,7 +236688,7 @@
}
},
{
- "id": 9115,
+ "id": 9367,
"properties": {
"east": "true",
"north": "false",
@@ -232019,7 +236698,7 @@
}
},
{
- "id": 9116,
+ "id": 9368,
"properties": {
"east": "true",
"north": "false",
@@ -232029,7 +236708,7 @@
}
},
{
- "id": 9117,
+ "id": 9369,
"properties": {
"east": "true",
"north": "false",
@@ -232039,7 +236718,7 @@
}
},
{
- "id": 9118,
+ "id": 9370,
"properties": {
"east": "true",
"north": "false",
@@ -232049,7 +236728,7 @@
}
},
{
- "id": 9119,
+ "id": 9371,
"properties": {
"east": "true",
"north": "false",
@@ -232059,7 +236738,7 @@
}
},
{
- "id": 9120,
+ "id": 9372,
"properties": {
"east": "false",
"north": "true",
@@ -232069,7 +236748,7 @@
}
},
{
- "id": 9121,
+ "id": 9373,
"properties": {
"east": "false",
"north": "true",
@@ -232079,7 +236758,7 @@
}
},
{
- "id": 9122,
+ "id": 9374,
"properties": {
"east": "false",
"north": "true",
@@ -232089,7 +236768,7 @@
}
},
{
- "id": 9123,
+ "id": 9375,
"properties": {
"east": "false",
"north": "true",
@@ -232099,7 +236778,7 @@
}
},
{
- "id": 9124,
+ "id": 9376,
"properties": {
"east": "false",
"north": "true",
@@ -232109,7 +236788,7 @@
}
},
{
- "id": 9125,
+ "id": 9377,
"properties": {
"east": "false",
"north": "true",
@@ -232119,7 +236798,7 @@
}
},
{
- "id": 9126,
+ "id": 9378,
"properties": {
"east": "false",
"north": "true",
@@ -232129,7 +236808,7 @@
}
},
{
- "id": 9127,
+ "id": 9379,
"properties": {
"east": "false",
"north": "true",
@@ -232139,7 +236818,7 @@
}
},
{
- "id": 9128,
+ "id": 9380,
"properties": {
"east": "false",
"north": "false",
@@ -232149,7 +236828,7 @@
}
},
{
- "id": 9129,
+ "id": 9381,
"properties": {
"east": "false",
"north": "false",
@@ -232159,7 +236838,7 @@
}
},
{
- "id": 9130,
+ "id": 9382,
"properties": {
"east": "false",
"north": "false",
@@ -232169,7 +236848,7 @@
}
},
{
- "id": 9131,
+ "id": 9383,
"properties": {
"east": "false",
"north": "false",
@@ -232179,7 +236858,7 @@
}
},
{
- "id": 9132,
+ "id": 9384,
"properties": {
"east": "false",
"north": "false",
@@ -232189,7 +236868,7 @@
}
},
{
- "id": 9133,
+ "id": 9385,
"properties": {
"east": "false",
"north": "false",
@@ -232199,7 +236878,7 @@
}
},
{
- "id": 9134,
+ "id": 9386,
"properties": {
"east": "false",
"north": "false",
@@ -232210,7 +236889,7 @@
},
{
"default": true,
- "id": 9135,
+ "id": 9387,
"properties": {
"east": "false",
"north": "false",
@@ -232225,7 +236904,7 @@
"states": [
{
"default": true,
- "id": 8964
+ "id": 9216
}
]
},
@@ -232241,25 +236920,25 @@
"states": [
{
"default": true,
- "id": 10554,
+ "id": 10886,
"properties": {
"facing": "north"
}
},
{
- "id": 10555,
+ "id": 10887,
"properties": {
"facing": "south"
}
},
{
- "id": 10556,
+ "id": 10888,
"properties": {
"facing": "west"
}
},
{
- "id": 10557,
+ "id": 10889,
"properties": {
"facing": "east"
}
@@ -232270,7 +236949,7 @@
"states": [
{
"default": true,
- "id": 2000
+ "id": 2047
}
]
},
@@ -232298,97 +236977,97 @@
"states": [
{
"default": true,
- "id": 8611,
+ "id": 8863,
"properties": {
"rotation": "0"
}
},
{
- "id": 8612,
+ "id": 8864,
"properties": {
"rotation": "1"
}
},
{
- "id": 8613,
+ "id": 8865,
"properties": {
"rotation": "2"
}
},
{
- "id": 8614,
+ "id": 8866,
"properties": {
"rotation": "3"
}
},
{
- "id": 8615,
+ "id": 8867,
"properties": {
"rotation": "4"
}
},
{
- "id": 8616,
+ "id": 8868,
"properties": {
"rotation": "5"
}
},
{
- "id": 8617,
+ "id": 8869,
"properties": {
"rotation": "6"
}
},
{
- "id": 8618,
+ "id": 8870,
"properties": {
"rotation": "7"
}
},
{
- "id": 8619,
+ "id": 8871,
"properties": {
"rotation": "8"
}
},
{
- "id": 8620,
+ "id": 8872,
"properties": {
"rotation": "9"
}
},
{
- "id": 8621,
+ "id": 8873,
"properties": {
"rotation": "10"
}
},
{
- "id": 8622,
+ "id": 8874,
"properties": {
"rotation": "11"
}
},
{
- "id": 8623,
+ "id": 8875,
"properties": {
"rotation": "12"
}
},
{
- "id": 8624,
+ "id": 8876,
"properties": {
"rotation": "13"
}
},
{
- "id": 8625,
+ "id": 8877,
"properties": {
"rotation": "14"
}
},
{
- "id": 8626,
+ "id": 8878,
"properties": {
"rotation": "15"
}
@@ -232407,25 +237086,25 @@
"states": [
{
"default": true,
- "id": 8627,
+ "id": 8879,
"properties": {
"facing": "north"
}
},
{
- "id": 8628,
+ "id": 8880,
"properties": {
"facing": "south"
}
},
{
- "id": 8629,
+ "id": 8881,
"properties": {
"facing": "west"
}
},
{
- "id": 8630,
+ "id": 8882,
"properties": {
"facing": "east"
}
diff --git a/src/main/resources/dimension_registry.json b/src/main/resources/dimension_registry.json
index 0204852..39d7bc9 100644
--- a/src/main/resources/dimension_registry.json
+++ b/src/main/resources/dimension_registry.json
@@ -69,7 +69,7 @@
{
"name": {
"type": "StringTag",
- "value": "minecraft:say_command"
+ "value": "minecraft:emote_command"
},
"id": {
"type": "IntTag",
@@ -83,7 +83,7 @@
"value": {
"translation_key": {
"type": "StringTag",
- "value": "chat.type.announcement"
+ "value": "chat.type.emote"
},
"parameters": {
"type": "ListTag",
@@ -102,7 +102,7 @@
"value": {
"translation_key": {
"type": "StringTag",
- "value": "chat.type.text.narrate"
+ "value": "chat.type.emote"
},
"parameters": {
"type": "ListTag",
@@ -254,12 +254,65 @@
{
"name": {
"type": "StringTag",
- "value": "minecraft:team_msg_command_incoming"
+ "value": "minecraft:say_command"
},
"id": {
"type": "IntTag",
"value": 4
},
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "chat": {
+ "type": "CompoundTag",
+ "value": {
+ "translation_key": {
+ "type": "StringTag",
+ "value": "chat.type.announcement"
+ },
+ "parameters": {
+ "type": "ListTag",
+ "value": {
+ "type": "StringTag",
+ "list": [
+ "sender",
+ "content"
+ ]
+ }
+ }
+ }
+ },
+ "narration": {
+ "type": "CompoundTag",
+ "value": {
+ "translation_key": {
+ "type": "StringTag",
+ "value": "chat.type.text.narrate"
+ },
+ "parameters": {
+ "type": "ListTag",
+ "value": {
+ "type": "StringTag",
+ "list": [
+ "sender",
+ "content"
+ ]
+ }
+ }
+ }
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:team_msg_command_incoming"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 5
+ },
"element": {
"type": "CompoundTag",
"value": {
@@ -312,7 +365,7 @@
},
"id": {
"type": "IntTag",
- "value": 5
+ "value": 6
},
"element": {
"type": "CompoundTag",
@@ -359,59 +412,6 @@
}
}
},
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:emote_command"
- },
- "id": {
- "type": "IntTag",
- "value": 6
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "chat": {
- "type": "CompoundTag",
- "value": {
- "translation_key": {
- "type": "StringTag",
- "value": "chat.type.emote"
- },
- "parameters": {
- "type": "ListTag",
- "value": {
- "type": "StringTag",
- "list": [
- "sender",
- "content"
- ]
- }
- }
- }
- },
- "narration": {
- "type": "CompoundTag",
- "value": {
- "translation_key": {
- "type": "StringTag",
- "value": "chat.type.emote"
- },
- "parameters": {
- "type": "ListTag",
- "value": {
- "type": "StringTag",
- "list": [
- "sender",
- "content"
- ]
- }
- }
- }
- }
- }
- }
- },
{
"name": {
"type": "StringTag",
@@ -468,6 +468,375 @@
}
}
},
+ "minecraft:trim_pattern": {
+ "type": "CompoundTag",
+ "value": {
+ "type": {
+ "type": "StringTag",
+ "value": "minecraft:trim_pattern"
+ },
+ "value": {
+ "type": "ListTag",
+ "value": {
+ "type": "CompoundTag",
+ "list": [
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:coast"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 0
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "template_item": {
+ "type": "StringTag",
+ "value": "minecraft:coast_armor_trim_smithing_template"
+ },
+ "description": {
+ "type": "CompoundTag",
+ "value": {
+ "translate": {
+ "type": "StringTag",
+ "value": "trim_pattern.minecraft.coast"
+ }
+ }
+ },
+ "asset_id": {
+ "type": "StringTag",
+ "value": "minecraft:coast"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:dune"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 1
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "template_item": {
+ "type": "StringTag",
+ "value": "minecraft:dune_armor_trim_smithing_template"
+ },
+ "description": {
+ "type": "CompoundTag",
+ "value": {
+ "translate": {
+ "type": "StringTag",
+ "value": "trim_pattern.minecraft.dune"
+ }
+ }
+ },
+ "asset_id": {
+ "type": "StringTag",
+ "value": "minecraft:dune"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:eye"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 2
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "template_item": {
+ "type": "StringTag",
+ "value": "minecraft:eye_armor_trim_smithing_template"
+ },
+ "description": {
+ "type": "CompoundTag",
+ "value": {
+ "translate": {
+ "type": "StringTag",
+ "value": "trim_pattern.minecraft.eye"
+ }
+ }
+ },
+ "asset_id": {
+ "type": "StringTag",
+ "value": "minecraft:eye"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:rib"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 3
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "template_item": {
+ "type": "StringTag",
+ "value": "minecraft:rib_armor_trim_smithing_template"
+ },
+ "description": {
+ "type": "CompoundTag",
+ "value": {
+ "translate": {
+ "type": "StringTag",
+ "value": "trim_pattern.minecraft.rib"
+ }
+ }
+ },
+ "asset_id": {
+ "type": "StringTag",
+ "value": "minecraft:rib"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:sentry"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 4
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "template_item": {
+ "type": "StringTag",
+ "value": "minecraft:sentry_armor_trim_smithing_template"
+ },
+ "description": {
+ "type": "CompoundTag",
+ "value": {
+ "translate": {
+ "type": "StringTag",
+ "value": "trim_pattern.minecraft.sentry"
+ }
+ }
+ },
+ "asset_id": {
+ "type": "StringTag",
+ "value": "minecraft:sentry"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:snout"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 5
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "template_item": {
+ "type": "StringTag",
+ "value": "minecraft:snout_armor_trim_smithing_template"
+ },
+ "description": {
+ "type": "CompoundTag",
+ "value": {
+ "translate": {
+ "type": "StringTag",
+ "value": "trim_pattern.minecraft.snout"
+ }
+ }
+ },
+ "asset_id": {
+ "type": "StringTag",
+ "value": "minecraft:snout"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:spire"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 6
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "template_item": {
+ "type": "StringTag",
+ "value": "minecraft:spire_armor_trim_smithing_template"
+ },
+ "description": {
+ "type": "CompoundTag",
+ "value": {
+ "translate": {
+ "type": "StringTag",
+ "value": "trim_pattern.minecraft.spire"
+ }
+ }
+ },
+ "asset_id": {
+ "type": "StringTag",
+ "value": "minecraft:spire"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:tide"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 7
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "template_item": {
+ "type": "StringTag",
+ "value": "minecraft:tide_armor_trim_smithing_template"
+ },
+ "description": {
+ "type": "CompoundTag",
+ "value": {
+ "translate": {
+ "type": "StringTag",
+ "value": "trim_pattern.minecraft.tide"
+ }
+ }
+ },
+ "asset_id": {
+ "type": "StringTag",
+ "value": "minecraft:tide"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:vex"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 8
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "template_item": {
+ "type": "StringTag",
+ "value": "minecraft:vex_armor_trim_smithing_template"
+ },
+ "description": {
+ "type": "CompoundTag",
+ "value": {
+ "translate": {
+ "type": "StringTag",
+ "value": "trim_pattern.minecraft.vex"
+ }
+ }
+ },
+ "asset_id": {
+ "type": "StringTag",
+ "value": "minecraft:vex"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:ward"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 9
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "template_item": {
+ "type": "StringTag",
+ "value": "minecraft:ward_armor_trim_smithing_template"
+ },
+ "description": {
+ "type": "CompoundTag",
+ "value": {
+ "translate": {
+ "type": "StringTag",
+ "value": "trim_pattern.minecraft.ward"
+ }
+ }
+ },
+ "asset_id": {
+ "type": "StringTag",
+ "value": "minecraft:ward"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:wild"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 10
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "template_item": {
+ "type": "StringTag",
+ "value": "minecraft:wild_armor_trim_smithing_template"
+ },
+ "description": {
+ "type": "CompoundTag",
+ "value": {
+ "translate": {
+ "type": "StringTag",
+ "value": "trim_pattern.minecraft.wild"
+ }
+ }
+ },
+ "asset_id": {
+ "type": "StringTag",
+ "value": "minecraft:wild"
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
"minecraft:dimension_type": {
"type": "CompoundTag",
"value": {
@@ -584,7 +953,7 @@
{
"name": {
"type": "StringTag",
- "value": "minecraft:the_nether"
+ "value": "minecraft:overworld_caves"
},
"id": {
"type": "IntTag",
@@ -595,59 +964,73 @@
"value": {
"piglin_safe": {
"type": "ByteTag",
- "value": 1
+ "value": 0
},
"natural": {
"type": "ByteTag",
- "value": 0
+ "value": 1
},
"ambient_light": {
"type": "FloatTag",
- "value": 0.1
+ "value": 0
},
"monster_spawn_block_light_limit": {
"type": "IntTag",
- "value": 15
+ "value": 0
},
"infiniburn": {
"type": "StringTag",
- "value": "#minecraft:infiniburn_nether"
+ "value": "#minecraft:infiniburn_overworld"
},
"respawn_anchor_works": {
"type": "ByteTag",
- "value": 1
+ "value": 0
},
"has_skylight": {
"type": "ByteTag",
- "value": 0
+ "value": 1
},
"bed_works": {
"type": "ByteTag",
- "value": 0
+ "value": 1
},
"effects": {
"type": "StringTag",
- "value": "minecraft:the_nether"
- },
- "fixed_time": {
- "type": "LongTag",
- "value": 18000
+ "value": "minecraft:overworld"
},
"has_raids": {
"type": "ByteTag",
- "value": 0
+ "value": 1
},
"logical_height": {
"type": "IntTag",
- "value": 128
+ "value": 256
},
"coordinate_scale": {
"type": "DoubleTag",
- "value": 8
+ "value": 1
},
"monster_spawn_light_level": {
- "type": "IntTag",
- "value": 11
+ "type": "CompoundTag",
+ "value": {
+ "type": {
+ "type": "StringTag",
+ "value": "minecraft:uniform"
+ },
+ "value": {
+ "type": "CompoundTag",
+ "value": {
+ "max_inclusive": {
+ "type": "IntTag",
+ "value": 7
+ },
+ "min_inclusive": {
+ "type": "IntTag",
+ "value": 0
+ }
+ }
+ }
+ }
},
"min_y": {
"type": "IntTag",
@@ -655,7 +1038,7 @@
},
"ultrawarm": {
"type": "ByteTag",
- "value": 1
+ "value": 0
},
"has_ceiling": {
"type": "ByteTag",
@@ -776,7 +1159,7 @@
{
"name": {
"type": "StringTag",
- "value": "minecraft:overworld_caves"
+ "value": "minecraft:the_nether"
},
"id": {
"type": "IntTag",
@@ -787,73 +1170,59 @@
"value": {
"piglin_safe": {
"type": "ByteTag",
- "value": 0
+ "value": 1
},
"natural": {
"type": "ByteTag",
- "value": 1
+ "value": 0
},
"ambient_light": {
"type": "FloatTag",
- "value": 0
+ "value": 0.1
},
"monster_spawn_block_light_limit": {
"type": "IntTag",
- "value": 0
+ "value": 15
},
"infiniburn": {
"type": "StringTag",
- "value": "#minecraft:infiniburn_overworld"
+ "value": "#minecraft:infiniburn_nether"
},
"respawn_anchor_works": {
"type": "ByteTag",
- "value": 0
+ "value": 1
},
"has_skylight": {
"type": "ByteTag",
- "value": 1
+ "value": 0
},
"bed_works": {
"type": "ByteTag",
- "value": 1
+ "value": 0
},
"effects": {
"type": "StringTag",
- "value": "minecraft:overworld"
+ "value": "minecraft:the_nether"
+ },
+ "fixed_time": {
+ "type": "LongTag",
+ "value": 18000
},
"has_raids": {
"type": "ByteTag",
- "value": 1
+ "value": 0
},
"logical_height": {
"type": "IntTag",
- "value": 256
+ "value": 128
},
"coordinate_scale": {
"type": "DoubleTag",
- "value": 1
+ "value": 8
},
"monster_spawn_light_level": {
- "type": "CompoundTag",
- "value": {
- "type": {
- "type": "StringTag",
- "value": "minecraft:uniform"
- },
- "value": {
- "type": "CompoundTag",
- "value": {
- "max_inclusive": {
- "type": "IntTag",
- "value": 7
- },
- "min_inclusive": {
- "type": "IntTag",
- "value": 0
- }
- }
- }
- }
+ "type": "IntTag",
+ "value": 7
},
"min_y": {
"type": "IntTag",
@@ -861,7 +1230,7 @@
},
"ultrawarm": {
"type": "ByteTag",
- "value": 0
+ "value": 1
},
"has_ceiling": {
"type": "ByteTag",
@@ -879,6 +1248,1205 @@
}
}
},
+ "minecraft:damage_type": {
+ "type": "CompoundTag",
+ "value": {
+ "type": {
+ "type": "StringTag",
+ "value": "minecraft:damage_type"
+ },
+ "value": {
+ "type": "ListTag",
+ "value": {
+ "type": "CompoundTag",
+ "list": [
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:arrow"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 0
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "exhaustion": {
+ "type": "FloatTag",
+ "value": 0.1
+ },
+ "scaling": {
+ "type": "StringTag",
+ "value": "when_caused_by_living_non_player"
+ },
+ "message_id": {
+ "type": "StringTag",
+ "value": "arrow"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:bad_respawn_point"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 1
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "exhaustion": {
+ "type": "FloatTag",
+ "value": 0.1
+ },
+ "scaling": {
+ "type": "StringTag",
+ "value": "always"
+ },
+ "message_id": {
+ "type": "StringTag",
+ "value": "badRespawnPoint"
+ },
+ "death_message_type": {
+ "type": "StringTag",
+ "value": "intentional_game_design"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:cactus"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 2
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "exhaustion": {
+ "type": "FloatTag",
+ "value": 0.1
+ },
+ "scaling": {
+ "type": "StringTag",
+ "value": "when_caused_by_living_non_player"
+ },
+ "message_id": {
+ "type": "StringTag",
+ "value": "cactus"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:cramming"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 3
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "exhaustion": {
+ "type": "FloatTag",
+ "value": 0
+ },
+ "scaling": {
+ "type": "StringTag",
+ "value": "when_caused_by_living_non_player"
+ },
+ "message_id": {
+ "type": "StringTag",
+ "value": "cramming"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:dragon_breath"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 4
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "exhaustion": {
+ "type": "FloatTag",
+ "value": 0
+ },
+ "scaling": {
+ "type": "StringTag",
+ "value": "when_caused_by_living_non_player"
+ },
+ "message_id": {
+ "type": "StringTag",
+ "value": "dragonBreath"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:drown"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 5
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "exhaustion": {
+ "type": "FloatTag",
+ "value": 0
+ },
+ "scaling": {
+ "type": "StringTag",
+ "value": "when_caused_by_living_non_player"
+ },
+ "message_id": {
+ "type": "StringTag",
+ "value": "drown"
+ },
+ "effects": {
+ "type": "StringTag",
+ "value": "drowning"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:dry_out"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 6
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "exhaustion": {
+ "type": "FloatTag",
+ "value": 0.1
+ },
+ "scaling": {
+ "type": "StringTag",
+ "value": "when_caused_by_living_non_player"
+ },
+ "message_id": {
+ "type": "StringTag",
+ "value": "dryout"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:explosion"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 7
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "exhaustion": {
+ "type": "FloatTag",
+ "value": 0.1
+ },
+ "scaling": {
+ "type": "StringTag",
+ "value": "always"
+ },
+ "message_id": {
+ "type": "StringTag",
+ "value": "explosion"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:fall"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 8
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "exhaustion": {
+ "type": "FloatTag",
+ "value": 0
+ },
+ "scaling": {
+ "type": "StringTag",
+ "value": "when_caused_by_living_non_player"
+ },
+ "message_id": {
+ "type": "StringTag",
+ "value": "fall"
+ },
+ "death_message_type": {
+ "type": "StringTag",
+ "value": "fall_variants"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:falling_anvil"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 9
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "exhaustion": {
+ "type": "FloatTag",
+ "value": 0.1
+ },
+ "scaling": {
+ "type": "StringTag",
+ "value": "when_caused_by_living_non_player"
+ },
+ "message_id": {
+ "type": "StringTag",
+ "value": "anvil"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:falling_block"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 10
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "exhaustion": {
+ "type": "FloatTag",
+ "value": 0.1
+ },
+ "scaling": {
+ "type": "StringTag",
+ "value": "when_caused_by_living_non_player"
+ },
+ "message_id": {
+ "type": "StringTag",
+ "value": "fallingBlock"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:falling_stalactite"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 11
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "exhaustion": {
+ "type": "FloatTag",
+ "value": 0.1
+ },
+ "scaling": {
+ "type": "StringTag",
+ "value": "when_caused_by_living_non_player"
+ },
+ "message_id": {
+ "type": "StringTag",
+ "value": "fallingStalactite"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:fireball"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 12
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "exhaustion": {
+ "type": "FloatTag",
+ "value": 0.1
+ },
+ "scaling": {
+ "type": "StringTag",
+ "value": "when_caused_by_living_non_player"
+ },
+ "message_id": {
+ "type": "StringTag",
+ "value": "fireball"
+ },
+ "effects": {
+ "type": "StringTag",
+ "value": "burning"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:fireworks"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 13
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "exhaustion": {
+ "type": "FloatTag",
+ "value": 0.1
+ },
+ "scaling": {
+ "type": "StringTag",
+ "value": "when_caused_by_living_non_player"
+ },
+ "message_id": {
+ "type": "StringTag",
+ "value": "fireworks"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:fly_into_wall"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 14
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "exhaustion": {
+ "type": "FloatTag",
+ "value": 0
+ },
+ "scaling": {
+ "type": "StringTag",
+ "value": "when_caused_by_living_non_player"
+ },
+ "message_id": {
+ "type": "StringTag",
+ "value": "flyIntoWall"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:freeze"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 15
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "exhaustion": {
+ "type": "FloatTag",
+ "value": 0
+ },
+ "scaling": {
+ "type": "StringTag",
+ "value": "when_caused_by_living_non_player"
+ },
+ "message_id": {
+ "type": "StringTag",
+ "value": "freeze"
+ },
+ "effects": {
+ "type": "StringTag",
+ "value": "freezing"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:generic"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 16
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "exhaustion": {
+ "type": "FloatTag",
+ "value": 0
+ },
+ "scaling": {
+ "type": "StringTag",
+ "value": "when_caused_by_living_non_player"
+ },
+ "message_id": {
+ "type": "StringTag",
+ "value": "generic"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:hot_floor"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 17
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "exhaustion": {
+ "type": "FloatTag",
+ "value": 0.1
+ },
+ "scaling": {
+ "type": "StringTag",
+ "value": "when_caused_by_living_non_player"
+ },
+ "message_id": {
+ "type": "StringTag",
+ "value": "hotFloor"
+ },
+ "effects": {
+ "type": "StringTag",
+ "value": "burning"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:in_fire"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 18
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "exhaustion": {
+ "type": "FloatTag",
+ "value": 0.1
+ },
+ "scaling": {
+ "type": "StringTag",
+ "value": "when_caused_by_living_non_player"
+ },
+ "message_id": {
+ "type": "StringTag",
+ "value": "inFire"
+ },
+ "effects": {
+ "type": "StringTag",
+ "value": "burning"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:in_wall"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 19
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "exhaustion": {
+ "type": "FloatTag",
+ "value": 0
+ },
+ "scaling": {
+ "type": "StringTag",
+ "value": "when_caused_by_living_non_player"
+ },
+ "message_id": {
+ "type": "StringTag",
+ "value": "inWall"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:indirect_magic"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 20
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "exhaustion": {
+ "type": "FloatTag",
+ "value": 0
+ },
+ "scaling": {
+ "type": "StringTag",
+ "value": "when_caused_by_living_non_player"
+ },
+ "message_id": {
+ "type": "StringTag",
+ "value": "indirectMagic"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:lava"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 21
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "exhaustion": {
+ "type": "FloatTag",
+ "value": 0.1
+ },
+ "scaling": {
+ "type": "StringTag",
+ "value": "when_caused_by_living_non_player"
+ },
+ "message_id": {
+ "type": "StringTag",
+ "value": "lava"
+ },
+ "effects": {
+ "type": "StringTag",
+ "value": "burning"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:lightning_bolt"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 22
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "exhaustion": {
+ "type": "FloatTag",
+ "value": 0.1
+ },
+ "scaling": {
+ "type": "StringTag",
+ "value": "when_caused_by_living_non_player"
+ },
+ "message_id": {
+ "type": "StringTag",
+ "value": "lightningBolt"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:magic"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 23
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "exhaustion": {
+ "type": "FloatTag",
+ "value": 0
+ },
+ "scaling": {
+ "type": "StringTag",
+ "value": "when_caused_by_living_non_player"
+ },
+ "message_id": {
+ "type": "StringTag",
+ "value": "magic"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:mob_attack"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 24
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "exhaustion": {
+ "type": "FloatTag",
+ "value": 0.1
+ },
+ "scaling": {
+ "type": "StringTag",
+ "value": "when_caused_by_living_non_player"
+ },
+ "message_id": {
+ "type": "StringTag",
+ "value": "mob"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:mob_attack_no_aggro"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 25
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "exhaustion": {
+ "type": "FloatTag",
+ "value": 0.1
+ },
+ "scaling": {
+ "type": "StringTag",
+ "value": "when_caused_by_living_non_player"
+ },
+ "message_id": {
+ "type": "StringTag",
+ "value": "mob"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:mob_projectile"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 26
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "exhaustion": {
+ "type": "FloatTag",
+ "value": 0.1
+ },
+ "scaling": {
+ "type": "StringTag",
+ "value": "when_caused_by_living_non_player"
+ },
+ "message_id": {
+ "type": "StringTag",
+ "value": "mob"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:on_fire"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 27
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "exhaustion": {
+ "type": "FloatTag",
+ "value": 0
+ },
+ "scaling": {
+ "type": "StringTag",
+ "value": "when_caused_by_living_non_player"
+ },
+ "message_id": {
+ "type": "StringTag",
+ "value": "onFire"
+ },
+ "effects": {
+ "type": "StringTag",
+ "value": "burning"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:out_of_world"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 28
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "exhaustion": {
+ "type": "FloatTag",
+ "value": 0
+ },
+ "scaling": {
+ "type": "StringTag",
+ "value": "when_caused_by_living_non_player"
+ },
+ "message_id": {
+ "type": "StringTag",
+ "value": "outOfWorld"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:player_attack"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 29
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "exhaustion": {
+ "type": "FloatTag",
+ "value": 0.1
+ },
+ "scaling": {
+ "type": "StringTag",
+ "value": "when_caused_by_living_non_player"
+ },
+ "message_id": {
+ "type": "StringTag",
+ "value": "player"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:player_explosion"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 30
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "exhaustion": {
+ "type": "FloatTag",
+ "value": 0.1
+ },
+ "scaling": {
+ "type": "StringTag",
+ "value": "always"
+ },
+ "message_id": {
+ "type": "StringTag",
+ "value": "explosion.player"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:sonic_boom"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 31
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "exhaustion": {
+ "type": "FloatTag",
+ "value": 0
+ },
+ "scaling": {
+ "type": "StringTag",
+ "value": "always"
+ },
+ "message_id": {
+ "type": "StringTag",
+ "value": "sonic_boom"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:stalagmite"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 32
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "exhaustion": {
+ "type": "FloatTag",
+ "value": 0
+ },
+ "scaling": {
+ "type": "StringTag",
+ "value": "when_caused_by_living_non_player"
+ },
+ "message_id": {
+ "type": "StringTag",
+ "value": "stalagmite"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:starve"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 33
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "exhaustion": {
+ "type": "FloatTag",
+ "value": 0
+ },
+ "scaling": {
+ "type": "StringTag",
+ "value": "when_caused_by_living_non_player"
+ },
+ "message_id": {
+ "type": "StringTag",
+ "value": "starve"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:sting"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 34
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "exhaustion": {
+ "type": "FloatTag",
+ "value": 0.1
+ },
+ "scaling": {
+ "type": "StringTag",
+ "value": "when_caused_by_living_non_player"
+ },
+ "message_id": {
+ "type": "StringTag",
+ "value": "sting"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:sweet_berry_bush"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 35
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "exhaustion": {
+ "type": "FloatTag",
+ "value": 0.1
+ },
+ "scaling": {
+ "type": "StringTag",
+ "value": "when_caused_by_living_non_player"
+ },
+ "message_id": {
+ "type": "StringTag",
+ "value": "sweetBerryBush"
+ },
+ "effects": {
+ "type": "StringTag",
+ "value": "poking"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:thorns"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 36
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "exhaustion": {
+ "type": "FloatTag",
+ "value": 0.1
+ },
+ "scaling": {
+ "type": "StringTag",
+ "value": "when_caused_by_living_non_player"
+ },
+ "message_id": {
+ "type": "StringTag",
+ "value": "thorns"
+ },
+ "effects": {
+ "type": "StringTag",
+ "value": "thorns"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:thrown"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 37
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "exhaustion": {
+ "type": "FloatTag",
+ "value": 0.1
+ },
+ "scaling": {
+ "type": "StringTag",
+ "value": "when_caused_by_living_non_player"
+ },
+ "message_id": {
+ "type": "StringTag",
+ "value": "thrown"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:trident"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 38
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "exhaustion": {
+ "type": "FloatTag",
+ "value": 0.1
+ },
+ "scaling": {
+ "type": "StringTag",
+ "value": "when_caused_by_living_non_player"
+ },
+ "message_id": {
+ "type": "StringTag",
+ "value": "trident"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:unattributed_fireball"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 39
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "exhaustion": {
+ "type": "FloatTag",
+ "value": 0.1
+ },
+ "scaling": {
+ "type": "StringTag",
+ "value": "when_caused_by_living_non_player"
+ },
+ "message_id": {
+ "type": "StringTag",
+ "value": "onFire"
+ },
+ "effects": {
+ "type": "StringTag",
+ "value": "burning"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:wither"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 40
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "exhaustion": {
+ "type": "FloatTag",
+ "value": 0
+ },
+ "scaling": {
+ "type": "StringTag",
+ "value": "when_caused_by_living_non_player"
+ },
+ "message_id": {
+ "type": "StringTag",
+ "value": "wither"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:wither_skull"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 41
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "exhaustion": {
+ "type": "FloatTag",
+ "value": 0.1
+ },
+ "scaling": {
+ "type": "StringTag",
+ "value": "when_caused_by_living_non_player"
+ },
+ "message_id": {
+ "type": "StringTag",
+ "value": "witherSkull"
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
"minecraft:worldgen/biome": {
"type": "CompoundTag",
"value": {
@@ -894,357 +2462,12 @@
{
"name": {
"type": "StringTag",
- "value": "minecraft:the_void"
+ "value": "minecraft:badlands"
},
"id": {
"type": "IntTag",
"value": 0
},
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.5
- },
- "precipitation": {
- "type": "StringTag",
- "value": "none"
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.5
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "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
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:plains"
- },
- "id": {
- "type": "IntTag",
- "value": 1
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.8
- },
- "precipitation": {
- "type": "StringTag",
- "value": "rain"
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.4
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "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
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:sunflower_plains"
- },
- "id": {
- "type": "IntTag",
- "value": 2
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.8
- },
- "precipitation": {
- "type": "StringTag",
- "value": "rain"
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.4
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "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
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:snowy_plains"
- },
- "id": {
- "type": "IntTag",
- "value": 3
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0
- },
- "precipitation": {
- "type": "StringTag",
- "value": "snow"
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.5
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "sky_color": {
- "type": "IntTag",
- "value": 8364543
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:ice_spikes"
- },
- "id": {
- "type": "IntTag",
- "value": 4
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0
- },
- "precipitation": {
- "type": "StringTag",
- "value": "snow"
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.5
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "sky_color": {
- "type": "IntTag",
- "value": 8364543
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:desert"
- },
- "id": {
- "type": "IntTag",
- "value": 5
- },
"element": {
"type": "CompoundTag",
"value": {
@@ -1252,10 +2475,6 @@
"type": "FloatTag",
"value": 2
},
- "precipitation": {
- "type": "StringTag",
- "value": "none"
- },
"downfall": {
"type": "FloatTag",
"value": 0
@@ -1263,299 +2482,21 @@
"effects": {
"type": "CompoundTag",
"value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
"sky_color": {
"type": "IntTag",
"value": 7254527
},
- "water_color": {
+ "grass_color": {
"type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:swamp"
- },
- "id": {
- "type": "IntTag",
- "value": 6
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.8
- },
- "precipitation": {
- "type": "StringTag",
- "value": "rain"
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.9
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "grass_color_modifier": {
- "type": "StringTag",
- "value": "swamp"
- },
- "music": {
- "type": "CompoundTag",
- "value": {
- "replace_current_music": {
- "type": "ByteTag",
- "value": 0
- },
- "max_delay": {
- "type": "IntTag",
- "value": 24000
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:music.overworld.swamp"
- },
- "min_delay": {
- "type": "IntTag",
- "value": 12000
- }
- }
- },
- "sky_color": {
- "type": "IntTag",
- "value": 7907327
+ "value": 9470285
},
"water_fog_color": {
"type": "IntTag",
- "value": 2302743
+ "value": 329011
},
"foliage_color": {
"type": "IntTag",
- "value": 6975545
- },
- "water_color": {
- "type": "IntTag",
- "value": 6388580
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:mangrove_swamp"
- },
- "id": {
- "type": "IntTag",
- "value": 7
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.8
- },
- "precipitation": {
- "type": "StringTag",
- "value": "rain"
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.9
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "grass_color_modifier": {
- "type": "StringTag",
- "value": "swamp"
- },
- "music": {
- "type": "CompoundTag",
- "value": {
- "replace_current_music": {
- "type": "ByteTag",
- "value": 0
- },
- "max_delay": {
- "type": "IntTag",
- "value": 24000
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:music.overworld.swamp"
- },
- "min_delay": {
- "type": "IntTag",
- "value": 12000
- }
- }
- },
- "sky_color": {
- "type": "IntTag",
- "value": 7907327
- },
- "water_fog_color": {
- "type": "IntTag",
- "value": 5077600
- },
- "foliage_color": {
- "type": "IntTag",
- "value": 9285927
- },
- "water_color": {
- "type": "IntTag",
- "value": 3832426
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:forest"
- },
- "id": {
- "type": "IntTag",
- "value": 8
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.7
- },
- "precipitation": {
- "type": "StringTag",
- "value": "rain"
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.8
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "music": {
- "type": "CompoundTag",
- "value": {
- "replace_current_music": {
- "type": "ByteTag",
- "value": 0
- },
- "max_delay": {
- "type": "IntTag",
- "value": 24000
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:music.overworld.jungle_and_forest"
- },
- "min_delay": {
- "type": "IntTag",
- "value": 12000
- }
- }
- },
- "sky_color": {
- "type": "IntTag",
- "value": 7972607
+ "value": 10387789
},
"water_color": {
"type": "IntTag",
@@ -1587,1282 +2528,10 @@
}
}
}
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:flower_forest"
- },
- "id": {
- "type": "IntTag",
- "value": 9
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.7
},
- "precipitation": {
- "type": "StringTag",
- "value": "rain"
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.8
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "music": {
- "type": "CompoundTag",
- "value": {
- "replace_current_music": {
- "type": "ByteTag",
- "value": 0
- },
- "max_delay": {
- "type": "IntTag",
- "value": 24000
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:music.overworld.jungle_and_forest"
- },
- "min_delay": {
- "type": "IntTag",
- "value": 12000
- }
- }
- },
- "sky_color": {
- "type": "IntTag",
- "value": 7972607
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:birch_forest"
- },
- "id": {
- "type": "IntTag",
- "value": 10
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.6
- },
- "precipitation": {
- "type": "StringTag",
- "value": "rain"
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.6
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "music": {
- "type": "CompoundTag",
- "value": {
- "replace_current_music": {
- "type": "ByteTag",
- "value": 0
- },
- "max_delay": {
- "type": "IntTag",
- "value": 24000
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:music.overworld.jungle_and_forest"
- },
- "min_delay": {
- "type": "IntTag",
- "value": 12000
- }
- }
- },
- "sky_color": {
- "type": "IntTag",
- "value": 8037887
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:dark_forest"
- },
- "id": {
- "type": "IntTag",
- "value": 11
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.7
- },
- "precipitation": {
- "type": "StringTag",
- "value": "rain"
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.8
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "grass_color_modifier": {
- "type": "StringTag",
- "value": "dark_forest"
- },
- "music": {
- "type": "CompoundTag",
- "value": {
- "replace_current_music": {
- "type": "ByteTag",
- "value": 0
- },
- "max_delay": {
- "type": "IntTag",
- "value": 24000
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:music.overworld.jungle_and_forest"
- },
- "min_delay": {
- "type": "IntTag",
- "value": 12000
- }
- }
- },
- "sky_color": {
- "type": "IntTag",
- "value": 7972607
- },
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:old_growth_birch_forest"
- },
- "id": {
- "type": "IntTag",
- "value": 12
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.6
- },
- "precipitation": {
- "type": "StringTag",
- "value": "rain"
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.6
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "music": {
- "type": "CompoundTag",
- "value": {
- "replace_current_music": {
- "type": "ByteTag",
- "value": 0
- },
- "max_delay": {
- "type": "IntTag",
- "value": 24000
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:music.overworld.jungle_and_forest"
- },
- "min_delay": {
- "type": "IntTag",
- "value": 12000
- }
- }
- },
- "sky_color": {
- "type": "IntTag",
- "value": 8037887
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:old_growth_pine_taiga"
- },
- "id": {
- "type": "IntTag",
- "value": 13
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.3
- },
- "precipitation": {
- "type": "StringTag",
- "value": "rain"
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.8
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "music": {
- "type": "CompoundTag",
- "value": {
- "replace_current_music": {
- "type": "ByteTag",
- "value": 0
- },
- "max_delay": {
- "type": "IntTag",
- "value": 24000
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:music.overworld.old_growth_taiga"
- },
- "min_delay": {
- "type": "IntTag",
- "value": 12000
- }
- }
- },
- "sky_color": {
- "type": "IntTag",
- "value": 8168447
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:old_growth_spruce_taiga"
- },
- "id": {
- "type": "IntTag",
- "value": 14
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.25
- },
- "precipitation": {
- "type": "StringTag",
- "value": "rain"
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.8
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "music": {
- "type": "CompoundTag",
- "value": {
- "replace_current_music": {
- "type": "ByteTag",
- "value": 0
- },
- "max_delay": {
- "type": "IntTag",
- "value": 24000
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:music.overworld.old_growth_taiga"
- },
- "min_delay": {
- "type": "IntTag",
- "value": 12000
- }
- }
- },
- "sky_color": {
- "type": "IntTag",
- "value": 8233983
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:taiga"
- },
- "id": {
- "type": "IntTag",
- "value": 15
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.25
- },
- "precipitation": {
- "type": "StringTag",
- "value": "rain"
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.8
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "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
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:snowy_taiga"
- },
- "id": {
- "type": "IntTag",
- "value": 16
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": -0.5
- },
- "precipitation": {
- "type": "StringTag",
- "value": "snow"
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.4
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "sky_color": {
- "type": "IntTag",
- "value": 8625919
- },
- "water_color": {
- "type": "IntTag",
- "value": 4020182
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:savanna"
- },
- "id": {
- "type": "IntTag",
- "value": 17
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 2
- },
- "precipitation": {
- "type": "StringTag",
- "value": "none"
- },
- "downfall": {
- "type": "FloatTag",
+ "has_precipitation": {
+ "type": "ByteTag",
"value": 0
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "sky_color": {
- "type": "IntTag",
- "value": 7254527
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:savanna_plateau"
- },
- "id": {
- "type": "IntTag",
- "value": 18
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 2
- },
- "precipitation": {
- "type": "StringTag",
- "value": "none"
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "sky_color": {
- "type": "IntTag",
- "value": 7254527
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:windswept_hills"
- },
- "id": {
- "type": "IntTag",
- "value": 19
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.2
- },
- "precipitation": {
- "type": "StringTag",
- "value": "rain"
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.3
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "sky_color": {
- "type": "IntTag",
- "value": 8233727
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:windswept_gravelly_hills"
- },
- "id": {
- "type": "IntTag",
- "value": 20
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.2
- },
- "precipitation": {
- "type": "StringTag",
- "value": "rain"
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.3
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "sky_color": {
- "type": "IntTag",
- "value": 8233727
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:windswept_forest"
- },
- "id": {
- "type": "IntTag",
- "value": 21
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.2
- },
- "precipitation": {
- "type": "StringTag",
- "value": "rain"
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.3
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "sky_color": {
- "type": "IntTag",
- "value": 8233727
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:windswept_savanna"
- },
- "id": {
- "type": "IntTag",
- "value": 22
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 2
- },
- "precipitation": {
- "type": "StringTag",
- "value": "none"
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "sky_color": {
- "type": "IntTag",
- "value": 7254527
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:jungle"
- },
- "id": {
- "type": "IntTag",
- "value": 23
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.95
- },
- "precipitation": {
- "type": "StringTag",
- "value": "rain"
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.9
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "music": {
- "type": "CompoundTag",
- "value": {
- "replace_current_music": {
- "type": "ByteTag",
- "value": 0
- },
- "max_delay": {
- "type": "IntTag",
- "value": 24000
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:music.overworld.jungle_and_forest"
- },
- "min_delay": {
- "type": "IntTag",
- "value": 12000
- }
- }
- },
- "sky_color": {
- "type": "IntTag",
- "value": 7842047
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:sparse_jungle"
- },
- "id": {
- "type": "IntTag",
- "value": 24
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.95
- },
- "precipitation": {
- "type": "StringTag",
- "value": "rain"
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.8
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "music": {
- "type": "CompoundTag",
- "value": {
- "replace_current_music": {
- "type": "ByteTag",
- "value": 0
- },
- "max_delay": {
- "type": "IntTag",
- "value": 24000
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:music.overworld.jungle_and_forest"
- },
- "min_delay": {
- "type": "IntTag",
- "value": 12000
- }
- }
- },
- "sky_color": {
- "type": "IntTag",
- "value": 7842047
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
}
}
}
@@ -2874,7 +2543,7 @@
},
"id": {
"type": "IntTag",
- "value": 25
+ "value": 1
},
"element": {
"type": "CompoundTag",
@@ -2883,10 +2552,6 @@
"type": "FloatTag",
"value": 0.95
},
- "precipitation": {
- "type": "StringTag",
- "value": "rain"
- },
"downfall": {
"type": "FloatTag",
"value": 0.9
@@ -2953,2572 +2618,10 @@
}
}
}
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:badlands"
- },
- "id": {
- "type": "IntTag",
- "value": 26
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 2
},
- "precipitation": {
- "type": "StringTag",
- "value": "none"
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "sky_color": {
- "type": "IntTag",
- "value": 7254527
- },
- "grass_color": {
- "type": "IntTag",
- "value": 9470285
- },
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "foliage_color": {
- "type": "IntTag",
- "value": 10387789
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:eroded_badlands"
- },
- "id": {
- "type": "IntTag",
- "value": 27
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 2
- },
- "precipitation": {
- "type": "StringTag",
- "value": "none"
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "sky_color": {
- "type": "IntTag",
- "value": 7254527
- },
- "grass_color": {
- "type": "IntTag",
- "value": 9470285
- },
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "foliage_color": {
- "type": "IntTag",
- "value": 10387789
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:wooded_badlands"
- },
- "id": {
- "type": "IntTag",
- "value": 28
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 2
- },
- "precipitation": {
- "type": "StringTag",
- "value": "none"
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "sky_color": {
- "type": "IntTag",
- "value": 7254527
- },
- "grass_color": {
- "type": "IntTag",
- "value": 9470285
- },
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "foliage_color": {
- "type": "IntTag",
- "value": 10387789
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:meadow"
- },
- "id": {
- "type": "IntTag",
- "value": 29
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.5
- },
- "precipitation": {
- "type": "StringTag",
- "value": "rain"
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.8
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "music": {
- "type": "CompoundTag",
- "value": {
- "replace_current_music": {
- "type": "ByteTag",
- "value": 0
- },
- "max_delay": {
- "type": "IntTag",
- "value": 24000
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:music.overworld.meadow"
- },
- "min_delay": {
- "type": "IntTag",
- "value": 12000
- }
- }
- },
- "sky_color": {
- "type": "IntTag",
- "value": 8103167
- },
- "water_color": {
- "type": "IntTag",
- "value": 937679
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:grove"
- },
- "id": {
- "type": "IntTag",
- "value": 30
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": -0.2
- },
- "precipitation": {
- "type": "StringTag",
- "value": "snow"
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.8
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "music": {
- "type": "CompoundTag",
- "value": {
- "replace_current_music": {
- "type": "ByteTag",
- "value": 0
- },
- "max_delay": {
- "type": "IntTag",
- "value": 24000
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:music.overworld.grove"
- },
- "min_delay": {
- "type": "IntTag",
- "value": 12000
- }
- }
- },
- "sky_color": {
- "type": "IntTag",
- "value": 8495359
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:snowy_slopes"
- },
- "id": {
- "type": "IntTag",
- "value": 31
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": -0.3
- },
- "precipitation": {
- "type": "StringTag",
- "value": "snow"
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.9
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "music": {
- "type": "CompoundTag",
- "value": {
- "replace_current_music": {
- "type": "ByteTag",
- "value": 0
- },
- "max_delay": {
- "type": "IntTag",
- "value": 24000
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:music.overworld.snowy_slopes"
- },
- "min_delay": {
- "type": "IntTag",
- "value": 12000
- }
- }
- },
- "sky_color": {
- "type": "IntTag",
- "value": 8560639
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:frozen_peaks"
- },
- "id": {
- "type": "IntTag",
- "value": 32
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": -0.7
- },
- "precipitation": {
- "type": "StringTag",
- "value": "snow"
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.9
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "music": {
- "type": "CompoundTag",
- "value": {
- "replace_current_music": {
- "type": "ByteTag",
- "value": 0
- },
- "max_delay": {
- "type": "IntTag",
- "value": 24000
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:music.overworld.frozen_peaks"
- },
- "min_delay": {
- "type": "IntTag",
- "value": 12000
- }
- }
- },
- "sky_color": {
- "type": "IntTag",
- "value": 8756735
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:jagged_peaks"
- },
- "id": {
- "type": "IntTag",
- "value": 33
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": -0.7
- },
- "precipitation": {
- "type": "StringTag",
- "value": "snow"
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.9
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "music": {
- "type": "CompoundTag",
- "value": {
- "replace_current_music": {
- "type": "ByteTag",
- "value": 0
- },
- "max_delay": {
- "type": "IntTag",
- "value": 24000
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:music.overworld.jagged_peaks"
- },
- "min_delay": {
- "type": "IntTag",
- "value": 12000
- }
- }
- },
- "sky_color": {
- "type": "IntTag",
- "value": 8756735
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:stony_peaks"
- },
- "id": {
- "type": "IntTag",
- "value": 34
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
+ "has_precipitation": {
+ "type": "ByteTag",
"value": 1
- },
- "precipitation": {
- "type": "StringTag",
- "value": "rain"
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.3
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "music": {
- "type": "CompoundTag",
- "value": {
- "replace_current_music": {
- "type": "ByteTag",
- "value": 0
- },
- "max_delay": {
- "type": "IntTag",
- "value": 24000
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:music.overworld.stony_peaks"
- },
- "min_delay": {
- "type": "IntTag",
- "value": 12000
- }
- }
- },
- "sky_color": {
- "type": "IntTag",
- "value": 7776511
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:river"
- },
- "id": {
- "type": "IntTag",
- "value": 35
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.5
- },
- "precipitation": {
- "type": "StringTag",
- "value": "rain"
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.5
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "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
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:frozen_river"
- },
- "id": {
- "type": "IntTag",
- "value": 36
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0
- },
- "precipitation": {
- "type": "StringTag",
- "value": "snow"
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.5
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "sky_color": {
- "type": "IntTag",
- "value": 8364543
- },
- "water_color": {
- "type": "IntTag",
- "value": 3750089
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:beach"
- },
- "id": {
- "type": "IntTag",
- "value": 37
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.8
- },
- "precipitation": {
- "type": "StringTag",
- "value": "rain"
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.4
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "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
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:snowy_beach"
- },
- "id": {
- "type": "IntTag",
- "value": 38
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.05
- },
- "precipitation": {
- "type": "StringTag",
- "value": "snow"
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.3
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "sky_color": {
- "type": "IntTag",
- "value": 8364543
- },
- "water_color": {
- "type": "IntTag",
- "value": 4020182
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:stony_shore"
- },
- "id": {
- "type": "IntTag",
- "value": 39
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.2
- },
- "precipitation": {
- "type": "StringTag",
- "value": "rain"
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.3
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "sky_color": {
- "type": "IntTag",
- "value": 8233727
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:warm_ocean"
- },
- "id": {
- "type": "IntTag",
- "value": 40
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.5
- },
- "precipitation": {
- "type": "StringTag",
- "value": "rain"
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.5
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 270131
- },
- "sky_color": {
- "type": "IntTag",
- "value": 8103167
- },
- "water_color": {
- "type": "IntTag",
- "value": 4445678
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:lukewarm_ocean"
- },
- "id": {
- "type": "IntTag",
- "value": 41
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.5
- },
- "precipitation": {
- "type": "StringTag",
- "value": "rain"
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.5
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 267827
- },
- "sky_color": {
- "type": "IntTag",
- "value": 8103167
- },
- "water_color": {
- "type": "IntTag",
- "value": 4566514
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:deep_lukewarm_ocean"
- },
- "id": {
- "type": "IntTag",
- "value": 42
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.5
- },
- "precipitation": {
- "type": "StringTag",
- "value": "rain"
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.5
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 267827
- },
- "sky_color": {
- "type": "IntTag",
- "value": 8103167
- },
- "water_color": {
- "type": "IntTag",
- "value": 4566514
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:ocean"
- },
- "id": {
- "type": "IntTag",
- "value": 43
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.5
- },
- "precipitation": {
- "type": "StringTag",
- "value": "rain"
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.5
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "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
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:deep_ocean"
- },
- "id": {
- "type": "IntTag",
- "value": 44
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.5
- },
- "precipitation": {
- "type": "StringTag",
- "value": "rain"
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.5
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "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
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:cold_ocean"
- },
- "id": {
- "type": "IntTag",
- "value": 45
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.5
- },
- "precipitation": {
- "type": "StringTag",
- "value": "rain"
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.5
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "sky_color": {
- "type": "IntTag",
- "value": 8103167
- },
- "water_color": {
- "type": "IntTag",
- "value": 4020182
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:deep_cold_ocean"
- },
- "id": {
- "type": "IntTag",
- "value": 46
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.5
- },
- "precipitation": {
- "type": "StringTag",
- "value": "rain"
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.5
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "sky_color": {
- "type": "IntTag",
- "value": 8103167
- },
- "water_color": {
- "type": "IntTag",
- "value": 4020182
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:frozen_ocean"
- },
- "id": {
- "type": "IntTag",
- "value": 47
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0
- },
- "precipitation": {
- "type": "StringTag",
- "value": "snow"
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.5
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "sky_color": {
- "type": "IntTag",
- "value": 8364543
- },
- "water_color": {
- "type": "IntTag",
- "value": 3750089
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- },
- "temperature_modifier": {
- "type": "StringTag",
- "value": "frozen"
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:deep_frozen_ocean"
- },
- "id": {
- "type": "IntTag",
- "value": 48
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.5
- },
- "precipitation": {
- "type": "StringTag",
- "value": "rain"
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.5
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "sky_color": {
- "type": "IntTag",
- "value": 8103167
- },
- "water_color": {
- "type": "IntTag",
- "value": 3750089
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- },
- "temperature_modifier": {
- "type": "StringTag",
- "value": "frozen"
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:mushroom_fields"
- },
- "id": {
- "type": "IntTag",
- "value": 49
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.9
- },
- "precipitation": {
- "type": "StringTag",
- "value": "rain"
- },
- "downfall": {
- "type": "FloatTag",
- "value": 1
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "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
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:dripstone_caves"
- },
- "id": {
- "type": "IntTag",
- "value": 50
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.8
- },
- "precipitation": {
- "type": "StringTag",
- "value": "rain"
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.4
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "music": {
- "type": "CompoundTag",
- "value": {
- "replace_current_music": {
- "type": "ByteTag",
- "value": 0
- },
- "max_delay": {
- "type": "IntTag",
- "value": 24000
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:music.overworld.dripstone_caves"
- },
- "min_delay": {
- "type": "IntTag",
- "value": 12000
- }
- }
- },
- "sky_color": {
- "type": "IntTag",
- "value": 7907327
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:lush_caves"
- },
- "id": {
- "type": "IntTag",
- "value": 51
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.5
- },
- "precipitation": {
- "type": "StringTag",
- "value": "rain"
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.5
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "music": {
- "type": "CompoundTag",
- "value": {
- "replace_current_music": {
- "type": "ByteTag",
- "value": 0
- },
- "max_delay": {
- "type": "IntTag",
- "value": 24000
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:music.overworld.lush_caves"
- },
- "min_delay": {
- "type": "IntTag",
- "value": 12000
- }
- }
- },
- "sky_color": {
- "type": "IntTag",
- "value": 8103167
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:deep_dark"
- },
- "id": {
- "type": "IntTag",
- "value": 52
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.8
- },
- "precipitation": {
- "type": "StringTag",
- "value": "rain"
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.4
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "music": {
- "type": "CompoundTag",
- "value": {
- "replace_current_music": {
- "type": "ByteTag",
- "value": 0
- },
- "max_delay": {
- "type": "IntTag",
- "value": 24000
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:music.overworld.deep_dark"
- },
- "min_delay": {
- "type": "IntTag",
- "value": 12000
- }
- }
- },
- "sky_color": {
- "type": "IntTag",
- "value": 7907327
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:nether_wastes"
- },
- "id": {
- "type": "IntTag",
- "value": 53
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 2
- },
- "precipitation": {
- "type": "StringTag",
- "value": "none"
- },
- "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.nether.nether_wastes"
- },
- "min_delay": {
- "type": "IntTag",
- "value": 12000
- }
- }
- },
- "sky_color": {
- "type": "IntTag",
- "value": 7254527
- },
- "ambient_sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.nether_wastes.loop"
- },
- "additions_sound": {
- "type": "CompoundTag",
- "value": {
- "tick_chance": {
- "type": "DoubleTag",
- "value": 0.0111
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.nether_wastes.additions"
- }
- }
- },
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 3344392
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.nether_wastes.mood"
- }
- }
- }
- }
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:warped_forest"
- },
- "id": {
- "type": "IntTag",
- "value": 54
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 2
- },
- "precipitation": {
- "type": "StringTag",
- "value": "none"
- },
- "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.nether.warped_forest"
- },
- "min_delay": {
- "type": "IntTag",
- "value": 12000
- }
- }
- },
- "sky_color": {
- "type": "IntTag",
- "value": 7254527
- },
- "ambient_sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.warped_forest.loop"
- },
- "additions_sound": {
- "type": "CompoundTag",
- "value": {
- "tick_chance": {
- "type": "DoubleTag",
- "value": 0.0111
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.warped_forest.additions"
- }
- }
- },
- "particle": {
- "type": "CompoundTag",
- "value": {
- "options": {
- "type": "CompoundTag",
- "value": {
- "type": {
- "type": "StringTag",
- "value": "minecraft:warped_spore"
- }
- }
- },
- "probability": {
- "type": "FloatTag",
- "value": 0.01428
- }
- }
- },
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 1705242
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.warped_forest.mood"
- }
- }
- }
- }
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:crimson_forest"
- },
- "id": {
- "type": "IntTag",
- "value": 55
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 2
- },
- "precipitation": {
- "type": "StringTag",
- "value": "none"
- },
- "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.nether.crimson_forest"
- },
- "min_delay": {
- "type": "IntTag",
- "value": 12000
- }
- }
- },
- "sky_color": {
- "type": "IntTag",
- "value": 7254527
- },
- "ambient_sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.crimson_forest.loop"
- },
- "additions_sound": {
- "type": "CompoundTag",
- "value": {
- "tick_chance": {
- "type": "DoubleTag",
- "value": 0.0111
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.crimson_forest.additions"
- }
- }
- },
- "particle": {
- "type": "CompoundTag",
- "value": {
- "options": {
- "type": "CompoundTag",
- "value": {
- "type": {
- "type": "StringTag",
- "value": "minecraft:crimson_spore"
- }
- }
- },
- "probability": {
- "type": "FloatTag",
- "value": 0.025
- }
- }
- },
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 3343107
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.crimson_forest.mood"
- }
- }
- }
- }
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:soul_sand_valley"
- },
- "id": {
- "type": "IntTag",
- "value": 56
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 2
- },
- "precipitation": {
- "type": "StringTag",
- "value": "none"
- },
- "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.nether.soul_sand_valley"
- },
- "min_delay": {
- "type": "IntTag",
- "value": 12000
- }
- }
- },
- "sky_color": {
- "type": "IntTag",
- "value": 7254527
- },
- "ambient_sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.soul_sand_valley.loop"
- },
- "additions_sound": {
- "type": "CompoundTag",
- "value": {
- "tick_chance": {
- "type": "DoubleTag",
- "value": 0.0111
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.soul_sand_valley.additions"
- }
- }
- },
- "particle": {
- "type": "CompoundTag",
- "value": {
- "options": {
- "type": "CompoundTag",
- "value": {
- "type": {
- "type": "StringTag",
- "value": "minecraft:ash"
- }
- }
- },
- "probability": {
- "type": "FloatTag",
- "value": 0.00625
- }
- }
- },
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 1787717
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.soul_sand_valley.mood"
- }
- }
- }
- }
}
}
}
@@ -5530,7 +2633,7 @@
},
"id": {
"type": "IntTag",
- "value": 57
+ "value": 2
},
"element": {
"type": "CompoundTag",
@@ -5539,10 +2642,6 @@
"type": "FloatTag",
"value": 2
},
- "precipitation": {
- "type": "StringTag",
- "value": "none"
- },
"downfall": {
"type": "FloatTag",
"value": 0
@@ -5644,6 +2743,10 @@
}
}
}
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 0
}
}
}
@@ -5651,26 +2754,22 @@
{
"name": {
"type": "StringTag",
- "value": "minecraft:the_end"
+ "value": "minecraft:beach"
},
"id": {
"type": "IntTag",
- "value": 58
+ "value": 3
},
"element": {
"type": "CompoundTag",
"value": {
"temperature": {
"type": "FloatTag",
- "value": 0.5
- },
- "precipitation": {
- "type": "StringTag",
- "value": "none"
+ "value": 0.8
},
"downfall": {
"type": "FloatTag",
- "value": 0.5
+ "value": 0.4
},
"effects": {
"type": "CompoundTag",
@@ -5681,7 +2780,7 @@
},
"sky_color": {
"type": "IntTag",
- "value": 0
+ "value": 7907327
},
"water_color": {
"type": "IntTag",
@@ -5689,7 +2788,7 @@
},
"fog_color": {
"type": "IntTag",
- "value": 10518688
+ "value": 12638463
},
"mood_sound": {
"type": "CompoundTag",
@@ -5713,6 +2812,10 @@
}
}
}
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 1
}
}
}
@@ -5720,26 +2823,22 @@
{
"name": {
"type": "StringTag",
- "value": "minecraft:end_highlands"
+ "value": "minecraft:birch_forest"
},
"id": {
"type": "IntTag",
- "value": 59
+ "value": 4
},
"element": {
"type": "CompoundTag",
"value": {
"temperature": {
"type": "FloatTag",
- "value": 0.5
- },
- "precipitation": {
- "type": "StringTag",
- "value": "none"
+ "value": 0.6
},
"downfall": {
"type": "FloatTag",
- "value": 0.5
+ "value": 0.6
},
"effects": {
"type": "CompoundTag",
@@ -5748,9 +2847,30 @@
"type": "IntTag",
"value": 329011
},
+ "music": {
+ "type": "CompoundTag",
+ "value": {
+ "replace_current_music": {
+ "type": "ByteTag",
+ "value": 0
+ },
+ "max_delay": {
+ "type": "IntTag",
+ "value": 24000
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:music.overworld.jungle_and_forest"
+ },
+ "min_delay": {
+ "type": "IntTag",
+ "value": 12000
+ }
+ }
+ },
"sky_color": {
"type": "IntTag",
- "value": 0
+ "value": 8037887
},
"water_color": {
"type": "IntTag",
@@ -5758,7 +2878,7 @@
},
"fog_color": {
"type": "IntTag",
- "value": 10518688
+ "value": 12638463
},
"mood_sound": {
"type": "CompoundTag",
@@ -5782,6 +2902,10 @@
}
}
}
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 1
}
}
}
@@ -5789,11 +2913,11 @@
{
"name": {
"type": "StringTag",
- "value": "minecraft:end_midlands"
+ "value": "minecraft:cherry_grove"
},
"id": {
"type": "IntTag",
- "value": 60
+ "value": 5
},
"element": {
"type": "CompoundTag",
@@ -5802,32 +2926,57 @@
"type": "FloatTag",
"value": 0.5
},
- "precipitation": {
- "type": "StringTag",
- "value": "none"
- },
"downfall": {
"type": "FloatTag",
- "value": 0.5
+ "value": 0.8
},
"effects": {
"type": "CompoundTag",
"value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
+ "music": {
+ "type": "CompoundTag",
+ "value": {
+ "replace_current_music": {
+ "type": "ByteTag",
+ "value": 0
+ },
+ "max_delay": {
+ "type": "IntTag",
+ "value": 24000
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:music.overworld.cherry_grove"
+ },
+ "min_delay": {
+ "type": "IntTag",
+ "value": 12000
+ }
+ }
},
"sky_color": {
"type": "IntTag",
- "value": 0
+ "value": 8103167
+ },
+ "grass_color": {
+ "type": "IntTag",
+ "value": 11983713
+ },
+ "water_fog_color": {
+ "type": "IntTag",
+ "value": 6141935
+ },
+ "foliage_color": {
+ "type": "IntTag",
+ "value": 11983713
},
"water_color": {
"type": "IntTag",
- "value": 4159204
+ "value": 6141935
},
"fog_color": {
"type": "IntTag",
- "value": 10518688
+ "value": 12638463
},
"mood_sound": {
"type": "CompoundTag",
@@ -5851,6 +3000,10 @@
}
}
}
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 1
}
}
}
@@ -5858,11 +3011,11 @@
{
"name": {
"type": "StringTag",
- "value": "minecraft:small_end_islands"
+ "value": "minecraft:cold_ocean"
},
"id": {
"type": "IntTag",
- "value": 61
+ "value": 6
},
"element": {
"type": "CompoundTag",
@@ -5871,10 +3024,6 @@
"type": "FloatTag",
"value": 0.5
},
- "precipitation": {
- "type": "StringTag",
- "value": "none"
- },
"downfall": {
"type": "FloatTag",
"value": 0.5
@@ -5888,15 +3037,15 @@
},
"sky_color": {
"type": "IntTag",
- "value": 0
+ "value": 8103167
},
"water_color": {
"type": "IntTag",
- "value": 4159204
+ "value": 4020182
},
"fog_color": {
"type": "IntTag",
- "value": 10518688
+ "value": 12638463
},
"mood_sound": {
"type": "CompoundTag",
@@ -5920,6 +3069,758 @@
}
}
}
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 1
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:crimson_forest"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 7
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "temperature": {
+ "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.nether.crimson_forest"
+ },
+ "min_delay": {
+ "type": "IntTag",
+ "value": 12000
+ }
+ }
+ },
+ "sky_color": {
+ "type": "IntTag",
+ "value": 7254527
+ },
+ "ambient_sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.crimson_forest.loop"
+ },
+ "additions_sound": {
+ "type": "CompoundTag",
+ "value": {
+ "tick_chance": {
+ "type": "DoubleTag",
+ "value": 0.0111
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.crimson_forest.additions"
+ }
+ }
+ },
+ "particle": {
+ "type": "CompoundTag",
+ "value": {
+ "options": {
+ "type": "CompoundTag",
+ "value": {
+ "type": {
+ "type": "StringTag",
+ "value": "minecraft:crimson_spore"
+ }
+ }
+ },
+ "probability": {
+ "type": "FloatTag",
+ "value": 0.025
+ }
+ }
+ },
+ "water_fog_color": {
+ "type": "IntTag",
+ "value": 329011
+ },
+ "water_color": {
+ "type": "IntTag",
+ "value": 4159204
+ },
+ "fog_color": {
+ "type": "IntTag",
+ "value": 3343107
+ },
+ "mood_sound": {
+ "type": "CompoundTag",
+ "value": {
+ "offset": {
+ "type": "DoubleTag",
+ "value": 2
+ },
+ "tick_delay": {
+ "type": "IntTag",
+ "value": 6000
+ },
+ "block_search_extent": {
+ "type": "IntTag",
+ "value": 8
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.crimson_forest.mood"
+ }
+ }
+ }
+ }
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 0
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:dark_forest"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 8
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "temperature": {
+ "type": "FloatTag",
+ "value": 0.7
+ },
+ "downfall": {
+ "type": "FloatTag",
+ "value": 0.8
+ },
+ "effects": {
+ "type": "CompoundTag",
+ "value": {
+ "grass_color_modifier": {
+ "type": "StringTag",
+ "value": "dark_forest"
+ },
+ "music": {
+ "type": "CompoundTag",
+ "value": {
+ "replace_current_music": {
+ "type": "ByteTag",
+ "value": 0
+ },
+ "max_delay": {
+ "type": "IntTag",
+ "value": 24000
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:music.overworld.jungle_and_forest"
+ },
+ "min_delay": {
+ "type": "IntTag",
+ "value": 12000
+ }
+ }
+ },
+ "sky_color": {
+ "type": "IntTag",
+ "value": 7972607
+ },
+ "water_fog_color": {
+ "type": "IntTag",
+ "value": 329011
+ },
+ "water_color": {
+ "type": "IntTag",
+ "value": 4159204
+ },
+ "fog_color": {
+ "type": "IntTag",
+ "value": 12638463
+ },
+ "mood_sound": {
+ "type": "CompoundTag",
+ "value": {
+ "offset": {
+ "type": "DoubleTag",
+ "value": 2
+ },
+ "tick_delay": {
+ "type": "IntTag",
+ "value": 6000
+ },
+ "block_search_extent": {
+ "type": "IntTag",
+ "value": 8
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.cave"
+ }
+ }
+ }
+ }
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 1
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:deep_cold_ocean"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 9
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "temperature": {
+ "type": "FloatTag",
+ "value": 0.5
+ },
+ "downfall": {
+ "type": "FloatTag",
+ "value": 0.5
+ },
+ "effects": {
+ "type": "CompoundTag",
+ "value": {
+ "water_fog_color": {
+ "type": "IntTag",
+ "value": 329011
+ },
+ "sky_color": {
+ "type": "IntTag",
+ "value": 8103167
+ },
+ "water_color": {
+ "type": "IntTag",
+ "value": 4020182
+ },
+ "fog_color": {
+ "type": "IntTag",
+ "value": 12638463
+ },
+ "mood_sound": {
+ "type": "CompoundTag",
+ "value": {
+ "offset": {
+ "type": "DoubleTag",
+ "value": 2
+ },
+ "tick_delay": {
+ "type": "IntTag",
+ "value": 6000
+ },
+ "block_search_extent": {
+ "type": "IntTag",
+ "value": 8
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.cave"
+ }
+ }
+ }
+ }
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 1
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:deep_dark"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 10
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "temperature": {
+ "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": {
+ "replace_current_music": {
+ "type": "ByteTag",
+ "value": 0
+ },
+ "max_delay": {
+ "type": "IntTag",
+ "value": 24000
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:music.overworld.deep_dark"
+ },
+ "min_delay": {
+ "type": "IntTag",
+ "value": 12000
+ }
+ }
+ },
+ "sky_color": {
+ "type": "IntTag",
+ "value": 7907327
+ },
+ "water_color": {
+ "type": "IntTag",
+ "value": 4159204
+ },
+ "fog_color": {
+ "type": "IntTag",
+ "value": 12638463
+ },
+ "mood_sound": {
+ "type": "CompoundTag",
+ "value": {
+ "offset": {
+ "type": "DoubleTag",
+ "value": 2
+ },
+ "tick_delay": {
+ "type": "IntTag",
+ "value": 6000
+ },
+ "block_search_extent": {
+ "type": "IntTag",
+ "value": 8
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.cave"
+ }
+ }
+ }
+ }
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 1
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:deep_frozen_ocean"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 11
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "temperature": {
+ "type": "FloatTag",
+ "value": 0.5
+ },
+ "downfall": {
+ "type": "FloatTag",
+ "value": 0.5
+ },
+ "effects": {
+ "type": "CompoundTag",
+ "value": {
+ "water_fog_color": {
+ "type": "IntTag",
+ "value": 329011
+ },
+ "sky_color": {
+ "type": "IntTag",
+ "value": 8103167
+ },
+ "water_color": {
+ "type": "IntTag",
+ "value": 3750089
+ },
+ "fog_color": {
+ "type": "IntTag",
+ "value": 12638463
+ },
+ "mood_sound": {
+ "type": "CompoundTag",
+ "value": {
+ "offset": {
+ "type": "DoubleTag",
+ "value": 2
+ },
+ "tick_delay": {
+ "type": "IntTag",
+ "value": 6000
+ },
+ "block_search_extent": {
+ "type": "IntTag",
+ "value": 8
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.cave"
+ }
+ }
+ }
+ }
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 1
+ },
+ "temperature_modifier": {
+ "type": "StringTag",
+ "value": "frozen"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:deep_lukewarm_ocean"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 12
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "temperature": {
+ "type": "FloatTag",
+ "value": 0.5
+ },
+ "downfall": {
+ "type": "FloatTag",
+ "value": 0.5
+ },
+ "effects": {
+ "type": "CompoundTag",
+ "value": {
+ "water_fog_color": {
+ "type": "IntTag",
+ "value": 267827
+ },
+ "sky_color": {
+ "type": "IntTag",
+ "value": 8103167
+ },
+ "water_color": {
+ "type": "IntTag",
+ "value": 4566514
+ },
+ "fog_color": {
+ "type": "IntTag",
+ "value": 12638463
+ },
+ "mood_sound": {
+ "type": "CompoundTag",
+ "value": {
+ "offset": {
+ "type": "DoubleTag",
+ "value": 2
+ },
+ "tick_delay": {
+ "type": "IntTag",
+ "value": 6000
+ },
+ "block_search_extent": {
+ "type": "IntTag",
+ "value": 8
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.cave"
+ }
+ }
+ }
+ }
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 1
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:deep_ocean"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 13
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "temperature": {
+ "type": "FloatTag",
+ "value": 0.5
+ },
+ "downfall": {
+ "type": "FloatTag",
+ "value": 0.5
+ },
+ "effects": {
+ "type": "CompoundTag",
+ "value": {
+ "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
+ },
+ "mood_sound": {
+ "type": "CompoundTag",
+ "value": {
+ "offset": {
+ "type": "DoubleTag",
+ "value": 2
+ },
+ "tick_delay": {
+ "type": "IntTag",
+ "value": 6000
+ },
+ "block_search_extent": {
+ "type": "IntTag",
+ "value": 8
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.cave"
+ }
+ }
+ }
+ }
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 1
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:desert"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 14
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "temperature": {
+ "type": "FloatTag",
+ "value": 2
+ },
+ "downfall": {
+ "type": "FloatTag",
+ "value": 0
+ },
+ "effects": {
+ "type": "CompoundTag",
+ "value": {
+ "water_fog_color": {
+ "type": "IntTag",
+ "value": 329011
+ },
+ "sky_color": {
+ "type": "IntTag",
+ "value": 7254527
+ },
+ "water_color": {
+ "type": "IntTag",
+ "value": 4159204
+ },
+ "fog_color": {
+ "type": "IntTag",
+ "value": 12638463
+ },
+ "mood_sound": {
+ "type": "CompoundTag",
+ "value": {
+ "offset": {
+ "type": "DoubleTag",
+ "value": 2
+ },
+ "tick_delay": {
+ "type": "IntTag",
+ "value": 6000
+ },
+ "block_search_extent": {
+ "type": "IntTag",
+ "value": 8
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.cave"
+ }
+ }
+ }
+ }
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 0
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:dripstone_caves"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 15
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "temperature": {
+ "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": {
+ "replace_current_music": {
+ "type": "ByteTag",
+ "value": 0
+ },
+ "max_delay": {
+ "type": "IntTag",
+ "value": 24000
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:music.overworld.dripstone_caves"
+ },
+ "min_delay": {
+ "type": "IntTag",
+ "value": 12000
+ }
+ }
+ },
+ "sky_color": {
+ "type": "IntTag",
+ "value": 7907327
+ },
+ "water_color": {
+ "type": "IntTag",
+ "value": 4159204
+ },
+ "fog_color": {
+ "type": "IntTag",
+ "value": 12638463
+ },
+ "mood_sound": {
+ "type": "CompoundTag",
+ "value": {
+ "offset": {
+ "type": "DoubleTag",
+ "value": 2
+ },
+ "tick_delay": {
+ "type": "IntTag",
+ "value": 6000
+ },
+ "block_search_extent": {
+ "type": "IntTag",
+ "value": 8
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.cave"
+ }
+ }
+ }
+ }
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 1
}
}
}
@@ -5931,7 +3832,7 @@
},
"id": {
"type": "IntTag",
- "value": 62
+ "value": 16
},
"element": {
"type": "CompoundTag",
@@ -5940,10 +3841,6 @@
"type": "FloatTag",
"value": 0.5
},
- "precipitation": {
- "type": "StringTag",
- "value": "none"
- },
"downfall": {
"type": "FloatTag",
"value": 0.5
@@ -5989,6 +3886,4228 @@
}
}
}
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 0
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:end_highlands"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 17
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "temperature": {
+ "type": "FloatTag",
+ "value": 0.5
+ },
+ "downfall": {
+ "type": "FloatTag",
+ "value": 0.5
+ },
+ "effects": {
+ "type": "CompoundTag",
+ "value": {
+ "water_fog_color": {
+ "type": "IntTag",
+ "value": 329011
+ },
+ "sky_color": {
+ "type": "IntTag",
+ "value": 0
+ },
+ "water_color": {
+ "type": "IntTag",
+ "value": 4159204
+ },
+ "fog_color": {
+ "type": "IntTag",
+ "value": 10518688
+ },
+ "mood_sound": {
+ "type": "CompoundTag",
+ "value": {
+ "offset": {
+ "type": "DoubleTag",
+ "value": 2
+ },
+ "tick_delay": {
+ "type": "IntTag",
+ "value": 6000
+ },
+ "block_search_extent": {
+ "type": "IntTag",
+ "value": 8
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.cave"
+ }
+ }
+ }
+ }
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 0
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:end_midlands"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 18
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "temperature": {
+ "type": "FloatTag",
+ "value": 0.5
+ },
+ "downfall": {
+ "type": "FloatTag",
+ "value": 0.5
+ },
+ "effects": {
+ "type": "CompoundTag",
+ "value": {
+ "water_fog_color": {
+ "type": "IntTag",
+ "value": 329011
+ },
+ "sky_color": {
+ "type": "IntTag",
+ "value": 0
+ },
+ "water_color": {
+ "type": "IntTag",
+ "value": 4159204
+ },
+ "fog_color": {
+ "type": "IntTag",
+ "value": 10518688
+ },
+ "mood_sound": {
+ "type": "CompoundTag",
+ "value": {
+ "offset": {
+ "type": "DoubleTag",
+ "value": 2
+ },
+ "tick_delay": {
+ "type": "IntTag",
+ "value": 6000
+ },
+ "block_search_extent": {
+ "type": "IntTag",
+ "value": 8
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.cave"
+ }
+ }
+ }
+ }
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 0
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:eroded_badlands"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 19
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "temperature": {
+ "type": "FloatTag",
+ "value": 2
+ },
+ "downfall": {
+ "type": "FloatTag",
+ "value": 0
+ },
+ "effects": {
+ "type": "CompoundTag",
+ "value": {
+ "sky_color": {
+ "type": "IntTag",
+ "value": 7254527
+ },
+ "grass_color": {
+ "type": "IntTag",
+ "value": 9470285
+ },
+ "water_fog_color": {
+ "type": "IntTag",
+ "value": 329011
+ },
+ "foliage_color": {
+ "type": "IntTag",
+ "value": 10387789
+ },
+ "water_color": {
+ "type": "IntTag",
+ "value": 4159204
+ },
+ "fog_color": {
+ "type": "IntTag",
+ "value": 12638463
+ },
+ "mood_sound": {
+ "type": "CompoundTag",
+ "value": {
+ "offset": {
+ "type": "DoubleTag",
+ "value": 2
+ },
+ "tick_delay": {
+ "type": "IntTag",
+ "value": 6000
+ },
+ "block_search_extent": {
+ "type": "IntTag",
+ "value": 8
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.cave"
+ }
+ }
+ }
+ }
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 0
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:flower_forest"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 20
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "temperature": {
+ "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": {
+ "replace_current_music": {
+ "type": "ByteTag",
+ "value": 0
+ },
+ "max_delay": {
+ "type": "IntTag",
+ "value": 24000
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:music.overworld.jungle_and_forest"
+ },
+ "min_delay": {
+ "type": "IntTag",
+ "value": 12000
+ }
+ }
+ },
+ "sky_color": {
+ "type": "IntTag",
+ "value": 7972607
+ },
+ "water_color": {
+ "type": "IntTag",
+ "value": 4159204
+ },
+ "fog_color": {
+ "type": "IntTag",
+ "value": 12638463
+ },
+ "mood_sound": {
+ "type": "CompoundTag",
+ "value": {
+ "offset": {
+ "type": "DoubleTag",
+ "value": 2
+ },
+ "tick_delay": {
+ "type": "IntTag",
+ "value": 6000
+ },
+ "block_search_extent": {
+ "type": "IntTag",
+ "value": 8
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.cave"
+ }
+ }
+ }
+ }
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 1
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:forest"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 21
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "temperature": {
+ "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": {
+ "replace_current_music": {
+ "type": "ByteTag",
+ "value": 0
+ },
+ "max_delay": {
+ "type": "IntTag",
+ "value": 24000
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:music.overworld.jungle_and_forest"
+ },
+ "min_delay": {
+ "type": "IntTag",
+ "value": 12000
+ }
+ }
+ },
+ "sky_color": {
+ "type": "IntTag",
+ "value": 7972607
+ },
+ "water_color": {
+ "type": "IntTag",
+ "value": 4159204
+ },
+ "fog_color": {
+ "type": "IntTag",
+ "value": 12638463
+ },
+ "mood_sound": {
+ "type": "CompoundTag",
+ "value": {
+ "offset": {
+ "type": "DoubleTag",
+ "value": 2
+ },
+ "tick_delay": {
+ "type": "IntTag",
+ "value": 6000
+ },
+ "block_search_extent": {
+ "type": "IntTag",
+ "value": 8
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.cave"
+ }
+ }
+ }
+ }
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 1
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:frozen_ocean"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 22
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "temperature": {
+ "type": "FloatTag",
+ "value": 0
+ },
+ "downfall": {
+ "type": "FloatTag",
+ "value": 0.5
+ },
+ "effects": {
+ "type": "CompoundTag",
+ "value": {
+ "water_fog_color": {
+ "type": "IntTag",
+ "value": 329011
+ },
+ "sky_color": {
+ "type": "IntTag",
+ "value": 8364543
+ },
+ "water_color": {
+ "type": "IntTag",
+ "value": 3750089
+ },
+ "fog_color": {
+ "type": "IntTag",
+ "value": 12638463
+ },
+ "mood_sound": {
+ "type": "CompoundTag",
+ "value": {
+ "offset": {
+ "type": "DoubleTag",
+ "value": 2
+ },
+ "tick_delay": {
+ "type": "IntTag",
+ "value": 6000
+ },
+ "block_search_extent": {
+ "type": "IntTag",
+ "value": 8
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.cave"
+ }
+ }
+ }
+ }
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 1
+ },
+ "temperature_modifier": {
+ "type": "StringTag",
+ "value": "frozen"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:frozen_peaks"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 23
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "temperature": {
+ "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": {
+ "replace_current_music": {
+ "type": "ByteTag",
+ "value": 0
+ },
+ "max_delay": {
+ "type": "IntTag",
+ "value": 24000
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:music.overworld.frozen_peaks"
+ },
+ "min_delay": {
+ "type": "IntTag",
+ "value": 12000
+ }
+ }
+ },
+ "sky_color": {
+ "type": "IntTag",
+ "value": 8756735
+ },
+ "water_color": {
+ "type": "IntTag",
+ "value": 4159204
+ },
+ "fog_color": {
+ "type": "IntTag",
+ "value": 12638463
+ },
+ "mood_sound": {
+ "type": "CompoundTag",
+ "value": {
+ "offset": {
+ "type": "DoubleTag",
+ "value": 2
+ },
+ "tick_delay": {
+ "type": "IntTag",
+ "value": 6000
+ },
+ "block_search_extent": {
+ "type": "IntTag",
+ "value": 8
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.cave"
+ }
+ }
+ }
+ }
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 1
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:frozen_river"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 24
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "temperature": {
+ "type": "FloatTag",
+ "value": 0
+ },
+ "downfall": {
+ "type": "FloatTag",
+ "value": 0.5
+ },
+ "effects": {
+ "type": "CompoundTag",
+ "value": {
+ "water_fog_color": {
+ "type": "IntTag",
+ "value": 329011
+ },
+ "sky_color": {
+ "type": "IntTag",
+ "value": 8364543
+ },
+ "water_color": {
+ "type": "IntTag",
+ "value": 3750089
+ },
+ "fog_color": {
+ "type": "IntTag",
+ "value": 12638463
+ },
+ "mood_sound": {
+ "type": "CompoundTag",
+ "value": {
+ "offset": {
+ "type": "DoubleTag",
+ "value": 2
+ },
+ "tick_delay": {
+ "type": "IntTag",
+ "value": 6000
+ },
+ "block_search_extent": {
+ "type": "IntTag",
+ "value": 8
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.cave"
+ }
+ }
+ }
+ }
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 1
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:grove"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 25
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "temperature": {
+ "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": {
+ "replace_current_music": {
+ "type": "ByteTag",
+ "value": 0
+ },
+ "max_delay": {
+ "type": "IntTag",
+ "value": 24000
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:music.overworld.grove"
+ },
+ "min_delay": {
+ "type": "IntTag",
+ "value": 12000
+ }
+ }
+ },
+ "sky_color": {
+ "type": "IntTag",
+ "value": 8495359
+ },
+ "water_color": {
+ "type": "IntTag",
+ "value": 4159204
+ },
+ "fog_color": {
+ "type": "IntTag",
+ "value": 12638463
+ },
+ "mood_sound": {
+ "type": "CompoundTag",
+ "value": {
+ "offset": {
+ "type": "DoubleTag",
+ "value": 2
+ },
+ "tick_delay": {
+ "type": "IntTag",
+ "value": 6000
+ },
+ "block_search_extent": {
+ "type": "IntTag",
+ "value": 8
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.cave"
+ }
+ }
+ }
+ }
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 1
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:ice_spikes"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 26
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "temperature": {
+ "type": "FloatTag",
+ "value": 0
+ },
+ "downfall": {
+ "type": "FloatTag",
+ "value": 0.5
+ },
+ "effects": {
+ "type": "CompoundTag",
+ "value": {
+ "water_fog_color": {
+ "type": "IntTag",
+ "value": 329011
+ },
+ "sky_color": {
+ "type": "IntTag",
+ "value": 8364543
+ },
+ "water_color": {
+ "type": "IntTag",
+ "value": 4159204
+ },
+ "fog_color": {
+ "type": "IntTag",
+ "value": 12638463
+ },
+ "mood_sound": {
+ "type": "CompoundTag",
+ "value": {
+ "offset": {
+ "type": "DoubleTag",
+ "value": 2
+ },
+ "tick_delay": {
+ "type": "IntTag",
+ "value": 6000
+ },
+ "block_search_extent": {
+ "type": "IntTag",
+ "value": 8
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.cave"
+ }
+ }
+ }
+ }
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 1
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:jagged_peaks"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 27
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "temperature": {
+ "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": {
+ "replace_current_music": {
+ "type": "ByteTag",
+ "value": 0
+ },
+ "max_delay": {
+ "type": "IntTag",
+ "value": 24000
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:music.overworld.jagged_peaks"
+ },
+ "min_delay": {
+ "type": "IntTag",
+ "value": 12000
+ }
+ }
+ },
+ "sky_color": {
+ "type": "IntTag",
+ "value": 8756735
+ },
+ "water_color": {
+ "type": "IntTag",
+ "value": 4159204
+ },
+ "fog_color": {
+ "type": "IntTag",
+ "value": 12638463
+ },
+ "mood_sound": {
+ "type": "CompoundTag",
+ "value": {
+ "offset": {
+ "type": "DoubleTag",
+ "value": 2
+ },
+ "tick_delay": {
+ "type": "IntTag",
+ "value": 6000
+ },
+ "block_search_extent": {
+ "type": "IntTag",
+ "value": 8
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.cave"
+ }
+ }
+ }
+ }
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 1
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:jungle"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 28
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "temperature": {
+ "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": {
+ "replace_current_music": {
+ "type": "ByteTag",
+ "value": 0
+ },
+ "max_delay": {
+ "type": "IntTag",
+ "value": 24000
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:music.overworld.jungle_and_forest"
+ },
+ "min_delay": {
+ "type": "IntTag",
+ "value": 12000
+ }
+ }
+ },
+ "sky_color": {
+ "type": "IntTag",
+ "value": 7842047
+ },
+ "water_color": {
+ "type": "IntTag",
+ "value": 4159204
+ },
+ "fog_color": {
+ "type": "IntTag",
+ "value": 12638463
+ },
+ "mood_sound": {
+ "type": "CompoundTag",
+ "value": {
+ "offset": {
+ "type": "DoubleTag",
+ "value": 2
+ },
+ "tick_delay": {
+ "type": "IntTag",
+ "value": 6000
+ },
+ "block_search_extent": {
+ "type": "IntTag",
+ "value": 8
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.cave"
+ }
+ }
+ }
+ }
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 1
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:lukewarm_ocean"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 29
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "temperature": {
+ "type": "FloatTag",
+ "value": 0.5
+ },
+ "downfall": {
+ "type": "FloatTag",
+ "value": 0.5
+ },
+ "effects": {
+ "type": "CompoundTag",
+ "value": {
+ "water_fog_color": {
+ "type": "IntTag",
+ "value": 267827
+ },
+ "sky_color": {
+ "type": "IntTag",
+ "value": 8103167
+ },
+ "water_color": {
+ "type": "IntTag",
+ "value": 4566514
+ },
+ "fog_color": {
+ "type": "IntTag",
+ "value": 12638463
+ },
+ "mood_sound": {
+ "type": "CompoundTag",
+ "value": {
+ "offset": {
+ "type": "DoubleTag",
+ "value": 2
+ },
+ "tick_delay": {
+ "type": "IntTag",
+ "value": 6000
+ },
+ "block_search_extent": {
+ "type": "IntTag",
+ "value": 8
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.cave"
+ }
+ }
+ }
+ }
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 1
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:lush_caves"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 30
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "temperature": {
+ "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": {
+ "replace_current_music": {
+ "type": "ByteTag",
+ "value": 0
+ },
+ "max_delay": {
+ "type": "IntTag",
+ "value": 24000
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:music.overworld.lush_caves"
+ },
+ "min_delay": {
+ "type": "IntTag",
+ "value": 12000
+ }
+ }
+ },
+ "sky_color": {
+ "type": "IntTag",
+ "value": 8103167
+ },
+ "water_color": {
+ "type": "IntTag",
+ "value": 4159204
+ },
+ "fog_color": {
+ "type": "IntTag",
+ "value": 12638463
+ },
+ "mood_sound": {
+ "type": "CompoundTag",
+ "value": {
+ "offset": {
+ "type": "DoubleTag",
+ "value": 2
+ },
+ "tick_delay": {
+ "type": "IntTag",
+ "value": 6000
+ },
+ "block_search_extent": {
+ "type": "IntTag",
+ "value": 8
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.cave"
+ }
+ }
+ }
+ }
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 1
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:mangrove_swamp"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 31
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "temperature": {
+ "type": "FloatTag",
+ "value": 0.8
+ },
+ "downfall": {
+ "type": "FloatTag",
+ "value": 0.9
+ },
+ "effects": {
+ "type": "CompoundTag",
+ "value": {
+ "grass_color_modifier": {
+ "type": "StringTag",
+ "value": "swamp"
+ },
+ "music": {
+ "type": "CompoundTag",
+ "value": {
+ "replace_current_music": {
+ "type": "ByteTag",
+ "value": 0
+ },
+ "max_delay": {
+ "type": "IntTag",
+ "value": 24000
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:music.overworld.swamp"
+ },
+ "min_delay": {
+ "type": "IntTag",
+ "value": 12000
+ }
+ }
+ },
+ "sky_color": {
+ "type": "IntTag",
+ "value": 7907327
+ },
+ "water_fog_color": {
+ "type": "IntTag",
+ "value": 5077600
+ },
+ "foliage_color": {
+ "type": "IntTag",
+ "value": 9285927
+ },
+ "water_color": {
+ "type": "IntTag",
+ "value": 3832426
+ },
+ "fog_color": {
+ "type": "IntTag",
+ "value": 12638463
+ },
+ "mood_sound": {
+ "type": "CompoundTag",
+ "value": {
+ "offset": {
+ "type": "DoubleTag",
+ "value": 2
+ },
+ "tick_delay": {
+ "type": "IntTag",
+ "value": 6000
+ },
+ "block_search_extent": {
+ "type": "IntTag",
+ "value": 8
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.cave"
+ }
+ }
+ }
+ }
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 1
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:meadow"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 32
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "temperature": {
+ "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": {
+ "replace_current_music": {
+ "type": "ByteTag",
+ "value": 0
+ },
+ "max_delay": {
+ "type": "IntTag",
+ "value": 24000
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:music.overworld.meadow"
+ },
+ "min_delay": {
+ "type": "IntTag",
+ "value": 12000
+ }
+ }
+ },
+ "sky_color": {
+ "type": "IntTag",
+ "value": 8103167
+ },
+ "water_color": {
+ "type": "IntTag",
+ "value": 937679
+ },
+ "fog_color": {
+ "type": "IntTag",
+ "value": 12638463
+ },
+ "mood_sound": {
+ "type": "CompoundTag",
+ "value": {
+ "offset": {
+ "type": "DoubleTag",
+ "value": 2
+ },
+ "tick_delay": {
+ "type": "IntTag",
+ "value": 6000
+ },
+ "block_search_extent": {
+ "type": "IntTag",
+ "value": 8
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.cave"
+ }
+ }
+ }
+ }
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 1
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:mushroom_fields"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 33
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "temperature": {
+ "type": "FloatTag",
+ "value": 0.9
+ },
+ "downfall": {
+ "type": "FloatTag",
+ "value": 1
+ },
+ "effects": {
+ "type": "CompoundTag",
+ "value": {
+ "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
+ },
+ "mood_sound": {
+ "type": "CompoundTag",
+ "value": {
+ "offset": {
+ "type": "DoubleTag",
+ "value": 2
+ },
+ "tick_delay": {
+ "type": "IntTag",
+ "value": 6000
+ },
+ "block_search_extent": {
+ "type": "IntTag",
+ "value": 8
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.cave"
+ }
+ }
+ }
+ }
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 1
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:nether_wastes"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 34
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "temperature": {
+ "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.nether.nether_wastes"
+ },
+ "min_delay": {
+ "type": "IntTag",
+ "value": 12000
+ }
+ }
+ },
+ "sky_color": {
+ "type": "IntTag",
+ "value": 7254527
+ },
+ "ambient_sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.nether_wastes.loop"
+ },
+ "additions_sound": {
+ "type": "CompoundTag",
+ "value": {
+ "tick_chance": {
+ "type": "DoubleTag",
+ "value": 0.0111
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.nether_wastes.additions"
+ }
+ }
+ },
+ "water_fog_color": {
+ "type": "IntTag",
+ "value": 329011
+ },
+ "water_color": {
+ "type": "IntTag",
+ "value": 4159204
+ },
+ "fog_color": {
+ "type": "IntTag",
+ "value": 3344392
+ },
+ "mood_sound": {
+ "type": "CompoundTag",
+ "value": {
+ "offset": {
+ "type": "DoubleTag",
+ "value": 2
+ },
+ "tick_delay": {
+ "type": "IntTag",
+ "value": 6000
+ },
+ "block_search_extent": {
+ "type": "IntTag",
+ "value": 8
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.nether_wastes.mood"
+ }
+ }
+ }
+ }
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 0
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:ocean"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 35
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "temperature": {
+ "type": "FloatTag",
+ "value": 0.5
+ },
+ "downfall": {
+ "type": "FloatTag",
+ "value": 0.5
+ },
+ "effects": {
+ "type": "CompoundTag",
+ "value": {
+ "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
+ },
+ "mood_sound": {
+ "type": "CompoundTag",
+ "value": {
+ "offset": {
+ "type": "DoubleTag",
+ "value": 2
+ },
+ "tick_delay": {
+ "type": "IntTag",
+ "value": 6000
+ },
+ "block_search_extent": {
+ "type": "IntTag",
+ "value": 8
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.cave"
+ }
+ }
+ }
+ }
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 1
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:old_growth_birch_forest"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 36
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "temperature": {
+ "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": {
+ "replace_current_music": {
+ "type": "ByteTag",
+ "value": 0
+ },
+ "max_delay": {
+ "type": "IntTag",
+ "value": 24000
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:music.overworld.jungle_and_forest"
+ },
+ "min_delay": {
+ "type": "IntTag",
+ "value": 12000
+ }
+ }
+ },
+ "sky_color": {
+ "type": "IntTag",
+ "value": 8037887
+ },
+ "water_color": {
+ "type": "IntTag",
+ "value": 4159204
+ },
+ "fog_color": {
+ "type": "IntTag",
+ "value": 12638463
+ },
+ "mood_sound": {
+ "type": "CompoundTag",
+ "value": {
+ "offset": {
+ "type": "DoubleTag",
+ "value": 2
+ },
+ "tick_delay": {
+ "type": "IntTag",
+ "value": 6000
+ },
+ "block_search_extent": {
+ "type": "IntTag",
+ "value": 8
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.cave"
+ }
+ }
+ }
+ }
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 1
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:old_growth_pine_taiga"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 37
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "temperature": {
+ "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": {
+ "replace_current_music": {
+ "type": "ByteTag",
+ "value": 0
+ },
+ "max_delay": {
+ "type": "IntTag",
+ "value": 24000
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:music.overworld.old_growth_taiga"
+ },
+ "min_delay": {
+ "type": "IntTag",
+ "value": 12000
+ }
+ }
+ },
+ "sky_color": {
+ "type": "IntTag",
+ "value": 8168447
+ },
+ "water_color": {
+ "type": "IntTag",
+ "value": 4159204
+ },
+ "fog_color": {
+ "type": "IntTag",
+ "value": 12638463
+ },
+ "mood_sound": {
+ "type": "CompoundTag",
+ "value": {
+ "offset": {
+ "type": "DoubleTag",
+ "value": 2
+ },
+ "tick_delay": {
+ "type": "IntTag",
+ "value": 6000
+ },
+ "block_search_extent": {
+ "type": "IntTag",
+ "value": 8
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.cave"
+ }
+ }
+ }
+ }
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 1
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:old_growth_spruce_taiga"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 38
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "temperature": {
+ "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": {
+ "replace_current_music": {
+ "type": "ByteTag",
+ "value": 0
+ },
+ "max_delay": {
+ "type": "IntTag",
+ "value": 24000
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:music.overworld.old_growth_taiga"
+ },
+ "min_delay": {
+ "type": "IntTag",
+ "value": 12000
+ }
+ }
+ },
+ "sky_color": {
+ "type": "IntTag",
+ "value": 8233983
+ },
+ "water_color": {
+ "type": "IntTag",
+ "value": 4159204
+ },
+ "fog_color": {
+ "type": "IntTag",
+ "value": 12638463
+ },
+ "mood_sound": {
+ "type": "CompoundTag",
+ "value": {
+ "offset": {
+ "type": "DoubleTag",
+ "value": 2
+ },
+ "tick_delay": {
+ "type": "IntTag",
+ "value": 6000
+ },
+ "block_search_extent": {
+ "type": "IntTag",
+ "value": 8
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.cave"
+ }
+ }
+ }
+ }
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 1
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:plains"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 39
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "temperature": {
+ "type": "FloatTag",
+ "value": 0.8
+ },
+ "downfall": {
+ "type": "FloatTag",
+ "value": 0.4
+ },
+ "effects": {
+ "type": "CompoundTag",
+ "value": {
+ "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
+ },
+ "mood_sound": {
+ "type": "CompoundTag",
+ "value": {
+ "offset": {
+ "type": "DoubleTag",
+ "value": 2
+ },
+ "tick_delay": {
+ "type": "IntTag",
+ "value": 6000
+ },
+ "block_search_extent": {
+ "type": "IntTag",
+ "value": 8
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.cave"
+ }
+ }
+ }
+ }
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 1
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:river"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 40
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "temperature": {
+ "type": "FloatTag",
+ "value": 0.5
+ },
+ "downfall": {
+ "type": "FloatTag",
+ "value": 0.5
+ },
+ "effects": {
+ "type": "CompoundTag",
+ "value": {
+ "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
+ },
+ "mood_sound": {
+ "type": "CompoundTag",
+ "value": {
+ "offset": {
+ "type": "DoubleTag",
+ "value": 2
+ },
+ "tick_delay": {
+ "type": "IntTag",
+ "value": 6000
+ },
+ "block_search_extent": {
+ "type": "IntTag",
+ "value": 8
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.cave"
+ }
+ }
+ }
+ }
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 1
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:savanna"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 41
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "temperature": {
+ "type": "FloatTag",
+ "value": 2
+ },
+ "downfall": {
+ "type": "FloatTag",
+ "value": 0
+ },
+ "effects": {
+ "type": "CompoundTag",
+ "value": {
+ "water_fog_color": {
+ "type": "IntTag",
+ "value": 329011
+ },
+ "sky_color": {
+ "type": "IntTag",
+ "value": 7254527
+ },
+ "water_color": {
+ "type": "IntTag",
+ "value": 4159204
+ },
+ "fog_color": {
+ "type": "IntTag",
+ "value": 12638463
+ },
+ "mood_sound": {
+ "type": "CompoundTag",
+ "value": {
+ "offset": {
+ "type": "DoubleTag",
+ "value": 2
+ },
+ "tick_delay": {
+ "type": "IntTag",
+ "value": 6000
+ },
+ "block_search_extent": {
+ "type": "IntTag",
+ "value": 8
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.cave"
+ }
+ }
+ }
+ }
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 0
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:savanna_plateau"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 42
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "temperature": {
+ "type": "FloatTag",
+ "value": 2
+ },
+ "downfall": {
+ "type": "FloatTag",
+ "value": 0
+ },
+ "effects": {
+ "type": "CompoundTag",
+ "value": {
+ "water_fog_color": {
+ "type": "IntTag",
+ "value": 329011
+ },
+ "sky_color": {
+ "type": "IntTag",
+ "value": 7254527
+ },
+ "water_color": {
+ "type": "IntTag",
+ "value": 4159204
+ },
+ "fog_color": {
+ "type": "IntTag",
+ "value": 12638463
+ },
+ "mood_sound": {
+ "type": "CompoundTag",
+ "value": {
+ "offset": {
+ "type": "DoubleTag",
+ "value": 2
+ },
+ "tick_delay": {
+ "type": "IntTag",
+ "value": 6000
+ },
+ "block_search_extent": {
+ "type": "IntTag",
+ "value": 8
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.cave"
+ }
+ }
+ }
+ }
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 0
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:small_end_islands"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 43
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "temperature": {
+ "type": "FloatTag",
+ "value": 0.5
+ },
+ "downfall": {
+ "type": "FloatTag",
+ "value": 0.5
+ },
+ "effects": {
+ "type": "CompoundTag",
+ "value": {
+ "water_fog_color": {
+ "type": "IntTag",
+ "value": 329011
+ },
+ "sky_color": {
+ "type": "IntTag",
+ "value": 0
+ },
+ "water_color": {
+ "type": "IntTag",
+ "value": 4159204
+ },
+ "fog_color": {
+ "type": "IntTag",
+ "value": 10518688
+ },
+ "mood_sound": {
+ "type": "CompoundTag",
+ "value": {
+ "offset": {
+ "type": "DoubleTag",
+ "value": 2
+ },
+ "tick_delay": {
+ "type": "IntTag",
+ "value": 6000
+ },
+ "block_search_extent": {
+ "type": "IntTag",
+ "value": 8
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.cave"
+ }
+ }
+ }
+ }
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 0
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:snowy_beach"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 44
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "temperature": {
+ "type": "FloatTag",
+ "value": 0.05
+ },
+ "downfall": {
+ "type": "FloatTag",
+ "value": 0.3
+ },
+ "effects": {
+ "type": "CompoundTag",
+ "value": {
+ "water_fog_color": {
+ "type": "IntTag",
+ "value": 329011
+ },
+ "sky_color": {
+ "type": "IntTag",
+ "value": 8364543
+ },
+ "water_color": {
+ "type": "IntTag",
+ "value": 4020182
+ },
+ "fog_color": {
+ "type": "IntTag",
+ "value": 12638463
+ },
+ "mood_sound": {
+ "type": "CompoundTag",
+ "value": {
+ "offset": {
+ "type": "DoubleTag",
+ "value": 2
+ },
+ "tick_delay": {
+ "type": "IntTag",
+ "value": 6000
+ },
+ "block_search_extent": {
+ "type": "IntTag",
+ "value": 8
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.cave"
+ }
+ }
+ }
+ }
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 1
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:snowy_plains"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 45
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "temperature": {
+ "type": "FloatTag",
+ "value": 0
+ },
+ "downfall": {
+ "type": "FloatTag",
+ "value": 0.5
+ },
+ "effects": {
+ "type": "CompoundTag",
+ "value": {
+ "water_fog_color": {
+ "type": "IntTag",
+ "value": 329011
+ },
+ "sky_color": {
+ "type": "IntTag",
+ "value": 8364543
+ },
+ "water_color": {
+ "type": "IntTag",
+ "value": 4159204
+ },
+ "fog_color": {
+ "type": "IntTag",
+ "value": 12638463
+ },
+ "mood_sound": {
+ "type": "CompoundTag",
+ "value": {
+ "offset": {
+ "type": "DoubleTag",
+ "value": 2
+ },
+ "tick_delay": {
+ "type": "IntTag",
+ "value": 6000
+ },
+ "block_search_extent": {
+ "type": "IntTag",
+ "value": 8
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.cave"
+ }
+ }
+ }
+ }
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 1
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:snowy_slopes"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 46
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "temperature": {
+ "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": {
+ "replace_current_music": {
+ "type": "ByteTag",
+ "value": 0
+ },
+ "max_delay": {
+ "type": "IntTag",
+ "value": 24000
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:music.overworld.snowy_slopes"
+ },
+ "min_delay": {
+ "type": "IntTag",
+ "value": 12000
+ }
+ }
+ },
+ "sky_color": {
+ "type": "IntTag",
+ "value": 8560639
+ },
+ "water_color": {
+ "type": "IntTag",
+ "value": 4159204
+ },
+ "fog_color": {
+ "type": "IntTag",
+ "value": 12638463
+ },
+ "mood_sound": {
+ "type": "CompoundTag",
+ "value": {
+ "offset": {
+ "type": "DoubleTag",
+ "value": 2
+ },
+ "tick_delay": {
+ "type": "IntTag",
+ "value": 6000
+ },
+ "block_search_extent": {
+ "type": "IntTag",
+ "value": 8
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.cave"
+ }
+ }
+ }
+ }
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 1
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:snowy_taiga"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 47
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "temperature": {
+ "type": "FloatTag",
+ "value": -0.5
+ },
+ "downfall": {
+ "type": "FloatTag",
+ "value": 0.4
+ },
+ "effects": {
+ "type": "CompoundTag",
+ "value": {
+ "water_fog_color": {
+ "type": "IntTag",
+ "value": 329011
+ },
+ "sky_color": {
+ "type": "IntTag",
+ "value": 8625919
+ },
+ "water_color": {
+ "type": "IntTag",
+ "value": 4020182
+ },
+ "fog_color": {
+ "type": "IntTag",
+ "value": 12638463
+ },
+ "mood_sound": {
+ "type": "CompoundTag",
+ "value": {
+ "offset": {
+ "type": "DoubleTag",
+ "value": 2
+ },
+ "tick_delay": {
+ "type": "IntTag",
+ "value": 6000
+ },
+ "block_search_extent": {
+ "type": "IntTag",
+ "value": 8
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.cave"
+ }
+ }
+ }
+ }
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 1
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:soul_sand_valley"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 48
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "temperature": {
+ "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.nether.soul_sand_valley"
+ },
+ "min_delay": {
+ "type": "IntTag",
+ "value": 12000
+ }
+ }
+ },
+ "sky_color": {
+ "type": "IntTag",
+ "value": 7254527
+ },
+ "ambient_sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.soul_sand_valley.loop"
+ },
+ "additions_sound": {
+ "type": "CompoundTag",
+ "value": {
+ "tick_chance": {
+ "type": "DoubleTag",
+ "value": 0.0111
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.soul_sand_valley.additions"
+ }
+ }
+ },
+ "particle": {
+ "type": "CompoundTag",
+ "value": {
+ "options": {
+ "type": "CompoundTag",
+ "value": {
+ "type": {
+ "type": "StringTag",
+ "value": "minecraft:ash"
+ }
+ }
+ },
+ "probability": {
+ "type": "FloatTag",
+ "value": 0.00625
+ }
+ }
+ },
+ "water_fog_color": {
+ "type": "IntTag",
+ "value": 329011
+ },
+ "water_color": {
+ "type": "IntTag",
+ "value": 4159204
+ },
+ "fog_color": {
+ "type": "IntTag",
+ "value": 1787717
+ },
+ "mood_sound": {
+ "type": "CompoundTag",
+ "value": {
+ "offset": {
+ "type": "DoubleTag",
+ "value": 2
+ },
+ "tick_delay": {
+ "type": "IntTag",
+ "value": 6000
+ },
+ "block_search_extent": {
+ "type": "IntTag",
+ "value": 8
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.soul_sand_valley.mood"
+ }
+ }
+ }
+ }
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 0
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:sparse_jungle"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 49
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "temperature": {
+ "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": {
+ "replace_current_music": {
+ "type": "ByteTag",
+ "value": 0
+ },
+ "max_delay": {
+ "type": "IntTag",
+ "value": 24000
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:music.overworld.jungle_and_forest"
+ },
+ "min_delay": {
+ "type": "IntTag",
+ "value": 12000
+ }
+ }
+ },
+ "sky_color": {
+ "type": "IntTag",
+ "value": 7842047
+ },
+ "water_color": {
+ "type": "IntTag",
+ "value": 4159204
+ },
+ "fog_color": {
+ "type": "IntTag",
+ "value": 12638463
+ },
+ "mood_sound": {
+ "type": "CompoundTag",
+ "value": {
+ "offset": {
+ "type": "DoubleTag",
+ "value": 2
+ },
+ "tick_delay": {
+ "type": "IntTag",
+ "value": 6000
+ },
+ "block_search_extent": {
+ "type": "IntTag",
+ "value": 8
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.cave"
+ }
+ }
+ }
+ }
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 1
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:stony_peaks"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 50
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "temperature": {
+ "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": {
+ "replace_current_music": {
+ "type": "ByteTag",
+ "value": 0
+ },
+ "max_delay": {
+ "type": "IntTag",
+ "value": 24000
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:music.overworld.stony_peaks"
+ },
+ "min_delay": {
+ "type": "IntTag",
+ "value": 12000
+ }
+ }
+ },
+ "sky_color": {
+ "type": "IntTag",
+ "value": 7776511
+ },
+ "water_color": {
+ "type": "IntTag",
+ "value": 4159204
+ },
+ "fog_color": {
+ "type": "IntTag",
+ "value": 12638463
+ },
+ "mood_sound": {
+ "type": "CompoundTag",
+ "value": {
+ "offset": {
+ "type": "DoubleTag",
+ "value": 2
+ },
+ "tick_delay": {
+ "type": "IntTag",
+ "value": 6000
+ },
+ "block_search_extent": {
+ "type": "IntTag",
+ "value": 8
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.cave"
+ }
+ }
+ }
+ }
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 1
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:stony_shore"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 51
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "temperature": {
+ "type": "FloatTag",
+ "value": 0.2
+ },
+ "downfall": {
+ "type": "FloatTag",
+ "value": 0.3
+ },
+ "effects": {
+ "type": "CompoundTag",
+ "value": {
+ "water_fog_color": {
+ "type": "IntTag",
+ "value": 329011
+ },
+ "sky_color": {
+ "type": "IntTag",
+ "value": 8233727
+ },
+ "water_color": {
+ "type": "IntTag",
+ "value": 4159204
+ },
+ "fog_color": {
+ "type": "IntTag",
+ "value": 12638463
+ },
+ "mood_sound": {
+ "type": "CompoundTag",
+ "value": {
+ "offset": {
+ "type": "DoubleTag",
+ "value": 2
+ },
+ "tick_delay": {
+ "type": "IntTag",
+ "value": 6000
+ },
+ "block_search_extent": {
+ "type": "IntTag",
+ "value": 8
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.cave"
+ }
+ }
+ }
+ }
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 1
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:sunflower_plains"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 52
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "temperature": {
+ "type": "FloatTag",
+ "value": 0.8
+ },
+ "downfall": {
+ "type": "FloatTag",
+ "value": 0.4
+ },
+ "effects": {
+ "type": "CompoundTag",
+ "value": {
+ "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
+ },
+ "mood_sound": {
+ "type": "CompoundTag",
+ "value": {
+ "offset": {
+ "type": "DoubleTag",
+ "value": 2
+ },
+ "tick_delay": {
+ "type": "IntTag",
+ "value": 6000
+ },
+ "block_search_extent": {
+ "type": "IntTag",
+ "value": 8
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.cave"
+ }
+ }
+ }
+ }
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 1
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:swamp"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 53
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "temperature": {
+ "type": "FloatTag",
+ "value": 0.8
+ },
+ "downfall": {
+ "type": "FloatTag",
+ "value": 0.9
+ },
+ "effects": {
+ "type": "CompoundTag",
+ "value": {
+ "grass_color_modifier": {
+ "type": "StringTag",
+ "value": "swamp"
+ },
+ "music": {
+ "type": "CompoundTag",
+ "value": {
+ "replace_current_music": {
+ "type": "ByteTag",
+ "value": 0
+ },
+ "max_delay": {
+ "type": "IntTag",
+ "value": 24000
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:music.overworld.swamp"
+ },
+ "min_delay": {
+ "type": "IntTag",
+ "value": 12000
+ }
+ }
+ },
+ "sky_color": {
+ "type": "IntTag",
+ "value": 7907327
+ },
+ "water_fog_color": {
+ "type": "IntTag",
+ "value": 2302743
+ },
+ "foliage_color": {
+ "type": "IntTag",
+ "value": 6975545
+ },
+ "water_color": {
+ "type": "IntTag",
+ "value": 6388580
+ },
+ "fog_color": {
+ "type": "IntTag",
+ "value": 12638463
+ },
+ "mood_sound": {
+ "type": "CompoundTag",
+ "value": {
+ "offset": {
+ "type": "DoubleTag",
+ "value": 2
+ },
+ "tick_delay": {
+ "type": "IntTag",
+ "value": 6000
+ },
+ "block_search_extent": {
+ "type": "IntTag",
+ "value": 8
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.cave"
+ }
+ }
+ }
+ }
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 1
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:taiga"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 54
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "temperature": {
+ "type": "FloatTag",
+ "value": 0.25
+ },
+ "downfall": {
+ "type": "FloatTag",
+ "value": 0.8
+ },
+ "effects": {
+ "type": "CompoundTag",
+ "value": {
+ "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
+ },
+ "mood_sound": {
+ "type": "CompoundTag",
+ "value": {
+ "offset": {
+ "type": "DoubleTag",
+ "value": 2
+ },
+ "tick_delay": {
+ "type": "IntTag",
+ "value": 6000
+ },
+ "block_search_extent": {
+ "type": "IntTag",
+ "value": 8
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.cave"
+ }
+ }
+ }
+ }
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 1
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:the_end"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 55
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "temperature": {
+ "type": "FloatTag",
+ "value": 0.5
+ },
+ "downfall": {
+ "type": "FloatTag",
+ "value": 0.5
+ },
+ "effects": {
+ "type": "CompoundTag",
+ "value": {
+ "water_fog_color": {
+ "type": "IntTag",
+ "value": 329011
+ },
+ "sky_color": {
+ "type": "IntTag",
+ "value": 0
+ },
+ "water_color": {
+ "type": "IntTag",
+ "value": 4159204
+ },
+ "fog_color": {
+ "type": "IntTag",
+ "value": 10518688
+ },
+ "mood_sound": {
+ "type": "CompoundTag",
+ "value": {
+ "offset": {
+ "type": "DoubleTag",
+ "value": 2
+ },
+ "tick_delay": {
+ "type": "IntTag",
+ "value": 6000
+ },
+ "block_search_extent": {
+ "type": "IntTag",
+ "value": 8
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.cave"
+ }
+ }
+ }
+ }
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 0
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:the_void"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 56
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "temperature": {
+ "type": "FloatTag",
+ "value": 0.5
+ },
+ "downfall": {
+ "type": "FloatTag",
+ "value": 0.5
+ },
+ "effects": {
+ "type": "CompoundTag",
+ "value": {
+ "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
+ },
+ "mood_sound": {
+ "type": "CompoundTag",
+ "value": {
+ "offset": {
+ "type": "DoubleTag",
+ "value": 2
+ },
+ "tick_delay": {
+ "type": "IntTag",
+ "value": 6000
+ },
+ "block_search_extent": {
+ "type": "IntTag",
+ "value": 8
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.cave"
+ }
+ }
+ }
+ }
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 0
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:warm_ocean"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 57
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "temperature": {
+ "type": "FloatTag",
+ "value": 0.5
+ },
+ "downfall": {
+ "type": "FloatTag",
+ "value": 0.5
+ },
+ "effects": {
+ "type": "CompoundTag",
+ "value": {
+ "water_fog_color": {
+ "type": "IntTag",
+ "value": 270131
+ },
+ "sky_color": {
+ "type": "IntTag",
+ "value": 8103167
+ },
+ "water_color": {
+ "type": "IntTag",
+ "value": 4445678
+ },
+ "fog_color": {
+ "type": "IntTag",
+ "value": 12638463
+ },
+ "mood_sound": {
+ "type": "CompoundTag",
+ "value": {
+ "offset": {
+ "type": "DoubleTag",
+ "value": 2
+ },
+ "tick_delay": {
+ "type": "IntTag",
+ "value": 6000
+ },
+ "block_search_extent": {
+ "type": "IntTag",
+ "value": 8
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.cave"
+ }
+ }
+ }
+ }
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 1
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:warped_forest"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 58
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "temperature": {
+ "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.nether.warped_forest"
+ },
+ "min_delay": {
+ "type": "IntTag",
+ "value": 12000
+ }
+ }
+ },
+ "sky_color": {
+ "type": "IntTag",
+ "value": 7254527
+ },
+ "ambient_sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.warped_forest.loop"
+ },
+ "additions_sound": {
+ "type": "CompoundTag",
+ "value": {
+ "tick_chance": {
+ "type": "DoubleTag",
+ "value": 0.0111
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.warped_forest.additions"
+ }
+ }
+ },
+ "particle": {
+ "type": "CompoundTag",
+ "value": {
+ "options": {
+ "type": "CompoundTag",
+ "value": {
+ "type": {
+ "type": "StringTag",
+ "value": "minecraft:warped_spore"
+ }
+ }
+ },
+ "probability": {
+ "type": "FloatTag",
+ "value": 0.01428
+ }
+ }
+ },
+ "water_fog_color": {
+ "type": "IntTag",
+ "value": 329011
+ },
+ "water_color": {
+ "type": "IntTag",
+ "value": 4159204
+ },
+ "fog_color": {
+ "type": "IntTag",
+ "value": 1705242
+ },
+ "mood_sound": {
+ "type": "CompoundTag",
+ "value": {
+ "offset": {
+ "type": "DoubleTag",
+ "value": 2
+ },
+ "tick_delay": {
+ "type": "IntTag",
+ "value": 6000
+ },
+ "block_search_extent": {
+ "type": "IntTag",
+ "value": 8
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.warped_forest.mood"
+ }
+ }
+ }
+ }
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 0
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:windswept_forest"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 59
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "temperature": {
+ "type": "FloatTag",
+ "value": 0.2
+ },
+ "downfall": {
+ "type": "FloatTag",
+ "value": 0.3
+ },
+ "effects": {
+ "type": "CompoundTag",
+ "value": {
+ "water_fog_color": {
+ "type": "IntTag",
+ "value": 329011
+ },
+ "sky_color": {
+ "type": "IntTag",
+ "value": 8233727
+ },
+ "water_color": {
+ "type": "IntTag",
+ "value": 4159204
+ },
+ "fog_color": {
+ "type": "IntTag",
+ "value": 12638463
+ },
+ "mood_sound": {
+ "type": "CompoundTag",
+ "value": {
+ "offset": {
+ "type": "DoubleTag",
+ "value": 2
+ },
+ "tick_delay": {
+ "type": "IntTag",
+ "value": 6000
+ },
+ "block_search_extent": {
+ "type": "IntTag",
+ "value": 8
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.cave"
+ }
+ }
+ }
+ }
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 1
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:windswept_gravelly_hills"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 60
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "temperature": {
+ "type": "FloatTag",
+ "value": 0.2
+ },
+ "downfall": {
+ "type": "FloatTag",
+ "value": 0.3
+ },
+ "effects": {
+ "type": "CompoundTag",
+ "value": {
+ "water_fog_color": {
+ "type": "IntTag",
+ "value": 329011
+ },
+ "sky_color": {
+ "type": "IntTag",
+ "value": 8233727
+ },
+ "water_color": {
+ "type": "IntTag",
+ "value": 4159204
+ },
+ "fog_color": {
+ "type": "IntTag",
+ "value": 12638463
+ },
+ "mood_sound": {
+ "type": "CompoundTag",
+ "value": {
+ "offset": {
+ "type": "DoubleTag",
+ "value": 2
+ },
+ "tick_delay": {
+ "type": "IntTag",
+ "value": 6000
+ },
+ "block_search_extent": {
+ "type": "IntTag",
+ "value": 8
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.cave"
+ }
+ }
+ }
+ }
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 1
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:windswept_hills"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 61
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "temperature": {
+ "type": "FloatTag",
+ "value": 0.2
+ },
+ "downfall": {
+ "type": "FloatTag",
+ "value": 0.3
+ },
+ "effects": {
+ "type": "CompoundTag",
+ "value": {
+ "water_fog_color": {
+ "type": "IntTag",
+ "value": 329011
+ },
+ "sky_color": {
+ "type": "IntTag",
+ "value": 8233727
+ },
+ "water_color": {
+ "type": "IntTag",
+ "value": 4159204
+ },
+ "fog_color": {
+ "type": "IntTag",
+ "value": 12638463
+ },
+ "mood_sound": {
+ "type": "CompoundTag",
+ "value": {
+ "offset": {
+ "type": "DoubleTag",
+ "value": 2
+ },
+ "tick_delay": {
+ "type": "IntTag",
+ "value": 6000
+ },
+ "block_search_extent": {
+ "type": "IntTag",
+ "value": 8
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.cave"
+ }
+ }
+ }
+ }
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 1
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:windswept_savanna"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 62
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "temperature": {
+ "type": "FloatTag",
+ "value": 2
+ },
+ "downfall": {
+ "type": "FloatTag",
+ "value": 0
+ },
+ "effects": {
+ "type": "CompoundTag",
+ "value": {
+ "water_fog_color": {
+ "type": "IntTag",
+ "value": 329011
+ },
+ "sky_color": {
+ "type": "IntTag",
+ "value": 7254527
+ },
+ "water_color": {
+ "type": "IntTag",
+ "value": 4159204
+ },
+ "fog_color": {
+ "type": "IntTag",
+ "value": 12638463
+ },
+ "mood_sound": {
+ "type": "CompoundTag",
+ "value": {
+ "offset": {
+ "type": "DoubleTag",
+ "value": 2
+ },
+ "tick_delay": {
+ "type": "IntTag",
+ "value": 6000
+ },
+ "block_search_extent": {
+ "type": "IntTag",
+ "value": 8
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.cave"
+ }
+ }
+ }
+ }
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 0
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:wooded_badlands"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 63
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "temperature": {
+ "type": "FloatTag",
+ "value": 2
+ },
+ "downfall": {
+ "type": "FloatTag",
+ "value": 0
+ },
+ "effects": {
+ "type": "CompoundTag",
+ "value": {
+ "sky_color": {
+ "type": "IntTag",
+ "value": 7254527
+ },
+ "grass_color": {
+ "type": "IntTag",
+ "value": 9470285
+ },
+ "water_fog_color": {
+ "type": "IntTag",
+ "value": 329011
+ },
+ "foliage_color": {
+ "type": "IntTag",
+ "value": 10387789
+ },
+ "water_color": {
+ "type": "IntTag",
+ "value": 4159204
+ },
+ "fog_color": {
+ "type": "IntTag",
+ "value": 12638463
+ },
+ "mood_sound": {
+ "type": "CompoundTag",
+ "value": {
+ "offset": {
+ "type": "DoubleTag",
+ "value": 2
+ },
+ "tick_delay": {
+ "type": "IntTag",
+ "value": 6000
+ },
+ "block_search_extent": {
+ "type": "IntTag",
+ "value": 8
+ },
+ "sound": {
+ "type": "StringTag",
+ "value": "minecraft:ambient.cave"
+ }
+ }
+ }
+ }
+ },
+ "has_precipitation": {
+ "type": "ByteTag",
+ "value": 0
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "minecraft:trim_material": {
+ "type": "CompoundTag",
+ "value": {
+ "type": {
+ "type": "StringTag",
+ "value": "minecraft:trim_material"
+ },
+ "value": {
+ "type": "ListTag",
+ "value": {
+ "type": "CompoundTag",
+ "list": [
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:amethyst"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 0
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "description": {
+ "type": "CompoundTag",
+ "value": {
+ "color": {
+ "type": "StringTag",
+ "value": "#9A5CC6"
+ },
+ "translate": {
+ "type": "StringTag",
+ "value": "trim_material.minecraft.amethyst"
+ }
+ }
+ },
+ "item_model_index": {
+ "type": "FloatTag",
+ "value": 1
+ },
+ "ingredient": {
+ "type": "StringTag",
+ "value": "minecraft:amethyst_shard"
+ },
+ "asset_name": {
+ "type": "StringTag",
+ "value": "amethyst"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:copper"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 1
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "description": {
+ "type": "CompoundTag",
+ "value": {
+ "color": {
+ "type": "StringTag",
+ "value": "#B4684D"
+ },
+ "translate": {
+ "type": "StringTag",
+ "value": "trim_material.minecraft.copper"
+ }
+ }
+ },
+ "item_model_index": {
+ "type": "FloatTag",
+ "value": 0.5
+ },
+ "ingredient": {
+ "type": "StringTag",
+ "value": "minecraft:copper_ingot"
+ },
+ "asset_name": {
+ "type": "StringTag",
+ "value": "copper"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:diamond"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 2
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "description": {
+ "type": "CompoundTag",
+ "value": {
+ "color": {
+ "type": "StringTag",
+ "value": "#6EECD2"
+ },
+ "translate": {
+ "type": "StringTag",
+ "value": "trim_material.minecraft.diamond"
+ }
+ }
+ },
+ "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"
+ },
+ "asset_name": {
+ "type": "StringTag",
+ "value": "diamond"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:emerald"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 3
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "description": {
+ "type": "CompoundTag",
+ "value": {
+ "color": {
+ "type": "StringTag",
+ "value": "#11A036"
+ },
+ "translate": {
+ "type": "StringTag",
+ "value": "trim_material.minecraft.emerald"
+ }
+ }
+ },
+ "item_model_index": {
+ "type": "FloatTag",
+ "value": 0.7
+ },
+ "ingredient": {
+ "type": "StringTag",
+ "value": "minecraft:emerald"
+ },
+ "asset_name": {
+ "type": "StringTag",
+ "value": "emerald"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:gold"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 4
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "description": {
+ "type": "CompoundTag",
+ "value": {
+ "color": {
+ "type": "StringTag",
+ "value": "#DEB12D"
+ },
+ "translate": {
+ "type": "StringTag",
+ "value": "trim_material.minecraft.gold"
+ }
+ }
+ },
+ "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"
+ },
+ "asset_name": {
+ "type": "StringTag",
+ "value": "gold"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:iron"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 5
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "description": {
+ "type": "CompoundTag",
+ "value": {
+ "color": {
+ "type": "StringTag",
+ "value": "#ECECEC"
+ },
+ "translate": {
+ "type": "StringTag",
+ "value": "trim_material.minecraft.iron"
+ }
+ }
+ },
+ "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"
+ },
+ "asset_name": {
+ "type": "StringTag",
+ "value": "iron"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:lapis"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 6
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "description": {
+ "type": "CompoundTag",
+ "value": {
+ "color": {
+ "type": "StringTag",
+ "value": "#416E97"
+ },
+ "translate": {
+ "type": "StringTag",
+ "value": "trim_material.minecraft.lapis"
+ }
+ }
+ },
+ "item_model_index": {
+ "type": "FloatTag",
+ "value": 0.9
+ },
+ "ingredient": {
+ "type": "StringTag",
+ "value": "minecraft:lapis_lazuli"
+ },
+ "asset_name": {
+ "type": "StringTag",
+ "value": "lapis"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:netherite"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 7
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "description": {
+ "type": "CompoundTag",
+ "value": {
+ "color": {
+ "type": "StringTag",
+ "value": "#625859"
+ },
+ "translate": {
+ "type": "StringTag",
+ "value": "trim_material.minecraft.netherite"
+ }
+ }
+ },
+ "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"
+ },
+ "asset_name": {
+ "type": "StringTag",
+ "value": "netherite"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:quartz"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 8
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "description": {
+ "type": "CompoundTag",
+ "value": {
+ "color": {
+ "type": "StringTag",
+ "value": "#E3D4C4"
+ },
+ "translate": {
+ "type": "StringTag",
+ "value": "trim_material.minecraft.quartz"
+ }
+ }
+ },
+ "item_model_index": {
+ "type": "FloatTag",
+ "value": 0.1
+ },
+ "ingredient": {
+ "type": "StringTag",
+ "value": "minecraft:quartz"
+ },
+ "asset_name": {
+ "type": "StringTag",
+ "value": "quartz"
+ }
+ }
+ }
+ },
+ {
+ "name": {
+ "type": "StringTag",
+ "value": "minecraft:redstone"
+ },
+ "id": {
+ "type": "IntTag",
+ "value": 9
+ },
+ "element": {
+ "type": "CompoundTag",
+ "value": {
+ "description": {
+ "type": "CompoundTag",
+ "value": {
+ "color": {
+ "type": "StringTag",
+ "value": "#971607"
+ },
+ "translate": {
+ "type": "StringTag",
+ "value": "trim_material.minecraft.redstone"
+ }
+ }
+ },
+ "item_model_index": {
+ "type": "FloatTag",
+ "value": 0.4
+ },
+ "ingredient": {
+ "type": "StringTag",
+ "value": "minecraft:redstone"
+ },
+ "asset_name": {
+ "type": "StringTag",
+ "value": "redstone"
}
}
}
diff --git a/src/main/resources/mapping.json b/src/main/resources/mapping.json
index bab6de6..e6c6505 100644
--- a/src/main/resources/mapping.json
+++ b/src/main/resources/mapping.json
@@ -12,61 +12,61 @@
"PacketLoginOutPluginMessaging": "0x04"
},
"PlayIn": {
- "0x11": "PacketPlayInKeepAlive",
+ "0x12": "PacketPlayInKeepAlive",
"0x04": "ServerboundChatCommandPacket",
"0x05": "PacketPlayInChat",
- "0x14": "PacketPlayInPositionAndLook",
- "0x13": "PacketPlayInPosition",
- "0x15": "PacketPlayInRotation",
- "0x0C": "PacketPlayInPluginMessaging",
- "0x08": "PacketPlayInTabComplete",
+ "0x15": "PacketPlayInPositionAndLook",
+ "0x14": "PacketPlayInPosition",
+ "0x16": "PacketPlayInRotation",
+ "0x0D": "PacketPlayInPluginMessaging",
+ "0x09": "PacketPlayInTabComplete",
"0x28": "PacketPlayInHeldItemChange",
"0x24": "PacketPlayInResourcePackStatus",
"0x32": "PacketPlayInBlockPlace",
"0x31": "PacketPlayInUseItem",
"0x2B": "PacketPlayInSetCreativeSlot",
- "0x0A": "PacketPlayInWindowClick",
- "0x0B": "PacketPlayInCloseWindow",
- "0x19": "PacketPlayInPickItem",
- "0x1C": "PacketPlayInBlockDig",
+ "0x0B": "PacketPlayInWindowClick",
+ "0x0C": "PacketPlayInCloseWindow",
+ "0x1A": "PacketPlayInPickItem",
+ "0x1D": "PacketPlayInBlockDig",
"0x23": "PacketPlayInItemName"
},
"PlayOut": {
- "PacketPlayOutLogin": "0x24",
- "PacketPlayOutPositionAndLook": "0x38",
- "PacketPlayOutSpawnPosition": "0x4C",
- "ClientboundSystemChatPacket": "0x60",
- "PacketPlayOutPlayerAbilities": "0x30",
- "ClientboundLevelChunkWithLightPacket": "0x20",
- "PacketPlayOutUnloadChunk": "0x1B",
- "PacketPlayOutKeepAlive": "0x1F",
- "PacketPlayOutPlayerInfo": "0x36",
- "PacketPlayOutUpdateViewPosition": "0x4A",
- "PacketPlayOutDisconnect": "0x17",
- "PacketPlayOutPluginMessaging": "0x15",
- "PacketPlayOutTabComplete": "0x0D",
- "PacketPlayOutDeclareCommands": "0x0E",
- "PacketPlayOutRespawn": "0x3E",
- "PacketPlayOutGameState": "0x1C",
- "PacketPlayOutEntityDestroy": "0x3A",
- "PacketPlayOutEntityMetadata": "0x4E",
- "PacketPlayOutSpawnEntity": "0x00",
- "PacketPlayOutHeldItemChange": "0x49",
- "PacketPlayOutPlayerListHeaderFooter": "0x61",
- "PacketPlayOutResourcePackSend": "0x3C",
- "ClientboundSetTitlesAnimationPacket": "0x5C",
- "ClientboundSetTitleTextPacket": "0x5B",
- "ClientboundSetSubtitleTextPacket": "0x59",
- "ClientboundSetActionBarTextPacket": "0x42",
- "ClientboundClearTitlesPacket": "0x0C",
- "PacketPlayOutBoss": "0x0A",
- "PacketPlayOutNamedSoundEffect": "0x5E",
- "PacketPlayOutStopSound": "0x5F",
- "PacketPlayOutWindowItems": "0x10",
- "PacketPlayOutSetSlot": "0x12",
- "PacketPlayOutOpenWindow": "0x2C",
- "PacketPlayOutCloseWindow": "0x0F",
- "PacketPlayOutWindowData": "0x11"
+ "PacketPlayOutLogin": "0x28",
+ "PacketPlayOutPositionAndLook": "0x3C",
+ "PacketPlayOutSpawnPosition": "0x50",
+ "ClientboundSystemChatPacket": "0x64",
+ "PacketPlayOutPlayerAbilities": "0x34",
+ "ClientboundLevelChunkWithLightPacket": "0x24",
+ "PacketPlayOutUnloadChunk": "0x1E",
+ "PacketPlayOutKeepAlive": "0x23",
+ "PacketPlayOutPlayerInfo": "0x3A",
+ "PacketPlayOutUpdateViewPosition": "0x4E",
+ "PacketPlayOutDisconnect": "0x1A",
+ "PacketPlayOutPluginMessaging": "0x17",
+ "PacketPlayOutTabComplete": "0x0F",
+ "PacketPlayOutDeclareCommands": "0x10",
+ "PacketPlayOutRespawn": "0x41",
+ "PacketPlayOutGameState": "0x1F",
+ "PacketPlayOutEntityDestroy": "0x3E",
+ "PacketPlayOutEntityMetadata": "0x52",
+ "PacketPlayOutSpawnEntity": "0x01",
+ "PacketPlayOutHeldItemChange": "0x4D",
+ "PacketPlayOutPlayerListHeaderFooter": "0x65",
+ "PacketPlayOutResourcePackSend": "0x40",
+ "ClientboundSetTitlesAnimationPacket": "0x60",
+ "ClientboundSetTitleTextPacket": "0x5F",
+ "ClientboundSetSubtitleTextPacket": "0x5D",
+ "ClientboundSetActionBarTextPacket": "0x46",
+ "ClientboundClearTitlesPacket": "0x0E",
+ "PacketPlayOutBoss": "0x0B",
+ "PacketPlayOutNamedSoundEffect": "0x62",
+ "PacketPlayOutStopSound": "0x63",
+ "PacketPlayOutWindowItems": "0x12",
+ "PacketPlayOutSetSlot": "0x14",
+ "PacketPlayOutOpenWindow": "0x30",
+ "PacketPlayOutCloseWindow": "0x11",
+ "PacketPlayOutWindowData": "0x13"
},
"StatusIn": {
"0x01": "PacketStatusInPing",
diff --git a/src/main/resources/registries.json b/src/main/resources/registries.json
index 8c07335..c48b501 100644
--- a/src/main/resources/registries.json
+++ b/src/main/resources/registries.json
@@ -258,2920 +258,2998 @@
"default": "minecraft:air",
"entries": {
"minecraft:acacia_button": {
- "protocol_id": 371
+ "protocol_id": 388
},
"minecraft:acacia_door": {
- "protocol_id": 563
+ "protocol_id": 585
},
"minecraft:acacia_fence": {
- "protocol_id": 556
+ "protocol_id": 577
},
"minecraft:acacia_fence_gate": {
- "protocol_id": 549
+ "protocol_id": 569
},
"minecraft:acacia_hanging_sign": {
- "protocol_id": 199
+ "protocol_id": 210
},
"minecraft:acacia_leaves": {
- "protocol_id": 78
+ "protocol_id": 85
},
"minecraft:acacia_log": {
- "protocol_id": 46
+ "protocol_id": 49
},
"minecraft:acacia_planks": {
"protocol_id": 17
},
"minecraft:acacia_pressure_plate": {
- "protocol_id": 223
+ "protocol_id": 236
},
"minecraft:acacia_sapling": {
- "protocol_id": 26
+ "protocol_id": 27
},
"minecraft:acacia_sign": {
- "protocol_id": 179
+ "protocol_id": 188
},
"minecraft:acacia_slab": {
- "protocol_id": 523
+ "protocol_id": 542
},
"minecraft:acacia_stairs": {
- "protocol_id": 438
+ "protocol_id": 456
},
"minecraft:acacia_trapdoor": {
- "protocol_id": 274
+ "protocol_id": 288
},
"minecraft:acacia_wall_hanging_sign": {
- "protocol_id": 209
+ "protocol_id": 221
},
"minecraft:acacia_wall_sign": {
- "protocol_id": 191
+ "protocol_id": 201
},
"minecraft:acacia_wood": {
- "protocol_id": 64
+ "protocol_id": 69
},
"minecraft:activator_rail": {
- "protocol_id": 404
+ "protocol_id": 422
},
"minecraft:air": {
"protocol_id": 0
},
"minecraft:allium": {
- "protocol_id": 141
+ "protocol_id": 150
},
"minecraft:amethyst_block": {
- "protocol_id": 875
+ "protocol_id": 899
},
"minecraft:amethyst_cluster": {
- "protocol_id": 877
+ "protocol_id": 901
},
"minecraft:ancient_debris": {
- "protocol_id": 813
+ "protocol_id": 837
},
"minecraft:andesite": {
"protocol_id": 6
},
"minecraft:andesite_slab": {
- "protocol_id": 727
+ "protocol_id": 751
},
"minecraft:andesite_stairs": {
- "protocol_id": 714
+ "protocol_id": 738
},
"minecraft:andesite_wall": {
- "protocol_id": 739
+ "protocol_id": 763
},
"minecraft:anvil": {
- "protocol_id": 389
+ "protocol_id": 407
},
"minecraft:attached_melon_stem": {
- "protocol_id": 298
+ "protocol_id": 313
},
"minecraft:attached_pumpkin_stem": {
- "protocol_id": 297
+ "protocol_id": 312
},
"minecraft:azalea": {
- "protocol_id": 930
+ "protocol_id": 954
},
"minecraft:azalea_leaves": {
- "protocol_id": 81
+ "protocol_id": 89
},
"minecraft:azure_bluet": {
- "protocol_id": 142
+ "protocol_id": 151
},
"minecraft:bamboo": {
- "protocol_id": 699
+ "protocol_id": 723
},
"minecraft:bamboo_block": {
- "protocol_id": 51
+ "protocol_id": 55
},
"minecraft:bamboo_button": {
- "protocol_id": 374
+ "protocol_id": 392
},
"minecraft:bamboo_door": {
- "protocol_id": 566
+ "protocol_id": 589
},
"minecraft:bamboo_fence": {
- "protocol_id": 559
+ "protocol_id": 581
},
"minecraft:bamboo_fence_gate": {
- "protocol_id": 552
+ "protocol_id": 573
},
"minecraft:bamboo_hanging_sign": {
- "protocol_id": 205
+ "protocol_id": 217
},
"minecraft:bamboo_mosaic": {
- "protocol_id": 21
+ "protocol_id": 22
},
"minecraft:bamboo_mosaic_slab": {
- "protocol_id": 527
- },
- "minecraft:bamboo_mosaic_stairs": {
- "protocol_id": 442
- },
- "minecraft:bamboo_planks": {
- "protocol_id": 20
- },
- "minecraft:bamboo_pressure_plate": {
- "protocol_id": 226
- },
- "minecraft:bamboo_sapling": {
- "protocol_id": 698
- },
- "minecraft:bamboo_sign": {
- "protocol_id": 183
- },
- "minecraft:bamboo_slab": {
- "protocol_id": 526
- },
- "minecraft:bamboo_stairs": {
- "protocol_id": 441
- },
- "minecraft:bamboo_trapdoor": {
- "protocol_id": 277
- },
- "minecraft:bamboo_wall_hanging_sign": {
- "protocol_id": 215
- },
- "minecraft:bamboo_wall_sign": {
- "protocol_id": 195
- },
- "minecraft:barrel": {
- "protocol_id": 746
- },
- "minecraft:barrier": {
- "protocol_id": 444
- },
- "minecraft:basalt": {
- "protocol_id": 244
- },
- "minecraft:beacon": {
- "protocol_id": 336
- },
- "minecraft:bedrock": {
- "protocol_id": 29
- },
- "minecraft:bee_nest": {
- "protocol_id": 808
- },
- "minecraft:beehive": {
- "protocol_id": 809
- },
- "minecraft:beetroots": {
- "protocol_id": 574
- },
- "minecraft:bell": {
- "protocol_id": 755
- },
- "minecraft:big_dripleaf": {
- "protocol_id": 934
- },
- "minecraft:big_dripleaf_stem": {
- "protocol_id": 935
- },
- "minecraft:birch_button": {
- "protocol_id": 369
- },
- "minecraft:birch_door": {
- "protocol_id": 561
- },
- "minecraft:birch_fence": {
- "protocol_id": 554
- },
- "minecraft:birch_fence_gate": {
"protocol_id": 547
},
+ "minecraft:bamboo_mosaic_stairs": {
+ "protocol_id": 461
+ },
+ "minecraft:bamboo_planks": {
+ "protocol_id": 21
+ },
+ "minecraft:bamboo_pressure_plate": {
+ "protocol_id": 240
+ },
+ "minecraft:bamboo_sapling": {
+ "protocol_id": 722
+ },
+ "minecraft:bamboo_sign": {
+ "protocol_id": 193
+ },
+ "minecraft:bamboo_slab": {
+ "protocol_id": 546
+ },
+ "minecraft:bamboo_stairs": {
+ "protocol_id": 460
+ },
+ "minecraft:bamboo_trapdoor": {
+ "protocol_id": 292
+ },
+ "minecraft:bamboo_wall_hanging_sign": {
+ "protocol_id": 228
+ },
+ "minecraft:bamboo_wall_sign": {
+ "protocol_id": 206
+ },
+ "minecraft:barrel": {
+ "protocol_id": 770
+ },
+ "minecraft:barrier": {
+ "protocol_id": 463
+ },
+ "minecraft:basalt": {
+ "protocol_id": 258
+ },
+ "minecraft:beacon": {
+ "protocol_id": 351
+ },
+ "minecraft:bedrock": {
+ "protocol_id": 31
+ },
+ "minecraft:bee_nest": {
+ "protocol_id": 832
+ },
+ "minecraft:beehive": {
+ "protocol_id": 833
+ },
+ "minecraft:beetroots": {
+ "protocol_id": 598
+ },
+ "minecraft:bell": {
+ "protocol_id": 779
+ },
+ "minecraft:big_dripleaf": {
+ "protocol_id": 959
+ },
+ "minecraft:big_dripleaf_stem": {
+ "protocol_id": 960
+ },
+ "minecraft:birch_button": {
+ "protocol_id": 386
+ },
+ "minecraft:birch_door": {
+ "protocol_id": 583
+ },
+ "minecraft:birch_fence": {
+ "protocol_id": 575
+ },
+ "minecraft:birch_fence_gate": {
+ "protocol_id": 567
+ },
"minecraft:birch_hanging_sign": {
- "protocol_id": 198
+ "protocol_id": 209
},
"minecraft:birch_leaves": {
- "protocol_id": 76
+ "protocol_id": 83
},
"minecraft:birch_log": {
- "protocol_id": 44
+ "protocol_id": 47
},
"minecraft:birch_planks": {
"protocol_id": 15
},
"minecraft:birch_pressure_plate": {
- "protocol_id": 221
+ "protocol_id": 234
},
"minecraft:birch_sapling": {
- "protocol_id": 24
+ "protocol_id": 25
},
"minecraft:birch_sign": {
- "protocol_id": 178
+ "protocol_id": 187
},
"minecraft:birch_slab": {
- "protocol_id": 521
+ "protocol_id": 540
},
"minecraft:birch_stairs": {
- "protocol_id": 333
+ "protocol_id": 348
},
"minecraft:birch_trapdoor": {
- "protocol_id": 272
+ "protocol_id": 286
},
"minecraft:birch_wall_hanging_sign": {
- "protocol_id": 208
+ "protocol_id": 220
},
"minecraft:birch_wall_sign": {
- "protocol_id": 190
+ "protocol_id": 200
},
"minecraft:birch_wood": {
- "protocol_id": 62
+ "protocol_id": 67
},
"minecraft:black_banner": {
- "protocol_id": 498
+ "protocol_id": 517
},
"minecraft:black_bed": {
- "protocol_id": 109
+ "protocol_id": 117
},
"minecraft:black_candle": {
- "protocol_id": 857
+ "protocol_id": 881
},
"minecraft:black_candle_cake": {
- "protocol_id": 874
+ "protocol_id": 898
},
"minecraft:black_carpet": {
- "protocol_id": 473
+ "protocol_id": 492
},
"minecraft:black_concrete": {
- "protocol_id": 634
+ "protocol_id": 658
},
"minecraft:black_concrete_powder": {
- "protocol_id": 650
+ "protocol_id": 674
},
"minecraft:black_glazed_terracotta": {
- "protocol_id": 618
+ "protocol_id": 642
},
"minecraft:black_shulker_box": {
- "protocol_id": 602
+ "protocol_id": 626
},
"minecraft:black_stained_glass": {
- "protocol_id": 269
+ "protocol_id": 283
},
"minecraft:black_stained_glass_pane": {
- "protocol_id": 437
+ "protocol_id": 455
},
"minecraft:black_terracotta": {
- "protocol_id": 421
+ "protocol_id": 439
},
"minecraft:black_wall_banner": {
- "protocol_id": 514
+ "protocol_id": 533
},
"minecraft:black_wool": {
- "protocol_id": 136
+ "protocol_id": 144
},
"minecraft:blackstone": {
- "protocol_id": 821
+ "protocol_id": 845
},
"minecraft:blackstone_slab": {
- "protocol_id": 824
+ "protocol_id": 848
},
"minecraft:blackstone_stairs": {
- "protocol_id": 822
+ "protocol_id": 846
},
"minecraft:blackstone_wall": {
- "protocol_id": 823
+ "protocol_id": 847
},
"minecraft:blast_furnace": {
- "protocol_id": 748
+ "protocol_id": 772
},
"minecraft:blue_banner": {
- "protocol_id": 494
+ "protocol_id": 513
},
"minecraft:blue_bed": {
- "protocol_id": 105
+ "protocol_id": 113
},
"minecraft:blue_candle": {
- "protocol_id": 853
+ "protocol_id": 877
},
"minecraft:blue_candle_cake": {
- "protocol_id": 870
+ "protocol_id": 894
},
"minecraft:blue_carpet": {
- "protocol_id": 469
+ "protocol_id": 488
},
"minecraft:blue_concrete": {
- "protocol_id": 630
+ "protocol_id": 654
},
"minecraft:blue_concrete_powder": {
- "protocol_id": 646
+ "protocol_id": 670
},
"minecraft:blue_glazed_terracotta": {
- "protocol_id": 614
+ "protocol_id": 638
},
"minecraft:blue_ice": {
- "protocol_id": 696
+ "protocol_id": 720
},
"minecraft:blue_orchid": {
- "protocol_id": 140
+ "protocol_id": 149
},
"minecraft:blue_shulker_box": {
- "protocol_id": 598
+ "protocol_id": 622
},
"minecraft:blue_stained_glass": {
- "protocol_id": 265
+ "protocol_id": 279
},
"minecraft:blue_stained_glass_pane": {
- "protocol_id": 433
+ "protocol_id": 451
},
"minecraft:blue_terracotta": {
- "protocol_id": 417
+ "protocol_id": 435
},
"minecraft:blue_wall_banner": {
- "protocol_id": 510
+ "protocol_id": 529
},
"minecraft:blue_wool": {
- "protocol_id": 132
+ "protocol_id": 140
},
"minecraft:bone_block": {
- "protocol_id": 583
+ "protocol_id": 607
},
"minecraft:bookshelf": {
- "protocol_id": 157
+ "protocol_id": 166
},
"minecraft:brain_coral": {
- "protocol_id": 671
+ "protocol_id": 695
},
"minecraft:brain_coral_block": {
- "protocol_id": 661
+ "protocol_id": 685
},
"minecraft:brain_coral_fan": {
- "protocol_id": 681
+ "protocol_id": 705
},
"minecraft:brain_coral_wall_fan": {
- "protocol_id": 691
+ "protocol_id": 715
},
"minecraft:brewing_stand": {
- "protocol_id": 314
+ "protocol_id": 329
},
"minecraft:brick_slab": {
- "protocol_id": 534
+ "protocol_id": 554
},
"minecraft:brick_stairs": {
- "protocol_id": 304
+ "protocol_id": 319
},
"minecraft:brick_wall": {
- "protocol_id": 731
+ "protocol_id": 755
},
"minecraft:bricks": {
- "protocol_id": 155
+ "protocol_id": 164
},
"minecraft:brown_banner": {
- "protocol_id": 495
+ "protocol_id": 514
},
"minecraft:brown_bed": {
- "protocol_id": 106
+ "protocol_id": 114
},
"minecraft:brown_candle": {
- "protocol_id": 854
+ "protocol_id": 878
},
"minecraft:brown_candle_cake": {
- "protocol_id": 871
+ "protocol_id": 895
},
"minecraft:brown_carpet": {
- "protocol_id": 470
+ "protocol_id": 489
},
"minecraft:brown_concrete": {
- "protocol_id": 631
+ "protocol_id": 655
},
"minecraft:brown_concrete_powder": {
- "protocol_id": 647
+ "protocol_id": 671
},
"minecraft:brown_glazed_terracotta": {
- "protocol_id": 615
+ "protocol_id": 639
},
"minecraft:brown_mushroom": {
- "protocol_id": 151
+ "protocol_id": 160
},
"minecraft:brown_mushroom_block": {
- "protocol_id": 290
+ "protocol_id": 305
},
"minecraft:brown_shulker_box": {
- "protocol_id": 599
+ "protocol_id": 623
},
"minecraft:brown_stained_glass": {
- "protocol_id": 266
+ "protocol_id": 280
},
"minecraft:brown_stained_glass_pane": {
- "protocol_id": 434
+ "protocol_id": 452
},
"minecraft:brown_terracotta": {
- "protocol_id": 418
+ "protocol_id": 436
},
"minecraft:brown_wall_banner": {
- "protocol_id": 511
+ "protocol_id": 530
},
"minecraft:brown_wool": {
- "protocol_id": 133
+ "protocol_id": 141
},
"minecraft:bubble_column": {
- "protocol_id": 703
+ "protocol_id": 727
},
"minecraft:bubble_coral": {
- "protocol_id": 672
+ "protocol_id": 696
},
"minecraft:bubble_coral_block": {
- "protocol_id": 662
+ "protocol_id": 686
},
"minecraft:bubble_coral_fan": {
- "protocol_id": 682
+ "protocol_id": 706
},
"minecraft:bubble_coral_wall_fan": {
- "protocol_id": 692
+ "protocol_id": 716
},
"minecraft:budding_amethyst": {
- "protocol_id": 876
+ "protocol_id": 900
},
"minecraft:cactus": {
- "protocol_id": 235
+ "protocol_id": 249
},
"minecraft:cake": {
- "protocol_id": 252
+ "protocol_id": 266
},
"minecraft:calcite": {
- "protocol_id": 882
+ "protocol_id": 906
},
"minecraft:campfire": {
- "protocol_id": 758
+ "protocol_id": 782
},
"minecraft:candle": {
- "protocol_id": 841
+ "protocol_id": 865
},
"minecraft:candle_cake": {
- "protocol_id": 858
+ "protocol_id": 882
},
"minecraft:carrots": {
- "protocol_id": 365
+ "protocol_id": 382
},
"minecraft:cartography_table": {
- "protocol_id": 749
+ "protocol_id": 773
},
"minecraft:carved_pumpkin": {
- "protocol_id": 250
+ "protocol_id": 264
},
"minecraft:cauldron": {
- "protocol_id": 315
+ "protocol_id": 330
},
"minecraft:cave_air": {
- "protocol_id": 702
+ "protocol_id": 726
},
"minecraft:cave_vines": {
- "protocol_id": 927
+ "protocol_id": 951
},
"minecraft:cave_vines_plant": {
- "protocol_id": 928
+ "protocol_id": 952
},
"minecraft:chain": {
- "protocol_id": 294
+ "protocol_id": 309
},
"minecraft:chain_command_block": {
+ "protocol_id": 602
+ },
+ "minecraft:cherry_button": {
+ "protocol_id": 389
+ },
+ "minecraft:cherry_door": {
+ "protocol_id": 586
+ },
+ "minecraft:cherry_fence": {
"protocol_id": 578
},
+ "minecraft:cherry_fence_gate": {
+ "protocol_id": 570
+ },
+ "minecraft:cherry_hanging_sign": {
+ "protocol_id": 211
+ },
+ "minecraft:cherry_leaves": {
+ "protocol_id": 86
+ },
+ "minecraft:cherry_log": {
+ "protocol_id": 50
+ },
+ "minecraft:cherry_planks": {
+ "protocol_id": 18
+ },
+ "minecraft:cherry_pressure_plate": {
+ "protocol_id": 237
+ },
+ "minecraft:cherry_sapling": {
+ "protocol_id": 28
+ },
+ "minecraft:cherry_sign": {
+ "protocol_id": 189
+ },
+ "minecraft:cherry_slab": {
+ "protocol_id": 543
+ },
+ "minecraft:cherry_stairs": {
+ "protocol_id": 457
+ },
+ "minecraft:cherry_trapdoor": {
+ "protocol_id": 289
+ },
+ "minecraft:cherry_wall_hanging_sign": {
+ "protocol_id": 222
+ },
+ "minecraft:cherry_wall_sign": {
+ "protocol_id": 202
+ },
+ "minecraft:cherry_wood": {
+ "protocol_id": 70
+ },
"minecraft:chest": {
- "protocol_id": 167
+ "protocol_id": 176
},
"minecraft:chipped_anvil": {
- "protocol_id": 390
+ "protocol_id": 408
},
"minecraft:chiseled_bookshelf": {
- "protocol_id": 158
+ "protocol_id": 167
},
"minecraft:chiseled_deepslate": {
- "protocol_id": 957
+ "protocol_id": 982
},
"minecraft:chiseled_nether_bricks": {
- "protocol_id": 838
+ "protocol_id": 862
},
"minecraft:chiseled_polished_blackstone": {
- "protocol_id": 828
+ "protocol_id": 852
},
"minecraft:chiseled_quartz_block": {
- "protocol_id": 401
+ "protocol_id": 419
},
"minecraft:chiseled_red_sandstone": {
- "protocol_id": 516
+ "protocol_id": 535
},
"minecraft:chiseled_sandstone": {
- "protocol_id": 91
+ "protocol_id": 99
},
"minecraft:chiseled_stone_bricks": {
- "protocol_id": 281
+ "protocol_id": 296
},
"minecraft:chorus_flower": {
- "protocol_id": 569
+ "protocol_id": 592
},
"minecraft:chorus_plant": {
- "protocol_id": 568
+ "protocol_id": 591
},
"minecraft:clay": {
- "protocol_id": 236
+ "protocol_id": 250
},
"minecraft:coal_block": {
- "protocol_id": 475
+ "protocol_id": 494
},
"minecraft:coal_ore": {
- "protocol_id": 39
+ "protocol_id": 42
},
"minecraft:coarse_dirt": {
"protocol_id": 10
},
"minecraft:cobbled_deepslate": {
- "protocol_id": 941
+ "protocol_id": 966
},
"minecraft:cobbled_deepslate_slab": {
- "protocol_id": 943
+ "protocol_id": 968
},
"minecraft:cobbled_deepslate_stairs": {
- "protocol_id": 942
+ "protocol_id": 967
},
"minecraft:cobbled_deepslate_wall": {
- "protocol_id": 944
+ "protocol_id": 969
},
"minecraft:cobblestone": {
"protocol_id": 12
},
"minecraft:cobblestone_slab": {
- "protocol_id": 533
+ "protocol_id": 553
},
"minecraft:cobblestone_stairs": {
- "protocol_id": 187
+ "protocol_id": 197
},
"minecraft:cobblestone_wall": {
- "protocol_id": 337
+ "protocol_id": 352
},
"minecraft:cobweb": {
- "protocol_id": 113
+ "protocol_id": 121
},
"minecraft:cocoa": {
- "protocol_id": 324
+ "protocol_id": 339
},
"minecraft:command_block": {
- "protocol_id": 335
+ "protocol_id": 350
},
"minecraft:comparator": {
- "protocol_id": 395
+ "protocol_id": 413
},
"minecraft:composter": {
- "protocol_id": 806
+ "protocol_id": 830
},
"minecraft:conduit": {
- "protocol_id": 697
+ "protocol_id": 721
},
"minecraft:copper_block": {
- "protocol_id": 893
+ "protocol_id": 917
},
"minecraft:copper_ore": {
- "protocol_id": 894
+ "protocol_id": 918
},
"minecraft:cornflower": {
- "protocol_id": 148
+ "protocol_id": 157
},
"minecraft:cracked_deepslate_bricks": {
- "protocol_id": 958
+ "protocol_id": 983
},
"minecraft:cracked_deepslate_tiles": {
- "protocol_id": 959
+ "protocol_id": 984
},
"minecraft:cracked_nether_bricks": {
- "protocol_id": 839
+ "protocol_id": 863
},
"minecraft:cracked_polished_blackstone_bricks": {
- "protocol_id": 827
- },
- "minecraft:cracked_stone_bricks": {
- "protocol_id": 280
- },
- "minecraft:crafting_table": {
- "protocol_id": 172
- },
- "minecraft:creeper_head": {
- "protocol_id": 383
- },
- "minecraft:creeper_wall_head": {
- "protocol_id": 384
- },
- "minecraft:crimson_button": {
- "protocol_id": 796
- },
- "minecraft:crimson_door": {
- "protocol_id": 798
- },
- "minecraft:crimson_fence": {
- "protocol_id": 788
- },
- "minecraft:crimson_fence_gate": {
- "protocol_id": 792
- },
- "minecraft:crimson_fungus": {
- "protocol_id": 775
- },
- "minecraft:crimson_hanging_sign": {
- "protocol_id": 202
- },
- "minecraft:crimson_hyphae": {
- "protocol_id": 772
- },
- "minecraft:crimson_nylium": {
- "protocol_id": 774
- },
- "minecraft:crimson_planks": {
- "protocol_id": 782
- },
- "minecraft:crimson_pressure_plate": {
- "protocol_id": 786
- },
- "minecraft:crimson_roots": {
- "protocol_id": 781
- },
- "minecraft:crimson_sign": {
- "protocol_id": 800
- },
- "minecraft:crimson_slab": {
- "protocol_id": 784
- },
- "minecraft:crimson_stairs": {
- "protocol_id": 794
- },
- "minecraft:crimson_stem": {
- "protocol_id": 770
- },
- "minecraft:crimson_trapdoor": {
- "protocol_id": 790
- },
- "minecraft:crimson_wall_hanging_sign": {
- "protocol_id": 213
- },
- "minecraft:crimson_wall_sign": {
- "protocol_id": 802
- },
- "minecraft:crying_obsidian": {
- "protocol_id": 814
- },
- "minecraft:cut_copper": {
- "protocol_id": 899
- },
- "minecraft:cut_copper_slab": {
- "protocol_id": 907
- },
- "minecraft:cut_copper_stairs": {
- "protocol_id": 903
- },
- "minecraft:cut_red_sandstone": {
- "protocol_id": 517
- },
- "minecraft:cut_red_sandstone_slab": {
- "protocol_id": 540
- },
- "minecraft:cut_sandstone": {
- "protocol_id": 92
- },
- "minecraft:cut_sandstone_slab": {
- "protocol_id": 531
- },
- "minecraft:cyan_banner": {
- "protocol_id": 492
- },
- "minecraft:cyan_bed": {
- "protocol_id": 103
- },
- "minecraft:cyan_candle": {
"protocol_id": 851
},
- "minecraft:cyan_candle_cake": {
- "protocol_id": 868
+ "minecraft:cracked_stone_bricks": {
+ "protocol_id": 295
},
- "minecraft:cyan_carpet": {
- "protocol_id": 467
- },
- "minecraft:cyan_concrete": {
- "protocol_id": 628
- },
- "minecraft:cyan_concrete_powder": {
- "protocol_id": 644
- },
- "minecraft:cyan_glazed_terracotta": {
- "protocol_id": 612
- },
- "minecraft:cyan_shulker_box": {
- "protocol_id": 596
- },
- "minecraft:cyan_stained_glass": {
- "protocol_id": 263
- },
- "minecraft:cyan_stained_glass_pane": {
- "protocol_id": 431
- },
- "minecraft:cyan_terracotta": {
- "protocol_id": 415
- },
- "minecraft:cyan_wall_banner": {
- "protocol_id": 508
- },
- "minecraft:cyan_wool": {
- "protocol_id": 130
- },
- "minecraft:damaged_anvil": {
- "protocol_id": 391
- },
- "minecraft:dandelion": {
- "protocol_id": 138
- },
- "minecraft:dark_oak_button": {
- "protocol_id": 372
- },
- "minecraft:dark_oak_door": {
- "protocol_id": 564
- },
- "minecraft:dark_oak_fence": {
- "protocol_id": 557
- },
- "minecraft:dark_oak_fence_gate": {
- "protocol_id": 550
- },
- "minecraft:dark_oak_hanging_sign": {
- "protocol_id": 201
- },
- "minecraft:dark_oak_leaves": {
- "protocol_id": 79
- },
- "minecraft:dark_oak_log": {
- "protocol_id": 47
- },
- "minecraft:dark_oak_planks": {
- "protocol_id": 18
- },
- "minecraft:dark_oak_pressure_plate": {
- "protocol_id": 224
- },
- "minecraft:dark_oak_sapling": {
- "protocol_id": 27
- },
- "minecraft:dark_oak_sign": {
+ "minecraft:crafting_table": {
"protocol_id": 181
},
- "minecraft:dark_oak_slab": {
- "protocol_id": 524
+ "minecraft:creeper_head": {
+ "protocol_id": 401
},
- "minecraft:dark_oak_stairs": {
- "protocol_id": 439
+ "minecraft:creeper_wall_head": {
+ "protocol_id": 402
},
- "minecraft:dark_oak_trapdoor": {
- "protocol_id": 275
+ "minecraft:crimson_button": {
+ "protocol_id": 820
},
- "minecraft:dark_oak_wall_hanging_sign": {
- "protocol_id": 211
+ "minecraft:crimson_door": {
+ "protocol_id": 822
},
- "minecraft:dark_oak_wall_sign": {
- "protocol_id": 193
+ "minecraft:crimson_fence": {
+ "protocol_id": 812
},
- "minecraft:dark_oak_wood": {
- "protocol_id": 65
+ "minecraft:crimson_fence_gate": {
+ "protocol_id": 816
},
- "minecraft:dark_prismarine": {
- "protocol_id": 449
+ "minecraft:crimson_fungus": {
+ "protocol_id": 799
},
- "minecraft:dark_prismarine_slab": {
- "protocol_id": 455
+ "minecraft:crimson_hanging_sign": {
+ "protocol_id": 214
},
- "minecraft:dark_prismarine_stairs": {
- "protocol_id": 452
+ "minecraft:crimson_hyphae": {
+ "protocol_id": 796
},
- "minecraft:daylight_detector": {
- "protocol_id": 396
+ "minecraft:crimson_nylium": {
+ "protocol_id": 798
},
- "minecraft:dead_brain_coral": {
- "protocol_id": 666
+ "minecraft:crimson_planks": {
+ "protocol_id": 806
},
- "minecraft:dead_brain_coral_block": {
- "protocol_id": 656
+ "minecraft:crimson_pressure_plate": {
+ "protocol_id": 810
},
- "minecraft:dead_brain_coral_fan": {
- "protocol_id": 676
+ "minecraft:crimson_roots": {
+ "protocol_id": 805
},
- "minecraft:dead_brain_coral_wall_fan": {
- "protocol_id": 686
+ "minecraft:crimson_sign": {
+ "protocol_id": 824
},
- "minecraft:dead_bubble_coral": {
- "protocol_id": 667
+ "minecraft:crimson_slab": {
+ "protocol_id": 808
},
- "minecraft:dead_bubble_coral_block": {
- "protocol_id": 657
+ "minecraft:crimson_stairs": {
+ "protocol_id": 818
},
- "minecraft:dead_bubble_coral_fan": {
- "protocol_id": 677
+ "minecraft:crimson_stem": {
+ "protocol_id": 794
},
- "minecraft:dead_bubble_coral_wall_fan": {
- "protocol_id": 687
+ "minecraft:crimson_trapdoor": {
+ "protocol_id": 814
},
- "minecraft:dead_bush": {
- "protocol_id": 116
+ "minecraft:crimson_wall_hanging_sign": {
+ "protocol_id": 226
},
- "minecraft:dead_fire_coral": {
- "protocol_id": 668
+ "minecraft:crimson_wall_sign": {
+ "protocol_id": 826
},
- "minecraft:dead_fire_coral_block": {
- "protocol_id": 658
+ "minecraft:crying_obsidian": {
+ "protocol_id": 838
},
- "minecraft:dead_fire_coral_fan": {
- "protocol_id": 678
+ "minecraft:cut_copper": {
+ "protocol_id": 923
},
- "minecraft:dead_fire_coral_wall_fan": {
- "protocol_id": 688
+ "minecraft:cut_copper_slab": {
+ "protocol_id": 931
},
- "minecraft:dead_horn_coral": {
- "protocol_id": 669
+ "minecraft:cut_copper_stairs": {
+ "protocol_id": 927
},
- "minecraft:dead_horn_coral_block": {
- "protocol_id": 659
+ "minecraft:cut_red_sandstone": {
+ "protocol_id": 536
},
- "minecraft:dead_horn_coral_fan": {
- "protocol_id": 679
+ "minecraft:cut_red_sandstone_slab": {
+ "protocol_id": 560
},
- "minecraft:dead_horn_coral_wall_fan": {
- "protocol_id": 689
+ "minecraft:cut_sandstone": {
+ "protocol_id": 100
},
- "minecraft:dead_tube_coral": {
- "protocol_id": 665
+ "minecraft:cut_sandstone_slab": {
+ "protocol_id": 551
},
- "minecraft:dead_tube_coral_block": {
- "protocol_id": 655
+ "minecraft:cyan_banner": {
+ "protocol_id": 511
},
- "minecraft:dead_tube_coral_fan": {
- "protocol_id": 675
- },
- "minecraft:dead_tube_coral_wall_fan": {
- "protocol_id": 685
- },
- "minecraft:deepslate": {
- "protocol_id": 940
- },
- "minecraft:deepslate_brick_slab": {
- "protocol_id": 955
- },
- "minecraft:deepslate_brick_stairs": {
- "protocol_id": 954
- },
- "minecraft:deepslate_brick_wall": {
- "protocol_id": 956
- },
- "minecraft:deepslate_bricks": {
- "protocol_id": 953
- },
- "minecraft:deepslate_coal_ore": {
- "protocol_id": 40
- },
- "minecraft:deepslate_copper_ore": {
- "protocol_id": 895
- },
- "minecraft:deepslate_diamond_ore": {
- "protocol_id": 170
- },
- "minecraft:deepslate_emerald_ore": {
- "protocol_id": 327
- },
- "minecraft:deepslate_gold_ore": {
- "protocol_id": 36
- },
- "minecraft:deepslate_iron_ore": {
- "protocol_id": 38
- },
- "minecraft:deepslate_lapis_ore": {
- "protocol_id": 87
- },
- "minecraft:deepslate_redstone_ore": {
- "protocol_id": 228
- },
- "minecraft:deepslate_tile_slab": {
- "protocol_id": 951
- },
- "minecraft:deepslate_tile_stairs": {
- "protocol_id": 950
- },
- "minecraft:deepslate_tile_wall": {
- "protocol_id": 952
- },
- "minecraft:deepslate_tiles": {
- "protocol_id": 949
- },
- "minecraft:detector_rail": {
+ "minecraft:cyan_bed": {
"protocol_id": 111
},
+ "minecraft:cyan_candle": {
+ "protocol_id": 875
+ },
+ "minecraft:cyan_candle_cake": {
+ "protocol_id": 892
+ },
+ "minecraft:cyan_carpet": {
+ "protocol_id": 486
+ },
+ "minecraft:cyan_concrete": {
+ "protocol_id": 652
+ },
+ "minecraft:cyan_concrete_powder": {
+ "protocol_id": 668
+ },
+ "minecraft:cyan_glazed_terracotta": {
+ "protocol_id": 636
+ },
+ "minecraft:cyan_shulker_box": {
+ "protocol_id": 620
+ },
+ "minecraft:cyan_stained_glass": {
+ "protocol_id": 277
+ },
+ "minecraft:cyan_stained_glass_pane": {
+ "protocol_id": 449
+ },
+ "minecraft:cyan_terracotta": {
+ "protocol_id": 433
+ },
+ "minecraft:cyan_wall_banner": {
+ "protocol_id": 527
+ },
+ "minecraft:cyan_wool": {
+ "protocol_id": 138
+ },
+ "minecraft:damaged_anvil": {
+ "protocol_id": 409
+ },
+ "minecraft:dandelion": {
+ "protocol_id": 146
+ },
+ "minecraft:dark_oak_button": {
+ "protocol_id": 390
+ },
+ "minecraft:dark_oak_door": {
+ "protocol_id": 587
+ },
+ "minecraft:dark_oak_fence": {
+ "protocol_id": 579
+ },
+ "minecraft:dark_oak_fence_gate": {
+ "protocol_id": 571
+ },
+ "minecraft:dark_oak_hanging_sign": {
+ "protocol_id": 213
+ },
+ "minecraft:dark_oak_leaves": {
+ "protocol_id": 87
+ },
+ "minecraft:dark_oak_log": {
+ "protocol_id": 51
+ },
+ "minecraft:dark_oak_planks": {
+ "protocol_id": 19
+ },
+ "minecraft:dark_oak_pressure_plate": {
+ "protocol_id": 238
+ },
+ "minecraft:dark_oak_sapling": {
+ "protocol_id": 29
+ },
+ "minecraft:dark_oak_sign": {
+ "protocol_id": 191
+ },
+ "minecraft:dark_oak_slab": {
+ "protocol_id": 544
+ },
+ "minecraft:dark_oak_stairs": {
+ "protocol_id": 458
+ },
+ "minecraft:dark_oak_trapdoor": {
+ "protocol_id": 290
+ },
+ "minecraft:dark_oak_wall_hanging_sign": {
+ "protocol_id": 224
+ },
+ "minecraft:dark_oak_wall_sign": {
+ "protocol_id": 204
+ },
+ "minecraft:dark_oak_wood": {
+ "protocol_id": 71
+ },
+ "minecraft:dark_prismarine": {
+ "protocol_id": 468
+ },
+ "minecraft:dark_prismarine_slab": {
+ "protocol_id": 474
+ },
+ "minecraft:dark_prismarine_stairs": {
+ "protocol_id": 471
+ },
+ "minecraft:daylight_detector": {
+ "protocol_id": 414
+ },
+ "minecraft:dead_brain_coral": {
+ "protocol_id": 690
+ },
+ "minecraft:dead_brain_coral_block": {
+ "protocol_id": 680
+ },
+ "minecraft:dead_brain_coral_fan": {
+ "protocol_id": 700
+ },
+ "minecraft:dead_brain_coral_wall_fan": {
+ "protocol_id": 710
+ },
+ "minecraft:dead_bubble_coral": {
+ "protocol_id": 691
+ },
+ "minecraft:dead_bubble_coral_block": {
+ "protocol_id": 681
+ },
+ "minecraft:dead_bubble_coral_fan": {
+ "protocol_id": 701
+ },
+ "minecraft:dead_bubble_coral_wall_fan": {
+ "protocol_id": 711
+ },
+ "minecraft:dead_bush": {
+ "protocol_id": 124
+ },
+ "minecraft:dead_fire_coral": {
+ "protocol_id": 692
+ },
+ "minecraft:dead_fire_coral_block": {
+ "protocol_id": 682
+ },
+ "minecraft:dead_fire_coral_fan": {
+ "protocol_id": 702
+ },
+ "minecraft:dead_fire_coral_wall_fan": {
+ "protocol_id": 712
+ },
+ "minecraft:dead_horn_coral": {
+ "protocol_id": 693
+ },
+ "minecraft:dead_horn_coral_block": {
+ "protocol_id": 683
+ },
+ "minecraft:dead_horn_coral_fan": {
+ "protocol_id": 703
+ },
+ "minecraft:dead_horn_coral_wall_fan": {
+ "protocol_id": 713
+ },
+ "minecraft:dead_tube_coral": {
+ "protocol_id": 689
+ },
+ "minecraft:dead_tube_coral_block": {
+ "protocol_id": 679
+ },
+ "minecraft:dead_tube_coral_fan": {
+ "protocol_id": 699
+ },
+ "minecraft:dead_tube_coral_wall_fan": {
+ "protocol_id": 709
+ },
+ "minecraft:decorated_pot": {
+ "protocol_id": 997
+ },
+ "minecraft:deepslate": {
+ "protocol_id": 965
+ },
+ "minecraft:deepslate_brick_slab": {
+ "protocol_id": 980
+ },
+ "minecraft:deepslate_brick_stairs": {
+ "protocol_id": 979
+ },
+ "minecraft:deepslate_brick_wall": {
+ "protocol_id": 981
+ },
+ "minecraft:deepslate_bricks": {
+ "protocol_id": 978
+ },
+ "minecraft:deepslate_coal_ore": {
+ "protocol_id": 43
+ },
+ "minecraft:deepslate_copper_ore": {
+ "protocol_id": 919
+ },
+ "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": 171
+ "protocol_id": 180
},
"minecraft:diamond_ore": {
- "protocol_id": 169
+ "protocol_id": 178
},
"minecraft:diorite": {
"protocol_id": 4
},
"minecraft:diorite_slab": {
- "protocol_id": 730
+ "protocol_id": 754
},
"minecraft:diorite_stairs": {
- "protocol_id": 717
+ "protocol_id": 741
},
"minecraft:diorite_wall": {
- "protocol_id": 743
+ "protocol_id": 767
},
"minecraft:dirt": {
"protocol_id": 9
},
"minecraft:dirt_path": {
- "protocol_id": 575
+ "protocol_id": 599
},
"minecraft:dispenser": {
- "protocol_id": 89
+ "protocol_id": 97
},
"minecraft:dragon_egg": {
- "protocol_id": 322
+ "protocol_id": 337
},
"minecraft:dragon_head": {
- "protocol_id": 385
+ "protocol_id": 403
},
"minecraft:dragon_wall_head": {
- "protocol_id": 386
+ "protocol_id": 404
},
"minecraft:dried_kelp_block": {
- "protocol_id": 653
+ "protocol_id": 677
},
"minecraft:dripstone_block": {
- "protocol_id": 926
+ "protocol_id": 950
},
"minecraft:dropper": {
- "protocol_id": 405
+ "protocol_id": 423
},
"minecraft:emerald_block": {
- "protocol_id": 331
+ "protocol_id": 346
},
"minecraft:emerald_ore": {
- "protocol_id": 326
+ "protocol_id": 341
},
"minecraft:enchanting_table": {
- "protocol_id": 313
- },
- "minecraft:end_gateway": {
- "protocol_id": 576
- },
- "minecraft:end_portal": {
- "protocol_id": 319
- },
- "minecraft:end_portal_frame": {
- "protocol_id": 320
- },
- "minecraft:end_rod": {
- "protocol_id": 567
- },
- "minecraft:end_stone": {
- "protocol_id": 321
- },
- "minecraft:end_stone_brick_slab": {
- "protocol_id": 723
- },
- "minecraft:end_stone_brick_stairs": {
- "protocol_id": 709
- },
- "minecraft:end_stone_brick_wall": {
- "protocol_id": 742
- },
- "minecraft:end_stone_bricks": {
- "protocol_id": 573
- },
- "minecraft:ender_chest": {
"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": 892
+ "protocol_id": 916
},
"minecraft:exposed_cut_copper": {
- "protocol_id": 898
+ "protocol_id": 922
},
"minecraft:exposed_cut_copper_slab": {
- "protocol_id": 906
+ "protocol_id": 930
},
"minecraft:exposed_cut_copper_stairs": {
- "protocol_id": 902
+ "protocol_id": 926
},
"minecraft:farmland": {
- "protocol_id": 174
+ "protocol_id": 183
},
"minecraft:fern": {
- "protocol_id": 115
+ "protocol_id": 123
},
"minecraft:fire": {
- "protocol_id": 163
+ "protocol_id": 172
},
"minecraft:fire_coral": {
- "protocol_id": 673
+ "protocol_id": 697
},
"minecraft:fire_coral_block": {
- "protocol_id": 663
+ "protocol_id": 687
},
"minecraft:fire_coral_fan": {
- "protocol_id": 683
+ "protocol_id": 707
},
"minecraft:fire_coral_wall_fan": {
- "protocol_id": 693
+ "protocol_id": 717
},
"minecraft:fletching_table": {
- "protocol_id": 750
+ "protocol_id": 774
},
"minecraft:flower_pot": {
- "protocol_id": 339
+ "protocol_id": 354
},
"minecraft:flowering_azalea": {
- "protocol_id": 931
+ "protocol_id": 955
},
"minecraft:flowering_azalea_leaves": {
- "protocol_id": 82
+ "protocol_id": 90
},
"minecraft:frogspawn": {
- "protocol_id": 970
+ "protocol_id": 995
},
"minecraft:frosted_ice": {
- "protocol_id": 579
+ "protocol_id": 603
},
"minecraft:furnace": {
- "protocol_id": 175
+ "protocol_id": 184
},
"minecraft:gilded_blackstone": {
- "protocol_id": 832
+ "protocol_id": 856
},
"minecraft:glass": {
- "protocol_id": 85
+ "protocol_id": 93
},
"minecraft:glass_pane": {
- "protocol_id": 295
+ "protocol_id": 310
},
"minecraft:glow_lichen": {
- "protocol_id": 302
+ "protocol_id": 317
},
"minecraft:glowstone": {
- "protocol_id": 248
+ "protocol_id": 262
},
"minecraft:gold_block": {
- "protocol_id": 153
+ "protocol_id": 162
},
"minecraft:gold_ore": {
- "protocol_id": 35
+ "protocol_id": 38
},
"minecraft:granite": {
"protocol_id": 2
},
"minecraft:granite_slab": {
- "protocol_id": 726
+ "protocol_id": 750
},
"minecraft:granite_stairs": {
- "protocol_id": 713
+ "protocol_id": 737
},
"minecraft:granite_wall": {
- "protocol_id": 735
+ "protocol_id": 759
},
"minecraft:grass": {
- "protocol_id": 114
+ "protocol_id": 122
},
"minecraft:grass_block": {
"protocol_id": 8
},
"minecraft:gravel": {
- "protocol_id": 34
- },
- "minecraft:gray_banner": {
- "protocol_id": 490
- },
- "minecraft:gray_bed": {
- "protocol_id": 101
- },
- "minecraft:gray_candle": {
- "protocol_id": 849
- },
- "minecraft:gray_candle_cake": {
- "protocol_id": 866
- },
- "minecraft:gray_carpet": {
- "protocol_id": 465
- },
- "minecraft:gray_concrete": {
- "protocol_id": 626
- },
- "minecraft:gray_concrete_powder": {
- "protocol_id": 642
- },
- "minecraft:gray_glazed_terracotta": {
- "protocol_id": 610
- },
- "minecraft:gray_shulker_box": {
- "protocol_id": 594
- },
- "minecraft:gray_stained_glass": {
- "protocol_id": 261
- },
- "minecraft:gray_stained_glass_pane": {
- "protocol_id": 429
- },
- "minecraft:gray_terracotta": {
- "protocol_id": 413
- },
- "minecraft:gray_wall_banner": {
- "protocol_id": 506
- },
- "minecraft:gray_wool": {
- "protocol_id": 128
- },
- "minecraft:green_banner": {
- "protocol_id": 496
- },
- "minecraft:green_bed": {
- "protocol_id": 107
- },
- "minecraft:green_candle": {
- "protocol_id": 855
- },
- "minecraft:green_candle_cake": {
- "protocol_id": 872
- },
- "minecraft:green_carpet": {
- "protocol_id": 471
- },
- "minecraft:green_concrete": {
- "protocol_id": 632
- },
- "minecraft:green_concrete_powder": {
- "protocol_id": 648
- },
- "minecraft:green_glazed_terracotta": {
- "protocol_id": 616
- },
- "minecraft:green_shulker_box": {
- "protocol_id": 600
- },
- "minecraft:green_stained_glass": {
- "protocol_id": 267
- },
- "minecraft:green_stained_glass_pane": {
- "protocol_id": 435
- },
- "minecraft:green_terracotta": {
- "protocol_id": 419
- },
- "minecraft:green_wall_banner": {
- "protocol_id": 512
- },
- "minecraft:green_wool": {
- "protocol_id": 134
- },
- "minecraft:grindstone": {
- "protocol_id": 751
- },
- "minecraft:hanging_roots": {
- "protocol_id": 937
- },
- "minecraft:hay_block": {
- "protocol_id": 457
- },
- "minecraft:heavy_weighted_pressure_plate": {
- "protocol_id": 394
- },
- "minecraft:honey_block": {
- "protocol_id": 810
- },
- "minecraft:honeycomb_block": {
- "protocol_id": 811
- },
- "minecraft:hopper": {
- "protocol_id": 399
- },
- "minecraft:horn_coral": {
- "protocol_id": 674
- },
- "minecraft:horn_coral_block": {
- "protocol_id": 664
- },
- "minecraft:horn_coral_fan": {
- "protocol_id": 684
- },
- "minecraft:horn_coral_wall_fan": {
- "protocol_id": 694
- },
- "minecraft:ice": {
- "protocol_id": 233
- },
- "minecraft:infested_chiseled_stone_bricks": {
- "protocol_id": 289
- },
- "minecraft:infested_cobblestone": {
- "protocol_id": 285
- },
- "minecraft:infested_cracked_stone_bricks": {
- "protocol_id": 288
- },
- "minecraft:infested_deepslate": {
- "protocol_id": 960
- },
- "minecraft:infested_mossy_stone_bricks": {
- "protocol_id": 287
- },
- "minecraft:infested_stone": {
- "protocol_id": 284
- },
- "minecraft:infested_stone_bricks": {
- "protocol_id": 286
- },
- "minecraft:iron_bars": {
- "protocol_id": 293
- },
- "minecraft:iron_block": {
- "protocol_id": 154
- },
- "minecraft:iron_door": {
- "protocol_id": 218
- },
- "minecraft:iron_ore": {
"protocol_id": 37
},
+ "minecraft:gray_banner": {
+ "protocol_id": 509
+ },
+ "minecraft:gray_bed": {
+ "protocol_id": 109
+ },
+ "minecraft:gray_candle": {
+ "protocol_id": 873
+ },
+ "minecraft:gray_candle_cake": {
+ "protocol_id": 890
+ },
+ "minecraft:gray_carpet": {
+ "protocol_id": 484
+ },
+ "minecraft:gray_concrete": {
+ "protocol_id": 650
+ },
+ "minecraft:gray_concrete_powder": {
+ "protocol_id": 666
+ },
+ "minecraft:gray_glazed_terracotta": {
+ "protocol_id": 634
+ },
+ "minecraft:gray_shulker_box": {
+ "protocol_id": 618
+ },
+ "minecraft:gray_stained_glass": {
+ "protocol_id": 275
+ },
+ "minecraft:gray_stained_glass_pane": {
+ "protocol_id": 447
+ },
+ "minecraft:gray_terracotta": {
+ "protocol_id": 431
+ },
+ "minecraft:gray_wall_banner": {
+ "protocol_id": 525
+ },
+ "minecraft:gray_wool": {
+ "protocol_id": 136
+ },
+ "minecraft:green_banner": {
+ "protocol_id": 515
+ },
+ "minecraft:green_bed": {
+ "protocol_id": 115
+ },
+ "minecraft:green_candle": {
+ "protocol_id": 879
+ },
+ "minecraft:green_candle_cake": {
+ "protocol_id": 896
+ },
+ "minecraft:green_carpet": {
+ "protocol_id": 490
+ },
+ "minecraft:green_concrete": {
+ "protocol_id": 656
+ },
+ "minecraft:green_concrete_powder": {
+ "protocol_id": 672
+ },
+ "minecraft:green_glazed_terracotta": {
+ "protocol_id": 640
+ },
+ "minecraft:green_shulker_box": {
+ "protocol_id": 624
+ },
+ "minecraft:green_stained_glass": {
+ "protocol_id": 281
+ },
+ "minecraft:green_stained_glass_pane": {
+ "protocol_id": 453
+ },
+ "minecraft:green_terracotta": {
+ "protocol_id": 437
+ },
+ "minecraft:green_wall_banner": {
+ "protocol_id": 531
+ },
+ "minecraft:green_wool": {
+ "protocol_id": 142
+ },
+ "minecraft:grindstone": {
+ "protocol_id": 775
+ },
+ "minecraft:hanging_roots": {
+ "protocol_id": 962
+ },
+ "minecraft:hay_block": {
+ "protocol_id": 476
+ },
+ "minecraft:heavy_weighted_pressure_plate": {
+ "protocol_id": 412
+ },
+ "minecraft:honey_block": {
+ "protocol_id": 834
+ },
+ "minecraft:honeycomb_block": {
+ "protocol_id": 835
+ },
+ "minecraft:hopper": {
+ "protocol_id": 417
+ },
+ "minecraft:horn_coral": {
+ "protocol_id": 698
+ },
+ "minecraft:horn_coral_block": {
+ "protocol_id": 688
+ },
+ "minecraft:horn_coral_fan": {
+ "protocol_id": 708
+ },
+ "minecraft:horn_coral_wall_fan": {
+ "protocol_id": 718
+ },
+ "minecraft:ice": {
+ "protocol_id": 247
+ },
+ "minecraft:infested_chiseled_stone_bricks": {
+ "protocol_id": 304
+ },
+ "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:iron_bars": {
+ "protocol_id": 308
+ },
+ "minecraft:iron_block": {
+ "protocol_id": 163
+ },
+ "minecraft:iron_door": {
+ "protocol_id": 231
+ },
+ "minecraft:iron_ore": {
+ "protocol_id": 40
+ },
"minecraft:iron_trapdoor": {
- "protocol_id": 446
+ "protocol_id": 465
},
"minecraft:jack_o_lantern": {
- "protocol_id": 251
+ "protocol_id": 265
},
"minecraft:jigsaw": {
- "protocol_id": 805
+ "protocol_id": 829
},
"minecraft:jukebox": {
- "protocol_id": 238
+ "protocol_id": 252
},
"minecraft:jungle_button": {
- "protocol_id": 370
+ "protocol_id": 387
},
"minecraft:jungle_door": {
- "protocol_id": 562
+ "protocol_id": 584
},
"minecraft:jungle_fence": {
- "protocol_id": 555
+ "protocol_id": 576
},
"minecraft:jungle_fence_gate": {
- "protocol_id": 548
+ "protocol_id": 568
},
"minecraft:jungle_hanging_sign": {
- "protocol_id": 200
+ "protocol_id": 212
},
"minecraft:jungle_leaves": {
- "protocol_id": 77
+ "protocol_id": 84
},
"minecraft:jungle_log": {
- "protocol_id": 45
+ "protocol_id": 48
},
"minecraft:jungle_planks": {
"protocol_id": 16
},
"minecraft:jungle_pressure_plate": {
- "protocol_id": 222
+ "protocol_id": 235
},
"minecraft:jungle_sapling": {
- "protocol_id": 25
+ "protocol_id": 26
},
"minecraft:jungle_sign": {
- "protocol_id": 180
+ "protocol_id": 190
},
"minecraft:jungle_slab": {
- "protocol_id": 522
+ "protocol_id": 541
},
"minecraft:jungle_stairs": {
- "protocol_id": 334
+ "protocol_id": 349
},
"minecraft:jungle_trapdoor": {
- "protocol_id": 273
+ "protocol_id": 287
},
"minecraft:jungle_wall_hanging_sign": {
- "protocol_id": 210
+ "protocol_id": 223
},
"minecraft:jungle_wall_sign": {
- "protocol_id": 192
+ "protocol_id": 203
},
"minecraft:jungle_wood": {
- "protocol_id": 63
+ "protocol_id": 68
},
"minecraft:kelp": {
- "protocol_id": 651
+ "protocol_id": 675
},
"minecraft:kelp_plant": {
- "protocol_id": 652
+ "protocol_id": 676
},
"minecraft:ladder": {
- "protocol_id": 185
+ "protocol_id": 195
},
"minecraft:lantern": {
- "protocol_id": 756
+ "protocol_id": 780
},
"minecraft:lapis_block": {
- "protocol_id": 88
- },
- "minecraft:lapis_ore": {
- "protocol_id": 86
- },
- "minecraft:large_amethyst_bud": {
- "protocol_id": 878
- },
- "minecraft:large_fern": {
- "protocol_id": 482
- },
- "minecraft:lava": {
- "protocol_id": 31
- },
- "minecraft:lava_cauldron": {
- "protocol_id": 317
- },
- "minecraft:lectern": {
- "protocol_id": 752
- },
- "minecraft:lever": {
- "protocol_id": 216
- },
- "minecraft:light": {
- "protocol_id": 445
- },
- "minecraft:light_blue_banner": {
- "protocol_id": 486
- },
- "minecraft:light_blue_bed": {
- "protocol_id": 97
- },
- "minecraft:light_blue_candle": {
- "protocol_id": 845
- },
- "minecraft:light_blue_candle_cake": {
- "protocol_id": 862
- },
- "minecraft:light_blue_carpet": {
- "protocol_id": 461
- },
- "minecraft:light_blue_concrete": {
- "protocol_id": 622
- },
- "minecraft:light_blue_concrete_powder": {
- "protocol_id": 638
- },
- "minecraft:light_blue_glazed_terracotta": {
- "protocol_id": 606
- },
- "minecraft:light_blue_shulker_box": {
- "protocol_id": 590
- },
- "minecraft:light_blue_stained_glass": {
- "protocol_id": 257
- },
- "minecraft:light_blue_stained_glass_pane": {
- "protocol_id": 425
- },
- "minecraft:light_blue_terracotta": {
- "protocol_id": 409
- },
- "minecraft:light_blue_wall_banner": {
- "protocol_id": 502
- },
- "minecraft:light_blue_wool": {
- "protocol_id": 124
- },
- "minecraft:light_gray_banner": {
- "protocol_id": 491
- },
- "minecraft:light_gray_bed": {
- "protocol_id": 102
- },
- "minecraft:light_gray_candle": {
- "protocol_id": 850
- },
- "minecraft:light_gray_candle_cake": {
- "protocol_id": 867
- },
- "minecraft:light_gray_carpet": {
- "protocol_id": 466
- },
- "minecraft:light_gray_concrete": {
- "protocol_id": 627
- },
- "minecraft:light_gray_concrete_powder": {
- "protocol_id": 643
- },
- "minecraft:light_gray_glazed_terracotta": {
- "protocol_id": 611
- },
- "minecraft:light_gray_shulker_box": {
- "protocol_id": 595
- },
- "minecraft:light_gray_stained_glass": {
- "protocol_id": 262
- },
- "minecraft:light_gray_stained_glass_pane": {
- "protocol_id": 430
- },
- "minecraft:light_gray_terracotta": {
- "protocol_id": 414
- },
- "minecraft:light_gray_wall_banner": {
- "protocol_id": 507
- },
- "minecraft:light_gray_wool": {
- "protocol_id": 129
- },
- "minecraft:light_weighted_pressure_plate": {
- "protocol_id": 393
- },
- "minecraft:lightning_rod": {
- "protocol_id": 924
- },
- "minecraft:lilac": {
- "protocol_id": 478
- },
- "minecraft:lily_of_the_valley": {
- "protocol_id": 150
- },
- "minecraft:lily_pad": {
- "protocol_id": 308
- },
- "minecraft:lime_banner": {
- "protocol_id": 488
- },
- "minecraft:lime_bed": {
- "protocol_id": 99
- },
- "minecraft:lime_candle": {
- "protocol_id": 847
- },
- "minecraft:lime_candle_cake": {
- "protocol_id": 864
- },
- "minecraft:lime_carpet": {
- "protocol_id": 463
- },
- "minecraft:lime_concrete": {
- "protocol_id": 624
- },
- "minecraft:lime_concrete_powder": {
- "protocol_id": 640
- },
- "minecraft:lime_glazed_terracotta": {
- "protocol_id": 608
- },
- "minecraft:lime_shulker_box": {
- "protocol_id": 592
- },
- "minecraft:lime_stained_glass": {
- "protocol_id": 259
- },
- "minecraft:lime_stained_glass_pane": {
- "protocol_id": 427
- },
- "minecraft:lime_terracotta": {
- "protocol_id": 411
- },
- "minecraft:lime_wall_banner": {
- "protocol_id": 504
- },
- "minecraft:lime_wool": {
- "protocol_id": 126
- },
- "minecraft:lodestone": {
- "protocol_id": 820
- },
- "minecraft:loom": {
- "protocol_id": 745
- },
- "minecraft:magenta_banner": {
- "protocol_id": 485
- },
- "minecraft:magenta_bed": {
"protocol_id": 96
},
- "minecraft:magenta_candle": {
- "protocol_id": 844
+ "minecraft:lapis_ore": {
+ "protocol_id": 94
},
- "minecraft:magenta_candle_cake": {
- "protocol_id": 861
+ "minecraft:large_amethyst_bud": {
+ "protocol_id": 902
},
- "minecraft:magenta_carpet": {
- "protocol_id": 460
- },
- "minecraft:magenta_concrete": {
- "protocol_id": 621
- },
- "minecraft:magenta_concrete_powder": {
- "protocol_id": 637
- },
- "minecraft:magenta_glazed_terracotta": {
- "protocol_id": 605
- },
- "minecraft:magenta_shulker_box": {
- "protocol_id": 589
- },
- "minecraft:magenta_stained_glass": {
- "protocol_id": 256
- },
- "minecraft:magenta_stained_glass_pane": {
- "protocol_id": 424
- },
- "minecraft:magenta_terracotta": {
- "protocol_id": 408
- },
- "minecraft:magenta_wall_banner": {
+ "minecraft:large_fern": {
"protocol_id": 501
},
- "minecraft:magenta_wool": {
- "protocol_id": 123
+ "minecraft:lava": {
+ "protocol_id": 33
},
- "minecraft:magma_block": {
- "protocol_id": 580
+ "minecraft:lava_cauldron": {
+ "protocol_id": 332
},
- "minecraft:mangrove_button": {
- "protocol_id": 373
+ "minecraft:lectern": {
+ "protocol_id": 776
},
- "minecraft:mangrove_door": {
- "protocol_id": 565
+ "minecraft:lever": {
+ "protocol_id": 229
},
- "minecraft:mangrove_fence": {
- "protocol_id": 558
+ "minecraft:light": {
+ "protocol_id": 464
},
- "minecraft:mangrove_fence_gate": {
- "protocol_id": 551
+ "minecraft:light_blue_banner": {
+ "protocol_id": 505
},
- "minecraft:mangrove_hanging_sign": {
- "protocol_id": 204
+ "minecraft:light_blue_bed": {
+ "protocol_id": 105
},
- "minecraft:mangrove_leaves": {
- "protocol_id": 80
+ "minecraft:light_blue_candle": {
+ "protocol_id": 869
},
- "minecraft:mangrove_log": {
- "protocol_id": 48
+ "minecraft:light_blue_candle_cake": {
+ "protocol_id": 886
},
- "minecraft:mangrove_planks": {
- "protocol_id": 19
+ "minecraft:light_blue_carpet": {
+ "protocol_id": 480
},
- "minecraft:mangrove_pressure_plate": {
- "protocol_id": 225
+ "minecraft:light_blue_concrete": {
+ "protocol_id": 646
},
- "minecraft:mangrove_propagule": {
- "protocol_id": 28
+ "minecraft:light_blue_concrete_powder": {
+ "protocol_id": 662
},
- "minecraft:mangrove_roots": {
- "protocol_id": 49
+ "minecraft:light_blue_glazed_terracotta": {
+ "protocol_id": 630
},
- "minecraft:mangrove_sign": {
- "protocol_id": 182
+ "minecraft:light_blue_shulker_box": {
+ "protocol_id": 614
},
- "minecraft:mangrove_slab": {
- "protocol_id": 525
+ "minecraft:light_blue_stained_glass": {
+ "protocol_id": 271
},
- "minecraft:mangrove_stairs": {
- "protocol_id": 440
+ "minecraft:light_blue_stained_glass_pane": {
+ "protocol_id": 443
},
- "minecraft:mangrove_trapdoor": {
+ "minecraft:light_blue_terracotta": {
+ "protocol_id": 427
+ },
+ "minecraft:light_blue_wall_banner": {
+ "protocol_id": 521
+ },
+ "minecraft:light_blue_wool": {
+ "protocol_id": 132
+ },
+ "minecraft:light_gray_banner": {
+ "protocol_id": 510
+ },
+ "minecraft:light_gray_bed": {
+ "protocol_id": 110
+ },
+ "minecraft:light_gray_candle": {
+ "protocol_id": 874
+ },
+ "minecraft:light_gray_candle_cake": {
+ "protocol_id": 891
+ },
+ "minecraft:light_gray_carpet": {
+ "protocol_id": 485
+ },
+ "minecraft:light_gray_concrete": {
+ "protocol_id": 651
+ },
+ "minecraft:light_gray_concrete_powder": {
+ "protocol_id": 667
+ },
+ "minecraft:light_gray_glazed_terracotta": {
+ "protocol_id": 635
+ },
+ "minecraft:light_gray_shulker_box": {
+ "protocol_id": 619
+ },
+ "minecraft:light_gray_stained_glass": {
"protocol_id": 276
},
- "minecraft:mangrove_wall_hanging_sign": {
- "protocol_id": 212
+ "minecraft:light_gray_stained_glass_pane": {
+ "protocol_id": 448
},
- "minecraft:mangrove_wall_sign": {
- "protocol_id": 194
+ "minecraft:light_gray_terracotta": {
+ "protocol_id": 432
},
- "minecraft:mangrove_wood": {
- "protocol_id": 66
+ "minecraft:light_gray_wall_banner": {
+ "protocol_id": 526
},
- "minecraft:medium_amethyst_bud": {
- "protocol_id": 879
- },
- "minecraft:melon": {
- "protocol_id": 296
- },
- "minecraft:melon_stem": {
- "protocol_id": 300
- },
- "minecraft:moss_block": {
- "protocol_id": 933
- },
- "minecraft:moss_carpet": {
- "protocol_id": 932
- },
- "minecraft:mossy_cobblestone": {
- "protocol_id": 159
- },
- "minecraft:mossy_cobblestone_slab": {
- "protocol_id": 722
- },
- "minecraft:mossy_cobblestone_stairs": {
- "protocol_id": 708
- },
- "minecraft:mossy_cobblestone_wall": {
- "protocol_id": 338
- },
- "minecraft:mossy_stone_brick_slab": {
- "protocol_id": 720
- },
- "minecraft:mossy_stone_brick_stairs": {
- "protocol_id": 706
- },
- "minecraft:mossy_stone_brick_wall": {
- "protocol_id": 734
- },
- "minecraft:mossy_stone_bricks": {
- "protocol_id": 279
- },
- "minecraft:moving_piston": {
+ "minecraft:light_gray_wool": {
"protocol_id": 137
},
- "minecraft:mud": {
- "protocol_id": 939
+ "minecraft:light_weighted_pressure_plate": {
+ "protocol_id": 411
},
- "minecraft:mud_brick_slab": {
- "protocol_id": 536
+ "minecraft:lightning_rod": {
+ "protocol_id": 948
},
- "minecraft:mud_brick_stairs": {
- "protocol_id": 306
+ "minecraft:lilac": {
+ "protocol_id": 497
},
- "minecraft:mud_brick_wall": {
- "protocol_id": 737
+ "minecraft:lily_of_the_valley": {
+ "protocol_id": 159
},
- "minecraft:mud_bricks": {
- "protocol_id": 283
+ "minecraft:lily_pad": {
+ "protocol_id": 323
},
- "minecraft:muddy_mangrove_roots": {
- "protocol_id": 50
+ "minecraft:lime_banner": {
+ "protocol_id": 507
},
- "minecraft:mushroom_stem": {
- "protocol_id": 292
+ "minecraft:lime_bed": {
+ "protocol_id": 107
},
- "minecraft:mycelium": {
- "protocol_id": 307
+ "minecraft:lime_candle": {
+ "protocol_id": 871
},
- "minecraft:nether_brick_fence": {
- "protocol_id": 310
+ "minecraft:lime_candle_cake": {
+ "protocol_id": 888
},
- "minecraft:nether_brick_slab": {
- "protocol_id": 537
+ "minecraft:lime_carpet": {
+ "protocol_id": 482
},
- "minecraft:nether_brick_stairs": {
- "protocol_id": 311
+ "minecraft:lime_concrete": {
+ "protocol_id": 648
},
- "minecraft:nether_brick_wall": {
- "protocol_id": 738
+ "minecraft:lime_concrete_powder": {
+ "protocol_id": 664
},
- "minecraft:nether_bricks": {
- "protocol_id": 309
+ "minecraft:lime_glazed_terracotta": {
+ "protocol_id": 632
},
- "minecraft:nether_gold_ore": {
- "protocol_id": 41
+ "minecraft:lime_shulker_box": {
+ "protocol_id": 616
},
- "minecraft:nether_portal": {
- "protocol_id": 249
+ "minecraft:lime_stained_glass": {
+ "protocol_id": 273
},
- "minecraft:nether_quartz_ore": {
- "protocol_id": 398
+ "minecraft:lime_stained_glass_pane": {
+ "protocol_id": 445
},
- "minecraft:nether_sprouts": {
+ "minecraft:lime_terracotta": {
+ "protocol_id": 429
+ },
+ "minecraft:lime_wall_banner": {
+ "protocol_id": 523
+ },
+ "minecraft:lime_wool": {
+ "protocol_id": 134
+ },
+ "minecraft:lodestone": {
+ "protocol_id": 844
+ },
+ "minecraft:loom": {
"protocol_id": 769
},
- "minecraft:nether_wart": {
- "protocol_id": 312
+ "minecraft:magenta_banner": {
+ "protocol_id": 504
},
- "minecraft:nether_wart_block": {
- "protocol_id": 581
+ "minecraft:magenta_bed": {
+ "protocol_id": 104
},
- "minecraft:netherite_block": {
- "protocol_id": 812
+ "minecraft:magenta_candle": {
+ "protocol_id": 868
},
- "minecraft:netherrack": {
- "protocol_id": 241
+ "minecraft:magenta_candle_cake": {
+ "protocol_id": 885
},
- "minecraft:note_block": {
- "protocol_id": 93
+ "minecraft:magenta_carpet": {
+ "protocol_id": 479
},
- "minecraft:oak_button": {
- "protocol_id": 367
+ "minecraft:magenta_concrete": {
+ "protocol_id": 645
},
- "minecraft:oak_door": {
- "protocol_id": 184
+ "minecraft:magenta_concrete_powder": {
+ "protocol_id": 661
},
- "minecraft:oak_fence": {
+ "minecraft:magenta_glazed_terracotta": {
+ "protocol_id": 629
+ },
+ "minecraft:magenta_shulker_box": {
+ "protocol_id": 613
+ },
+ "minecraft:magenta_stained_glass": {
+ "protocol_id": 270
+ },
+ "minecraft:magenta_stained_glass_pane": {
+ "protocol_id": 442
+ },
+ "minecraft:magenta_terracotta": {
+ "protocol_id": 426
+ },
+ "minecraft:magenta_wall_banner": {
+ "protocol_id": 520
+ },
+ "minecraft:magenta_wool": {
+ "protocol_id": 131
+ },
+ "minecraft:magma_block": {
+ "protocol_id": 604
+ },
+ "minecraft:mangrove_button": {
+ "protocol_id": 391
+ },
+ "minecraft:mangrove_door": {
+ "protocol_id": 588
+ },
+ "minecraft:mangrove_fence": {
+ "protocol_id": 580
+ },
+ "minecraft:mangrove_fence_gate": {
+ "protocol_id": 572
+ },
+ "minecraft:mangrove_hanging_sign": {
+ "protocol_id": 216
+ },
+ "minecraft:mangrove_leaves": {
+ "protocol_id": 88
+ },
+ "minecraft:mangrove_log": {
+ "protocol_id": 52
+ },
+ "minecraft:mangrove_planks": {
+ "protocol_id": 20
+ },
+ "minecraft:mangrove_pressure_plate": {
"protocol_id": 239
},
+ "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:mycelium": {
+ "protocol_id": 322
+ },
+ "minecraft:nether_brick_fence": {
+ "protocol_id": 325
+ },
+ "minecraft:nether_brick_slab": {
+ "protocol_id": 557
+ },
+ "minecraft:nether_brick_stairs": {
+ "protocol_id": 326
+ },
+ "minecraft:nether_brick_wall": {
+ "protocol_id": 762
+ },
+ "minecraft:nether_bricks": {
+ "protocol_id": 324
+ },
+ "minecraft:nether_gold_ore": {
+ "protocol_id": 44
+ },
+ "minecraft:nether_portal": {
+ "protocol_id": 263
+ },
+ "minecraft:nether_quartz_ore": {
+ "protocol_id": 416
+ },
+ "minecraft:nether_sprouts": {
+ "protocol_id": 793
+ },
+ "minecraft:nether_wart": {
+ "protocol_id": 327
+ },
+ "minecraft:nether_wart_block": {
+ "protocol_id": 605
+ },
+ "minecraft:netherite_block": {
+ "protocol_id": 836
+ },
+ "minecraft:netherrack": {
+ "protocol_id": 255
+ },
+ "minecraft:note_block": {
+ "protocol_id": 101
+ },
+ "minecraft:oak_button": {
+ "protocol_id": 384
+ },
+ "minecraft:oak_door": {
+ "protocol_id": 194
+ },
+ "minecraft:oak_fence": {
+ "protocol_id": 253
+ },
"minecraft:oak_fence_gate": {
- "protocol_id": 303
+ "protocol_id": 318
},
"minecraft:oak_hanging_sign": {
- "protocol_id": 196
+ "protocol_id": 207
},
"minecraft:oak_leaves": {
- "protocol_id": 74
+ "protocol_id": 81
},
"minecraft:oak_log": {
- "protocol_id": 42
+ "protocol_id": 45
},
"minecraft:oak_planks": {
"protocol_id": 13
},
"minecraft:oak_pressure_plate": {
- "protocol_id": 219
+ "protocol_id": 232
},
"minecraft:oak_sapling": {
- "protocol_id": 22
+ "protocol_id": 23
},
"minecraft:oak_sign": {
- "protocol_id": 176
+ "protocol_id": 185
},
"minecraft:oak_slab": {
- "protocol_id": 519
+ "protocol_id": 538
},
"minecraft:oak_stairs": {
- "protocol_id": 166
+ "protocol_id": 175
},
"minecraft:oak_trapdoor": {
- "protocol_id": 270
+ "protocol_id": 284
},
"minecraft:oak_wall_hanging_sign": {
- "protocol_id": 206
+ "protocol_id": 218
},
"minecraft:oak_wall_sign": {
- "protocol_id": 188
+ "protocol_id": 198
},
"minecraft:oak_wood": {
- "protocol_id": 60
+ "protocol_id": 65
},
"minecraft:observer": {
- "protocol_id": 585
- },
- "minecraft:obsidian": {
- "protocol_id": 160
- },
- "minecraft:ochre_froglight": {
- "protocol_id": 967
- },
- "minecraft:orange_banner": {
- "protocol_id": 484
- },
- "minecraft:orange_bed": {
- "protocol_id": 95
- },
- "minecraft:orange_candle": {
- "protocol_id": 843
- },
- "minecraft:orange_candle_cake": {
- "protocol_id": 860
- },
- "minecraft:orange_carpet": {
- "protocol_id": 459
- },
- "minecraft:orange_concrete": {
- "protocol_id": 620
- },
- "minecraft:orange_concrete_powder": {
- "protocol_id": 636
- },
- "minecraft:orange_glazed_terracotta": {
- "protocol_id": 604
- },
- "minecraft:orange_shulker_box": {
- "protocol_id": 588
- },
- "minecraft:orange_stained_glass": {
- "protocol_id": 255
- },
- "minecraft:orange_stained_glass_pane": {
- "protocol_id": 423
- },
- "minecraft:orange_terracotta": {
- "protocol_id": 407
- },
- "minecraft:orange_tulip": {
- "protocol_id": 144
- },
- "minecraft:orange_wall_banner": {
- "protocol_id": 500
- },
- "minecraft:orange_wool": {
- "protocol_id": 122
- },
- "minecraft:oxeye_daisy": {
- "protocol_id": 147
- },
- "minecraft:oxidized_copper": {
- "protocol_id": 890
- },
- "minecraft:oxidized_cut_copper": {
- "protocol_id": 896
- },
- "minecraft:oxidized_cut_copper_slab": {
- "protocol_id": 904
- },
- "minecraft:oxidized_cut_copper_stairs": {
- "protocol_id": 900
- },
- "minecraft:packed_ice": {
- "protocol_id": 476
- },
- "minecraft:packed_mud": {
- "protocol_id": 282
- },
- "minecraft:pearlescent_froglight": {
- "protocol_id": 969
- },
- "minecraft:peony": {
- "protocol_id": 480
- },
- "minecraft:petrified_oak_slab": {
- "protocol_id": 532
- },
- "minecraft:piglin_head": {
- "protocol_id": 387
- },
- "minecraft:piglin_wall_head": {
- "protocol_id": 388
- },
- "minecraft:pink_banner": {
- "protocol_id": 489
- },
- "minecraft:pink_bed": {
- "protocol_id": 100
- },
- "minecraft:pink_candle": {
- "protocol_id": 848
- },
- "minecraft:pink_candle_cake": {
- "protocol_id": 865
- },
- "minecraft:pink_carpet": {
- "protocol_id": 464
- },
- "minecraft:pink_concrete": {
- "protocol_id": 625
- },
- "minecraft:pink_concrete_powder": {
- "protocol_id": 641
- },
- "minecraft:pink_glazed_terracotta": {
"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:orange_stained_glass": {
+ "protocol_id": 269
+ },
+ "minecraft:orange_stained_glass_pane": {
+ "protocol_id": 441
+ },
+ "minecraft:orange_terracotta": {
+ "protocol_id": 425
+ },
+ "minecraft:orange_tulip": {
+ "protocol_id": 153
+ },
+ "minecraft:orange_wall_banner": {
+ "protocol_id": 519
+ },
+ "minecraft:orange_wool": {
+ "protocol_id": 130
+ },
+ "minecraft:oxeye_daisy": {
+ "protocol_id": 156
+ },
+ "minecraft:oxidized_copper": {
+ "protocol_id": 914
+ },
+ "minecraft:oxidized_cut_copper": {
+ "protocol_id": 920
+ },
+ "minecraft:oxidized_cut_copper_slab": {
+ "protocol_id": 928
+ },
+ "minecraft:oxidized_cut_copper_stairs": {
+ "protocol_id": 924
+ },
+ "minecraft:packed_ice": {
+ "protocol_id": 495
+ },
+ "minecraft:packed_mud": {
+ "protocol_id": 297
+ },
+ "minecraft:pearlescent_froglight": {
+ "protocol_id": 994
+ },
+ "minecraft:peony": {
+ "protocol_id": 499
+ },
+ "minecraft:petrified_oak_slab": {
+ "protocol_id": 552
+ },
+ "minecraft:piglin_head": {
+ "protocol_id": 405
+ },
+ "minecraft:piglin_wall_head": {
+ "protocol_id": 406
+ },
+ "minecraft:pink_banner": {
+ "protocol_id": 508
+ },
+ "minecraft:pink_bed": {
+ "protocol_id": 108
+ },
+ "minecraft:pink_candle": {
+ "protocol_id": 872
+ },
+ "minecraft:pink_candle_cake": {
+ "protocol_id": 889
+ },
+ "minecraft:pink_carpet": {
+ "protocol_id": 483
+ },
+ "minecraft:pink_concrete": {
+ "protocol_id": 649
+ },
+ "minecraft:pink_concrete_powder": {
+ "protocol_id": 665
+ },
+ "minecraft:pink_glazed_terracotta": {
+ "protocol_id": 633
+ },
+ "minecraft:pink_petals": {
+ "protocol_id": 957
+ },
"minecraft:pink_shulker_box": {
- "protocol_id": 593
+ "protocol_id": 617
},
"minecraft:pink_stained_glass": {
- "protocol_id": 260
+ "protocol_id": 274
},
"minecraft:pink_stained_glass_pane": {
- "protocol_id": 428
+ "protocol_id": 446
},
"minecraft:pink_terracotta": {
- "protocol_id": 412
+ "protocol_id": 430
},
"minecraft:pink_tulip": {
- "protocol_id": 146
+ "protocol_id": 155
},
"minecraft:pink_wall_banner": {
- "protocol_id": 505
+ "protocol_id": 524
},
"minecraft:pink_wool": {
- "protocol_id": 127
+ "protocol_id": 135
},
"minecraft:piston": {
- "protocol_id": 119
+ "protocol_id": 127
},
"minecraft:piston_head": {
- "protocol_id": 120
+ "protocol_id": 128
},
"minecraft:player_head": {
- "protocol_id": 381
+ "protocol_id": 399
},
"minecraft:player_wall_head": {
- "protocol_id": 382
+ "protocol_id": 400
},
"minecraft:podzol": {
"protocol_id": 11
},
"minecraft:pointed_dripstone": {
- "protocol_id": 925
+ "protocol_id": 949
},
"minecraft:polished_andesite": {
"protocol_id": 7
},
"minecraft:polished_andesite_slab": {
- "protocol_id": 729
+ "protocol_id": 753
},
"minecraft:polished_andesite_stairs": {
- "protocol_id": 716
+ "protocol_id": 740
},
"minecraft:polished_basalt": {
- "protocol_id": 245
+ "protocol_id": 259
},
"minecraft:polished_blackstone": {
- "protocol_id": 825
+ "protocol_id": 849
},
"minecraft:polished_blackstone_brick_slab": {
- "protocol_id": 829
+ "protocol_id": 853
},
"minecraft:polished_blackstone_brick_stairs": {
- "protocol_id": 830
+ "protocol_id": 854
},
"minecraft:polished_blackstone_brick_wall": {
- "protocol_id": 831
+ "protocol_id": 855
},
"minecraft:polished_blackstone_bricks": {
- "protocol_id": 826
+ "protocol_id": 850
},
"minecraft:polished_blackstone_button": {
- "protocol_id": 836
+ "protocol_id": 860
},
"minecraft:polished_blackstone_pressure_plate": {
- "protocol_id": 835
+ "protocol_id": 859
},
"minecraft:polished_blackstone_slab": {
- "protocol_id": 834
+ "protocol_id": 858
},
"minecraft:polished_blackstone_stairs": {
- "protocol_id": 833
+ "protocol_id": 857
},
"minecraft:polished_blackstone_wall": {
- "protocol_id": 837
+ "protocol_id": 861
},
"minecraft:polished_deepslate": {
- "protocol_id": 945
+ "protocol_id": 970
},
"minecraft:polished_deepslate_slab": {
- "protocol_id": 947
+ "protocol_id": 972
},
"minecraft:polished_deepslate_stairs": {
- "protocol_id": 946
+ "protocol_id": 971
},
"minecraft:polished_deepslate_wall": {
- "protocol_id": 948
+ "protocol_id": 973
},
"minecraft:polished_diorite": {
"protocol_id": 5
},
"minecraft:polished_diorite_slab": {
- "protocol_id": 721
+ "protocol_id": 745
},
"minecraft:polished_diorite_stairs": {
- "protocol_id": 707
+ "protocol_id": 731
},
"minecraft:polished_granite": {
"protocol_id": 3
},
"minecraft:polished_granite_slab": {
- "protocol_id": 718
+ "protocol_id": 742
},
"minecraft:polished_granite_stairs": {
- "protocol_id": 704
- },
- "minecraft:poppy": {
- "protocol_id": 139
- },
- "minecraft:potatoes": {
- "protocol_id": 366
- },
- "minecraft:potted_acacia_sapling": {
- "protocol_id": 344
- },
- "minecraft:potted_allium": {
- "protocol_id": 351
- },
- "minecraft:potted_azalea_bush": {
- "protocol_id": 965
- },
- "minecraft:potted_azure_bluet": {
- "protocol_id": 352
- },
- "minecraft:potted_bamboo": {
- "protocol_id": 700
- },
- "minecraft:potted_birch_sapling": {
- "protocol_id": 342
- },
- "minecraft:potted_blue_orchid": {
- "protocol_id": 350
- },
- "minecraft:potted_brown_mushroom": {
- "protocol_id": 362
- },
- "minecraft:potted_cactus": {
- "protocol_id": 364
- },
- "minecraft:potted_cornflower": {
- "protocol_id": 358
- },
- "minecraft:potted_crimson_fungus": {
- "protocol_id": 816
- },
- "minecraft:potted_crimson_roots": {
- "protocol_id": 818
- },
- "minecraft:potted_dandelion": {
- "protocol_id": 348
- },
- "minecraft:potted_dark_oak_sapling": {
- "protocol_id": 345
- },
- "minecraft:potted_dead_bush": {
- "protocol_id": 363
- },
- "minecraft:potted_fern": {
- "protocol_id": 347
- },
- "minecraft:potted_flowering_azalea_bush": {
- "protocol_id": 966
- },
- "minecraft:potted_jungle_sapling": {
- "protocol_id": 343
- },
- "minecraft:potted_lily_of_the_valley": {
- "protocol_id": 359
- },
- "minecraft:potted_mangrove_propagule": {
- "protocol_id": 346
- },
- "minecraft:potted_oak_sapling": {
- "protocol_id": 340
- },
- "minecraft:potted_orange_tulip": {
- "protocol_id": 354
- },
- "minecraft:potted_oxeye_daisy": {
- "protocol_id": 357
- },
- "minecraft:potted_pink_tulip": {
- "protocol_id": 356
- },
- "minecraft:potted_poppy": {
- "protocol_id": 349
- },
- "minecraft:potted_red_mushroom": {
- "protocol_id": 361
- },
- "minecraft:potted_red_tulip": {
- "protocol_id": 353
- },
- "minecraft:potted_spruce_sapling": {
- "protocol_id": 341
- },
- "minecraft:potted_warped_fungus": {
- "protocol_id": 817
- },
- "minecraft:potted_warped_roots": {
- "protocol_id": 819
- },
- "minecraft:potted_white_tulip": {
- "protocol_id": 355
- },
- "minecraft:potted_wither_rose": {
- "protocol_id": 360
- },
- "minecraft:powder_snow": {
- "protocol_id": 884
- },
- "minecraft:powder_snow_cauldron": {
- "protocol_id": 318
- },
- "minecraft:powered_rail": {
- "protocol_id": 110
- },
- "minecraft:prismarine": {
- "protocol_id": 447
- },
- "minecraft:prismarine_brick_slab": {
- "protocol_id": 454
- },
- "minecraft:prismarine_brick_stairs": {
- "protocol_id": 451
- },
- "minecraft:prismarine_bricks": {
- "protocol_id": 448
- },
- "minecraft:prismarine_slab": {
- "protocol_id": 453
- },
- "minecraft:prismarine_stairs": {
- "protocol_id": 450
- },
- "minecraft:prismarine_wall": {
- "protocol_id": 732
- },
- "minecraft:pumpkin": {
- "protocol_id": 240
- },
- "minecraft:pumpkin_stem": {
- "protocol_id": 299
- },
- "minecraft:purple_banner": {
- "protocol_id": 493
- },
- "minecraft:purple_bed": {
- "protocol_id": 104
- },
- "minecraft:purple_candle": {
- "protocol_id": 852
- },
- "minecraft:purple_candle_cake": {
- "protocol_id": 869
- },
- "minecraft:purple_carpet": {
- "protocol_id": 468
- },
- "minecraft:purple_concrete": {
- "protocol_id": 629
- },
- "minecraft:purple_concrete_powder": {
- "protocol_id": 645
- },
- "minecraft:purple_glazed_terracotta": {
- "protocol_id": 613
- },
- "minecraft:purple_shulker_box": {
- "protocol_id": 597
- },
- "minecraft:purple_stained_glass": {
- "protocol_id": 264
- },
- "minecraft:purple_stained_glass_pane": {
- "protocol_id": 432
- },
- "minecraft:purple_terracotta": {
- "protocol_id": 416
- },
- "minecraft:purple_wall_banner": {
- "protocol_id": 509
- },
- "minecraft:purple_wool": {
- "protocol_id": 131
- },
- "minecraft:purpur_block": {
- "protocol_id": 570
- },
- "minecraft:purpur_pillar": {
- "protocol_id": 571
- },
- "minecraft:purpur_slab": {
- "protocol_id": 541
- },
- "minecraft:purpur_stairs": {
- "protocol_id": 572
- },
- "minecraft:quartz_block": {
- "protocol_id": 400
- },
- "minecraft:quartz_bricks": {
- "protocol_id": 840
- },
- "minecraft:quartz_pillar": {
- "protocol_id": 402
- },
- "minecraft:quartz_slab": {
- "protocol_id": 538
- },
- "minecraft:quartz_stairs": {
- "protocol_id": 403
- },
- "minecraft:rail": {
- "protocol_id": 186
- },
- "minecraft:raw_copper_block": {
- "protocol_id": 963
- },
- "minecraft:raw_gold_block": {
- "protocol_id": 964
- },
- "minecraft:raw_iron_block": {
- "protocol_id": 962
- },
- "minecraft:red_banner": {
- "protocol_id": 497
- },
- "minecraft:red_bed": {
- "protocol_id": 108
- },
- "minecraft:red_candle": {
- "protocol_id": 856
- },
- "minecraft:red_candle_cake": {
- "protocol_id": 873
- },
- "minecraft:red_carpet": {
- "protocol_id": 472
- },
- "minecraft:red_concrete": {
- "protocol_id": 633
- },
- "minecraft:red_concrete_powder": {
- "protocol_id": 649
- },
- "minecraft:red_glazed_terracotta": {
- "protocol_id": 617
- },
- "minecraft:red_mushroom": {
- "protocol_id": 152
- },
- "minecraft:red_mushroom_block": {
- "protocol_id": 291
- },
- "minecraft:red_nether_brick_slab": {
"protocol_id": 728
},
- "minecraft:red_nether_brick_stairs": {
- "protocol_id": 715
+ "minecraft:poppy": {
+ "protocol_id": 148
},
- "minecraft:red_nether_brick_wall": {
- "protocol_id": 740
+ "minecraft:potatoes": {
+ "protocol_id": 383
},
- "minecraft:red_nether_bricks": {
- "protocol_id": 582
+ "minecraft:potted_acacia_sapling": {
+ "protocol_id": 360
},
- "minecraft:red_sand": {
- "protocol_id": 33
- },
- "minecraft:red_sandstone": {
- "protocol_id": 515
- },
- "minecraft:red_sandstone_slab": {
- "protocol_id": 539
- },
- "minecraft:red_sandstone_stairs": {
- "protocol_id": 518
- },
- "minecraft:red_sandstone_wall": {
- "protocol_id": 733
- },
- "minecraft:red_shulker_box": {
- "protocol_id": 601
- },
- "minecraft:red_stained_glass": {
- "protocol_id": 268
- },
- "minecraft:red_stained_glass_pane": {
- "protocol_id": 436
- },
- "minecraft:red_terracotta": {
- "protocol_id": 420
- },
- "minecraft:red_tulip": {
- "protocol_id": 143
- },
- "minecraft:red_wall_banner": {
- "protocol_id": 513
- },
- "minecraft:red_wool": {
- "protocol_id": 135
- },
- "minecraft:redstone_block": {
- "protocol_id": 397
- },
- "minecraft:redstone_lamp": {
- "protocol_id": 323
- },
- "minecraft:redstone_ore": {
- "protocol_id": 227
- },
- "minecraft:redstone_torch": {
- "protocol_id": 229
- },
- "minecraft:redstone_wall_torch": {
- "protocol_id": 230
- },
- "minecraft:redstone_wire": {
- "protocol_id": 168
- },
- "minecraft:reinforced_deepslate": {
- "protocol_id": 971
- },
- "minecraft:repeater": {
- "protocol_id": 253
- },
- "minecraft:repeating_command_block": {
- "protocol_id": 577
- },
- "minecraft:respawn_anchor": {
- "protocol_id": 815
- },
- "minecraft:rooted_dirt": {
- "protocol_id": 938
- },
- "minecraft:rose_bush": {
- "protocol_id": 479
- },
- "minecraft:sand": {
- "protocol_id": 32
- },
- "minecraft:sandstone": {
- "protocol_id": 90
- },
- "minecraft:sandstone_slab": {
- "protocol_id": 530
- },
- "minecraft:sandstone_stairs": {
- "protocol_id": 325
- },
- "minecraft:sandstone_wall": {
- "protocol_id": 741
- },
- "minecraft:scaffolding": {
- "protocol_id": 744
- },
- "minecraft:sculk": {
- "protocol_id": 886
- },
- "minecraft:sculk_catalyst": {
- "protocol_id": 888
- },
- "minecraft:sculk_sensor": {
- "protocol_id": 885
- },
- "minecraft:sculk_shrieker": {
- "protocol_id": 889
- },
- "minecraft:sculk_vein": {
- "protocol_id": 887
- },
- "minecraft:sea_lantern": {
- "protocol_id": 456
- },
- "minecraft:sea_pickle": {
- "protocol_id": 695
- },
- "minecraft:seagrass": {
- "protocol_id": 117
- },
- "minecraft:shroomlight": {
- "protocol_id": 776
- },
- "minecraft:shulker_box": {
- "protocol_id": 586
- },
- "minecraft:skeleton_skull": {
- "protocol_id": 375
- },
- "minecraft:skeleton_wall_skull": {
- "protocol_id": 376
- },
- "minecraft:slime_block": {
- "protocol_id": 443
- },
- "minecraft:small_amethyst_bud": {
- "protocol_id": 880
- },
- "minecraft:small_dripleaf": {
- "protocol_id": 936
- },
- "minecraft:smithing_table": {
- "protocol_id": 753
- },
- "minecraft:smoker": {
- "protocol_id": 747
- },
- "minecraft:smooth_basalt": {
- "protocol_id": 961
- },
- "minecraft:smooth_quartz": {
- "protocol_id": 544
- },
- "minecraft:smooth_quartz_slab": {
- "protocol_id": 725
- },
- "minecraft:smooth_quartz_stairs": {
- "protocol_id": 712
- },
- "minecraft:smooth_red_sandstone": {
- "protocol_id": 545
- },
- "minecraft:smooth_red_sandstone_slab": {
- "protocol_id": 719
- },
- "minecraft:smooth_red_sandstone_stairs": {
- "protocol_id": 705
- },
- "minecraft:smooth_sandstone": {
- "protocol_id": 543
- },
- "minecraft:smooth_sandstone_slab": {
- "protocol_id": 724
- },
- "minecraft:smooth_sandstone_stairs": {
- "protocol_id": 711
- },
- "minecraft:smooth_stone": {
- "protocol_id": 542
- },
- "minecraft:smooth_stone_slab": {
- "protocol_id": 529
- },
- "minecraft:snow": {
- "protocol_id": 232
- },
- "minecraft:snow_block": {
- "protocol_id": 234
- },
- "minecraft:soul_campfire": {
- "protocol_id": 759
- },
- "minecraft:soul_fire": {
- "protocol_id": 164
- },
- "minecraft:soul_lantern": {
- "protocol_id": 757
- },
- "minecraft:soul_sand": {
- "protocol_id": 242
- },
- "minecraft:soul_soil": {
- "protocol_id": 243
- },
- "minecraft:soul_torch": {
- "protocol_id": 246
- },
- "minecraft:soul_wall_torch": {
- "protocol_id": 247
- },
- "minecraft:spawner": {
- "protocol_id": 165
- },
- "minecraft:sponge": {
- "protocol_id": 83
- },
- "minecraft:spore_blossom": {
- "protocol_id": 929
- },
- "minecraft:spruce_button": {
+ "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_crimson_fungus": {
+ "protocol_id": 840
+ },
+ "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": {
+ "protocol_id": 370
+ },
+ "minecraft:potted_spruce_sapling": {
+ "protocol_id": 357
+ },
+ "minecraft:potted_torchflower": {
+ "protocol_id": 355
+ },
+ "minecraft:potted_warped_fungus": {
+ "protocol_id": 841
+ },
+ "minecraft:potted_warped_roots": {
+ "protocol_id": 843
+ },
+ "minecraft:potted_white_tulip": {
+ "protocol_id": 372
+ },
+ "minecraft:potted_wither_rose": {
+ "protocol_id": 377
+ },
+ "minecraft:powder_snow": {
+ "protocol_id": 908
+ },
+ "minecraft:powder_snow_cauldron": {
+ "protocol_id": 333
+ },
+ "minecraft:powered_rail": {
+ "protocol_id": 118
+ },
+ "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_slab": {
+ "protocol_id": 472
+ },
+ "minecraft:prismarine_stairs": {
+ "protocol_id": 469
+ },
+ "minecraft:prismarine_wall": {
+ "protocol_id": 756
+ },
+ "minecraft:pumpkin": {
+ "protocol_id": 254
+ },
+ "minecraft:pumpkin_stem": {
+ "protocol_id": 314
+ },
+ "minecraft:purple_banner": {
+ "protocol_id": 512
+ },
+ "minecraft:purple_bed": {
+ "protocol_id": 112
+ },
+ "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": {
+ "protocol_id": 897
+ },
+ "minecraft:red_carpet": {
+ "protocol_id": 491
+ },
+ "minecraft:red_concrete": {
+ "protocol_id": 657
+ },
+ "minecraft:red_concrete_powder": {
+ "protocol_id": 673
+ },
+ "minecraft:red_glazed_terracotta": {
+ "protocol_id": 641
+ },
+ "minecraft:red_mushroom": {
+ "protocol_id": 161
+ },
+ "minecraft:red_mushroom_block": {
+ "protocol_id": 306
+ },
+ "minecraft:red_nether_brick_slab": {
+ "protocol_id": 752
+ },
+ "minecraft:red_nether_brick_stairs": {
+ "protocol_id": 739
+ },
+ "minecraft:red_nether_brick_wall": {
+ "protocol_id": 764
+ },
+ "minecraft:red_nether_bricks": {
+ "protocol_id": 606
+ },
+ "minecraft:red_sand": {
+ "protocol_id": 36
+ },
+ "minecraft:red_sandstone": {
+ "protocol_id": 534
+ },
+ "minecraft:red_sandstone_slab": {
+ "protocol_id": 559
+ },
+ "minecraft:red_sandstone_stairs": {
+ "protocol_id": 537
+ },
+ "minecraft:red_sandstone_wall": {
+ "protocol_id": 757
+ },
+ "minecraft:red_shulker_box": {
+ "protocol_id": 625
+ },
+ "minecraft:red_stained_glass": {
+ "protocol_id": 282
+ },
+ "minecraft:red_stained_glass_pane": {
+ "protocol_id": 454
+ },
+ "minecraft:red_terracotta": {
+ "protocol_id": 438
+ },
+ "minecraft:red_tulip": {
+ "protocol_id": 152
+ },
+ "minecraft:red_wall_banner": {
+ "protocol_id": 532
+ },
+ "minecraft:red_wool": {
+ "protocol_id": 143
+ },
+ "minecraft:redstone_block": {
+ "protocol_id": 415
+ },
+ "minecraft:redstone_lamp": {
+ "protocol_id": 338
+ },
+ "minecraft:redstone_ore": {
+ "protocol_id": 241
+ },
+ "minecraft:redstone_torch": {
+ "protocol_id": 243
+ },
+ "minecraft:redstone_wall_torch": {
+ "protocol_id": 244
+ },
+ "minecraft:redstone_wire": {
+ "protocol_id": 177
+ },
+ "minecraft:reinforced_deepslate": {
+ "protocol_id": 996
+ },
+ "minecraft:repeater": {
+ "protocol_id": 267
+ },
+ "minecraft:repeating_command_block": {
+ "protocol_id": 601
+ },
+ "minecraft:respawn_anchor": {
+ "protocol_id": 839
+ },
+ "minecraft:rooted_dirt": {
+ "protocol_id": 963
+ },
+ "minecraft:rose_bush": {
+ "protocol_id": 498
+ },
+ "minecraft:sand": {
+ "protocol_id": 34
+ },
+ "minecraft:sandstone": {
+ "protocol_id": 98
+ },
+ "minecraft:sandstone_slab": {
+ "protocol_id": 550
+ },
+ "minecraft:sandstone_stairs": {
+ "protocol_id": 340
+ },
+ "minecraft:sandstone_wall": {
+ "protocol_id": 765
+ },
+ "minecraft:scaffolding": {
+ "protocol_id": 768
+ },
+ "minecraft:sculk": {
+ "protocol_id": 910
+ },
+ "minecraft:sculk_catalyst": {
+ "protocol_id": 912
+ },
+ "minecraft:sculk_sensor": {
+ "protocol_id": 909
+ },
+ "minecraft:sculk_shrieker": {
+ "protocol_id": 913
+ },
+ "minecraft:sculk_vein": {
+ "protocol_id": 911
+ },
+ "minecraft:sea_lantern": {
+ "protocol_id": 475
+ },
+ "minecraft:sea_pickle": {
+ "protocol_id": 719
+ },
+ "minecraft:seagrass": {
+ "protocol_id": 125
+ },
+ "minecraft:shroomlight": {
+ "protocol_id": 800
+ },
+ "minecraft:shulker_box": {
+ "protocol_id": 610
+ },
+ "minecraft:skeleton_skull": {
+ "protocol_id": 393
+ },
+ "minecraft:skeleton_wall_skull": {
+ "protocol_id": 394
+ },
+ "minecraft:slime_block": {
+ "protocol_id": 462
+ },
+ "minecraft:small_amethyst_bud": {
+ "protocol_id": 904
+ },
+ "minecraft:small_dripleaf": {
+ "protocol_id": 961
+ },
+ "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:soul_soil": {
+ "protocol_id": 257
+ },
+ "minecraft:soul_torch": {
+ "protocol_id": 260
+ },
+ "minecraft:soul_wall_torch": {
+ "protocol_id": 261
+ },
+ "minecraft:spawner": {
+ "protocol_id": 174
+ },
+ "minecraft:sponge": {
+ "protocol_id": 91
+ },
+ "minecraft:spore_blossom": {
+ "protocol_id": 953
+ },
+ "minecraft:spruce_button": {
+ "protocol_id": 385
+ },
"minecraft:spruce_door": {
- "protocol_id": 560
+ "protocol_id": 582
},
"minecraft:spruce_fence": {
- "protocol_id": 553
+ "protocol_id": 574
},
"minecraft:spruce_fence_gate": {
- "protocol_id": 546
+ "protocol_id": 566
},
"minecraft:spruce_hanging_sign": {
- "protocol_id": 197
+ "protocol_id": 208
},
"minecraft:spruce_leaves": {
- "protocol_id": 75
+ "protocol_id": 82
},
"minecraft:spruce_log": {
- "protocol_id": 43
+ "protocol_id": 46
},
"minecraft:spruce_planks": {
"protocol_id": 14
},
"minecraft:spruce_pressure_plate": {
- "protocol_id": 220
+ "protocol_id": 233
},
"minecraft:spruce_sapling": {
- "protocol_id": 23
+ "protocol_id": 24
},
"minecraft:spruce_sign": {
- "protocol_id": 177
+ "protocol_id": 186
},
"minecraft:spruce_slab": {
- "protocol_id": 520
+ "protocol_id": 539
},
"minecraft:spruce_stairs": {
- "protocol_id": 332
+ "protocol_id": 347
},
"minecraft:spruce_trapdoor": {
- "protocol_id": 271
+ "protocol_id": 285
},
"minecraft:spruce_wall_hanging_sign": {
- "protocol_id": 207
+ "protocol_id": 219
},
"minecraft:spruce_wall_sign": {
- "protocol_id": 189
+ "protocol_id": 199
},
"minecraft:spruce_wood": {
- "protocol_id": 61
+ "protocol_id": 66
},
"minecraft:sticky_piston": {
- "protocol_id": 112
+ "protocol_id": 120
},
"minecraft:stone": {
"protocol_id": 1
},
"minecraft:stone_brick_slab": {
- "protocol_id": 535
+ "protocol_id": 555
},
"minecraft:stone_brick_stairs": {
- "protocol_id": 305
+ "protocol_id": 320
},
"minecraft:stone_brick_wall": {
- "protocol_id": 736
- },
- "minecraft:stone_bricks": {
- "protocol_id": 278
- },
- "minecraft:stone_button": {
- "protocol_id": 231
- },
- "minecraft:stone_pressure_plate": {
- "protocol_id": 217
- },
- "minecraft:stone_slab": {
- "protocol_id": 528
- },
- "minecraft:stone_stairs": {
- "protocol_id": 710
- },
- "minecraft:stonecutter": {
- "protocol_id": 754
- },
- "minecraft:stripped_acacia_log": {
- "protocol_id": 55
- },
- "minecraft:stripped_acacia_wood": {
- "protocol_id": 71
- },
- "minecraft:stripped_bamboo_block": {
- "protocol_id": 59
- },
- "minecraft:stripped_birch_log": {
- "protocol_id": 53
- },
- "minecraft:stripped_birch_wood": {
- "protocol_id": 69
- },
- "minecraft:stripped_crimson_hyphae": {
- "protocol_id": 773
- },
- "minecraft:stripped_crimson_stem": {
- "protocol_id": 771
- },
- "minecraft:stripped_dark_oak_log": {
- "protocol_id": 56
- },
- "minecraft:stripped_dark_oak_wood": {
- "protocol_id": 72
- },
- "minecraft:stripped_jungle_log": {
- "protocol_id": 54
- },
- "minecraft:stripped_jungle_wood": {
- "protocol_id": 70
- },
- "minecraft:stripped_mangrove_log": {
- "protocol_id": 58
- },
- "minecraft:stripped_mangrove_wood": {
- "protocol_id": 73
- },
- "minecraft:stripped_oak_log": {
- "protocol_id": 57
- },
- "minecraft:stripped_oak_wood": {
- "protocol_id": 67
- },
- "minecraft:stripped_spruce_log": {
- "protocol_id": 52
- },
- "minecraft:stripped_spruce_wood": {
- "protocol_id": 68
- },
- "minecraft:stripped_warped_hyphae": {
- "protocol_id": 764
- },
- "minecraft:stripped_warped_stem": {
- "protocol_id": 762
- },
- "minecraft:structure_block": {
- "protocol_id": 804
- },
- "minecraft:structure_void": {
- "protocol_id": 584
- },
- "minecraft:sugar_cane": {
- "protocol_id": 237
- },
- "minecraft:sunflower": {
- "protocol_id": 477
- },
- "minecraft:sweet_berry_bush": {
"protocol_id": 760
},
- "minecraft:tall_grass": {
- "protocol_id": 481
+ "minecraft:stone_bricks": {
+ "protocol_id": 293
},
- "minecraft:tall_seagrass": {
- "protocol_id": 118
+ "minecraft:stone_button": {
+ "protocol_id": 245
},
- "minecraft:target": {
- "protocol_id": 807
+ "minecraft:stone_pressure_plate": {
+ "protocol_id": 230
},
- "minecraft:terracotta": {
- "protocol_id": 474
+ "minecraft:stone_slab": {
+ "protocol_id": 548
},
- "minecraft:tinted_glass": {
- "protocol_id": 883
+ "minecraft:stone_stairs": {
+ "protocol_id": 734
},
- "minecraft:tnt": {
- "protocol_id": 156
- },
- "minecraft:torch": {
- "protocol_id": 161
- },
- "minecraft:trapped_chest": {
- "protocol_id": 392
- },
- "minecraft:tripwire": {
- "protocol_id": 330
- },
- "minecraft:tripwire_hook": {
- "protocol_id": 329
- },
- "minecraft:tube_coral": {
- "protocol_id": 670
- },
- "minecraft:tube_coral_block": {
- "protocol_id": 660
- },
- "minecraft:tube_coral_fan": {
- "protocol_id": 680
- },
- "minecraft:tube_coral_wall_fan": {
- "protocol_id": 690
- },
- "minecraft:tuff": {
- "protocol_id": 881
- },
- "minecraft:turtle_egg": {
- "protocol_id": 654
- },
- "minecraft:twisting_vines": {
- "protocol_id": 779
- },
- "minecraft:twisting_vines_plant": {
- "protocol_id": 780
- },
- "minecraft:verdant_froglight": {
- "protocol_id": 968
- },
- "minecraft:vine": {
- "protocol_id": 301
- },
- "minecraft:void_air": {
- "protocol_id": 701
- },
- "minecraft:wall_torch": {
- "protocol_id": 162
- },
- "minecraft:warped_button": {
- "protocol_id": 797
- },
- "minecraft:warped_door": {
- "protocol_id": 799
- },
- "minecraft:warped_fence": {
- "protocol_id": 789
- },
- "minecraft:warped_fence_gate": {
- "protocol_id": 793
- },
- "minecraft:warped_fungus": {
- "protocol_id": 766
- },
- "minecraft:warped_hanging_sign": {
- "protocol_id": 203
- },
- "minecraft:warped_hyphae": {
- "protocol_id": 763
- },
- "minecraft:warped_nylium": {
- "protocol_id": 765
- },
- "minecraft:warped_planks": {
- "protocol_id": 783
- },
- "minecraft:warped_pressure_plate": {
- "protocol_id": 787
- },
- "minecraft:warped_roots": {
- "protocol_id": 768
- },
- "minecraft:warped_sign": {
- "protocol_id": 801
- },
- "minecraft:warped_slab": {
- "protocol_id": 785
- },
- "minecraft:warped_stairs": {
- "protocol_id": 795
- },
- "minecraft:warped_stem": {
- "protocol_id": 761
- },
- "minecraft:warped_trapdoor": {
- "protocol_id": 791
- },
- "minecraft:warped_wall_hanging_sign": {
- "protocol_id": 214
- },
- "minecraft:warped_wall_sign": {
- "protocol_id": 803
- },
- "minecraft:warped_wart_block": {
- "protocol_id": 767
- },
- "minecraft:water": {
- "protocol_id": 30
- },
- "minecraft:water_cauldron": {
- "protocol_id": 316
- },
- "minecraft:waxed_copper_block": {
- "protocol_id": 908
- },
- "minecraft:waxed_cut_copper": {
- "protocol_id": 915
- },
- "minecraft:waxed_cut_copper_slab": {
- "protocol_id": 923
- },
- "minecraft:waxed_cut_copper_stairs": {
- "protocol_id": 919
- },
- "minecraft:waxed_exposed_copper": {
- "protocol_id": 910
- },
- "minecraft:waxed_exposed_cut_copper": {
- "protocol_id": 914
- },
- "minecraft:waxed_exposed_cut_copper_slab": {
- "protocol_id": 922
- },
- "minecraft:waxed_exposed_cut_copper_stairs": {
- "protocol_id": 918
- },
- "minecraft:waxed_oxidized_copper": {
- "protocol_id": 911
- },
- "minecraft:waxed_oxidized_cut_copper": {
- "protocol_id": 912
- },
- "minecraft:waxed_oxidized_cut_copper_slab": {
- "protocol_id": 920
- },
- "minecraft:waxed_oxidized_cut_copper_stairs": {
- "protocol_id": 916
- },
- "minecraft:waxed_weathered_copper": {
- "protocol_id": 909
- },
- "minecraft:waxed_weathered_cut_copper": {
- "protocol_id": 913
- },
- "minecraft:waxed_weathered_cut_copper_slab": {
- "protocol_id": 921
- },
- "minecraft:waxed_weathered_cut_copper_stairs": {
- "protocol_id": 917
- },
- "minecraft:weathered_copper": {
- "protocol_id": 891
- },
- "minecraft:weathered_cut_copper": {
- "protocol_id": 897
- },
- "minecraft:weathered_cut_copper_slab": {
- "protocol_id": 905
- },
- "minecraft:weathered_cut_copper_stairs": {
- "protocol_id": 901
- },
- "minecraft:weeping_vines": {
- "protocol_id": 777
- },
- "minecraft:weeping_vines_plant": {
+ "minecraft:stonecutter": {
"protocol_id": 778
},
- "minecraft:wet_sponge": {
- "protocol_id": 84
+ "minecraft:stripped_acacia_log": {
+ "protocol_id": 59
},
- "minecraft:wheat": {
- "protocol_id": 173
+ "minecraft:stripped_acacia_wood": {
+ "protocol_id": 77
},
- "minecraft:white_banner": {
- "protocol_id": 483
+ "minecraft:stripped_bamboo_block": {
+ "protocol_id": 64
},
- "minecraft:white_bed": {
- "protocol_id": 94
+ "minecraft:stripped_birch_log": {
+ "protocol_id": 57
},
- "minecraft:white_candle": {
- "protocol_id": 842
+ "minecraft:stripped_birch_wood": {
+ "protocol_id": 75
},
- "minecraft:white_candle_cake": {
- "protocol_id": 859
+ "minecraft:stripped_cherry_log": {
+ "protocol_id": 60
},
- "minecraft:white_carpet": {
- "protocol_id": 458
+ "minecraft:stripped_cherry_wood": {
+ "protocol_id": 78
},
- "minecraft:white_concrete": {
- "protocol_id": 619
+ "minecraft:stripped_crimson_hyphae": {
+ "protocol_id": 797
},
- "minecraft:white_concrete_powder": {
- "protocol_id": 635
+ "minecraft:stripped_crimson_stem": {
+ "protocol_id": 795
},
- "minecraft:white_glazed_terracotta": {
- "protocol_id": 603
+ "minecraft:stripped_dark_oak_log": {
+ "protocol_id": 61
},
- "minecraft:white_shulker_box": {
- "protocol_id": 587
+ "minecraft:stripped_dark_oak_wood": {
+ "protocol_id": 79
},
- "minecraft:white_stained_glass": {
- "protocol_id": 254
+ "minecraft:stripped_jungle_log": {
+ "protocol_id": 58
},
- "minecraft:white_stained_glass_pane": {
- "protocol_id": 422
+ "minecraft:stripped_jungle_wood": {
+ "protocol_id": 76
},
- "minecraft:white_terracotta": {
- "protocol_id": 406
+ "minecraft:stripped_mangrove_log": {
+ "protocol_id": 63
},
- "minecraft:white_tulip": {
- "protocol_id": 145
+ "minecraft:stripped_mangrove_wood": {
+ "protocol_id": 80
},
- "minecraft:white_wall_banner": {
- "protocol_id": 499
+ "minecraft:stripped_oak_log": {
+ "protocol_id": 62
},
- "minecraft:white_wool": {
- "protocol_id": 121
+ "minecraft:stripped_oak_wood": {
+ "protocol_id": 73
},
- "minecraft:wither_rose": {
- "protocol_id": 149
+ "minecraft:stripped_spruce_log": {
+ "protocol_id": 56
},
- "minecraft:wither_skeleton_skull": {
- "protocol_id": 377
+ "minecraft:stripped_spruce_wood": {
+ "protocol_id": 74
},
- "minecraft:wither_skeleton_wall_skull": {
- "protocol_id": 378
+ "minecraft:stripped_warped_hyphae": {
+ "protocol_id": 788
},
- "minecraft:yellow_banner": {
- "protocol_id": 487
+ "minecraft:stripped_warped_stem": {
+ "protocol_id": 786
},
- "minecraft:yellow_bed": {
- "protocol_id": 98
+ "minecraft:structure_block": {
+ "protocol_id": 828
},
- "minecraft:yellow_candle": {
- "protocol_id": 846
+ "minecraft:structure_void": {
+ "protocol_id": 608
},
- "minecraft:yellow_candle_cake": {
- "protocol_id": 863
+ "minecraft:sugar_cane": {
+ "protocol_id": 251
},
- "minecraft:yellow_carpet": {
- "protocol_id": 462
+ "minecraft:sunflower": {
+ "protocol_id": 496
},
- "minecraft:yellow_concrete": {
- "protocol_id": 623
+ "minecraft:suspicious_sand": {
+ "protocol_id": 35
},
- "minecraft:yellow_concrete_powder": {
- "protocol_id": 639
+ "minecraft:sweet_berry_bush": {
+ "protocol_id": 784
},
- "minecraft:yellow_glazed_terracotta": {
- "protocol_id": 607
+ "minecraft:tall_grass": {
+ "protocol_id": 500
},
- "minecraft:yellow_shulker_box": {
- "protocol_id": 591
+ "minecraft:tall_seagrass": {
+ "protocol_id": 126
},
- "minecraft:yellow_stained_glass": {
- "protocol_id": 258
+ "minecraft:target": {
+ "protocol_id": 831
},
- "minecraft:yellow_stained_glass_pane": {
- "protocol_id": 426
+ "minecraft:terracotta": {
+ "protocol_id": 493
},
- "minecraft:yellow_terracotta": {
+ "minecraft:tinted_glass": {
+ "protocol_id": 907
+ },
+ "minecraft:tnt": {
+ "protocol_id": 165
+ },
+ "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:warped_door": {
+ "protocol_id": 823
+ },
+ "minecraft:warped_fence": {
+ "protocol_id": 813
+ },
+ "minecraft:warped_fence_gate": {
+ "protocol_id": 817
+ },
+ "minecraft:warped_fungus": {
+ "protocol_id": 790
+ },
+ "minecraft:warped_hanging_sign": {
+ "protocol_id": 215
+ },
+ "minecraft:warped_hyphae": {
+ "protocol_id": 787
+ },
+ "minecraft:warped_nylium": {
+ "protocol_id": 789
+ },
+ "minecraft:warped_planks": {
+ "protocol_id": 807
+ },
+ "minecraft:warped_pressure_plate": {
+ "protocol_id": 811
+ },
+ "minecraft:warped_roots": {
+ "protocol_id": 792
+ },
+ "minecraft:warped_sign": {
+ "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": {
+ "protocol_id": 827
+ },
+ "minecraft:warped_wart_block": {
+ "protocol_id": 791
+ },
+ "minecraft:water": {
+ "protocol_id": 32
+ },
+ "minecraft:water_cauldron": {
+ "protocol_id": 331
+ },
+ "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_weathered_cut_copper_stairs": {
+ "protocol_id": 941
+ },
+ "minecraft:weathered_copper": {
+ "protocol_id": 915
+ },
+ "minecraft:weathered_cut_copper": {
+ "protocol_id": 921
+ },
+ "minecraft:weathered_cut_copper_slab": {
+ "protocol_id": 929
+ },
+ "minecraft:weathered_cut_copper_stairs": {
+ "protocol_id": 925
+ },
+ "minecraft:weeping_vines": {
+ "protocol_id": 801
+ },
+ "minecraft:weeping_vines_plant": {
+ "protocol_id": 802
+ },
+ "minecraft:wet_sponge": {
+ "protocol_id": 92
+ },
+ "minecraft:wheat": {
+ "protocol_id": 182
+ },
+ "minecraft:white_banner": {
+ "protocol_id": 502
+ },
+ "minecraft:white_bed": {
+ "protocol_id": 102
+ },
+ "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": {
+ "protocol_id": 887
+ },
+ "minecraft:yellow_carpet": {
+ "protocol_id": 481
+ },
+ "minecraft:yellow_concrete": {
+ "protocol_id": 647
+ },
+ "minecraft:yellow_concrete_powder": {
+ "protocol_id": 663
+ },
+ "minecraft:yellow_glazed_terracotta": {
+ "protocol_id": 631
+ },
+ "minecraft:yellow_shulker_box": {
+ "protocol_id": 615
+ },
+ "minecraft:yellow_stained_glass": {
+ "protocol_id": 272
+ },
+ "minecraft:yellow_stained_glass_pane": {
+ "protocol_id": 444
+ },
+ "minecraft:yellow_terracotta": {
+ "protocol_id": 428
+ },
"minecraft:yellow_wall_banner": {
- "protocol_id": 503
+ "protocol_id": 522
},
"minecraft:yellow_wool": {
- "protocol_id": 125
+ "protocol_id": 133
},
"minecraft:zombie_head": {
- "protocol_id": 379
+ "protocol_id": 397
},
"minecraft:zombie_wall_head": {
- "protocol_id": 380
+ "protocol_id": 398
}
},
"protocol_id": 4
@@ -3223,6 +3301,9 @@
"minecraft:daylight_detector": {
"protocol_id": 16
},
+ "minecraft:decorated_pot": {
+ "protocol_id": 39
+ },
"minecraft:dispenser": {
"protocol_id": 5
},
@@ -3289,6 +3370,9 @@
"minecraft:structure_block": {
"protocol_id": 20
},
+ "minecraft:suspicious_sand": {
+ "protocol_id": 38
+ },
"minecraft:trapped_chest": {
"protocol_id": 2
}
@@ -3481,6 +3565,9 @@
"minecraft:gamemode": {
"protocol_id": 39
},
+ "minecraft:heightmap": {
+ "protocol_id": 47
+ },
"minecraft:int_range": {
"protocol_id": 36
},
@@ -3557,7 +3644,7 @@
"protocol_id": 40
},
"minecraft:uuid": {
- "protocol_id": 47
+ "protocol_id": 48
},
"minecraft:vec2": {
"protocol_id": 11
@@ -3798,6 +3885,29 @@
},
"protocol_id": 12
},
+ "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": {
+ "protocol_id": 1
+ },
+ "minecraft:pottery_pattern_skull": {
+ "protocol_id": 3
+ }
+ },
+ "protocol_id": 63
+ },
"minecraft:enchantment": {
"entries": {
"minecraft:aqua_affinity": {
@@ -3947,338 +4057,353 @@
"minecraft:blaze": {
"protocol_id": 7
},
- "minecraft:boat": {
+ "minecraft:block_display": {
"protocol_id": 8
},
+ "minecraft:boat": {
+ "protocol_id": 9
+ },
"minecraft:camel": {
- "protocol_id": 11
+ "protocol_id": 10
},
"minecraft:cat": {
- "protocol_id": 10
+ "protocol_id": 11
},
"minecraft:cave_spider": {
"protocol_id": 12
},
"minecraft:chest_boat": {
- "protocol_id": 9
- },
- "minecraft:chest_minecart": {
- "protocol_id": 55
- },
- "minecraft:chicken": {
"protocol_id": 13
},
- "minecraft:cod": {
+ "minecraft:chest_minecart": {
"protocol_id": 14
},
- "minecraft:command_block_minecart": {
- "protocol_id": 56
- },
- "minecraft:cow": {
+ "minecraft:chicken": {
"protocol_id": 15
},
- "minecraft:creeper": {
+ "minecraft:cod": {
"protocol_id": 16
},
- "minecraft:dolphin": {
+ "minecraft:command_block_minecart": {
"protocol_id": 17
},
- "minecraft:donkey": {
+ "minecraft:cow": {
"protocol_id": 18
},
- "minecraft:dragon_fireball": {
+ "minecraft:creeper": {
"protocol_id": 19
},
- "minecraft:drowned": {
+ "minecraft:dolphin": {
"protocol_id": 20
},
- "minecraft:egg": {
- "protocol_id": 94
- },
- "minecraft:elder_guardian": {
+ "minecraft:donkey": {
"protocol_id": 21
},
- "minecraft:end_crystal": {
+ "minecraft:dragon_fireball": {
"protocol_id": 22
},
- "minecraft:ender_dragon": {
+ "minecraft:drowned": {
"protocol_id": 23
},
- "minecraft:ender_pearl": {
- "protocol_id": 95
- },
- "minecraft:enderman": {
+ "minecraft:egg": {
"protocol_id": 24
},
- "minecraft:endermite": {
+ "minecraft:elder_guardian": {
"protocol_id": 25
},
- "minecraft:evoker": {
+ "minecraft:end_crystal": {
"protocol_id": 26
},
- "minecraft:evoker_fangs": {
+ "minecraft:ender_dragon": {
"protocol_id": 27
},
- "minecraft:experience_bottle": {
- "protocol_id": 96
- },
- "minecraft:experience_orb": {
+ "minecraft:ender_pearl": {
"protocol_id": 28
},
- "minecraft:eye_of_ender": {
+ "minecraft:enderman": {
"protocol_id": 29
},
- "minecraft:falling_block": {
+ "minecraft:endermite": {
"protocol_id": 30
},
- "minecraft:fireball": {
- "protocol_id": 47
- },
- "minecraft:firework_rocket": {
+ "minecraft:evoker": {
"protocol_id": 31
},
- "minecraft:fishing_bobber": {
- "protocol_id": 118
- },
- "minecraft:fox": {
+ "minecraft:evoker_fangs": {
"protocol_id": 32
},
- "minecraft:frog": {
+ "minecraft:experience_bottle": {
"protocol_id": 33
},
- "minecraft:furnace_minecart": {
- "protocol_id": 57
- },
- "minecraft:ghast": {
+ "minecraft:experience_orb": {
"protocol_id": 34
},
- "minecraft:giant": {
+ "minecraft:eye_of_ender": {
"protocol_id": 35
},
- "minecraft:glow_item_frame": {
+ "minecraft:falling_block": {
"protocol_id": 36
},
- "minecraft:glow_squid": {
+ "minecraft:fireball": {
+ "protocol_id": 57
+ },
+ "minecraft:firework_rocket": {
"protocol_id": 37
},
- "minecraft:goat": {
+ "minecraft:fishing_bobber": {
+ "protocol_id": 123
+ },
+ "minecraft:fox": {
"protocol_id": 38
},
- "minecraft:guardian": {
+ "minecraft:frog": {
"protocol_id": 39
},
- "minecraft:hoglin": {
+ "minecraft:furnace_minecart": {
"protocol_id": 40
},
- "minecraft:hopper_minecart": {
- "protocol_id": 58
- },
- "minecraft:horse": {
+ "minecraft:ghast": {
"protocol_id": 41
},
- "minecraft:husk": {
+ "minecraft:giant": {
"protocol_id": 42
},
- "minecraft:illusioner": {
+ "minecraft:glow_item_frame": {
"protocol_id": 43
},
- "minecraft:iron_golem": {
+ "minecraft:glow_squid": {
"protocol_id": 44
},
- "minecraft:item": {
+ "minecraft:goat": {
"protocol_id": 45
},
- "minecraft:item_frame": {
+ "minecraft:guardian": {
"protocol_id": 46
},
- "minecraft:leash_knot": {
+ "minecraft:hoglin": {
+ "protocol_id": 47
+ },
+ "minecraft:hopper_minecart": {
"protocol_id": 48
},
- "minecraft:lightning_bolt": {
+ "minecraft:horse": {
"protocol_id": 49
},
- "minecraft:llama": {
+ "minecraft:husk": {
"protocol_id": 50
},
- "minecraft:llama_spit": {
+ "minecraft:illusioner": {
"protocol_id": 51
},
- "minecraft:magma_cube": {
+ "minecraft:interaction": {
"protocol_id": 52
},
- "minecraft:marker": {
+ "minecraft:iron_golem": {
"protocol_id": 53
},
- "minecraft:minecart": {
+ "minecraft:item": {
"protocol_id": 54
},
- "minecraft:mooshroom": {
- "protocol_id": 62
+ "minecraft:item_display": {
+ "protocol_id": 55
},
- "minecraft:mule": {
- "protocol_id": 61
+ "minecraft:item_frame": {
+ "protocol_id": 56
},
- "minecraft:ocelot": {
- "protocol_id": 63
+ "minecraft:leash_knot": {
+ "protocol_id": 58
},
- "minecraft:painting": {
- "protocol_id": 64
- },
- "minecraft:panda": {
- "protocol_id": 65
- },
- "minecraft:parrot": {
- "protocol_id": 66
- },
- "minecraft:phantom": {
- "protocol_id": 67
- },
- "minecraft:pig": {
- "protocol_id": 68
- },
- "minecraft:piglin": {
- "protocol_id": 69
- },
- "minecraft:piglin_brute": {
- "protocol_id": 70
- },
- "minecraft:pillager": {
- "protocol_id": 71
- },
- "minecraft:player": {
- "protocol_id": 117
- },
- "minecraft:polar_bear": {
- "protocol_id": 72
- },
- "minecraft:potion": {
- "protocol_id": 97
- },
- "minecraft:pufferfish": {
- "protocol_id": 74
- },
- "minecraft:rabbit": {
- "protocol_id": 75
- },
- "minecraft:ravager": {
- "protocol_id": 76
- },
- "minecraft:salmon": {
- "protocol_id": 77
- },
- "minecraft:sheep": {
- "protocol_id": 78
- },
- "minecraft:shulker": {
- "protocol_id": 79
- },
- "minecraft:shulker_bullet": {
- "protocol_id": 80
- },
- "minecraft:silverfish": {
- "protocol_id": 81
- },
- "minecraft:skeleton": {
- "protocol_id": 82
- },
- "minecraft:skeleton_horse": {
- "protocol_id": 83
- },
- "minecraft:slime": {
- "protocol_id": 84
- },
- "minecraft:small_fireball": {
- "protocol_id": 85
- },
- "minecraft:snow_golem": {
- "protocol_id": 86
- },
- "minecraft:snowball": {
- "protocol_id": 87
- },
- "minecraft:spawner_minecart": {
+ "minecraft:lightning_bolt": {
"protocol_id": 59
},
- "minecraft:spectral_arrow": {
- "protocol_id": 88
- },
- "minecraft:spider": {
- "protocol_id": 89
- },
- "minecraft:squid": {
- "protocol_id": 90
- },
- "minecraft:stray": {
- "protocol_id": 91
- },
- "minecraft:strider": {
- "protocol_id": 92
- },
- "minecraft:tadpole": {
- "protocol_id": 93
- },
- "minecraft:tnt": {
- "protocol_id": 73
- },
- "minecraft:tnt_minecart": {
+ "minecraft:llama": {
"protocol_id": 60
},
- "minecraft:trader_llama": {
- "protocol_id": 99
+ "minecraft:llama_spit": {
+ "protocol_id": 61
},
- "minecraft:trident": {
+ "minecraft:magma_cube": {
+ "protocol_id": 62
+ },
+ "minecraft:marker": {
+ "protocol_id": 63
+ },
+ "minecraft:minecart": {
+ "protocol_id": 64
+ },
+ "minecraft:mooshroom": {
+ "protocol_id": 65
+ },
+ "minecraft:mule": {
+ "protocol_id": 66
+ },
+ "minecraft:ocelot": {
+ "protocol_id": 67
+ },
+ "minecraft:painting": {
+ "protocol_id": 68
+ },
+ "minecraft:panda": {
+ "protocol_id": 69
+ },
+ "minecraft:parrot": {
+ "protocol_id": 70
+ },
+ "minecraft:phantom": {
+ "protocol_id": 71
+ },
+ "minecraft:pig": {
+ "protocol_id": 72
+ },
+ "minecraft:piglin": {
+ "protocol_id": 73
+ },
+ "minecraft:piglin_brute": {
+ "protocol_id": 74
+ },
+ "minecraft:pillager": {
+ "protocol_id": 75
+ },
+ "minecraft:player": {
+ "protocol_id": 122
+ },
+ "minecraft:polar_bear": {
+ "protocol_id": 76
+ },
+ "minecraft:potion": {
+ "protocol_id": 77
+ },
+ "minecraft:pufferfish": {
+ "protocol_id": 78
+ },
+ "minecraft:rabbit": {
+ "protocol_id": 79
+ },
+ "minecraft:ravager": {
+ "protocol_id": 80
+ },
+ "minecraft:salmon": {
+ "protocol_id": 81
+ },
+ "minecraft:sheep": {
+ "protocol_id": 82
+ },
+ "minecraft:shulker": {
+ "protocol_id": 83
+ },
+ "minecraft:shulker_bullet": {
+ "protocol_id": 84
+ },
+ "minecraft:silverfish": {
+ "protocol_id": 85
+ },
+ "minecraft:skeleton": {
+ "protocol_id": 86
+ },
+ "minecraft:skeleton_horse": {
+ "protocol_id": 87
+ },
+ "minecraft:slime": {
+ "protocol_id": 88
+ },
+ "minecraft:small_fireball": {
+ "protocol_id": 89
+ },
+ "minecraft:sniffer": {
+ "protocol_id": 90
+ },
+ "minecraft:snow_golem": {
+ "protocol_id": 91
+ },
+ "minecraft:snowball": {
+ "protocol_id": 92
+ },
+ "minecraft:spawner_minecart": {
+ "protocol_id": 93
+ },
+ "minecraft:spectral_arrow": {
+ "protocol_id": 94
+ },
+ "minecraft:spider": {
+ "protocol_id": 95
+ },
+ "minecraft:squid": {
+ "protocol_id": 96
+ },
+ "minecraft:stray": {
+ "protocol_id": 97
+ },
+ "minecraft:strider": {
"protocol_id": 98
},
- "minecraft:tropical_fish": {
+ "minecraft:tadpole": {
+ "protocol_id": 99
+ },
+ "minecraft:text_display": {
"protocol_id": 100
},
- "minecraft:turtle": {
+ "minecraft:tnt": {
"protocol_id": 101
},
- "minecraft:vex": {
+ "minecraft:tnt_minecart": {
"protocol_id": 102
},
- "minecraft:villager": {
+ "minecraft:trader_llama": {
"protocol_id": 103
},
- "minecraft:vindicator": {
+ "minecraft:trident": {
"protocol_id": 104
},
- "minecraft:wandering_trader": {
+ "minecraft:tropical_fish": {
"protocol_id": 105
},
- "minecraft:warden": {
+ "minecraft:turtle": {
"protocol_id": 106
},
- "minecraft:witch": {
+ "minecraft:vex": {
"protocol_id": 107
},
- "minecraft:wither": {
+ "minecraft:villager": {
"protocol_id": 108
},
- "minecraft:wither_skeleton": {
+ "minecraft:vindicator": {
"protocol_id": 109
},
- "minecraft:wither_skull": {
+ "minecraft:wandering_trader": {
"protocol_id": 110
},
- "minecraft:wolf": {
+ "minecraft:warden": {
"protocol_id": 111
},
- "minecraft:zoglin": {
+ "minecraft:witch": {
"protocol_id": 112
},
- "minecraft:zombie": {
+ "minecraft:wither": {
"protocol_id": 113
},
- "minecraft:zombie_horse": {
+ "minecraft:wither_skeleton": {
"protocol_id": 114
},
- "minecraft:zombie_villager": {
+ "minecraft:wither_skull": {
"protocol_id": 115
},
- "minecraft:zombified_piglin": {
+ "minecraft:wolf": {
"protocol_id": 116
+ },
+ "minecraft:zoglin": {
+ "protocol_id": 117
+ },
+ "minecraft:zombie": {
+ "protocol_id": 118
+ },
+ "minecraft:zombie_horse": {
+ "protocol_id": 119
+ },
+ "minecraft:zombie_villager": {
+ "protocol_id": 120
+ },
+ "minecraft:zombified_piglin": {
+ "protocol_id": 121
}
},
"protocol_id": 6
@@ -4389,92 +4514,98 @@
"minecraft:entity_die": {
"protocol_id": 16
},
- "minecraft:entity_interact": {
+ "minecraft:entity_dismount": {
"protocol_id": 17
},
- "minecraft:entity_place": {
+ "minecraft:entity_interact": {
"protocol_id": 18
},
- "minecraft:entity_roar": {
+ "minecraft:entity_mount": {
"protocol_id": 19
},
- "minecraft:entity_shake": {
+ "minecraft:entity_place": {
"protocol_id": 20
},
- "minecraft:equip": {
+ "minecraft:entity_roar": {
"protocol_id": 21
},
- "minecraft:explode": {
+ "minecraft:entity_shake": {
"protocol_id": 22
},
- "minecraft:flap": {
+ "minecraft:equip": {
"protocol_id": 23
},
- "minecraft:fluid_pickup": {
+ "minecraft:explode": {
"protocol_id": 24
},
- "minecraft:fluid_place": {
+ "minecraft:flap": {
"protocol_id": 25
},
- "minecraft:hit_ground": {
+ "minecraft:fluid_pickup": {
"protocol_id": 26
},
- "minecraft:instrument_play": {
+ "minecraft:fluid_place": {
"protocol_id": 27
},
- "minecraft:item_interact_finish": {
+ "minecraft:hit_ground": {
"protocol_id": 28
},
- "minecraft:item_interact_start": {
+ "minecraft:instrument_play": {
"protocol_id": 29
},
- "minecraft:jukebox_play": {
+ "minecraft:item_interact_finish": {
"protocol_id": 30
},
- "minecraft:jukebox_stop_play": {
+ "minecraft:item_interact_start": {
"protocol_id": 31
},
- "minecraft:lightning_strike": {
+ "minecraft:jukebox_play": {
"protocol_id": 32
},
- "minecraft:note_block_play": {
+ "minecraft:jukebox_stop_play": {
"protocol_id": 33
},
- "minecraft:piston_contract": {
+ "minecraft:lightning_strike": {
"protocol_id": 34
},
- "minecraft:piston_extend": {
+ "minecraft:note_block_play": {
"protocol_id": 35
},
- "minecraft:prime_fuse": {
+ "minecraft:piston_contract": {
"protocol_id": 36
},
- "minecraft:projectile_land": {
+ "minecraft:piston_extend": {
"protocol_id": 37
},
- "minecraft:projectile_shoot": {
+ "minecraft:prime_fuse": {
"protocol_id": 38
},
- "minecraft:sculk_sensor_tendrils_clicking": {
+ "minecraft:projectile_land": {
"protocol_id": 39
},
- "minecraft:shear": {
+ "minecraft:projectile_shoot": {
"protocol_id": 40
},
- "minecraft:shriek": {
+ "minecraft:sculk_sensor_tendrils_clicking": {
"protocol_id": 41
},
- "minecraft:splash": {
+ "minecraft:shear": {
"protocol_id": 42
},
- "minecraft:step": {
+ "minecraft:shriek": {
"protocol_id": 43
},
- "minecraft:swim": {
+ "minecraft:splash": {
"protocol_id": 44
},
- "minecraft:teleport": {
+ "minecraft:step": {
"protocol_id": 45
+ },
+ "minecraft:swim": {
+ "protocol_id": 46
+ },
+ "minecraft:teleport": {
+ "protocol_id": 47
}
},
"protocol_id": 0
@@ -4558,3562 +4689,3688 @@
"default": "minecraft:air",
"entries": {
"minecraft:acacia_boat": {
- "protocol_id": 721
+ "protocol_id": 740
},
"minecraft:acacia_button": {
- "protocol_id": 648
+ "protocol_id": 662
},
"minecraft:acacia_chest_boat": {
- "protocol_id": 722
+ "protocol_id": 741
},
"minecraft:acacia_door": {
- "protocol_id": 673
+ "protocol_id": 689
},
"minecraft:acacia_fence": {
- "protocol_id": 279
+ "protocol_id": 291
},
"minecraft:acacia_fence_gate": {
- "protocol_id": 694
+ "protocol_id": 712
},
"minecraft:acacia_hanging_sign": {
- "protocol_id": 835
+ "protocol_id": 857
},
"minecraft:acacia_leaves": {
- "protocol_id": 150
+ "protocol_id": 157
},
"minecraft:acacia_log": {
- "protocol_id": 110
+ "protocol_id": 113
},
"minecraft:acacia_planks": {
"protocol_id": 27
},
"minecraft:acacia_pressure_plate": {
- "protocol_id": 662
+ "protocol_id": 677
},
"minecraft:acacia_sapling": {
- "protocol_id": 38
+ "protocol_id": 39
},
"minecraft:acacia_sign": {
- "protocol_id": 825
+ "protocol_id": 846
},
"minecraft:acacia_slab": {
- "protocol_id": 222
+ "protocol_id": 232
},
"minecraft:acacia_stairs": {
- "protocol_id": 350
+ "protocol_id": 363
},
"minecraft:acacia_trapdoor": {
- "protocol_id": 684
+ "protocol_id": 701
},
"minecraft:acacia_wood": {
- "protocol_id": 141
+ "protocol_id": 147
},
"minecraft:activator_rail": {
- "protocol_id": 703
+ "protocol_id": 722
},
"minecraft:air": {
"protocol_id": 0
},
"minecraft:allay_spawn_egg": {
- "protocol_id": 940
+ "protocol_id": 963
},
"minecraft:allium": {
- "protocol_id": 190
+ "protocol_id": 198
},
"minecraft:amethyst_block": {
- "protocol_id": 68
+ "protocol_id": 71
},
"minecraft:amethyst_cluster": {
- "protocol_id": 1179
+ "protocol_id": 1204
},
"minecraft:amethyst_shard": {
- "protocol_id": 743
+ "protocol_id": 764
},
"minecraft:ancient_debris": {
- "protocol_id": 63
+ "protocol_id": 66
},
"minecraft:andesite": {
"protocol_id": 6
},
"minecraft:andesite_slab": {
- "protocol_id": 609
+ "protocol_id": 623
},
"minecraft:andesite_stairs": {
- "protocol_id": 592
+ "protocol_id": 606
},
"minecraft:andesite_wall": {
- "protocol_id": 369
+ "protocol_id": 383
},
"minecraft:anvil": {
- "protocol_id": 381
+ "protocol_id": 395
},
"minecraft:apple": {
- "protocol_id": 734
+ "protocol_id": 755
},
"minecraft:armor_stand": {
- "protocol_id": 1049
+ "protocol_id": 1073
},
"minecraft:arrow": {
- "protocol_id": 736
+ "protocol_id": 757
},
"minecraft:axolotl_bucket": {
- "protocol_id": 852
+ "protocol_id": 875
},
"minecraft:axolotl_spawn_egg": {
- "protocol_id": 941
+ "protocol_id": 964
},
"minecraft:azalea": {
- "protocol_id": 166
+ "protocol_id": 174
},
"minecraft:azalea_leaves": {
- "protocol_id": 153
+ "protocol_id": 161
},
"minecraft:azure_bluet": {
- "protocol_id": 191
+ "protocol_id": 199
},
"minecraft:baked_potato": {
- "protocol_id": 1025
+ "protocol_id": 1049
},
"minecraft:bamboo": {
- "protocol_id": 217
+ "protocol_id": 227
},
"minecraft:bamboo_block": {
- "protocol_id": 117
+ "protocol_id": 121
},
"minecraft:bamboo_button": {
- "protocol_id": 651
+ "protocol_id": 666
},
"minecraft:bamboo_chest_raft": {
- "protocol_id": 728
+ "protocol_id": 749
},
"minecraft:bamboo_door": {
- "protocol_id": 676
+ "protocol_id": 693
},
"minecraft:bamboo_fence": {
- "protocol_id": 282
+ "protocol_id": 295
},
"minecraft:bamboo_fence_gate": {
- "protocol_id": 697
+ "protocol_id": 716
},
"minecraft:bamboo_hanging_sign": {
- "protocol_id": 838
+ "protocol_id": 861
},
"minecraft:bamboo_mosaic": {
- "protocol_id": 33
+ "protocol_id": 34
},
"minecraft:bamboo_mosaic_slab": {
- "protocol_id": 226
+ "protocol_id": 237
},
"minecraft:bamboo_mosaic_stairs": {
- "protocol_id": 354
+ "protocol_id": 368
},
"minecraft:bamboo_planks": {
- "protocol_id": 30
+ "protocol_id": 31
},
"minecraft:bamboo_pressure_plate": {
- "protocol_id": 665
+ "protocol_id": 681
},
"minecraft:bamboo_raft": {
- "protocol_id": 727
+ "protocol_id": 748
},
"minecraft:bamboo_sign": {
- "protocol_id": 828
+ "protocol_id": 850
},
"minecraft:bamboo_slab": {
- "protocol_id": 225
+ "protocol_id": 236
},
"minecraft:bamboo_stairs": {
- "protocol_id": 353
+ "protocol_id": 367
},
"minecraft:bamboo_trapdoor": {
- "protocol_id": 687
+ "protocol_id": 705
},
"minecraft:barrel": {
- "protocol_id": 1123
+ "protocol_id": 1148
},
"minecraft:barrier": {
- "protocol_id": 405
+ "protocol_id": 419
},
"minecraft:basalt": {
- "protocol_id": 291
+ "protocol_id": 304
},
"minecraft:bat_spawn_egg": {
- "protocol_id": 942
+ "protocol_id": 965
},
"minecraft:beacon": {
- "protocol_id": 358
+ "protocol_id": 372
},
"minecraft:bedrock": {
- "protocol_id": 41
+ "protocol_id": 43
},
"minecraft:bee_nest": {
- "protocol_id": 1140
+ "protocol_id": 1165
},
"minecraft:bee_spawn_egg": {
- "protocol_id": 943
+ "protocol_id": 966
},
"minecraft:beef": {
- "protocol_id": 920
+ "protocol_id": 943
},
"minecraft:beehive": {
- "protocol_id": 1141
+ "protocol_id": 1166
},
"minecraft:beetroot": {
- "protocol_id": 1078
+ "protocol_id": 1103
},
"minecraft:beetroot_seeds": {
- "protocol_id": 1079
+ "protocol_id": 1104
},
"minecraft:beetroot_soup": {
- "protocol_id": 1080
+ "protocol_id": 1105
},
"minecraft:bell": {
- "protocol_id": 1131
+ "protocol_id": 1156
},
"minecraft:big_dripleaf": {
- "protocol_id": 215
+ "protocol_id": 225
},
"minecraft:birch_boat": {
- "protocol_id": 717
+ "protocol_id": 736
},
"minecraft:birch_button": {
- "protocol_id": 646
+ "protocol_id": 660
},
"minecraft:birch_chest_boat": {
- "protocol_id": 718
+ "protocol_id": 737
},
"minecraft:birch_door": {
- "protocol_id": 671
+ "protocol_id": 687
},
"minecraft:birch_fence": {
- "protocol_id": 277
+ "protocol_id": 289
},
"minecraft:birch_fence_gate": {
- "protocol_id": 692
+ "protocol_id": 710
},
"minecraft:birch_hanging_sign": {
- "protocol_id": 833
+ "protocol_id": 855
},
"minecraft:birch_leaves": {
- "protocol_id": 148
+ "protocol_id": 155
},
"minecraft:birch_log": {
- "protocol_id": 108
+ "protocol_id": 111
},
"minecraft:birch_planks": {
"protocol_id": 25
},
"minecraft:birch_pressure_plate": {
- "protocol_id": 660
+ "protocol_id": 675
},
"minecraft:birch_sapling": {
- "protocol_id": 36
+ "protocol_id": 37
},
"minecraft:birch_sign": {
- "protocol_id": 823
+ "protocol_id": 844
},
"minecraft:birch_slab": {
- "protocol_id": 220
+ "protocol_id": 230
},
"minecraft:birch_stairs": {
- "protocol_id": 348
- },
- "minecraft:birch_trapdoor": {
- "protocol_id": 682
- },
- "minecraft:birch_wood": {
- "protocol_id": 139
- },
- "minecraft:black_banner": {
- "protocol_id": 1074
- },
- "minecraft:black_bed": {
- "protocol_id": 912
- },
- "minecraft:black_candle": {
- "protocol_id": 1175
- },
- "minecraft:black_carpet": {
- "protocol_id": 423
- },
- "minecraft:black_concrete": {
- "protocol_id": 532
- },
- "minecraft:black_concrete_powder": {
- "protocol_id": 548
- },
- "minecraft:black_dye": {
- "protocol_id": 892
- },
- "minecraft:black_glazed_terracotta": {
- "protocol_id": 516
- },
- "minecraft:black_shulker_box": {
- "protocol_id": 500
- },
- "minecraft:black_stained_glass": {
- "protocol_id": 448
- },
- "minecraft:black_stained_glass_pane": {
- "protocol_id": 464
- },
- "minecraft:black_terracotta": {
- "protocol_id": 404
- },
- "minecraft:black_wool": {
- "protocol_id": 186
- },
- "minecraft:blackstone": {
- "protocol_id": 1146
- },
- "minecraft:blackstone_slab": {
- "protocol_id": 1147
- },
- "minecraft:blackstone_stairs": {
- "protocol_id": 1148
- },
- "minecraft:blackstone_wall": {
- "protocol_id": 374
- },
- "minecraft:blast_furnace": {
- "protocol_id": 1125
- },
- "minecraft:blaze_powder": {
- "protocol_id": 934
- },
- "minecraft:blaze_rod": {
- "protocol_id": 926
- },
- "minecraft:blaze_spawn_egg": {
- "protocol_id": 944
- },
- "minecraft:blue_banner": {
- "protocol_id": 1070
- },
- "minecraft:blue_bed": {
- "protocol_id": 908
- },
- "minecraft:blue_candle": {
- "protocol_id": 1171
- },
- "minecraft:blue_carpet": {
- "protocol_id": 419
- },
- "minecraft:blue_concrete": {
- "protocol_id": 528
- },
- "minecraft:blue_concrete_powder": {
- "protocol_id": 544
- },
- "minecraft:blue_dye": {
- "protocol_id": 888
- },
- "minecraft:blue_glazed_terracotta": {
- "protocol_id": 512
- },
- "minecraft:blue_ice": {
- "protocol_id": 580
- },
- "minecraft:blue_orchid": {
- "protocol_id": 189
- },
- "minecraft:blue_shulker_box": {
- "protocol_id": 496
- },
- "minecraft:blue_stained_glass": {
- "protocol_id": 444
- },
- "minecraft:blue_stained_glass_pane": {
- "protocol_id": 460
- },
- "minecraft:blue_terracotta": {
- "protocol_id": 400
- },
- "minecraft:blue_wool": {
- "protocol_id": 182
- },
- "minecraft:bone": {
- "protocol_id": 894
- },
- "minecraft:bone_block": {
- "protocol_id": 482
- },
- "minecraft:bone_meal": {
- "protocol_id": 893
- },
- "minecraft:book": {
- "protocol_id": 858
- },
- "minecraft:bookshelf": {
- "protocol_id": 251
- },
- "minecraft:bow": {
- "protocol_id": 735
- },
- "minecraft:bowl": {
- "protocol_id": 783
- },
- "minecraft:brain_coral": {
- "protocol_id": 561
- },
- "minecraft:brain_coral_block": {
- "protocol_id": 556
- },
- "minecraft:brain_coral_fan": {
- "protocol_id": 571
- },
- "minecraft:bread": {
- "protocol_id": 790
- },
- "minecraft:brewing_stand": {
- "protocol_id": 936
- },
- "minecraft:brick": {
- "protocol_id": 854
- },
- "minecraft:brick_slab": {
- "protocol_id": 235
- },
- "minecraft:brick_stairs": {
- "protocol_id": 324
- },
- "minecraft:brick_wall": {
"protocol_id": 361
},
- "minecraft:bricks": {
- "protocol_id": 250
+ "minecraft:birch_trapdoor": {
+ "protocol_id": 699
},
- "minecraft:brown_banner": {
- "protocol_id": 1071
+ "minecraft:birch_wood": {
+ "protocol_id": 145
},
- "minecraft:brown_bed": {
- "protocol_id": 909
+ "minecraft:black_banner": {
+ "protocol_id": 1098
},
- "minecraft:brown_candle": {
- "protocol_id": 1172
+ "minecraft:black_bed": {
+ "protocol_id": 935
},
- "minecraft:brown_carpet": {
- "protocol_id": 420
+ "minecraft:black_candle": {
+ "protocol_id": 1200
},
- "minecraft:brown_concrete": {
- "protocol_id": 529
+ "minecraft:black_carpet": {
+ "protocol_id": 437
},
- "minecraft:brown_concrete_powder": {
- "protocol_id": 545
+ "minecraft:black_concrete": {
+ "protocol_id": 546
},
- "minecraft:brown_dye": {
- "protocol_id": 889
- },
- "minecraft:brown_glazed_terracotta": {
- "protocol_id": 513
- },
- "minecraft:brown_mushroom": {
- "protocol_id": 201
- },
- "minecraft:brown_mushroom_block": {
- "protocol_id": 315
- },
- "minecraft:brown_shulker_box": {
- "protocol_id": 497
- },
- "minecraft:brown_stained_glass": {
- "protocol_id": 445
- },
- "minecraft:brown_stained_glass_pane": {
- "protocol_id": 461
- },
- "minecraft:brown_terracotta": {
- "protocol_id": 401
- },
- "minecraft:brown_wool": {
- "protocol_id": 183
- },
- "minecraft:bubble_coral": {
+ "minecraft:black_concrete_powder": {
"protocol_id": 562
},
+ "minecraft:black_dye": {
+ "protocol_id": 915
+ },
+ "minecraft:black_glazed_terracotta": {
+ "protocol_id": 530
+ },
+ "minecraft:black_shulker_box": {
+ "protocol_id": 514
+ },
+ "minecraft:black_stained_glass": {
+ "protocol_id": 462
+ },
+ "minecraft:black_stained_glass_pane": {
+ "protocol_id": 478
+ },
+ "minecraft:black_terracotta": {
+ "protocol_id": 418
+ },
+ "minecraft:black_wool": {
+ "protocol_id": 194
+ },
+ "minecraft:blackstone": {
+ "protocol_id": 1171
+ },
+ "minecraft:blackstone_slab": {
+ "protocol_id": 1172
+ },
+ "minecraft:blackstone_stairs": {
+ "protocol_id": 1173
+ },
+ "minecraft:blackstone_wall": {
+ "protocol_id": 388
+ },
+ "minecraft:blast_furnace": {
+ "protocol_id": 1150
+ },
+ "minecraft:blaze_powder": {
+ "protocol_id": 957
+ },
+ "minecraft:blaze_rod": {
+ "protocol_id": 949
+ },
+ "minecraft:blaze_spawn_egg": {
+ "protocol_id": 967
+ },
+ "minecraft:blue_banner": {
+ "protocol_id": 1094
+ },
+ "minecraft:blue_bed": {
+ "protocol_id": 931
+ },
+ "minecraft:blue_candle": {
+ "protocol_id": 1196
+ },
+ "minecraft:blue_carpet": {
+ "protocol_id": 433
+ },
+ "minecraft:blue_concrete": {
+ "protocol_id": 542
+ },
+ "minecraft:blue_concrete_powder": {
+ "protocol_id": 558
+ },
+ "minecraft:blue_dye": {
+ "protocol_id": 911
+ },
+ "minecraft:blue_glazed_terracotta": {
+ "protocol_id": 526
+ },
+ "minecraft:blue_ice": {
+ "protocol_id": 594
+ },
+ "minecraft:blue_orchid": {
+ "protocol_id": 197
+ },
+ "minecraft:blue_shulker_box": {
+ "protocol_id": 510
+ },
+ "minecraft:blue_stained_glass": {
+ "protocol_id": 458
+ },
+ "minecraft:blue_stained_glass_pane": {
+ "protocol_id": 474
+ },
+ "minecraft:blue_terracotta": {
+ "protocol_id": 414
+ },
+ "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:brush": {
+ "protocol_id": 1211
+ },
+ "minecraft:bubble_coral": {
+ "protocol_id": 576
+ },
"minecraft:bubble_coral_block": {
- "protocol_id": 557
+ "protocol_id": 571
},
"minecraft:bubble_coral_fan": {
- "protocol_id": 572
+ "protocol_id": 586
},
"minecraft:bucket": {
- "protocol_id": 841
+ "protocol_id": 864
},
"minecraft:budding_amethyst": {
- "protocol_id": 69
+ "protocol_id": 72
},
"minecraft:bundle": {
- "protocol_id": 863
+ "protocol_id": 886
},
"minecraft:cactus": {
- "protocol_id": 272
+ "protocol_id": 284
},
"minecraft:cake": {
- "protocol_id": 896
+ "protocol_id": 919
},
"minecraft:calcite": {
"protocol_id": 11
},
"minecraft:camel_spawn_egg": {
- "protocol_id": 946
+ "protocol_id": 969
},
"minecraft:campfire": {
- "protocol_id": 1136
+ "protocol_id": 1161
},
"minecraft:candle": {
- "protocol_id": 1159
+ "protocol_id": 1184
},
"minecraft:carrot": {
- "protocol_id": 1023
+ "protocol_id": 1047
},
"minecraft:carrot_on_a_stick": {
- "protocol_id": 710
+ "protocol_id": 729
},
"minecraft:cartography_table": {
- "protocol_id": 1126
+ "protocol_id": 1151
},
"minecraft:carved_pumpkin": {
- "protocol_id": 286
+ "protocol_id": 299
},
"minecraft:cat_spawn_egg": {
- "protocol_id": 945
+ "protocol_id": 968
},
"minecraft:cauldron": {
- "protocol_id": 937
+ "protocol_id": 960
},
"minecraft:cave_spider_spawn_egg": {
- "protocol_id": 947
+ "protocol_id": 970
},
"minecraft:chain": {
- "protocol_id": 319
+ "protocol_id": 332
},
"minecraft:chain_command_block": {
- "protocol_id": 477
+ "protocol_id": 491
},
"minecraft:chainmail_boots": {
- "protocol_id": 798
+ "protocol_id": 819
},
"minecraft:chainmail_chestplate": {
- "protocol_id": 796
+ "protocol_id": 817
},
"minecraft:chainmail_helmet": {
- "protocol_id": 795
+ "protocol_id": 816
},
"minecraft:chainmail_leggings": {
- "protocol_id": 797
+ "protocol_id": 818
},
"minecraft:charcoal": {
- "protocol_id": 738
+ "protocol_id": 759
+ },
+ "minecraft:cherry_boat": {
+ "protocol_id": 742
+ },
+ "minecraft:cherry_button": {
+ "protocol_id": 663
+ },
+ "minecraft:cherry_chest_boat": {
+ "protocol_id": 743
+ },
+ "minecraft:cherry_door": {
+ "protocol_id": 690
+ },
+ "minecraft:cherry_fence": {
+ "protocol_id": 292
+ },
+ "minecraft:cherry_fence_gate": {
+ "protocol_id": 713
+ },
+ "minecraft:cherry_hanging_sign": {
+ "protocol_id": 858
+ },
+ "minecraft:cherry_leaves": {
+ "protocol_id": 158
+ },
+ "minecraft:cherry_log": {
+ "protocol_id": 114
+ },
+ "minecraft:cherry_planks": {
+ "protocol_id": 28
+ },
+ "minecraft:cherry_pressure_plate": {
+ "protocol_id": 678
+ },
+ "minecraft:cherry_sapling": {
+ "protocol_id": 40
+ },
+ "minecraft:cherry_sign": {
+ "protocol_id": 847
+ },
+ "minecraft:cherry_slab": {
+ "protocol_id": 233
+ },
+ "minecraft:cherry_stairs": {
+ "protocol_id": 364
+ },
+ "minecraft:cherry_trapdoor": {
+ "protocol_id": 702
+ },
+ "minecraft:cherry_wood": {
+ "protocol_id": 148
},
"minecraft:chest": {
- "protocol_id": 263
+ "protocol_id": 275
},
"minecraft:chest_minecart": {
- "protocol_id": 706
+ "protocol_id": 725
},
"minecraft:chicken": {
- "protocol_id": 922
+ "protocol_id": 945
},
"minecraft:chicken_spawn_egg": {
- "protocol_id": 948
+ "protocol_id": 971
},
"minecraft:chipped_anvil": {
- "protocol_id": 382
+ "protocol_id": 396
},
"minecraft:chiseled_bookshelf": {
- "protocol_id": 252
+ "protocol_id": 263
},
"minecraft:chiseled_deepslate": {
- "protocol_id": 313
+ "protocol_id": 326
},
"minecraft:chiseled_nether_bricks": {
- "protocol_id": 331
+ "protocol_id": 344
},
"minecraft:chiseled_polished_blackstone": {
- "protocol_id": 1153
+ "protocol_id": 1178
},
"minecraft:chiseled_quartz_block": {
- "protocol_id": 384
+ "protocol_id": 398
},
"minecraft:chiseled_red_sandstone": {
- "protocol_id": 473
+ "protocol_id": 487
},
"minecraft:chiseled_sandstone": {
- "protocol_id": 161
+ "protocol_id": 169
},
"minecraft:chiseled_stone_bricks": {
- "protocol_id": 306
+ "protocol_id": 319
},
"minecraft:chorus_flower": {
- "protocol_id": 258
+ "protocol_id": 270
},
"minecraft:chorus_fruit": {
- "protocol_id": 1076
+ "protocol_id": 1100
},
"minecraft:chorus_plant": {
- "protocol_id": 257
+ "protocol_id": 269
},
"minecraft:clay": {
- "protocol_id": 273
+ "protocol_id": 285
},
"minecraft:clay_ball": {
- "protocol_id": 855
+ "protocol_id": 878
},
"minecraft:clock": {
- "protocol_id": 865
+ "protocol_id": 888
},
"minecraft:coal": {
- "protocol_id": 737
+ "protocol_id": 758
},
"minecraft:coal_block": {
- "protocol_id": 64
+ "protocol_id": 67
},
"minecraft:coal_ore": {
- "protocol_id": 45
+ "protocol_id": 48
},
"minecraft:coarse_dirt": {
"protocol_id": 16
},
+ "minecraft:coast_armor_trim_smithing_template": {
+ "protocol_id": 1215
+ },
"minecraft:cobbled_deepslate": {
"protocol_id": 9
},
"minecraft:cobbled_deepslate_slab": {
- "protocol_id": 613
+ "protocol_id": 627
},
"minecraft:cobbled_deepslate_stairs": {
- "protocol_id": 596
+ "protocol_id": 610
},
"minecraft:cobbled_deepslate_wall": {
- "protocol_id": 377
+ "protocol_id": 391
},
"minecraft:cobblestone": {
"protocol_id": 22
},
"minecraft:cobblestone_slab": {
- "protocol_id": 234
+ "protocol_id": 245
},
"minecraft:cobblestone_stairs": {
- "protocol_id": 268
+ "protocol_id": 280
},
"minecraft:cobblestone_wall": {
- "protocol_id": 359
+ "protocol_id": 373
},
"minecraft:cobweb": {
- "protocol_id": 163
+ "protocol_id": 171
},
"minecraft:cocoa_beans": {
- "protocol_id": 876
+ "protocol_id": 899
},
"minecraft:cod": {
- "protocol_id": 868
+ "protocol_id": 891
},
"minecraft:cod_bucket": {
- "protocol_id": 850
- },
- "minecraft:cod_spawn_egg": {
- "protocol_id": 949
- },
- "minecraft:command_block": {
- "protocol_id": 357
- },
- "minecraft:command_block_minecart": {
- "protocol_id": 1056
- },
- "minecraft:comparator": {
- "protocol_id": 622
- },
- "minecraft:compass": {
- "protocol_id": 861
- },
- "minecraft:composter": {
- "protocol_id": 1122
- },
- "minecraft:conduit": {
- "protocol_id": 581
- },
- "minecraft:cooked_beef": {
- "protocol_id": 921
- },
- "minecraft:cooked_chicken": {
- "protocol_id": 923
- },
- "minecraft:cooked_cod": {
- "protocol_id": 872
- },
- "minecraft:cooked_mutton": {
- "protocol_id": 1058
- },
- "minecraft:cooked_porkchop": {
- "protocol_id": 817
- },
- "minecraft:cooked_rabbit": {
- "protocol_id": 1045
- },
- "minecraft:cooked_salmon": {
"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:cooked_mutton": {
+ "protocol_id": 1082
+ },
+ "minecraft:cooked_porkchop": {
+ "protocol_id": 838
+ },
+ "minecraft:cooked_rabbit": {
+ "protocol_id": 1069
+ },
+ "minecraft:cooked_salmon": {
+ "protocol_id": 896
+ },
"minecraft:cookie": {
- "protocol_id": 913
+ "protocol_id": 936
},
"minecraft:copper_block": {
- "protocol_id": 71
+ "protocol_id": 74
},
"minecraft:copper_ingot": {
- "protocol_id": 747
+ "protocol_id": 768
},
"minecraft:copper_ore": {
- "protocol_id": 49
+ "protocol_id": 52
},
"minecraft:cornflower": {
- "protocol_id": 197
+ "protocol_id": 205
},
"minecraft:cow_spawn_egg": {
- "protocol_id": 950
+ "protocol_id": 973
},
"minecraft:cracked_deepslate_bricks": {
- "protocol_id": 310
+ "protocol_id": 323
},
"minecraft:cracked_deepslate_tiles": {
- "protocol_id": 312
+ "protocol_id": 325
},
"minecraft:cracked_nether_bricks": {
- "protocol_id": 330
+ "protocol_id": 343
},
"minecraft:cracked_polished_blackstone_bricks": {
- "protocol_id": 1157
+ "protocol_id": 1182
},
"minecraft:cracked_stone_bricks": {
- "protocol_id": 305
+ "protocol_id": 318
},
"minecraft:crafting_table": {
- "protocol_id": 264
+ "protocol_id": 276
},
"minecraft:creeper_banner_pattern": {
- "protocol_id": 1116
+ "protocol_id": 1141
},
"minecraft:creeper_head": {
- "protocol_id": 1033
+ "protocol_id": 1057
},
"minecraft:creeper_spawn_egg": {
- "protocol_id": 951
+ "protocol_id": 974
},
"minecraft:crimson_button": {
- "protocol_id": 652
+ "protocol_id": 667
},
"minecraft:crimson_door": {
- "protocol_id": 677
+ "protocol_id": 694
},
"minecraft:crimson_fence": {
- "protocol_id": 283
+ "protocol_id": 296
},
"minecraft:crimson_fence_gate": {
- "protocol_id": 698
+ "protocol_id": 717
},
"minecraft:crimson_fungus": {
- "protocol_id": 203
+ "protocol_id": 212
},
"minecraft:crimson_hanging_sign": {
- "protocol_id": 839
+ "protocol_id": 862
},
"minecraft:crimson_hyphae": {
- "protocol_id": 144
+ "protocol_id": 151
},
"minecraft:crimson_nylium": {
"protocol_id": 20
},
"minecraft:crimson_planks": {
- "protocol_id": 31
+ "protocol_id": 32
},
"minecraft:crimson_pressure_plate": {
- "protocol_id": 666
+ "protocol_id": 682
},
"minecraft:crimson_roots": {
- "protocol_id": 205
+ "protocol_id": 214
},
"minecraft:crimson_sign": {
- "protocol_id": 829
+ "protocol_id": 851
},
"minecraft:crimson_slab": {
- "protocol_id": 227
+ "protocol_id": 238
},
"minecraft:crimson_stairs": {
- "protocol_id": 355
+ "protocol_id": 369
},
"minecraft:crimson_stem": {
- "protocol_id": 115
+ "protocol_id": 119
},
"minecraft:crimson_trapdoor": {
- "protocol_id": 688
+ "protocol_id": 706
},
"minecraft:crossbow": {
- "protocol_id": 1112
+ "protocol_id": 1137
},
"minecraft:crying_obsidian": {
- "protocol_id": 1145
+ "protocol_id": 1170
},
"minecraft:cut_copper": {
- "protocol_id": 78
+ "protocol_id": 81
},
"minecraft:cut_copper_slab": {
- "protocol_id": 86
+ "protocol_id": 89
},
"minecraft:cut_copper_stairs": {
- "protocol_id": 82
+ "protocol_id": 85
},
"minecraft:cut_red_sandstone": {
- "protocol_id": 474
+ "protocol_id": 488
},
"minecraft:cut_red_sandstone_slab": {
- "protocol_id": 241
+ "protocol_id": 252
},
"minecraft:cut_sandstone": {
- "protocol_id": 162
+ "protocol_id": 170
},
"minecraft:cut_sandstone_slab": {
- "protocol_id": 232
+ "protocol_id": 243
},
"minecraft:cyan_banner": {
- "protocol_id": 1068
+ "protocol_id": 1092
},
"minecraft:cyan_bed": {
- "protocol_id": 906
+ "protocol_id": 929
},
"minecraft:cyan_candle": {
- "protocol_id": 1169
+ "protocol_id": 1194
},
"minecraft:cyan_carpet": {
- "protocol_id": 417
+ "protocol_id": 431
},
"minecraft:cyan_concrete": {
- "protocol_id": 526
+ "protocol_id": 540
},
"minecraft:cyan_concrete_powder": {
- "protocol_id": 542
+ "protocol_id": 556
},
"minecraft:cyan_dye": {
- "protocol_id": 886
+ "protocol_id": 909
},
"minecraft:cyan_glazed_terracotta": {
- "protocol_id": 510
+ "protocol_id": 524
},
"minecraft:cyan_shulker_box": {
- "protocol_id": 494
+ "protocol_id": 508
},
"minecraft:cyan_stained_glass": {
- "protocol_id": 442
+ "protocol_id": 456
},
"minecraft:cyan_stained_glass_pane": {
- "protocol_id": 458
+ "protocol_id": 472
},
"minecraft:cyan_terracotta": {
- "protocol_id": 398
+ "protocol_id": 412
},
"minecraft:cyan_wool": {
- "protocol_id": 180
+ "protocol_id": 188
},
"minecraft:damaged_anvil": {
- "protocol_id": 383
+ "protocol_id": 397
},
"minecraft:dandelion": {
- "protocol_id": 187
+ "protocol_id": 195
},
"minecraft:dark_oak_boat": {
- "protocol_id": 723
+ "protocol_id": 744
},
"minecraft:dark_oak_button": {
- "protocol_id": 649
+ "protocol_id": 664
},
"minecraft:dark_oak_chest_boat": {
- "protocol_id": 724
+ "protocol_id": 745
},
"minecraft:dark_oak_door": {
- "protocol_id": 674
+ "protocol_id": 691
},
"minecraft:dark_oak_fence": {
- "protocol_id": 280
+ "protocol_id": 293
},
"minecraft:dark_oak_fence_gate": {
- "protocol_id": 695
+ "protocol_id": 714
},
"minecraft:dark_oak_hanging_sign": {
- "protocol_id": 836
+ "protocol_id": 859
},
"minecraft:dark_oak_leaves": {
- "protocol_id": 151
+ "protocol_id": 159
},
"minecraft:dark_oak_log": {
- "protocol_id": 111
+ "protocol_id": 115
},
"minecraft:dark_oak_planks": {
- "protocol_id": 28
+ "protocol_id": 29
},
"minecraft:dark_oak_pressure_plate": {
- "protocol_id": 663
+ "protocol_id": 679
},
"minecraft:dark_oak_sapling": {
- "protocol_id": 39
+ "protocol_id": 41
},
"minecraft:dark_oak_sign": {
- "protocol_id": 826
+ "protocol_id": 848
},
"minecraft:dark_oak_slab": {
- "protocol_id": 223
+ "protocol_id": 234
},
"minecraft:dark_oak_stairs": {
- "protocol_id": 351
+ "protocol_id": 365
},
"minecraft:dark_oak_trapdoor": {
- "protocol_id": 685
+ "protocol_id": 703
},
"minecraft:dark_oak_wood": {
- "protocol_id": 142
+ "protocol_id": 149
},
"minecraft:dark_prismarine": {
- "protocol_id": 467
+ "protocol_id": 481
},
"minecraft:dark_prismarine_slab": {
- "protocol_id": 245
+ "protocol_id": 256
},
"minecraft:dark_prismarine_stairs": {
- "protocol_id": 470
+ "protocol_id": 484
},
"minecraft:daylight_detector": {
- "protocol_id": 635
+ "protocol_id": 649
},
"minecraft:dead_brain_coral": {
- "protocol_id": 565
- },
- "minecraft:dead_brain_coral_block": {
- "protocol_id": 551
- },
- "minecraft:dead_brain_coral_fan": {
- "protocol_id": 576
- },
- "minecraft:dead_bubble_coral": {
- "protocol_id": 566
- },
- "minecraft:dead_bubble_coral_block": {
- "protocol_id": 552
- },
- "minecraft:dead_bubble_coral_fan": {
- "protocol_id": 577
- },
- "minecraft:dead_bush": {
- "protocol_id": 168
- },
- "minecraft:dead_fire_coral": {
- "protocol_id": 567
- },
- "minecraft:dead_fire_coral_block": {
- "protocol_id": 553
- },
- "minecraft:dead_fire_coral_fan": {
- "protocol_id": 578
- },
- "minecraft:dead_horn_coral": {
- "protocol_id": 568
- },
- "minecraft:dead_horn_coral_block": {
- "protocol_id": 554
- },
- "minecraft:dead_horn_coral_fan": {
"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": {
+ "protocol_id": 568
+ },
+ "minecraft:dead_horn_coral_fan": {
+ "protocol_id": 593
+ },
"minecraft:dead_tube_coral": {
- "protocol_id": 569
+ "protocol_id": 583
},
"minecraft:dead_tube_coral_block": {
- "protocol_id": 550
+ "protocol_id": 564
},
"minecraft:dead_tube_coral_fan": {
- "protocol_id": 575
+ "protocol_id": 589
},
"minecraft:debug_stick": {
- "protocol_id": 1091
+ "protocol_id": 1116
+ },
+ "minecraft:decorated_pot": {
+ "protocol_id": 264
},
"minecraft:deepslate": {
"protocol_id": 8
},
"minecraft:deepslate_brick_slab": {
- "protocol_id": 615
+ "protocol_id": 629
},
"minecraft:deepslate_brick_stairs": {
- "protocol_id": 598
+ "protocol_id": 612
},
"minecraft:deepslate_brick_wall": {
- "protocol_id": 379
+ "protocol_id": 393
},
"minecraft:deepslate_bricks": {
- "protocol_id": 309
+ "protocol_id": 322
},
"minecraft:deepslate_coal_ore": {
- "protocol_id": 46
+ "protocol_id": 49
},
"minecraft:deepslate_copper_ore": {
- "protocol_id": 50
+ "protocol_id": 53
},
"minecraft:deepslate_diamond_ore": {
- "protocol_id": 60
+ "protocol_id": 63
},
"minecraft:deepslate_emerald_ore": {
- "protocol_id": 56
- },
- "minecraft:deepslate_gold_ore": {
- "protocol_id": 52
- },
- "minecraft:deepslate_iron_ore": {
- "protocol_id": 48
- },
- "minecraft:deepslate_lapis_ore": {
- "protocol_id": 58
- },
- "minecraft:deepslate_redstone_ore": {
- "protocol_id": 54
- },
- "minecraft:deepslate_tile_slab": {
- "protocol_id": 616
- },
- "minecraft:deepslate_tile_stairs": {
- "protocol_id": 599
- },
- "minecraft:deepslate_tile_wall": {
- "protocol_id": 380
- },
- "minecraft:deepslate_tiles": {
- "protocol_id": 311
- },
- "minecraft:detector_rail": {
- "protocol_id": 701
- },
- "minecraft:diamond": {
- "protocol_id": 739
- },
- "minecraft:diamond_axe": {
- "protocol_id": 775
- },
- "minecraft:diamond_block": {
- "protocol_id": 73
- },
- "minecraft:diamond_boots": {
- "protocol_id": 806
- },
- "minecraft:diamond_chestplate": {
- "protocol_id": 804
- },
- "minecraft:diamond_helmet": {
- "protocol_id": 803
- },
- "minecraft:diamond_hoe": {
- "protocol_id": 776
- },
- "minecraft:diamond_horse_armor": {
- "protocol_id": 1052
- },
- "minecraft:diamond_leggings": {
- "protocol_id": 805
- },
- "minecraft:diamond_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:diamond": {
+ "protocol_id": 760
+ },
+ "minecraft:diamond_axe": {
+ "protocol_id": 796
+ },
+ "minecraft:diamond_block": {
+ "protocol_id": 76
+ },
+ "minecraft:diamond_boots": {
+ "protocol_id": 827
+ },
+ "minecraft:diamond_chestplate": {
+ "protocol_id": 825
+ },
+ "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": {
+ "protocol_id": 62
+ },
"minecraft:diamond_pickaxe": {
- "protocol_id": 774
+ "protocol_id": 795
},
"minecraft:diamond_shovel": {
- "protocol_id": 773
+ "protocol_id": 794
},
"minecraft:diamond_sword": {
- "protocol_id": 772
+ "protocol_id": 793
},
"minecraft:diorite": {
"protocol_id": 4
},
"minecraft:diorite_slab": {
- "protocol_id": 612
+ "protocol_id": 626
},
"minecraft:diorite_stairs": {
- "protocol_id": 595
+ "protocol_id": 609
},
"minecraft:diorite_wall": {
- "protocol_id": 373
+ "protocol_id": 387
},
"minecraft:dirt": {
"protocol_id": 15
},
"minecraft:dirt_path": {
- "protocol_id": 426
+ "protocol_id": 440
},
"minecraft:disc_fragment_5": {
- "protocol_id": 1107
+ "protocol_id": 1132
},
"minecraft:dispenser": {
- "protocol_id": 629
+ "protocol_id": 643
},
"minecraft:dolphin_spawn_egg": {
- "protocol_id": 952
+ "protocol_id": 975
},
"minecraft:donkey_spawn_egg": {
- "protocol_id": 953
+ "protocol_id": 976
},
"minecraft:dragon_breath": {
- "protocol_id": 1081
+ "protocol_id": 1106
},
"minecraft:dragon_egg": {
- "protocol_id": 342
+ "protocol_id": 355
},
"minecraft:dragon_head": {
- "protocol_id": 1034
+ "protocol_id": 1058
},
"minecraft:dried_kelp": {
- "protocol_id": 917
+ "protocol_id": 940
},
"minecraft:dried_kelp_block": {
- "protocol_id": 856
+ "protocol_id": 879
},
"minecraft:dripstone_block": {
"protocol_id": 13
},
"minecraft:dropper": {
- "protocol_id": 630
+ "protocol_id": 644
},
"minecraft:drowned_spawn_egg": {
- "protocol_id": 954
+ "protocol_id": 977
+ },
+ "minecraft:dune_armor_trim_smithing_template": {
+ "protocol_id": 1214
},
"minecraft:echo_shard": {
- "protocol_id": 1185
+ "protocol_id": 1210
},
"minecraft:egg": {
- "protocol_id": 860
+ "protocol_id": 883
},
"minecraft:elder_guardian_spawn_egg": {
- "protocol_id": 955
+ "protocol_id": 978
},
"minecraft:elytra": {
- "protocol_id": 712
+ "protocol_id": 731
},
"minecraft:emerald": {
- "protocol_id": 740
+ "protocol_id": 761
},
"minecraft:emerald_block": {
- "protocol_id": 345
+ "protocol_id": 358
},
"minecraft:emerald_ore": {
- "protocol_id": 55
+ "protocol_id": 58
},
"minecraft:enchanted_book": {
- "protocol_id": 1040
+ "protocol_id": 1064
},
"minecraft:enchanted_golden_apple": {
- "protocol_id": 820
+ "protocol_id": 841
},
"minecraft:enchanting_table": {
- "protocol_id": 338
+ "protocol_id": 351
},
"minecraft:end_crystal": {
- "protocol_id": 1075
+ "protocol_id": 1099
},
"minecraft:end_portal_frame": {
- "protocol_id": 339
+ "protocol_id": 352
},
"minecraft:end_rod": {
- "protocol_id": 256
+ "protocol_id": 268
},
"minecraft:end_stone": {
- "protocol_id": 340
+ "protocol_id": 353
},
"minecraft:end_stone_brick_slab": {
- "protocol_id": 605
+ "protocol_id": 619
},
"minecraft:end_stone_brick_stairs": {
- "protocol_id": 587
+ "protocol_id": 601
},
"minecraft:end_stone_brick_wall": {
- "protocol_id": 372
+ "protocol_id": 386
},
"minecraft:end_stone_bricks": {
- "protocol_id": 341
+ "protocol_id": 354
},
"minecraft:ender_chest": {
- "protocol_id": 344
+ "protocol_id": 357
},
"minecraft:ender_dragon_spawn_egg": {
- "protocol_id": 956
+ "protocol_id": 979
},
"minecraft:ender_eye": {
- "protocol_id": 938
- },
- "minecraft:ender_pearl": {
- "protocol_id": 925
- },
- "minecraft:enderman_spawn_egg": {
- "protocol_id": 957
- },
- "minecraft:endermite_spawn_egg": {
- "protocol_id": 958
- },
- "minecraft:evoker_spawn_egg": {
- "protocol_id": 959
- },
- "minecraft:experience_bottle": {
- "protocol_id": 1016
- },
- "minecraft:exposed_copper": {
- "protocol_id": 75
- },
- "minecraft:exposed_cut_copper": {
- "protocol_id": 79
- },
- "minecraft:exposed_cut_copper_slab": {
- "protocol_id": 87
- },
- "minecraft:exposed_cut_copper_stairs": {
- "protocol_id": 83
- },
- "minecraft:farmland": {
- "protocol_id": 265
- },
- "minecraft:feather": {
- "protocol_id": 786
- },
- "minecraft:fermented_spider_eye": {
- "protocol_id": 933
- },
- "minecraft:fern": {
- "protocol_id": 165
- },
- "minecraft:filled_map": {
- "protocol_id": 914
- },
- "minecraft:fire_charge": {
- "protocol_id": 1017
- },
- "minecraft:fire_coral": {
- "protocol_id": 563
- },
- "minecraft:fire_coral_block": {
- "protocol_id": 558
- },
- "minecraft:fire_coral_fan": {
- "protocol_id": 573
- },
- "minecraft:firework_rocket": {
- "protocol_id": 1038
- },
- "minecraft:firework_star": {
- "protocol_id": 1039
- },
- "minecraft:fishing_rod": {
- "protocol_id": 864
- },
- "minecraft:fletching_table": {
- "protocol_id": 1127
- },
- "minecraft:flint": {
- "protocol_id": 815
- },
- "minecraft:flint_and_steel": {
- "protocol_id": 733
- },
- "minecraft:flower_banner_pattern": {
- "protocol_id": 1115
- },
- "minecraft:flower_pot": {
- "protocol_id": 1022
- },
- "minecraft:flowering_azalea": {
- "protocol_id": 167
- },
- "minecraft:flowering_azalea_leaves": {
- "protocol_id": 154
- },
- "minecraft:fox_spawn_egg": {
- "protocol_id": 960
- },
- "minecraft:frog_spawn_egg": {
"protocol_id": 961
},
- "minecraft:frogspawn": {
- "protocol_id": 1184
+ "minecraft:ender_pearl": {
+ "protocol_id": 948
},
- "minecraft:furnace": {
- "protocol_id": 266
+ "minecraft:enderman_spawn_egg": {
+ "protocol_id": 980
},
- "minecraft:furnace_minecart": {
- "protocol_id": 707
+ "minecraft:endermite_spawn_egg": {
+ "protocol_id": 981
},
- "minecraft:ghast_spawn_egg": {
- "protocol_id": 962
+ "minecraft:evoker_spawn_egg": {
+ "protocol_id": 982
},
- "minecraft:ghast_tear": {
- "protocol_id": 927
+ "minecraft:experience_bottle": {
+ "protocol_id": 1040
},
- "minecraft:gilded_blackstone": {
- "protocol_id": 1149
+ "minecraft:exposed_copper": {
+ "protocol_id": 78
},
- "minecraft:glass": {
- "protocol_id": 157
+ "minecraft:exposed_cut_copper": {
+ "protocol_id": 82
},
- "minecraft:glass_bottle": {
- "protocol_id": 931
+ "minecraft:exposed_cut_copper_slab": {
+ "protocol_id": 90
},
- "minecraft:glass_pane": {
- "protocol_id": 320
+ "minecraft:exposed_cut_copper_stairs": {
+ "protocol_id": 86
},
- "minecraft:glistering_melon_slice": {
- "protocol_id": 939
+ "minecraft:eye_armor_trim_smithing_template": {
+ "protocol_id": 1218
},
- "minecraft:globe_banner_pattern": {
- "protocol_id": 1119
+ "minecraft:farmland": {
+ "protocol_id": 277
},
- "minecraft:glow_berries": {
- "protocol_id": 1135
- },
- "minecraft:glow_ink_sac": {
- "protocol_id": 875
- },
- "minecraft:glow_item_frame": {
- "protocol_id": 1021
- },
- "minecraft:glow_lichen": {
- "protocol_id": 323
- },
- "minecraft:glow_squid_spawn_egg": {
- "protocol_id": 963
- },
- "minecraft:glowstone": {
- "protocol_id": 295
- },
- "minecraft:glowstone_dust": {
- "protocol_id": 867
- },
- "minecraft:goat_horn": {
- "protocol_id": 1121
- },
- "minecraft:goat_spawn_egg": {
- "protocol_id": 964
- },
- "minecraft:gold_block": {
- "protocol_id": 72
- },
- "minecraft:gold_ingot": {
- "protocol_id": 749
- },
- "minecraft:gold_nugget": {
- "protocol_id": 928
- },
- "minecraft:gold_ore": {
- "protocol_id": 51
- },
- "minecraft:golden_apple": {
- "protocol_id": 819
- },
- "minecraft:golden_axe": {
- "protocol_id": 765
- },
- "minecraft:golden_boots": {
- "protocol_id": 810
- },
- "minecraft:golden_carrot": {
- "protocol_id": 1028
- },
- "minecraft:golden_chestplate": {
- "protocol_id": 808
- },
- "minecraft:golden_helmet": {
+ "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": {
+ "protocol_id": 887
+ },
+ "minecraft:fletching_table": {
+ "protocol_id": 1152
+ },
+ "minecraft:flint": {
+ "protocol_id": 836
+ },
+ "minecraft:flint_and_steel": {
+ "protocol_id": 754
+ },
+ "minecraft:flower_banner_pattern": {
+ "protocol_id": 1140
+ },
+ "minecraft:flower_pot": {
+ "protocol_id": 1046
+ },
+ "minecraft:flowering_azalea": {
+ "protocol_id": 175
+ },
+ "minecraft:flowering_azalea_leaves": {
+ "protocol_id": 162
+ },
+ "minecraft:fox_spawn_egg": {
+ "protocol_id": 983
+ },
+ "minecraft:frog_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": {
+ "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": {
+ "protocol_id": 986
+ },
+ "minecraft:glowstone": {
+ "protocol_id": 308
+ },
+ "minecraft:glowstone_dust": {
+ "protocol_id": 890
+ },
+ "minecraft:goat_horn": {
+ "protocol_id": 1146
+ },
+ "minecraft:goat_spawn_egg": {
+ "protocol_id": 987
+ },
+ "minecraft:gold_block": {
+ "protocol_id": 75
+ },
+ "minecraft:gold_ingot": {
+ "protocol_id": 770
+ },
+ "minecraft:gold_nugget": {
+ "protocol_id": 951
+ },
+ "minecraft:gold_ore": {
+ "protocol_id": 54
+ },
+ "minecraft:golden_apple": {
+ "protocol_id": 840
+ },
+ "minecraft:golden_axe": {
+ "protocol_id": 786
+ },
+ "minecraft:golden_boots": {
+ "protocol_id": 831
+ },
+ "minecraft:golden_carrot": {
+ "protocol_id": 1052
+ },
+ "minecraft:golden_chestplate": {
+ "protocol_id": 829
+ },
+ "minecraft:golden_helmet": {
+ "protocol_id": 828
+ },
"minecraft:golden_hoe": {
- "protocol_id": 766
+ "protocol_id": 787
},
"minecraft:golden_horse_armor": {
- "protocol_id": 1051
+ "protocol_id": 1075
},
"minecraft:golden_leggings": {
- "protocol_id": 809
+ "protocol_id": 830
},
"minecraft:golden_pickaxe": {
- "protocol_id": 764
+ "protocol_id": 785
},
"minecraft:golden_shovel": {
- "protocol_id": 763
+ "protocol_id": 784
},
"minecraft:golden_sword": {
- "protocol_id": 762
+ "protocol_id": 783
},
"minecraft:granite": {
"protocol_id": 2
},
"minecraft:granite_slab": {
- "protocol_id": 608
+ "protocol_id": 622
},
"minecraft:granite_stairs": {
- "protocol_id": 591
+ "protocol_id": 605
},
"minecraft:granite_wall": {
- "protocol_id": 365
+ "protocol_id": 379
},
"minecraft:grass": {
- "protocol_id": 164
+ "protocol_id": 172
},
"minecraft:grass_block": {
"protocol_id": 14
},
"minecraft:gravel": {
- "protocol_id": 44
- },
- "minecraft:gray_banner": {
- "protocol_id": 1066
- },
- "minecraft:gray_bed": {
- "protocol_id": 904
- },
- "minecraft:gray_candle": {
- "protocol_id": 1167
- },
- "minecraft:gray_carpet": {
- "protocol_id": 415
- },
- "minecraft:gray_concrete": {
- "protocol_id": 524
- },
- "minecraft:gray_concrete_powder": {
- "protocol_id": 540
- },
- "minecraft:gray_dye": {
- "protocol_id": 884
- },
- "minecraft:gray_glazed_terracotta": {
- "protocol_id": 508
- },
- "minecraft:gray_shulker_box": {
- "protocol_id": 492
- },
- "minecraft:gray_stained_glass": {
- "protocol_id": 440
- },
- "minecraft:gray_stained_glass_pane": {
- "protocol_id": 456
- },
- "minecraft:gray_terracotta": {
- "protocol_id": 396
- },
- "minecraft:gray_wool": {
- "protocol_id": 178
- },
- "minecraft:green_banner": {
- "protocol_id": 1072
- },
- "minecraft:green_bed": {
- "protocol_id": 910
- },
- "minecraft:green_candle": {
- "protocol_id": 1173
- },
- "minecraft:green_carpet": {
- "protocol_id": 421
- },
- "minecraft:green_concrete": {
- "protocol_id": 530
- },
- "minecraft:green_concrete_powder": {
- "protocol_id": 546
- },
- "minecraft:green_dye": {
- "protocol_id": 890
- },
- "minecraft:green_glazed_terracotta": {
- "protocol_id": 514
- },
- "minecraft:green_shulker_box": {
- "protocol_id": 498
- },
- "minecraft:green_stained_glass": {
- "protocol_id": 446
- },
- "minecraft:green_stained_glass_pane": {
- "protocol_id": 462
- },
- "minecraft:green_terracotta": {
- "protocol_id": 402
- },
- "minecraft:green_wool": {
- "protocol_id": 184
- },
- "minecraft:grindstone": {
- "protocol_id": 1128
- },
- "minecraft:guardian_spawn_egg": {
- "protocol_id": 965
- },
- "minecraft:gunpowder": {
- "protocol_id": 787
- },
- "minecraft:hanging_roots": {
- "protocol_id": 214
- },
- "minecraft:hay_block": {
- "protocol_id": 407
- },
- "minecraft:heart_of_the_sea": {
- "protocol_id": 1111
- },
- "minecraft:heavy_weighted_pressure_plate": {
- "protocol_id": 657
- },
- "minecraft:hoglin_spawn_egg": {
- "protocol_id": 966
- },
- "minecraft:honey_block": {
- "protocol_id": 626
- },
- "minecraft:honey_bottle": {
- "protocol_id": 1142
- },
- "minecraft:honeycomb": {
- "protocol_id": 1139
- },
- "minecraft:honeycomb_block": {
- "protocol_id": 1143
- },
- "minecraft:hopper": {
- "protocol_id": 628
- },
- "minecraft:hopper_minecart": {
- "protocol_id": 709
- },
- "minecraft:horn_coral": {
- "protocol_id": 564
- },
- "minecraft:horn_coral_block": {
- "protocol_id": 559
- },
- "minecraft:horn_coral_fan": {
- "protocol_id": 574
- },
- "minecraft:horse_spawn_egg": {
- "protocol_id": 967
- },
- "minecraft:husk_spawn_egg": {
- "protocol_id": 968
- },
- "minecraft:ice": {
- "protocol_id": 270
- },
- "minecraft:infested_chiseled_stone_bricks": {
- "protocol_id": 301
- },
- "minecraft:infested_cobblestone": {
- "protocol_id": 297
- },
- "minecraft:infested_cracked_stone_bricks": {
- "protocol_id": 300
- },
- "minecraft:infested_deepslate": {
- "protocol_id": 302
- },
- "minecraft:infested_mossy_stone_bricks": {
- "protocol_id": 299
- },
- "minecraft:infested_stone": {
- "protocol_id": 296
- },
- "minecraft:infested_stone_bricks": {
- "protocol_id": 298
- },
- "minecraft:ink_sac": {
- "protocol_id": 874
- },
- "minecraft:iron_axe": {
- "protocol_id": 770
- },
- "minecraft:iron_bars": {
- "protocol_id": 318
- },
- "minecraft:iron_block": {
- "protocol_id": 70
- },
- "minecraft:iron_boots": {
- "protocol_id": 802
- },
- "minecraft:iron_chestplate": {
- "protocol_id": 800
- },
- "minecraft:iron_door": {
- "protocol_id": 668
- },
- "minecraft:iron_golem_spawn_egg": {
- "protocol_id": 969
- },
- "minecraft:iron_helmet": {
- "protocol_id": 799
- },
- "minecraft:iron_hoe": {
- "protocol_id": 771
- },
- "minecraft:iron_horse_armor": {
- "protocol_id": 1050
- },
- "minecraft:iron_ingot": {
- "protocol_id": 745
- },
- "minecraft:iron_leggings": {
- "protocol_id": 801
- },
- "minecraft:iron_nugget": {
- "protocol_id": 1089
- },
- "minecraft:iron_ore": {
"protocol_id": 47
},
- "minecraft:iron_pickaxe": {
- "protocol_id": 769
+ "minecraft:gray_banner": {
+ "protocol_id": 1090
},
- "minecraft:iron_shovel": {
- "protocol_id": 768
+ "minecraft:gray_bed": {
+ "protocol_id": 927
},
- "minecraft:iron_sword": {
- "protocol_id": 767
+ "minecraft:gray_candle": {
+ "protocol_id": 1192
},
- "minecraft:iron_trapdoor": {
- "protocol_id": 679
+ "minecraft:gray_carpet": {
+ "protocol_id": 429
},
- "minecraft:item_frame": {
- "protocol_id": 1020
+ "minecraft:gray_concrete": {
+ "protocol_id": 538
},
- "minecraft:jack_o_lantern": {
- "protocol_id": 287
+ "minecraft:gray_concrete_powder": {
+ "protocol_id": 554
},
- "minecraft:jigsaw": {
- "protocol_id": 730
+ "minecraft:gray_dye": {
+ "protocol_id": 907
},
- "minecraft:jukebox": {
- "protocol_id": 274
+ "minecraft:gray_glazed_terracotta": {
+ "protocol_id": 522
},
- "minecraft:jungle_boat": {
- "protocol_id": 719
+ "minecraft:gray_shulker_box": {
+ "protocol_id": 506
},
- "minecraft:jungle_button": {
- "protocol_id": 647
+ "minecraft:gray_stained_glass": {
+ "protocol_id": 454
},
- "minecraft:jungle_chest_boat": {
- "protocol_id": 720
+ "minecraft:gray_stained_glass_pane": {
+ "protocol_id": 470
},
- "minecraft:jungle_door": {
+ "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:green_carpet": {
+ "protocol_id": 435
+ },
+ "minecraft:green_concrete": {
+ "protocol_id": 544
+ },
+ "minecraft:green_concrete_powder": {
+ "protocol_id": 560
+ },
+ "minecraft:green_dye": {
+ "protocol_id": 913
+ },
+ "minecraft:green_glazed_terracotta": {
+ "protocol_id": 528
+ },
+ "minecraft:green_shulker_box": {
+ "protocol_id": 512
+ },
+ "minecraft:green_stained_glass": {
+ "protocol_id": 460
+ },
+ "minecraft:green_stained_glass_pane": {
+ "protocol_id": 476
+ },
+ "minecraft:green_terracotta": {
+ "protocol_id": 416
+ },
+ "minecraft:green_wool": {
+ "protocol_id": 192
+ },
+ "minecraft:grindstone": {
+ "protocol_id": 1153
+ },
+ "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:iron_hoe": {
+ "protocol_id": 792
+ },
+ "minecraft:iron_horse_armor": {
+ "protocol_id": 1074
+ },
+ "minecraft:iron_ingot": {
+ "protocol_id": 766
+ },
+ "minecraft:iron_leggings": {
+ "protocol_id": 822
+ },
+ "minecraft:iron_nugget": {
+ "protocol_id": 1114
+ },
+ "minecraft:iron_ore": {
+ "protocol_id": 50
+ },
+ "minecraft:iron_pickaxe": {
+ "protocol_id": 790
+ },
+ "minecraft:iron_shovel": {
+ "protocol_id": 789
+ },
+ "minecraft:iron_sword": {
+ "protocol_id": 788
+ },
+ "minecraft:iron_trapdoor": {
+ "protocol_id": 696
+ },
+ "minecraft:item_frame": {
+ "protocol_id": 1044
+ },
+ "minecraft:jack_o_lantern": {
+ "protocol_id": 300
+ },
+ "minecraft:jigsaw": {
+ "protocol_id": 751
+ },
+ "minecraft:jukebox": {
+ "protocol_id": 286
+ },
+ "minecraft:jungle_boat": {
+ "protocol_id": 738
+ },
+ "minecraft:jungle_button": {
+ "protocol_id": 661
+ },
+ "minecraft:jungle_chest_boat": {
+ "protocol_id": 739
+ },
+ "minecraft:jungle_door": {
+ "protocol_id": 688
+ },
"minecraft:jungle_fence": {
- "protocol_id": 278
+ "protocol_id": 290
},
"minecraft:jungle_fence_gate": {
- "protocol_id": 693
+ "protocol_id": 711
},
"minecraft:jungle_hanging_sign": {
- "protocol_id": 834
+ "protocol_id": 856
},
"minecraft:jungle_leaves": {
- "protocol_id": 149
+ "protocol_id": 156
},
"minecraft:jungle_log": {
- "protocol_id": 109
+ "protocol_id": 112
},
"minecraft:jungle_planks": {
"protocol_id": 26
},
"minecraft:jungle_pressure_plate": {
- "protocol_id": 661
+ "protocol_id": 676
},
"minecraft:jungle_sapling": {
- "protocol_id": 37
+ "protocol_id": 38
},
"minecraft:jungle_sign": {
- "protocol_id": 824
+ "protocol_id": 845
},
"minecraft:jungle_slab": {
- "protocol_id": 221
+ "protocol_id": 231
},
"minecraft:jungle_stairs": {
- "protocol_id": 349
+ "protocol_id": 362
},
"minecraft:jungle_trapdoor": {
- "protocol_id": 683
+ "protocol_id": 700
},
"minecraft:jungle_wood": {
- "protocol_id": 140
+ "protocol_id": 146
},
"minecraft:kelp": {
- "protocol_id": 211
+ "protocol_id": 220
},
"minecraft:knowledge_book": {
- "protocol_id": 1090
+ "protocol_id": 1115
},
"minecraft:ladder": {
- "protocol_id": 267
+ "protocol_id": 279
},
"minecraft:lantern": {
- "protocol_id": 1132
+ "protocol_id": 1157
},
"minecraft:lapis_block": {
- "protocol_id": 159
+ "protocol_id": 167
},
"minecraft:lapis_lazuli": {
- "protocol_id": 741
+ "protocol_id": 762
},
"minecraft:lapis_ore": {
- "protocol_id": 57
+ "protocol_id": 60
},
"minecraft:large_amethyst_bud": {
- "protocol_id": 1178
+ "protocol_id": 1203
},
"minecraft:large_fern": {
- "protocol_id": 432
+ "protocol_id": 446
},
"minecraft:lava_bucket": {
- "protocol_id": 843
+ "protocol_id": 866
},
"minecraft:lead": {
- "protocol_id": 1054
+ "protocol_id": 1078
},
"minecraft:leather": {
- "protocol_id": 846
+ "protocol_id": 869
},
"minecraft:leather_boots": {
- "protocol_id": 794
+ "protocol_id": 815
},
"minecraft:leather_chestplate": {
- "protocol_id": 792
+ "protocol_id": 813
},
"minecraft:leather_helmet": {
- "protocol_id": 791
+ "protocol_id": 812
},
"minecraft:leather_horse_armor": {
- "protocol_id": 1053
+ "protocol_id": 1077
},
"minecraft:leather_leggings": {
- "protocol_id": 793
+ "protocol_id": 814
},
"minecraft:lectern": {
- "protocol_id": 631
+ "protocol_id": 645
},
"minecraft:lever": {
- "protocol_id": 633
+ "protocol_id": 647
},
"minecraft:light": {
- "protocol_id": 406
+ "protocol_id": 420
},
"minecraft:light_blue_banner": {
- "protocol_id": 1062
+ "protocol_id": 1086
},
"minecraft:light_blue_bed": {
- "protocol_id": 900
+ "protocol_id": 923
},
"minecraft:light_blue_candle": {
- "protocol_id": 1163
+ "protocol_id": 1188
},
"minecraft:light_blue_carpet": {
- "protocol_id": 411
+ "protocol_id": 425
},
"minecraft:light_blue_concrete": {
- "protocol_id": 520
+ "protocol_id": 534
},
"minecraft:light_blue_concrete_powder": {
- "protocol_id": 536
+ "protocol_id": 550
},
"minecraft:light_blue_dye": {
- "protocol_id": 880
+ "protocol_id": 903
},
"minecraft:light_blue_glazed_terracotta": {
- "protocol_id": 504
+ "protocol_id": 518
},
"minecraft:light_blue_shulker_box": {
- "protocol_id": 488
+ "protocol_id": 502
},
"minecraft:light_blue_stained_glass": {
- "protocol_id": 436
+ "protocol_id": 450
},
"minecraft:light_blue_stained_glass_pane": {
- "protocol_id": 452
+ "protocol_id": 466
},
"minecraft:light_blue_terracotta": {
- "protocol_id": 392
+ "protocol_id": 406
},
"minecraft:light_blue_wool": {
- "protocol_id": 174
+ "protocol_id": 182
},
"minecraft:light_gray_banner": {
- "protocol_id": 1067
+ "protocol_id": 1091
},
"minecraft:light_gray_bed": {
- "protocol_id": 905
+ "protocol_id": 928
},
"minecraft:light_gray_candle": {
- "protocol_id": 1168
+ "protocol_id": 1193
},
"minecraft:light_gray_carpet": {
- "protocol_id": 416
+ "protocol_id": 430
},
"minecraft:light_gray_concrete": {
- "protocol_id": 525
+ "protocol_id": 539
},
"minecraft:light_gray_concrete_powder": {
- "protocol_id": 541
+ "protocol_id": 555
},
"minecraft:light_gray_dye": {
- "protocol_id": 885
+ "protocol_id": 908
},
"minecraft:light_gray_glazed_terracotta": {
- "protocol_id": 509
+ "protocol_id": 523
},
"minecraft:light_gray_shulker_box": {
- "protocol_id": 493
+ "protocol_id": 507
},
"minecraft:light_gray_stained_glass": {
- "protocol_id": 441
+ "protocol_id": 455
},
"minecraft:light_gray_stained_glass_pane": {
- "protocol_id": 457
+ "protocol_id": 471
},
"minecraft:light_gray_terracotta": {
- "protocol_id": 397
+ "protocol_id": 411
},
"minecraft:light_gray_wool": {
- "protocol_id": 179
+ "protocol_id": 187
},
"minecraft:light_weighted_pressure_plate": {
- "protocol_id": 656
+ "protocol_id": 671
},
"minecraft:lightning_rod": {
- "protocol_id": 634
+ "protocol_id": 648
},
"minecraft:lilac": {
- "protocol_id": 428
+ "protocol_id": 442
},
"minecraft:lily_of_the_valley": {
- "protocol_id": 198
+ "protocol_id": 206
},
"minecraft:lily_pad": {
- "protocol_id": 328
+ "protocol_id": 341
},
"minecraft:lime_banner": {
- "protocol_id": 1064
+ "protocol_id": 1088
},
"minecraft:lime_bed": {
- "protocol_id": 902
+ "protocol_id": 925
},
"minecraft:lime_candle": {
- "protocol_id": 1165
+ "protocol_id": 1190
},
"minecraft:lime_carpet": {
- "protocol_id": 413
+ "protocol_id": 427
},
"minecraft:lime_concrete": {
- "protocol_id": 522
+ "protocol_id": 536
},
"minecraft:lime_concrete_powder": {
- "protocol_id": 538
+ "protocol_id": 552
},
"minecraft:lime_dye": {
- "protocol_id": 882
+ "protocol_id": 905
},
"minecraft:lime_glazed_terracotta": {
- "protocol_id": 506
+ "protocol_id": 520
},
"minecraft:lime_shulker_box": {
- "protocol_id": 490
+ "protocol_id": 504
},
"minecraft:lime_stained_glass": {
- "protocol_id": 438
+ "protocol_id": 452
},
"minecraft:lime_stained_glass_pane": {
- "protocol_id": 454
+ "protocol_id": 468
},
"minecraft:lime_terracotta": {
- "protocol_id": 394
+ "protocol_id": 408
},
"minecraft:lime_wool": {
- "protocol_id": 176
+ "protocol_id": 184
},
"minecraft:lingering_potion": {
- "protocol_id": 1085
+ "protocol_id": 1110
},
"minecraft:llama_spawn_egg": {
- "protocol_id": 970
+ "protocol_id": 993
},
"minecraft:lodestone": {
- "protocol_id": 1144
+ "protocol_id": 1169
},
"minecraft:loom": {
- "protocol_id": 1114
+ "protocol_id": 1139
},
"minecraft:magenta_banner": {
- "protocol_id": 1061
+ "protocol_id": 1085
},
"minecraft:magenta_bed": {
- "protocol_id": 899
+ "protocol_id": 922
},
"minecraft:magenta_candle": {
- "protocol_id": 1162
+ "protocol_id": 1187
},
"minecraft:magenta_carpet": {
- "protocol_id": 410
+ "protocol_id": 424
},
"minecraft:magenta_concrete": {
- "protocol_id": 519
+ "protocol_id": 533
},
"minecraft:magenta_concrete_powder": {
- "protocol_id": 535
+ "protocol_id": 549
},
"minecraft:magenta_dye": {
- "protocol_id": 879
+ "protocol_id": 902
},
"minecraft:magenta_glazed_terracotta": {
- "protocol_id": 503
+ "protocol_id": 517
},
"minecraft:magenta_shulker_box": {
- "protocol_id": 487
+ "protocol_id": 501
},
"minecraft:magenta_stained_glass": {
- "protocol_id": 435
+ "protocol_id": 449
},
"minecraft:magenta_stained_glass_pane": {
- "protocol_id": 451
+ "protocol_id": 465
},
"minecraft:magenta_terracotta": {
- "protocol_id": 391
+ "protocol_id": 405
},
"minecraft:magenta_wool": {
- "protocol_id": 173
+ "protocol_id": 181
},
"minecraft:magma_block": {
- "protocol_id": 478
+ "protocol_id": 492
},
"minecraft:magma_cream": {
- "protocol_id": 935
+ "protocol_id": 958
},
"minecraft:magma_cube_spawn_egg": {
- "protocol_id": 971
+ "protocol_id": 994
},
"minecraft:mangrove_boat": {
- "protocol_id": 725
+ "protocol_id": 746
},
"minecraft:mangrove_button": {
- "protocol_id": 650
+ "protocol_id": 665
},
"minecraft:mangrove_chest_boat": {
- "protocol_id": 726
+ "protocol_id": 747
},
"minecraft:mangrove_door": {
- "protocol_id": 675
+ "protocol_id": 692
},
"minecraft:mangrove_fence": {
- "protocol_id": 281
+ "protocol_id": 294
},
"minecraft:mangrove_fence_gate": {
- "protocol_id": 696
+ "protocol_id": 715
},
"minecraft:mangrove_hanging_sign": {
- "protocol_id": 837
+ "protocol_id": 860
},
"minecraft:mangrove_leaves": {
- "protocol_id": 152
+ "protocol_id": 160
},
"minecraft:mangrove_log": {
- "protocol_id": 112
+ "protocol_id": 116
},
"minecraft:mangrove_planks": {
- "protocol_id": 29
+ "protocol_id": 30
},
"minecraft:mangrove_pressure_plate": {
- "protocol_id": 664
+ "protocol_id": 680
},
"minecraft:mangrove_propagule": {
- "protocol_id": 40
+ "protocol_id": 42
},
"minecraft:mangrove_roots": {
- "protocol_id": 113
+ "protocol_id": 117
},
"minecraft:mangrove_sign": {
- "protocol_id": 827
+ "protocol_id": 849
},
"minecraft:mangrove_slab": {
- "protocol_id": 224
+ "protocol_id": 235
},
"minecraft:mangrove_stairs": {
- "protocol_id": 352
+ "protocol_id": 366
},
"minecraft:mangrove_trapdoor": {
- "protocol_id": 686
+ "protocol_id": 704
},
"minecraft:mangrove_wood": {
- "protocol_id": 143
+ "protocol_id": 150
},
"minecraft:map": {
- "protocol_id": 1027
+ "protocol_id": 1051
},
"minecraft:medium_amethyst_bud": {
- "protocol_id": 1177
+ "protocol_id": 1202
},
"minecraft:melon": {
- "protocol_id": 321
+ "protocol_id": 334
},
"minecraft:melon_seeds": {
- "protocol_id": 919
+ "protocol_id": 942
},
"minecraft:melon_slice": {
- "protocol_id": 916
+ "protocol_id": 939
},
"minecraft:milk_bucket": {
- "protocol_id": 847
+ "protocol_id": 870
},
"minecraft:minecart": {
- "protocol_id": 705
+ "protocol_id": 724
},
"minecraft:mojang_banner_pattern": {
- "protocol_id": 1118
+ "protocol_id": 1143
},
"minecraft:mooshroom_spawn_egg": {
- "protocol_id": 972
+ "protocol_id": 995
},
"minecraft:moss_block": {
- "protocol_id": 213
+ "protocol_id": 223
},
"minecraft:moss_carpet": {
- "protocol_id": 212
+ "protocol_id": 221
},
"minecraft:mossy_cobblestone": {
- "protocol_id": 253
+ "protocol_id": 265
},
"minecraft:mossy_cobblestone_slab": {
- "protocol_id": 604
+ "protocol_id": 618
},
"minecraft:mossy_cobblestone_stairs": {
- "protocol_id": 586
+ "protocol_id": 600
},
"minecraft:mossy_cobblestone_wall": {
- "protocol_id": 360
+ "protocol_id": 374
},
"minecraft:mossy_stone_brick_slab": {
- "protocol_id": 602
+ "protocol_id": 616
},
"minecraft:mossy_stone_brick_stairs": {
- "protocol_id": 584
+ "protocol_id": 598
},
"minecraft:mossy_stone_brick_wall": {
- "protocol_id": 364
+ "protocol_id": 378
},
"minecraft:mossy_stone_bricks": {
- "protocol_id": 304
+ "protocol_id": 317
},
"minecraft:mud": {
"protocol_id": 19
},
"minecraft:mud_brick_slab": {
- "protocol_id": 237
+ "protocol_id": 248
},
"minecraft:mud_brick_stairs": {
- "protocol_id": 326
+ "protocol_id": 339
},
"minecraft:mud_brick_wall": {
- "protocol_id": 367
+ "protocol_id": 381
},
"minecraft:mud_bricks": {
- "protocol_id": 308
+ "protocol_id": 321
},
"minecraft:muddy_mangrove_roots": {
- "protocol_id": 114
+ "protocol_id": 118
},
"minecraft:mule_spawn_egg": {
- "protocol_id": 973
+ "protocol_id": 996
},
"minecraft:mushroom_stem": {
- "protocol_id": 317
+ "protocol_id": 330
},
"minecraft:mushroom_stew": {
- "protocol_id": 784
+ "protocol_id": 805
},
"minecraft:music_disc_11": {
- "protocol_id": 1102
+ "protocol_id": 1127
},
"minecraft:music_disc_13": {
- "protocol_id": 1092
+ "protocol_id": 1117
},
"minecraft:music_disc_5": {
- "protocol_id": 1105
+ "protocol_id": 1130
},
"minecraft:music_disc_blocks": {
- "protocol_id": 1094
+ "protocol_id": 1119
},
"minecraft:music_disc_cat": {
- "protocol_id": 1093
+ "protocol_id": 1118
},
"minecraft:music_disc_chirp": {
- "protocol_id": 1095
+ "protocol_id": 1120
},
"minecraft:music_disc_far": {
- "protocol_id": 1096
+ "protocol_id": 1121
},
"minecraft:music_disc_mall": {
- "protocol_id": 1097
+ "protocol_id": 1122
},
"minecraft:music_disc_mellohi": {
- "protocol_id": 1098
+ "protocol_id": 1123
},
"minecraft:music_disc_otherside": {
- "protocol_id": 1104
+ "protocol_id": 1129
},
"minecraft:music_disc_pigstep": {
- "protocol_id": 1106
+ "protocol_id": 1131
},
"minecraft:music_disc_stal": {
- "protocol_id": 1099
+ "protocol_id": 1124
},
"minecraft:music_disc_strad": {
- "protocol_id": 1100
+ "protocol_id": 1125
},
"minecraft:music_disc_wait": {
- "protocol_id": 1103
+ "protocol_id": 1128
},
"minecraft:music_disc_ward": {
- "protocol_id": 1101
+ "protocol_id": 1126
},
"minecraft:mutton": {
- "protocol_id": 1057
+ "protocol_id": 1081
},
"minecraft:mycelium": {
- "protocol_id": 327
+ "protocol_id": 340
},
"minecraft:name_tag": {
- "protocol_id": 1055
+ "protocol_id": 1079
},
"minecraft:nautilus_shell": {
- "protocol_id": 1110
+ "protocol_id": 1135
},
"minecraft:nether_brick": {
- "protocol_id": 1041
+ "protocol_id": 1065
},
"minecraft:nether_brick_fence": {
- "protocol_id": 332
+ "protocol_id": 345
},
"minecraft:nether_brick_slab": {
- "protocol_id": 238
+ "protocol_id": 249
},
"minecraft:nether_brick_stairs": {
- "protocol_id": 333
+ "protocol_id": 346
},
"minecraft:nether_brick_wall": {
- "protocol_id": 368
+ "protocol_id": 382
},
"minecraft:nether_bricks": {
- "protocol_id": 329
+ "protocol_id": 342
},
"minecraft:nether_gold_ore": {
- "protocol_id": 61
+ "protocol_id": 64
},
"minecraft:nether_quartz_ore": {
- "protocol_id": 62
+ "protocol_id": 65
},
"minecraft:nether_sprouts": {
- "protocol_id": 207
+ "protocol_id": 216
},
"minecraft:nether_star": {
- "protocol_id": 1036
+ "protocol_id": 1060
},
"minecraft:nether_wart": {
- "protocol_id": 929
+ "protocol_id": 952
},
"minecraft:nether_wart_block": {
- "protocol_id": 479
+ "protocol_id": 493
},
"minecraft:netherite_axe": {
- "protocol_id": 780
+ "protocol_id": 801
},
"minecraft:netherite_block": {
- "protocol_id": 74
+ "protocol_id": 77
},
"minecraft:netherite_boots": {
- "protocol_id": 814
+ "protocol_id": 835
},
"minecraft:netherite_chestplate": {
- "protocol_id": 812
+ "protocol_id": 833
},
"minecraft:netherite_helmet": {
- "protocol_id": 811
+ "protocol_id": 832
},
"minecraft:netherite_hoe": {
- "protocol_id": 781
+ "protocol_id": 802
},
"minecraft:netherite_ingot": {
- "protocol_id": 750
+ "protocol_id": 771
},
"minecraft:netherite_leggings": {
- "protocol_id": 813
+ "protocol_id": 834
},
"minecraft:netherite_pickaxe": {
- "protocol_id": 779
+ "protocol_id": 800
},
"minecraft:netherite_scrap": {
- "protocol_id": 751
+ "protocol_id": 772
},
"minecraft:netherite_shovel": {
- "protocol_id": 778
+ "protocol_id": 799
},
"minecraft:netherite_sword": {
- "protocol_id": 777
+ "protocol_id": 798
+ },
+ "minecraft:netherite_upgrade_smithing_template": {
+ "protocol_id": 1212
},
"minecraft:netherrack": {
- "protocol_id": 288
+ "protocol_id": 301
},
"minecraft:note_block": {
- "protocol_id": 641
+ "protocol_id": 655
},
"minecraft:oak_boat": {
- "protocol_id": 713
+ "protocol_id": 732
},
"minecraft:oak_button": {
- "protocol_id": 644
+ "protocol_id": 658
},
"minecraft:oak_chest_boat": {
- "protocol_id": 714
+ "protocol_id": 733
},
"minecraft:oak_door": {
- "protocol_id": 669
+ "protocol_id": 685
},
"minecraft:oak_fence": {
- "protocol_id": 275
+ "protocol_id": 287
},
"minecraft:oak_fence_gate": {
- "protocol_id": 690
+ "protocol_id": 708
},
"minecraft:oak_hanging_sign": {
- "protocol_id": 831
+ "protocol_id": 853
},
"minecraft:oak_leaves": {
- "protocol_id": 146
+ "protocol_id": 153
},
"minecraft:oak_log": {
- "protocol_id": 106
+ "protocol_id": 109
},
"minecraft:oak_planks": {
"protocol_id": 23
},
"minecraft:oak_pressure_plate": {
- "protocol_id": 658
+ "protocol_id": 673
},
"minecraft:oak_sapling": {
- "protocol_id": 34
+ "protocol_id": 35
},
"minecraft:oak_sign": {
- "protocol_id": 821
+ "protocol_id": 842
},
"minecraft:oak_slab": {
- "protocol_id": 218
+ "protocol_id": 228
},
"minecraft:oak_stairs": {
- "protocol_id": 346
+ "protocol_id": 359
},
"minecraft:oak_trapdoor": {
- "protocol_id": 680
+ "protocol_id": 697
},
"minecraft:oak_wood": {
- "protocol_id": 137
+ "protocol_id": 143
},
"minecraft:observer": {
- "protocol_id": 627
+ "protocol_id": 641
},
"minecraft:obsidian": {
- "protocol_id": 254
+ "protocol_id": 266
},
"minecraft:ocelot_spawn_egg": {
- "protocol_id": 974
+ "protocol_id": 997
},
"minecraft:ochre_froglight": {
- "protocol_id": 1181
+ "protocol_id": 1206
},
"minecraft:orange_banner": {
- "protocol_id": 1060
+ "protocol_id": 1084
},
"minecraft:orange_bed": {
- "protocol_id": 898
+ "protocol_id": 921
},
"minecraft:orange_candle": {
- "protocol_id": 1161
+ "protocol_id": 1186
},
"minecraft:orange_carpet": {
- "protocol_id": 409
+ "protocol_id": 423
},
"minecraft:orange_concrete": {
- "protocol_id": 518
+ "protocol_id": 532
},
"minecraft:orange_concrete_powder": {
- "protocol_id": 534
+ "protocol_id": 548
},
"minecraft:orange_dye": {
- "protocol_id": 878
+ "protocol_id": 901
},
"minecraft:orange_glazed_terracotta": {
- "protocol_id": 502
+ "protocol_id": 516
},
"minecraft:orange_shulker_box": {
- "protocol_id": 486
+ "protocol_id": 500
},
"minecraft:orange_stained_glass": {
- "protocol_id": 434
+ "protocol_id": 448
},
"minecraft:orange_stained_glass_pane": {
- "protocol_id": 450
+ "protocol_id": 464
},
"minecraft:orange_terracotta": {
- "protocol_id": 390
+ "protocol_id": 404
},
"minecraft:orange_tulip": {
- "protocol_id": 193
+ "protocol_id": 201
},
"minecraft:orange_wool": {
- "protocol_id": 172
+ "protocol_id": 180
},
"minecraft:oxeye_daisy": {
- "protocol_id": 196
+ "protocol_id": 204
},
"minecraft:oxidized_copper": {
- "protocol_id": 77
+ "protocol_id": 80
},
"minecraft:oxidized_cut_copper": {
- "protocol_id": 81
+ "protocol_id": 84
},
"minecraft:oxidized_cut_copper_slab": {
- "protocol_id": 89
+ "protocol_id": 92
},
"minecraft:oxidized_cut_copper_stairs": {
- "protocol_id": 85
+ "protocol_id": 88
},
"minecraft:packed_ice": {
- "protocol_id": 425
- },
- "minecraft:packed_mud": {
- "protocol_id": 307
- },
- "minecraft:painting": {
- "protocol_id": 818
- },
- "minecraft:panda_spawn_egg": {
- "protocol_id": 975
- },
- "minecraft:paper": {
- "protocol_id": 857
- },
- "minecraft:parrot_spawn_egg": {
- "protocol_id": 976
- },
- "minecraft:pearlescent_froglight": {
- "protocol_id": 1183
- },
- "minecraft:peony": {
- "protocol_id": 430
- },
- "minecraft:petrified_oak_slab": {
- "protocol_id": 233
- },
- "minecraft:phantom_membrane": {
- "protocol_id": 1109
- },
- "minecraft:phantom_spawn_egg": {
- "protocol_id": 977
- },
- "minecraft:pig_spawn_egg": {
- "protocol_id": 978
- },
- "minecraft:piglin_banner_pattern": {
- "protocol_id": 1120
- },
- "minecraft:piglin_brute_spawn_egg": {
- "protocol_id": 980
- },
- "minecraft:piglin_head": {
- "protocol_id": 1035
- },
- "minecraft:piglin_spawn_egg": {
- "protocol_id": 979
- },
- "minecraft:pillager_spawn_egg": {
- "protocol_id": 981
- },
- "minecraft:pink_banner": {
- "protocol_id": 1065
- },
- "minecraft:pink_bed": {
- "protocol_id": 903
- },
- "minecraft:pink_candle": {
- "protocol_id": 1166
- },
- "minecraft:pink_carpet": {
- "protocol_id": 414
- },
- "minecraft:pink_concrete": {
- "protocol_id": 523
- },
- "minecraft:pink_concrete_powder": {
- "protocol_id": 539
- },
- "minecraft:pink_dye": {
- "protocol_id": 883
- },
- "minecraft:pink_glazed_terracotta": {
- "protocol_id": 507
- },
- "minecraft:pink_shulker_box": {
- "protocol_id": 491
- },
- "minecraft:pink_stained_glass": {
"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:piglin_brute_spawn_egg": {
+ "protocol_id": 1003
+ },
+ "minecraft:piglin_head": {
+ "protocol_id": 1059
+ },
+ "minecraft:piglin_spawn_egg": {
+ "protocol_id": 1002
+ },
+ "minecraft:pillager_spawn_egg": {
+ "protocol_id": 1004
+ },
+ "minecraft:pink_banner": {
+ "protocol_id": 1089
+ },
+ "minecraft:pink_bed": {
+ "protocol_id": 926
+ },
+ "minecraft:pink_candle": {
+ "protocol_id": 1191
+ },
+ "minecraft:pink_carpet": {
+ "protocol_id": 428
+ },
+ "minecraft:pink_concrete": {
+ "protocol_id": 537
+ },
+ "minecraft:pink_concrete_powder": {
+ "protocol_id": 553
+ },
+ "minecraft:pink_dye": {
+ "protocol_id": 906
+ },
+ "minecraft:pink_glazed_terracotta": {
+ "protocol_id": 521
+ },
+ "minecraft:pink_petals": {
+ "protocol_id": 222
+ },
+ "minecraft:pink_shulker_box": {
+ "protocol_id": 505
+ },
+ "minecraft:pink_stained_glass": {
+ "protocol_id": 453
+ },
"minecraft:pink_stained_glass_pane": {
- "protocol_id": 455
+ "protocol_id": 469
},
"minecraft:pink_terracotta": {
- "protocol_id": 395
+ "protocol_id": 409
},
"minecraft:pink_tulip": {
- "protocol_id": 195
+ "protocol_id": 203
},
"minecraft:pink_wool": {
- "protocol_id": 177
+ "protocol_id": 185
},
"minecraft:piston": {
- "protocol_id": 623
+ "protocol_id": 637
},
"minecraft:player_head": {
- "protocol_id": 1031
+ "protocol_id": 1055
},
"minecraft:podzol": {
"protocol_id": 17
},
"minecraft:pointed_dripstone": {
- "protocol_id": 1180
+ "protocol_id": 1205
},
"minecraft:poisonous_potato": {
- "protocol_id": 1026
+ "protocol_id": 1050
},
"minecraft:polar_bear_spawn_egg": {
- "protocol_id": 982
+ "protocol_id": 1005
},
"minecraft:polished_andesite": {
"protocol_id": 7
},
"minecraft:polished_andesite_slab": {
- "protocol_id": 611
+ "protocol_id": 625
},
"minecraft:polished_andesite_stairs": {
- "protocol_id": 594
+ "protocol_id": 608
},
"minecraft:polished_basalt": {
- "protocol_id": 292
+ "protocol_id": 305
},
"minecraft:polished_blackstone": {
- "protocol_id": 1150
+ "protocol_id": 1175
},
"minecraft:polished_blackstone_brick_slab": {
- "protocol_id": 1155
+ "protocol_id": 1180
},
"minecraft:polished_blackstone_brick_stairs": {
- "protocol_id": 1156
+ "protocol_id": 1181
},
"minecraft:polished_blackstone_brick_wall": {
- "protocol_id": 376
+ "protocol_id": 390
},
"minecraft:polished_blackstone_bricks": {
- "protocol_id": 1154
+ "protocol_id": 1179
},
"minecraft:polished_blackstone_button": {
- "protocol_id": 643
+ "protocol_id": 657
},
"minecraft:polished_blackstone_pressure_plate": {
- "protocol_id": 655
+ "protocol_id": 670
},
"minecraft:polished_blackstone_slab": {
- "protocol_id": 1151
+ "protocol_id": 1176
},
"minecraft:polished_blackstone_stairs": {
- "protocol_id": 1152
+ "protocol_id": 1177
},
"minecraft:polished_blackstone_wall": {
- "protocol_id": 375
+ "protocol_id": 389
},
"minecraft:polished_deepslate": {
"protocol_id": 10
},
"minecraft:polished_deepslate_slab": {
- "protocol_id": 614
+ "protocol_id": 628
},
"minecraft:polished_deepslate_stairs": {
- "protocol_id": 597
+ "protocol_id": 611
},
"minecraft:polished_deepslate_wall": {
- "protocol_id": 378
+ "protocol_id": 392
},
"minecraft:polished_diorite": {
"protocol_id": 5
},
"minecraft:polished_diorite_slab": {
- "protocol_id": 603
+ "protocol_id": 617
},
"minecraft:polished_diorite_stairs": {
- "protocol_id": 585
+ "protocol_id": 599
},
"minecraft:polished_granite": {
"protocol_id": 3
},
"minecraft:polished_granite_slab": {
- "protocol_id": 600
+ "protocol_id": 614
},
"minecraft:polished_granite_stairs": {
- "protocol_id": 582
+ "protocol_id": 596
},
"minecraft:popped_chorus_fruit": {
- "protocol_id": 1077
+ "protocol_id": 1101
},
"minecraft:poppy": {
- "protocol_id": 188
+ "protocol_id": 196
},
"minecraft:porkchop": {
- "protocol_id": 816
+ "protocol_id": 837
},
"minecraft:potato": {
- "protocol_id": 1024
- },
- "minecraft:potion": {
- "protocol_id": 930
- },
- "minecraft:powder_snow_bucket": {
- "protocol_id": 844
- },
- "minecraft:powered_rail": {
- "protocol_id": 700
- },
- "minecraft:prismarine": {
- "protocol_id": 465
- },
- "minecraft:prismarine_brick_slab": {
- "protocol_id": 244
- },
- "minecraft:prismarine_brick_stairs": {
- "protocol_id": 469
- },
- "minecraft:prismarine_bricks": {
- "protocol_id": 466
- },
- "minecraft:prismarine_crystals": {
- "protocol_id": 1043
- },
- "minecraft:prismarine_shard": {
- "protocol_id": 1042
- },
- "minecraft:prismarine_slab": {
- "protocol_id": 243
- },
- "minecraft:prismarine_stairs": {
- "protocol_id": 468
- },
- "minecraft:prismarine_wall": {
- "protocol_id": 362
- },
- "minecraft:pufferfish": {
- "protocol_id": 871
- },
- "minecraft:pufferfish_bucket": {
- "protocol_id": 848
- },
- "minecraft:pufferfish_spawn_egg": {
- "protocol_id": 983
- },
- "minecraft:pumpkin": {
- "protocol_id": 285
- },
- "minecraft:pumpkin_pie": {
- "protocol_id": 1037
- },
- "minecraft:pumpkin_seeds": {
- "protocol_id": 918
- },
- "minecraft:purple_banner": {
- "protocol_id": 1069
- },
- "minecraft:purple_bed": {
- "protocol_id": 907
- },
- "minecraft:purple_candle": {
- "protocol_id": 1170
- },
- "minecraft:purple_carpet": {
- "protocol_id": 418
- },
- "minecraft:purple_concrete": {
- "protocol_id": 527
- },
- "minecraft:purple_concrete_powder": {
- "protocol_id": 543
- },
- "minecraft:purple_dye": {
- "protocol_id": 887
- },
- "minecraft:purple_glazed_terracotta": {
- "protocol_id": 511
- },
- "minecraft:purple_shulker_box": {
- "protocol_id": 495
- },
- "minecraft:purple_stained_glass": {
- "protocol_id": 443
- },
- "minecraft:purple_stained_glass_pane": {
- "protocol_id": 459
- },
- "minecraft:purple_terracotta": {
- "protocol_id": 399
- },
- "minecraft:purple_wool": {
- "protocol_id": 181
- },
- "minecraft:purpur_block": {
- "protocol_id": 259
- },
- "minecraft:purpur_pillar": {
- "protocol_id": 260
- },
- "minecraft:purpur_slab": {
- "protocol_id": 242
- },
- "minecraft:purpur_stairs": {
- "protocol_id": 261
- },
- "minecraft:quartz": {
- "protocol_id": 742
- },
- "minecraft:quartz_block": {
- "protocol_id": 385
- },
- "minecraft:quartz_bricks": {
- "protocol_id": 386
- },
- "minecraft:quartz_pillar": {
- "protocol_id": 387
- },
- "minecraft:quartz_slab": {
- "protocol_id": 239
- },
- "minecraft:quartz_stairs": {
- "protocol_id": 388
- },
- "minecraft:rabbit": {
- "protocol_id": 1044
- },
- "minecraft:rabbit_foot": {
- "protocol_id": 1047
- },
- "minecraft:rabbit_hide": {
"protocol_id": 1048
},
+ "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
+ },
+ "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:pumpkin": {
+ "protocol_id": 298
+ },
+ "minecraft:pumpkin_pie": {
+ "protocol_id": 1061
+ },
+ "minecraft:pumpkin_seeds": {
+ "protocol_id": 941
+ },
+ "minecraft:purple_banner": {
+ "protocol_id": 1093
+ },
+ "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": {
+ "protocol_id": 1071
+ },
+ "minecraft:rabbit_hide": {
+ "protocol_id": 1072
+ },
"minecraft:rabbit_spawn_egg": {
- "protocol_id": 984
+ "protocol_id": 1007
},
"minecraft:rabbit_stew": {
- "protocol_id": 1046
+ "protocol_id": 1070
},
"minecraft:rail": {
- "protocol_id": 702
+ "protocol_id": 721
},
"minecraft:ravager_spawn_egg": {
- "protocol_id": 985
+ "protocol_id": 1008
},
"minecraft:raw_copper": {
- "protocol_id": 746
+ "protocol_id": 767
},
"minecraft:raw_copper_block": {
- "protocol_id": 66
+ "protocol_id": 69
},
"minecraft:raw_gold": {
- "protocol_id": 748
+ "protocol_id": 769
},
"minecraft:raw_gold_block": {
- "protocol_id": 67
+ "protocol_id": 70
},
"minecraft:raw_iron": {
- "protocol_id": 744
+ "protocol_id": 765
},
"minecraft:raw_iron_block": {
- "protocol_id": 65
+ "protocol_id": 68
},
"minecraft:recovery_compass": {
- "protocol_id": 862
+ "protocol_id": 885
},
"minecraft:red_banner": {
- "protocol_id": 1073
+ "protocol_id": 1097
},
"minecraft:red_bed": {
- "protocol_id": 911
+ "protocol_id": 934
},
"minecraft:red_candle": {
- "protocol_id": 1174
+ "protocol_id": 1199
},
"minecraft:red_carpet": {
- "protocol_id": 422
+ "protocol_id": 436
},
"minecraft:red_concrete": {
- "protocol_id": 531
+ "protocol_id": 545
},
"minecraft:red_concrete_powder": {
- "protocol_id": 547
+ "protocol_id": 561
},
"minecraft:red_dye": {
- "protocol_id": 891
+ "protocol_id": 914
},
"minecraft:red_glazed_terracotta": {
- "protocol_id": 515
+ "protocol_id": 529
},
"minecraft:red_mushroom": {
- "protocol_id": 202
+ "protocol_id": 211
},
"minecraft:red_mushroom_block": {
- "protocol_id": 316
+ "protocol_id": 329
},
"minecraft:red_nether_brick_slab": {
- "protocol_id": 610
+ "protocol_id": 624
},
"minecraft:red_nether_brick_stairs": {
- "protocol_id": 593
+ "protocol_id": 607
},
"minecraft:red_nether_brick_wall": {
- "protocol_id": 370
+ "protocol_id": 384
},
"minecraft:red_nether_bricks": {
- "protocol_id": 481
+ "protocol_id": 495
},
"minecraft:red_sand": {
- "protocol_id": 43
+ "protocol_id": 46
},
"minecraft:red_sandstone": {
- "protocol_id": 472
+ "protocol_id": 486
},
"minecraft:red_sandstone_slab": {
- "protocol_id": 240
+ "protocol_id": 251
},
"minecraft:red_sandstone_stairs": {
- "protocol_id": 475
+ "protocol_id": 489
},
"minecraft:red_sandstone_wall": {
- "protocol_id": 363
+ "protocol_id": 377
},
"minecraft:red_shulker_box": {
- "protocol_id": 499
+ "protocol_id": 513
},
"minecraft:red_stained_glass": {
- "protocol_id": 447
+ "protocol_id": 461
},
"minecraft:red_stained_glass_pane": {
- "protocol_id": 463
+ "protocol_id": 477
},
"minecraft:red_terracotta": {
- "protocol_id": 403
+ "protocol_id": 417
},
"minecraft:red_tulip": {
- "protocol_id": 192
+ "protocol_id": 200
},
"minecraft:red_wool": {
- "protocol_id": 185
+ "protocol_id": 193
},
"minecraft:redstone": {
- "protocol_id": 618
+ "protocol_id": 632
},
"minecraft:redstone_block": {
- "protocol_id": 620
+ "protocol_id": 634
},
"minecraft:redstone_lamp": {
- "protocol_id": 640
+ "protocol_id": 654
},
"minecraft:redstone_ore": {
- "protocol_id": 53
+ "protocol_id": 56
},
"minecraft:redstone_torch": {
- "protocol_id": 619
+ "protocol_id": 633
},
"minecraft:reinforced_deepslate": {
- "protocol_id": 314
+ "protocol_id": 327
},
"minecraft:repeater": {
- "protocol_id": 621
+ "protocol_id": 635
},
"minecraft:repeating_command_block": {
- "protocol_id": 476
+ "protocol_id": 490
},
"minecraft:respawn_anchor": {
- "protocol_id": 1158
+ "protocol_id": 1183
+ },
+ "minecraft:rib_armor_trim_smithing_template": {
+ "protocol_id": 1222
},
"minecraft:rooted_dirt": {
"protocol_id": 18
},
"minecraft:rose_bush": {
- "protocol_id": 429
+ "protocol_id": 443
},
"minecraft:rotten_flesh": {
- "protocol_id": 924
+ "protocol_id": 947
},
"minecraft:saddle": {
- "protocol_id": 704
+ "protocol_id": 723
},
"minecraft:salmon": {
- "protocol_id": 869
+ "protocol_id": 892
},
"minecraft:salmon_bucket": {
- "protocol_id": 849
+ "protocol_id": 872
},
"minecraft:salmon_spawn_egg": {
- "protocol_id": 986
+ "protocol_id": 1009
},
"minecraft:sand": {
- "protocol_id": 42
+ "protocol_id": 44
},
"minecraft:sandstone": {
- "protocol_id": 160
+ "protocol_id": 168
},
"minecraft:sandstone_slab": {
- "protocol_id": 231
+ "protocol_id": 242
},
"minecraft:sandstone_stairs": {
- "protocol_id": 343
+ "protocol_id": 356
},
"minecraft:sandstone_wall": {
- "protocol_id": 371
+ "protocol_id": 385
},
"minecraft:scaffolding": {
- "protocol_id": 617
+ "protocol_id": 631
},
"minecraft:sculk": {
- "protocol_id": 334
+ "protocol_id": 347
},
"minecraft:sculk_catalyst": {
- "protocol_id": 336
+ "protocol_id": 349
},
"minecraft:sculk_sensor": {
- "protocol_id": 636
+ "protocol_id": 650
},
"minecraft:sculk_shrieker": {
- "protocol_id": 337
+ "protocol_id": 350
},
"minecraft:sculk_vein": {
- "protocol_id": 335
+ "protocol_id": 348
},
"minecraft:scute": {
- "protocol_id": 732
+ "protocol_id": 753
},
"minecraft:sea_lantern": {
- "protocol_id": 471
+ "protocol_id": 485
},
"minecraft:sea_pickle": {
- "protocol_id": 170
+ "protocol_id": 178
},
"minecraft:seagrass": {
- "protocol_id": 169
+ "protocol_id": 177
+ },
+ "minecraft:sentry_armor_trim_smithing_template": {
+ "protocol_id": 1213
},
"minecraft:shears": {
- "protocol_id": 915
+ "protocol_id": 938
},
"minecraft:sheep_spawn_egg": {
- "protocol_id": 987
+ "protocol_id": 1010
},
"minecraft:shield": {
- "protocol_id": 1086
+ "protocol_id": 1111
},
"minecraft:shroomlight": {
- "protocol_id": 1138
+ "protocol_id": 1163
},
"minecraft:shulker_box": {
- "protocol_id": 484
+ "protocol_id": 498
},
"minecraft:shulker_shell": {
- "protocol_id": 1088
+ "protocol_id": 1113
},
"minecraft:shulker_spawn_egg": {
- "protocol_id": 988
+ "protocol_id": 1011
},
"minecraft:silverfish_spawn_egg": {
- "protocol_id": 989
+ "protocol_id": 1012
},
"minecraft:skeleton_horse_spawn_egg": {
- "protocol_id": 991
+ "protocol_id": 1014
},
"minecraft:skeleton_skull": {
- "protocol_id": 1029
+ "protocol_id": 1053
},
"minecraft:skeleton_spawn_egg": {
- "protocol_id": 990
+ "protocol_id": 1013
},
"minecraft:skull_banner_pattern": {
- "protocol_id": 1117
+ "protocol_id": 1142
},
"minecraft:slime_ball": {
- "protocol_id": 859
+ "protocol_id": 882
},
"minecraft:slime_block": {
- "protocol_id": 625
+ "protocol_id": 639
},
"minecraft:slime_spawn_egg": {
- "protocol_id": 992
+ "protocol_id": 1015
},
"minecraft:small_amethyst_bud": {
- "protocol_id": 1176
+ "protocol_id": 1201
},
"minecraft:small_dripleaf": {
- "protocol_id": 216
+ "protocol_id": 226
},
"minecraft:smithing_table": {
- "protocol_id": 1129
+ "protocol_id": 1154
},
"minecraft:smoker": {
- "protocol_id": 1124
+ "protocol_id": 1149
},
"minecraft:smooth_basalt": {
- "protocol_id": 293
+ "protocol_id": 306
},
"minecraft:smooth_quartz": {
- "protocol_id": 246
+ "protocol_id": 257
},
"minecraft:smooth_quartz_slab": {
- "protocol_id": 607
+ "protocol_id": 621
},
"minecraft:smooth_quartz_stairs": {
- "protocol_id": 590
+ "protocol_id": 604
},
"minecraft:smooth_red_sandstone": {
- "protocol_id": 247
+ "protocol_id": 258
},
"minecraft:smooth_red_sandstone_slab": {
- "protocol_id": 601
+ "protocol_id": 615
},
"minecraft:smooth_red_sandstone_stairs": {
- "protocol_id": 583
+ "protocol_id": 597
},
"minecraft:smooth_sandstone": {
- "protocol_id": 248
+ "protocol_id": 259
},
"minecraft:smooth_sandstone_slab": {
- "protocol_id": 606
+ "protocol_id": 620
},
"minecraft:smooth_sandstone_stairs": {
- "protocol_id": 589
+ "protocol_id": 603
},
"minecraft:smooth_stone": {
- "protocol_id": 249
+ "protocol_id": 260
},
"minecraft:smooth_stone_slab": {
- "protocol_id": 230
+ "protocol_id": 241
+ },
+ "minecraft:sniffer_spawn_egg": {
+ "protocol_id": 1016
+ },
+ "minecraft:snout_armor_trim_smithing_template": {
+ "protocol_id": 1221
},
"minecraft:snow": {
- "protocol_id": 269
+ "protocol_id": 281
},
"minecraft:snow_block": {
- "protocol_id": 271
+ "protocol_id": 283
},
"minecraft:snow_golem_spawn_egg": {
- "protocol_id": 993
+ "protocol_id": 1017
},
"minecraft:snowball": {
- "protocol_id": 845
+ "protocol_id": 868
},
"minecraft:soul_campfire": {
- "protocol_id": 1137
+ "protocol_id": 1162
},
"minecraft:soul_lantern": {
- "protocol_id": 1133
+ "protocol_id": 1158
},
"minecraft:soul_sand": {
- "protocol_id": 289
+ "protocol_id": 302
},
"minecraft:soul_soil": {
- "protocol_id": 290
+ "protocol_id": 303
},
"minecraft:soul_torch": {
- "protocol_id": 294
+ "protocol_id": 307
},
"minecraft:spawner": {
- "protocol_id": 262
+ "protocol_id": 274
},
"minecraft:spectral_arrow": {
- "protocol_id": 1083
+ "protocol_id": 1108
},
"minecraft:spider_eye": {
- "protocol_id": 932
+ "protocol_id": 955
},
"minecraft:spider_spawn_egg": {
- "protocol_id": 994
+ "protocol_id": 1018
+ },
+ "minecraft:spire_armor_trim_smithing_template": {
+ "protocol_id": 1223
},
"minecraft:splash_potion": {
- "protocol_id": 1082
+ "protocol_id": 1107
},
"minecraft:sponge": {
- "protocol_id": 155
+ "protocol_id": 163
},
"minecraft:spore_blossom": {
- "protocol_id": 200
+ "protocol_id": 209
},
"minecraft:spruce_boat": {
- "protocol_id": 715
+ "protocol_id": 734
},
"minecraft:spruce_button": {
- "protocol_id": 645
+ "protocol_id": 659
},
"minecraft:spruce_chest_boat": {
- "protocol_id": 716
+ "protocol_id": 735
},
"minecraft:spruce_door": {
- "protocol_id": 670
+ "protocol_id": 686
},
"minecraft:spruce_fence": {
- "protocol_id": 276
+ "protocol_id": 288
},
"minecraft:spruce_fence_gate": {
- "protocol_id": 691
+ "protocol_id": 709
},
"minecraft:spruce_hanging_sign": {
- "protocol_id": 832
+ "protocol_id": 854
},
"minecraft:spruce_leaves": {
- "protocol_id": 147
+ "protocol_id": 154
},
"minecraft:spruce_log": {
- "protocol_id": 107
+ "protocol_id": 110
},
"minecraft:spruce_planks": {
"protocol_id": 24
},
"minecraft:spruce_pressure_plate": {
- "protocol_id": 659
+ "protocol_id": 674
},
"minecraft:spruce_sapling": {
- "protocol_id": 35
+ "protocol_id": 36
},
"minecraft:spruce_sign": {
- "protocol_id": 822
+ "protocol_id": 843
},
"minecraft:spruce_slab": {
- "protocol_id": 219
+ "protocol_id": 229
},
"minecraft:spruce_stairs": {
- "protocol_id": 347
+ "protocol_id": 360
},
"minecraft:spruce_trapdoor": {
- "protocol_id": 681
+ "protocol_id": 698
},
"minecraft:spruce_wood": {
- "protocol_id": 138
+ "protocol_id": 144
},
"minecraft:spyglass": {
- "protocol_id": 866
+ "protocol_id": 889
},
"minecraft:squid_spawn_egg": {
- "protocol_id": 995
+ "protocol_id": 1019
},
"minecraft:stick": {
- "protocol_id": 782
+ "protocol_id": 803
},
"minecraft:sticky_piston": {
- "protocol_id": 624
+ "protocol_id": 638
},
"minecraft:stone": {
"protocol_id": 1
},
"minecraft:stone_axe": {
- "protocol_id": 760
+ "protocol_id": 781
},
"minecraft:stone_brick_slab": {
- "protocol_id": 236
+ "protocol_id": 247
},
"minecraft:stone_brick_stairs": {
- "protocol_id": 325
+ "protocol_id": 338
},
"minecraft:stone_brick_wall": {
- "protocol_id": 366
+ "protocol_id": 380
},
"minecraft:stone_bricks": {
- "protocol_id": 303
+ "protocol_id": 316
},
"minecraft:stone_button": {
- "protocol_id": 642
+ "protocol_id": 656
},
"minecraft:stone_hoe": {
- "protocol_id": 761
+ "protocol_id": 782
},
"minecraft:stone_pickaxe": {
- "protocol_id": 759
+ "protocol_id": 780
},
"minecraft:stone_pressure_plate": {
- "protocol_id": 654
+ "protocol_id": 669
},
"minecraft:stone_shovel": {
- "protocol_id": 758
+ "protocol_id": 779
},
"minecraft:stone_slab": {
- "protocol_id": 229
+ "protocol_id": 240
},
"minecraft:stone_stairs": {
- "protocol_id": 588
+ "protocol_id": 602
},
"minecraft:stone_sword": {
- "protocol_id": 757
+ "protocol_id": 778
},
"minecraft:stonecutter": {
- "protocol_id": 1130
+ "protocol_id": 1155
},
"minecraft:stray_spawn_egg": {
- "protocol_id": 996
+ "protocol_id": 1020
},
"minecraft:strider_spawn_egg": {
- "protocol_id": 997
+ "protocol_id": 1021
},
"minecraft:string": {
- "protocol_id": 785
+ "protocol_id": 806
},
"minecraft:stripped_acacia_log": {
- "protocol_id": 122
- },
- "minecraft:stripped_acacia_wood": {
- "protocol_id": 131
- },
- "minecraft:stripped_bamboo_block": {
- "protocol_id": 136
- },
- "minecraft:stripped_birch_log": {
- "protocol_id": 120
- },
- "minecraft:stripped_birch_wood": {
- "protocol_id": 129
- },
- "minecraft:stripped_crimson_hyphae": {
- "protocol_id": 134
- },
- "minecraft:stripped_crimson_stem": {
- "protocol_id": 125
- },
- "minecraft:stripped_dark_oak_log": {
- "protocol_id": 123
- },
- "minecraft:stripped_dark_oak_wood": {
- "protocol_id": 132
- },
- "minecraft:stripped_jungle_log": {
- "protocol_id": 121
- },
- "minecraft:stripped_jungle_wood": {
- "protocol_id": 130
- },
- "minecraft:stripped_mangrove_log": {
- "protocol_id": 124
- },
- "minecraft:stripped_mangrove_wood": {
- "protocol_id": 133
- },
- "minecraft:stripped_oak_log": {
- "protocol_id": 118
- },
- "minecraft:stripped_oak_wood": {
- "protocol_id": 127
- },
- "minecraft:stripped_spruce_log": {
- "protocol_id": 119
- },
- "minecraft:stripped_spruce_wood": {
- "protocol_id": 128
- },
- "minecraft:stripped_warped_hyphae": {
- "protocol_id": 135
- },
- "minecraft:stripped_warped_stem": {
"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": {
+ "protocol_id": 137
+ },
+ "minecraft:stripped_crimson_hyphae": {
+ "protocol_id": 140
+ },
+ "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": {
+ "protocol_id": 125
+ },
+ "minecraft:stripped_jungle_wood": {
+ "protocol_id": 135
+ },
+ "minecraft:stripped_mangrove_log": {
+ "protocol_id": 129
+ },
+ "minecraft:stripped_mangrove_wood": {
+ "protocol_id": 139
+ },
+ "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": {
+ "protocol_id": 141
+ },
+ "minecraft:stripped_warped_stem": {
+ "protocol_id": 131
+ },
"minecraft:structure_block": {
- "protocol_id": 729
+ "protocol_id": 750
},
"minecraft:structure_void": {
- "protocol_id": 483
+ "protocol_id": 497
},
"minecraft:sugar": {
- "protocol_id": 895
+ "protocol_id": 918
},
"minecraft:sugar_cane": {
- "protocol_id": 210
+ "protocol_id": 219
},
"minecraft:sunflower": {
- "protocol_id": 427
+ "protocol_id": 441
+ },
+ "minecraft:suspicious_sand": {
+ "protocol_id": 45
},
"minecraft:suspicious_stew": {
- "protocol_id": 1113
+ "protocol_id": 1138
},
"minecraft:sweet_berries": {
- "protocol_id": 1134
+ "protocol_id": 1159
},
"minecraft:tadpole_bucket": {
- "protocol_id": 853
+ "protocol_id": 876
},
"minecraft:tadpole_spawn_egg": {
- "protocol_id": 998
+ "protocol_id": 1022
},
"minecraft:tall_grass": {
- "protocol_id": 431
+ "protocol_id": 445
},
"minecraft:target": {
- "protocol_id": 632
+ "protocol_id": 646
},
"minecraft:terracotta": {
- "protocol_id": 424
+ "protocol_id": 438
+ },
+ "minecraft:tide_armor_trim_smithing_template": {
+ "protocol_id": 1220
},
"minecraft:tinted_glass": {
- "protocol_id": 158
+ "protocol_id": 166
},
"minecraft:tipped_arrow": {
- "protocol_id": 1084
+ "protocol_id": 1109
},
"minecraft:tnt": {
- "protocol_id": 639
+ "protocol_id": 653
},
"minecraft:tnt_minecart": {
- "protocol_id": 708
+ "protocol_id": 727
},
"minecraft:torch": {
- "protocol_id": 255
+ "protocol_id": 267
+ },
+ "minecraft:torchflower": {
+ "protocol_id": 208
+ },
+ "minecraft:torchflower_seeds": {
+ "protocol_id": 1102
},
"minecraft:totem_of_undying": {
- "protocol_id": 1087
+ "protocol_id": 1112
},
"minecraft:trader_llama_spawn_egg": {
- "protocol_id": 999
+ "protocol_id": 1023
},
"minecraft:trapped_chest": {
- "protocol_id": 638
+ "protocol_id": 652
},
"minecraft:trident": {
- "protocol_id": 1108
+ "protocol_id": 1133
},
"minecraft:tripwire_hook": {
- "protocol_id": 637
+ "protocol_id": 651
},
"minecraft:tropical_fish": {
- "protocol_id": 870
+ "protocol_id": 893
},
"minecraft:tropical_fish_bucket": {
- "protocol_id": 851
+ "protocol_id": 874
},
"minecraft:tropical_fish_spawn_egg": {
- "protocol_id": 1000
+ "protocol_id": 1024
},
"minecraft:tube_coral": {
- "protocol_id": 560
+ "protocol_id": 574
},
"minecraft:tube_coral_block": {
- "protocol_id": 555
+ "protocol_id": 569
},
"minecraft:tube_coral_fan": {
- "protocol_id": 570
+ "protocol_id": 584
},
"minecraft:tuff": {
"protocol_id": 12
},
"minecraft:turtle_egg": {
- "protocol_id": 549
+ "protocol_id": 563
},
"minecraft:turtle_helmet": {
- "protocol_id": 731
+ "protocol_id": 752
},
"minecraft:turtle_spawn_egg": {
- "protocol_id": 1001
+ "protocol_id": 1025
},
"minecraft:twisting_vines": {
- "protocol_id": 209
+ "protocol_id": 218
},
"minecraft:verdant_froglight": {
- "protocol_id": 1182
+ "protocol_id": 1207
+ },
+ "minecraft:vex_armor_trim_smithing_template": {
+ "protocol_id": 1219
},
"minecraft:vex_spawn_egg": {
- "protocol_id": 1002
+ "protocol_id": 1026
},
"minecraft:villager_spawn_egg": {
- "protocol_id": 1003
+ "protocol_id": 1027
},
"minecraft:vindicator_spawn_egg": {
- "protocol_id": 1004
+ "protocol_id": 1028
},
"minecraft:vine": {
- "protocol_id": 322
+ "protocol_id": 335
},
"minecraft:wandering_trader_spawn_egg": {
- "protocol_id": 1005
+ "protocol_id": 1029
+ },
+ "minecraft:ward_armor_trim_smithing_template": {
+ "protocol_id": 1217
},
"minecraft:warden_spawn_egg": {
- "protocol_id": 1006
+ "protocol_id": 1030
},
"minecraft:warped_button": {
- "protocol_id": 653
+ "protocol_id": 668
},
"minecraft:warped_door": {
- "protocol_id": 678
+ "protocol_id": 695
},
"minecraft:warped_fence": {
- "protocol_id": 284
+ "protocol_id": 297
},
"minecraft:warped_fence_gate": {
- "protocol_id": 699
+ "protocol_id": 718
},
"minecraft:warped_fungus": {
- "protocol_id": 204
+ "protocol_id": 213
},
"minecraft:warped_fungus_on_a_stick": {
- "protocol_id": 711
+ "protocol_id": 730
},
"minecraft:warped_hanging_sign": {
- "protocol_id": 840
+ "protocol_id": 863
},
"minecraft:warped_hyphae": {
- "protocol_id": 145
+ "protocol_id": 152
},
"minecraft:warped_nylium": {
"protocol_id": 21
},
"minecraft:warped_planks": {
- "protocol_id": 32
+ "protocol_id": 33
},
"minecraft:warped_pressure_plate": {
- "protocol_id": 667
+ "protocol_id": 683
},
"minecraft:warped_roots": {
- "protocol_id": 206
+ "protocol_id": 215
},
"minecraft:warped_sign": {
- "protocol_id": 830
+ "protocol_id": 852
},
"minecraft:warped_slab": {
- "protocol_id": 228
+ "protocol_id": 239
},
"minecraft:warped_stairs": {
- "protocol_id": 356
+ "protocol_id": 370
},
"minecraft:warped_stem": {
- "protocol_id": 116
+ "protocol_id": 120
},
"minecraft:warped_trapdoor": {
- "protocol_id": 689
+ "protocol_id": 707
},
"minecraft:warped_wart_block": {
- "protocol_id": 480
+ "protocol_id": 494
},
"minecraft:water_bucket": {
- "protocol_id": 842
+ "protocol_id": 865
},
"minecraft:waxed_copper_block": {
- "protocol_id": 90
- },
- "minecraft:waxed_cut_copper": {
- "protocol_id": 94
- },
- "minecraft:waxed_cut_copper_slab": {
- "protocol_id": 102
- },
- "minecraft:waxed_cut_copper_stairs": {
- "protocol_id": 98
- },
- "minecraft:waxed_exposed_copper": {
- "protocol_id": 91
- },
- "minecraft:waxed_exposed_cut_copper": {
- "protocol_id": 95
- },
- "minecraft:waxed_exposed_cut_copper_slab": {
- "protocol_id": 103
- },
- "minecraft:waxed_exposed_cut_copper_stairs": {
- "protocol_id": 99
- },
- "minecraft:waxed_oxidized_copper": {
"protocol_id": 93
},
- "minecraft:waxed_oxidized_cut_copper": {
+ "minecraft:waxed_cut_copper": {
"protocol_id": 97
},
- "minecraft:waxed_oxidized_cut_copper_slab": {
+ "minecraft:waxed_cut_copper_slab": {
"protocol_id": 105
},
- "minecraft:waxed_oxidized_cut_copper_stairs": {
+ "minecraft:waxed_cut_copper_stairs": {
"protocol_id": 101
},
- "minecraft:waxed_weathered_copper": {
- "protocol_id": 92
+ "minecraft:waxed_exposed_copper": {
+ "protocol_id": 94
},
- "minecraft:waxed_weathered_cut_copper": {
+ "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_weathered_cut_copper_slab": {
- "protocol_id": 104
- },
- "minecraft:waxed_weathered_cut_copper_stairs": {
+ "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": 76
+ "protocol_id": 79
},
"minecraft:weathered_cut_copper": {
- "protocol_id": 80
+ "protocol_id": 83
},
"minecraft:weathered_cut_copper_slab": {
- "protocol_id": 88
+ "protocol_id": 91
},
"minecraft:weathered_cut_copper_stairs": {
- "protocol_id": 84
+ "protocol_id": 87
},
"minecraft:weeping_vines": {
- "protocol_id": 208
+ "protocol_id": 217
},
"minecraft:wet_sponge": {
- "protocol_id": 156
+ "protocol_id": 164
},
"minecraft:wheat": {
- "protocol_id": 789
+ "protocol_id": 810
},
"minecraft:wheat_seeds": {
- "protocol_id": 788
+ "protocol_id": 809
},
"minecraft:white_banner": {
- "protocol_id": 1059
+ "protocol_id": 1083
},
"minecraft:white_bed": {
- "protocol_id": 897
+ "protocol_id": 920
},
"minecraft:white_candle": {
- "protocol_id": 1160
+ "protocol_id": 1185
},
"minecraft:white_carpet": {
- "protocol_id": 408
+ "protocol_id": 422
},
"minecraft:white_concrete": {
- "protocol_id": 517
+ "protocol_id": 531
},
"minecraft:white_concrete_powder": {
- "protocol_id": 533
+ "protocol_id": 547
},
"minecraft:white_dye": {
- "protocol_id": 877
+ "protocol_id": 900
},
"minecraft:white_glazed_terracotta": {
- "protocol_id": 501
+ "protocol_id": 515
},
"minecraft:white_shulker_box": {
- "protocol_id": 485
+ "protocol_id": 499
},
"minecraft:white_stained_glass": {
- "protocol_id": 433
+ "protocol_id": 447
},
"minecraft:white_stained_glass_pane": {
- "protocol_id": 449
+ "protocol_id": 463
},
"minecraft:white_terracotta": {
- "protocol_id": 389
+ "protocol_id": 403
},
"minecraft:white_tulip": {
- "protocol_id": 194
+ "protocol_id": 202
},
"minecraft:white_wool": {
- "protocol_id": 171
+ "protocol_id": 179
+ },
+ "minecraft:wild_armor_trim_smithing_template": {
+ "protocol_id": 1216
},
"minecraft:witch_spawn_egg": {
- "protocol_id": 1007
+ "protocol_id": 1031
},
"minecraft:wither_rose": {
- "protocol_id": 199
+ "protocol_id": 207
},
"minecraft:wither_skeleton_skull": {
- "protocol_id": 1030
+ "protocol_id": 1054
},
"minecraft:wither_skeleton_spawn_egg": {
- "protocol_id": 1009
+ "protocol_id": 1033
},
"minecraft:wither_spawn_egg": {
- "protocol_id": 1008
- },
- "minecraft:wolf_spawn_egg": {
- "protocol_id": 1010
- },
- "minecraft:wooden_axe": {
- "protocol_id": 755
- },
- "minecraft:wooden_hoe": {
- "protocol_id": 756
- },
- "minecraft:wooden_pickaxe": {
- "protocol_id": 754
- },
- "minecraft:wooden_shovel": {
- "protocol_id": 753
- },
- "minecraft:wooden_sword": {
- "protocol_id": 752
- },
- "minecraft:writable_book": {
- "protocol_id": 1018
- },
- "minecraft:written_book": {
- "protocol_id": 1019
- },
- "minecraft:yellow_banner": {
- "protocol_id": 1063
- },
- "minecraft:yellow_bed": {
- "protocol_id": 901
- },
- "minecraft:yellow_candle": {
- "protocol_id": 1164
- },
- "minecraft:yellow_carpet": {
- "protocol_id": 412
- },
- "minecraft:yellow_concrete": {
- "protocol_id": 521
- },
- "minecraft:yellow_concrete_powder": {
- "protocol_id": 537
- },
- "minecraft:yellow_dye": {
- "protocol_id": 881
- },
- "minecraft:yellow_glazed_terracotta": {
- "protocol_id": 505
- },
- "minecraft:yellow_shulker_box": {
- "protocol_id": 489
- },
- "minecraft:yellow_stained_glass": {
- "protocol_id": 437
- },
- "minecraft:yellow_stained_glass_pane": {
- "protocol_id": 453
- },
- "minecraft:yellow_terracotta": {
- "protocol_id": 393
- },
- "minecraft:yellow_wool": {
- "protocol_id": 175
- },
- "minecraft:zoglin_spawn_egg": {
- "protocol_id": 1011
- },
- "minecraft:zombie_head": {
"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": {
+ "protocol_id": 924
+ },
+ "minecraft:yellow_candle": {
+ "protocol_id": 1189
+ },
+ "minecraft:yellow_carpet": {
+ "protocol_id": 426
+ },
+ "minecraft:yellow_concrete": {
+ "protocol_id": 535
+ },
+ "minecraft:yellow_concrete_powder": {
+ "protocol_id": 551
+ },
+ "minecraft:yellow_dye": {
+ "protocol_id": 904
+ },
+ "minecraft:yellow_glazed_terracotta": {
+ "protocol_id": 519
+ },
+ "minecraft:yellow_shulker_box": {
+ "protocol_id": 503
+ },
+ "minecraft:yellow_stained_glass": {
+ "protocol_id": 451
+ },
+ "minecraft:yellow_stained_glass_pane": {
+ "protocol_id": 467
+ },
+ "minecraft:yellow_terracotta": {
+ "protocol_id": 407
+ },
+ "minecraft:yellow_wool": {
+ "protocol_id": 183
+ },
+ "minecraft:zoglin_spawn_egg": {
+ "protocol_id": 1035
+ },
+ "minecraft:zombie_head": {
+ "protocol_id": 1056
+ },
"minecraft:zombie_horse_spawn_egg": {
- "protocol_id": 1013
+ "protocol_id": 1037
},
"minecraft:zombie_spawn_egg": {
- "protocol_id": 1012
+ "protocol_id": 1036
},
"minecraft:zombie_villager_spawn_egg": {
- "protocol_id": 1014
+ "protocol_id": 1038
},
"minecraft:zombified_piglin_spawn_egg": {
- "protocol_id": 1015
+ "protocol_id": 1039
}
},
"protocol_id": 7
@@ -8559,6 +8816,18 @@
"minecraft:sniff_cooldown": {
"protocol_id": 83
},
+ "minecraft:sniffer_digging": {
+ "protocol_id": 95
+ },
+ "minecraft:sniffer_explored_positions": {
+ "protocol_id": 93
+ },
+ "minecraft:sniffer_happy": {
+ "protocol_id": 96
+ },
+ "minecraft:sniffer_sniffing_target": {
+ "protocol_id": 94
+ },
"minecraft:sonic_boom_cooldown": {
"protocol_id": 86
},
@@ -8622,7 +8891,7 @@
"protocol_id": 10
},
"minecraft:cartography_table": {
- "protocol_id": 22
+ "protocol_id": 23
},
"minecraft:crafting": {
"protocol_id": 11
@@ -8663,6 +8932,9 @@
"minecraft:lectern": {
"protocol_id": 16
},
+ "minecraft:legacy_smithing": {
+ "protocol_id": 20
+ },
"minecraft:loom": {
"protocol_id": 17
},
@@ -8673,13 +8945,13 @@
"protocol_id": 19
},
"minecraft:smithing": {
- "protocol_id": 20
- },
- "minecraft:smoker": {
"protocol_id": 21
},
+ "minecraft:smoker": {
+ "protocol_id": 22
+ },
"minecraft:stonecutter": {
- "protocol_id": 23
+ "protocol_id": 24
}
},
"protocol_id": 16
@@ -8893,7 +9165,7 @@
"protocol_id": 1
},
"minecraft:ash": {
- "protocol_id": 71
+ "protocol_id": 74
},
"minecraft:block": {
"protocol_id": 2
@@ -8905,55 +9177,58 @@
"protocol_id": 4
},
"minecraft:bubble_column_up": {
- "protocol_id": 61
- },
- "minecraft:bubble_pop": {
- "protocol_id": 59
- },
- "minecraft:campfire_cosy_smoke": {
"protocol_id": 64
},
+ "minecraft:bubble_pop": {
+ "protocol_id": 62
+ },
+ "minecraft:campfire_cosy_smoke": {
+ "protocol_id": 67
+ },
"minecraft:campfire_signal_smoke": {
- "protocol_id": 65
+ "protocol_id": 68
},
"minecraft:cloud": {
"protocol_id": 5
},
"minecraft:composter": {
- "protocol_id": 36
+ "protocol_id": 39
},
"minecraft:crimson_spore": {
- "protocol_id": 72
+ "protocol_id": 75
},
"minecraft:crit": {
"protocol_id": 6
},
"minecraft:current_down": {
- "protocol_id": 60
+ "protocol_id": 63
},
"minecraft:damage_indicator": {
"protocol_id": 7
},
"minecraft:dolphin": {
- "protocol_id": 63
+ "protocol_id": 66
},
"minecraft:dragon_breath": {
"protocol_id": 8
},
+ "minecraft:dripping_cherry_leaves": {
+ "protocol_id": 29
+ },
"minecraft:dripping_dripstone_lava": {
- "protocol_id": 82
+ "protocol_id": 85
},
"minecraft:dripping_dripstone_water": {
- "protocol_id": 84
+ "protocol_id": 87
},
"minecraft:dripping_honey": {
- "protocol_id": 66
+ "protocol_id": 69
},
"minecraft:dripping_lava": {
"protocol_id": 9
},
"minecraft:dripping_obsidian_tear": {
- "protocol_id": 75
+ "protocol_id": 78
},
"minecraft:dripping_water": {
"protocol_id": 12
@@ -8971,7 +9246,7 @@
"protocol_id": 17
},
"minecraft:electric_spark": {
- "protocol_id": 90
+ "protocol_id": 93
},
"minecraft:enchant": {
"protocol_id": 19
@@ -8991,29 +9266,32 @@
"minecraft:explosion_emitter": {
"protocol_id": 22
},
+ "minecraft:falling_cherry_leaves": {
+ "protocol_id": 30
+ },
"minecraft:falling_dripstone_lava": {
- "protocol_id": 83
+ "protocol_id": 86
},
"minecraft:falling_dripstone_water": {
- "protocol_id": 85
+ "protocol_id": 88
},
"minecraft:falling_dust": {
"protocol_id": 25
},
"minecraft:falling_honey": {
- "protocol_id": 67
+ "protocol_id": 70
},
"minecraft:falling_lava": {
"protocol_id": 10
},
"minecraft:falling_nectar": {
- "protocol_id": 69
+ "protocol_id": 72
},
"minecraft:falling_obsidian_tear": {
- "protocol_id": 76
+ "protocol_id": 79
},
"minecraft:falling_spore_blossom": {
- "protocol_id": 70
+ "protocol_id": 73
},
"minecraft:falling_water": {
"protocol_id": 13
@@ -9028,142 +9306,145 @@
"protocol_id": 28
},
"minecraft:flash": {
- "protocol_id": 34
- },
- "minecraft:glow": {
- "protocol_id": 87
- },
- "minecraft:glow_squid_ink": {
- "protocol_id": 86
- },
- "minecraft:happy_villager": {
- "protocol_id": 35
- },
- "minecraft:heart": {
"protocol_id": 37
},
- "minecraft:instant_effect": {
+ "minecraft:glow": {
+ "protocol_id": 90
+ },
+ "minecraft:glow_squid_ink": {
+ "protocol_id": 89
+ },
+ "minecraft:happy_villager": {
"protocol_id": 38
},
- "minecraft:item": {
- "protocol_id": 39
+ "minecraft:heart": {
+ "protocol_id": 40
},
- "minecraft:item_slime": {
+ "minecraft:instant_effect": {
"protocol_id": 41
},
- "minecraft:item_snowball": {
+ "minecraft:item": {
"protocol_id": 42
},
+ "minecraft:item_slime": {
+ "protocol_id": 44
+ },
+ "minecraft:item_snowball": {
+ "protocol_id": 45
+ },
+ "minecraft:landing_cherry_leaves": {
+ "protocol_id": 31
+ },
"minecraft:landing_honey": {
- "protocol_id": 68
+ "protocol_id": 71
},
"minecraft:landing_lava": {
"protocol_id": 11
},
"minecraft:landing_obsidian_tear": {
- "protocol_id": 77
- },
- "minecraft:large_smoke": {
- "protocol_id": 43
- },
- "minecraft:lava": {
- "protocol_id": 44
- },
- "minecraft:mycelium": {
- "protocol_id": 45
- },
- "minecraft:nautilus": {
- "protocol_id": 62
- },
- "minecraft:note": {
- "protocol_id": 46
- },
- "minecraft:poof": {
- "protocol_id": 47
- },
- "minecraft:portal": {
- "protocol_id": 48
- },
- "minecraft:rain": {
- "protocol_id": 49
- },
- "minecraft:reverse_portal": {
- "protocol_id": 78
- },
- "minecraft:scrape": {
- "protocol_id": 91
- },
- "minecraft:sculk_charge": {
- "protocol_id": 30
- },
- "minecraft:sculk_charge_pop": {
- "protocol_id": 31
- },
- "minecraft:sculk_soul": {
- "protocol_id": 29
- },
- "minecraft:shriek": {
- "protocol_id": 92
- },
- "minecraft:small_flame": {
"protocol_id": 80
},
- "minecraft:smoke": {
+ "minecraft:large_smoke": {
+ "protocol_id": 46
+ },
+ "minecraft:lava": {
+ "protocol_id": 47
+ },
+ "minecraft:mycelium": {
+ "protocol_id": 48
+ },
+ "minecraft:nautilus": {
+ "protocol_id": 65
+ },
+ "minecraft:note": {
+ "protocol_id": 49
+ },
+ "minecraft:poof": {
"protocol_id": 50
},
- "minecraft:sneeze": {
+ "minecraft:portal": {
"protocol_id": 51
},
- "minecraft:snowflake": {
+ "minecraft:rain": {
+ "protocol_id": 52
+ },
+ "minecraft:reverse_portal": {
"protocol_id": 81
},
+ "minecraft:scrape": {
+ "protocol_id": 94
+ },
+ "minecraft:sculk_charge": {
+ "protocol_id": 33
+ },
+ "minecraft:sculk_charge_pop": {
+ "protocol_id": 34
+ },
+ "minecraft:sculk_soul": {
+ "protocol_id": 32
+ },
+ "minecraft:shriek": {
+ "protocol_id": 95
+ },
+ "minecraft:small_flame": {
+ "protocol_id": 83
+ },
+ "minecraft:smoke": {
+ "protocol_id": 53
+ },
+ "minecraft:sneeze": {
+ "protocol_id": 54
+ },
+ "minecraft:snowflake": {
+ "protocol_id": 84
+ },
"minecraft:sonic_boom": {
"protocol_id": 24
},
"minecraft:soul": {
- "protocol_id": 33
+ "protocol_id": 36
},
"minecraft:soul_fire_flame": {
- "protocol_id": 32
+ "protocol_id": 35
},
"minecraft:spit": {
- "protocol_id": 52
- },
- "minecraft:splash": {
- "protocol_id": 57
- },
- "minecraft:spore_blossom_air": {
- "protocol_id": 74
- },
- "minecraft:squid_ink": {
- "protocol_id": 53
- },
- "minecraft:sweep_attack": {
- "protocol_id": 54
- },
- "minecraft:totem_of_undying": {
"protocol_id": 55
},
- "minecraft:underwater": {
+ "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:underwater": {
+ "protocol_id": 59
+ },
"minecraft:vibration": {
- "protocol_id": 40
+ "protocol_id": 43
},
"minecraft:warped_spore": {
- "protocol_id": 73
+ "protocol_id": 76
},
"minecraft:wax_off": {
- "protocol_id": 89
+ "protocol_id": 92
},
"minecraft:wax_on": {
- "protocol_id": 88
+ "protocol_id": 91
},
"minecraft:white_ash": {
- "protocol_id": 79
+ "protocol_id": 82
},
"minecraft:witch": {
- "protocol_id": 58
+ "protocol_id": 61
}
},
"protocol_id": 9
@@ -9401,6 +9682,9 @@
"minecraft:campfire_cooking": {
"protocol_id": 18
},
+ "minecraft:crafting_decorated_pot": {
+ "protocol_id": 23
+ },
"minecraft:crafting_shaped": {
"protocol_id": 0
},
@@ -9452,6 +9736,12 @@
"minecraft:smithing": {
"protocol_id": 20
},
+ "minecraft:smithing_transform": {
+ "protocol_id": 21
+ },
+ "minecraft:smithing_trim": {
+ "protocol_id": 22
+ },
"minecraft:smoking": {
"protocol_id": 17
},
@@ -9827,19 +10117,19 @@
"protocol_id": 111
},
"minecraft:block.bamboo_wood_hanging_sign.break": {
- "protocol_id": 553
+ "protocol_id": 596
},
"minecraft:block.bamboo_wood_hanging_sign.fall": {
- "protocol_id": 554
+ "protocol_id": 597
},
"minecraft:block.bamboo_wood_hanging_sign.hit": {
- "protocol_id": 555
+ "protocol_id": 598
},
"minecraft:block.bamboo_wood_hanging_sign.place": {
- "protocol_id": 556
+ "protocol_id": 599
},
"minecraft:block.bamboo_wood_hanging_sign.step": {
- "protocol_id": 552
+ "protocol_id": 595
},
"minecraft:block.bamboo_wood_pressure_plate.click_off": {
"protocol_id": 108
@@ -9923,10 +10213,10 @@
"protocol_id": 145
},
"minecraft:block.big_dripleaf.tilt_down": {
- "protocol_id": 342
+ "protocol_id": 380
},
"minecraft:block.big_dripleaf.tilt_up": {
- "protocol_id": 343
+ "protocol_id": 381
},
"minecraft:block.blastfurnace.fire_crackle": {
"protocol_id": 161
@@ -9950,1489 +10240,1627 @@
"protocol_id": 165
},
"minecraft:block.bubble_column.bubble_pop": {
- "protocol_id": 166
- },
- "minecraft:block.bubble_column.upwards_ambient": {
- "protocol_id": 167
- },
- "minecraft:block.bubble_column.upwards_inside": {
"protocol_id": 168
},
- "minecraft:block.bubble_column.whirlpool_ambient": {
+ "minecraft:block.bubble_column.upwards_ambient": {
"protocol_id": 169
},
- "minecraft:block.bubble_column.whirlpool_inside": {
+ "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.cake.add_candle": {
- "protocol_id": 186
- },
- "minecraft:block.calcite.break": {
- "protocol_id": 187
- },
- "minecraft:block.calcite.fall": {
- "protocol_id": 191
- },
- "minecraft:block.calcite.hit": {
- "protocol_id": 190
- },
- "minecraft:block.calcite.place": {
- "protocol_id": 189
- },
- "minecraft:block.calcite.step": {
"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.place": {
+ "protocol_id": 191
+ },
+ "minecraft:block.calcite.step": {
+ "protocol_id": 190
+ },
"minecraft:block.campfire.crackle": {
- "protocol_id": 203
- },
- "minecraft:block.candle.ambient": {
- "protocol_id": 204
- },
- "minecraft:block.candle.break": {
"protocol_id": 205
},
- "minecraft:block.candle.extinguish": {
+ "minecraft:block.candle.ambient": {
"protocol_id": 206
},
- "minecraft:block.candle.fall": {
+ "minecraft:block.candle.break": {
"protocol_id": 207
},
- "minecraft:block.candle.hit": {
+ "minecraft:block.candle.extinguish": {
"protocol_id": 208
},
- "minecraft:block.candle.place": {
+ "minecraft:block.candle.fall": {
"protocol_id": 209
},
- "minecraft:block.candle.step": {
+ "minecraft:block.candle.hit": {
"protocol_id": 210
},
+ "minecraft:block.candle.place": {
+ "protocol_id": 211
+ },
+ "minecraft:block.candle.step": {
+ "protocol_id": 212
+ },
"minecraft:block.cave_vines.break": {
- "protocol_id": 220
- },
- "minecraft:block.cave_vines.fall": {
- "protocol_id": 221
- },
- "minecraft:block.cave_vines.hit": {
"protocol_id": 222
},
- "minecraft:block.cave_vines.pick_berries": {
- "protocol_id": 225
- },
- "minecraft:block.cave_vines.place": {
+ "minecraft:block.cave_vines.fall": {
"protocol_id": 223
},
- "minecraft:block.cave_vines.step": {
+ "minecraft:block.cave_vines.hit": {
"protocol_id": 224
},
- "minecraft:block.chain.break": {
- "protocol_id": 226
- },
- "minecraft:block.chain.fall": {
+ "minecraft:block.cave_vines.pick_berries": {
"protocol_id": 227
},
- "minecraft:block.chain.hit": {
+ "minecraft:block.cave_vines.place": {
+ "protocol_id": 225
+ },
+ "minecraft:block.cave_vines.step": {
+ "protocol_id": 226
+ },
+ "minecraft:block.chain.break": {
"protocol_id": 228
},
- "minecraft:block.chain.place": {
+ "minecraft:block.chain.fall": {
"protocol_id": 229
},
- "minecraft:block.chain.step": {
+ "minecraft:block.chain.hit": {
"protocol_id": 230
},
- "minecraft:block.chest.close": {
+ "minecraft:block.chain.place": {
"protocol_id": 231
},
- "minecraft:block.chest.locked": {
+ "minecraft:block.chain.step": {
"protocol_id": 232
},
- "minecraft:block.chest.open": {
- "protocol_id": 233
- },
- "minecraft:block.chiseled_bookshelf.break": {
- "protocol_id": 239
- },
- "minecraft:block.chiseled_bookshelf.fall": {
- "protocol_id": 240
- },
- "minecraft:block.chiseled_bookshelf.hit": {
- "protocol_id": 241
- },
- "minecraft:block.chiseled_bookshelf.insert": {
- "protocol_id": 242
- },
- "minecraft:block.chiseled_bookshelf.insert.enchanted": {
+ "minecraft:block.cherry_leaves.break": {
"protocol_id": 243
},
- "minecraft:block.chiseled_bookshelf.pickup": {
- "protocol_id": 245
- },
- "minecraft:block.chiseled_bookshelf.pickup.enchanted": {
- "protocol_id": 246
- },
- "minecraft:block.chiseled_bookshelf.place": {
- "protocol_id": 247
- },
- "minecraft:block.chiseled_bookshelf.step": {
+ "minecraft:block.cherry_leaves.fall": {
"protocol_id": 244
},
- "minecraft:block.chorus_flower.death": {
- "protocol_id": 248
+ "minecraft:block.cherry_leaves.hit": {
+ "protocol_id": 245
},
- "minecraft:block.chorus_flower.grow": {
- "protocol_id": 249
+ "minecraft:block.cherry_leaves.place": {
+ "protocol_id": 246
},
- "minecraft:block.comparator.click": {
- "protocol_id": 255
+ "minecraft:block.cherry_leaves.step": {
+ "protocol_id": 247
},
- "minecraft:block.composter.empty": {
- "protocol_id": 256
+ "minecraft:block.cherry_sapling.break": {
+ "protocol_id": 238
},
- "minecraft:block.composter.fill": {
+ "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": {
+ "protocol_id": 233
+ },
+ "minecraft:block.cherry_wood.fall": {
+ "protocol_id": 234
+ },
+ "minecraft:block.cherry_wood.hit": {
+ "protocol_id": 235
+ },
+ "minecraft:block.cherry_wood.place": {
+ "protocol_id": 236
+ },
+ "minecraft:block.cherry_wood.step": {
+ "protocol_id": 237
+ },
+ "minecraft:block.cherry_wood_button.click_off": {
"protocol_id": 257
},
- "minecraft:block.composter.fill_success": {
+ "minecraft:block.cherry_wood_button.click_on": {
"protocol_id": 258
},
- "minecraft:block.composter.ready": {
- "protocol_id": 259
+ "minecraft:block.cherry_wood_door.close": {
+ "protocol_id": 253
},
- "minecraft:block.conduit.activate": {
- "protocol_id": 260
+ "minecraft:block.cherry_wood_door.open": {
+ "protocol_id": 254
},
- "minecraft:block.conduit.ambient": {
+ "minecraft:block.cherry_wood_fence_gate.close": {
"protocol_id": 261
},
- "minecraft:block.conduit.ambient.short": {
+ "minecraft:block.cherry_wood_fence_gate.open": {
"protocol_id": 262
},
- "minecraft:block.conduit.attack.target": {
+ "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": {
+ "protocol_id": 248
+ },
+ "minecraft:block.cherry_wood_pressure_plate.click_off": {
+ "protocol_id": 259
+ },
+ "minecraft:block.cherry_wood_pressure_plate.click_on": {
+ "protocol_id": 260
+ },
+ "minecraft:block.cherry_wood_trapdoor.close": {
+ "protocol_id": 255
+ },
+ "minecraft:block.cherry_wood_trapdoor.open": {
+ "protocol_id": 256
+ },
+ "minecraft:block.chest.close": {
"protocol_id": 263
},
- "minecraft:block.conduit.deactivate": {
+ "minecraft:block.chest.locked": {
"protocol_id": 264
},
- "minecraft:block.copper.break": {
+ "minecraft:block.chest.open": {
"protocol_id": 265
},
- "minecraft:block.copper.fall": {
- "protocol_id": 269
- },
- "minecraft:block.copper.hit": {
- "protocol_id": 268
- },
- "minecraft:block.copper.place": {
- "protocol_id": 267
- },
- "minecraft:block.copper.step": {
- "protocol_id": 266
- },
- "minecraft:block.coral_block.break": {
- "protocol_id": 270
- },
- "minecraft:block.coral_block.fall": {
+ "minecraft:block.chiseled_bookshelf.break": {
"protocol_id": 271
},
- "minecraft:block.coral_block.hit": {
+ "minecraft:block.chiseled_bookshelf.fall": {
"protocol_id": 272
},
- "minecraft:block.coral_block.place": {
+ "minecraft:block.chiseled_bookshelf.hit": {
"protocol_id": 273
},
- "minecraft:block.coral_block.step": {
+ "minecraft:block.chiseled_bookshelf.insert": {
"protocol_id": 274
},
- "minecraft:block.crop.break": {
- "protocol_id": 283
+ "minecraft:block.chiseled_bookshelf.insert.enchanted": {
+ "protocol_id": 275
},
- "minecraft:block.deepslate.break": {
- "protocol_id": 298
+ "minecraft:block.chiseled_bookshelf.pickup": {
+ "protocol_id": 277
},
- "minecraft:block.deepslate.fall": {
- "protocol_id": 299
+ "minecraft:block.chiseled_bookshelf.pickup.enchanted": {
+ "protocol_id": 278
},
- "minecraft:block.deepslate.hit": {
- "protocol_id": 300
+ "minecraft:block.chiseled_bookshelf.place": {
+ "protocol_id": 279
},
- "minecraft:block.deepslate.place": {
- "protocol_id": 301
+ "minecraft:block.chiseled_bookshelf.step": {
+ "protocol_id": 276
},
- "minecraft:block.deepslate.step": {
- "protocol_id": 302
+ "minecraft:block.chorus_flower.death": {
+ "protocol_id": 280
},
- "minecraft:block.deepslate_bricks.break": {
+ "minecraft:block.chorus_flower.grow": {
+ "protocol_id": 281
+ },
+ "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": {
+ "protocol_id": 292
+ },
+ "minecraft:block.conduit.ambient": {
"protocol_id": 293
},
- "minecraft:block.deepslate_bricks.fall": {
+ "minecraft:block.conduit.ambient.short": {
"protocol_id": 294
},
- "minecraft:block.deepslate_bricks.hit": {
+ "minecraft:block.conduit.attack.target": {
"protocol_id": 295
},
- "minecraft:block.deepslate_bricks.place": {
+ "minecraft:block.conduit.deactivate": {
"protocol_id": 296
},
- "minecraft:block.deepslate_bricks.step": {
+ "minecraft:block.copper.break": {
"protocol_id": 297
},
- "minecraft:block.deepslate_tiles.break": {
+ "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": {
+ "protocol_id": 298
+ },
+ "minecraft:block.coral_block.break": {
+ "protocol_id": 302
+ },
+ "minecraft:block.coral_block.fall": {
"protocol_id": 303
},
- "minecraft:block.deepslate_tiles.fall": {
+ "minecraft:block.coral_block.hit": {
"protocol_id": 304
},
- "minecraft:block.deepslate_tiles.hit": {
+ "minecraft:block.coral_block.place": {
"protocol_id": 305
},
- "minecraft:block.deepslate_tiles.place": {
+ "minecraft:block.coral_block.step": {
"protocol_id": 306
},
- "minecraft:block.deepslate_tiles.step": {
- "protocol_id": 307
+ "minecraft:block.crop.break": {
+ "protocol_id": 315
},
- "minecraft:block.dispenser.dispense": {
- "protocol_id": 308
+ "minecraft:block.decorated_pot.break": {
+ "protocol_id": 325
},
- "minecraft:block.dispenser.fail": {
- "protocol_id": 309
+ "minecraft:block.decorated_pot.fall": {
+ "protocol_id": 326
},
- "minecraft:block.dispenser.launch": {
- "protocol_id": 310
- },
- "minecraft:block.dripstone_block.break": {
+ "minecraft:block.decorated_pot.hit": {
"protocol_id": 327
},
- "minecraft:block.dripstone_block.fall": {
- "protocol_id": 331
- },
- "minecraft:block.dripstone_block.hit": {
- "protocol_id": 330
- },
- "minecraft:block.dripstone_block.place": {
+ "minecraft:block.decorated_pot.place": {
"protocol_id": 329
},
- "minecraft:block.dripstone_block.step": {
+ "minecraft:block.decorated_pot.shatter": {
+ "protocol_id": 330
+ },
+ "minecraft:block.decorated_pot.step": {
"protocol_id": 328
},
- "minecraft:block.enchantment_table.use": {
- "protocol_id": 364
- },
- "minecraft:block.end_gateway.spawn": {
- "protocol_id": 387
- },
- "minecraft:block.end_portal.spawn": {
- "protocol_id": 389
- },
- "minecraft:block.end_portal_frame.fill": {
- "protocol_id": 388
- },
- "minecraft:block.ender_chest.close": {
- "protocol_id": 365
- },
- "minecraft:block.ender_chest.open": {
- "protocol_id": 366
- },
- "minecraft:block.fence_gate.close": {
- "protocol_id": 401
- },
- "minecraft:block.fence_gate.open": {
- "protocol_id": 402
- },
- "minecraft:block.fire.ambient": {
- "protocol_id": 412
- },
- "minecraft:block.fire.extinguish": {
- "protocol_id": 413
- },
- "minecraft:block.flowering_azalea.break": {
- "protocol_id": 419
- },
- "minecraft:block.flowering_azalea.fall": {
- "protocol_id": 420
- },
- "minecraft:block.flowering_azalea.hit": {
- "protocol_id": 421
- },
- "minecraft:block.flowering_azalea.place": {
- "protocol_id": 422
- },
- "minecraft:block.flowering_azalea.step": {
- "protocol_id": 423
- },
- "minecraft:block.froglight.break": {
- "protocol_id": 435
- },
- "minecraft:block.froglight.fall": {
- "protocol_id": 436
- },
- "minecraft:block.froglight.hit": {
- "protocol_id": 437
- },
- "minecraft:block.froglight.place": {
- "protocol_id": 438
- },
- "minecraft:block.froglight.step": {
- "protocol_id": 439
- },
- "minecraft:block.frogspawn.break": {
- "protocol_id": 441
- },
- "minecraft:block.frogspawn.fall": {
- "protocol_id": 442
- },
- "minecraft:block.frogspawn.hatch": {
- "protocol_id": 443
- },
- "minecraft:block.frogspawn.hit": {
- "protocol_id": 444
- },
- "minecraft:block.frogspawn.place": {
- "protocol_id": 445
- },
- "minecraft:block.frogspawn.step": {
- "protocol_id": 440
- },
- "minecraft:block.fungus.break": {
- "protocol_id": 808
- },
- "minecraft:block.fungus.fall": {
- "protocol_id": 812
- },
- "minecraft:block.fungus.hit": {
- "protocol_id": 811
- },
- "minecraft:block.fungus.place": {
- "protocol_id": 810
- },
- "minecraft:block.fungus.step": {
- "protocol_id": 809
- },
- "minecraft:block.furnace.fire_crackle": {
- "protocol_id": 459
- },
- "minecraft:block.gilded_blackstone.break": {
- "protocol_id": 477
- },
- "minecraft:block.gilded_blackstone.fall": {
- "protocol_id": 478
- },
- "minecraft:block.gilded_blackstone.hit": {
- "protocol_id": 479
- },
- "minecraft:block.gilded_blackstone.place": {
- "protocol_id": 480
- },
- "minecraft:block.gilded_blackstone.step": {
- "protocol_id": 481
- },
- "minecraft:block.glass.break": {
- "protocol_id": 482
- },
- "minecraft:block.glass.fall": {
- "protocol_id": 483
- },
- "minecraft:block.glass.hit": {
- "protocol_id": 484
- },
- "minecraft:block.glass.place": {
- "protocol_id": 485
- },
- "minecraft:block.glass.step": {
- "protocol_id": 486
- },
- "minecraft:block.grass.break": {
- "protocol_id": 517
- },
- "minecraft:block.grass.fall": {
- "protocol_id": 518
- },
- "minecraft:block.grass.hit": {
- "protocol_id": 519
- },
- "minecraft:block.grass.place": {
- "protocol_id": 520
- },
- "minecraft:block.grass.step": {
- "protocol_id": 521
- },
- "minecraft:block.gravel.break": {
- "protocol_id": 522
- },
- "minecraft:block.gravel.fall": {
- "protocol_id": 523
- },
- "minecraft:block.gravel.hit": {
- "protocol_id": 524
- },
- "minecraft:block.gravel.place": {
- "protocol_id": 525
- },
- "minecraft:block.gravel.step": {
- "protocol_id": 526
- },
- "minecraft:block.grindstone.use": {
- "protocol_id": 527
- },
- "minecraft:block.growing_plant.crop": {
- "protocol_id": 528
- },
- "minecraft:block.hanging_roots.break": {
- "protocol_id": 537
- },
- "minecraft:block.hanging_roots.fall": {
- "protocol_id": 538
- },
- "minecraft:block.hanging_roots.hit": {
- "protocol_id": 539
- },
- "minecraft:block.hanging_roots.place": {
- "protocol_id": 540
- },
- "minecraft:block.hanging_roots.step": {
- "protocol_id": 541
- },
- "minecraft:block.hanging_sign.break": {
- "protocol_id": 543
- },
- "minecraft:block.hanging_sign.fall": {
- "protocol_id": 544
- },
- "minecraft:block.hanging_sign.hit": {
- "protocol_id": 545
- },
- "minecraft:block.hanging_sign.place": {
- "protocol_id": 546
- },
- "minecraft:block.hanging_sign.step": {
- "protocol_id": 542
- },
- "minecraft:block.honey_block.break": {
- "protocol_id": 566
- },
- "minecraft:block.honey_block.fall": {
- "protocol_id": 567
- },
- "minecraft:block.honey_block.hit": {
- "protocol_id": 568
- },
- "minecraft:block.honey_block.place": {
- "protocol_id": 569
- },
- "minecraft:block.honey_block.slide": {
- "protocol_id": 570
- },
- "minecraft:block.honey_block.step": {
- "protocol_id": 571
- },
- "minecraft:block.iron_door.close": {
- "protocol_id": 614
- },
- "minecraft:block.iron_door.open": {
- "protocol_id": 615
- },
- "minecraft:block.iron_trapdoor.close": {
- "protocol_id": 622
- },
- "minecraft:block.iron_trapdoor.open": {
- "protocol_id": 623
- },
- "minecraft:block.ladder.break": {
- "protocol_id": 631
- },
- "minecraft:block.ladder.fall": {
- "protocol_id": 632
- },
- "minecraft:block.ladder.hit": {
- "protocol_id": 633
- },
- "minecraft:block.ladder.place": {
- "protocol_id": 634
- },
- "minecraft:block.ladder.step": {
- "protocol_id": 635
- },
- "minecraft:block.lantern.break": {
- "protocol_id": 636
- },
- "minecraft:block.lantern.fall": {
- "protocol_id": 637
- },
- "minecraft:block.lantern.hit": {
- "protocol_id": 638
- },
- "minecraft:block.lantern.place": {
- "protocol_id": 639
- },
- "minecraft:block.lantern.step": {
- "protocol_id": 640
- },
- "minecraft:block.large_amethyst_bud.break": {
- "protocol_id": 641
- },
- "minecraft:block.large_amethyst_bud.place": {
- "protocol_id": 642
- },
- "minecraft:block.lava.ambient": {
- "protocol_id": 643
- },
- "minecraft:block.lava.extinguish": {
- "protocol_id": 644
- },
- "minecraft:block.lava.pop": {
- "protocol_id": 645
- },
- "minecraft:block.lever.click": {
- "protocol_id": 648
- },
- "minecraft:block.lily_pad.place": {
- "protocol_id": 1281
- },
- "minecraft:block.lodestone.break": {
- "protocol_id": 662
- },
- "minecraft:block.lodestone.fall": {
- "protocol_id": 666
- },
- "minecraft:block.lodestone.hit": {
- "protocol_id": 665
- },
- "minecraft:block.lodestone.place": {
- "protocol_id": 664
- },
- "minecraft:block.lodestone.step": {
- "protocol_id": 663
- },
- "minecraft:block.mangrove_roots.break": {
- "protocol_id": 674
- },
- "minecraft:block.mangrove_roots.fall": {
- "protocol_id": 675
- },
- "minecraft:block.mangrove_roots.hit": {
- "protocol_id": 676
- },
- "minecraft:block.mangrove_roots.place": {
- "protocol_id": 677
- },
- "minecraft:block.mangrove_roots.step": {
- "protocol_id": 678
- },
- "minecraft:block.medium_amethyst_bud.break": {
- "protocol_id": 679
- },
- "minecraft:block.medium_amethyst_bud.place": {
- "protocol_id": 680
- },
- "minecraft:block.metal.break": {
- "protocol_id": 681
- },
- "minecraft:block.metal.fall": {
- "protocol_id": 682
- },
- "minecraft:block.metal.hit": {
- "protocol_id": 683
- },
- "minecraft:block.metal.place": {
- "protocol_id": 684
- },
- "minecraft:block.metal.step": {
- "protocol_id": 687
- },
- "minecraft:block.metal_pressure_plate.click_off": {
- "protocol_id": 685
- },
- "minecraft:block.metal_pressure_plate.click_on": {
- "protocol_id": 686
- },
- "minecraft:block.moss.break": {
- "protocol_id": 701
- },
- "minecraft:block.moss.fall": {
- "protocol_id": 702
- },
- "minecraft:block.moss.hit": {
- "protocol_id": 703
- },
- "minecraft:block.moss.place": {
- "protocol_id": 704
- },
- "minecraft:block.moss.step": {
- "protocol_id": 705
- },
- "minecraft:block.moss_carpet.break": {
- "protocol_id": 696
- },
- "minecraft:block.moss_carpet.fall": {
- "protocol_id": 697
- },
- "minecraft:block.moss_carpet.hit": {
- "protocol_id": 698
- },
- "minecraft:block.moss_carpet.place": {
- "protocol_id": 699
- },
- "minecraft:block.moss_carpet.step": {
- "protocol_id": 700
- },
- "minecraft:block.mud.break": {
- "protocol_id": 706
- },
- "minecraft:block.mud.fall": {
- "protocol_id": 707
- },
- "minecraft:block.mud.hit": {
- "protocol_id": 708
- },
- "minecraft:block.mud.place": {
- "protocol_id": 709
- },
- "minecraft:block.mud.step": {
- "protocol_id": 710
- },
- "minecraft:block.mud_bricks.break": {
- "protocol_id": 711
- },
- "minecraft:block.mud_bricks.fall": {
- "protocol_id": 712
- },
- "minecraft:block.mud_bricks.hit": {
- "protocol_id": 713
- },
- "minecraft:block.mud_bricks.place": {
- "protocol_id": 714
- },
- "minecraft:block.mud_bricks.step": {
- "protocol_id": 715
- },
- "minecraft:block.muddy_mangrove_roots.break": {
- "protocol_id": 716
- },
- "minecraft:block.muddy_mangrove_roots.fall": {
- "protocol_id": 717
- },
- "minecraft:block.muddy_mangrove_roots.hit": {
- "protocol_id": 718
- },
- "minecraft:block.muddy_mangrove_roots.place": {
- "protocol_id": 719
- },
- "minecraft:block.muddy_mangrove_roots.step": {
- "protocol_id": 720
- },
- "minecraft:block.nether_bricks.break": {
- "protocol_id": 766
- },
- "minecraft:block.nether_bricks.fall": {
- "protocol_id": 770
- },
- "minecraft:block.nether_bricks.hit": {
- "protocol_id": 769
- },
- "minecraft:block.nether_bricks.place": {
- "protocol_id": 768
- },
- "minecraft:block.nether_bricks.step": {
- "protocol_id": 767
- },
- "minecraft:block.nether_gold_ore.break": {
- "protocol_id": 1004
- },
- "minecraft:block.nether_gold_ore.fall": {
- "protocol_id": 1005
- },
- "minecraft:block.nether_gold_ore.hit": {
- "protocol_id": 1006
- },
- "minecraft:block.nether_gold_ore.place": {
- "protocol_id": 1007
- },
- "minecraft:block.nether_gold_ore.step": {
- "protocol_id": 1008
- },
- "minecraft:block.nether_ore.break": {
- "protocol_id": 1009
- },
- "minecraft:block.nether_ore.fall": {
- "protocol_id": 1010
- },
- "minecraft:block.nether_ore.hit": {
- "protocol_id": 1011
- },
- "minecraft:block.nether_ore.place": {
- "protocol_id": 1012
- },
- "minecraft:block.nether_ore.step": {
- "protocol_id": 1013
- },
- "minecraft:block.nether_sprouts.break": {
- "protocol_id": 803
- },
- "minecraft:block.nether_sprouts.fall": {
- "protocol_id": 807
- },
- "minecraft:block.nether_sprouts.hit": {
- "protocol_id": 806
- },
- "minecraft:block.nether_sprouts.place": {
- "protocol_id": 805
- },
- "minecraft:block.nether_sprouts.step": {
- "protocol_id": 804
- },
- "minecraft:block.nether_wart.break": {
- "protocol_id": 771
- },
- "minecraft:block.nether_wood.break": {
- "protocol_id": 773
- },
- "minecraft:block.nether_wood.fall": {
- "protocol_id": 774
- },
- "minecraft:block.nether_wood.hit": {
- "protocol_id": 775
- },
- "minecraft:block.nether_wood.place": {
- "protocol_id": 776
- },
- "minecraft:block.nether_wood.step": {
- "protocol_id": 777
- },
- "minecraft:block.nether_wood_button.click_off": {
- "protocol_id": 782
- },
- "minecraft:block.nether_wood_button.click_on": {
- "protocol_id": 783
- },
- "minecraft:block.nether_wood_door.close": {
- "protocol_id": 778
- },
- "minecraft:block.nether_wood_door.open": {
- "protocol_id": 779
- },
- "minecraft:block.nether_wood_fence_gate.close": {
- "protocol_id": 786
- },
- "minecraft:block.nether_wood_fence_gate.open": {
- "protocol_id": 787
- },
- "minecraft:block.nether_wood_hanging_sign.break": {
- "protocol_id": 548
- },
- "minecraft:block.nether_wood_hanging_sign.fall": {
- "protocol_id": 549
- },
- "minecraft:block.nether_wood_hanging_sign.hit": {
- "protocol_id": 550
- },
- "minecraft:block.nether_wood_hanging_sign.place": {
- "protocol_id": 551
- },
- "minecraft:block.nether_wood_hanging_sign.step": {
- "protocol_id": 547
- },
- "minecraft:block.nether_wood_pressure_plate.click_off": {
- "protocol_id": 784
- },
- "minecraft:block.nether_wood_pressure_plate.click_on": {
- "protocol_id": 785
- },
- "minecraft:block.nether_wood_trapdoor.close": {
- "protocol_id": 780
- },
- "minecraft:block.nether_wood_trapdoor.open": {
- "protocol_id": 781
- },
- "minecraft:block.netherite_block.break": {
- "protocol_id": 823
- },
- "minecraft:block.netherite_block.fall": {
- "protocol_id": 827
- },
- "minecraft:block.netherite_block.hit": {
- "protocol_id": 826
- },
- "minecraft:block.netherite_block.place": {
- "protocol_id": 825
- },
- "minecraft:block.netherite_block.step": {
- "protocol_id": 824
- },
- "minecraft:block.netherrack.break": {
- "protocol_id": 828
- },
- "minecraft:block.netherrack.fall": {
- "protocol_id": 832
- },
- "minecraft:block.netherrack.hit": {
- "protocol_id": 831
- },
- "minecraft:block.netherrack.place": {
- "protocol_id": 830
- },
- "minecraft:block.netherrack.step": {
- "protocol_id": 829
- },
- "minecraft:block.note_block.banjo": {
- "protocol_id": 848
- },
- "minecraft:block.note_block.basedrum": {
- "protocol_id": 833
- },
- "minecraft:block.note_block.bass": {
- "protocol_id": 834
- },
- "minecraft:block.note_block.bell": {
- "protocol_id": 835
- },
- "minecraft:block.note_block.bit": {
- "protocol_id": 847
- },
- "minecraft:block.note_block.chime": {
- "protocol_id": 836
- },
- "minecraft:block.note_block.cow_bell": {
- "protocol_id": 845
- },
- "minecraft:block.note_block.didgeridoo": {
- "protocol_id": 846
- },
- "minecraft:block.note_block.flute": {
- "protocol_id": 837
- },
- "minecraft:block.note_block.guitar": {
- "protocol_id": 838
- },
- "minecraft:block.note_block.harp": {
- "protocol_id": 839
- },
- "minecraft:block.note_block.hat": {
- "protocol_id": 840
- },
- "minecraft:block.note_block.imitate.creeper": {
- "protocol_id": 851
- },
- "minecraft:block.note_block.imitate.ender_dragon": {
- "protocol_id": 852
- },
- "minecraft:block.note_block.imitate.piglin": {
- "protocol_id": 854
- },
- "minecraft:block.note_block.imitate.skeleton": {
- "protocol_id": 850
- },
- "minecraft:block.note_block.imitate.wither_skeleton": {
- "protocol_id": 853
- },
- "minecraft:block.note_block.imitate.zombie": {
- "protocol_id": 849
- },
- "minecraft:block.note_block.iron_xylophone": {
- "protocol_id": 844
- },
- "minecraft:block.note_block.pling": {
- "protocol_id": 841
- },
- "minecraft:block.note_block.snare": {
- "protocol_id": 842
- },
- "minecraft:block.note_block.xylophone": {
- "protocol_id": 843
- },
- "minecraft:block.nylium.break": {
- "protocol_id": 798
- },
- "minecraft:block.nylium.fall": {
- "protocol_id": 802
- },
- "minecraft:block.nylium.hit": {
- "protocol_id": 801
- },
- "minecraft:block.nylium.place": {
- "protocol_id": 800
- },
- "minecraft:block.nylium.step": {
- "protocol_id": 799
- },
- "minecraft:block.packed_mud.break": {
- "protocol_id": 788
- },
- "minecraft:block.packed_mud.fall": {
- "protocol_id": 789
- },
- "minecraft:block.packed_mud.hit": {
- "protocol_id": 790
- },
- "minecraft:block.packed_mud.place": {
- "protocol_id": 791
- },
- "minecraft:block.packed_mud.step": {
- "protocol_id": 792
- },
- "minecraft:block.piston.contract": {
- "protocol_id": 941
- },
- "minecraft:block.piston.extend": {
- "protocol_id": 942
- },
- "minecraft:block.pointed_dripstone.break": {
- "protocol_id": 332
- },
- "minecraft:block.pointed_dripstone.drip_lava": {
- "protocol_id": 338
- },
- "minecraft:block.pointed_dripstone.drip_lava_into_cauldron": {
- "protocol_id": 340
- },
- "minecraft:block.pointed_dripstone.drip_water": {
- "protocol_id": 339
- },
- "minecraft:block.pointed_dripstone.drip_water_into_cauldron": {
- "protocol_id": 341
- },
- "minecraft:block.pointed_dripstone.fall": {
+ "minecraft:block.deepslate.break": {
"protocol_id": 336
},
- "minecraft:block.pointed_dripstone.hit": {
- "protocol_id": 335
- },
- "minecraft:block.pointed_dripstone.land": {
+ "minecraft:block.deepslate.fall": {
"protocol_id": 337
},
- "minecraft:block.pointed_dripstone.place": {
- "protocol_id": 334
+ "minecraft:block.deepslate.hit": {
+ "protocol_id": 338
},
- "minecraft:block.pointed_dripstone.step": {
+ "minecraft:block.deepslate.place": {
+ "protocol_id": 339
+ },
+ "minecraft:block.deepslate.step": {
+ "protocol_id": 340
+ },
+ "minecraft:block.deepslate_bricks.break": {
+ "protocol_id": 331
+ },
+ "minecraft:block.deepslate_bricks.fall": {
+ "protocol_id": 332
+ },
+ "minecraft:block.deepslate_bricks.hit": {
"protocol_id": 333
},
- "minecraft:block.polished_deepslate.break": {
- "protocol_id": 969
+ "minecraft:block.deepslate_bricks.place": {
+ "protocol_id": 334
},
- "minecraft:block.polished_deepslate.fall": {
- "protocol_id": 970
+ "minecraft:block.deepslate_bricks.step": {
+ "protocol_id": 335
},
- "minecraft:block.polished_deepslate.hit": {
- "protocol_id": 971
+ "minecraft:block.deepslate_tiles.break": {
+ "protocol_id": 341
},
- "minecraft:block.polished_deepslate.place": {
- "protocol_id": 972
+ "minecraft:block.deepslate_tiles.fall": {
+ "protocol_id": 342
},
- "minecraft:block.polished_deepslate.step": {
- "protocol_id": 973
+ "minecraft:block.deepslate_tiles.hit": {
+ "protocol_id": 343
},
- "minecraft:block.portal.ambient": {
- "protocol_id": 974
+ "minecraft:block.deepslate_tiles.place": {
+ "protocol_id": 344
},
- "minecraft:block.portal.travel": {
- "protocol_id": 975
+ "minecraft:block.deepslate_tiles.step": {
+ "protocol_id": 345
},
- "minecraft:block.portal.trigger": {
- "protocol_id": 976
+ "minecraft:block.dispenser.dispense": {
+ "protocol_id": 346
},
- "minecraft:block.powder_snow.break": {
- "protocol_id": 977
+ "minecraft:block.dispenser.fail": {
+ "protocol_id": 347
},
- "minecraft:block.powder_snow.fall": {
- "protocol_id": 978
+ "minecraft:block.dispenser.launch": {
+ "protocol_id": 348
},
- "minecraft:block.powder_snow.hit": {
- "protocol_id": 979
+ "minecraft:block.dripstone_block.break": {
+ "protocol_id": 365
},
- "minecraft:block.powder_snow.place": {
- "protocol_id": 980
+ "minecraft:block.dripstone_block.fall": {
+ "protocol_id": 369
},
- "minecraft:block.powder_snow.step": {
- "protocol_id": 981
+ "minecraft:block.dripstone_block.hit": {
+ "protocol_id": 368
},
- "minecraft:block.pumpkin.carve": {
- "protocol_id": 989
+ "minecraft:block.dripstone_block.place": {
+ "protocol_id": 367
},
- "minecraft:block.redstone_torch.burnout": {
- "protocol_id": 1014
+ "minecraft:block.dripstone_block.step": {
+ "protocol_id": 366
},
- "minecraft:block.respawn_anchor.ambient": {
- "protocol_id": 1015
+ "minecraft:block.enchantment_table.use": {
+ "protocol_id": 402
},
- "minecraft:block.respawn_anchor.charge": {
- "protocol_id": 1016
+ "minecraft:block.end_gateway.spawn": {
+ "protocol_id": 425
},
- "minecraft:block.respawn_anchor.deplete": {
- "protocol_id": 1017
+ "minecraft:block.end_portal.spawn": {
+ "protocol_id": 427
},
- "minecraft:block.respawn_anchor.set_spawn": {
- "protocol_id": 1018
+ "minecraft:block.end_portal_frame.fill": {
+ "protocol_id": 426
},
- "minecraft:block.rooted_dirt.break": {
- "protocol_id": 1019
+ "minecraft:block.ender_chest.close": {
+ "protocol_id": 403
},
- "minecraft:block.rooted_dirt.fall": {
- "protocol_id": 1020
+ "minecraft:block.ender_chest.open": {
+ "protocol_id": 404
},
- "minecraft:block.rooted_dirt.hit": {
- "protocol_id": 1021
+ "minecraft:block.fence_gate.close": {
+ "protocol_id": 439
},
- "minecraft:block.rooted_dirt.place": {
- "protocol_id": 1022
+ "minecraft:block.fence_gate.open": {
+ "protocol_id": 440
},
- "minecraft:block.rooted_dirt.step": {
- "protocol_id": 1023
+ "minecraft:block.fire.ambient": {
+ "protocol_id": 450
},
- "minecraft:block.roots.break": {
- "protocol_id": 454
+ "minecraft:block.fire.extinguish": {
+ "protocol_id": 451
},
- "minecraft:block.roots.fall": {
- "protocol_id": 458
- },
- "minecraft:block.roots.hit": {
+ "minecraft:block.flowering_azalea.break": {
"protocol_id": 457
},
- "minecraft:block.roots.place": {
- "protocol_id": 456
+ "minecraft:block.flowering_azalea.fall": {
+ "protocol_id": 458
},
- "minecraft:block.roots.step": {
- "protocol_id": 455
+ "minecraft:block.flowering_azalea.hit": {
+ "protocol_id": 459
},
- "minecraft:block.sand.break": {
- "protocol_id": 1028
+ "minecraft:block.flowering_azalea.place": {
+ "protocol_id": 460
},
- "minecraft:block.sand.fall": {
- "protocol_id": 1029
+ "minecraft:block.flowering_azalea.step": {
+ "protocol_id": 461
},
- "minecraft:block.sand.hit": {
- "protocol_id": 1030
+ "minecraft:block.froglight.break": {
+ "protocol_id": 478
},
- "minecraft:block.sand.place": {
- "protocol_id": 1031
+ "minecraft:block.froglight.fall": {
+ "protocol_id": 479
},
- "minecraft:block.sand.step": {
- "protocol_id": 1032
+ "minecraft:block.froglight.hit": {
+ "protocol_id": 480
},
- "minecraft:block.scaffolding.break": {
- "protocol_id": 1033
+ "minecraft:block.froglight.place": {
+ "protocol_id": 481
},
- "minecraft:block.scaffolding.fall": {
- "protocol_id": 1034
+ "minecraft:block.froglight.step": {
+ "protocol_id": 482
},
- "minecraft:block.scaffolding.hit": {
- "protocol_id": 1035
+ "minecraft:block.frogspawn.break": {
+ "protocol_id": 484
},
- "minecraft:block.scaffolding.place": {
- "protocol_id": 1036
+ "minecraft:block.frogspawn.fall": {
+ "protocol_id": 485
},
- "minecraft:block.scaffolding.step": {
- "protocol_id": 1037
+ "minecraft:block.frogspawn.hatch": {
+ "protocol_id": 486
},
- "minecraft:block.sculk.break": {
- "protocol_id": 1040
+ "minecraft:block.frogspawn.hit": {
+ "protocol_id": 487
},
- "minecraft:block.sculk.charge": {
- "protocol_id": 1039
+ "minecraft:block.frogspawn.place": {
+ "protocol_id": 488
},
- "minecraft:block.sculk.fall": {
- "protocol_id": 1041
+ "minecraft:block.frogspawn.step": {
+ "protocol_id": 483
},
- "minecraft:block.sculk.hit": {
- "protocol_id": 1042
+ "minecraft:block.fungus.break": {
+ "protocol_id": 858
},
- "minecraft:block.sculk.place": {
- "protocol_id": 1043
+ "minecraft:block.fungus.fall": {
+ "protocol_id": 862
},
- "minecraft:block.sculk.spread": {
- "protocol_id": 1038
+ "minecraft:block.fungus.hit": {
+ "protocol_id": 861
},
- "minecraft:block.sculk.step": {
- "protocol_id": 1044
+ "minecraft:block.fungus.place": {
+ "protocol_id": 860
},
- "minecraft:block.sculk_catalyst.bloom": {
- "protocol_id": 1045
+ "minecraft:block.fungus.step": {
+ "protocol_id": 859
},
- "minecraft:block.sculk_catalyst.break": {
- "protocol_id": 1046
+ "minecraft:block.furnace.fire_crackle": {
+ "protocol_id": 502
},
- "minecraft:block.sculk_catalyst.fall": {
- "protocol_id": 1047
+ "minecraft:block.gilded_blackstone.break": {
+ "protocol_id": 520
},
- "minecraft:block.sculk_catalyst.hit": {
- "protocol_id": 1048
+ "minecraft:block.gilded_blackstone.fall": {
+ "protocol_id": 521
},
- "minecraft:block.sculk_catalyst.place": {
- "protocol_id": 1049
+ "minecraft:block.gilded_blackstone.hit": {
+ "protocol_id": 522
},
- "minecraft:block.sculk_catalyst.step": {
- "protocol_id": 1050
+ "minecraft:block.gilded_blackstone.place": {
+ "protocol_id": 523
},
- "minecraft:block.sculk_sensor.break": {
- "protocol_id": 1053
+ "minecraft:block.gilded_blackstone.step": {
+ "protocol_id": 524
},
- "minecraft:block.sculk_sensor.clicking": {
- "protocol_id": 1051
+ "minecraft:block.glass.break": {
+ "protocol_id": 525
},
- "minecraft:block.sculk_sensor.clicking_stop": {
- "protocol_id": 1052
+ "minecraft:block.glass.fall": {
+ "protocol_id": 526
},
- "minecraft:block.sculk_sensor.fall": {
- "protocol_id": 1054
+ "minecraft:block.glass.hit": {
+ "protocol_id": 527
},
- "minecraft:block.sculk_sensor.hit": {
- "protocol_id": 1055
+ "minecraft:block.glass.place": {
+ "protocol_id": 528
},
- "minecraft:block.sculk_sensor.place": {
- "protocol_id": 1056
+ "minecraft:block.glass.step": {
+ "protocol_id": 529
},
- "minecraft:block.sculk_sensor.step": {
- "protocol_id": 1057
+ "minecraft:block.grass.break": {
+ "protocol_id": 560
},
- "minecraft:block.sculk_shrieker.break": {
- "protocol_id": 1058
+ "minecraft:block.grass.fall": {
+ "protocol_id": 561
},
- "minecraft:block.sculk_shrieker.fall": {
- "protocol_id": 1059
+ "minecraft:block.grass.hit": {
+ "protocol_id": 562
},
- "minecraft:block.sculk_shrieker.hit": {
- "protocol_id": 1060
+ "minecraft:block.grass.place": {
+ "protocol_id": 563
},
- "minecraft:block.sculk_shrieker.place": {
- "protocol_id": 1061
+ "minecraft:block.grass.step": {
+ "protocol_id": 564
},
- "minecraft:block.sculk_shrieker.shriek": {
- "protocol_id": 1062
+ "minecraft:block.gravel.break": {
+ "protocol_id": 565
},
- "minecraft:block.sculk_shrieker.step": {
- "protocol_id": 1063
+ "minecraft:block.gravel.fall": {
+ "protocol_id": 566
},
- "minecraft:block.sculk_vein.break": {
- "protocol_id": 1064
+ "minecraft:block.gravel.hit": {
+ "protocol_id": 567
},
- "minecraft:block.sculk_vein.fall": {
- "protocol_id": 1065
+ "minecraft:block.gravel.place": {
+ "protocol_id": 568
},
- "minecraft:block.sculk_vein.hit": {
- "protocol_id": 1066
+ "minecraft:block.gravel.step": {
+ "protocol_id": 569
},
- "minecraft:block.sculk_vein.place": {
- "protocol_id": 1067
+ "minecraft:block.grindstone.use": {
+ "protocol_id": 570
},
- "minecraft:block.sculk_vein.step": {
- "protocol_id": 1068
+ "minecraft:block.growing_plant.crop": {
+ "protocol_id": 571
},
- "minecraft:block.shroomlight.break": {
- "protocol_id": 1076
+ "minecraft:block.hanging_roots.break": {
+ "protocol_id": 580
},
- "minecraft:block.shroomlight.fall": {
- "protocol_id": 1080
+ "minecraft:block.hanging_roots.fall": {
+ "protocol_id": 581
},
- "minecraft:block.shroomlight.hit": {
- "protocol_id": 1079
+ "minecraft:block.hanging_roots.hit": {
+ "protocol_id": 582
},
- "minecraft:block.shroomlight.place": {
- "protocol_id": 1078
+ "minecraft:block.hanging_roots.place": {
+ "protocol_id": 583
},
- "minecraft:block.shroomlight.step": {
- "protocol_id": 1077
+ "minecraft:block.hanging_roots.step": {
+ "protocol_id": 584
},
- "minecraft:block.shulker_box.close": {
- "protocol_id": 1083
+ "minecraft:block.hanging_sign.break": {
+ "protocol_id": 586
},
- "minecraft:block.shulker_box.open": {
- "protocol_id": 1084
+ "minecraft:block.hanging_sign.fall": {
+ "protocol_id": 587
},
- "minecraft:block.slime_block.break": {
- "protocol_id": 1117
+ "minecraft:block.hanging_sign.hit": {
+ "protocol_id": 588
},
- "minecraft:block.slime_block.fall": {
- "protocol_id": 1118
+ "minecraft:block.hanging_sign.place": {
+ "protocol_id": 589
},
- "minecraft:block.slime_block.hit": {
- "protocol_id": 1119
+ "minecraft:block.hanging_sign.step": {
+ "protocol_id": 585
},
- "minecraft:block.slime_block.place": {
- "protocol_id": 1120
+ "minecraft:block.honey_block.break": {
+ "protocol_id": 609
},
- "minecraft:block.slime_block.step": {
- "protocol_id": 1121
+ "minecraft:block.honey_block.fall": {
+ "protocol_id": 610
},
- "minecraft:block.small_amethyst_bud.break": {
- "protocol_id": 1122
+ "minecraft:block.honey_block.hit": {
+ "protocol_id": 611
},
- "minecraft:block.small_amethyst_bud.place": {
- "protocol_id": 1123
+ "minecraft:block.honey_block.place": {
+ "protocol_id": 612
},
- "minecraft:block.small_dripleaf.break": {
- "protocol_id": 1124
+ "minecraft:block.honey_block.slide": {
+ "protocol_id": 613
},
- "minecraft:block.small_dripleaf.fall": {
- "protocol_id": 1125
+ "minecraft:block.honey_block.step": {
+ "protocol_id": 614
},
- "minecraft:block.small_dripleaf.hit": {
- "protocol_id": 1126
+ "minecraft:block.iron_door.close": {
+ "protocol_id": 657
},
- "minecraft:block.small_dripleaf.place": {
- "protocol_id": 1127
+ "minecraft:block.iron_door.open": {
+ "protocol_id": 658
},
- "minecraft:block.small_dripleaf.step": {
- "protocol_id": 1128
+ "minecraft:block.iron_trapdoor.close": {
+ "protocol_id": 665
},
- "minecraft:block.smithing_table.use": {
- "protocol_id": 1158
+ "minecraft:block.iron_trapdoor.open": {
+ "protocol_id": 666
},
- "minecraft:block.smoker.smoke": {
- "protocol_id": 1159
+ "minecraft:block.ladder.break": {
+ "protocol_id": 674
},
- "minecraft:block.snow.break": {
- "protocol_id": 1161
+ "minecraft:block.ladder.fall": {
+ "protocol_id": 675
},
- "minecraft:block.snow.fall": {
- "protocol_id": 1162
+ "minecraft:block.ladder.hit": {
+ "protocol_id": 676
},
- "minecraft:block.snow.hit": {
- "protocol_id": 1168
+ "minecraft:block.ladder.place": {
+ "protocol_id": 677
},
- "minecraft:block.snow.place": {
- "protocol_id": 1169
+ "minecraft:block.ladder.step": {
+ "protocol_id": 678
},
- "minecraft:block.snow.step": {
- "protocol_id": 1170
+ "minecraft:block.lantern.break": {
+ "protocol_id": 679
},
- "minecraft:block.soul_sand.break": {
- "protocol_id": 1129
+ "minecraft:block.lantern.fall": {
+ "protocol_id": 680
},
- "minecraft:block.soul_sand.fall": {
- "protocol_id": 1133
+ "minecraft:block.lantern.hit": {
+ "protocol_id": 681
},
- "minecraft:block.soul_sand.hit": {
- "protocol_id": 1132
+ "minecraft:block.lantern.place": {
+ "protocol_id": 682
},
- "minecraft:block.soul_sand.place": {
- "protocol_id": 1131
+ "minecraft:block.lantern.step": {
+ "protocol_id": 683
},
- "minecraft:block.soul_sand.step": {
- "protocol_id": 1130
+ "minecraft:block.large_amethyst_bud.break": {
+ "protocol_id": 684
},
- "minecraft:block.soul_soil.break": {
- "protocol_id": 1134
+ "minecraft:block.large_amethyst_bud.place": {
+ "protocol_id": 685
},
- "minecraft:block.soul_soil.fall": {
- "protocol_id": 1138
+ "minecraft:block.lava.ambient": {
+ "protocol_id": 686
},
- "minecraft:block.soul_soil.hit": {
- "protocol_id": 1137
+ "minecraft:block.lava.extinguish": {
+ "protocol_id": 687
},
- "minecraft:block.soul_soil.place": {
- "protocol_id": 1136
+ "minecraft:block.lava.pop": {
+ "protocol_id": 688
},
- "minecraft:block.soul_soil.step": {
- "protocol_id": 1135
+ "minecraft:block.lever.click": {
+ "protocol_id": 691
},
- "minecraft:block.spore_blossom.break": {
- "protocol_id": 1140
+ "minecraft:block.lily_pad.place": {
+ "protocol_id": 1343
},
- "minecraft:block.spore_blossom.fall": {
- "protocol_id": 1141
+ "minecraft:block.lodestone.break": {
+ "protocol_id": 705
},
- "minecraft:block.spore_blossom.hit": {
- "protocol_id": 1142
+ "minecraft:block.lodestone.fall": {
+ "protocol_id": 709
},
- "minecraft:block.spore_blossom.place": {
- "protocol_id": 1143
+ "minecraft:block.lodestone.hit": {
+ "protocol_id": 708
},
- "minecraft:block.spore_blossom.step": {
- "protocol_id": 1144
+ "minecraft:block.lodestone.place": {
+ "protocol_id": 707
},
- "minecraft:block.stem.break": {
- "protocol_id": 793
+ "minecraft:block.lodestone.step": {
+ "protocol_id": 706
},
- "minecraft:block.stem.fall": {
- "protocol_id": 797
+ "minecraft:block.mangrove_roots.break": {
+ "protocol_id": 717
},
- "minecraft:block.stem.hit": {
- "protocol_id": 796
+ "minecraft:block.mangrove_roots.fall": {
+ "protocol_id": 718
},
- "minecraft:block.stem.place": {
- "protocol_id": 795
+ "minecraft:block.mangrove_roots.hit": {
+ "protocol_id": 719
},
- "minecraft:block.stem.step": {
- "protocol_id": 794
+ "minecraft:block.mangrove_roots.place": {
+ "protocol_id": 720
},
- "minecraft:block.stone.break": {
- "protocol_id": 1183
+ "minecraft:block.mangrove_roots.step": {
+ "protocol_id": 721
},
- "minecraft:block.stone.fall": {
- "protocol_id": 1186
+ "minecraft:block.medium_amethyst_bud.break": {
+ "protocol_id": 722
},
- "minecraft:block.stone.hit": {
- "protocol_id": 1187
+ "minecraft:block.medium_amethyst_bud.place": {
+ "protocol_id": 723
},
- "minecraft:block.stone.place": {
- "protocol_id": 1188
+ "minecraft:block.metal.break": {
+ "protocol_id": 724
},
- "minecraft:block.stone.step": {
- "protocol_id": 1191
+ "minecraft:block.metal.fall": {
+ "protocol_id": 725
},
- "minecraft:block.stone_button.click_off": {
- "protocol_id": 1184
+ "minecraft:block.metal.hit": {
+ "protocol_id": 726
},
- "minecraft:block.stone_button.click_on": {
- "protocol_id": 1185
+ "minecraft:block.metal.place": {
+ "protocol_id": 727
},
- "minecraft:block.stone_pressure_plate.click_off": {
- "protocol_id": 1189
+ "minecraft:block.metal.step": {
+ "protocol_id": 730
},
- "minecraft:block.stone_pressure_plate.click_on": {
- "protocol_id": 1190
+ "minecraft:block.metal_pressure_plate.click_off": {
+ "protocol_id": 728
},
- "minecraft:block.sweet_berry_bush.break": {
- "protocol_id": 1196
+ "minecraft:block.metal_pressure_plate.click_on": {
+ "protocol_id": 729
},
- "minecraft:block.sweet_berry_bush.pick_berries": {
- "protocol_id": 1198
+ "minecraft:block.moss.break": {
+ "protocol_id": 749
},
- "minecraft:block.sweet_berry_bush.place": {
- "protocol_id": 1197
+ "minecraft:block.moss.fall": {
+ "protocol_id": 750
},
- "minecraft:block.tripwire.attach": {
- "protocol_id": 1214
+ "minecraft:block.moss.hit": {
+ "protocol_id": 751
},
- "minecraft:block.tripwire.click_off": {
- "protocol_id": 1215
+ "minecraft:block.moss.place": {
+ "protocol_id": 752
},
- "minecraft:block.tripwire.click_on": {
- "protocol_id": 1216
+ "minecraft:block.moss.step": {
+ "protocol_id": 753
},
- "minecraft:block.tripwire.detach": {
- "protocol_id": 1217
+ "minecraft:block.moss_carpet.break": {
+ "protocol_id": 739
},
- "minecraft:block.tuff.break": {
- "protocol_id": 1222
+ "minecraft:block.moss_carpet.fall": {
+ "protocol_id": 740
},
- "minecraft:block.tuff.fall": {
- "protocol_id": 1226
+ "minecraft:block.moss_carpet.hit": {
+ "protocol_id": 741
},
- "minecraft:block.tuff.hit": {
- "protocol_id": 1225
+ "minecraft:block.moss_carpet.place": {
+ "protocol_id": 742
},
- "minecraft:block.tuff.place": {
- "protocol_id": 1224
+ "minecraft:block.moss_carpet.step": {
+ "protocol_id": 743
},
- "minecraft:block.tuff.step": {
- "protocol_id": 1223
+ "minecraft:block.mud.break": {
+ "protocol_id": 754
},
- "minecraft:block.vine.break": {
- "protocol_id": 1276
+ "minecraft:block.mud.fall": {
+ "protocol_id": 755
},
- "minecraft:block.vine.fall": {
- "protocol_id": 1277
+ "minecraft:block.mud.hit": {
+ "protocol_id": 756
},
- "minecraft:block.vine.hit": {
- "protocol_id": 1278
+ "minecraft:block.mud.place": {
+ "protocol_id": 757
},
- "minecraft:block.vine.place": {
- "protocol_id": 1279
+ "minecraft:block.mud.step": {
+ "protocol_id": 758
},
- "minecraft:block.vine.step": {
- "protocol_id": 1280
+ "minecraft:block.mud_bricks.break": {
+ "protocol_id": 759
},
- "minecraft:block.wart_block.break": {
- "protocol_id": 818
+ "minecraft:block.mud_bricks.fall": {
+ "protocol_id": 760
},
- "minecraft:block.wart_block.fall": {
- "protocol_id": 822
+ "minecraft:block.mud_bricks.hit": {
+ "protocol_id": 761
},
- "minecraft:block.wart_block.hit": {
- "protocol_id": 821
+ "minecraft:block.mud_bricks.place": {
+ "protocol_id": 762
},
- "minecraft:block.wart_block.place": {
- "protocol_id": 820
+ "minecraft:block.mud_bricks.step": {
+ "protocol_id": 763
},
- "minecraft:block.wart_block.step": {
- "protocol_id": 819
+ "minecraft:block.muddy_mangrove_roots.break": {
+ "protocol_id": 764
},
- "minecraft:block.water.ambient": {
- "protocol_id": 1312
+ "minecraft:block.muddy_mangrove_roots.fall": {
+ "protocol_id": 765
},
- "minecraft:block.weeping_vines.break": {
- "protocol_id": 813
+ "minecraft:block.muddy_mangrove_roots.hit": {
+ "protocol_id": 766
},
- "minecraft:block.weeping_vines.fall": {
- "protocol_id": 817
+ "minecraft:block.muddy_mangrove_roots.place": {
+ "protocol_id": 767
},
- "minecraft:block.weeping_vines.hit": {
- "protocol_id": 816
+ "minecraft:block.muddy_mangrove_roots.step": {
+ "protocol_id": 768
},
- "minecraft:block.weeping_vines.place": {
+ "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": {
+ "protocol_id": 373
+ },
+ "minecraft:block.pointed_dripstone.land": {
+ "protocol_id": 375
+ },
+ "minecraft:block.pointed_dripstone.place": {
+ "protocol_id": 372
+ },
+ "minecraft:block.pointed_dripstone.step": {
+ "protocol_id": 371
+ },
+ "minecraft:block.polished_deepslate.break": {
+ "protocol_id": 1019
+ },
+ "minecraft:block.polished_deepslate.fall": {
+ "protocol_id": 1020
+ },
+ "minecraft:block.polished_deepslate.hit": {
+ "protocol_id": 1021
+ },
+ "minecraft:block.polished_deepslate.place": {
+ "protocol_id": 1022
+ },
+ "minecraft:block.polished_deepslate.step": {
+ "protocol_id": 1023
+ },
+ "minecraft:block.portal.ambient": {
+ "protocol_id": 1024
+ },
+ "minecraft:block.portal.travel": {
+ "protocol_id": 1025
+ },
+ "minecraft:block.portal.trigger": {
+ "protocol_id": 1026
+ },
+ "minecraft:block.powder_snow.break": {
+ "protocol_id": 1027
+ },
+ "minecraft:block.powder_snow.fall": {
+ "protocol_id": 1028
+ },
+ "minecraft:block.powder_snow.hit": {
+ "protocol_id": 1029
+ },
+ "minecraft:block.powder_snow.place": {
+ "protocol_id": 1030
+ },
+ "minecraft:block.powder_snow.step": {
+ "protocol_id": 1031
+ },
+ "minecraft:block.pumpkin.carve": {
+ "protocol_id": 1039
+ },
+ "minecraft:block.redstone_torch.burnout": {
+ "protocol_id": 1064
+ },
+ "minecraft:block.respawn_anchor.ambient": {
+ "protocol_id": 1065
+ },
+ "minecraft:block.respawn_anchor.charge": {
+ "protocol_id": 1066
+ },
+ "minecraft:block.respawn_anchor.deplete": {
+ "protocol_id": 1067
+ },
+ "minecraft:block.respawn_anchor.set_spawn": {
+ "protocol_id": 1068
+ },
+ "minecraft:block.rooted_dirt.break": {
+ "protocol_id": 1069
+ },
+ "minecraft:block.rooted_dirt.fall": {
+ "protocol_id": 1070
+ },
+ "minecraft:block.rooted_dirt.hit": {
+ "protocol_id": 1071
+ },
+ "minecraft:block.rooted_dirt.place": {
+ "protocol_id": 1072
+ },
+ "minecraft:block.rooted_dirt.step": {
+ "protocol_id": 1073
+ },
+ "minecraft:block.roots.break": {
+ "protocol_id": 497
+ },
+ "minecraft:block.roots.fall": {
+ "protocol_id": 501
+ },
+ "minecraft:block.roots.hit": {
+ "protocol_id": 500
+ },
+ "minecraft:block.roots.place": {
+ "protocol_id": 499
+ },
+ "minecraft:block.roots.step": {
+ "protocol_id": 498
+ },
+ "minecraft:block.sand.break": {
+ "protocol_id": 1078
+ },
+ "minecraft:block.sand.fall": {
+ "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": {
+ "protocol_id": 869
+ },
+ "minecraft:block.water.ambient": {
+ "protocol_id": 1374
+ },
+ "minecraft:block.weeping_vines.break": {
+ "protocol_id": 863
+ },
+ "minecraft:block.weeping_vines.fall": {
+ "protocol_id": 867
+ },
+ "minecraft:block.weeping_vines.hit": {
+ "protocol_id": 866
+ },
+ "minecraft:block.weeping_vines.place": {
+ "protocol_id": 865
+ },
"minecraft:block.weeping_vines.step": {
- "protocol_id": 814
+ "protocol_id": 864
},
"minecraft:block.wet_grass.break": {
- "protocol_id": 1315
+ "protocol_id": 1377
},
"minecraft:block.wet_grass.fall": {
- "protocol_id": 1316
+ "protocol_id": 1378
},
"minecraft:block.wet_grass.hit": {
- "protocol_id": 1317
+ "protocol_id": 1379
},
"minecraft:block.wet_grass.place": {
- "protocol_id": 1318
+ "protocol_id": 1380
},
"minecraft:block.wet_grass.step": {
- "protocol_id": 1319
+ "protocol_id": 1381
},
"minecraft:block.wood.break": {
- "protocol_id": 1349
+ "protocol_id": 1415
},
"minecraft:block.wood.fall": {
- "protocol_id": 1352
+ "protocol_id": 1416
},
"minecraft:block.wood.hit": {
- "protocol_id": 1353
+ "protocol_id": 1417
},
"minecraft:block.wood.place": {
- "protocol_id": 1354
+ "protocol_id": 1418
},
"minecraft:block.wood.step": {
- "protocol_id": 1357
+ "protocol_id": 1419
},
"minecraft:block.wooden_button.click_off": {
- "protocol_id": 1350
+ "protocol_id": 1411
},
"minecraft:block.wooden_button.click_on": {
- "protocol_id": 1351
+ "protocol_id": 1412
},
"minecraft:block.wooden_door.close": {
- "protocol_id": 1345
+ "protocol_id": 1407
},
"minecraft:block.wooden_door.open": {
- "protocol_id": 1346
+ "protocol_id": 1408
},
"minecraft:block.wooden_pressure_plate.click_off": {
- "protocol_id": 1355
+ "protocol_id": 1413
},
"minecraft:block.wooden_pressure_plate.click_on": {
- "protocol_id": 1356
+ "protocol_id": 1414
},
"minecraft:block.wooden_trapdoor.close": {
- "protocol_id": 1347
+ "protocol_id": 1409
},
"minecraft:block.wooden_trapdoor.open": {
- "protocol_id": 1348
+ "protocol_id": 1410
},
"minecraft:block.wool.break": {
- "protocol_id": 1358
+ "protocol_id": 1420
},
"minecraft:block.wool.fall": {
- "protocol_id": 1359
+ "protocol_id": 1421
},
"minecraft:block.wool.hit": {
- "protocol_id": 1360
+ "protocol_id": 1422
},
"minecraft:block.wool.place": {
- "protocol_id": 1361
+ "protocol_id": 1423
},
"minecraft:block.wool.step": {
- "protocol_id": 1362
+ "protocol_id": 1424
},
"minecraft:enchant.thorns.hit": {
- "protocol_id": 1203
+ "protocol_id": 1265
},
"minecraft:entity.allay.ambient_with_item": {
"protocol_id": 0
@@ -11552,1846 +11980,1885 @@
"protocol_id": 152
},
"minecraft:entity.camel.ambient": {
- "protocol_id": 192
- },
- "minecraft:entity.camel.dash": {
- "protocol_id": 193
- },
- "minecraft:entity.camel.dash_ready": {
"protocol_id": 194
},
- "minecraft:entity.camel.death": {
+ "minecraft:entity.camel.dash": {
"protocol_id": 195
},
- "minecraft:entity.camel.eat": {
+ "minecraft:entity.camel.dash_ready": {
"protocol_id": 196
},
- "minecraft:entity.camel.hurt": {
+ "minecraft:entity.camel.death": {
"protocol_id": 197
},
- "minecraft:entity.camel.saddle": {
+ "minecraft:entity.camel.eat": {
"protocol_id": 198
},
- "minecraft:entity.camel.sit": {
+ "minecraft:entity.camel.hurt": {
"protocol_id": 199
},
- "minecraft:entity.camel.stand": {
+ "minecraft:entity.camel.saddle": {
"protocol_id": 200
},
- "minecraft:entity.camel.step": {
+ "minecraft:entity.camel.sit": {
"protocol_id": 201
},
- "minecraft:entity.camel.step_sand": {
+ "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": 211
- },
- "minecraft:entity.cat.beg_for_food": {
- "protocol_id": 216
- },
- "minecraft:entity.cat.death": {
"protocol_id": 213
},
- "minecraft:entity.cat.eat": {
- "protocol_id": 214
- },
- "minecraft:entity.cat.hiss": {
- "protocol_id": 215
- },
- "minecraft:entity.cat.hurt": {
- "protocol_id": 217
- },
- "minecraft:entity.cat.purr": {
+ "minecraft:entity.cat.beg_for_food": {
"protocol_id": 218
},
- "minecraft:entity.cat.purreow": {
+ "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": 212
+ "protocol_id": 214
},
"minecraft:entity.chicken.ambient": {
- "protocol_id": 234
+ "protocol_id": 266
},
"minecraft:entity.chicken.death": {
- "protocol_id": 235
+ "protocol_id": 267
},
"minecraft:entity.chicken.egg": {
- "protocol_id": 236
+ "protocol_id": 268
},
"minecraft:entity.chicken.hurt": {
- "protocol_id": 237
+ "protocol_id": 269
},
"minecraft:entity.chicken.step": {
- "protocol_id": 238
+ "protocol_id": 270
},
"minecraft:entity.cod.ambient": {
- "protocol_id": 251
+ "protocol_id": 283
},
"minecraft:entity.cod.death": {
- "protocol_id": 252
+ "protocol_id": 284
},
"minecraft:entity.cod.flop": {
- "protocol_id": 253
+ "protocol_id": 285
},
"minecraft:entity.cod.hurt": {
- "protocol_id": 254
+ "protocol_id": 286
},
"minecraft:entity.cow.ambient": {
- "protocol_id": 275
+ "protocol_id": 307
},
"minecraft:entity.cow.death": {
- "protocol_id": 276
+ "protocol_id": 308
},
"minecraft:entity.cow.hurt": {
- "protocol_id": 277
+ "protocol_id": 309
},
"minecraft:entity.cow.milk": {
- "protocol_id": 278
+ "protocol_id": 310
},
"minecraft:entity.cow.step": {
- "protocol_id": 279
- },
- "minecraft:entity.creeper.death": {
- "protocol_id": 280
- },
- "minecraft:entity.creeper.hurt": {
- "protocol_id": 281
- },
- "minecraft:entity.creeper.primed": {
- "protocol_id": 282
- },
- "minecraft:entity.dolphin.ambient": {
"protocol_id": 311
},
- "minecraft:entity.dolphin.ambient_water": {
+ "minecraft:entity.creeper.death": {
"protocol_id": 312
},
- "minecraft:entity.dolphin.attack": {
+ "minecraft:entity.creeper.hurt": {
"protocol_id": 313
},
- "minecraft:entity.dolphin.death": {
+ "minecraft:entity.creeper.primed": {
"protocol_id": 314
},
- "minecraft:entity.dolphin.eat": {
- "protocol_id": 315
- },
- "minecraft:entity.dolphin.hurt": {
- "protocol_id": 316
- },
- "minecraft:entity.dolphin.jump": {
- "protocol_id": 317
- },
- "minecraft:entity.dolphin.play": {
- "protocol_id": 318
- },
- "minecraft:entity.dolphin.splash": {
- "protocol_id": 319
- },
- "minecraft:entity.dolphin.swim": {
- "protocol_id": 320
- },
- "minecraft:entity.donkey.ambient": {
- "protocol_id": 321
- },
- "minecraft:entity.donkey.angry": {
- "protocol_id": 322
- },
- "minecraft:entity.donkey.chest": {
- "protocol_id": 323
- },
- "minecraft:entity.donkey.death": {
- "protocol_id": 324
- },
- "minecraft:entity.donkey.eat": {
- "protocol_id": 325
- },
- "minecraft:entity.donkey.hurt": {
- "protocol_id": 326
- },
- "minecraft:entity.dragon_fireball.explode": {
- "protocol_id": 369
- },
- "minecraft:entity.drowned.ambient": {
- "protocol_id": 344
- },
- "minecraft:entity.drowned.ambient_water": {
- "protocol_id": 345
- },
- "minecraft:entity.drowned.death": {
- "protocol_id": 346
- },
- "minecraft:entity.drowned.death_water": {
- "protocol_id": 347
- },
- "minecraft:entity.drowned.hurt": {
- "protocol_id": 348
- },
- "minecraft:entity.drowned.hurt_water": {
+ "minecraft:entity.dolphin.ambient": {
"protocol_id": 349
},
- "minecraft:entity.drowned.shoot": {
+ "minecraft:entity.dolphin.ambient_water": {
"protocol_id": 350
},
- "minecraft:entity.drowned.step": {
+ "minecraft:entity.dolphin.attack": {
"protocol_id": 351
},
- "minecraft:entity.drowned.swim": {
+ "minecraft:entity.dolphin.death": {
"protocol_id": 352
},
- "minecraft:entity.egg.throw": {
+ "minecraft:entity.dolphin.eat": {
+ "protocol_id": 353
+ },
+ "minecraft:entity.dolphin.hurt": {
"protocol_id": 354
},
- "minecraft:entity.elder_guardian.ambient": {
+ "minecraft:entity.dolphin.jump": {
"protocol_id": 355
},
- "minecraft:entity.elder_guardian.ambient_land": {
+ "minecraft:entity.dolphin.play": {
"protocol_id": 356
},
- "minecraft:entity.elder_guardian.curse": {
+ "minecraft:entity.dolphin.splash": {
"protocol_id": 357
},
- "minecraft:entity.elder_guardian.death": {
+ "minecraft:entity.dolphin.swim": {
"protocol_id": 358
},
- "minecraft:entity.elder_guardian.death_land": {
+ "minecraft:entity.donkey.ambient": {
"protocol_id": 359
},
- "minecraft:entity.elder_guardian.flop": {
+ "minecraft:entity.donkey.angry": {
"protocol_id": 360
},
- "minecraft:entity.elder_guardian.hurt": {
+ "minecraft:entity.donkey.chest": {
"protocol_id": 361
},
- "minecraft:entity.elder_guardian.hurt_land": {
+ "minecraft:entity.donkey.death": {
"protocol_id": 362
},
- "minecraft:entity.ender_dragon.ambient": {
- "protocol_id": 367
+ "minecraft:entity.donkey.eat": {
+ "protocol_id": 363
},
- "minecraft:entity.ender_dragon.death": {
- "protocol_id": 368
+ "minecraft:entity.donkey.hurt": {
+ "protocol_id": 364
},
- "minecraft:entity.ender_dragon.flap": {
- "protocol_id": 370
- },
- "minecraft:entity.ender_dragon.growl": {
- "protocol_id": 371
- },
- "minecraft:entity.ender_dragon.hurt": {
- "protocol_id": 372
- },
- "minecraft:entity.ender_dragon.shoot": {
- "protocol_id": 373
- },
- "minecraft:entity.ender_eye.death": {
- "protocol_id": 374
- },
- "minecraft:entity.ender_eye.launch": {
- "protocol_id": 375
- },
- "minecraft:entity.ender_pearl.throw": {
- "protocol_id": 386
- },
- "minecraft:entity.enderman.ambient": {
- "protocol_id": 376
- },
- "minecraft:entity.enderman.death": {
- "protocol_id": 377
- },
- "minecraft:entity.enderman.hurt": {
- "protocol_id": 378
- },
- "minecraft:entity.enderman.scream": {
- "protocol_id": 379
- },
- "minecraft:entity.enderman.stare": {
- "protocol_id": 380
- },
- "minecraft:entity.enderman.teleport": {
- "protocol_id": 381
- },
- "minecraft:entity.endermite.ambient": {
- "protocol_id": 382
- },
- "minecraft:entity.endermite.death": {
- "protocol_id": 383
- },
- "minecraft:entity.endermite.hurt": {
- "protocol_id": 384
- },
- "minecraft:entity.endermite.step": {
- "protocol_id": 385
- },
- "minecraft:entity.evoker.ambient": {
- "protocol_id": 390
- },
- "minecraft:entity.evoker.cast_spell": {
- "protocol_id": 391
- },
- "minecraft:entity.evoker.celebrate": {
- "protocol_id": 392
- },
- "minecraft:entity.evoker.death": {
- "protocol_id": 393
- },
- "minecraft:entity.evoker.hurt": {
- "protocol_id": 395
- },
- "minecraft:entity.evoker.prepare_attack": {
- "protocol_id": 396
- },
- "minecraft:entity.evoker.prepare_summon": {
- "protocol_id": 397
- },
- "minecraft:entity.evoker.prepare_wololo": {
- "protocol_id": 398
- },
- "minecraft:entity.evoker_fangs.attack": {
- "protocol_id": 394
- },
- "minecraft:entity.experience_bottle.throw": {
- "protocol_id": 399
- },
- "minecraft:entity.experience_orb.pickup": {
- "protocol_id": 400
- },
- "minecraft:entity.firework_rocket.blast": {
- "protocol_id": 404
- },
- "minecraft:entity.firework_rocket.blast_far": {
- "protocol_id": 405
- },
- "minecraft:entity.firework_rocket.large_blast": {
- "protocol_id": 406
- },
- "minecraft:entity.firework_rocket.large_blast_far": {
+ "minecraft:entity.dragon_fireball.explode": {
"protocol_id": 407
},
- "minecraft:entity.firework_rocket.launch": {
+ "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.firework_rocket.shoot": {
+ "minecraft:entity.ender_dragon.growl": {
"protocol_id": 409
},
- "minecraft:entity.firework_rocket.twinkle": {
+ "minecraft:entity.ender_dragon.hurt": {
"protocol_id": 410
},
- "minecraft:entity.firework_rocket.twinkle_far": {
+ "minecraft:entity.ender_dragon.shoot": {
"protocol_id": 411
},
- "minecraft:entity.fish.swim": {
- "protocol_id": 414
+ "minecraft:entity.ender_eye.death": {
+ "protocol_id": 412
},
- "minecraft:entity.fishing_bobber.retrieve": {
- "protocol_id": 415
+ "minecraft:entity.ender_eye.launch": {
+ "protocol_id": 413
},
- "minecraft:entity.fishing_bobber.splash": {
- "protocol_id": 416
- },
- "minecraft:entity.fishing_bobber.throw": {
- "protocol_id": 417
- },
- "minecraft:entity.fox.aggro": {
+ "minecraft:entity.ender_pearl.throw": {
"protocol_id": 424
},
- "minecraft:entity.fox.ambient": {
- "protocol_id": 425
+ "minecraft:entity.enderman.ambient": {
+ "protocol_id": 414
},
- "minecraft:entity.fox.bite": {
- "protocol_id": 426
+ "minecraft:entity.enderman.death": {
+ "protocol_id": 415
},
- "minecraft:entity.fox.death": {
- "protocol_id": 427
+ "minecraft:entity.enderman.hurt": {
+ "protocol_id": 416
},
- "minecraft:entity.fox.eat": {
+ "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.fox.hurt": {
+ "minecraft:entity.evoker.cast_spell": {
"protocol_id": 429
},
- "minecraft:entity.fox.screech": {
+ "minecraft:entity.evoker.celebrate": {
"protocol_id": 430
},
- "minecraft:entity.fox.sleep": {
+ "minecraft:entity.evoker.death": {
"protocol_id": 431
},
- "minecraft:entity.fox.sniff": {
- "protocol_id": 432
- },
- "minecraft:entity.fox.spit": {
+ "minecraft:entity.evoker.hurt": {
"protocol_id": 433
},
- "minecraft:entity.fox.teleport": {
+ "minecraft:entity.evoker.prepare_attack": {
"protocol_id": 434
},
- "minecraft:entity.frog.ambient": {
+ "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.frog.death": {
+ "minecraft:entity.firework_rocket.shoot": {
"protocol_id": 447
},
- "minecraft:entity.frog.eat": {
+ "minecraft:entity.firework_rocket.twinkle": {
"protocol_id": 448
},
- "minecraft:entity.frog.hurt": {
+ "minecraft:entity.firework_rocket.twinkle_far": {
"protocol_id": 449
},
- "minecraft:entity.frog.lay_spawn": {
- "protocol_id": 450
- },
- "minecraft:entity.frog.long_jump": {
- "protocol_id": 451
- },
- "minecraft:entity.frog.step": {
+ "minecraft:entity.fish.swim": {
"protocol_id": 452
},
- "minecraft:entity.frog.tongue": {
+ "minecraft:entity.fishing_bobber.retrieve": {
"protocol_id": 453
},
- "minecraft:entity.generic.big_fall": {
- "protocol_id": 460
+ "minecraft:entity.fishing_bobber.splash": {
+ "protocol_id": 454
},
- "minecraft:entity.generic.burn": {
- "protocol_id": 461
+ "minecraft:entity.fishing_bobber.throw": {
+ "protocol_id": 455
},
- "minecraft:entity.generic.death": {
+ "minecraft:entity.fox.aggro": {
"protocol_id": 462
},
- "minecraft:entity.generic.drink": {
+ "minecraft:entity.fox.ambient": {
"protocol_id": 463
},
- "minecraft:entity.generic.eat": {
+ "minecraft:entity.fox.bite": {
"protocol_id": 464
},
- "minecraft:entity.generic.explode": {
+ "minecraft:entity.fox.death": {
"protocol_id": 465
},
- "minecraft:entity.generic.extinguish_fire": {
+ "minecraft:entity.fox.eat": {
"protocol_id": 466
},
- "minecraft:entity.generic.hurt": {
+ "minecraft:entity.fox.hurt": {
"protocol_id": 467
},
- "minecraft:entity.generic.small_fall": {
+ "minecraft:entity.fox.screech": {
"protocol_id": 468
},
- "minecraft:entity.generic.splash": {
+ "minecraft:entity.fox.sleep": {
"protocol_id": 469
},
- "minecraft:entity.generic.swim": {
+ "minecraft:entity.fox.sniff": {
"protocol_id": 470
},
- "minecraft:entity.ghast.ambient": {
+ "minecraft:entity.fox.spit": {
"protocol_id": 471
},
- "minecraft:entity.ghast.death": {
+ "minecraft:entity.fox.teleport": {
"protocol_id": 472
},
- "minecraft:entity.ghast.hurt": {
- "protocol_id": 473
- },
- "minecraft:entity.ghast.scream": {
- "protocol_id": 474
- },
- "minecraft:entity.ghast.shoot": {
- "protocol_id": 475
- },
- "minecraft:entity.ghast.warn": {
- "protocol_id": 476
- },
- "minecraft:entity.glow_item_frame.add_item": {
- "protocol_id": 488
- },
- "minecraft:entity.glow_item_frame.break": {
+ "minecraft:entity.frog.ambient": {
"protocol_id": 489
},
- "minecraft:entity.glow_item_frame.place": {
+ "minecraft:entity.frog.death": {
"protocol_id": 490
},
- "minecraft:entity.glow_item_frame.remove_item": {
+ "minecraft:entity.frog.eat": {
"protocol_id": 491
},
- "minecraft:entity.glow_item_frame.rotate_item": {
+ "minecraft:entity.frog.hurt": {
"protocol_id": 492
},
- "minecraft:entity.glow_squid.ambient": {
+ "minecraft:entity.frog.lay_spawn": {
"protocol_id": 493
},
- "minecraft:entity.glow_squid.death": {
+ "minecraft:entity.frog.long_jump": {
"protocol_id": 494
},
- "minecraft:entity.glow_squid.hurt": {
+ "minecraft:entity.frog.step": {
"protocol_id": 495
},
- "minecraft:entity.glow_squid.squirt": {
+ "minecraft:entity.frog.tongue": {
"protocol_id": 496
},
- "minecraft:entity.goat.ambient": {
- "protocol_id": 497
- },
- "minecraft:entity.goat.death": {
- "protocol_id": 498
- },
- "minecraft:entity.goat.eat": {
- "protocol_id": 499
- },
- "minecraft:entity.goat.horn_break": {
- "protocol_id": 505
- },
- "minecraft:entity.goat.hurt": {
- "protocol_id": 500
- },
- "minecraft:entity.goat.long_jump": {
- "protocol_id": 501
- },
- "minecraft:entity.goat.milk": {
- "protocol_id": 502
- },
- "minecraft:entity.goat.prepare_ram": {
+ "minecraft:entity.generic.big_fall": {
"protocol_id": 503
},
- "minecraft:entity.goat.ram_impact": {
+ "minecraft:entity.generic.burn": {
"protocol_id": 504
},
- "minecraft:entity.goat.screaming.ambient": {
+ "minecraft:entity.generic.death": {
+ "protocol_id": 505
+ },
+ "minecraft:entity.generic.drink": {
+ "protocol_id": 506
+ },
+ "minecraft:entity.generic.eat": {
"protocol_id": 507
},
- "minecraft:entity.goat.screaming.death": {
+ "minecraft:entity.generic.explode": {
"protocol_id": 508
},
- "minecraft:entity.goat.screaming.eat": {
+ "minecraft:entity.generic.extinguish_fire": {
"protocol_id": 509
},
- "minecraft:entity.goat.screaming.horn_break": {
- "protocol_id": 515
- },
- "minecraft:entity.goat.screaming.hurt": {
+ "minecraft:entity.generic.hurt": {
"protocol_id": 510
},
- "minecraft:entity.goat.screaming.long_jump": {
+ "minecraft:entity.generic.small_fall": {
"protocol_id": 511
},
- "minecraft:entity.goat.screaming.milk": {
+ "minecraft:entity.generic.splash": {
"protocol_id": 512
},
- "minecraft:entity.goat.screaming.prepare_ram": {
+ "minecraft:entity.generic.swim": {
"protocol_id": 513
},
- "minecraft:entity.goat.screaming.ram_impact": {
+ "minecraft:entity.ghast.ambient": {
"protocol_id": 514
},
- "minecraft:entity.goat.step": {
+ "minecraft:entity.ghast.death": {
+ "protocol_id": 515
+ },
+ "minecraft:entity.ghast.hurt": {
"protocol_id": 516
},
- "minecraft:entity.guardian.ambient": {
- "protocol_id": 529
+ "minecraft:entity.ghast.scream": {
+ "protocol_id": 517
},
- "minecraft:entity.guardian.ambient_land": {
- "protocol_id": 530
+ "minecraft:entity.ghast.shoot": {
+ "protocol_id": 518
},
- "minecraft:entity.guardian.attack": {
+ "minecraft:entity.ghast.warn": {
+ "protocol_id": 519
+ },
+ "minecraft:entity.glow_item_frame.add_item": {
"protocol_id": 531
},
- "minecraft:entity.guardian.death": {
+ "minecraft:entity.glow_item_frame.break": {
"protocol_id": 532
},
- "minecraft:entity.guardian.death_land": {
+ "minecraft:entity.glow_item_frame.place": {
"protocol_id": 533
},
- "minecraft:entity.guardian.flop": {
+ "minecraft:entity.glow_item_frame.remove_item": {
"protocol_id": 534
},
- "minecraft:entity.guardian.hurt": {
+ "minecraft:entity.glow_item_frame.rotate_item": {
"protocol_id": 535
},
- "minecraft:entity.guardian.hurt_land": {
+ "minecraft:entity.glow_squid.ambient": {
"protocol_id": 536
},
- "minecraft:entity.hoglin.ambient": {
+ "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.hoglin.angry": {
+ "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.hoglin.attack": {
- "protocol_id": 560
+ "minecraft:entity.guardian.ambient": {
+ "protocol_id": 572
},
- "minecraft:entity.hoglin.converted_to_zombified": {
- "protocol_id": 561
+ "minecraft:entity.guardian.ambient_land": {
+ "protocol_id": 573
},
- "minecraft:entity.hoglin.death": {
- "protocol_id": 562
+ "minecraft:entity.guardian.attack": {
+ "protocol_id": 574
},
- "minecraft:entity.hoglin.hurt": {
- "protocol_id": 563
+ "minecraft:entity.guardian.death": {
+ "protocol_id": 575
},
- "minecraft:entity.hoglin.retreat": {
- "protocol_id": 564
+ "minecraft:entity.guardian.death_land": {
+ "protocol_id": 576
},
- "minecraft:entity.hoglin.step": {
- "protocol_id": 565
+ "minecraft:entity.guardian.flop": {
+ "protocol_id": 577
},
- "minecraft:entity.horse.ambient": {
- "protocol_id": 582
+ "minecraft:entity.guardian.hurt": {
+ "protocol_id": 578
},
- "minecraft:entity.horse.angry": {
- "protocol_id": 583
+ "minecraft:entity.guardian.hurt_land": {
+ "protocol_id": 579
},
- "minecraft:entity.horse.armor": {
- "protocol_id": 584
- },
- "minecraft:entity.horse.breathe": {
- "protocol_id": 585
- },
- "minecraft:entity.horse.death": {
- "protocol_id": 586
- },
- "minecraft:entity.horse.eat": {
- "protocol_id": 587
- },
- "minecraft:entity.horse.gallop": {
- "protocol_id": 588
- },
- "minecraft:entity.horse.hurt": {
- "protocol_id": 589
- },
- "minecraft:entity.horse.jump": {
- "protocol_id": 590
- },
- "minecraft:entity.horse.land": {
- "protocol_id": 591
- },
- "minecraft:entity.horse.saddle": {
- "protocol_id": 592
- },
- "minecraft:entity.horse.step": {
- "protocol_id": 593
- },
- "minecraft:entity.horse.step_wood": {
- "protocol_id": 594
- },
- "minecraft:entity.hostile.big_fall": {
- "protocol_id": 595
- },
- "minecraft:entity.hostile.death": {
- "protocol_id": 596
- },
- "minecraft:entity.hostile.hurt": {
- "protocol_id": 597
- },
- "minecraft:entity.hostile.small_fall": {
- "protocol_id": 598
- },
- "minecraft:entity.hostile.splash": {
- "protocol_id": 599
- },
- "minecraft:entity.hostile.swim": {
- "protocol_id": 600
- },
- "minecraft:entity.husk.ambient": {
+ "minecraft:entity.hoglin.ambient": {
"protocol_id": 601
},
- "minecraft:entity.husk.converted_to_zombie": {
+ "minecraft:entity.hoglin.angry": {
"protocol_id": 602
},
- "minecraft:entity.husk.death": {
+ "minecraft:entity.hoglin.attack": {
"protocol_id": 603
},
- "minecraft:entity.husk.hurt": {
+ "minecraft:entity.hoglin.converted_to_zombified": {
"protocol_id": 604
},
- "minecraft:entity.husk.step": {
+ "minecraft:entity.hoglin.death": {
"protocol_id": 605
},
- "minecraft:entity.illusioner.ambient": {
+ "minecraft:entity.hoglin.hurt": {
"protocol_id": 606
},
- "minecraft:entity.illusioner.cast_spell": {
+ "minecraft:entity.hoglin.retreat": {
"protocol_id": 607
},
- "minecraft:entity.illusioner.death": {
+ "minecraft:entity.hoglin.step": {
"protocol_id": 608
},
- "minecraft:entity.illusioner.hurt": {
- "protocol_id": 609
- },
- "minecraft:entity.illusioner.mirror_move": {
- "protocol_id": 610
- },
- "minecraft:entity.illusioner.prepare_blindness": {
- "protocol_id": 611
- },
- "minecraft:entity.illusioner.prepare_mirror": {
- "protocol_id": 612
- },
- "minecraft:entity.iron_golem.attack": {
- "protocol_id": 616
- },
- "minecraft:entity.iron_golem.damage": {
- "protocol_id": 617
- },
- "minecraft:entity.iron_golem.death": {
- "protocol_id": 618
- },
- "minecraft:entity.iron_golem.hurt": {
- "protocol_id": 619
- },
- "minecraft:entity.iron_golem.repair": {
- "protocol_id": 620
- },
- "minecraft:entity.iron_golem.step": {
- "protocol_id": 621
- },
- "minecraft:entity.item.break": {
- "protocol_id": 629
- },
- "minecraft:entity.item.pickup": {
- "protocol_id": 630
- },
- "minecraft:entity.item_frame.add_item": {
- "protocol_id": 624
- },
- "minecraft:entity.item_frame.break": {
+ "minecraft:entity.horse.ambient": {
"protocol_id": 625
},
- "minecraft:entity.item_frame.place": {
+ "minecraft:entity.horse.angry": {
"protocol_id": 626
},
- "minecraft:entity.item_frame.remove_item": {
+ "minecraft:entity.horse.armor": {
"protocol_id": 627
},
- "minecraft:entity.item_frame.rotate_item": {
+ "minecraft:entity.horse.breathe": {
"protocol_id": 628
},
- "minecraft:entity.leash_knot.break": {
+ "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.leash_knot.place": {
+ "minecraft:entity.husk.hurt": {
"protocol_id": 647
},
- "minecraft:entity.lightning_bolt.impact": {
+ "minecraft:entity.husk.step": {
+ "protocol_id": 648
+ },
+ "minecraft:entity.illusioner.ambient": {
"protocol_id": 649
},
- "minecraft:entity.lightning_bolt.thunder": {
+ "minecraft:entity.illusioner.cast_spell": {
"protocol_id": 650
},
- "minecraft:entity.lingering_potion.throw": {
+ "minecraft:entity.illusioner.death": {
"protocol_id": 651
},
- "minecraft:entity.llama.ambient": {
+ "minecraft:entity.illusioner.hurt": {
"protocol_id": 652
},
- "minecraft:entity.llama.angry": {
+ "minecraft:entity.illusioner.mirror_move": {
"protocol_id": 653
},
- "minecraft:entity.llama.chest": {
+ "minecraft:entity.illusioner.prepare_blindness": {
"protocol_id": 654
},
- "minecraft:entity.llama.death": {
+ "minecraft:entity.illusioner.prepare_mirror": {
"protocol_id": 655
},
- "minecraft:entity.llama.eat": {
- "protocol_id": 656
- },
- "minecraft:entity.llama.hurt": {
- "protocol_id": 657
- },
- "minecraft:entity.llama.spit": {
- "protocol_id": 658
- },
- "minecraft:entity.llama.step": {
+ "minecraft:entity.iron_golem.attack": {
"protocol_id": 659
},
- "minecraft:entity.llama.swag": {
+ "minecraft:entity.iron_golem.damage": {
"protocol_id": 660
},
- "minecraft:entity.magma_cube.death": {
- "protocol_id": 668
- },
- "minecraft:entity.magma_cube.death_small": {
+ "minecraft:entity.iron_golem.death": {
"protocol_id": 661
},
- "minecraft:entity.magma_cube.hurt": {
- "protocol_id": 669
+ "minecraft:entity.iron_golem.hurt": {
+ "protocol_id": 662
},
- "minecraft:entity.magma_cube.hurt_small": {
- "protocol_id": 670
+ "minecraft:entity.iron_golem.repair": {
+ "protocol_id": 663
},
- "minecraft:entity.magma_cube.jump": {
- "protocol_id": 671
+ "minecraft:entity.iron_golem.step": {
+ "protocol_id": 664
},
- "minecraft:entity.magma_cube.squish": {
+ "minecraft:entity.item.break": {
"protocol_id": 672
},
- "minecraft:entity.magma_cube.squish_small": {
+ "minecraft:entity.item.pickup": {
"protocol_id": 673
},
- "minecraft:entity.minecart.inside": {
+ "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.minecart.inside.underwater": {
- "protocol_id": 688
- },
- "minecraft:entity.minecart.riding": {
+ "minecraft:entity.leash_knot.place": {
"protocol_id": 690
},
- "minecraft:entity.mooshroom.convert": {
- "protocol_id": 691
- },
- "minecraft:entity.mooshroom.eat": {
+ "minecraft:entity.lightning_bolt.impact": {
"protocol_id": 692
},
- "minecraft:entity.mooshroom.milk": {
+ "minecraft:entity.lightning_bolt.thunder": {
"protocol_id": 693
},
- "minecraft:entity.mooshroom.shear": {
- "protocol_id": 695
- },
- "minecraft:entity.mooshroom.suspicious_milk": {
+ "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": 721
+ "protocol_id": 769
},
"minecraft:entity.mule.angry": {
- "protocol_id": 722
+ "protocol_id": 770
},
"minecraft:entity.mule.chest": {
- "protocol_id": 723
+ "protocol_id": 771
},
"minecraft:entity.mule.death": {
- "protocol_id": 724
+ "protocol_id": 772
},
"minecraft:entity.mule.eat": {
- "protocol_id": 725
+ "protocol_id": 773
},
"minecraft:entity.mule.hurt": {
- "protocol_id": 726
+ "protocol_id": 774
},
"minecraft:entity.ocelot.ambient": {
- "protocol_id": 856
- },
- "minecraft:entity.ocelot.death": {
- "protocol_id": 857
- },
- "minecraft:entity.ocelot.hurt": {
- "protocol_id": 855
- },
- "minecraft:entity.painting.break": {
- "protocol_id": 858
- },
- "minecraft:entity.painting.place": {
- "protocol_id": 859
- },
- "minecraft:entity.panda.aggressive_ambient": {
- "protocol_id": 867
- },
- "minecraft:entity.panda.ambient": {
- "protocol_id": 862
- },
- "minecraft:entity.panda.bite": {
- "protocol_id": 870
- },
- "minecraft:entity.panda.cant_breed": {
- "protocol_id": 866
- },
- "minecraft:entity.panda.death": {
- "protocol_id": 863
- },
- "minecraft:entity.panda.eat": {
- "protocol_id": 864
- },
- "minecraft:entity.panda.hurt": {
- "protocol_id": 869
- },
- "minecraft:entity.panda.pre_sneeze": {
- "protocol_id": 860
- },
- "minecraft:entity.panda.sneeze": {
- "protocol_id": 861
- },
- "minecraft:entity.panda.step": {
- "protocol_id": 865
- },
- "minecraft:entity.panda.worried_ambient": {
- "protocol_id": 868
- },
- "minecraft:entity.parrot.ambient": {
- "protocol_id": 871
- },
- "minecraft:entity.parrot.death": {
- "protocol_id": 872
- },
- "minecraft:entity.parrot.eat": {
- "protocol_id": 873
- },
- "minecraft:entity.parrot.fly": {
- "protocol_id": 874
- },
- "minecraft:entity.parrot.hurt": {
- "protocol_id": 875
- },
- "minecraft:entity.parrot.imitate.blaze": {
- "protocol_id": 876
- },
- "minecraft:entity.parrot.imitate.creeper": {
- "protocol_id": 877
- },
- "minecraft:entity.parrot.imitate.drowned": {
- "protocol_id": 878
- },
- "minecraft:entity.parrot.imitate.elder_guardian": {
- "protocol_id": 879
- },
- "minecraft:entity.parrot.imitate.ender_dragon": {
- "protocol_id": 880
- },
- "minecraft:entity.parrot.imitate.endermite": {
- "protocol_id": 881
- },
- "minecraft:entity.parrot.imitate.evoker": {
- "protocol_id": 882
- },
- "minecraft:entity.parrot.imitate.ghast": {
- "protocol_id": 883
- },
- "minecraft:entity.parrot.imitate.guardian": {
- "protocol_id": 884
- },
- "minecraft:entity.parrot.imitate.hoglin": {
- "protocol_id": 885
- },
- "minecraft:entity.parrot.imitate.husk": {
- "protocol_id": 886
- },
- "minecraft:entity.parrot.imitate.illusioner": {
- "protocol_id": 887
- },
- "minecraft:entity.parrot.imitate.magma_cube": {
- "protocol_id": 888
- },
- "minecraft:entity.parrot.imitate.phantom": {
- "protocol_id": 889
- },
- "minecraft:entity.parrot.imitate.piglin": {
- "protocol_id": 890
- },
- "minecraft:entity.parrot.imitate.piglin_brute": {
- "protocol_id": 891
- },
- "minecraft:entity.parrot.imitate.pillager": {
- "protocol_id": 892
- },
- "minecraft:entity.parrot.imitate.ravager": {
- "protocol_id": 893
- },
- "minecraft:entity.parrot.imitate.shulker": {
- "protocol_id": 894
- },
- "minecraft:entity.parrot.imitate.silverfish": {
- "protocol_id": 895
- },
- "minecraft:entity.parrot.imitate.skeleton": {
- "protocol_id": 896
- },
- "minecraft:entity.parrot.imitate.slime": {
- "protocol_id": 897
- },
- "minecraft:entity.parrot.imitate.spider": {
- "protocol_id": 898
- },
- "minecraft:entity.parrot.imitate.stray": {
- "protocol_id": 899
- },
- "minecraft:entity.parrot.imitate.vex": {
- "protocol_id": 900
- },
- "minecraft:entity.parrot.imitate.vindicator": {
- "protocol_id": 901
- },
- "minecraft:entity.parrot.imitate.warden": {
- "protocol_id": 902
- },
- "minecraft:entity.parrot.imitate.witch": {
- "protocol_id": 903
- },
- "minecraft:entity.parrot.imitate.wither": {
- "protocol_id": 904
- },
- "minecraft:entity.parrot.imitate.wither_skeleton": {
- "protocol_id": 905
- },
- "minecraft:entity.parrot.imitate.zoglin": {
"protocol_id": 906
},
- "minecraft:entity.parrot.imitate.zombie": {
+ "minecraft:entity.ocelot.death": {
"protocol_id": 907
},
- "minecraft:entity.parrot.imitate.zombie_villager": {
+ "minecraft:entity.ocelot.hurt": {
+ "protocol_id": 905
+ },
+ "minecraft:entity.painting.break": {
"protocol_id": 908
},
- "minecraft:entity.parrot.step": {
+ "minecraft:entity.painting.place": {
"protocol_id": 909
},
- "minecraft:entity.phantom.ambient": {
- "protocol_id": 910
- },
- "minecraft:entity.phantom.bite": {
- "protocol_id": 911
- },
- "minecraft:entity.phantom.death": {
- "protocol_id": 912
- },
- "minecraft:entity.phantom.flap": {
- "protocol_id": 913
- },
- "minecraft:entity.phantom.hurt": {
- "protocol_id": 914
- },
- "minecraft:entity.phantom.swoop": {
- "protocol_id": 915
- },
- "minecraft:entity.pig.ambient": {
- "protocol_id": 916
- },
- "minecraft:entity.pig.death": {
+ "minecraft:entity.panda.aggressive_ambient": {
"protocol_id": 917
},
- "minecraft:entity.pig.hurt": {
- "protocol_id": 918
+ "minecraft:entity.panda.ambient": {
+ "protocol_id": 912
},
- "minecraft:entity.pig.saddle": {
- "protocol_id": 919
- },
- "minecraft:entity.pig.step": {
+ "minecraft:entity.panda.bite": {
"protocol_id": 920
},
- "minecraft:entity.piglin.admiring_item": {
+ "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.piglin.ambient": {
+ "minecraft:entity.parrot.death": {
"protocol_id": 922
},
- "minecraft:entity.piglin.angry": {
+ "minecraft:entity.parrot.eat": {
"protocol_id": 923
},
- "minecraft:entity.piglin.celebrate": {
+ "minecraft:entity.parrot.fly": {
"protocol_id": 924
},
- "minecraft:entity.piglin.converted_to_zombified": {
- "protocol_id": 930
- },
- "minecraft:entity.piglin.death": {
+ "minecraft:entity.parrot.hurt": {
"protocol_id": 925
},
- "minecraft:entity.piglin.hurt": {
- "protocol_id": 927
- },
- "minecraft:entity.piglin.jealous": {
+ "minecraft:entity.parrot.imitate.blaze": {
"protocol_id": 926
},
- "minecraft:entity.piglin.retreat": {
+ "minecraft:entity.parrot.imitate.creeper": {
+ "protocol_id": 927
+ },
+ "minecraft:entity.parrot.imitate.drowned": {
"protocol_id": 928
},
- "minecraft:entity.piglin.step": {
+ "minecraft:entity.parrot.imitate.elder_guardian": {
"protocol_id": 929
},
- "minecraft:entity.piglin_brute.ambient": {
+ "minecraft:entity.parrot.imitate.ender_dragon": {
+ "protocol_id": 930
+ },
+ "minecraft:entity.parrot.imitate.endermite": {
"protocol_id": 931
},
- "minecraft:entity.piglin_brute.angry": {
+ "minecraft:entity.parrot.imitate.evoker": {
"protocol_id": 932
},
- "minecraft:entity.piglin_brute.converted_to_zombified": {
- "protocol_id": 936
- },
- "minecraft:entity.piglin_brute.death": {
+ "minecraft:entity.parrot.imitate.ghast": {
"protocol_id": 933
},
- "minecraft:entity.piglin_brute.hurt": {
+ "minecraft:entity.parrot.imitate.guardian": {
"protocol_id": 934
},
- "minecraft:entity.piglin_brute.step": {
+ "minecraft:entity.parrot.imitate.hoglin": {
"protocol_id": 935
},
- "minecraft:entity.pillager.ambient": {
+ "minecraft:entity.parrot.imitate.husk": {
+ "protocol_id": 936
+ },
+ "minecraft:entity.parrot.imitate.illusioner": {
"protocol_id": 937
},
- "minecraft:entity.pillager.celebrate": {
+ "minecraft:entity.parrot.imitate.magma_cube": {
"protocol_id": 938
},
- "minecraft:entity.pillager.death": {
+ "minecraft:entity.parrot.imitate.phantom": {
"protocol_id": 939
},
- "minecraft:entity.pillager.hurt": {
+ "minecraft:entity.parrot.imitate.piglin": {
"protocol_id": 940
},
- "minecraft:entity.player.attack.crit": {
+ "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.player.attack.knockback": {
+ "minecraft:entity.parrot.imitate.shulker": {
"protocol_id": 944
},
- "minecraft:entity.player.attack.nodamage": {
+ "minecraft:entity.parrot.imitate.silverfish": {
"protocol_id": 945
},
- "minecraft:entity.player.attack.strong": {
+ "minecraft:entity.parrot.imitate.skeleton": {
"protocol_id": 946
},
- "minecraft:entity.player.attack.sweep": {
+ "minecraft:entity.parrot.imitate.slime": {
"protocol_id": 947
},
- "minecraft:entity.player.attack.weak": {
+ "minecraft:entity.parrot.imitate.spider": {
"protocol_id": 948
},
- "minecraft:entity.player.big_fall": {
+ "minecraft:entity.parrot.imitate.stray": {
"protocol_id": 949
},
- "minecraft:entity.player.breath": {
+ "minecraft:entity.parrot.imitate.vex": {
"protocol_id": 950
},
- "minecraft:entity.player.burp": {
+ "minecraft:entity.parrot.imitate.vindicator": {
"protocol_id": 951
},
- "minecraft:entity.player.death": {
+ "minecraft:entity.parrot.imitate.warden": {
"protocol_id": 952
},
- "minecraft:entity.player.hurt": {
+ "minecraft:entity.parrot.imitate.witch": {
"protocol_id": 953
},
- "minecraft:entity.player.hurt_drown": {
+ "minecraft:entity.parrot.imitate.wither": {
"protocol_id": 954
},
- "minecraft:entity.player.hurt_freeze": {
+ "minecraft:entity.parrot.imitate.wither_skeleton": {
"protocol_id": 955
},
- "minecraft:entity.player.hurt_on_fire": {
+ "minecraft:entity.parrot.imitate.zoglin": {
"protocol_id": 956
},
- "minecraft:entity.player.hurt_sweet_berry_bush": {
+ "minecraft:entity.parrot.imitate.zombie": {
"protocol_id": 957
},
- "minecraft:entity.player.levelup": {
+ "minecraft:entity.parrot.imitate.zombie_villager": {
"protocol_id": 958
},
- "minecraft:entity.player.small_fall": {
+ "minecraft:entity.parrot.step": {
"protocol_id": 959
},
- "minecraft:entity.player.splash": {
+ "minecraft:entity.phantom.ambient": {
"protocol_id": 960
},
- "minecraft:entity.player.splash.high_speed": {
+ "minecraft:entity.phantom.bite": {
"protocol_id": 961
},
- "minecraft:entity.player.swim": {
+ "minecraft:entity.phantom.death": {
"protocol_id": 962
},
- "minecraft:entity.polar_bear.ambient": {
+ "minecraft:entity.phantom.flap": {
"protocol_id": 963
},
- "minecraft:entity.polar_bear.ambient_baby": {
+ "minecraft:entity.phantom.hurt": {
"protocol_id": 964
},
- "minecraft:entity.polar_bear.death": {
+ "minecraft:entity.phantom.swoop": {
"protocol_id": 965
},
- "minecraft:entity.polar_bear.hurt": {
+ "minecraft:entity.pig.ambient": {
"protocol_id": 966
},
- "minecraft:entity.polar_bear.step": {
+ "minecraft:entity.pig.death": {
"protocol_id": 967
},
- "minecraft:entity.polar_bear.warning": {
+ "minecraft:entity.pig.hurt": {
"protocol_id": 968
},
- "minecraft:entity.puffer_fish.ambient": {
+ "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.puffer_fish.blow_out": {
- "protocol_id": 983
- },
- "minecraft:entity.puffer_fish.blow_up": {
- "protocol_id": 984
- },
- "minecraft:entity.puffer_fish.death": {
- "protocol_id": 985
- },
- "minecraft:entity.puffer_fish.flop": {
+ "minecraft:entity.piglin_brute.converted_to_zombified": {
"protocol_id": 986
},
- "minecraft:entity.puffer_fish.hurt": {
+ "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.puffer_fish.sting": {
+ "minecraft:entity.pillager.celebrate": {
"protocol_id": 988
},
- "minecraft:entity.rabbit.ambient": {
+ "minecraft:entity.pillager.death": {
+ "protocol_id": 989
+ },
+ "minecraft:entity.pillager.hurt": {
"protocol_id": 990
},
- "minecraft:entity.rabbit.attack": {
- "protocol_id": 991
- },
- "minecraft:entity.rabbit.death": {
- "protocol_id": 992
- },
- "minecraft:entity.rabbit.hurt": {
+ "minecraft:entity.player.attack.crit": {
"protocol_id": 993
},
- "minecraft:entity.rabbit.jump": {
+ "minecraft:entity.player.attack.knockback": {
"protocol_id": 994
},
- "minecraft:entity.ravager.ambient": {
+ "minecraft:entity.player.attack.nodamage": {
+ "protocol_id": 995
+ },
+ "minecraft:entity.player.attack.strong": {
"protocol_id": 996
},
- "minecraft:entity.ravager.attack": {
+ "minecraft:entity.player.attack.sweep": {
"protocol_id": 997
},
- "minecraft:entity.ravager.celebrate": {
+ "minecraft:entity.player.attack.weak": {
"protocol_id": 998
},
- "minecraft:entity.ravager.death": {
+ "minecraft:entity.player.big_fall": {
"protocol_id": 999
},
- "minecraft:entity.ravager.hurt": {
+ "minecraft:entity.player.breath": {
"protocol_id": 1000
},
- "minecraft:entity.ravager.roar": {
- "protocol_id": 1003
- },
- "minecraft:entity.ravager.step": {
+ "minecraft:entity.player.burp": {
"protocol_id": 1001
},
- "minecraft:entity.ravager.stunned": {
+ "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": 1024
+ "protocol_id": 1074
},
"minecraft:entity.salmon.death": {
- "protocol_id": 1025
+ "protocol_id": 1075
},
"minecraft:entity.salmon.flop": {
- "protocol_id": 1026
+ "protocol_id": 1076
},
"minecraft:entity.salmon.hurt": {
- "protocol_id": 1027
+ "protocol_id": 1077
},
"minecraft:entity.sheep.ambient": {
- "protocol_id": 1069
+ "protocol_id": 1119
},
"minecraft:entity.sheep.death": {
- "protocol_id": 1070
+ "protocol_id": 1120
},
"minecraft:entity.sheep.hurt": {
- "protocol_id": 1071
+ "protocol_id": 1121
},
"minecraft:entity.sheep.shear": {
- "protocol_id": 1072
+ "protocol_id": 1122
},
"minecraft:entity.sheep.step": {
- "protocol_id": 1073
+ "protocol_id": 1123
},
"minecraft:entity.shulker.ambient": {
- "protocol_id": 1082
+ "protocol_id": 1132
},
"minecraft:entity.shulker.close": {
- "protocol_id": 1087
+ "protocol_id": 1137
},
"minecraft:entity.shulker.death": {
- "protocol_id": 1088
+ "protocol_id": 1138
},
"minecraft:entity.shulker.hurt": {
- "protocol_id": 1089
+ "protocol_id": 1139
},
"minecraft:entity.shulker.hurt_closed": {
- "protocol_id": 1090
+ "protocol_id": 1140
},
"minecraft:entity.shulker.open": {
- "protocol_id": 1091
+ "protocol_id": 1141
},
"minecraft:entity.shulker.shoot": {
- "protocol_id": 1092
+ "protocol_id": 1142
},
"minecraft:entity.shulker.teleport": {
- "protocol_id": 1093
+ "protocol_id": 1143
},
"minecraft:entity.shulker_bullet.hit": {
- "protocol_id": 1085
+ "protocol_id": 1135
},
"minecraft:entity.shulker_bullet.hurt": {
- "protocol_id": 1086
+ "protocol_id": 1136
},
"minecraft:entity.silverfish.ambient": {
- "protocol_id": 1094
+ "protocol_id": 1144
},
"minecraft:entity.silverfish.death": {
- "protocol_id": 1095
- },
- "minecraft:entity.silverfish.hurt": {
- "protocol_id": 1096
- },
- "minecraft:entity.silverfish.step": {
- "protocol_id": 1097
- },
- "minecraft:entity.skeleton.ambient": {
- "protocol_id": 1098
- },
- "minecraft:entity.skeleton.converted_to_stray": {
- "protocol_id": 1099
- },
- "minecraft:entity.skeleton.death": {
- "protocol_id": 1100
- },
- "minecraft:entity.skeleton.hurt": {
- "protocol_id": 1109
- },
- "minecraft:entity.skeleton.shoot": {
- "protocol_id": 1110
- },
- "minecraft:entity.skeleton.step": {
- "protocol_id": 1111
- },
- "minecraft:entity.skeleton_horse.ambient": {
- "protocol_id": 1101
- },
- "minecraft:entity.skeleton_horse.ambient_water": {
- "protocol_id": 1105
- },
- "minecraft:entity.skeleton_horse.death": {
- "protocol_id": 1102
- },
- "minecraft:entity.skeleton_horse.gallop_water": {
- "protocol_id": 1106
- },
- "minecraft:entity.skeleton_horse.hurt": {
- "protocol_id": 1103
- },
- "minecraft:entity.skeleton_horse.jump_water": {
- "protocol_id": 1107
- },
- "minecraft:entity.skeleton_horse.step_water": {
- "protocol_id": 1108
- },
- "minecraft:entity.skeleton_horse.swim": {
- "protocol_id": 1104
- },
- "minecraft:entity.slime.attack": {
- "protocol_id": 1112
- },
- "minecraft:entity.slime.death": {
- "protocol_id": 1113
- },
- "minecraft:entity.slime.death_small": {
- "protocol_id": 1154
- },
- "minecraft:entity.slime.hurt": {
- "protocol_id": 1114
- },
- "minecraft:entity.slime.hurt_small": {
- "protocol_id": 1155
- },
- "minecraft:entity.slime.jump": {
- "protocol_id": 1115
- },
- "minecraft:entity.slime.jump_small": {
- "protocol_id": 1156
- },
- "minecraft:entity.slime.squish": {
- "protocol_id": 1116
- },
- "minecraft:entity.slime.squish_small": {
- "protocol_id": 1157
- },
- "minecraft:entity.snow_golem.ambient": {
- "protocol_id": 1163
- },
- "minecraft:entity.snow_golem.death": {
- "protocol_id": 1164
- },
- "minecraft:entity.snow_golem.hurt": {
- "protocol_id": 1165
- },
- "minecraft:entity.snow_golem.shear": {
- "protocol_id": 1167
- },
- "minecraft:entity.snow_golem.shoot": {
- "protocol_id": 1166
- },
- "minecraft:entity.snowball.throw": {
- "protocol_id": 1160
- },
- "minecraft:entity.spider.ambient": {
- "protocol_id": 1171
- },
- "minecraft:entity.spider.death": {
- "protocol_id": 1172
- },
- "minecraft:entity.spider.hurt": {
- "protocol_id": 1173
- },
- "minecraft:entity.spider.step": {
- "protocol_id": 1174
- },
- "minecraft:entity.splash_potion.break": {
- "protocol_id": 1175
- },
- "minecraft:entity.splash_potion.throw": {
- "protocol_id": 1176
- },
- "minecraft:entity.squid.ambient": {
- "protocol_id": 1179
- },
- "minecraft:entity.squid.death": {
- "protocol_id": 1180
- },
- "minecraft:entity.squid.hurt": {
- "protocol_id": 1181
- },
- "minecraft:entity.squid.squirt": {
- "protocol_id": 1182
- },
- "minecraft:entity.stray.ambient": {
- "protocol_id": 1192
- },
- "minecraft:entity.stray.death": {
- "protocol_id": 1193
- },
- "minecraft:entity.stray.hurt": {
- "protocol_id": 1194
- },
- "minecraft:entity.stray.step": {
- "protocol_id": 1195
- },
- "minecraft:entity.strider.ambient": {
"protocol_id": 1145
},
- "minecraft:entity.strider.death": {
- "protocol_id": 1148
- },
- "minecraft:entity.strider.eat": {
- "protocol_id": 1152
- },
- "minecraft:entity.strider.happy": {
+ "minecraft:entity.silverfish.hurt": {
"protocol_id": 1146
},
- "minecraft:entity.strider.hurt": {
- "protocol_id": 1149
- },
- "minecraft:entity.strider.retreat": {
+ "minecraft:entity.silverfish.step": {
"protocol_id": 1147
},
- "minecraft:entity.strider.saddle": {
- "protocol_id": 1153
+ "minecraft:entity.skeleton.ambient": {
+ "protocol_id": 1148
},
- "minecraft:entity.strider.step": {
+ "minecraft:entity.skeleton.converted_to_stray": {
+ "protocol_id": 1149
+ },
+ "minecraft:entity.skeleton.death": {
"protocol_id": 1150
},
- "minecraft:entity.strider.step_lava": {
+ "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.tadpole.death": {
- "protocol_id": 1199
+ "minecraft:entity.skeleton_horse.ambient_water": {
+ "protocol_id": 1155
},
- "minecraft:entity.tadpole.flop": {
- "protocol_id": 1200
+ "minecraft:entity.skeleton_horse.death": {
+ "protocol_id": 1152
},
- "minecraft:entity.tadpole.grow_up": {
- "protocol_id": 1201
+ "minecraft:entity.skeleton_horse.gallop_water": {
+ "protocol_id": 1156
},
- "minecraft:entity.tadpole.hurt": {
- "protocol_id": 1202
+ "minecraft:entity.skeleton_horse.hurt": {
+ "protocol_id": 1153
},
- "minecraft:entity.tnt.primed": {
+ "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.tropical_fish.ambient": {
- "protocol_id": 1218
+ "minecraft:entity.slime.hurt": {
+ "protocol_id": 1164
},
- "minecraft:entity.tropical_fish.death": {
+ "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.tropical_fish.flop": {
+ "minecraft:entity.sniffer.digging_stop": {
"protocol_id": 1220
},
- "minecraft:entity.tropical_fish.hurt": {
+ "minecraft:entity.sniffer.drop_seed": {
+ "protocol_id": 1215
+ },
+ "minecraft:entity.sniffer.eat": {
+ "protocol_id": 1211
+ },
+ "minecraft:entity.sniffer.happy": {
"protocol_id": 1221
},
- "minecraft:entity.turtle.ambient_land": {
+ "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.turtle.death": {
- "protocol_id": 1228
- },
- "minecraft:entity.turtle.death_baby": {
+ "minecraft:entity.snow_golem.shear": {
"protocol_id": 1229
},
- "minecraft:entity.turtle.egg_break": {
- "protocol_id": 1230
+ "minecraft:entity.snow_golem.shoot": {
+ "protocol_id": 1228
},
- "minecraft:entity.turtle.egg_crack": {
- "protocol_id": 1231
+ "minecraft:entity.snowball.throw": {
+ "protocol_id": 1222
},
- "minecraft:entity.turtle.egg_hatch": {
- "protocol_id": 1232
- },
- "minecraft:entity.turtle.hurt": {
+ "minecraft:entity.spider.ambient": {
"protocol_id": 1233
},
- "minecraft:entity.turtle.hurt_baby": {
+ "minecraft:entity.spider.death": {
"protocol_id": 1234
},
- "minecraft:entity.turtle.lay_egg": {
+ "minecraft:entity.spider.hurt": {
"protocol_id": 1235
},
- "minecraft:entity.turtle.shamble": {
+ "minecraft:entity.spider.step": {
"protocol_id": 1236
},
- "minecraft:entity.turtle.shamble_baby": {
+ "minecraft:entity.splash_potion.break": {
"protocol_id": 1237
},
- "minecraft:entity.turtle.swim": {
+ "minecraft:entity.splash_potion.throw": {
"protocol_id": 1238
},
- "minecraft:entity.vex.ambient": {
- "protocol_id": 1248
+ "minecraft:entity.squid.ambient": {
+ "protocol_id": 1241
},
- "minecraft:entity.vex.charge": {
- "protocol_id": 1249
+ "minecraft:entity.squid.death": {
+ "protocol_id": 1242
},
- "minecraft:entity.vex.death": {
- "protocol_id": 1250
+ "minecraft:entity.squid.hurt": {
+ "protocol_id": 1243
},
- "minecraft:entity.vex.hurt": {
- "protocol_id": 1251
+ "minecraft:entity.squid.squirt": {
+ "protocol_id": 1244
},
- "minecraft:entity.villager.ambient": {
- "protocol_id": 1252
- },
- "minecraft:entity.villager.celebrate": {
- "protocol_id": 1253
- },
- "minecraft:entity.villager.death": {
+ "minecraft:entity.stray.ambient": {
"protocol_id": 1254
},
- "minecraft:entity.villager.hurt": {
+ "minecraft:entity.stray.death": {
"protocol_id": 1255
},
- "minecraft:entity.villager.no": {
+ "minecraft:entity.stray.hurt": {
"protocol_id": 1256
},
- "minecraft:entity.villager.trade": {
+ "minecraft:entity.stray.step": {
"protocol_id": 1257
},
- "minecraft:entity.villager.work_armorer": {
- "protocol_id": 1259
+ "minecraft:entity.strider.ambient": {
+ "protocol_id": 1195
},
- "minecraft:entity.villager.work_butcher": {
- "protocol_id": 1260
+ "minecraft:entity.strider.death": {
+ "protocol_id": 1198
},
- "minecraft:entity.villager.work_cartographer": {
+ "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.villager.work_cleric": {
+ "minecraft:entity.tadpole.flop": {
"protocol_id": 1262
},
- "minecraft:entity.villager.work_farmer": {
+ "minecraft:entity.tadpole.grow_up": {
"protocol_id": 1263
},
- "minecraft:entity.villager.work_fisherman": {
+ "minecraft:entity.tadpole.hurt": {
"protocol_id": 1264
},
- "minecraft:entity.villager.work_fletcher": {
- "protocol_id": 1265
- },
- "minecraft:entity.villager.work_leatherworker": {
+ "minecraft:entity.tnt.primed": {
"protocol_id": 1266
},
- "minecraft:entity.villager.work_librarian": {
- "protocol_id": 1267
+ "minecraft:entity.tropical_fish.ambient": {
+ "protocol_id": 1280
},
- "minecraft:entity.villager.work_mason": {
- "protocol_id": 1268
+ "minecraft:entity.tropical_fish.death": {
+ "protocol_id": 1281
},
- "minecraft:entity.villager.work_shepherd": {
- "protocol_id": 1269
- },
- "minecraft:entity.villager.work_toolsmith": {
- "protocol_id": 1270
- },
- "minecraft:entity.villager.work_weaponsmith": {
- "protocol_id": 1271
- },
- "minecraft:entity.villager.yes": {
- "protocol_id": 1258
- },
- "minecraft:entity.vindicator.ambient": {
- "protocol_id": 1272
- },
- "minecraft:entity.vindicator.celebrate": {
- "protocol_id": 1273
- },
- "minecraft:entity.vindicator.death": {
- "protocol_id": 1274
- },
- "minecraft:entity.vindicator.hurt": {
- "protocol_id": 1275
- },
- "minecraft:entity.wandering_trader.ambient": {
+ "minecraft:entity.tropical_fish.flop": {
"protocol_id": 1282
},
- "minecraft:entity.wandering_trader.death": {
+ "minecraft:entity.tropical_fish.hurt": {
"protocol_id": 1283
},
- "minecraft:entity.wandering_trader.disappeared": {
- "protocol_id": 1284
- },
- "minecraft:entity.wandering_trader.drink_milk": {
- "protocol_id": 1285
- },
- "minecraft:entity.wandering_trader.drink_potion": {
- "protocol_id": 1286
- },
- "minecraft:entity.wandering_trader.hurt": {
- "protocol_id": 1287
- },
- "minecraft:entity.wandering_trader.no": {
- "protocol_id": 1288
- },
- "minecraft:entity.wandering_trader.reappeared": {
+ "minecraft:entity.turtle.ambient_land": {
"protocol_id": 1289
},
- "minecraft:entity.wandering_trader.trade": {
+ "minecraft:entity.turtle.death": {
"protocol_id": 1290
},
- "minecraft:entity.wandering_trader.yes": {
+ "minecraft:entity.turtle.death_baby": {
"protocol_id": 1291
},
- "minecraft:entity.warden.agitated": {
+ "minecraft:entity.turtle.egg_break": {
"protocol_id": 1292
},
- "minecraft:entity.warden.ambient": {
+ "minecraft:entity.turtle.egg_crack": {
"protocol_id": 1293
},
- "minecraft:entity.warden.angry": {
+ "minecraft:entity.turtle.egg_hatch": {
"protocol_id": 1294
},
- "minecraft:entity.warden.attack_impact": {
+ "minecraft:entity.turtle.hurt": {
"protocol_id": 1295
},
- "minecraft:entity.warden.death": {
+ "minecraft:entity.turtle.hurt_baby": {
"protocol_id": 1296
},
- "minecraft:entity.warden.dig": {
+ "minecraft:entity.turtle.lay_egg": {
"protocol_id": 1297
},
- "minecraft:entity.warden.emerge": {
+ "minecraft:entity.turtle.shamble": {
"protocol_id": 1298
},
- "minecraft:entity.warden.heartbeat": {
+ "minecraft:entity.turtle.shamble_baby": {
"protocol_id": 1299
},
- "minecraft:entity.warden.hurt": {
+ "minecraft:entity.turtle.swim": {
"protocol_id": 1300
},
- "minecraft:entity.warden.listening": {
- "protocol_id": 1301
- },
- "minecraft:entity.warden.listening_angry": {
- "protocol_id": 1302
- },
- "minecraft:entity.warden.nearby_close": {
- "protocol_id": 1303
- },
- "minecraft:entity.warden.nearby_closer": {
- "protocol_id": 1304
- },
- "minecraft:entity.warden.nearby_closest": {
- "protocol_id": 1305
- },
- "minecraft:entity.warden.roar": {
- "protocol_id": 1306
- },
- "minecraft:entity.warden.sniff": {
- "protocol_id": 1307
- },
- "minecraft:entity.warden.sonic_boom": {
- "protocol_id": 1308
- },
- "minecraft:entity.warden.sonic_charge": {
- "protocol_id": 1309
- },
- "minecraft:entity.warden.step": {
+ "minecraft:entity.vex.ambient": {
"protocol_id": 1310
},
- "minecraft:entity.warden.tendril_clicks": {
+ "minecraft:entity.vex.charge": {
"protocol_id": 1311
},
- "minecraft:entity.witch.ambient": {
- "protocol_id": 1320
+ "minecraft:entity.vex.death": {
+ "protocol_id": 1312
},
- "minecraft:entity.witch.celebrate": {
+ "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.witch.death": {
+ "minecraft:entity.villager.work_butcher": {
"protocol_id": 1322
},
- "minecraft:entity.witch.drink": {
+ "minecraft:entity.villager.work_cartographer": {
"protocol_id": 1323
},
- "minecraft:entity.witch.hurt": {
+ "minecraft:entity.villager.work_cleric": {
"protocol_id": 1324
},
- "minecraft:entity.witch.throw": {
+ "minecraft:entity.villager.work_farmer": {
"protocol_id": 1325
},
- "minecraft:entity.wither.ambient": {
+ "minecraft:entity.villager.work_fisherman": {
"protocol_id": 1326
},
- "minecraft:entity.wither.break_block": {
+ "minecraft:entity.villager.work_fletcher": {
"protocol_id": 1327
},
- "minecraft:entity.wither.death": {
+ "minecraft:entity.villager.work_leatherworker": {
"protocol_id": 1328
},
- "minecraft:entity.wither.hurt": {
+ "minecraft:entity.villager.work_librarian": {
"protocol_id": 1329
},
- "minecraft:entity.wither.shoot": {
+ "minecraft:entity.villager.work_mason": {
"protocol_id": 1330
},
- "minecraft:entity.wither.spawn": {
- "protocol_id": 1335
- },
- "minecraft:entity.wither_skeleton.ambient": {
+ "minecraft:entity.villager.work_shepherd": {
"protocol_id": 1331
},
- "minecraft:entity.wither_skeleton.death": {
+ "minecraft:entity.villager.work_toolsmith": {
"protocol_id": 1332
},
- "minecraft:entity.wither_skeleton.hurt": {
+ "minecraft:entity.villager.work_weaponsmith": {
"protocol_id": 1333
},
- "minecraft:entity.wither_skeleton.step": {
+ "minecraft:entity.villager.yes": {
+ "protocol_id": 1320
+ },
+ "minecraft:entity.vindicator.ambient": {
"protocol_id": 1334
},
- "minecraft:entity.wolf.ambient": {
+ "minecraft:entity.vindicator.celebrate": {
+ "protocol_id": 1335
+ },
+ "minecraft:entity.vindicator.death": {
"protocol_id": 1336
},
- "minecraft:entity.wolf.death": {
+ "minecraft:entity.vindicator.hurt": {
"protocol_id": 1337
},
- "minecraft:entity.wolf.growl": {
- "protocol_id": 1338
- },
- "minecraft:entity.wolf.howl": {
- "protocol_id": 1339
- },
- "minecraft:entity.wolf.hurt": {
- "protocol_id": 1340
- },
- "minecraft:entity.wolf.pant": {
- "protocol_id": 1341
- },
- "minecraft:entity.wolf.shake": {
- "protocol_id": 1342
- },
- "minecraft:entity.wolf.step": {
- "protocol_id": 1343
- },
- "minecraft:entity.wolf.whine": {
+ "minecraft:entity.wandering_trader.ambient": {
"protocol_id": 1344
},
- "minecraft:entity.zoglin.ambient": {
+ "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.zoglin.angry": {
+ "minecraft:entity.warden.listening_angry": {
"protocol_id": 1364
},
- "minecraft:entity.zoglin.attack": {
+ "minecraft:entity.warden.nearby_close": {
"protocol_id": 1365
},
- "minecraft:entity.zoglin.death": {
+ "minecraft:entity.warden.nearby_closer": {
"protocol_id": 1366
},
- "minecraft:entity.zoglin.hurt": {
+ "minecraft:entity.warden.nearby_closest": {
"protocol_id": 1367
},
- "minecraft:entity.zoglin.step": {
+ "minecraft:entity.warden.roar": {
"protocol_id": 1368
},
- "minecraft:entity.zombie.ambient": {
+ "minecraft:entity.warden.sniff": {
"protocol_id": 1369
},
- "minecraft:entity.zombie.attack_iron_door": {
- "protocol_id": 1371
- },
- "minecraft:entity.zombie.attack_wooden_door": {
+ "minecraft:entity.warden.sonic_boom": {
"protocol_id": 1370
},
- "minecraft:entity.zombie.break_wooden_door": {
+ "minecraft:entity.warden.sonic_charge": {
+ "protocol_id": 1371
+ },
+ "minecraft:entity.warden.step": {
"protocol_id": 1372
},
- "minecraft:entity.zombie.converted_to_drowned": {
+ "minecraft:entity.warden.tendril_clicks": {
"protocol_id": 1373
},
- "minecraft:entity.zombie.death": {
- "protocol_id": 1374
- },
- "minecraft:entity.zombie.destroy_egg": {
- "protocol_id": 1375
- },
- "minecraft:entity.zombie.hurt": {
- "protocol_id": 1379
- },
- "minecraft:entity.zombie.infect": {
- "protocol_id": 1380
- },
- "minecraft:entity.zombie.step": {
- "protocol_id": 1385
- },
- "minecraft:entity.zombie_horse.ambient": {
- "protocol_id": 1376
- },
- "minecraft:entity.zombie_horse.death": {
- "protocol_id": 1377
- },
- "minecraft:entity.zombie_horse.hurt": {
- "protocol_id": 1378
- },
- "minecraft:entity.zombie_villager.ambient": {
- "protocol_id": 1386
- },
- "minecraft:entity.zombie_villager.converted": {
- "protocol_id": 1387
- },
- "minecraft:entity.zombie_villager.cure": {
- "protocol_id": 1388
- },
- "minecraft:entity.zombie_villager.death": {
- "protocol_id": 1389
- },
- "minecraft:entity.zombie_villager.hurt": {
- "protocol_id": 1390
- },
- "minecraft:entity.zombie_villager.step": {
- "protocol_id": 1391
- },
- "minecraft:entity.zombified_piglin.ambient": {
- "protocol_id": 1381
- },
- "minecraft:entity.zombified_piglin.angry": {
+ "minecraft:entity.witch.ambient": {
"protocol_id": 1382
},
- "minecraft:entity.zombified_piglin.death": {
+ "minecraft:entity.witch.celebrate": {
"protocol_id": 1383
},
- "minecraft:entity.zombified_piglin.hurt": {
+ "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": 995
+ "protocol_id": 1045
+ },
+ "minecraft:intentionally_empty": {
+ "protocol_id": 837
},
"minecraft:item.armor.equip_chain": {
"protocol_id": 53
@@ -13447,335 +13914,344 @@
"minecraft:item.bottle.fill_dragonbreath": {
"protocol_id": 164
},
+ "minecraft:item.brush.brush_sand_completed": {
+ "protocol_id": 167
+ },
+ "minecraft:item.brush.brushing": {
+ "protocol_id": 166
+ },
"minecraft:item.bucket.empty": {
- "protocol_id": 171
- },
- "minecraft:item.bucket.empty_axolotl": {
- "protocol_id": 172
- },
- "minecraft:item.bucket.empty_fish": {
"protocol_id": 173
},
- "minecraft:item.bucket.empty_lava": {
+ "minecraft:item.bucket.empty_axolotl": {
"protocol_id": 174
},
- "minecraft:item.bucket.empty_powder_snow": {
+ "minecraft:item.bucket.empty_fish": {
"protocol_id": 175
},
- "minecraft:item.bucket.empty_tadpole": {
+ "minecraft:item.bucket.empty_lava": {
"protocol_id": 176
},
- "minecraft:item.bucket.fill": {
+ "minecraft:item.bucket.empty_powder_snow": {
"protocol_id": 177
},
- "minecraft:item.bucket.fill_axolotl": {
+ "minecraft:item.bucket.empty_tadpole": {
"protocol_id": 178
},
- "minecraft:item.bucket.fill_fish": {
+ "minecraft:item.bucket.fill": {
"protocol_id": 179
},
- "minecraft:item.bucket.fill_lava": {
+ "minecraft:item.bucket.fill_axolotl": {
"protocol_id": 180
},
- "minecraft:item.bucket.fill_powder_snow": {
+ "minecraft:item.bucket.fill_fish": {
"protocol_id": 181
},
- "minecraft:item.bucket.fill_tadpole": {
+ "minecraft:item.bucket.fill_lava": {
"protocol_id": 182
},
- "minecraft:item.bundle.drop_contents": {
+ "minecraft:item.bucket.fill_powder_snow": {
"protocol_id": 183
},
- "minecraft:item.bundle.insert": {
+ "minecraft:item.bucket.fill_tadpole": {
"protocol_id": 184
},
- "minecraft:item.bundle.remove_one": {
+ "minecraft:item.bundle.drop_contents": {
"protocol_id": 185
},
+ "minecraft:item.bundle.insert": {
+ "protocol_id": 186
+ },
+ "minecraft:item.bundle.remove_one": {
+ "protocol_id": 187
+ },
"minecraft:item.chorus_fruit.teleport": {
- "protocol_id": 250
+ "protocol_id": 282
},
"minecraft:item.crop.plant": {
- "protocol_id": 284
+ "protocol_id": 316
},
"minecraft:item.crossbow.hit": {
- "protocol_id": 285
+ "protocol_id": 317
},
"minecraft:item.crossbow.loading_end": {
- "protocol_id": 286
+ "protocol_id": 318
},
"minecraft:item.crossbow.loading_middle": {
- "protocol_id": 287
+ "protocol_id": 319
},
"minecraft:item.crossbow.loading_start": {
- "protocol_id": 288
+ "protocol_id": 320
},
"minecraft:item.crossbow.quick_charge_1": {
- "protocol_id": 289
+ "protocol_id": 321
},
"minecraft:item.crossbow.quick_charge_2": {
- "protocol_id": 290
+ "protocol_id": 322
},
"minecraft:item.crossbow.quick_charge_3": {
- "protocol_id": 291
+ "protocol_id": 323
},
"minecraft:item.crossbow.shoot": {
- "protocol_id": 292
+ "protocol_id": 324
},
"minecraft:item.dye.use": {
- "protocol_id": 353
+ "protocol_id": 391
},
"minecraft:item.elytra.flying": {
- "protocol_id": 363
+ "protocol_id": 401
},
"minecraft:item.firecharge.use": {
- "protocol_id": 403
+ "protocol_id": 441
},
"minecraft:item.flintandsteel.use": {
- "protocol_id": 418
+ "protocol_id": 456
},
"minecraft:item.glow_ink_sac.use": {
- "protocol_id": 487
+ "protocol_id": 530
},
"minecraft:item.goat_horn.play": {
- "protocol_id": 506
+ "protocol_id": 549
},
"minecraft:item.goat_horn.sound.0": {
- "protocol_id": 574
+ "protocol_id": 617
},
"minecraft:item.goat_horn.sound.1": {
- "protocol_id": 575
+ "protocol_id": 618
},
"minecraft:item.goat_horn.sound.2": {
- "protocol_id": 576
+ "protocol_id": 619
},
"minecraft:item.goat_horn.sound.3": {
- "protocol_id": 577
+ "protocol_id": 620
},
"minecraft:item.goat_horn.sound.4": {
- "protocol_id": 578
+ "protocol_id": 621
},
"minecraft:item.goat_horn.sound.5": {
- "protocol_id": 579
+ "protocol_id": 622
},
"minecraft:item.goat_horn.sound.6": {
- "protocol_id": 580
+ "protocol_id": 623
},
"minecraft:item.goat_horn.sound.7": {
- "protocol_id": 581
+ "protocol_id": 624
},
"minecraft:item.hoe.till": {
- "protocol_id": 557
+ "protocol_id": 600
},
"minecraft:item.honey_bottle.drink": {
- "protocol_id": 573
+ "protocol_id": 616
},
"minecraft:item.honeycomb.wax_on": {
- "protocol_id": 572
+ "protocol_id": 615
},
"minecraft:item.ink_sac.use": {
- "protocol_id": 613
+ "protocol_id": 656
},
"minecraft:item.lodestone_compass.lock": {
- "protocol_id": 667
+ "protocol_id": 710
},
"minecraft:item.nether_wart.plant": {
- "protocol_id": 772
+ "protocol_id": 821
},
"minecraft:item.shield.block": {
- "protocol_id": 1074
+ "protocol_id": 1124
},
"minecraft:item.shield.break": {
- "protocol_id": 1075
+ "protocol_id": 1125
},
"minecraft:item.shovel.flatten": {
- "protocol_id": 1081
+ "protocol_id": 1131
},
"minecraft:item.spyglass.stop_using": {
- "protocol_id": 1178
- },
- "minecraft:item.spyglass.use": {
- "protocol_id": 1177
- },
- "minecraft:item.totem.use": {
- "protocol_id": 1205
- },
- "minecraft:item.trident.hit": {
- "protocol_id": 1206
- },
- "minecraft:item.trident.hit_ground": {
- "protocol_id": 1207
- },
- "minecraft:item.trident.return": {
- "protocol_id": 1208
- },
- "minecraft:item.trident.riptide_1": {
- "protocol_id": 1209
- },
- "minecraft:item.trident.riptide_2": {
- "protocol_id": 1210
- },
- "minecraft:item.trident.riptide_3": {
- "protocol_id": 1211
- },
- "minecraft:item.trident.throw": {
- "protocol_id": 1212
- },
- "minecraft:item.trident.thunder": {
- "protocol_id": 1213
- },
- "minecraft:music.creative": {
- "protocol_id": 727
- },
- "minecraft:music.credits": {
- "protocol_id": 728
- },
- "minecraft:music.dragon": {
- "protocol_id": 744
- },
- "minecraft:music.end": {
- "protocol_id": 745
- },
- "minecraft:music.game": {
- "protocol_id": 746
- },
- "minecraft:music.menu": {
- "protocol_id": 747
- },
- "minecraft:music.nether.basalt_deltas": {
- "protocol_id": 748
- },
- "minecraft:music.nether.crimson_forest": {
- "protocol_id": 749
- },
- "minecraft:music.nether.nether_wastes": {
- "protocol_id": 759
- },
- "minecraft:music.nether.soul_sand_valley": {
- "protocol_id": 762
- },
- "minecraft:music.nether.warped_forest": {
- "protocol_id": 764
- },
- "minecraft:music.overworld.deep_dark": {
- "protocol_id": 750
- },
- "minecraft:music.overworld.dripstone_caves": {
- "protocol_id": 751
- },
- "minecraft:music.overworld.frozen_peaks": {
- "protocol_id": 760
- },
- "minecraft:music.overworld.grove": {
- "protocol_id": 752
- },
- "minecraft:music.overworld.jagged_peaks": {
- "protocol_id": 753
- },
- "minecraft:music.overworld.jungle_and_forest": {
- "protocol_id": 756
- },
- "minecraft:music.overworld.lush_caves": {
- "protocol_id": 754
- },
- "minecraft:music.overworld.meadow": {
- "protocol_id": 758
- },
- "minecraft:music.overworld.old_growth_taiga": {
- "protocol_id": 757
- },
- "minecraft:music.overworld.snowy_slopes": {
- "protocol_id": 761
- },
- "minecraft:music.overworld.stony_peaks": {
- "protocol_id": 763
- },
- "minecraft:music.overworld.swamp": {
- "protocol_id": 755
- },
- "minecraft:music.under_water": {
- "protocol_id": 765
- },
- "minecraft:music_disc.11": {
- "protocol_id": 730
- },
- "minecraft:music_disc.13": {
- "protocol_id": 731
- },
- "minecraft:music_disc.5": {
- "protocol_id": 729
- },
- "minecraft:music_disc.blocks": {
- "protocol_id": 732
- },
- "minecraft:music_disc.cat": {
- "protocol_id": 733
- },
- "minecraft:music_disc.chirp": {
- "protocol_id": 734
- },
- "minecraft:music_disc.far": {
- "protocol_id": 735
- },
- "minecraft:music_disc.mall": {
- "protocol_id": 736
- },
- "minecraft:music_disc.mellohi": {
- "protocol_id": 737
- },
- "minecraft:music_disc.otherside": {
- "protocol_id": 743
- },
- "minecraft:music_disc.pigstep": {
- "protocol_id": 738
- },
- "minecraft:music_disc.stal": {
- "protocol_id": 739
- },
- "minecraft:music_disc.strad": {
- "protocol_id": 740
- },
- "minecraft:music_disc.wait": {
- "protocol_id": 741
- },
- "minecraft:music_disc.ward": {
- "protocol_id": 742
- },
- "minecraft:particle.soul_escape": {
- "protocol_id": 1139
- },
- "minecraft:ui.button.click": {
- "protocol_id": 1239
- },
- "minecraft:ui.cartography_table.take_result": {
- "protocol_id": 1242
- },
- "minecraft:ui.loom.select_pattern": {
"protocol_id": 1240
},
+ "minecraft:item.spyglass.use": {
+ "protocol_id": 1239
+ },
+ "minecraft:item.totem.use": {
+ "protocol_id": 1267
+ },
+ "minecraft:item.trident.hit": {
+ "protocol_id": 1268
+ },
+ "minecraft:item.trident.hit_ground": {
+ "protocol_id": 1269
+ },
+ "minecraft:item.trident.return": {
+ "protocol_id": 1270
+ },
+ "minecraft:item.trident.riptide_1": {
+ "protocol_id": 1271
+ },
+ "minecraft:item.trident.riptide_2": {
+ "protocol_id": 1272
+ },
+ "minecraft:item.trident.riptide_3": {
+ "protocol_id": 1273
+ },
+ "minecraft:item.trident.throw": {
+ "protocol_id": 1274
+ },
+ "minecraft:item.trident.thunder": {
+ "protocol_id": 1275
+ },
+ "minecraft:music.creative": {
+ "protocol_id": 775
+ },
+ "minecraft:music.credits": {
+ "protocol_id": 776
+ },
+ "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": {
+ "protocol_id": 778
+ },
+ "minecraft:music_disc.13": {
+ "protocol_id": 779
+ },
+ "minecraft:music_disc.5": {
+ "protocol_id": 777
+ },
+ "minecraft:music_disc.blocks": {
+ "protocol_id": 780
+ },
+ "minecraft:music_disc.cat": {
+ "protocol_id": 781
+ },
+ "minecraft:music_disc.chirp": {
+ "protocol_id": 782
+ },
+ "minecraft:music_disc.far": {
+ "protocol_id": 783
+ },
+ "minecraft:music_disc.mall": {
+ "protocol_id": 784
+ },
+ "minecraft:music_disc.mellohi": {
+ "protocol_id": 785
+ },
+ "minecraft:music_disc.otherside": {
+ "protocol_id": 791
+ },
+ "minecraft:music_disc.pigstep": {
+ "protocol_id": 786
+ },
+ "minecraft:music_disc.stal": {
+ "protocol_id": 787
+ },
+ "minecraft:music_disc.strad": {
+ "protocol_id": 788
+ },
+ "minecraft:music_disc.wait": {
+ "protocol_id": 789
+ },
+ "minecraft:music_disc.ward": {
+ "protocol_id": 790
+ },
+ "minecraft:particle.soul_escape": {
+ "protocol_id": 1189
+ },
+ "minecraft:ui.button.click": {
+ "protocol_id": 1301
+ },
+ "minecraft:ui.cartography_table.take_result": {
+ "protocol_id": 1304
+ },
+ "minecraft:ui.loom.select_pattern": {
+ "protocol_id": 1302
+ },
"minecraft:ui.loom.take_result": {
- "protocol_id": 1241
+ "protocol_id": 1303
},
"minecraft:ui.stonecutter.select_recipe": {
- "protocol_id": 1244
+ "protocol_id": 1306
},
"minecraft:ui.stonecutter.take_result": {
- "protocol_id": 1243
+ "protocol_id": 1305
},
"minecraft:ui.toast.challenge_complete": {
- "protocol_id": 1245
+ "protocol_id": 1307
},
"minecraft:ui.toast.in": {
- "protocol_id": 1246
+ "protocol_id": 1308
},
"minecraft:ui.toast.out": {
- "protocol_id": 1247
+ "protocol_id": 1309
},
"minecraft:weather.rain": {
- "protocol_id": 1313
+ "protocol_id": 1375
},
"minecraft:weather.rain.above": {
- "protocol_id": 1314
+ "protocol_id": 1376
}
},
"protocol_id": 1
@@ -14272,6 +14748,9 @@
"minecraft:bush_foliage_placer": {
"protocol_id": 4
},
+ "minecraft:cherry_foliage_placer": {
+ "protocol_id": 10
+ },
"minecraft:dark_oak_foliage_placer": {
"protocol_id": 8
},
@@ -14729,6 +15208,9 @@
"minecraft:bending_trunk_placer": {
"protocol_id": 6
},
+ "minecraft:cherry_trunk_placer": {
+ "protocol_id": 8
+ },
"minecraft:dark_oak_trunk_placer": {
"protocol_id": 4
},