From 758491202f7b42156c41775362d4129667c4fc8d Mon Sep 17 00:00:00 2001 From: Christian Bergschneider Date: Fri, 13 Jun 2025 14:53:57 +0200 Subject: [PATCH 01/11] feat: project status bar widget and YAML indexing support Introduced a status bar widget to display project-related information and implemented YAML-based indexing extensions for enhanced project root and name identification. This improves file tracking and dynamic project context handling within the IntelliJ platform. --- .../project/ProjectRootIndexExtension.kt | 43 +++++++++ .../codetool/project/ProjectRootUtility.kt | 22 +++++ .../project/ProjectStatusBarWidget.kt | 85 ++++++++++++++++++ .../project/ProjectStatusBarWidgetFactory.kt | 18 ++++ .../project/YamlNameIndexExtension.kt | 36 ++++++++ src/main/resources/META-INF/plugin.xml | 90 +++++-------------- 6 files changed, 225 insertions(+), 69 deletions(-) create mode 100644 src/main/kotlin/com/dfsek/terra/codetool/project/ProjectRootIndexExtension.kt create mode 100644 src/main/kotlin/com/dfsek/terra/codetool/project/ProjectRootUtility.kt create mode 100644 src/main/kotlin/com/dfsek/terra/codetool/project/ProjectStatusBarWidget.kt create mode 100644 src/main/kotlin/com/dfsek/terra/codetool/project/ProjectStatusBarWidgetFactory.kt create mode 100644 src/main/kotlin/com/dfsek/terra/codetool/project/YamlNameIndexExtension.kt diff --git a/src/main/kotlin/com/dfsek/terra/codetool/project/ProjectRootIndexExtension.kt b/src/main/kotlin/com/dfsek/terra/codetool/project/ProjectRootIndexExtension.kt new file mode 100644 index 0000000..2cadf8e --- /dev/null +++ b/src/main/kotlin/com/dfsek/terra/codetool/project/ProjectRootIndexExtension.kt @@ -0,0 +1,43 @@ +package com.dfsek.terra.codetool.project + +import com.intellij.util.indexing.DataIndexer +import com.intellij.util.indexing.DefaultFileTypeSpecificInputFilter +import com.intellij.util.indexing.FileBasedIndex +import com.intellij.util.indexing.FileContent +import com.intellij.util.indexing.ID +import com.intellij.util.indexing.ScalarIndexExtension +import com.intellij.util.io.EnumeratorStringDescriptor +import com.intellij.util.io.KeyDescriptor +import org.jetbrains.yaml.YAMLFileType +import org.jetbrains.yaml.psi.YAMLFile +import org.jetbrains.yaml.psi.YAMLMapping + +val ROOT_INDEX_NAME = ID.create("com.dfsek.terra.codetool.project.root") + +class ProjectRootIndexExtension : ScalarIndexExtension() { + override fun getName(): ID = ROOT_INDEX_NAME + override fun getInputFilter(): FileBasedIndex.InputFilter = DefaultFileTypeSpecificInputFilter(YAMLFileType.YML) + override fun dependsOnFileContent(): Boolean = true + + override fun getIndexer(): DataIndexer = RootIndexer + + override fun getKeyDescriptor(): KeyDescriptor = EnumeratorStringDescriptor.INSTANCE + override fun getVersion(): Int = 0 +} + +private object RootIndexer : DataIndexer { + override fun map(content: FileContent): Map { + if (!content.fileName.endsWith("pack.yml") && !content.fileName.endsWith("pack.yaml")) return emptyMap() + val psiFile = content.psiFile as? YAMLFile ?: return emptyMap() + val root = psiFile.documents.firstOrNull()?.topLevelValue as? YAMLMapping? ?: return emptyMap() + + // A project root has an ìd, a version, an author + if (root.getKeyValueByKey("id") == null || root.getKeyValueByKey("version") == null || root.getKeyValueByKey("author") == null) + return emptyMap() + + // get addons. "base" is loaded by default + val addons = (root.getKeyValueByKey("addons")?.value as? YAMLMapping)?.keyValues?.map { it.keyText } ?: return mapOf("base" to null) + return addons.associateWith { null } + mapOf("base" to null) + } + +} \ No newline at end of file diff --git a/src/main/kotlin/com/dfsek/terra/codetool/project/ProjectRootUtility.kt b/src/main/kotlin/com/dfsek/terra/codetool/project/ProjectRootUtility.kt new file mode 100644 index 0000000..21aae54 --- /dev/null +++ b/src/main/kotlin/com/dfsek/terra/codetool/project/ProjectRootUtility.kt @@ -0,0 +1,22 @@ +package com.dfsek.terra.codetool.project + +import com.intellij.openapi.project.Project +import com.intellij.openapi.vfs.VirtualFile +import com.intellij.psi.search.GlobalSearchScope +import com.intellij.util.indexing.FileBasedIndex + +object ProjectRootUtility { + fun getNearestRoot(file: VirtualFile, project: Project): ProjectRoot? { + val roots = FileBasedIndex.getInstance().getContainingFiles(ROOT_INDEX_NAME, "base", GlobalSearchScope.projectScope(project)) + val nearest = roots.minByOrNull { root -> + val commonPath = file.path.commonPrefixWith(root.path) + root.path.length - commonPath.length + } + nearest ?: return null + val addons = FileBasedIndex.getInstance().getFileData(ROOT_INDEX_NAME, nearest, project).keys + val name = FileBasedIndex.getInstance().getFileData(NAME_INDEX_NAME, nearest, project).keys.firstOrNull() ?: return null + return ProjectRoot(nearest, name, addons.toList()) + } + + data class ProjectRoot(val root: VirtualFile, val id: String, val addons: List) +} \ No newline at end of file diff --git a/src/main/kotlin/com/dfsek/terra/codetool/project/ProjectStatusBarWidget.kt b/src/main/kotlin/com/dfsek/terra/codetool/project/ProjectStatusBarWidget.kt new file mode 100644 index 0000000..4482ae7 --- /dev/null +++ b/src/main/kotlin/com/dfsek/terra/codetool/project/ProjectStatusBarWidget.kt @@ -0,0 +1,85 @@ +package com.dfsek.terra.codetool.project + +import com.dfsek.terra.codetool.TerrascriptFileType +import com.intellij.openapi.application.writeAction +import com.intellij.openapi.fileEditor.FileEditorManager +import com.intellij.openapi.fileEditor.FileEditorManagerEvent +import com.intellij.openapi.fileEditor.FileEditorManagerListener +import com.intellij.openapi.fileTypes.FileType +import com.intellij.openapi.project.Project +import com.intellij.openapi.vfs.VirtualFile +import com.intellij.openapi.wm.StatusBar +import com.intellij.openapi.wm.StatusBarWidget +import com.intellij.psi.search.FileTypeIndex +import com.intellij.util.indexing.events.IndexedFilesListener +import com.intellij.util.messages.MessageBusConnection +import java.awt.Component +import kotlinx.coroutines.CoroutineScope +import kotlinx.coroutines.Dispatchers +import kotlinx.coroutines.launch +import kotlinx.coroutines.withContext +import org.jetbrains.annotations.NonNls +import org.jetbrains.yaml.YAMLFileType + +class ProjectStatusBarWidget(val project: Project, val scope: CoroutineScope) : StatusBarWidget, StatusBarWidget.Multiframe { + private var connection: MessageBusConnection? = null + private var lastRoot: ProjectRootUtility.ProjectRoot? = null + override fun ID(): @NonNls String = "terra_project_name" + + override fun install(statusBar: StatusBar) { + connection = project.messageBus.connect() + connection?.subscribe(FileEditorManagerListener.FILE_EDITOR_MANAGER, object : FileEditorManagerListener { + override fun fileOpened(source: FileEditorManager, file: VirtualFile) { + update(statusBar) + } + + override fun fileClosed(source: FileEditorManager, file: VirtualFile) { + update(statusBar) + } + + override fun selectionChanged(event: FileEditorManagerEvent) { + update(statusBar) + } + }) + connection?.subscribe( + FileTypeIndex.INDEX_CHANGE_TOPIC, + FileTypeIndex.IndexChangeListener { fileType -> + if (fileType == TerrascriptFileType || fileType == YAMLFileType.YML) update( + statusBar + ) + }) + } + + override fun dispose() { + connection?.disconnect() + } + + override fun getPresentation(): StatusBarWidget.WidgetPresentation? { + return object : StatusBarWidget.TextPresentation { + override fun getText(): String = lastRoot?.id ?: "" + override fun getAlignment(): Float = Component.CENTER_ALIGNMENT + override fun getTooltipText(): String? = lastRoot?.addons?.let { formatThreeElementsPlusAmount(it) } + } + } + + private fun updateContent() { + val fileEditorManager = FileEditorManager.getInstance(project) + val currentFile = fileEditorManager.selectedEditor?.file ?: run { lastRoot = null; return } + lastRoot = ProjectRootUtility.getNearestRoot(currentFile, project) + } + + private fun update(statusBar: StatusBar) = scope.launch { + withContext(Dispatchers.IO) { + writeAction { updateContent() } + } + statusBar.updateWidget(ID()) + } + + override fun copy(): StatusBarWidget = ProjectStatusBarWidget(project, scope) + + private fun formatThreeElementsPlusAmount(elements: List): String { + if (elements.isEmpty()) return "Empty" + if (elements.size < 4) return elements.joinToString(", ") + return elements.take(3).joinToString(", ") + ", (+" + (elements.size - 3) + " more)" + } +} \ No newline at end of file diff --git a/src/main/kotlin/com/dfsek/terra/codetool/project/ProjectStatusBarWidgetFactory.kt b/src/main/kotlin/com/dfsek/terra/codetool/project/ProjectStatusBarWidgetFactory.kt new file mode 100644 index 0000000..c8a85d7 --- /dev/null +++ b/src/main/kotlin/com/dfsek/terra/codetool/project/ProjectStatusBarWidgetFactory.kt @@ -0,0 +1,18 @@ +package com.dfsek.terra.codetool.project + +import com.intellij.openapi.project.Project +import com.intellij.openapi.util.NlsContexts +import com.intellij.openapi.wm.StatusBarWidget +import com.intellij.openapi.wm.StatusBarWidgetFactory +import kotlinx.coroutines.CoroutineScope +import org.jetbrains.annotations.NonNls + +class ProjectStatusBarWidgetFactory : StatusBarWidgetFactory { + override fun getId(): @NonNls String = "terra_project" + + override fun getDisplayName(): @NlsContexts.ConfigurableName String = "Terra Project" + + override fun createWidget(project: Project, scope: CoroutineScope): StatusBarWidget { + return ProjectStatusBarWidget(project, scope) + } +} \ No newline at end of file diff --git a/src/main/kotlin/com/dfsek/terra/codetool/project/YamlNameIndexExtension.kt b/src/main/kotlin/com/dfsek/terra/codetool/project/YamlNameIndexExtension.kt new file mode 100644 index 0000000..1241ce9 --- /dev/null +++ b/src/main/kotlin/com/dfsek/terra/codetool/project/YamlNameIndexExtension.kt @@ -0,0 +1,36 @@ +package com.dfsek.terra.codetool.project + +import com.intellij.util.indexing.DataIndexer +import com.intellij.util.indexing.DefaultFileTypeSpecificInputFilter +import com.intellij.util.indexing.FileBasedIndex +import com.intellij.util.indexing.FileContent +import com.intellij.util.indexing.ID +import com.intellij.util.indexing.ScalarIndexExtension +import com.intellij.util.io.EnumeratorStringDescriptor +import com.intellij.util.io.KeyDescriptor +import org.jetbrains.yaml.YAMLFileType +import org.jetbrains.yaml.psi.YAMLFile +import org.jetbrains.yaml.psi.YAMLMapping + +val NAME_INDEX_NAME = ID.create("com.dfsek.terra.codetool.project.name") + +class YamlNameIndexExtension : ScalarIndexExtension() { + override fun getName(): ID = NAME_INDEX_NAME + override fun getInputFilter(): FileBasedIndex.InputFilter = DefaultFileTypeSpecificInputFilter(YAMLFileType.YML) + override fun dependsOnFileContent(): Boolean = true + + override fun getIndexer(): DataIndexer = YamlNameIndexer + + override fun getKeyDescriptor(): KeyDescriptor = EnumeratorStringDescriptor.INSTANCE + override fun getVersion(): Int = 0 +} + +private object YamlNameIndexer : DataIndexer { + override fun map(content: FileContent): Map { + val psiFile = content.psiFile as? YAMLFile ?: return emptyMap() + val root = psiFile.documents.firstOrNull()?.topLevelValue as? YAMLMapping? ?: return emptyMap() + + val name = root.getKeyValueByKey("id")?.valueText ?: return emptyMap() + return mapOf(name to null) + } +} \ No newline at end of file diff --git a/src/main/resources/META-INF/plugin.xml b/src/main/resources/META-INF/plugin.xml index f2e4b8c..7de0287 100644 --- a/src/main/resources/META-INF/plugin.xml +++ b/src/main/resources/META-INF/plugin.xml @@ -34,82 +34,34 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - + - - - - - - + + + + + + Date: Sun, 15 Jun 2025 19:10:19 +0200 Subject: [PATCH 02/11] fix: ensure the status bar is shown on ide open as well --- .../project/ProjectStatusBarWidget.kt | 34 +++++++++++-------- 1 file changed, 20 insertions(+), 14 deletions(-) diff --git a/src/main/kotlin/com/dfsek/terra/codetool/project/ProjectStatusBarWidget.kt b/src/main/kotlin/com/dfsek/terra/codetool/project/ProjectStatusBarWidget.kt index 4482ae7..efd1fe8 100644 --- a/src/main/kotlin/com/dfsek/terra/codetool/project/ProjectStatusBarWidget.kt +++ b/src/main/kotlin/com/dfsek/terra/codetool/project/ProjectStatusBarWidget.kt @@ -1,25 +1,26 @@ package com.dfsek.terra.codetool.project -import com.dfsek.terra.codetool.TerrascriptFileType +import com.intellij.openapi.application.NonBlockingReadAction +import com.intellij.openapi.application.smartReadAction import com.intellij.openapi.application.writeAction import com.intellij.openapi.fileEditor.FileEditorManager import com.intellij.openapi.fileEditor.FileEditorManagerEvent import com.intellij.openapi.fileEditor.FileEditorManagerListener -import com.intellij.openapi.fileTypes.FileType +import com.intellij.openapi.project.DumbService import com.intellij.openapi.project.Project import com.intellij.openapi.vfs.VirtualFile import com.intellij.openapi.wm.StatusBar import com.intellij.openapi.wm.StatusBarWidget -import com.intellij.psi.search.FileTypeIndex -import com.intellij.util.indexing.events.IndexedFilesListener +import com.intellij.util.Consumer import com.intellij.util.messages.MessageBusConnection import java.awt.Component +import java.awt.event.MouseEvent import kotlinx.coroutines.CoroutineScope import kotlinx.coroutines.Dispatchers import kotlinx.coroutines.launch import kotlinx.coroutines.withContext import org.jetbrains.annotations.NonNls -import org.jetbrains.yaml.YAMLFileType +import kotlinx.coroutines.runBlocking class ProjectStatusBarWidget(val project: Project, val scope: CoroutineScope) : StatusBarWidget, StatusBarWidget.Multiframe { private var connection: MessageBusConnection? = null @@ -27,7 +28,7 @@ class ProjectStatusBarWidget(val project: Project, val scope: CoroutineScope) : override fun ID(): @NonNls String = "terra_project_name" override fun install(statusBar: StatusBar) { - connection = project.messageBus.connect() + connection = project.messageBus.connect(this) connection?.subscribe(FileEditorManagerListener.FILE_EDITOR_MANAGER, object : FileEditorManagerListener { override fun fileOpened(source: FileEditorManager, file: VirtualFile) { update(statusBar) @@ -41,13 +42,12 @@ class ProjectStatusBarWidget(val project: Project, val scope: CoroutineScope) : update(statusBar) } }) - connection?.subscribe( - FileTypeIndex.INDEX_CHANGE_TOPIC, - FileTypeIndex.IndexChangeListener { fileType -> - if (fileType == TerrascriptFileType || fileType == YAMLFileType.YML) update( - statusBar - ) - }) + connection?.subscribe(DumbService.DUMB_MODE, object : DumbService.DumbModeListener { + override fun exitDumbMode() { + update(statusBar) + } + }) + update(statusBar) } override fun dispose() { @@ -59,6 +59,10 @@ class ProjectStatusBarWidget(val project: Project, val scope: CoroutineScope) : override fun getText(): String = lastRoot?.id ?: "" override fun getAlignment(): Float = Component.CENTER_ALIGNMENT override fun getTooltipText(): String? = lastRoot?.addons?.let { formatThreeElementsPlusAmount(it) } + override fun getClickConsumer(): Consumer = Consumer { + FileEditorManager.getInstance(project) + .openFile(lastRoot?.root ?: return@Consumer, true) + } } } @@ -70,7 +74,9 @@ class ProjectStatusBarWidget(val project: Project, val scope: CoroutineScope) : private fun update(statusBar: StatusBar) = scope.launch { withContext(Dispatchers.IO) { - writeAction { updateContent() } + smartReadAction(project) { + updateContent() + } } statusBar.updateWidget(ID()) } From 28837ece042bf0cac0da1fa9feb8fe1870c99bd4 Mon Sep 17 00:00:00 2001 From: Christian Bergschneider Date: Sun, 15 Jun 2025 22:57:07 +0200 Subject: [PATCH 03/11] feat: add `TerraSimple` icon and update project status bar widget --- .../com/dfsek/terra/codetool/TerraIcons.kt | 1 + .../project/ProjectStatusBarWidget.kt | 16 +- src/main/resources/icons/terra_simple.svg | 141 ++++++++++++++++++ .../resources/icons/terra_simple_dark.svg | 141 ++++++++++++++++++ 4 files changed, 295 insertions(+), 4 deletions(-) create mode 100644 src/main/resources/icons/terra_simple.svg create mode 100644 src/main/resources/icons/terra_simple_dark.svg diff --git a/src/main/kotlin/com/dfsek/terra/codetool/TerraIcons.kt b/src/main/kotlin/com/dfsek/terra/codetool/TerraIcons.kt index 5ccaec0..c5c333d 100644 --- a/src/main/kotlin/com/dfsek/terra/codetool/TerraIcons.kt +++ b/src/main/kotlin/com/dfsek/terra/codetool/TerraIcons.kt @@ -10,4 +10,5 @@ object TerraIcons { @JvmField val OreFile = IconLoader.getIcon("/icons/ore.svg", TerraIcons::class.java) @JvmField val ScatteredOreFile = IconLoader.getIcon("/icons/scattered_ore.svg", TerraIcons::class.java) @JvmField val PaletteFile = IconLoader.getIcon("/icons/palette.svg", TerraIcons::class.java) + @JvmField val TerraSimple = IconLoader.getIcon("/icons/terra_simple.svg", TerraIcons::class.java) } \ No newline at end of file diff --git a/src/main/kotlin/com/dfsek/terra/codetool/project/ProjectStatusBarWidget.kt b/src/main/kotlin/com/dfsek/terra/codetool/project/ProjectStatusBarWidget.kt index efd1fe8..daccedd 100644 --- a/src/main/kotlin/com/dfsek/terra/codetool/project/ProjectStatusBarWidget.kt +++ b/src/main/kotlin/com/dfsek/terra/codetool/project/ProjectStatusBarWidget.kt @@ -1,5 +1,6 @@ package com.dfsek.terra.codetool.project +import com.dfsek.terra.codetool.TerraIcons import com.intellij.openapi.application.NonBlockingReadAction import com.intellij.openapi.application.smartReadAction import com.intellij.openapi.application.writeAction @@ -55,10 +56,17 @@ class ProjectStatusBarWidget(val project: Project, val scope: CoroutineScope) : } override fun getPresentation(): StatusBarWidget.WidgetPresentation? { - return object : StatusBarWidget.TextPresentation { - override fun getText(): String = lastRoot?.id ?: "" - override fun getAlignment(): Float = Component.CENTER_ALIGNMENT - override fun getTooltipText(): String? = lastRoot?.addons?.let { formatThreeElementsPlusAmount(it) } + return object : StatusBarWidget.IconPresentation { + override fun getIcon() = TerraIcons.TerraSimple + override fun getTooltipText(): String? { + val id = lastRoot?.id + val addons = lastRoot?.addons?.let { formatThreeElementsPlusAmount(it) } + return when { + id != null && addons != null && addons != "Empty" -> "$id: $addons" + id != null -> id + else -> "No Terra project found" + } + } override fun getClickConsumer(): Consumer = Consumer { FileEditorManager.getInstance(project) .openFile(lastRoot?.root ?: return@Consumer, true) diff --git a/src/main/resources/icons/terra_simple.svg b/src/main/resources/icons/terra_simple.svg new file mode 100644 index 0000000..994b92d --- /dev/null +++ b/src/main/resources/icons/terra_simple.svg @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/icons/terra_simple_dark.svg b/src/main/resources/icons/terra_simple_dark.svg new file mode 100644 index 0000000..62174b6 --- /dev/null +++ b/src/main/resources/icons/terra_simple_dark.svg @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + From ac3c780834ae19ec2691b58f7378eb58ae681631 Mon Sep 17 00:00:00 2001 From: Christian Bergschneider Date: Sun, 15 Jun 2025 23:50:11 +0200 Subject: [PATCH 04/11] feat: implement name and type indexing for .tesf and .y(a)ml files --- .../project/FileTypeIndexExtension.kt | 49 +++++++++++++++++++ .../codetool/project/IndexedConfigType.kt | 19 +++++++ ...ndexExtension.kt => NameIndexExtension.kt} | 38 +++++++++----- src/main/resources/META-INF/plugin.xml | 3 +- 4 files changed, 95 insertions(+), 14 deletions(-) create mode 100644 src/main/kotlin/com/dfsek/terra/codetool/project/FileTypeIndexExtension.kt create mode 100644 src/main/kotlin/com/dfsek/terra/codetool/project/IndexedConfigType.kt rename src/main/kotlin/com/dfsek/terra/codetool/project/{YamlNameIndexExtension.kt => NameIndexExtension.kt} (52%) diff --git a/src/main/kotlin/com/dfsek/terra/codetool/project/FileTypeIndexExtension.kt b/src/main/kotlin/com/dfsek/terra/codetool/project/FileTypeIndexExtension.kt new file mode 100644 index 0000000..800a99a --- /dev/null +++ b/src/main/kotlin/com/dfsek/terra/codetool/project/FileTypeIndexExtension.kt @@ -0,0 +1,49 @@ +package com.dfsek.terra.codetool.project + +import com.dfsek.terra.codetool.TerrascriptFileType +import com.dfsek.terra.codetool.psi.TerrascriptFile +import com.intellij.util.indexing.DataIndexer +import com.intellij.util.indexing.FileBasedIndex +import com.intellij.util.indexing.FileContent +import com.intellij.util.indexing.ID +import com.intellij.util.indexing.ScalarIndexExtension +import com.intellij.util.io.EnumDataDescriptor +import com.intellij.util.io.KeyDescriptor +import org.jetbrains.yaml.YAMLFileType +import org.jetbrains.yaml.psi.YAMLFile +import org.jetbrains.yaml.psi.YAMLMapping + +val TYPE_INDEX_NAME = ID.create("com.dfsek.terra.codetool.project.type") + +class FileTypeIndexExtension : ScalarIndexExtension() { + override fun getName(): ID = TYPE_INDEX_NAME + override fun getInputFilter(): FileBasedIndex.InputFilter = FileBasedIndex.InputFilter { + it.fileType == YAMLFileType.YML || it.fileType == TerrascriptFileType + } + override fun dependsOnFileContent(): Boolean = true + + override fun getIndexer(): DataIndexer = FileTypeIndexer + + override fun getKeyDescriptor(): KeyDescriptor = EnumDataDescriptor(IndexedConfigType::class.java) + override fun getVersion(): Int = 0 +} + +private object FileTypeIndexer : DataIndexer { + override fun map(content: FileContent): Map { + when (val psiFile = content.psiFile) { + is YAMLFile -> { + val root = psiFile.documents.firstOrNull()?.topLevelValue as? YAMLMapping ?: return emptyMap() + val typeString = root.getKeyValueByKey("type")?.valueText ?: return emptyMap() + val type = IndexedConfigType.fromString(typeString) ?: return emptyMap() + return mapOf(type to null) + } + + is TerrascriptFile -> { + return mapOf(IndexedConfigType.INTELLIJ_PROCEDURAL_STRUCTURE to null) + } + } + return emptyMap() + + } + +} diff --git a/src/main/kotlin/com/dfsek/terra/codetool/project/IndexedConfigType.kt b/src/main/kotlin/com/dfsek/terra/codetool/project/IndexedConfigType.kt new file mode 100644 index 0000000..eeac4dc --- /dev/null +++ b/src/main/kotlin/com/dfsek/terra/codetool/project/IndexedConfigType.kt @@ -0,0 +1,19 @@ +package com.dfsek.terra.codetool.project + +enum class IndexedConfigType(val isPublic: Boolean = true) { + BIOME, + FEATURE, + ORE, + PALETTE, + SCATTERED_ORE, + INTELLIJ_PROCEDURAL_STRUCTURE(false); + + companion object { + fun fromString(s: String, requirePublic: Boolean = true): IndexedConfigType? { + val entry = entries.find { it.name.equals(s, ignoreCase = true) } ?: return null + if (!entry.isPublic && requirePublic) return null + return entry + } + } + +} \ No newline at end of file diff --git a/src/main/kotlin/com/dfsek/terra/codetool/project/YamlNameIndexExtension.kt b/src/main/kotlin/com/dfsek/terra/codetool/project/NameIndexExtension.kt similarity index 52% rename from src/main/kotlin/com/dfsek/terra/codetool/project/YamlNameIndexExtension.kt rename to src/main/kotlin/com/dfsek/terra/codetool/project/NameIndexExtension.kt index 1241ce9..dbb6345 100644 --- a/src/main/kotlin/com/dfsek/terra/codetool/project/YamlNameIndexExtension.kt +++ b/src/main/kotlin/com/dfsek/terra/codetool/project/NameIndexExtension.kt @@ -1,7 +1,8 @@ package com.dfsek.terra.codetool.project +import com.dfsek.terra.codetool.TerrascriptFileType +import com.dfsek.terra.codetool.psi.TerrascriptFile import com.intellij.util.indexing.DataIndexer -import com.intellij.util.indexing.DefaultFileTypeSpecificInputFilter import com.intellij.util.indexing.FileBasedIndex import com.intellij.util.indexing.FileContent import com.intellij.util.indexing.ID @@ -14,23 +15,34 @@ import org.jetbrains.yaml.psi.YAMLMapping val NAME_INDEX_NAME = ID.create("com.dfsek.terra.codetool.project.name") -class YamlNameIndexExtension : ScalarIndexExtension() { +class NameIndexExtension : ScalarIndexExtension() { override fun getName(): ID = NAME_INDEX_NAME - override fun getInputFilter(): FileBasedIndex.InputFilter = DefaultFileTypeSpecificInputFilter(YAMLFileType.YML) + + override fun getInputFilter(): FileBasedIndex.InputFilter = FileBasedIndex.InputFilter { + it.fileType == YAMLFileType.YML || it.fileType == TerrascriptFileType + } + override fun dependsOnFileContent(): Boolean = true - - override fun getIndexer(): DataIndexer = YamlNameIndexer - + + override fun getIndexer(): DataIndexer = NameIndexer + override fun getKeyDescriptor(): KeyDescriptor = EnumeratorStringDescriptor.INSTANCE - override fun getVersion(): Int = 0 + + override fun getVersion(): Int = 1 } -private object YamlNameIndexer : DataIndexer { +private object NameIndexer : DataIndexer { override fun map(content: FileContent): Map { - val psiFile = content.psiFile as? YAMLFile ?: return emptyMap() - val root = psiFile.documents.firstOrNull()?.topLevelValue as? YAMLMapping? ?: return emptyMap() - - val name = root.getKeyValueByKey("id")?.valueText ?: return emptyMap() - return mapOf(name to null) + when (val psiFile = content.psiFile) { + is YAMLFile -> { + val root = psiFile.documents.firstOrNull()?.topLevelValue as? YAMLMapping ?: return emptyMap() + val name = root.getKeyValueByKey("id")?.valueText ?: return emptyMap() + return mapOf(name to null) + } + is TerrascriptFile -> { + return mapOf(content.file.nameWithoutExtension to null) + } + } + return emptyMap() } } \ No newline at end of file diff --git a/src/main/resources/META-INF/plugin.xml b/src/main/resources/META-INF/plugin.xml index 7de0287..125ddbb 100644 --- a/src/main/resources/META-INF/plugin.xml +++ b/src/main/resources/META-INF/plugin.xml @@ -61,7 +61,8 @@ - + + Date: Tue, 24 Jun 2025 10:09:10 +0200 Subject: [PATCH 05/11] wip: addon doc --- .editorconfig | 2 +- .gitmodules | 3 + build.gradle.kts | 7 + .../terra/codetool/docs/AddonDocsParser.kt | 333 +++++++ .../codetool/docs/AddonDocumentationMode.kt | 50 + .../resources/documentation/addons/base.yml | 467 +++++++++ .../addons/biome-provider-extrusion.yml | 42 + .../addons/biome-provider-image-v2.yml | 41 + .../addons/biome-provider-pipeline-v2.yml | 343 +++++++ .../addons/biome-provider-single.yml | 7 + .../addons/chunk-generator-noise-3d.yml | 67 ++ .../documentation/addons/config-biome.yml | 14 + .../addons/config-distributors.yml | 47 + .../documentation/addons/config-feature.yml | 18 + .../documentation/addons/config-locators.yml | 107 ++ .../addons/config-noise-function.yml | 913 ++++++++++++++++++ .../addons/config-number-predicate.yml | 6 + .../documentation/addons/config-ore.yml | 31 + .../documentation/addons/config-palette.yml | 29 + .../addons/generation-stage-feature.yml | 20 + .../documentation/addons/library-image.yml | 212 ++++ .../documentation/addons/pipeline-image.yml | 13 + terraDocs | 1 + 23 files changed, 2772 insertions(+), 1 deletion(-) create mode 100644 src/main/kotlin/com/dfsek/terra/codetool/docs/AddonDocsParser.kt create mode 100644 src/main/kotlin/com/dfsek/terra/codetool/docs/AddonDocumentationMode.kt create mode 100644 src/main/resources/documentation/addons/base.yml create mode 100644 src/main/resources/documentation/addons/biome-provider-extrusion.yml create mode 100644 src/main/resources/documentation/addons/biome-provider-image-v2.yml create mode 100644 src/main/resources/documentation/addons/biome-provider-pipeline-v2.yml create mode 100644 src/main/resources/documentation/addons/biome-provider-single.yml create mode 100644 src/main/resources/documentation/addons/chunk-generator-noise-3d.yml create mode 100644 src/main/resources/documentation/addons/config-biome.yml create mode 100644 src/main/resources/documentation/addons/config-distributors.yml create mode 100644 src/main/resources/documentation/addons/config-feature.yml create mode 100644 src/main/resources/documentation/addons/config-locators.yml create mode 100644 src/main/resources/documentation/addons/config-noise-function.yml create mode 100644 src/main/resources/documentation/addons/config-number-predicate.yml create mode 100644 src/main/resources/documentation/addons/config-ore.yml create mode 100644 src/main/resources/documentation/addons/config-palette.yml create mode 100644 src/main/resources/documentation/addons/generation-stage-feature.yml create mode 100644 src/main/resources/documentation/addons/library-image.yml create mode 100644 src/main/resources/documentation/addons/pipeline-image.yml create mode 160000 terraDocs diff --git a/.editorconfig b/.editorconfig index 4126df3..f3def41 100644 --- a/.editorconfig +++ b/.editorconfig @@ -465,7 +465,7 @@ ij_visual_guides = none ij_kotlin_align_in_columns_case_branch = true ij_kotlin_align_multiline_binary_operation = false ij_kotlin_align_multiline_extends_list = true -ij_kotlin_align_multiline_method_parentheses = true +ij_kotlin_align_multiline_method_parentheses = false ij_kotlin_align_multiline_parameters = true ij_kotlin_align_multiline_parameters_in_calls = true ij_kotlin_allow_trailing_comma = false diff --git a/.gitmodules b/.gitmodules index c334574..2f4d98c 100644 --- a/.gitmodules +++ b/.gitmodules @@ -2,3 +2,6 @@ path = testProject url = https://github.com/PolyhedralDev/TerraOverworldConfig.git branch = 2.0-Terra-7.0 +[submodule "terraDocs"] + path = terraDocs + url = https://github.com/PolyhedralDev/TerraDocs.git diff --git a/build.gradle.kts b/build.gradle.kts index ec22fdf..c1f56c1 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -27,6 +27,7 @@ dependencies { bundledPlugin("org.jetbrains.plugins.yaml") } implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.3") + implementation("com.charleskorn.kaml:kaml:0.61.0") } intellijPlatform { @@ -46,6 +47,12 @@ tasks.register("updateRegistryData") { serverJarUrl.set("https://piston-data.mojang.com/v1/objects/e6ec2f64e6080b9b5d9b471b291c33cc7f509733/server.jar") } +tasks.register("copyApiDocumentation") { + from("terraDocs/docs/config/documentation/addons") + include("*.yml") + into("src/main/resources/documentation/addons") +} + sourceSets { main { java.srcDir("src/main/gen") diff --git a/src/main/kotlin/com/dfsek/terra/codetool/docs/AddonDocsParser.kt b/src/main/kotlin/com/dfsek/terra/codetool/docs/AddonDocsParser.kt new file mode 100644 index 0000000..56a5224 --- /dev/null +++ b/src/main/kotlin/com/dfsek/terra/codetool/docs/AddonDocsParser.kt @@ -0,0 +1,333 @@ +package com.dfsek.terra.codetool.docs + +import com.charleskorn.kaml.Yaml +import com.charleskorn.kaml.YamlConfiguration +import com.intellij.openapi.application.ReadAction +import com.intellij.openapi.project.Project +import com.intellij.openapi.vfs.VirtualFile +import com.intellij.psi.PsiManager +import com.intellij.psi.search.FileTypeIndex +import com.intellij.psi.search.GlobalSearchScope +import kotlinx.serialization.SerialName +import kotlinx.serialization.Serializable +import kotlinx.serialization.json.JsonElement +import kotlinx.serialization.json.JsonObject +import kotlinx.serialization.json.JsonPrimitive +import org.jetbrains.yaml.YAMLFileType +import org.jetbrains.yaml.psi.YAMLFile +import java.util.concurrent.ConcurrentHashMap + +class AddonDocsParser(private val project: Project) { + private val cache = ConcurrentHashMap() + + private val yaml = Yaml(configuration = YamlConfiguration(strictMode = false, allowAnchorsAndAliases = true)) + + @Serializable + data class AddonDocumentation( + val objects: Map = emptyMap(), + val templates: Map> = emptyMap() + ) + + @Serializable + data class ObjectDefinition( + val type: String, val description: String? = null, val types: Map? = null + ) + + @Serializable + data class TypeDefinition( + val description: String? = null + ) + + @Serializable + data class TemplateDefinition( + @SerialName("abstract") val isAbstract: Boolean? = null, + @SerialName("extends") val extendsTemplate: String? = null, + val params: Map = emptyMap(), + val description: String? = null + ) + + @Serializable + data class ParameterDefinition( + val type: String, val default: String? = null, val description: String? = null, val required: Boolean? = null + ) + + @Serializable + private data class RawAddonFile( + val root: Map = emptyMap() + ) + + @Serializable + private data class RawAddonContent( + val objects: Map? = null, val templates: Map? = null + ) + + /** + * Parse all addon documentation files in the project + */ + fun parseAllAddonDocs(): Map { + return ReadAction.compute, RuntimeException> { + val result = mutableMapOf() + + // Find all YAML files in the project + val yamlFiles = FileTypeIndex.getFiles( + YAMLFileType.YML, GlobalSearchScope.allScope(project) + ) + + val psiManager = PsiManager.getInstance(project) + + yamlFiles.forEach { virtualFile -> + // Check if this is an addon documentation file + if (isAddonDocFile(virtualFile)) { + val psiFile = psiManager.findFile(virtualFile) as? YAMLFile + psiFile?.let { yamlFile -> + try { + val addonName = extractAddonName(virtualFile.name) + val documentation = parseAddonDocumentation(yamlFile) + if (documentation != null) { + result[addonName] = documentation + cache[addonName] = documentation + } + } catch (e: Exception) { + // Log error but continue processing other files + println("Error parsing addon doc file ${virtualFile.name}: ${e.message}") + } + } + } + } + + result + } + } + + /** + * Parse a single addon documentation YAML file + */ + fun parseAddonDocumentation(yamlFile: YAMLFile): AddonDocumentation? { + return try { + val yamlText = yamlFile.text + val rawData = parseRawYamlData(yamlText) + + // Extract the first (and typically only) addon from the file + val addonContent = rawData.values.firstOrNull() ?: return null + + val objects = parseObjectsFromJson(addonContent.objects) + val templates = parseTemplatesFromJson(addonContent.templates) + + AddonDocumentation(objects, templates) + } catch (e: Exception) { + println("Failed to parse YAML file: ${e.message}") + null + } + } + + /** + * Parse raw YAML data into a map structure + */ + private fun parseRawYamlData(yamlText: String): Map { + return try { + // Parse as a generic map first to handle dynamic keys + val genericMap = yaml.decodeFromString>(yamlText) + + val result = mutableMapOf() + + genericMap.forEach { (addonName, addonElement) -> + if (addonElement is JsonObject) { + val objects = addonElement["objects"] as? JsonObject + val templates = addonElement["templates"] as? JsonObject + + result[addonName] = RawAddonContent( + objects = objects?.let { mapOf("objects" to it) }, + templates = templates?.let { mapOf("templates" to it) }) + } + } + + result + } catch (e: Exception) { + println("Error parsing raw YAML data: ${e.message}") + emptyMap() + } + } + + /** + * Parse objects from JsonElement + */ + private fun parseObjectsFromJson(objectsMap: Map?): Map { + if (objectsMap == null) return emptyMap() + + val objectsElement = objectsMap["objects"] as? JsonObject ?: return emptyMap() + + val result = mutableMapOf() + + objectsElement.forEach { (objectName, objectElement) -> + if (objectElement is JsonObject) { + val type = (objectElement["type"] as? JsonPrimitive)?.content ?: "UNKNOWN" + val description = (objectElement["description"] as? JsonPrimitive)?.content + val types = parseTypesFromJson(objectElement["types"] as? JsonObject) + + result[objectName] = ObjectDefinition(type, description, types) + } + } + + return result + } + + /** + * Parse types from JsonObject + */ + private fun parseTypesFromJson(typesObject: JsonObject?): Map? { + if (typesObject == null) return null + + val result = mutableMapOf() + + typesObject.forEach { (typeName, typeElement) -> + val description = if (typeElement is JsonObject) { + (typeElement["description"] as? JsonPrimitive)?.content + } else null + + result[typeName] = TypeDefinition(description) + } + + return result + } + + /** + * Parse templates from JsonElement + */ + private fun parseTemplatesFromJson(templatesMap: Map?): Map> { + if (templatesMap == null) return emptyMap() + + val templatesElement = templatesMap["templates"] as? JsonObject ?: return emptyMap() + + val result = mutableMapOf>() + + templatesElement.forEach { (categoryName, categoryElement) -> + if (categoryElement is JsonObject) { + val categoryTemplates = mutableMapOf() + + categoryElement.forEach { (templateName, templateElement) -> + if (templateElement is JsonObject) { + val isAbstract = (templateElement["abstract"] as? JsonPrimitive)?.content?.toBoolean() + val extendsTemplate = (templateElement["extends"] as? JsonPrimitive)?.content + val description = (templateElement["description"] as? JsonPrimitive)?.content + val params = parseParametersFromJson(templateElement["params"] as? JsonObject) + + categoryTemplates[templateName] = TemplateDefinition( + isAbstract = isAbstract, extendsTemplate = extendsTemplate, params = params, description = description + ) + } + } + + result[categoryName] = categoryTemplates + } + } + + return result + } + + /** + * Parse parameters from JsonObject + */ + private fun parseParametersFromJson(paramsObject: JsonObject?): Map { + if (paramsObject == null) return emptyMap() + + val result = mutableMapOf() + + paramsObject.forEach { (paramName, paramElement) -> + if (paramElement is JsonObject) { + val type = (paramElement["type"] as? JsonPrimitive)?.content ?: "Unknown" + val default = (paramElement["default"] as? JsonPrimitive)?.content + val description = (paramElement["description"] as? JsonPrimitive)?.content + val required = (paramElement["required"] as? JsonPrimitive)?.content?.toBoolean() + + result[paramName] = ParameterDefinition(type, default, description, required) + } + } + + return result + } + + /** + * Check if a file is an addon documentation file + */ + private fun isAddonDocFile(virtualFile: VirtualFile): Boolean { + val name = virtualFile.name + return name.endsWith(".yml") || name.endsWith(".yaml") + } + + /** + * Extract addon name from filename + */ + private fun extractAddonName(filename: String): String { + return filename.substringBeforeLast('.').replace('-', '_') + } + + /** + * Get documentation for a specific addon + */ + fun getAddonDocumentation(addonName: String): AddonDocumentation? { + return cache[addonName] ?: run { + // Try to reload if not in cache + parseAllAddonDocs() + cache[addonName] + } + } + + /** + * Get all available object types across all addons + */ + fun getAllObjectTypes(): Set { + val allDocs = if (cache.isEmpty()) parseAllAddonDocs() else cache + return allDocs.values.flatMap { it.objects.keys }.toSet() + } + + /** + * Get all available template types for a category + */ + fun getTemplateTypes(category: String): Set { + val allDocs = if (cache.isEmpty()) parseAllAddonDocs() else cache + return allDocs.values.flatMap { it.templates[category]?.keys ?: emptySet() }.toSet() + } + + /** + * Find object definition by name across all addons + */ + fun findObjectDefinition(objectName: String): ObjectDefinition? { + val allDocs = if (cache.isEmpty()) parseAllAddonDocs() else cache + return allDocs.values.mapNotNull { it.objects[objectName] }.firstOrNull() + } + + /** + * Find template definition by category and name + */ + fun findTemplateDefinition(category: String, templateName: String): TemplateDefinition? { + val allDocs = if (cache.isEmpty()) parseAllAddonDocs() else cache + return allDocs.values.mapNotNull { it.templates[category]?.get(templateName) }.firstOrNull() + } + + /** + * Get parameter suggestions for a template + */ + fun getParameterSuggestions(category: String, templateName: String): Map { + val template = findTemplateDefinition(category, templateName) ?: return emptyMap() + val result = template.params.toMutableMap() + + // If template extends another, merge parent parameters + template.extendsTemplate?.let { parentName -> + val parentTemplate = findTemplateDefinition(category, parentName) + parentTemplate?.params?.forEach { (key, value) -> + if (!result.containsKey(key)) { + result[key] = value + } + } + } + + return result + } + + /** + * Clear the cache (useful for testing or when files change) + */ + fun clearCache() { + cache.clear() + } +} \ No newline at end of file diff --git a/src/main/kotlin/com/dfsek/terra/codetool/docs/AddonDocumentationMode.kt b/src/main/kotlin/com/dfsek/terra/codetool/docs/AddonDocumentationMode.kt new file mode 100644 index 0000000..715c1df --- /dev/null +++ b/src/main/kotlin/com/dfsek/terra/codetool/docs/AddonDocumentationMode.kt @@ -0,0 +1,50 @@ +package com.dfsek.terra.codetool.docs + +import kotlinx.serialization.SerialName +import kotlinx.serialization.Serializable +import kotlinx.serialization.json.JsonElement + +@Serializable +data class ObjectDefinition( + val type: String, + val description: String? = null, + val types: Map? = null +) + +@Serializable +data class TypeDefinition( + val description: String? = null +) + +@Serializable +data class TemplateDefinition( + @SerialName("abstract") val isAbstract: Boolean? = null, + @SerialName("extends") val extendsTemplate: String? = null, + val params: Map = emptyMap(), + val description: String? = null +) + +@Serializable +data class ParameterDefinition( + val type: String, + val default: String? = null, + val description: String? = null, + val required: Boolean? = null +) + +@Serializable +private data class ConfigDocumentation( + val description: String? = null, + val useGlobalTemplate: Boolean = true, +) + +@Serializable +private data class AddonFile( + val root: Map = emptyMap() +) + +@Serializable +private data class AddonContent( + val objects: Map = emptyMap(), + val configs: Map = emptyMap() +) \ No newline at end of file diff --git a/src/main/resources/documentation/addons/base.yml b/src/main/resources/documentation/addons/base.yml new file mode 100644 index 0000000..7d48a0e --- /dev/null +++ b/src/main/resources/documentation/addons/base.yml @@ -0,0 +1,467 @@ +base: + objects: + String: + type: PRIMITIVE + description: | + A string / sequence of characters. + + See :doc:`/config/development/config-data` + + Integer: + type: PRIMITIVE + description: | + An integer / whole number. + + See :doc:`/config/development/config-data` + + Float: + type: PRIMITIVE + description: | + A number which may contain decimals. + + See :doc:`/config/development/config-data` + + Boolean: + type: PRIMITIVE + description: | + A value that is either ``true`` or ``false``. + + See :doc:`/config/development/config-data` + + Map: + type: PRIMITIVE + description: | + A set of values identified by a 'key'. + + See :doc:`/config/development/config-data` + + List: + type: PRIMITIVE + description: | + A list of values. + + See :doc:`/config/development/config-data` + + Set: + type: PRIMITIVE + description: | + A set of values. Sets are defined similarly to :doc:`/config/documentation/objects/List`\s with the difference being that + each value must be unique. + + Expression: + type: MULTI_TYPE + description: | + A mathematical expression that may use various mathematical operators, variables / constants, and functions, and returns a floating point number when evaluated. + + Expressions are defined as strings and evaluated by `Paralithic `_. + + Expressions are written using simple mathematical syntax, for example the expression ``3 + 2 / 8``, which would represent ``3`` plus the division of + ``2`` by ``8``. + + Number Syntax + ============= + + Numbers are always handled as `floating point `_ numbers. + + A number by itself is a valid expression. + + - Numbers can be defined simply like ``5832``. + + - Decimals are written as a whole number, a ``.``, then the decimal fraction. For example ``64.34``. + + - Trailing zeroes after the decimal point are permitted: ``64.00``. + + - Underscores can be used to create a visual separator (and are ignored in numbers), for example to separate each hundreds place: ``1_000_000``. + + - A quantifier letter can be added after a number to specify its quanity, for example ``2m`` is equivalent + to ``2 * 1000`` or ``2000``, where ``m`` refers to the metric prefix 'mega'. + + ========== ============= =============================================== + Quantifier Value Name + n 0.000 000 001 `Nano `_ + u 0.000 001 `Micro `_ + m 0.001 `Milli `_ + K 1_000 `Kilo `_ + M 1_000_000 `Mega `_ + G 1_000_000_000 `Giga `_ + ========== ============= =============================================== + + - Numbers can be prefixed with a ``+`` or ``-`` to indicate whether they're positive or negative. For example ``-1337`` and ``+1337``. + + - Numbers can use `scientific notation `_, where the character ``e`` (or ``E``) + separates the significand from the exponent. For example ``6.72e9`` is equivalent to ``6.72 * 10^9`` or ``6_720_000_000``. + + Variables + ========= + + Named constants / variables are numbers that are identified by a name. They can be referenced by simply stating their name, for + example to reference ``myVariable`` in an expression: ``myVariable * 20``. + + *There is no way to define new variables within an expression*. Variables are made available external from the expression. + What variables are available will depend on the context of the expression, some config + objects have certain variables like ``x`` and ``y`` that change based on world position, some allow you to define your own named constants for use + inside the expression. + + Built-in constants + ------------------ + + The following constants are available to use in all expressions: + + - ``pi`` - Approximately ``3.14159``. `Wikipedia `__ + - ``euler`` - Approximately ``2.71828``. `Wikipedia `__ + + Operators + ========= + + .. _expression-boolean-representation: + + Boolean Representation + ---------------------- + + Expressions only work with floating point numbers, but they also support various operators that involve + boolean math. To support such operators, 'false' is represented as the value ``0``, and 'true' + is represented as *any value that is not* ``0``. If an operator returns 'true' then that means + it will return the value ``1``. + + .. note:: + + Boolean values are almost always used with the ``if`` `builtin function <#Builtin Functions>`_, so + in many cases the numerical boolean representation will be invisible. For example the expression + ``if(1 > 2, 5, 8)`` has no explicit reference to exact values ``1`` and ``0`` (i.e. true and false). + + Available Operators + ------------------- + + The following is a list of operations available in expressions, grouped from highest precedence to lowest, where higher precedence + operators are evaluated first. Words ``expr``, ``left``, and ``right`` are used to indicate a subexpression (which could be a + number, a variable, another operator, etc..): + + ========== ================= ======================================================== + Precedence Syntax Description + + 1 ``(expr)`` Grouping of expr, allows for controlling precedence + 1 ``|expr|`` Absolute value of expr + \- + 2 ``-expr`` Negate expr / make expr negative + \- + 3 ``left ^ right`` Exponentiation, left to the power of right + \- + 4 ``left * right`` Multiply left and right + 4 ``left / right`` Divide left by right + 4 ``left % right`` Left modulo right + \- + 5 ``left + right`` Add left and right + 5 ``left - right`` Subtract right from left + \- + 6 ``left < right`` True if left is greater than right, otherwise false + 6 ``left <= right`` True if left is less than or equal right, otherwise false + 6 ``left > right`` True left is greater than right, otherwise false + 6 ``left >= right`` True left is greater than or equal to right, otherwise false + 6 ``left = right`` True left is equal to right, otherwise false + 6 ``left != right`` True left is not not equal to right, otherwise false + \- + 7 ``left && right`` True if left and right are true, otherwise false + 7 ``left || right`` True if left or right are true, otherwise false + ========== ================= ======================================================== + + Associativity + ------------- + + Binary operators (i.e. operators that take two arguments) are left associative, meaning given + a sequence of operators with the same precedence like so ``3 - 2 + 1 + 3``, they will be evaluated + from left to right like so: ``(((3 - 2) + 1) + 3)``. + + Functions + ========= + + Functions are called by writing the function name, proceeded by a pair of parenthesis which + contain any arguments. Successive arguments are separated by a comma ``,``. + + - No arguments: ``exampleFunction()`` + - One argument: ``exampleFunction(3)`` + - Several arguments: ``exampleFunction(3, 2)`` + + Function arguments are expressions, for example: + + - ``exampleFunction(3 + 2 / exampleFunction(9 * 5))`` + + Builtin Functions + ================= + + The following is a list of built-in functions available in all expressions: + + ============= ========= ===================================================================================================================================== + Function Name Arguments Description + ``floor`` 1 Rounds the argument up to the nearest integer. + ``ceil`` 1 Rounds the argument down to the nearest integer. + ``round`` 1 Rounds the argument to the nearest integer. + ``pow`` 2 Returns the value of the first argument raised to the power of the second argument. + ``min`` 2 Returns the smallest of the two arguments. + ``max`` 2 Returns the largest of the two arguments. + ``sqrt`` 1 Square root of the argument. + ``sin`` 1 Trigonometric sine of the argument. + ``cos`` 1 Trigonometric cosine of the argument. + ``tan`` 1 Trigonometric tangent of the argument. + ``sinh`` 1 Hyperbolic sine of the argument. + ``cosh`` 1 Hyperbolic cosine of the argument. + ``tanh`` 1 Hyperbolic tangent of the argument. + ``asin`` 1 Arc sine of the argument. + ``acos`` 1 Arc cosine of the argument. + ``atan`` 2 Arc tangent of the argument. + ``atan2`` 2 See the `Wikipedia page `_. + ``rad`` 1 Converts the argument (interpreted as degrees) to radians. + ``deg`` 1 Converts the argument (interpreted as radians) to degrees. + ``abs`` 1 Returns the absolute value of the argument. (Makes any negative numbers positive.) + ``log`` 1 Returns the base 10 logarithm of the argument. + ``ln`` 1 Returns the natural logarithm (log base *e*) of the argument. + ``exp`` 1 Returns *e* raised to the power of the argument. + ``sign`` 1 Returns ``-1.0`` if ``argument < 0.0``, ``0.0`` if ``argument = 0.0``, and ``1.0`` if ``argument > 0.0``. + ``sigmoid`` 2 A `sigmoid function `_. Equivalent to ``1 / exp(-1 * a * b)``. + ``if`` 3 Ternary - If the first argument is true(:ref:`?`), then return the second argument, otherwise return the third. + ============= ========= ===================================================================================================================================== + + White Space + =========== + + White space characters (spaces, newlines, tabs) are permitted in expressions. Whitespace can be used to separate parts of an expression, + for example to split it into multiple lines, and or add space between operators to aid readability. Any sequence of white space is equivalent. + + For example splitting a function's arguments into multiple lines:: + + atan2( + 1 + 45, + 4 / 8 + ) + + .. note:: + + When defining multi-line expressions in YAML, it is recommended to use the `block style `_ syntax + indicated by the ``|`` character after the ``:`` to indicate the string is mutli-line, for example: + + .. code:: yaml + + expression: | + atan2( + 1 + 45, + 4 / 8 + ) + + Comments + ======== + + Any text after and including the sequence ``//`` on the same line is a comment. Comments are ignored. + + For example: ``4 * 2 // This is a comment`` + + Multiline comments are also supported, text between the ``/*`` and ``*/`` delimiters is treated as a comment and is ignored. + + For example: + + .. code:: + + atan2( + 1 + 45, + 4 / 8 + /* Here is a multi line comment + all this extra text is ignored */ + ) + + WeightedList: + type: MULTI_TYPE + description: | + A list of values each with an assigned weight. + + See :ref:`weighted-list` + + NoiseSampler: + type: TEMPLATED + description: | + .. seealso:: + + :doc:`/config/development/noise/index` + + A sampler is a config defined function that provides a value when given a position and seed. + + A 'sample' is defined as the value produced by a single calculation provided by a sampler. A collective set of + samples is regarded as 'noise'. + + Noise produced by noise samplers :doc:`determine some kind of behaviour ` for each block or column. This behaviour + is dependent on the context of the sampler definition. + + Range: + type: MULTI_TYPE + description: | + A range of integer numbers, represented with a minimum and maximum value. + + The defined minimum value is inclusive of the represented values while the **maximum is not included**. For example, given a min of ``2`` and a max of ``5``, the range would represent the values ``2, 3, 4``. + + types: + int: + description: | + A range can be defined as an integer representing just a singular number. For example a range defined as ``3`` is equivalent + to a range with a min of ``3`` and a max of ``3+1`` or ``4``. + + When defined under a parameter called ``range`` this would look like: + + .. code:: yaml + + range: 3 + map: + description: | + To specify the minimum and maximum values, a range can be defined as a map with the following parameters: + footer: | + When defined under a parameter called ``range`` this would look like: + + .. code:: yaml + + range: + min: 2 + max: 5 + params: + min: + type: Integer + summary: The minimum value (inclusive) of the range. + max: + type: Integer + summary: The maximum value (exclusive) of the range. + + BiomeProvider: + type: TEMPLATED + description: | + A biome provider provides a :doc:`/config/documentation/objects/Biome` for any given position in the world. Biome providers + are the main way to determine and configure *where* biomes will generate. + + You can use the aptly named `Biome Tool ` to preview biome distribution defined by your + pack's BiomeProvider. It is recommended to run the Biome Tool from your ``Terra`` directory so that all the addons + and packs you are developing with are loaded by the Biome Tool. + + Biome: + type: REGISTRY_KEY + description: | + Represents a reference to a Terra biome defined by a :doc:`/config/documentation/configs/BIOME` config. + + ``Biome``\s are defined as the referenced biome's ID. For example a ``BIOME`` config with an id of ``FOREST`` would be referenced in a ``biome`` parameter like so: + + .. code:: yaml + + biome: FOREST + + Palette: + type: MULTI_TYPE + description: | + Represents a reference to a :doc:`/config/documentation/configs/PALETTE` config. + + ``Palette``\s are defined as the referenced palette's ID. For example a ``PALETTE`` config with + an id of ``GRASS_MIX`` would be referenced in a ``palette`` parameter like so: + + .. code:: yaml + + palette: GRASS_MIX + + Feature: + type: MULTI_TYPE + description: | + Represents a reference to a :doc:`/config/documentation/configs/FEATURE` config. + + ``Feature``\s are defined as the referenced feature's ID. For example a ``FEATURE`` config with + an id of ``OAK_TREES`` would be referenced in a ``feature`` parameter like so: + + .. code:: yaml + + feature: OAK_TREES + + Structure: + type: MULTI_TYPE + description: | + Represents a reference to a structure via its id. + + Block: + type: MULTI_TYPE + description: | + Defines a block id. What block ids can be used is dependent on the platform. All block ids in + the base Terra platforms are Minecraft block ids, for example ``minecraft:grass_block``. + + Block states can additionally be specified by including comma separated pairs with an contained within square brackets + after the id, for example: ``minecraft:note_block[instrument=harp, note=9]``. + + Distributor: + type: TEMPLATED + description: | + When defined in a :doc:`/config/documentation/configs/FEATURE` config, distributors determine which columns in the world + structures can be placed in. + + Distributors operate in 2D. For each set of 2D coordinates, a distributor will return either *true* or *false*, + where true means a structure may generate within that column. + + Locator: + type: TEMPLATED + description: | + When defined in a :doc:`/config/documentation/configs/FEATURE` config, distributors determine what Y levels a structure + can be placed at. + + Locators iterate through each block within a column of blocks in the world (typically within a constrained Y level range + defined by the specific locator), and return either *true* or *false* if structures should generate at + that position or not. + + GenerationStage: + type: TEMPLATED + + Tag: + type: MULTI_TYPE + description: | + Tags are a way of identifying biomes, and are defined as strings. Tags are primarily used for biome distribution to group + biomes together to be distributed in a certain way. For example, all biomes tagged with ``USE_DESERT_OASIS`` could be configured + to randomly be replaced with a desert oasis biome by the :doc:`/config/documentation/objects/BiomeProvider`\. + + All biomes implicitly have the tag ``ALL``. This allows for every biome to be a target by specifying ``ALL``. + + All biomes also are implicitly tagged with their own id, meaning to reference a specific biome via tag, you simply use + its id. + + PlatformBiome: + type: MULTI_TYPE + description: | + A reference to a platform specific biome defined as a string. For all base Terra platforms, biomes are referenced by Minecraft + biome ids as you would see them in the f3 debug screen, for example ``minecraft:plains``. This also includes any modded biomes + that may be available. + + ChunkGenerator: + type: MULTI_TYPE + + configs: + pack.yml: + description: | + The config pack manifest. + + Defines things that are applicable pack-wide. + use-global-template: false + + config-templates: + pack.yml: + base: + params: + id: + type: String + summary: The id used to identify the config pack. + description: | + This will be used to specify the config pack as a world generator by the platform. + author: + type: String + default: Anon Y. Mous + summary: Who developed the config pack. + stages: + type: List + summary: A list of generation stages. + description: | + Generation stages are applied sequentially after initial chunk generation done by the defined :doc:`/config/documentation/objects/ChunkGenerator`. + version: + type: Version + summary: The version of the config pack. + generator: + type: ChunkGenerator + summary: Determines which chunk generator to use. + description: | + Chunk generators set the initial blocks in a chunk before any generation stages are applied. + biomes: + type: BiomeProvider + summary: Determines where biomes should generate in the world. diff --git a/src/main/resources/documentation/addons/biome-provider-extrusion.yml b/src/main/resources/documentation/addons/biome-provider-extrusion.yml new file mode 100644 index 0000000..7f60270 --- /dev/null +++ b/src/main/resources/documentation/addons/biome-provider-extrusion.yml @@ -0,0 +1,42 @@ +biome-provider-extrusion: + objects: + Extrusion: + type: TEMPLATED + ExtrusionReplaceableBiome: + type: MULTI_TYPE + types: + string: + + templates: + BiomeProvider: + EXTRUSION: + params: + provider: + type: BiomeProvider + resolution: + type: Integer + default: "4" + extrusions: + type: List + + Extrusion: + SamplerExtrusionTemplate: + abstract: true + params: + sampler: + type: NoiseSampler + range: + type: Range + SET: + extends: SamplerExtrusionTemplate + params: + to: + type: WeightedList + REPLACE: + extends: SamplerExtrusionTemplate + params: + to: + type: WeightedList + from: + type: String + diff --git a/src/main/resources/documentation/addons/biome-provider-image-v2.yml b/src/main/resources/documentation/addons/biome-provider-image-v2.yml new file mode 100644 index 0000000..0419f52 --- /dev/null +++ b/src/main/resources/documentation/addons/biome-provider-image-v2.yml @@ -0,0 +1,41 @@ +biome-provider-image-v2: + objects: + BiomeColorConverter: + type: TEMPLATED + BiomeColorMapping: + type: TEMPLATED + + templates: + BiomeColorConverter: + EXACT: + params: + match: + type: BiomeColorMapping + else: + type: Biome + ignore-alpha: + type: Boolean + default: "true" + CLOSEST: + params: + match: + type: BiomeColorMapping + + BiomeColorMapping: + USE_BIOME_COLORS: + description: Maps to each biome using its declared ``color`` parameter. + MAP: + params: + map: + type: Map + BiomeProvider: + IMAGE: + params: + color-sampler: + type: ColorSampler + color-conversion: + type: BiomeColorConverter + resolution: + type: Integer + default: "1" + diff --git a/src/main/resources/documentation/addons/biome-provider-pipeline-v2.yml b/src/main/resources/documentation/addons/biome-provider-pipeline-v2.yml new file mode 100644 index 0000000..16528a1 --- /dev/null +++ b/src/main/resources/documentation/addons/biome-provider-pipeline-v2.yml @@ -0,0 +1,343 @@ +biome-provider-pipeline-v2: + objects: + Source: + type: TEMPLATED + description: A pipeline source + PipelineBiome: + type: MULTI_TYPE + description: | + A representation of a biome to be distributed across the biome pipeline. + + Pipeline biomes may either represent: + + - Regular :doc:`/config/documentation/objects/Biome`\s + + - Placeholder biomes + + - Replacement targets + + Representing Regular Biomes + =========================== + + If defined as an existing biome's id, then the pipeline biome will simply represent the biome. The pipeline biome representing + a regular biome will use all the regular biome's tags. + + Placeholder Biomes + ================== + + If a pipeline biome does not correspond to any regular biome id, it will be treated as a placeholder biome instead. + + Placeholder biomes act as regular biomes being passed through the biome pipeline, but can be used as placeholder names representing + anything you'd like. Conventionally placeholder biomes should be all lowercase to distinguish them from regular biome ids. + + For example rather than distributing actual biomes within a :doc:`/config/documentation/objects/Source`\, + more general 'land' and 'ocean' placeholders can be used: + + .. code:: yaml + + source: + type: SAMPLER + biomes: + - land: 1 + - ocean: 1 + sampler: + type: OPEN_SIMPLEX_2 + + For a pipeline to be valid, **it must not be possible for a placeholder biome to be found in the final biome distribution**. This + means that any placeholder biomes introduced into the pipeline must eventually be replaced by pipeline biomes that represent + real biomes. + + A placeholder biome ending up in the final distribution is called a 'pipeline leak'. + + The above source by itself would not load unless both ``land`` and ``ocean`` are eventually replaced with pipeline + biomes representing regular biomes. + + Self Syntax + =========== + + Pipeline biomes being 'replaced to' may be defined as ``SELF``, which acts as a placeholder for the pipeline biome being replaced. + This is useful when you want to replace pipeline biomes containing a :doc:`/config/documentation/objects/Tag` with themselves in + addition to other biomes. + + types: + string: + Stage: + type: TEMPLATED + + templates: + BiomeProvider: + PIPELINE: + description: | + 'The pipeline' is a biome provider that distributes biomes procedurally in 2D. + + The name comes from the way it operates, there is a 'source' which produces an + initial biome layout, which then flows through successive stages that each modify + the layout in some particular way. The final placement of biomes is determined + by the result after all stages have been applied. + + .. image:: /img/config/documentation/pipeline-diagram.png + :width: 50% + + Biome layouts can be thought of as images, where there would be biomes instead + of colors for each pixel. Each stage can be thought of as some kind of filter + or effect that is applied to the image. + + params: + resolution: + type: Integer + default: "1" + summary: A performance parameter that determines the size of each biome 'pixel' in blocks. + description: | + Increasing this will make the pipeline perform better, but also makes the biome distribution + look more pixelated. A resolution of 1 results in the best quality. Resolutions between 2 and + 4 don't have very apparent pixelation when used in conjunction with blending. + blend.sampler: + type: NoiseSampler + default: Constant 0 + summary: A sampler that blends the pixelated effect produced by higher resolutions. + description: Blending is done using the process of :ref:`domain-warping`. + blend.amplitude: + type: Float + default: "0.0" + summary: The blend strength. + pipeline.source: + type: Source + summary: The initial biome layout. + pipeline.stages: + type: List + summary: A list of stages that are successively applied. + + Source: + SAMPLER: + description: | + Distributes a :ref:`weighted list ` of pipeline biomes according to a :doc:`/config/documentation/objects/NoiseSampler`\. + params: + sampler: + type: NoiseSampler + biomes: + type: WeightedList + + Stage: + StageTemplate: + abstract: true + params: + sampler: + type: NoiseSampler + summary: The noise sampler used to distribute pipeline biomes. + FRACTAL_EXPAND: + description: | + Reduces the fidelity of prior stages while also adding extra 'fuzzy-ness'. + + This is done by spacing out each :doc:`/config/documentation/objects/PipelineBiome` then filling the empty space randomly + with a nearby pipeline biome: + + Given a 2x2 grid of pipeline biomes: + + === === + `a` `b` + `c` `d` + === === + + Applying an expander would result in a 3x3 grid like so: + + ========== ======================== ========== + `a` `a` or `b` `b` + `a` or `c` `a` or `b` or `c` or `d` `b` or `d` + `c` `c` or `d` `d` + ========== ======================== ========== + params: + sampler: + type: NoiseSampler + summary: Used to randomly determine which pipeline biome should be chosen. + description: | + The output of the noise sampler is expected to be evenly distributed across [-1, 1]. + Usually just a basic ``WHITE_NOISE`` noise sampler will suffice for this. + footer: | + `EXAMPLE` + + .. code:: yaml + + stages: + - type: FRACTAL_EXPAND + sampler: + type: WHITE_NOISE + + SMOOTH: + extends: StageTemplate + description: | + Smooths out noisy borders between :doc:`/config/documentation/objects/PipelineBiome`\s. + + Given a :doc:`/config/documentation/objects/PipelineBiome` labelled ``x`` and its adjacent pipeline biomes + labelled like so: + + +---+---+---+ + | |`a`| | + +---+---+---+ + |`b`|`x`|`c`| + +---+---+---+ + | |`d`| | + +---+---+---+ + + - If ``a = d`` and ``b = c``, ``x`` will randomly be replaced with either ``a`` or ``c``. + - Otherwise if only ``a = d`` then ``x`` will be replaced with ``a``. + - Otherwise if only ``b = c`` then ``x`` will be replaced with ``b``. + - Otherwise ``x`` will remain unchanged. + params: + sampler: + type: NoiseSampler + summary: Used to randomly determine which pipeline biome should be chosen. + description: | + The output of the noise sampler is expected to be evenly distributed across [-1, 1]. + Usually just a basic ``WHITE_NOISE`` noise sampler will suffice for this. + footer: | + `EXAMPLE` + + .. code:: yaml + + stages: + - type: SMOOTH + sampler: + type: WHITE_NOISE + + REPLACE: + extends: StageTemplate + description: | + Replaces any :doc:`/config/documentation/objects/PipelineBiome`\s containing the configured :doc:`/config/documentation/objects/Tag` + with a :ref:`weighted list ` of pipeline biomes :doc:`distributed according to ` + a :doc:`/config/documentation/objects/NoiseSampler`\. + params: + from: + type: Tag + summary: Pipeline biomes containing this tag will be replaced. + to: + type: WeightedList + summary: The pipeline biomes that the ``from`` tag will be replaced with. + footer: | + `EXAMPLE` + + .. code:: yaml + + stages: + # Replaces plains biomes randomly with forest and plains + - type: REPLACE + from: PLAINS + to: + - FOREST: 1 + - PLAINS: 2 + sampler: + type: WHITE_NOISE + + REPLACE_LIST: + extends: StageTemplate + description: | + Same as the `REPLACE`_ stage, but takes an additional mapping of :doc:`/config/documentation/objects/PipelineBiome`\s to + :ref:`weighted lists ` of pipeline biomes. This is convenient for combining multiple consecutive ``REPLACE`` + stages that use the same noise sampler into one stage. + params: + default-from: + type: Tag + summary: The default tag a pipeline biome must contain to be replaced. + default-to: + type: WeightedList + summary: The list of pipeline biomes to replace any matches of the default tag with. + to: + type: Map> + summary: An additional set of mappings from pipeline biomes to weighted lists of pipeline biomes. + description: | + .. note:: + + Replacement mappings are from pipeline biomes, **not** tags! + footer: | + `EXAMPLE` + + .. code:: yaml + + stages: + # Replaces biomes tagged with USE_SPECIAL_BIOME to the SPECIAL biome, as well as + # FOREST to SPECIAL_FOREST and PLAINS to SPECIAL_PLAINS. + - type: REPLACE_LIST + default-from: USE_SPECIAL_BIOME + default-to: + - SELF: 5 # The 'SELF' pipeline biome replaces the target with itself + - SPECIAL: 1 + to: + FOREST: + - SELF: 5 + - SPECIAL_FOREST: 1 + PLAINS: + - SELF: 5 + - SPECIAL_PLAINS: 1 + sampler: + type: WHITE_NOISE + + BORDER: + extends: StageTemplate + description: | + Replaces pipeline biomes matching a tag with a :ref:`weighted list ` of + pipeline biomes :doc:`distributed according to ` a :doc:`/config/documentation/objects/NoiseSampler` only + if they are bordering any pipeline biome matching another tag. + params: + from: + type: Tag + summary: The tag bordering pipeline biomes must contain for a pipeline biome to be replaced. + replace: + type: Tag + summary: The tag a pipeline biome must contain in order to be replaced. + to: + type: WeightedList + summary: The list of pipeline biomes to replace with. + footer: | + `EXAMPLE` + + .. code:: yaml + + stages: + # Replaces biomes tagged with LAND bordering OCEAN with BEACH + - type: BORDER + replace: LAND + from: OCEAN + to: BEACH # Weighted lists of single items can be defined like this + sampler: + type: CONSTANT # Since there's only a single item we can just use CONSTANT + + BORDER_LIST: + extends: StageTemplate + description: | + Same as the `BORDER`_ stage, but takes an additional mapping of :doc:`/config/documentation/objects/PipelineBiome`\s to + :ref:`weighted lists ` of pipeline biomes. This is convenient for combining multiple consecutive ``BORDER`` + stages that use the same noise sampler into one stage. + params: + from: + type: Tag + summary: The tag bordering pipeline biomes must contain for a pipeline biome to be replaced. + default-replace: + type: Tag + summary: The default tag a pipeline biome must contain in order to be replaced. + default-to: + type: WeightedList + summary: The default list of pipeline biomes to replace pipeline biomes containing the default replace tag with. + replace: + type: Map> + summary: An additional set of mappings from pipeline biomes to weighted lists of pipeline biomes. + description: | + .. note:: + + Replacement mappings are from pipeline biomes, **not** tags! + footer: | + `EXAMPLE` + + .. code:: yaml + + stages: + # Replaces biomes tagged with LAND bordering OCEAN with BEACH + # With special handling for JUNGLE to be replaced with JUNGLE_BEACH + # and MUSHROOM_PLAINS with MUSHROOM_BEACH + - type: BORDER + default-replace: LAND + from: OCEAN + default-to: BEACH # Weighted lists of single items can be defined like this + replace: + JUNGLE: JUNGLE_BEACH + MUSHROOM_PLAINS: MUSHROOM_BEACH + sampler: + type: CONSTANT # Since there's only a single item in each mapping we can just use CONSTANT diff --git a/src/main/resources/documentation/addons/biome-provider-single.yml b/src/main/resources/documentation/addons/biome-provider-single.yml new file mode 100644 index 0000000..f18d2ae --- /dev/null +++ b/src/main/resources/documentation/addons/biome-provider-single.yml @@ -0,0 +1,7 @@ +biome-provider-single: + templates: + BiomeProvider: + SINGLE: + params: + biome: + type: Biome diff --git a/src/main/resources/documentation/addons/chunk-generator-noise-3d.yml b/src/main/resources/documentation/addons/chunk-generator-noise-3d.yml new file mode 100644 index 0000000..b52212d --- /dev/null +++ b/src/main/resources/documentation/addons/chunk-generator-noise-3d.yml @@ -0,0 +1,67 @@ +chunk-generator-noise-3d: + objects: + SlantLayer: + type: MULTI_TYPE + types: + map: + params: + threshold: + type: Float + palette: + type: List> + + config-templates: + pack.yml: + base: + description: The following parameters are only applicable if :bdg-primary:`generator` is set to ``NOISE_3D`` + params: + blend.terrain.elevation: + type: Integer + default: "4" + carving.resolution.horizontal: + type: Integer + default: "4" + carving.resolution.vertical: + type: Integer + default: "2" + slant.calculation-method: + type: SlantCalculationMethod + default: "Derivative" + BIOME: + base: # This is actually two different templates but they are applied together so documented as one + description: The following parameters are only applicable if :bdg-primary:`generator` in :doc:`/config/documentation/configs/pack.yml` is set to ``NOISE_3D`` + params: + slant: + type: List + default: "[]" + slant-depth: + type: Integer + default: Infinity + palette: + type: List> + ocean.level: + type: Integer + default: "0" + ocean.palette: + type: Palette + default: Palette of air + carving.update-palette: + type: Boolean + default: "false" + terrain.sampler: + type: NoiseSampler + terrain.sampler-2d: + type: NoiseSampler + default: "`CONSTANT` noise sampler outputting `0`" + terrain.blend.distance: + type: Integer + default: "3" + terrain.blend.weight: + type: Float + default: "1.0" + terrain.blend.step: + type: Integer + default: "4" + terrain.blend.weight-2d: + type: Float + default: "1.0" diff --git a/src/main/resources/documentation/addons/config-biome.yml b/src/main/resources/documentation/addons/config-biome.yml new file mode 100644 index 0000000..a820dc3 --- /dev/null +++ b/src/main/resources/documentation/addons/config-biome.yml @@ -0,0 +1,14 @@ +config-biome: + configs: + BIOME: + registers: Biome + config-templates: + BIOME: + base: + params: + vanilla: + type: PlatformBiome + color: + type: Integer + tags: + type: Set diff --git a/src/main/resources/documentation/addons/config-distributors.yml b/src/main/resources/documentation/addons/config-distributors.yml new file mode 100644 index 0000000..53197c9 --- /dev/null +++ b/src/main/resources/documentation/addons/config-distributors.yml @@ -0,0 +1,47 @@ +config-distributors: + objects: + Point: + type: MULTI_TYPE + types: + map: + params: + x: + type: Integer + z: + type: Integer + templates: + Distributor: + SAMPLER: + params: + threshold: + type: Float + default: "0.0" + sampler: + type: NoiseSampler + POINTS: + params: + points: + type: Set + PADDED_GRID: + params: + width: + type: Integer + padding: + type: Integer + salt: + type: Integer + AND: + params: + distributors: + type: List + OR: + params: + distributors: + type: List + XOR: + params: + distributors: + type: List + "YES": + "NO": + diff --git a/src/main/resources/documentation/addons/config-feature.yml b/src/main/resources/documentation/addons/config-feature.yml new file mode 100644 index 0000000..661bc49 --- /dev/null +++ b/src/main/resources/documentation/addons/config-feature.yml @@ -0,0 +1,18 @@ +config-feature: + configs: + FEATURE: + registers: Feature + config-templates: + FEATURE: + base: + params: + id: + type: String + distributor: + type: Distributor + locator: + type: Locator + structures.structures: + type: WeightedList + structures.distribution: + type: NoiseSampler diff --git a/src/main/resources/documentation/addons/config-locators.yml b/src/main/resources/documentation/addons/config-locators.yml new file mode 100644 index 0000000..062ace9 --- /dev/null +++ b/src/main/resources/documentation/addons/config-locators.yml @@ -0,0 +1,107 @@ +config-locators: + objects: + Pattern: + type: TEMPLATED + + templates: + Locator: + SURFACE: + params: + range: + type: Range + TOP: + params: + range: + type: Range + RANDOM: + params: + height: + type: Range + amount: + type: Range + salt: + type: Integer + default: "0" + GAUSSIAN_RANDOM: + params: + height: + type: Range + amount: + type: Range + standard-deviation: + type: Float + salt: + type: Integer + default: "0" + PATTERN: + params: + range: + type: Range + pattern: + type: Pattern + ADJACENT_PATTERN: + params: + range: + type: Range + pattern: + type: Pattern + match-all: + type: Boolean + default: "false" + SAMPLER: + params: + samplers: + type: List + SAMPLER_3D: + params: + sampler: + type: NoiseSampler + AND: + params: + locators: + type: List + OR: + params: + locators: + type: List + XOR: + params: + locators: + type: List + Pattern: + MATCH_AIR: + params: + offset: + type: Range + MATCH_SOLID: + params: + offset: + type: Range + MATCH: + params: + block: + type: Block + offset: + type: Range + MATCH_SET: + params: + blocks: + type: Set + offset: + type: Range + AND: + params: + patterns: + type: List + OR: + params: + patterns: + type: List + XOR: + params: + patterns: + type: List + NOT: + params: + pattern: + type: Pattern diff --git a/src/main/resources/documentation/addons/config-noise-function.yml b/src/main/resources/documentation/addons/config-noise-function.yml new file mode 100644 index 0000000..3d7854f --- /dev/null +++ b/src/main/resources/documentation/addons/config-noise-function.yml @@ -0,0 +1,913 @@ +config-noise-function: + objects: + DimensionApplicableSampler: + type: MULTI_TYPE + types: + map: + params: + dimensions: + type: Integer + .: + type: NoiseSampler + + MathFunction: + type: MULTI_TYPE + description: A math function + types: + map: + params: + expression: + type: Expression + arguments: + type: List + default: "[]" + functions: + type: Map + default: "{}" + + CubicSplinePoint: + type: MULTI_TYPE + types: + map: + params: + from: + type: Float + summary: The value input noise will be mapped from. + to: + type: Float + summary: Output value when input noise = ``from``. + gradient: + type: Float + summary: The gradient / slope the cubic spline should follow at the point. + + config-templates: + pack.yml: + base: + params: + samplers: + type: Map + summary: A set of samplers globally accessible within :doc:`/config/documentation/objects/Expression`\s in ``EXPRESSION`` samplers defined inside other config files. + description: | + .. note:: + + Samplers defined under this parameter cannot reference each other, and are only + able to be used in other config files. + default: "{}" + functions: + type: Map + default: "{}" + summary: A set of math functions globally accessible within :doc:`/config/documentation/objects/Expression`\s in ``EXPRESSION`` samplers defined inside other config files. + description: | + .. note:: + + Functions defined under this parameter cannot reference each other, and are only + able to be used in other config files. + + templates: + NoiseSampler: + AbstractNoiseTemplate: + abstract: true + params: + frequency: + type: Float + summary: Controls the :ref:`frequency ` of noise. + default: "0.02" + salt: + type: Integer + summary: Determines the :ref:`seed ` for the sampler. + default: "0" + + AbstractBinaryArithmeticTemplate: + abstract: true + params: + left: + type: NoiseSampler + right: + type: NoiseSampler + + AbstractFractalizerTemplate: + abstract: true + params: + sampler: + type: NoiseSampler + octaves: + type: Integer + default: "3" + gain: + type: Float + default: "0.5" + lacunarity: + type: Float + default: "2.0" + weighted-strength: + type: Float + default: "0.0" + + AbstractNormalizerTemplate: + abstract: true + params: + sampler: + type: NoiseSampler + + DISTANCE: + description: | + Returns the distance from a point. + params: + distance-function: + type: String + default: Euclidean + summary: The function used to calculate distance between sample positions and the configured point. + description: | + Valid values: + + - ``Euclidean`` - Regular distance calculated using the Pythagorean theorem. See the `Wikipedia page `__ for more info. + - ``EuclideanSq`` - Same as ``Euclidean`` but the result is squared. (This is included if exact distance is not needed, and is slightly faster than ``Euclidean`` as it avoids a slow ``sqrt`` call.) + - ``Manhattan`` - See the `Wikipedia page `__ for more info. + point.x: + type: Float + default: "0" + point.y: + type: Float + description: Only relevant if the sampler is sampling in 3D. + default: "0" + point.z: + type: Float + default: "0" + normalize: + type: Boolean + summary: If set to true, the returned distance will be normalized to be within the range ``[-1, 1]``, otherwise the raw distance is returned. + description: "``-1`` corresponds to the distance = ``0``, and ``1`` to distance = radius as configured by the ``radius`` parameter. Any distances above ``radius`` will clamped to ``1``." + default: "false" + radius: + type: Float + summary: The radius from the configured point corresponding to an output of ``1``. + description: Only relevant if ``normalize`` is set to ``true``. + default: "100" + + WHITE_NOISE: + extends: AbstractNoiseTemplate + description: | + Produces `White noise`_. + + .. image:: /img/concepts/noise/whitenoise64x64.png + + .. _White noise: https://en.wikipedia.org/wiki/White_noise + + POSITIVE_WHITE_NOISE: + extends: AbstractNoiseTemplate + description: | + Identical to `WHITE_NOISE`_, but redistributed to only produce positive + values for convenience. + + GAUSSIAN: + extends: AbstractNoiseTemplate + description: | + Identical to `WHITE_NOISE`_, but redistributed to follow a `gaussian distribution`_\. + + .. _gaussian distribution: https://en.wikipedia.org/wiki/Normal_distribution + + PERLIN: + extends: AbstractNoiseTemplate + description: | + Produces `Perlin noise`_. + + .. _Perlin noise: https://en.wikipedia.org/wiki/Perlin_noise + + footer: | + .. tip:: + + It is recommended to use other simplex based samplers rather than PERLIN, as + Perlin noise produces signficant directional artifacts, which may be undesired. + + SIMPLEX: + extends: AbstractNoiseTemplate + description: | + Produces `Simplex noise`_. + + .. _Simplex noise: https://en.wikipedia.org/wiki/Simplex_noise + + OPEN_SIMPLEX_2: + extends: AbstractNoiseTemplate + description: | + Produces `Simplex noise`_ (using the algorithm from OpenSimplex2_). + + .. _Simplex noise: https://en.wikipedia.org/wiki/Simplex_noise + .. _OpenSimplex2: https://github.com/KdotJPG/OpenSimplex2 + + .. image:: /img/concepts/noise/opensimplex2_64x64.png + + OPEN_SIMPLEX_2S: + extends: AbstractNoiseTemplate + description: | + Produces smoother `Simplex noise`_ (using the algorithm from OpenSimplex2_). + + .. _Simplex noise: https://en.wikipedia.org/wiki/Simplex_noise + .. _OpenSimplex2: https://github.com/KdotJPG/OpenSimplex2 + + VALUE: + extends: AbstractNoiseTemplate + description: | + Produces `Value noise`_ using `linear interpolation`_ (`bilinear`_ for 2D, `trilinear`_ for 3D). + + .. _Value noise: https://en.wikipedia.org/wiki/Value_noise + .. _linear interpolation: https://en.wikipedia.org/wiki/Linear_interpolation + .. _bilinear: https://en.wikipedia.org/wiki/Bilinear_interpolation + .. _trilinear: https://en.wikipedia.org/wiki/Trilinear_interpolation + + VALUE_CUBIC: + extends: AbstractNoiseTemplate + description: | + + Identical to `VALUE`_ except using `cubic interpolation`_ (`bicubic`_ for 2D, `tricubic`_ for 3D). + + .. _cubic interpolation: https://en.wikipedia.org/wiki/Cubic_Hermite_spline#Interpolation_on_a_single_interval + .. _bicubic: https://en.wikipedia.org/wiki/Bicubic_interpolation + .. _tricubic: https://en.wikipedia.org/wiki/Tricubic_interpolation + + GABOR: + extends: AbstractNoiseTemplate + description: | + + Produces `Gabor noise`_. + + .. _Gabor noise: https://graphics.cs.kuleuven.be/publications/GLLD12GNBE/ + + .. warning:: + + The GABOR sampler is significantly slower at producing noise compared to other noise samplers. + params: + rotation: + type: Float + default: "0.25" + isotropic: + type: Boolean + default: "true" + deviation: + type: Float + default: "1.0" + impulses: + type: Float + default: "64.0" + frequency_0: + type: Float + default: "0.625" + + CELLULAR: + extends: AbstractNoiseTemplate + description: | + Produces cellular / `Worley noise`_. + + .. _Worley noise: https://en.wikipedia.org/wiki/Worley_noise + + .. image:: /img/concepts/noise/cellular_256x256.png + + **DIAGRAM** + + .. image:: /img/concepts/noise/cellular_diagram.svg + + .. role:: black + .. role:: red + .. role:: blue + .. role:: green + .. role:: purple + .. role:: orange + .. role:: gold + + - :black:`Black dots` - The center of each cell. + - :red:`Red lines` - A random direction and distance from the cell center, called 'jitter'. + - :blue:`Blue dots` - The cell origin, determined by jitter from the cell center. + - :green:`Green dot` - Coordinates being sampled. + - :purple:`Purple line` - Distance to the closest cell origin. + - :orange:`Orange line` - Distance to the second closest cell origin. + - :gold:`Gold line` - Distance to the third closest cell origin. + + params: + distance: + type: String + summary: The method used for calculating the distance from the cell origin. + default: EuclideanSq + description: | + **Distance Types** + + - ``Euclidean`` + - ``EuclideanSq`` + - ``Manhattan`` + - ``Hybrid`` + return: + type: String + summary: The function the sampler will use to calculate the noise. + default: Distance + description: | + **Return Types** + + Definitions: + + ``s`` - The coordinates being sampled. + + ``c`` - The coordinates of the nearest cell origin. + + ``d1`` - The distance from the nearest cell origin. + + ``d2`` - The distance from the second nearest cell origin + + ``d3`` - The distance from the third nearest cell origin + + Types: + + - ``NoiseLookup`` - Passes ``c`` into a sampler, and returns the output. + - ``CellValue`` - Returns a random value based on ``c`` (Equivalent to ``NoiseLookup`` with a `WHITE_NOISE`_ sampler). + - ``LocalNoiseLookup`` - Passes ``s - c`` into a sampler, and returns the output. + - ``Angle`` - Returns the angle from ``s`` to ``c``. + - ``Distance`` - Returns ``d1``. + - ``Distance2``- Returns ``d2``. + - ``Distance2Add`` - Returns ``(d1 + d2) / 2``. + - ``Distance2Sub`` - Returns ``d2 - d1``. + - ``Distance2Mul`` - Returns ``(d1 * d2) / 2``. + - ``Distance2Div`` - Returns ``d1 / d2``. + - ``Distance3`` - Returns ``d3``. + - ``Distance3Add`` - Returns ``(d1 + d3) / 2``. + - ``Distance3Sub`` - Returns ``d3 - d1``. + - ``Distance3Mul`` - Returns ``d3 * d1``. + - ``Distance3Div`` - Returns ``d1 / d3``. + jitter: + type: Float + summary: Determines how far cell origins can randomly spread out from the center of cells. + default: "1" + description: | + A jitter of ``0`` places cell origins exactly in the center of each cell, resulting in a perfect grid. + Values between ``-1`` and ``1`` are recommended, as values outside that range may produce artifacts. + + lookup: + type: NoiseSampler + summary: The lookup sampler used when the ``distance`` parameter is set to ``NoiseLookup`` + default: "`OPEN_SIMPLEX_2`_ sampler" + + IMAGE: + description: | + Outputs the channel of an image that is tiled, redistributed from the channel range [0-255] to output range [-1, 1]. + footer: | + .. dropdown:: Example Image Samplers + + .. grid:: 3 + + .. grid-item:: **grayscale_circles.png** + :padding: 0 + + .. image:: /img/concepts/noise/image/grayscale_circles.png + :width: 200 + + .. grid-item:: **mountain_heightmap.png** + + .. image:: /img/concepts/noise/image/mountain_heightmap.png + :width: 200 + + World generated using the mountain heightmap to shape the terrain, and the circles + to determine biome temperature: + + .. image:: /img/concepts/noise/image/image_distributed_biomes.png + :width: 50% + + **Terrain Sampler** (Using `LINEAR_HEIGHTMAP`_ to work as a terrain sampler) + + .. code-block:: yaml + + type: LINEAR_HEIGHTMAP + base: 128 + scale: 64 + sampler: + type: IMAGE + image: mountain_heightmap.png + channel: GRAYSCALE + frequency: 1 + + **Temperature Sampler** + + .. code-block:: yaml + + type: IMAGE + image: grayscale_circles.png + channel: GRAYSCALE + frequency: 1 + + params: + image: + type: String + summary: "Path to the image relative to the config pack directory. (For Windows users: Use the ``/`` directory separator instead of ``\\``)" + description: | + Example path: `path/to/the/image.png` + frequency: + type: Float + summary: :ref:`Frequency ` of the image. Determines how the image gets scaled. + description: | + A frequency of ``1.0`` means 1 pixel = 1 block, a frequency of ``2.0`` means 2 pixels = 1 block. + + .. attention:: + + Frequencies below ``1.0`` are not recommended, as pixels aren't interpolated when upscaled; + results may look pixelated depending on use. + + .. grid:: 3 + + .. grid-item:: **grayscale_circles.png** + :padding: 0 + + .. image:: /img/concepts/noise/image/grayscale_circles.png + :width: 200 + + .. grid-item:: **1.0 Frequency** + + .. image:: /img/concepts/noise/image/image_sampler_circles_frequency_1.0_zoomed.png + :width: 200 + + .. grid-item:: **0.25 Frequency** + + .. image:: /img/concepts/noise/image/image_sampler_circles_frequency_0.25_zoomed.png + :width: 200 + + ``0.25`` frequency = ``0.25 pixels = 1 block`` or ``1 pixel = 4 blocks`` (as demonstrated above using a block grid). + channel: + type: String + summary: Which channel of the image to output. + description: | + Valid channels: + + - ``GRAYSCALE`` + - ``ALPHA`` + - ``RED`` + - ``GREEN`` + - ``BLUE`` + + .. card:: Channel Examples + + .. grid:: 6 + + .. grid-item:: Original Image + :columns: 4 + + .. image:: /img/concepts/noise/image/pacman_ghosts.png + + .. grid-item:: Grayscale + :columns: 4 + + .. image:: /img/concepts/noise/image/pacman_ghosts_grayscale.png + + .. grid-item:: Alpha Channel* + :columns: 4 + + .. image:: /img/concepts/noise/image/pacman_ghosts_alpha_channel.png + + .. grid-item:: Red Channel + :columns: 4 + + .. image:: /img/concepts/noise/image/pacman_ghosts_red_channel.png + + .. grid-item:: Green Channel + :columns: 4 + + .. image:: /img/concepts/noise/image/pacman_ghosts_green_channel.png + + .. grid-item:: Blue Channel + :columns: 4 + + .. image:: /img/concepts/noise/image/pacman_ghosts_blue_channel.png + + \*The alpha channel is all white because there is no transparency in the original image. + + CONSTANT: + description: | + Outputs a constant value, regardless of the inputs. Typically used in cases where you + don't want the sampler to do anything. + params: + value: + type: Float + summary: The value to be outputted. + default: "0.0" + + DOMAIN_WARP: + description: | + Warps a sampler by another sampler. See :ref:`Domain Warping ` for more information. + params: + warp: + type: NoiseSampler + summary: The sampler that determines warping. + + sampler: + type: NoiseSampler + summary: The sampler to be warped. + + amplitude: + type: Float + summary: How much warping to apply. + default: "1.0" + + KERNEL: + params: + kernel: + type: List> + sampler: + type: NoiseSampler + factor: + type: Float + default: "1.0" + frequency: + type: Float + default: "1.0" + + LINEAR_HEIGHTMAP: + description: | + Treats a 2D sampler as a heightmap, converting it to a 3D `SDF`_ + for use as a terrain sampler. + + .. _SDF: https://en.wikipedia.org/wiki/Signed_distance_function + params: + base: + type: Float + summary: The base y level of the terrain. + + sampler: + type: NoiseSampler + summary: The sampler to be used as a heightmap. + default: "`CONSTANT`_ sampler" + + scale: + type: Float + summary: Scales the height of the heightmap. + default: "1.0" + + FBM: + extends: AbstractFractalizerTemplate + + PING_PONG: + extends: AbstractFractalizerTemplate + params: + ping-pong: + type: Float + default: "2.0" + + RIDGED: + extends: AbstractFractalizerTemplate + + LINEAR: + extends: AbstractNormalizerTemplate + description: | + Redistributes the range ``[min, max]`` to ``[-1, 1]``, typically for use with weighted + pools. + params: + max: + type: Float + min: + type: Float + + CUBIC_SPLINE: + extends: AbstractNormalizerTemplate + description: | + Remaps values using a cubic spline defined according to a set of points and gradients. + params: + points: + type: List + + EXPRESSION_NORMALIZER: + extends: AbstractNormalizerTemplate + description: | + Returns the result of evaluating an expression that uses samples provided by the input sampler. + params: + expression: + type: Expression + summary: An expression utilizes the ``in`` variable (short for 'input'). + description: | + The ``in`` variable is calculated by the result of passing the coordinates of the current sampler to the provided input ``sampler``. + variables: + type: Map + summary: An additional mapping of named constant variables that can be used by the ``expression``. + default: "{}" + samplers: + type: Map + summary: An additional mappping of named noise samplers that can be used in the ``expression``. + description: | + This probably won't be too useful as ``expression`` does not expose access to ``x``, ``y``, or ``z`` variables. + This behaviour may be changed in the future. + default: "{}" + functions: + type: Map + summary: An additional mappping of named math functions that can be used in the ``expression``. + default: "{}" + footer: | + This is a convenience short hand version of the `EXPRESSION`_ sampler which you should refer to for more info. + + For example the following sampler: + + .. code:: yaml + + type: EXPRESSION + expression: (noise(x, z) + 3) / 2 + samplers: + noise: + dimensions: 2 + type: WHITE_NOISE + + Can be simplified to: + + .. code:: yaml + + type: EXPRESSION_NORMALIZER + expression: (in + 3) / 2 + sampler: + type: WHITE_NOISE + + CLAMP: + extends: AbstractNormalizerTemplate + description: | + Outputs ``max`` when the sampler outputs a value greater than ``max``, and returns ``min`` + when the sampler outputs a value less than ``min``, used to constrain sampler outputs to + a certain range. + params: + max: + type: Float + min: + type: Float + + NORMAL: + extends: AbstractNormalizerTemplate + description: | + Redistributes normally distributed outputs to be evenly distributed. + params: + mean: + type: Float + standard-deviation: + type: Float + + groups: + type: Integer + default: "16384" + + PROBABILITY: + extends: AbstractNormalizerTemplate + description: | + Redistributes the range ``[-1, 1]`` to ``[0, 1]``, typically used in cases where it's easier to + work with values from ``0`` to ``1``, e.g defining a threshold as a percentage of a noise sampler. + + SCALE: + extends: AbstractNormalizerTemplate + description: | + Evaluates ``sampler() * amplitude``. + params: + amplitude: + type: Float + + POSTERIZATION: + extends: AbstractNormalizerTemplate + description: | + Applies a step function to the sampler, where ``steps`` determines how many steps will be within + the range ``[-1, 1]``. + params: + steps: + type: Integer + + ADD: + extends: AbstractBinaryArithmeticTemplate + description: | + Evaluates ``left() + right()``. + + SUB: + extends: AbstractBinaryArithmeticTemplate + description: | + Evaluates ``left() - right()``. + + MUL: + extends: AbstractBinaryArithmeticTemplate + description: | + Evaluates ``left() * right()``. + + DIV: + extends: AbstractBinaryArithmeticTemplate + description: | + Evaluates ``left() / right()``. + + MAX: + extends: AbstractBinaryArithmeticTemplate + description: | + Evaluates ``max(left(), right())``. + + MIN: + extends: AbstractBinaryArithmeticTemplate + description: | + Evaluates ``min(left(), right())``. + + EXPRESSION: + description: | + Evaluates an arbitrary user defined expression as the sampler output. Expression + samplers additionally allow the use of user defined functions, including other samplers, + as well as constants defined within the sampler. + footer: | + .. dropdown:: Example Expression Samplers + :class-container: nested-cards + + .. card:: **Simple addition** + + .. code-block:: yaml + + type: EXPRESSION + + expression: 1 + 1 + + The sampler above outputs the result of ``1`` plus ``1``, therefore the sampler will always + output ``2``. + + .. card:: **Using variables** + + .. code-block:: yaml + + type: EXPRESSION + + variables: + a: 1 + b: 2 + + expression: a - b + + The sampler above outputs the result of ``a`` minus ``b``, which is evaluated as + ``1`` minus ``2``, therefore the sampler will always output ``-1``. + + .. card:: **Using functions** + + .. code-block:: yaml + + type: EXPRESSION + + functions: + addThenDivide: + arguments: + - a + - b + - c + expression: (a + b) / c + + expression: addThenDivide(3, 2, 10) + + The sampler above outputs the results of passing ``3``, ``2``, and ``10`` into + the function ``addThenDivide()``. This function evaluation would be ``(3 + 2) / 10``, + or ``3 + 2`` = ``5``, then ``5 / 10`` = ``0.5``. Therefore the sampler will always + output ``0.5``. + + .. card:: **Using coordinates** + + .. code-block:: yaml + + type: EXPRESSION + + expression: x + z + + The sampler above will output the result of adding the ``x`` coordinate and the ``z`` + coordinate. For example, if Terra wanted to sample a block where ``x = 4``, and ``z = 2``, + that sample would return ``4 + 2`` or ``6`` for that block. + + .. card:: **Using samplers** + + .. code-block:: yaml + + type: EXPRESSION + + samplers: + whiteNoise: + dimensions: 2 + type: WHITE_NOISE + + expression: whiteNoise(2, 5) + + The sampler above will output the result of a 2D `WHITE_NOISE`_ sampler when passed + the coordinates ``X = 2`` and ``Z = 5``. + + .. card:: **Salting samplers** + + .. code-block:: yaml + + type: EXPRESSION + + samplers: + whiteNoise: + dimensions: 2 + type: WHITE_NOISE + salt: 2 + + expression: whiteNoiseSalted(2, 5, 1) + + The sampler above will output the result of a 2D `WHITE_NOISE`_ sampler when passed + the coordinates ``X = 2`` and ``Z = 5`` and ``salt = 3`` (the specified salt is additive + to any already configured salt, in this case ``2 + 1 = 3``). + + The ``Salted`` function is automatically generated for each sampler with the salt + added as the last parameter of the sampler call. This also works for samplers contained within + other samplers, e.g. nested `EXPRESSION`_ or `DOMAIN_WARP`_ samplers. + + .. card:: **Combining everything** + + .. code-block:: yaml + + type: EXPRESSION + + variables: + someConstant: 3 + anotherConstant: 2.5 + + functions: + add: + arguments: + - a + - b + expression: a + b + + samplers: + exampleSampler: + dimensions: 2 + type: WHITE_NOISE + + expression: | + exampleSampler(x * 2, z * 2) + + add(someConstant, anotherConstant) + + The expression sampler above defines: + + - Two variables ``someConstant`` and ``anotherConstant``, which are ``3`` and ``2.5`` respectively. + - A 2 argument function ``exampleFunction()``, that simply adds the two arguments together. + - A 2D sampler ``exampleSampler()``. + - An expression that: + - Evaluates ``exampleSampler()`` using: + - ``x`` coordinate multiplied by ``2`` as the X coordinate, and + - ``z`` multiplied by ``2`` as the Z coordinate. + - Evaluates ``add()`` using: + - ``3`` (defined by ``someConstant``) as the ``a`` argument, and + - ``2.5`` (defined by ``anotherConstant``) as the ``b`` argument. + - Adds the result of ``add()`` or ``5.5`` to the ``exampleSampler()`` evaluation. + - Outputs the final result. + + params: + expression: + type: Expression + description: | + The expression to be evaluated for each sample. Variables ``x``, ``y`` (3D only), and ``z`` + act as the sampler's coordinate inputs. + + **Expression example** + + .. code-block:: yaml + + expression: (x * 3) / z + variables: + type: Map + default: "{}" + description: | + Defines a mapping of variable names to values for use in the scope of the expression. This + is most useful for providing named constants that can easily be modified if needed. + + **Example defining variables** + + .. code-block:: yaml + + variables: + a: 1 + b: 2 + samplers: + type: Map + summary: Defines a mapping of function names to samplers. + description: | + Each sampler may be utilized within the expression like so: ``(, )`` (for 2D) or + ``(, , )`` (for 3D), where is the declared function name, and where + the respective axis coordinates are the coordinate inputs passed to the sampler. + + .. note:: + + Samplers defined within an EXPRESSION sampler must be ``DimensionApplicableSampler``\s, + see the :doc:`DimensionApplicableSampler` section for details. + + **Example defining samplers** + + .. code-block:: yaml + + samplers: + whiteNoise: + dimensions: 2 + type: WHITE_NOISE + + default: "{}" + + functions: + type: Map + description: | + Defines a mapping of function names to user-defined math functions. Functions may be + called within the expression like so ``(, , ...)``, where is the declared + function name, and where each input coorresponds to the argument list defined by the function. + + **Example defining functions** + + .. code-block:: yaml + + functions: + addThenDivide: + arguments: + - a + - b + - c + expression: (a + b) / c + + default: "{}" + diff --git a/src/main/resources/documentation/addons/config-number-predicate.yml b/src/main/resources/documentation/addons/config-number-predicate.yml new file mode 100644 index 0000000..a8a2caa --- /dev/null +++ b/src/main/resources/documentation/addons/config-number-predicate.yml @@ -0,0 +1,6 @@ +config-number-predicate: + objects: + NumberPredicate: + type: MULTI_TYPE + types: + string: diff --git a/src/main/resources/documentation/addons/config-ore.yml b/src/main/resources/documentation/addons/config-ore.yml new file mode 100644 index 0000000..56cdf87 --- /dev/null +++ b/src/main/resources/documentation/addons/config-ore.yml @@ -0,0 +1,31 @@ +config-ore: + configs: + ORE: + registers: Structure + SCATTERED_ORE: + registers: Structure + config-templates: + ORE: + base: + params: &base-ore-template + id: + type: String + material: + type: Block + material-overrides: + type: Map + default: "{}" + replace: + type: Set + physics: + type: Boolean + default: "false" + size: + type: Float + SCATTERED_ORE: + base: + params: + <<: *base-ore-template + size: + type: Integer + default: "7" diff --git a/src/main/resources/documentation/addons/config-palette.yml b/src/main/resources/documentation/addons/config-palette.yml new file mode 100644 index 0000000..31b4edb --- /dev/null +++ b/src/main/resources/documentation/addons/config-palette.yml @@ -0,0 +1,29 @@ +config-palette: + objects: + PaletteLayer: + type: MULTI_TYPE + types: + map: + params: + materials: + type: WeightedList + layers: + type: Integer + sampler: + type: NoiseSampler + default: "None" + + configs: + PALETTE: + registers: Palette + config-templates: + PALETTE: + base: + params: + id: + type: String + layers: + type: List + sampler: + type: NoiseSampler + default: "Constant 0" diff --git a/src/main/resources/documentation/addons/generation-stage-feature.yml b/src/main/resources/documentation/addons/generation-stage-feature.yml new file mode 100644 index 0000000..7e15e59 --- /dev/null +++ b/src/main/resources/documentation/addons/generation-stage-feature.yml @@ -0,0 +1,20 @@ +generation-stage-feature: + templates: + GenerationStage: + FEATURE: + params: + id: + type: String + resolution: + type: Integer + default: "4" + config-templates: + BIOME: + base: + params: + features.: + type: List + description: | + A list of features to generate within this biome during the feature generation stage specified by ````. + + Available feature stages are defined in :doc:`/config/documentation/configs/pack.yml`. \ No newline at end of file diff --git a/src/main/resources/documentation/addons/library-image.yml b/src/main/resources/documentation/addons/library-image.yml new file mode 100644 index 0000000..4c0aaaa --- /dev/null +++ b/src/main/resources/documentation/addons/library-image.yml @@ -0,0 +1,212 @@ +library-image: + objects: + Image: + type: TEMPLATED + description: | + This page contains the different ways of defining how an image should + be loaded for use in other configurations requiring the ``Image`` type. + + ColorSampler: + type: TEMPLATED + description: | + A color sampler is a config defined function that assigns a color for every XZ coordinate pair. + Color samplers are typically used to distribute things across the entire world by utilizing color data, + for example using a heightmap to shape terrain, or an image to draw where biomes should go. + + Color samplers differ from :doc:`Image` s in that they can provide colors for any XZ coordinate, whereas + ``Image`` s only work with a set size. + + ColorString: + type: MULTI_TYPE + description: A string representing a color + + config-templates: + pack.yml: + base: + params: + images.cache.load-on-use: + type: Boolean + description: | + If set to true, images will load into memory upon use rather than on pack load. + default: "False" + images.cache.timeout: + type: Integer + default: "0" + summary: How many seconds to keep images loaded in the image cache for. + description: | + If set to a number greater than 0, images will be removed from memory if not used after the timeout, otherwise images + will stay loaded in memory. Setting the timeout to greater than 0 will trade decreased memory consumption when not + performing any image reads for a period of time for extra processing time required to perform cache lookups. + + templates: + ColorSampler: + ImageColorSamplerTemplate: + abstract: true + params: + image: + type: Image + summary: The image to be sampled + align: + type: Alignment + + MutateColorSamplerTemplate: + abstract: true + params: + color-sampler: + type: ColorSampler + + COLOR: + description: | + Provides the same color for any input. + params: + color: + type: ColorString + summary: The color to output. + + SINGLE_IMAGE: + extends: ImageColorSamplerTemplate + description: | + Outputs the pixels of an ``Image``, colors for coordinates outside the bounds of the image + are provided by a 'fallback' color sampler, which typically will be the `COLOR`_ type. + params: + outside-sampler: + type: ColorSampler + summary: The sampler that provides colors for coordinates outside the bounds of the ``Image`` . + + TILED_IMAGE: + extends: ImageColorSamplerTemplate + description: | + Outputs a repeating grid of pixels sourced from the provided ``Image`` . + + ROTATE: + extends: MutateColorSamplerTemplate + params: + angle: + type: Float + + TRANSLATE: + extends: MutateColorSamplerTemplate + params: + x: + type: Integer + z: + type: Integer + Image: + BITMAP: + description: | + Loads a singular image. For very large images that you may have issues loading, + try the `STITCHED_BITMAP`_ type instead. + params: + path-format: + type: String + summary: "Path to the image relative to the config pack directory. (For Windows users: Use the ``/`` directory separator instead of ``\\``)" + rows: + type: Integer + columns: + type: Integer + zero-indexed: + type: Boolean + default: "false" + + STITCHED_BITMAP: + description: | + An alternate way of loading ``Image`` s via a set of smaller images + arranged in a grid that are 'stitched' together during generation. + This type is primarily used when singular images are too large to be + loaded into memory (a limit imposed Java's ``BufferedImage`` class implementation). + + params: + path: + type: String + summary: "The format string for the path to the images relative to the config pack directory. (For Windows users: Use the ``/`` directory separator instead of ``\\``)" + description: | + The file name section of the path format must contain the text ``{row}`` and ``{column}`` + indicating the sections of the file names that indicate which rows and columns the files belong to. + + Given the following example image files in the pack directory to be stitched into one image: + + .. code-block:: + + my-config-pack/ + ├── pack.yml + ├── images + ┆ └── stitched-image/ + ├ my-image-0-0.png + ├ my-image-0-1.png + ├ my-image-1-0.png + └ my-image-1-1.png + + The ``path-format`` to stitch together the images would be: + + .. code-block:: yaml + + path-format: images/stitched-image/my-image-{row}-{column}.png + rows: + type: Integer + summary: How many rows of images to stitch together. + columns: + type: Integer + summary: How many columns of images to stitch together. + zero-indexed: + type: Boolean + description: | + Should be set to true if the image row and column indexes begin at 0. + default: "false" + + NoiseSampler: + + CHANNEL: + description: | + Outputs a channel from a color sampler. + params: + color-sampler: + type: ColorSampler + summary: The color sampler to extract channel values from. + normalize: + type: Boolean + summary: If the channel should be normalized to range [-1, 1] or not. + default: "true" + premultiply: + type: Boolean + summary: Whether to multiply color channels by the alpha channel or not. + description: | + If you are expecting pixel transparency to reduce the output value then this should be set to true. + default: "false" + + DISTANCE_TRANSFORM: + description: Returns the result of a `distance transform `_ on an image. + params: + image: + type: Image + threshold: + type: Integer + default: "127" + clamp-to-max-edge: + type: Boolean + default: "false" + channel: + type: Channel + default: "GRAYSCALE" + cost-function: + type: String + default: "Channel" + description: | + Valid values: + + - ``Channel`` + - ``Threshold`` + - ``ThresholdEdge`` + - ``ThresholdEdgeSigned`` + invert-threshold: + type: Boolean + default: "false" + normalization: + type: String + default: "None" + description: | + Valid values: + + - ``None`` + - ``Linear`` + - ``SmoothPreserveZero`` + diff --git a/src/main/resources/documentation/addons/pipeline-image.yml b/src/main/resources/documentation/addons/pipeline-image.yml new file mode 100644 index 0000000..5b77aa8 --- /dev/null +++ b/src/main/resources/documentation/addons/pipeline-image.yml @@ -0,0 +1,13 @@ +pipeline-image: + objects: + PipelineBiomeColorConverter: + type: TEMPLATED + templates: + Source: + IMAGE: + params: + color-sampler: + type: ColorSampler + color-conversion: + type: PipelineBiomeColorConverter + diff --git a/terraDocs b/terraDocs new file mode 160000 index 0000000..92e935d --- /dev/null +++ b/terraDocs @@ -0,0 +1 @@ +Subproject commit 92e935d2203906bde6619c40e603012c4475bc48 From 9135e3c5ffdfe85862c9ac58c2b1289919b77efc Mon Sep 17 00:00:00 2001 From: Christian Bergschneider Date: Sun, 7 Dec 2025 18:29:57 +0100 Subject: [PATCH 06/11] chore: update registry stubs to 1.21.11 --- build.gradle.kts | 4 +- src/main/resources/registryData/blocks.json | 69797 +++++++----------- 2 files changed, 26454 insertions(+), 43347 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index a370e66..9f26e32 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -43,8 +43,8 @@ intellijPlatform { } tasks.register("updateRegistryData") { - mcVersion.set("1.21.5") - serverJarUrl.set("https://piston-data.mojang.com/v1/objects/e6ec2f64e6080b9b5d9b471b291c33cc7f509733/server.jar") + mcVersion.set("1.21.11") + serverJarUrl.set("https://piston-data.mojang.com/v1/objects/205a55e13ce3104298dd84d1fa55bc524fb3ca51/server.jar") } tasks.register("copyApiDocumentation") { diff --git a/src/main/resources/registryData/blocks.json b/src/main/resources/registryData/blocks.json index 294ce23..13cf23a 100644 --- a/src/main/resources/registryData/blocks.json +++ b/src/main/resources/registryData/blocks.json @@ -25,7 +25,7 @@ }, "states": [ { - "id": 10569, + "id": 9492, "properties": { "face": "floor", "facing": "north", @@ -33,7 +33,7 @@ } }, { - "id": 10570, + "id": 9493, "properties": { "face": "floor", "facing": "north", @@ -41,7 +41,7 @@ } }, { - "id": 10571, + "id": 9494, "properties": { "face": "floor", "facing": "south", @@ -49,7 +49,7 @@ } }, { - "id": 10572, + "id": 9495, "properties": { "face": "floor", "facing": "south", @@ -57,7 +57,7 @@ } }, { - "id": 10573, + "id": 9496, "properties": { "face": "floor", "facing": "west", @@ -65,7 +65,7 @@ } }, { - "id": 10574, + "id": 9497, "properties": { "face": "floor", "facing": "west", @@ -73,7 +73,7 @@ } }, { - "id": 10575, + "id": 9498, "properties": { "face": "floor", "facing": "east", @@ -81,7 +81,7 @@ } }, { - "id": 10576, + "id": 9499, "properties": { "face": "floor", "facing": "east", @@ -89,7 +89,7 @@ } }, { - "id": 10577, + "id": 9500, "properties": { "face": "wall", "facing": "north", @@ -98,7 +98,7 @@ }, { "default": true, - "id": 10578, + "id": 9501, "properties": { "face": "wall", "facing": "north", @@ -106,7 +106,7 @@ } }, { - "id": 10579, + "id": 9502, "properties": { "face": "wall", "facing": "south", @@ -114,7 +114,7 @@ } }, { - "id": 10580, + "id": 9503, "properties": { "face": "wall", "facing": "south", @@ -122,7 +122,7 @@ } }, { - "id": 10581, + "id": 9504, "properties": { "face": "wall", "facing": "west", @@ -130,7 +130,7 @@ } }, { - "id": 10582, + "id": 9505, "properties": { "face": "wall", "facing": "west", @@ -138,7 +138,7 @@ } }, { - "id": 10583, + "id": 9506, "properties": { "face": "wall", "facing": "east", @@ -146,7 +146,7 @@ } }, { - "id": 10584, + "id": 9507, "properties": { "face": "wall", "facing": "east", @@ -154,7 +154,7 @@ } }, { - "id": 10585, + "id": 9508, "properties": { "face": "ceiling", "facing": "north", @@ -162,7 +162,7 @@ } }, { - "id": 10586, + "id": 9509, "properties": { "face": "ceiling", "facing": "north", @@ -170,7 +170,7 @@ } }, { - "id": 10587, + "id": 9510, "properties": { "face": "ceiling", "facing": "south", @@ -178,7 +178,7 @@ } }, { - "id": 10588, + "id": 9511, "properties": { "face": "ceiling", "facing": "south", @@ -186,7 +186,7 @@ } }, { - "id": 10589, + "id": 9512, "properties": { "face": "ceiling", "facing": "west", @@ -194,7 +194,7 @@ } }, { - "id": 10590, + "id": 9513, "properties": { "face": "ceiling", "facing": "west", @@ -202,7 +202,7 @@ } }, { - "id": 10591, + "id": 9514, "properties": { "face": "ceiling", "facing": "east", @@ -210,7 +210,7 @@ } }, { - "id": 10592, + "id": 9515, "properties": { "face": "ceiling", "facing": "east", @@ -251,7 +251,7 @@ }, "states": [ { - "id": 14050, + "id": 12973, "properties": { "facing": "north", "half": "upper", @@ -261,7 +261,7 @@ } }, { - "id": 14051, + "id": 12974, "properties": { "facing": "north", "half": "upper", @@ -271,7 +271,7 @@ } }, { - "id": 14052, + "id": 12975, "properties": { "facing": "north", "half": "upper", @@ -281,7 +281,7 @@ } }, { - "id": 14053, + "id": 12976, "properties": { "facing": "north", "half": "upper", @@ -291,7 +291,7 @@ } }, { - "id": 14054, + "id": 12977, "properties": { "facing": "north", "half": "upper", @@ -301,7 +301,7 @@ } }, { - "id": 14055, + "id": 12978, "properties": { "facing": "north", "half": "upper", @@ -311,7 +311,7 @@ } }, { - "id": 14056, + "id": 12979, "properties": { "facing": "north", "half": "upper", @@ -321,7 +321,7 @@ } }, { - "id": 14057, + "id": 12980, "properties": { "facing": "north", "half": "upper", @@ -331,7 +331,7 @@ } }, { - "id": 14058, + "id": 12981, "properties": { "facing": "north", "half": "lower", @@ -341,7 +341,7 @@ } }, { - "id": 14059, + "id": 12982, "properties": { "facing": "north", "half": "lower", @@ -351,7 +351,7 @@ } }, { - "id": 14060, + "id": 12983, "properties": { "facing": "north", "half": "lower", @@ -362,7 +362,7 @@ }, { "default": true, - "id": 14061, + "id": 12984, "properties": { "facing": "north", "half": "lower", @@ -372,7 +372,7 @@ } }, { - "id": 14062, + "id": 12985, "properties": { "facing": "north", "half": "lower", @@ -382,7 +382,7 @@ } }, { - "id": 14063, + "id": 12986, "properties": { "facing": "north", "half": "lower", @@ -392,7 +392,7 @@ } }, { - "id": 14064, + "id": 12987, "properties": { "facing": "north", "half": "lower", @@ -402,7 +402,7 @@ } }, { - "id": 14065, + "id": 12988, "properties": { "facing": "north", "half": "lower", @@ -412,7 +412,7 @@ } }, { - "id": 14066, + "id": 12989, "properties": { "facing": "south", "half": "upper", @@ -422,7 +422,7 @@ } }, { - "id": 14067, + "id": 12990, "properties": { "facing": "south", "half": "upper", @@ -432,7 +432,7 @@ } }, { - "id": 14068, + "id": 12991, "properties": { "facing": "south", "half": "upper", @@ -442,7 +442,7 @@ } }, { - "id": 14069, + "id": 12992, "properties": { "facing": "south", "half": "upper", @@ -452,7 +452,7 @@ } }, { - "id": 14070, + "id": 12993, "properties": { "facing": "south", "half": "upper", @@ -462,7 +462,7 @@ } }, { - "id": 14071, + "id": 12994, "properties": { "facing": "south", "half": "upper", @@ -472,7 +472,7 @@ } }, { - "id": 14072, + "id": 12995, "properties": { "facing": "south", "half": "upper", @@ -482,7 +482,7 @@ } }, { - "id": 14073, + "id": 12996, "properties": { "facing": "south", "half": "upper", @@ -492,7 +492,7 @@ } }, { - "id": 14074, + "id": 12997, "properties": { "facing": "south", "half": "lower", @@ -502,7 +502,7 @@ } }, { - "id": 14075, + "id": 12998, "properties": { "facing": "south", "half": "lower", @@ -512,7 +512,7 @@ } }, { - "id": 14076, + "id": 12999, "properties": { "facing": "south", "half": "lower", @@ -522,7 +522,7 @@ } }, { - "id": 14077, + "id": 13000, "properties": { "facing": "south", "half": "lower", @@ -532,7 +532,7 @@ } }, { - "id": 14078, + "id": 13001, "properties": { "facing": "south", "half": "lower", @@ -542,7 +542,7 @@ } }, { - "id": 14079, + "id": 13002, "properties": { "facing": "south", "half": "lower", @@ -552,7 +552,7 @@ } }, { - "id": 14080, + "id": 13003, "properties": { "facing": "south", "half": "lower", @@ -562,7 +562,7 @@ } }, { - "id": 14081, + "id": 13004, "properties": { "facing": "south", "half": "lower", @@ -572,7 +572,7 @@ } }, { - "id": 14082, + "id": 13005, "properties": { "facing": "west", "half": "upper", @@ -582,7 +582,7 @@ } }, { - "id": 14083, + "id": 13006, "properties": { "facing": "west", "half": "upper", @@ -592,7 +592,7 @@ } }, { - "id": 14084, + "id": 13007, "properties": { "facing": "west", "half": "upper", @@ -602,7 +602,7 @@ } }, { - "id": 14085, + "id": 13008, "properties": { "facing": "west", "half": "upper", @@ -612,7 +612,7 @@ } }, { - "id": 14086, + "id": 13009, "properties": { "facing": "west", "half": "upper", @@ -622,7 +622,7 @@ } }, { - "id": 14087, + "id": 13010, "properties": { "facing": "west", "half": "upper", @@ -632,7 +632,7 @@ } }, { - "id": 14088, + "id": 13011, "properties": { "facing": "west", "half": "upper", @@ -642,7 +642,7 @@ } }, { - "id": 14089, + "id": 13012, "properties": { "facing": "west", "half": "upper", @@ -652,7 +652,7 @@ } }, { - "id": 14090, + "id": 13013, "properties": { "facing": "west", "half": "lower", @@ -662,7 +662,7 @@ } }, { - "id": 14091, + "id": 13014, "properties": { "facing": "west", "half": "lower", @@ -672,7 +672,7 @@ } }, { - "id": 14092, + "id": 13015, "properties": { "facing": "west", "half": "lower", @@ -682,7 +682,7 @@ } }, { - "id": 14093, + "id": 13016, "properties": { "facing": "west", "half": "lower", @@ -692,7 +692,7 @@ } }, { - "id": 14094, + "id": 13017, "properties": { "facing": "west", "half": "lower", @@ -702,7 +702,7 @@ } }, { - "id": 14095, + "id": 13018, "properties": { "facing": "west", "half": "lower", @@ -712,7 +712,7 @@ } }, { - "id": 14096, + "id": 13019, "properties": { "facing": "west", "half": "lower", @@ -722,7 +722,7 @@ } }, { - "id": 14097, + "id": 13020, "properties": { "facing": "west", "half": "lower", @@ -732,7 +732,7 @@ } }, { - "id": 14098, + "id": 13021, "properties": { "facing": "east", "half": "upper", @@ -742,7 +742,7 @@ } }, { - "id": 14099, + "id": 13022, "properties": { "facing": "east", "half": "upper", @@ -752,7 +752,7 @@ } }, { - "id": 14100, + "id": 13023, "properties": { "facing": "east", "half": "upper", @@ -762,7 +762,7 @@ } }, { - "id": 14101, + "id": 13024, "properties": { "facing": "east", "half": "upper", @@ -772,7 +772,7 @@ } }, { - "id": 14102, + "id": 13025, "properties": { "facing": "east", "half": "upper", @@ -782,7 +782,7 @@ } }, { - "id": 14103, + "id": 13026, "properties": { "facing": "east", "half": "upper", @@ -792,7 +792,7 @@ } }, { - "id": 14104, + "id": 13027, "properties": { "facing": "east", "half": "upper", @@ -802,7 +802,7 @@ } }, { - "id": 14105, + "id": 13028, "properties": { "facing": "east", "half": "upper", @@ -812,7 +812,7 @@ } }, { - "id": 14106, + "id": 13029, "properties": { "facing": "east", "half": "lower", @@ -822,7 +822,7 @@ } }, { - "id": 14107, + "id": 13030, "properties": { "facing": "east", "half": "lower", @@ -832,7 +832,7 @@ } }, { - "id": 14108, + "id": 13031, "properties": { "facing": "east", "half": "lower", @@ -842,7 +842,7 @@ } }, { - "id": 14109, + "id": 13032, "properties": { "facing": "east", "half": "lower", @@ -852,7 +852,7 @@ } }, { - "id": 14110, + "id": 13033, "properties": { "facing": "east", "half": "lower", @@ -862,7 +862,7 @@ } }, { - "id": 14111, + "id": 13034, "properties": { "facing": "east", "half": "lower", @@ -872,7 +872,7 @@ } }, { - "id": 14112, + "id": 13035, "properties": { "facing": "east", "half": "lower", @@ -882,7 +882,7 @@ } }, { - "id": 14113, + "id": 13036, "properties": { "facing": "east", "half": "lower", @@ -922,7 +922,7 @@ }, "states": [ { - "id": 13666, + "id": 12589, "properties": { "east": "true", "north": "true", @@ -932,7 +932,7 @@ } }, { - "id": 13667, + "id": 12590, "properties": { "east": "true", "north": "true", @@ -942,7 +942,7 @@ } }, { - "id": 13668, + "id": 12591, "properties": { "east": "true", "north": "true", @@ -952,7 +952,7 @@ } }, { - "id": 13669, + "id": 12592, "properties": { "east": "true", "north": "true", @@ -962,7 +962,7 @@ } }, { - "id": 13670, + "id": 12593, "properties": { "east": "true", "north": "true", @@ -972,7 +972,7 @@ } }, { - "id": 13671, + "id": 12594, "properties": { "east": "true", "north": "true", @@ -982,7 +982,7 @@ } }, { - "id": 13672, + "id": 12595, "properties": { "east": "true", "north": "true", @@ -992,7 +992,7 @@ } }, { - "id": 13673, + "id": 12596, "properties": { "east": "true", "north": "true", @@ -1002,7 +1002,7 @@ } }, { - "id": 13674, + "id": 12597, "properties": { "east": "true", "north": "false", @@ -1012,7 +1012,7 @@ } }, { - "id": 13675, + "id": 12598, "properties": { "east": "true", "north": "false", @@ -1022,7 +1022,7 @@ } }, { - "id": 13676, + "id": 12599, "properties": { "east": "true", "north": "false", @@ -1032,7 +1032,7 @@ } }, { - "id": 13677, + "id": 12600, "properties": { "east": "true", "north": "false", @@ -1042,7 +1042,7 @@ } }, { - "id": 13678, + "id": 12601, "properties": { "east": "true", "north": "false", @@ -1052,7 +1052,7 @@ } }, { - "id": 13679, + "id": 12602, "properties": { "east": "true", "north": "false", @@ -1062,7 +1062,7 @@ } }, { - "id": 13680, + "id": 12603, "properties": { "east": "true", "north": "false", @@ -1072,7 +1072,7 @@ } }, { - "id": 13681, + "id": 12604, "properties": { "east": "true", "north": "false", @@ -1082,7 +1082,7 @@ } }, { - "id": 13682, + "id": 12605, "properties": { "east": "false", "north": "true", @@ -1092,7 +1092,7 @@ } }, { - "id": 13683, + "id": 12606, "properties": { "east": "false", "north": "true", @@ -1102,7 +1102,7 @@ } }, { - "id": 13684, + "id": 12607, "properties": { "east": "false", "north": "true", @@ -1112,7 +1112,7 @@ } }, { - "id": 13685, + "id": 12608, "properties": { "east": "false", "north": "true", @@ -1122,7 +1122,7 @@ } }, { - "id": 13686, + "id": 12609, "properties": { "east": "false", "north": "true", @@ -1132,7 +1132,7 @@ } }, { - "id": 13687, + "id": 12610, "properties": { "east": "false", "north": "true", @@ -1142,7 +1142,7 @@ } }, { - "id": 13688, + "id": 12611, "properties": { "east": "false", "north": "true", @@ -1152,7 +1152,7 @@ } }, { - "id": 13689, + "id": 12612, "properties": { "east": "false", "north": "true", @@ -1162,7 +1162,7 @@ } }, { - "id": 13690, + "id": 12613, "properties": { "east": "false", "north": "false", @@ -1172,7 +1172,7 @@ } }, { - "id": 13691, + "id": 12614, "properties": { "east": "false", "north": "false", @@ -1182,7 +1182,7 @@ } }, { - "id": 13692, + "id": 12615, "properties": { "east": "false", "north": "false", @@ -1192,7 +1192,7 @@ } }, { - "id": 13693, + "id": 12616, "properties": { "east": "false", "north": "false", @@ -1202,7 +1202,7 @@ } }, { - "id": 13694, + "id": 12617, "properties": { "east": "false", "north": "false", @@ -1212,7 +1212,7 @@ } }, { - "id": 13695, + "id": 12618, "properties": { "east": "false", "north": "false", @@ -1222,7 +1222,7 @@ } }, { - "id": 13696, + "id": 12619, "properties": { "east": "false", "north": "false", @@ -1233,7 +1233,7 @@ }, { "default": true, - "id": 13697, + "id": 12620, "properties": { "east": "false", "north": "false", @@ -1272,7 +1272,7 @@ }, "states": [ { - "id": 13378, + "id": 12301, "properties": { "facing": "north", "in_wall": "true", @@ -1281,7 +1281,7 @@ } }, { - "id": 13379, + "id": 12302, "properties": { "facing": "north", "in_wall": "true", @@ -1290,7 +1290,7 @@ } }, { - "id": 13380, + "id": 12303, "properties": { "facing": "north", "in_wall": "true", @@ -1299,7 +1299,7 @@ } }, { - "id": 13381, + "id": 12304, "properties": { "facing": "north", "in_wall": "true", @@ -1308,7 +1308,7 @@ } }, { - "id": 13382, + "id": 12305, "properties": { "facing": "north", "in_wall": "false", @@ -1317,7 +1317,7 @@ } }, { - "id": 13383, + "id": 12306, "properties": { "facing": "north", "in_wall": "false", @@ -1326,7 +1326,7 @@ } }, { - "id": 13384, + "id": 12307, "properties": { "facing": "north", "in_wall": "false", @@ -1336,7 +1336,7 @@ }, { "default": true, - "id": 13385, + "id": 12308, "properties": { "facing": "north", "in_wall": "false", @@ -1345,7 +1345,7 @@ } }, { - "id": 13386, + "id": 12309, "properties": { "facing": "south", "in_wall": "true", @@ -1354,7 +1354,7 @@ } }, { - "id": 13387, + "id": 12310, "properties": { "facing": "south", "in_wall": "true", @@ -1363,7 +1363,7 @@ } }, { - "id": 13388, + "id": 12311, "properties": { "facing": "south", "in_wall": "true", @@ -1372,7 +1372,7 @@ } }, { - "id": 13389, + "id": 12312, "properties": { "facing": "south", "in_wall": "true", @@ -1381,7 +1381,7 @@ } }, { - "id": 13390, + "id": 12313, "properties": { "facing": "south", "in_wall": "false", @@ -1390,7 +1390,7 @@ } }, { - "id": 13391, + "id": 12314, "properties": { "facing": "south", "in_wall": "false", @@ -1399,7 +1399,7 @@ } }, { - "id": 13392, + "id": 12315, "properties": { "facing": "south", "in_wall": "false", @@ -1408,7 +1408,7 @@ } }, { - "id": 13393, + "id": 12316, "properties": { "facing": "south", "in_wall": "false", @@ -1417,7 +1417,7 @@ } }, { - "id": 13394, + "id": 12317, "properties": { "facing": "west", "in_wall": "true", @@ -1426,7 +1426,7 @@ } }, { - "id": 13395, + "id": 12318, "properties": { "facing": "west", "in_wall": "true", @@ -1435,7 +1435,7 @@ } }, { - "id": 13396, + "id": 12319, "properties": { "facing": "west", "in_wall": "true", @@ -1444,7 +1444,7 @@ } }, { - "id": 13397, + "id": 12320, "properties": { "facing": "west", "in_wall": "true", @@ -1453,7 +1453,7 @@ } }, { - "id": 13398, + "id": 12321, "properties": { "facing": "west", "in_wall": "false", @@ -1462,7 +1462,7 @@ } }, { - "id": 13399, + "id": 12322, "properties": { "facing": "west", "in_wall": "false", @@ -1471,7 +1471,7 @@ } }, { - "id": 13400, + "id": 12323, "properties": { "facing": "west", "in_wall": "false", @@ -1480,7 +1480,7 @@ } }, { - "id": 13401, + "id": 12324, "properties": { "facing": "west", "in_wall": "false", @@ -1489,7 +1489,7 @@ } }, { - "id": 13402, + "id": 12325, "properties": { "facing": "east", "in_wall": "true", @@ -1498,7 +1498,7 @@ } }, { - "id": 13403, + "id": 12326, "properties": { "facing": "east", "in_wall": "true", @@ -1507,7 +1507,7 @@ } }, { - "id": 13404, + "id": 12327, "properties": { "facing": "east", "in_wall": "true", @@ -1516,7 +1516,7 @@ } }, { - "id": 13405, + "id": 12328, "properties": { "facing": "east", "in_wall": "true", @@ -1525,7 +1525,7 @@ } }, { - "id": 13406, + "id": 12329, "properties": { "facing": "east", "in_wall": "false", @@ -1534,7 +1534,7 @@ } }, { - "id": 13407, + "id": 12330, "properties": { "facing": "east", "in_wall": "false", @@ -1543,7 +1543,7 @@ } }, { - "id": 13408, + "id": 12331, "properties": { "facing": "east", "in_wall": "false", @@ -1552,7 +1552,7 @@ } }, { - "id": 13409, + "id": 12332, "properties": { "facing": "east", "in_wall": "false", @@ -1598,7 +1598,7 @@ }, "states": [ { - "id": 5898, + "id": 5130, "properties": { "attached": "true", "rotation": "0", @@ -1606,7 +1606,7 @@ } }, { - "id": 5899, + "id": 5131, "properties": { "attached": "true", "rotation": "0", @@ -1614,7 +1614,7 @@ } }, { - "id": 5900, + "id": 5132, "properties": { "attached": "true", "rotation": "1", @@ -1622,7 +1622,7 @@ } }, { - "id": 5901, + "id": 5133, "properties": { "attached": "true", "rotation": "1", @@ -1630,7 +1630,7 @@ } }, { - "id": 5902, + "id": 5134, "properties": { "attached": "true", "rotation": "2", @@ -1638,7 +1638,7 @@ } }, { - "id": 5903, + "id": 5135, "properties": { "attached": "true", "rotation": "2", @@ -1646,7 +1646,7 @@ } }, { - "id": 5904, + "id": 5136, "properties": { "attached": "true", "rotation": "3", @@ -1654,7 +1654,7 @@ } }, { - "id": 5905, + "id": 5137, "properties": { "attached": "true", "rotation": "3", @@ -1662,7 +1662,7 @@ } }, { - "id": 5906, + "id": 5138, "properties": { "attached": "true", "rotation": "4", @@ -1670,7 +1670,7 @@ } }, { - "id": 5907, + "id": 5139, "properties": { "attached": "true", "rotation": "4", @@ -1678,7 +1678,7 @@ } }, { - "id": 5908, + "id": 5140, "properties": { "attached": "true", "rotation": "5", @@ -1686,7 +1686,7 @@ } }, { - "id": 5909, + "id": 5141, "properties": { "attached": "true", "rotation": "5", @@ -1694,7 +1694,7 @@ } }, { - "id": 5910, + "id": 5142, "properties": { "attached": "true", "rotation": "6", @@ -1702,7 +1702,7 @@ } }, { - "id": 5911, + "id": 5143, "properties": { "attached": "true", "rotation": "6", @@ -1710,7 +1710,7 @@ } }, { - "id": 5912, + "id": 5144, "properties": { "attached": "true", "rotation": "7", @@ -1718,7 +1718,7 @@ } }, { - "id": 5913, + "id": 5145, "properties": { "attached": "true", "rotation": "7", @@ -1726,7 +1726,7 @@ } }, { - "id": 5914, + "id": 5146, "properties": { "attached": "true", "rotation": "8", @@ -1734,7 +1734,7 @@ } }, { - "id": 5915, + "id": 5147, "properties": { "attached": "true", "rotation": "8", @@ -1742,7 +1742,7 @@ } }, { - "id": 5916, + "id": 5148, "properties": { "attached": "true", "rotation": "9", @@ -1750,7 +1750,7 @@ } }, { - "id": 5917, + "id": 5149, "properties": { "attached": "true", "rotation": "9", @@ -1758,7 +1758,7 @@ } }, { - "id": 5918, + "id": 5150, "properties": { "attached": "true", "rotation": "10", @@ -1766,7 +1766,7 @@ } }, { - "id": 5919, + "id": 5151, "properties": { "attached": "true", "rotation": "10", @@ -1774,7 +1774,7 @@ } }, { - "id": 5920, + "id": 5152, "properties": { "attached": "true", "rotation": "11", @@ -1782,7 +1782,7 @@ } }, { - "id": 5921, + "id": 5153, "properties": { "attached": "true", "rotation": "11", @@ -1790,7 +1790,7 @@ } }, { - "id": 5922, + "id": 5154, "properties": { "attached": "true", "rotation": "12", @@ -1798,7 +1798,7 @@ } }, { - "id": 5923, + "id": 5155, "properties": { "attached": "true", "rotation": "12", @@ -1806,7 +1806,7 @@ } }, { - "id": 5924, + "id": 5156, "properties": { "attached": "true", "rotation": "13", @@ -1814,7 +1814,7 @@ } }, { - "id": 5925, + "id": 5157, "properties": { "attached": "true", "rotation": "13", @@ -1822,7 +1822,7 @@ } }, { - "id": 5926, + "id": 5158, "properties": { "attached": "true", "rotation": "14", @@ -1830,7 +1830,7 @@ } }, { - "id": 5927, + "id": 5159, "properties": { "attached": "true", "rotation": "14", @@ -1838,7 +1838,7 @@ } }, { - "id": 5928, + "id": 5160, "properties": { "attached": "true", "rotation": "15", @@ -1846,7 +1846,7 @@ } }, { - "id": 5929, + "id": 5161, "properties": { "attached": "true", "rotation": "15", @@ -1854,7 +1854,7 @@ } }, { - "id": 5930, + "id": 5162, "properties": { "attached": "false", "rotation": "0", @@ -1863,7 +1863,7 @@ }, { "default": true, - "id": 5931, + "id": 5163, "properties": { "attached": "false", "rotation": "0", @@ -1871,7 +1871,7 @@ } }, { - "id": 5932, + "id": 5164, "properties": { "attached": "false", "rotation": "1", @@ -1879,7 +1879,7 @@ } }, { - "id": 5933, + "id": 5165, "properties": { "attached": "false", "rotation": "1", @@ -1887,7 +1887,7 @@ } }, { - "id": 5934, + "id": 5166, "properties": { "attached": "false", "rotation": "2", @@ -1895,7 +1895,7 @@ } }, { - "id": 5935, + "id": 5167, "properties": { "attached": "false", "rotation": "2", @@ -1903,7 +1903,7 @@ } }, { - "id": 5936, + "id": 5168, "properties": { "attached": "false", "rotation": "3", @@ -1911,7 +1911,7 @@ } }, { - "id": 5937, + "id": 5169, "properties": { "attached": "false", "rotation": "3", @@ -1919,7 +1919,7 @@ } }, { - "id": 5938, + "id": 5170, "properties": { "attached": "false", "rotation": "4", @@ -1927,7 +1927,7 @@ } }, { - "id": 5939, + "id": 5171, "properties": { "attached": "false", "rotation": "4", @@ -1935,7 +1935,7 @@ } }, { - "id": 5940, + "id": 5172, "properties": { "attached": "false", "rotation": "5", @@ -1943,7 +1943,7 @@ } }, { - "id": 5941, + "id": 5173, "properties": { "attached": "false", "rotation": "5", @@ -1951,7 +1951,7 @@ } }, { - "id": 5942, + "id": 5174, "properties": { "attached": "false", "rotation": "6", @@ -1959,7 +1959,7 @@ } }, { - "id": 5943, + "id": 5175, "properties": { "attached": "false", "rotation": "6", @@ -1967,7 +1967,7 @@ } }, { - "id": 5944, + "id": 5176, "properties": { "attached": "false", "rotation": "7", @@ -1975,7 +1975,7 @@ } }, { - "id": 5945, + "id": 5177, "properties": { "attached": "false", "rotation": "7", @@ -1983,7 +1983,7 @@ } }, { - "id": 5946, + "id": 5178, "properties": { "attached": "false", "rotation": "8", @@ -1991,7 +1991,7 @@ } }, { - "id": 5947, + "id": 5179, "properties": { "attached": "false", "rotation": "8", @@ -1999,7 +1999,7 @@ } }, { - "id": 5948, + "id": 5180, "properties": { "attached": "false", "rotation": "9", @@ -2007,7 +2007,7 @@ } }, { - "id": 5949, + "id": 5181, "properties": { "attached": "false", "rotation": "9", @@ -2015,7 +2015,7 @@ } }, { - "id": 5950, + "id": 5182, "properties": { "attached": "false", "rotation": "10", @@ -2023,7 +2023,7 @@ } }, { - "id": 5951, + "id": 5183, "properties": { "attached": "false", "rotation": "10", @@ -2031,7 +2031,7 @@ } }, { - "id": 5952, + "id": 5184, "properties": { "attached": "false", "rotation": "11", @@ -2039,7 +2039,7 @@ } }, { - "id": 5953, + "id": 5185, "properties": { "attached": "false", "rotation": "11", @@ -2047,7 +2047,7 @@ } }, { - "id": 5954, + "id": 5186, "properties": { "attached": "false", "rotation": "12", @@ -2055,7 +2055,7 @@ } }, { - "id": 5955, + "id": 5187, "properties": { "attached": "false", "rotation": "12", @@ -2063,7 +2063,7 @@ } }, { - "id": 5956, + "id": 5188, "properties": { "attached": "false", "rotation": "13", @@ -2071,7 +2071,7 @@ } }, { - "id": 5957, + "id": 5189, "properties": { "attached": "false", "rotation": "13", @@ -2079,7 +2079,7 @@ } }, { - "id": 5958, + "id": 5190, "properties": { "attached": "false", "rotation": "14", @@ -2087,7 +2087,7 @@ } }, { - "id": 5959, + "id": 5191, "properties": { "attached": "false", "rotation": "14", @@ -2095,7 +2095,7 @@ } }, { - "id": 5960, + "id": 5192, "properties": { "attached": "false", "rotation": "15", @@ -2103,7 +2103,7 @@ } }, { - "id": 5961, + "id": 5193, "properties": { "attached": "false", "rotation": "15", @@ -2425,14 +2425,14 @@ }, "states": [ { - "id": 6668, + "id": 5900, "properties": { "powered": "true" } }, { "default": true, - "id": 6669, + "id": 5901, "properties": { "powered": "false" } @@ -2467,613 +2467,6 @@ } ] }, - "minecraft:acacia_shelf": { - "definition": { - "type": "minecraft:shelf", - "properties": {} - }, - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ], - "side_chain": [ - "unconnected", - "right", - "center", - "left" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 2399, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2400, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2401, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2402, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2403, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2404, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2405, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2406, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2407, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 2408, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2409, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2410, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2411, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2412, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2413, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2414, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2415, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2416, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2417, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2418, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2419, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2420, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2421, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2422, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2423, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2424, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2425, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2426, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2427, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2428, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2429, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2430, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2431, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2432, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2433, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2434, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2435, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2436, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2437, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2438, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2439, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2440, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2441, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2442, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2443, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2444, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2445, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2446, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2447, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2448, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2449, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2450, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2451, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2452, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2453, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2454, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2455, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2456, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2457, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2458, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2459, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2460, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2461, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2462, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "left", - "waterlogged": "false" - } - } - ] - }, "minecraft:acacia_sign": { "definition": { "type": "minecraft:standing_sign", @@ -3106,7 +2499,7 @@ }, "states": [ { - "id": 5230, + "id": 4462, "properties": { "rotation": "0", "waterlogged": "true" @@ -3114,217 +2507,217 @@ }, { "default": true, - "id": 5231, + "id": 4463, "properties": { "rotation": "0", "waterlogged": "false" } }, { - "id": 5232, + "id": 4464, "properties": { "rotation": "1", "waterlogged": "true" } }, { - "id": 5233, + "id": 4465, "properties": { "rotation": "1", "waterlogged": "false" } }, { - "id": 5234, + "id": 4466, "properties": { "rotation": "2", "waterlogged": "true" } }, { - "id": 5235, + "id": 4467, "properties": { "rotation": "2", "waterlogged": "false" } }, { - "id": 5236, + "id": 4468, "properties": { "rotation": "3", "waterlogged": "true" } }, { - "id": 5237, + "id": 4469, "properties": { "rotation": "3", "waterlogged": "false" } }, { - "id": 5238, + "id": 4470, "properties": { "rotation": "4", "waterlogged": "true" } }, { - "id": 5239, + "id": 4471, "properties": { "rotation": "4", "waterlogged": "false" } }, { - "id": 5240, + "id": 4472, "properties": { "rotation": "5", "waterlogged": "true" } }, { - "id": 5241, + "id": 4473, "properties": { "rotation": "5", "waterlogged": "false" } }, { - "id": 5242, + "id": 4474, "properties": { "rotation": "6", "waterlogged": "true" } }, { - "id": 5243, + "id": 4475, "properties": { "rotation": "6", "waterlogged": "false" } }, { - "id": 5244, + "id": 4476, "properties": { "rotation": "7", "waterlogged": "true" } }, { - "id": 5245, + "id": 4477, "properties": { "rotation": "7", "waterlogged": "false" } }, { - "id": 5246, + "id": 4478, "properties": { "rotation": "8", "waterlogged": "true" } }, { - "id": 5247, + "id": 4479, "properties": { "rotation": "8", "waterlogged": "false" } }, { - "id": 5248, + "id": 4480, "properties": { "rotation": "9", "waterlogged": "true" } }, { - "id": 5249, + "id": 4481, "properties": { "rotation": "9", "waterlogged": "false" } }, { - "id": 5250, + "id": 4482, "properties": { "rotation": "10", "waterlogged": "true" } }, { - "id": 5251, + "id": 4483, "properties": { "rotation": "10", "waterlogged": "false" } }, { - "id": 5252, + "id": 4484, "properties": { "rotation": "11", "waterlogged": "true" } }, { - "id": 5253, + "id": 4485, "properties": { "rotation": "11", "waterlogged": "false" } }, { - "id": 5254, + "id": 4486, "properties": { "rotation": "12", "waterlogged": "true" } }, { - "id": 5255, + "id": 4487, "properties": { "rotation": "12", "waterlogged": "false" } }, { - "id": 5256, + "id": 4488, "properties": { "rotation": "13", "waterlogged": "true" } }, { - "id": 5257, + "id": 4489, "properties": { "rotation": "13", "waterlogged": "false" } }, { - "id": 5258, + "id": 4490, "properties": { "rotation": "14", "waterlogged": "true" } }, { - "id": 5259, + "id": 4491, "properties": { "rotation": "14", "waterlogged": "false" } }, { - "id": 5260, + "id": 4492, "properties": { "rotation": "15", "waterlogged": "true" } }, { - "id": 5261, + "id": 4493, "properties": { "rotation": "15", "waterlogged": "false" @@ -3350,21 +2743,21 @@ }, "states": [ { - "id": 13152, + "id": 12075, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 13153, + "id": 12076, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 13154, + "id": 12077, "properties": { "type": "bottom", "waterlogged": "true" @@ -3372,21 +2765,21 @@ }, { "default": true, - "id": 13155, + "id": 12078, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 13156, + "id": 12079, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 13157, + "id": 12080, "properties": { "type": "double", "waterlogged": "false" @@ -3427,7 +2820,7 @@ }, "states": [ { - "id": 11770, + "id": 10693, "properties": { "facing": "north", "half": "top", @@ -3436,7 +2829,7 @@ } }, { - "id": 11771, + "id": 10694, "properties": { "facing": "north", "half": "top", @@ -3445,7 +2838,7 @@ } }, { - "id": 11772, + "id": 10695, "properties": { "facing": "north", "half": "top", @@ -3454,7 +2847,7 @@ } }, { - "id": 11773, + "id": 10696, "properties": { "facing": "north", "half": "top", @@ -3463,7 +2856,7 @@ } }, { - "id": 11774, + "id": 10697, "properties": { "facing": "north", "half": "top", @@ -3472,7 +2865,7 @@ } }, { - "id": 11775, + "id": 10698, "properties": { "facing": "north", "half": "top", @@ -3481,7 +2874,7 @@ } }, { - "id": 11776, + "id": 10699, "properties": { "facing": "north", "half": "top", @@ -3490,7 +2883,7 @@ } }, { - "id": 11777, + "id": 10700, "properties": { "facing": "north", "half": "top", @@ -3499,7 +2892,7 @@ } }, { - "id": 11778, + "id": 10701, "properties": { "facing": "north", "half": "top", @@ -3508,7 +2901,7 @@ } }, { - "id": 11779, + "id": 10702, "properties": { "facing": "north", "half": "top", @@ -3517,7 +2910,7 @@ } }, { - "id": 11780, + "id": 10703, "properties": { "facing": "north", "half": "bottom", @@ -3527,7 +2920,7 @@ }, { "default": true, - "id": 11781, + "id": 10704, "properties": { "facing": "north", "half": "bottom", @@ -3536,7 +2929,7 @@ } }, { - "id": 11782, + "id": 10705, "properties": { "facing": "north", "half": "bottom", @@ -3545,7 +2938,7 @@ } }, { - "id": 11783, + "id": 10706, "properties": { "facing": "north", "half": "bottom", @@ -3554,7 +2947,7 @@ } }, { - "id": 11784, + "id": 10707, "properties": { "facing": "north", "half": "bottom", @@ -3563,7 +2956,7 @@ } }, { - "id": 11785, + "id": 10708, "properties": { "facing": "north", "half": "bottom", @@ -3572,7 +2965,7 @@ } }, { - "id": 11786, + "id": 10709, "properties": { "facing": "north", "half": "bottom", @@ -3581,7 +2974,7 @@ } }, { - "id": 11787, + "id": 10710, "properties": { "facing": "north", "half": "bottom", @@ -3590,7 +2983,7 @@ } }, { - "id": 11788, + "id": 10711, "properties": { "facing": "north", "half": "bottom", @@ -3599,7 +2992,7 @@ } }, { - "id": 11789, + "id": 10712, "properties": { "facing": "north", "half": "bottom", @@ -3608,7 +3001,7 @@ } }, { - "id": 11790, + "id": 10713, "properties": { "facing": "south", "half": "top", @@ -3617,7 +3010,7 @@ } }, { - "id": 11791, + "id": 10714, "properties": { "facing": "south", "half": "top", @@ -3626,7 +3019,7 @@ } }, { - "id": 11792, + "id": 10715, "properties": { "facing": "south", "half": "top", @@ -3635,7 +3028,7 @@ } }, { - "id": 11793, + "id": 10716, "properties": { "facing": "south", "half": "top", @@ -3644,7 +3037,7 @@ } }, { - "id": 11794, + "id": 10717, "properties": { "facing": "south", "half": "top", @@ -3653,7 +3046,7 @@ } }, { - "id": 11795, + "id": 10718, "properties": { "facing": "south", "half": "top", @@ -3662,7 +3055,7 @@ } }, { - "id": 11796, + "id": 10719, "properties": { "facing": "south", "half": "top", @@ -3671,7 +3064,7 @@ } }, { - "id": 11797, + "id": 10720, "properties": { "facing": "south", "half": "top", @@ -3680,7 +3073,7 @@ } }, { - "id": 11798, + "id": 10721, "properties": { "facing": "south", "half": "top", @@ -3689,7 +3082,7 @@ } }, { - "id": 11799, + "id": 10722, "properties": { "facing": "south", "half": "top", @@ -3698,7 +3091,7 @@ } }, { - "id": 11800, + "id": 10723, "properties": { "facing": "south", "half": "bottom", @@ -3707,7 +3100,7 @@ } }, { - "id": 11801, + "id": 10724, "properties": { "facing": "south", "half": "bottom", @@ -3716,7 +3109,7 @@ } }, { - "id": 11802, + "id": 10725, "properties": { "facing": "south", "half": "bottom", @@ -3725,7 +3118,7 @@ } }, { - "id": 11803, + "id": 10726, "properties": { "facing": "south", "half": "bottom", @@ -3734,7 +3127,7 @@ } }, { - "id": 11804, + "id": 10727, "properties": { "facing": "south", "half": "bottom", @@ -3743,7 +3136,7 @@ } }, { - "id": 11805, + "id": 10728, "properties": { "facing": "south", "half": "bottom", @@ -3752,7 +3145,7 @@ } }, { - "id": 11806, + "id": 10729, "properties": { "facing": "south", "half": "bottom", @@ -3761,7 +3154,7 @@ } }, { - "id": 11807, + "id": 10730, "properties": { "facing": "south", "half": "bottom", @@ -3770,7 +3163,7 @@ } }, { - "id": 11808, + "id": 10731, "properties": { "facing": "south", "half": "bottom", @@ -3779,7 +3172,7 @@ } }, { - "id": 11809, + "id": 10732, "properties": { "facing": "south", "half": "bottom", @@ -3788,7 +3181,7 @@ } }, { - "id": 11810, + "id": 10733, "properties": { "facing": "west", "half": "top", @@ -3797,7 +3190,7 @@ } }, { - "id": 11811, + "id": 10734, "properties": { "facing": "west", "half": "top", @@ -3806,7 +3199,7 @@ } }, { - "id": 11812, + "id": 10735, "properties": { "facing": "west", "half": "top", @@ -3815,7 +3208,7 @@ } }, { - "id": 11813, + "id": 10736, "properties": { "facing": "west", "half": "top", @@ -3824,7 +3217,7 @@ } }, { - "id": 11814, + "id": 10737, "properties": { "facing": "west", "half": "top", @@ -3833,7 +3226,7 @@ } }, { - "id": 11815, + "id": 10738, "properties": { "facing": "west", "half": "top", @@ -3842,7 +3235,7 @@ } }, { - "id": 11816, + "id": 10739, "properties": { "facing": "west", "half": "top", @@ -3851,7 +3244,7 @@ } }, { - "id": 11817, + "id": 10740, "properties": { "facing": "west", "half": "top", @@ -3860,7 +3253,7 @@ } }, { - "id": 11818, + "id": 10741, "properties": { "facing": "west", "half": "top", @@ -3869,7 +3262,7 @@ } }, { - "id": 11819, + "id": 10742, "properties": { "facing": "west", "half": "top", @@ -3878,7 +3271,7 @@ } }, { - "id": 11820, + "id": 10743, "properties": { "facing": "west", "half": "bottom", @@ -3887,7 +3280,7 @@ } }, { - "id": 11821, + "id": 10744, "properties": { "facing": "west", "half": "bottom", @@ -3896,7 +3289,7 @@ } }, { - "id": 11822, + "id": 10745, "properties": { "facing": "west", "half": "bottom", @@ -3905,7 +3298,7 @@ } }, { - "id": 11823, + "id": 10746, "properties": { "facing": "west", "half": "bottom", @@ -3914,7 +3307,7 @@ } }, { - "id": 11824, + "id": 10747, "properties": { "facing": "west", "half": "bottom", @@ -3923,7 +3316,7 @@ } }, { - "id": 11825, + "id": 10748, "properties": { "facing": "west", "half": "bottom", @@ -3932,7 +3325,7 @@ } }, { - "id": 11826, + "id": 10749, "properties": { "facing": "west", "half": "bottom", @@ -3941,7 +3334,7 @@ } }, { - "id": 11827, + "id": 10750, "properties": { "facing": "west", "half": "bottom", @@ -3950,7 +3343,7 @@ } }, { - "id": 11828, + "id": 10751, "properties": { "facing": "west", "half": "bottom", @@ -3959,7 +3352,7 @@ } }, { - "id": 11829, + "id": 10752, "properties": { "facing": "west", "half": "bottom", @@ -3968,7 +3361,7 @@ } }, { - "id": 11830, + "id": 10753, "properties": { "facing": "east", "half": "top", @@ -3977,7 +3370,7 @@ } }, { - "id": 11831, + "id": 10754, "properties": { "facing": "east", "half": "top", @@ -3986,7 +3379,7 @@ } }, { - "id": 11832, + "id": 10755, "properties": { "facing": "east", "half": "top", @@ -3995,7 +3388,7 @@ } }, { - "id": 11833, + "id": 10756, "properties": { "facing": "east", "half": "top", @@ -4004,7 +3397,7 @@ } }, { - "id": 11834, + "id": 10757, "properties": { "facing": "east", "half": "top", @@ -4013,7 +3406,7 @@ } }, { - "id": 11835, + "id": 10758, "properties": { "facing": "east", "half": "top", @@ -4022,7 +3415,7 @@ } }, { - "id": 11836, + "id": 10759, "properties": { "facing": "east", "half": "top", @@ -4031,7 +3424,7 @@ } }, { - "id": 11837, + "id": 10760, "properties": { "facing": "east", "half": "top", @@ -4040,7 +3433,7 @@ } }, { - "id": 11838, + "id": 10761, "properties": { "facing": "east", "half": "top", @@ -4049,7 +3442,7 @@ } }, { - "id": 11839, + "id": 10762, "properties": { "facing": "east", "half": "top", @@ -4058,7 +3451,7 @@ } }, { - "id": 11840, + "id": 10763, "properties": { "facing": "east", "half": "bottom", @@ -4067,7 +3460,7 @@ } }, { - "id": 11841, + "id": 10764, "properties": { "facing": "east", "half": "bottom", @@ -4076,7 +3469,7 @@ } }, { - "id": 11842, + "id": 10765, "properties": { "facing": "east", "half": "bottom", @@ -4085,7 +3478,7 @@ } }, { - "id": 11843, + "id": 10766, "properties": { "facing": "east", "half": "bottom", @@ -4094,7 +3487,7 @@ } }, { - "id": 11844, + "id": 10767, "properties": { "facing": "east", "half": "bottom", @@ -4103,7 +3496,7 @@ } }, { - "id": 11845, + "id": 10768, "properties": { "facing": "east", "half": "bottom", @@ -4112,7 +3505,7 @@ } }, { - "id": 11846, + "id": 10769, "properties": { "facing": "east", "half": "bottom", @@ -4121,7 +3514,7 @@ } }, { - "id": 11847, + "id": 10770, "properties": { "facing": "east", "half": "bottom", @@ -4130,7 +3523,7 @@ } }, { - "id": 11848, + "id": 10771, "properties": { "facing": "east", "half": "bottom", @@ -4139,7 +3532,7 @@ } }, { - "id": 11849, + "id": 10772, "properties": { "facing": "east", "half": "bottom", @@ -4181,7 +3574,7 @@ }, "states": [ { - "id": 7169, + "id": 6396, "properties": { "facing": "north", "half": "top", @@ -4191,7 +3584,7 @@ } }, { - "id": 7170, + "id": 6397, "properties": { "facing": "north", "half": "top", @@ -4201,7 +3594,7 @@ } }, { - "id": 7171, + "id": 6398, "properties": { "facing": "north", "half": "top", @@ -4211,7 +3604,7 @@ } }, { - "id": 7172, + "id": 6399, "properties": { "facing": "north", "half": "top", @@ -4221,7 +3614,7 @@ } }, { - "id": 7173, + "id": 6400, "properties": { "facing": "north", "half": "top", @@ -4231,7 +3624,7 @@ } }, { - "id": 7174, + "id": 6401, "properties": { "facing": "north", "half": "top", @@ -4241,7 +3634,7 @@ } }, { - "id": 7175, + "id": 6402, "properties": { "facing": "north", "half": "top", @@ -4251,7 +3644,7 @@ } }, { - "id": 7176, + "id": 6403, "properties": { "facing": "north", "half": "top", @@ -4261,7 +3654,7 @@ } }, { - "id": 7177, + "id": 6404, "properties": { "facing": "north", "half": "bottom", @@ -4271,7 +3664,7 @@ } }, { - "id": 7178, + "id": 6405, "properties": { "facing": "north", "half": "bottom", @@ -4281,7 +3674,7 @@ } }, { - "id": 7179, + "id": 6406, "properties": { "facing": "north", "half": "bottom", @@ -4291,7 +3684,7 @@ } }, { - "id": 7180, + "id": 6407, "properties": { "facing": "north", "half": "bottom", @@ -4301,7 +3694,7 @@ } }, { - "id": 7181, + "id": 6408, "properties": { "facing": "north", "half": "bottom", @@ -4311,7 +3704,7 @@ } }, { - "id": 7182, + "id": 6409, "properties": { "facing": "north", "half": "bottom", @@ -4321,7 +3714,7 @@ } }, { - "id": 7183, + "id": 6410, "properties": { "facing": "north", "half": "bottom", @@ -4332,7 +3725,7 @@ }, { "default": true, - "id": 7184, + "id": 6411, "properties": { "facing": "north", "half": "bottom", @@ -4342,7 +3735,7 @@ } }, { - "id": 7185, + "id": 6412, "properties": { "facing": "south", "half": "top", @@ -4352,7 +3745,7 @@ } }, { - "id": 7186, + "id": 6413, "properties": { "facing": "south", "half": "top", @@ -4362,7 +3755,7 @@ } }, { - "id": 7187, + "id": 6414, "properties": { "facing": "south", "half": "top", @@ -4372,7 +3765,7 @@ } }, { - "id": 7188, + "id": 6415, "properties": { "facing": "south", "half": "top", @@ -4382,7 +3775,7 @@ } }, { - "id": 7189, + "id": 6416, "properties": { "facing": "south", "half": "top", @@ -4392,7 +3785,7 @@ } }, { - "id": 7190, + "id": 6417, "properties": { "facing": "south", "half": "top", @@ -4402,7 +3795,7 @@ } }, { - "id": 7191, + "id": 6418, "properties": { "facing": "south", "half": "top", @@ -4412,7 +3805,7 @@ } }, { - "id": 7192, + "id": 6419, "properties": { "facing": "south", "half": "top", @@ -4422,7 +3815,7 @@ } }, { - "id": 7193, + "id": 6420, "properties": { "facing": "south", "half": "bottom", @@ -4432,7 +3825,7 @@ } }, { - "id": 7194, + "id": 6421, "properties": { "facing": "south", "half": "bottom", @@ -4442,7 +3835,7 @@ } }, { - "id": 7195, + "id": 6422, "properties": { "facing": "south", "half": "bottom", @@ -4452,7 +3845,7 @@ } }, { - "id": 7196, + "id": 6423, "properties": { "facing": "south", "half": "bottom", @@ -4462,7 +3855,7 @@ } }, { - "id": 7197, + "id": 6424, "properties": { "facing": "south", "half": "bottom", @@ -4472,7 +3865,7 @@ } }, { - "id": 7198, + "id": 6425, "properties": { "facing": "south", "half": "bottom", @@ -4482,7 +3875,7 @@ } }, { - "id": 7199, + "id": 6426, "properties": { "facing": "south", "half": "bottom", @@ -4492,7 +3885,7 @@ } }, { - "id": 7200, + "id": 6427, "properties": { "facing": "south", "half": "bottom", @@ -4502,7 +3895,7 @@ } }, { - "id": 7201, + "id": 6428, "properties": { "facing": "west", "half": "top", @@ -4512,7 +3905,7 @@ } }, { - "id": 7202, + "id": 6429, "properties": { "facing": "west", "half": "top", @@ -4522,7 +3915,7 @@ } }, { - "id": 7203, + "id": 6430, "properties": { "facing": "west", "half": "top", @@ -4532,7 +3925,7 @@ } }, { - "id": 7204, + "id": 6431, "properties": { "facing": "west", "half": "top", @@ -4542,7 +3935,7 @@ } }, { - "id": 7205, + "id": 6432, "properties": { "facing": "west", "half": "top", @@ -4552,7 +3945,7 @@ } }, { - "id": 7206, + "id": 6433, "properties": { "facing": "west", "half": "top", @@ -4562,7 +3955,7 @@ } }, { - "id": 7207, + "id": 6434, "properties": { "facing": "west", "half": "top", @@ -4572,7 +3965,7 @@ } }, { - "id": 7208, + "id": 6435, "properties": { "facing": "west", "half": "top", @@ -4582,7 +3975,7 @@ } }, { - "id": 7209, + "id": 6436, "properties": { "facing": "west", "half": "bottom", @@ -4592,7 +3985,7 @@ } }, { - "id": 7210, + "id": 6437, "properties": { "facing": "west", "half": "bottom", @@ -4602,7 +3995,7 @@ } }, { - "id": 7211, + "id": 6438, "properties": { "facing": "west", "half": "bottom", @@ -4612,7 +4005,7 @@ } }, { - "id": 7212, + "id": 6439, "properties": { "facing": "west", "half": "bottom", @@ -4622,7 +4015,7 @@ } }, { - "id": 7213, + "id": 6440, "properties": { "facing": "west", "half": "bottom", @@ -4632,7 +4025,7 @@ } }, { - "id": 7214, + "id": 6441, "properties": { "facing": "west", "half": "bottom", @@ -4642,7 +4035,7 @@ } }, { - "id": 7215, + "id": 6442, "properties": { "facing": "west", "half": "bottom", @@ -4652,7 +4045,7 @@ } }, { - "id": 7216, + "id": 6443, "properties": { "facing": "west", "half": "bottom", @@ -4662,7 +4055,7 @@ } }, { - "id": 7217, + "id": 6444, "properties": { "facing": "east", "half": "top", @@ -4672,7 +4065,7 @@ } }, { - "id": 7218, + "id": 6445, "properties": { "facing": "east", "half": "top", @@ -4682,7 +4075,7 @@ } }, { - "id": 7219, + "id": 6446, "properties": { "facing": "east", "half": "top", @@ -4692,7 +4085,7 @@ } }, { - "id": 7220, + "id": 6447, "properties": { "facing": "east", "half": "top", @@ -4702,7 +4095,7 @@ } }, { - "id": 7221, + "id": 6448, "properties": { "facing": "east", "half": "top", @@ -4712,7 +4105,7 @@ } }, { - "id": 7222, + "id": 6449, "properties": { "facing": "east", "half": "top", @@ -4722,7 +4115,7 @@ } }, { - "id": 7223, + "id": 6450, "properties": { "facing": "east", "half": "top", @@ -4732,7 +4125,7 @@ } }, { - "id": 7224, + "id": 6451, "properties": { "facing": "east", "half": "top", @@ -4742,7 +4135,7 @@ } }, { - "id": 7225, + "id": 6452, "properties": { "facing": "east", "half": "bottom", @@ -4752,7 +4145,7 @@ } }, { - "id": 7226, + "id": 6453, "properties": { "facing": "east", "half": "bottom", @@ -4762,7 +4155,7 @@ } }, { - "id": 7227, + "id": 6454, "properties": { "facing": "east", "half": "bottom", @@ -4772,7 +4165,7 @@ } }, { - "id": 7228, + "id": 6455, "properties": { "facing": "east", "half": "bottom", @@ -4782,7 +4175,7 @@ } }, { - "id": 7229, + "id": 6456, "properties": { "facing": "east", "half": "bottom", @@ -4792,7 +4185,7 @@ } }, { - "id": 7230, + "id": 6457, "properties": { "facing": "east", "half": "bottom", @@ -4802,7 +4195,7 @@ } }, { - "id": 7231, + "id": 6458, "properties": { "facing": "east", "half": "bottom", @@ -4812,7 +4205,7 @@ } }, { - "id": 7232, + "id": 6459, "properties": { "facing": "east", "half": "bottom", @@ -4843,7 +4236,7 @@ }, "states": [ { - "id": 6498, + "id": 5730, "properties": { "facing": "north", "waterlogged": "true" @@ -4851,49 +4244,49 @@ }, { "default": true, - "id": 6499, + "id": 5731, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 6500, + "id": 5732, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 6501, + "id": 5733, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 6502, + "id": 5734, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 6503, + "id": 5735, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 6504, + "id": 5736, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 6505, + "id": 5737, "properties": { "facing": "east", "waterlogged": "false" @@ -4921,7 +4314,7 @@ }, "states": [ { - "id": 5650, + "id": 4882, "properties": { "facing": "north", "waterlogged": "true" @@ -4929,49 +4322,49 @@ }, { "default": true, - "id": 5651, + "id": 4883, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 5652, + "id": 4884, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 5653, + "id": 4885, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 5654, + "id": 4886, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 5655, + "id": 4887, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 5656, + "id": 4888, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 5657, + "id": 4889, "properties": { "facing": "east", "waterlogged": "false" @@ -5038,7 +4431,7 @@ }, "states": [ { - "id": 11206, + "id": 10129, "properties": { "powered": "true", "shape": "north_south", @@ -5046,7 +4439,7 @@ } }, { - "id": 11207, + "id": 10130, "properties": { "powered": "true", "shape": "north_south", @@ -5054,7 +4447,7 @@ } }, { - "id": 11208, + "id": 10131, "properties": { "powered": "true", "shape": "east_west", @@ -5062,7 +4455,7 @@ } }, { - "id": 11209, + "id": 10132, "properties": { "powered": "true", "shape": "east_west", @@ -5070,7 +4463,7 @@ } }, { - "id": 11210, + "id": 10133, "properties": { "powered": "true", "shape": "ascending_east", @@ -5078,7 +4471,7 @@ } }, { - "id": 11211, + "id": 10134, "properties": { "powered": "true", "shape": "ascending_east", @@ -5086,7 +4479,7 @@ } }, { - "id": 11212, + "id": 10135, "properties": { "powered": "true", "shape": "ascending_west", @@ -5094,7 +4487,7 @@ } }, { - "id": 11213, + "id": 10136, "properties": { "powered": "true", "shape": "ascending_west", @@ -5102,7 +4495,7 @@ } }, { - "id": 11214, + "id": 10137, "properties": { "powered": "true", "shape": "ascending_north", @@ -5110,7 +4503,7 @@ } }, { - "id": 11215, + "id": 10138, "properties": { "powered": "true", "shape": "ascending_north", @@ -5118,7 +4511,7 @@ } }, { - "id": 11216, + "id": 10139, "properties": { "powered": "true", "shape": "ascending_south", @@ -5126,7 +4519,7 @@ } }, { - "id": 11217, + "id": 10140, "properties": { "powered": "true", "shape": "ascending_south", @@ -5134,7 +4527,7 @@ } }, { - "id": 11218, + "id": 10141, "properties": { "powered": "false", "shape": "north_south", @@ -5143,7 +4536,7 @@ }, { "default": true, - "id": 11219, + "id": 10142, "properties": { "powered": "false", "shape": "north_south", @@ -5151,7 +4544,7 @@ } }, { - "id": 11220, + "id": 10143, "properties": { "powered": "false", "shape": "east_west", @@ -5159,7 +4552,7 @@ } }, { - "id": 11221, + "id": 10144, "properties": { "powered": "false", "shape": "east_west", @@ -5167,7 +4560,7 @@ } }, { - "id": 11222, + "id": 10145, "properties": { "powered": "false", "shape": "ascending_east", @@ -5175,7 +4568,7 @@ } }, { - "id": 11223, + "id": 10146, "properties": { "powered": "false", "shape": "ascending_east", @@ -5183,7 +4576,7 @@ } }, { - "id": 11224, + "id": 10147, "properties": { "powered": "false", "shape": "ascending_west", @@ -5191,7 +4584,7 @@ } }, { - "id": 11225, + "id": 10148, "properties": { "powered": "false", "shape": "ascending_west", @@ -5199,7 +4592,7 @@ } }, { - "id": 11226, + "id": 10149, "properties": { "powered": "false", "shape": "ascending_north", @@ -5207,7 +4600,7 @@ } }, { - "id": 11227, + "id": 10150, "properties": { "powered": "false", "shape": "ascending_north", @@ -5215,7 +4608,7 @@ } }, { - "id": 11228, + "id": 10151, "properties": { "powered": "false", "shape": "ascending_south", @@ -5223,7 +4616,7 @@ } }, { - "id": 11229, + "id": 10152, "properties": { "powered": "false", "shape": "ascending_south", @@ -5270,7 +4663,7 @@ "states": [ { "default": true, - "id": 23200 + "id": 22059 } ] }, @@ -5297,63 +4690,63 @@ }, "states": [ { - "id": 23202, + "id": 22061, "properties": { "facing": "north", "waterlogged": "true" } }, { - "id": 23203, + "id": 22062, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 23204, + "id": 22063, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 23205, + "id": 22064, "properties": { "facing": "east", "waterlogged": "false" } }, { - "id": 23206, + "id": 22065, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 23207, + "id": 22066, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 23208, + "id": 22067, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 23209, + "id": 22068, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 23210, + "id": 22069, "properties": { "facing": "up", "waterlogged": "true" @@ -5361,21 +4754,21 @@ }, { "default": true, - "id": 23211, + "id": 22070, "properties": { "facing": "up", "waterlogged": "false" } }, { - "id": 23212, + "id": 22071, "properties": { "facing": "down", "waterlogged": "true" } }, { - "id": 23213, + "id": 22072, "properties": { "facing": "down", "waterlogged": "false" @@ -5391,7 +4784,7 @@ "states": [ { "default": true, - "id": 21617 + "id": 20476 } ] }, @@ -5425,21 +4818,21 @@ }, "states": [ { - "id": 16268, + "id": 15159, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 16269, + "id": 15160, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 16270, + "id": 15161, "properties": { "type": "bottom", "waterlogged": "true" @@ -5447,21 +4840,21 @@ }, { "default": true, - "id": 16271, + "id": 15162, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 16272, + "id": 15163, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 16273, + "id": 15164, "properties": { "type": "double", "waterlogged": "false" @@ -5502,7 +4895,7 @@ }, "states": [ { - "id": 15894, + "id": 14785, "properties": { "facing": "north", "half": "top", @@ -5511,7 +4904,7 @@ } }, { - "id": 15895, + "id": 14786, "properties": { "facing": "north", "half": "top", @@ -5520,7 +4913,7 @@ } }, { - "id": 15896, + "id": 14787, "properties": { "facing": "north", "half": "top", @@ -5529,7 +4922,7 @@ } }, { - "id": 15897, + "id": 14788, "properties": { "facing": "north", "half": "top", @@ -5538,7 +4931,7 @@ } }, { - "id": 15898, + "id": 14789, "properties": { "facing": "north", "half": "top", @@ -5547,7 +4940,7 @@ } }, { - "id": 15899, + "id": 14790, "properties": { "facing": "north", "half": "top", @@ -5556,7 +4949,7 @@ } }, { - "id": 15900, + "id": 14791, "properties": { "facing": "north", "half": "top", @@ -5565,7 +4958,7 @@ } }, { - "id": 15901, + "id": 14792, "properties": { "facing": "north", "half": "top", @@ -5574,7 +4967,7 @@ } }, { - "id": 15902, + "id": 14793, "properties": { "facing": "north", "half": "top", @@ -5583,7 +4976,7 @@ } }, { - "id": 15903, + "id": 14794, "properties": { "facing": "north", "half": "top", @@ -5592,7 +4985,7 @@ } }, { - "id": 15904, + "id": 14795, "properties": { "facing": "north", "half": "bottom", @@ -5602,7 +4995,7 @@ }, { "default": true, - "id": 15905, + "id": 14796, "properties": { "facing": "north", "half": "bottom", @@ -5611,7 +5004,7 @@ } }, { - "id": 15906, + "id": 14797, "properties": { "facing": "north", "half": "bottom", @@ -5620,7 +5013,7 @@ } }, { - "id": 15907, + "id": 14798, "properties": { "facing": "north", "half": "bottom", @@ -5629,7 +5022,7 @@ } }, { - "id": 15908, + "id": 14799, "properties": { "facing": "north", "half": "bottom", @@ -5638,7 +5031,7 @@ } }, { - "id": 15909, + "id": 14800, "properties": { "facing": "north", "half": "bottom", @@ -5647,7 +5040,7 @@ } }, { - "id": 15910, + "id": 14801, "properties": { "facing": "north", "half": "bottom", @@ -5656,7 +5049,7 @@ } }, { - "id": 15911, + "id": 14802, "properties": { "facing": "north", "half": "bottom", @@ -5665,7 +5058,7 @@ } }, { - "id": 15912, + "id": 14803, "properties": { "facing": "north", "half": "bottom", @@ -5674,7 +5067,7 @@ } }, { - "id": 15913, + "id": 14804, "properties": { "facing": "north", "half": "bottom", @@ -5683,7 +5076,7 @@ } }, { - "id": 15914, + "id": 14805, "properties": { "facing": "south", "half": "top", @@ -5692,7 +5085,7 @@ } }, { - "id": 15915, + "id": 14806, "properties": { "facing": "south", "half": "top", @@ -5701,7 +5094,7 @@ } }, { - "id": 15916, + "id": 14807, "properties": { "facing": "south", "half": "top", @@ -5710,7 +5103,7 @@ } }, { - "id": 15917, + "id": 14808, "properties": { "facing": "south", "half": "top", @@ -5719,7 +5112,7 @@ } }, { - "id": 15918, + "id": 14809, "properties": { "facing": "south", "half": "top", @@ -5728,7 +5121,7 @@ } }, { - "id": 15919, + "id": 14810, "properties": { "facing": "south", "half": "top", @@ -5737,7 +5130,7 @@ } }, { - "id": 15920, + "id": 14811, "properties": { "facing": "south", "half": "top", @@ -5746,7 +5139,7 @@ } }, { - "id": 15921, + "id": 14812, "properties": { "facing": "south", "half": "top", @@ -5755,7 +5148,7 @@ } }, { - "id": 15922, + "id": 14813, "properties": { "facing": "south", "half": "top", @@ -5764,7 +5157,7 @@ } }, { - "id": 15923, + "id": 14814, "properties": { "facing": "south", "half": "top", @@ -5773,7 +5166,7 @@ } }, { - "id": 15924, + "id": 14815, "properties": { "facing": "south", "half": "bottom", @@ -5782,7 +5175,7 @@ } }, { - "id": 15925, + "id": 14816, "properties": { "facing": "south", "half": "bottom", @@ -5791,7 +5184,7 @@ } }, { - "id": 15926, + "id": 14817, "properties": { "facing": "south", "half": "bottom", @@ -5800,7 +5193,7 @@ } }, { - "id": 15927, + "id": 14818, "properties": { "facing": "south", "half": "bottom", @@ -5809,7 +5202,7 @@ } }, { - "id": 15928, + "id": 14819, "properties": { "facing": "south", "half": "bottom", @@ -5818,7 +5211,7 @@ } }, { - "id": 15929, + "id": 14820, "properties": { "facing": "south", "half": "bottom", @@ -5827,7 +5220,7 @@ } }, { - "id": 15930, + "id": 14821, "properties": { "facing": "south", "half": "bottom", @@ -5836,7 +5229,7 @@ } }, { - "id": 15931, + "id": 14822, "properties": { "facing": "south", "half": "bottom", @@ -5845,7 +5238,7 @@ } }, { - "id": 15932, + "id": 14823, "properties": { "facing": "south", "half": "bottom", @@ -5854,7 +5247,7 @@ } }, { - "id": 15933, + "id": 14824, "properties": { "facing": "south", "half": "bottom", @@ -5863,7 +5256,7 @@ } }, { - "id": 15934, + "id": 14825, "properties": { "facing": "west", "half": "top", @@ -5872,7 +5265,7 @@ } }, { - "id": 15935, + "id": 14826, "properties": { "facing": "west", "half": "top", @@ -5881,7 +5274,7 @@ } }, { - "id": 15936, + "id": 14827, "properties": { "facing": "west", "half": "top", @@ -5890,7 +5283,7 @@ } }, { - "id": 15937, + "id": 14828, "properties": { "facing": "west", "half": "top", @@ -5899,7 +5292,7 @@ } }, { - "id": 15938, + "id": 14829, "properties": { "facing": "west", "half": "top", @@ -5908,7 +5301,7 @@ } }, { - "id": 15939, + "id": 14830, "properties": { "facing": "west", "half": "top", @@ -5917,7 +5310,7 @@ } }, { - "id": 15940, + "id": 14831, "properties": { "facing": "west", "half": "top", @@ -5926,7 +5319,7 @@ } }, { - "id": 15941, + "id": 14832, "properties": { "facing": "west", "half": "top", @@ -5935,7 +5328,7 @@ } }, { - "id": 15942, + "id": 14833, "properties": { "facing": "west", "half": "top", @@ -5944,7 +5337,7 @@ } }, { - "id": 15943, + "id": 14834, "properties": { "facing": "west", "half": "top", @@ -5953,7 +5346,7 @@ } }, { - "id": 15944, + "id": 14835, "properties": { "facing": "west", "half": "bottom", @@ -5962,7 +5355,7 @@ } }, { - "id": 15945, + "id": 14836, "properties": { "facing": "west", "half": "bottom", @@ -5971,7 +5364,7 @@ } }, { - "id": 15946, + "id": 14837, "properties": { "facing": "west", "half": "bottom", @@ -5980,7 +5373,7 @@ } }, { - "id": 15947, + "id": 14838, "properties": { "facing": "west", "half": "bottom", @@ -5989,7 +5382,7 @@ } }, { - "id": 15948, + "id": 14839, "properties": { "facing": "west", "half": "bottom", @@ -5998,7 +5391,7 @@ } }, { - "id": 15949, + "id": 14840, "properties": { "facing": "west", "half": "bottom", @@ -6007,7 +5400,7 @@ } }, { - "id": 15950, + "id": 14841, "properties": { "facing": "west", "half": "bottom", @@ -6016,7 +5409,7 @@ } }, { - "id": 15951, + "id": 14842, "properties": { "facing": "west", "half": "bottom", @@ -6025,7 +5418,7 @@ } }, { - "id": 15952, + "id": 14843, "properties": { "facing": "west", "half": "bottom", @@ -6034,7 +5427,7 @@ } }, { - "id": 15953, + "id": 14844, "properties": { "facing": "west", "half": "bottom", @@ -6043,7 +5436,7 @@ } }, { - "id": 15954, + "id": 14845, "properties": { "facing": "east", "half": "top", @@ -6052,7 +5445,7 @@ } }, { - "id": 15955, + "id": 14846, "properties": { "facing": "east", "half": "top", @@ -6061,7 +5454,7 @@ } }, { - "id": 15956, + "id": 14847, "properties": { "facing": "east", "half": "top", @@ -6070,7 +5463,7 @@ } }, { - "id": 15957, + "id": 14848, "properties": { "facing": "east", "half": "top", @@ -6079,7 +5472,7 @@ } }, { - "id": 15958, + "id": 14849, "properties": { "facing": "east", "half": "top", @@ -6088,7 +5481,7 @@ } }, { - "id": 15959, + "id": 14850, "properties": { "facing": "east", "half": "top", @@ -6097,7 +5490,7 @@ } }, { - "id": 15960, + "id": 14851, "properties": { "facing": "east", "half": "top", @@ -6106,7 +5499,7 @@ } }, { - "id": 15961, + "id": 14852, "properties": { "facing": "east", "half": "top", @@ -6115,7 +5508,7 @@ } }, { - "id": 15962, + "id": 14853, "properties": { "facing": "east", "half": "top", @@ -6124,7 +5517,7 @@ } }, { - "id": 15963, + "id": 14854, "properties": { "facing": "east", "half": "top", @@ -6133,7 +5526,7 @@ } }, { - "id": 15964, + "id": 14855, "properties": { "facing": "east", "half": "bottom", @@ -6142,7 +5535,7 @@ } }, { - "id": 15965, + "id": 14856, "properties": { "facing": "east", "half": "bottom", @@ -6151,7 +5544,7 @@ } }, { - "id": 15966, + "id": 14857, "properties": { "facing": "east", "half": "bottom", @@ -6160,7 +5553,7 @@ } }, { - "id": 15967, + "id": 14858, "properties": { "facing": "east", "half": "bottom", @@ -6169,7 +5562,7 @@ } }, { - "id": 15968, + "id": 14859, "properties": { "facing": "east", "half": "bottom", @@ -6178,7 +5571,7 @@ } }, { - "id": 15969, + "id": 14860, "properties": { "facing": "east", "half": "bottom", @@ -6187,7 +5580,7 @@ } }, { - "id": 15970, + "id": 14861, "properties": { "facing": "east", "half": "bottom", @@ -6196,7 +5589,7 @@ } }, { - "id": 15971, + "id": 14862, "properties": { "facing": "east", "half": "bottom", @@ -6205,7 +5598,7 @@ } }, { - "id": 15972, + "id": 14863, "properties": { "facing": "east", "half": "bottom", @@ -6214,7 +5607,7 @@ } }, { - "id": 15973, + "id": 14864, "properties": { "facing": "east", "half": "bottom", @@ -6261,7 +5654,7 @@ }, "states": [ { - "id": 18884, + "id": 17775, "properties": { "east": "none", "north": "none", @@ -6272,7 +5665,7 @@ } }, { - "id": 18885, + "id": 17776, "properties": { "east": "none", "north": "none", @@ -6283,7 +5676,7 @@ } }, { - "id": 18886, + "id": 17777, "properties": { "east": "none", "north": "none", @@ -6295,7 +5688,7 @@ }, { "default": true, - "id": 18887, + "id": 17778, "properties": { "east": "none", "north": "none", @@ -6306,7 +5699,7 @@ } }, { - "id": 18888, + "id": 17779, "properties": { "east": "none", "north": "none", @@ -6317,7 +5710,7 @@ } }, { - "id": 18889, + "id": 17780, "properties": { "east": "none", "north": "none", @@ -6328,7 +5721,7 @@ } }, { - "id": 18890, + "id": 17781, "properties": { "east": "none", "north": "none", @@ -6339,7 +5732,7 @@ } }, { - "id": 18891, + "id": 17782, "properties": { "east": "none", "north": "none", @@ -6350,7 +5743,7 @@ } }, { - "id": 18892, + "id": 17783, "properties": { "east": "none", "north": "none", @@ -6361,7 +5754,7 @@ } }, { - "id": 18893, + "id": 17784, "properties": { "east": "none", "north": "none", @@ -6372,7 +5765,7 @@ } }, { - "id": 18894, + "id": 17785, "properties": { "east": "none", "north": "none", @@ -6383,7 +5776,7 @@ } }, { - "id": 18895, + "id": 17786, "properties": { "east": "none", "north": "none", @@ -6394,7 +5787,7 @@ } }, { - "id": 18896, + "id": 17787, "properties": { "east": "none", "north": "none", @@ -6405,7 +5798,7 @@ } }, { - "id": 18897, + "id": 17788, "properties": { "east": "none", "north": "none", @@ -6416,7 +5809,7 @@ } }, { - "id": 18898, + "id": 17789, "properties": { "east": "none", "north": "none", @@ -6427,7 +5820,7 @@ } }, { - "id": 18899, + "id": 17790, "properties": { "east": "none", "north": "none", @@ -6438,7 +5831,7 @@ } }, { - "id": 18900, + "id": 17791, "properties": { "east": "none", "north": "none", @@ -6449,7 +5842,7 @@ } }, { - "id": 18901, + "id": 17792, "properties": { "east": "none", "north": "none", @@ -6460,7 +5853,7 @@ } }, { - "id": 18902, + "id": 17793, "properties": { "east": "none", "north": "none", @@ -6471,7 +5864,7 @@ } }, { - "id": 18903, + "id": 17794, "properties": { "east": "none", "north": "none", @@ -6482,7 +5875,7 @@ } }, { - "id": 18904, + "id": 17795, "properties": { "east": "none", "north": "none", @@ -6493,7 +5886,7 @@ } }, { - "id": 18905, + "id": 17796, "properties": { "east": "none", "north": "none", @@ -6504,7 +5897,7 @@ } }, { - "id": 18906, + "id": 17797, "properties": { "east": "none", "north": "none", @@ -6515,7 +5908,7 @@ } }, { - "id": 18907, + "id": 17798, "properties": { "east": "none", "north": "none", @@ -6526,7 +5919,7 @@ } }, { - "id": 18908, + "id": 17799, "properties": { "east": "none", "north": "none", @@ -6537,7 +5930,7 @@ } }, { - "id": 18909, + "id": 17800, "properties": { "east": "none", "north": "none", @@ -6548,7 +5941,7 @@ } }, { - "id": 18910, + "id": 17801, "properties": { "east": "none", "north": "none", @@ -6559,7 +5952,7 @@ } }, { - "id": 18911, + "id": 17802, "properties": { "east": "none", "north": "none", @@ -6570,7 +5963,7 @@ } }, { - "id": 18912, + "id": 17803, "properties": { "east": "none", "north": "none", @@ -6581,7 +5974,7 @@ } }, { - "id": 18913, + "id": 17804, "properties": { "east": "none", "north": "none", @@ -6592,7 +5985,7 @@ } }, { - "id": 18914, + "id": 17805, "properties": { "east": "none", "north": "none", @@ -6603,7 +5996,7 @@ } }, { - "id": 18915, + "id": 17806, "properties": { "east": "none", "north": "none", @@ -6614,7 +6007,7 @@ } }, { - "id": 18916, + "id": 17807, "properties": { "east": "none", "north": "none", @@ -6625,7 +6018,7 @@ } }, { - "id": 18917, + "id": 17808, "properties": { "east": "none", "north": "none", @@ -6636,7 +6029,7 @@ } }, { - "id": 18918, + "id": 17809, "properties": { "east": "none", "north": "none", @@ -6647,7 +6040,7 @@ } }, { - "id": 18919, + "id": 17810, "properties": { "east": "none", "north": "none", @@ -6658,7 +6051,7 @@ } }, { - "id": 18920, + "id": 17811, "properties": { "east": "none", "north": "low", @@ -6669,7 +6062,7 @@ } }, { - "id": 18921, + "id": 17812, "properties": { "east": "none", "north": "low", @@ -6680,7 +6073,7 @@ } }, { - "id": 18922, + "id": 17813, "properties": { "east": "none", "north": "low", @@ -6691,7 +6084,7 @@ } }, { - "id": 18923, + "id": 17814, "properties": { "east": "none", "north": "low", @@ -6702,7 +6095,7 @@ } }, { - "id": 18924, + "id": 17815, "properties": { "east": "none", "north": "low", @@ -6713,7 +6106,7 @@ } }, { - "id": 18925, + "id": 17816, "properties": { "east": "none", "north": "low", @@ -6724,7 +6117,7 @@ } }, { - "id": 18926, + "id": 17817, "properties": { "east": "none", "north": "low", @@ -6735,7 +6128,7 @@ } }, { - "id": 18927, + "id": 17818, "properties": { "east": "none", "north": "low", @@ -6746,7 +6139,7 @@ } }, { - "id": 18928, + "id": 17819, "properties": { "east": "none", "north": "low", @@ -6757,7 +6150,7 @@ } }, { - "id": 18929, + "id": 17820, "properties": { "east": "none", "north": "low", @@ -6768,7 +6161,7 @@ } }, { - "id": 18930, + "id": 17821, "properties": { "east": "none", "north": "low", @@ -6779,7 +6172,7 @@ } }, { - "id": 18931, + "id": 17822, "properties": { "east": "none", "north": "low", @@ -6790,7 +6183,7 @@ } }, { - "id": 18932, + "id": 17823, "properties": { "east": "none", "north": "low", @@ -6801,7 +6194,7 @@ } }, { - "id": 18933, + "id": 17824, "properties": { "east": "none", "north": "low", @@ -6812,7 +6205,7 @@ } }, { - "id": 18934, + "id": 17825, "properties": { "east": "none", "north": "low", @@ -6823,7 +6216,7 @@ } }, { - "id": 18935, + "id": 17826, "properties": { "east": "none", "north": "low", @@ -6834,7 +6227,7 @@ } }, { - "id": 18936, + "id": 17827, "properties": { "east": "none", "north": "low", @@ -6845,7 +6238,7 @@ } }, { - "id": 18937, + "id": 17828, "properties": { "east": "none", "north": "low", @@ -6856,7 +6249,7 @@ } }, { - "id": 18938, + "id": 17829, "properties": { "east": "none", "north": "low", @@ -6867,7 +6260,7 @@ } }, { - "id": 18939, + "id": 17830, "properties": { "east": "none", "north": "low", @@ -6878,7 +6271,7 @@ } }, { - "id": 18940, + "id": 17831, "properties": { "east": "none", "north": "low", @@ -6889,7 +6282,7 @@ } }, { - "id": 18941, + "id": 17832, "properties": { "east": "none", "north": "low", @@ -6900,7 +6293,7 @@ } }, { - "id": 18942, + "id": 17833, "properties": { "east": "none", "north": "low", @@ -6911,7 +6304,7 @@ } }, { - "id": 18943, + "id": 17834, "properties": { "east": "none", "north": "low", @@ -6922,7 +6315,7 @@ } }, { - "id": 18944, + "id": 17835, "properties": { "east": "none", "north": "low", @@ -6933,7 +6326,7 @@ } }, { - "id": 18945, + "id": 17836, "properties": { "east": "none", "north": "low", @@ -6944,7 +6337,7 @@ } }, { - "id": 18946, + "id": 17837, "properties": { "east": "none", "north": "low", @@ -6955,7 +6348,7 @@ } }, { - "id": 18947, + "id": 17838, "properties": { "east": "none", "north": "low", @@ -6966,7 +6359,7 @@ } }, { - "id": 18948, + "id": 17839, "properties": { "east": "none", "north": "low", @@ -6977,7 +6370,7 @@ } }, { - "id": 18949, + "id": 17840, "properties": { "east": "none", "north": "low", @@ -6988,7 +6381,7 @@ } }, { - "id": 18950, + "id": 17841, "properties": { "east": "none", "north": "low", @@ -6999,7 +6392,7 @@ } }, { - "id": 18951, + "id": 17842, "properties": { "east": "none", "north": "low", @@ -7010,7 +6403,7 @@ } }, { - "id": 18952, + "id": 17843, "properties": { "east": "none", "north": "low", @@ -7021,7 +6414,7 @@ } }, { - "id": 18953, + "id": 17844, "properties": { "east": "none", "north": "low", @@ -7032,7 +6425,7 @@ } }, { - "id": 18954, + "id": 17845, "properties": { "east": "none", "north": "low", @@ -7043,7 +6436,7 @@ } }, { - "id": 18955, + "id": 17846, "properties": { "east": "none", "north": "low", @@ -7054,7 +6447,7 @@ } }, { - "id": 18956, + "id": 17847, "properties": { "east": "none", "north": "tall", @@ -7065,7 +6458,7 @@ } }, { - "id": 18957, + "id": 17848, "properties": { "east": "none", "north": "tall", @@ -7076,7 +6469,7 @@ } }, { - "id": 18958, + "id": 17849, "properties": { "east": "none", "north": "tall", @@ -7087,7 +6480,7 @@ } }, { - "id": 18959, + "id": 17850, "properties": { "east": "none", "north": "tall", @@ -7098,7 +6491,7 @@ } }, { - "id": 18960, + "id": 17851, "properties": { "east": "none", "north": "tall", @@ -7109,7 +6502,7 @@ } }, { - "id": 18961, + "id": 17852, "properties": { "east": "none", "north": "tall", @@ -7120,7 +6513,7 @@ } }, { - "id": 18962, + "id": 17853, "properties": { "east": "none", "north": "tall", @@ -7131,7 +6524,7 @@ } }, { - "id": 18963, + "id": 17854, "properties": { "east": "none", "north": "tall", @@ -7142,7 +6535,7 @@ } }, { - "id": 18964, + "id": 17855, "properties": { "east": "none", "north": "tall", @@ -7153,7 +6546,7 @@ } }, { - "id": 18965, + "id": 17856, "properties": { "east": "none", "north": "tall", @@ -7164,7 +6557,7 @@ } }, { - "id": 18966, + "id": 17857, "properties": { "east": "none", "north": "tall", @@ -7175,7 +6568,7 @@ } }, { - "id": 18967, + "id": 17858, "properties": { "east": "none", "north": "tall", @@ -7186,7 +6579,7 @@ } }, { - "id": 18968, + "id": 17859, "properties": { "east": "none", "north": "tall", @@ -7197,7 +6590,7 @@ } }, { - "id": 18969, + "id": 17860, "properties": { "east": "none", "north": "tall", @@ -7208,7 +6601,7 @@ } }, { - "id": 18970, + "id": 17861, "properties": { "east": "none", "north": "tall", @@ -7219,7 +6612,7 @@ } }, { - "id": 18971, + "id": 17862, "properties": { "east": "none", "north": "tall", @@ -7230,7 +6623,7 @@ } }, { - "id": 18972, + "id": 17863, "properties": { "east": "none", "north": "tall", @@ -7241,7 +6634,7 @@ } }, { - "id": 18973, + "id": 17864, "properties": { "east": "none", "north": "tall", @@ -7252,7 +6645,7 @@ } }, { - "id": 18974, + "id": 17865, "properties": { "east": "none", "north": "tall", @@ -7263,7 +6656,7 @@ } }, { - "id": 18975, + "id": 17866, "properties": { "east": "none", "north": "tall", @@ -7274,7 +6667,7 @@ } }, { - "id": 18976, + "id": 17867, "properties": { "east": "none", "north": "tall", @@ -7285,7 +6678,7 @@ } }, { - "id": 18977, + "id": 17868, "properties": { "east": "none", "north": "tall", @@ -7296,7 +6689,7 @@ } }, { - "id": 18978, + "id": 17869, "properties": { "east": "none", "north": "tall", @@ -7307,7 +6700,7 @@ } }, { - "id": 18979, + "id": 17870, "properties": { "east": "none", "north": "tall", @@ -7318,7 +6711,7 @@ } }, { - "id": 18980, + "id": 17871, "properties": { "east": "none", "north": "tall", @@ -7329,7 +6722,7 @@ } }, { - "id": 18981, + "id": 17872, "properties": { "east": "none", "north": "tall", @@ -7340,7 +6733,7 @@ } }, { - "id": 18982, + "id": 17873, "properties": { "east": "none", "north": "tall", @@ -7351,7 +6744,7 @@ } }, { - "id": 18983, + "id": 17874, "properties": { "east": "none", "north": "tall", @@ -7362,7 +6755,7 @@ } }, { - "id": 18984, + "id": 17875, "properties": { "east": "none", "north": "tall", @@ -7373,7 +6766,7 @@ } }, { - "id": 18985, + "id": 17876, "properties": { "east": "none", "north": "tall", @@ -7384,7 +6777,7 @@ } }, { - "id": 18986, + "id": 17877, "properties": { "east": "none", "north": "tall", @@ -7395,7 +6788,7 @@ } }, { - "id": 18987, + "id": 17878, "properties": { "east": "none", "north": "tall", @@ -7406,7 +6799,7 @@ } }, { - "id": 18988, + "id": 17879, "properties": { "east": "none", "north": "tall", @@ -7417,7 +6810,7 @@ } }, { - "id": 18989, + "id": 17880, "properties": { "east": "none", "north": "tall", @@ -7428,7 +6821,7 @@ } }, { - "id": 18990, + "id": 17881, "properties": { "east": "none", "north": "tall", @@ -7439,7 +6832,7 @@ } }, { - "id": 18991, + "id": 17882, "properties": { "east": "none", "north": "tall", @@ -7450,7 +6843,7 @@ } }, { - "id": 18992, + "id": 17883, "properties": { "east": "low", "north": "none", @@ -7461,7 +6854,7 @@ } }, { - "id": 18993, + "id": 17884, "properties": { "east": "low", "north": "none", @@ -7472,7 +6865,7 @@ } }, { - "id": 18994, + "id": 17885, "properties": { "east": "low", "north": "none", @@ -7483,7 +6876,7 @@ } }, { - "id": 18995, + "id": 17886, "properties": { "east": "low", "north": "none", @@ -7494,7 +6887,7 @@ } }, { - "id": 18996, + "id": 17887, "properties": { "east": "low", "north": "none", @@ -7505,7 +6898,7 @@ } }, { - "id": 18997, + "id": 17888, "properties": { "east": "low", "north": "none", @@ -7516,7 +6909,7 @@ } }, { - "id": 18998, + "id": 17889, "properties": { "east": "low", "north": "none", @@ -7527,7 +6920,7 @@ } }, { - "id": 18999, + "id": 17890, "properties": { "east": "low", "north": "none", @@ -7538,7 +6931,7 @@ } }, { - "id": 19000, + "id": 17891, "properties": { "east": "low", "north": "none", @@ -7549,7 +6942,7 @@ } }, { - "id": 19001, + "id": 17892, "properties": { "east": "low", "north": "none", @@ -7560,7 +6953,7 @@ } }, { - "id": 19002, + "id": 17893, "properties": { "east": "low", "north": "none", @@ -7571,7 +6964,7 @@ } }, { - "id": 19003, + "id": 17894, "properties": { "east": "low", "north": "none", @@ -7582,7 +6975,7 @@ } }, { - "id": 19004, + "id": 17895, "properties": { "east": "low", "north": "none", @@ -7593,7 +6986,7 @@ } }, { - "id": 19005, + "id": 17896, "properties": { "east": "low", "north": "none", @@ -7604,7 +6997,7 @@ } }, { - "id": 19006, + "id": 17897, "properties": { "east": "low", "north": "none", @@ -7615,7 +7008,7 @@ } }, { - "id": 19007, + "id": 17898, "properties": { "east": "low", "north": "none", @@ -7626,7 +7019,7 @@ } }, { - "id": 19008, + "id": 17899, "properties": { "east": "low", "north": "none", @@ -7637,7 +7030,7 @@ } }, { - "id": 19009, + "id": 17900, "properties": { "east": "low", "north": "none", @@ -7648,7 +7041,7 @@ } }, { - "id": 19010, + "id": 17901, "properties": { "east": "low", "north": "none", @@ -7659,7 +7052,7 @@ } }, { - "id": 19011, + "id": 17902, "properties": { "east": "low", "north": "none", @@ -7670,7 +7063,7 @@ } }, { - "id": 19012, + "id": 17903, "properties": { "east": "low", "north": "none", @@ -7681,7 +7074,7 @@ } }, { - "id": 19013, + "id": 17904, "properties": { "east": "low", "north": "none", @@ -7692,7 +7085,7 @@ } }, { - "id": 19014, + "id": 17905, "properties": { "east": "low", "north": "none", @@ -7703,7 +7096,7 @@ } }, { - "id": 19015, + "id": 17906, "properties": { "east": "low", "north": "none", @@ -7714,7 +7107,7 @@ } }, { - "id": 19016, + "id": 17907, "properties": { "east": "low", "north": "none", @@ -7725,7 +7118,7 @@ } }, { - "id": 19017, + "id": 17908, "properties": { "east": "low", "north": "none", @@ -7736,7 +7129,7 @@ } }, { - "id": 19018, + "id": 17909, "properties": { "east": "low", "north": "none", @@ -7747,7 +7140,7 @@ } }, { - "id": 19019, + "id": 17910, "properties": { "east": "low", "north": "none", @@ -7758,7 +7151,7 @@ } }, { - "id": 19020, + "id": 17911, "properties": { "east": "low", "north": "none", @@ -7769,7 +7162,7 @@ } }, { - "id": 19021, + "id": 17912, "properties": { "east": "low", "north": "none", @@ -7780,7 +7173,7 @@ } }, { - "id": 19022, + "id": 17913, "properties": { "east": "low", "north": "none", @@ -7791,7 +7184,7 @@ } }, { - "id": 19023, + "id": 17914, "properties": { "east": "low", "north": "none", @@ -7802,7 +7195,7 @@ } }, { - "id": 19024, + "id": 17915, "properties": { "east": "low", "north": "none", @@ -7813,7 +7206,7 @@ } }, { - "id": 19025, + "id": 17916, "properties": { "east": "low", "north": "none", @@ -7824,7 +7217,7 @@ } }, { - "id": 19026, + "id": 17917, "properties": { "east": "low", "north": "none", @@ -7835,7 +7228,7 @@ } }, { - "id": 19027, + "id": 17918, "properties": { "east": "low", "north": "none", @@ -7846,7 +7239,7 @@ } }, { - "id": 19028, + "id": 17919, "properties": { "east": "low", "north": "low", @@ -7857,7 +7250,7 @@ } }, { - "id": 19029, + "id": 17920, "properties": { "east": "low", "north": "low", @@ -7868,7 +7261,7 @@ } }, { - "id": 19030, + "id": 17921, "properties": { "east": "low", "north": "low", @@ -7879,7 +7272,7 @@ } }, { - "id": 19031, + "id": 17922, "properties": { "east": "low", "north": "low", @@ -7890,7 +7283,7 @@ } }, { - "id": 19032, + "id": 17923, "properties": { "east": "low", "north": "low", @@ -7901,7 +7294,7 @@ } }, { - "id": 19033, + "id": 17924, "properties": { "east": "low", "north": "low", @@ -7912,7 +7305,7 @@ } }, { - "id": 19034, + "id": 17925, "properties": { "east": "low", "north": "low", @@ -7923,7 +7316,7 @@ } }, { - "id": 19035, + "id": 17926, "properties": { "east": "low", "north": "low", @@ -7934,7 +7327,7 @@ } }, { - "id": 19036, + "id": 17927, "properties": { "east": "low", "north": "low", @@ -7945,7 +7338,7 @@ } }, { - "id": 19037, + "id": 17928, "properties": { "east": "low", "north": "low", @@ -7956,7 +7349,7 @@ } }, { - "id": 19038, + "id": 17929, "properties": { "east": "low", "north": "low", @@ -7967,7 +7360,7 @@ } }, { - "id": 19039, + "id": 17930, "properties": { "east": "low", "north": "low", @@ -7978,7 +7371,7 @@ } }, { - "id": 19040, + "id": 17931, "properties": { "east": "low", "north": "low", @@ -7989,7 +7382,7 @@ } }, { - "id": 19041, + "id": 17932, "properties": { "east": "low", "north": "low", @@ -8000,7 +7393,7 @@ } }, { - "id": 19042, + "id": 17933, "properties": { "east": "low", "north": "low", @@ -8011,7 +7404,7 @@ } }, { - "id": 19043, + "id": 17934, "properties": { "east": "low", "north": "low", @@ -8022,7 +7415,7 @@ } }, { - "id": 19044, + "id": 17935, "properties": { "east": "low", "north": "low", @@ -8033,7 +7426,7 @@ } }, { - "id": 19045, + "id": 17936, "properties": { "east": "low", "north": "low", @@ -8044,7 +7437,7 @@ } }, { - "id": 19046, + "id": 17937, "properties": { "east": "low", "north": "low", @@ -8055,7 +7448,7 @@ } }, { - "id": 19047, + "id": 17938, "properties": { "east": "low", "north": "low", @@ -8066,7 +7459,7 @@ } }, { - "id": 19048, + "id": 17939, "properties": { "east": "low", "north": "low", @@ -8077,7 +7470,7 @@ } }, { - "id": 19049, + "id": 17940, "properties": { "east": "low", "north": "low", @@ -8088,7 +7481,7 @@ } }, { - "id": 19050, + "id": 17941, "properties": { "east": "low", "north": "low", @@ -8099,7 +7492,7 @@ } }, { - "id": 19051, + "id": 17942, "properties": { "east": "low", "north": "low", @@ -8110,7 +7503,7 @@ } }, { - "id": 19052, + "id": 17943, "properties": { "east": "low", "north": "low", @@ -8121,7 +7514,7 @@ } }, { - "id": 19053, + "id": 17944, "properties": { "east": "low", "north": "low", @@ -8132,7 +7525,7 @@ } }, { - "id": 19054, + "id": 17945, "properties": { "east": "low", "north": "low", @@ -8143,7 +7536,7 @@ } }, { - "id": 19055, + "id": 17946, "properties": { "east": "low", "north": "low", @@ -8154,7 +7547,7 @@ } }, { - "id": 19056, + "id": 17947, "properties": { "east": "low", "north": "low", @@ -8165,7 +7558,7 @@ } }, { - "id": 19057, + "id": 17948, "properties": { "east": "low", "north": "low", @@ -8176,7 +7569,7 @@ } }, { - "id": 19058, + "id": 17949, "properties": { "east": "low", "north": "low", @@ -8187,7 +7580,7 @@ } }, { - "id": 19059, + "id": 17950, "properties": { "east": "low", "north": "low", @@ -8198,7 +7591,7 @@ } }, { - "id": 19060, + "id": 17951, "properties": { "east": "low", "north": "low", @@ -8209,7 +7602,7 @@ } }, { - "id": 19061, + "id": 17952, "properties": { "east": "low", "north": "low", @@ -8220,7 +7613,7 @@ } }, { - "id": 19062, + "id": 17953, "properties": { "east": "low", "north": "low", @@ -8231,7 +7624,7 @@ } }, { - "id": 19063, + "id": 17954, "properties": { "east": "low", "north": "low", @@ -8242,7 +7635,7 @@ } }, { - "id": 19064, + "id": 17955, "properties": { "east": "low", "north": "tall", @@ -8253,7 +7646,7 @@ } }, { - "id": 19065, + "id": 17956, "properties": { "east": "low", "north": "tall", @@ -8264,7 +7657,7 @@ } }, { - "id": 19066, + "id": 17957, "properties": { "east": "low", "north": "tall", @@ -8275,7 +7668,7 @@ } }, { - "id": 19067, + "id": 17958, "properties": { "east": "low", "north": "tall", @@ -8286,7 +7679,7 @@ } }, { - "id": 19068, + "id": 17959, "properties": { "east": "low", "north": "tall", @@ -8297,7 +7690,7 @@ } }, { - "id": 19069, + "id": 17960, "properties": { "east": "low", "north": "tall", @@ -8308,7 +7701,7 @@ } }, { - "id": 19070, + "id": 17961, "properties": { "east": "low", "north": "tall", @@ -8319,7 +7712,7 @@ } }, { - "id": 19071, + "id": 17962, "properties": { "east": "low", "north": "tall", @@ -8330,7 +7723,7 @@ } }, { - "id": 19072, + "id": 17963, "properties": { "east": "low", "north": "tall", @@ -8341,7 +7734,7 @@ } }, { - "id": 19073, + "id": 17964, "properties": { "east": "low", "north": "tall", @@ -8352,7 +7745,7 @@ } }, { - "id": 19074, + "id": 17965, "properties": { "east": "low", "north": "tall", @@ -8363,7 +7756,7 @@ } }, { - "id": 19075, + "id": 17966, "properties": { "east": "low", "north": "tall", @@ -8374,7 +7767,7 @@ } }, { - "id": 19076, + "id": 17967, "properties": { "east": "low", "north": "tall", @@ -8385,7 +7778,7 @@ } }, { - "id": 19077, + "id": 17968, "properties": { "east": "low", "north": "tall", @@ -8396,7 +7789,7 @@ } }, { - "id": 19078, + "id": 17969, "properties": { "east": "low", "north": "tall", @@ -8407,7 +7800,7 @@ } }, { - "id": 19079, + "id": 17970, "properties": { "east": "low", "north": "tall", @@ -8418,7 +7811,7 @@ } }, { - "id": 19080, + "id": 17971, "properties": { "east": "low", "north": "tall", @@ -8429,7 +7822,7 @@ } }, { - "id": 19081, + "id": 17972, "properties": { "east": "low", "north": "tall", @@ -8440,7 +7833,7 @@ } }, { - "id": 19082, + "id": 17973, "properties": { "east": "low", "north": "tall", @@ -8451,7 +7844,7 @@ } }, { - "id": 19083, + "id": 17974, "properties": { "east": "low", "north": "tall", @@ -8462,7 +7855,7 @@ } }, { - "id": 19084, + "id": 17975, "properties": { "east": "low", "north": "tall", @@ -8473,7 +7866,7 @@ } }, { - "id": 19085, + "id": 17976, "properties": { "east": "low", "north": "tall", @@ -8484,7 +7877,7 @@ } }, { - "id": 19086, + "id": 17977, "properties": { "east": "low", "north": "tall", @@ -8495,7 +7888,7 @@ } }, { - "id": 19087, + "id": 17978, "properties": { "east": "low", "north": "tall", @@ -8506,7 +7899,7 @@ } }, { - "id": 19088, + "id": 17979, "properties": { "east": "low", "north": "tall", @@ -8517,7 +7910,7 @@ } }, { - "id": 19089, + "id": 17980, "properties": { "east": "low", "north": "tall", @@ -8528,7 +7921,7 @@ } }, { - "id": 19090, + "id": 17981, "properties": { "east": "low", "north": "tall", @@ -8539,7 +7932,7 @@ } }, { - "id": 19091, + "id": 17982, "properties": { "east": "low", "north": "tall", @@ -8550,7 +7943,7 @@ } }, { - "id": 19092, + "id": 17983, "properties": { "east": "low", "north": "tall", @@ -8561,7 +7954,7 @@ } }, { - "id": 19093, + "id": 17984, "properties": { "east": "low", "north": "tall", @@ -8572,7 +7965,7 @@ } }, { - "id": 19094, + "id": 17985, "properties": { "east": "low", "north": "tall", @@ -8583,7 +7976,7 @@ } }, { - "id": 19095, + "id": 17986, "properties": { "east": "low", "north": "tall", @@ -8594,7 +7987,7 @@ } }, { - "id": 19096, + "id": 17987, "properties": { "east": "low", "north": "tall", @@ -8605,7 +7998,7 @@ } }, { - "id": 19097, + "id": 17988, "properties": { "east": "low", "north": "tall", @@ -8616,7 +8009,7 @@ } }, { - "id": 19098, + "id": 17989, "properties": { "east": "low", "north": "tall", @@ -8627,7 +8020,7 @@ } }, { - "id": 19099, + "id": 17990, "properties": { "east": "low", "north": "tall", @@ -8638,7 +8031,7 @@ } }, { - "id": 19100, + "id": 17991, "properties": { "east": "tall", "north": "none", @@ -8649,7 +8042,7 @@ } }, { - "id": 19101, + "id": 17992, "properties": { "east": "tall", "north": "none", @@ -8660,7 +8053,7 @@ } }, { - "id": 19102, + "id": 17993, "properties": { "east": "tall", "north": "none", @@ -8671,7 +8064,7 @@ } }, { - "id": 19103, + "id": 17994, "properties": { "east": "tall", "north": "none", @@ -8682,7 +8075,7 @@ } }, { - "id": 19104, + "id": 17995, "properties": { "east": "tall", "north": "none", @@ -8693,7 +8086,7 @@ } }, { - "id": 19105, + "id": 17996, "properties": { "east": "tall", "north": "none", @@ -8704,7 +8097,7 @@ } }, { - "id": 19106, + "id": 17997, "properties": { "east": "tall", "north": "none", @@ -8715,7 +8108,7 @@ } }, { - "id": 19107, + "id": 17998, "properties": { "east": "tall", "north": "none", @@ -8726,7 +8119,7 @@ } }, { - "id": 19108, + "id": 17999, "properties": { "east": "tall", "north": "none", @@ -8737,7 +8130,7 @@ } }, { - "id": 19109, + "id": 18000, "properties": { "east": "tall", "north": "none", @@ -8748,7 +8141,7 @@ } }, { - "id": 19110, + "id": 18001, "properties": { "east": "tall", "north": "none", @@ -8759,7 +8152,7 @@ } }, { - "id": 19111, + "id": 18002, "properties": { "east": "tall", "north": "none", @@ -8770,7 +8163,7 @@ } }, { - "id": 19112, + "id": 18003, "properties": { "east": "tall", "north": "none", @@ -8781,7 +8174,7 @@ } }, { - "id": 19113, + "id": 18004, "properties": { "east": "tall", "north": "none", @@ -8792,7 +8185,7 @@ } }, { - "id": 19114, + "id": 18005, "properties": { "east": "tall", "north": "none", @@ -8803,7 +8196,7 @@ } }, { - "id": 19115, + "id": 18006, "properties": { "east": "tall", "north": "none", @@ -8814,7 +8207,7 @@ } }, { - "id": 19116, + "id": 18007, "properties": { "east": "tall", "north": "none", @@ -8825,7 +8218,7 @@ } }, { - "id": 19117, + "id": 18008, "properties": { "east": "tall", "north": "none", @@ -8836,7 +8229,7 @@ } }, { - "id": 19118, + "id": 18009, "properties": { "east": "tall", "north": "none", @@ -8847,7 +8240,7 @@ } }, { - "id": 19119, + "id": 18010, "properties": { "east": "tall", "north": "none", @@ -8858,7 +8251,7 @@ } }, { - "id": 19120, + "id": 18011, "properties": { "east": "tall", "north": "none", @@ -8869,7 +8262,7 @@ } }, { - "id": 19121, + "id": 18012, "properties": { "east": "tall", "north": "none", @@ -8880,7 +8273,7 @@ } }, { - "id": 19122, + "id": 18013, "properties": { "east": "tall", "north": "none", @@ -8891,7 +8284,7 @@ } }, { - "id": 19123, + "id": 18014, "properties": { "east": "tall", "north": "none", @@ -8902,7 +8295,7 @@ } }, { - "id": 19124, + "id": 18015, "properties": { "east": "tall", "north": "none", @@ -8913,7 +8306,7 @@ } }, { - "id": 19125, + "id": 18016, "properties": { "east": "tall", "north": "none", @@ -8924,7 +8317,7 @@ } }, { - "id": 19126, + "id": 18017, "properties": { "east": "tall", "north": "none", @@ -8935,7 +8328,7 @@ } }, { - "id": 19127, + "id": 18018, "properties": { "east": "tall", "north": "none", @@ -8946,7 +8339,7 @@ } }, { - "id": 19128, + "id": 18019, "properties": { "east": "tall", "north": "none", @@ -8957,7 +8350,7 @@ } }, { - "id": 19129, + "id": 18020, "properties": { "east": "tall", "north": "none", @@ -8968,7 +8361,7 @@ } }, { - "id": 19130, + "id": 18021, "properties": { "east": "tall", "north": "none", @@ -8979,7 +8372,7 @@ } }, { - "id": 19131, + "id": 18022, "properties": { "east": "tall", "north": "none", @@ -8990,7 +8383,7 @@ } }, { - "id": 19132, + "id": 18023, "properties": { "east": "tall", "north": "none", @@ -9001,7 +8394,7 @@ } }, { - "id": 19133, + "id": 18024, "properties": { "east": "tall", "north": "none", @@ -9012,7 +8405,7 @@ } }, { - "id": 19134, + "id": 18025, "properties": { "east": "tall", "north": "none", @@ -9023,7 +8416,7 @@ } }, { - "id": 19135, + "id": 18026, "properties": { "east": "tall", "north": "none", @@ -9034,7 +8427,7 @@ } }, { - "id": 19136, + "id": 18027, "properties": { "east": "tall", "north": "low", @@ -9045,7 +8438,7 @@ } }, { - "id": 19137, + "id": 18028, "properties": { "east": "tall", "north": "low", @@ -9056,7 +8449,7 @@ } }, { - "id": 19138, + "id": 18029, "properties": { "east": "tall", "north": "low", @@ -9067,7 +8460,7 @@ } }, { - "id": 19139, + "id": 18030, "properties": { "east": "tall", "north": "low", @@ -9078,7 +8471,7 @@ } }, { - "id": 19140, + "id": 18031, "properties": { "east": "tall", "north": "low", @@ -9089,7 +8482,7 @@ } }, { - "id": 19141, + "id": 18032, "properties": { "east": "tall", "north": "low", @@ -9100,7 +8493,7 @@ } }, { - "id": 19142, + "id": 18033, "properties": { "east": "tall", "north": "low", @@ -9111,7 +8504,7 @@ } }, { - "id": 19143, + "id": 18034, "properties": { "east": "tall", "north": "low", @@ -9122,7 +8515,7 @@ } }, { - "id": 19144, + "id": 18035, "properties": { "east": "tall", "north": "low", @@ -9133,7 +8526,7 @@ } }, { - "id": 19145, + "id": 18036, "properties": { "east": "tall", "north": "low", @@ -9144,7 +8537,7 @@ } }, { - "id": 19146, + "id": 18037, "properties": { "east": "tall", "north": "low", @@ -9155,7 +8548,7 @@ } }, { - "id": 19147, + "id": 18038, "properties": { "east": "tall", "north": "low", @@ -9166,7 +8559,7 @@ } }, { - "id": 19148, + "id": 18039, "properties": { "east": "tall", "north": "low", @@ -9177,7 +8570,7 @@ } }, { - "id": 19149, + "id": 18040, "properties": { "east": "tall", "north": "low", @@ -9188,7 +8581,7 @@ } }, { - "id": 19150, + "id": 18041, "properties": { "east": "tall", "north": "low", @@ -9199,7 +8592,7 @@ } }, { - "id": 19151, + "id": 18042, "properties": { "east": "tall", "north": "low", @@ -9210,7 +8603,7 @@ } }, { - "id": 19152, + "id": 18043, "properties": { "east": "tall", "north": "low", @@ -9221,7 +8614,7 @@ } }, { - "id": 19153, + "id": 18044, "properties": { "east": "tall", "north": "low", @@ -9232,7 +8625,7 @@ } }, { - "id": 19154, + "id": 18045, "properties": { "east": "tall", "north": "low", @@ -9243,7 +8636,7 @@ } }, { - "id": 19155, + "id": 18046, "properties": { "east": "tall", "north": "low", @@ -9254,7 +8647,7 @@ } }, { - "id": 19156, + "id": 18047, "properties": { "east": "tall", "north": "low", @@ -9265,7 +8658,7 @@ } }, { - "id": 19157, + "id": 18048, "properties": { "east": "tall", "north": "low", @@ -9276,7 +8669,7 @@ } }, { - "id": 19158, + "id": 18049, "properties": { "east": "tall", "north": "low", @@ -9287,7 +8680,7 @@ } }, { - "id": 19159, + "id": 18050, "properties": { "east": "tall", "north": "low", @@ -9298,7 +8691,7 @@ } }, { - "id": 19160, + "id": 18051, "properties": { "east": "tall", "north": "low", @@ -9309,7 +8702,7 @@ } }, { - "id": 19161, + "id": 18052, "properties": { "east": "tall", "north": "low", @@ -9320,7 +8713,7 @@ } }, { - "id": 19162, + "id": 18053, "properties": { "east": "tall", "north": "low", @@ -9331,7 +8724,7 @@ } }, { - "id": 19163, + "id": 18054, "properties": { "east": "tall", "north": "low", @@ -9342,7 +8735,7 @@ } }, { - "id": 19164, + "id": 18055, "properties": { "east": "tall", "north": "low", @@ -9353,7 +8746,7 @@ } }, { - "id": 19165, + "id": 18056, "properties": { "east": "tall", "north": "low", @@ -9364,7 +8757,7 @@ } }, { - "id": 19166, + "id": 18057, "properties": { "east": "tall", "north": "low", @@ -9375,7 +8768,7 @@ } }, { - "id": 19167, + "id": 18058, "properties": { "east": "tall", "north": "low", @@ -9386,7 +8779,7 @@ } }, { - "id": 19168, + "id": 18059, "properties": { "east": "tall", "north": "low", @@ -9397,7 +8790,7 @@ } }, { - "id": 19169, + "id": 18060, "properties": { "east": "tall", "north": "low", @@ -9408,7 +8801,7 @@ } }, { - "id": 19170, + "id": 18061, "properties": { "east": "tall", "north": "low", @@ -9419,7 +8812,7 @@ } }, { - "id": 19171, + "id": 18062, "properties": { "east": "tall", "north": "low", @@ -9430,7 +8823,7 @@ } }, { - "id": 19172, + "id": 18063, "properties": { "east": "tall", "north": "tall", @@ -9441,7 +8834,7 @@ } }, { - "id": 19173, + "id": 18064, "properties": { "east": "tall", "north": "tall", @@ -9452,7 +8845,7 @@ } }, { - "id": 19174, + "id": 18065, "properties": { "east": "tall", "north": "tall", @@ -9463,7 +8856,7 @@ } }, { - "id": 19175, + "id": 18066, "properties": { "east": "tall", "north": "tall", @@ -9474,7 +8867,7 @@ } }, { - "id": 19176, + "id": 18067, "properties": { "east": "tall", "north": "tall", @@ -9485,7 +8878,7 @@ } }, { - "id": 19177, + "id": 18068, "properties": { "east": "tall", "north": "tall", @@ -9496,7 +8889,7 @@ } }, { - "id": 19178, + "id": 18069, "properties": { "east": "tall", "north": "tall", @@ -9507,7 +8900,7 @@ } }, { - "id": 19179, + "id": 18070, "properties": { "east": "tall", "north": "tall", @@ -9518,7 +8911,7 @@ } }, { - "id": 19180, + "id": 18071, "properties": { "east": "tall", "north": "tall", @@ -9529,7 +8922,7 @@ } }, { - "id": 19181, + "id": 18072, "properties": { "east": "tall", "north": "tall", @@ -9540,7 +8933,7 @@ } }, { - "id": 19182, + "id": 18073, "properties": { "east": "tall", "north": "tall", @@ -9551,7 +8944,7 @@ } }, { - "id": 19183, + "id": 18074, "properties": { "east": "tall", "north": "tall", @@ -9562,7 +8955,7 @@ } }, { - "id": 19184, + "id": 18075, "properties": { "east": "tall", "north": "tall", @@ -9573,7 +8966,7 @@ } }, { - "id": 19185, + "id": 18076, "properties": { "east": "tall", "north": "tall", @@ -9584,7 +8977,7 @@ } }, { - "id": 19186, + "id": 18077, "properties": { "east": "tall", "north": "tall", @@ -9595,7 +8988,7 @@ } }, { - "id": 19187, + "id": 18078, "properties": { "east": "tall", "north": "tall", @@ -9606,7 +8999,7 @@ } }, { - "id": 19188, + "id": 18079, "properties": { "east": "tall", "north": "tall", @@ -9617,7 +9010,7 @@ } }, { - "id": 19189, + "id": 18080, "properties": { "east": "tall", "north": "tall", @@ -9628,7 +9021,7 @@ } }, { - "id": 19190, + "id": 18081, "properties": { "east": "tall", "north": "tall", @@ -9639,7 +9032,7 @@ } }, { - "id": 19191, + "id": 18082, "properties": { "east": "tall", "north": "tall", @@ -9650,7 +9043,7 @@ } }, { - "id": 19192, + "id": 18083, "properties": { "east": "tall", "north": "tall", @@ -9661,7 +9054,7 @@ } }, { - "id": 19193, + "id": 18084, "properties": { "east": "tall", "north": "tall", @@ -9672,7 +9065,7 @@ } }, { - "id": 19194, + "id": 18085, "properties": { "east": "tall", "north": "tall", @@ -9683,7 +9076,7 @@ } }, { - "id": 19195, + "id": 18086, "properties": { "east": "tall", "north": "tall", @@ -9694,7 +9087,7 @@ } }, { - "id": 19196, + "id": 18087, "properties": { "east": "tall", "north": "tall", @@ -9705,7 +9098,7 @@ } }, { - "id": 19197, + "id": 18088, "properties": { "east": "tall", "north": "tall", @@ -9716,7 +9109,7 @@ } }, { - "id": 19198, + "id": 18089, "properties": { "east": "tall", "north": "tall", @@ -9727,7 +9120,7 @@ } }, { - "id": 19199, + "id": 18090, "properties": { "east": "tall", "north": "tall", @@ -9738,7 +9131,7 @@ } }, { - "id": 19200, + "id": 18091, "properties": { "east": "tall", "north": "tall", @@ -9749,7 +9142,7 @@ } }, { - "id": 19201, + "id": 18092, "properties": { "east": "tall", "north": "tall", @@ -9760,7 +9153,7 @@ } }, { - "id": 19202, + "id": 18093, "properties": { "east": "tall", "north": "tall", @@ -9771,7 +9164,7 @@ } }, { - "id": 19203, + "id": 18094, "properties": { "east": "tall", "north": "tall", @@ -9782,7 +9175,7 @@ } }, { - "id": 19204, + "id": 18095, "properties": { "east": "tall", "north": "tall", @@ -9793,7 +9186,7 @@ } }, { - "id": 19205, + "id": 18096, "properties": { "east": "tall", "north": "tall", @@ -9804,7 +9197,7 @@ } }, { - "id": 19206, + "id": 18097, "properties": { "east": "tall", "north": "tall", @@ -9815,7 +9208,7 @@ } }, { - "id": 19207, + "id": 18098, "properties": { "east": "tall", "north": "tall", @@ -9843,25 +9236,25 @@ "states": [ { "default": true, - "id": 10993, + "id": 9916, "properties": { "facing": "north" } }, { - "id": 10994, + "id": 9917, "properties": { "facing": "south" } }, { - "id": 10995, + "id": 9918, "properties": { "facing": "west" } }, { - "id": 10996, + "id": 9919, "properties": { "facing": "east" } @@ -9887,25 +9280,25 @@ "states": [ { "default": true, - "id": 8137, + "id": 7060, "properties": { "facing": "north" } }, { - "id": 8138, + "id": 7061, "properties": { "facing": "south" } }, { - "id": 8139, + "id": 7062, "properties": { "facing": "west" } }, { - "id": 8140, + "id": 7063, "properties": { "facing": "east" } @@ -9931,25 +9324,25 @@ "states": [ { "default": true, - "id": 8133, + "id": 7056, "properties": { "facing": "north" } }, { - "id": 8134, + "id": 7057, "properties": { "facing": "south" } }, { - "id": 8135, + "id": 7058, "properties": { "facing": "west" } }, { - "id": 8136, + "id": 7059, "properties": { "facing": "east" } @@ -9964,7 +9357,7 @@ "states": [ { "default": true, - "id": 27609 + "id": 25852 } ] }, @@ -10266,7 +9659,7 @@ "states": [ { "default": true, - "id": 15077, + "id": 13968, "properties": { "age": "0", "leaves": "none", @@ -10274,7 +9667,7 @@ } }, { - "id": 15078, + "id": 13969, "properties": { "age": "0", "leaves": "none", @@ -10282,7 +9675,7 @@ } }, { - "id": 15079, + "id": 13970, "properties": { "age": "0", "leaves": "small", @@ -10290,7 +9683,7 @@ } }, { - "id": 15080, + "id": 13971, "properties": { "age": "0", "leaves": "small", @@ -10298,7 +9691,7 @@ } }, { - "id": 15081, + "id": 13972, "properties": { "age": "0", "leaves": "large", @@ -10306,7 +9699,7 @@ } }, { - "id": 15082, + "id": 13973, "properties": { "age": "0", "leaves": "large", @@ -10314,7 +9707,7 @@ } }, { - "id": 15083, + "id": 13974, "properties": { "age": "1", "leaves": "none", @@ -10322,7 +9715,7 @@ } }, { - "id": 15084, + "id": 13975, "properties": { "age": "1", "leaves": "none", @@ -10330,7 +9723,7 @@ } }, { - "id": 15085, + "id": 13976, "properties": { "age": "1", "leaves": "small", @@ -10338,7 +9731,7 @@ } }, { - "id": 15086, + "id": 13977, "properties": { "age": "1", "leaves": "small", @@ -10346,7 +9739,7 @@ } }, { - "id": 15087, + "id": 13978, "properties": { "age": "1", "leaves": "large", @@ -10354,7 +9747,7 @@ } }, { - "id": 15088, + "id": 13979, "properties": { "age": "1", "leaves": "large", @@ -10423,7 +9816,7 @@ }, "states": [ { - "id": 10689, + "id": 9612, "properties": { "face": "floor", "facing": "north", @@ -10431,7 +9824,7 @@ } }, { - "id": 10690, + "id": 9613, "properties": { "face": "floor", "facing": "north", @@ -10439,7 +9832,7 @@ } }, { - "id": 10691, + "id": 9614, "properties": { "face": "floor", "facing": "south", @@ -10447,7 +9840,7 @@ } }, { - "id": 10692, + "id": 9615, "properties": { "face": "floor", "facing": "south", @@ -10455,7 +9848,7 @@ } }, { - "id": 10693, + "id": 9616, "properties": { "face": "floor", "facing": "west", @@ -10463,7 +9856,7 @@ } }, { - "id": 10694, + "id": 9617, "properties": { "face": "floor", "facing": "west", @@ -10471,7 +9864,7 @@ } }, { - "id": 10695, + "id": 9618, "properties": { "face": "floor", "facing": "east", @@ -10479,7 +9872,7 @@ } }, { - "id": 10696, + "id": 9619, "properties": { "face": "floor", "facing": "east", @@ -10487,7 +9880,7 @@ } }, { - "id": 10697, + "id": 9620, "properties": { "face": "wall", "facing": "north", @@ -10496,7 +9889,7 @@ }, { "default": true, - "id": 10698, + "id": 9621, "properties": { "face": "wall", "facing": "north", @@ -10504,7 +9897,7 @@ } }, { - "id": 10699, + "id": 9622, "properties": { "face": "wall", "facing": "south", @@ -10512,7 +9905,7 @@ } }, { - "id": 10700, + "id": 9623, "properties": { "face": "wall", "facing": "south", @@ -10520,7 +9913,7 @@ } }, { - "id": 10701, + "id": 9624, "properties": { "face": "wall", "facing": "west", @@ -10528,7 +9921,7 @@ } }, { - "id": 10702, + "id": 9625, "properties": { "face": "wall", "facing": "west", @@ -10536,7 +9929,7 @@ } }, { - "id": 10703, + "id": 9626, "properties": { "face": "wall", "facing": "east", @@ -10544,7 +9937,7 @@ } }, { - "id": 10704, + "id": 9627, "properties": { "face": "wall", "facing": "east", @@ -10552,7 +9945,7 @@ } }, { - "id": 10705, + "id": 9628, "properties": { "face": "ceiling", "facing": "north", @@ -10560,7 +9953,7 @@ } }, { - "id": 10706, + "id": 9629, "properties": { "face": "ceiling", "facing": "north", @@ -10568,7 +9961,7 @@ } }, { - "id": 10707, + "id": 9630, "properties": { "face": "ceiling", "facing": "south", @@ -10576,7 +9969,7 @@ } }, { - "id": 10708, + "id": 9631, "properties": { "face": "ceiling", "facing": "south", @@ -10584,7 +9977,7 @@ } }, { - "id": 10709, + "id": 9632, "properties": { "face": "ceiling", "facing": "west", @@ -10592,7 +9985,7 @@ } }, { - "id": 10710, + "id": 9633, "properties": { "face": "ceiling", "facing": "west", @@ -10600,7 +9993,7 @@ } }, { - "id": 10711, + "id": 9634, "properties": { "face": "ceiling", "facing": "east", @@ -10608,7 +10001,7 @@ } }, { - "id": 10712, + "id": 9635, "properties": { "face": "ceiling", "facing": "east", @@ -10649,7 +10042,7 @@ }, "states": [ { - "id": 14370, + "id": 13293, "properties": { "facing": "north", "half": "upper", @@ -10659,7 +10052,7 @@ } }, { - "id": 14371, + "id": 13294, "properties": { "facing": "north", "half": "upper", @@ -10669,7 +10062,7 @@ } }, { - "id": 14372, + "id": 13295, "properties": { "facing": "north", "half": "upper", @@ -10679,7 +10072,7 @@ } }, { - "id": 14373, + "id": 13296, "properties": { "facing": "north", "half": "upper", @@ -10689,7 +10082,7 @@ } }, { - "id": 14374, + "id": 13297, "properties": { "facing": "north", "half": "upper", @@ -10699,7 +10092,7 @@ } }, { - "id": 14375, + "id": 13298, "properties": { "facing": "north", "half": "upper", @@ -10709,7 +10102,7 @@ } }, { - "id": 14376, + "id": 13299, "properties": { "facing": "north", "half": "upper", @@ -10719,7 +10112,7 @@ } }, { - "id": 14377, + "id": 13300, "properties": { "facing": "north", "half": "upper", @@ -10729,7 +10122,7 @@ } }, { - "id": 14378, + "id": 13301, "properties": { "facing": "north", "half": "lower", @@ -10739,7 +10132,7 @@ } }, { - "id": 14379, + "id": 13302, "properties": { "facing": "north", "half": "lower", @@ -10749,7 +10142,7 @@ } }, { - "id": 14380, + "id": 13303, "properties": { "facing": "north", "half": "lower", @@ -10760,7 +10153,7 @@ }, { "default": true, - "id": 14381, + "id": 13304, "properties": { "facing": "north", "half": "lower", @@ -10770,7 +10163,7 @@ } }, { - "id": 14382, + "id": 13305, "properties": { "facing": "north", "half": "lower", @@ -10780,7 +10173,7 @@ } }, { - "id": 14383, + "id": 13306, "properties": { "facing": "north", "half": "lower", @@ -10790,7 +10183,7 @@ } }, { - "id": 14384, + "id": 13307, "properties": { "facing": "north", "half": "lower", @@ -10800,7 +10193,7 @@ } }, { - "id": 14385, + "id": 13308, "properties": { "facing": "north", "half": "lower", @@ -10810,7 +10203,7 @@ } }, { - "id": 14386, + "id": 13309, "properties": { "facing": "south", "half": "upper", @@ -10820,7 +10213,7 @@ } }, { - "id": 14387, + "id": 13310, "properties": { "facing": "south", "half": "upper", @@ -10830,7 +10223,7 @@ } }, { - "id": 14388, + "id": 13311, "properties": { "facing": "south", "half": "upper", @@ -10840,7 +10233,7 @@ } }, { - "id": 14389, + "id": 13312, "properties": { "facing": "south", "half": "upper", @@ -10850,7 +10243,7 @@ } }, { - "id": 14390, + "id": 13313, "properties": { "facing": "south", "half": "upper", @@ -10860,7 +10253,7 @@ } }, { - "id": 14391, + "id": 13314, "properties": { "facing": "south", "half": "upper", @@ -10870,7 +10263,7 @@ } }, { - "id": 14392, + "id": 13315, "properties": { "facing": "south", "half": "upper", @@ -10880,7 +10273,7 @@ } }, { - "id": 14393, + "id": 13316, "properties": { "facing": "south", "half": "upper", @@ -10890,7 +10283,7 @@ } }, { - "id": 14394, + "id": 13317, "properties": { "facing": "south", "half": "lower", @@ -10900,7 +10293,7 @@ } }, { - "id": 14395, + "id": 13318, "properties": { "facing": "south", "half": "lower", @@ -10910,7 +10303,7 @@ } }, { - "id": 14396, + "id": 13319, "properties": { "facing": "south", "half": "lower", @@ -10920,7 +10313,7 @@ } }, { - "id": 14397, + "id": 13320, "properties": { "facing": "south", "half": "lower", @@ -10930,7 +10323,7 @@ } }, { - "id": 14398, + "id": 13321, "properties": { "facing": "south", "half": "lower", @@ -10940,7 +10333,7 @@ } }, { - "id": 14399, + "id": 13322, "properties": { "facing": "south", "half": "lower", @@ -10950,7 +10343,7 @@ } }, { - "id": 14400, + "id": 13323, "properties": { "facing": "south", "half": "lower", @@ -10960,7 +10353,7 @@ } }, { - "id": 14401, + "id": 13324, "properties": { "facing": "south", "half": "lower", @@ -10970,7 +10363,7 @@ } }, { - "id": 14402, + "id": 13325, "properties": { "facing": "west", "half": "upper", @@ -10980,7 +10373,7 @@ } }, { - "id": 14403, + "id": 13326, "properties": { "facing": "west", "half": "upper", @@ -10990,7 +10383,7 @@ } }, { - "id": 14404, + "id": 13327, "properties": { "facing": "west", "half": "upper", @@ -11000,7 +10393,7 @@ } }, { - "id": 14405, + "id": 13328, "properties": { "facing": "west", "half": "upper", @@ -11010,7 +10403,7 @@ } }, { - "id": 14406, + "id": 13329, "properties": { "facing": "west", "half": "upper", @@ -11020,7 +10413,7 @@ } }, { - "id": 14407, + "id": 13330, "properties": { "facing": "west", "half": "upper", @@ -11030,7 +10423,7 @@ } }, { - "id": 14408, + "id": 13331, "properties": { "facing": "west", "half": "upper", @@ -11040,7 +10433,7 @@ } }, { - "id": 14409, + "id": 13332, "properties": { "facing": "west", "half": "upper", @@ -11050,7 +10443,7 @@ } }, { - "id": 14410, + "id": 13333, "properties": { "facing": "west", "half": "lower", @@ -11060,7 +10453,7 @@ } }, { - "id": 14411, + "id": 13334, "properties": { "facing": "west", "half": "lower", @@ -11070,7 +10463,7 @@ } }, { - "id": 14412, + "id": 13335, "properties": { "facing": "west", "half": "lower", @@ -11080,7 +10473,7 @@ } }, { - "id": 14413, + "id": 13336, "properties": { "facing": "west", "half": "lower", @@ -11090,7 +10483,7 @@ } }, { - "id": 14414, + "id": 13337, "properties": { "facing": "west", "half": "lower", @@ -11100,7 +10493,7 @@ } }, { - "id": 14415, + "id": 13338, "properties": { "facing": "west", "half": "lower", @@ -11110,7 +10503,7 @@ } }, { - "id": 14416, + "id": 13339, "properties": { "facing": "west", "half": "lower", @@ -11120,7 +10513,7 @@ } }, { - "id": 14417, + "id": 13340, "properties": { "facing": "west", "half": "lower", @@ -11130,7 +10523,7 @@ } }, { - "id": 14418, + "id": 13341, "properties": { "facing": "east", "half": "upper", @@ -11140,7 +10533,7 @@ } }, { - "id": 14419, + "id": 13342, "properties": { "facing": "east", "half": "upper", @@ -11150,7 +10543,7 @@ } }, { - "id": 14420, + "id": 13343, "properties": { "facing": "east", "half": "upper", @@ -11160,7 +10553,7 @@ } }, { - "id": 14421, + "id": 13344, "properties": { "facing": "east", "half": "upper", @@ -11170,7 +10563,7 @@ } }, { - "id": 14422, + "id": 13345, "properties": { "facing": "east", "half": "upper", @@ -11180,7 +10573,7 @@ } }, { - "id": 14423, + "id": 13346, "properties": { "facing": "east", "half": "upper", @@ -11190,7 +10583,7 @@ } }, { - "id": 14424, + "id": 13347, "properties": { "facing": "east", "half": "upper", @@ -11200,7 +10593,7 @@ } }, { - "id": 14425, + "id": 13348, "properties": { "facing": "east", "half": "upper", @@ -11210,7 +10603,7 @@ } }, { - "id": 14426, + "id": 13349, "properties": { "facing": "east", "half": "lower", @@ -11220,7 +10613,7 @@ } }, { - "id": 14427, + "id": 13350, "properties": { "facing": "east", "half": "lower", @@ -11230,7 +10623,7 @@ } }, { - "id": 14428, + "id": 13351, "properties": { "facing": "east", "half": "lower", @@ -11240,7 +10633,7 @@ } }, { - "id": 14429, + "id": 13352, "properties": { "facing": "east", "half": "lower", @@ -11250,7 +10643,7 @@ } }, { - "id": 14430, + "id": 13353, "properties": { "facing": "east", "half": "lower", @@ -11260,7 +10653,7 @@ } }, { - "id": 14431, + "id": 13354, "properties": { "facing": "east", "half": "lower", @@ -11270,7 +10663,7 @@ } }, { - "id": 14432, + "id": 13355, "properties": { "facing": "east", "half": "lower", @@ -11280,7 +10673,7 @@ } }, { - "id": 14433, + "id": 13356, "properties": { "facing": "east", "half": "lower", @@ -11320,7 +10713,7 @@ }, "states": [ { - "id": 13826, + "id": 12749, "properties": { "east": "true", "north": "true", @@ -11330,7 +10723,7 @@ } }, { - "id": 13827, + "id": 12750, "properties": { "east": "true", "north": "true", @@ -11340,7 +10733,7 @@ } }, { - "id": 13828, + "id": 12751, "properties": { "east": "true", "north": "true", @@ -11350,7 +10743,7 @@ } }, { - "id": 13829, + "id": 12752, "properties": { "east": "true", "north": "true", @@ -11360,7 +10753,7 @@ } }, { - "id": 13830, + "id": 12753, "properties": { "east": "true", "north": "true", @@ -11370,7 +10763,7 @@ } }, { - "id": 13831, + "id": 12754, "properties": { "east": "true", "north": "true", @@ -11380,7 +10773,7 @@ } }, { - "id": 13832, + "id": 12755, "properties": { "east": "true", "north": "true", @@ -11390,7 +10783,7 @@ } }, { - "id": 13833, + "id": 12756, "properties": { "east": "true", "north": "true", @@ -11400,7 +10793,7 @@ } }, { - "id": 13834, + "id": 12757, "properties": { "east": "true", "north": "false", @@ -11410,7 +10803,7 @@ } }, { - "id": 13835, + "id": 12758, "properties": { "east": "true", "north": "false", @@ -11420,7 +10813,7 @@ } }, { - "id": 13836, + "id": 12759, "properties": { "east": "true", "north": "false", @@ -11430,7 +10823,7 @@ } }, { - "id": 13837, + "id": 12760, "properties": { "east": "true", "north": "false", @@ -11440,7 +10833,7 @@ } }, { - "id": 13838, + "id": 12761, "properties": { "east": "true", "north": "false", @@ -11450,7 +10843,7 @@ } }, { - "id": 13839, + "id": 12762, "properties": { "east": "true", "north": "false", @@ -11460,7 +10853,7 @@ } }, { - "id": 13840, + "id": 12763, "properties": { "east": "true", "north": "false", @@ -11470,7 +10863,7 @@ } }, { - "id": 13841, + "id": 12764, "properties": { "east": "true", "north": "false", @@ -11480,7 +10873,7 @@ } }, { - "id": 13842, + "id": 12765, "properties": { "east": "false", "north": "true", @@ -11490,7 +10883,7 @@ } }, { - "id": 13843, + "id": 12766, "properties": { "east": "false", "north": "true", @@ -11500,7 +10893,7 @@ } }, { - "id": 13844, + "id": 12767, "properties": { "east": "false", "north": "true", @@ -11510,7 +10903,7 @@ } }, { - "id": 13845, + "id": 12768, "properties": { "east": "false", "north": "true", @@ -11520,7 +10913,7 @@ } }, { - "id": 13846, + "id": 12769, "properties": { "east": "false", "north": "true", @@ -11530,7 +10923,7 @@ } }, { - "id": 13847, + "id": 12770, "properties": { "east": "false", "north": "true", @@ -11540,7 +10933,7 @@ } }, { - "id": 13848, + "id": 12771, "properties": { "east": "false", "north": "true", @@ -11550,7 +10943,7 @@ } }, { - "id": 13849, + "id": 12772, "properties": { "east": "false", "north": "true", @@ -11560,7 +10953,7 @@ } }, { - "id": 13850, + "id": 12773, "properties": { "east": "false", "north": "false", @@ -11570,7 +10963,7 @@ } }, { - "id": 13851, + "id": 12774, "properties": { "east": "false", "north": "false", @@ -11580,7 +10973,7 @@ } }, { - "id": 13852, + "id": 12775, "properties": { "east": "false", "north": "false", @@ -11590,7 +10983,7 @@ } }, { - "id": 13853, + "id": 12776, "properties": { "east": "false", "north": "false", @@ -11600,7 +10993,7 @@ } }, { - "id": 13854, + "id": 12777, "properties": { "east": "false", "north": "false", @@ -11610,7 +11003,7 @@ } }, { - "id": 13855, + "id": 12778, "properties": { "east": "false", "north": "false", @@ -11620,7 +11013,7 @@ } }, { - "id": 13856, + "id": 12779, "properties": { "east": "false", "north": "false", @@ -11631,7 +11024,7 @@ }, { "default": true, - "id": 13857, + "id": 12780, "properties": { "east": "false", "north": "false", @@ -11670,7 +11063,7 @@ }, "states": [ { - "id": 13538, + "id": 12461, "properties": { "facing": "north", "in_wall": "true", @@ -11679,7 +11072,7 @@ } }, { - "id": 13539, + "id": 12462, "properties": { "facing": "north", "in_wall": "true", @@ -11688,7 +11081,7 @@ } }, { - "id": 13540, + "id": 12463, "properties": { "facing": "north", "in_wall": "true", @@ -11697,7 +11090,7 @@ } }, { - "id": 13541, + "id": 12464, "properties": { "facing": "north", "in_wall": "true", @@ -11706,7 +11099,7 @@ } }, { - "id": 13542, + "id": 12465, "properties": { "facing": "north", "in_wall": "false", @@ -11715,7 +11108,7 @@ } }, { - "id": 13543, + "id": 12466, "properties": { "facing": "north", "in_wall": "false", @@ -11724,7 +11117,7 @@ } }, { - "id": 13544, + "id": 12467, "properties": { "facing": "north", "in_wall": "false", @@ -11734,7 +11127,7 @@ }, { "default": true, - "id": 13545, + "id": 12468, "properties": { "facing": "north", "in_wall": "false", @@ -11743,7 +11136,7 @@ } }, { - "id": 13546, + "id": 12469, "properties": { "facing": "south", "in_wall": "true", @@ -11752,7 +11145,7 @@ } }, { - "id": 13547, + "id": 12470, "properties": { "facing": "south", "in_wall": "true", @@ -11761,7 +11154,7 @@ } }, { - "id": 13548, + "id": 12471, "properties": { "facing": "south", "in_wall": "true", @@ -11770,7 +11163,7 @@ } }, { - "id": 13549, + "id": 12472, "properties": { "facing": "south", "in_wall": "true", @@ -11779,7 +11172,7 @@ } }, { - "id": 13550, + "id": 12473, "properties": { "facing": "south", "in_wall": "false", @@ -11788,7 +11181,7 @@ } }, { - "id": 13551, + "id": 12474, "properties": { "facing": "south", "in_wall": "false", @@ -11797,7 +11190,7 @@ } }, { - "id": 13552, + "id": 12475, "properties": { "facing": "south", "in_wall": "false", @@ -11806,7 +11199,7 @@ } }, { - "id": 13553, + "id": 12476, "properties": { "facing": "south", "in_wall": "false", @@ -11815,7 +11208,7 @@ } }, { - "id": 13554, + "id": 12477, "properties": { "facing": "west", "in_wall": "true", @@ -11824,7 +11217,7 @@ } }, { - "id": 13555, + "id": 12478, "properties": { "facing": "west", "in_wall": "true", @@ -11833,7 +11226,7 @@ } }, { - "id": 13556, + "id": 12479, "properties": { "facing": "west", "in_wall": "true", @@ -11842,7 +11235,7 @@ } }, { - "id": 13557, + "id": 12480, "properties": { "facing": "west", "in_wall": "true", @@ -11851,7 +11244,7 @@ } }, { - "id": 13558, + "id": 12481, "properties": { "facing": "west", "in_wall": "false", @@ -11860,7 +11253,7 @@ } }, { - "id": 13559, + "id": 12482, "properties": { "facing": "west", "in_wall": "false", @@ -11869,7 +11262,7 @@ } }, { - "id": 13560, + "id": 12483, "properties": { "facing": "west", "in_wall": "false", @@ -11878,7 +11271,7 @@ } }, { - "id": 13561, + "id": 12484, "properties": { "facing": "west", "in_wall": "false", @@ -11887,7 +11280,7 @@ } }, { - "id": 13562, + "id": 12485, "properties": { "facing": "east", "in_wall": "true", @@ -11896,7 +11289,7 @@ } }, { - "id": 13563, + "id": 12486, "properties": { "facing": "east", "in_wall": "true", @@ -11905,7 +11298,7 @@ } }, { - "id": 13564, + "id": 12487, "properties": { "facing": "east", "in_wall": "true", @@ -11914,7 +11307,7 @@ } }, { - "id": 13565, + "id": 12488, "properties": { "facing": "east", "in_wall": "true", @@ -11923,7 +11316,7 @@ } }, { - "id": 13566, + "id": 12489, "properties": { "facing": "east", "in_wall": "false", @@ -11932,7 +11325,7 @@ } }, { - "id": 13567, + "id": 12490, "properties": { "facing": "east", "in_wall": "false", @@ -11941,7 +11334,7 @@ } }, { - "id": 13568, + "id": 12491, "properties": { "facing": "east", "in_wall": "false", @@ -11950,7 +11343,7 @@ } }, { - "id": 13569, + "id": 12492, "properties": { "facing": "east", "in_wall": "false", @@ -11996,7 +11389,7 @@ }, "states": [ { - "id": 6410, + "id": 5642, "properties": { "attached": "true", "rotation": "0", @@ -12004,7 +11397,7 @@ } }, { - "id": 6411, + "id": 5643, "properties": { "attached": "true", "rotation": "0", @@ -12012,7 +11405,7 @@ } }, { - "id": 6412, + "id": 5644, "properties": { "attached": "true", "rotation": "1", @@ -12020,7 +11413,7 @@ } }, { - "id": 6413, + "id": 5645, "properties": { "attached": "true", "rotation": "1", @@ -12028,7 +11421,7 @@ } }, { - "id": 6414, + "id": 5646, "properties": { "attached": "true", "rotation": "2", @@ -12036,7 +11429,7 @@ } }, { - "id": 6415, + "id": 5647, "properties": { "attached": "true", "rotation": "2", @@ -12044,7 +11437,7 @@ } }, { - "id": 6416, + "id": 5648, "properties": { "attached": "true", "rotation": "3", @@ -12052,7 +11445,7 @@ } }, { - "id": 6417, + "id": 5649, "properties": { "attached": "true", "rotation": "3", @@ -12060,7 +11453,7 @@ } }, { - "id": 6418, + "id": 5650, "properties": { "attached": "true", "rotation": "4", @@ -12068,7 +11461,7 @@ } }, { - "id": 6419, + "id": 5651, "properties": { "attached": "true", "rotation": "4", @@ -12076,7 +11469,7 @@ } }, { - "id": 6420, + "id": 5652, "properties": { "attached": "true", "rotation": "5", @@ -12084,7 +11477,7 @@ } }, { - "id": 6421, + "id": 5653, "properties": { "attached": "true", "rotation": "5", @@ -12092,7 +11485,7 @@ } }, { - "id": 6422, + "id": 5654, "properties": { "attached": "true", "rotation": "6", @@ -12100,7 +11493,7 @@ } }, { - "id": 6423, + "id": 5655, "properties": { "attached": "true", "rotation": "6", @@ -12108,7 +11501,7 @@ } }, { - "id": 6424, + "id": 5656, "properties": { "attached": "true", "rotation": "7", @@ -12116,7 +11509,7 @@ } }, { - "id": 6425, + "id": 5657, "properties": { "attached": "true", "rotation": "7", @@ -12124,7 +11517,7 @@ } }, { - "id": 6426, + "id": 5658, "properties": { "attached": "true", "rotation": "8", @@ -12132,7 +11525,7 @@ } }, { - "id": 6427, + "id": 5659, "properties": { "attached": "true", "rotation": "8", @@ -12140,7 +11533,7 @@ } }, { - "id": 6428, + "id": 5660, "properties": { "attached": "true", "rotation": "9", @@ -12148,7 +11541,7 @@ } }, { - "id": 6429, + "id": 5661, "properties": { "attached": "true", "rotation": "9", @@ -12156,7 +11549,7 @@ } }, { - "id": 6430, + "id": 5662, "properties": { "attached": "true", "rotation": "10", @@ -12164,7 +11557,7 @@ } }, { - "id": 6431, + "id": 5663, "properties": { "attached": "true", "rotation": "10", @@ -12172,7 +11565,7 @@ } }, { - "id": 6432, + "id": 5664, "properties": { "attached": "true", "rotation": "11", @@ -12180,7 +11573,7 @@ } }, { - "id": 6433, + "id": 5665, "properties": { "attached": "true", "rotation": "11", @@ -12188,7 +11581,7 @@ } }, { - "id": 6434, + "id": 5666, "properties": { "attached": "true", "rotation": "12", @@ -12196,7 +11589,7 @@ } }, { - "id": 6435, + "id": 5667, "properties": { "attached": "true", "rotation": "12", @@ -12204,7 +11597,7 @@ } }, { - "id": 6436, + "id": 5668, "properties": { "attached": "true", "rotation": "13", @@ -12212,7 +11605,7 @@ } }, { - "id": 6437, + "id": 5669, "properties": { "attached": "true", "rotation": "13", @@ -12220,7 +11613,7 @@ } }, { - "id": 6438, + "id": 5670, "properties": { "attached": "true", "rotation": "14", @@ -12228,7 +11621,7 @@ } }, { - "id": 6439, + "id": 5671, "properties": { "attached": "true", "rotation": "14", @@ -12236,7 +11629,7 @@ } }, { - "id": 6440, + "id": 5672, "properties": { "attached": "true", "rotation": "15", @@ -12244,7 +11637,7 @@ } }, { - "id": 6441, + "id": 5673, "properties": { "attached": "true", "rotation": "15", @@ -12252,7 +11645,7 @@ } }, { - "id": 6442, + "id": 5674, "properties": { "attached": "false", "rotation": "0", @@ -12261,7 +11654,7 @@ }, { "default": true, - "id": 6443, + "id": 5675, "properties": { "attached": "false", "rotation": "0", @@ -12269,7 +11662,7 @@ } }, { - "id": 6444, + "id": 5676, "properties": { "attached": "false", "rotation": "1", @@ -12277,7 +11670,7 @@ } }, { - "id": 6445, + "id": 5677, "properties": { "attached": "false", "rotation": "1", @@ -12285,7 +11678,7 @@ } }, { - "id": 6446, + "id": 5678, "properties": { "attached": "false", "rotation": "2", @@ -12293,7 +11686,7 @@ } }, { - "id": 6447, + "id": 5679, "properties": { "attached": "false", "rotation": "2", @@ -12301,7 +11694,7 @@ } }, { - "id": 6448, + "id": 5680, "properties": { "attached": "false", "rotation": "3", @@ -12309,7 +11702,7 @@ } }, { - "id": 6449, + "id": 5681, "properties": { "attached": "false", "rotation": "3", @@ -12317,7 +11710,7 @@ } }, { - "id": 6450, + "id": 5682, "properties": { "attached": "false", "rotation": "4", @@ -12325,7 +11718,7 @@ } }, { - "id": 6451, + "id": 5683, "properties": { "attached": "false", "rotation": "4", @@ -12333,7 +11726,7 @@ } }, { - "id": 6452, + "id": 5684, "properties": { "attached": "false", "rotation": "5", @@ -12341,7 +11734,7 @@ } }, { - "id": 6453, + "id": 5685, "properties": { "attached": "false", "rotation": "5", @@ -12349,7 +11742,7 @@ } }, { - "id": 6454, + "id": 5686, "properties": { "attached": "false", "rotation": "6", @@ -12357,7 +11750,7 @@ } }, { - "id": 6455, + "id": 5687, "properties": { "attached": "false", "rotation": "6", @@ -12365,7 +11758,7 @@ } }, { - "id": 6456, + "id": 5688, "properties": { "attached": "false", "rotation": "7", @@ -12373,7 +11766,7 @@ } }, { - "id": 6457, + "id": 5689, "properties": { "attached": "false", "rotation": "7", @@ -12381,7 +11774,7 @@ } }, { - "id": 6458, + "id": 5690, "properties": { "attached": "false", "rotation": "8", @@ -12389,7 +11782,7 @@ } }, { - "id": 6459, + "id": 5691, "properties": { "attached": "false", "rotation": "8", @@ -12397,7 +11790,7 @@ } }, { - "id": 6460, + "id": 5692, "properties": { "attached": "false", "rotation": "9", @@ -12405,7 +11798,7 @@ } }, { - "id": 6461, + "id": 5693, "properties": { "attached": "false", "rotation": "9", @@ -12413,7 +11806,7 @@ } }, { - "id": 6462, + "id": 5694, "properties": { "attached": "false", "rotation": "10", @@ -12421,7 +11814,7 @@ } }, { - "id": 6463, + "id": 5695, "properties": { "attached": "false", "rotation": "10", @@ -12429,7 +11822,7 @@ } }, { - "id": 6464, + "id": 5696, "properties": { "attached": "false", "rotation": "11", @@ -12437,7 +11830,7 @@ } }, { - "id": 6465, + "id": 5697, "properties": { "attached": "false", "rotation": "11", @@ -12445,7 +11838,7 @@ } }, { - "id": 6466, + "id": 5698, "properties": { "attached": "false", "rotation": "12", @@ -12453,7 +11846,7 @@ } }, { - "id": 6467, + "id": 5699, "properties": { "attached": "false", "rotation": "12", @@ -12461,7 +11854,7 @@ } }, { - "id": 6468, + "id": 5700, "properties": { "attached": "false", "rotation": "13", @@ -12469,7 +11862,7 @@ } }, { - "id": 6469, + "id": 5701, "properties": { "attached": "false", "rotation": "13", @@ -12477,7 +11870,7 @@ } }, { - "id": 6470, + "id": 5702, "properties": { "attached": "false", "rotation": "14", @@ -12485,7 +11878,7 @@ } }, { - "id": 6471, + "id": 5703, "properties": { "attached": "false", "rotation": "14", @@ -12493,7 +11886,7 @@ } }, { - "id": 6472, + "id": 5704, "properties": { "attached": "false", "rotation": "15", @@ -12501,7 +11894,7 @@ } }, { - "id": 6473, + "id": 5705, "properties": { "attached": "false", "rotation": "15", @@ -12540,21 +11933,21 @@ }, "states": [ { - "id": 13188, + "id": 12111, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 13189, + "id": 12112, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 13190, + "id": 12113, "properties": { "type": "bottom", "waterlogged": "true" @@ -12562,21 +11955,21 @@ }, { "default": true, - "id": 13191, + "id": 12114, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 13192, + "id": 12115, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 13193, + "id": 12116, "properties": { "type": "double", "waterlogged": "false" @@ -12617,7 +12010,7 @@ }, "states": [ { - "id": 12250, + "id": 11173, "properties": { "facing": "north", "half": "top", @@ -12626,7 +12019,7 @@ } }, { - "id": 12251, + "id": 11174, "properties": { "facing": "north", "half": "top", @@ -12635,7 +12028,7 @@ } }, { - "id": 12252, + "id": 11175, "properties": { "facing": "north", "half": "top", @@ -12644,7 +12037,7 @@ } }, { - "id": 12253, + "id": 11176, "properties": { "facing": "north", "half": "top", @@ -12653,7 +12046,7 @@ } }, { - "id": 12254, + "id": 11177, "properties": { "facing": "north", "half": "top", @@ -12662,7 +12055,7 @@ } }, { - "id": 12255, + "id": 11178, "properties": { "facing": "north", "half": "top", @@ -12671,7 +12064,7 @@ } }, { - "id": 12256, + "id": 11179, "properties": { "facing": "north", "half": "top", @@ -12680,7 +12073,7 @@ } }, { - "id": 12257, + "id": 11180, "properties": { "facing": "north", "half": "top", @@ -12689,7 +12082,7 @@ } }, { - "id": 12258, + "id": 11181, "properties": { "facing": "north", "half": "top", @@ -12698,7 +12091,7 @@ } }, { - "id": 12259, + "id": 11182, "properties": { "facing": "north", "half": "top", @@ -12707,7 +12100,7 @@ } }, { - "id": 12260, + "id": 11183, "properties": { "facing": "north", "half": "bottom", @@ -12717,7 +12110,7 @@ }, { "default": true, - "id": 12261, + "id": 11184, "properties": { "facing": "north", "half": "bottom", @@ -12726,7 +12119,7 @@ } }, { - "id": 12262, + "id": 11185, "properties": { "facing": "north", "half": "bottom", @@ -12735,7 +12128,7 @@ } }, { - "id": 12263, + "id": 11186, "properties": { "facing": "north", "half": "bottom", @@ -12744,7 +12137,7 @@ } }, { - "id": 12264, + "id": 11187, "properties": { "facing": "north", "half": "bottom", @@ -12753,7 +12146,7 @@ } }, { - "id": 12265, + "id": 11188, "properties": { "facing": "north", "half": "bottom", @@ -12762,7 +12155,7 @@ } }, { - "id": 12266, + "id": 11189, "properties": { "facing": "north", "half": "bottom", @@ -12771,7 +12164,7 @@ } }, { - "id": 12267, + "id": 11190, "properties": { "facing": "north", "half": "bottom", @@ -12780,7 +12173,7 @@ } }, { - "id": 12268, + "id": 11191, "properties": { "facing": "north", "half": "bottom", @@ -12789,7 +12182,7 @@ } }, { - "id": 12269, + "id": 11192, "properties": { "facing": "north", "half": "bottom", @@ -12798,7 +12191,7 @@ } }, { - "id": 12270, + "id": 11193, "properties": { "facing": "south", "half": "top", @@ -12807,7 +12200,7 @@ } }, { - "id": 12271, + "id": 11194, "properties": { "facing": "south", "half": "top", @@ -12816,7 +12209,7 @@ } }, { - "id": 12272, + "id": 11195, "properties": { "facing": "south", "half": "top", @@ -12825,7 +12218,7 @@ } }, { - "id": 12273, + "id": 11196, "properties": { "facing": "south", "half": "top", @@ -12834,7 +12227,7 @@ } }, { - "id": 12274, + "id": 11197, "properties": { "facing": "south", "half": "top", @@ -12843,7 +12236,7 @@ } }, { - "id": 12275, + "id": 11198, "properties": { "facing": "south", "half": "top", @@ -12852,7 +12245,7 @@ } }, { - "id": 12276, + "id": 11199, "properties": { "facing": "south", "half": "top", @@ -12861,7 +12254,7 @@ } }, { - "id": 12277, + "id": 11200, "properties": { "facing": "south", "half": "top", @@ -12870,7 +12263,7 @@ } }, { - "id": 12278, + "id": 11201, "properties": { "facing": "south", "half": "top", @@ -12879,7 +12272,7 @@ } }, { - "id": 12279, + "id": 11202, "properties": { "facing": "south", "half": "top", @@ -12888,7 +12281,7 @@ } }, { - "id": 12280, + "id": 11203, "properties": { "facing": "south", "half": "bottom", @@ -12897,7 +12290,7 @@ } }, { - "id": 12281, + "id": 11204, "properties": { "facing": "south", "half": "bottom", @@ -12906,7 +12299,7 @@ } }, { - "id": 12282, + "id": 11205, "properties": { "facing": "south", "half": "bottom", @@ -12915,7 +12308,7 @@ } }, { - "id": 12283, + "id": 11206, "properties": { "facing": "south", "half": "bottom", @@ -12924,7 +12317,7 @@ } }, { - "id": 12284, + "id": 11207, "properties": { "facing": "south", "half": "bottom", @@ -12933,7 +12326,7 @@ } }, { - "id": 12285, + "id": 11208, "properties": { "facing": "south", "half": "bottom", @@ -12942,7 +12335,7 @@ } }, { - "id": 12286, + "id": 11209, "properties": { "facing": "south", "half": "bottom", @@ -12951,7 +12344,7 @@ } }, { - "id": 12287, + "id": 11210, "properties": { "facing": "south", "half": "bottom", @@ -12960,7 +12353,7 @@ } }, { - "id": 12288, + "id": 11211, "properties": { "facing": "south", "half": "bottom", @@ -12969,7 +12362,7 @@ } }, { - "id": 12289, + "id": 11212, "properties": { "facing": "south", "half": "bottom", @@ -12978,7 +12371,7 @@ } }, { - "id": 12290, + "id": 11213, "properties": { "facing": "west", "half": "top", @@ -12987,7 +12380,7 @@ } }, { - "id": 12291, + "id": 11214, "properties": { "facing": "west", "half": "top", @@ -12996,7 +12389,7 @@ } }, { - "id": 12292, + "id": 11215, "properties": { "facing": "west", "half": "top", @@ -13005,7 +12398,7 @@ } }, { - "id": 12293, + "id": 11216, "properties": { "facing": "west", "half": "top", @@ -13014,7 +12407,7 @@ } }, { - "id": 12294, + "id": 11217, "properties": { "facing": "west", "half": "top", @@ -13023,7 +12416,7 @@ } }, { - "id": 12295, + "id": 11218, "properties": { "facing": "west", "half": "top", @@ -13032,7 +12425,7 @@ } }, { - "id": 12296, + "id": 11219, "properties": { "facing": "west", "half": "top", @@ -13041,7 +12434,7 @@ } }, { - "id": 12297, + "id": 11220, "properties": { "facing": "west", "half": "top", @@ -13050,7 +12443,7 @@ } }, { - "id": 12298, + "id": 11221, "properties": { "facing": "west", "half": "top", @@ -13059,7 +12452,7 @@ } }, { - "id": 12299, + "id": 11222, "properties": { "facing": "west", "half": "top", @@ -13068,7 +12461,7 @@ } }, { - "id": 12300, + "id": 11223, "properties": { "facing": "west", "half": "bottom", @@ -13077,7 +12470,7 @@ } }, { - "id": 12301, + "id": 11224, "properties": { "facing": "west", "half": "bottom", @@ -13086,7 +12479,7 @@ } }, { - "id": 12302, + "id": 11225, "properties": { "facing": "west", "half": "bottom", @@ -13095,7 +12488,7 @@ } }, { - "id": 12303, + "id": 11226, "properties": { "facing": "west", "half": "bottom", @@ -13104,7 +12497,7 @@ } }, { - "id": 12304, + "id": 11227, "properties": { "facing": "west", "half": "bottom", @@ -13113,7 +12506,7 @@ } }, { - "id": 12305, + "id": 11228, "properties": { "facing": "west", "half": "bottom", @@ -13122,7 +12515,7 @@ } }, { - "id": 12306, + "id": 11229, "properties": { "facing": "west", "half": "bottom", @@ -13131,7 +12524,7 @@ } }, { - "id": 12307, + "id": 11230, "properties": { "facing": "west", "half": "bottom", @@ -13140,7 +12533,7 @@ } }, { - "id": 12308, + "id": 11231, "properties": { "facing": "west", "half": "bottom", @@ -13149,7 +12542,7 @@ } }, { - "id": 12309, + "id": 11232, "properties": { "facing": "west", "half": "bottom", @@ -13158,7 +12551,7 @@ } }, { - "id": 12310, + "id": 11233, "properties": { "facing": "east", "half": "top", @@ -13167,7 +12560,7 @@ } }, { - "id": 12311, + "id": 11234, "properties": { "facing": "east", "half": "top", @@ -13176,7 +12569,7 @@ } }, { - "id": 12312, + "id": 11235, "properties": { "facing": "east", "half": "top", @@ -13185,7 +12578,7 @@ } }, { - "id": 12313, + "id": 11236, "properties": { "facing": "east", "half": "top", @@ -13194,7 +12587,7 @@ } }, { - "id": 12314, + "id": 11237, "properties": { "facing": "east", "half": "top", @@ -13203,7 +12596,7 @@ } }, { - "id": 12315, + "id": 11238, "properties": { "facing": "east", "half": "top", @@ -13212,7 +12605,7 @@ } }, { - "id": 12316, + "id": 11239, "properties": { "facing": "east", "half": "top", @@ -13221,7 +12614,7 @@ } }, { - "id": 12317, + "id": 11240, "properties": { "facing": "east", "half": "top", @@ -13230,7 +12623,7 @@ } }, { - "id": 12318, + "id": 11241, "properties": { "facing": "east", "half": "top", @@ -13239,7 +12632,7 @@ } }, { - "id": 12319, + "id": 11242, "properties": { "facing": "east", "half": "top", @@ -13248,7 +12641,7 @@ } }, { - "id": 12320, + "id": 11243, "properties": { "facing": "east", "half": "bottom", @@ -13257,7 +12650,7 @@ } }, { - "id": 12321, + "id": 11244, "properties": { "facing": "east", "half": "bottom", @@ -13266,7 +12659,7 @@ } }, { - "id": 12322, + "id": 11245, "properties": { "facing": "east", "half": "bottom", @@ -13275,7 +12668,7 @@ } }, { - "id": 12323, + "id": 11246, "properties": { "facing": "east", "half": "bottom", @@ -13284,7 +12677,7 @@ } }, { - "id": 12324, + "id": 11247, "properties": { "facing": "east", "half": "bottom", @@ -13293,7 +12686,7 @@ } }, { - "id": 12325, + "id": 11248, "properties": { "facing": "east", "half": "bottom", @@ -13302,7 +12695,7 @@ } }, { - "id": 12326, + "id": 11249, "properties": { "facing": "east", "half": "bottom", @@ -13311,7 +12704,7 @@ } }, { - "id": 12327, + "id": 11250, "properties": { "facing": "east", "half": "bottom", @@ -13320,7 +12713,7 @@ } }, { - "id": 12328, + "id": 11251, "properties": { "facing": "east", "half": "bottom", @@ -13329,7 +12722,7 @@ } }, { - "id": 12329, + "id": 11252, "properties": { "facing": "east", "half": "bottom", @@ -13365,14 +12758,14 @@ }, "states": [ { - "id": 6678, + "id": 5910, "properties": { "powered": "true" } }, { "default": true, - "id": 6679, + "id": 5911, "properties": { "powered": "false" } @@ -13387,614 +12780,7 @@ "states": [ { "default": true, - "id": 15076 - } - ] - }, - "minecraft:bamboo_shelf": { - "definition": { - "type": "minecraft:shelf", - "properties": {} - }, - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ], - "side_chain": [ - "unconnected", - "right", - "center", - "left" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 2463, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2464, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2465, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2466, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2467, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2468, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2469, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2470, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2471, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 2472, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2473, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2474, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2475, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2476, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2477, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2478, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2479, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2480, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2481, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2482, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2483, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2484, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2485, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2486, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2487, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2488, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2489, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2490, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2491, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2492, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2493, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2494, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2495, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2496, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2497, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2498, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2499, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2500, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2501, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2502, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2503, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2504, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2505, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2506, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2507, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2508, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2509, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2510, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2511, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2512, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2513, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2514, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2515, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2516, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2517, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2518, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2519, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2520, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2521, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2522, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2523, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2524, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2525, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2526, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "left", - "waterlogged": "false" - } + "id": 13967 } ] }, @@ -14030,7 +12816,7 @@ }, "states": [ { - "id": 5422, + "id": 4654, "properties": { "rotation": "0", "waterlogged": "true" @@ -14038,217 +12824,217 @@ }, { "default": true, - "id": 5423, + "id": 4655, "properties": { "rotation": "0", "waterlogged": "false" } }, { - "id": 5424, + "id": 4656, "properties": { "rotation": "1", "waterlogged": "true" } }, { - "id": 5425, + "id": 4657, "properties": { "rotation": "1", "waterlogged": "false" } }, { - "id": 5426, + "id": 4658, "properties": { "rotation": "2", "waterlogged": "true" } }, { - "id": 5427, + "id": 4659, "properties": { "rotation": "2", "waterlogged": "false" } }, { - "id": 5428, + "id": 4660, "properties": { "rotation": "3", "waterlogged": "true" } }, { - "id": 5429, + "id": 4661, "properties": { "rotation": "3", "waterlogged": "false" } }, { - "id": 5430, + "id": 4662, "properties": { "rotation": "4", "waterlogged": "true" } }, { - "id": 5431, + "id": 4663, "properties": { "rotation": "4", "waterlogged": "false" } }, { - "id": 5432, + "id": 4664, "properties": { "rotation": "5", "waterlogged": "true" } }, { - "id": 5433, + "id": 4665, "properties": { "rotation": "5", "waterlogged": "false" } }, { - "id": 5434, + "id": 4666, "properties": { "rotation": "6", "waterlogged": "true" } }, { - "id": 5435, + "id": 4667, "properties": { "rotation": "6", "waterlogged": "false" } }, { - "id": 5436, + "id": 4668, "properties": { "rotation": "7", "waterlogged": "true" } }, { - "id": 5437, + "id": 4669, "properties": { "rotation": "7", "waterlogged": "false" } }, { - "id": 5438, + "id": 4670, "properties": { "rotation": "8", "waterlogged": "true" } }, { - "id": 5439, + "id": 4671, "properties": { "rotation": "8", "waterlogged": "false" } }, { - "id": 5440, + "id": 4672, "properties": { "rotation": "9", "waterlogged": "true" } }, { - "id": 5441, + "id": 4673, "properties": { "rotation": "9", "waterlogged": "false" } }, { - "id": 5442, + "id": 4674, "properties": { "rotation": "10", "waterlogged": "true" } }, { - "id": 5443, + "id": 4675, "properties": { "rotation": "10", "waterlogged": "false" } }, { - "id": 5444, + "id": 4676, "properties": { "rotation": "11", "waterlogged": "true" } }, { - "id": 5445, + "id": 4677, "properties": { "rotation": "11", "waterlogged": "false" } }, { - "id": 5446, + "id": 4678, "properties": { "rotation": "12", "waterlogged": "true" } }, { - "id": 5447, + "id": 4679, "properties": { "rotation": "12", "waterlogged": "false" } }, { - "id": 5448, + "id": 4680, "properties": { "rotation": "13", "waterlogged": "true" } }, { - "id": 5449, + "id": 4681, "properties": { "rotation": "13", "waterlogged": "false" } }, { - "id": 5450, + "id": 4682, "properties": { "rotation": "14", "waterlogged": "true" } }, { - "id": 5451, + "id": 4683, "properties": { "rotation": "14", "waterlogged": "false" } }, { - "id": 5452, + "id": 4684, "properties": { "rotation": "15", "waterlogged": "true" } }, { - "id": 5453, + "id": 4685, "properties": { "rotation": "15", "waterlogged": "false" @@ -14274,21 +13060,21 @@ }, "states": [ { - "id": 13182, + "id": 12105, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 13183, + "id": 12106, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 13184, + "id": 12107, "properties": { "type": "bottom", "waterlogged": "true" @@ -14296,21 +13082,21 @@ }, { "default": true, - "id": 13185, + "id": 12108, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 13186, + "id": 12109, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 13187, + "id": 12110, "properties": { "type": "double", "waterlogged": "false" @@ -14351,7 +13137,7 @@ }, "states": [ { - "id": 12170, + "id": 11093, "properties": { "facing": "north", "half": "top", @@ -14360,7 +13146,7 @@ } }, { - "id": 12171, + "id": 11094, "properties": { "facing": "north", "half": "top", @@ -14369,7 +13155,7 @@ } }, { - "id": 12172, + "id": 11095, "properties": { "facing": "north", "half": "top", @@ -14378,7 +13164,7 @@ } }, { - "id": 12173, + "id": 11096, "properties": { "facing": "north", "half": "top", @@ -14387,7 +13173,7 @@ } }, { - "id": 12174, + "id": 11097, "properties": { "facing": "north", "half": "top", @@ -14396,7 +13182,7 @@ } }, { - "id": 12175, + "id": 11098, "properties": { "facing": "north", "half": "top", @@ -14405,7 +13191,7 @@ } }, { - "id": 12176, + "id": 11099, "properties": { "facing": "north", "half": "top", @@ -14414,7 +13200,7 @@ } }, { - "id": 12177, + "id": 11100, "properties": { "facing": "north", "half": "top", @@ -14423,7 +13209,7 @@ } }, { - "id": 12178, + "id": 11101, "properties": { "facing": "north", "half": "top", @@ -14432,7 +13218,7 @@ } }, { - "id": 12179, + "id": 11102, "properties": { "facing": "north", "half": "top", @@ -14441,7 +13227,7 @@ } }, { - "id": 12180, + "id": 11103, "properties": { "facing": "north", "half": "bottom", @@ -14451,7 +13237,7 @@ }, { "default": true, - "id": 12181, + "id": 11104, "properties": { "facing": "north", "half": "bottom", @@ -14460,7 +13246,7 @@ } }, { - "id": 12182, + "id": 11105, "properties": { "facing": "north", "half": "bottom", @@ -14469,7 +13255,7 @@ } }, { - "id": 12183, + "id": 11106, "properties": { "facing": "north", "half": "bottom", @@ -14478,7 +13264,7 @@ } }, { - "id": 12184, + "id": 11107, "properties": { "facing": "north", "half": "bottom", @@ -14487,7 +13273,7 @@ } }, { - "id": 12185, + "id": 11108, "properties": { "facing": "north", "half": "bottom", @@ -14496,7 +13282,7 @@ } }, { - "id": 12186, + "id": 11109, "properties": { "facing": "north", "half": "bottom", @@ -14505,7 +13291,7 @@ } }, { - "id": 12187, + "id": 11110, "properties": { "facing": "north", "half": "bottom", @@ -14514,7 +13300,7 @@ } }, { - "id": 12188, + "id": 11111, "properties": { "facing": "north", "half": "bottom", @@ -14523,7 +13309,7 @@ } }, { - "id": 12189, + "id": 11112, "properties": { "facing": "north", "half": "bottom", @@ -14532,7 +13318,7 @@ } }, { - "id": 12190, + "id": 11113, "properties": { "facing": "south", "half": "top", @@ -14541,7 +13327,7 @@ } }, { - "id": 12191, + "id": 11114, "properties": { "facing": "south", "half": "top", @@ -14550,7 +13336,7 @@ } }, { - "id": 12192, + "id": 11115, "properties": { "facing": "south", "half": "top", @@ -14559,7 +13345,7 @@ } }, { - "id": 12193, + "id": 11116, "properties": { "facing": "south", "half": "top", @@ -14568,7 +13354,7 @@ } }, { - "id": 12194, + "id": 11117, "properties": { "facing": "south", "half": "top", @@ -14577,7 +13363,7 @@ } }, { - "id": 12195, + "id": 11118, "properties": { "facing": "south", "half": "top", @@ -14586,7 +13372,7 @@ } }, { - "id": 12196, + "id": 11119, "properties": { "facing": "south", "half": "top", @@ -14595,7 +13381,7 @@ } }, { - "id": 12197, + "id": 11120, "properties": { "facing": "south", "half": "top", @@ -14604,7 +13390,7 @@ } }, { - "id": 12198, + "id": 11121, "properties": { "facing": "south", "half": "top", @@ -14613,7 +13399,7 @@ } }, { - "id": 12199, + "id": 11122, "properties": { "facing": "south", "half": "top", @@ -14622,7 +13408,7 @@ } }, { - "id": 12200, + "id": 11123, "properties": { "facing": "south", "half": "bottom", @@ -14631,7 +13417,7 @@ } }, { - "id": 12201, + "id": 11124, "properties": { "facing": "south", "half": "bottom", @@ -14640,7 +13426,7 @@ } }, { - "id": 12202, + "id": 11125, "properties": { "facing": "south", "half": "bottom", @@ -14649,7 +13435,7 @@ } }, { - "id": 12203, + "id": 11126, "properties": { "facing": "south", "half": "bottom", @@ -14658,7 +13444,7 @@ } }, { - "id": 12204, + "id": 11127, "properties": { "facing": "south", "half": "bottom", @@ -14667,7 +13453,7 @@ } }, { - "id": 12205, + "id": 11128, "properties": { "facing": "south", "half": "bottom", @@ -14676,7 +13462,7 @@ } }, { - "id": 12206, + "id": 11129, "properties": { "facing": "south", "half": "bottom", @@ -14685,7 +13471,7 @@ } }, { - "id": 12207, + "id": 11130, "properties": { "facing": "south", "half": "bottom", @@ -14694,7 +13480,7 @@ } }, { - "id": 12208, + "id": 11131, "properties": { "facing": "south", "half": "bottom", @@ -14703,7 +13489,7 @@ } }, { - "id": 12209, + "id": 11132, "properties": { "facing": "south", "half": "bottom", @@ -14712,7 +13498,7 @@ } }, { - "id": 12210, + "id": 11133, "properties": { "facing": "west", "half": "top", @@ -14721,7 +13507,7 @@ } }, { - "id": 12211, + "id": 11134, "properties": { "facing": "west", "half": "top", @@ -14730,7 +13516,7 @@ } }, { - "id": 12212, + "id": 11135, "properties": { "facing": "west", "half": "top", @@ -14739,7 +13525,7 @@ } }, { - "id": 12213, + "id": 11136, "properties": { "facing": "west", "half": "top", @@ -14748,7 +13534,7 @@ } }, { - "id": 12214, + "id": 11137, "properties": { "facing": "west", "half": "top", @@ -14757,7 +13543,7 @@ } }, { - "id": 12215, + "id": 11138, "properties": { "facing": "west", "half": "top", @@ -14766,7 +13552,7 @@ } }, { - "id": 12216, + "id": 11139, "properties": { "facing": "west", "half": "top", @@ -14775,7 +13561,7 @@ } }, { - "id": 12217, + "id": 11140, "properties": { "facing": "west", "half": "top", @@ -14784,7 +13570,7 @@ } }, { - "id": 12218, + "id": 11141, "properties": { "facing": "west", "half": "top", @@ -14793,7 +13579,7 @@ } }, { - "id": 12219, + "id": 11142, "properties": { "facing": "west", "half": "top", @@ -14802,7 +13588,7 @@ } }, { - "id": 12220, + "id": 11143, "properties": { "facing": "west", "half": "bottom", @@ -14811,7 +13597,7 @@ } }, { - "id": 12221, + "id": 11144, "properties": { "facing": "west", "half": "bottom", @@ -14820,7 +13606,7 @@ } }, { - "id": 12222, + "id": 11145, "properties": { "facing": "west", "half": "bottom", @@ -14829,7 +13615,7 @@ } }, { - "id": 12223, + "id": 11146, "properties": { "facing": "west", "half": "bottom", @@ -14838,7 +13624,7 @@ } }, { - "id": 12224, + "id": 11147, "properties": { "facing": "west", "half": "bottom", @@ -14847,7 +13633,7 @@ } }, { - "id": 12225, + "id": 11148, "properties": { "facing": "west", "half": "bottom", @@ -14856,7 +13642,7 @@ } }, { - "id": 12226, + "id": 11149, "properties": { "facing": "west", "half": "bottom", @@ -14865,7 +13651,7 @@ } }, { - "id": 12227, + "id": 11150, "properties": { "facing": "west", "half": "bottom", @@ -14874,7 +13660,7 @@ } }, { - "id": 12228, + "id": 11151, "properties": { "facing": "west", "half": "bottom", @@ -14883,7 +13669,7 @@ } }, { - "id": 12229, + "id": 11152, "properties": { "facing": "west", "half": "bottom", @@ -14892,7 +13678,7 @@ } }, { - "id": 12230, + "id": 11153, "properties": { "facing": "east", "half": "top", @@ -14901,7 +13687,7 @@ } }, { - "id": 12231, + "id": 11154, "properties": { "facing": "east", "half": "top", @@ -14910,7 +13696,7 @@ } }, { - "id": 12232, + "id": 11155, "properties": { "facing": "east", "half": "top", @@ -14919,7 +13705,7 @@ } }, { - "id": 12233, + "id": 11156, "properties": { "facing": "east", "half": "top", @@ -14928,7 +13714,7 @@ } }, { - "id": 12234, + "id": 11157, "properties": { "facing": "east", "half": "top", @@ -14937,7 +13723,7 @@ } }, { - "id": 12235, + "id": 11158, "properties": { "facing": "east", "half": "top", @@ -14946,7 +13732,7 @@ } }, { - "id": 12236, + "id": 11159, "properties": { "facing": "east", "half": "top", @@ -14955,7 +13741,7 @@ } }, { - "id": 12237, + "id": 11160, "properties": { "facing": "east", "half": "top", @@ -14964,7 +13750,7 @@ } }, { - "id": 12238, + "id": 11161, "properties": { "facing": "east", "half": "top", @@ -14973,7 +13759,7 @@ } }, { - "id": 12239, + "id": 11162, "properties": { "facing": "east", "half": "top", @@ -14982,7 +13768,7 @@ } }, { - "id": 12240, + "id": 11163, "properties": { "facing": "east", "half": "bottom", @@ -14991,7 +13777,7 @@ } }, { - "id": 12241, + "id": 11164, "properties": { "facing": "east", "half": "bottom", @@ -15000,7 +13786,7 @@ } }, { - "id": 12242, + "id": 11165, "properties": { "facing": "east", "half": "bottom", @@ -15009,7 +13795,7 @@ } }, { - "id": 12243, + "id": 11166, "properties": { "facing": "east", "half": "bottom", @@ -15018,7 +13804,7 @@ } }, { - "id": 12244, + "id": 11167, "properties": { "facing": "east", "half": "bottom", @@ -15027,7 +13813,7 @@ } }, { - "id": 12245, + "id": 11168, "properties": { "facing": "east", "half": "bottom", @@ -15036,7 +13822,7 @@ } }, { - "id": 12246, + "id": 11169, "properties": { "facing": "east", "half": "bottom", @@ -15045,7 +13831,7 @@ } }, { - "id": 12247, + "id": 11170, "properties": { "facing": "east", "half": "bottom", @@ -15054,7 +13840,7 @@ } }, { - "id": 12248, + "id": 11171, "properties": { "facing": "east", "half": "bottom", @@ -15063,7 +13849,7 @@ } }, { - "id": 12249, + "id": 11172, "properties": { "facing": "east", "half": "bottom", @@ -15105,7 +13891,7 @@ }, "states": [ { - "id": 7489, + "id": 6716, "properties": { "facing": "north", "half": "top", @@ -15115,7 +13901,7 @@ } }, { - "id": 7490, + "id": 6717, "properties": { "facing": "north", "half": "top", @@ -15125,7 +13911,7 @@ } }, { - "id": 7491, + "id": 6718, "properties": { "facing": "north", "half": "top", @@ -15135,7 +13921,7 @@ } }, { - "id": 7492, + "id": 6719, "properties": { "facing": "north", "half": "top", @@ -15145,7 +13931,7 @@ } }, { - "id": 7493, + "id": 6720, "properties": { "facing": "north", "half": "top", @@ -15155,7 +13941,7 @@ } }, { - "id": 7494, + "id": 6721, "properties": { "facing": "north", "half": "top", @@ -15165,7 +13951,7 @@ } }, { - "id": 7495, + "id": 6722, "properties": { "facing": "north", "half": "top", @@ -15175,7 +13961,7 @@ } }, { - "id": 7496, + "id": 6723, "properties": { "facing": "north", "half": "top", @@ -15185,7 +13971,7 @@ } }, { - "id": 7497, + "id": 6724, "properties": { "facing": "north", "half": "bottom", @@ -15195,7 +13981,7 @@ } }, { - "id": 7498, + "id": 6725, "properties": { "facing": "north", "half": "bottom", @@ -15205,7 +13991,7 @@ } }, { - "id": 7499, + "id": 6726, "properties": { "facing": "north", "half": "bottom", @@ -15215,7 +14001,7 @@ } }, { - "id": 7500, + "id": 6727, "properties": { "facing": "north", "half": "bottom", @@ -15225,7 +14011,7 @@ } }, { - "id": 7501, + "id": 6728, "properties": { "facing": "north", "half": "bottom", @@ -15235,7 +14021,7 @@ } }, { - "id": 7502, + "id": 6729, "properties": { "facing": "north", "half": "bottom", @@ -15245,7 +14031,7 @@ } }, { - "id": 7503, + "id": 6730, "properties": { "facing": "north", "half": "bottom", @@ -15256,7 +14042,7 @@ }, { "default": true, - "id": 7504, + "id": 6731, "properties": { "facing": "north", "half": "bottom", @@ -15266,7 +14052,7 @@ } }, { - "id": 7505, + "id": 6732, "properties": { "facing": "south", "half": "top", @@ -15276,7 +14062,7 @@ } }, { - "id": 7506, + "id": 6733, "properties": { "facing": "south", "half": "top", @@ -15286,7 +14072,7 @@ } }, { - "id": 7507, + "id": 6734, "properties": { "facing": "south", "half": "top", @@ -15296,7 +14082,7 @@ } }, { - "id": 7508, + "id": 6735, "properties": { "facing": "south", "half": "top", @@ -15306,7 +14092,7 @@ } }, { - "id": 7509, + "id": 6736, "properties": { "facing": "south", "half": "top", @@ -15316,7 +14102,7 @@ } }, { - "id": 7510, + "id": 6737, "properties": { "facing": "south", "half": "top", @@ -15326,7 +14112,7 @@ } }, { - "id": 7511, + "id": 6738, "properties": { "facing": "south", "half": "top", @@ -15336,7 +14122,7 @@ } }, { - "id": 7512, + "id": 6739, "properties": { "facing": "south", "half": "top", @@ -15346,7 +14132,7 @@ } }, { - "id": 7513, + "id": 6740, "properties": { "facing": "south", "half": "bottom", @@ -15356,7 +14142,7 @@ } }, { - "id": 7514, + "id": 6741, "properties": { "facing": "south", "half": "bottom", @@ -15366,7 +14152,7 @@ } }, { - "id": 7515, + "id": 6742, "properties": { "facing": "south", "half": "bottom", @@ -15376,7 +14162,7 @@ } }, { - "id": 7516, + "id": 6743, "properties": { "facing": "south", "half": "bottom", @@ -15386,7 +14172,7 @@ } }, { - "id": 7517, + "id": 6744, "properties": { "facing": "south", "half": "bottom", @@ -15396,7 +14182,7 @@ } }, { - "id": 7518, + "id": 6745, "properties": { "facing": "south", "half": "bottom", @@ -15406,7 +14192,7 @@ } }, { - "id": 7519, + "id": 6746, "properties": { "facing": "south", "half": "bottom", @@ -15416,7 +14202,7 @@ } }, { - "id": 7520, + "id": 6747, "properties": { "facing": "south", "half": "bottom", @@ -15426,7 +14212,7 @@ } }, { - "id": 7521, + "id": 6748, "properties": { "facing": "west", "half": "top", @@ -15436,7 +14222,7 @@ } }, { - "id": 7522, + "id": 6749, "properties": { "facing": "west", "half": "top", @@ -15446,7 +14232,7 @@ } }, { - "id": 7523, + "id": 6750, "properties": { "facing": "west", "half": "top", @@ -15456,7 +14242,7 @@ } }, { - "id": 7524, + "id": 6751, "properties": { "facing": "west", "half": "top", @@ -15466,7 +14252,7 @@ } }, { - "id": 7525, + "id": 6752, "properties": { "facing": "west", "half": "top", @@ -15476,7 +14262,7 @@ } }, { - "id": 7526, + "id": 6753, "properties": { "facing": "west", "half": "top", @@ -15486,7 +14272,7 @@ } }, { - "id": 7527, + "id": 6754, "properties": { "facing": "west", "half": "top", @@ -15496,7 +14282,7 @@ } }, { - "id": 7528, + "id": 6755, "properties": { "facing": "west", "half": "top", @@ -15506,7 +14292,7 @@ } }, { - "id": 7529, + "id": 6756, "properties": { "facing": "west", "half": "bottom", @@ -15516,7 +14302,7 @@ } }, { - "id": 7530, + "id": 6757, "properties": { "facing": "west", "half": "bottom", @@ -15526,7 +14312,7 @@ } }, { - "id": 7531, + "id": 6758, "properties": { "facing": "west", "half": "bottom", @@ -15536,7 +14322,7 @@ } }, { - "id": 7532, + "id": 6759, "properties": { "facing": "west", "half": "bottom", @@ -15546,7 +14332,7 @@ } }, { - "id": 7533, + "id": 6760, "properties": { "facing": "west", "half": "bottom", @@ -15556,7 +14342,7 @@ } }, { - "id": 7534, + "id": 6761, "properties": { "facing": "west", "half": "bottom", @@ -15566,7 +14352,7 @@ } }, { - "id": 7535, + "id": 6762, "properties": { "facing": "west", "half": "bottom", @@ -15576,7 +14362,7 @@ } }, { - "id": 7536, + "id": 6763, "properties": { "facing": "west", "half": "bottom", @@ -15586,7 +14372,7 @@ } }, { - "id": 7537, + "id": 6764, "properties": { "facing": "east", "half": "top", @@ -15596,7 +14382,7 @@ } }, { - "id": 7538, + "id": 6765, "properties": { "facing": "east", "half": "top", @@ -15606,7 +14392,7 @@ } }, { - "id": 7539, + "id": 6766, "properties": { "facing": "east", "half": "top", @@ -15616,7 +14402,7 @@ } }, { - "id": 7540, + "id": 6767, "properties": { "facing": "east", "half": "top", @@ -15626,7 +14412,7 @@ } }, { - "id": 7541, + "id": 6768, "properties": { "facing": "east", "half": "top", @@ -15636,7 +14422,7 @@ } }, { - "id": 7542, + "id": 6769, "properties": { "facing": "east", "half": "top", @@ -15646,7 +14432,7 @@ } }, { - "id": 7543, + "id": 6770, "properties": { "facing": "east", "half": "top", @@ -15656,7 +14442,7 @@ } }, { - "id": 7544, + "id": 6771, "properties": { "facing": "east", "half": "top", @@ -15666,7 +14452,7 @@ } }, { - "id": 7545, + "id": 6772, "properties": { "facing": "east", "half": "bottom", @@ -15676,7 +14462,7 @@ } }, { - "id": 7546, + "id": 6773, "properties": { "facing": "east", "half": "bottom", @@ -15686,7 +14472,7 @@ } }, { - "id": 7547, + "id": 6774, "properties": { "facing": "east", "half": "bottom", @@ -15696,7 +14482,7 @@ } }, { - "id": 7548, + "id": 6775, "properties": { "facing": "east", "half": "bottom", @@ -15706,7 +14492,7 @@ } }, { - "id": 7549, + "id": 6776, "properties": { "facing": "east", "half": "bottom", @@ -15716,7 +14502,7 @@ } }, { - "id": 7550, + "id": 6777, "properties": { "facing": "east", "half": "bottom", @@ -15726,7 +14512,7 @@ } }, { - "id": 7551, + "id": 6778, "properties": { "facing": "east", "half": "bottom", @@ -15736,7 +14522,7 @@ } }, { - "id": 7552, + "id": 6779, "properties": { "facing": "east", "half": "bottom", @@ -15767,7 +14553,7 @@ }, "states": [ { - "id": 6562, + "id": 5794, "properties": { "facing": "north", "waterlogged": "true" @@ -15775,49 +14561,49 @@ }, { "default": true, - "id": 6563, + "id": 5795, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 6564, + "id": 5796, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 6565, + "id": 5797, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 6566, + "id": 5798, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 6567, + "id": 5799, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 6568, + "id": 5800, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 6569, + "id": 5801, "properties": { "facing": "east", "waterlogged": "false" @@ -15845,7 +14631,7 @@ }, "states": [ { - "id": 5698, + "id": 4930, "properties": { "facing": "north", "waterlogged": "true" @@ -15853,49 +14639,49 @@ }, { "default": true, - "id": 5699, + "id": 4931, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 5700, + "id": 4932, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 5701, + "id": 4933, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 5702, + "id": 4934, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 5703, + "id": 4935, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 5704, + "id": 4936, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 5705, + "id": 4937, "properties": { "facing": "east", "waterlogged": "false" @@ -15924,7 +14710,7 @@ }, "states": [ { - "id": 20540, + "id": 19431, "properties": { "facing": "north", "open": "true" @@ -15932,77 +14718,77 @@ }, { "default": true, - "id": 20541, + "id": 19432, "properties": { "facing": "north", "open": "false" } }, { - "id": 20542, + "id": 19433, "properties": { "facing": "east", "open": "true" } }, { - "id": 20543, + "id": 19434, "properties": { "facing": "east", "open": "false" } }, { - "id": 20544, + "id": 19435, "properties": { "facing": "south", "open": "true" } }, { - "id": 20545, + "id": 19436, "properties": { "facing": "south", "open": "false" } }, { - "id": 20546, + "id": 19437, "properties": { "facing": "west", "open": "true" } }, { - "id": 20547, + "id": 19438, "properties": { "facing": "west", "open": "false" } }, { - "id": 20548, + "id": 19439, "properties": { "facing": "up", "open": "true" } }, { - "id": 20549, + "id": 19440, "properties": { "facing": "up", "open": "false" } }, { - "id": 20550, + "id": 19441, "properties": { "facing": "down", "open": "true" } }, { - "id": 20551, + "id": 19442, "properties": { "facing": "down", "open": "false" @@ -16023,14 +14809,14 @@ }, "states": [ { - "id": 12331, + "id": 11254, "properties": { "waterlogged": "true" } }, { "default": true, - "id": 12332, + "id": 11255, "properties": { "waterlogged": "false" } @@ -16051,20 +14837,20 @@ }, "states": [ { - "id": 6799, + "id": 6031, "properties": { "axis": "x" } }, { "default": true, - "id": 6800, + "id": 6032, "properties": { "axis": "y" } }, { - "id": 6801, + "id": 6033, "properties": { "axis": "z" } @@ -16079,7 +14865,7 @@ "states": [ { "default": true, - "id": 9779 + "id": 8702 } ] }, @@ -16119,168 +14905,168 @@ "states": [ { "default": true, - "id": 21566, + "id": 20425, "properties": { "facing": "north", "honey_level": "0" } }, { - "id": 21567, + "id": 20426, "properties": { "facing": "north", "honey_level": "1" } }, { - "id": 21568, + "id": 20427, "properties": { "facing": "north", "honey_level": "2" } }, { - "id": 21569, + "id": 20428, "properties": { "facing": "north", "honey_level": "3" } }, { - "id": 21570, + "id": 20429, "properties": { "facing": "north", "honey_level": "4" } }, { - "id": 21571, + "id": 20430, "properties": { "facing": "north", "honey_level": "5" } }, { - "id": 21572, + "id": 20431, "properties": { "facing": "south", "honey_level": "0" } }, { - "id": 21573, + "id": 20432, "properties": { "facing": "south", "honey_level": "1" } }, { - "id": 21574, + "id": 20433, "properties": { "facing": "south", "honey_level": "2" } }, { - "id": 21575, + "id": 20434, "properties": { "facing": "south", "honey_level": "3" } }, { - "id": 21576, + "id": 20435, "properties": { "facing": "south", "honey_level": "4" } }, { - "id": 21577, + "id": 20436, "properties": { "facing": "south", "honey_level": "5" } }, { - "id": 21578, + "id": 20437, "properties": { "facing": "west", "honey_level": "0" } }, { - "id": 21579, + "id": 20438, "properties": { "facing": "west", "honey_level": "1" } }, { - "id": 21580, + "id": 20439, "properties": { "facing": "west", "honey_level": "2" } }, { - "id": 21581, + "id": 20440, "properties": { "facing": "west", "honey_level": "3" } }, { - "id": 21582, + "id": 20441, "properties": { "facing": "west", "honey_level": "4" } }, { - "id": 21583, + "id": 20442, "properties": { "facing": "west", "honey_level": "5" } }, { - "id": 21584, + "id": 20443, "properties": { "facing": "east", "honey_level": "0" } }, { - "id": 21585, + "id": 20444, "properties": { "facing": "east", "honey_level": "1" } }, { - "id": 21586, + "id": 20445, "properties": { "facing": "east", "honey_level": "2" } }, { - "id": 21587, + "id": 20446, "properties": { "facing": "east", "honey_level": "3" } }, { - "id": 21588, + "id": 20447, "properties": { "facing": "east", "honey_level": "4" } }, { - "id": 21589, + "id": 20448, "properties": { "facing": "east", "honey_level": "5" @@ -16312,168 +15098,168 @@ "states": [ { "default": true, - "id": 21590, + "id": 20449, "properties": { "facing": "north", "honey_level": "0" } }, { - "id": 21591, + "id": 20450, "properties": { "facing": "north", "honey_level": "1" } }, { - "id": 21592, + "id": 20451, "properties": { "facing": "north", "honey_level": "2" } }, { - "id": 21593, + "id": 20452, "properties": { "facing": "north", "honey_level": "3" } }, { - "id": 21594, + "id": 20453, "properties": { "facing": "north", "honey_level": "4" } }, { - "id": 21595, + "id": 20454, "properties": { "facing": "north", "honey_level": "5" } }, { - "id": 21596, + "id": 20455, "properties": { "facing": "south", "honey_level": "0" } }, { - "id": 21597, + "id": 20456, "properties": { "facing": "south", "honey_level": "1" } }, { - "id": 21598, + "id": 20457, "properties": { "facing": "south", "honey_level": "2" } }, { - "id": 21599, + "id": 20458, "properties": { "facing": "south", "honey_level": "3" } }, { - "id": 21600, + "id": 20459, "properties": { "facing": "south", "honey_level": "4" } }, { - "id": 21601, + "id": 20460, "properties": { "facing": "south", "honey_level": "5" } }, { - "id": 21602, + "id": 20461, "properties": { "facing": "west", "honey_level": "0" } }, { - "id": 21603, + "id": 20462, "properties": { "facing": "west", "honey_level": "1" } }, { - "id": 21604, + "id": 20463, "properties": { "facing": "west", "honey_level": "2" } }, { - "id": 21605, + "id": 20464, "properties": { "facing": "west", "honey_level": "3" } }, { - "id": 21606, + "id": 20465, "properties": { "facing": "west", "honey_level": "4" } }, { - "id": 21607, + "id": 20466, "properties": { "facing": "west", "honey_level": "5" } }, { - "id": 21608, + "id": 20467, "properties": { "facing": "east", "honey_level": "0" } }, { - "id": 21609, + "id": 20468, "properties": { "facing": "east", "honey_level": "1" } }, { - "id": 21610, + "id": 20469, "properties": { "facing": "east", "honey_level": "2" } }, { - "id": 21611, + "id": 20470, "properties": { "facing": "east", "honey_level": "3" } }, { - "id": 21612, + "id": 20471, "properties": { "facing": "east", "honey_level": "4" } }, { - "id": 21613, + "id": 20472, "properties": { "facing": "east", "honey_level": "5" @@ -16497,25 +15283,25 @@ "states": [ { "default": true, - "id": 14609, + "id": 13532, "properties": { "age": "0" } }, { - "id": 14610, + "id": 13533, "properties": { "age": "1" } }, { - "id": 14611, + "id": 13534, "properties": { "age": "2" } }, { - "id": 14612, + "id": 13535, "properties": { "age": "3" } @@ -16547,7 +15333,7 @@ }, "states": [ { - "id": 20603, + "id": 19494, "properties": { "attachment": "floor", "facing": "north", @@ -16556,7 +15342,7 @@ }, { "default": true, - "id": 20604, + "id": 19495, "properties": { "attachment": "floor", "facing": "north", @@ -16564,7 +15350,7 @@ } }, { - "id": 20605, + "id": 19496, "properties": { "attachment": "floor", "facing": "south", @@ -16572,7 +15358,7 @@ } }, { - "id": 20606, + "id": 19497, "properties": { "attachment": "floor", "facing": "south", @@ -16580,7 +15366,7 @@ } }, { - "id": 20607, + "id": 19498, "properties": { "attachment": "floor", "facing": "west", @@ -16588,7 +15374,7 @@ } }, { - "id": 20608, + "id": 19499, "properties": { "attachment": "floor", "facing": "west", @@ -16596,7 +15382,7 @@ } }, { - "id": 20609, + "id": 19500, "properties": { "attachment": "floor", "facing": "east", @@ -16604,7 +15390,7 @@ } }, { - "id": 20610, + "id": 19501, "properties": { "attachment": "floor", "facing": "east", @@ -16612,7 +15398,7 @@ } }, { - "id": 20611, + "id": 19502, "properties": { "attachment": "ceiling", "facing": "north", @@ -16620,7 +15406,7 @@ } }, { - "id": 20612, + "id": 19503, "properties": { "attachment": "ceiling", "facing": "north", @@ -16628,7 +15414,7 @@ } }, { - "id": 20613, + "id": 19504, "properties": { "attachment": "ceiling", "facing": "south", @@ -16636,7 +15422,7 @@ } }, { - "id": 20614, + "id": 19505, "properties": { "attachment": "ceiling", "facing": "south", @@ -16644,7 +15430,7 @@ } }, { - "id": 20615, + "id": 19506, "properties": { "attachment": "ceiling", "facing": "west", @@ -16652,7 +15438,7 @@ } }, { - "id": 20616, + "id": 19507, "properties": { "attachment": "ceiling", "facing": "west", @@ -16660,7 +15446,7 @@ } }, { - "id": 20617, + "id": 19508, "properties": { "attachment": "ceiling", "facing": "east", @@ -16668,7 +15454,7 @@ } }, { - "id": 20618, + "id": 19509, "properties": { "attachment": "ceiling", "facing": "east", @@ -16676,7 +15462,7 @@ } }, { - "id": 20619, + "id": 19510, "properties": { "attachment": "single_wall", "facing": "north", @@ -16684,7 +15470,7 @@ } }, { - "id": 20620, + "id": 19511, "properties": { "attachment": "single_wall", "facing": "north", @@ -16692,7 +15478,7 @@ } }, { - "id": 20621, + "id": 19512, "properties": { "attachment": "single_wall", "facing": "south", @@ -16700,7 +15486,7 @@ } }, { - "id": 20622, + "id": 19513, "properties": { "attachment": "single_wall", "facing": "south", @@ -16708,7 +15494,7 @@ } }, { - "id": 20623, + "id": 19514, "properties": { "attachment": "single_wall", "facing": "west", @@ -16716,7 +15502,7 @@ } }, { - "id": 20624, + "id": 19515, "properties": { "attachment": "single_wall", "facing": "west", @@ -16724,7 +15510,7 @@ } }, { - "id": 20625, + "id": 19516, "properties": { "attachment": "single_wall", "facing": "east", @@ -16732,7 +15518,7 @@ } }, { - "id": 20626, + "id": 19517, "properties": { "attachment": "single_wall", "facing": "east", @@ -16740,7 +15526,7 @@ } }, { - "id": 20627, + "id": 19518, "properties": { "attachment": "double_wall", "facing": "north", @@ -16748,7 +15534,7 @@ } }, { - "id": 20628, + "id": 19519, "properties": { "attachment": "double_wall", "facing": "north", @@ -16756,7 +15542,7 @@ } }, { - "id": 20629, + "id": 19520, "properties": { "attachment": "double_wall", "facing": "south", @@ -16764,7 +15550,7 @@ } }, { - "id": 20630, + "id": 19521, "properties": { "attachment": "double_wall", "facing": "south", @@ -16772,7 +15558,7 @@ } }, { - "id": 20631, + "id": 19522, "properties": { "attachment": "double_wall", "facing": "west", @@ -16780,7 +15566,7 @@ } }, { - "id": 20632, + "id": 19523, "properties": { "attachment": "double_wall", "facing": "west", @@ -16788,7 +15574,7 @@ } }, { - "id": 20633, + "id": 19524, "properties": { "attachment": "double_wall", "facing": "east", @@ -16796,7 +15582,7 @@ } }, { - "id": 20634, + "id": 19525, "properties": { "attachment": "double_wall", "facing": "east", @@ -16830,7 +15616,7 @@ }, "states": [ { - "id": 27661, + "id": 25904, "properties": { "facing": "north", "tilt": "none", @@ -16839,7 +15625,7 @@ }, { "default": true, - "id": 27662, + "id": 25905, "properties": { "facing": "north", "tilt": "none", @@ -16847,7 +15633,7 @@ } }, { - "id": 27663, + "id": 25906, "properties": { "facing": "north", "tilt": "unstable", @@ -16855,7 +15641,7 @@ } }, { - "id": 27664, + "id": 25907, "properties": { "facing": "north", "tilt": "unstable", @@ -16863,7 +15649,7 @@ } }, { - "id": 27665, + "id": 25908, "properties": { "facing": "north", "tilt": "partial", @@ -16871,7 +15657,7 @@ } }, { - "id": 27666, + "id": 25909, "properties": { "facing": "north", "tilt": "partial", @@ -16879,7 +15665,7 @@ } }, { - "id": 27667, + "id": 25910, "properties": { "facing": "north", "tilt": "full", @@ -16887,7 +15673,7 @@ } }, { - "id": 27668, + "id": 25911, "properties": { "facing": "north", "tilt": "full", @@ -16895,7 +15681,7 @@ } }, { - "id": 27669, + "id": 25912, "properties": { "facing": "south", "tilt": "none", @@ -16903,7 +15689,7 @@ } }, { - "id": 27670, + "id": 25913, "properties": { "facing": "south", "tilt": "none", @@ -16911,7 +15697,7 @@ } }, { - "id": 27671, + "id": 25914, "properties": { "facing": "south", "tilt": "unstable", @@ -16919,7 +15705,7 @@ } }, { - "id": 27672, + "id": 25915, "properties": { "facing": "south", "tilt": "unstable", @@ -16927,7 +15713,7 @@ } }, { - "id": 27673, + "id": 25916, "properties": { "facing": "south", "tilt": "partial", @@ -16935,7 +15721,7 @@ } }, { - "id": 27674, + "id": 25917, "properties": { "facing": "south", "tilt": "partial", @@ -16943,7 +15729,7 @@ } }, { - "id": 27675, + "id": 25918, "properties": { "facing": "south", "tilt": "full", @@ -16951,7 +15737,7 @@ } }, { - "id": 27676, + "id": 25919, "properties": { "facing": "south", "tilt": "full", @@ -16959,7 +15745,7 @@ } }, { - "id": 27677, + "id": 25920, "properties": { "facing": "west", "tilt": "none", @@ -16967,7 +15753,7 @@ } }, { - "id": 27678, + "id": 25921, "properties": { "facing": "west", "tilt": "none", @@ -16975,7 +15761,7 @@ } }, { - "id": 27679, + "id": 25922, "properties": { "facing": "west", "tilt": "unstable", @@ -16983,7 +15769,7 @@ } }, { - "id": 27680, + "id": 25923, "properties": { "facing": "west", "tilt": "unstable", @@ -16991,7 +15777,7 @@ } }, { - "id": 27681, + "id": 25924, "properties": { "facing": "west", "tilt": "partial", @@ -16999,7 +15785,7 @@ } }, { - "id": 27682, + "id": 25925, "properties": { "facing": "west", "tilt": "partial", @@ -17007,7 +15793,7 @@ } }, { - "id": 27683, + "id": 25926, "properties": { "facing": "west", "tilt": "full", @@ -17015,7 +15801,7 @@ } }, { - "id": 27684, + "id": 25927, "properties": { "facing": "west", "tilt": "full", @@ -17023,7 +15809,7 @@ } }, { - "id": 27685, + "id": 25928, "properties": { "facing": "east", "tilt": "none", @@ -17031,7 +15817,7 @@ } }, { - "id": 27686, + "id": 25929, "properties": { "facing": "east", "tilt": "none", @@ -17039,7 +15825,7 @@ } }, { - "id": 27687, + "id": 25930, "properties": { "facing": "east", "tilt": "unstable", @@ -17047,7 +15833,7 @@ } }, { - "id": 27688, + "id": 25931, "properties": { "facing": "east", "tilt": "unstable", @@ -17055,7 +15841,7 @@ } }, { - "id": 27689, + "id": 25932, "properties": { "facing": "east", "tilt": "partial", @@ -17063,7 +15849,7 @@ } }, { - "id": 27690, + "id": 25933, "properties": { "facing": "east", "tilt": "partial", @@ -17071,7 +15857,7 @@ } }, { - "id": 27691, + "id": 25934, "properties": { "facing": "east", "tilt": "full", @@ -17079,7 +15865,7 @@ } }, { - "id": 27692, + "id": 25935, "properties": { "facing": "east", "tilt": "full", @@ -17107,7 +15893,7 @@ }, "states": [ { - "id": 27693, + "id": 25936, "properties": { "facing": "north", "waterlogged": "true" @@ -17115,49 +15901,49 @@ }, { "default": true, - "id": 27694, + "id": 25937, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 27695, + "id": 25938, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 27696, + "id": 25939, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 27697, + "id": 25940, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 27698, + "id": 25941, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 27699, + "id": 25942, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 27700, + "id": 25943, "properties": { "facing": "east", "waterlogged": "false" @@ -17191,7 +15977,7 @@ }, "states": [ { - "id": 10521, + "id": 9444, "properties": { "face": "floor", "facing": "north", @@ -17199,7 +15985,7 @@ } }, { - "id": 10522, + "id": 9445, "properties": { "face": "floor", "facing": "north", @@ -17207,7 +15993,7 @@ } }, { - "id": 10523, + "id": 9446, "properties": { "face": "floor", "facing": "south", @@ -17215,7 +16001,7 @@ } }, { - "id": 10524, + "id": 9447, "properties": { "face": "floor", "facing": "south", @@ -17223,7 +16009,7 @@ } }, { - "id": 10525, + "id": 9448, "properties": { "face": "floor", "facing": "west", @@ -17231,7 +16017,7 @@ } }, { - "id": 10526, + "id": 9449, "properties": { "face": "floor", "facing": "west", @@ -17239,7 +16025,7 @@ } }, { - "id": 10527, + "id": 9450, "properties": { "face": "floor", "facing": "east", @@ -17247,7 +16033,7 @@ } }, { - "id": 10528, + "id": 9451, "properties": { "face": "floor", "facing": "east", @@ -17255,7 +16041,7 @@ } }, { - "id": 10529, + "id": 9452, "properties": { "face": "wall", "facing": "north", @@ -17264,7 +16050,7 @@ }, { "default": true, - "id": 10530, + "id": 9453, "properties": { "face": "wall", "facing": "north", @@ -17272,7 +16058,7 @@ } }, { - "id": 10531, + "id": 9454, "properties": { "face": "wall", "facing": "south", @@ -17280,7 +16066,7 @@ } }, { - "id": 10532, + "id": 9455, "properties": { "face": "wall", "facing": "south", @@ -17288,7 +16074,7 @@ } }, { - "id": 10533, + "id": 9456, "properties": { "face": "wall", "facing": "west", @@ -17296,7 +16082,7 @@ } }, { - "id": 10534, + "id": 9457, "properties": { "face": "wall", "facing": "west", @@ -17304,7 +16090,7 @@ } }, { - "id": 10535, + "id": 9458, "properties": { "face": "wall", "facing": "east", @@ -17312,7 +16098,7 @@ } }, { - "id": 10536, + "id": 9459, "properties": { "face": "wall", "facing": "east", @@ -17320,7 +16106,7 @@ } }, { - "id": 10537, + "id": 9460, "properties": { "face": "ceiling", "facing": "north", @@ -17328,7 +16114,7 @@ } }, { - "id": 10538, + "id": 9461, "properties": { "face": "ceiling", "facing": "north", @@ -17336,7 +16122,7 @@ } }, { - "id": 10539, + "id": 9462, "properties": { "face": "ceiling", "facing": "south", @@ -17344,7 +16130,7 @@ } }, { - "id": 10540, + "id": 9463, "properties": { "face": "ceiling", "facing": "south", @@ -17352,7 +16138,7 @@ } }, { - "id": 10541, + "id": 9464, "properties": { "face": "ceiling", "facing": "west", @@ -17360,7 +16146,7 @@ } }, { - "id": 10542, + "id": 9465, "properties": { "face": "ceiling", "facing": "west", @@ -17368,7 +16154,7 @@ } }, { - "id": 10543, + "id": 9466, "properties": { "face": "ceiling", "facing": "east", @@ -17376,7 +16162,7 @@ } }, { - "id": 10544, + "id": 9467, "properties": { "face": "ceiling", "facing": "east", @@ -17417,7 +16203,7 @@ }, "states": [ { - "id": 13922, + "id": 12845, "properties": { "facing": "north", "half": "upper", @@ -17427,7 +16213,7 @@ } }, { - "id": 13923, + "id": 12846, "properties": { "facing": "north", "half": "upper", @@ -17437,7 +16223,7 @@ } }, { - "id": 13924, + "id": 12847, "properties": { "facing": "north", "half": "upper", @@ -17447,7 +16233,7 @@ } }, { - "id": 13925, + "id": 12848, "properties": { "facing": "north", "half": "upper", @@ -17457,7 +16243,7 @@ } }, { - "id": 13926, + "id": 12849, "properties": { "facing": "north", "half": "upper", @@ -17467,7 +16253,7 @@ } }, { - "id": 13927, + "id": 12850, "properties": { "facing": "north", "half": "upper", @@ -17477,7 +16263,7 @@ } }, { - "id": 13928, + "id": 12851, "properties": { "facing": "north", "half": "upper", @@ -17487,7 +16273,7 @@ } }, { - "id": 13929, + "id": 12852, "properties": { "facing": "north", "half": "upper", @@ -17497,7 +16283,7 @@ } }, { - "id": 13930, + "id": 12853, "properties": { "facing": "north", "half": "lower", @@ -17507,7 +16293,7 @@ } }, { - "id": 13931, + "id": 12854, "properties": { "facing": "north", "half": "lower", @@ -17517,7 +16303,7 @@ } }, { - "id": 13932, + "id": 12855, "properties": { "facing": "north", "half": "lower", @@ -17528,7 +16314,7 @@ }, { "default": true, - "id": 13933, + "id": 12856, "properties": { "facing": "north", "half": "lower", @@ -17538,7 +16324,7 @@ } }, { - "id": 13934, + "id": 12857, "properties": { "facing": "north", "half": "lower", @@ -17548,7 +16334,7 @@ } }, { - "id": 13935, + "id": 12858, "properties": { "facing": "north", "half": "lower", @@ -17558,7 +16344,7 @@ } }, { - "id": 13936, + "id": 12859, "properties": { "facing": "north", "half": "lower", @@ -17568,7 +16354,7 @@ } }, { - "id": 13937, + "id": 12860, "properties": { "facing": "north", "half": "lower", @@ -17578,7 +16364,7 @@ } }, { - "id": 13938, + "id": 12861, "properties": { "facing": "south", "half": "upper", @@ -17588,7 +16374,7 @@ } }, { - "id": 13939, + "id": 12862, "properties": { "facing": "south", "half": "upper", @@ -17598,7 +16384,7 @@ } }, { - "id": 13940, + "id": 12863, "properties": { "facing": "south", "half": "upper", @@ -17608,7 +16394,7 @@ } }, { - "id": 13941, + "id": 12864, "properties": { "facing": "south", "half": "upper", @@ -17618,7 +16404,7 @@ } }, { - "id": 13942, + "id": 12865, "properties": { "facing": "south", "half": "upper", @@ -17628,7 +16414,7 @@ } }, { - "id": 13943, + "id": 12866, "properties": { "facing": "south", "half": "upper", @@ -17638,7 +16424,7 @@ } }, { - "id": 13944, + "id": 12867, "properties": { "facing": "south", "half": "upper", @@ -17648,7 +16434,7 @@ } }, { - "id": 13945, + "id": 12868, "properties": { "facing": "south", "half": "upper", @@ -17658,7 +16444,7 @@ } }, { - "id": 13946, + "id": 12869, "properties": { "facing": "south", "half": "lower", @@ -17668,7 +16454,7 @@ } }, { - "id": 13947, + "id": 12870, "properties": { "facing": "south", "half": "lower", @@ -17678,7 +16464,7 @@ } }, { - "id": 13948, + "id": 12871, "properties": { "facing": "south", "half": "lower", @@ -17688,7 +16474,7 @@ } }, { - "id": 13949, + "id": 12872, "properties": { "facing": "south", "half": "lower", @@ -17698,7 +16484,7 @@ } }, { - "id": 13950, + "id": 12873, "properties": { "facing": "south", "half": "lower", @@ -17708,7 +16494,7 @@ } }, { - "id": 13951, + "id": 12874, "properties": { "facing": "south", "half": "lower", @@ -17718,7 +16504,7 @@ } }, { - "id": 13952, + "id": 12875, "properties": { "facing": "south", "half": "lower", @@ -17728,7 +16514,7 @@ } }, { - "id": 13953, + "id": 12876, "properties": { "facing": "south", "half": "lower", @@ -17738,7 +16524,7 @@ } }, { - "id": 13954, + "id": 12877, "properties": { "facing": "west", "half": "upper", @@ -17748,7 +16534,7 @@ } }, { - "id": 13955, + "id": 12878, "properties": { "facing": "west", "half": "upper", @@ -17758,7 +16544,7 @@ } }, { - "id": 13956, + "id": 12879, "properties": { "facing": "west", "half": "upper", @@ -17768,7 +16554,7 @@ } }, { - "id": 13957, + "id": 12880, "properties": { "facing": "west", "half": "upper", @@ -17778,7 +16564,7 @@ } }, { - "id": 13958, + "id": 12881, "properties": { "facing": "west", "half": "upper", @@ -17788,7 +16574,7 @@ } }, { - "id": 13959, + "id": 12882, "properties": { "facing": "west", "half": "upper", @@ -17798,7 +16584,7 @@ } }, { - "id": 13960, + "id": 12883, "properties": { "facing": "west", "half": "upper", @@ -17808,7 +16594,7 @@ } }, { - "id": 13961, + "id": 12884, "properties": { "facing": "west", "half": "upper", @@ -17818,7 +16604,7 @@ } }, { - "id": 13962, + "id": 12885, "properties": { "facing": "west", "half": "lower", @@ -17828,7 +16614,7 @@ } }, { - "id": 13963, + "id": 12886, "properties": { "facing": "west", "half": "lower", @@ -17838,7 +16624,7 @@ } }, { - "id": 13964, + "id": 12887, "properties": { "facing": "west", "half": "lower", @@ -17848,7 +16634,7 @@ } }, { - "id": 13965, + "id": 12888, "properties": { "facing": "west", "half": "lower", @@ -17858,7 +16644,7 @@ } }, { - "id": 13966, + "id": 12889, "properties": { "facing": "west", "half": "lower", @@ -17868,7 +16654,7 @@ } }, { - "id": 13967, + "id": 12890, "properties": { "facing": "west", "half": "lower", @@ -17878,7 +16664,7 @@ } }, { - "id": 13968, + "id": 12891, "properties": { "facing": "west", "half": "lower", @@ -17888,7 +16674,7 @@ } }, { - "id": 13969, + "id": 12892, "properties": { "facing": "west", "half": "lower", @@ -17898,7 +16684,7 @@ } }, { - "id": 13970, + "id": 12893, "properties": { "facing": "east", "half": "upper", @@ -17908,7 +16694,7 @@ } }, { - "id": 13971, + "id": 12894, "properties": { "facing": "east", "half": "upper", @@ -17918,7 +16704,7 @@ } }, { - "id": 13972, + "id": 12895, "properties": { "facing": "east", "half": "upper", @@ -17928,7 +16714,7 @@ } }, { - "id": 13973, + "id": 12896, "properties": { "facing": "east", "half": "upper", @@ -17938,7 +16724,7 @@ } }, { - "id": 13974, + "id": 12897, "properties": { "facing": "east", "half": "upper", @@ -17948,7 +16734,7 @@ } }, { - "id": 13975, + "id": 12898, "properties": { "facing": "east", "half": "upper", @@ -17958,7 +16744,7 @@ } }, { - "id": 13976, + "id": 12899, "properties": { "facing": "east", "half": "upper", @@ -17968,7 +16754,7 @@ } }, { - "id": 13977, + "id": 12900, "properties": { "facing": "east", "half": "upper", @@ -17978,7 +16764,7 @@ } }, { - "id": 13978, + "id": 12901, "properties": { "facing": "east", "half": "lower", @@ -17988,7 +16774,7 @@ } }, { - "id": 13979, + "id": 12902, "properties": { "facing": "east", "half": "lower", @@ -17998,7 +16784,7 @@ } }, { - "id": 13980, + "id": 12903, "properties": { "facing": "east", "half": "lower", @@ -18008,7 +16794,7 @@ } }, { - "id": 13981, + "id": 12904, "properties": { "facing": "east", "half": "lower", @@ -18018,7 +16804,7 @@ } }, { - "id": 13982, + "id": 12905, "properties": { "facing": "east", "half": "lower", @@ -18028,7 +16814,7 @@ } }, { - "id": 13983, + "id": 12906, "properties": { "facing": "east", "half": "lower", @@ -18038,7 +16824,7 @@ } }, { - "id": 13984, + "id": 12907, "properties": { "facing": "east", "half": "lower", @@ -18048,7 +16834,7 @@ } }, { - "id": 13985, + "id": 12908, "properties": { "facing": "east", "half": "lower", @@ -18088,7 +16874,7 @@ }, "states": [ { - "id": 13602, + "id": 12525, "properties": { "east": "true", "north": "true", @@ -18098,7 +16884,7 @@ } }, { - "id": 13603, + "id": 12526, "properties": { "east": "true", "north": "true", @@ -18108,7 +16894,7 @@ } }, { - "id": 13604, + "id": 12527, "properties": { "east": "true", "north": "true", @@ -18118,7 +16904,7 @@ } }, { - "id": 13605, + "id": 12528, "properties": { "east": "true", "north": "true", @@ -18128,7 +16914,7 @@ } }, { - "id": 13606, + "id": 12529, "properties": { "east": "true", "north": "true", @@ -18138,7 +16924,7 @@ } }, { - "id": 13607, + "id": 12530, "properties": { "east": "true", "north": "true", @@ -18148,7 +16934,7 @@ } }, { - "id": 13608, + "id": 12531, "properties": { "east": "true", "north": "true", @@ -18158,7 +16944,7 @@ } }, { - "id": 13609, + "id": 12532, "properties": { "east": "true", "north": "true", @@ -18168,7 +16954,7 @@ } }, { - "id": 13610, + "id": 12533, "properties": { "east": "true", "north": "false", @@ -18178,7 +16964,7 @@ } }, { - "id": 13611, + "id": 12534, "properties": { "east": "true", "north": "false", @@ -18188,7 +16974,7 @@ } }, { - "id": 13612, + "id": 12535, "properties": { "east": "true", "north": "false", @@ -18198,7 +16984,7 @@ } }, { - "id": 13613, + "id": 12536, "properties": { "east": "true", "north": "false", @@ -18208,7 +16994,7 @@ } }, { - "id": 13614, + "id": 12537, "properties": { "east": "true", "north": "false", @@ -18218,7 +17004,7 @@ } }, { - "id": 13615, + "id": 12538, "properties": { "east": "true", "north": "false", @@ -18228,7 +17014,7 @@ } }, { - "id": 13616, + "id": 12539, "properties": { "east": "true", "north": "false", @@ -18238,7 +17024,7 @@ } }, { - "id": 13617, + "id": 12540, "properties": { "east": "true", "north": "false", @@ -18248,7 +17034,7 @@ } }, { - "id": 13618, + "id": 12541, "properties": { "east": "false", "north": "true", @@ -18258,7 +17044,7 @@ } }, { - "id": 13619, + "id": 12542, "properties": { "east": "false", "north": "true", @@ -18268,7 +17054,7 @@ } }, { - "id": 13620, + "id": 12543, "properties": { "east": "false", "north": "true", @@ -18278,7 +17064,7 @@ } }, { - "id": 13621, + "id": 12544, "properties": { "east": "false", "north": "true", @@ -18288,7 +17074,7 @@ } }, { - "id": 13622, + "id": 12545, "properties": { "east": "false", "north": "true", @@ -18298,7 +17084,7 @@ } }, { - "id": 13623, + "id": 12546, "properties": { "east": "false", "north": "true", @@ -18308,7 +17094,7 @@ } }, { - "id": 13624, + "id": 12547, "properties": { "east": "false", "north": "true", @@ -18318,7 +17104,7 @@ } }, { - "id": 13625, + "id": 12548, "properties": { "east": "false", "north": "true", @@ -18328,7 +17114,7 @@ } }, { - "id": 13626, + "id": 12549, "properties": { "east": "false", "north": "false", @@ -18338,7 +17124,7 @@ } }, { - "id": 13627, + "id": 12550, "properties": { "east": "false", "north": "false", @@ -18348,7 +17134,7 @@ } }, { - "id": 13628, + "id": 12551, "properties": { "east": "false", "north": "false", @@ -18358,7 +17144,7 @@ } }, { - "id": 13629, + "id": 12552, "properties": { "east": "false", "north": "false", @@ -18368,7 +17154,7 @@ } }, { - "id": 13630, + "id": 12553, "properties": { "east": "false", "north": "false", @@ -18378,7 +17164,7 @@ } }, { - "id": 13631, + "id": 12554, "properties": { "east": "false", "north": "false", @@ -18388,7 +17174,7 @@ } }, { - "id": 13632, + "id": 12555, "properties": { "east": "false", "north": "false", @@ -18399,7 +17185,7 @@ }, { "default": true, - "id": 13633, + "id": 12556, "properties": { "east": "false", "north": "false", @@ -18438,7 +17224,7 @@ }, "states": [ { - "id": 13314, + "id": 12237, "properties": { "facing": "north", "in_wall": "true", @@ -18447,7 +17233,7 @@ } }, { - "id": 13315, + "id": 12238, "properties": { "facing": "north", "in_wall": "true", @@ -18456,7 +17242,7 @@ } }, { - "id": 13316, + "id": 12239, "properties": { "facing": "north", "in_wall": "true", @@ -18465,7 +17251,7 @@ } }, { - "id": 13317, + "id": 12240, "properties": { "facing": "north", "in_wall": "true", @@ -18474,7 +17260,7 @@ } }, { - "id": 13318, + "id": 12241, "properties": { "facing": "north", "in_wall": "false", @@ -18483,7 +17269,7 @@ } }, { - "id": 13319, + "id": 12242, "properties": { "facing": "north", "in_wall": "false", @@ -18492,7 +17278,7 @@ } }, { - "id": 13320, + "id": 12243, "properties": { "facing": "north", "in_wall": "false", @@ -18502,7 +17288,7 @@ }, { "default": true, - "id": 13321, + "id": 12244, "properties": { "facing": "north", "in_wall": "false", @@ -18511,7 +17297,7 @@ } }, { - "id": 13322, + "id": 12245, "properties": { "facing": "south", "in_wall": "true", @@ -18520,7 +17306,7 @@ } }, { - "id": 13323, + "id": 12246, "properties": { "facing": "south", "in_wall": "true", @@ -18529,7 +17315,7 @@ } }, { - "id": 13324, + "id": 12247, "properties": { "facing": "south", "in_wall": "true", @@ -18538,7 +17324,7 @@ } }, { - "id": 13325, + "id": 12248, "properties": { "facing": "south", "in_wall": "true", @@ -18547,7 +17333,7 @@ } }, { - "id": 13326, + "id": 12249, "properties": { "facing": "south", "in_wall": "false", @@ -18556,7 +17342,7 @@ } }, { - "id": 13327, + "id": 12250, "properties": { "facing": "south", "in_wall": "false", @@ -18565,7 +17351,7 @@ } }, { - "id": 13328, + "id": 12251, "properties": { "facing": "south", "in_wall": "false", @@ -18574,7 +17360,7 @@ } }, { - "id": 13329, + "id": 12252, "properties": { "facing": "south", "in_wall": "false", @@ -18583,7 +17369,7 @@ } }, { - "id": 13330, + "id": 12253, "properties": { "facing": "west", "in_wall": "true", @@ -18592,7 +17378,7 @@ } }, { - "id": 13331, + "id": 12254, "properties": { "facing": "west", "in_wall": "true", @@ -18601,7 +17387,7 @@ } }, { - "id": 13332, + "id": 12255, "properties": { "facing": "west", "in_wall": "true", @@ -18610,7 +17396,7 @@ } }, { - "id": 13333, + "id": 12256, "properties": { "facing": "west", "in_wall": "true", @@ -18619,7 +17405,7 @@ } }, { - "id": 13334, + "id": 12257, "properties": { "facing": "west", "in_wall": "false", @@ -18628,7 +17414,7 @@ } }, { - "id": 13335, + "id": 12258, "properties": { "facing": "west", "in_wall": "false", @@ -18637,7 +17423,7 @@ } }, { - "id": 13336, + "id": 12259, "properties": { "facing": "west", "in_wall": "false", @@ -18646,7 +17432,7 @@ } }, { - "id": 13337, + "id": 12260, "properties": { "facing": "west", "in_wall": "false", @@ -18655,7 +17441,7 @@ } }, { - "id": 13338, + "id": 12261, "properties": { "facing": "east", "in_wall": "true", @@ -18664,7 +17450,7 @@ } }, { - "id": 13339, + "id": 12262, "properties": { "facing": "east", "in_wall": "true", @@ -18673,7 +17459,7 @@ } }, { - "id": 13340, + "id": 12263, "properties": { "facing": "east", "in_wall": "true", @@ -18682,7 +17468,7 @@ } }, { - "id": 13341, + "id": 12264, "properties": { "facing": "east", "in_wall": "true", @@ -18691,7 +17477,7 @@ } }, { - "id": 13342, + "id": 12265, "properties": { "facing": "east", "in_wall": "false", @@ -18700,7 +17486,7 @@ } }, { - "id": 13343, + "id": 12266, "properties": { "facing": "east", "in_wall": "false", @@ -18709,7 +17495,7 @@ } }, { - "id": 13344, + "id": 12267, "properties": { "facing": "east", "in_wall": "false", @@ -18718,7 +17504,7 @@ } }, { - "id": 13345, + "id": 12268, "properties": { "facing": "east", "in_wall": "false", @@ -18764,7 +17550,7 @@ }, "states": [ { - "id": 5834, + "id": 5066, "properties": { "attached": "true", "rotation": "0", @@ -18772,7 +17558,7 @@ } }, { - "id": 5835, + "id": 5067, "properties": { "attached": "true", "rotation": "0", @@ -18780,7 +17566,7 @@ } }, { - "id": 5836, + "id": 5068, "properties": { "attached": "true", "rotation": "1", @@ -18788,7 +17574,7 @@ } }, { - "id": 5837, + "id": 5069, "properties": { "attached": "true", "rotation": "1", @@ -18796,7 +17582,7 @@ } }, { - "id": 5838, + "id": 5070, "properties": { "attached": "true", "rotation": "2", @@ -18804,7 +17590,7 @@ } }, { - "id": 5839, + "id": 5071, "properties": { "attached": "true", "rotation": "2", @@ -18812,7 +17598,7 @@ } }, { - "id": 5840, + "id": 5072, "properties": { "attached": "true", "rotation": "3", @@ -18820,7 +17606,7 @@ } }, { - "id": 5841, + "id": 5073, "properties": { "attached": "true", "rotation": "3", @@ -18828,7 +17614,7 @@ } }, { - "id": 5842, + "id": 5074, "properties": { "attached": "true", "rotation": "4", @@ -18836,7 +17622,7 @@ } }, { - "id": 5843, + "id": 5075, "properties": { "attached": "true", "rotation": "4", @@ -18844,7 +17630,7 @@ } }, { - "id": 5844, + "id": 5076, "properties": { "attached": "true", "rotation": "5", @@ -18852,7 +17638,7 @@ } }, { - "id": 5845, + "id": 5077, "properties": { "attached": "true", "rotation": "5", @@ -18860,7 +17646,7 @@ } }, { - "id": 5846, + "id": 5078, "properties": { "attached": "true", "rotation": "6", @@ -18868,7 +17654,7 @@ } }, { - "id": 5847, + "id": 5079, "properties": { "attached": "true", "rotation": "6", @@ -18876,7 +17662,7 @@ } }, { - "id": 5848, + "id": 5080, "properties": { "attached": "true", "rotation": "7", @@ -18884,7 +17670,7 @@ } }, { - "id": 5849, + "id": 5081, "properties": { "attached": "true", "rotation": "7", @@ -18892,7 +17678,7 @@ } }, { - "id": 5850, + "id": 5082, "properties": { "attached": "true", "rotation": "8", @@ -18900,7 +17686,7 @@ } }, { - "id": 5851, + "id": 5083, "properties": { "attached": "true", "rotation": "8", @@ -18908,7 +17694,7 @@ } }, { - "id": 5852, + "id": 5084, "properties": { "attached": "true", "rotation": "9", @@ -18916,7 +17702,7 @@ } }, { - "id": 5853, + "id": 5085, "properties": { "attached": "true", "rotation": "9", @@ -18924,7 +17710,7 @@ } }, { - "id": 5854, + "id": 5086, "properties": { "attached": "true", "rotation": "10", @@ -18932,7 +17718,7 @@ } }, { - "id": 5855, + "id": 5087, "properties": { "attached": "true", "rotation": "10", @@ -18940,7 +17726,7 @@ } }, { - "id": 5856, + "id": 5088, "properties": { "attached": "true", "rotation": "11", @@ -18948,7 +17734,7 @@ } }, { - "id": 5857, + "id": 5089, "properties": { "attached": "true", "rotation": "11", @@ -18956,7 +17742,7 @@ } }, { - "id": 5858, + "id": 5090, "properties": { "attached": "true", "rotation": "12", @@ -18964,7 +17750,7 @@ } }, { - "id": 5859, + "id": 5091, "properties": { "attached": "true", "rotation": "12", @@ -18972,7 +17758,7 @@ } }, { - "id": 5860, + "id": 5092, "properties": { "attached": "true", "rotation": "13", @@ -18980,7 +17766,7 @@ } }, { - "id": 5861, + "id": 5093, "properties": { "attached": "true", "rotation": "13", @@ -18988,7 +17774,7 @@ } }, { - "id": 5862, + "id": 5094, "properties": { "attached": "true", "rotation": "14", @@ -18996,7 +17782,7 @@ } }, { - "id": 5863, + "id": 5095, "properties": { "attached": "true", "rotation": "14", @@ -19004,7 +17790,7 @@ } }, { - "id": 5864, + "id": 5096, "properties": { "attached": "true", "rotation": "15", @@ -19012,7 +17798,7 @@ } }, { - "id": 5865, + "id": 5097, "properties": { "attached": "true", "rotation": "15", @@ -19020,7 +17806,7 @@ } }, { - "id": 5866, + "id": 5098, "properties": { "attached": "false", "rotation": "0", @@ -19029,7 +17815,7 @@ }, { "default": true, - "id": 5867, + "id": 5099, "properties": { "attached": "false", "rotation": "0", @@ -19037,7 +17823,7 @@ } }, { - "id": 5868, + "id": 5100, "properties": { "attached": "false", "rotation": "1", @@ -19045,7 +17831,7 @@ } }, { - "id": 5869, + "id": 5101, "properties": { "attached": "false", "rotation": "1", @@ -19053,7 +17839,7 @@ } }, { - "id": 5870, + "id": 5102, "properties": { "attached": "false", "rotation": "2", @@ -19061,7 +17847,7 @@ } }, { - "id": 5871, + "id": 5103, "properties": { "attached": "false", "rotation": "2", @@ -19069,7 +17855,7 @@ } }, { - "id": 5872, + "id": 5104, "properties": { "attached": "false", "rotation": "3", @@ -19077,7 +17863,7 @@ } }, { - "id": 5873, + "id": 5105, "properties": { "attached": "false", "rotation": "3", @@ -19085,7 +17871,7 @@ } }, { - "id": 5874, + "id": 5106, "properties": { "attached": "false", "rotation": "4", @@ -19093,7 +17879,7 @@ } }, { - "id": 5875, + "id": 5107, "properties": { "attached": "false", "rotation": "4", @@ -19101,7 +17887,7 @@ } }, { - "id": 5876, + "id": 5108, "properties": { "attached": "false", "rotation": "5", @@ -19109,7 +17895,7 @@ } }, { - "id": 5877, + "id": 5109, "properties": { "attached": "false", "rotation": "5", @@ -19117,7 +17903,7 @@ } }, { - "id": 5878, + "id": 5110, "properties": { "attached": "false", "rotation": "6", @@ -19125,7 +17911,7 @@ } }, { - "id": 5879, + "id": 5111, "properties": { "attached": "false", "rotation": "6", @@ -19133,7 +17919,7 @@ } }, { - "id": 5880, + "id": 5112, "properties": { "attached": "false", "rotation": "7", @@ -19141,7 +17927,7 @@ } }, { - "id": 5881, + "id": 5113, "properties": { "attached": "false", "rotation": "7", @@ -19149,7 +17935,7 @@ } }, { - "id": 5882, + "id": 5114, "properties": { "attached": "false", "rotation": "8", @@ -19157,7 +17943,7 @@ } }, { - "id": 5883, + "id": 5115, "properties": { "attached": "false", "rotation": "8", @@ -19165,7 +17951,7 @@ } }, { - "id": 5884, + "id": 5116, "properties": { "attached": "false", "rotation": "9", @@ -19173,7 +17959,7 @@ } }, { - "id": 5885, + "id": 5117, "properties": { "attached": "false", "rotation": "9", @@ -19181,7 +17967,7 @@ } }, { - "id": 5886, + "id": 5118, "properties": { "attached": "false", "rotation": "10", @@ -19189,7 +17975,7 @@ } }, { - "id": 5887, + "id": 5119, "properties": { "attached": "false", "rotation": "10", @@ -19197,7 +17983,7 @@ } }, { - "id": 5888, + "id": 5120, "properties": { "attached": "false", "rotation": "11", @@ -19205,7 +17991,7 @@ } }, { - "id": 5889, + "id": 5121, "properties": { "attached": "false", "rotation": "11", @@ -19213,7 +17999,7 @@ } }, { - "id": 5890, + "id": 5122, "properties": { "attached": "false", "rotation": "12", @@ -19221,7 +18007,7 @@ } }, { - "id": 5891, + "id": 5123, "properties": { "attached": "false", "rotation": "12", @@ -19229,7 +18015,7 @@ } }, { - "id": 5892, + "id": 5124, "properties": { "attached": "false", "rotation": "13", @@ -19237,7 +18023,7 @@ } }, { - "id": 5893, + "id": 5125, "properties": { "attached": "false", "rotation": "13", @@ -19245,7 +18031,7 @@ } }, { - "id": 5894, + "id": 5126, "properties": { "attached": "false", "rotation": "14", @@ -19253,7 +18039,7 @@ } }, { - "id": 5895, + "id": 5127, "properties": { "attached": "false", "rotation": "14", @@ -19261,7 +18047,7 @@ } }, { - "id": 5896, + "id": 5128, "properties": { "attached": "false", "rotation": "15", @@ -19269,7 +18055,7 @@ } }, { - "id": 5897, + "id": 5129, "properties": { "attached": "false", "rotation": "15", @@ -19591,14 +18377,14 @@ }, "states": [ { - "id": 6664, + "id": 5896, "properties": { "powered": "true" } }, { "default": true, - "id": 6665, + "id": 5897, "properties": { "powered": "false" } @@ -19633,613 +18419,6 @@ } ] }, - "minecraft:birch_shelf": { - "definition": { - "type": "minecraft:shelf", - "properties": {} - }, - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ], - "side_chain": [ - "unconnected", - "right", - "center", - "left" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 2527, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2528, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2529, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2530, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2531, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2532, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2533, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2534, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2535, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 2536, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2537, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2538, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2539, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2540, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2541, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2542, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2543, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2544, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2545, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2546, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2547, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2548, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2549, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2550, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2551, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2552, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2553, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2554, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2555, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2556, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2557, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2558, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2559, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2560, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2561, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2562, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2563, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2564, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2565, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2566, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2567, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2568, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2569, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2570, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2571, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2572, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2573, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2574, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2575, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2576, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2577, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2578, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2579, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2580, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2581, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2582, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2583, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2584, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2585, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2586, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2587, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2588, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2589, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2590, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "left", - "waterlogged": "false" - } - } - ] - }, "minecraft:birch_sign": { "definition": { "type": "minecraft:standing_sign", @@ -20272,7 +18451,7 @@ }, "states": [ { - "id": 5198, + "id": 4430, "properties": { "rotation": "0", "waterlogged": "true" @@ -20280,217 +18459,217 @@ }, { "default": true, - "id": 5199, + "id": 4431, "properties": { "rotation": "0", "waterlogged": "false" } }, { - "id": 5200, + "id": 4432, "properties": { "rotation": "1", "waterlogged": "true" } }, { - "id": 5201, + "id": 4433, "properties": { "rotation": "1", "waterlogged": "false" } }, { - "id": 5202, + "id": 4434, "properties": { "rotation": "2", "waterlogged": "true" } }, { - "id": 5203, + "id": 4435, "properties": { "rotation": "2", "waterlogged": "false" } }, { - "id": 5204, + "id": 4436, "properties": { "rotation": "3", "waterlogged": "true" } }, { - "id": 5205, + "id": 4437, "properties": { "rotation": "3", "waterlogged": "false" } }, { - "id": 5206, + "id": 4438, "properties": { "rotation": "4", "waterlogged": "true" } }, { - "id": 5207, + "id": 4439, "properties": { "rotation": "4", "waterlogged": "false" } }, { - "id": 5208, + "id": 4440, "properties": { "rotation": "5", "waterlogged": "true" } }, { - "id": 5209, + "id": 4441, "properties": { "rotation": "5", "waterlogged": "false" } }, { - "id": 5210, + "id": 4442, "properties": { "rotation": "6", "waterlogged": "true" } }, { - "id": 5211, + "id": 4443, "properties": { "rotation": "6", "waterlogged": "false" } }, { - "id": 5212, + "id": 4444, "properties": { "rotation": "7", "waterlogged": "true" } }, { - "id": 5213, + "id": 4445, "properties": { "rotation": "7", "waterlogged": "false" } }, { - "id": 5214, + "id": 4446, "properties": { "rotation": "8", "waterlogged": "true" } }, { - "id": 5215, + "id": 4447, "properties": { "rotation": "8", "waterlogged": "false" } }, { - "id": 5216, + "id": 4448, "properties": { "rotation": "9", "waterlogged": "true" } }, { - "id": 5217, + "id": 4449, "properties": { "rotation": "9", "waterlogged": "false" } }, { - "id": 5218, + "id": 4450, "properties": { "rotation": "10", "waterlogged": "true" } }, { - "id": 5219, + "id": 4451, "properties": { "rotation": "10", "waterlogged": "false" } }, { - "id": 5220, + "id": 4452, "properties": { "rotation": "11", "waterlogged": "true" } }, { - "id": 5221, + "id": 4453, "properties": { "rotation": "11", "waterlogged": "false" } }, { - "id": 5222, + "id": 4454, "properties": { "rotation": "12", "waterlogged": "true" } }, { - "id": 5223, + "id": 4455, "properties": { "rotation": "12", "waterlogged": "false" } }, { - "id": 5224, + "id": 4456, "properties": { "rotation": "13", "waterlogged": "true" } }, { - "id": 5225, + "id": 4457, "properties": { "rotation": "13", "waterlogged": "false" } }, { - "id": 5226, + "id": 4458, "properties": { "rotation": "14", "waterlogged": "true" } }, { - "id": 5227, + "id": 4459, "properties": { "rotation": "14", "waterlogged": "false" } }, { - "id": 5228, + "id": 4460, "properties": { "rotation": "15", "waterlogged": "true" } }, { - "id": 5229, + "id": 4461, "properties": { "rotation": "15", "waterlogged": "false" @@ -20516,21 +18695,21 @@ }, "states": [ { - "id": 13140, + "id": 12063, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 13141, + "id": 12064, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 13142, + "id": 12065, "properties": { "type": "bottom", "waterlogged": "true" @@ -20538,21 +18717,21 @@ }, { "default": true, - "id": 13143, + "id": 12066, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 13144, + "id": 12067, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 13145, + "id": 12068, "properties": { "type": "double", "waterlogged": "false" @@ -20593,7 +18772,7 @@ }, "states": [ { - "id": 9607, + "id": 8530, "properties": { "facing": "north", "half": "top", @@ -20602,7 +18781,7 @@ } }, { - "id": 9608, + "id": 8531, "properties": { "facing": "north", "half": "top", @@ -20611,7 +18790,7 @@ } }, { - "id": 9609, + "id": 8532, "properties": { "facing": "north", "half": "top", @@ -20620,7 +18799,7 @@ } }, { - "id": 9610, + "id": 8533, "properties": { "facing": "north", "half": "top", @@ -20629,7 +18808,7 @@ } }, { - "id": 9611, + "id": 8534, "properties": { "facing": "north", "half": "top", @@ -20638,7 +18817,7 @@ } }, { - "id": 9612, + "id": 8535, "properties": { "facing": "north", "half": "top", @@ -20647,7 +18826,7 @@ } }, { - "id": 9613, + "id": 8536, "properties": { "facing": "north", "half": "top", @@ -20656,7 +18835,7 @@ } }, { - "id": 9614, + "id": 8537, "properties": { "facing": "north", "half": "top", @@ -20665,7 +18844,7 @@ } }, { - "id": 9615, + "id": 8538, "properties": { "facing": "north", "half": "top", @@ -20674,7 +18853,7 @@ } }, { - "id": 9616, + "id": 8539, "properties": { "facing": "north", "half": "top", @@ -20683,7 +18862,7 @@ } }, { - "id": 9617, + "id": 8540, "properties": { "facing": "north", "half": "bottom", @@ -20693,7 +18872,7 @@ }, { "default": true, - "id": 9618, + "id": 8541, "properties": { "facing": "north", "half": "bottom", @@ -20702,7 +18881,7 @@ } }, { - "id": 9619, + "id": 8542, "properties": { "facing": "north", "half": "bottom", @@ -20711,7 +18890,7 @@ } }, { - "id": 9620, + "id": 8543, "properties": { "facing": "north", "half": "bottom", @@ -20720,7 +18899,7 @@ } }, { - "id": 9621, + "id": 8544, "properties": { "facing": "north", "half": "bottom", @@ -20729,7 +18908,7 @@ } }, { - "id": 9622, + "id": 8545, "properties": { "facing": "north", "half": "bottom", @@ -20738,7 +18917,7 @@ } }, { - "id": 9623, + "id": 8546, "properties": { "facing": "north", "half": "bottom", @@ -20747,7 +18926,7 @@ } }, { - "id": 9624, + "id": 8547, "properties": { "facing": "north", "half": "bottom", @@ -20756,7 +18935,7 @@ } }, { - "id": 9625, + "id": 8548, "properties": { "facing": "north", "half": "bottom", @@ -20765,7 +18944,7 @@ } }, { - "id": 9626, + "id": 8549, "properties": { "facing": "north", "half": "bottom", @@ -20774,7 +18953,7 @@ } }, { - "id": 9627, + "id": 8550, "properties": { "facing": "south", "half": "top", @@ -20783,7 +18962,7 @@ } }, { - "id": 9628, + "id": 8551, "properties": { "facing": "south", "half": "top", @@ -20792,7 +18971,7 @@ } }, { - "id": 9629, + "id": 8552, "properties": { "facing": "south", "half": "top", @@ -20801,7 +18980,7 @@ } }, { - "id": 9630, + "id": 8553, "properties": { "facing": "south", "half": "top", @@ -20810,7 +18989,7 @@ } }, { - "id": 9631, + "id": 8554, "properties": { "facing": "south", "half": "top", @@ -20819,7 +18998,7 @@ } }, { - "id": 9632, + "id": 8555, "properties": { "facing": "south", "half": "top", @@ -20828,7 +19007,7 @@ } }, { - "id": 9633, + "id": 8556, "properties": { "facing": "south", "half": "top", @@ -20837,7 +19016,7 @@ } }, { - "id": 9634, + "id": 8557, "properties": { "facing": "south", "half": "top", @@ -20846,7 +19025,7 @@ } }, { - "id": 9635, + "id": 8558, "properties": { "facing": "south", "half": "top", @@ -20855,7 +19034,7 @@ } }, { - "id": 9636, + "id": 8559, "properties": { "facing": "south", "half": "top", @@ -20864,7 +19043,7 @@ } }, { - "id": 9637, + "id": 8560, "properties": { "facing": "south", "half": "bottom", @@ -20873,7 +19052,7 @@ } }, { - "id": 9638, + "id": 8561, "properties": { "facing": "south", "half": "bottom", @@ -20882,7 +19061,7 @@ } }, { - "id": 9639, + "id": 8562, "properties": { "facing": "south", "half": "bottom", @@ -20891,7 +19070,7 @@ } }, { - "id": 9640, + "id": 8563, "properties": { "facing": "south", "half": "bottom", @@ -20900,7 +19079,7 @@ } }, { - "id": 9641, + "id": 8564, "properties": { "facing": "south", "half": "bottom", @@ -20909,7 +19088,7 @@ } }, { - "id": 9642, + "id": 8565, "properties": { "facing": "south", "half": "bottom", @@ -20918,7 +19097,7 @@ } }, { - "id": 9643, + "id": 8566, "properties": { "facing": "south", "half": "bottom", @@ -20927,7 +19106,7 @@ } }, { - "id": 9644, + "id": 8567, "properties": { "facing": "south", "half": "bottom", @@ -20936,7 +19115,7 @@ } }, { - "id": 9645, + "id": 8568, "properties": { "facing": "south", "half": "bottom", @@ -20945,7 +19124,7 @@ } }, { - "id": 9646, + "id": 8569, "properties": { "facing": "south", "half": "bottom", @@ -20954,7 +19133,7 @@ } }, { - "id": 9647, + "id": 8570, "properties": { "facing": "west", "half": "top", @@ -20963,7 +19142,7 @@ } }, { - "id": 9648, + "id": 8571, "properties": { "facing": "west", "half": "top", @@ -20972,7 +19151,7 @@ } }, { - "id": 9649, + "id": 8572, "properties": { "facing": "west", "half": "top", @@ -20981,7 +19160,7 @@ } }, { - "id": 9650, + "id": 8573, "properties": { "facing": "west", "half": "top", @@ -20990,7 +19169,7 @@ } }, { - "id": 9651, + "id": 8574, "properties": { "facing": "west", "half": "top", @@ -20999,7 +19178,7 @@ } }, { - "id": 9652, + "id": 8575, "properties": { "facing": "west", "half": "top", @@ -21008,7 +19187,7 @@ } }, { - "id": 9653, + "id": 8576, "properties": { "facing": "west", "half": "top", @@ -21017,7 +19196,7 @@ } }, { - "id": 9654, + "id": 8577, "properties": { "facing": "west", "half": "top", @@ -21026,7 +19205,7 @@ } }, { - "id": 9655, + "id": 8578, "properties": { "facing": "west", "half": "top", @@ -21035,7 +19214,7 @@ } }, { - "id": 9656, + "id": 8579, "properties": { "facing": "west", "half": "top", @@ -21044,7 +19223,7 @@ } }, { - "id": 9657, + "id": 8580, "properties": { "facing": "west", "half": "bottom", @@ -21053,7 +19232,7 @@ } }, { - "id": 9658, + "id": 8581, "properties": { "facing": "west", "half": "bottom", @@ -21062,7 +19241,7 @@ } }, { - "id": 9659, + "id": 8582, "properties": { "facing": "west", "half": "bottom", @@ -21071,7 +19250,7 @@ } }, { - "id": 9660, + "id": 8583, "properties": { "facing": "west", "half": "bottom", @@ -21080,7 +19259,7 @@ } }, { - "id": 9661, + "id": 8584, "properties": { "facing": "west", "half": "bottom", @@ -21089,7 +19268,7 @@ } }, { - "id": 9662, + "id": 8585, "properties": { "facing": "west", "half": "bottom", @@ -21098,7 +19277,7 @@ } }, { - "id": 9663, + "id": 8586, "properties": { "facing": "west", "half": "bottom", @@ -21107,7 +19286,7 @@ } }, { - "id": 9664, + "id": 8587, "properties": { "facing": "west", "half": "bottom", @@ -21116,7 +19295,7 @@ } }, { - "id": 9665, + "id": 8588, "properties": { "facing": "west", "half": "bottom", @@ -21125,7 +19304,7 @@ } }, { - "id": 9666, + "id": 8589, "properties": { "facing": "west", "half": "bottom", @@ -21134,7 +19313,7 @@ } }, { - "id": 9667, + "id": 8590, "properties": { "facing": "east", "half": "top", @@ -21143,7 +19322,7 @@ } }, { - "id": 9668, + "id": 8591, "properties": { "facing": "east", "half": "top", @@ -21152,7 +19331,7 @@ } }, { - "id": 9669, + "id": 8592, "properties": { "facing": "east", "half": "top", @@ -21161,7 +19340,7 @@ } }, { - "id": 9670, + "id": 8593, "properties": { "facing": "east", "half": "top", @@ -21170,7 +19349,7 @@ } }, { - "id": 9671, + "id": 8594, "properties": { "facing": "east", "half": "top", @@ -21179,7 +19358,7 @@ } }, { - "id": 9672, + "id": 8595, "properties": { "facing": "east", "half": "top", @@ -21188,7 +19367,7 @@ } }, { - "id": 9673, + "id": 8596, "properties": { "facing": "east", "half": "top", @@ -21197,7 +19376,7 @@ } }, { - "id": 9674, + "id": 8597, "properties": { "facing": "east", "half": "top", @@ -21206,7 +19385,7 @@ } }, { - "id": 9675, + "id": 8598, "properties": { "facing": "east", "half": "top", @@ -21215,7 +19394,7 @@ } }, { - "id": 9676, + "id": 8599, "properties": { "facing": "east", "half": "top", @@ -21224,7 +19403,7 @@ } }, { - "id": 9677, + "id": 8600, "properties": { "facing": "east", "half": "bottom", @@ -21233,7 +19412,7 @@ } }, { - "id": 9678, + "id": 8601, "properties": { "facing": "east", "half": "bottom", @@ -21242,7 +19421,7 @@ } }, { - "id": 9679, + "id": 8602, "properties": { "facing": "east", "half": "bottom", @@ -21251,7 +19430,7 @@ } }, { - "id": 9680, + "id": 8603, "properties": { "facing": "east", "half": "bottom", @@ -21260,7 +19439,7 @@ } }, { - "id": 9681, + "id": 8604, "properties": { "facing": "east", "half": "bottom", @@ -21269,7 +19448,7 @@ } }, { - "id": 9682, + "id": 8605, "properties": { "facing": "east", "half": "bottom", @@ -21278,7 +19457,7 @@ } }, { - "id": 9683, + "id": 8606, "properties": { "facing": "east", "half": "bottom", @@ -21287,7 +19466,7 @@ } }, { - "id": 9684, + "id": 8607, "properties": { "facing": "east", "half": "bottom", @@ -21296,7 +19475,7 @@ } }, { - "id": 9685, + "id": 8608, "properties": { "facing": "east", "half": "bottom", @@ -21305,7 +19484,7 @@ } }, { - "id": 9686, + "id": 8609, "properties": { "facing": "east", "half": "bottom", @@ -21347,7 +19526,7 @@ }, "states": [ { - "id": 7041, + "id": 6268, "properties": { "facing": "north", "half": "top", @@ -21357,7 +19536,7 @@ } }, { - "id": 7042, + "id": 6269, "properties": { "facing": "north", "half": "top", @@ -21367,7 +19546,7 @@ } }, { - "id": 7043, + "id": 6270, "properties": { "facing": "north", "half": "top", @@ -21377,7 +19556,7 @@ } }, { - "id": 7044, + "id": 6271, "properties": { "facing": "north", "half": "top", @@ -21387,7 +19566,7 @@ } }, { - "id": 7045, + "id": 6272, "properties": { "facing": "north", "half": "top", @@ -21397,7 +19576,7 @@ } }, { - "id": 7046, + "id": 6273, "properties": { "facing": "north", "half": "top", @@ -21407,7 +19586,7 @@ } }, { - "id": 7047, + "id": 6274, "properties": { "facing": "north", "half": "top", @@ -21417,7 +19596,7 @@ } }, { - "id": 7048, + "id": 6275, "properties": { "facing": "north", "half": "top", @@ -21427,7 +19606,7 @@ } }, { - "id": 7049, + "id": 6276, "properties": { "facing": "north", "half": "bottom", @@ -21437,7 +19616,7 @@ } }, { - "id": 7050, + "id": 6277, "properties": { "facing": "north", "half": "bottom", @@ -21447,7 +19626,7 @@ } }, { - "id": 7051, + "id": 6278, "properties": { "facing": "north", "half": "bottom", @@ -21457,7 +19636,7 @@ } }, { - "id": 7052, + "id": 6279, "properties": { "facing": "north", "half": "bottom", @@ -21467,7 +19646,7 @@ } }, { - "id": 7053, + "id": 6280, "properties": { "facing": "north", "half": "bottom", @@ -21477,7 +19656,7 @@ } }, { - "id": 7054, + "id": 6281, "properties": { "facing": "north", "half": "bottom", @@ -21487,7 +19666,7 @@ } }, { - "id": 7055, + "id": 6282, "properties": { "facing": "north", "half": "bottom", @@ -21498,7 +19677,7 @@ }, { "default": true, - "id": 7056, + "id": 6283, "properties": { "facing": "north", "half": "bottom", @@ -21508,7 +19687,7 @@ } }, { - "id": 7057, + "id": 6284, "properties": { "facing": "south", "half": "top", @@ -21518,7 +19697,7 @@ } }, { - "id": 7058, + "id": 6285, "properties": { "facing": "south", "half": "top", @@ -21528,7 +19707,7 @@ } }, { - "id": 7059, + "id": 6286, "properties": { "facing": "south", "half": "top", @@ -21538,7 +19717,7 @@ } }, { - "id": 7060, + "id": 6287, "properties": { "facing": "south", "half": "top", @@ -21548,7 +19727,7 @@ } }, { - "id": 7061, + "id": 6288, "properties": { "facing": "south", "half": "top", @@ -21558,7 +19737,7 @@ } }, { - "id": 7062, + "id": 6289, "properties": { "facing": "south", "half": "top", @@ -21568,7 +19747,7 @@ } }, { - "id": 7063, + "id": 6290, "properties": { "facing": "south", "half": "top", @@ -21578,7 +19757,7 @@ } }, { - "id": 7064, + "id": 6291, "properties": { "facing": "south", "half": "top", @@ -21588,7 +19767,7 @@ } }, { - "id": 7065, + "id": 6292, "properties": { "facing": "south", "half": "bottom", @@ -21598,7 +19777,7 @@ } }, { - "id": 7066, + "id": 6293, "properties": { "facing": "south", "half": "bottom", @@ -21608,7 +19787,7 @@ } }, { - "id": 7067, + "id": 6294, "properties": { "facing": "south", "half": "bottom", @@ -21618,7 +19797,7 @@ } }, { - "id": 7068, + "id": 6295, "properties": { "facing": "south", "half": "bottom", @@ -21628,7 +19807,7 @@ } }, { - "id": 7069, + "id": 6296, "properties": { "facing": "south", "half": "bottom", @@ -21638,7 +19817,7 @@ } }, { - "id": 7070, + "id": 6297, "properties": { "facing": "south", "half": "bottom", @@ -21648,7 +19827,7 @@ } }, { - "id": 7071, + "id": 6298, "properties": { "facing": "south", "half": "bottom", @@ -21658,7 +19837,7 @@ } }, { - "id": 7072, + "id": 6299, "properties": { "facing": "south", "half": "bottom", @@ -21668,7 +19847,7 @@ } }, { - "id": 7073, + "id": 6300, "properties": { "facing": "west", "half": "top", @@ -21678,7 +19857,7 @@ } }, { - "id": 7074, + "id": 6301, "properties": { "facing": "west", "half": "top", @@ -21688,7 +19867,7 @@ } }, { - "id": 7075, + "id": 6302, "properties": { "facing": "west", "half": "top", @@ -21698,7 +19877,7 @@ } }, { - "id": 7076, + "id": 6303, "properties": { "facing": "west", "half": "top", @@ -21708,7 +19887,7 @@ } }, { - "id": 7077, + "id": 6304, "properties": { "facing": "west", "half": "top", @@ -21718,7 +19897,7 @@ } }, { - "id": 7078, + "id": 6305, "properties": { "facing": "west", "half": "top", @@ -21728,7 +19907,7 @@ } }, { - "id": 7079, + "id": 6306, "properties": { "facing": "west", "half": "top", @@ -21738,7 +19917,7 @@ } }, { - "id": 7080, + "id": 6307, "properties": { "facing": "west", "half": "top", @@ -21748,7 +19927,7 @@ } }, { - "id": 7081, + "id": 6308, "properties": { "facing": "west", "half": "bottom", @@ -21758,7 +19937,7 @@ } }, { - "id": 7082, + "id": 6309, "properties": { "facing": "west", "half": "bottom", @@ -21768,7 +19947,7 @@ } }, { - "id": 7083, + "id": 6310, "properties": { "facing": "west", "half": "bottom", @@ -21778,7 +19957,7 @@ } }, { - "id": 7084, + "id": 6311, "properties": { "facing": "west", "half": "bottom", @@ -21788,7 +19967,7 @@ } }, { - "id": 7085, + "id": 6312, "properties": { "facing": "west", "half": "bottom", @@ -21798,7 +19977,7 @@ } }, { - "id": 7086, + "id": 6313, "properties": { "facing": "west", "half": "bottom", @@ -21808,7 +19987,7 @@ } }, { - "id": 7087, + "id": 6314, "properties": { "facing": "west", "half": "bottom", @@ -21818,7 +19997,7 @@ } }, { - "id": 7088, + "id": 6315, "properties": { "facing": "west", "half": "bottom", @@ -21828,7 +20007,7 @@ } }, { - "id": 7089, + "id": 6316, "properties": { "facing": "east", "half": "top", @@ -21838,7 +20017,7 @@ } }, { - "id": 7090, + "id": 6317, "properties": { "facing": "east", "half": "top", @@ -21848,7 +20027,7 @@ } }, { - "id": 7091, + "id": 6318, "properties": { "facing": "east", "half": "top", @@ -21858,7 +20037,7 @@ } }, { - "id": 7092, + "id": 6319, "properties": { "facing": "east", "half": "top", @@ -21868,7 +20047,7 @@ } }, { - "id": 7093, + "id": 6320, "properties": { "facing": "east", "half": "top", @@ -21878,7 +20057,7 @@ } }, { - "id": 7094, + "id": 6321, "properties": { "facing": "east", "half": "top", @@ -21888,7 +20067,7 @@ } }, { - "id": 7095, + "id": 6322, "properties": { "facing": "east", "half": "top", @@ -21898,7 +20077,7 @@ } }, { - "id": 7096, + "id": 6323, "properties": { "facing": "east", "half": "top", @@ -21908,7 +20087,7 @@ } }, { - "id": 7097, + "id": 6324, "properties": { "facing": "east", "half": "bottom", @@ -21918,7 +20097,7 @@ } }, { - "id": 7098, + "id": 6325, "properties": { "facing": "east", "half": "bottom", @@ -21928,7 +20107,7 @@ } }, { - "id": 7099, + "id": 6326, "properties": { "facing": "east", "half": "bottom", @@ -21938,7 +20117,7 @@ } }, { - "id": 7100, + "id": 6327, "properties": { "facing": "east", "half": "bottom", @@ -21948,7 +20127,7 @@ } }, { - "id": 7101, + "id": 6328, "properties": { "facing": "east", "half": "bottom", @@ -21958,7 +20137,7 @@ } }, { - "id": 7102, + "id": 6329, "properties": { "facing": "east", "half": "bottom", @@ -21968,7 +20147,7 @@ } }, { - "id": 7103, + "id": 6330, "properties": { "facing": "east", "half": "bottom", @@ -21978,7 +20157,7 @@ } }, { - "id": 7104, + "id": 6331, "properties": { "facing": "east", "half": "bottom", @@ -22009,7 +20188,7 @@ }, "states": [ { - "id": 6490, + "id": 5722, "properties": { "facing": "north", "waterlogged": "true" @@ -22017,49 +20196,49 @@ }, { "default": true, - "id": 6491, + "id": 5723, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 6492, + "id": 5724, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 6493, + "id": 5725, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 6494, + "id": 5726, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 6495, + "id": 5727, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 6496, + "id": 5728, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 6497, + "id": 5729, "properties": { "facing": "east", "waterlogged": "false" @@ -22087,7 +20266,7 @@ }, "states": [ { - "id": 5642, + "id": 4874, "properties": { "facing": "north", "waterlogged": "true" @@ -22095,49 +20274,49 @@ }, { "default": true, - "id": 5643, + "id": 4875, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 5644, + "id": 4876, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 5645, + "id": 4877, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 5646, + "id": 4878, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 5647, + "id": 4879, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 5648, + "id": 4880, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 5649, + "id": 4881, "properties": { "facing": "east", "waterlogged": "false" @@ -22208,97 +20387,97 @@ "states": [ { "default": true, - "id": 12965, + "id": 11888, "properties": { "rotation": "0" } }, { - "id": 12966, + "id": 11889, "properties": { "rotation": "1" } }, { - "id": 12967, + "id": 11890, "properties": { "rotation": "2" } }, { - "id": 12968, + "id": 11891, "properties": { "rotation": "3" } }, { - "id": 12969, + "id": 11892, "properties": { "rotation": "4" } }, { - "id": 12970, + "id": 11893, "properties": { "rotation": "5" } }, { - "id": 12971, + "id": 11894, "properties": { "rotation": "6" } }, { - "id": 12972, + "id": 11895, "properties": { "rotation": "7" } }, { - "id": 12973, + "id": 11896, "properties": { "rotation": "8" } }, { - "id": 12974, + "id": 11897, "properties": { "rotation": "9" } }, { - "id": 12975, + "id": 11898, "properties": { "rotation": "10" } }, { - "id": 12976, + "id": 11899, "properties": { "rotation": "11" } }, { - "id": 12977, + "id": 11900, "properties": { "rotation": "12" } }, { - "id": 12978, + "id": 11901, "properties": { "rotation": "13" } }, { - "id": 12979, + "id": 11902, "properties": { "rotation": "14" } }, { - "id": 12980, + "id": 11903, "properties": { "rotation": "15" } @@ -22482,7 +20661,7 @@ }, "states": [ { - "id": 23150, + "id": 22009, "properties": { "candles": "1", "lit": "true", @@ -22490,7 +20669,7 @@ } }, { - "id": 23151, + "id": 22010, "properties": { "candles": "1", "lit": "true", @@ -22498,7 +20677,7 @@ } }, { - "id": 23152, + "id": 22011, "properties": { "candles": "1", "lit": "false", @@ -22507,7 +20686,7 @@ }, { "default": true, - "id": 23153, + "id": 22012, "properties": { "candles": "1", "lit": "false", @@ -22515,7 +20694,7 @@ } }, { - "id": 23154, + "id": 22013, "properties": { "candles": "2", "lit": "true", @@ -22523,7 +20702,7 @@ } }, { - "id": 23155, + "id": 22014, "properties": { "candles": "2", "lit": "true", @@ -22531,7 +20710,7 @@ } }, { - "id": 23156, + "id": 22015, "properties": { "candles": "2", "lit": "false", @@ -22539,7 +20718,7 @@ } }, { - "id": 23157, + "id": 22016, "properties": { "candles": "2", "lit": "false", @@ -22547,7 +20726,7 @@ } }, { - "id": 23158, + "id": 22017, "properties": { "candles": "3", "lit": "true", @@ -22555,7 +20734,7 @@ } }, { - "id": 23159, + "id": 22018, "properties": { "candles": "3", "lit": "true", @@ -22563,7 +20742,7 @@ } }, { - "id": 23160, + "id": 22019, "properties": { "candles": "3", "lit": "false", @@ -22571,7 +20750,7 @@ } }, { - "id": 23161, + "id": 22020, "properties": { "candles": "3", "lit": "false", @@ -22579,7 +20758,7 @@ } }, { - "id": 23162, + "id": 22021, "properties": { "candles": "4", "lit": "true", @@ -22587,7 +20766,7 @@ } }, { - "id": 23163, + "id": 22022, "properties": { "candles": "4", "lit": "true", @@ -22595,7 +20774,7 @@ } }, { - "id": 23164, + "id": 22023, "properties": { "candles": "4", "lit": "false", @@ -22603,7 +20782,7 @@ } }, { - "id": 23165, + "id": 22024, "properties": { "candles": "4", "lit": "false", @@ -22626,14 +20805,14 @@ }, "states": [ { - "id": 23198, + "id": 22057, "properties": { "lit": "true" } }, { "default": true, - "id": 23199, + "id": 22058, "properties": { "lit": "false" } @@ -22649,7 +20828,7 @@ "states": [ { "default": true, - "id": 12709 + "id": 11632 } ] }, @@ -22661,7 +20840,7 @@ "states": [ { "default": true, - "id": 14843 + "id": 13766 } ] }, @@ -22674,7 +20853,7 @@ "states": [ { "default": true, - "id": 14859 + "id": 13782 } ] }, @@ -22694,25 +20873,25 @@ "states": [ { "default": true, - "id": 14824, + "id": 13747, "properties": { "facing": "north" } }, { - "id": 14825, + "id": 13748, "properties": { "facing": "south" } }, { - "id": 14826, + "id": 13749, "properties": { "facing": "west" } }, { - "id": 14827, + "id": 13750, "properties": { "facing": "east" } @@ -22737,38 +20916,38 @@ }, "states": [ { - "id": 14758, + "id": 13681, "properties": { "facing": "north" } }, { - "id": 14759, + "id": 13682, "properties": { "facing": "east" } }, { - "id": 14760, + "id": 13683, "properties": { "facing": "south" } }, { - "id": 14761, + "id": 13684, "properties": { "facing": "west" } }, { "default": true, - "id": 14762, + "id": 13685, "properties": { "facing": "up" } }, { - "id": 14763, + "id": 13686, "properties": { "facing": "down" } @@ -22784,7 +20963,7 @@ "states": [ { "default": true, - "id": 6912 + "id": 6139 } ] }, @@ -22818,7 +20997,7 @@ }, "states": [ { - "id": 11738, + "id": 10661, "properties": { "east": "true", "north": "true", @@ -22828,7 +21007,7 @@ } }, { - "id": 11739, + "id": 10662, "properties": { "east": "true", "north": "true", @@ -22838,7 +21017,7 @@ } }, { - "id": 11740, + "id": 10663, "properties": { "east": "true", "north": "true", @@ -22848,7 +21027,7 @@ } }, { - "id": 11741, + "id": 10664, "properties": { "east": "true", "north": "true", @@ -22858,7 +21037,7 @@ } }, { - "id": 11742, + "id": 10665, "properties": { "east": "true", "north": "true", @@ -22868,7 +21047,7 @@ } }, { - "id": 11743, + "id": 10666, "properties": { "east": "true", "north": "true", @@ -22878,7 +21057,7 @@ } }, { - "id": 11744, + "id": 10667, "properties": { "east": "true", "north": "true", @@ -22888,7 +21067,7 @@ } }, { - "id": 11745, + "id": 10668, "properties": { "east": "true", "north": "true", @@ -22898,7 +21077,7 @@ } }, { - "id": 11746, + "id": 10669, "properties": { "east": "true", "north": "false", @@ -22908,7 +21087,7 @@ } }, { - "id": 11747, + "id": 10670, "properties": { "east": "true", "north": "false", @@ -22918,7 +21097,7 @@ } }, { - "id": 11748, + "id": 10671, "properties": { "east": "true", "north": "false", @@ -22928,7 +21107,7 @@ } }, { - "id": 11749, + "id": 10672, "properties": { "east": "true", "north": "false", @@ -22938,7 +21117,7 @@ } }, { - "id": 11750, + "id": 10673, "properties": { "east": "true", "north": "false", @@ -22948,7 +21127,7 @@ } }, { - "id": 11751, + "id": 10674, "properties": { "east": "true", "north": "false", @@ -22958,7 +21137,7 @@ } }, { - "id": 11752, + "id": 10675, "properties": { "east": "true", "north": "false", @@ -22968,7 +21147,7 @@ } }, { - "id": 11753, + "id": 10676, "properties": { "east": "true", "north": "false", @@ -22978,7 +21157,7 @@ } }, { - "id": 11754, + "id": 10677, "properties": { "east": "false", "north": "true", @@ -22988,7 +21167,7 @@ } }, { - "id": 11755, + "id": 10678, "properties": { "east": "false", "north": "true", @@ -22998,7 +21177,7 @@ } }, { - "id": 11756, + "id": 10679, "properties": { "east": "false", "north": "true", @@ -23008,7 +21187,7 @@ } }, { - "id": 11757, + "id": 10680, "properties": { "east": "false", "north": "true", @@ -23018,7 +21197,7 @@ } }, { - "id": 11758, + "id": 10681, "properties": { "east": "false", "north": "true", @@ -23028,7 +21207,7 @@ } }, { - "id": 11759, + "id": 10682, "properties": { "east": "false", "north": "true", @@ -23038,7 +21217,7 @@ } }, { - "id": 11760, + "id": 10683, "properties": { "east": "false", "north": "true", @@ -23048,7 +21227,7 @@ } }, { - "id": 11761, + "id": 10684, "properties": { "east": "false", "north": "true", @@ -23058,7 +21237,7 @@ } }, { - "id": 11762, + "id": 10685, "properties": { "east": "false", "north": "false", @@ -23068,7 +21247,7 @@ } }, { - "id": 11763, + "id": 10686, "properties": { "east": "false", "north": "false", @@ -23078,7 +21257,7 @@ } }, { - "id": 11764, + "id": 10687, "properties": { "east": "false", "north": "false", @@ -23088,7 +21267,7 @@ } }, { - "id": 11765, + "id": 10688, "properties": { "east": "false", "north": "false", @@ -23098,7 +21277,7 @@ } }, { - "id": 11766, + "id": 10689, "properties": { "east": "false", "north": "false", @@ -23108,7 +21287,7 @@ } }, { - "id": 11767, + "id": 10690, "properties": { "east": "false", "north": "false", @@ -23118,7 +21297,7 @@ } }, { - "id": 11768, + "id": 10691, "properties": { "east": "false", "north": "false", @@ -23129,7 +21308,7 @@ }, { "default": true, - "id": 11769, + "id": 10692, "properties": { "east": "false", "north": "false", @@ -23142,13 +21321,13 @@ }, "minecraft:black_terracotta": { "definition": { - "type": "minecraft:block", + "type": "minecraft:terracotta", "properties": {} }, "states": [ { "default": true, - "id": 11257 + "id": 10180 } ] }, @@ -23169,25 +21348,25 @@ "states": [ { "default": true, - "id": 13041, + "id": 11964, "properties": { "facing": "north" } }, { - "id": 13042, + "id": 11965, "properties": { "facing": "south" } }, { - "id": 13043, + "id": 11966, "properties": { "facing": "west" } }, { - "id": 13044, + "id": 11967, "properties": { "facing": "east" } @@ -23214,7 +21393,7 @@ "states": [ { "default": true, - "id": 21629 + "id": 20488 } ] }, @@ -23236,21 +21415,21 @@ }, "states": [ { - "id": 22034, + "id": 20893, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 22035, + "id": 20894, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 22036, + "id": 20895, "properties": { "type": "bottom", "waterlogged": "true" @@ -23258,21 +21437,21 @@ }, { "default": true, - "id": 22037, + "id": 20896, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 22038, + "id": 20897, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 22039, + "id": 20898, "properties": { "type": "double", "waterlogged": "false" @@ -23313,7 +21492,7 @@ }, "states": [ { - "id": 21630, + "id": 20489, "properties": { "facing": "north", "half": "top", @@ -23322,7 +21501,7 @@ } }, { - "id": 21631, + "id": 20490, "properties": { "facing": "north", "half": "top", @@ -23331,7 +21510,7 @@ } }, { - "id": 21632, + "id": 20491, "properties": { "facing": "north", "half": "top", @@ -23340,7 +21519,7 @@ } }, { - "id": 21633, + "id": 20492, "properties": { "facing": "north", "half": "top", @@ -23349,7 +21528,7 @@ } }, { - "id": 21634, + "id": 20493, "properties": { "facing": "north", "half": "top", @@ -23358,7 +21537,7 @@ } }, { - "id": 21635, + "id": 20494, "properties": { "facing": "north", "half": "top", @@ -23367,7 +21546,7 @@ } }, { - "id": 21636, + "id": 20495, "properties": { "facing": "north", "half": "top", @@ -23376,7 +21555,7 @@ } }, { - "id": 21637, + "id": 20496, "properties": { "facing": "north", "half": "top", @@ -23385,7 +21564,7 @@ } }, { - "id": 21638, + "id": 20497, "properties": { "facing": "north", "half": "top", @@ -23394,7 +21573,7 @@ } }, { - "id": 21639, + "id": 20498, "properties": { "facing": "north", "half": "top", @@ -23403,7 +21582,7 @@ } }, { - "id": 21640, + "id": 20499, "properties": { "facing": "north", "half": "bottom", @@ -23413,7 +21592,7 @@ }, { "default": true, - "id": 21641, + "id": 20500, "properties": { "facing": "north", "half": "bottom", @@ -23422,7 +21601,7 @@ } }, { - "id": 21642, + "id": 20501, "properties": { "facing": "north", "half": "bottom", @@ -23431,7 +21610,7 @@ } }, { - "id": 21643, + "id": 20502, "properties": { "facing": "north", "half": "bottom", @@ -23440,7 +21619,7 @@ } }, { - "id": 21644, + "id": 20503, "properties": { "facing": "north", "half": "bottom", @@ -23449,7 +21628,7 @@ } }, { - "id": 21645, + "id": 20504, "properties": { "facing": "north", "half": "bottom", @@ -23458,7 +21637,7 @@ } }, { - "id": 21646, + "id": 20505, "properties": { "facing": "north", "half": "bottom", @@ -23467,7 +21646,7 @@ } }, { - "id": 21647, + "id": 20506, "properties": { "facing": "north", "half": "bottom", @@ -23476,7 +21655,7 @@ } }, { - "id": 21648, + "id": 20507, "properties": { "facing": "north", "half": "bottom", @@ -23485,7 +21664,7 @@ } }, { - "id": 21649, + "id": 20508, "properties": { "facing": "north", "half": "bottom", @@ -23494,7 +21673,7 @@ } }, { - "id": 21650, + "id": 20509, "properties": { "facing": "south", "half": "top", @@ -23503,7 +21682,7 @@ } }, { - "id": 21651, + "id": 20510, "properties": { "facing": "south", "half": "top", @@ -23512,7 +21691,7 @@ } }, { - "id": 21652, + "id": 20511, "properties": { "facing": "south", "half": "top", @@ -23521,7 +21700,7 @@ } }, { - "id": 21653, + "id": 20512, "properties": { "facing": "south", "half": "top", @@ -23530,7 +21709,7 @@ } }, { - "id": 21654, + "id": 20513, "properties": { "facing": "south", "half": "top", @@ -23539,7 +21718,7 @@ } }, { - "id": 21655, + "id": 20514, "properties": { "facing": "south", "half": "top", @@ -23548,7 +21727,7 @@ } }, { - "id": 21656, + "id": 20515, "properties": { "facing": "south", "half": "top", @@ -23557,7 +21736,7 @@ } }, { - "id": 21657, + "id": 20516, "properties": { "facing": "south", "half": "top", @@ -23566,7 +21745,7 @@ } }, { - "id": 21658, + "id": 20517, "properties": { "facing": "south", "half": "top", @@ -23575,7 +21754,7 @@ } }, { - "id": 21659, + "id": 20518, "properties": { "facing": "south", "half": "top", @@ -23584,7 +21763,7 @@ } }, { - "id": 21660, + "id": 20519, "properties": { "facing": "south", "half": "bottom", @@ -23593,7 +21772,7 @@ } }, { - "id": 21661, + "id": 20520, "properties": { "facing": "south", "half": "bottom", @@ -23602,7 +21781,7 @@ } }, { - "id": 21662, + "id": 20521, "properties": { "facing": "south", "half": "bottom", @@ -23611,7 +21790,7 @@ } }, { - "id": 21663, + "id": 20522, "properties": { "facing": "south", "half": "bottom", @@ -23620,7 +21799,7 @@ } }, { - "id": 21664, + "id": 20523, "properties": { "facing": "south", "half": "bottom", @@ -23629,7 +21808,7 @@ } }, { - "id": 21665, + "id": 20524, "properties": { "facing": "south", "half": "bottom", @@ -23638,7 +21817,7 @@ } }, { - "id": 21666, + "id": 20525, "properties": { "facing": "south", "half": "bottom", @@ -23647,7 +21826,7 @@ } }, { - "id": 21667, + "id": 20526, "properties": { "facing": "south", "half": "bottom", @@ -23656,7 +21835,7 @@ } }, { - "id": 21668, + "id": 20527, "properties": { "facing": "south", "half": "bottom", @@ -23665,7 +21844,7 @@ } }, { - "id": 21669, + "id": 20528, "properties": { "facing": "south", "half": "bottom", @@ -23674,7 +21853,7 @@ } }, { - "id": 21670, + "id": 20529, "properties": { "facing": "west", "half": "top", @@ -23683,7 +21862,7 @@ } }, { - "id": 21671, + "id": 20530, "properties": { "facing": "west", "half": "top", @@ -23692,7 +21871,7 @@ } }, { - "id": 21672, + "id": 20531, "properties": { "facing": "west", "half": "top", @@ -23701,7 +21880,7 @@ } }, { - "id": 21673, + "id": 20532, "properties": { "facing": "west", "half": "top", @@ -23710,7 +21889,7 @@ } }, { - "id": 21674, + "id": 20533, "properties": { "facing": "west", "half": "top", @@ -23719,7 +21898,7 @@ } }, { - "id": 21675, + "id": 20534, "properties": { "facing": "west", "half": "top", @@ -23728,7 +21907,7 @@ } }, { - "id": 21676, + "id": 20535, "properties": { "facing": "west", "half": "top", @@ -23737,7 +21916,7 @@ } }, { - "id": 21677, + "id": 20536, "properties": { "facing": "west", "half": "top", @@ -23746,7 +21925,7 @@ } }, { - "id": 21678, + "id": 20537, "properties": { "facing": "west", "half": "top", @@ -23755,7 +21934,7 @@ } }, { - "id": 21679, + "id": 20538, "properties": { "facing": "west", "half": "top", @@ -23764,7 +21943,7 @@ } }, { - "id": 21680, + "id": 20539, "properties": { "facing": "west", "half": "bottom", @@ -23773,7 +21952,7 @@ } }, { - "id": 21681, + "id": 20540, "properties": { "facing": "west", "half": "bottom", @@ -23782,7 +21961,7 @@ } }, { - "id": 21682, + "id": 20541, "properties": { "facing": "west", "half": "bottom", @@ -23791,7 +21970,7 @@ } }, { - "id": 21683, + "id": 20542, "properties": { "facing": "west", "half": "bottom", @@ -23800,7 +21979,7 @@ } }, { - "id": 21684, + "id": 20543, "properties": { "facing": "west", "half": "bottom", @@ -23809,7 +21988,7 @@ } }, { - "id": 21685, + "id": 20544, "properties": { "facing": "west", "half": "bottom", @@ -23818,7 +21997,7 @@ } }, { - "id": 21686, + "id": 20545, "properties": { "facing": "west", "half": "bottom", @@ -23827,7 +22006,7 @@ } }, { - "id": 21687, + "id": 20546, "properties": { "facing": "west", "half": "bottom", @@ -23836,7 +22015,7 @@ } }, { - "id": 21688, + "id": 20547, "properties": { "facing": "west", "half": "bottom", @@ -23845,7 +22024,7 @@ } }, { - "id": 21689, + "id": 20548, "properties": { "facing": "west", "half": "bottom", @@ -23854,7 +22033,7 @@ } }, { - "id": 21690, + "id": 20549, "properties": { "facing": "east", "half": "top", @@ -23863,7 +22042,7 @@ } }, { - "id": 21691, + "id": 20550, "properties": { "facing": "east", "half": "top", @@ -23872,7 +22051,7 @@ } }, { - "id": 21692, + "id": 20551, "properties": { "facing": "east", "half": "top", @@ -23881,7 +22060,7 @@ } }, { - "id": 21693, + "id": 20552, "properties": { "facing": "east", "half": "top", @@ -23890,7 +22069,7 @@ } }, { - "id": 21694, + "id": 20553, "properties": { "facing": "east", "half": "top", @@ -23899,7 +22078,7 @@ } }, { - "id": 21695, + "id": 20554, "properties": { "facing": "east", "half": "top", @@ -23908,7 +22087,7 @@ } }, { - "id": 21696, + "id": 20555, "properties": { "facing": "east", "half": "top", @@ -23917,7 +22096,7 @@ } }, { - "id": 21697, + "id": 20556, "properties": { "facing": "east", "half": "top", @@ -23926,7 +22105,7 @@ } }, { - "id": 21698, + "id": 20557, "properties": { "facing": "east", "half": "top", @@ -23935,7 +22114,7 @@ } }, { - "id": 21699, + "id": 20558, "properties": { "facing": "east", "half": "top", @@ -23944,7 +22123,7 @@ } }, { - "id": 21700, + "id": 20559, "properties": { "facing": "east", "half": "bottom", @@ -23953,7 +22132,7 @@ } }, { - "id": 21701, + "id": 20560, "properties": { "facing": "east", "half": "bottom", @@ -23962,7 +22141,7 @@ } }, { - "id": 21702, + "id": 20561, "properties": { "facing": "east", "half": "bottom", @@ -23971,7 +22150,7 @@ } }, { - "id": 21703, + "id": 20562, "properties": { "facing": "east", "half": "bottom", @@ -23980,7 +22159,7 @@ } }, { - "id": 21704, + "id": 20563, "properties": { "facing": "east", "half": "bottom", @@ -23989,7 +22168,7 @@ } }, { - "id": 21705, + "id": 20564, "properties": { "facing": "east", "half": "bottom", @@ -23998,7 +22177,7 @@ } }, { - "id": 21706, + "id": 20565, "properties": { "facing": "east", "half": "bottom", @@ -24007,7 +22186,7 @@ } }, { - "id": 21707, + "id": 20566, "properties": { "facing": "east", "half": "bottom", @@ -24016,7 +22195,7 @@ } }, { - "id": 21708, + "id": 20567, "properties": { "facing": "east", "half": "bottom", @@ -24025,7 +22204,7 @@ } }, { - "id": 21709, + "id": 20568, "properties": { "facing": "east", "half": "bottom", @@ -24072,7 +22251,7 @@ }, "states": [ { - "id": 21710, + "id": 20569, "properties": { "east": "none", "north": "none", @@ -24083,7 +22262,7 @@ } }, { - "id": 21711, + "id": 20570, "properties": { "east": "none", "north": "none", @@ -24094,7 +22273,7 @@ } }, { - "id": 21712, + "id": 20571, "properties": { "east": "none", "north": "none", @@ -24106,7 +22285,7 @@ }, { "default": true, - "id": 21713, + "id": 20572, "properties": { "east": "none", "north": "none", @@ -24117,7 +22296,7 @@ } }, { - "id": 21714, + "id": 20573, "properties": { "east": "none", "north": "none", @@ -24128,7 +22307,7 @@ } }, { - "id": 21715, + "id": 20574, "properties": { "east": "none", "north": "none", @@ -24139,7 +22318,7 @@ } }, { - "id": 21716, + "id": 20575, "properties": { "east": "none", "north": "none", @@ -24150,7 +22329,7 @@ } }, { - "id": 21717, + "id": 20576, "properties": { "east": "none", "north": "none", @@ -24161,7 +22340,7 @@ } }, { - "id": 21718, + "id": 20577, "properties": { "east": "none", "north": "none", @@ -24172,7 +22351,7 @@ } }, { - "id": 21719, + "id": 20578, "properties": { "east": "none", "north": "none", @@ -24183,7 +22362,7 @@ } }, { - "id": 21720, + "id": 20579, "properties": { "east": "none", "north": "none", @@ -24194,7 +22373,7 @@ } }, { - "id": 21721, + "id": 20580, "properties": { "east": "none", "north": "none", @@ -24205,7 +22384,7 @@ } }, { - "id": 21722, + "id": 20581, "properties": { "east": "none", "north": "none", @@ -24216,7 +22395,7 @@ } }, { - "id": 21723, + "id": 20582, "properties": { "east": "none", "north": "none", @@ -24227,7 +22406,7 @@ } }, { - "id": 21724, + "id": 20583, "properties": { "east": "none", "north": "none", @@ -24238,7 +22417,7 @@ } }, { - "id": 21725, + "id": 20584, "properties": { "east": "none", "north": "none", @@ -24249,7 +22428,7 @@ } }, { - "id": 21726, + "id": 20585, "properties": { "east": "none", "north": "none", @@ -24260,7 +22439,7 @@ } }, { - "id": 21727, + "id": 20586, "properties": { "east": "none", "north": "none", @@ -24271,7 +22450,7 @@ } }, { - "id": 21728, + "id": 20587, "properties": { "east": "none", "north": "none", @@ -24282,7 +22461,7 @@ } }, { - "id": 21729, + "id": 20588, "properties": { "east": "none", "north": "none", @@ -24293,7 +22472,7 @@ } }, { - "id": 21730, + "id": 20589, "properties": { "east": "none", "north": "none", @@ -24304,7 +22483,7 @@ } }, { - "id": 21731, + "id": 20590, "properties": { "east": "none", "north": "none", @@ -24315,7 +22494,7 @@ } }, { - "id": 21732, + "id": 20591, "properties": { "east": "none", "north": "none", @@ -24326,7 +22505,7 @@ } }, { - "id": 21733, + "id": 20592, "properties": { "east": "none", "north": "none", @@ -24337,7 +22516,7 @@ } }, { - "id": 21734, + "id": 20593, "properties": { "east": "none", "north": "none", @@ -24348,7 +22527,7 @@ } }, { - "id": 21735, + "id": 20594, "properties": { "east": "none", "north": "none", @@ -24359,7 +22538,7 @@ } }, { - "id": 21736, + "id": 20595, "properties": { "east": "none", "north": "none", @@ -24370,7 +22549,7 @@ } }, { - "id": 21737, + "id": 20596, "properties": { "east": "none", "north": "none", @@ -24381,7 +22560,7 @@ } }, { - "id": 21738, + "id": 20597, "properties": { "east": "none", "north": "none", @@ -24392,7 +22571,7 @@ } }, { - "id": 21739, + "id": 20598, "properties": { "east": "none", "north": "none", @@ -24403,7 +22582,7 @@ } }, { - "id": 21740, + "id": 20599, "properties": { "east": "none", "north": "none", @@ -24414,7 +22593,7 @@ } }, { - "id": 21741, + "id": 20600, "properties": { "east": "none", "north": "none", @@ -24425,7 +22604,7 @@ } }, { - "id": 21742, + "id": 20601, "properties": { "east": "none", "north": "none", @@ -24436,7 +22615,7 @@ } }, { - "id": 21743, + "id": 20602, "properties": { "east": "none", "north": "none", @@ -24447,7 +22626,7 @@ } }, { - "id": 21744, + "id": 20603, "properties": { "east": "none", "north": "none", @@ -24458,7 +22637,7 @@ } }, { - "id": 21745, + "id": 20604, "properties": { "east": "none", "north": "none", @@ -24469,7 +22648,7 @@ } }, { - "id": 21746, + "id": 20605, "properties": { "east": "none", "north": "low", @@ -24480,7 +22659,7 @@ } }, { - "id": 21747, + "id": 20606, "properties": { "east": "none", "north": "low", @@ -24491,7 +22670,7 @@ } }, { - "id": 21748, + "id": 20607, "properties": { "east": "none", "north": "low", @@ -24502,7 +22681,7 @@ } }, { - "id": 21749, + "id": 20608, "properties": { "east": "none", "north": "low", @@ -24513,7 +22692,7 @@ } }, { - "id": 21750, + "id": 20609, "properties": { "east": "none", "north": "low", @@ -24524,7 +22703,7 @@ } }, { - "id": 21751, + "id": 20610, "properties": { "east": "none", "north": "low", @@ -24535,7 +22714,7 @@ } }, { - "id": 21752, + "id": 20611, "properties": { "east": "none", "north": "low", @@ -24546,7 +22725,7 @@ } }, { - "id": 21753, + "id": 20612, "properties": { "east": "none", "north": "low", @@ -24557,7 +22736,7 @@ } }, { - "id": 21754, + "id": 20613, "properties": { "east": "none", "north": "low", @@ -24568,7 +22747,7 @@ } }, { - "id": 21755, + "id": 20614, "properties": { "east": "none", "north": "low", @@ -24579,7 +22758,7 @@ } }, { - "id": 21756, + "id": 20615, "properties": { "east": "none", "north": "low", @@ -24590,7 +22769,7 @@ } }, { - "id": 21757, + "id": 20616, "properties": { "east": "none", "north": "low", @@ -24601,7 +22780,7 @@ } }, { - "id": 21758, + "id": 20617, "properties": { "east": "none", "north": "low", @@ -24612,7 +22791,7 @@ } }, { - "id": 21759, + "id": 20618, "properties": { "east": "none", "north": "low", @@ -24623,7 +22802,7 @@ } }, { - "id": 21760, + "id": 20619, "properties": { "east": "none", "north": "low", @@ -24634,7 +22813,7 @@ } }, { - "id": 21761, + "id": 20620, "properties": { "east": "none", "north": "low", @@ -24645,7 +22824,7 @@ } }, { - "id": 21762, + "id": 20621, "properties": { "east": "none", "north": "low", @@ -24656,7 +22835,7 @@ } }, { - "id": 21763, + "id": 20622, "properties": { "east": "none", "north": "low", @@ -24667,7 +22846,7 @@ } }, { - "id": 21764, + "id": 20623, "properties": { "east": "none", "north": "low", @@ -24678,7 +22857,7 @@ } }, { - "id": 21765, + "id": 20624, "properties": { "east": "none", "north": "low", @@ -24689,7 +22868,7 @@ } }, { - "id": 21766, + "id": 20625, "properties": { "east": "none", "north": "low", @@ -24700,7 +22879,7 @@ } }, { - "id": 21767, + "id": 20626, "properties": { "east": "none", "north": "low", @@ -24711,7 +22890,7 @@ } }, { - "id": 21768, + "id": 20627, "properties": { "east": "none", "north": "low", @@ -24722,7 +22901,7 @@ } }, { - "id": 21769, + "id": 20628, "properties": { "east": "none", "north": "low", @@ -24733,7 +22912,7 @@ } }, { - "id": 21770, + "id": 20629, "properties": { "east": "none", "north": "low", @@ -24744,7 +22923,7 @@ } }, { - "id": 21771, + "id": 20630, "properties": { "east": "none", "north": "low", @@ -24755,7 +22934,7 @@ } }, { - "id": 21772, + "id": 20631, "properties": { "east": "none", "north": "low", @@ -24766,7 +22945,7 @@ } }, { - "id": 21773, + "id": 20632, "properties": { "east": "none", "north": "low", @@ -24777,7 +22956,7 @@ } }, { - "id": 21774, + "id": 20633, "properties": { "east": "none", "north": "low", @@ -24788,7 +22967,7 @@ } }, { - "id": 21775, + "id": 20634, "properties": { "east": "none", "north": "low", @@ -24799,7 +22978,7 @@ } }, { - "id": 21776, + "id": 20635, "properties": { "east": "none", "north": "low", @@ -24810,7 +22989,7 @@ } }, { - "id": 21777, + "id": 20636, "properties": { "east": "none", "north": "low", @@ -24821,7 +23000,7 @@ } }, { - "id": 21778, + "id": 20637, "properties": { "east": "none", "north": "low", @@ -24832,7 +23011,7 @@ } }, { - "id": 21779, + "id": 20638, "properties": { "east": "none", "north": "low", @@ -24843,7 +23022,7 @@ } }, { - "id": 21780, + "id": 20639, "properties": { "east": "none", "north": "low", @@ -24854,7 +23033,7 @@ } }, { - "id": 21781, + "id": 20640, "properties": { "east": "none", "north": "low", @@ -24865,7 +23044,7 @@ } }, { - "id": 21782, + "id": 20641, "properties": { "east": "none", "north": "tall", @@ -24876,7 +23055,7 @@ } }, { - "id": 21783, + "id": 20642, "properties": { "east": "none", "north": "tall", @@ -24887,7 +23066,7 @@ } }, { - "id": 21784, + "id": 20643, "properties": { "east": "none", "north": "tall", @@ -24898,7 +23077,7 @@ } }, { - "id": 21785, + "id": 20644, "properties": { "east": "none", "north": "tall", @@ -24909,7 +23088,7 @@ } }, { - "id": 21786, + "id": 20645, "properties": { "east": "none", "north": "tall", @@ -24920,7 +23099,7 @@ } }, { - "id": 21787, + "id": 20646, "properties": { "east": "none", "north": "tall", @@ -24931,7 +23110,7 @@ } }, { - "id": 21788, + "id": 20647, "properties": { "east": "none", "north": "tall", @@ -24942,7 +23121,7 @@ } }, { - "id": 21789, + "id": 20648, "properties": { "east": "none", "north": "tall", @@ -24953,7 +23132,7 @@ } }, { - "id": 21790, + "id": 20649, "properties": { "east": "none", "north": "tall", @@ -24964,7 +23143,7 @@ } }, { - "id": 21791, + "id": 20650, "properties": { "east": "none", "north": "tall", @@ -24975,7 +23154,7 @@ } }, { - "id": 21792, + "id": 20651, "properties": { "east": "none", "north": "tall", @@ -24986,7 +23165,7 @@ } }, { - "id": 21793, + "id": 20652, "properties": { "east": "none", "north": "tall", @@ -24997,7 +23176,7 @@ } }, { - "id": 21794, + "id": 20653, "properties": { "east": "none", "north": "tall", @@ -25008,7 +23187,7 @@ } }, { - "id": 21795, + "id": 20654, "properties": { "east": "none", "north": "tall", @@ -25019,7 +23198,7 @@ } }, { - "id": 21796, + "id": 20655, "properties": { "east": "none", "north": "tall", @@ -25030,7 +23209,7 @@ } }, { - "id": 21797, + "id": 20656, "properties": { "east": "none", "north": "tall", @@ -25041,7 +23220,7 @@ } }, { - "id": 21798, + "id": 20657, "properties": { "east": "none", "north": "tall", @@ -25052,7 +23231,7 @@ } }, { - "id": 21799, + "id": 20658, "properties": { "east": "none", "north": "tall", @@ -25063,7 +23242,7 @@ } }, { - "id": 21800, + "id": 20659, "properties": { "east": "none", "north": "tall", @@ -25074,7 +23253,7 @@ } }, { - "id": 21801, + "id": 20660, "properties": { "east": "none", "north": "tall", @@ -25085,7 +23264,7 @@ } }, { - "id": 21802, + "id": 20661, "properties": { "east": "none", "north": "tall", @@ -25096,7 +23275,7 @@ } }, { - "id": 21803, + "id": 20662, "properties": { "east": "none", "north": "tall", @@ -25107,7 +23286,7 @@ } }, { - "id": 21804, + "id": 20663, "properties": { "east": "none", "north": "tall", @@ -25118,7 +23297,7 @@ } }, { - "id": 21805, + "id": 20664, "properties": { "east": "none", "north": "tall", @@ -25129,7 +23308,7 @@ } }, { - "id": 21806, + "id": 20665, "properties": { "east": "none", "north": "tall", @@ -25140,7 +23319,7 @@ } }, { - "id": 21807, + "id": 20666, "properties": { "east": "none", "north": "tall", @@ -25151,7 +23330,7 @@ } }, { - "id": 21808, + "id": 20667, "properties": { "east": "none", "north": "tall", @@ -25162,7 +23341,7 @@ } }, { - "id": 21809, + "id": 20668, "properties": { "east": "none", "north": "tall", @@ -25173,7 +23352,7 @@ } }, { - "id": 21810, + "id": 20669, "properties": { "east": "none", "north": "tall", @@ -25184,7 +23363,7 @@ } }, { - "id": 21811, + "id": 20670, "properties": { "east": "none", "north": "tall", @@ -25195,7 +23374,7 @@ } }, { - "id": 21812, + "id": 20671, "properties": { "east": "none", "north": "tall", @@ -25206,7 +23385,7 @@ } }, { - "id": 21813, + "id": 20672, "properties": { "east": "none", "north": "tall", @@ -25217,7 +23396,7 @@ } }, { - "id": 21814, + "id": 20673, "properties": { "east": "none", "north": "tall", @@ -25228,7 +23407,7 @@ } }, { - "id": 21815, + "id": 20674, "properties": { "east": "none", "north": "tall", @@ -25239,7 +23418,7 @@ } }, { - "id": 21816, + "id": 20675, "properties": { "east": "none", "north": "tall", @@ -25250,7 +23429,7 @@ } }, { - "id": 21817, + "id": 20676, "properties": { "east": "none", "north": "tall", @@ -25261,7 +23440,7 @@ } }, { - "id": 21818, + "id": 20677, "properties": { "east": "low", "north": "none", @@ -25272,7 +23451,7 @@ } }, { - "id": 21819, + "id": 20678, "properties": { "east": "low", "north": "none", @@ -25283,7 +23462,7 @@ } }, { - "id": 21820, + "id": 20679, "properties": { "east": "low", "north": "none", @@ -25294,7 +23473,7 @@ } }, { - "id": 21821, + "id": 20680, "properties": { "east": "low", "north": "none", @@ -25305,7 +23484,7 @@ } }, { - "id": 21822, + "id": 20681, "properties": { "east": "low", "north": "none", @@ -25316,7 +23495,7 @@ } }, { - "id": 21823, + "id": 20682, "properties": { "east": "low", "north": "none", @@ -25327,7 +23506,7 @@ } }, { - "id": 21824, + "id": 20683, "properties": { "east": "low", "north": "none", @@ -25338,7 +23517,7 @@ } }, { - "id": 21825, + "id": 20684, "properties": { "east": "low", "north": "none", @@ -25349,7 +23528,7 @@ } }, { - "id": 21826, + "id": 20685, "properties": { "east": "low", "north": "none", @@ -25360,7 +23539,7 @@ } }, { - "id": 21827, + "id": 20686, "properties": { "east": "low", "north": "none", @@ -25371,7 +23550,7 @@ } }, { - "id": 21828, + "id": 20687, "properties": { "east": "low", "north": "none", @@ -25382,7 +23561,7 @@ } }, { - "id": 21829, + "id": 20688, "properties": { "east": "low", "north": "none", @@ -25393,7 +23572,7 @@ } }, { - "id": 21830, + "id": 20689, "properties": { "east": "low", "north": "none", @@ -25404,7 +23583,7 @@ } }, { - "id": 21831, + "id": 20690, "properties": { "east": "low", "north": "none", @@ -25415,7 +23594,7 @@ } }, { - "id": 21832, + "id": 20691, "properties": { "east": "low", "north": "none", @@ -25426,7 +23605,7 @@ } }, { - "id": 21833, + "id": 20692, "properties": { "east": "low", "north": "none", @@ -25437,7 +23616,7 @@ } }, { - "id": 21834, + "id": 20693, "properties": { "east": "low", "north": "none", @@ -25448,7 +23627,7 @@ } }, { - "id": 21835, + "id": 20694, "properties": { "east": "low", "north": "none", @@ -25459,7 +23638,7 @@ } }, { - "id": 21836, + "id": 20695, "properties": { "east": "low", "north": "none", @@ -25470,7 +23649,7 @@ } }, { - "id": 21837, + "id": 20696, "properties": { "east": "low", "north": "none", @@ -25481,7 +23660,7 @@ } }, { - "id": 21838, + "id": 20697, "properties": { "east": "low", "north": "none", @@ -25492,7 +23671,7 @@ } }, { - "id": 21839, + "id": 20698, "properties": { "east": "low", "north": "none", @@ -25503,7 +23682,7 @@ } }, { - "id": 21840, + "id": 20699, "properties": { "east": "low", "north": "none", @@ -25514,7 +23693,7 @@ } }, { - "id": 21841, + "id": 20700, "properties": { "east": "low", "north": "none", @@ -25525,7 +23704,7 @@ } }, { - "id": 21842, + "id": 20701, "properties": { "east": "low", "north": "none", @@ -25536,7 +23715,7 @@ } }, { - "id": 21843, + "id": 20702, "properties": { "east": "low", "north": "none", @@ -25547,7 +23726,7 @@ } }, { - "id": 21844, + "id": 20703, "properties": { "east": "low", "north": "none", @@ -25558,7 +23737,7 @@ } }, { - "id": 21845, + "id": 20704, "properties": { "east": "low", "north": "none", @@ -25569,7 +23748,7 @@ } }, { - "id": 21846, + "id": 20705, "properties": { "east": "low", "north": "none", @@ -25580,7 +23759,7 @@ } }, { - "id": 21847, + "id": 20706, "properties": { "east": "low", "north": "none", @@ -25591,7 +23770,7 @@ } }, { - "id": 21848, + "id": 20707, "properties": { "east": "low", "north": "none", @@ -25602,7 +23781,7 @@ } }, { - "id": 21849, + "id": 20708, "properties": { "east": "low", "north": "none", @@ -25613,7 +23792,7 @@ } }, { - "id": 21850, + "id": 20709, "properties": { "east": "low", "north": "none", @@ -25624,7 +23803,7 @@ } }, { - "id": 21851, + "id": 20710, "properties": { "east": "low", "north": "none", @@ -25635,7 +23814,7 @@ } }, { - "id": 21852, + "id": 20711, "properties": { "east": "low", "north": "none", @@ -25646,7 +23825,7 @@ } }, { - "id": 21853, + "id": 20712, "properties": { "east": "low", "north": "none", @@ -25657,7 +23836,7 @@ } }, { - "id": 21854, + "id": 20713, "properties": { "east": "low", "north": "low", @@ -25668,7 +23847,7 @@ } }, { - "id": 21855, + "id": 20714, "properties": { "east": "low", "north": "low", @@ -25679,7 +23858,7 @@ } }, { - "id": 21856, + "id": 20715, "properties": { "east": "low", "north": "low", @@ -25690,7 +23869,7 @@ } }, { - "id": 21857, + "id": 20716, "properties": { "east": "low", "north": "low", @@ -25701,7 +23880,7 @@ } }, { - "id": 21858, + "id": 20717, "properties": { "east": "low", "north": "low", @@ -25712,7 +23891,7 @@ } }, { - "id": 21859, + "id": 20718, "properties": { "east": "low", "north": "low", @@ -25723,7 +23902,7 @@ } }, { - "id": 21860, + "id": 20719, "properties": { "east": "low", "north": "low", @@ -25734,7 +23913,7 @@ } }, { - "id": 21861, + "id": 20720, "properties": { "east": "low", "north": "low", @@ -25745,7 +23924,7 @@ } }, { - "id": 21862, + "id": 20721, "properties": { "east": "low", "north": "low", @@ -25756,7 +23935,7 @@ } }, { - "id": 21863, + "id": 20722, "properties": { "east": "low", "north": "low", @@ -25767,7 +23946,7 @@ } }, { - "id": 21864, + "id": 20723, "properties": { "east": "low", "north": "low", @@ -25778,7 +23957,7 @@ } }, { - "id": 21865, + "id": 20724, "properties": { "east": "low", "north": "low", @@ -25789,7 +23968,7 @@ } }, { - "id": 21866, + "id": 20725, "properties": { "east": "low", "north": "low", @@ -25800,7 +23979,7 @@ } }, { - "id": 21867, + "id": 20726, "properties": { "east": "low", "north": "low", @@ -25811,7 +23990,7 @@ } }, { - "id": 21868, + "id": 20727, "properties": { "east": "low", "north": "low", @@ -25822,7 +24001,7 @@ } }, { - "id": 21869, + "id": 20728, "properties": { "east": "low", "north": "low", @@ -25833,7 +24012,7 @@ } }, { - "id": 21870, + "id": 20729, "properties": { "east": "low", "north": "low", @@ -25844,7 +24023,7 @@ } }, { - "id": 21871, + "id": 20730, "properties": { "east": "low", "north": "low", @@ -25855,7 +24034,7 @@ } }, { - "id": 21872, + "id": 20731, "properties": { "east": "low", "north": "low", @@ -25866,7 +24045,7 @@ } }, { - "id": 21873, + "id": 20732, "properties": { "east": "low", "north": "low", @@ -25877,7 +24056,7 @@ } }, { - "id": 21874, + "id": 20733, "properties": { "east": "low", "north": "low", @@ -25888,7 +24067,7 @@ } }, { - "id": 21875, + "id": 20734, "properties": { "east": "low", "north": "low", @@ -25899,7 +24078,7 @@ } }, { - "id": 21876, + "id": 20735, "properties": { "east": "low", "north": "low", @@ -25910,7 +24089,7 @@ } }, { - "id": 21877, + "id": 20736, "properties": { "east": "low", "north": "low", @@ -25921,7 +24100,7 @@ } }, { - "id": 21878, + "id": 20737, "properties": { "east": "low", "north": "low", @@ -25932,7 +24111,7 @@ } }, { - "id": 21879, + "id": 20738, "properties": { "east": "low", "north": "low", @@ -25943,7 +24122,7 @@ } }, { - "id": 21880, + "id": 20739, "properties": { "east": "low", "north": "low", @@ -25954,7 +24133,7 @@ } }, { - "id": 21881, + "id": 20740, "properties": { "east": "low", "north": "low", @@ -25965,7 +24144,7 @@ } }, { - "id": 21882, + "id": 20741, "properties": { "east": "low", "north": "low", @@ -25976,7 +24155,7 @@ } }, { - "id": 21883, + "id": 20742, "properties": { "east": "low", "north": "low", @@ -25987,7 +24166,7 @@ } }, { - "id": 21884, + "id": 20743, "properties": { "east": "low", "north": "low", @@ -25998,7 +24177,7 @@ } }, { - "id": 21885, + "id": 20744, "properties": { "east": "low", "north": "low", @@ -26009,7 +24188,7 @@ } }, { - "id": 21886, + "id": 20745, "properties": { "east": "low", "north": "low", @@ -26020,7 +24199,7 @@ } }, { - "id": 21887, + "id": 20746, "properties": { "east": "low", "north": "low", @@ -26031,7 +24210,7 @@ } }, { - "id": 21888, + "id": 20747, "properties": { "east": "low", "north": "low", @@ -26042,7 +24221,7 @@ } }, { - "id": 21889, + "id": 20748, "properties": { "east": "low", "north": "low", @@ -26053,7 +24232,7 @@ } }, { - "id": 21890, + "id": 20749, "properties": { "east": "low", "north": "tall", @@ -26064,7 +24243,7 @@ } }, { - "id": 21891, + "id": 20750, "properties": { "east": "low", "north": "tall", @@ -26075,7 +24254,7 @@ } }, { - "id": 21892, + "id": 20751, "properties": { "east": "low", "north": "tall", @@ -26086,7 +24265,7 @@ } }, { - "id": 21893, + "id": 20752, "properties": { "east": "low", "north": "tall", @@ -26097,7 +24276,7 @@ } }, { - "id": 21894, + "id": 20753, "properties": { "east": "low", "north": "tall", @@ -26108,7 +24287,7 @@ } }, { - "id": 21895, + "id": 20754, "properties": { "east": "low", "north": "tall", @@ -26119,7 +24298,7 @@ } }, { - "id": 21896, + "id": 20755, "properties": { "east": "low", "north": "tall", @@ -26130,7 +24309,7 @@ } }, { - "id": 21897, + "id": 20756, "properties": { "east": "low", "north": "tall", @@ -26141,7 +24320,7 @@ } }, { - "id": 21898, + "id": 20757, "properties": { "east": "low", "north": "tall", @@ -26152,7 +24331,7 @@ } }, { - "id": 21899, + "id": 20758, "properties": { "east": "low", "north": "tall", @@ -26163,7 +24342,7 @@ } }, { - "id": 21900, + "id": 20759, "properties": { "east": "low", "north": "tall", @@ -26174,7 +24353,7 @@ } }, { - "id": 21901, + "id": 20760, "properties": { "east": "low", "north": "tall", @@ -26185,7 +24364,7 @@ } }, { - "id": 21902, + "id": 20761, "properties": { "east": "low", "north": "tall", @@ -26196,7 +24375,7 @@ } }, { - "id": 21903, + "id": 20762, "properties": { "east": "low", "north": "tall", @@ -26207,7 +24386,7 @@ } }, { - "id": 21904, + "id": 20763, "properties": { "east": "low", "north": "tall", @@ -26218,7 +24397,7 @@ } }, { - "id": 21905, + "id": 20764, "properties": { "east": "low", "north": "tall", @@ -26229,7 +24408,7 @@ } }, { - "id": 21906, + "id": 20765, "properties": { "east": "low", "north": "tall", @@ -26240,7 +24419,7 @@ } }, { - "id": 21907, + "id": 20766, "properties": { "east": "low", "north": "tall", @@ -26251,7 +24430,7 @@ } }, { - "id": 21908, + "id": 20767, "properties": { "east": "low", "north": "tall", @@ -26262,7 +24441,7 @@ } }, { - "id": 21909, + "id": 20768, "properties": { "east": "low", "north": "tall", @@ -26273,7 +24452,7 @@ } }, { - "id": 21910, + "id": 20769, "properties": { "east": "low", "north": "tall", @@ -26284,7 +24463,7 @@ } }, { - "id": 21911, + "id": 20770, "properties": { "east": "low", "north": "tall", @@ -26295,7 +24474,7 @@ } }, { - "id": 21912, + "id": 20771, "properties": { "east": "low", "north": "tall", @@ -26306,7 +24485,7 @@ } }, { - "id": 21913, + "id": 20772, "properties": { "east": "low", "north": "tall", @@ -26317,7 +24496,7 @@ } }, { - "id": 21914, + "id": 20773, "properties": { "east": "low", "north": "tall", @@ -26328,7 +24507,7 @@ } }, { - "id": 21915, + "id": 20774, "properties": { "east": "low", "north": "tall", @@ -26339,7 +24518,7 @@ } }, { - "id": 21916, + "id": 20775, "properties": { "east": "low", "north": "tall", @@ -26350,7 +24529,7 @@ } }, { - "id": 21917, + "id": 20776, "properties": { "east": "low", "north": "tall", @@ -26361,7 +24540,7 @@ } }, { - "id": 21918, + "id": 20777, "properties": { "east": "low", "north": "tall", @@ -26372,7 +24551,7 @@ } }, { - "id": 21919, + "id": 20778, "properties": { "east": "low", "north": "tall", @@ -26383,7 +24562,7 @@ } }, { - "id": 21920, + "id": 20779, "properties": { "east": "low", "north": "tall", @@ -26394,7 +24573,7 @@ } }, { - "id": 21921, + "id": 20780, "properties": { "east": "low", "north": "tall", @@ -26405,7 +24584,7 @@ } }, { - "id": 21922, + "id": 20781, "properties": { "east": "low", "north": "tall", @@ -26416,7 +24595,7 @@ } }, { - "id": 21923, + "id": 20782, "properties": { "east": "low", "north": "tall", @@ -26427,7 +24606,7 @@ } }, { - "id": 21924, + "id": 20783, "properties": { "east": "low", "north": "tall", @@ -26438,7 +24617,7 @@ } }, { - "id": 21925, + "id": 20784, "properties": { "east": "low", "north": "tall", @@ -26449,7 +24628,7 @@ } }, { - "id": 21926, + "id": 20785, "properties": { "east": "tall", "north": "none", @@ -26460,7 +24639,7 @@ } }, { - "id": 21927, + "id": 20786, "properties": { "east": "tall", "north": "none", @@ -26471,7 +24650,7 @@ } }, { - "id": 21928, + "id": 20787, "properties": { "east": "tall", "north": "none", @@ -26482,7 +24661,7 @@ } }, { - "id": 21929, + "id": 20788, "properties": { "east": "tall", "north": "none", @@ -26493,7 +24672,7 @@ } }, { - "id": 21930, + "id": 20789, "properties": { "east": "tall", "north": "none", @@ -26504,7 +24683,7 @@ } }, { - "id": 21931, + "id": 20790, "properties": { "east": "tall", "north": "none", @@ -26515,7 +24694,7 @@ } }, { - "id": 21932, + "id": 20791, "properties": { "east": "tall", "north": "none", @@ -26526,7 +24705,7 @@ } }, { - "id": 21933, + "id": 20792, "properties": { "east": "tall", "north": "none", @@ -26537,7 +24716,7 @@ } }, { - "id": 21934, + "id": 20793, "properties": { "east": "tall", "north": "none", @@ -26548,7 +24727,7 @@ } }, { - "id": 21935, + "id": 20794, "properties": { "east": "tall", "north": "none", @@ -26559,7 +24738,7 @@ } }, { - "id": 21936, + "id": 20795, "properties": { "east": "tall", "north": "none", @@ -26570,7 +24749,7 @@ } }, { - "id": 21937, + "id": 20796, "properties": { "east": "tall", "north": "none", @@ -26581,7 +24760,7 @@ } }, { - "id": 21938, + "id": 20797, "properties": { "east": "tall", "north": "none", @@ -26592,7 +24771,7 @@ } }, { - "id": 21939, + "id": 20798, "properties": { "east": "tall", "north": "none", @@ -26603,7 +24782,7 @@ } }, { - "id": 21940, + "id": 20799, "properties": { "east": "tall", "north": "none", @@ -26614,7 +24793,7 @@ } }, { - "id": 21941, + "id": 20800, "properties": { "east": "tall", "north": "none", @@ -26625,7 +24804,7 @@ } }, { - "id": 21942, + "id": 20801, "properties": { "east": "tall", "north": "none", @@ -26636,7 +24815,7 @@ } }, { - "id": 21943, + "id": 20802, "properties": { "east": "tall", "north": "none", @@ -26647,7 +24826,7 @@ } }, { - "id": 21944, + "id": 20803, "properties": { "east": "tall", "north": "none", @@ -26658,7 +24837,7 @@ } }, { - "id": 21945, + "id": 20804, "properties": { "east": "tall", "north": "none", @@ -26669,7 +24848,7 @@ } }, { - "id": 21946, + "id": 20805, "properties": { "east": "tall", "north": "none", @@ -26680,7 +24859,7 @@ } }, { - "id": 21947, + "id": 20806, "properties": { "east": "tall", "north": "none", @@ -26691,7 +24870,7 @@ } }, { - "id": 21948, + "id": 20807, "properties": { "east": "tall", "north": "none", @@ -26702,7 +24881,7 @@ } }, { - "id": 21949, + "id": 20808, "properties": { "east": "tall", "north": "none", @@ -26713,7 +24892,7 @@ } }, { - "id": 21950, + "id": 20809, "properties": { "east": "tall", "north": "none", @@ -26724,7 +24903,7 @@ } }, { - "id": 21951, + "id": 20810, "properties": { "east": "tall", "north": "none", @@ -26735,7 +24914,7 @@ } }, { - "id": 21952, + "id": 20811, "properties": { "east": "tall", "north": "none", @@ -26746,7 +24925,7 @@ } }, { - "id": 21953, + "id": 20812, "properties": { "east": "tall", "north": "none", @@ -26757,7 +24936,7 @@ } }, { - "id": 21954, + "id": 20813, "properties": { "east": "tall", "north": "none", @@ -26768,7 +24947,7 @@ } }, { - "id": 21955, + "id": 20814, "properties": { "east": "tall", "north": "none", @@ -26779,7 +24958,7 @@ } }, { - "id": 21956, + "id": 20815, "properties": { "east": "tall", "north": "none", @@ -26790,7 +24969,7 @@ } }, { - "id": 21957, + "id": 20816, "properties": { "east": "tall", "north": "none", @@ -26801,7 +24980,7 @@ } }, { - "id": 21958, + "id": 20817, "properties": { "east": "tall", "north": "none", @@ -26812,7 +24991,7 @@ } }, { - "id": 21959, + "id": 20818, "properties": { "east": "tall", "north": "none", @@ -26823,7 +25002,7 @@ } }, { - "id": 21960, + "id": 20819, "properties": { "east": "tall", "north": "none", @@ -26834,7 +25013,7 @@ } }, { - "id": 21961, + "id": 20820, "properties": { "east": "tall", "north": "none", @@ -26845,7 +25024,7 @@ } }, { - "id": 21962, + "id": 20821, "properties": { "east": "tall", "north": "low", @@ -26856,7 +25035,7 @@ } }, { - "id": 21963, + "id": 20822, "properties": { "east": "tall", "north": "low", @@ -26867,7 +25046,7 @@ } }, { - "id": 21964, + "id": 20823, "properties": { "east": "tall", "north": "low", @@ -26878,7 +25057,7 @@ } }, { - "id": 21965, + "id": 20824, "properties": { "east": "tall", "north": "low", @@ -26889,7 +25068,7 @@ } }, { - "id": 21966, + "id": 20825, "properties": { "east": "tall", "north": "low", @@ -26900,7 +25079,7 @@ } }, { - "id": 21967, + "id": 20826, "properties": { "east": "tall", "north": "low", @@ -26911,7 +25090,7 @@ } }, { - "id": 21968, + "id": 20827, "properties": { "east": "tall", "north": "low", @@ -26922,7 +25101,7 @@ } }, { - "id": 21969, + "id": 20828, "properties": { "east": "tall", "north": "low", @@ -26933,7 +25112,7 @@ } }, { - "id": 21970, + "id": 20829, "properties": { "east": "tall", "north": "low", @@ -26944,7 +25123,7 @@ } }, { - "id": 21971, + "id": 20830, "properties": { "east": "tall", "north": "low", @@ -26955,7 +25134,7 @@ } }, { - "id": 21972, + "id": 20831, "properties": { "east": "tall", "north": "low", @@ -26966,7 +25145,7 @@ } }, { - "id": 21973, + "id": 20832, "properties": { "east": "tall", "north": "low", @@ -26977,7 +25156,7 @@ } }, { - "id": 21974, + "id": 20833, "properties": { "east": "tall", "north": "low", @@ -26988,7 +25167,7 @@ } }, { - "id": 21975, + "id": 20834, "properties": { "east": "tall", "north": "low", @@ -26999,7 +25178,7 @@ } }, { - "id": 21976, + "id": 20835, "properties": { "east": "tall", "north": "low", @@ -27010,7 +25189,7 @@ } }, { - "id": 21977, + "id": 20836, "properties": { "east": "tall", "north": "low", @@ -27021,7 +25200,7 @@ } }, { - "id": 21978, + "id": 20837, "properties": { "east": "tall", "north": "low", @@ -27032,7 +25211,7 @@ } }, { - "id": 21979, + "id": 20838, "properties": { "east": "tall", "north": "low", @@ -27043,7 +25222,7 @@ } }, { - "id": 21980, + "id": 20839, "properties": { "east": "tall", "north": "low", @@ -27054,7 +25233,7 @@ } }, { - "id": 21981, + "id": 20840, "properties": { "east": "tall", "north": "low", @@ -27065,7 +25244,7 @@ } }, { - "id": 21982, + "id": 20841, "properties": { "east": "tall", "north": "low", @@ -27076,7 +25255,7 @@ } }, { - "id": 21983, + "id": 20842, "properties": { "east": "tall", "north": "low", @@ -27087,7 +25266,7 @@ } }, { - "id": 21984, + "id": 20843, "properties": { "east": "tall", "north": "low", @@ -27098,7 +25277,7 @@ } }, { - "id": 21985, + "id": 20844, "properties": { "east": "tall", "north": "low", @@ -27109,7 +25288,7 @@ } }, { - "id": 21986, + "id": 20845, "properties": { "east": "tall", "north": "low", @@ -27120,7 +25299,7 @@ } }, { - "id": 21987, + "id": 20846, "properties": { "east": "tall", "north": "low", @@ -27131,7 +25310,7 @@ } }, { - "id": 21988, + "id": 20847, "properties": { "east": "tall", "north": "low", @@ -27142,7 +25321,7 @@ } }, { - "id": 21989, + "id": 20848, "properties": { "east": "tall", "north": "low", @@ -27153,7 +25332,7 @@ } }, { - "id": 21990, + "id": 20849, "properties": { "east": "tall", "north": "low", @@ -27164,7 +25343,7 @@ } }, { - "id": 21991, + "id": 20850, "properties": { "east": "tall", "north": "low", @@ -27175,7 +25354,7 @@ } }, { - "id": 21992, + "id": 20851, "properties": { "east": "tall", "north": "low", @@ -27186,7 +25365,7 @@ } }, { - "id": 21993, + "id": 20852, "properties": { "east": "tall", "north": "low", @@ -27197,7 +25376,7 @@ } }, { - "id": 21994, + "id": 20853, "properties": { "east": "tall", "north": "low", @@ -27208,7 +25387,7 @@ } }, { - "id": 21995, + "id": 20854, "properties": { "east": "tall", "north": "low", @@ -27219,7 +25398,7 @@ } }, { - "id": 21996, + "id": 20855, "properties": { "east": "tall", "north": "low", @@ -27230,7 +25409,7 @@ } }, { - "id": 21997, + "id": 20856, "properties": { "east": "tall", "north": "low", @@ -27241,7 +25420,7 @@ } }, { - "id": 21998, + "id": 20857, "properties": { "east": "tall", "north": "tall", @@ -27252,7 +25431,7 @@ } }, { - "id": 21999, + "id": 20858, "properties": { "east": "tall", "north": "tall", @@ -27263,7 +25442,7 @@ } }, { - "id": 22000, + "id": 20859, "properties": { "east": "tall", "north": "tall", @@ -27274,7 +25453,7 @@ } }, { - "id": 22001, + "id": 20860, "properties": { "east": "tall", "north": "tall", @@ -27285,7 +25464,7 @@ } }, { - "id": 22002, + "id": 20861, "properties": { "east": "tall", "north": "tall", @@ -27296,7 +25475,7 @@ } }, { - "id": 22003, + "id": 20862, "properties": { "east": "tall", "north": "tall", @@ -27307,7 +25486,7 @@ } }, { - "id": 22004, + "id": 20863, "properties": { "east": "tall", "north": "tall", @@ -27318,7 +25497,7 @@ } }, { - "id": 22005, + "id": 20864, "properties": { "east": "tall", "north": "tall", @@ -27329,7 +25508,7 @@ } }, { - "id": 22006, + "id": 20865, "properties": { "east": "tall", "north": "tall", @@ -27340,7 +25519,7 @@ } }, { - "id": 22007, + "id": 20866, "properties": { "east": "tall", "north": "tall", @@ -27351,7 +25530,7 @@ } }, { - "id": 22008, + "id": 20867, "properties": { "east": "tall", "north": "tall", @@ -27362,7 +25541,7 @@ } }, { - "id": 22009, + "id": 20868, "properties": { "east": "tall", "north": "tall", @@ -27373,7 +25552,7 @@ } }, { - "id": 22010, + "id": 20869, "properties": { "east": "tall", "north": "tall", @@ -27384,7 +25563,7 @@ } }, { - "id": 22011, + "id": 20870, "properties": { "east": "tall", "north": "tall", @@ -27395,7 +25574,7 @@ } }, { - "id": 22012, + "id": 20871, "properties": { "east": "tall", "north": "tall", @@ -27406,7 +25585,7 @@ } }, { - "id": 22013, + "id": 20872, "properties": { "east": "tall", "north": "tall", @@ -27417,7 +25596,7 @@ } }, { - "id": 22014, + "id": 20873, "properties": { "east": "tall", "north": "tall", @@ -27428,7 +25607,7 @@ } }, { - "id": 22015, + "id": 20874, "properties": { "east": "tall", "north": "tall", @@ -27439,7 +25618,7 @@ } }, { - "id": 22016, + "id": 20875, "properties": { "east": "tall", "north": "tall", @@ -27450,7 +25629,7 @@ } }, { - "id": 22017, + "id": 20876, "properties": { "east": "tall", "north": "tall", @@ -27461,7 +25640,7 @@ } }, { - "id": 22018, + "id": 20877, "properties": { "east": "tall", "north": "tall", @@ -27472,7 +25651,7 @@ } }, { - "id": 22019, + "id": 20878, "properties": { "east": "tall", "north": "tall", @@ -27483,7 +25662,7 @@ } }, { - "id": 22020, + "id": 20879, "properties": { "east": "tall", "north": "tall", @@ -27494,7 +25673,7 @@ } }, { - "id": 22021, + "id": 20880, "properties": { "east": "tall", "north": "tall", @@ -27505,7 +25684,7 @@ } }, { - "id": 22022, + "id": 20881, "properties": { "east": "tall", "north": "tall", @@ -27516,7 +25695,7 @@ } }, { - "id": 22023, + "id": 20882, "properties": { "east": "tall", "north": "tall", @@ -27527,7 +25706,7 @@ } }, { - "id": 22024, + "id": 20883, "properties": { "east": "tall", "north": "tall", @@ -27538,7 +25717,7 @@ } }, { - "id": 22025, + "id": 20884, "properties": { "east": "tall", "north": "tall", @@ -27549,7 +25728,7 @@ } }, { - "id": 22026, + "id": 20885, "properties": { "east": "tall", "north": "tall", @@ -27560,7 +25739,7 @@ } }, { - "id": 22027, + "id": 20886, "properties": { "east": "tall", "north": "tall", @@ -27571,7 +25750,7 @@ } }, { - "id": 22028, + "id": 20887, "properties": { "east": "tall", "north": "tall", @@ -27582,7 +25761,7 @@ } }, { - "id": 22029, + "id": 20888, "properties": { "east": "tall", "north": "tall", @@ -27593,7 +25772,7 @@ } }, { - "id": 22030, + "id": 20889, "properties": { "east": "tall", "north": "tall", @@ -27604,7 +25783,7 @@ } }, { - "id": 22031, + "id": 20890, "properties": { "east": "tall", "north": "tall", @@ -27615,7 +25794,7 @@ } }, { - "id": 22032, + "id": 20891, "properties": { "east": "tall", "north": "tall", @@ -27626,7 +25805,7 @@ } }, { - "id": 22033, + "id": 20892, "properties": { "east": "tall", "north": "tall", @@ -27657,7 +25836,7 @@ }, "states": [ { - "id": 20560, + "id": 19451, "properties": { "facing": "north", "lit": "true" @@ -27665,49 +25844,49 @@ }, { "default": true, - "id": 20561, + "id": 19452, "properties": { "facing": "north", "lit": "false" } }, { - "id": 20562, + "id": 19453, "properties": { "facing": "south", "lit": "true" } }, { - "id": 20563, + "id": 19454, "properties": { "facing": "south", "lit": "false" } }, { - "id": 20564, + "id": 19455, "properties": { "facing": "west", "lit": "true" } }, { - "id": 20565, + "id": 19456, "properties": { "facing": "west", "lit": "false" } }, { - "id": 20566, + "id": 19457, "properties": { "facing": "east", "lit": "true" } }, { - "id": 20567, + "id": 19458, "properties": { "facing": "east", "lit": "false" @@ -27744,97 +25923,97 @@ "states": [ { "default": true, - "id": 12901, + "id": 11824, "properties": { "rotation": "0" } }, { - "id": 12902, + "id": 11825, "properties": { "rotation": "1" } }, { - "id": 12903, + "id": 11826, "properties": { "rotation": "2" } }, { - "id": 12904, + "id": 11827, "properties": { "rotation": "3" } }, { - "id": 12905, + "id": 11828, "properties": { "rotation": "4" } }, { - "id": 12906, + "id": 11829, "properties": { "rotation": "5" } }, { - "id": 12907, + "id": 11830, "properties": { "rotation": "6" } }, { - "id": 12908, + "id": 11831, "properties": { "rotation": "7" } }, { - "id": 12909, + "id": 11832, "properties": { "rotation": "8" } }, { - "id": 12910, + "id": 11833, "properties": { "rotation": "9" } }, { - "id": 12911, + "id": 11834, "properties": { "rotation": "10" } }, { - "id": 12912, + "id": 11835, "properties": { "rotation": "11" } }, { - "id": 12913, + "id": 11836, "properties": { "rotation": "12" } }, { - "id": 12914, + "id": 11837, "properties": { "rotation": "13" } }, { - "id": 12915, + "id": 11838, "properties": { "rotation": "14" } }, { - "id": 12916, + "id": 11839, "properties": { "rotation": "15" } @@ -28018,7 +26197,7 @@ }, "states": [ { - "id": 23086, + "id": 21945, "properties": { "candles": "1", "lit": "true", @@ -28026,7 +26205,7 @@ } }, { - "id": 23087, + "id": 21946, "properties": { "candles": "1", "lit": "true", @@ -28034,7 +26213,7 @@ } }, { - "id": 23088, + "id": 21947, "properties": { "candles": "1", "lit": "false", @@ -28043,7 +26222,7 @@ }, { "default": true, - "id": 23089, + "id": 21948, "properties": { "candles": "1", "lit": "false", @@ -28051,7 +26230,7 @@ } }, { - "id": 23090, + "id": 21949, "properties": { "candles": "2", "lit": "true", @@ -28059,7 +26238,7 @@ } }, { - "id": 23091, + "id": 21950, "properties": { "candles": "2", "lit": "true", @@ -28067,7 +26246,7 @@ } }, { - "id": 23092, + "id": 21951, "properties": { "candles": "2", "lit": "false", @@ -28075,7 +26254,7 @@ } }, { - "id": 23093, + "id": 21952, "properties": { "candles": "2", "lit": "false", @@ -28083,7 +26262,7 @@ } }, { - "id": 23094, + "id": 21953, "properties": { "candles": "3", "lit": "true", @@ -28091,7 +26270,7 @@ } }, { - "id": 23095, + "id": 21954, "properties": { "candles": "3", "lit": "true", @@ -28099,7 +26278,7 @@ } }, { - "id": 23096, + "id": 21955, "properties": { "candles": "3", "lit": "false", @@ -28107,7 +26286,7 @@ } }, { - "id": 23097, + "id": 21956, "properties": { "candles": "3", "lit": "false", @@ -28115,7 +26294,7 @@ } }, { - "id": 23098, + "id": 21957, "properties": { "candles": "4", "lit": "true", @@ -28123,7 +26302,7 @@ } }, { - "id": 23099, + "id": 21958, "properties": { "candles": "4", "lit": "true", @@ -28131,7 +26310,7 @@ } }, { - "id": 23100, + "id": 21959, "properties": { "candles": "4", "lit": "false", @@ -28139,7 +26318,7 @@ } }, { - "id": 23101, + "id": 21960, "properties": { "candles": "4", "lit": "false", @@ -28162,14 +26341,14 @@ }, "states": [ { - "id": 23190, + "id": 22049, "properties": { "lit": "true" } }, { "default": true, - "id": 23191, + "id": 22050, "properties": { "lit": "false" } @@ -28185,7 +26364,7 @@ "states": [ { "default": true, - "id": 12705 + "id": 11628 } ] }, @@ -28197,7 +26376,7 @@ "states": [ { "default": true, - "id": 14839 + "id": 13762 } ] }, @@ -28210,7 +26389,7 @@ "states": [ { "default": true, - "id": 14855 + "id": 13778 } ] }, @@ -28230,25 +26409,25 @@ "states": [ { "default": true, - "id": 14808, + "id": 13731, "properties": { "facing": "north" } }, { - "id": 14809, + "id": 13732, "properties": { "facing": "south" } }, { - "id": 14810, + "id": 13733, "properties": { "facing": "west" } }, { - "id": 14811, + "id": 13734, "properties": { "facing": "east" } @@ -28263,7 +26442,7 @@ "states": [ { "default": true, - "id": 15073 + "id": 13964 } ] }, @@ -28303,38 +26482,38 @@ }, "states": [ { - "id": 14734, + "id": 13657, "properties": { "facing": "north" } }, { - "id": 14735, + "id": 13658, "properties": { "facing": "east" } }, { - "id": 14736, + "id": 13659, "properties": { "facing": "south" } }, { - "id": 14737, + "id": 13660, "properties": { "facing": "west" } }, { "default": true, - "id": 14738, + "id": 13661, "properties": { "facing": "up" } }, { - "id": 14739, + "id": 13662, "properties": { "facing": "down" } @@ -28350,7 +26529,7 @@ "states": [ { "default": true, - "id": 6908 + "id": 6135 } ] }, @@ -28384,7 +26563,7 @@ }, "states": [ { - "id": 11610, + "id": 10533, "properties": { "east": "true", "north": "true", @@ -28394,7 +26573,7 @@ } }, { - "id": 11611, + "id": 10534, "properties": { "east": "true", "north": "true", @@ -28404,7 +26583,7 @@ } }, { - "id": 11612, + "id": 10535, "properties": { "east": "true", "north": "true", @@ -28414,7 +26593,7 @@ } }, { - "id": 11613, + "id": 10536, "properties": { "east": "true", "north": "true", @@ -28424,7 +26603,7 @@ } }, { - "id": 11614, + "id": 10537, "properties": { "east": "true", "north": "true", @@ -28434,7 +26613,7 @@ } }, { - "id": 11615, + "id": 10538, "properties": { "east": "true", "north": "true", @@ -28444,7 +26623,7 @@ } }, { - "id": 11616, + "id": 10539, "properties": { "east": "true", "north": "true", @@ -28454,7 +26633,7 @@ } }, { - "id": 11617, + "id": 10540, "properties": { "east": "true", "north": "true", @@ -28464,7 +26643,7 @@ } }, { - "id": 11618, + "id": 10541, "properties": { "east": "true", "north": "false", @@ -28474,7 +26653,7 @@ } }, { - "id": 11619, + "id": 10542, "properties": { "east": "true", "north": "false", @@ -28484,7 +26663,7 @@ } }, { - "id": 11620, + "id": 10543, "properties": { "east": "true", "north": "false", @@ -28494,7 +26673,7 @@ } }, { - "id": 11621, + "id": 10544, "properties": { "east": "true", "north": "false", @@ -28504,7 +26683,7 @@ } }, { - "id": 11622, + "id": 10545, "properties": { "east": "true", "north": "false", @@ -28514,7 +26693,7 @@ } }, { - "id": 11623, + "id": 10546, "properties": { "east": "true", "north": "false", @@ -28524,7 +26703,7 @@ } }, { - "id": 11624, + "id": 10547, "properties": { "east": "true", "north": "false", @@ -28534,7 +26713,7 @@ } }, { - "id": 11625, + "id": 10548, "properties": { "east": "true", "north": "false", @@ -28544,7 +26723,7 @@ } }, { - "id": 11626, + "id": 10549, "properties": { "east": "false", "north": "true", @@ -28554,7 +26733,7 @@ } }, { - "id": 11627, + "id": 10550, "properties": { "east": "false", "north": "true", @@ -28564,7 +26743,7 @@ } }, { - "id": 11628, + "id": 10551, "properties": { "east": "false", "north": "true", @@ -28574,7 +26753,7 @@ } }, { - "id": 11629, + "id": 10552, "properties": { "east": "false", "north": "true", @@ -28584,7 +26763,7 @@ } }, { - "id": 11630, + "id": 10553, "properties": { "east": "false", "north": "true", @@ -28594,7 +26773,7 @@ } }, { - "id": 11631, + "id": 10554, "properties": { "east": "false", "north": "true", @@ -28604,7 +26783,7 @@ } }, { - "id": 11632, + "id": 10555, "properties": { "east": "false", "north": "true", @@ -28614,7 +26793,7 @@ } }, { - "id": 11633, + "id": 10556, "properties": { "east": "false", "north": "true", @@ -28624,7 +26803,7 @@ } }, { - "id": 11634, + "id": 10557, "properties": { "east": "false", "north": "false", @@ -28634,7 +26813,7 @@ } }, { - "id": 11635, + "id": 10558, "properties": { "east": "false", "north": "false", @@ -28644,7 +26823,7 @@ } }, { - "id": 11636, + "id": 10559, "properties": { "east": "false", "north": "false", @@ -28654,7 +26833,7 @@ } }, { - "id": 11637, + "id": 10560, "properties": { "east": "false", "north": "false", @@ -28664,7 +26843,7 @@ } }, { - "id": 11638, + "id": 10561, "properties": { "east": "false", "north": "false", @@ -28674,7 +26853,7 @@ } }, { - "id": 11639, + "id": 10562, "properties": { "east": "false", "north": "false", @@ -28684,7 +26863,7 @@ } }, { - "id": 11640, + "id": 10563, "properties": { "east": "false", "north": "false", @@ -28695,7 +26874,7 @@ }, { "default": true, - "id": 11641, + "id": 10564, "properties": { "east": "false", "north": "false", @@ -28708,13 +26887,13 @@ }, "minecraft:blue_terracotta": { "definition": { - "type": "minecraft:block", + "type": "minecraft:terracotta", "properties": {} }, "states": [ { "default": true, - "id": 11253 + "id": 10176 } ] }, @@ -28735,25 +26914,25 @@ "states": [ { "default": true, - "id": 13025, + "id": 11948, "properties": { "facing": "north" } }, { - "id": 13026, + "id": 11949, "properties": { "facing": "south" } }, { - "id": 13027, + "id": 11950, "properties": { "facing": "west" } }, { - "id": 13028, + "id": 11951, "properties": { "facing": "east" } @@ -28786,20 +26965,20 @@ }, "states": [ { - "id": 14646, + "id": 13569, "properties": { "axis": "x" } }, { "default": true, - "id": 14647, + "id": 13570, "properties": { "axis": "y" } }, { - "id": 14648, + "id": 13571, "properties": { "axis": "z" } @@ -28833,13 +27012,13 @@ "states": [ { "default": true, - "id": 14957, + "id": 13848, "properties": { "waterlogged": "true" } }, { - "id": 14958, + "id": 13849, "properties": { "waterlogged": "false" } @@ -28855,7 +27034,7 @@ "states": [ { "default": true, - "id": 14941 + "id": 13832 } ] }, @@ -28874,13 +27053,13 @@ "states": [ { "default": true, - "id": 14977, + "id": 13868, "properties": { "waterlogged": "true" } }, { - "id": 14978, + "id": 13869, "properties": { "waterlogged": "false" } @@ -28908,56 +27087,56 @@ "states": [ { "default": true, - "id": 15033, + "id": 13924, "properties": { "facing": "north", "waterlogged": "true" } }, { - "id": 15034, + "id": 13925, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 15035, + "id": 13926, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 15036, + "id": 13927, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 15037, + "id": 13928, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 15038, + "id": 13929, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 15039, + "id": 13930, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 15040, + "id": 13931, "properties": { "facing": "east", "waterlogged": "false" @@ -28986,7 +27165,7 @@ }, "states": [ { - "id": 9251, + "id": 8174, "properties": { "has_bottle_0": "true", "has_bottle_1": "true", @@ -28994,7 +27173,7 @@ } }, { - "id": 9252, + "id": 8175, "properties": { "has_bottle_0": "true", "has_bottle_1": "true", @@ -29002,7 +27181,7 @@ } }, { - "id": 9253, + "id": 8176, "properties": { "has_bottle_0": "true", "has_bottle_1": "false", @@ -29010,7 +27189,7 @@ } }, { - "id": 9254, + "id": 8177, "properties": { "has_bottle_0": "true", "has_bottle_1": "false", @@ -29018,7 +27197,7 @@ } }, { - "id": 9255, + "id": 8178, "properties": { "has_bottle_0": "false", "has_bottle_1": "true", @@ -29026,7 +27205,7 @@ } }, { - "id": 9256, + "id": 8179, "properties": { "has_bottle_0": "false", "has_bottle_1": "true", @@ -29034,7 +27213,7 @@ } }, { - "id": 9257, + "id": 8180, "properties": { "has_bottle_0": "false", "has_bottle_1": "false", @@ -29043,7 +27222,7 @@ }, { "default": true, - "id": 9258, + "id": 8181, "properties": { "has_bottle_0": "false", "has_bottle_1": "false", @@ -29070,21 +27249,21 @@ }, "states": [ { - "id": 13230, + "id": 12153, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 13231, + "id": 12154, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 13232, + "id": 12155, "properties": { "type": "bottom", "waterlogged": "true" @@ -29092,21 +27271,21 @@ }, { "default": true, - "id": 13233, + "id": 12156, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 13234, + "id": 12157, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 13235, + "id": 12158, "properties": { "type": "double", "waterlogged": "false" @@ -29147,7 +27326,7 @@ }, "states": [ { - "id": 8477, + "id": 7400, "properties": { "facing": "north", "half": "top", @@ -29156,7 +27335,7 @@ } }, { - "id": 8478, + "id": 7401, "properties": { "facing": "north", "half": "top", @@ -29165,7 +27344,7 @@ } }, { - "id": 8479, + "id": 7402, "properties": { "facing": "north", "half": "top", @@ -29174,7 +27353,7 @@ } }, { - "id": 8480, + "id": 7403, "properties": { "facing": "north", "half": "top", @@ -29183,7 +27362,7 @@ } }, { - "id": 8481, + "id": 7404, "properties": { "facing": "north", "half": "top", @@ -29192,7 +27371,7 @@ } }, { - "id": 8482, + "id": 7405, "properties": { "facing": "north", "half": "top", @@ -29201,7 +27380,7 @@ } }, { - "id": 8483, + "id": 7406, "properties": { "facing": "north", "half": "top", @@ -29210,7 +27389,7 @@ } }, { - "id": 8484, + "id": 7407, "properties": { "facing": "north", "half": "top", @@ -29219,7 +27398,7 @@ } }, { - "id": 8485, + "id": 7408, "properties": { "facing": "north", "half": "top", @@ -29228,7 +27407,7 @@ } }, { - "id": 8486, + "id": 7409, "properties": { "facing": "north", "half": "top", @@ -29237,7 +27416,7 @@ } }, { - "id": 8487, + "id": 7410, "properties": { "facing": "north", "half": "bottom", @@ -29247,7 +27426,7 @@ }, { "default": true, - "id": 8488, + "id": 7411, "properties": { "facing": "north", "half": "bottom", @@ -29256,7 +27435,7 @@ } }, { - "id": 8489, + "id": 7412, "properties": { "facing": "north", "half": "bottom", @@ -29265,7 +27444,7 @@ } }, { - "id": 8490, + "id": 7413, "properties": { "facing": "north", "half": "bottom", @@ -29274,7 +27453,7 @@ } }, { - "id": 8491, + "id": 7414, "properties": { "facing": "north", "half": "bottom", @@ -29283,7 +27462,7 @@ } }, { - "id": 8492, + "id": 7415, "properties": { "facing": "north", "half": "bottom", @@ -29292,7 +27471,7 @@ } }, { - "id": 8493, + "id": 7416, "properties": { "facing": "north", "half": "bottom", @@ -29301,7 +27480,7 @@ } }, { - "id": 8494, + "id": 7417, "properties": { "facing": "north", "half": "bottom", @@ -29310,7 +27489,7 @@ } }, { - "id": 8495, + "id": 7418, "properties": { "facing": "north", "half": "bottom", @@ -29319,7 +27498,7 @@ } }, { - "id": 8496, + "id": 7419, "properties": { "facing": "north", "half": "bottom", @@ -29328,7 +27507,7 @@ } }, { - "id": 8497, + "id": 7420, "properties": { "facing": "south", "half": "top", @@ -29337,7 +27516,7 @@ } }, { - "id": 8498, + "id": 7421, "properties": { "facing": "south", "half": "top", @@ -29346,7 +27525,7 @@ } }, { - "id": 8499, + "id": 7422, "properties": { "facing": "south", "half": "top", @@ -29355,7 +27534,7 @@ } }, { - "id": 8500, + "id": 7423, "properties": { "facing": "south", "half": "top", @@ -29364,7 +27543,7 @@ } }, { - "id": 8501, + "id": 7424, "properties": { "facing": "south", "half": "top", @@ -29373,7 +27552,7 @@ } }, { - "id": 8502, + "id": 7425, "properties": { "facing": "south", "half": "top", @@ -29382,7 +27561,7 @@ } }, { - "id": 8503, + "id": 7426, "properties": { "facing": "south", "half": "top", @@ -29391,7 +27570,7 @@ } }, { - "id": 8504, + "id": 7427, "properties": { "facing": "south", "half": "top", @@ -29400,7 +27579,7 @@ } }, { - "id": 8505, + "id": 7428, "properties": { "facing": "south", "half": "top", @@ -29409,7 +27588,7 @@ } }, { - "id": 8506, + "id": 7429, "properties": { "facing": "south", "half": "top", @@ -29418,7 +27597,7 @@ } }, { - "id": 8507, + "id": 7430, "properties": { "facing": "south", "half": "bottom", @@ -29427,7 +27606,7 @@ } }, { - "id": 8508, + "id": 7431, "properties": { "facing": "south", "half": "bottom", @@ -29436,7 +27615,7 @@ } }, { - "id": 8509, + "id": 7432, "properties": { "facing": "south", "half": "bottom", @@ -29445,7 +27624,7 @@ } }, { - "id": 8510, + "id": 7433, "properties": { "facing": "south", "half": "bottom", @@ -29454,7 +27633,7 @@ } }, { - "id": 8511, + "id": 7434, "properties": { "facing": "south", "half": "bottom", @@ -29463,7 +27642,7 @@ } }, { - "id": 8512, + "id": 7435, "properties": { "facing": "south", "half": "bottom", @@ -29472,7 +27651,7 @@ } }, { - "id": 8513, + "id": 7436, "properties": { "facing": "south", "half": "bottom", @@ -29481,7 +27660,7 @@ } }, { - "id": 8514, + "id": 7437, "properties": { "facing": "south", "half": "bottom", @@ -29490,7 +27669,7 @@ } }, { - "id": 8515, + "id": 7438, "properties": { "facing": "south", "half": "bottom", @@ -29499,7 +27678,7 @@ } }, { - "id": 8516, + "id": 7439, "properties": { "facing": "south", "half": "bottom", @@ -29508,7 +27687,7 @@ } }, { - "id": 8517, + "id": 7440, "properties": { "facing": "west", "half": "top", @@ -29517,7 +27696,7 @@ } }, { - "id": 8518, + "id": 7441, "properties": { "facing": "west", "half": "top", @@ -29526,7 +27705,7 @@ } }, { - "id": 8519, + "id": 7442, "properties": { "facing": "west", "half": "top", @@ -29535,7 +27714,7 @@ } }, { - "id": 8520, + "id": 7443, "properties": { "facing": "west", "half": "top", @@ -29544,7 +27723,7 @@ } }, { - "id": 8521, + "id": 7444, "properties": { "facing": "west", "half": "top", @@ -29553,7 +27732,7 @@ } }, { - "id": 8522, + "id": 7445, "properties": { "facing": "west", "half": "top", @@ -29562,7 +27741,7 @@ } }, { - "id": 8523, + "id": 7446, "properties": { "facing": "west", "half": "top", @@ -29571,7 +27750,7 @@ } }, { - "id": 8524, + "id": 7447, "properties": { "facing": "west", "half": "top", @@ -29580,7 +27759,7 @@ } }, { - "id": 8525, + "id": 7448, "properties": { "facing": "west", "half": "top", @@ -29589,7 +27768,7 @@ } }, { - "id": 8526, + "id": 7449, "properties": { "facing": "west", "half": "top", @@ -29598,7 +27777,7 @@ } }, { - "id": 8527, + "id": 7450, "properties": { "facing": "west", "half": "bottom", @@ -29607,7 +27786,7 @@ } }, { - "id": 8528, + "id": 7451, "properties": { "facing": "west", "half": "bottom", @@ -29616,7 +27795,7 @@ } }, { - "id": 8529, + "id": 7452, "properties": { "facing": "west", "half": "bottom", @@ -29625,7 +27804,7 @@ } }, { - "id": 8530, + "id": 7453, "properties": { "facing": "west", "half": "bottom", @@ -29634,7 +27813,7 @@ } }, { - "id": 8531, + "id": 7454, "properties": { "facing": "west", "half": "bottom", @@ -29643,7 +27822,7 @@ } }, { - "id": 8532, + "id": 7455, "properties": { "facing": "west", "half": "bottom", @@ -29652,7 +27831,7 @@ } }, { - "id": 8533, + "id": 7456, "properties": { "facing": "west", "half": "bottom", @@ -29661,7 +27840,7 @@ } }, { - "id": 8534, + "id": 7457, "properties": { "facing": "west", "half": "bottom", @@ -29670,7 +27849,7 @@ } }, { - "id": 8535, + "id": 7458, "properties": { "facing": "west", "half": "bottom", @@ -29679,7 +27858,7 @@ } }, { - "id": 8536, + "id": 7459, "properties": { "facing": "west", "half": "bottom", @@ -29688,7 +27867,7 @@ } }, { - "id": 8537, + "id": 7460, "properties": { "facing": "east", "half": "top", @@ -29697,7 +27876,7 @@ } }, { - "id": 8538, + "id": 7461, "properties": { "facing": "east", "half": "top", @@ -29706,7 +27885,7 @@ } }, { - "id": 8539, + "id": 7462, "properties": { "facing": "east", "half": "top", @@ -29715,7 +27894,7 @@ } }, { - "id": 8540, + "id": 7463, "properties": { "facing": "east", "half": "top", @@ -29724,7 +27903,7 @@ } }, { - "id": 8541, + "id": 7464, "properties": { "facing": "east", "half": "top", @@ -29733,7 +27912,7 @@ } }, { - "id": 8542, + "id": 7465, "properties": { "facing": "east", "half": "top", @@ -29742,7 +27921,7 @@ } }, { - "id": 8543, + "id": 7466, "properties": { "facing": "east", "half": "top", @@ -29751,7 +27930,7 @@ } }, { - "id": 8544, + "id": 7467, "properties": { "facing": "east", "half": "top", @@ -29760,7 +27939,7 @@ } }, { - "id": 8545, + "id": 7468, "properties": { "facing": "east", "half": "top", @@ -29769,7 +27948,7 @@ } }, { - "id": 8546, + "id": 7469, "properties": { "facing": "east", "half": "top", @@ -29778,7 +27957,7 @@ } }, { - "id": 8547, + "id": 7470, "properties": { "facing": "east", "half": "bottom", @@ -29787,7 +27966,7 @@ } }, { - "id": 8548, + "id": 7471, "properties": { "facing": "east", "half": "bottom", @@ -29796,7 +27975,7 @@ } }, { - "id": 8549, + "id": 7472, "properties": { "facing": "east", "half": "bottom", @@ -29805,7 +27984,7 @@ } }, { - "id": 8550, + "id": 7473, "properties": { "facing": "east", "half": "bottom", @@ -29814,7 +27993,7 @@ } }, { - "id": 8551, + "id": 7474, "properties": { "facing": "east", "half": "bottom", @@ -29823,7 +28002,7 @@ } }, { - "id": 8552, + "id": 7475, "properties": { "facing": "east", "half": "bottom", @@ -29832,7 +28011,7 @@ } }, { - "id": 8553, + "id": 7476, "properties": { "facing": "east", "half": "bottom", @@ -29841,7 +28020,7 @@ } }, { - "id": 8554, + "id": 7477, "properties": { "facing": "east", "half": "bottom", @@ -29850,7 +28029,7 @@ } }, { - "id": 8555, + "id": 7478, "properties": { "facing": "east", "half": "bottom", @@ -29859,7 +28038,7 @@ } }, { - "id": 8556, + "id": 7479, "properties": { "facing": "east", "half": "bottom", @@ -29906,7 +28085,7 @@ }, "states": [ { - "id": 16292, + "id": 15183, "properties": { "east": "none", "north": "none", @@ -29917,7 +28096,7 @@ } }, { - "id": 16293, + "id": 15184, "properties": { "east": "none", "north": "none", @@ -29928,7 +28107,7 @@ } }, { - "id": 16294, + "id": 15185, "properties": { "east": "none", "north": "none", @@ -29940,7 +28119,7 @@ }, { "default": true, - "id": 16295, + "id": 15186, "properties": { "east": "none", "north": "none", @@ -29951,7 +28130,7 @@ } }, { - "id": 16296, + "id": 15187, "properties": { "east": "none", "north": "none", @@ -29962,7 +28141,7 @@ } }, { - "id": 16297, + "id": 15188, "properties": { "east": "none", "north": "none", @@ -29973,7 +28152,7 @@ } }, { - "id": 16298, + "id": 15189, "properties": { "east": "none", "north": "none", @@ -29984,7 +28163,7 @@ } }, { - "id": 16299, + "id": 15190, "properties": { "east": "none", "north": "none", @@ -29995,7 +28174,7 @@ } }, { - "id": 16300, + "id": 15191, "properties": { "east": "none", "north": "none", @@ -30006,7 +28185,7 @@ } }, { - "id": 16301, + "id": 15192, "properties": { "east": "none", "north": "none", @@ -30017,7 +28196,7 @@ } }, { - "id": 16302, + "id": 15193, "properties": { "east": "none", "north": "none", @@ -30028,7 +28207,7 @@ } }, { - "id": 16303, + "id": 15194, "properties": { "east": "none", "north": "none", @@ -30039,7 +28218,7 @@ } }, { - "id": 16304, + "id": 15195, "properties": { "east": "none", "north": "none", @@ -30050,7 +28229,7 @@ } }, { - "id": 16305, + "id": 15196, "properties": { "east": "none", "north": "none", @@ -30061,7 +28240,7 @@ } }, { - "id": 16306, + "id": 15197, "properties": { "east": "none", "north": "none", @@ -30072,7 +28251,7 @@ } }, { - "id": 16307, + "id": 15198, "properties": { "east": "none", "north": "none", @@ -30083,7 +28262,7 @@ } }, { - "id": 16308, + "id": 15199, "properties": { "east": "none", "north": "none", @@ -30094,7 +28273,7 @@ } }, { - "id": 16309, + "id": 15200, "properties": { "east": "none", "north": "none", @@ -30105,7 +28284,7 @@ } }, { - "id": 16310, + "id": 15201, "properties": { "east": "none", "north": "none", @@ -30116,7 +28295,7 @@ } }, { - "id": 16311, + "id": 15202, "properties": { "east": "none", "north": "none", @@ -30127,7 +28306,7 @@ } }, { - "id": 16312, + "id": 15203, "properties": { "east": "none", "north": "none", @@ -30138,7 +28317,7 @@ } }, { - "id": 16313, + "id": 15204, "properties": { "east": "none", "north": "none", @@ -30149,7 +28328,7 @@ } }, { - "id": 16314, + "id": 15205, "properties": { "east": "none", "north": "none", @@ -30160,7 +28339,7 @@ } }, { - "id": 16315, + "id": 15206, "properties": { "east": "none", "north": "none", @@ -30171,7 +28350,7 @@ } }, { - "id": 16316, + "id": 15207, "properties": { "east": "none", "north": "none", @@ -30182,7 +28361,7 @@ } }, { - "id": 16317, + "id": 15208, "properties": { "east": "none", "north": "none", @@ -30193,7 +28372,7 @@ } }, { - "id": 16318, + "id": 15209, "properties": { "east": "none", "north": "none", @@ -30204,7 +28383,7 @@ } }, { - "id": 16319, + "id": 15210, "properties": { "east": "none", "north": "none", @@ -30215,7 +28394,7 @@ } }, { - "id": 16320, + "id": 15211, "properties": { "east": "none", "north": "none", @@ -30226,7 +28405,7 @@ } }, { - "id": 16321, + "id": 15212, "properties": { "east": "none", "north": "none", @@ -30237,7 +28416,7 @@ } }, { - "id": 16322, + "id": 15213, "properties": { "east": "none", "north": "none", @@ -30248,7 +28427,7 @@ } }, { - "id": 16323, + "id": 15214, "properties": { "east": "none", "north": "none", @@ -30259,7 +28438,7 @@ } }, { - "id": 16324, + "id": 15215, "properties": { "east": "none", "north": "none", @@ -30270,7 +28449,7 @@ } }, { - "id": 16325, + "id": 15216, "properties": { "east": "none", "north": "none", @@ -30281,7 +28460,7 @@ } }, { - "id": 16326, + "id": 15217, "properties": { "east": "none", "north": "none", @@ -30292,7 +28471,7 @@ } }, { - "id": 16327, + "id": 15218, "properties": { "east": "none", "north": "none", @@ -30303,7 +28482,7 @@ } }, { - "id": 16328, + "id": 15219, "properties": { "east": "none", "north": "low", @@ -30314,7 +28493,7 @@ } }, { - "id": 16329, + "id": 15220, "properties": { "east": "none", "north": "low", @@ -30325,7 +28504,7 @@ } }, { - "id": 16330, + "id": 15221, "properties": { "east": "none", "north": "low", @@ -30336,7 +28515,7 @@ } }, { - "id": 16331, + "id": 15222, "properties": { "east": "none", "north": "low", @@ -30347,7 +28526,7 @@ } }, { - "id": 16332, + "id": 15223, "properties": { "east": "none", "north": "low", @@ -30358,7 +28537,7 @@ } }, { - "id": 16333, + "id": 15224, "properties": { "east": "none", "north": "low", @@ -30369,7 +28548,7 @@ } }, { - "id": 16334, + "id": 15225, "properties": { "east": "none", "north": "low", @@ -30380,7 +28559,7 @@ } }, { - "id": 16335, + "id": 15226, "properties": { "east": "none", "north": "low", @@ -30391,7 +28570,7 @@ } }, { - "id": 16336, + "id": 15227, "properties": { "east": "none", "north": "low", @@ -30402,7 +28581,7 @@ } }, { - "id": 16337, + "id": 15228, "properties": { "east": "none", "north": "low", @@ -30413,7 +28592,7 @@ } }, { - "id": 16338, + "id": 15229, "properties": { "east": "none", "north": "low", @@ -30424,7 +28603,7 @@ } }, { - "id": 16339, + "id": 15230, "properties": { "east": "none", "north": "low", @@ -30435,7 +28614,7 @@ } }, { - "id": 16340, + "id": 15231, "properties": { "east": "none", "north": "low", @@ -30446,7 +28625,7 @@ } }, { - "id": 16341, + "id": 15232, "properties": { "east": "none", "north": "low", @@ -30457,7 +28636,7 @@ } }, { - "id": 16342, + "id": 15233, "properties": { "east": "none", "north": "low", @@ -30468,7 +28647,7 @@ } }, { - "id": 16343, + "id": 15234, "properties": { "east": "none", "north": "low", @@ -30479,7 +28658,7 @@ } }, { - "id": 16344, + "id": 15235, "properties": { "east": "none", "north": "low", @@ -30490,7 +28669,7 @@ } }, { - "id": 16345, + "id": 15236, "properties": { "east": "none", "north": "low", @@ -30501,7 +28680,7 @@ } }, { - "id": 16346, + "id": 15237, "properties": { "east": "none", "north": "low", @@ -30512,7 +28691,7 @@ } }, { - "id": 16347, + "id": 15238, "properties": { "east": "none", "north": "low", @@ -30523,7 +28702,7 @@ } }, { - "id": 16348, + "id": 15239, "properties": { "east": "none", "north": "low", @@ -30534,7 +28713,7 @@ } }, { - "id": 16349, + "id": 15240, "properties": { "east": "none", "north": "low", @@ -30545,7 +28724,7 @@ } }, { - "id": 16350, + "id": 15241, "properties": { "east": "none", "north": "low", @@ -30556,7 +28735,7 @@ } }, { - "id": 16351, + "id": 15242, "properties": { "east": "none", "north": "low", @@ -30567,7 +28746,7 @@ } }, { - "id": 16352, + "id": 15243, "properties": { "east": "none", "north": "low", @@ -30578,7 +28757,7 @@ } }, { - "id": 16353, + "id": 15244, "properties": { "east": "none", "north": "low", @@ -30589,7 +28768,7 @@ } }, { - "id": 16354, + "id": 15245, "properties": { "east": "none", "north": "low", @@ -30600,7 +28779,7 @@ } }, { - "id": 16355, + "id": 15246, "properties": { "east": "none", "north": "low", @@ -30611,7 +28790,7 @@ } }, { - "id": 16356, + "id": 15247, "properties": { "east": "none", "north": "low", @@ -30622,7 +28801,7 @@ } }, { - "id": 16357, + "id": 15248, "properties": { "east": "none", "north": "low", @@ -30633,7 +28812,7 @@ } }, { - "id": 16358, + "id": 15249, "properties": { "east": "none", "north": "low", @@ -30644,7 +28823,7 @@ } }, { - "id": 16359, + "id": 15250, "properties": { "east": "none", "north": "low", @@ -30655,7 +28834,7 @@ } }, { - "id": 16360, + "id": 15251, "properties": { "east": "none", "north": "low", @@ -30666,7 +28845,7 @@ } }, { - "id": 16361, + "id": 15252, "properties": { "east": "none", "north": "low", @@ -30677,7 +28856,7 @@ } }, { - "id": 16362, + "id": 15253, "properties": { "east": "none", "north": "low", @@ -30688,7 +28867,7 @@ } }, { - "id": 16363, + "id": 15254, "properties": { "east": "none", "north": "low", @@ -30699,7 +28878,7 @@ } }, { - "id": 16364, + "id": 15255, "properties": { "east": "none", "north": "tall", @@ -30710,7 +28889,7 @@ } }, { - "id": 16365, + "id": 15256, "properties": { "east": "none", "north": "tall", @@ -30721,7 +28900,7 @@ } }, { - "id": 16366, + "id": 15257, "properties": { "east": "none", "north": "tall", @@ -30732,7 +28911,7 @@ } }, { - "id": 16367, + "id": 15258, "properties": { "east": "none", "north": "tall", @@ -30743,7 +28922,7 @@ } }, { - "id": 16368, + "id": 15259, "properties": { "east": "none", "north": "tall", @@ -30754,7 +28933,7 @@ } }, { - "id": 16369, + "id": 15260, "properties": { "east": "none", "north": "tall", @@ -30765,7 +28944,7 @@ } }, { - "id": 16370, + "id": 15261, "properties": { "east": "none", "north": "tall", @@ -30776,7 +28955,7 @@ } }, { - "id": 16371, + "id": 15262, "properties": { "east": "none", "north": "tall", @@ -30787,7 +28966,7 @@ } }, { - "id": 16372, + "id": 15263, "properties": { "east": "none", "north": "tall", @@ -30798,7 +28977,7 @@ } }, { - "id": 16373, + "id": 15264, "properties": { "east": "none", "north": "tall", @@ -30809,7 +28988,7 @@ } }, { - "id": 16374, + "id": 15265, "properties": { "east": "none", "north": "tall", @@ -30820,7 +28999,7 @@ } }, { - "id": 16375, + "id": 15266, "properties": { "east": "none", "north": "tall", @@ -30831,7 +29010,7 @@ } }, { - "id": 16376, + "id": 15267, "properties": { "east": "none", "north": "tall", @@ -30842,7 +29021,7 @@ } }, { - "id": 16377, + "id": 15268, "properties": { "east": "none", "north": "tall", @@ -30853,7 +29032,7 @@ } }, { - "id": 16378, + "id": 15269, "properties": { "east": "none", "north": "tall", @@ -30864,7 +29043,7 @@ } }, { - "id": 16379, + "id": 15270, "properties": { "east": "none", "north": "tall", @@ -30875,7 +29054,7 @@ } }, { - "id": 16380, + "id": 15271, "properties": { "east": "none", "north": "tall", @@ -30886,7 +29065,7 @@ } }, { - "id": 16381, + "id": 15272, "properties": { "east": "none", "north": "tall", @@ -30897,7 +29076,7 @@ } }, { - "id": 16382, + "id": 15273, "properties": { "east": "none", "north": "tall", @@ -30908,7 +29087,7 @@ } }, { - "id": 16383, + "id": 15274, "properties": { "east": "none", "north": "tall", @@ -30919,7 +29098,7 @@ } }, { - "id": 16384, + "id": 15275, "properties": { "east": "none", "north": "tall", @@ -30930,7 +29109,7 @@ } }, { - "id": 16385, + "id": 15276, "properties": { "east": "none", "north": "tall", @@ -30941,7 +29120,7 @@ } }, { - "id": 16386, + "id": 15277, "properties": { "east": "none", "north": "tall", @@ -30952,7 +29131,7 @@ } }, { - "id": 16387, + "id": 15278, "properties": { "east": "none", "north": "tall", @@ -30963,7 +29142,7 @@ } }, { - "id": 16388, + "id": 15279, "properties": { "east": "none", "north": "tall", @@ -30974,7 +29153,7 @@ } }, { - "id": 16389, + "id": 15280, "properties": { "east": "none", "north": "tall", @@ -30985,7 +29164,7 @@ } }, { - "id": 16390, + "id": 15281, "properties": { "east": "none", "north": "tall", @@ -30996,7 +29175,7 @@ } }, { - "id": 16391, + "id": 15282, "properties": { "east": "none", "north": "tall", @@ -31007,7 +29186,7 @@ } }, { - "id": 16392, + "id": 15283, "properties": { "east": "none", "north": "tall", @@ -31018,7 +29197,7 @@ } }, { - "id": 16393, + "id": 15284, "properties": { "east": "none", "north": "tall", @@ -31029,7 +29208,7 @@ } }, { - "id": 16394, + "id": 15285, "properties": { "east": "none", "north": "tall", @@ -31040,7 +29219,7 @@ } }, { - "id": 16395, + "id": 15286, "properties": { "east": "none", "north": "tall", @@ -31051,7 +29230,7 @@ } }, { - "id": 16396, + "id": 15287, "properties": { "east": "none", "north": "tall", @@ -31062,7 +29241,7 @@ } }, { - "id": 16397, + "id": 15288, "properties": { "east": "none", "north": "tall", @@ -31073,7 +29252,7 @@ } }, { - "id": 16398, + "id": 15289, "properties": { "east": "none", "north": "tall", @@ -31084,7 +29263,7 @@ } }, { - "id": 16399, + "id": 15290, "properties": { "east": "none", "north": "tall", @@ -31095,7 +29274,7 @@ } }, { - "id": 16400, + "id": 15291, "properties": { "east": "low", "north": "none", @@ -31106,7 +29285,7 @@ } }, { - "id": 16401, + "id": 15292, "properties": { "east": "low", "north": "none", @@ -31117,7 +29296,7 @@ } }, { - "id": 16402, + "id": 15293, "properties": { "east": "low", "north": "none", @@ -31128,7 +29307,7 @@ } }, { - "id": 16403, + "id": 15294, "properties": { "east": "low", "north": "none", @@ -31139,7 +29318,7 @@ } }, { - "id": 16404, + "id": 15295, "properties": { "east": "low", "north": "none", @@ -31150,7 +29329,7 @@ } }, { - "id": 16405, + "id": 15296, "properties": { "east": "low", "north": "none", @@ -31161,7 +29340,7 @@ } }, { - "id": 16406, + "id": 15297, "properties": { "east": "low", "north": "none", @@ -31172,7 +29351,7 @@ } }, { - "id": 16407, + "id": 15298, "properties": { "east": "low", "north": "none", @@ -31183,7 +29362,7 @@ } }, { - "id": 16408, + "id": 15299, "properties": { "east": "low", "north": "none", @@ -31194,7 +29373,7 @@ } }, { - "id": 16409, + "id": 15300, "properties": { "east": "low", "north": "none", @@ -31205,7 +29384,7 @@ } }, { - "id": 16410, + "id": 15301, "properties": { "east": "low", "north": "none", @@ -31216,7 +29395,7 @@ } }, { - "id": 16411, + "id": 15302, "properties": { "east": "low", "north": "none", @@ -31227,7 +29406,7 @@ } }, { - "id": 16412, + "id": 15303, "properties": { "east": "low", "north": "none", @@ -31238,7 +29417,7 @@ } }, { - "id": 16413, + "id": 15304, "properties": { "east": "low", "north": "none", @@ -31249,7 +29428,7 @@ } }, { - "id": 16414, + "id": 15305, "properties": { "east": "low", "north": "none", @@ -31260,7 +29439,7 @@ } }, { - "id": 16415, + "id": 15306, "properties": { "east": "low", "north": "none", @@ -31271,7 +29450,7 @@ } }, { - "id": 16416, + "id": 15307, "properties": { "east": "low", "north": "none", @@ -31282,7 +29461,7 @@ } }, { - "id": 16417, + "id": 15308, "properties": { "east": "low", "north": "none", @@ -31293,7 +29472,7 @@ } }, { - "id": 16418, + "id": 15309, "properties": { "east": "low", "north": "none", @@ -31304,7 +29483,7 @@ } }, { - "id": 16419, + "id": 15310, "properties": { "east": "low", "north": "none", @@ -31315,7 +29494,7 @@ } }, { - "id": 16420, + "id": 15311, "properties": { "east": "low", "north": "none", @@ -31326,7 +29505,7 @@ } }, { - "id": 16421, + "id": 15312, "properties": { "east": "low", "north": "none", @@ -31337,7 +29516,7 @@ } }, { - "id": 16422, + "id": 15313, "properties": { "east": "low", "north": "none", @@ -31348,7 +29527,7 @@ } }, { - "id": 16423, + "id": 15314, "properties": { "east": "low", "north": "none", @@ -31359,7 +29538,7 @@ } }, { - "id": 16424, + "id": 15315, "properties": { "east": "low", "north": "none", @@ -31370,7 +29549,7 @@ } }, { - "id": 16425, + "id": 15316, "properties": { "east": "low", "north": "none", @@ -31381,7 +29560,7 @@ } }, { - "id": 16426, + "id": 15317, "properties": { "east": "low", "north": "none", @@ -31392,7 +29571,7 @@ } }, { - "id": 16427, + "id": 15318, "properties": { "east": "low", "north": "none", @@ -31403,7 +29582,7 @@ } }, { - "id": 16428, + "id": 15319, "properties": { "east": "low", "north": "none", @@ -31414,7 +29593,7 @@ } }, { - "id": 16429, + "id": 15320, "properties": { "east": "low", "north": "none", @@ -31425,7 +29604,7 @@ } }, { - "id": 16430, + "id": 15321, "properties": { "east": "low", "north": "none", @@ -31436,7 +29615,7 @@ } }, { - "id": 16431, + "id": 15322, "properties": { "east": "low", "north": "none", @@ -31447,7 +29626,7 @@ } }, { - "id": 16432, + "id": 15323, "properties": { "east": "low", "north": "none", @@ -31458,7 +29637,7 @@ } }, { - "id": 16433, + "id": 15324, "properties": { "east": "low", "north": "none", @@ -31469,7 +29648,7 @@ } }, { - "id": 16434, + "id": 15325, "properties": { "east": "low", "north": "none", @@ -31480,7 +29659,7 @@ } }, { - "id": 16435, + "id": 15326, "properties": { "east": "low", "north": "none", @@ -31491,7 +29670,7 @@ } }, { - "id": 16436, + "id": 15327, "properties": { "east": "low", "north": "low", @@ -31502,7 +29681,7 @@ } }, { - "id": 16437, + "id": 15328, "properties": { "east": "low", "north": "low", @@ -31513,7 +29692,7 @@ } }, { - "id": 16438, + "id": 15329, "properties": { "east": "low", "north": "low", @@ -31524,7 +29703,7 @@ } }, { - "id": 16439, + "id": 15330, "properties": { "east": "low", "north": "low", @@ -31535,7 +29714,7 @@ } }, { - "id": 16440, + "id": 15331, "properties": { "east": "low", "north": "low", @@ -31546,7 +29725,7 @@ } }, { - "id": 16441, + "id": 15332, "properties": { "east": "low", "north": "low", @@ -31557,7 +29736,7 @@ } }, { - "id": 16442, + "id": 15333, "properties": { "east": "low", "north": "low", @@ -31568,7 +29747,7 @@ } }, { - "id": 16443, + "id": 15334, "properties": { "east": "low", "north": "low", @@ -31579,7 +29758,7 @@ } }, { - "id": 16444, + "id": 15335, "properties": { "east": "low", "north": "low", @@ -31590,7 +29769,7 @@ } }, { - "id": 16445, + "id": 15336, "properties": { "east": "low", "north": "low", @@ -31601,7 +29780,7 @@ } }, { - "id": 16446, + "id": 15337, "properties": { "east": "low", "north": "low", @@ -31612,7 +29791,7 @@ } }, { - "id": 16447, + "id": 15338, "properties": { "east": "low", "north": "low", @@ -31623,7 +29802,7 @@ } }, { - "id": 16448, + "id": 15339, "properties": { "east": "low", "north": "low", @@ -31634,7 +29813,7 @@ } }, { - "id": 16449, + "id": 15340, "properties": { "east": "low", "north": "low", @@ -31645,7 +29824,7 @@ } }, { - "id": 16450, + "id": 15341, "properties": { "east": "low", "north": "low", @@ -31656,7 +29835,7 @@ } }, { - "id": 16451, + "id": 15342, "properties": { "east": "low", "north": "low", @@ -31667,7 +29846,7 @@ } }, { - "id": 16452, + "id": 15343, "properties": { "east": "low", "north": "low", @@ -31678,7 +29857,7 @@ } }, { - "id": 16453, + "id": 15344, "properties": { "east": "low", "north": "low", @@ -31689,7 +29868,7 @@ } }, { - "id": 16454, + "id": 15345, "properties": { "east": "low", "north": "low", @@ -31700,7 +29879,7 @@ } }, { - "id": 16455, + "id": 15346, "properties": { "east": "low", "north": "low", @@ -31711,7 +29890,7 @@ } }, { - "id": 16456, + "id": 15347, "properties": { "east": "low", "north": "low", @@ -31722,7 +29901,7 @@ } }, { - "id": 16457, + "id": 15348, "properties": { "east": "low", "north": "low", @@ -31733,7 +29912,7 @@ } }, { - "id": 16458, + "id": 15349, "properties": { "east": "low", "north": "low", @@ -31744,7 +29923,7 @@ } }, { - "id": 16459, + "id": 15350, "properties": { "east": "low", "north": "low", @@ -31755,7 +29934,7 @@ } }, { - "id": 16460, + "id": 15351, "properties": { "east": "low", "north": "low", @@ -31766,7 +29945,7 @@ } }, { - "id": 16461, + "id": 15352, "properties": { "east": "low", "north": "low", @@ -31777,7 +29956,7 @@ } }, { - "id": 16462, + "id": 15353, "properties": { "east": "low", "north": "low", @@ -31788,7 +29967,7 @@ } }, { - "id": 16463, + "id": 15354, "properties": { "east": "low", "north": "low", @@ -31799,7 +29978,7 @@ } }, { - "id": 16464, + "id": 15355, "properties": { "east": "low", "north": "low", @@ -31810,7 +29989,7 @@ } }, { - "id": 16465, + "id": 15356, "properties": { "east": "low", "north": "low", @@ -31821,7 +30000,7 @@ } }, { - "id": 16466, + "id": 15357, "properties": { "east": "low", "north": "low", @@ -31832,7 +30011,7 @@ } }, { - "id": 16467, + "id": 15358, "properties": { "east": "low", "north": "low", @@ -31843,7 +30022,7 @@ } }, { - "id": 16468, + "id": 15359, "properties": { "east": "low", "north": "low", @@ -31854,7 +30033,7 @@ } }, { - "id": 16469, + "id": 15360, "properties": { "east": "low", "north": "low", @@ -31865,7 +30044,7 @@ } }, { - "id": 16470, + "id": 15361, "properties": { "east": "low", "north": "low", @@ -31876,7 +30055,7 @@ } }, { - "id": 16471, + "id": 15362, "properties": { "east": "low", "north": "low", @@ -31887,7 +30066,7 @@ } }, { - "id": 16472, + "id": 15363, "properties": { "east": "low", "north": "tall", @@ -31898,7 +30077,7 @@ } }, { - "id": 16473, + "id": 15364, "properties": { "east": "low", "north": "tall", @@ -31909,7 +30088,7 @@ } }, { - "id": 16474, + "id": 15365, "properties": { "east": "low", "north": "tall", @@ -31920,7 +30099,7 @@ } }, { - "id": 16475, + "id": 15366, "properties": { "east": "low", "north": "tall", @@ -31931,7 +30110,7 @@ } }, { - "id": 16476, + "id": 15367, "properties": { "east": "low", "north": "tall", @@ -31942,7 +30121,7 @@ } }, { - "id": 16477, + "id": 15368, "properties": { "east": "low", "north": "tall", @@ -31953,7 +30132,7 @@ } }, { - "id": 16478, + "id": 15369, "properties": { "east": "low", "north": "tall", @@ -31964,7 +30143,7 @@ } }, { - "id": 16479, + "id": 15370, "properties": { "east": "low", "north": "tall", @@ -31975,7 +30154,7 @@ } }, { - "id": 16480, + "id": 15371, "properties": { "east": "low", "north": "tall", @@ -31986,7 +30165,7 @@ } }, { - "id": 16481, + "id": 15372, "properties": { "east": "low", "north": "tall", @@ -31997,7 +30176,7 @@ } }, { - "id": 16482, + "id": 15373, "properties": { "east": "low", "north": "tall", @@ -32008,7 +30187,7 @@ } }, { - "id": 16483, + "id": 15374, "properties": { "east": "low", "north": "tall", @@ -32019,7 +30198,7 @@ } }, { - "id": 16484, + "id": 15375, "properties": { "east": "low", "north": "tall", @@ -32030,7 +30209,7 @@ } }, { - "id": 16485, + "id": 15376, "properties": { "east": "low", "north": "tall", @@ -32041,7 +30220,7 @@ } }, { - "id": 16486, + "id": 15377, "properties": { "east": "low", "north": "tall", @@ -32052,7 +30231,7 @@ } }, { - "id": 16487, + "id": 15378, "properties": { "east": "low", "north": "tall", @@ -32063,7 +30242,7 @@ } }, { - "id": 16488, + "id": 15379, "properties": { "east": "low", "north": "tall", @@ -32074,7 +30253,7 @@ } }, { - "id": 16489, + "id": 15380, "properties": { "east": "low", "north": "tall", @@ -32085,7 +30264,7 @@ } }, { - "id": 16490, + "id": 15381, "properties": { "east": "low", "north": "tall", @@ -32096,7 +30275,7 @@ } }, { - "id": 16491, + "id": 15382, "properties": { "east": "low", "north": "tall", @@ -32107,7 +30286,7 @@ } }, { - "id": 16492, + "id": 15383, "properties": { "east": "low", "north": "tall", @@ -32118,7 +30297,7 @@ } }, { - "id": 16493, + "id": 15384, "properties": { "east": "low", "north": "tall", @@ -32129,7 +30308,7 @@ } }, { - "id": 16494, + "id": 15385, "properties": { "east": "low", "north": "tall", @@ -32140,7 +30319,7 @@ } }, { - "id": 16495, + "id": 15386, "properties": { "east": "low", "north": "tall", @@ -32151,7 +30330,7 @@ } }, { - "id": 16496, + "id": 15387, "properties": { "east": "low", "north": "tall", @@ -32162,7 +30341,7 @@ } }, { - "id": 16497, + "id": 15388, "properties": { "east": "low", "north": "tall", @@ -32173,7 +30352,7 @@ } }, { - "id": 16498, + "id": 15389, "properties": { "east": "low", "north": "tall", @@ -32184,7 +30363,7 @@ } }, { - "id": 16499, + "id": 15390, "properties": { "east": "low", "north": "tall", @@ -32195,7 +30374,7 @@ } }, { - "id": 16500, + "id": 15391, "properties": { "east": "low", "north": "tall", @@ -32206,7 +30385,7 @@ } }, { - "id": 16501, + "id": 15392, "properties": { "east": "low", "north": "tall", @@ -32217,7 +30396,7 @@ } }, { - "id": 16502, + "id": 15393, "properties": { "east": "low", "north": "tall", @@ -32228,7 +30407,7 @@ } }, { - "id": 16503, + "id": 15394, "properties": { "east": "low", "north": "tall", @@ -32239,7 +30418,7 @@ } }, { - "id": 16504, + "id": 15395, "properties": { "east": "low", "north": "tall", @@ -32250,7 +30429,7 @@ } }, { - "id": 16505, + "id": 15396, "properties": { "east": "low", "north": "tall", @@ -32261,7 +30440,7 @@ } }, { - "id": 16506, + "id": 15397, "properties": { "east": "low", "north": "tall", @@ -32272,7 +30451,7 @@ } }, { - "id": 16507, + "id": 15398, "properties": { "east": "low", "north": "tall", @@ -32283,7 +30462,7 @@ } }, { - "id": 16508, + "id": 15399, "properties": { "east": "tall", "north": "none", @@ -32294,7 +30473,7 @@ } }, { - "id": 16509, + "id": 15400, "properties": { "east": "tall", "north": "none", @@ -32305,7 +30484,7 @@ } }, { - "id": 16510, + "id": 15401, "properties": { "east": "tall", "north": "none", @@ -32316,7 +30495,7 @@ } }, { - "id": 16511, + "id": 15402, "properties": { "east": "tall", "north": "none", @@ -32327,7 +30506,7 @@ } }, { - "id": 16512, + "id": 15403, "properties": { "east": "tall", "north": "none", @@ -32338,7 +30517,7 @@ } }, { - "id": 16513, + "id": 15404, "properties": { "east": "tall", "north": "none", @@ -32349,7 +30528,7 @@ } }, { - "id": 16514, + "id": 15405, "properties": { "east": "tall", "north": "none", @@ -32360,7 +30539,7 @@ } }, { - "id": 16515, + "id": 15406, "properties": { "east": "tall", "north": "none", @@ -32371,7 +30550,7 @@ } }, { - "id": 16516, + "id": 15407, "properties": { "east": "tall", "north": "none", @@ -32382,7 +30561,7 @@ } }, { - "id": 16517, + "id": 15408, "properties": { "east": "tall", "north": "none", @@ -32393,7 +30572,7 @@ } }, { - "id": 16518, + "id": 15409, "properties": { "east": "tall", "north": "none", @@ -32404,7 +30583,7 @@ } }, { - "id": 16519, + "id": 15410, "properties": { "east": "tall", "north": "none", @@ -32415,7 +30594,7 @@ } }, { - "id": 16520, + "id": 15411, "properties": { "east": "tall", "north": "none", @@ -32426,7 +30605,7 @@ } }, { - "id": 16521, + "id": 15412, "properties": { "east": "tall", "north": "none", @@ -32437,7 +30616,7 @@ } }, { - "id": 16522, + "id": 15413, "properties": { "east": "tall", "north": "none", @@ -32448,7 +30627,7 @@ } }, { - "id": 16523, + "id": 15414, "properties": { "east": "tall", "north": "none", @@ -32459,7 +30638,7 @@ } }, { - "id": 16524, + "id": 15415, "properties": { "east": "tall", "north": "none", @@ -32470,7 +30649,7 @@ } }, { - "id": 16525, + "id": 15416, "properties": { "east": "tall", "north": "none", @@ -32481,7 +30660,7 @@ } }, { - "id": 16526, + "id": 15417, "properties": { "east": "tall", "north": "none", @@ -32492,7 +30671,7 @@ } }, { - "id": 16527, + "id": 15418, "properties": { "east": "tall", "north": "none", @@ -32503,7 +30682,7 @@ } }, { - "id": 16528, + "id": 15419, "properties": { "east": "tall", "north": "none", @@ -32514,7 +30693,7 @@ } }, { - "id": 16529, + "id": 15420, "properties": { "east": "tall", "north": "none", @@ -32525,7 +30704,7 @@ } }, { - "id": 16530, + "id": 15421, "properties": { "east": "tall", "north": "none", @@ -32536,7 +30715,7 @@ } }, { - "id": 16531, + "id": 15422, "properties": { "east": "tall", "north": "none", @@ -32547,7 +30726,7 @@ } }, { - "id": 16532, + "id": 15423, "properties": { "east": "tall", "north": "none", @@ -32558,7 +30737,7 @@ } }, { - "id": 16533, + "id": 15424, "properties": { "east": "tall", "north": "none", @@ -32569,7 +30748,7 @@ } }, { - "id": 16534, + "id": 15425, "properties": { "east": "tall", "north": "none", @@ -32580,7 +30759,7 @@ } }, { - "id": 16535, + "id": 15426, "properties": { "east": "tall", "north": "none", @@ -32591,7 +30770,7 @@ } }, { - "id": 16536, + "id": 15427, "properties": { "east": "tall", "north": "none", @@ -32602,7 +30781,7 @@ } }, { - "id": 16537, + "id": 15428, "properties": { "east": "tall", "north": "none", @@ -32613,7 +30792,7 @@ } }, { - "id": 16538, + "id": 15429, "properties": { "east": "tall", "north": "none", @@ -32624,7 +30803,7 @@ } }, { - "id": 16539, + "id": 15430, "properties": { "east": "tall", "north": "none", @@ -32635,7 +30814,7 @@ } }, { - "id": 16540, + "id": 15431, "properties": { "east": "tall", "north": "none", @@ -32646,7 +30825,7 @@ } }, { - "id": 16541, + "id": 15432, "properties": { "east": "tall", "north": "none", @@ -32657,7 +30836,7 @@ } }, { - "id": 16542, + "id": 15433, "properties": { "east": "tall", "north": "none", @@ -32668,7 +30847,7 @@ } }, { - "id": 16543, + "id": 15434, "properties": { "east": "tall", "north": "none", @@ -32679,7 +30858,7 @@ } }, { - "id": 16544, + "id": 15435, "properties": { "east": "tall", "north": "low", @@ -32690,7 +30869,7 @@ } }, { - "id": 16545, + "id": 15436, "properties": { "east": "tall", "north": "low", @@ -32701,7 +30880,7 @@ } }, { - "id": 16546, + "id": 15437, "properties": { "east": "tall", "north": "low", @@ -32712,7 +30891,7 @@ } }, { - "id": 16547, + "id": 15438, "properties": { "east": "tall", "north": "low", @@ -32723,7 +30902,7 @@ } }, { - "id": 16548, + "id": 15439, "properties": { "east": "tall", "north": "low", @@ -32734,7 +30913,7 @@ } }, { - "id": 16549, + "id": 15440, "properties": { "east": "tall", "north": "low", @@ -32745,7 +30924,7 @@ } }, { - "id": 16550, + "id": 15441, "properties": { "east": "tall", "north": "low", @@ -32756,7 +30935,7 @@ } }, { - "id": 16551, + "id": 15442, "properties": { "east": "tall", "north": "low", @@ -32767,7 +30946,7 @@ } }, { - "id": 16552, + "id": 15443, "properties": { "east": "tall", "north": "low", @@ -32778,7 +30957,7 @@ } }, { - "id": 16553, + "id": 15444, "properties": { "east": "tall", "north": "low", @@ -32789,7 +30968,7 @@ } }, { - "id": 16554, + "id": 15445, "properties": { "east": "tall", "north": "low", @@ -32800,7 +30979,7 @@ } }, { - "id": 16555, + "id": 15446, "properties": { "east": "tall", "north": "low", @@ -32811,7 +30990,7 @@ } }, { - "id": 16556, + "id": 15447, "properties": { "east": "tall", "north": "low", @@ -32822,7 +31001,7 @@ } }, { - "id": 16557, + "id": 15448, "properties": { "east": "tall", "north": "low", @@ -32833,7 +31012,7 @@ } }, { - "id": 16558, + "id": 15449, "properties": { "east": "tall", "north": "low", @@ -32844,7 +31023,7 @@ } }, { - "id": 16559, + "id": 15450, "properties": { "east": "tall", "north": "low", @@ -32855,7 +31034,7 @@ } }, { - "id": 16560, + "id": 15451, "properties": { "east": "tall", "north": "low", @@ -32866,7 +31045,7 @@ } }, { - "id": 16561, + "id": 15452, "properties": { "east": "tall", "north": "low", @@ -32877,7 +31056,7 @@ } }, { - "id": 16562, + "id": 15453, "properties": { "east": "tall", "north": "low", @@ -32888,7 +31067,7 @@ } }, { - "id": 16563, + "id": 15454, "properties": { "east": "tall", "north": "low", @@ -32899,7 +31078,7 @@ } }, { - "id": 16564, + "id": 15455, "properties": { "east": "tall", "north": "low", @@ -32910,7 +31089,7 @@ } }, { - "id": 16565, + "id": 15456, "properties": { "east": "tall", "north": "low", @@ -32921,7 +31100,7 @@ } }, { - "id": 16566, + "id": 15457, "properties": { "east": "tall", "north": "low", @@ -32932,7 +31111,7 @@ } }, { - "id": 16567, + "id": 15458, "properties": { "east": "tall", "north": "low", @@ -32943,7 +31122,7 @@ } }, { - "id": 16568, + "id": 15459, "properties": { "east": "tall", "north": "low", @@ -32954,7 +31133,7 @@ } }, { - "id": 16569, + "id": 15460, "properties": { "east": "tall", "north": "low", @@ -32965,7 +31144,7 @@ } }, { - "id": 16570, + "id": 15461, "properties": { "east": "tall", "north": "low", @@ -32976,7 +31155,7 @@ } }, { - "id": 16571, + "id": 15462, "properties": { "east": "tall", "north": "low", @@ -32987,7 +31166,7 @@ } }, { - "id": 16572, + "id": 15463, "properties": { "east": "tall", "north": "low", @@ -32998,7 +31177,7 @@ } }, { - "id": 16573, + "id": 15464, "properties": { "east": "tall", "north": "low", @@ -33009,7 +31188,7 @@ } }, { - "id": 16574, + "id": 15465, "properties": { "east": "tall", "north": "low", @@ -33020,7 +31199,7 @@ } }, { - "id": 16575, + "id": 15466, "properties": { "east": "tall", "north": "low", @@ -33031,7 +31210,7 @@ } }, { - "id": 16576, + "id": 15467, "properties": { "east": "tall", "north": "low", @@ -33042,7 +31221,7 @@ } }, { - "id": 16577, + "id": 15468, "properties": { "east": "tall", "north": "low", @@ -33053,7 +31232,7 @@ } }, { - "id": 16578, + "id": 15469, "properties": { "east": "tall", "north": "low", @@ -33064,7 +31243,7 @@ } }, { - "id": 16579, + "id": 15470, "properties": { "east": "tall", "north": "low", @@ -33075,7 +31254,7 @@ } }, { - "id": 16580, + "id": 15471, "properties": { "east": "tall", "north": "tall", @@ -33086,7 +31265,7 @@ } }, { - "id": 16581, + "id": 15472, "properties": { "east": "tall", "north": "tall", @@ -33097,7 +31276,7 @@ } }, { - "id": 16582, + "id": 15473, "properties": { "east": "tall", "north": "tall", @@ -33108,7 +31287,7 @@ } }, { - "id": 16583, + "id": 15474, "properties": { "east": "tall", "north": "tall", @@ -33119,7 +31298,7 @@ } }, { - "id": 16584, + "id": 15475, "properties": { "east": "tall", "north": "tall", @@ -33130,7 +31309,7 @@ } }, { - "id": 16585, + "id": 15476, "properties": { "east": "tall", "north": "tall", @@ -33141,7 +31320,7 @@ } }, { - "id": 16586, + "id": 15477, "properties": { "east": "tall", "north": "tall", @@ -33152,7 +31331,7 @@ } }, { - "id": 16587, + "id": 15478, "properties": { "east": "tall", "north": "tall", @@ -33163,7 +31342,7 @@ } }, { - "id": 16588, + "id": 15479, "properties": { "east": "tall", "north": "tall", @@ -33174,7 +31353,7 @@ } }, { - "id": 16589, + "id": 15480, "properties": { "east": "tall", "north": "tall", @@ -33185,7 +31364,7 @@ } }, { - "id": 16590, + "id": 15481, "properties": { "east": "tall", "north": "tall", @@ -33196,7 +31375,7 @@ } }, { - "id": 16591, + "id": 15482, "properties": { "east": "tall", "north": "tall", @@ -33207,7 +31386,7 @@ } }, { - "id": 16592, + "id": 15483, "properties": { "east": "tall", "north": "tall", @@ -33218,7 +31397,7 @@ } }, { - "id": 16593, + "id": 15484, "properties": { "east": "tall", "north": "tall", @@ -33229,7 +31408,7 @@ } }, { - "id": 16594, + "id": 15485, "properties": { "east": "tall", "north": "tall", @@ -33240,7 +31419,7 @@ } }, { - "id": 16595, + "id": 15486, "properties": { "east": "tall", "north": "tall", @@ -33251,7 +31430,7 @@ } }, { - "id": 16596, + "id": 15487, "properties": { "east": "tall", "north": "tall", @@ -33262,7 +31441,7 @@ } }, { - "id": 16597, + "id": 15488, "properties": { "east": "tall", "north": "tall", @@ -33273,7 +31452,7 @@ } }, { - "id": 16598, + "id": 15489, "properties": { "east": "tall", "north": "tall", @@ -33284,7 +31463,7 @@ } }, { - "id": 16599, + "id": 15490, "properties": { "east": "tall", "north": "tall", @@ -33295,7 +31474,7 @@ } }, { - "id": 16600, + "id": 15491, "properties": { "east": "tall", "north": "tall", @@ -33306,7 +31485,7 @@ } }, { - "id": 16601, + "id": 15492, "properties": { "east": "tall", "north": "tall", @@ -33317,7 +31496,7 @@ } }, { - "id": 16602, + "id": 15493, "properties": { "east": "tall", "north": "tall", @@ -33328,7 +31507,7 @@ } }, { - "id": 16603, + "id": 15494, "properties": { "east": "tall", "north": "tall", @@ -33339,7 +31518,7 @@ } }, { - "id": 16604, + "id": 15495, "properties": { "east": "tall", "north": "tall", @@ -33350,7 +31529,7 @@ } }, { - "id": 16605, + "id": 15496, "properties": { "east": "tall", "north": "tall", @@ -33361,7 +31540,7 @@ } }, { - "id": 16606, + "id": 15497, "properties": { "east": "tall", "north": "tall", @@ -33372,7 +31551,7 @@ } }, { - "id": 16607, + "id": 15498, "properties": { "east": "tall", "north": "tall", @@ -33383,7 +31562,7 @@ } }, { - "id": 16608, + "id": 15499, "properties": { "east": "tall", "north": "tall", @@ -33394,7 +31573,7 @@ } }, { - "id": 16609, + "id": 15500, "properties": { "east": "tall", "north": "tall", @@ -33405,7 +31584,7 @@ } }, { - "id": 16610, + "id": 15501, "properties": { "east": "tall", "north": "tall", @@ -33416,7 +31595,7 @@ } }, { - "id": 16611, + "id": 15502, "properties": { "east": "tall", "north": "tall", @@ -33427,7 +31606,7 @@ } }, { - "id": 16612, + "id": 15503, "properties": { "east": "tall", "north": "tall", @@ -33438,7 +31617,7 @@ } }, { - "id": 16613, + "id": 15504, "properties": { "east": "tall", "north": "tall", @@ -33449,7 +31628,7 @@ } }, { - "id": 16614, + "id": 15505, "properties": { "east": "tall", "north": "tall", @@ -33460,7 +31639,7 @@ } }, { - "id": 16615, + "id": 15506, "properties": { "east": "tall", "north": "tall", @@ -33513,97 +31692,97 @@ "states": [ { "default": true, - "id": 12917, + "id": 11840, "properties": { "rotation": "0" } }, { - "id": 12918, + "id": 11841, "properties": { "rotation": "1" } }, { - "id": 12919, + "id": 11842, "properties": { "rotation": "2" } }, { - "id": 12920, + "id": 11843, "properties": { "rotation": "3" } }, { - "id": 12921, + "id": 11844, "properties": { "rotation": "4" } }, { - "id": 12922, + "id": 11845, "properties": { "rotation": "5" } }, { - "id": 12923, + "id": 11846, "properties": { "rotation": "6" } }, { - "id": 12924, + "id": 11847, "properties": { "rotation": "7" } }, { - "id": 12925, + "id": 11848, "properties": { "rotation": "8" } }, { - "id": 12926, + "id": 11849, "properties": { "rotation": "9" } }, { - "id": 12927, + "id": 11850, "properties": { "rotation": "10" } }, { - "id": 12928, + "id": 11851, "properties": { "rotation": "11" } }, { - "id": 12929, + "id": 11852, "properties": { "rotation": "12" } }, { - "id": 12930, + "id": 11853, "properties": { "rotation": "13" } }, { - "id": 12931, + "id": 11854, "properties": { "rotation": "14" } }, { - "id": 12932, + "id": 11855, "properties": { "rotation": "15" } @@ -33787,7 +31966,7 @@ }, "states": [ { - "id": 23102, + "id": 21961, "properties": { "candles": "1", "lit": "true", @@ -33795,7 +31974,7 @@ } }, { - "id": 23103, + "id": 21962, "properties": { "candles": "1", "lit": "true", @@ -33803,7 +31982,7 @@ } }, { - "id": 23104, + "id": 21963, "properties": { "candles": "1", "lit": "false", @@ -33812,7 +31991,7 @@ }, { "default": true, - "id": 23105, + "id": 21964, "properties": { "candles": "1", "lit": "false", @@ -33820,7 +31999,7 @@ } }, { - "id": 23106, + "id": 21965, "properties": { "candles": "2", "lit": "true", @@ -33828,7 +32007,7 @@ } }, { - "id": 23107, + "id": 21966, "properties": { "candles": "2", "lit": "true", @@ -33836,7 +32015,7 @@ } }, { - "id": 23108, + "id": 21967, "properties": { "candles": "2", "lit": "false", @@ -33844,7 +32023,7 @@ } }, { - "id": 23109, + "id": 21968, "properties": { "candles": "2", "lit": "false", @@ -33852,7 +32031,7 @@ } }, { - "id": 23110, + "id": 21969, "properties": { "candles": "3", "lit": "true", @@ -33860,7 +32039,7 @@ } }, { - "id": 23111, + "id": 21970, "properties": { "candles": "3", "lit": "true", @@ -33868,7 +32047,7 @@ } }, { - "id": 23112, + "id": 21971, "properties": { "candles": "3", "lit": "false", @@ -33876,7 +32055,7 @@ } }, { - "id": 23113, + "id": 21972, "properties": { "candles": "3", "lit": "false", @@ -33884,7 +32063,7 @@ } }, { - "id": 23114, + "id": 21973, "properties": { "candles": "4", "lit": "true", @@ -33892,7 +32071,7 @@ } }, { - "id": 23115, + "id": 21974, "properties": { "candles": "4", "lit": "true", @@ -33900,7 +32079,7 @@ } }, { - "id": 23116, + "id": 21975, "properties": { "candles": "4", "lit": "false", @@ -33908,7 +32087,7 @@ } }, { - "id": 23117, + "id": 21976, "properties": { "candles": "4", "lit": "false", @@ -33931,14 +32110,14 @@ }, "states": [ { - "id": 23192, + "id": 22051, "properties": { "lit": "true" } }, { "default": true, - "id": 23193, + "id": 22052, "properties": { "lit": "false" } @@ -33954,7 +32133,7 @@ "states": [ { "default": true, - "id": 12706 + "id": 11629 } ] }, @@ -33966,7 +32145,7 @@ "states": [ { "default": true, - "id": 14840 + "id": 13763 } ] }, @@ -33979,7 +32158,7 @@ "states": [ { "default": true, - "id": 14856 + "id": 13779 } ] }, @@ -33999,25 +32178,25 @@ "states": [ { "default": true, - "id": 14812, + "id": 13735, "properties": { "facing": "north" } }, { - "id": 14813, + "id": 13736, "properties": { "facing": "south" } }, { - "id": 14814, + "id": 13737, "properties": { "facing": "west" } }, { - "id": 14815, + "id": 13738, "properties": { "facing": "east" } @@ -34071,7 +32250,7 @@ "states": [ { "default": true, - "id": 7565, + "id": 6792, "properties": { "down": "true", "east": "true", @@ -34082,7 +32261,7 @@ } }, { - "id": 7566, + "id": 6793, "properties": { "down": "true", "east": "true", @@ -34093,7 +32272,7 @@ } }, { - "id": 7567, + "id": 6794, "properties": { "down": "true", "east": "true", @@ -34104,7 +32283,7 @@ } }, { - "id": 7568, + "id": 6795, "properties": { "down": "true", "east": "true", @@ -34115,7 +32294,7 @@ } }, { - "id": 7569, + "id": 6796, "properties": { "down": "true", "east": "true", @@ -34126,7 +32305,7 @@ } }, { - "id": 7570, + "id": 6797, "properties": { "down": "true", "east": "true", @@ -34137,7 +32316,7 @@ } }, { - "id": 7571, + "id": 6798, "properties": { "down": "true", "east": "true", @@ -34148,7 +32327,7 @@ } }, { - "id": 7572, + "id": 6799, "properties": { "down": "true", "east": "true", @@ -34159,7 +32338,7 @@ } }, { - "id": 7573, + "id": 6800, "properties": { "down": "true", "east": "true", @@ -34170,7 +32349,7 @@ } }, { - "id": 7574, + "id": 6801, "properties": { "down": "true", "east": "true", @@ -34181,7 +32360,7 @@ } }, { - "id": 7575, + "id": 6802, "properties": { "down": "true", "east": "true", @@ -34192,7 +32371,7 @@ } }, { - "id": 7576, + "id": 6803, "properties": { "down": "true", "east": "true", @@ -34203,7 +32382,7 @@ } }, { - "id": 7577, + "id": 6804, "properties": { "down": "true", "east": "true", @@ -34214,7 +32393,7 @@ } }, { - "id": 7578, + "id": 6805, "properties": { "down": "true", "east": "true", @@ -34225,7 +32404,7 @@ } }, { - "id": 7579, + "id": 6806, "properties": { "down": "true", "east": "true", @@ -34236,7 +32415,7 @@ } }, { - "id": 7580, + "id": 6807, "properties": { "down": "true", "east": "true", @@ -34247,7 +32426,7 @@ } }, { - "id": 7581, + "id": 6808, "properties": { "down": "true", "east": "false", @@ -34258,7 +32437,7 @@ } }, { - "id": 7582, + "id": 6809, "properties": { "down": "true", "east": "false", @@ -34269,7 +32448,7 @@ } }, { - "id": 7583, + "id": 6810, "properties": { "down": "true", "east": "false", @@ -34280,7 +32459,7 @@ } }, { - "id": 7584, + "id": 6811, "properties": { "down": "true", "east": "false", @@ -34291,7 +32470,7 @@ } }, { - "id": 7585, + "id": 6812, "properties": { "down": "true", "east": "false", @@ -34302,7 +32481,7 @@ } }, { - "id": 7586, + "id": 6813, "properties": { "down": "true", "east": "false", @@ -34313,7 +32492,7 @@ } }, { - "id": 7587, + "id": 6814, "properties": { "down": "true", "east": "false", @@ -34324,7 +32503,7 @@ } }, { - "id": 7588, + "id": 6815, "properties": { "down": "true", "east": "false", @@ -34335,7 +32514,7 @@ } }, { - "id": 7589, + "id": 6816, "properties": { "down": "true", "east": "false", @@ -34346,7 +32525,7 @@ } }, { - "id": 7590, + "id": 6817, "properties": { "down": "true", "east": "false", @@ -34357,7 +32536,7 @@ } }, { - "id": 7591, + "id": 6818, "properties": { "down": "true", "east": "false", @@ -34368,7 +32547,7 @@ } }, { - "id": 7592, + "id": 6819, "properties": { "down": "true", "east": "false", @@ -34379,7 +32558,7 @@ } }, { - "id": 7593, + "id": 6820, "properties": { "down": "true", "east": "false", @@ -34390,7 +32569,7 @@ } }, { - "id": 7594, + "id": 6821, "properties": { "down": "true", "east": "false", @@ -34401,7 +32580,7 @@ } }, { - "id": 7595, + "id": 6822, "properties": { "down": "true", "east": "false", @@ -34412,7 +32591,7 @@ } }, { - "id": 7596, + "id": 6823, "properties": { "down": "true", "east": "false", @@ -34423,7 +32602,7 @@ } }, { - "id": 7597, + "id": 6824, "properties": { "down": "false", "east": "true", @@ -34434,7 +32613,7 @@ } }, { - "id": 7598, + "id": 6825, "properties": { "down": "false", "east": "true", @@ -34445,7 +32624,7 @@ } }, { - "id": 7599, + "id": 6826, "properties": { "down": "false", "east": "true", @@ -34456,7 +32635,7 @@ } }, { - "id": 7600, + "id": 6827, "properties": { "down": "false", "east": "true", @@ -34467,7 +32646,7 @@ } }, { - "id": 7601, + "id": 6828, "properties": { "down": "false", "east": "true", @@ -34478,7 +32657,7 @@ } }, { - "id": 7602, + "id": 6829, "properties": { "down": "false", "east": "true", @@ -34489,7 +32668,7 @@ } }, { - "id": 7603, + "id": 6830, "properties": { "down": "false", "east": "true", @@ -34500,7 +32679,7 @@ } }, { - "id": 7604, + "id": 6831, "properties": { "down": "false", "east": "true", @@ -34511,7 +32690,7 @@ } }, { - "id": 7605, + "id": 6832, "properties": { "down": "false", "east": "true", @@ -34522,7 +32701,7 @@ } }, { - "id": 7606, + "id": 6833, "properties": { "down": "false", "east": "true", @@ -34533,7 +32712,7 @@ } }, { - "id": 7607, + "id": 6834, "properties": { "down": "false", "east": "true", @@ -34544,7 +32723,7 @@ } }, { - "id": 7608, + "id": 6835, "properties": { "down": "false", "east": "true", @@ -34555,7 +32734,7 @@ } }, { - "id": 7609, + "id": 6836, "properties": { "down": "false", "east": "true", @@ -34566,7 +32745,7 @@ } }, { - "id": 7610, + "id": 6837, "properties": { "down": "false", "east": "true", @@ -34577,7 +32756,7 @@ } }, { - "id": 7611, + "id": 6838, "properties": { "down": "false", "east": "true", @@ -34588,7 +32767,7 @@ } }, { - "id": 7612, + "id": 6839, "properties": { "down": "false", "east": "true", @@ -34599,7 +32778,7 @@ } }, { - "id": 7613, + "id": 6840, "properties": { "down": "false", "east": "false", @@ -34610,7 +32789,7 @@ } }, { - "id": 7614, + "id": 6841, "properties": { "down": "false", "east": "false", @@ -34621,7 +32800,7 @@ } }, { - "id": 7615, + "id": 6842, "properties": { "down": "false", "east": "false", @@ -34632,7 +32811,7 @@ } }, { - "id": 7616, + "id": 6843, "properties": { "down": "false", "east": "false", @@ -34643,7 +32822,7 @@ } }, { - "id": 7617, + "id": 6844, "properties": { "down": "false", "east": "false", @@ -34654,7 +32833,7 @@ } }, { - "id": 7618, + "id": 6845, "properties": { "down": "false", "east": "false", @@ -34665,7 +32844,7 @@ } }, { - "id": 7619, + "id": 6846, "properties": { "down": "false", "east": "false", @@ -34676,7 +32855,7 @@ } }, { - "id": 7620, + "id": 6847, "properties": { "down": "false", "east": "false", @@ -34687,7 +32866,7 @@ } }, { - "id": 7621, + "id": 6848, "properties": { "down": "false", "east": "false", @@ -34698,7 +32877,7 @@ } }, { - "id": 7622, + "id": 6849, "properties": { "down": "false", "east": "false", @@ -34709,7 +32888,7 @@ } }, { - "id": 7623, + "id": 6850, "properties": { "down": "false", "east": "false", @@ -34720,7 +32899,7 @@ } }, { - "id": 7624, + "id": 6851, "properties": { "down": "false", "east": "false", @@ -34731,7 +32910,7 @@ } }, { - "id": 7625, + "id": 6852, "properties": { "down": "false", "east": "false", @@ -34742,7 +32921,7 @@ } }, { - "id": 7626, + "id": 6853, "properties": { "down": "false", "east": "false", @@ -34753,7 +32932,7 @@ } }, { - "id": 7627, + "id": 6854, "properties": { "down": "false", "east": "false", @@ -34764,7 +32943,7 @@ } }, { - "id": 7628, + "id": 6855, "properties": { "down": "false", "east": "false", @@ -34794,38 +32973,38 @@ }, "states": [ { - "id": 14740, + "id": 13663, "properties": { "facing": "north" } }, { - "id": 14741, + "id": 13664, "properties": { "facing": "east" } }, { - "id": 14742, + "id": 13665, "properties": { "facing": "south" } }, { - "id": 14743, + "id": 13666, "properties": { "facing": "west" } }, { "default": true, - "id": 14744, + "id": 13667, "properties": { "facing": "up" } }, { - "id": 14745, + "id": 13668, "properties": { "facing": "down" } @@ -34841,7 +33020,7 @@ "states": [ { "default": true, - "id": 6909 + "id": 6136 } ] }, @@ -34875,7 +33054,7 @@ }, "states": [ { - "id": 11642, + "id": 10565, "properties": { "east": "true", "north": "true", @@ -34885,7 +33064,7 @@ } }, { - "id": 11643, + "id": 10566, "properties": { "east": "true", "north": "true", @@ -34895,7 +33074,7 @@ } }, { - "id": 11644, + "id": 10567, "properties": { "east": "true", "north": "true", @@ -34905,7 +33084,7 @@ } }, { - "id": 11645, + "id": 10568, "properties": { "east": "true", "north": "true", @@ -34915,7 +33094,7 @@ } }, { - "id": 11646, + "id": 10569, "properties": { "east": "true", "north": "true", @@ -34925,7 +33104,7 @@ } }, { - "id": 11647, + "id": 10570, "properties": { "east": "true", "north": "true", @@ -34935,7 +33114,7 @@ } }, { - "id": 11648, + "id": 10571, "properties": { "east": "true", "north": "true", @@ -34945,7 +33124,7 @@ } }, { - "id": 11649, + "id": 10572, "properties": { "east": "true", "north": "true", @@ -34955,7 +33134,7 @@ } }, { - "id": 11650, + "id": 10573, "properties": { "east": "true", "north": "false", @@ -34965,7 +33144,7 @@ } }, { - "id": 11651, + "id": 10574, "properties": { "east": "true", "north": "false", @@ -34975,7 +33154,7 @@ } }, { - "id": 11652, + "id": 10575, "properties": { "east": "true", "north": "false", @@ -34985,7 +33164,7 @@ } }, { - "id": 11653, + "id": 10576, "properties": { "east": "true", "north": "false", @@ -34995,7 +33174,7 @@ } }, { - "id": 11654, + "id": 10577, "properties": { "east": "true", "north": "false", @@ -35005,7 +33184,7 @@ } }, { - "id": 11655, + "id": 10578, "properties": { "east": "true", "north": "false", @@ -35015,7 +33194,7 @@ } }, { - "id": 11656, + "id": 10579, "properties": { "east": "true", "north": "false", @@ -35025,7 +33204,7 @@ } }, { - "id": 11657, + "id": 10580, "properties": { "east": "true", "north": "false", @@ -35035,7 +33214,7 @@ } }, { - "id": 11658, + "id": 10581, "properties": { "east": "false", "north": "true", @@ -35045,7 +33224,7 @@ } }, { - "id": 11659, + "id": 10582, "properties": { "east": "false", "north": "true", @@ -35055,7 +33234,7 @@ } }, { - "id": 11660, + "id": 10583, "properties": { "east": "false", "north": "true", @@ -35065,7 +33244,7 @@ } }, { - "id": 11661, + "id": 10584, "properties": { "east": "false", "north": "true", @@ -35075,7 +33254,7 @@ } }, { - "id": 11662, + "id": 10585, "properties": { "east": "false", "north": "true", @@ -35085,7 +33264,7 @@ } }, { - "id": 11663, + "id": 10586, "properties": { "east": "false", "north": "true", @@ -35095,7 +33274,7 @@ } }, { - "id": 11664, + "id": 10587, "properties": { "east": "false", "north": "true", @@ -35105,7 +33284,7 @@ } }, { - "id": 11665, + "id": 10588, "properties": { "east": "false", "north": "true", @@ -35115,7 +33294,7 @@ } }, { - "id": 11666, + "id": 10589, "properties": { "east": "false", "north": "false", @@ -35125,7 +33304,7 @@ } }, { - "id": 11667, + "id": 10590, "properties": { "east": "false", "north": "false", @@ -35135,7 +33314,7 @@ } }, { - "id": 11668, + "id": 10591, "properties": { "east": "false", "north": "false", @@ -35145,7 +33324,7 @@ } }, { - "id": 11669, + "id": 10592, "properties": { "east": "false", "north": "false", @@ -35155,7 +33334,7 @@ } }, { - "id": 11670, + "id": 10593, "properties": { "east": "false", "north": "false", @@ -35165,7 +33344,7 @@ } }, { - "id": 11671, + "id": 10594, "properties": { "east": "false", "north": "false", @@ -35175,7 +33354,7 @@ } }, { - "id": 11672, + "id": 10595, "properties": { "east": "false", "north": "false", @@ -35186,7 +33365,7 @@ }, { "default": true, - "id": 11673, + "id": 10596, "properties": { "east": "false", "north": "false", @@ -35199,13 +33378,13 @@ }, "minecraft:brown_terracotta": { "definition": { - "type": "minecraft:block", + "type": "minecraft:terracotta", "properties": {} }, "states": [ { "default": true, - "id": 11254 + "id": 10177 } ] }, @@ -35226,25 +33405,25 @@ "states": [ { "default": true, - "id": 13029, + "id": 11952, "properties": { "facing": "north" } }, { - "id": 13030, + "id": 11953, "properties": { "facing": "south" } }, { - "id": 13031, + "id": 11954, "properties": { "facing": "west" } }, { - "id": 13032, + "id": 11955, "properties": { "facing": "east" } @@ -35277,13 +33456,13 @@ "states": [ { "default": true, - "id": 15092, + "id": 13983, "properties": { "drag": "true" } }, { - "id": 15093, + "id": 13984, "properties": { "drag": "false" } @@ -35305,13 +33484,13 @@ "states": [ { "default": true, - "id": 14959, + "id": 13850, "properties": { "waterlogged": "true" } }, { - "id": 14960, + "id": 13851, "properties": { "waterlogged": "false" } @@ -35327,7 +33506,7 @@ "states": [ { "default": true, - "id": 14942 + "id": 13833 } ] }, @@ -35346,13 +33525,13 @@ "states": [ { "default": true, - "id": 14979, + "id": 13870, "properties": { "waterlogged": "true" } }, { - "id": 14980, + "id": 13871, "properties": { "waterlogged": "false" } @@ -35380,56 +33559,56 @@ "states": [ { "default": true, - "id": 15041, + "id": 13932, "properties": { "facing": "north", "waterlogged": "true" } }, { - "id": 15042, + "id": 13933, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 15043, + "id": 13934, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 15044, + "id": 13935, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 15045, + "id": 13936, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 15046, + "id": 13937, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 15047, + "id": 13938, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 15048, + "id": 13939, "properties": { "facing": "east", "waterlogged": "false" @@ -35445,7 +33624,7 @@ "states": [ { "default": true, - "id": 23201 + "id": 22060 } ] }, @@ -35489,97 +33668,97 @@ "states": [ { "default": true, - "id": 6728, + "id": 5960, "properties": { "age": "0" } }, { - "id": 6729, + "id": 5961, "properties": { "age": "1" } }, { - "id": 6730, + "id": 5962, "properties": { "age": "2" } }, { - "id": 6731, + "id": 5963, "properties": { "age": "3" } }, { - "id": 6732, + "id": 5964, "properties": { "age": "4" } }, { - "id": 6733, + "id": 5965, "properties": { "age": "5" } }, { - "id": 6734, + "id": 5966, "properties": { "age": "6" } }, { - "id": 6735, + "id": 5967, "properties": { "age": "7" } }, { - "id": 6736, + "id": 5968, "properties": { "age": "8" } }, { - "id": 6737, + "id": 5969, "properties": { "age": "9" } }, { - "id": 6738, + "id": 5970, "properties": { "age": "10" } }, { - "id": 6739, + "id": 5971, "properties": { "age": "11" } }, { - "id": 6740, + "id": 5972, "properties": { "age": "12" } }, { - "id": 6741, + "id": 5973, "properties": { "age": "13" } }, { - "id": 6742, + "id": 5974, "properties": { "age": "14" } }, { - "id": 6743, + "id": 5975, "properties": { "age": "15" } @@ -35594,7 +33773,7 @@ "states": [ { "default": true, - "id": 6744 + "id": 5976 } ] }, @@ -35617,43 +33796,43 @@ "states": [ { "default": true, - "id": 6826, + "id": 6053, "properties": { "bites": "0" } }, { - "id": 6827, + "id": 6054, "properties": { "bites": "1" } }, { - "id": 6828, + "id": 6055, "properties": { "bites": "2" } }, { - "id": 6829, + "id": 6056, "properties": { "bites": "3" } }, { - "id": 6830, + "id": 6057, "properties": { "bites": "4" } }, { - "id": 6831, + "id": 6058, "properties": { "bites": "5" } }, { - "id": 6832, + "id": 6059, "properties": { "bites": "6" } @@ -35668,7 +33847,7 @@ "states": [ { "default": true, - "id": 24485 + "id": 23344 } ] }, @@ -35714,7 +33893,7 @@ }, "states": [ { - "id": 24584, + "id": 23443, "properties": { "facing": "north", "power": "0", @@ -35724,7 +33903,7 @@ }, { "default": true, - "id": 24585, + "id": 23444, "properties": { "facing": "north", "power": "0", @@ -35733,7 +33912,7 @@ } }, { - "id": 24586, + "id": 23445, "properties": { "facing": "north", "power": "0", @@ -35742,7 +33921,7 @@ } }, { - "id": 24587, + "id": 23446, "properties": { "facing": "north", "power": "0", @@ -35751,7 +33930,7 @@ } }, { - "id": 24588, + "id": 23447, "properties": { "facing": "north", "power": "0", @@ -35760,7 +33939,7 @@ } }, { - "id": 24589, + "id": 23448, "properties": { "facing": "north", "power": "0", @@ -35769,7 +33948,7 @@ } }, { - "id": 24590, + "id": 23449, "properties": { "facing": "north", "power": "1", @@ -35778,7 +33957,7 @@ } }, { - "id": 24591, + "id": 23450, "properties": { "facing": "north", "power": "1", @@ -35787,7 +33966,7 @@ } }, { - "id": 24592, + "id": 23451, "properties": { "facing": "north", "power": "1", @@ -35796,7 +33975,7 @@ } }, { - "id": 24593, + "id": 23452, "properties": { "facing": "north", "power": "1", @@ -35805,7 +33984,7 @@ } }, { - "id": 24594, + "id": 23453, "properties": { "facing": "north", "power": "1", @@ -35814,7 +33993,7 @@ } }, { - "id": 24595, + "id": 23454, "properties": { "facing": "north", "power": "1", @@ -35823,7 +34002,7 @@ } }, { - "id": 24596, + "id": 23455, "properties": { "facing": "north", "power": "2", @@ -35832,7 +34011,7 @@ } }, { - "id": 24597, + "id": 23456, "properties": { "facing": "north", "power": "2", @@ -35841,7 +34020,7 @@ } }, { - "id": 24598, + "id": 23457, "properties": { "facing": "north", "power": "2", @@ -35850,7 +34029,7 @@ } }, { - "id": 24599, + "id": 23458, "properties": { "facing": "north", "power": "2", @@ -35859,7 +34038,7 @@ } }, { - "id": 24600, + "id": 23459, "properties": { "facing": "north", "power": "2", @@ -35868,7 +34047,7 @@ } }, { - "id": 24601, + "id": 23460, "properties": { "facing": "north", "power": "2", @@ -35877,7 +34056,7 @@ } }, { - "id": 24602, + "id": 23461, "properties": { "facing": "north", "power": "3", @@ -35886,7 +34065,7 @@ } }, { - "id": 24603, + "id": 23462, "properties": { "facing": "north", "power": "3", @@ -35895,7 +34074,7 @@ } }, { - "id": 24604, + "id": 23463, "properties": { "facing": "north", "power": "3", @@ -35904,7 +34083,7 @@ } }, { - "id": 24605, + "id": 23464, "properties": { "facing": "north", "power": "3", @@ -35913,7 +34092,7 @@ } }, { - "id": 24606, + "id": 23465, "properties": { "facing": "north", "power": "3", @@ -35922,7 +34101,7 @@ } }, { - "id": 24607, + "id": 23466, "properties": { "facing": "north", "power": "3", @@ -35931,7 +34110,7 @@ } }, { - "id": 24608, + "id": 23467, "properties": { "facing": "north", "power": "4", @@ -35940,7 +34119,7 @@ } }, { - "id": 24609, + "id": 23468, "properties": { "facing": "north", "power": "4", @@ -35949,7 +34128,7 @@ } }, { - "id": 24610, + "id": 23469, "properties": { "facing": "north", "power": "4", @@ -35958,7 +34137,7 @@ } }, { - "id": 24611, + "id": 23470, "properties": { "facing": "north", "power": "4", @@ -35967,7 +34146,7 @@ } }, { - "id": 24612, + "id": 23471, "properties": { "facing": "north", "power": "4", @@ -35976,7 +34155,7 @@ } }, { - "id": 24613, + "id": 23472, "properties": { "facing": "north", "power": "4", @@ -35985,7 +34164,7 @@ } }, { - "id": 24614, + "id": 23473, "properties": { "facing": "north", "power": "5", @@ -35994,7 +34173,7 @@ } }, { - "id": 24615, + "id": 23474, "properties": { "facing": "north", "power": "5", @@ -36003,7 +34182,7 @@ } }, { - "id": 24616, + "id": 23475, "properties": { "facing": "north", "power": "5", @@ -36012,7 +34191,7 @@ } }, { - "id": 24617, + "id": 23476, "properties": { "facing": "north", "power": "5", @@ -36021,7 +34200,7 @@ } }, { - "id": 24618, + "id": 23477, "properties": { "facing": "north", "power": "5", @@ -36030,7 +34209,7 @@ } }, { - "id": 24619, + "id": 23478, "properties": { "facing": "north", "power": "5", @@ -36039,7 +34218,7 @@ } }, { - "id": 24620, + "id": 23479, "properties": { "facing": "north", "power": "6", @@ -36048,7 +34227,7 @@ } }, { - "id": 24621, + "id": 23480, "properties": { "facing": "north", "power": "6", @@ -36057,7 +34236,7 @@ } }, { - "id": 24622, + "id": 23481, "properties": { "facing": "north", "power": "6", @@ -36066,7 +34245,7 @@ } }, { - "id": 24623, + "id": 23482, "properties": { "facing": "north", "power": "6", @@ -36075,7 +34254,7 @@ } }, { - "id": 24624, + "id": 23483, "properties": { "facing": "north", "power": "6", @@ -36084,7 +34263,7 @@ } }, { - "id": 24625, + "id": 23484, "properties": { "facing": "north", "power": "6", @@ -36093,7 +34272,7 @@ } }, { - "id": 24626, + "id": 23485, "properties": { "facing": "north", "power": "7", @@ -36102,7 +34281,7 @@ } }, { - "id": 24627, + "id": 23486, "properties": { "facing": "north", "power": "7", @@ -36111,7 +34290,7 @@ } }, { - "id": 24628, + "id": 23487, "properties": { "facing": "north", "power": "7", @@ -36120,7 +34299,7 @@ } }, { - "id": 24629, + "id": 23488, "properties": { "facing": "north", "power": "7", @@ -36129,7 +34308,7 @@ } }, { - "id": 24630, + "id": 23489, "properties": { "facing": "north", "power": "7", @@ -36138,7 +34317,7 @@ } }, { - "id": 24631, + "id": 23490, "properties": { "facing": "north", "power": "7", @@ -36147,7 +34326,7 @@ } }, { - "id": 24632, + "id": 23491, "properties": { "facing": "north", "power": "8", @@ -36156,7 +34335,7 @@ } }, { - "id": 24633, + "id": 23492, "properties": { "facing": "north", "power": "8", @@ -36165,7 +34344,7 @@ } }, { - "id": 24634, + "id": 23493, "properties": { "facing": "north", "power": "8", @@ -36174,7 +34353,7 @@ } }, { - "id": 24635, + "id": 23494, "properties": { "facing": "north", "power": "8", @@ -36183,7 +34362,7 @@ } }, { - "id": 24636, + "id": 23495, "properties": { "facing": "north", "power": "8", @@ -36192,7 +34371,7 @@ } }, { - "id": 24637, + "id": 23496, "properties": { "facing": "north", "power": "8", @@ -36201,7 +34380,7 @@ } }, { - "id": 24638, + "id": 23497, "properties": { "facing": "north", "power": "9", @@ -36210,7 +34389,7 @@ } }, { - "id": 24639, + "id": 23498, "properties": { "facing": "north", "power": "9", @@ -36219,7 +34398,7 @@ } }, { - "id": 24640, + "id": 23499, "properties": { "facing": "north", "power": "9", @@ -36228,7 +34407,7 @@ } }, { - "id": 24641, + "id": 23500, "properties": { "facing": "north", "power": "9", @@ -36237,7 +34416,7 @@ } }, { - "id": 24642, + "id": 23501, "properties": { "facing": "north", "power": "9", @@ -36246,7 +34425,7 @@ } }, { - "id": 24643, + "id": 23502, "properties": { "facing": "north", "power": "9", @@ -36255,7 +34434,7 @@ } }, { - "id": 24644, + "id": 23503, "properties": { "facing": "north", "power": "10", @@ -36264,7 +34443,7 @@ } }, { - "id": 24645, + "id": 23504, "properties": { "facing": "north", "power": "10", @@ -36273,7 +34452,7 @@ } }, { - "id": 24646, + "id": 23505, "properties": { "facing": "north", "power": "10", @@ -36282,7 +34461,7 @@ } }, { - "id": 24647, + "id": 23506, "properties": { "facing": "north", "power": "10", @@ -36291,7 +34470,7 @@ } }, { - "id": 24648, + "id": 23507, "properties": { "facing": "north", "power": "10", @@ -36300,7 +34479,7 @@ } }, { - "id": 24649, + "id": 23508, "properties": { "facing": "north", "power": "10", @@ -36309,7 +34488,7 @@ } }, { - "id": 24650, + "id": 23509, "properties": { "facing": "north", "power": "11", @@ -36318,7 +34497,7 @@ } }, { - "id": 24651, + "id": 23510, "properties": { "facing": "north", "power": "11", @@ -36327,7 +34506,7 @@ } }, { - "id": 24652, + "id": 23511, "properties": { "facing": "north", "power": "11", @@ -36336,7 +34515,7 @@ } }, { - "id": 24653, + "id": 23512, "properties": { "facing": "north", "power": "11", @@ -36345,7 +34524,7 @@ } }, { - "id": 24654, + "id": 23513, "properties": { "facing": "north", "power": "11", @@ -36354,7 +34533,7 @@ } }, { - "id": 24655, + "id": 23514, "properties": { "facing": "north", "power": "11", @@ -36363,7 +34542,7 @@ } }, { - "id": 24656, + "id": 23515, "properties": { "facing": "north", "power": "12", @@ -36372,7 +34551,7 @@ } }, { - "id": 24657, + "id": 23516, "properties": { "facing": "north", "power": "12", @@ -36381,7 +34560,7 @@ } }, { - "id": 24658, + "id": 23517, "properties": { "facing": "north", "power": "12", @@ -36390,7 +34569,7 @@ } }, { - "id": 24659, + "id": 23518, "properties": { "facing": "north", "power": "12", @@ -36399,7 +34578,7 @@ } }, { - "id": 24660, + "id": 23519, "properties": { "facing": "north", "power": "12", @@ -36408,7 +34587,7 @@ } }, { - "id": 24661, + "id": 23520, "properties": { "facing": "north", "power": "12", @@ -36417,7 +34596,7 @@ } }, { - "id": 24662, + "id": 23521, "properties": { "facing": "north", "power": "13", @@ -36426,7 +34605,7 @@ } }, { - "id": 24663, + "id": 23522, "properties": { "facing": "north", "power": "13", @@ -36435,7 +34614,7 @@ } }, { - "id": 24664, + "id": 23523, "properties": { "facing": "north", "power": "13", @@ -36444,7 +34623,7 @@ } }, { - "id": 24665, + "id": 23524, "properties": { "facing": "north", "power": "13", @@ -36453,7 +34632,7 @@ } }, { - "id": 24666, + "id": 23525, "properties": { "facing": "north", "power": "13", @@ -36462,7 +34641,7 @@ } }, { - "id": 24667, + "id": 23526, "properties": { "facing": "north", "power": "13", @@ -36471,7 +34650,7 @@ } }, { - "id": 24668, + "id": 23527, "properties": { "facing": "north", "power": "14", @@ -36480,7 +34659,7 @@ } }, { - "id": 24669, + "id": 23528, "properties": { "facing": "north", "power": "14", @@ -36489,7 +34668,7 @@ } }, { - "id": 24670, + "id": 23529, "properties": { "facing": "north", "power": "14", @@ -36498,7 +34677,7 @@ } }, { - "id": 24671, + "id": 23530, "properties": { "facing": "north", "power": "14", @@ -36507,7 +34686,7 @@ } }, { - "id": 24672, + "id": 23531, "properties": { "facing": "north", "power": "14", @@ -36516,7 +34695,7 @@ } }, { - "id": 24673, + "id": 23532, "properties": { "facing": "north", "power": "14", @@ -36525,7 +34704,7 @@ } }, { - "id": 24674, + "id": 23533, "properties": { "facing": "north", "power": "15", @@ -36534,7 +34713,7 @@ } }, { - "id": 24675, + "id": 23534, "properties": { "facing": "north", "power": "15", @@ -36543,7 +34722,7 @@ } }, { - "id": 24676, + "id": 23535, "properties": { "facing": "north", "power": "15", @@ -36552,7 +34731,7 @@ } }, { - "id": 24677, + "id": 23536, "properties": { "facing": "north", "power": "15", @@ -36561,7 +34740,7 @@ } }, { - "id": 24678, + "id": 23537, "properties": { "facing": "north", "power": "15", @@ -36570,7 +34749,7 @@ } }, { - "id": 24679, + "id": 23538, "properties": { "facing": "north", "power": "15", @@ -36579,7 +34758,7 @@ } }, { - "id": 24680, + "id": 23539, "properties": { "facing": "south", "power": "0", @@ -36588,7 +34767,7 @@ } }, { - "id": 24681, + "id": 23540, "properties": { "facing": "south", "power": "0", @@ -36597,7 +34776,7 @@ } }, { - "id": 24682, + "id": 23541, "properties": { "facing": "south", "power": "0", @@ -36606,7 +34785,7 @@ } }, { - "id": 24683, + "id": 23542, "properties": { "facing": "south", "power": "0", @@ -36615,7 +34794,7 @@ } }, { - "id": 24684, + "id": 23543, "properties": { "facing": "south", "power": "0", @@ -36624,7 +34803,7 @@ } }, { - "id": 24685, + "id": 23544, "properties": { "facing": "south", "power": "0", @@ -36633,7 +34812,7 @@ } }, { - "id": 24686, + "id": 23545, "properties": { "facing": "south", "power": "1", @@ -36642,7 +34821,7 @@ } }, { - "id": 24687, + "id": 23546, "properties": { "facing": "south", "power": "1", @@ -36651,7 +34830,7 @@ } }, { - "id": 24688, + "id": 23547, "properties": { "facing": "south", "power": "1", @@ -36660,7 +34839,7 @@ } }, { - "id": 24689, + "id": 23548, "properties": { "facing": "south", "power": "1", @@ -36669,7 +34848,7 @@ } }, { - "id": 24690, + "id": 23549, "properties": { "facing": "south", "power": "1", @@ -36678,7 +34857,7 @@ } }, { - "id": 24691, + "id": 23550, "properties": { "facing": "south", "power": "1", @@ -36687,7 +34866,7 @@ } }, { - "id": 24692, + "id": 23551, "properties": { "facing": "south", "power": "2", @@ -36696,7 +34875,7 @@ } }, { - "id": 24693, + "id": 23552, "properties": { "facing": "south", "power": "2", @@ -36705,7 +34884,7 @@ } }, { - "id": 24694, + "id": 23553, "properties": { "facing": "south", "power": "2", @@ -36714,7 +34893,7 @@ } }, { - "id": 24695, + "id": 23554, "properties": { "facing": "south", "power": "2", @@ -36723,7 +34902,7 @@ } }, { - "id": 24696, + "id": 23555, "properties": { "facing": "south", "power": "2", @@ -36732,7 +34911,7 @@ } }, { - "id": 24697, + "id": 23556, "properties": { "facing": "south", "power": "2", @@ -36741,7 +34920,7 @@ } }, { - "id": 24698, + "id": 23557, "properties": { "facing": "south", "power": "3", @@ -36750,7 +34929,7 @@ } }, { - "id": 24699, + "id": 23558, "properties": { "facing": "south", "power": "3", @@ -36759,7 +34938,7 @@ } }, { - "id": 24700, + "id": 23559, "properties": { "facing": "south", "power": "3", @@ -36768,7 +34947,7 @@ } }, { - "id": 24701, + "id": 23560, "properties": { "facing": "south", "power": "3", @@ -36777,7 +34956,7 @@ } }, { - "id": 24702, + "id": 23561, "properties": { "facing": "south", "power": "3", @@ -36786,7 +34965,7 @@ } }, { - "id": 24703, + "id": 23562, "properties": { "facing": "south", "power": "3", @@ -36795,7 +34974,7 @@ } }, { - "id": 24704, + "id": 23563, "properties": { "facing": "south", "power": "4", @@ -36804,7 +34983,7 @@ } }, { - "id": 24705, + "id": 23564, "properties": { "facing": "south", "power": "4", @@ -36813,7 +34992,7 @@ } }, { - "id": 24706, + "id": 23565, "properties": { "facing": "south", "power": "4", @@ -36822,7 +35001,7 @@ } }, { - "id": 24707, + "id": 23566, "properties": { "facing": "south", "power": "4", @@ -36831,7 +35010,7 @@ } }, { - "id": 24708, + "id": 23567, "properties": { "facing": "south", "power": "4", @@ -36840,7 +35019,7 @@ } }, { - "id": 24709, + "id": 23568, "properties": { "facing": "south", "power": "4", @@ -36849,7 +35028,7 @@ } }, { - "id": 24710, + "id": 23569, "properties": { "facing": "south", "power": "5", @@ -36858,7 +35037,7 @@ } }, { - "id": 24711, + "id": 23570, "properties": { "facing": "south", "power": "5", @@ -36867,7 +35046,7 @@ } }, { - "id": 24712, + "id": 23571, "properties": { "facing": "south", "power": "5", @@ -36876,7 +35055,7 @@ } }, { - "id": 24713, + "id": 23572, "properties": { "facing": "south", "power": "5", @@ -36885,7 +35064,7 @@ } }, { - "id": 24714, + "id": 23573, "properties": { "facing": "south", "power": "5", @@ -36894,7 +35073,7 @@ } }, { - "id": 24715, + "id": 23574, "properties": { "facing": "south", "power": "5", @@ -36903,7 +35082,7 @@ } }, { - "id": 24716, + "id": 23575, "properties": { "facing": "south", "power": "6", @@ -36912,7 +35091,7 @@ } }, { - "id": 24717, + "id": 23576, "properties": { "facing": "south", "power": "6", @@ -36921,7 +35100,7 @@ } }, { - "id": 24718, + "id": 23577, "properties": { "facing": "south", "power": "6", @@ -36930,7 +35109,7 @@ } }, { - "id": 24719, + "id": 23578, "properties": { "facing": "south", "power": "6", @@ -36939,7 +35118,7 @@ } }, { - "id": 24720, + "id": 23579, "properties": { "facing": "south", "power": "6", @@ -36948,7 +35127,7 @@ } }, { - "id": 24721, + "id": 23580, "properties": { "facing": "south", "power": "6", @@ -36957,7 +35136,7 @@ } }, { - "id": 24722, + "id": 23581, "properties": { "facing": "south", "power": "7", @@ -36966,7 +35145,7 @@ } }, { - "id": 24723, + "id": 23582, "properties": { "facing": "south", "power": "7", @@ -36975,7 +35154,7 @@ } }, { - "id": 24724, + "id": 23583, "properties": { "facing": "south", "power": "7", @@ -36984,7 +35163,7 @@ } }, { - "id": 24725, + "id": 23584, "properties": { "facing": "south", "power": "7", @@ -36993,7 +35172,7 @@ } }, { - "id": 24726, + "id": 23585, "properties": { "facing": "south", "power": "7", @@ -37002,7 +35181,7 @@ } }, { - "id": 24727, + "id": 23586, "properties": { "facing": "south", "power": "7", @@ -37011,7 +35190,7 @@ } }, { - "id": 24728, + "id": 23587, "properties": { "facing": "south", "power": "8", @@ -37020,7 +35199,7 @@ } }, { - "id": 24729, + "id": 23588, "properties": { "facing": "south", "power": "8", @@ -37029,7 +35208,7 @@ } }, { - "id": 24730, + "id": 23589, "properties": { "facing": "south", "power": "8", @@ -37038,7 +35217,7 @@ } }, { - "id": 24731, + "id": 23590, "properties": { "facing": "south", "power": "8", @@ -37047,7 +35226,7 @@ } }, { - "id": 24732, + "id": 23591, "properties": { "facing": "south", "power": "8", @@ -37056,7 +35235,7 @@ } }, { - "id": 24733, + "id": 23592, "properties": { "facing": "south", "power": "8", @@ -37065,7 +35244,7 @@ } }, { - "id": 24734, + "id": 23593, "properties": { "facing": "south", "power": "9", @@ -37074,7 +35253,7 @@ } }, { - "id": 24735, + "id": 23594, "properties": { "facing": "south", "power": "9", @@ -37083,7 +35262,7 @@ } }, { - "id": 24736, + "id": 23595, "properties": { "facing": "south", "power": "9", @@ -37092,7 +35271,7 @@ } }, { - "id": 24737, + "id": 23596, "properties": { "facing": "south", "power": "9", @@ -37101,7 +35280,7 @@ } }, { - "id": 24738, + "id": 23597, "properties": { "facing": "south", "power": "9", @@ -37110,7 +35289,7 @@ } }, { - "id": 24739, + "id": 23598, "properties": { "facing": "south", "power": "9", @@ -37119,7 +35298,7 @@ } }, { - "id": 24740, + "id": 23599, "properties": { "facing": "south", "power": "10", @@ -37128,7 +35307,7 @@ } }, { - "id": 24741, + "id": 23600, "properties": { "facing": "south", "power": "10", @@ -37137,7 +35316,7 @@ } }, { - "id": 24742, + "id": 23601, "properties": { "facing": "south", "power": "10", @@ -37146,7 +35325,7 @@ } }, { - "id": 24743, + "id": 23602, "properties": { "facing": "south", "power": "10", @@ -37155,7 +35334,7 @@ } }, { - "id": 24744, + "id": 23603, "properties": { "facing": "south", "power": "10", @@ -37164,7 +35343,7 @@ } }, { - "id": 24745, + "id": 23604, "properties": { "facing": "south", "power": "10", @@ -37173,7 +35352,7 @@ } }, { - "id": 24746, + "id": 23605, "properties": { "facing": "south", "power": "11", @@ -37182,7 +35361,7 @@ } }, { - "id": 24747, + "id": 23606, "properties": { "facing": "south", "power": "11", @@ -37191,7 +35370,7 @@ } }, { - "id": 24748, + "id": 23607, "properties": { "facing": "south", "power": "11", @@ -37200,7 +35379,7 @@ } }, { - "id": 24749, + "id": 23608, "properties": { "facing": "south", "power": "11", @@ -37209,7 +35388,7 @@ } }, { - "id": 24750, + "id": 23609, "properties": { "facing": "south", "power": "11", @@ -37218,7 +35397,7 @@ } }, { - "id": 24751, + "id": 23610, "properties": { "facing": "south", "power": "11", @@ -37227,7 +35406,7 @@ } }, { - "id": 24752, + "id": 23611, "properties": { "facing": "south", "power": "12", @@ -37236,7 +35415,7 @@ } }, { - "id": 24753, + "id": 23612, "properties": { "facing": "south", "power": "12", @@ -37245,7 +35424,7 @@ } }, { - "id": 24754, + "id": 23613, "properties": { "facing": "south", "power": "12", @@ -37254,7 +35433,7 @@ } }, { - "id": 24755, + "id": 23614, "properties": { "facing": "south", "power": "12", @@ -37263,7 +35442,7 @@ } }, { - "id": 24756, + "id": 23615, "properties": { "facing": "south", "power": "12", @@ -37272,7 +35451,7 @@ } }, { - "id": 24757, + "id": 23616, "properties": { "facing": "south", "power": "12", @@ -37281,7 +35460,7 @@ } }, { - "id": 24758, + "id": 23617, "properties": { "facing": "south", "power": "13", @@ -37290,7 +35469,7 @@ } }, { - "id": 24759, + "id": 23618, "properties": { "facing": "south", "power": "13", @@ -37299,7 +35478,7 @@ } }, { - "id": 24760, + "id": 23619, "properties": { "facing": "south", "power": "13", @@ -37308,7 +35487,7 @@ } }, { - "id": 24761, + "id": 23620, "properties": { "facing": "south", "power": "13", @@ -37317,7 +35496,7 @@ } }, { - "id": 24762, + "id": 23621, "properties": { "facing": "south", "power": "13", @@ -37326,7 +35505,7 @@ } }, { - "id": 24763, + "id": 23622, "properties": { "facing": "south", "power": "13", @@ -37335,7 +35514,7 @@ } }, { - "id": 24764, + "id": 23623, "properties": { "facing": "south", "power": "14", @@ -37344,7 +35523,7 @@ } }, { - "id": 24765, + "id": 23624, "properties": { "facing": "south", "power": "14", @@ -37353,7 +35532,7 @@ } }, { - "id": 24766, + "id": 23625, "properties": { "facing": "south", "power": "14", @@ -37362,7 +35541,7 @@ } }, { - "id": 24767, + "id": 23626, "properties": { "facing": "south", "power": "14", @@ -37371,7 +35550,7 @@ } }, { - "id": 24768, + "id": 23627, "properties": { "facing": "south", "power": "14", @@ -37380,7 +35559,7 @@ } }, { - "id": 24769, + "id": 23628, "properties": { "facing": "south", "power": "14", @@ -37389,7 +35568,7 @@ } }, { - "id": 24770, + "id": 23629, "properties": { "facing": "south", "power": "15", @@ -37398,7 +35577,7 @@ } }, { - "id": 24771, + "id": 23630, "properties": { "facing": "south", "power": "15", @@ -37407,7 +35586,7 @@ } }, { - "id": 24772, + "id": 23631, "properties": { "facing": "south", "power": "15", @@ -37416,7 +35595,7 @@ } }, { - "id": 24773, + "id": 23632, "properties": { "facing": "south", "power": "15", @@ -37425,7 +35604,7 @@ } }, { - "id": 24774, + "id": 23633, "properties": { "facing": "south", "power": "15", @@ -37434,7 +35613,7 @@ } }, { - "id": 24775, + "id": 23634, "properties": { "facing": "south", "power": "15", @@ -37443,7 +35622,7 @@ } }, { - "id": 24776, + "id": 23635, "properties": { "facing": "west", "power": "0", @@ -37452,7 +35631,7 @@ } }, { - "id": 24777, + "id": 23636, "properties": { "facing": "west", "power": "0", @@ -37461,7 +35640,7 @@ } }, { - "id": 24778, + "id": 23637, "properties": { "facing": "west", "power": "0", @@ -37470,7 +35649,7 @@ } }, { - "id": 24779, + "id": 23638, "properties": { "facing": "west", "power": "0", @@ -37479,7 +35658,7 @@ } }, { - "id": 24780, + "id": 23639, "properties": { "facing": "west", "power": "0", @@ -37488,7 +35667,7 @@ } }, { - "id": 24781, + "id": 23640, "properties": { "facing": "west", "power": "0", @@ -37497,7 +35676,7 @@ } }, { - "id": 24782, + "id": 23641, "properties": { "facing": "west", "power": "1", @@ -37506,7 +35685,7 @@ } }, { - "id": 24783, + "id": 23642, "properties": { "facing": "west", "power": "1", @@ -37515,7 +35694,7 @@ } }, { - "id": 24784, + "id": 23643, "properties": { "facing": "west", "power": "1", @@ -37524,7 +35703,7 @@ } }, { - "id": 24785, + "id": 23644, "properties": { "facing": "west", "power": "1", @@ -37533,7 +35712,7 @@ } }, { - "id": 24786, + "id": 23645, "properties": { "facing": "west", "power": "1", @@ -37542,7 +35721,7 @@ } }, { - "id": 24787, + "id": 23646, "properties": { "facing": "west", "power": "1", @@ -37551,7 +35730,7 @@ } }, { - "id": 24788, + "id": 23647, "properties": { "facing": "west", "power": "2", @@ -37560,7 +35739,7 @@ } }, { - "id": 24789, + "id": 23648, "properties": { "facing": "west", "power": "2", @@ -37569,7 +35748,7 @@ } }, { - "id": 24790, + "id": 23649, "properties": { "facing": "west", "power": "2", @@ -37578,7 +35757,7 @@ } }, { - "id": 24791, + "id": 23650, "properties": { "facing": "west", "power": "2", @@ -37587,7 +35766,7 @@ } }, { - "id": 24792, + "id": 23651, "properties": { "facing": "west", "power": "2", @@ -37596,7 +35775,7 @@ } }, { - "id": 24793, + "id": 23652, "properties": { "facing": "west", "power": "2", @@ -37605,7 +35784,7 @@ } }, { - "id": 24794, + "id": 23653, "properties": { "facing": "west", "power": "3", @@ -37614,7 +35793,7 @@ } }, { - "id": 24795, + "id": 23654, "properties": { "facing": "west", "power": "3", @@ -37623,7 +35802,7 @@ } }, { - "id": 24796, + "id": 23655, "properties": { "facing": "west", "power": "3", @@ -37632,7 +35811,7 @@ } }, { - "id": 24797, + "id": 23656, "properties": { "facing": "west", "power": "3", @@ -37641,7 +35820,7 @@ } }, { - "id": 24798, + "id": 23657, "properties": { "facing": "west", "power": "3", @@ -37650,7 +35829,7 @@ } }, { - "id": 24799, + "id": 23658, "properties": { "facing": "west", "power": "3", @@ -37659,7 +35838,7 @@ } }, { - "id": 24800, + "id": 23659, "properties": { "facing": "west", "power": "4", @@ -37668,7 +35847,7 @@ } }, { - "id": 24801, + "id": 23660, "properties": { "facing": "west", "power": "4", @@ -37677,7 +35856,7 @@ } }, { - "id": 24802, + "id": 23661, "properties": { "facing": "west", "power": "4", @@ -37686,7 +35865,7 @@ } }, { - "id": 24803, + "id": 23662, "properties": { "facing": "west", "power": "4", @@ -37695,7 +35874,7 @@ } }, { - "id": 24804, + "id": 23663, "properties": { "facing": "west", "power": "4", @@ -37704,7 +35883,7 @@ } }, { - "id": 24805, + "id": 23664, "properties": { "facing": "west", "power": "4", @@ -37713,7 +35892,7 @@ } }, { - "id": 24806, + "id": 23665, "properties": { "facing": "west", "power": "5", @@ -37722,7 +35901,7 @@ } }, { - "id": 24807, + "id": 23666, "properties": { "facing": "west", "power": "5", @@ -37731,7 +35910,7 @@ } }, { - "id": 24808, + "id": 23667, "properties": { "facing": "west", "power": "5", @@ -37740,7 +35919,7 @@ } }, { - "id": 24809, + "id": 23668, "properties": { "facing": "west", "power": "5", @@ -37749,7 +35928,7 @@ } }, { - "id": 24810, + "id": 23669, "properties": { "facing": "west", "power": "5", @@ -37758,7 +35937,7 @@ } }, { - "id": 24811, + "id": 23670, "properties": { "facing": "west", "power": "5", @@ -37767,7 +35946,7 @@ } }, { - "id": 24812, + "id": 23671, "properties": { "facing": "west", "power": "6", @@ -37776,7 +35955,7 @@ } }, { - "id": 24813, + "id": 23672, "properties": { "facing": "west", "power": "6", @@ -37785,7 +35964,7 @@ } }, { - "id": 24814, + "id": 23673, "properties": { "facing": "west", "power": "6", @@ -37794,7 +35973,7 @@ } }, { - "id": 24815, + "id": 23674, "properties": { "facing": "west", "power": "6", @@ -37803,7 +35982,7 @@ } }, { - "id": 24816, + "id": 23675, "properties": { "facing": "west", "power": "6", @@ -37812,7 +35991,7 @@ } }, { - "id": 24817, + "id": 23676, "properties": { "facing": "west", "power": "6", @@ -37821,7 +36000,7 @@ } }, { - "id": 24818, + "id": 23677, "properties": { "facing": "west", "power": "7", @@ -37830,7 +36009,7 @@ } }, { - "id": 24819, + "id": 23678, "properties": { "facing": "west", "power": "7", @@ -37839,7 +36018,7 @@ } }, { - "id": 24820, + "id": 23679, "properties": { "facing": "west", "power": "7", @@ -37848,7 +36027,7 @@ } }, { - "id": 24821, + "id": 23680, "properties": { "facing": "west", "power": "7", @@ -37857,7 +36036,7 @@ } }, { - "id": 24822, + "id": 23681, "properties": { "facing": "west", "power": "7", @@ -37866,7 +36045,7 @@ } }, { - "id": 24823, + "id": 23682, "properties": { "facing": "west", "power": "7", @@ -37875,7 +36054,7 @@ } }, { - "id": 24824, + "id": 23683, "properties": { "facing": "west", "power": "8", @@ -37884,7 +36063,7 @@ } }, { - "id": 24825, + "id": 23684, "properties": { "facing": "west", "power": "8", @@ -37893,7 +36072,7 @@ } }, { - "id": 24826, + "id": 23685, "properties": { "facing": "west", "power": "8", @@ -37902,7 +36081,7 @@ } }, { - "id": 24827, + "id": 23686, "properties": { "facing": "west", "power": "8", @@ -37911,7 +36090,7 @@ } }, { - "id": 24828, + "id": 23687, "properties": { "facing": "west", "power": "8", @@ -37920,7 +36099,7 @@ } }, { - "id": 24829, + "id": 23688, "properties": { "facing": "west", "power": "8", @@ -37929,7 +36108,7 @@ } }, { - "id": 24830, + "id": 23689, "properties": { "facing": "west", "power": "9", @@ -37938,7 +36117,7 @@ } }, { - "id": 24831, + "id": 23690, "properties": { "facing": "west", "power": "9", @@ -37947,7 +36126,7 @@ } }, { - "id": 24832, + "id": 23691, "properties": { "facing": "west", "power": "9", @@ -37956,7 +36135,7 @@ } }, { - "id": 24833, + "id": 23692, "properties": { "facing": "west", "power": "9", @@ -37965,7 +36144,7 @@ } }, { - "id": 24834, + "id": 23693, "properties": { "facing": "west", "power": "9", @@ -37974,7 +36153,7 @@ } }, { - "id": 24835, + "id": 23694, "properties": { "facing": "west", "power": "9", @@ -37983,7 +36162,7 @@ } }, { - "id": 24836, + "id": 23695, "properties": { "facing": "west", "power": "10", @@ -37992,7 +36171,7 @@ } }, { - "id": 24837, + "id": 23696, "properties": { "facing": "west", "power": "10", @@ -38001,7 +36180,7 @@ } }, { - "id": 24838, + "id": 23697, "properties": { "facing": "west", "power": "10", @@ -38010,7 +36189,7 @@ } }, { - "id": 24839, + "id": 23698, "properties": { "facing": "west", "power": "10", @@ -38019,7 +36198,7 @@ } }, { - "id": 24840, + "id": 23699, "properties": { "facing": "west", "power": "10", @@ -38028,7 +36207,7 @@ } }, { - "id": 24841, + "id": 23700, "properties": { "facing": "west", "power": "10", @@ -38037,7 +36216,7 @@ } }, { - "id": 24842, + "id": 23701, "properties": { "facing": "west", "power": "11", @@ -38046,7 +36225,7 @@ } }, { - "id": 24843, + "id": 23702, "properties": { "facing": "west", "power": "11", @@ -38055,7 +36234,7 @@ } }, { - "id": 24844, + "id": 23703, "properties": { "facing": "west", "power": "11", @@ -38064,7 +36243,7 @@ } }, { - "id": 24845, + "id": 23704, "properties": { "facing": "west", "power": "11", @@ -38073,7 +36252,7 @@ } }, { - "id": 24846, + "id": 23705, "properties": { "facing": "west", "power": "11", @@ -38082,7 +36261,7 @@ } }, { - "id": 24847, + "id": 23706, "properties": { "facing": "west", "power": "11", @@ -38091,7 +36270,7 @@ } }, { - "id": 24848, + "id": 23707, "properties": { "facing": "west", "power": "12", @@ -38100,7 +36279,7 @@ } }, { - "id": 24849, + "id": 23708, "properties": { "facing": "west", "power": "12", @@ -38109,7 +36288,7 @@ } }, { - "id": 24850, + "id": 23709, "properties": { "facing": "west", "power": "12", @@ -38118,7 +36297,7 @@ } }, { - "id": 24851, + "id": 23710, "properties": { "facing": "west", "power": "12", @@ -38127,7 +36306,7 @@ } }, { - "id": 24852, + "id": 23711, "properties": { "facing": "west", "power": "12", @@ -38136,7 +36315,7 @@ } }, { - "id": 24853, + "id": 23712, "properties": { "facing": "west", "power": "12", @@ -38145,7 +36324,7 @@ } }, { - "id": 24854, + "id": 23713, "properties": { "facing": "west", "power": "13", @@ -38154,7 +36333,7 @@ } }, { - "id": 24855, + "id": 23714, "properties": { "facing": "west", "power": "13", @@ -38163,7 +36342,7 @@ } }, { - "id": 24856, + "id": 23715, "properties": { "facing": "west", "power": "13", @@ -38172,7 +36351,7 @@ } }, { - "id": 24857, + "id": 23716, "properties": { "facing": "west", "power": "13", @@ -38181,7 +36360,7 @@ } }, { - "id": 24858, + "id": 23717, "properties": { "facing": "west", "power": "13", @@ -38190,7 +36369,7 @@ } }, { - "id": 24859, + "id": 23718, "properties": { "facing": "west", "power": "13", @@ -38199,7 +36378,7 @@ } }, { - "id": 24860, + "id": 23719, "properties": { "facing": "west", "power": "14", @@ -38208,7 +36387,7 @@ } }, { - "id": 24861, + "id": 23720, "properties": { "facing": "west", "power": "14", @@ -38217,7 +36396,7 @@ } }, { - "id": 24862, + "id": 23721, "properties": { "facing": "west", "power": "14", @@ -38226,7 +36405,7 @@ } }, { - "id": 24863, + "id": 23722, "properties": { "facing": "west", "power": "14", @@ -38235,7 +36414,7 @@ } }, { - "id": 24864, + "id": 23723, "properties": { "facing": "west", "power": "14", @@ -38244,7 +36423,7 @@ } }, { - "id": 24865, + "id": 23724, "properties": { "facing": "west", "power": "14", @@ -38253,7 +36432,7 @@ } }, { - "id": 24866, + "id": 23725, "properties": { "facing": "west", "power": "15", @@ -38262,7 +36441,7 @@ } }, { - "id": 24867, + "id": 23726, "properties": { "facing": "west", "power": "15", @@ -38271,7 +36450,7 @@ } }, { - "id": 24868, + "id": 23727, "properties": { "facing": "west", "power": "15", @@ -38280,7 +36459,7 @@ } }, { - "id": 24869, + "id": 23728, "properties": { "facing": "west", "power": "15", @@ -38289,7 +36468,7 @@ } }, { - "id": 24870, + "id": 23729, "properties": { "facing": "west", "power": "15", @@ -38298,7 +36477,7 @@ } }, { - "id": 24871, + "id": 23730, "properties": { "facing": "west", "power": "15", @@ -38307,7 +36486,7 @@ } }, { - "id": 24872, + "id": 23731, "properties": { "facing": "east", "power": "0", @@ -38316,7 +36495,7 @@ } }, { - "id": 24873, + "id": 23732, "properties": { "facing": "east", "power": "0", @@ -38325,7 +36504,7 @@ } }, { - "id": 24874, + "id": 23733, "properties": { "facing": "east", "power": "0", @@ -38334,7 +36513,7 @@ } }, { - "id": 24875, + "id": 23734, "properties": { "facing": "east", "power": "0", @@ -38343,7 +36522,7 @@ } }, { - "id": 24876, + "id": 23735, "properties": { "facing": "east", "power": "0", @@ -38352,7 +36531,7 @@ } }, { - "id": 24877, + "id": 23736, "properties": { "facing": "east", "power": "0", @@ -38361,7 +36540,7 @@ } }, { - "id": 24878, + "id": 23737, "properties": { "facing": "east", "power": "1", @@ -38370,7 +36549,7 @@ } }, { - "id": 24879, + "id": 23738, "properties": { "facing": "east", "power": "1", @@ -38379,7 +36558,7 @@ } }, { - "id": 24880, + "id": 23739, "properties": { "facing": "east", "power": "1", @@ -38388,7 +36567,7 @@ } }, { - "id": 24881, + "id": 23740, "properties": { "facing": "east", "power": "1", @@ -38397,7 +36576,7 @@ } }, { - "id": 24882, + "id": 23741, "properties": { "facing": "east", "power": "1", @@ -38406,7 +36585,7 @@ } }, { - "id": 24883, + "id": 23742, "properties": { "facing": "east", "power": "1", @@ -38415,7 +36594,7 @@ } }, { - "id": 24884, + "id": 23743, "properties": { "facing": "east", "power": "2", @@ -38424,7 +36603,7 @@ } }, { - "id": 24885, + "id": 23744, "properties": { "facing": "east", "power": "2", @@ -38433,7 +36612,7 @@ } }, { - "id": 24886, + "id": 23745, "properties": { "facing": "east", "power": "2", @@ -38442,7 +36621,7 @@ } }, { - "id": 24887, + "id": 23746, "properties": { "facing": "east", "power": "2", @@ -38451,7 +36630,7 @@ } }, { - "id": 24888, + "id": 23747, "properties": { "facing": "east", "power": "2", @@ -38460,7 +36639,7 @@ } }, { - "id": 24889, + "id": 23748, "properties": { "facing": "east", "power": "2", @@ -38469,7 +36648,7 @@ } }, { - "id": 24890, + "id": 23749, "properties": { "facing": "east", "power": "3", @@ -38478,7 +36657,7 @@ } }, { - "id": 24891, + "id": 23750, "properties": { "facing": "east", "power": "3", @@ -38487,7 +36666,7 @@ } }, { - "id": 24892, + "id": 23751, "properties": { "facing": "east", "power": "3", @@ -38496,7 +36675,7 @@ } }, { - "id": 24893, + "id": 23752, "properties": { "facing": "east", "power": "3", @@ -38505,7 +36684,7 @@ } }, { - "id": 24894, + "id": 23753, "properties": { "facing": "east", "power": "3", @@ -38514,7 +36693,7 @@ } }, { - "id": 24895, + "id": 23754, "properties": { "facing": "east", "power": "3", @@ -38523,7 +36702,7 @@ } }, { - "id": 24896, + "id": 23755, "properties": { "facing": "east", "power": "4", @@ -38532,7 +36711,7 @@ } }, { - "id": 24897, + "id": 23756, "properties": { "facing": "east", "power": "4", @@ -38541,7 +36720,7 @@ } }, { - "id": 24898, + "id": 23757, "properties": { "facing": "east", "power": "4", @@ -38550,7 +36729,7 @@ } }, { - "id": 24899, + "id": 23758, "properties": { "facing": "east", "power": "4", @@ -38559,7 +36738,7 @@ } }, { - "id": 24900, + "id": 23759, "properties": { "facing": "east", "power": "4", @@ -38568,7 +36747,7 @@ } }, { - "id": 24901, + "id": 23760, "properties": { "facing": "east", "power": "4", @@ -38577,7 +36756,7 @@ } }, { - "id": 24902, + "id": 23761, "properties": { "facing": "east", "power": "5", @@ -38586,7 +36765,7 @@ } }, { - "id": 24903, + "id": 23762, "properties": { "facing": "east", "power": "5", @@ -38595,7 +36774,7 @@ } }, { - "id": 24904, + "id": 23763, "properties": { "facing": "east", "power": "5", @@ -38604,7 +36783,7 @@ } }, { - "id": 24905, + "id": 23764, "properties": { "facing": "east", "power": "5", @@ -38613,7 +36792,7 @@ } }, { - "id": 24906, + "id": 23765, "properties": { "facing": "east", "power": "5", @@ -38622,7 +36801,7 @@ } }, { - "id": 24907, + "id": 23766, "properties": { "facing": "east", "power": "5", @@ -38631,7 +36810,7 @@ } }, { - "id": 24908, + "id": 23767, "properties": { "facing": "east", "power": "6", @@ -38640,7 +36819,7 @@ } }, { - "id": 24909, + "id": 23768, "properties": { "facing": "east", "power": "6", @@ -38649,7 +36828,7 @@ } }, { - "id": 24910, + "id": 23769, "properties": { "facing": "east", "power": "6", @@ -38658,7 +36837,7 @@ } }, { - "id": 24911, + "id": 23770, "properties": { "facing": "east", "power": "6", @@ -38667,7 +36846,7 @@ } }, { - "id": 24912, + "id": 23771, "properties": { "facing": "east", "power": "6", @@ -38676,7 +36855,7 @@ } }, { - "id": 24913, + "id": 23772, "properties": { "facing": "east", "power": "6", @@ -38685,7 +36864,7 @@ } }, { - "id": 24914, + "id": 23773, "properties": { "facing": "east", "power": "7", @@ -38694,7 +36873,7 @@ } }, { - "id": 24915, + "id": 23774, "properties": { "facing": "east", "power": "7", @@ -38703,7 +36882,7 @@ } }, { - "id": 24916, + "id": 23775, "properties": { "facing": "east", "power": "7", @@ -38712,7 +36891,7 @@ } }, { - "id": 24917, + "id": 23776, "properties": { "facing": "east", "power": "7", @@ -38721,7 +36900,7 @@ } }, { - "id": 24918, + "id": 23777, "properties": { "facing": "east", "power": "7", @@ -38730,7 +36909,7 @@ } }, { - "id": 24919, + "id": 23778, "properties": { "facing": "east", "power": "7", @@ -38739,7 +36918,7 @@ } }, { - "id": 24920, + "id": 23779, "properties": { "facing": "east", "power": "8", @@ -38748,7 +36927,7 @@ } }, { - "id": 24921, + "id": 23780, "properties": { "facing": "east", "power": "8", @@ -38757,7 +36936,7 @@ } }, { - "id": 24922, + "id": 23781, "properties": { "facing": "east", "power": "8", @@ -38766,7 +36945,7 @@ } }, { - "id": 24923, + "id": 23782, "properties": { "facing": "east", "power": "8", @@ -38775,7 +36954,7 @@ } }, { - "id": 24924, + "id": 23783, "properties": { "facing": "east", "power": "8", @@ -38784,7 +36963,7 @@ } }, { - "id": 24925, + "id": 23784, "properties": { "facing": "east", "power": "8", @@ -38793,7 +36972,7 @@ } }, { - "id": 24926, + "id": 23785, "properties": { "facing": "east", "power": "9", @@ -38802,7 +36981,7 @@ } }, { - "id": 24927, + "id": 23786, "properties": { "facing": "east", "power": "9", @@ -38811,7 +36990,7 @@ } }, { - "id": 24928, + "id": 23787, "properties": { "facing": "east", "power": "9", @@ -38820,7 +36999,7 @@ } }, { - "id": 24929, + "id": 23788, "properties": { "facing": "east", "power": "9", @@ -38829,7 +37008,7 @@ } }, { - "id": 24930, + "id": 23789, "properties": { "facing": "east", "power": "9", @@ -38838,7 +37017,7 @@ } }, { - "id": 24931, + "id": 23790, "properties": { "facing": "east", "power": "9", @@ -38847,7 +37026,7 @@ } }, { - "id": 24932, + "id": 23791, "properties": { "facing": "east", "power": "10", @@ -38856,7 +37035,7 @@ } }, { - "id": 24933, + "id": 23792, "properties": { "facing": "east", "power": "10", @@ -38865,7 +37044,7 @@ } }, { - "id": 24934, + "id": 23793, "properties": { "facing": "east", "power": "10", @@ -38874,7 +37053,7 @@ } }, { - "id": 24935, + "id": 23794, "properties": { "facing": "east", "power": "10", @@ -38883,7 +37062,7 @@ } }, { - "id": 24936, + "id": 23795, "properties": { "facing": "east", "power": "10", @@ -38892,7 +37071,7 @@ } }, { - "id": 24937, + "id": 23796, "properties": { "facing": "east", "power": "10", @@ -38901,7 +37080,7 @@ } }, { - "id": 24938, + "id": 23797, "properties": { "facing": "east", "power": "11", @@ -38910,7 +37089,7 @@ } }, { - "id": 24939, + "id": 23798, "properties": { "facing": "east", "power": "11", @@ -38919,7 +37098,7 @@ } }, { - "id": 24940, + "id": 23799, "properties": { "facing": "east", "power": "11", @@ -38928,7 +37107,7 @@ } }, { - "id": 24941, + "id": 23800, "properties": { "facing": "east", "power": "11", @@ -38937,7 +37116,7 @@ } }, { - "id": 24942, + "id": 23801, "properties": { "facing": "east", "power": "11", @@ -38946,7 +37125,7 @@ } }, { - "id": 24943, + "id": 23802, "properties": { "facing": "east", "power": "11", @@ -38955,7 +37134,7 @@ } }, { - "id": 24944, + "id": 23803, "properties": { "facing": "east", "power": "12", @@ -38964,7 +37143,7 @@ } }, { - "id": 24945, + "id": 23804, "properties": { "facing": "east", "power": "12", @@ -38973,7 +37152,7 @@ } }, { - "id": 24946, + "id": 23805, "properties": { "facing": "east", "power": "12", @@ -38982,7 +37161,7 @@ } }, { - "id": 24947, + "id": 23806, "properties": { "facing": "east", "power": "12", @@ -38991,7 +37170,7 @@ } }, { - "id": 24948, + "id": 23807, "properties": { "facing": "east", "power": "12", @@ -39000,7 +37179,7 @@ } }, { - "id": 24949, + "id": 23808, "properties": { "facing": "east", "power": "12", @@ -39009,7 +37188,7 @@ } }, { - "id": 24950, + "id": 23809, "properties": { "facing": "east", "power": "13", @@ -39018,7 +37197,7 @@ } }, { - "id": 24951, + "id": 23810, "properties": { "facing": "east", "power": "13", @@ -39027,7 +37206,7 @@ } }, { - "id": 24952, + "id": 23811, "properties": { "facing": "east", "power": "13", @@ -39036,7 +37215,7 @@ } }, { - "id": 24953, + "id": 23812, "properties": { "facing": "east", "power": "13", @@ -39045,7 +37224,7 @@ } }, { - "id": 24954, + "id": 23813, "properties": { "facing": "east", "power": "13", @@ -39054,7 +37233,7 @@ } }, { - "id": 24955, + "id": 23814, "properties": { "facing": "east", "power": "13", @@ -39063,7 +37242,7 @@ } }, { - "id": 24956, + "id": 23815, "properties": { "facing": "east", "power": "14", @@ -39072,7 +37251,7 @@ } }, { - "id": 24957, + "id": 23816, "properties": { "facing": "east", "power": "14", @@ -39081,7 +37260,7 @@ } }, { - "id": 24958, + "id": 23817, "properties": { "facing": "east", "power": "14", @@ -39090,7 +37269,7 @@ } }, { - "id": 24959, + "id": 23818, "properties": { "facing": "east", "power": "14", @@ -39099,7 +37278,7 @@ } }, { - "id": 24960, + "id": 23819, "properties": { "facing": "east", "power": "14", @@ -39108,7 +37287,7 @@ } }, { - "id": 24961, + "id": 23820, "properties": { "facing": "east", "power": "14", @@ -39117,7 +37296,7 @@ } }, { - "id": 24962, + "id": 23821, "properties": { "facing": "east", "power": "15", @@ -39126,7 +37305,7 @@ } }, { - "id": 24963, + "id": 23822, "properties": { "facing": "east", "power": "15", @@ -39135,7 +37314,7 @@ } }, { - "id": 24964, + "id": 23823, "properties": { "facing": "east", "power": "15", @@ -39144,7 +37323,7 @@ } }, { - "id": 24965, + "id": 23824, "properties": { "facing": "east", "power": "15", @@ -39153,7 +37332,7 @@ } }, { - "id": 24966, + "id": 23825, "properties": { "facing": "east", "power": "15", @@ -39162,7 +37341,7 @@ } }, { - "id": 24967, + "id": 23826, "properties": { "facing": "east", "power": "15", @@ -39201,7 +37380,7 @@ }, "states": [ { - "id": 20675, + "id": 19534, "properties": { "facing": "north", "lit": "true", @@ -39210,7 +37389,7 @@ } }, { - "id": 20676, + "id": 19535, "properties": { "facing": "north", "lit": "true", @@ -39219,7 +37398,7 @@ } }, { - "id": 20677, + "id": 19536, "properties": { "facing": "north", "lit": "true", @@ -39229,7 +37408,7 @@ }, { "default": true, - "id": 20678, + "id": 19537, "properties": { "facing": "north", "lit": "true", @@ -39238,7 +37417,7 @@ } }, { - "id": 20679, + "id": 19538, "properties": { "facing": "north", "lit": "false", @@ -39247,7 +37426,7 @@ } }, { - "id": 20680, + "id": 19539, "properties": { "facing": "north", "lit": "false", @@ -39256,7 +37435,7 @@ } }, { - "id": 20681, + "id": 19540, "properties": { "facing": "north", "lit": "false", @@ -39265,7 +37444,7 @@ } }, { - "id": 20682, + "id": 19541, "properties": { "facing": "north", "lit": "false", @@ -39274,7 +37453,7 @@ } }, { - "id": 20683, + "id": 19542, "properties": { "facing": "south", "lit": "true", @@ -39283,7 +37462,7 @@ } }, { - "id": 20684, + "id": 19543, "properties": { "facing": "south", "lit": "true", @@ -39292,7 +37471,7 @@ } }, { - "id": 20685, + "id": 19544, "properties": { "facing": "south", "lit": "true", @@ -39301,7 +37480,7 @@ } }, { - "id": 20686, + "id": 19545, "properties": { "facing": "south", "lit": "true", @@ -39310,7 +37489,7 @@ } }, { - "id": 20687, + "id": 19546, "properties": { "facing": "south", "lit": "false", @@ -39319,7 +37498,7 @@ } }, { - "id": 20688, + "id": 19547, "properties": { "facing": "south", "lit": "false", @@ -39328,7 +37507,7 @@ } }, { - "id": 20689, + "id": 19548, "properties": { "facing": "south", "lit": "false", @@ -39337,7 +37516,7 @@ } }, { - "id": 20690, + "id": 19549, "properties": { "facing": "south", "lit": "false", @@ -39346,7 +37525,7 @@ } }, { - "id": 20691, + "id": 19550, "properties": { "facing": "west", "lit": "true", @@ -39355,7 +37534,7 @@ } }, { - "id": 20692, + "id": 19551, "properties": { "facing": "west", "lit": "true", @@ -39364,7 +37543,7 @@ } }, { - "id": 20693, + "id": 19552, "properties": { "facing": "west", "lit": "true", @@ -39373,7 +37552,7 @@ } }, { - "id": 20694, + "id": 19553, "properties": { "facing": "west", "lit": "true", @@ -39382,7 +37561,7 @@ } }, { - "id": 20695, + "id": 19554, "properties": { "facing": "west", "lit": "false", @@ -39391,7 +37570,7 @@ } }, { - "id": 20696, + "id": 19555, "properties": { "facing": "west", "lit": "false", @@ -39400,7 +37579,7 @@ } }, { - "id": 20697, + "id": 19556, "properties": { "facing": "west", "lit": "false", @@ -39409,7 +37588,7 @@ } }, { - "id": 20698, + "id": 19557, "properties": { "facing": "west", "lit": "false", @@ -39418,7 +37597,7 @@ } }, { - "id": 20699, + "id": 19558, "properties": { "facing": "east", "lit": "true", @@ -39427,7 +37606,7 @@ } }, { - "id": 20700, + "id": 19559, "properties": { "facing": "east", "lit": "true", @@ -39436,7 +37615,7 @@ } }, { - "id": 20701, + "id": 19560, "properties": { "facing": "east", "lit": "true", @@ -39445,7 +37624,7 @@ } }, { - "id": 20702, + "id": 19561, "properties": { "facing": "east", "lit": "true", @@ -39454,7 +37633,7 @@ } }, { - "id": 20703, + "id": 19562, "properties": { "facing": "east", "lit": "false", @@ -39463,7 +37642,7 @@ } }, { - "id": 20704, + "id": 19563, "properties": { "facing": "east", "lit": "false", @@ -39472,7 +37651,7 @@ } }, { - "id": 20705, + "id": 19564, "properties": { "facing": "east", "lit": "false", @@ -39481,7 +37660,7 @@ } }, { - "id": 20706, + "id": 19565, "properties": { "facing": "east", "lit": "false", @@ -39514,7 +37693,7 @@ }, "states": [ { - "id": 22894, + "id": 21753, "properties": { "candles": "1", "lit": "true", @@ -39522,7 +37701,7 @@ } }, { - "id": 22895, + "id": 21754, "properties": { "candles": "1", "lit": "true", @@ -39530,7 +37709,7 @@ } }, { - "id": 22896, + "id": 21755, "properties": { "candles": "1", "lit": "false", @@ -39539,7 +37718,7 @@ }, { "default": true, - "id": 22897, + "id": 21756, "properties": { "candles": "1", "lit": "false", @@ -39547,7 +37726,7 @@ } }, { - "id": 22898, + "id": 21757, "properties": { "candles": "2", "lit": "true", @@ -39555,7 +37734,7 @@ } }, { - "id": 22899, + "id": 21758, "properties": { "candles": "2", "lit": "true", @@ -39563,7 +37742,7 @@ } }, { - "id": 22900, + "id": 21759, "properties": { "candles": "2", "lit": "false", @@ -39571,7 +37750,7 @@ } }, { - "id": 22901, + "id": 21760, "properties": { "candles": "2", "lit": "false", @@ -39579,7 +37758,7 @@ } }, { - "id": 22902, + "id": 21761, "properties": { "candles": "3", "lit": "true", @@ -39587,7 +37766,7 @@ } }, { - "id": 22903, + "id": 21762, "properties": { "candles": "3", "lit": "true", @@ -39595,7 +37774,7 @@ } }, { - "id": 22904, + "id": 21763, "properties": { "candles": "3", "lit": "false", @@ -39603,7 +37782,7 @@ } }, { - "id": 22905, + "id": 21764, "properties": { "candles": "3", "lit": "false", @@ -39611,7 +37790,7 @@ } }, { - "id": 22906, + "id": 21765, "properties": { "candles": "4", "lit": "true", @@ -39619,7 +37798,7 @@ } }, { - "id": 22907, + "id": 21766, "properties": { "candles": "4", "lit": "true", @@ -39627,7 +37806,7 @@ } }, { - "id": 22908, + "id": 21767, "properties": { "candles": "4", "lit": "false", @@ -39635,7 +37814,7 @@ } }, { - "id": 22909, + "id": 21768, "properties": { "candles": "4", "lit": "false", @@ -39658,14 +37837,14 @@ }, "states": [ { - "id": 23166, + "id": 22025, "properties": { "lit": "true" } }, { "default": true, - "id": 23167, + "id": 22026, "properties": { "lit": "false" } @@ -39692,49 +37871,49 @@ "states": [ { "default": true, - "id": 10457, + "id": 9380, "properties": { "age": "0" } }, { - "id": 10458, + "id": 9381, "properties": { "age": "1" } }, { - "id": 10459, + "id": 9382, "properties": { "age": "2" } }, { - "id": 10460, + "id": 9383, "properties": { "age": "3" } }, { - "id": 10461, + "id": 9384, "properties": { "age": "4" } }, { - "id": 10462, + "id": 9385, "properties": { "age": "5" } }, { - "id": 10463, + "id": 9386, "properties": { "age": "6" } }, { - "id": 10464, + "id": 9387, "properties": { "age": "7" } @@ -39749,7 +37928,7 @@ "states": [ { "default": true, - "id": 20568 + "id": 19459 } ] }, @@ -39769,25 +37948,25 @@ "states": [ { "default": true, - "id": 6818, + "id": 6045, "properties": { "facing": "north" } }, { - "id": 6819, + "id": 6046, "properties": { "facing": "south" } }, { - "id": 6820, + "id": 6047, "properties": { "facing": "west" } }, { - "id": 6821, + "id": 6048, "properties": { "facing": "east" } @@ -39802,7 +37981,7 @@ "states": [ { "default": true, - "id": 9259 + "id": 8182 } ] }, @@ -39814,7 +37993,7 @@ "states": [ { "default": true, - "id": 15091 + "id": 13982 } ] }, @@ -39859,7 +38038,7 @@ }, "states": [ { - "id": 27554, + "id": 25797, "properties": { "age": "0", "berries": "true" @@ -39867,357 +38046,357 @@ }, { "default": true, - "id": 27555, + "id": 25798, "properties": { "age": "0", "berries": "false" } }, { - "id": 27556, + "id": 25799, "properties": { "age": "1", "berries": "true" } }, { - "id": 27557, + "id": 25800, "properties": { "age": "1", "berries": "false" } }, { - "id": 27558, + "id": 25801, "properties": { "age": "2", "berries": "true" } }, { - "id": 27559, + "id": 25802, "properties": { "age": "2", "berries": "false" } }, { - "id": 27560, + "id": 25803, "properties": { "age": "3", "berries": "true" } }, { - "id": 27561, + "id": 25804, "properties": { "age": "3", "berries": "false" } }, { - "id": 27562, + "id": 25805, "properties": { "age": "4", "berries": "true" } }, { - "id": 27563, + "id": 25806, "properties": { "age": "4", "berries": "false" } }, { - "id": 27564, + "id": 25807, "properties": { "age": "5", "berries": "true" } }, { - "id": 27565, + "id": 25808, "properties": { "age": "5", "berries": "false" } }, { - "id": 27566, + "id": 25809, "properties": { "age": "6", "berries": "true" } }, { - "id": 27567, + "id": 25810, "properties": { "age": "6", "berries": "false" } }, { - "id": 27568, + "id": 25811, "properties": { "age": "7", "berries": "true" } }, { - "id": 27569, + "id": 25812, "properties": { "age": "7", "berries": "false" } }, { - "id": 27570, + "id": 25813, "properties": { "age": "8", "berries": "true" } }, { - "id": 27571, + "id": 25814, "properties": { "age": "8", "berries": "false" } }, { - "id": 27572, + "id": 25815, "properties": { "age": "9", "berries": "true" } }, { - "id": 27573, + "id": 25816, "properties": { "age": "9", "berries": "false" } }, { - "id": 27574, + "id": 25817, "properties": { "age": "10", "berries": "true" } }, { - "id": 27575, + "id": 25818, "properties": { "age": "10", "berries": "false" } }, { - "id": 27576, + "id": 25819, "properties": { "age": "11", "berries": "true" } }, { - "id": 27577, + "id": 25820, "properties": { "age": "11", "berries": "false" } }, { - "id": 27578, + "id": 25821, "properties": { "age": "12", "berries": "true" } }, { - "id": 27579, + "id": 25822, "properties": { "age": "12", "berries": "false" } }, { - "id": 27580, + "id": 25823, "properties": { "age": "13", "berries": "true" } }, { - "id": 27581, + "id": 25824, "properties": { "age": "13", "berries": "false" } }, { - "id": 27582, + "id": 25825, "properties": { "age": "14", "berries": "true" } }, { - "id": 27583, + "id": 25826, "properties": { "age": "14", "berries": "false" } }, { - "id": 27584, + "id": 25827, "properties": { "age": "15", "berries": "true" } }, { - "id": 27585, + "id": 25828, "properties": { "age": "15", "berries": "false" } }, { - "id": 27586, + "id": 25829, "properties": { "age": "16", "berries": "true" } }, { - "id": 27587, + "id": 25830, "properties": { "age": "16", "berries": "false" } }, { - "id": 27588, + "id": 25831, "properties": { "age": "17", "berries": "true" } }, { - "id": 27589, + "id": 25832, "properties": { "age": "17", "berries": "false" } }, { - "id": 27590, + "id": 25833, "properties": { "age": "18", "berries": "true" } }, { - "id": 27591, + "id": 25834, "properties": { "age": "18", "berries": "false" } }, { - "id": 27592, + "id": 25835, "properties": { "age": "19", "berries": "true" } }, { - "id": 27593, + "id": 25836, "properties": { "age": "19", "berries": "false" } }, { - "id": 27594, + "id": 25837, "properties": { "age": "20", "berries": "true" } }, { - "id": 27595, + "id": 25838, "properties": { "age": "20", "berries": "false" } }, { - "id": 27596, + "id": 25839, "properties": { "age": "21", "berries": "true" } }, { - "id": 27597, + "id": 25840, "properties": { "age": "21", "berries": "false" } }, { - "id": 27598, + "id": 25841, "properties": { "age": "22", "berries": "true" } }, { - "id": 27599, + "id": 25842, "properties": { "age": "22", "berries": "false" } }, { - "id": 27600, + "id": 25843, "properties": { "age": "23", "berries": "true" } }, { - "id": 27601, + "id": 25844, "properties": { "age": "23", "berries": "false" } }, { - "id": 27602, + "id": 25845, "properties": { "age": "24", "berries": "true" } }, { - "id": 27603, + "id": 25846, "properties": { "age": "24", "berries": "false" } }, { - "id": 27604, + "id": 25847, "properties": { "age": "25", "berries": "true" } }, { - "id": 27605, + "id": 25848, "properties": { "age": "25", "berries": "false" @@ -40238,20 +38417,82 @@ }, "states": [ { - "id": 27606, + "id": 25849, "properties": { "berries": "true" } }, { "default": true, - "id": 27607, + "id": 25850, "properties": { "berries": "false" } } ] }, + "minecraft:chain": { + "definition": { + "type": "minecraft:chain", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7016, + "properties": { + "axis": "x", + "waterlogged": "true" + } + }, + { + "id": 7017, + "properties": { + "axis": "x", + "waterlogged": "false" + } + }, + { + "id": 7018, + "properties": { + "axis": "y", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 7019, + "properties": { + "axis": "y", + "waterlogged": "false" + } + }, + { + "id": 7020, + "properties": { + "axis": "z", + "waterlogged": "true" + } + }, + { + "id": 7021, + "properties": { + "axis": "z", + "waterlogged": "false" + } + } + ] + }, "minecraft:chain_command_block": { "definition": { "type": "minecraft:command", @@ -40274,42 +38515,42 @@ }, "states": [ { - "id": 14627, + "id": 13550, "properties": { "conditional": "true", "facing": "north" } }, { - "id": 14628, + "id": 13551, "properties": { "conditional": "true", "facing": "east" } }, { - "id": 14629, + "id": 13552, "properties": { "conditional": "true", "facing": "south" } }, { - "id": 14630, + "id": 13553, "properties": { "conditional": "true", "facing": "west" } }, { - "id": 14631, + "id": 13554, "properties": { "conditional": "true", "facing": "up" } }, { - "id": 14632, + "id": 13555, "properties": { "conditional": "true", "facing": "down" @@ -40317,42 +38558,42 @@ }, { "default": true, - "id": 14633, + "id": 13556, "properties": { "conditional": "false", "facing": "north" } }, { - "id": 14634, + "id": 13557, "properties": { "conditional": "false", "facing": "east" } }, { - "id": 14635, + "id": 13558, "properties": { "conditional": "false", "facing": "south" } }, { - "id": 14636, + "id": 13559, "properties": { "conditional": "false", "facing": "west" } }, { - "id": 14637, + "id": 13560, "properties": { "conditional": "false", "facing": "up" } }, { - "id": 14638, + "id": 13561, "properties": { "conditional": "false", "facing": "down" @@ -40386,7 +38627,7 @@ }, "states": [ { - "id": 10593, + "id": 9516, "properties": { "face": "floor", "facing": "north", @@ -40394,7 +38635,7 @@ } }, { - "id": 10594, + "id": 9517, "properties": { "face": "floor", "facing": "north", @@ -40402,7 +38643,7 @@ } }, { - "id": 10595, + "id": 9518, "properties": { "face": "floor", "facing": "south", @@ -40410,7 +38651,7 @@ } }, { - "id": 10596, + "id": 9519, "properties": { "face": "floor", "facing": "south", @@ -40418,7 +38659,7 @@ } }, { - "id": 10597, + "id": 9520, "properties": { "face": "floor", "facing": "west", @@ -40426,7 +38667,7 @@ } }, { - "id": 10598, + "id": 9521, "properties": { "face": "floor", "facing": "west", @@ -40434,7 +38675,7 @@ } }, { - "id": 10599, + "id": 9522, "properties": { "face": "floor", "facing": "east", @@ -40442,7 +38683,7 @@ } }, { - "id": 10600, + "id": 9523, "properties": { "face": "floor", "facing": "east", @@ -40450,7 +38691,7 @@ } }, { - "id": 10601, + "id": 9524, "properties": { "face": "wall", "facing": "north", @@ -40459,7 +38700,7 @@ }, { "default": true, - "id": 10602, + "id": 9525, "properties": { "face": "wall", "facing": "north", @@ -40467,7 +38708,7 @@ } }, { - "id": 10603, + "id": 9526, "properties": { "face": "wall", "facing": "south", @@ -40475,7 +38716,7 @@ } }, { - "id": 10604, + "id": 9527, "properties": { "face": "wall", "facing": "south", @@ -40483,7 +38724,7 @@ } }, { - "id": 10605, + "id": 9528, "properties": { "face": "wall", "facing": "west", @@ -40491,7 +38732,7 @@ } }, { - "id": 10606, + "id": 9529, "properties": { "face": "wall", "facing": "west", @@ -40499,7 +38740,7 @@ } }, { - "id": 10607, + "id": 9530, "properties": { "face": "wall", "facing": "east", @@ -40507,7 +38748,7 @@ } }, { - "id": 10608, + "id": 9531, "properties": { "face": "wall", "facing": "east", @@ -40515,7 +38756,7 @@ } }, { - "id": 10609, + "id": 9532, "properties": { "face": "ceiling", "facing": "north", @@ -40523,7 +38764,7 @@ } }, { - "id": 10610, + "id": 9533, "properties": { "face": "ceiling", "facing": "north", @@ -40531,7 +38772,7 @@ } }, { - "id": 10611, + "id": 9534, "properties": { "face": "ceiling", "facing": "south", @@ -40539,7 +38780,7 @@ } }, { - "id": 10612, + "id": 9535, "properties": { "face": "ceiling", "facing": "south", @@ -40547,7 +38788,7 @@ } }, { - "id": 10613, + "id": 9536, "properties": { "face": "ceiling", "facing": "west", @@ -40555,7 +38796,7 @@ } }, { - "id": 10614, + "id": 9537, "properties": { "face": "ceiling", "facing": "west", @@ -40563,7 +38804,7 @@ } }, { - "id": 10615, + "id": 9538, "properties": { "face": "ceiling", "facing": "east", @@ -40571,7 +38812,7 @@ } }, { - "id": 10616, + "id": 9539, "properties": { "face": "ceiling", "facing": "east", @@ -40612,7 +38853,7 @@ }, "states": [ { - "id": 14114, + "id": 13037, "properties": { "facing": "north", "half": "upper", @@ -40622,7 +38863,7 @@ } }, { - "id": 14115, + "id": 13038, "properties": { "facing": "north", "half": "upper", @@ -40632,7 +38873,7 @@ } }, { - "id": 14116, + "id": 13039, "properties": { "facing": "north", "half": "upper", @@ -40642,7 +38883,7 @@ } }, { - "id": 14117, + "id": 13040, "properties": { "facing": "north", "half": "upper", @@ -40652,7 +38893,7 @@ } }, { - "id": 14118, + "id": 13041, "properties": { "facing": "north", "half": "upper", @@ -40662,7 +38903,7 @@ } }, { - "id": 14119, + "id": 13042, "properties": { "facing": "north", "half": "upper", @@ -40672,7 +38913,7 @@ } }, { - "id": 14120, + "id": 13043, "properties": { "facing": "north", "half": "upper", @@ -40682,7 +38923,7 @@ } }, { - "id": 14121, + "id": 13044, "properties": { "facing": "north", "half": "upper", @@ -40692,7 +38933,7 @@ } }, { - "id": 14122, + "id": 13045, "properties": { "facing": "north", "half": "lower", @@ -40702,7 +38943,7 @@ } }, { - "id": 14123, + "id": 13046, "properties": { "facing": "north", "half": "lower", @@ -40712,7 +38953,7 @@ } }, { - "id": 14124, + "id": 13047, "properties": { "facing": "north", "half": "lower", @@ -40723,7 +38964,7 @@ }, { "default": true, - "id": 14125, + "id": 13048, "properties": { "facing": "north", "half": "lower", @@ -40733,7 +38974,7 @@ } }, { - "id": 14126, + "id": 13049, "properties": { "facing": "north", "half": "lower", @@ -40743,7 +38984,7 @@ } }, { - "id": 14127, + "id": 13050, "properties": { "facing": "north", "half": "lower", @@ -40753,7 +38994,7 @@ } }, { - "id": 14128, + "id": 13051, "properties": { "facing": "north", "half": "lower", @@ -40763,7 +39004,7 @@ } }, { - "id": 14129, + "id": 13052, "properties": { "facing": "north", "half": "lower", @@ -40773,7 +39014,7 @@ } }, { - "id": 14130, + "id": 13053, "properties": { "facing": "south", "half": "upper", @@ -40783,7 +39024,7 @@ } }, { - "id": 14131, + "id": 13054, "properties": { "facing": "south", "half": "upper", @@ -40793,7 +39034,7 @@ } }, { - "id": 14132, + "id": 13055, "properties": { "facing": "south", "half": "upper", @@ -40803,7 +39044,7 @@ } }, { - "id": 14133, + "id": 13056, "properties": { "facing": "south", "half": "upper", @@ -40813,7 +39054,7 @@ } }, { - "id": 14134, + "id": 13057, "properties": { "facing": "south", "half": "upper", @@ -40823,7 +39064,7 @@ } }, { - "id": 14135, + "id": 13058, "properties": { "facing": "south", "half": "upper", @@ -40833,7 +39074,7 @@ } }, { - "id": 14136, + "id": 13059, "properties": { "facing": "south", "half": "upper", @@ -40843,7 +39084,7 @@ } }, { - "id": 14137, + "id": 13060, "properties": { "facing": "south", "half": "upper", @@ -40853,7 +39094,7 @@ } }, { - "id": 14138, + "id": 13061, "properties": { "facing": "south", "half": "lower", @@ -40863,7 +39104,7 @@ } }, { - "id": 14139, + "id": 13062, "properties": { "facing": "south", "half": "lower", @@ -40873,7 +39114,7 @@ } }, { - "id": 14140, + "id": 13063, "properties": { "facing": "south", "half": "lower", @@ -40883,7 +39124,7 @@ } }, { - "id": 14141, + "id": 13064, "properties": { "facing": "south", "half": "lower", @@ -40893,7 +39134,7 @@ } }, { - "id": 14142, + "id": 13065, "properties": { "facing": "south", "half": "lower", @@ -40903,7 +39144,7 @@ } }, { - "id": 14143, + "id": 13066, "properties": { "facing": "south", "half": "lower", @@ -40913,7 +39154,7 @@ } }, { - "id": 14144, + "id": 13067, "properties": { "facing": "south", "half": "lower", @@ -40923,7 +39164,7 @@ } }, { - "id": 14145, + "id": 13068, "properties": { "facing": "south", "half": "lower", @@ -40933,7 +39174,7 @@ } }, { - "id": 14146, + "id": 13069, "properties": { "facing": "west", "half": "upper", @@ -40943,7 +39184,7 @@ } }, { - "id": 14147, + "id": 13070, "properties": { "facing": "west", "half": "upper", @@ -40953,7 +39194,7 @@ } }, { - "id": 14148, + "id": 13071, "properties": { "facing": "west", "half": "upper", @@ -40963,7 +39204,7 @@ } }, { - "id": 14149, + "id": 13072, "properties": { "facing": "west", "half": "upper", @@ -40973,7 +39214,7 @@ } }, { - "id": 14150, + "id": 13073, "properties": { "facing": "west", "half": "upper", @@ -40983,7 +39224,7 @@ } }, { - "id": 14151, + "id": 13074, "properties": { "facing": "west", "half": "upper", @@ -40993,7 +39234,7 @@ } }, { - "id": 14152, + "id": 13075, "properties": { "facing": "west", "half": "upper", @@ -41003,7 +39244,7 @@ } }, { - "id": 14153, + "id": 13076, "properties": { "facing": "west", "half": "upper", @@ -41013,7 +39254,7 @@ } }, { - "id": 14154, + "id": 13077, "properties": { "facing": "west", "half": "lower", @@ -41023,7 +39264,7 @@ } }, { - "id": 14155, + "id": 13078, "properties": { "facing": "west", "half": "lower", @@ -41033,7 +39274,7 @@ } }, { - "id": 14156, + "id": 13079, "properties": { "facing": "west", "half": "lower", @@ -41043,7 +39284,7 @@ } }, { - "id": 14157, + "id": 13080, "properties": { "facing": "west", "half": "lower", @@ -41053,7 +39294,7 @@ } }, { - "id": 14158, + "id": 13081, "properties": { "facing": "west", "half": "lower", @@ -41063,7 +39304,7 @@ } }, { - "id": 14159, + "id": 13082, "properties": { "facing": "west", "half": "lower", @@ -41073,7 +39314,7 @@ } }, { - "id": 14160, + "id": 13083, "properties": { "facing": "west", "half": "lower", @@ -41083,7 +39324,7 @@ } }, { - "id": 14161, + "id": 13084, "properties": { "facing": "west", "half": "lower", @@ -41093,7 +39334,7 @@ } }, { - "id": 14162, + "id": 13085, "properties": { "facing": "east", "half": "upper", @@ -41103,7 +39344,7 @@ } }, { - "id": 14163, + "id": 13086, "properties": { "facing": "east", "half": "upper", @@ -41113,7 +39354,7 @@ } }, { - "id": 14164, + "id": 13087, "properties": { "facing": "east", "half": "upper", @@ -41123,7 +39364,7 @@ } }, { - "id": 14165, + "id": 13088, "properties": { "facing": "east", "half": "upper", @@ -41133,7 +39374,7 @@ } }, { - "id": 14166, + "id": 13089, "properties": { "facing": "east", "half": "upper", @@ -41143,7 +39384,7 @@ } }, { - "id": 14167, + "id": 13090, "properties": { "facing": "east", "half": "upper", @@ -41153,7 +39394,7 @@ } }, { - "id": 14168, + "id": 13091, "properties": { "facing": "east", "half": "upper", @@ -41163,7 +39404,7 @@ } }, { - "id": 14169, + "id": 13092, "properties": { "facing": "east", "half": "upper", @@ -41173,7 +39414,7 @@ } }, { - "id": 14170, + "id": 13093, "properties": { "facing": "east", "half": "lower", @@ -41183,7 +39424,7 @@ } }, { - "id": 14171, + "id": 13094, "properties": { "facing": "east", "half": "lower", @@ -41193,7 +39434,7 @@ } }, { - "id": 14172, + "id": 13095, "properties": { "facing": "east", "half": "lower", @@ -41203,7 +39444,7 @@ } }, { - "id": 14173, + "id": 13096, "properties": { "facing": "east", "half": "lower", @@ -41213,7 +39454,7 @@ } }, { - "id": 14174, + "id": 13097, "properties": { "facing": "east", "half": "lower", @@ -41223,7 +39464,7 @@ } }, { - "id": 14175, + "id": 13098, "properties": { "facing": "east", "half": "lower", @@ -41233,7 +39474,7 @@ } }, { - "id": 14176, + "id": 13099, "properties": { "facing": "east", "half": "lower", @@ -41243,7 +39484,7 @@ } }, { - "id": 14177, + "id": 13100, "properties": { "facing": "east", "half": "lower", @@ -41283,7 +39524,7 @@ }, "states": [ { - "id": 13698, + "id": 12621, "properties": { "east": "true", "north": "true", @@ -41293,7 +39534,7 @@ } }, { - "id": 13699, + "id": 12622, "properties": { "east": "true", "north": "true", @@ -41303,7 +39544,7 @@ } }, { - "id": 13700, + "id": 12623, "properties": { "east": "true", "north": "true", @@ -41313,7 +39554,7 @@ } }, { - "id": 13701, + "id": 12624, "properties": { "east": "true", "north": "true", @@ -41323,7 +39564,7 @@ } }, { - "id": 13702, + "id": 12625, "properties": { "east": "true", "north": "true", @@ -41333,7 +39574,7 @@ } }, { - "id": 13703, + "id": 12626, "properties": { "east": "true", "north": "true", @@ -41343,7 +39584,7 @@ } }, { - "id": 13704, + "id": 12627, "properties": { "east": "true", "north": "true", @@ -41353,7 +39594,7 @@ } }, { - "id": 13705, + "id": 12628, "properties": { "east": "true", "north": "true", @@ -41363,7 +39604,7 @@ } }, { - "id": 13706, + "id": 12629, "properties": { "east": "true", "north": "false", @@ -41373,7 +39614,7 @@ } }, { - "id": 13707, + "id": 12630, "properties": { "east": "true", "north": "false", @@ -41383,7 +39624,7 @@ } }, { - "id": 13708, + "id": 12631, "properties": { "east": "true", "north": "false", @@ -41393,7 +39634,7 @@ } }, { - "id": 13709, + "id": 12632, "properties": { "east": "true", "north": "false", @@ -41403,7 +39644,7 @@ } }, { - "id": 13710, + "id": 12633, "properties": { "east": "true", "north": "false", @@ -41413,7 +39654,7 @@ } }, { - "id": 13711, + "id": 12634, "properties": { "east": "true", "north": "false", @@ -41423,7 +39664,7 @@ } }, { - "id": 13712, + "id": 12635, "properties": { "east": "true", "north": "false", @@ -41433,7 +39674,7 @@ } }, { - "id": 13713, + "id": 12636, "properties": { "east": "true", "north": "false", @@ -41443,7 +39684,7 @@ } }, { - "id": 13714, + "id": 12637, "properties": { "east": "false", "north": "true", @@ -41453,7 +39694,7 @@ } }, { - "id": 13715, + "id": 12638, "properties": { "east": "false", "north": "true", @@ -41463,7 +39704,7 @@ } }, { - "id": 13716, + "id": 12639, "properties": { "east": "false", "north": "true", @@ -41473,7 +39714,7 @@ } }, { - "id": 13717, + "id": 12640, "properties": { "east": "false", "north": "true", @@ -41483,7 +39724,7 @@ } }, { - "id": 13718, + "id": 12641, "properties": { "east": "false", "north": "true", @@ -41493,7 +39734,7 @@ } }, { - "id": 13719, + "id": 12642, "properties": { "east": "false", "north": "true", @@ -41503,7 +39744,7 @@ } }, { - "id": 13720, + "id": 12643, "properties": { "east": "false", "north": "true", @@ -41513,7 +39754,7 @@ } }, { - "id": 13721, + "id": 12644, "properties": { "east": "false", "north": "true", @@ -41523,7 +39764,7 @@ } }, { - "id": 13722, + "id": 12645, "properties": { "east": "false", "north": "false", @@ -41533,7 +39774,7 @@ } }, { - "id": 13723, + "id": 12646, "properties": { "east": "false", "north": "false", @@ -41543,7 +39784,7 @@ } }, { - "id": 13724, + "id": 12647, "properties": { "east": "false", "north": "false", @@ -41553,7 +39794,7 @@ } }, { - "id": 13725, + "id": 12648, "properties": { "east": "false", "north": "false", @@ -41563,7 +39804,7 @@ } }, { - "id": 13726, + "id": 12649, "properties": { "east": "false", "north": "false", @@ -41573,7 +39814,7 @@ } }, { - "id": 13727, + "id": 12650, "properties": { "east": "false", "north": "false", @@ -41583,7 +39824,7 @@ } }, { - "id": 13728, + "id": 12651, "properties": { "east": "false", "north": "false", @@ -41594,7 +39835,7 @@ }, { "default": true, - "id": 13729, + "id": 12652, "properties": { "east": "false", "north": "false", @@ -41633,7 +39874,7 @@ }, "states": [ { - "id": 13410, + "id": 12333, "properties": { "facing": "north", "in_wall": "true", @@ -41642,7 +39883,7 @@ } }, { - "id": 13411, + "id": 12334, "properties": { "facing": "north", "in_wall": "true", @@ -41651,7 +39892,7 @@ } }, { - "id": 13412, + "id": 12335, "properties": { "facing": "north", "in_wall": "true", @@ -41660,7 +39901,7 @@ } }, { - "id": 13413, + "id": 12336, "properties": { "facing": "north", "in_wall": "true", @@ -41669,7 +39910,7 @@ } }, { - "id": 13414, + "id": 12337, "properties": { "facing": "north", "in_wall": "false", @@ -41678,7 +39919,7 @@ } }, { - "id": 13415, + "id": 12338, "properties": { "facing": "north", "in_wall": "false", @@ -41687,7 +39928,7 @@ } }, { - "id": 13416, + "id": 12339, "properties": { "facing": "north", "in_wall": "false", @@ -41697,7 +39938,7 @@ }, { "default": true, - "id": 13417, + "id": 12340, "properties": { "facing": "north", "in_wall": "false", @@ -41706,7 +39947,7 @@ } }, { - "id": 13418, + "id": 12341, "properties": { "facing": "south", "in_wall": "true", @@ -41715,7 +39956,7 @@ } }, { - "id": 13419, + "id": 12342, "properties": { "facing": "south", "in_wall": "true", @@ -41724,7 +39965,7 @@ } }, { - "id": 13420, + "id": 12343, "properties": { "facing": "south", "in_wall": "true", @@ -41733,7 +39974,7 @@ } }, { - "id": 13421, + "id": 12344, "properties": { "facing": "south", "in_wall": "true", @@ -41742,7 +39983,7 @@ } }, { - "id": 13422, + "id": 12345, "properties": { "facing": "south", "in_wall": "false", @@ -41751,7 +39992,7 @@ } }, { - "id": 13423, + "id": 12346, "properties": { "facing": "south", "in_wall": "false", @@ -41760,7 +40001,7 @@ } }, { - "id": 13424, + "id": 12347, "properties": { "facing": "south", "in_wall": "false", @@ -41769,7 +40010,7 @@ } }, { - "id": 13425, + "id": 12348, "properties": { "facing": "south", "in_wall": "false", @@ -41778,7 +40019,7 @@ } }, { - "id": 13426, + "id": 12349, "properties": { "facing": "west", "in_wall": "true", @@ -41787,7 +40028,7 @@ } }, { - "id": 13427, + "id": 12350, "properties": { "facing": "west", "in_wall": "true", @@ -41796,7 +40037,7 @@ } }, { - "id": 13428, + "id": 12351, "properties": { "facing": "west", "in_wall": "true", @@ -41805,7 +40046,7 @@ } }, { - "id": 13429, + "id": 12352, "properties": { "facing": "west", "in_wall": "true", @@ -41814,7 +40055,7 @@ } }, { - "id": 13430, + "id": 12353, "properties": { "facing": "west", "in_wall": "false", @@ -41823,7 +40064,7 @@ } }, { - "id": 13431, + "id": 12354, "properties": { "facing": "west", "in_wall": "false", @@ -41832,7 +40073,7 @@ } }, { - "id": 13432, + "id": 12355, "properties": { "facing": "west", "in_wall": "false", @@ -41841,7 +40082,7 @@ } }, { - "id": 13433, + "id": 12356, "properties": { "facing": "west", "in_wall": "false", @@ -41850,7 +40091,7 @@ } }, { - "id": 13434, + "id": 12357, "properties": { "facing": "east", "in_wall": "true", @@ -41859,7 +40100,7 @@ } }, { - "id": 13435, + "id": 12358, "properties": { "facing": "east", "in_wall": "true", @@ -41868,7 +40109,7 @@ } }, { - "id": 13436, + "id": 12359, "properties": { "facing": "east", "in_wall": "true", @@ -41877,7 +40118,7 @@ } }, { - "id": 13437, + "id": 12360, "properties": { "facing": "east", "in_wall": "true", @@ -41886,7 +40127,7 @@ } }, { - "id": 13438, + "id": 12361, "properties": { "facing": "east", "in_wall": "false", @@ -41895,7 +40136,7 @@ } }, { - "id": 13439, + "id": 12362, "properties": { "facing": "east", "in_wall": "false", @@ -41904,7 +40145,7 @@ } }, { - "id": 13440, + "id": 12363, "properties": { "facing": "east", "in_wall": "false", @@ -41913,7 +40154,7 @@ } }, { - "id": 13441, + "id": 12364, "properties": { "facing": "east", "in_wall": "false", @@ -41959,7 +40200,7 @@ }, "states": [ { - "id": 5962, + "id": 5194, "properties": { "attached": "true", "rotation": "0", @@ -41967,7 +40208,7 @@ } }, { - "id": 5963, + "id": 5195, "properties": { "attached": "true", "rotation": "0", @@ -41975,7 +40216,7 @@ } }, { - "id": 5964, + "id": 5196, "properties": { "attached": "true", "rotation": "1", @@ -41983,7 +40224,7 @@ } }, { - "id": 5965, + "id": 5197, "properties": { "attached": "true", "rotation": "1", @@ -41991,7 +40232,7 @@ } }, { - "id": 5966, + "id": 5198, "properties": { "attached": "true", "rotation": "2", @@ -41999,7 +40240,7 @@ } }, { - "id": 5967, + "id": 5199, "properties": { "attached": "true", "rotation": "2", @@ -42007,7 +40248,7 @@ } }, { - "id": 5968, + "id": 5200, "properties": { "attached": "true", "rotation": "3", @@ -42015,7 +40256,7 @@ } }, { - "id": 5969, + "id": 5201, "properties": { "attached": "true", "rotation": "3", @@ -42023,7 +40264,7 @@ } }, { - "id": 5970, + "id": 5202, "properties": { "attached": "true", "rotation": "4", @@ -42031,7 +40272,7 @@ } }, { - "id": 5971, + "id": 5203, "properties": { "attached": "true", "rotation": "4", @@ -42039,7 +40280,7 @@ } }, { - "id": 5972, + "id": 5204, "properties": { "attached": "true", "rotation": "5", @@ -42047,7 +40288,7 @@ } }, { - "id": 5973, + "id": 5205, "properties": { "attached": "true", "rotation": "5", @@ -42055,7 +40296,7 @@ } }, { - "id": 5974, + "id": 5206, "properties": { "attached": "true", "rotation": "6", @@ -42063,7 +40304,7 @@ } }, { - "id": 5975, + "id": 5207, "properties": { "attached": "true", "rotation": "6", @@ -42071,7 +40312,7 @@ } }, { - "id": 5976, + "id": 5208, "properties": { "attached": "true", "rotation": "7", @@ -42079,7 +40320,7 @@ } }, { - "id": 5977, + "id": 5209, "properties": { "attached": "true", "rotation": "7", @@ -42087,7 +40328,7 @@ } }, { - "id": 5978, + "id": 5210, "properties": { "attached": "true", "rotation": "8", @@ -42095,7 +40336,7 @@ } }, { - "id": 5979, + "id": 5211, "properties": { "attached": "true", "rotation": "8", @@ -42103,7 +40344,7 @@ } }, { - "id": 5980, + "id": 5212, "properties": { "attached": "true", "rotation": "9", @@ -42111,7 +40352,7 @@ } }, { - "id": 5981, + "id": 5213, "properties": { "attached": "true", "rotation": "9", @@ -42119,7 +40360,7 @@ } }, { - "id": 5982, + "id": 5214, "properties": { "attached": "true", "rotation": "10", @@ -42127,7 +40368,7 @@ } }, { - "id": 5983, + "id": 5215, "properties": { "attached": "true", "rotation": "10", @@ -42135,7 +40376,7 @@ } }, { - "id": 5984, + "id": 5216, "properties": { "attached": "true", "rotation": "11", @@ -42143,7 +40384,7 @@ } }, { - "id": 5985, + "id": 5217, "properties": { "attached": "true", "rotation": "11", @@ -42151,7 +40392,7 @@ } }, { - "id": 5986, + "id": 5218, "properties": { "attached": "true", "rotation": "12", @@ -42159,7 +40400,7 @@ } }, { - "id": 5987, + "id": 5219, "properties": { "attached": "true", "rotation": "12", @@ -42167,7 +40408,7 @@ } }, { - "id": 5988, + "id": 5220, "properties": { "attached": "true", "rotation": "13", @@ -42175,7 +40416,7 @@ } }, { - "id": 5989, + "id": 5221, "properties": { "attached": "true", "rotation": "13", @@ -42183,7 +40424,7 @@ } }, { - "id": 5990, + "id": 5222, "properties": { "attached": "true", "rotation": "14", @@ -42191,7 +40432,7 @@ } }, { - "id": 5991, + "id": 5223, "properties": { "attached": "true", "rotation": "14", @@ -42199,7 +40440,7 @@ } }, { - "id": 5992, + "id": 5224, "properties": { "attached": "true", "rotation": "15", @@ -42207,7 +40448,7 @@ } }, { - "id": 5993, + "id": 5225, "properties": { "attached": "true", "rotation": "15", @@ -42215,7 +40456,7 @@ } }, { - "id": 5994, + "id": 5226, "properties": { "attached": "false", "rotation": "0", @@ -42224,7 +40465,7 @@ }, { "default": true, - "id": 5995, + "id": 5227, "properties": { "attached": "false", "rotation": "0", @@ -42232,7 +40473,7 @@ } }, { - "id": 5996, + "id": 5228, "properties": { "attached": "false", "rotation": "1", @@ -42240,7 +40481,7 @@ } }, { - "id": 5997, + "id": 5229, "properties": { "attached": "false", "rotation": "1", @@ -42248,7 +40489,7 @@ } }, { - "id": 5998, + "id": 5230, "properties": { "attached": "false", "rotation": "2", @@ -42256,7 +40497,7 @@ } }, { - "id": 5999, + "id": 5231, "properties": { "attached": "false", "rotation": "2", @@ -42264,7 +40505,7 @@ } }, { - "id": 6000, + "id": 5232, "properties": { "attached": "false", "rotation": "3", @@ -42272,7 +40513,7 @@ } }, { - "id": 6001, + "id": 5233, "properties": { "attached": "false", "rotation": "3", @@ -42280,7 +40521,7 @@ } }, { - "id": 6002, + "id": 5234, "properties": { "attached": "false", "rotation": "4", @@ -42288,7 +40529,7 @@ } }, { - "id": 6003, + "id": 5235, "properties": { "attached": "false", "rotation": "4", @@ -42296,7 +40537,7 @@ } }, { - "id": 6004, + "id": 5236, "properties": { "attached": "false", "rotation": "5", @@ -42304,7 +40545,7 @@ } }, { - "id": 6005, + "id": 5237, "properties": { "attached": "false", "rotation": "5", @@ -42312,7 +40553,7 @@ } }, { - "id": 6006, + "id": 5238, "properties": { "attached": "false", "rotation": "6", @@ -42320,7 +40561,7 @@ } }, { - "id": 6007, + "id": 5239, "properties": { "attached": "false", "rotation": "6", @@ -42328,7 +40569,7 @@ } }, { - "id": 6008, + "id": 5240, "properties": { "attached": "false", "rotation": "7", @@ -42336,7 +40577,7 @@ } }, { - "id": 6009, + "id": 5241, "properties": { "attached": "false", "rotation": "7", @@ -42344,7 +40585,7 @@ } }, { - "id": 6010, + "id": 5242, "properties": { "attached": "false", "rotation": "8", @@ -42352,7 +40593,7 @@ } }, { - "id": 6011, + "id": 5243, "properties": { "attached": "false", "rotation": "8", @@ -42360,7 +40601,7 @@ } }, { - "id": 6012, + "id": 5244, "properties": { "attached": "false", "rotation": "9", @@ -42368,7 +40609,7 @@ } }, { - "id": 6013, + "id": 5245, "properties": { "attached": "false", "rotation": "9", @@ -42376,7 +40617,7 @@ } }, { - "id": 6014, + "id": 5246, "properties": { "attached": "false", "rotation": "10", @@ -42384,7 +40625,7 @@ } }, { - "id": 6015, + "id": 5247, "properties": { "attached": "false", "rotation": "10", @@ -42392,7 +40633,7 @@ } }, { - "id": 6016, + "id": 5248, "properties": { "attached": "false", "rotation": "11", @@ -42400,7 +40641,7 @@ } }, { - "id": 6017, + "id": 5249, "properties": { "attached": "false", "rotation": "11", @@ -42408,7 +40649,7 @@ } }, { - "id": 6018, + "id": 5250, "properties": { "attached": "false", "rotation": "12", @@ -42416,7 +40657,7 @@ } }, { - "id": 6019, + "id": 5251, "properties": { "attached": "false", "rotation": "12", @@ -42424,7 +40665,7 @@ } }, { - "id": 6020, + "id": 5252, "properties": { "attached": "false", "rotation": "13", @@ -42432,7 +40673,7 @@ } }, { - "id": 6021, + "id": 5253, "properties": { "attached": "false", "rotation": "13", @@ -42440,7 +40681,7 @@ } }, { - "id": 6022, + "id": 5254, "properties": { "attached": "false", "rotation": "14", @@ -42448,7 +40689,7 @@ } }, { - "id": 6023, + "id": 5255, "properties": { "attached": "false", "rotation": "14", @@ -42456,7 +40697,7 @@ } }, { - "id": 6024, + "id": 5256, "properties": { "attached": "false", "rotation": "15", @@ -42464,7 +40705,7 @@ } }, { - "id": 6025, + "id": 5257, "properties": { "attached": "false", "rotation": "15", @@ -42789,14 +41030,14 @@ }, "states": [ { - "id": 6670, + "id": 5902, "properties": { "powered": "true" } }, { "default": true, - "id": 6671, + "id": 5903, "properties": { "powered": "false" } @@ -42831,613 +41072,6 @@ } ] }, - "minecraft:cherry_shelf": { - "definition": { - "type": "minecraft:shelf", - "properties": {} - }, - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ], - "side_chain": [ - "unconnected", - "right", - "center", - "left" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 2591, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2592, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2593, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2594, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2595, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2596, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2597, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2598, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2599, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 2600, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2601, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2602, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2603, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2604, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2605, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2606, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2607, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2608, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2609, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2610, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2611, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2612, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2613, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2614, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2615, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2616, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2617, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2618, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2619, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2620, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2621, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2622, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2623, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2624, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2625, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2626, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2627, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2628, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2629, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2630, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2631, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2632, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2633, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2634, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2635, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2636, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2637, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2638, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2639, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2640, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2641, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2642, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2643, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2644, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2645, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2646, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2647, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2648, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2649, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2650, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2651, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2652, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2653, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2654, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "left", - "waterlogged": "false" - } - } - ] - }, "minecraft:cherry_sign": { "definition": { "type": "minecraft:standing_sign", @@ -43470,7 +41104,7 @@ }, "states": [ { - "id": 5262, + "id": 4494, "properties": { "rotation": "0", "waterlogged": "true" @@ -43478,217 +41112,217 @@ }, { "default": true, - "id": 5263, + "id": 4495, "properties": { "rotation": "0", "waterlogged": "false" } }, { - "id": 5264, + "id": 4496, "properties": { "rotation": "1", "waterlogged": "true" } }, { - "id": 5265, + "id": 4497, "properties": { "rotation": "1", "waterlogged": "false" } }, { - "id": 5266, + "id": 4498, "properties": { "rotation": "2", "waterlogged": "true" } }, { - "id": 5267, + "id": 4499, "properties": { "rotation": "2", "waterlogged": "false" } }, { - "id": 5268, + "id": 4500, "properties": { "rotation": "3", "waterlogged": "true" } }, { - "id": 5269, + "id": 4501, "properties": { "rotation": "3", "waterlogged": "false" } }, { - "id": 5270, + "id": 4502, "properties": { "rotation": "4", "waterlogged": "true" } }, { - "id": 5271, + "id": 4503, "properties": { "rotation": "4", "waterlogged": "false" } }, { - "id": 5272, + "id": 4504, "properties": { "rotation": "5", "waterlogged": "true" } }, { - "id": 5273, + "id": 4505, "properties": { "rotation": "5", "waterlogged": "false" } }, { - "id": 5274, + "id": 4506, "properties": { "rotation": "6", "waterlogged": "true" } }, { - "id": 5275, + "id": 4507, "properties": { "rotation": "6", "waterlogged": "false" } }, { - "id": 5276, + "id": 4508, "properties": { "rotation": "7", "waterlogged": "true" } }, { - "id": 5277, + "id": 4509, "properties": { "rotation": "7", "waterlogged": "false" } }, { - "id": 5278, + "id": 4510, "properties": { "rotation": "8", "waterlogged": "true" } }, { - "id": 5279, + "id": 4511, "properties": { "rotation": "8", "waterlogged": "false" } }, { - "id": 5280, + "id": 4512, "properties": { "rotation": "9", "waterlogged": "true" } }, { - "id": 5281, + "id": 4513, "properties": { "rotation": "9", "waterlogged": "false" } }, { - "id": 5282, + "id": 4514, "properties": { "rotation": "10", "waterlogged": "true" } }, { - "id": 5283, + "id": 4515, "properties": { "rotation": "10", "waterlogged": "false" } }, { - "id": 5284, + "id": 4516, "properties": { "rotation": "11", "waterlogged": "true" } }, { - "id": 5285, + "id": 4517, "properties": { "rotation": "11", "waterlogged": "false" } }, { - "id": 5286, + "id": 4518, "properties": { "rotation": "12", "waterlogged": "true" } }, { - "id": 5287, + "id": 4519, "properties": { "rotation": "12", "waterlogged": "false" } }, { - "id": 5288, + "id": 4520, "properties": { "rotation": "13", "waterlogged": "true" } }, { - "id": 5289, + "id": 4521, "properties": { "rotation": "13", "waterlogged": "false" } }, { - "id": 5290, + "id": 4522, "properties": { "rotation": "14", "waterlogged": "true" } }, { - "id": 5291, + "id": 4523, "properties": { "rotation": "14", "waterlogged": "false" } }, { - "id": 5292, + "id": 4524, "properties": { "rotation": "15", "waterlogged": "true" } }, { - "id": 5293, + "id": 4525, "properties": { "rotation": "15", "waterlogged": "false" @@ -43714,21 +41348,21 @@ }, "states": [ { - "id": 13158, + "id": 12081, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 13159, + "id": 12082, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 13160, + "id": 12083, "properties": { "type": "bottom", "waterlogged": "true" @@ -43736,21 +41370,21 @@ }, { "default": true, - "id": 13161, + "id": 12084, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 13162, + "id": 12085, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 13163, + "id": 12086, "properties": { "type": "double", "waterlogged": "false" @@ -43791,7 +41425,7 @@ }, "states": [ { - "id": 11850, + "id": 10773, "properties": { "facing": "north", "half": "top", @@ -43800,7 +41434,7 @@ } }, { - "id": 11851, + "id": 10774, "properties": { "facing": "north", "half": "top", @@ -43809,7 +41443,7 @@ } }, { - "id": 11852, + "id": 10775, "properties": { "facing": "north", "half": "top", @@ -43818,7 +41452,7 @@ } }, { - "id": 11853, + "id": 10776, "properties": { "facing": "north", "half": "top", @@ -43827,7 +41461,7 @@ } }, { - "id": 11854, + "id": 10777, "properties": { "facing": "north", "half": "top", @@ -43836,7 +41470,7 @@ } }, { - "id": 11855, + "id": 10778, "properties": { "facing": "north", "half": "top", @@ -43845,7 +41479,7 @@ } }, { - "id": 11856, + "id": 10779, "properties": { "facing": "north", "half": "top", @@ -43854,7 +41488,7 @@ } }, { - "id": 11857, + "id": 10780, "properties": { "facing": "north", "half": "top", @@ -43863,7 +41497,7 @@ } }, { - "id": 11858, + "id": 10781, "properties": { "facing": "north", "half": "top", @@ -43872,7 +41506,7 @@ } }, { - "id": 11859, + "id": 10782, "properties": { "facing": "north", "half": "top", @@ -43881,7 +41515,7 @@ } }, { - "id": 11860, + "id": 10783, "properties": { "facing": "north", "half": "bottom", @@ -43891,7 +41525,7 @@ }, { "default": true, - "id": 11861, + "id": 10784, "properties": { "facing": "north", "half": "bottom", @@ -43900,7 +41534,7 @@ } }, { - "id": 11862, + "id": 10785, "properties": { "facing": "north", "half": "bottom", @@ -43909,7 +41543,7 @@ } }, { - "id": 11863, + "id": 10786, "properties": { "facing": "north", "half": "bottom", @@ -43918,7 +41552,7 @@ } }, { - "id": 11864, + "id": 10787, "properties": { "facing": "north", "half": "bottom", @@ -43927,7 +41561,7 @@ } }, { - "id": 11865, + "id": 10788, "properties": { "facing": "north", "half": "bottom", @@ -43936,7 +41570,7 @@ } }, { - "id": 11866, + "id": 10789, "properties": { "facing": "north", "half": "bottom", @@ -43945,7 +41579,7 @@ } }, { - "id": 11867, + "id": 10790, "properties": { "facing": "north", "half": "bottom", @@ -43954,7 +41588,7 @@ } }, { - "id": 11868, + "id": 10791, "properties": { "facing": "north", "half": "bottom", @@ -43963,7 +41597,7 @@ } }, { - "id": 11869, + "id": 10792, "properties": { "facing": "north", "half": "bottom", @@ -43972,7 +41606,7 @@ } }, { - "id": 11870, + "id": 10793, "properties": { "facing": "south", "half": "top", @@ -43981,7 +41615,7 @@ } }, { - "id": 11871, + "id": 10794, "properties": { "facing": "south", "half": "top", @@ -43990,7 +41624,7 @@ } }, { - "id": 11872, + "id": 10795, "properties": { "facing": "south", "half": "top", @@ -43999,7 +41633,7 @@ } }, { - "id": 11873, + "id": 10796, "properties": { "facing": "south", "half": "top", @@ -44008,7 +41642,7 @@ } }, { - "id": 11874, + "id": 10797, "properties": { "facing": "south", "half": "top", @@ -44017,7 +41651,7 @@ } }, { - "id": 11875, + "id": 10798, "properties": { "facing": "south", "half": "top", @@ -44026,7 +41660,7 @@ } }, { - "id": 11876, + "id": 10799, "properties": { "facing": "south", "half": "top", @@ -44035,7 +41669,7 @@ } }, { - "id": 11877, + "id": 10800, "properties": { "facing": "south", "half": "top", @@ -44044,7 +41678,7 @@ } }, { - "id": 11878, + "id": 10801, "properties": { "facing": "south", "half": "top", @@ -44053,7 +41687,7 @@ } }, { - "id": 11879, + "id": 10802, "properties": { "facing": "south", "half": "top", @@ -44062,7 +41696,7 @@ } }, { - "id": 11880, + "id": 10803, "properties": { "facing": "south", "half": "bottom", @@ -44071,7 +41705,7 @@ } }, { - "id": 11881, + "id": 10804, "properties": { "facing": "south", "half": "bottom", @@ -44080,7 +41714,7 @@ } }, { - "id": 11882, + "id": 10805, "properties": { "facing": "south", "half": "bottom", @@ -44089,7 +41723,7 @@ } }, { - "id": 11883, + "id": 10806, "properties": { "facing": "south", "half": "bottom", @@ -44098,7 +41732,7 @@ } }, { - "id": 11884, + "id": 10807, "properties": { "facing": "south", "half": "bottom", @@ -44107,7 +41741,7 @@ } }, { - "id": 11885, + "id": 10808, "properties": { "facing": "south", "half": "bottom", @@ -44116,7 +41750,7 @@ } }, { - "id": 11886, + "id": 10809, "properties": { "facing": "south", "half": "bottom", @@ -44125,7 +41759,7 @@ } }, { - "id": 11887, + "id": 10810, "properties": { "facing": "south", "half": "bottom", @@ -44134,7 +41768,7 @@ } }, { - "id": 11888, + "id": 10811, "properties": { "facing": "south", "half": "bottom", @@ -44143,7 +41777,7 @@ } }, { - "id": 11889, + "id": 10812, "properties": { "facing": "south", "half": "bottom", @@ -44152,7 +41786,7 @@ } }, { - "id": 11890, + "id": 10813, "properties": { "facing": "west", "half": "top", @@ -44161,7 +41795,7 @@ } }, { - "id": 11891, + "id": 10814, "properties": { "facing": "west", "half": "top", @@ -44170,7 +41804,7 @@ } }, { - "id": 11892, + "id": 10815, "properties": { "facing": "west", "half": "top", @@ -44179,7 +41813,7 @@ } }, { - "id": 11893, + "id": 10816, "properties": { "facing": "west", "half": "top", @@ -44188,7 +41822,7 @@ } }, { - "id": 11894, + "id": 10817, "properties": { "facing": "west", "half": "top", @@ -44197,7 +41831,7 @@ } }, { - "id": 11895, + "id": 10818, "properties": { "facing": "west", "half": "top", @@ -44206,7 +41840,7 @@ } }, { - "id": 11896, + "id": 10819, "properties": { "facing": "west", "half": "top", @@ -44215,7 +41849,7 @@ } }, { - "id": 11897, + "id": 10820, "properties": { "facing": "west", "half": "top", @@ -44224,7 +41858,7 @@ } }, { - "id": 11898, + "id": 10821, "properties": { "facing": "west", "half": "top", @@ -44233,7 +41867,7 @@ } }, { - "id": 11899, + "id": 10822, "properties": { "facing": "west", "half": "top", @@ -44242,7 +41876,7 @@ } }, { - "id": 11900, + "id": 10823, "properties": { "facing": "west", "half": "bottom", @@ -44251,7 +41885,7 @@ } }, { - "id": 11901, + "id": 10824, "properties": { "facing": "west", "half": "bottom", @@ -44260,7 +41894,7 @@ } }, { - "id": 11902, + "id": 10825, "properties": { "facing": "west", "half": "bottom", @@ -44269,7 +41903,7 @@ } }, { - "id": 11903, + "id": 10826, "properties": { "facing": "west", "half": "bottom", @@ -44278,7 +41912,7 @@ } }, { - "id": 11904, + "id": 10827, "properties": { "facing": "west", "half": "bottom", @@ -44287,7 +41921,7 @@ } }, { - "id": 11905, + "id": 10828, "properties": { "facing": "west", "half": "bottom", @@ -44296,7 +41930,7 @@ } }, { - "id": 11906, + "id": 10829, "properties": { "facing": "west", "half": "bottom", @@ -44305,7 +41939,7 @@ } }, { - "id": 11907, + "id": 10830, "properties": { "facing": "west", "half": "bottom", @@ -44314,7 +41948,7 @@ } }, { - "id": 11908, + "id": 10831, "properties": { "facing": "west", "half": "bottom", @@ -44323,7 +41957,7 @@ } }, { - "id": 11909, + "id": 10832, "properties": { "facing": "west", "half": "bottom", @@ -44332,7 +41966,7 @@ } }, { - "id": 11910, + "id": 10833, "properties": { "facing": "east", "half": "top", @@ -44341,7 +41975,7 @@ } }, { - "id": 11911, + "id": 10834, "properties": { "facing": "east", "half": "top", @@ -44350,7 +41984,7 @@ } }, { - "id": 11912, + "id": 10835, "properties": { "facing": "east", "half": "top", @@ -44359,7 +41993,7 @@ } }, { - "id": 11913, + "id": 10836, "properties": { "facing": "east", "half": "top", @@ -44368,7 +42002,7 @@ } }, { - "id": 11914, + "id": 10837, "properties": { "facing": "east", "half": "top", @@ -44377,7 +42011,7 @@ } }, { - "id": 11915, + "id": 10838, "properties": { "facing": "east", "half": "top", @@ -44386,7 +42020,7 @@ } }, { - "id": 11916, + "id": 10839, "properties": { "facing": "east", "half": "top", @@ -44395,7 +42029,7 @@ } }, { - "id": 11917, + "id": 10840, "properties": { "facing": "east", "half": "top", @@ -44404,7 +42038,7 @@ } }, { - "id": 11918, + "id": 10841, "properties": { "facing": "east", "half": "top", @@ -44413,7 +42047,7 @@ } }, { - "id": 11919, + "id": 10842, "properties": { "facing": "east", "half": "top", @@ -44422,7 +42056,7 @@ } }, { - "id": 11920, + "id": 10843, "properties": { "facing": "east", "half": "bottom", @@ -44431,7 +42065,7 @@ } }, { - "id": 11921, + "id": 10844, "properties": { "facing": "east", "half": "bottom", @@ -44440,7 +42074,7 @@ } }, { - "id": 11922, + "id": 10845, "properties": { "facing": "east", "half": "bottom", @@ -44449,7 +42083,7 @@ } }, { - "id": 11923, + "id": 10846, "properties": { "facing": "east", "half": "bottom", @@ -44458,7 +42092,7 @@ } }, { - "id": 11924, + "id": 10847, "properties": { "facing": "east", "half": "bottom", @@ -44467,7 +42101,7 @@ } }, { - "id": 11925, + "id": 10848, "properties": { "facing": "east", "half": "bottom", @@ -44476,7 +42110,7 @@ } }, { - "id": 11926, + "id": 10849, "properties": { "facing": "east", "half": "bottom", @@ -44485,7 +42119,7 @@ } }, { - "id": 11927, + "id": 10850, "properties": { "facing": "east", "half": "bottom", @@ -44494,7 +42128,7 @@ } }, { - "id": 11928, + "id": 10851, "properties": { "facing": "east", "half": "bottom", @@ -44503,7 +42137,7 @@ } }, { - "id": 11929, + "id": 10852, "properties": { "facing": "east", "half": "bottom", @@ -44545,7 +42179,7 @@ }, "states": [ { - "id": 7233, + "id": 6460, "properties": { "facing": "north", "half": "top", @@ -44555,7 +42189,7 @@ } }, { - "id": 7234, + "id": 6461, "properties": { "facing": "north", "half": "top", @@ -44565,7 +42199,7 @@ } }, { - "id": 7235, + "id": 6462, "properties": { "facing": "north", "half": "top", @@ -44575,7 +42209,7 @@ } }, { - "id": 7236, + "id": 6463, "properties": { "facing": "north", "half": "top", @@ -44585,7 +42219,7 @@ } }, { - "id": 7237, + "id": 6464, "properties": { "facing": "north", "half": "top", @@ -44595,7 +42229,7 @@ } }, { - "id": 7238, + "id": 6465, "properties": { "facing": "north", "half": "top", @@ -44605,7 +42239,7 @@ } }, { - "id": 7239, + "id": 6466, "properties": { "facing": "north", "half": "top", @@ -44615,7 +42249,7 @@ } }, { - "id": 7240, + "id": 6467, "properties": { "facing": "north", "half": "top", @@ -44625,7 +42259,7 @@ } }, { - "id": 7241, + "id": 6468, "properties": { "facing": "north", "half": "bottom", @@ -44635,7 +42269,7 @@ } }, { - "id": 7242, + "id": 6469, "properties": { "facing": "north", "half": "bottom", @@ -44645,7 +42279,7 @@ } }, { - "id": 7243, + "id": 6470, "properties": { "facing": "north", "half": "bottom", @@ -44655,7 +42289,7 @@ } }, { - "id": 7244, + "id": 6471, "properties": { "facing": "north", "half": "bottom", @@ -44665,7 +42299,7 @@ } }, { - "id": 7245, + "id": 6472, "properties": { "facing": "north", "half": "bottom", @@ -44675,7 +42309,7 @@ } }, { - "id": 7246, + "id": 6473, "properties": { "facing": "north", "half": "bottom", @@ -44685,7 +42319,7 @@ } }, { - "id": 7247, + "id": 6474, "properties": { "facing": "north", "half": "bottom", @@ -44696,7 +42330,7 @@ }, { "default": true, - "id": 7248, + "id": 6475, "properties": { "facing": "north", "half": "bottom", @@ -44706,7 +42340,7 @@ } }, { - "id": 7249, + "id": 6476, "properties": { "facing": "south", "half": "top", @@ -44716,7 +42350,7 @@ } }, { - "id": 7250, + "id": 6477, "properties": { "facing": "south", "half": "top", @@ -44726,7 +42360,7 @@ } }, { - "id": 7251, + "id": 6478, "properties": { "facing": "south", "half": "top", @@ -44736,7 +42370,7 @@ } }, { - "id": 7252, + "id": 6479, "properties": { "facing": "south", "half": "top", @@ -44746,7 +42380,7 @@ } }, { - "id": 7253, + "id": 6480, "properties": { "facing": "south", "half": "top", @@ -44756,7 +42390,7 @@ } }, { - "id": 7254, + "id": 6481, "properties": { "facing": "south", "half": "top", @@ -44766,7 +42400,7 @@ } }, { - "id": 7255, + "id": 6482, "properties": { "facing": "south", "half": "top", @@ -44776,7 +42410,7 @@ } }, { - "id": 7256, + "id": 6483, "properties": { "facing": "south", "half": "top", @@ -44786,7 +42420,7 @@ } }, { - "id": 7257, + "id": 6484, "properties": { "facing": "south", "half": "bottom", @@ -44796,7 +42430,7 @@ } }, { - "id": 7258, + "id": 6485, "properties": { "facing": "south", "half": "bottom", @@ -44806,7 +42440,7 @@ } }, { - "id": 7259, + "id": 6486, "properties": { "facing": "south", "half": "bottom", @@ -44816,7 +42450,7 @@ } }, { - "id": 7260, + "id": 6487, "properties": { "facing": "south", "half": "bottom", @@ -44826,7 +42460,7 @@ } }, { - "id": 7261, + "id": 6488, "properties": { "facing": "south", "half": "bottom", @@ -44836,7 +42470,7 @@ } }, { - "id": 7262, + "id": 6489, "properties": { "facing": "south", "half": "bottom", @@ -44846,7 +42480,7 @@ } }, { - "id": 7263, + "id": 6490, "properties": { "facing": "south", "half": "bottom", @@ -44856,7 +42490,7 @@ } }, { - "id": 7264, + "id": 6491, "properties": { "facing": "south", "half": "bottom", @@ -44866,7 +42500,7 @@ } }, { - "id": 7265, + "id": 6492, "properties": { "facing": "west", "half": "top", @@ -44876,7 +42510,7 @@ } }, { - "id": 7266, + "id": 6493, "properties": { "facing": "west", "half": "top", @@ -44886,7 +42520,7 @@ } }, { - "id": 7267, + "id": 6494, "properties": { "facing": "west", "half": "top", @@ -44896,7 +42530,7 @@ } }, { - "id": 7268, + "id": 6495, "properties": { "facing": "west", "half": "top", @@ -44906,7 +42540,7 @@ } }, { - "id": 7269, + "id": 6496, "properties": { "facing": "west", "half": "top", @@ -44916,7 +42550,7 @@ } }, { - "id": 7270, + "id": 6497, "properties": { "facing": "west", "half": "top", @@ -44926,7 +42560,7 @@ } }, { - "id": 7271, + "id": 6498, "properties": { "facing": "west", "half": "top", @@ -44936,7 +42570,7 @@ } }, { - "id": 7272, + "id": 6499, "properties": { "facing": "west", "half": "top", @@ -44946,7 +42580,7 @@ } }, { - "id": 7273, + "id": 6500, "properties": { "facing": "west", "half": "bottom", @@ -44956,7 +42590,7 @@ } }, { - "id": 7274, + "id": 6501, "properties": { "facing": "west", "half": "bottom", @@ -44966,7 +42600,7 @@ } }, { - "id": 7275, + "id": 6502, "properties": { "facing": "west", "half": "bottom", @@ -44976,7 +42610,7 @@ } }, { - "id": 7276, + "id": 6503, "properties": { "facing": "west", "half": "bottom", @@ -44986,7 +42620,7 @@ } }, { - "id": 7277, + "id": 6504, "properties": { "facing": "west", "half": "bottom", @@ -44996,7 +42630,7 @@ } }, { - "id": 7278, + "id": 6505, "properties": { "facing": "west", "half": "bottom", @@ -45006,7 +42640,7 @@ } }, { - "id": 7279, + "id": 6506, "properties": { "facing": "west", "half": "bottom", @@ -45016,7 +42650,7 @@ } }, { - "id": 7280, + "id": 6507, "properties": { "facing": "west", "half": "bottom", @@ -45026,7 +42660,7 @@ } }, { - "id": 7281, + "id": 6508, "properties": { "facing": "east", "half": "top", @@ -45036,7 +42670,7 @@ } }, { - "id": 7282, + "id": 6509, "properties": { "facing": "east", "half": "top", @@ -45046,7 +42680,7 @@ } }, { - "id": 7283, + "id": 6510, "properties": { "facing": "east", "half": "top", @@ -45056,7 +42690,7 @@ } }, { - "id": 7284, + "id": 6511, "properties": { "facing": "east", "half": "top", @@ -45066,7 +42700,7 @@ } }, { - "id": 7285, + "id": 6512, "properties": { "facing": "east", "half": "top", @@ -45076,7 +42710,7 @@ } }, { - "id": 7286, + "id": 6513, "properties": { "facing": "east", "half": "top", @@ -45086,7 +42720,7 @@ } }, { - "id": 7287, + "id": 6514, "properties": { "facing": "east", "half": "top", @@ -45096,7 +42730,7 @@ } }, { - "id": 7288, + "id": 6515, "properties": { "facing": "east", "half": "top", @@ -45106,7 +42740,7 @@ } }, { - "id": 7289, + "id": 6516, "properties": { "facing": "east", "half": "bottom", @@ -45116,7 +42750,7 @@ } }, { - "id": 7290, + "id": 6517, "properties": { "facing": "east", "half": "bottom", @@ -45126,7 +42760,7 @@ } }, { - "id": 7291, + "id": 6518, "properties": { "facing": "east", "half": "bottom", @@ -45136,7 +42770,7 @@ } }, { - "id": 7292, + "id": 6519, "properties": { "facing": "east", "half": "bottom", @@ -45146,7 +42780,7 @@ } }, { - "id": 7293, + "id": 6520, "properties": { "facing": "east", "half": "bottom", @@ -45156,7 +42790,7 @@ } }, { - "id": 7294, + "id": 6521, "properties": { "facing": "east", "half": "bottom", @@ -45166,7 +42800,7 @@ } }, { - "id": 7295, + "id": 6522, "properties": { "facing": "east", "half": "bottom", @@ -45176,7 +42810,7 @@ } }, { - "id": 7296, + "id": 6523, "properties": { "facing": "east", "half": "bottom", @@ -45207,7 +42841,7 @@ }, "states": [ { - "id": 6506, + "id": 5738, "properties": { "facing": "north", "waterlogged": "true" @@ -45215,49 +42849,49 @@ }, { "default": true, - "id": 6507, + "id": 5739, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 6508, + "id": 5740, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 6509, + "id": 5741, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 6510, + "id": 5742, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 6511, + "id": 5743, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 6512, + "id": 5744, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 6513, + "id": 5745, "properties": { "facing": "east", "waterlogged": "false" @@ -45285,7 +42919,7 @@ }, "states": [ { - "id": 5658, + "id": 4890, "properties": { "facing": "north", "waterlogged": "true" @@ -45293,49 +42927,49 @@ }, { "default": true, - "id": 5659, + "id": 4891, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 5660, + "id": 4892, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 5661, + "id": 4893, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 5662, + "id": 4894, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 5663, + "id": 4895, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 5664, + "id": 4896, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 5665, + "id": 4897, "properties": { "facing": "east", "waterlogged": "false" @@ -45380,8 +43014,6 @@ "minecraft:chest": { "definition": { "type": "minecraft:chest", - "close_sound": "minecraft:block.chest.close", - "open_sound": "minecraft:block.chest.open", "properties": {} }, "properties": { @@ -45403,7 +43035,7 @@ }, "states": [ { - "id": 3786, + "id": 3018, "properties": { "type": "single", "facing": "north", @@ -45412,7 +43044,7 @@ }, { "default": true, - "id": 3787, + "id": 3019, "properties": { "type": "single", "facing": "north", @@ -45420,7 +43052,7 @@ } }, { - "id": 3788, + "id": 3020, "properties": { "type": "left", "facing": "north", @@ -45428,7 +43060,7 @@ } }, { - "id": 3789, + "id": 3021, "properties": { "type": "left", "facing": "north", @@ -45436,7 +43068,7 @@ } }, { - "id": 3790, + "id": 3022, "properties": { "type": "right", "facing": "north", @@ -45444,7 +43076,7 @@ } }, { - "id": 3791, + "id": 3023, "properties": { "type": "right", "facing": "north", @@ -45452,7 +43084,7 @@ } }, { - "id": 3792, + "id": 3024, "properties": { "type": "single", "facing": "south", @@ -45460,7 +43092,7 @@ } }, { - "id": 3793, + "id": 3025, "properties": { "type": "single", "facing": "south", @@ -45468,7 +43100,7 @@ } }, { - "id": 3794, + "id": 3026, "properties": { "type": "left", "facing": "south", @@ -45476,7 +43108,7 @@ } }, { - "id": 3795, + "id": 3027, "properties": { "type": "left", "facing": "south", @@ -45484,7 +43116,7 @@ } }, { - "id": 3796, + "id": 3028, "properties": { "type": "right", "facing": "south", @@ -45492,7 +43124,7 @@ } }, { - "id": 3797, + "id": 3029, "properties": { "type": "right", "facing": "south", @@ -45500,7 +43132,7 @@ } }, { - "id": 3798, + "id": 3030, "properties": { "type": "single", "facing": "west", @@ -45508,7 +43140,7 @@ } }, { - "id": 3799, + "id": 3031, "properties": { "type": "single", "facing": "west", @@ -45516,7 +43148,7 @@ } }, { - "id": 3800, + "id": 3032, "properties": { "type": "left", "facing": "west", @@ -45524,7 +43156,7 @@ } }, { - "id": 3801, + "id": 3033, "properties": { "type": "left", "facing": "west", @@ -45532,7 +43164,7 @@ } }, { - "id": 3802, + "id": 3034, "properties": { "type": "right", "facing": "west", @@ -45540,7 +43172,7 @@ } }, { - "id": 3803, + "id": 3035, "properties": { "type": "right", "facing": "west", @@ -45548,7 +43180,7 @@ } }, { - "id": 3804, + "id": 3036, "properties": { "type": "single", "facing": "east", @@ -45556,7 +43188,7 @@ } }, { - "id": 3805, + "id": 3037, "properties": { "type": "single", "facing": "east", @@ -45564,7 +43196,7 @@ } }, { - "id": 3806, + "id": 3038, "properties": { "type": "left", "facing": "east", @@ -45572,7 +43204,7 @@ } }, { - "id": 3807, + "id": 3039, "properties": { "type": "left", "facing": "east", @@ -45580,7 +43212,7 @@ } }, { - "id": 3808, + "id": 3040, "properties": { "type": "right", "facing": "east", @@ -45588,7 +43220,7 @@ } }, { - "id": 3809, + "id": 3041, "properties": { "type": "right", "facing": "east", @@ -45613,25 +43245,25 @@ "states": [ { "default": true, - "id": 10997, + "id": 9920, "properties": { "facing": "north" } }, { - "id": 10998, + "id": 9921, "properties": { "facing": "south" } }, { - "id": 10999, + "id": 9922, "properties": { "facing": "west" } }, { - "id": 11000, + "id": 9923, "properties": { "facing": "east" } @@ -48760,7 +46392,7 @@ "states": [ { "default": true, - "id": 25120 + "id": 23979 } ] }, @@ -48772,7 +46404,7 @@ "states": [ { "default": true, - "id": 29368 + "id": 27611 } ] }, @@ -48784,7 +46416,7 @@ "states": [ { "default": true, - "id": 22891 + "id": 21750 } ] }, @@ -48796,7 +46428,7 @@ "states": [ { "default": true, - "id": 22043 + "id": 20902 } ] }, @@ -48808,7 +46440,7 @@ "states": [ { "default": true, - "id": 11122 + "id": 10045 } ] }, @@ -48820,7 +46452,7 @@ "states": [ { "default": true, - "id": 13046 + "id": 11969 } ] }, @@ -48832,7 +46464,7 @@ "states": [ { "default": true, - "id": 9132 + "id": 8055 } ] }, @@ -48856,7 +46488,7 @@ "states": [ { "default": true, - "id": 7556 + "id": 6783 } ] }, @@ -48868,7 +46500,7 @@ "states": [ { "default": true, - "id": 24072 + "id": 22931 } ] }, @@ -48880,7 +46512,7 @@ "states": [ { "default": true, - "id": 24484 + "id": 23343 } ] }, @@ -48903,37 +46535,37 @@ "states": [ { "default": true, - "id": 14504, + "id": 13427, "properties": { "age": "0" } }, { - "id": 14505, + "id": 13428, "properties": { "age": "1" } }, { - "id": 14506, + "id": 13429, "properties": { "age": "2" } }, { - "id": 14507, + "id": 13430, "properties": { "age": "3" } }, { - "id": 14508, + "id": 13431, "properties": { "age": "4" } }, { - "id": 14509, + "id": 13432, "properties": { "age": "5" } @@ -48973,7 +46605,7 @@ }, "states": [ { - "id": 14440, + "id": 13363, "properties": { "down": "true", "east": "true", @@ -48984,7 +46616,7 @@ } }, { - "id": 14441, + "id": 13364, "properties": { "down": "true", "east": "true", @@ -48995,7 +46627,7 @@ } }, { - "id": 14442, + "id": 13365, "properties": { "down": "true", "east": "true", @@ -49006,7 +46638,7 @@ } }, { - "id": 14443, + "id": 13366, "properties": { "down": "true", "east": "true", @@ -49017,7 +46649,7 @@ } }, { - "id": 14444, + "id": 13367, "properties": { "down": "true", "east": "true", @@ -49028,7 +46660,7 @@ } }, { - "id": 14445, + "id": 13368, "properties": { "down": "true", "east": "true", @@ -49039,7 +46671,7 @@ } }, { - "id": 14446, + "id": 13369, "properties": { "down": "true", "east": "true", @@ -49050,7 +46682,7 @@ } }, { - "id": 14447, + "id": 13370, "properties": { "down": "true", "east": "true", @@ -49061,7 +46693,7 @@ } }, { - "id": 14448, + "id": 13371, "properties": { "down": "true", "east": "true", @@ -49072,7 +46704,7 @@ } }, { - "id": 14449, + "id": 13372, "properties": { "down": "true", "east": "true", @@ -49083,7 +46715,7 @@ } }, { - "id": 14450, + "id": 13373, "properties": { "down": "true", "east": "true", @@ -49094,7 +46726,7 @@ } }, { - "id": 14451, + "id": 13374, "properties": { "down": "true", "east": "true", @@ -49105,7 +46737,7 @@ } }, { - "id": 14452, + "id": 13375, "properties": { "down": "true", "east": "true", @@ -49116,7 +46748,7 @@ } }, { - "id": 14453, + "id": 13376, "properties": { "down": "true", "east": "true", @@ -49127,7 +46759,7 @@ } }, { - "id": 14454, + "id": 13377, "properties": { "down": "true", "east": "true", @@ -49138,7 +46770,7 @@ } }, { - "id": 14455, + "id": 13378, "properties": { "down": "true", "east": "true", @@ -49149,7 +46781,7 @@ } }, { - "id": 14456, + "id": 13379, "properties": { "down": "true", "east": "false", @@ -49160,7 +46792,7 @@ } }, { - "id": 14457, + "id": 13380, "properties": { "down": "true", "east": "false", @@ -49171,7 +46803,7 @@ } }, { - "id": 14458, + "id": 13381, "properties": { "down": "true", "east": "false", @@ -49182,7 +46814,7 @@ } }, { - "id": 14459, + "id": 13382, "properties": { "down": "true", "east": "false", @@ -49193,7 +46825,7 @@ } }, { - "id": 14460, + "id": 13383, "properties": { "down": "true", "east": "false", @@ -49204,7 +46836,7 @@ } }, { - "id": 14461, + "id": 13384, "properties": { "down": "true", "east": "false", @@ -49215,7 +46847,7 @@ } }, { - "id": 14462, + "id": 13385, "properties": { "down": "true", "east": "false", @@ -49226,7 +46858,7 @@ } }, { - "id": 14463, + "id": 13386, "properties": { "down": "true", "east": "false", @@ -49237,7 +46869,7 @@ } }, { - "id": 14464, + "id": 13387, "properties": { "down": "true", "east": "false", @@ -49248,7 +46880,7 @@ } }, { - "id": 14465, + "id": 13388, "properties": { "down": "true", "east": "false", @@ -49259,7 +46891,7 @@ } }, { - "id": 14466, + "id": 13389, "properties": { "down": "true", "east": "false", @@ -49270,7 +46902,7 @@ } }, { - "id": 14467, + "id": 13390, "properties": { "down": "true", "east": "false", @@ -49281,7 +46913,7 @@ } }, { - "id": 14468, + "id": 13391, "properties": { "down": "true", "east": "false", @@ -49292,7 +46924,7 @@ } }, { - "id": 14469, + "id": 13392, "properties": { "down": "true", "east": "false", @@ -49303,7 +46935,7 @@ } }, { - "id": 14470, + "id": 13393, "properties": { "down": "true", "east": "false", @@ -49314,7 +46946,7 @@ } }, { - "id": 14471, + "id": 13394, "properties": { "down": "true", "east": "false", @@ -49325,7 +46957,7 @@ } }, { - "id": 14472, + "id": 13395, "properties": { "down": "false", "east": "true", @@ -49336,7 +46968,7 @@ } }, { - "id": 14473, + "id": 13396, "properties": { "down": "false", "east": "true", @@ -49347,7 +46979,7 @@ } }, { - "id": 14474, + "id": 13397, "properties": { "down": "false", "east": "true", @@ -49358,7 +46990,7 @@ } }, { - "id": 14475, + "id": 13398, "properties": { "down": "false", "east": "true", @@ -49369,7 +47001,7 @@ } }, { - "id": 14476, + "id": 13399, "properties": { "down": "false", "east": "true", @@ -49380,7 +47012,7 @@ } }, { - "id": 14477, + "id": 13400, "properties": { "down": "false", "east": "true", @@ -49391,7 +47023,7 @@ } }, { - "id": 14478, + "id": 13401, "properties": { "down": "false", "east": "true", @@ -49402,7 +47034,7 @@ } }, { - "id": 14479, + "id": 13402, "properties": { "down": "false", "east": "true", @@ -49413,7 +47045,7 @@ } }, { - "id": 14480, + "id": 13403, "properties": { "down": "false", "east": "true", @@ -49424,7 +47056,7 @@ } }, { - "id": 14481, + "id": 13404, "properties": { "down": "false", "east": "true", @@ -49435,7 +47067,7 @@ } }, { - "id": 14482, + "id": 13405, "properties": { "down": "false", "east": "true", @@ -49446,7 +47078,7 @@ } }, { - "id": 14483, + "id": 13406, "properties": { "down": "false", "east": "true", @@ -49457,7 +47089,7 @@ } }, { - "id": 14484, + "id": 13407, "properties": { "down": "false", "east": "true", @@ -49468,7 +47100,7 @@ } }, { - "id": 14485, + "id": 13408, "properties": { "down": "false", "east": "true", @@ -49479,7 +47111,7 @@ } }, { - "id": 14486, + "id": 13409, "properties": { "down": "false", "east": "true", @@ -49490,7 +47122,7 @@ } }, { - "id": 14487, + "id": 13410, "properties": { "down": "false", "east": "true", @@ -49501,7 +47133,7 @@ } }, { - "id": 14488, + "id": 13411, "properties": { "down": "false", "east": "false", @@ -49512,7 +47144,7 @@ } }, { - "id": 14489, + "id": 13412, "properties": { "down": "false", "east": "false", @@ -49523,7 +47155,7 @@ } }, { - "id": 14490, + "id": 13413, "properties": { "down": "false", "east": "false", @@ -49534,7 +47166,7 @@ } }, { - "id": 14491, + "id": 13414, "properties": { "down": "false", "east": "false", @@ -49545,7 +47177,7 @@ } }, { - "id": 14492, + "id": 13415, "properties": { "down": "false", "east": "false", @@ -49556,7 +47188,7 @@ } }, { - "id": 14493, + "id": 13416, "properties": { "down": "false", "east": "false", @@ -49567,7 +47199,7 @@ } }, { - "id": 14494, + "id": 13417, "properties": { "down": "false", "east": "false", @@ -49578,7 +47210,7 @@ } }, { - "id": 14495, + "id": 13418, "properties": { "down": "false", "east": "false", @@ -49589,7 +47221,7 @@ } }, { - "id": 14496, + "id": 13419, "properties": { "down": "false", "east": "false", @@ -49600,7 +47232,7 @@ } }, { - "id": 14497, + "id": 13420, "properties": { "down": "false", "east": "false", @@ -49611,7 +47243,7 @@ } }, { - "id": 14498, + "id": 13421, "properties": { "down": "false", "east": "false", @@ -49622,7 +47254,7 @@ } }, { - "id": 14499, + "id": 13422, "properties": { "down": "false", "east": "false", @@ -49633,7 +47265,7 @@ } }, { - "id": 14500, + "id": 13423, "properties": { "down": "false", "east": "false", @@ -49644,7 +47276,7 @@ } }, { - "id": 14501, + "id": 13424, "properties": { "down": "false", "east": "false", @@ -49655,7 +47287,7 @@ } }, { - "id": 14502, + "id": 13425, "properties": { "down": "false", "east": "false", @@ -49667,7 +47299,7 @@ }, { "default": true, - "id": 14503, + "id": 13426, "properties": { "down": "false", "east": "false", @@ -49687,7 +47319,7 @@ "states": [ { "default": true, - "id": 6745 + "id": 5977 } ] }, @@ -49700,7 +47332,7 @@ "states": [ { "default": true, - "id": 29667 + "id": 27910 } ] }, @@ -49712,7 +47344,7 @@ "states": [ { "default": true, - "id": 12711 + "id": 11634 } ] }, @@ -49753,7 +47385,7 @@ "states": [ { "default": true, - "id": 27724 + "id": 25967 } ] }, @@ -49775,21 +47407,21 @@ }, "states": [ { - "id": 27805, + "id": 26048, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 27806, + "id": 26049, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 27807, + "id": 26050, "properties": { "type": "bottom", "waterlogged": "true" @@ -49797,21 +47429,21 @@ }, { "default": true, - "id": 27808, + "id": 26051, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 27809, + "id": 26052, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 27810, + "id": 26053, "properties": { "type": "double", "waterlogged": "false" @@ -49852,7 +47484,7 @@ }, "states": [ { - "id": 27725, + "id": 25968, "properties": { "facing": "north", "half": "top", @@ -49861,7 +47493,7 @@ } }, { - "id": 27726, + "id": 25969, "properties": { "facing": "north", "half": "top", @@ -49870,7 +47502,7 @@ } }, { - "id": 27727, + "id": 25970, "properties": { "facing": "north", "half": "top", @@ -49879,7 +47511,7 @@ } }, { - "id": 27728, + "id": 25971, "properties": { "facing": "north", "half": "top", @@ -49888,7 +47520,7 @@ } }, { - "id": 27729, + "id": 25972, "properties": { "facing": "north", "half": "top", @@ -49897,7 +47529,7 @@ } }, { - "id": 27730, + "id": 25973, "properties": { "facing": "north", "half": "top", @@ -49906,7 +47538,7 @@ } }, { - "id": 27731, + "id": 25974, "properties": { "facing": "north", "half": "top", @@ -49915,7 +47547,7 @@ } }, { - "id": 27732, + "id": 25975, "properties": { "facing": "north", "half": "top", @@ -49924,7 +47556,7 @@ } }, { - "id": 27733, + "id": 25976, "properties": { "facing": "north", "half": "top", @@ -49933,7 +47565,7 @@ } }, { - "id": 27734, + "id": 25977, "properties": { "facing": "north", "half": "top", @@ -49942,7 +47574,7 @@ } }, { - "id": 27735, + "id": 25978, "properties": { "facing": "north", "half": "bottom", @@ -49952,7 +47584,7 @@ }, { "default": true, - "id": 27736, + "id": 25979, "properties": { "facing": "north", "half": "bottom", @@ -49961,7 +47593,7 @@ } }, { - "id": 27737, + "id": 25980, "properties": { "facing": "north", "half": "bottom", @@ -49970,7 +47602,7 @@ } }, { - "id": 27738, + "id": 25981, "properties": { "facing": "north", "half": "bottom", @@ -49979,7 +47611,7 @@ } }, { - "id": 27739, + "id": 25982, "properties": { "facing": "north", "half": "bottom", @@ -49988,7 +47620,7 @@ } }, { - "id": 27740, + "id": 25983, "properties": { "facing": "north", "half": "bottom", @@ -49997,7 +47629,7 @@ } }, { - "id": 27741, + "id": 25984, "properties": { "facing": "north", "half": "bottom", @@ -50006,7 +47638,7 @@ } }, { - "id": 27742, + "id": 25985, "properties": { "facing": "north", "half": "bottom", @@ -50015,7 +47647,7 @@ } }, { - "id": 27743, + "id": 25986, "properties": { "facing": "north", "half": "bottom", @@ -50024,7 +47656,7 @@ } }, { - "id": 27744, + "id": 25987, "properties": { "facing": "north", "half": "bottom", @@ -50033,7 +47665,7 @@ } }, { - "id": 27745, + "id": 25988, "properties": { "facing": "south", "half": "top", @@ -50042,7 +47674,7 @@ } }, { - "id": 27746, + "id": 25989, "properties": { "facing": "south", "half": "top", @@ -50051,7 +47683,7 @@ } }, { - "id": 27747, + "id": 25990, "properties": { "facing": "south", "half": "top", @@ -50060,7 +47692,7 @@ } }, { - "id": 27748, + "id": 25991, "properties": { "facing": "south", "half": "top", @@ -50069,7 +47701,7 @@ } }, { - "id": 27749, + "id": 25992, "properties": { "facing": "south", "half": "top", @@ -50078,7 +47710,7 @@ } }, { - "id": 27750, + "id": 25993, "properties": { "facing": "south", "half": "top", @@ -50087,7 +47719,7 @@ } }, { - "id": 27751, + "id": 25994, "properties": { "facing": "south", "half": "top", @@ -50096,7 +47728,7 @@ } }, { - "id": 27752, + "id": 25995, "properties": { "facing": "south", "half": "top", @@ -50105,7 +47737,7 @@ } }, { - "id": 27753, + "id": 25996, "properties": { "facing": "south", "half": "top", @@ -50114,7 +47746,7 @@ } }, { - "id": 27754, + "id": 25997, "properties": { "facing": "south", "half": "top", @@ -50123,7 +47755,7 @@ } }, { - "id": 27755, + "id": 25998, "properties": { "facing": "south", "half": "bottom", @@ -50132,7 +47764,7 @@ } }, { - "id": 27756, + "id": 25999, "properties": { "facing": "south", "half": "bottom", @@ -50141,7 +47773,7 @@ } }, { - "id": 27757, + "id": 26000, "properties": { "facing": "south", "half": "bottom", @@ -50150,7 +47782,7 @@ } }, { - "id": 27758, + "id": 26001, "properties": { "facing": "south", "half": "bottom", @@ -50159,7 +47791,7 @@ } }, { - "id": 27759, + "id": 26002, "properties": { "facing": "south", "half": "bottom", @@ -50168,7 +47800,7 @@ } }, { - "id": 27760, + "id": 26003, "properties": { "facing": "south", "half": "bottom", @@ -50177,7 +47809,7 @@ } }, { - "id": 27761, + "id": 26004, "properties": { "facing": "south", "half": "bottom", @@ -50186,7 +47818,7 @@ } }, { - "id": 27762, + "id": 26005, "properties": { "facing": "south", "half": "bottom", @@ -50195,7 +47827,7 @@ } }, { - "id": 27763, + "id": 26006, "properties": { "facing": "south", "half": "bottom", @@ -50204,7 +47836,7 @@ } }, { - "id": 27764, + "id": 26007, "properties": { "facing": "south", "half": "bottom", @@ -50213,7 +47845,7 @@ } }, { - "id": 27765, + "id": 26008, "properties": { "facing": "west", "half": "top", @@ -50222,7 +47854,7 @@ } }, { - "id": 27766, + "id": 26009, "properties": { "facing": "west", "half": "top", @@ -50231,7 +47863,7 @@ } }, { - "id": 27767, + "id": 26010, "properties": { "facing": "west", "half": "top", @@ -50240,7 +47872,7 @@ } }, { - "id": 27768, + "id": 26011, "properties": { "facing": "west", "half": "top", @@ -50249,7 +47881,7 @@ } }, { - "id": 27769, + "id": 26012, "properties": { "facing": "west", "half": "top", @@ -50258,7 +47890,7 @@ } }, { - "id": 27770, + "id": 26013, "properties": { "facing": "west", "half": "top", @@ -50267,7 +47899,7 @@ } }, { - "id": 27771, + "id": 26014, "properties": { "facing": "west", "half": "top", @@ -50276,7 +47908,7 @@ } }, { - "id": 27772, + "id": 26015, "properties": { "facing": "west", "half": "top", @@ -50285,7 +47917,7 @@ } }, { - "id": 27773, + "id": 26016, "properties": { "facing": "west", "half": "top", @@ -50294,7 +47926,7 @@ } }, { - "id": 27774, + "id": 26017, "properties": { "facing": "west", "half": "top", @@ -50303,7 +47935,7 @@ } }, { - "id": 27775, + "id": 26018, "properties": { "facing": "west", "half": "bottom", @@ -50312,7 +47944,7 @@ } }, { - "id": 27776, + "id": 26019, "properties": { "facing": "west", "half": "bottom", @@ -50321,7 +47953,7 @@ } }, { - "id": 27777, + "id": 26020, "properties": { "facing": "west", "half": "bottom", @@ -50330,7 +47962,7 @@ } }, { - "id": 27778, + "id": 26021, "properties": { "facing": "west", "half": "bottom", @@ -50339,7 +47971,7 @@ } }, { - "id": 27779, + "id": 26022, "properties": { "facing": "west", "half": "bottom", @@ -50348,7 +47980,7 @@ } }, { - "id": 27780, + "id": 26023, "properties": { "facing": "west", "half": "bottom", @@ -50357,7 +47989,7 @@ } }, { - "id": 27781, + "id": 26024, "properties": { "facing": "west", "half": "bottom", @@ -50366,7 +47998,7 @@ } }, { - "id": 27782, + "id": 26025, "properties": { "facing": "west", "half": "bottom", @@ -50375,7 +48007,7 @@ } }, { - "id": 27783, + "id": 26026, "properties": { "facing": "west", "half": "bottom", @@ -50384,7 +48016,7 @@ } }, { - "id": 27784, + "id": 26027, "properties": { "facing": "west", "half": "bottom", @@ -50393,7 +48025,7 @@ } }, { - "id": 27785, + "id": 26028, "properties": { "facing": "east", "half": "top", @@ -50402,7 +48034,7 @@ } }, { - "id": 27786, + "id": 26029, "properties": { "facing": "east", "half": "top", @@ -50411,7 +48043,7 @@ } }, { - "id": 27787, + "id": 26030, "properties": { "facing": "east", "half": "top", @@ -50420,7 +48052,7 @@ } }, { - "id": 27788, + "id": 26031, "properties": { "facing": "east", "half": "top", @@ -50429,7 +48061,7 @@ } }, { - "id": 27789, + "id": 26032, "properties": { "facing": "east", "half": "top", @@ -50438,7 +48070,7 @@ } }, { - "id": 27790, + "id": 26033, "properties": { "facing": "east", "half": "top", @@ -50447,7 +48079,7 @@ } }, { - "id": 27791, + "id": 26034, "properties": { "facing": "east", "half": "top", @@ -50456,7 +48088,7 @@ } }, { - "id": 27792, + "id": 26035, "properties": { "facing": "east", "half": "top", @@ -50465,7 +48097,7 @@ } }, { - "id": 27793, + "id": 26036, "properties": { "facing": "east", "half": "top", @@ -50474,7 +48106,7 @@ } }, { - "id": 27794, + "id": 26037, "properties": { "facing": "east", "half": "top", @@ -50483,7 +48115,7 @@ } }, { - "id": 27795, + "id": 26038, "properties": { "facing": "east", "half": "bottom", @@ -50492,7 +48124,7 @@ } }, { - "id": 27796, + "id": 26039, "properties": { "facing": "east", "half": "bottom", @@ -50501,7 +48133,7 @@ } }, { - "id": 27797, + "id": 26040, "properties": { "facing": "east", "half": "bottom", @@ -50510,7 +48142,7 @@ } }, { - "id": 27798, + "id": 26041, "properties": { "facing": "east", "half": "bottom", @@ -50519,7 +48151,7 @@ } }, { - "id": 27799, + "id": 26042, "properties": { "facing": "east", "half": "bottom", @@ -50528,7 +48160,7 @@ } }, { - "id": 27800, + "id": 26043, "properties": { "facing": "east", "half": "bottom", @@ -50537,7 +48169,7 @@ } }, { - "id": 27801, + "id": 26044, "properties": { "facing": "east", "half": "bottom", @@ -50546,7 +48178,7 @@ } }, { - "id": 27802, + "id": 26045, "properties": { "facing": "east", "half": "bottom", @@ -50555,7 +48187,7 @@ } }, { - "id": 27803, + "id": 26046, "properties": { "facing": "east", "half": "bottom", @@ -50564,7 +48196,7 @@ } }, { - "id": 27804, + "id": 26047, "properties": { "facing": "east", "half": "bottom", @@ -50611,7 +48243,7 @@ }, "states": [ { - "id": 27811, + "id": 26054, "properties": { "east": "none", "north": "none", @@ -50622,7 +48254,7 @@ } }, { - "id": 27812, + "id": 26055, "properties": { "east": "none", "north": "none", @@ -50633,7 +48265,7 @@ } }, { - "id": 27813, + "id": 26056, "properties": { "east": "none", "north": "none", @@ -50645,7 +48277,7 @@ }, { "default": true, - "id": 27814, + "id": 26057, "properties": { "east": "none", "north": "none", @@ -50656,7 +48288,7 @@ } }, { - "id": 27815, + "id": 26058, "properties": { "east": "none", "north": "none", @@ -50667,7 +48299,7 @@ } }, { - "id": 27816, + "id": 26059, "properties": { "east": "none", "north": "none", @@ -50678,7 +48310,7 @@ } }, { - "id": 27817, + "id": 26060, "properties": { "east": "none", "north": "none", @@ -50689,7 +48321,7 @@ } }, { - "id": 27818, + "id": 26061, "properties": { "east": "none", "north": "none", @@ -50700,7 +48332,7 @@ } }, { - "id": 27819, + "id": 26062, "properties": { "east": "none", "north": "none", @@ -50711,7 +48343,7 @@ } }, { - "id": 27820, + "id": 26063, "properties": { "east": "none", "north": "none", @@ -50722,7 +48354,7 @@ } }, { - "id": 27821, + "id": 26064, "properties": { "east": "none", "north": "none", @@ -50733,7 +48365,7 @@ } }, { - "id": 27822, + "id": 26065, "properties": { "east": "none", "north": "none", @@ -50744,7 +48376,7 @@ } }, { - "id": 27823, + "id": 26066, "properties": { "east": "none", "north": "none", @@ -50755,7 +48387,7 @@ } }, { - "id": 27824, + "id": 26067, "properties": { "east": "none", "north": "none", @@ -50766,7 +48398,7 @@ } }, { - "id": 27825, + "id": 26068, "properties": { "east": "none", "north": "none", @@ -50777,7 +48409,7 @@ } }, { - "id": 27826, + "id": 26069, "properties": { "east": "none", "north": "none", @@ -50788,7 +48420,7 @@ } }, { - "id": 27827, + "id": 26070, "properties": { "east": "none", "north": "none", @@ -50799,7 +48431,7 @@ } }, { - "id": 27828, + "id": 26071, "properties": { "east": "none", "north": "none", @@ -50810,7 +48442,7 @@ } }, { - "id": 27829, + "id": 26072, "properties": { "east": "none", "north": "none", @@ -50821,7 +48453,7 @@ } }, { - "id": 27830, + "id": 26073, "properties": { "east": "none", "north": "none", @@ -50832,7 +48464,7 @@ } }, { - "id": 27831, + "id": 26074, "properties": { "east": "none", "north": "none", @@ -50843,7 +48475,7 @@ } }, { - "id": 27832, + "id": 26075, "properties": { "east": "none", "north": "none", @@ -50854,7 +48486,7 @@ } }, { - "id": 27833, + "id": 26076, "properties": { "east": "none", "north": "none", @@ -50865,7 +48497,7 @@ } }, { - "id": 27834, + "id": 26077, "properties": { "east": "none", "north": "none", @@ -50876,7 +48508,7 @@ } }, { - "id": 27835, + "id": 26078, "properties": { "east": "none", "north": "none", @@ -50887,7 +48519,7 @@ } }, { - "id": 27836, + "id": 26079, "properties": { "east": "none", "north": "none", @@ -50898,7 +48530,7 @@ } }, { - "id": 27837, + "id": 26080, "properties": { "east": "none", "north": "none", @@ -50909,7 +48541,7 @@ } }, { - "id": 27838, + "id": 26081, "properties": { "east": "none", "north": "none", @@ -50920,7 +48552,7 @@ } }, { - "id": 27839, + "id": 26082, "properties": { "east": "none", "north": "none", @@ -50931,7 +48563,7 @@ } }, { - "id": 27840, + "id": 26083, "properties": { "east": "none", "north": "none", @@ -50942,7 +48574,7 @@ } }, { - "id": 27841, + "id": 26084, "properties": { "east": "none", "north": "none", @@ -50953,7 +48585,7 @@ } }, { - "id": 27842, + "id": 26085, "properties": { "east": "none", "north": "none", @@ -50964,7 +48596,7 @@ } }, { - "id": 27843, + "id": 26086, "properties": { "east": "none", "north": "none", @@ -50975,7 +48607,7 @@ } }, { - "id": 27844, + "id": 26087, "properties": { "east": "none", "north": "none", @@ -50986,7 +48618,7 @@ } }, { - "id": 27845, + "id": 26088, "properties": { "east": "none", "north": "none", @@ -50997,7 +48629,7 @@ } }, { - "id": 27846, + "id": 26089, "properties": { "east": "none", "north": "none", @@ -51008,7 +48640,7 @@ } }, { - "id": 27847, + "id": 26090, "properties": { "east": "none", "north": "low", @@ -51019,7 +48651,7 @@ } }, { - "id": 27848, + "id": 26091, "properties": { "east": "none", "north": "low", @@ -51030,7 +48662,7 @@ } }, { - "id": 27849, + "id": 26092, "properties": { "east": "none", "north": "low", @@ -51041,7 +48673,7 @@ } }, { - "id": 27850, + "id": 26093, "properties": { "east": "none", "north": "low", @@ -51052,7 +48684,7 @@ } }, { - "id": 27851, + "id": 26094, "properties": { "east": "none", "north": "low", @@ -51063,7 +48695,7 @@ } }, { - "id": 27852, + "id": 26095, "properties": { "east": "none", "north": "low", @@ -51074,7 +48706,7 @@ } }, { - "id": 27853, + "id": 26096, "properties": { "east": "none", "north": "low", @@ -51085,7 +48717,7 @@ } }, { - "id": 27854, + "id": 26097, "properties": { "east": "none", "north": "low", @@ -51096,7 +48728,7 @@ } }, { - "id": 27855, + "id": 26098, "properties": { "east": "none", "north": "low", @@ -51107,7 +48739,7 @@ } }, { - "id": 27856, + "id": 26099, "properties": { "east": "none", "north": "low", @@ -51118,7 +48750,7 @@ } }, { - "id": 27857, + "id": 26100, "properties": { "east": "none", "north": "low", @@ -51129,7 +48761,7 @@ } }, { - "id": 27858, + "id": 26101, "properties": { "east": "none", "north": "low", @@ -51140,7 +48772,7 @@ } }, { - "id": 27859, + "id": 26102, "properties": { "east": "none", "north": "low", @@ -51151,7 +48783,7 @@ } }, { - "id": 27860, + "id": 26103, "properties": { "east": "none", "north": "low", @@ -51162,7 +48794,7 @@ } }, { - "id": 27861, + "id": 26104, "properties": { "east": "none", "north": "low", @@ -51173,7 +48805,7 @@ } }, { - "id": 27862, + "id": 26105, "properties": { "east": "none", "north": "low", @@ -51184,7 +48816,7 @@ } }, { - "id": 27863, + "id": 26106, "properties": { "east": "none", "north": "low", @@ -51195,7 +48827,7 @@ } }, { - "id": 27864, + "id": 26107, "properties": { "east": "none", "north": "low", @@ -51206,7 +48838,7 @@ } }, { - "id": 27865, + "id": 26108, "properties": { "east": "none", "north": "low", @@ -51217,7 +48849,7 @@ } }, { - "id": 27866, + "id": 26109, "properties": { "east": "none", "north": "low", @@ -51228,7 +48860,7 @@ } }, { - "id": 27867, + "id": 26110, "properties": { "east": "none", "north": "low", @@ -51239,7 +48871,7 @@ } }, { - "id": 27868, + "id": 26111, "properties": { "east": "none", "north": "low", @@ -51250,7 +48882,7 @@ } }, { - "id": 27869, + "id": 26112, "properties": { "east": "none", "north": "low", @@ -51261,7 +48893,7 @@ } }, { - "id": 27870, + "id": 26113, "properties": { "east": "none", "north": "low", @@ -51272,7 +48904,7 @@ } }, { - "id": 27871, + "id": 26114, "properties": { "east": "none", "north": "low", @@ -51283,7 +48915,7 @@ } }, { - "id": 27872, + "id": 26115, "properties": { "east": "none", "north": "low", @@ -51294,7 +48926,7 @@ } }, { - "id": 27873, + "id": 26116, "properties": { "east": "none", "north": "low", @@ -51305,7 +48937,7 @@ } }, { - "id": 27874, + "id": 26117, "properties": { "east": "none", "north": "low", @@ -51316,7 +48948,7 @@ } }, { - "id": 27875, + "id": 26118, "properties": { "east": "none", "north": "low", @@ -51327,7 +48959,7 @@ } }, { - "id": 27876, + "id": 26119, "properties": { "east": "none", "north": "low", @@ -51338,7 +48970,7 @@ } }, { - "id": 27877, + "id": 26120, "properties": { "east": "none", "north": "low", @@ -51349,7 +48981,7 @@ } }, { - "id": 27878, + "id": 26121, "properties": { "east": "none", "north": "low", @@ -51360,7 +48992,7 @@ } }, { - "id": 27879, + "id": 26122, "properties": { "east": "none", "north": "low", @@ -51371,7 +49003,7 @@ } }, { - "id": 27880, + "id": 26123, "properties": { "east": "none", "north": "low", @@ -51382,7 +49014,7 @@ } }, { - "id": 27881, + "id": 26124, "properties": { "east": "none", "north": "low", @@ -51393,7 +49025,7 @@ } }, { - "id": 27882, + "id": 26125, "properties": { "east": "none", "north": "low", @@ -51404,7 +49036,7 @@ } }, { - "id": 27883, + "id": 26126, "properties": { "east": "none", "north": "tall", @@ -51415,7 +49047,7 @@ } }, { - "id": 27884, + "id": 26127, "properties": { "east": "none", "north": "tall", @@ -51426,7 +49058,7 @@ } }, { - "id": 27885, + "id": 26128, "properties": { "east": "none", "north": "tall", @@ -51437,7 +49069,7 @@ } }, { - "id": 27886, + "id": 26129, "properties": { "east": "none", "north": "tall", @@ -51448,7 +49080,7 @@ } }, { - "id": 27887, + "id": 26130, "properties": { "east": "none", "north": "tall", @@ -51459,7 +49091,7 @@ } }, { - "id": 27888, + "id": 26131, "properties": { "east": "none", "north": "tall", @@ -51470,7 +49102,7 @@ } }, { - "id": 27889, + "id": 26132, "properties": { "east": "none", "north": "tall", @@ -51481,7 +49113,7 @@ } }, { - "id": 27890, + "id": 26133, "properties": { "east": "none", "north": "tall", @@ -51492,7 +49124,7 @@ } }, { - "id": 27891, + "id": 26134, "properties": { "east": "none", "north": "tall", @@ -51503,7 +49135,7 @@ } }, { - "id": 27892, + "id": 26135, "properties": { "east": "none", "north": "tall", @@ -51514,7 +49146,7 @@ } }, { - "id": 27893, + "id": 26136, "properties": { "east": "none", "north": "tall", @@ -51525,7 +49157,7 @@ } }, { - "id": 27894, + "id": 26137, "properties": { "east": "none", "north": "tall", @@ -51536,7 +49168,7 @@ } }, { - "id": 27895, + "id": 26138, "properties": { "east": "none", "north": "tall", @@ -51547,7 +49179,7 @@ } }, { - "id": 27896, + "id": 26139, "properties": { "east": "none", "north": "tall", @@ -51558,7 +49190,7 @@ } }, { - "id": 27897, + "id": 26140, "properties": { "east": "none", "north": "tall", @@ -51569,7 +49201,7 @@ } }, { - "id": 27898, + "id": 26141, "properties": { "east": "none", "north": "tall", @@ -51580,7 +49212,7 @@ } }, { - "id": 27899, + "id": 26142, "properties": { "east": "none", "north": "tall", @@ -51591,7 +49223,7 @@ } }, { - "id": 27900, + "id": 26143, "properties": { "east": "none", "north": "tall", @@ -51602,7 +49234,7 @@ } }, { - "id": 27901, + "id": 26144, "properties": { "east": "none", "north": "tall", @@ -51613,7 +49245,7 @@ } }, { - "id": 27902, + "id": 26145, "properties": { "east": "none", "north": "tall", @@ -51624,7 +49256,7 @@ } }, { - "id": 27903, + "id": 26146, "properties": { "east": "none", "north": "tall", @@ -51635,7 +49267,7 @@ } }, { - "id": 27904, + "id": 26147, "properties": { "east": "none", "north": "tall", @@ -51646,7 +49278,7 @@ } }, { - "id": 27905, + "id": 26148, "properties": { "east": "none", "north": "tall", @@ -51657,7 +49289,7 @@ } }, { - "id": 27906, + "id": 26149, "properties": { "east": "none", "north": "tall", @@ -51668,7 +49300,7 @@ } }, { - "id": 27907, + "id": 26150, "properties": { "east": "none", "north": "tall", @@ -51679,7 +49311,7 @@ } }, { - "id": 27908, + "id": 26151, "properties": { "east": "none", "north": "tall", @@ -51690,7 +49322,7 @@ } }, { - "id": 27909, + "id": 26152, "properties": { "east": "none", "north": "tall", @@ -51701,7 +49333,7 @@ } }, { - "id": 27910, + "id": 26153, "properties": { "east": "none", "north": "tall", @@ -51712,7 +49344,7 @@ } }, { - "id": 27911, + "id": 26154, "properties": { "east": "none", "north": "tall", @@ -51723,7 +49355,7 @@ } }, { - "id": 27912, + "id": 26155, "properties": { "east": "none", "north": "tall", @@ -51734,7 +49366,7 @@ } }, { - "id": 27913, + "id": 26156, "properties": { "east": "none", "north": "tall", @@ -51745,7 +49377,7 @@ } }, { - "id": 27914, + "id": 26157, "properties": { "east": "none", "north": "tall", @@ -51756,7 +49388,7 @@ } }, { - "id": 27915, + "id": 26158, "properties": { "east": "none", "north": "tall", @@ -51767,7 +49399,7 @@ } }, { - "id": 27916, + "id": 26159, "properties": { "east": "none", "north": "tall", @@ -51778,7 +49410,7 @@ } }, { - "id": 27917, + "id": 26160, "properties": { "east": "none", "north": "tall", @@ -51789,7 +49421,7 @@ } }, { - "id": 27918, + "id": 26161, "properties": { "east": "none", "north": "tall", @@ -51800,7 +49432,7 @@ } }, { - "id": 27919, + "id": 26162, "properties": { "east": "low", "north": "none", @@ -51811,7 +49443,7 @@ } }, { - "id": 27920, + "id": 26163, "properties": { "east": "low", "north": "none", @@ -51822,7 +49454,7 @@ } }, { - "id": 27921, + "id": 26164, "properties": { "east": "low", "north": "none", @@ -51833,7 +49465,7 @@ } }, { - "id": 27922, + "id": 26165, "properties": { "east": "low", "north": "none", @@ -51844,7 +49476,7 @@ } }, { - "id": 27923, + "id": 26166, "properties": { "east": "low", "north": "none", @@ -51855,7 +49487,7 @@ } }, { - "id": 27924, + "id": 26167, "properties": { "east": "low", "north": "none", @@ -51866,7 +49498,7 @@ } }, { - "id": 27925, + "id": 26168, "properties": { "east": "low", "north": "none", @@ -51877,7 +49509,7 @@ } }, { - "id": 27926, + "id": 26169, "properties": { "east": "low", "north": "none", @@ -51888,7 +49520,7 @@ } }, { - "id": 27927, + "id": 26170, "properties": { "east": "low", "north": "none", @@ -51899,7 +49531,7 @@ } }, { - "id": 27928, + "id": 26171, "properties": { "east": "low", "north": "none", @@ -51910,7 +49542,7 @@ } }, { - "id": 27929, + "id": 26172, "properties": { "east": "low", "north": "none", @@ -51921,7 +49553,7 @@ } }, { - "id": 27930, + "id": 26173, "properties": { "east": "low", "north": "none", @@ -51932,7 +49564,7 @@ } }, { - "id": 27931, + "id": 26174, "properties": { "east": "low", "north": "none", @@ -51943,7 +49575,7 @@ } }, { - "id": 27932, + "id": 26175, "properties": { "east": "low", "north": "none", @@ -51954,7 +49586,7 @@ } }, { - "id": 27933, + "id": 26176, "properties": { "east": "low", "north": "none", @@ -51965,7 +49597,7 @@ } }, { - "id": 27934, + "id": 26177, "properties": { "east": "low", "north": "none", @@ -51976,7 +49608,7 @@ } }, { - "id": 27935, + "id": 26178, "properties": { "east": "low", "north": "none", @@ -51987,7 +49619,7 @@ } }, { - "id": 27936, + "id": 26179, "properties": { "east": "low", "north": "none", @@ -51998,7 +49630,7 @@ } }, { - "id": 27937, + "id": 26180, "properties": { "east": "low", "north": "none", @@ -52009,7 +49641,7 @@ } }, { - "id": 27938, + "id": 26181, "properties": { "east": "low", "north": "none", @@ -52020,7 +49652,7 @@ } }, { - "id": 27939, + "id": 26182, "properties": { "east": "low", "north": "none", @@ -52031,7 +49663,7 @@ } }, { - "id": 27940, + "id": 26183, "properties": { "east": "low", "north": "none", @@ -52042,7 +49674,7 @@ } }, { - "id": 27941, + "id": 26184, "properties": { "east": "low", "north": "none", @@ -52053,7 +49685,7 @@ } }, { - "id": 27942, + "id": 26185, "properties": { "east": "low", "north": "none", @@ -52064,7 +49696,7 @@ } }, { - "id": 27943, + "id": 26186, "properties": { "east": "low", "north": "none", @@ -52075,7 +49707,7 @@ } }, { - "id": 27944, + "id": 26187, "properties": { "east": "low", "north": "none", @@ -52086,7 +49718,7 @@ } }, { - "id": 27945, + "id": 26188, "properties": { "east": "low", "north": "none", @@ -52097,7 +49729,7 @@ } }, { - "id": 27946, + "id": 26189, "properties": { "east": "low", "north": "none", @@ -52108,7 +49740,7 @@ } }, { - "id": 27947, + "id": 26190, "properties": { "east": "low", "north": "none", @@ -52119,7 +49751,7 @@ } }, { - "id": 27948, + "id": 26191, "properties": { "east": "low", "north": "none", @@ -52130,7 +49762,7 @@ } }, { - "id": 27949, + "id": 26192, "properties": { "east": "low", "north": "none", @@ -52141,7 +49773,7 @@ } }, { - "id": 27950, + "id": 26193, "properties": { "east": "low", "north": "none", @@ -52152,7 +49784,7 @@ } }, { - "id": 27951, + "id": 26194, "properties": { "east": "low", "north": "none", @@ -52163,7 +49795,7 @@ } }, { - "id": 27952, + "id": 26195, "properties": { "east": "low", "north": "none", @@ -52174,7 +49806,7 @@ } }, { - "id": 27953, + "id": 26196, "properties": { "east": "low", "north": "none", @@ -52185,7 +49817,7 @@ } }, { - "id": 27954, + "id": 26197, "properties": { "east": "low", "north": "none", @@ -52196,7 +49828,7 @@ } }, { - "id": 27955, + "id": 26198, "properties": { "east": "low", "north": "low", @@ -52207,7 +49839,7 @@ } }, { - "id": 27956, + "id": 26199, "properties": { "east": "low", "north": "low", @@ -52218,7 +49850,7 @@ } }, { - "id": 27957, + "id": 26200, "properties": { "east": "low", "north": "low", @@ -52229,7 +49861,7 @@ } }, { - "id": 27958, + "id": 26201, "properties": { "east": "low", "north": "low", @@ -52240,7 +49872,7 @@ } }, { - "id": 27959, + "id": 26202, "properties": { "east": "low", "north": "low", @@ -52251,7 +49883,7 @@ } }, { - "id": 27960, + "id": 26203, "properties": { "east": "low", "north": "low", @@ -52262,7 +49894,7 @@ } }, { - "id": 27961, + "id": 26204, "properties": { "east": "low", "north": "low", @@ -52273,7 +49905,7 @@ } }, { - "id": 27962, + "id": 26205, "properties": { "east": "low", "north": "low", @@ -52284,7 +49916,7 @@ } }, { - "id": 27963, + "id": 26206, "properties": { "east": "low", "north": "low", @@ -52295,7 +49927,7 @@ } }, { - "id": 27964, + "id": 26207, "properties": { "east": "low", "north": "low", @@ -52306,7 +49938,7 @@ } }, { - "id": 27965, + "id": 26208, "properties": { "east": "low", "north": "low", @@ -52317,7 +49949,7 @@ } }, { - "id": 27966, + "id": 26209, "properties": { "east": "low", "north": "low", @@ -52328,7 +49960,7 @@ } }, { - "id": 27967, + "id": 26210, "properties": { "east": "low", "north": "low", @@ -52339,7 +49971,7 @@ } }, { - "id": 27968, + "id": 26211, "properties": { "east": "low", "north": "low", @@ -52350,7 +49982,7 @@ } }, { - "id": 27969, + "id": 26212, "properties": { "east": "low", "north": "low", @@ -52361,7 +49993,7 @@ } }, { - "id": 27970, + "id": 26213, "properties": { "east": "low", "north": "low", @@ -52372,7 +50004,7 @@ } }, { - "id": 27971, + "id": 26214, "properties": { "east": "low", "north": "low", @@ -52383,7 +50015,7 @@ } }, { - "id": 27972, + "id": 26215, "properties": { "east": "low", "north": "low", @@ -52394,7 +50026,7 @@ } }, { - "id": 27973, + "id": 26216, "properties": { "east": "low", "north": "low", @@ -52405,7 +50037,7 @@ } }, { - "id": 27974, + "id": 26217, "properties": { "east": "low", "north": "low", @@ -52416,7 +50048,7 @@ } }, { - "id": 27975, + "id": 26218, "properties": { "east": "low", "north": "low", @@ -52427,7 +50059,7 @@ } }, { - "id": 27976, + "id": 26219, "properties": { "east": "low", "north": "low", @@ -52438,7 +50070,7 @@ } }, { - "id": 27977, + "id": 26220, "properties": { "east": "low", "north": "low", @@ -52449,7 +50081,7 @@ } }, { - "id": 27978, + "id": 26221, "properties": { "east": "low", "north": "low", @@ -52460,7 +50092,7 @@ } }, { - "id": 27979, + "id": 26222, "properties": { "east": "low", "north": "low", @@ -52471,7 +50103,7 @@ } }, { - "id": 27980, + "id": 26223, "properties": { "east": "low", "north": "low", @@ -52482,7 +50114,7 @@ } }, { - "id": 27981, + "id": 26224, "properties": { "east": "low", "north": "low", @@ -52493,7 +50125,7 @@ } }, { - "id": 27982, + "id": 26225, "properties": { "east": "low", "north": "low", @@ -52504,7 +50136,7 @@ } }, { - "id": 27983, + "id": 26226, "properties": { "east": "low", "north": "low", @@ -52515,7 +50147,7 @@ } }, { - "id": 27984, + "id": 26227, "properties": { "east": "low", "north": "low", @@ -52526,7 +50158,7 @@ } }, { - "id": 27985, + "id": 26228, "properties": { "east": "low", "north": "low", @@ -52537,7 +50169,7 @@ } }, { - "id": 27986, + "id": 26229, "properties": { "east": "low", "north": "low", @@ -52548,7 +50180,7 @@ } }, { - "id": 27987, + "id": 26230, "properties": { "east": "low", "north": "low", @@ -52559,7 +50191,7 @@ } }, { - "id": 27988, + "id": 26231, "properties": { "east": "low", "north": "low", @@ -52570,7 +50202,7 @@ } }, { - "id": 27989, + "id": 26232, "properties": { "east": "low", "north": "low", @@ -52581,7 +50213,7 @@ } }, { - "id": 27990, + "id": 26233, "properties": { "east": "low", "north": "low", @@ -52592,7 +50224,7 @@ } }, { - "id": 27991, + "id": 26234, "properties": { "east": "low", "north": "tall", @@ -52603,7 +50235,7 @@ } }, { - "id": 27992, + "id": 26235, "properties": { "east": "low", "north": "tall", @@ -52614,7 +50246,7 @@ } }, { - "id": 27993, + "id": 26236, "properties": { "east": "low", "north": "tall", @@ -52625,7 +50257,7 @@ } }, { - "id": 27994, + "id": 26237, "properties": { "east": "low", "north": "tall", @@ -52636,7 +50268,7 @@ } }, { - "id": 27995, + "id": 26238, "properties": { "east": "low", "north": "tall", @@ -52647,7 +50279,7 @@ } }, { - "id": 27996, + "id": 26239, "properties": { "east": "low", "north": "tall", @@ -52658,7 +50290,7 @@ } }, { - "id": 27997, + "id": 26240, "properties": { "east": "low", "north": "tall", @@ -52669,7 +50301,7 @@ } }, { - "id": 27998, + "id": 26241, "properties": { "east": "low", "north": "tall", @@ -52680,7 +50312,7 @@ } }, { - "id": 27999, + "id": 26242, "properties": { "east": "low", "north": "tall", @@ -52691,7 +50323,7 @@ } }, { - "id": 28000, + "id": 26243, "properties": { "east": "low", "north": "tall", @@ -52702,7 +50334,7 @@ } }, { - "id": 28001, + "id": 26244, "properties": { "east": "low", "north": "tall", @@ -52713,7 +50345,7 @@ } }, { - "id": 28002, + "id": 26245, "properties": { "east": "low", "north": "tall", @@ -52724,7 +50356,7 @@ } }, { - "id": 28003, + "id": 26246, "properties": { "east": "low", "north": "tall", @@ -52735,7 +50367,7 @@ } }, { - "id": 28004, + "id": 26247, "properties": { "east": "low", "north": "tall", @@ -52746,7 +50378,7 @@ } }, { - "id": 28005, + "id": 26248, "properties": { "east": "low", "north": "tall", @@ -52757,7 +50389,7 @@ } }, { - "id": 28006, + "id": 26249, "properties": { "east": "low", "north": "tall", @@ -52768,7 +50400,7 @@ } }, { - "id": 28007, + "id": 26250, "properties": { "east": "low", "north": "tall", @@ -52779,7 +50411,7 @@ } }, { - "id": 28008, + "id": 26251, "properties": { "east": "low", "north": "tall", @@ -52790,7 +50422,7 @@ } }, { - "id": 28009, + "id": 26252, "properties": { "east": "low", "north": "tall", @@ -52801,7 +50433,7 @@ } }, { - "id": 28010, + "id": 26253, "properties": { "east": "low", "north": "tall", @@ -52812,7 +50444,7 @@ } }, { - "id": 28011, + "id": 26254, "properties": { "east": "low", "north": "tall", @@ -52823,7 +50455,7 @@ } }, { - "id": 28012, + "id": 26255, "properties": { "east": "low", "north": "tall", @@ -52834,7 +50466,7 @@ } }, { - "id": 28013, + "id": 26256, "properties": { "east": "low", "north": "tall", @@ -52845,7 +50477,7 @@ } }, { - "id": 28014, + "id": 26257, "properties": { "east": "low", "north": "tall", @@ -52856,7 +50488,7 @@ } }, { - "id": 28015, + "id": 26258, "properties": { "east": "low", "north": "tall", @@ -52867,7 +50499,7 @@ } }, { - "id": 28016, + "id": 26259, "properties": { "east": "low", "north": "tall", @@ -52878,7 +50510,7 @@ } }, { - "id": 28017, + "id": 26260, "properties": { "east": "low", "north": "tall", @@ -52889,7 +50521,7 @@ } }, { - "id": 28018, + "id": 26261, "properties": { "east": "low", "north": "tall", @@ -52900,7 +50532,7 @@ } }, { - "id": 28019, + "id": 26262, "properties": { "east": "low", "north": "tall", @@ -52911,7 +50543,7 @@ } }, { - "id": 28020, + "id": 26263, "properties": { "east": "low", "north": "tall", @@ -52922,7 +50554,7 @@ } }, { - "id": 28021, + "id": 26264, "properties": { "east": "low", "north": "tall", @@ -52933,7 +50565,7 @@ } }, { - "id": 28022, + "id": 26265, "properties": { "east": "low", "north": "tall", @@ -52944,7 +50576,7 @@ } }, { - "id": 28023, + "id": 26266, "properties": { "east": "low", "north": "tall", @@ -52955,7 +50587,7 @@ } }, { - "id": 28024, + "id": 26267, "properties": { "east": "low", "north": "tall", @@ -52966,7 +50598,7 @@ } }, { - "id": 28025, + "id": 26268, "properties": { "east": "low", "north": "tall", @@ -52977,7 +50609,7 @@ } }, { - "id": 28026, + "id": 26269, "properties": { "east": "low", "north": "tall", @@ -52988,7 +50620,7 @@ } }, { - "id": 28027, + "id": 26270, "properties": { "east": "tall", "north": "none", @@ -52999,7 +50631,7 @@ } }, { - "id": 28028, + "id": 26271, "properties": { "east": "tall", "north": "none", @@ -53010,7 +50642,7 @@ } }, { - "id": 28029, + "id": 26272, "properties": { "east": "tall", "north": "none", @@ -53021,7 +50653,7 @@ } }, { - "id": 28030, + "id": 26273, "properties": { "east": "tall", "north": "none", @@ -53032,7 +50664,7 @@ } }, { - "id": 28031, + "id": 26274, "properties": { "east": "tall", "north": "none", @@ -53043,7 +50675,7 @@ } }, { - "id": 28032, + "id": 26275, "properties": { "east": "tall", "north": "none", @@ -53054,7 +50686,7 @@ } }, { - "id": 28033, + "id": 26276, "properties": { "east": "tall", "north": "none", @@ -53065,7 +50697,7 @@ } }, { - "id": 28034, + "id": 26277, "properties": { "east": "tall", "north": "none", @@ -53076,7 +50708,7 @@ } }, { - "id": 28035, + "id": 26278, "properties": { "east": "tall", "north": "none", @@ -53087,7 +50719,7 @@ } }, { - "id": 28036, + "id": 26279, "properties": { "east": "tall", "north": "none", @@ -53098,7 +50730,7 @@ } }, { - "id": 28037, + "id": 26280, "properties": { "east": "tall", "north": "none", @@ -53109,7 +50741,7 @@ } }, { - "id": 28038, + "id": 26281, "properties": { "east": "tall", "north": "none", @@ -53120,7 +50752,7 @@ } }, { - "id": 28039, + "id": 26282, "properties": { "east": "tall", "north": "none", @@ -53131,7 +50763,7 @@ } }, { - "id": 28040, + "id": 26283, "properties": { "east": "tall", "north": "none", @@ -53142,7 +50774,7 @@ } }, { - "id": 28041, + "id": 26284, "properties": { "east": "tall", "north": "none", @@ -53153,7 +50785,7 @@ } }, { - "id": 28042, + "id": 26285, "properties": { "east": "tall", "north": "none", @@ -53164,7 +50796,7 @@ } }, { - "id": 28043, + "id": 26286, "properties": { "east": "tall", "north": "none", @@ -53175,7 +50807,7 @@ } }, { - "id": 28044, + "id": 26287, "properties": { "east": "tall", "north": "none", @@ -53186,7 +50818,7 @@ } }, { - "id": 28045, + "id": 26288, "properties": { "east": "tall", "north": "none", @@ -53197,7 +50829,7 @@ } }, { - "id": 28046, + "id": 26289, "properties": { "east": "tall", "north": "none", @@ -53208,7 +50840,7 @@ } }, { - "id": 28047, + "id": 26290, "properties": { "east": "tall", "north": "none", @@ -53219,7 +50851,7 @@ } }, { - "id": 28048, + "id": 26291, "properties": { "east": "tall", "north": "none", @@ -53230,7 +50862,7 @@ } }, { - "id": 28049, + "id": 26292, "properties": { "east": "tall", "north": "none", @@ -53241,7 +50873,7 @@ } }, { - "id": 28050, + "id": 26293, "properties": { "east": "tall", "north": "none", @@ -53252,7 +50884,7 @@ } }, { - "id": 28051, + "id": 26294, "properties": { "east": "tall", "north": "none", @@ -53263,7 +50895,7 @@ } }, { - "id": 28052, + "id": 26295, "properties": { "east": "tall", "north": "none", @@ -53274,7 +50906,7 @@ } }, { - "id": 28053, + "id": 26296, "properties": { "east": "tall", "north": "none", @@ -53285,7 +50917,7 @@ } }, { - "id": 28054, + "id": 26297, "properties": { "east": "tall", "north": "none", @@ -53296,7 +50928,7 @@ } }, { - "id": 28055, + "id": 26298, "properties": { "east": "tall", "north": "none", @@ -53307,7 +50939,7 @@ } }, { - "id": 28056, + "id": 26299, "properties": { "east": "tall", "north": "none", @@ -53318,7 +50950,7 @@ } }, { - "id": 28057, + "id": 26300, "properties": { "east": "tall", "north": "none", @@ -53329,7 +50961,7 @@ } }, { - "id": 28058, + "id": 26301, "properties": { "east": "tall", "north": "none", @@ -53340,7 +50972,7 @@ } }, { - "id": 28059, + "id": 26302, "properties": { "east": "tall", "north": "none", @@ -53351,7 +50983,7 @@ } }, { - "id": 28060, + "id": 26303, "properties": { "east": "tall", "north": "none", @@ -53362,7 +50994,7 @@ } }, { - "id": 28061, + "id": 26304, "properties": { "east": "tall", "north": "none", @@ -53373,7 +51005,7 @@ } }, { - "id": 28062, + "id": 26305, "properties": { "east": "tall", "north": "none", @@ -53384,7 +51016,7 @@ } }, { - "id": 28063, + "id": 26306, "properties": { "east": "tall", "north": "low", @@ -53395,7 +51027,7 @@ } }, { - "id": 28064, + "id": 26307, "properties": { "east": "tall", "north": "low", @@ -53406,7 +51038,7 @@ } }, { - "id": 28065, + "id": 26308, "properties": { "east": "tall", "north": "low", @@ -53417,7 +51049,7 @@ } }, { - "id": 28066, + "id": 26309, "properties": { "east": "tall", "north": "low", @@ -53428,7 +51060,7 @@ } }, { - "id": 28067, + "id": 26310, "properties": { "east": "tall", "north": "low", @@ -53439,7 +51071,7 @@ } }, { - "id": 28068, + "id": 26311, "properties": { "east": "tall", "north": "low", @@ -53450,7 +51082,7 @@ } }, { - "id": 28069, + "id": 26312, "properties": { "east": "tall", "north": "low", @@ -53461,7 +51093,7 @@ } }, { - "id": 28070, + "id": 26313, "properties": { "east": "tall", "north": "low", @@ -53472,7 +51104,7 @@ } }, { - "id": 28071, + "id": 26314, "properties": { "east": "tall", "north": "low", @@ -53483,7 +51115,7 @@ } }, { - "id": 28072, + "id": 26315, "properties": { "east": "tall", "north": "low", @@ -53494,7 +51126,7 @@ } }, { - "id": 28073, + "id": 26316, "properties": { "east": "tall", "north": "low", @@ -53505,7 +51137,7 @@ } }, { - "id": 28074, + "id": 26317, "properties": { "east": "tall", "north": "low", @@ -53516,7 +51148,7 @@ } }, { - "id": 28075, + "id": 26318, "properties": { "east": "tall", "north": "low", @@ -53527,7 +51159,7 @@ } }, { - "id": 28076, + "id": 26319, "properties": { "east": "tall", "north": "low", @@ -53538,7 +51170,7 @@ } }, { - "id": 28077, + "id": 26320, "properties": { "east": "tall", "north": "low", @@ -53549,7 +51181,7 @@ } }, { - "id": 28078, + "id": 26321, "properties": { "east": "tall", "north": "low", @@ -53560,7 +51192,7 @@ } }, { - "id": 28079, + "id": 26322, "properties": { "east": "tall", "north": "low", @@ -53571,7 +51203,7 @@ } }, { - "id": 28080, + "id": 26323, "properties": { "east": "tall", "north": "low", @@ -53582,7 +51214,7 @@ } }, { - "id": 28081, + "id": 26324, "properties": { "east": "tall", "north": "low", @@ -53593,7 +51225,7 @@ } }, { - "id": 28082, + "id": 26325, "properties": { "east": "tall", "north": "low", @@ -53604,7 +51236,7 @@ } }, { - "id": 28083, + "id": 26326, "properties": { "east": "tall", "north": "low", @@ -53615,7 +51247,7 @@ } }, { - "id": 28084, + "id": 26327, "properties": { "east": "tall", "north": "low", @@ -53626,7 +51258,7 @@ } }, { - "id": 28085, + "id": 26328, "properties": { "east": "tall", "north": "low", @@ -53637,7 +51269,7 @@ } }, { - "id": 28086, + "id": 26329, "properties": { "east": "tall", "north": "low", @@ -53648,7 +51280,7 @@ } }, { - "id": 28087, + "id": 26330, "properties": { "east": "tall", "north": "low", @@ -53659,7 +51291,7 @@ } }, { - "id": 28088, + "id": 26331, "properties": { "east": "tall", "north": "low", @@ -53670,7 +51302,7 @@ } }, { - "id": 28089, + "id": 26332, "properties": { "east": "tall", "north": "low", @@ -53681,7 +51313,7 @@ } }, { - "id": 28090, + "id": 26333, "properties": { "east": "tall", "north": "low", @@ -53692,7 +51324,7 @@ } }, { - "id": 28091, + "id": 26334, "properties": { "east": "tall", "north": "low", @@ -53703,7 +51335,7 @@ } }, { - "id": 28092, + "id": 26335, "properties": { "east": "tall", "north": "low", @@ -53714,7 +51346,7 @@ } }, { - "id": 28093, + "id": 26336, "properties": { "east": "tall", "north": "low", @@ -53725,7 +51357,7 @@ } }, { - "id": 28094, + "id": 26337, "properties": { "east": "tall", "north": "low", @@ -53736,7 +51368,7 @@ } }, { - "id": 28095, + "id": 26338, "properties": { "east": "tall", "north": "low", @@ -53747,7 +51379,7 @@ } }, { - "id": 28096, + "id": 26339, "properties": { "east": "tall", "north": "low", @@ -53758,7 +51390,7 @@ } }, { - "id": 28097, + "id": 26340, "properties": { "east": "tall", "north": "low", @@ -53769,7 +51401,7 @@ } }, { - "id": 28098, + "id": 26341, "properties": { "east": "tall", "north": "low", @@ -53780,7 +51412,7 @@ } }, { - "id": 28099, + "id": 26342, "properties": { "east": "tall", "north": "tall", @@ -53791,7 +51423,7 @@ } }, { - "id": 28100, + "id": 26343, "properties": { "east": "tall", "north": "tall", @@ -53802,7 +51434,7 @@ } }, { - "id": 28101, + "id": 26344, "properties": { "east": "tall", "north": "tall", @@ -53813,7 +51445,7 @@ } }, { - "id": 28102, + "id": 26345, "properties": { "east": "tall", "north": "tall", @@ -53824,7 +51456,7 @@ } }, { - "id": 28103, + "id": 26346, "properties": { "east": "tall", "north": "tall", @@ -53835,7 +51467,7 @@ } }, { - "id": 28104, + "id": 26347, "properties": { "east": "tall", "north": "tall", @@ -53846,7 +51478,7 @@ } }, { - "id": 28105, + "id": 26348, "properties": { "east": "tall", "north": "tall", @@ -53857,7 +51489,7 @@ } }, { - "id": 28106, + "id": 26349, "properties": { "east": "tall", "north": "tall", @@ -53868,7 +51500,7 @@ } }, { - "id": 28107, + "id": 26350, "properties": { "east": "tall", "north": "tall", @@ -53879,7 +51511,7 @@ } }, { - "id": 28108, + "id": 26351, "properties": { "east": "tall", "north": "tall", @@ -53890,7 +51522,7 @@ } }, { - "id": 28109, + "id": 26352, "properties": { "east": "tall", "north": "tall", @@ -53901,7 +51533,7 @@ } }, { - "id": 28110, + "id": 26353, "properties": { "east": "tall", "north": "tall", @@ -53912,7 +51544,7 @@ } }, { - "id": 28111, + "id": 26354, "properties": { "east": "tall", "north": "tall", @@ -53923,7 +51555,7 @@ } }, { - "id": 28112, + "id": 26355, "properties": { "east": "tall", "north": "tall", @@ -53934,7 +51566,7 @@ } }, { - "id": 28113, + "id": 26356, "properties": { "east": "tall", "north": "tall", @@ -53945,7 +51577,7 @@ } }, { - "id": 28114, + "id": 26357, "properties": { "east": "tall", "north": "tall", @@ -53956,7 +51588,7 @@ } }, { - "id": 28115, + "id": 26358, "properties": { "east": "tall", "north": "tall", @@ -53967,7 +51599,7 @@ } }, { - "id": 28116, + "id": 26359, "properties": { "east": "tall", "north": "tall", @@ -53978,7 +51610,7 @@ } }, { - "id": 28117, + "id": 26360, "properties": { "east": "tall", "north": "tall", @@ -53989,7 +51621,7 @@ } }, { - "id": 28118, + "id": 26361, "properties": { "east": "tall", "north": "tall", @@ -54000,7 +51632,7 @@ } }, { - "id": 28119, + "id": 26362, "properties": { "east": "tall", "north": "tall", @@ -54011,7 +51643,7 @@ } }, { - "id": 28120, + "id": 26363, "properties": { "east": "tall", "north": "tall", @@ -54022,7 +51654,7 @@ } }, { - "id": 28121, + "id": 26364, "properties": { "east": "tall", "north": "tall", @@ -54033,7 +51665,7 @@ } }, { - "id": 28122, + "id": 26365, "properties": { "east": "tall", "north": "tall", @@ -54044,7 +51676,7 @@ } }, { - "id": 28123, + "id": 26366, "properties": { "east": "tall", "north": "tall", @@ -54055,7 +51687,7 @@ } }, { - "id": 28124, + "id": 26367, "properties": { "east": "tall", "north": "tall", @@ -54066,7 +51698,7 @@ } }, { - "id": 28125, + "id": 26368, "properties": { "east": "tall", "north": "tall", @@ -54077,7 +51709,7 @@ } }, { - "id": 28126, + "id": 26369, "properties": { "east": "tall", "north": "tall", @@ -54088,7 +51720,7 @@ } }, { - "id": 28127, + "id": 26370, "properties": { "east": "tall", "north": "tall", @@ -54099,7 +51731,7 @@ } }, { - "id": 28128, + "id": 26371, "properties": { "east": "tall", "north": "tall", @@ -54110,7 +51742,7 @@ } }, { - "id": 28129, + "id": 26372, "properties": { "east": "tall", "north": "tall", @@ -54121,7 +51753,7 @@ } }, { - "id": 28130, + "id": 26373, "properties": { "east": "tall", "north": "tall", @@ -54132,7 +51764,7 @@ } }, { - "id": 28131, + "id": 26374, "properties": { "east": "tall", "north": "tall", @@ -54143,7 +51775,7 @@ } }, { - "id": 28132, + "id": 26375, "properties": { "east": "tall", "north": "tall", @@ -54154,7 +51786,7 @@ } }, { - "id": 28133, + "id": 26376, "properties": { "east": "tall", "north": "tall", @@ -54165,7 +51797,7 @@ } }, { - "id": 28134, + "id": 26377, "properties": { "east": "tall", "north": "tall", @@ -54207,21 +51839,21 @@ }, "states": [ { - "id": 13224, + "id": 12147, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 13225, + "id": 12148, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 13226, + "id": 12149, "properties": { "type": "bottom", "waterlogged": "true" @@ -54229,21 +51861,21 @@ }, { "default": true, - "id": 13227, + "id": 12150, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 13228, + "id": 12151, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 13229, + "id": 12152, "properties": { "type": "double", "waterlogged": "false" @@ -54284,7 +51916,7 @@ }, "states": [ { - "id": 5546, + "id": 4778, "properties": { "facing": "north", "half": "top", @@ -54293,7 +51925,7 @@ } }, { - "id": 5547, + "id": 4779, "properties": { "facing": "north", "half": "top", @@ -54302,7 +51934,7 @@ } }, { - "id": 5548, + "id": 4780, "properties": { "facing": "north", "half": "top", @@ -54311,7 +51943,7 @@ } }, { - "id": 5549, + "id": 4781, "properties": { "facing": "north", "half": "top", @@ -54320,7 +51952,7 @@ } }, { - "id": 5550, + "id": 4782, "properties": { "facing": "north", "half": "top", @@ -54329,7 +51961,7 @@ } }, { - "id": 5551, + "id": 4783, "properties": { "facing": "north", "half": "top", @@ -54338,7 +51970,7 @@ } }, { - "id": 5552, + "id": 4784, "properties": { "facing": "north", "half": "top", @@ -54347,7 +51979,7 @@ } }, { - "id": 5553, + "id": 4785, "properties": { "facing": "north", "half": "top", @@ -54356,7 +51988,7 @@ } }, { - "id": 5554, + "id": 4786, "properties": { "facing": "north", "half": "top", @@ -54365,7 +51997,7 @@ } }, { - "id": 5555, + "id": 4787, "properties": { "facing": "north", "half": "top", @@ -54374,7 +52006,7 @@ } }, { - "id": 5556, + "id": 4788, "properties": { "facing": "north", "half": "bottom", @@ -54384,7 +52016,7 @@ }, { "default": true, - "id": 5557, + "id": 4789, "properties": { "facing": "north", "half": "bottom", @@ -54393,7 +52025,7 @@ } }, { - "id": 5558, + "id": 4790, "properties": { "facing": "north", "half": "bottom", @@ -54402,7 +52034,7 @@ } }, { - "id": 5559, + "id": 4791, "properties": { "facing": "north", "half": "bottom", @@ -54411,7 +52043,7 @@ } }, { - "id": 5560, + "id": 4792, "properties": { "facing": "north", "half": "bottom", @@ -54420,7 +52052,7 @@ } }, { - "id": 5561, + "id": 4793, "properties": { "facing": "north", "half": "bottom", @@ -54429,7 +52061,7 @@ } }, { - "id": 5562, + "id": 4794, "properties": { "facing": "north", "half": "bottom", @@ -54438,7 +52070,7 @@ } }, { - "id": 5563, + "id": 4795, "properties": { "facing": "north", "half": "bottom", @@ -54447,7 +52079,7 @@ } }, { - "id": 5564, + "id": 4796, "properties": { "facing": "north", "half": "bottom", @@ -54456,7 +52088,7 @@ } }, { - "id": 5565, + "id": 4797, "properties": { "facing": "north", "half": "bottom", @@ -54465,7 +52097,7 @@ } }, { - "id": 5566, + "id": 4798, "properties": { "facing": "south", "half": "top", @@ -54474,7 +52106,7 @@ } }, { - "id": 5567, + "id": 4799, "properties": { "facing": "south", "half": "top", @@ -54483,7 +52115,7 @@ } }, { - "id": 5568, + "id": 4800, "properties": { "facing": "south", "half": "top", @@ -54492,7 +52124,7 @@ } }, { - "id": 5569, + "id": 4801, "properties": { "facing": "south", "half": "top", @@ -54501,7 +52133,7 @@ } }, { - "id": 5570, + "id": 4802, "properties": { "facing": "south", "half": "top", @@ -54510,7 +52142,7 @@ } }, { - "id": 5571, + "id": 4803, "properties": { "facing": "south", "half": "top", @@ -54519,7 +52151,7 @@ } }, { - "id": 5572, + "id": 4804, "properties": { "facing": "south", "half": "top", @@ -54528,7 +52160,7 @@ } }, { - "id": 5573, + "id": 4805, "properties": { "facing": "south", "half": "top", @@ -54537,7 +52169,7 @@ } }, { - "id": 5574, + "id": 4806, "properties": { "facing": "south", "half": "top", @@ -54546,7 +52178,7 @@ } }, { - "id": 5575, + "id": 4807, "properties": { "facing": "south", "half": "top", @@ -54555,7 +52187,7 @@ } }, { - "id": 5576, + "id": 4808, "properties": { "facing": "south", "half": "bottom", @@ -54564,7 +52196,7 @@ } }, { - "id": 5577, + "id": 4809, "properties": { "facing": "south", "half": "bottom", @@ -54573,7 +52205,7 @@ } }, { - "id": 5578, + "id": 4810, "properties": { "facing": "south", "half": "bottom", @@ -54582,7 +52214,7 @@ } }, { - "id": 5579, + "id": 4811, "properties": { "facing": "south", "half": "bottom", @@ -54591,7 +52223,7 @@ } }, { - "id": 5580, + "id": 4812, "properties": { "facing": "south", "half": "bottom", @@ -54600,7 +52232,7 @@ } }, { - "id": 5581, + "id": 4813, "properties": { "facing": "south", "half": "bottom", @@ -54609,7 +52241,7 @@ } }, { - "id": 5582, + "id": 4814, "properties": { "facing": "south", "half": "bottom", @@ -54618,7 +52250,7 @@ } }, { - "id": 5583, + "id": 4815, "properties": { "facing": "south", "half": "bottom", @@ -54627,7 +52259,7 @@ } }, { - "id": 5584, + "id": 4816, "properties": { "facing": "south", "half": "bottom", @@ -54636,7 +52268,7 @@ } }, { - "id": 5585, + "id": 4817, "properties": { "facing": "south", "half": "bottom", @@ -54645,7 +52277,7 @@ } }, { - "id": 5586, + "id": 4818, "properties": { "facing": "west", "half": "top", @@ -54654,7 +52286,7 @@ } }, { - "id": 5587, + "id": 4819, "properties": { "facing": "west", "half": "top", @@ -54663,7 +52295,7 @@ } }, { - "id": 5588, + "id": 4820, "properties": { "facing": "west", "half": "top", @@ -54672,7 +52304,7 @@ } }, { - "id": 5589, + "id": 4821, "properties": { "facing": "west", "half": "top", @@ -54681,7 +52313,7 @@ } }, { - "id": 5590, + "id": 4822, "properties": { "facing": "west", "half": "top", @@ -54690,7 +52322,7 @@ } }, { - "id": 5591, + "id": 4823, "properties": { "facing": "west", "half": "top", @@ -54699,7 +52331,7 @@ } }, { - "id": 5592, + "id": 4824, "properties": { "facing": "west", "half": "top", @@ -54708,7 +52340,7 @@ } }, { - "id": 5593, + "id": 4825, "properties": { "facing": "west", "half": "top", @@ -54717,7 +52349,7 @@ } }, { - "id": 5594, + "id": 4826, "properties": { "facing": "west", "half": "top", @@ -54726,7 +52358,7 @@ } }, { - "id": 5595, + "id": 4827, "properties": { "facing": "west", "half": "top", @@ -54735,7 +52367,7 @@ } }, { - "id": 5596, + "id": 4828, "properties": { "facing": "west", "half": "bottom", @@ -54744,7 +52376,7 @@ } }, { - "id": 5597, + "id": 4829, "properties": { "facing": "west", "half": "bottom", @@ -54753,7 +52385,7 @@ } }, { - "id": 5598, + "id": 4830, "properties": { "facing": "west", "half": "bottom", @@ -54762,7 +52394,7 @@ } }, { - "id": 5599, + "id": 4831, "properties": { "facing": "west", "half": "bottom", @@ -54771,7 +52403,7 @@ } }, { - "id": 5600, + "id": 4832, "properties": { "facing": "west", "half": "bottom", @@ -54780,7 +52412,7 @@ } }, { - "id": 5601, + "id": 4833, "properties": { "facing": "west", "half": "bottom", @@ -54789,7 +52421,7 @@ } }, { - "id": 5602, + "id": 4834, "properties": { "facing": "west", "half": "bottom", @@ -54798,7 +52430,7 @@ } }, { - "id": 5603, + "id": 4835, "properties": { "facing": "west", "half": "bottom", @@ -54807,7 +52439,7 @@ } }, { - "id": 5604, + "id": 4836, "properties": { "facing": "west", "half": "bottom", @@ -54816,7 +52448,7 @@ } }, { - "id": 5605, + "id": 4837, "properties": { "facing": "west", "half": "bottom", @@ -54825,7 +52457,7 @@ } }, { - "id": 5606, + "id": 4838, "properties": { "facing": "east", "half": "top", @@ -54834,7 +52466,7 @@ } }, { - "id": 5607, + "id": 4839, "properties": { "facing": "east", "half": "top", @@ -54843,7 +52475,7 @@ } }, { - "id": 5608, + "id": 4840, "properties": { "facing": "east", "half": "top", @@ -54852,7 +52484,7 @@ } }, { - "id": 5609, + "id": 4841, "properties": { "facing": "east", "half": "top", @@ -54861,7 +52493,7 @@ } }, { - "id": 5610, + "id": 4842, "properties": { "facing": "east", "half": "top", @@ -54870,7 +52502,7 @@ } }, { - "id": 5611, + "id": 4843, "properties": { "facing": "east", "half": "top", @@ -54879,7 +52511,7 @@ } }, { - "id": 5612, + "id": 4844, "properties": { "facing": "east", "half": "top", @@ -54888,7 +52520,7 @@ } }, { - "id": 5613, + "id": 4845, "properties": { "facing": "east", "half": "top", @@ -54897,7 +52529,7 @@ } }, { - "id": 5614, + "id": 4846, "properties": { "facing": "east", "half": "top", @@ -54906,7 +52538,7 @@ } }, { - "id": 5615, + "id": 4847, "properties": { "facing": "east", "half": "top", @@ -54915,7 +52547,7 @@ } }, { - "id": 5616, + "id": 4848, "properties": { "facing": "east", "half": "bottom", @@ -54924,7 +52556,7 @@ } }, { - "id": 5617, + "id": 4849, "properties": { "facing": "east", "half": "bottom", @@ -54933,7 +52565,7 @@ } }, { - "id": 5618, + "id": 4850, "properties": { "facing": "east", "half": "bottom", @@ -54942,7 +52574,7 @@ } }, { - "id": 5619, + "id": 4851, "properties": { "facing": "east", "half": "bottom", @@ -54951,7 +52583,7 @@ } }, { - "id": 5620, + "id": 4852, "properties": { "facing": "east", "half": "bottom", @@ -54960,7 +52592,7 @@ } }, { - "id": 5621, + "id": 4853, "properties": { "facing": "east", "half": "bottom", @@ -54969,7 +52601,7 @@ } }, { - "id": 5622, + "id": 4854, "properties": { "facing": "east", "half": "bottom", @@ -54978,7 +52610,7 @@ } }, { - "id": 5623, + "id": 4855, "properties": { "facing": "east", "half": "bottom", @@ -54987,7 +52619,7 @@ } }, { - "id": 5624, + "id": 4856, "properties": { "facing": "east", "half": "bottom", @@ -54996,7 +52628,7 @@ } }, { - "id": 5625, + "id": 4857, "properties": { "facing": "east", "half": "bottom", @@ -55043,7 +52675,7 @@ }, "states": [ { - "id": 9780, + "id": 8703, "properties": { "east": "none", "north": "none", @@ -55054,7 +52686,7 @@ } }, { - "id": 9781, + "id": 8704, "properties": { "east": "none", "north": "none", @@ -55065,7 +52697,7 @@ } }, { - "id": 9782, + "id": 8705, "properties": { "east": "none", "north": "none", @@ -55077,7 +52709,7 @@ }, { "default": true, - "id": 9783, + "id": 8706, "properties": { "east": "none", "north": "none", @@ -55088,7 +52720,7 @@ } }, { - "id": 9784, + "id": 8707, "properties": { "east": "none", "north": "none", @@ -55099,7 +52731,7 @@ } }, { - "id": 9785, + "id": 8708, "properties": { "east": "none", "north": "none", @@ -55110,7 +52742,7 @@ } }, { - "id": 9786, + "id": 8709, "properties": { "east": "none", "north": "none", @@ -55121,7 +52753,7 @@ } }, { - "id": 9787, + "id": 8710, "properties": { "east": "none", "north": "none", @@ -55132,7 +52764,7 @@ } }, { - "id": 9788, + "id": 8711, "properties": { "east": "none", "north": "none", @@ -55143,7 +52775,7 @@ } }, { - "id": 9789, + "id": 8712, "properties": { "east": "none", "north": "none", @@ -55154,7 +52786,7 @@ } }, { - "id": 9790, + "id": 8713, "properties": { "east": "none", "north": "none", @@ -55165,7 +52797,7 @@ } }, { - "id": 9791, + "id": 8714, "properties": { "east": "none", "north": "none", @@ -55176,7 +52808,7 @@ } }, { - "id": 9792, + "id": 8715, "properties": { "east": "none", "north": "none", @@ -55187,7 +52819,7 @@ } }, { - "id": 9793, + "id": 8716, "properties": { "east": "none", "north": "none", @@ -55198,7 +52830,7 @@ } }, { - "id": 9794, + "id": 8717, "properties": { "east": "none", "north": "none", @@ -55209,7 +52841,7 @@ } }, { - "id": 9795, + "id": 8718, "properties": { "east": "none", "north": "none", @@ -55220,7 +52852,7 @@ } }, { - "id": 9796, + "id": 8719, "properties": { "east": "none", "north": "none", @@ -55231,7 +52863,7 @@ } }, { - "id": 9797, + "id": 8720, "properties": { "east": "none", "north": "none", @@ -55242,7 +52874,7 @@ } }, { - "id": 9798, + "id": 8721, "properties": { "east": "none", "north": "none", @@ -55253,7 +52885,7 @@ } }, { - "id": 9799, + "id": 8722, "properties": { "east": "none", "north": "none", @@ -55264,7 +52896,7 @@ } }, { - "id": 9800, + "id": 8723, "properties": { "east": "none", "north": "none", @@ -55275,7 +52907,7 @@ } }, { - "id": 9801, + "id": 8724, "properties": { "east": "none", "north": "none", @@ -55286,7 +52918,7 @@ } }, { - "id": 9802, + "id": 8725, "properties": { "east": "none", "north": "none", @@ -55297,7 +52929,7 @@ } }, { - "id": 9803, + "id": 8726, "properties": { "east": "none", "north": "none", @@ -55308,7 +52940,7 @@ } }, { - "id": 9804, + "id": 8727, "properties": { "east": "none", "north": "none", @@ -55319,7 +52951,7 @@ } }, { - "id": 9805, + "id": 8728, "properties": { "east": "none", "north": "none", @@ -55330,7 +52962,7 @@ } }, { - "id": 9806, + "id": 8729, "properties": { "east": "none", "north": "none", @@ -55341,7 +52973,7 @@ } }, { - "id": 9807, + "id": 8730, "properties": { "east": "none", "north": "none", @@ -55352,7 +52984,7 @@ } }, { - "id": 9808, + "id": 8731, "properties": { "east": "none", "north": "none", @@ -55363,7 +52995,7 @@ } }, { - "id": 9809, + "id": 8732, "properties": { "east": "none", "north": "none", @@ -55374,7 +53006,7 @@ } }, { - "id": 9810, + "id": 8733, "properties": { "east": "none", "north": "none", @@ -55385,7 +53017,7 @@ } }, { - "id": 9811, + "id": 8734, "properties": { "east": "none", "north": "none", @@ -55396,7 +53028,7 @@ } }, { - "id": 9812, + "id": 8735, "properties": { "east": "none", "north": "none", @@ -55407,7 +53039,7 @@ } }, { - "id": 9813, + "id": 8736, "properties": { "east": "none", "north": "none", @@ -55418,7 +53050,7 @@ } }, { - "id": 9814, + "id": 8737, "properties": { "east": "none", "north": "none", @@ -55429,7 +53061,7 @@ } }, { - "id": 9815, + "id": 8738, "properties": { "east": "none", "north": "none", @@ -55440,7 +53072,7 @@ } }, { - "id": 9816, + "id": 8739, "properties": { "east": "none", "north": "low", @@ -55451,7 +53083,7 @@ } }, { - "id": 9817, + "id": 8740, "properties": { "east": "none", "north": "low", @@ -55462,7 +53094,7 @@ } }, { - "id": 9818, + "id": 8741, "properties": { "east": "none", "north": "low", @@ -55473,7 +53105,7 @@ } }, { - "id": 9819, + "id": 8742, "properties": { "east": "none", "north": "low", @@ -55484,7 +53116,7 @@ } }, { - "id": 9820, + "id": 8743, "properties": { "east": "none", "north": "low", @@ -55495,7 +53127,7 @@ } }, { - "id": 9821, + "id": 8744, "properties": { "east": "none", "north": "low", @@ -55506,7 +53138,7 @@ } }, { - "id": 9822, + "id": 8745, "properties": { "east": "none", "north": "low", @@ -55517,7 +53149,7 @@ } }, { - "id": 9823, + "id": 8746, "properties": { "east": "none", "north": "low", @@ -55528,7 +53160,7 @@ } }, { - "id": 9824, + "id": 8747, "properties": { "east": "none", "north": "low", @@ -55539,7 +53171,7 @@ } }, { - "id": 9825, + "id": 8748, "properties": { "east": "none", "north": "low", @@ -55550,7 +53182,7 @@ } }, { - "id": 9826, + "id": 8749, "properties": { "east": "none", "north": "low", @@ -55561,7 +53193,7 @@ } }, { - "id": 9827, + "id": 8750, "properties": { "east": "none", "north": "low", @@ -55572,7 +53204,7 @@ } }, { - "id": 9828, + "id": 8751, "properties": { "east": "none", "north": "low", @@ -55583,7 +53215,7 @@ } }, { - "id": 9829, + "id": 8752, "properties": { "east": "none", "north": "low", @@ -55594,7 +53226,7 @@ } }, { - "id": 9830, + "id": 8753, "properties": { "east": "none", "north": "low", @@ -55605,7 +53237,7 @@ } }, { - "id": 9831, + "id": 8754, "properties": { "east": "none", "north": "low", @@ -55616,7 +53248,7 @@ } }, { - "id": 9832, + "id": 8755, "properties": { "east": "none", "north": "low", @@ -55627,7 +53259,7 @@ } }, { - "id": 9833, + "id": 8756, "properties": { "east": "none", "north": "low", @@ -55638,7 +53270,7 @@ } }, { - "id": 9834, + "id": 8757, "properties": { "east": "none", "north": "low", @@ -55649,7 +53281,7 @@ } }, { - "id": 9835, + "id": 8758, "properties": { "east": "none", "north": "low", @@ -55660,7 +53292,7 @@ } }, { - "id": 9836, + "id": 8759, "properties": { "east": "none", "north": "low", @@ -55671,7 +53303,7 @@ } }, { - "id": 9837, + "id": 8760, "properties": { "east": "none", "north": "low", @@ -55682,7 +53314,7 @@ } }, { - "id": 9838, + "id": 8761, "properties": { "east": "none", "north": "low", @@ -55693,7 +53325,7 @@ } }, { - "id": 9839, + "id": 8762, "properties": { "east": "none", "north": "low", @@ -55704,7 +53336,7 @@ } }, { - "id": 9840, + "id": 8763, "properties": { "east": "none", "north": "low", @@ -55715,7 +53347,7 @@ } }, { - "id": 9841, + "id": 8764, "properties": { "east": "none", "north": "low", @@ -55726,7 +53358,7 @@ } }, { - "id": 9842, + "id": 8765, "properties": { "east": "none", "north": "low", @@ -55737,7 +53369,7 @@ } }, { - "id": 9843, + "id": 8766, "properties": { "east": "none", "north": "low", @@ -55748,7 +53380,7 @@ } }, { - "id": 9844, + "id": 8767, "properties": { "east": "none", "north": "low", @@ -55759,7 +53391,7 @@ } }, { - "id": 9845, + "id": 8768, "properties": { "east": "none", "north": "low", @@ -55770,7 +53402,7 @@ } }, { - "id": 9846, + "id": 8769, "properties": { "east": "none", "north": "low", @@ -55781,7 +53413,7 @@ } }, { - "id": 9847, + "id": 8770, "properties": { "east": "none", "north": "low", @@ -55792,7 +53424,7 @@ } }, { - "id": 9848, + "id": 8771, "properties": { "east": "none", "north": "low", @@ -55803,7 +53435,7 @@ } }, { - "id": 9849, + "id": 8772, "properties": { "east": "none", "north": "low", @@ -55814,7 +53446,7 @@ } }, { - "id": 9850, + "id": 8773, "properties": { "east": "none", "north": "low", @@ -55825,7 +53457,7 @@ } }, { - "id": 9851, + "id": 8774, "properties": { "east": "none", "north": "low", @@ -55836,7 +53468,7 @@ } }, { - "id": 9852, + "id": 8775, "properties": { "east": "none", "north": "tall", @@ -55847,7 +53479,7 @@ } }, { - "id": 9853, + "id": 8776, "properties": { "east": "none", "north": "tall", @@ -55858,7 +53490,7 @@ } }, { - "id": 9854, + "id": 8777, "properties": { "east": "none", "north": "tall", @@ -55869,7 +53501,7 @@ } }, { - "id": 9855, + "id": 8778, "properties": { "east": "none", "north": "tall", @@ -55880,7 +53512,7 @@ } }, { - "id": 9856, + "id": 8779, "properties": { "east": "none", "north": "tall", @@ -55891,7 +53523,7 @@ } }, { - "id": 9857, + "id": 8780, "properties": { "east": "none", "north": "tall", @@ -55902,7 +53534,7 @@ } }, { - "id": 9858, + "id": 8781, "properties": { "east": "none", "north": "tall", @@ -55913,7 +53545,7 @@ } }, { - "id": 9859, + "id": 8782, "properties": { "east": "none", "north": "tall", @@ -55924,7 +53556,7 @@ } }, { - "id": 9860, + "id": 8783, "properties": { "east": "none", "north": "tall", @@ -55935,7 +53567,7 @@ } }, { - "id": 9861, + "id": 8784, "properties": { "east": "none", "north": "tall", @@ -55946,7 +53578,7 @@ } }, { - "id": 9862, + "id": 8785, "properties": { "east": "none", "north": "tall", @@ -55957,7 +53589,7 @@ } }, { - "id": 9863, + "id": 8786, "properties": { "east": "none", "north": "tall", @@ -55968,7 +53600,7 @@ } }, { - "id": 9864, + "id": 8787, "properties": { "east": "none", "north": "tall", @@ -55979,7 +53611,7 @@ } }, { - "id": 9865, + "id": 8788, "properties": { "east": "none", "north": "tall", @@ -55990,7 +53622,7 @@ } }, { - "id": 9866, + "id": 8789, "properties": { "east": "none", "north": "tall", @@ -56001,7 +53633,7 @@ } }, { - "id": 9867, + "id": 8790, "properties": { "east": "none", "north": "tall", @@ -56012,7 +53644,7 @@ } }, { - "id": 9868, + "id": 8791, "properties": { "east": "none", "north": "tall", @@ -56023,7 +53655,7 @@ } }, { - "id": 9869, + "id": 8792, "properties": { "east": "none", "north": "tall", @@ -56034,7 +53666,7 @@ } }, { - "id": 9870, + "id": 8793, "properties": { "east": "none", "north": "tall", @@ -56045,7 +53677,7 @@ } }, { - "id": 9871, + "id": 8794, "properties": { "east": "none", "north": "tall", @@ -56056,7 +53688,7 @@ } }, { - "id": 9872, + "id": 8795, "properties": { "east": "none", "north": "tall", @@ -56067,7 +53699,7 @@ } }, { - "id": 9873, + "id": 8796, "properties": { "east": "none", "north": "tall", @@ -56078,7 +53710,7 @@ } }, { - "id": 9874, + "id": 8797, "properties": { "east": "none", "north": "tall", @@ -56089,7 +53721,7 @@ } }, { - "id": 9875, + "id": 8798, "properties": { "east": "none", "north": "tall", @@ -56100,7 +53732,7 @@ } }, { - "id": 9876, + "id": 8799, "properties": { "east": "none", "north": "tall", @@ -56111,7 +53743,7 @@ } }, { - "id": 9877, + "id": 8800, "properties": { "east": "none", "north": "tall", @@ -56122,7 +53754,7 @@ } }, { - "id": 9878, + "id": 8801, "properties": { "east": "none", "north": "tall", @@ -56133,7 +53765,7 @@ } }, { - "id": 9879, + "id": 8802, "properties": { "east": "none", "north": "tall", @@ -56144,7 +53776,7 @@ } }, { - "id": 9880, + "id": 8803, "properties": { "east": "none", "north": "tall", @@ -56155,7 +53787,7 @@ } }, { - "id": 9881, + "id": 8804, "properties": { "east": "none", "north": "tall", @@ -56166,7 +53798,7 @@ } }, { - "id": 9882, + "id": 8805, "properties": { "east": "none", "north": "tall", @@ -56177,7 +53809,7 @@ } }, { - "id": 9883, + "id": 8806, "properties": { "east": "none", "north": "tall", @@ -56188,7 +53820,7 @@ } }, { - "id": 9884, + "id": 8807, "properties": { "east": "none", "north": "tall", @@ -56199,7 +53831,7 @@ } }, { - "id": 9885, + "id": 8808, "properties": { "east": "none", "north": "tall", @@ -56210,7 +53842,7 @@ } }, { - "id": 9886, + "id": 8809, "properties": { "east": "none", "north": "tall", @@ -56221,7 +53853,7 @@ } }, { - "id": 9887, + "id": 8810, "properties": { "east": "none", "north": "tall", @@ -56232,7 +53864,7 @@ } }, { - "id": 9888, + "id": 8811, "properties": { "east": "low", "north": "none", @@ -56243,7 +53875,7 @@ } }, { - "id": 9889, + "id": 8812, "properties": { "east": "low", "north": "none", @@ -56254,7 +53886,7 @@ } }, { - "id": 9890, + "id": 8813, "properties": { "east": "low", "north": "none", @@ -56265,7 +53897,7 @@ } }, { - "id": 9891, + "id": 8814, "properties": { "east": "low", "north": "none", @@ -56276,7 +53908,7 @@ } }, { - "id": 9892, + "id": 8815, "properties": { "east": "low", "north": "none", @@ -56287,7 +53919,7 @@ } }, { - "id": 9893, + "id": 8816, "properties": { "east": "low", "north": "none", @@ -56298,7 +53930,7 @@ } }, { - "id": 9894, + "id": 8817, "properties": { "east": "low", "north": "none", @@ -56309,7 +53941,7 @@ } }, { - "id": 9895, + "id": 8818, "properties": { "east": "low", "north": "none", @@ -56320,7 +53952,7 @@ } }, { - "id": 9896, + "id": 8819, "properties": { "east": "low", "north": "none", @@ -56331,7 +53963,7 @@ } }, { - "id": 9897, + "id": 8820, "properties": { "east": "low", "north": "none", @@ -56342,7 +53974,7 @@ } }, { - "id": 9898, + "id": 8821, "properties": { "east": "low", "north": "none", @@ -56353,7 +53985,7 @@ } }, { - "id": 9899, + "id": 8822, "properties": { "east": "low", "north": "none", @@ -56364,7 +53996,7 @@ } }, { - "id": 9900, + "id": 8823, "properties": { "east": "low", "north": "none", @@ -56375,7 +54007,7 @@ } }, { - "id": 9901, + "id": 8824, "properties": { "east": "low", "north": "none", @@ -56386,7 +54018,7 @@ } }, { - "id": 9902, + "id": 8825, "properties": { "east": "low", "north": "none", @@ -56397,7 +54029,7 @@ } }, { - "id": 9903, + "id": 8826, "properties": { "east": "low", "north": "none", @@ -56408,7 +54040,7 @@ } }, { - "id": 9904, + "id": 8827, "properties": { "east": "low", "north": "none", @@ -56419,7 +54051,7 @@ } }, { - "id": 9905, + "id": 8828, "properties": { "east": "low", "north": "none", @@ -56430,7 +54062,7 @@ } }, { - "id": 9906, + "id": 8829, "properties": { "east": "low", "north": "none", @@ -56441,7 +54073,7 @@ } }, { - "id": 9907, + "id": 8830, "properties": { "east": "low", "north": "none", @@ -56452,7 +54084,7 @@ } }, { - "id": 9908, + "id": 8831, "properties": { "east": "low", "north": "none", @@ -56463,7 +54095,7 @@ } }, { - "id": 9909, + "id": 8832, "properties": { "east": "low", "north": "none", @@ -56474,7 +54106,7 @@ } }, { - "id": 9910, + "id": 8833, "properties": { "east": "low", "north": "none", @@ -56485,7 +54117,7 @@ } }, { - "id": 9911, + "id": 8834, "properties": { "east": "low", "north": "none", @@ -56496,7 +54128,7 @@ } }, { - "id": 9912, + "id": 8835, "properties": { "east": "low", "north": "none", @@ -56507,7 +54139,7 @@ } }, { - "id": 9913, + "id": 8836, "properties": { "east": "low", "north": "none", @@ -56518,7 +54150,7 @@ } }, { - "id": 9914, + "id": 8837, "properties": { "east": "low", "north": "none", @@ -56529,7 +54161,7 @@ } }, { - "id": 9915, + "id": 8838, "properties": { "east": "low", "north": "none", @@ -56540,7 +54172,7 @@ } }, { - "id": 9916, + "id": 8839, "properties": { "east": "low", "north": "none", @@ -56551,7 +54183,7 @@ } }, { - "id": 9917, + "id": 8840, "properties": { "east": "low", "north": "none", @@ -56562,7 +54194,7 @@ } }, { - "id": 9918, + "id": 8841, "properties": { "east": "low", "north": "none", @@ -56573,7 +54205,7 @@ } }, { - "id": 9919, + "id": 8842, "properties": { "east": "low", "north": "none", @@ -56584,7 +54216,7 @@ } }, { - "id": 9920, + "id": 8843, "properties": { "east": "low", "north": "none", @@ -56595,7 +54227,7 @@ } }, { - "id": 9921, + "id": 8844, "properties": { "east": "low", "north": "none", @@ -56606,7 +54238,7 @@ } }, { - "id": 9922, + "id": 8845, "properties": { "east": "low", "north": "none", @@ -56617,7 +54249,7 @@ } }, { - "id": 9923, + "id": 8846, "properties": { "east": "low", "north": "none", @@ -56628,7 +54260,7 @@ } }, { - "id": 9924, + "id": 8847, "properties": { "east": "low", "north": "low", @@ -56639,7 +54271,7 @@ } }, { - "id": 9925, + "id": 8848, "properties": { "east": "low", "north": "low", @@ -56650,7 +54282,7 @@ } }, { - "id": 9926, + "id": 8849, "properties": { "east": "low", "north": "low", @@ -56661,7 +54293,7 @@ } }, { - "id": 9927, + "id": 8850, "properties": { "east": "low", "north": "low", @@ -56672,7 +54304,7 @@ } }, { - "id": 9928, + "id": 8851, "properties": { "east": "low", "north": "low", @@ -56683,7 +54315,7 @@ } }, { - "id": 9929, + "id": 8852, "properties": { "east": "low", "north": "low", @@ -56694,7 +54326,7 @@ } }, { - "id": 9930, + "id": 8853, "properties": { "east": "low", "north": "low", @@ -56705,7 +54337,7 @@ } }, { - "id": 9931, + "id": 8854, "properties": { "east": "low", "north": "low", @@ -56716,7 +54348,7 @@ } }, { - "id": 9932, + "id": 8855, "properties": { "east": "low", "north": "low", @@ -56727,7 +54359,7 @@ } }, { - "id": 9933, + "id": 8856, "properties": { "east": "low", "north": "low", @@ -56738,7 +54370,7 @@ } }, { - "id": 9934, + "id": 8857, "properties": { "east": "low", "north": "low", @@ -56749,7 +54381,7 @@ } }, { - "id": 9935, + "id": 8858, "properties": { "east": "low", "north": "low", @@ -56760,7 +54392,7 @@ } }, { - "id": 9936, + "id": 8859, "properties": { "east": "low", "north": "low", @@ -56771,7 +54403,7 @@ } }, { - "id": 9937, + "id": 8860, "properties": { "east": "low", "north": "low", @@ -56782,7 +54414,7 @@ } }, { - "id": 9938, + "id": 8861, "properties": { "east": "low", "north": "low", @@ -56793,7 +54425,7 @@ } }, { - "id": 9939, + "id": 8862, "properties": { "east": "low", "north": "low", @@ -56804,7 +54436,7 @@ } }, { - "id": 9940, + "id": 8863, "properties": { "east": "low", "north": "low", @@ -56815,7 +54447,7 @@ } }, { - "id": 9941, + "id": 8864, "properties": { "east": "low", "north": "low", @@ -56826,7 +54458,7 @@ } }, { - "id": 9942, + "id": 8865, "properties": { "east": "low", "north": "low", @@ -56837,7 +54469,7 @@ } }, { - "id": 9943, + "id": 8866, "properties": { "east": "low", "north": "low", @@ -56848,7 +54480,7 @@ } }, { - "id": 9944, + "id": 8867, "properties": { "east": "low", "north": "low", @@ -56859,7 +54491,7 @@ } }, { - "id": 9945, + "id": 8868, "properties": { "east": "low", "north": "low", @@ -56870,7 +54502,7 @@ } }, { - "id": 9946, + "id": 8869, "properties": { "east": "low", "north": "low", @@ -56881,7 +54513,7 @@ } }, { - "id": 9947, + "id": 8870, "properties": { "east": "low", "north": "low", @@ -56892,7 +54524,7 @@ } }, { - "id": 9948, + "id": 8871, "properties": { "east": "low", "north": "low", @@ -56903,7 +54535,7 @@ } }, { - "id": 9949, + "id": 8872, "properties": { "east": "low", "north": "low", @@ -56914,7 +54546,7 @@ } }, { - "id": 9950, + "id": 8873, "properties": { "east": "low", "north": "low", @@ -56925,7 +54557,7 @@ } }, { - "id": 9951, + "id": 8874, "properties": { "east": "low", "north": "low", @@ -56936,7 +54568,7 @@ } }, { - "id": 9952, + "id": 8875, "properties": { "east": "low", "north": "low", @@ -56947,7 +54579,7 @@ } }, { - "id": 9953, + "id": 8876, "properties": { "east": "low", "north": "low", @@ -56958,7 +54590,7 @@ } }, { - "id": 9954, + "id": 8877, "properties": { "east": "low", "north": "low", @@ -56969,7 +54601,7 @@ } }, { - "id": 9955, + "id": 8878, "properties": { "east": "low", "north": "low", @@ -56980,7 +54612,7 @@ } }, { - "id": 9956, + "id": 8879, "properties": { "east": "low", "north": "low", @@ -56991,7 +54623,7 @@ } }, { - "id": 9957, + "id": 8880, "properties": { "east": "low", "north": "low", @@ -57002,7 +54634,7 @@ } }, { - "id": 9958, + "id": 8881, "properties": { "east": "low", "north": "low", @@ -57013,7 +54645,7 @@ } }, { - "id": 9959, + "id": 8882, "properties": { "east": "low", "north": "low", @@ -57024,7 +54656,7 @@ } }, { - "id": 9960, + "id": 8883, "properties": { "east": "low", "north": "tall", @@ -57035,7 +54667,7 @@ } }, { - "id": 9961, + "id": 8884, "properties": { "east": "low", "north": "tall", @@ -57046,7 +54678,7 @@ } }, { - "id": 9962, + "id": 8885, "properties": { "east": "low", "north": "tall", @@ -57057,7 +54689,7 @@ } }, { - "id": 9963, + "id": 8886, "properties": { "east": "low", "north": "tall", @@ -57068,7 +54700,7 @@ } }, { - "id": 9964, + "id": 8887, "properties": { "east": "low", "north": "tall", @@ -57079,7 +54711,7 @@ } }, { - "id": 9965, + "id": 8888, "properties": { "east": "low", "north": "tall", @@ -57090,7 +54722,7 @@ } }, { - "id": 9966, + "id": 8889, "properties": { "east": "low", "north": "tall", @@ -57101,7 +54733,7 @@ } }, { - "id": 9967, + "id": 8890, "properties": { "east": "low", "north": "tall", @@ -57112,7 +54744,7 @@ } }, { - "id": 9968, + "id": 8891, "properties": { "east": "low", "north": "tall", @@ -57123,7 +54755,7 @@ } }, { - "id": 9969, + "id": 8892, "properties": { "east": "low", "north": "tall", @@ -57134,7 +54766,7 @@ } }, { - "id": 9970, + "id": 8893, "properties": { "east": "low", "north": "tall", @@ -57145,7 +54777,7 @@ } }, { - "id": 9971, + "id": 8894, "properties": { "east": "low", "north": "tall", @@ -57156,7 +54788,7 @@ } }, { - "id": 9972, + "id": 8895, "properties": { "east": "low", "north": "tall", @@ -57167,7 +54799,7 @@ } }, { - "id": 9973, + "id": 8896, "properties": { "east": "low", "north": "tall", @@ -57178,7 +54810,7 @@ } }, { - "id": 9974, + "id": 8897, "properties": { "east": "low", "north": "tall", @@ -57189,7 +54821,7 @@ } }, { - "id": 9975, + "id": 8898, "properties": { "east": "low", "north": "tall", @@ -57200,7 +54832,7 @@ } }, { - "id": 9976, + "id": 8899, "properties": { "east": "low", "north": "tall", @@ -57211,7 +54843,7 @@ } }, { - "id": 9977, + "id": 8900, "properties": { "east": "low", "north": "tall", @@ -57222,7 +54854,7 @@ } }, { - "id": 9978, + "id": 8901, "properties": { "east": "low", "north": "tall", @@ -57233,7 +54865,7 @@ } }, { - "id": 9979, + "id": 8902, "properties": { "east": "low", "north": "tall", @@ -57244,7 +54876,7 @@ } }, { - "id": 9980, + "id": 8903, "properties": { "east": "low", "north": "tall", @@ -57255,7 +54887,7 @@ } }, { - "id": 9981, + "id": 8904, "properties": { "east": "low", "north": "tall", @@ -57266,7 +54898,7 @@ } }, { - "id": 9982, + "id": 8905, "properties": { "east": "low", "north": "tall", @@ -57277,7 +54909,7 @@ } }, { - "id": 9983, + "id": 8906, "properties": { "east": "low", "north": "tall", @@ -57288,7 +54920,7 @@ } }, { - "id": 9984, + "id": 8907, "properties": { "east": "low", "north": "tall", @@ -57299,7 +54931,7 @@ } }, { - "id": 9985, + "id": 8908, "properties": { "east": "low", "north": "tall", @@ -57310,7 +54942,7 @@ } }, { - "id": 9986, + "id": 8909, "properties": { "east": "low", "north": "tall", @@ -57321,7 +54953,7 @@ } }, { - "id": 9987, + "id": 8910, "properties": { "east": "low", "north": "tall", @@ -57332,7 +54964,7 @@ } }, { - "id": 9988, + "id": 8911, "properties": { "east": "low", "north": "tall", @@ -57343,7 +54975,7 @@ } }, { - "id": 9989, + "id": 8912, "properties": { "east": "low", "north": "tall", @@ -57354,7 +54986,7 @@ } }, { - "id": 9990, + "id": 8913, "properties": { "east": "low", "north": "tall", @@ -57365,7 +54997,7 @@ } }, { - "id": 9991, + "id": 8914, "properties": { "east": "low", "north": "tall", @@ -57376,7 +55008,7 @@ } }, { - "id": 9992, + "id": 8915, "properties": { "east": "low", "north": "tall", @@ -57387,7 +55019,7 @@ } }, { - "id": 9993, + "id": 8916, "properties": { "east": "low", "north": "tall", @@ -57398,7 +55030,7 @@ } }, { - "id": 9994, + "id": 8917, "properties": { "east": "low", "north": "tall", @@ -57409,7 +55041,7 @@ } }, { - "id": 9995, + "id": 8918, "properties": { "east": "low", "north": "tall", @@ -57420,7 +55052,7 @@ } }, { - "id": 9996, + "id": 8919, "properties": { "east": "tall", "north": "none", @@ -57431,7 +55063,7 @@ } }, { - "id": 9997, + "id": 8920, "properties": { "east": "tall", "north": "none", @@ -57442,7 +55074,7 @@ } }, { - "id": 9998, + "id": 8921, "properties": { "east": "tall", "north": "none", @@ -57453,7 +55085,7 @@ } }, { - "id": 9999, + "id": 8922, "properties": { "east": "tall", "north": "none", @@ -57464,7 +55096,7 @@ } }, { - "id": 10000, + "id": 8923, "properties": { "east": "tall", "north": "none", @@ -57475,7 +55107,7 @@ } }, { - "id": 10001, + "id": 8924, "properties": { "east": "tall", "north": "none", @@ -57486,7 +55118,7 @@ } }, { - "id": 10002, + "id": 8925, "properties": { "east": "tall", "north": "none", @@ -57497,7 +55129,7 @@ } }, { - "id": 10003, + "id": 8926, "properties": { "east": "tall", "north": "none", @@ -57508,7 +55140,7 @@ } }, { - "id": 10004, + "id": 8927, "properties": { "east": "tall", "north": "none", @@ -57519,7 +55151,7 @@ } }, { - "id": 10005, + "id": 8928, "properties": { "east": "tall", "north": "none", @@ -57530,7 +55162,7 @@ } }, { - "id": 10006, + "id": 8929, "properties": { "east": "tall", "north": "none", @@ -57541,7 +55173,7 @@ } }, { - "id": 10007, + "id": 8930, "properties": { "east": "tall", "north": "none", @@ -57552,7 +55184,7 @@ } }, { - "id": 10008, + "id": 8931, "properties": { "east": "tall", "north": "none", @@ -57563,7 +55195,7 @@ } }, { - "id": 10009, + "id": 8932, "properties": { "east": "tall", "north": "none", @@ -57574,7 +55206,7 @@ } }, { - "id": 10010, + "id": 8933, "properties": { "east": "tall", "north": "none", @@ -57585,7 +55217,7 @@ } }, { - "id": 10011, + "id": 8934, "properties": { "east": "tall", "north": "none", @@ -57596,7 +55228,7 @@ } }, { - "id": 10012, + "id": 8935, "properties": { "east": "tall", "north": "none", @@ -57607,7 +55239,7 @@ } }, { - "id": 10013, + "id": 8936, "properties": { "east": "tall", "north": "none", @@ -57618,7 +55250,7 @@ } }, { - "id": 10014, + "id": 8937, "properties": { "east": "tall", "north": "none", @@ -57629,7 +55261,7 @@ } }, { - "id": 10015, + "id": 8938, "properties": { "east": "tall", "north": "none", @@ -57640,7 +55272,7 @@ } }, { - "id": 10016, + "id": 8939, "properties": { "east": "tall", "north": "none", @@ -57651,7 +55283,7 @@ } }, { - "id": 10017, + "id": 8940, "properties": { "east": "tall", "north": "none", @@ -57662,7 +55294,7 @@ } }, { - "id": 10018, + "id": 8941, "properties": { "east": "tall", "north": "none", @@ -57673,7 +55305,7 @@ } }, { - "id": 10019, + "id": 8942, "properties": { "east": "tall", "north": "none", @@ -57684,7 +55316,7 @@ } }, { - "id": 10020, + "id": 8943, "properties": { "east": "tall", "north": "none", @@ -57695,7 +55327,7 @@ } }, { - "id": 10021, + "id": 8944, "properties": { "east": "tall", "north": "none", @@ -57706,7 +55338,7 @@ } }, { - "id": 10022, + "id": 8945, "properties": { "east": "tall", "north": "none", @@ -57717,7 +55349,7 @@ } }, { - "id": 10023, + "id": 8946, "properties": { "east": "tall", "north": "none", @@ -57728,7 +55360,7 @@ } }, { - "id": 10024, + "id": 8947, "properties": { "east": "tall", "north": "none", @@ -57739,7 +55371,7 @@ } }, { - "id": 10025, + "id": 8948, "properties": { "east": "tall", "north": "none", @@ -57750,7 +55382,7 @@ } }, { - "id": 10026, + "id": 8949, "properties": { "east": "tall", "north": "none", @@ -57761,7 +55393,7 @@ } }, { - "id": 10027, + "id": 8950, "properties": { "east": "tall", "north": "none", @@ -57772,7 +55404,7 @@ } }, { - "id": 10028, + "id": 8951, "properties": { "east": "tall", "north": "none", @@ -57783,7 +55415,7 @@ } }, { - "id": 10029, + "id": 8952, "properties": { "east": "tall", "north": "none", @@ -57794,7 +55426,7 @@ } }, { - "id": 10030, + "id": 8953, "properties": { "east": "tall", "north": "none", @@ -57805,7 +55437,7 @@ } }, { - "id": 10031, + "id": 8954, "properties": { "east": "tall", "north": "none", @@ -57816,7 +55448,7 @@ } }, { - "id": 10032, + "id": 8955, "properties": { "east": "tall", "north": "low", @@ -57827,7 +55459,7 @@ } }, { - "id": 10033, + "id": 8956, "properties": { "east": "tall", "north": "low", @@ -57838,7 +55470,7 @@ } }, { - "id": 10034, + "id": 8957, "properties": { "east": "tall", "north": "low", @@ -57849,7 +55481,7 @@ } }, { - "id": 10035, + "id": 8958, "properties": { "east": "tall", "north": "low", @@ -57860,7 +55492,7 @@ } }, { - "id": 10036, + "id": 8959, "properties": { "east": "tall", "north": "low", @@ -57871,7 +55503,7 @@ } }, { - "id": 10037, + "id": 8960, "properties": { "east": "tall", "north": "low", @@ -57882,7 +55514,7 @@ } }, { - "id": 10038, + "id": 8961, "properties": { "east": "tall", "north": "low", @@ -57893,7 +55525,7 @@ } }, { - "id": 10039, + "id": 8962, "properties": { "east": "tall", "north": "low", @@ -57904,7 +55536,7 @@ } }, { - "id": 10040, + "id": 8963, "properties": { "east": "tall", "north": "low", @@ -57915,7 +55547,7 @@ } }, { - "id": 10041, + "id": 8964, "properties": { "east": "tall", "north": "low", @@ -57926,7 +55558,7 @@ } }, { - "id": 10042, + "id": 8965, "properties": { "east": "tall", "north": "low", @@ -57937,7 +55569,7 @@ } }, { - "id": 10043, + "id": 8966, "properties": { "east": "tall", "north": "low", @@ -57948,7 +55580,7 @@ } }, { - "id": 10044, + "id": 8967, "properties": { "east": "tall", "north": "low", @@ -57959,7 +55591,7 @@ } }, { - "id": 10045, + "id": 8968, "properties": { "east": "tall", "north": "low", @@ -57970,7 +55602,7 @@ } }, { - "id": 10046, + "id": 8969, "properties": { "east": "tall", "north": "low", @@ -57981,7 +55613,7 @@ } }, { - "id": 10047, + "id": 8970, "properties": { "east": "tall", "north": "low", @@ -57992,7 +55624,7 @@ } }, { - "id": 10048, + "id": 8971, "properties": { "east": "tall", "north": "low", @@ -58003,7 +55635,7 @@ } }, { - "id": 10049, + "id": 8972, "properties": { "east": "tall", "north": "low", @@ -58014,7 +55646,7 @@ } }, { - "id": 10050, + "id": 8973, "properties": { "east": "tall", "north": "low", @@ -58025,7 +55657,7 @@ } }, { - "id": 10051, + "id": 8974, "properties": { "east": "tall", "north": "low", @@ -58036,7 +55668,7 @@ } }, { - "id": 10052, + "id": 8975, "properties": { "east": "tall", "north": "low", @@ -58047,7 +55679,7 @@ } }, { - "id": 10053, + "id": 8976, "properties": { "east": "tall", "north": "low", @@ -58058,7 +55690,7 @@ } }, { - "id": 10054, + "id": 8977, "properties": { "east": "tall", "north": "low", @@ -58069,7 +55701,7 @@ } }, { - "id": 10055, + "id": 8978, "properties": { "east": "tall", "north": "low", @@ -58080,7 +55712,7 @@ } }, { - "id": 10056, + "id": 8979, "properties": { "east": "tall", "north": "low", @@ -58091,7 +55723,7 @@ } }, { - "id": 10057, + "id": 8980, "properties": { "east": "tall", "north": "low", @@ -58102,7 +55734,7 @@ } }, { - "id": 10058, + "id": 8981, "properties": { "east": "tall", "north": "low", @@ -58113,7 +55745,7 @@ } }, { - "id": 10059, + "id": 8982, "properties": { "east": "tall", "north": "low", @@ -58124,7 +55756,7 @@ } }, { - "id": 10060, + "id": 8983, "properties": { "east": "tall", "north": "low", @@ -58135,7 +55767,7 @@ } }, { - "id": 10061, + "id": 8984, "properties": { "east": "tall", "north": "low", @@ -58146,7 +55778,7 @@ } }, { - "id": 10062, + "id": 8985, "properties": { "east": "tall", "north": "low", @@ -58157,7 +55789,7 @@ } }, { - "id": 10063, + "id": 8986, "properties": { "east": "tall", "north": "low", @@ -58168,7 +55800,7 @@ } }, { - "id": 10064, + "id": 8987, "properties": { "east": "tall", "north": "low", @@ -58179,7 +55811,7 @@ } }, { - "id": 10065, + "id": 8988, "properties": { "east": "tall", "north": "low", @@ -58190,7 +55822,7 @@ } }, { - "id": 10066, + "id": 8989, "properties": { "east": "tall", "north": "low", @@ -58201,7 +55833,7 @@ } }, { - "id": 10067, + "id": 8990, "properties": { "east": "tall", "north": "low", @@ -58212,7 +55844,7 @@ } }, { - "id": 10068, + "id": 8991, "properties": { "east": "tall", "north": "tall", @@ -58223,7 +55855,7 @@ } }, { - "id": 10069, + "id": 8992, "properties": { "east": "tall", "north": "tall", @@ -58234,7 +55866,7 @@ } }, { - "id": 10070, + "id": 8993, "properties": { "east": "tall", "north": "tall", @@ -58245,7 +55877,7 @@ } }, { - "id": 10071, + "id": 8994, "properties": { "east": "tall", "north": "tall", @@ -58256,7 +55888,7 @@ } }, { - "id": 10072, + "id": 8995, "properties": { "east": "tall", "north": "tall", @@ -58267,7 +55899,7 @@ } }, { - "id": 10073, + "id": 8996, "properties": { "east": "tall", "north": "tall", @@ -58278,7 +55910,7 @@ } }, { - "id": 10074, + "id": 8997, "properties": { "east": "tall", "north": "tall", @@ -58289,7 +55921,7 @@ } }, { - "id": 10075, + "id": 8998, "properties": { "east": "tall", "north": "tall", @@ -58300,7 +55932,7 @@ } }, { - "id": 10076, + "id": 8999, "properties": { "east": "tall", "north": "tall", @@ -58311,7 +55943,7 @@ } }, { - "id": 10077, + "id": 9000, "properties": { "east": "tall", "north": "tall", @@ -58322,7 +55954,7 @@ } }, { - "id": 10078, + "id": 9001, "properties": { "east": "tall", "north": "tall", @@ -58333,7 +55965,7 @@ } }, { - "id": 10079, + "id": 9002, "properties": { "east": "tall", "north": "tall", @@ -58344,7 +55976,7 @@ } }, { - "id": 10080, + "id": 9003, "properties": { "east": "tall", "north": "tall", @@ -58355,7 +55987,7 @@ } }, { - "id": 10081, + "id": 9004, "properties": { "east": "tall", "north": "tall", @@ -58366,7 +55998,7 @@ } }, { - "id": 10082, + "id": 9005, "properties": { "east": "tall", "north": "tall", @@ -58377,7 +56009,7 @@ } }, { - "id": 10083, + "id": 9006, "properties": { "east": "tall", "north": "tall", @@ -58388,7 +56020,7 @@ } }, { - "id": 10084, + "id": 9007, "properties": { "east": "tall", "north": "tall", @@ -58399,7 +56031,7 @@ } }, { - "id": 10085, + "id": 9008, "properties": { "east": "tall", "north": "tall", @@ -58410,7 +56042,7 @@ } }, { - "id": 10086, + "id": 9009, "properties": { "east": "tall", "north": "tall", @@ -58421,7 +56053,7 @@ } }, { - "id": 10087, + "id": 9010, "properties": { "east": "tall", "north": "tall", @@ -58432,7 +56064,7 @@ } }, { - "id": 10088, + "id": 9011, "properties": { "east": "tall", "north": "tall", @@ -58443,7 +56075,7 @@ } }, { - "id": 10089, + "id": 9012, "properties": { "east": "tall", "north": "tall", @@ -58454,7 +56086,7 @@ } }, { - "id": 10090, + "id": 9013, "properties": { "east": "tall", "north": "tall", @@ -58465,7 +56097,7 @@ } }, { - "id": 10091, + "id": 9014, "properties": { "east": "tall", "north": "tall", @@ -58476,7 +56108,7 @@ } }, { - "id": 10092, + "id": 9015, "properties": { "east": "tall", "north": "tall", @@ -58487,7 +56119,7 @@ } }, { - "id": 10093, + "id": 9016, "properties": { "east": "tall", "north": "tall", @@ -58498,7 +56130,7 @@ } }, { - "id": 10094, + "id": 9017, "properties": { "east": "tall", "north": "tall", @@ -58509,7 +56141,7 @@ } }, { - "id": 10095, + "id": 9018, "properties": { "east": "tall", "north": "tall", @@ -58520,7 +56152,7 @@ } }, { - "id": 10096, + "id": 9019, "properties": { "east": "tall", "north": "tall", @@ -58531,7 +56163,7 @@ } }, { - "id": 10097, + "id": 9020, "properties": { "east": "tall", "north": "tall", @@ -58542,7 +56174,7 @@ } }, { - "id": 10098, + "id": 9021, "properties": { "east": "tall", "north": "tall", @@ -58553,7 +56185,7 @@ } }, { - "id": 10099, + "id": 9022, "properties": { "east": "tall", "north": "tall", @@ -58564,7 +56196,7 @@ } }, { - "id": 10100, + "id": 9023, "properties": { "east": "tall", "north": "tall", @@ -58575,7 +56207,7 @@ } }, { - "id": 10101, + "id": 9024, "properties": { "east": "tall", "north": "tall", @@ -58586,7 +56218,7 @@ } }, { - "id": 10102, + "id": 9025, "properties": { "east": "tall", "north": "tall", @@ -58597,7 +56229,7 @@ } }, { - "id": 10103, + "id": 9026, "properties": { "east": "tall", "north": "tall", @@ -58642,84 +56274,84 @@ "states": [ { "default": true, - "id": 9280, + "id": 8203, "properties": { "age": "0", "facing": "north" } }, { - "id": 9281, + "id": 8204, "properties": { "age": "0", "facing": "south" } }, { - "id": 9282, + "id": 8205, "properties": { "age": "0", "facing": "west" } }, { - "id": 9283, + "id": 8206, "properties": { "age": "0", "facing": "east" } }, { - "id": 9284, + "id": 8207, "properties": { "age": "1", "facing": "north" } }, { - "id": 9285, + "id": 8208, "properties": { "age": "1", "facing": "south" } }, { - "id": 9286, + "id": 8209, "properties": { "age": "1", "facing": "west" } }, { - "id": 9287, + "id": 8210, "properties": { "age": "1", "facing": "east" } }, { - "id": 9288, + "id": 8211, "properties": { "age": "2", "facing": "north" } }, { - "id": 9289, + "id": 8212, "properties": { "age": "2", "facing": "south" } }, { - "id": 9290, + "id": 8213, "properties": { "age": "2", "facing": "west" } }, { - "id": 9291, + "id": 8214, "properties": { "age": "2", "facing": "east" @@ -58749,42 +56381,42 @@ }, "states": [ { - "id": 9767, + "id": 8690, "properties": { "conditional": "true", "facing": "north" } }, { - "id": 9768, + "id": 8691, "properties": { "conditional": "true", "facing": "east" } }, { - "id": 9769, + "id": 8692, "properties": { "conditional": "true", "facing": "south" } }, { - "id": 9770, + "id": 8693, "properties": { "conditional": "true", "facing": "west" } }, { - "id": 9771, + "id": 8694, "properties": { "conditional": "true", "facing": "up" } }, { - "id": 9772, + "id": 8695, "properties": { "conditional": "true", "facing": "down" @@ -58792,42 +56424,42 @@ }, { "default": true, - "id": 9773, + "id": 8696, "properties": { "conditional": "false", "facing": "north" } }, { - "id": 9774, + "id": 8697, "properties": { "conditional": "false", "facing": "east" } }, { - "id": 9775, + "id": 8698, "properties": { "conditional": "false", "facing": "south" } }, { - "id": 9776, + "id": 8699, "properties": { "conditional": "false", "facing": "west" } }, { - "id": 9777, + "id": 8700, "properties": { "conditional": "false", "facing": "up" } }, { - "id": 9778, + "id": 8701, "properties": { "conditional": "false", "facing": "down" @@ -58858,7 +56490,7 @@ }, "states": [ { - "id": 11061, + "id": 9984, "properties": { "facing": "north", "mode": "compare", @@ -58867,7 +56499,7 @@ }, { "default": true, - "id": 11062, + "id": 9985, "properties": { "facing": "north", "mode": "compare", @@ -58875,7 +56507,7 @@ } }, { - "id": 11063, + "id": 9986, "properties": { "facing": "north", "mode": "subtract", @@ -58883,7 +56515,7 @@ } }, { - "id": 11064, + "id": 9987, "properties": { "facing": "north", "mode": "subtract", @@ -58891,7 +56523,7 @@ } }, { - "id": 11065, + "id": 9988, "properties": { "facing": "south", "mode": "compare", @@ -58899,7 +56531,7 @@ } }, { - "id": 11066, + "id": 9989, "properties": { "facing": "south", "mode": "compare", @@ -58907,7 +56539,7 @@ } }, { - "id": 11067, + "id": 9990, "properties": { "facing": "south", "mode": "subtract", @@ -58915,7 +56547,7 @@ } }, { - "id": 11068, + "id": 9991, "properties": { "facing": "south", "mode": "subtract", @@ -58923,7 +56555,7 @@ } }, { - "id": 11069, + "id": 9992, "properties": { "facing": "west", "mode": "compare", @@ -58931,7 +56563,7 @@ } }, { - "id": 11070, + "id": 9993, "properties": { "facing": "west", "mode": "compare", @@ -58939,7 +56571,7 @@ } }, { - "id": 11071, + "id": 9994, "properties": { "facing": "west", "mode": "subtract", @@ -58947,7 +56579,7 @@ } }, { - "id": 11072, + "id": 9995, "properties": { "facing": "west", "mode": "subtract", @@ -58955,7 +56587,7 @@ } }, { - "id": 11073, + "id": 9996, "properties": { "facing": "east", "mode": "compare", @@ -58963,7 +56595,7 @@ } }, { - "id": 11074, + "id": 9997, "properties": { "facing": "east", "mode": "compare", @@ -58971,7 +56603,7 @@ } }, { - "id": 11075, + "id": 9998, "properties": { "facing": "east", "mode": "subtract", @@ -58979,7 +56611,7 @@ } }, { - "id": 11076, + "id": 9999, "properties": { "facing": "east", "mode": "subtract", @@ -59009,55 +56641,55 @@ "states": [ { "default": true, - "id": 21541, + "id": 20400, "properties": { "level": "0" } }, { - "id": 21542, + "id": 20401, "properties": { "level": "1" } }, { - "id": 21543, + "id": 20402, "properties": { "level": "2" } }, { - "id": 21544, + "id": 20403, "properties": { "level": "3" } }, { - "id": 21545, + "id": 20404, "properties": { "level": "4" } }, { - "id": 21546, + "id": 20405, "properties": { "level": "5" } }, { - "id": 21547, + "id": 20406, "properties": { "level": "6" } }, { - "id": 21548, + "id": 20407, "properties": { "level": "7" } }, { - "id": 21549, + "id": 20408, "properties": { "level": "8" } @@ -59078,371 +56710,19 @@ "states": [ { "default": true, - "id": 15074, + "id": 13965, "properties": { "waterlogged": "true" } }, { - "id": 15075, + "id": 13966, "properties": { "waterlogged": "false" } } ] }, - "minecraft:copper_bars": { - "definition": { - "type": "minecraft:weathering_copper_bar", - "properties": {}, - "weathering_state": "unaffected" - }, - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 7789, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7790, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7791, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7792, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7793, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7794, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7795, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7796, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7797, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7798, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7799, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7800, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7801, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7802, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7803, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7804, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7805, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7806, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7807, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7808, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7809, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7810, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7811, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7812, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7813, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7814, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7815, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7816, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7817, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7818, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7819, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "default": true, - "id": 7820, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - ] - }, "minecraft:copper_block": { "definition": { "type": "minecraft:weathering_copper_full", @@ -59452,7 +56732,7 @@ "states": [ { "default": true, - "id": 25107 + "id": 23966 } ] }, @@ -59474,21 +56754,21 @@ }, "states": [ { - "id": 26861, + "id": 25720, "properties": { "lit": "true", "powered": "true" } }, { - "id": 26862, + "id": 25721, "properties": { "lit": "true", "powered": "false" } }, { - "id": 26863, + "id": 25722, "properties": { "lit": "false", "powered": "true" @@ -59496,7 +56776,7 @@ }, { "default": true, - "id": 26864, + "id": 25723, "properties": { "lit": "false", "powered": "false" @@ -59504,290 +56784,6 @@ } ] }, - "minecraft:copper_chain": { - "definition": { - "type": "minecraft:weathering_copper_chain", - "properties": {}, - "weathering_state": "unaffected" - }, - "properties": { - "axis": [ - "x", - "y", - "z" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 8051, - "properties": { - "axis": "x", - "waterlogged": "true" - } - }, - { - "id": 8052, - "properties": { - "axis": "x", - "waterlogged": "false" - } - }, - { - "id": 8053, - "properties": { - "axis": "y", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 8054, - "properties": { - "axis": "y", - "waterlogged": "false" - } - }, - { - "id": 8055, - "properties": { - "axis": "z", - "waterlogged": "true" - } - }, - { - "id": 8056, - "properties": { - "axis": "z", - "waterlogged": "false" - } - } - ] - }, - "minecraft:copper_chest": { - "definition": { - "type": "minecraft:weathering_copper_chest", - "close_sound": "minecraft:block.copper_chest.close", - "open_sound": "minecraft:block.copper_chest.open", - "properties": {}, - "weathering_state": "unaffected" - }, - "properties": { - "type": [ - "single", - "left", - "right" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 26893, - "properties": { - "type": "single", - "facing": "north", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 26894, - "properties": { - "type": "single", - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 26895, - "properties": { - "type": "left", - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 26896, - "properties": { - "type": "left", - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 26897, - "properties": { - "type": "right", - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 26898, - "properties": { - "type": "right", - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 26899, - "properties": { - "type": "single", - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 26900, - "properties": { - "type": "single", - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 26901, - "properties": { - "type": "left", - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 26902, - "properties": { - "type": "left", - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 26903, - "properties": { - "type": "right", - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 26904, - "properties": { - "type": "right", - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 26905, - "properties": { - "type": "single", - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 26906, - "properties": { - "type": "single", - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 26907, - "properties": { - "type": "left", - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 26908, - "properties": { - "type": "left", - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 26909, - "properties": { - "type": "right", - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 26910, - "properties": { - "type": "right", - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 26911, - "properties": { - "type": "single", - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 26912, - "properties": { - "type": "single", - "facing": "east", - "waterlogged": "false" - } - }, - { - "id": 26913, - "properties": { - "type": "left", - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 26914, - "properties": { - "type": "left", - "facing": "east", - "waterlogged": "false" - } - }, - { - "id": 26915, - "properties": { - "type": "right", - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 26916, - "properties": { - "type": "right", - "facing": "east", - "waterlogged": "false" - } - } - ] - }, "minecraft:copper_door": { "definition": { "type": "minecraft:weathering_copper_door", @@ -59821,7 +56817,7 @@ }, "states": [ { - "id": 25821, + "id": 24680, "properties": { "facing": "north", "half": "upper", @@ -59831,7 +56827,7 @@ } }, { - "id": 25822, + "id": 24681, "properties": { "facing": "north", "half": "upper", @@ -59841,7 +56837,7 @@ } }, { - "id": 25823, + "id": 24682, "properties": { "facing": "north", "half": "upper", @@ -59851,7 +56847,7 @@ } }, { - "id": 25824, + "id": 24683, "properties": { "facing": "north", "half": "upper", @@ -59861,7 +56857,7 @@ } }, { - "id": 25825, + "id": 24684, "properties": { "facing": "north", "half": "upper", @@ -59871,7 +56867,7 @@ } }, { - "id": 25826, + "id": 24685, "properties": { "facing": "north", "half": "upper", @@ -59881,7 +56877,7 @@ } }, { - "id": 25827, + "id": 24686, "properties": { "facing": "north", "half": "upper", @@ -59891,7 +56887,7 @@ } }, { - "id": 25828, + "id": 24687, "properties": { "facing": "north", "half": "upper", @@ -59901,7 +56897,7 @@ } }, { - "id": 25829, + "id": 24688, "properties": { "facing": "north", "half": "lower", @@ -59911,7 +56907,7 @@ } }, { - "id": 25830, + "id": 24689, "properties": { "facing": "north", "half": "lower", @@ -59921,7 +56917,7 @@ } }, { - "id": 25831, + "id": 24690, "properties": { "facing": "north", "half": "lower", @@ -59932,7 +56928,7 @@ }, { "default": true, - "id": 25832, + "id": 24691, "properties": { "facing": "north", "half": "lower", @@ -59942,7 +56938,7 @@ } }, { - "id": 25833, + "id": 24692, "properties": { "facing": "north", "half": "lower", @@ -59952,7 +56948,7 @@ } }, { - "id": 25834, + "id": 24693, "properties": { "facing": "north", "half": "lower", @@ -59962,7 +56958,7 @@ } }, { - "id": 25835, + "id": 24694, "properties": { "facing": "north", "half": "lower", @@ -59972,7 +56968,7 @@ } }, { - "id": 25836, + "id": 24695, "properties": { "facing": "north", "half": "lower", @@ -59982,7 +56978,7 @@ } }, { - "id": 25837, + "id": 24696, "properties": { "facing": "south", "half": "upper", @@ -59992,7 +56988,7 @@ } }, { - "id": 25838, + "id": 24697, "properties": { "facing": "south", "half": "upper", @@ -60002,7 +56998,7 @@ } }, { - "id": 25839, + "id": 24698, "properties": { "facing": "south", "half": "upper", @@ -60012,7 +57008,7 @@ } }, { - "id": 25840, + "id": 24699, "properties": { "facing": "south", "half": "upper", @@ -60022,7 +57018,7 @@ } }, { - "id": 25841, + "id": 24700, "properties": { "facing": "south", "half": "upper", @@ -60032,7 +57028,7 @@ } }, { - "id": 25842, + "id": 24701, "properties": { "facing": "south", "half": "upper", @@ -60042,7 +57038,7 @@ } }, { - "id": 25843, + "id": 24702, "properties": { "facing": "south", "half": "upper", @@ -60052,7 +57048,7 @@ } }, { - "id": 25844, + "id": 24703, "properties": { "facing": "south", "half": "upper", @@ -60062,7 +57058,7 @@ } }, { - "id": 25845, + "id": 24704, "properties": { "facing": "south", "half": "lower", @@ -60072,7 +57068,7 @@ } }, { - "id": 25846, + "id": 24705, "properties": { "facing": "south", "half": "lower", @@ -60082,7 +57078,7 @@ } }, { - "id": 25847, + "id": 24706, "properties": { "facing": "south", "half": "lower", @@ -60092,7 +57088,7 @@ } }, { - "id": 25848, + "id": 24707, "properties": { "facing": "south", "half": "lower", @@ -60102,7 +57098,7 @@ } }, { - "id": 25849, + "id": 24708, "properties": { "facing": "south", "half": "lower", @@ -60112,7 +57108,7 @@ } }, { - "id": 25850, + "id": 24709, "properties": { "facing": "south", "half": "lower", @@ -60122,7 +57118,7 @@ } }, { - "id": 25851, + "id": 24710, "properties": { "facing": "south", "half": "lower", @@ -60132,7 +57128,7 @@ } }, { - "id": 25852, + "id": 24711, "properties": { "facing": "south", "half": "lower", @@ -60142,7 +57138,7 @@ } }, { - "id": 25853, + "id": 24712, "properties": { "facing": "west", "half": "upper", @@ -60152,7 +57148,7 @@ } }, { - "id": 25854, + "id": 24713, "properties": { "facing": "west", "half": "upper", @@ -60162,7 +57158,7 @@ } }, { - "id": 25855, + "id": 24714, "properties": { "facing": "west", "half": "upper", @@ -60172,7 +57168,7 @@ } }, { - "id": 25856, + "id": 24715, "properties": { "facing": "west", "half": "upper", @@ -60182,7 +57178,7 @@ } }, { - "id": 25857, + "id": 24716, "properties": { "facing": "west", "half": "upper", @@ -60192,7 +57188,7 @@ } }, { - "id": 25858, + "id": 24717, "properties": { "facing": "west", "half": "upper", @@ -60202,7 +57198,7 @@ } }, { - "id": 25859, + "id": 24718, "properties": { "facing": "west", "half": "upper", @@ -60212,7 +57208,7 @@ } }, { - "id": 25860, + "id": 24719, "properties": { "facing": "west", "half": "upper", @@ -60222,7 +57218,7 @@ } }, { - "id": 25861, + "id": 24720, "properties": { "facing": "west", "half": "lower", @@ -60232,7 +57228,7 @@ } }, { - "id": 25862, + "id": 24721, "properties": { "facing": "west", "half": "lower", @@ -60242,7 +57238,7 @@ } }, { - "id": 25863, + "id": 24722, "properties": { "facing": "west", "half": "lower", @@ -60252,7 +57248,7 @@ } }, { - "id": 25864, + "id": 24723, "properties": { "facing": "west", "half": "lower", @@ -60262,7 +57258,7 @@ } }, { - "id": 25865, + "id": 24724, "properties": { "facing": "west", "half": "lower", @@ -60272,7 +57268,7 @@ } }, { - "id": 25866, + "id": 24725, "properties": { "facing": "west", "half": "lower", @@ -60282,7 +57278,7 @@ } }, { - "id": 25867, + "id": 24726, "properties": { "facing": "west", "half": "lower", @@ -60292,7 +57288,7 @@ } }, { - "id": 25868, + "id": 24727, "properties": { "facing": "west", "half": "lower", @@ -60302,7 +57298,7 @@ } }, { - "id": 25869, + "id": 24728, "properties": { "facing": "east", "half": "upper", @@ -60312,7 +57308,7 @@ } }, { - "id": 25870, + "id": 24729, "properties": { "facing": "east", "half": "upper", @@ -60322,7 +57318,7 @@ } }, { - "id": 25871, + "id": 24730, "properties": { "facing": "east", "half": "upper", @@ -60332,7 +57328,7 @@ } }, { - "id": 25872, + "id": 24731, "properties": { "facing": "east", "half": "upper", @@ -60342,7 +57338,7 @@ } }, { - "id": 25873, + "id": 24732, "properties": { "facing": "east", "half": "upper", @@ -60352,7 +57348,7 @@ } }, { - "id": 25874, + "id": 24733, "properties": { "facing": "east", "half": "upper", @@ -60362,7 +57358,7 @@ } }, { - "id": 25875, + "id": 24734, "properties": { "facing": "east", "half": "upper", @@ -60372,7 +57368,7 @@ } }, { - "id": 25876, + "id": 24735, "properties": { "facing": "east", "half": "upper", @@ -60382,7 +57378,7 @@ } }, { - "id": 25877, + "id": 24736, "properties": { "facing": "east", "half": "lower", @@ -60392,7 +57388,7 @@ } }, { - "id": 25878, + "id": 24737, "properties": { "facing": "east", "half": "lower", @@ -60402,7 +57398,7 @@ } }, { - "id": 25879, + "id": 24738, "properties": { "facing": "east", "half": "lower", @@ -60412,7 +57408,7 @@ } }, { - "id": 25880, + "id": 24739, "properties": { "facing": "east", "half": "lower", @@ -60422,7 +57418,7 @@ } }, { - "id": 25881, + "id": 24740, "properties": { "facing": "east", "half": "lower", @@ -60432,7 +57428,7 @@ } }, { - "id": 25882, + "id": 24741, "properties": { "facing": "east", "half": "lower", @@ -60442,7 +57438,7 @@ } }, { - "id": 25883, + "id": 24742, "properties": { "facing": "east", "half": "lower", @@ -60452,7 +57448,7 @@ } }, { - "id": 25884, + "id": 24743, "properties": { "facing": "east", "half": "lower", @@ -60463,25 +57459,73 @@ } ] }, - "minecraft:copper_golem_statue": { + "minecraft:copper_grate": { "definition": { - "type": "minecraft:weathering_copper_golem_statue", + "type": "minecraft:weathering_copper_grate", + "properties": {}, + "weathering_state": "unaffected" + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 25704, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 25705, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:copper_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": 0, + "properties": {} + }, + "states": [ + { + "default": true, + "id": 23970 + } + ] + }, + "minecraft:copper_trapdoor": { + "definition": { + "type": "minecraft:weathering_copper_trap_door", + "block_set_type": "copper", "properties": {}, "weathering_state": "unaffected" }, "properties": { - "copper_golem_pose": [ - "standing", - "sitting", - "running", - "star" - ], "facing": [ "north", "south", "west", "east" ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], "waterlogged": [ "true", "false" @@ -60489,402 +57533,170 @@ }, "states": [ { - "id": 27085, + "id": 25192, "properties": { - "copper_golem_pose": "standing", "facing": "north", + "half": "top", + "open": "true", + "powered": "true", "waterlogged": "true" } }, { - "default": true, - "id": 27086, + "id": 25193, "properties": { - "copper_golem_pose": "standing", "facing": "north", + "half": "top", + "open": "true", + "powered": "true", "waterlogged": "false" } }, { - "id": 27087, + "id": 25194, "properties": { - "copper_golem_pose": "standing", - "facing": "south", + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "true" } }, { - "id": 27088, + "id": 25195, "properties": { - "copper_golem_pose": "standing", - "facing": "south", + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { - "id": 27089, + "id": 25196, "properties": { - "copper_golem_pose": "standing", - "facing": "west", + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", "waterlogged": "true" } }, { - "id": 27090, + "id": 25197, "properties": { - "copper_golem_pose": "standing", - "facing": "west", + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", "waterlogged": "false" } }, { - "id": 27091, + "id": 25198, "properties": { - "copper_golem_pose": "standing", - "facing": "east", + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", "waterlogged": "true" } }, { - "id": 27092, + "id": 25199, "properties": { - "copper_golem_pose": "standing", - "facing": "east", + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", "waterlogged": "false" } }, { - "id": 27093, + "id": 25200, "properties": { - "copper_golem_pose": "sitting", "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", "waterlogged": "true" } }, { - "id": 27094, + "id": 25201, "properties": { - "copper_golem_pose": "sitting", "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", "waterlogged": "false" } }, { - "id": 27095, + "id": 25202, "properties": { - "copper_golem_pose": "sitting", - "facing": "south", + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", "waterlogged": "true" } }, { - "id": 27096, + "id": 25203, "properties": { - "copper_golem_pose": "sitting", - "facing": "south", + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { - "id": 27097, + "id": 25204, "properties": { - "copper_golem_pose": "sitting", - "facing": "west", + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", "waterlogged": "true" } }, { - "id": 27098, + "id": 25205, "properties": { - "copper_golem_pose": "sitting", - "facing": "west", + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", "waterlogged": "false" } }, { - "id": 27099, + "id": 25206, "properties": { - "copper_golem_pose": "sitting", - "facing": "east", + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", "waterlogged": "true" } }, { - "id": 27100, + "default": true, + "id": 25207, "properties": { - "copper_golem_pose": "sitting", - "facing": "east", + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", "waterlogged": "false" } }, { - "id": 27101, + "id": 25208, "properties": { - "copper_golem_pose": "running", - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 27102, - "properties": { - "copper_golem_pose": "running", - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 27103, - "properties": { - "copper_golem_pose": "running", - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 27104, - "properties": { - "copper_golem_pose": "running", - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 27105, - "properties": { - "copper_golem_pose": "running", - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 27106, - "properties": { - "copper_golem_pose": "running", - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 27107, - "properties": { - "copper_golem_pose": "running", - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 27108, - "properties": { - "copper_golem_pose": "running", - "facing": "east", - "waterlogged": "false" - } - }, - { - "id": 27109, - "properties": { - "copper_golem_pose": "star", - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 27110, - "properties": { - "copper_golem_pose": "star", - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 27111, - "properties": { - "copper_golem_pose": "star", "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 27112, - "properties": { - "copper_golem_pose": "star", - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 27113, - "properties": { - "copper_golem_pose": "star", - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 27114, - "properties": { - "copper_golem_pose": "star", - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 27115, - "properties": { - "copper_golem_pose": "star", - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 27116, - "properties": { - "copper_golem_pose": "star", - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:copper_grate": { - "definition": { - "type": "minecraft:weathering_copper_grate", - "properties": {}, - "weathering_state": "unaffected" - }, - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 26845, - "properties": { - "waterlogged": "true" - } - }, - { - "default": true, - "id": 26846, - "properties": { - "waterlogged": "false" - } - } - ] - }, - "minecraft:copper_lantern": { - "definition": { - "type": "minecraft:weathering_lantern", - "properties": {}, - "weathering_state": "unaffected" - }, - "properties": { - "hanging": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20643, - "properties": { - "hanging": "true", - "waterlogged": "true" - } - }, - { - "id": 20644, - "properties": { - "hanging": "true", - "waterlogged": "false" - } - }, - { - "id": 20645, - "properties": { - "hanging": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 20646, - "properties": { - "hanging": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:copper_ore": { - "definition": { - "type": "minecraft:drop_experience", - "experience": 0, - "properties": {} - }, - "states": [ - { - "default": true, - "id": 25111 - } - ] - }, - "minecraft:copper_torch": { - "definition": { - "type": "minecraft:torch", - "particle_options": "minecraft:copper_fire_flame", - "properties": {} - }, - "states": [ - { - "default": true, - "id": 6810 - } - ] - }, - "minecraft:copper_trapdoor": { - "definition": { - "type": "minecraft:weathering_copper_trap_door", - "block_set_type": "copper", - "properties": {}, - "weathering_state": "unaffected" - }, - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 26333, - "properties": { - "facing": "north", "half": "top", "open": "true", "powered": "true", @@ -60892,168 +57704,7 @@ } }, { - "id": 26334, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 26335, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 26336, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 26337, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 26338, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 26339, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 26340, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 26341, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 26342, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 26343, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 26344, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 26345, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 26346, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 26347, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 26348, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 26349, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 26350, + "id": 25209, "properties": { "facing": "south", "half": "top", @@ -61063,7 +57714,7 @@ } }, { - "id": 26351, + "id": 25210, "properties": { "facing": "south", "half": "top", @@ -61073,7 +57724,7 @@ } }, { - "id": 26352, + "id": 25211, "properties": { "facing": "south", "half": "top", @@ -61083,7 +57734,7 @@ } }, { - "id": 26353, + "id": 25212, "properties": { "facing": "south", "half": "top", @@ -61093,7 +57744,7 @@ } }, { - "id": 26354, + "id": 25213, "properties": { "facing": "south", "half": "top", @@ -61103,7 +57754,7 @@ } }, { - "id": 26355, + "id": 25214, "properties": { "facing": "south", "half": "top", @@ -61113,7 +57764,7 @@ } }, { - "id": 26356, + "id": 25215, "properties": { "facing": "south", "half": "top", @@ -61123,7 +57774,7 @@ } }, { - "id": 26357, + "id": 25216, "properties": { "facing": "south", "half": "bottom", @@ -61133,7 +57784,7 @@ } }, { - "id": 26358, + "id": 25217, "properties": { "facing": "south", "half": "bottom", @@ -61143,7 +57794,7 @@ } }, { - "id": 26359, + "id": 25218, "properties": { "facing": "south", "half": "bottom", @@ -61153,7 +57804,7 @@ } }, { - "id": 26360, + "id": 25219, "properties": { "facing": "south", "half": "bottom", @@ -61163,7 +57814,7 @@ } }, { - "id": 26361, + "id": 25220, "properties": { "facing": "south", "half": "bottom", @@ -61173,7 +57824,7 @@ } }, { - "id": 26362, + "id": 25221, "properties": { "facing": "south", "half": "bottom", @@ -61183,7 +57834,7 @@ } }, { - "id": 26363, + "id": 25222, "properties": { "facing": "south", "half": "bottom", @@ -61193,7 +57844,7 @@ } }, { - "id": 26364, + "id": 25223, "properties": { "facing": "south", "half": "bottom", @@ -61203,7 +57854,7 @@ } }, { - "id": 26365, + "id": 25224, "properties": { "facing": "west", "half": "top", @@ -61213,7 +57864,7 @@ } }, { - "id": 26366, + "id": 25225, "properties": { "facing": "west", "half": "top", @@ -61223,7 +57874,7 @@ } }, { - "id": 26367, + "id": 25226, "properties": { "facing": "west", "half": "top", @@ -61233,7 +57884,7 @@ } }, { - "id": 26368, + "id": 25227, "properties": { "facing": "west", "half": "top", @@ -61243,7 +57894,7 @@ } }, { - "id": 26369, + "id": 25228, "properties": { "facing": "west", "half": "top", @@ -61253,7 +57904,7 @@ } }, { - "id": 26370, + "id": 25229, "properties": { "facing": "west", "half": "top", @@ -61263,7 +57914,7 @@ } }, { - "id": 26371, + "id": 25230, "properties": { "facing": "west", "half": "top", @@ -61273,7 +57924,7 @@ } }, { - "id": 26372, + "id": 25231, "properties": { "facing": "west", "half": "top", @@ -61283,7 +57934,7 @@ } }, { - "id": 26373, + "id": 25232, "properties": { "facing": "west", "half": "bottom", @@ -61293,7 +57944,7 @@ } }, { - "id": 26374, + "id": 25233, "properties": { "facing": "west", "half": "bottom", @@ -61303,7 +57954,7 @@ } }, { - "id": 26375, + "id": 25234, "properties": { "facing": "west", "half": "bottom", @@ -61313,7 +57964,7 @@ } }, { - "id": 26376, + "id": 25235, "properties": { "facing": "west", "half": "bottom", @@ -61323,7 +57974,7 @@ } }, { - "id": 26377, + "id": 25236, "properties": { "facing": "west", "half": "bottom", @@ -61333,7 +57984,7 @@ } }, { - "id": 26378, + "id": 25237, "properties": { "facing": "west", "half": "bottom", @@ -61343,7 +57994,7 @@ } }, { - "id": 26379, + "id": 25238, "properties": { "facing": "west", "half": "bottom", @@ -61353,7 +58004,7 @@ } }, { - "id": 26380, + "id": 25239, "properties": { "facing": "west", "half": "bottom", @@ -61363,7 +58014,7 @@ } }, { - "id": 26381, + "id": 25240, "properties": { "facing": "east", "half": "top", @@ -61373,7 +58024,7 @@ } }, { - "id": 26382, + "id": 25241, "properties": { "facing": "east", "half": "top", @@ -61383,7 +58034,7 @@ } }, { - "id": 26383, + "id": 25242, "properties": { "facing": "east", "half": "top", @@ -61393,7 +58044,7 @@ } }, { - "id": 26384, + "id": 25243, "properties": { "facing": "east", "half": "top", @@ -61403,7 +58054,7 @@ } }, { - "id": 26385, + "id": 25244, "properties": { "facing": "east", "half": "top", @@ -61413,7 +58064,7 @@ } }, { - "id": 26386, + "id": 25245, "properties": { "facing": "east", "half": "top", @@ -61423,7 +58074,7 @@ } }, { - "id": 26387, + "id": 25246, "properties": { "facing": "east", "half": "top", @@ -61433,7 +58084,7 @@ } }, { - "id": 26388, + "id": 25247, "properties": { "facing": "east", "half": "top", @@ -61443,7 +58094,7 @@ } }, { - "id": 26389, + "id": 25248, "properties": { "facing": "east", "half": "bottom", @@ -61453,7 +58104,7 @@ } }, { - "id": 26390, + "id": 25249, "properties": { "facing": "east", "half": "bottom", @@ -61463,7 +58114,7 @@ } }, { - "id": 26391, + "id": 25250, "properties": { "facing": "east", "half": "bottom", @@ -61473,7 +58124,7 @@ } }, { - "id": 26392, + "id": 25251, "properties": { "facing": "east", "half": "bottom", @@ -61483,7 +58134,7 @@ } }, { - "id": 26393, + "id": 25252, "properties": { "facing": "east", "half": "bottom", @@ -61493,7 +58144,7 @@ } }, { - "id": 26394, + "id": 25253, "properties": { "facing": "east", "half": "bottom", @@ -61503,7 +58154,7 @@ } }, { - "id": 26395, + "id": 25254, "properties": { "facing": "east", "half": "bottom", @@ -61513,7 +58164,7 @@ } }, { - "id": 26396, + "id": 25255, "properties": { "facing": "east", "half": "bottom", @@ -61524,48 +58175,6 @@ } ] }, - "minecraft:copper_wall_torch": { - "definition": { - "type": "minecraft:wall_torch", - "particle_options": "minecraft:copper_fire_flame", - "properties": {} - }, - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 6811, - "properties": { - "facing": "north" - } - }, - { - "id": 6812, - "properties": { - "facing": "south" - } - }, - { - "id": 6813, - "properties": { - "facing": "west" - } - }, - { - "id": 6814, - "properties": { - "facing": "east" - } - } - ] - }, "minecraft:cornflower": { "definition": { "type": "minecraft:flower", @@ -61592,7 +58201,7 @@ "states": [ { "default": true, - "id": 29369 + "id": 27612 } ] }, @@ -61604,7 +58213,7 @@ "states": [ { "default": true, - "id": 29370 + "id": 27613 } ] }, @@ -61616,7 +58225,7 @@ "states": [ { "default": true, - "id": 22892 + "id": 21751 } ] }, @@ -61628,7 +58237,7 @@ "states": [ { "default": true, - "id": 22042 + "id": 20901 } ] }, @@ -61640,7 +58249,7 @@ "states": [ { "default": true, - "id": 7555 + "id": 6782 } ] }, @@ -61675,7 +58284,7 @@ }, "states": [ { - "id": 29407, + "id": 27650, "properties": { "crafting": "true", "orientation": "down_east", @@ -61683,7 +58292,7 @@ } }, { - "id": 29408, + "id": 27651, "properties": { "crafting": "true", "orientation": "down_east", @@ -61691,7 +58300,7 @@ } }, { - "id": 29409, + "id": 27652, "properties": { "crafting": "true", "orientation": "down_north", @@ -61699,7 +58308,7 @@ } }, { - "id": 29410, + "id": 27653, "properties": { "crafting": "true", "orientation": "down_north", @@ -61707,7 +58316,7 @@ } }, { - "id": 29411, + "id": 27654, "properties": { "crafting": "true", "orientation": "down_south", @@ -61715,7 +58324,7 @@ } }, { - "id": 29412, + "id": 27655, "properties": { "crafting": "true", "orientation": "down_south", @@ -61723,7 +58332,7 @@ } }, { - "id": 29413, + "id": 27656, "properties": { "crafting": "true", "orientation": "down_west", @@ -61731,7 +58340,7 @@ } }, { - "id": 29414, + "id": 27657, "properties": { "crafting": "true", "orientation": "down_west", @@ -61739,7 +58348,7 @@ } }, { - "id": 29415, + "id": 27658, "properties": { "crafting": "true", "orientation": "up_east", @@ -61747,7 +58356,7 @@ } }, { - "id": 29416, + "id": 27659, "properties": { "crafting": "true", "orientation": "up_east", @@ -61755,7 +58364,7 @@ } }, { - "id": 29417, + "id": 27660, "properties": { "crafting": "true", "orientation": "up_north", @@ -61763,7 +58372,7 @@ } }, { - "id": 29418, + "id": 27661, "properties": { "crafting": "true", "orientation": "up_north", @@ -61771,7 +58380,7 @@ } }, { - "id": 29419, + "id": 27662, "properties": { "crafting": "true", "orientation": "up_south", @@ -61779,7 +58388,7 @@ } }, { - "id": 29420, + "id": 27663, "properties": { "crafting": "true", "orientation": "up_south", @@ -61787,7 +58396,7 @@ } }, { - "id": 29421, + "id": 27664, "properties": { "crafting": "true", "orientation": "up_west", @@ -61795,7 +58404,7 @@ } }, { - "id": 29422, + "id": 27665, "properties": { "crafting": "true", "orientation": "up_west", @@ -61803,7 +58412,7 @@ } }, { - "id": 29423, + "id": 27666, "properties": { "crafting": "true", "orientation": "west_up", @@ -61811,7 +58420,7 @@ } }, { - "id": 29424, + "id": 27667, "properties": { "crafting": "true", "orientation": "west_up", @@ -61819,7 +58428,7 @@ } }, { - "id": 29425, + "id": 27668, "properties": { "crafting": "true", "orientation": "east_up", @@ -61827,7 +58436,7 @@ } }, { - "id": 29426, + "id": 27669, "properties": { "crafting": "true", "orientation": "east_up", @@ -61835,7 +58444,7 @@ } }, { - "id": 29427, + "id": 27670, "properties": { "crafting": "true", "orientation": "north_up", @@ -61843,7 +58452,7 @@ } }, { - "id": 29428, + "id": 27671, "properties": { "crafting": "true", "orientation": "north_up", @@ -61851,7 +58460,7 @@ } }, { - "id": 29429, + "id": 27672, "properties": { "crafting": "true", "orientation": "south_up", @@ -61859,7 +58468,7 @@ } }, { - "id": 29430, + "id": 27673, "properties": { "crafting": "true", "orientation": "south_up", @@ -61867,7 +58476,7 @@ } }, { - "id": 29431, + "id": 27674, "properties": { "crafting": "false", "orientation": "down_east", @@ -61875,7 +58484,7 @@ } }, { - "id": 29432, + "id": 27675, "properties": { "crafting": "false", "orientation": "down_east", @@ -61883,7 +58492,7 @@ } }, { - "id": 29433, + "id": 27676, "properties": { "crafting": "false", "orientation": "down_north", @@ -61891,7 +58500,7 @@ } }, { - "id": 29434, + "id": 27677, "properties": { "crafting": "false", "orientation": "down_north", @@ -61899,7 +58508,7 @@ } }, { - "id": 29435, + "id": 27678, "properties": { "crafting": "false", "orientation": "down_south", @@ -61907,7 +58516,7 @@ } }, { - "id": 29436, + "id": 27679, "properties": { "crafting": "false", "orientation": "down_south", @@ -61915,7 +58524,7 @@ } }, { - "id": 29437, + "id": 27680, "properties": { "crafting": "false", "orientation": "down_west", @@ -61923,7 +58532,7 @@ } }, { - "id": 29438, + "id": 27681, "properties": { "crafting": "false", "orientation": "down_west", @@ -61931,7 +58540,7 @@ } }, { - "id": 29439, + "id": 27682, "properties": { "crafting": "false", "orientation": "up_east", @@ -61939,7 +58548,7 @@ } }, { - "id": 29440, + "id": 27683, "properties": { "crafting": "false", "orientation": "up_east", @@ -61947,7 +58556,7 @@ } }, { - "id": 29441, + "id": 27684, "properties": { "crafting": "false", "orientation": "up_north", @@ -61955,7 +58564,7 @@ } }, { - "id": 29442, + "id": 27685, "properties": { "crafting": "false", "orientation": "up_north", @@ -61963,7 +58572,7 @@ } }, { - "id": 29443, + "id": 27686, "properties": { "crafting": "false", "orientation": "up_south", @@ -61971,7 +58580,7 @@ } }, { - "id": 29444, + "id": 27687, "properties": { "crafting": "false", "orientation": "up_south", @@ -61979,7 +58588,7 @@ } }, { - "id": 29445, + "id": 27688, "properties": { "crafting": "false", "orientation": "up_west", @@ -61987,7 +58596,7 @@ } }, { - "id": 29446, + "id": 27689, "properties": { "crafting": "false", "orientation": "up_west", @@ -61995,7 +58604,7 @@ } }, { - "id": 29447, + "id": 27690, "properties": { "crafting": "false", "orientation": "west_up", @@ -62003,7 +58612,7 @@ } }, { - "id": 29448, + "id": 27691, "properties": { "crafting": "false", "orientation": "west_up", @@ -62011,7 +58620,7 @@ } }, { - "id": 29449, + "id": 27692, "properties": { "crafting": "false", "orientation": "east_up", @@ -62019,7 +58628,7 @@ } }, { - "id": 29450, + "id": 27693, "properties": { "crafting": "false", "orientation": "east_up", @@ -62027,7 +58636,7 @@ } }, { - "id": 29451, + "id": 27694, "properties": { "crafting": "false", "orientation": "north_up", @@ -62036,7 +58645,7 @@ }, { "default": true, - "id": 29452, + "id": 27695, "properties": { "crafting": "false", "orientation": "north_up", @@ -62044,7 +58653,7 @@ } }, { - "id": 29453, + "id": 27696, "properties": { "crafting": "false", "orientation": "south_up", @@ -62052,7 +58661,7 @@ } }, { - "id": 29454, + "id": 27697, "properties": { "crafting": "false", "orientation": "south_up", @@ -62069,7 +58678,7 @@ "states": [ { "default": true, - "id": 5109 + "id": 4341 } ] }, @@ -62096,7 +58705,7 @@ }, "states": [ { - "id": 3688, + "id": 2920, "properties": { "axis": "x", "creaking_heart_state": "uprooted", @@ -62104,7 +58713,7 @@ } }, { - "id": 3689, + "id": 2921, "properties": { "axis": "x", "creaking_heart_state": "uprooted", @@ -62112,7 +58721,7 @@ } }, { - "id": 3690, + "id": 2922, "properties": { "axis": "x", "creaking_heart_state": "dormant", @@ -62120,7 +58729,7 @@ } }, { - "id": 3691, + "id": 2923, "properties": { "axis": "x", "creaking_heart_state": "dormant", @@ -62128,7 +58737,7 @@ } }, { - "id": 3692, + "id": 2924, "properties": { "axis": "x", "creaking_heart_state": "awake", @@ -62136,7 +58745,7 @@ } }, { - "id": 3693, + "id": 2925, "properties": { "axis": "x", "creaking_heart_state": "awake", @@ -62144,7 +58753,7 @@ } }, { - "id": 3694, + "id": 2926, "properties": { "axis": "y", "creaking_heart_state": "uprooted", @@ -62153,7 +58762,7 @@ }, { "default": true, - "id": 3695, + "id": 2927, "properties": { "axis": "y", "creaking_heart_state": "uprooted", @@ -62161,7 +58770,7 @@ } }, { - "id": 3696, + "id": 2928, "properties": { "axis": "y", "creaking_heart_state": "dormant", @@ -62169,7 +58778,7 @@ } }, { - "id": 3697, + "id": 2929, "properties": { "axis": "y", "creaking_heart_state": "dormant", @@ -62177,7 +58786,7 @@ } }, { - "id": 3698, + "id": 2930, "properties": { "axis": "y", "creaking_heart_state": "awake", @@ -62185,7 +58794,7 @@ } }, { - "id": 3699, + "id": 2931, "properties": { "axis": "y", "creaking_heart_state": "awake", @@ -62193,7 +58802,7 @@ } }, { - "id": 3700, + "id": 2932, "properties": { "axis": "z", "creaking_heart_state": "uprooted", @@ -62201,7 +58810,7 @@ } }, { - "id": 3701, + "id": 2933, "properties": { "axis": "z", "creaking_heart_state": "uprooted", @@ -62209,7 +58818,7 @@ } }, { - "id": 3702, + "id": 2934, "properties": { "axis": "z", "creaking_heart_state": "dormant", @@ -62217,7 +58826,7 @@ } }, { - "id": 3703, + "id": 2935, "properties": { "axis": "z", "creaking_heart_state": "dormant", @@ -62225,7 +58834,7 @@ } }, { - "id": 3704, + "id": 2936, "properties": { "axis": "z", "creaking_heart_state": "awake", @@ -62233,7 +58842,7 @@ } }, { - "id": 3705, + "id": 2937, "properties": { "axis": "z", "creaking_heart_state": "awake", @@ -62274,112 +58883,112 @@ }, "states": [ { - "id": 10873, + "id": 9796, "properties": { "powered": "true", "rotation": "0" } }, { - "id": 10874, + "id": 9797, "properties": { "powered": "true", "rotation": "1" } }, { - "id": 10875, + "id": 9798, "properties": { "powered": "true", "rotation": "2" } }, { - "id": 10876, + "id": 9799, "properties": { "powered": "true", "rotation": "3" } }, { - "id": 10877, + "id": 9800, "properties": { "powered": "true", "rotation": "4" } }, { - "id": 10878, + "id": 9801, "properties": { "powered": "true", "rotation": "5" } }, { - "id": 10879, + "id": 9802, "properties": { "powered": "true", "rotation": "6" } }, { - "id": 10880, + "id": 9803, "properties": { "powered": "true", "rotation": "7" } }, { - "id": 10881, + "id": 9804, "properties": { "powered": "true", "rotation": "8" } }, { - "id": 10882, + "id": 9805, "properties": { "powered": "true", "rotation": "9" } }, { - "id": 10883, + "id": 9806, "properties": { "powered": "true", "rotation": "10" } }, { - "id": 10884, + "id": 9807, "properties": { "powered": "true", "rotation": "11" } }, { - "id": 10885, + "id": 9808, "properties": { "powered": "true", "rotation": "12" } }, { - "id": 10886, + "id": 9809, "properties": { "powered": "true", "rotation": "13" } }, { - "id": 10887, + "id": 9810, "properties": { "powered": "true", "rotation": "14" } }, { - "id": 10888, + "id": 9811, "properties": { "powered": "true", "rotation": "15" @@ -62387,112 +58996,112 @@ }, { "default": true, - "id": 10889, + "id": 9812, "properties": { "powered": "false", "rotation": "0" } }, { - "id": 10890, + "id": 9813, "properties": { "powered": "false", "rotation": "1" } }, { - "id": 10891, + "id": 9814, "properties": { "powered": "false", "rotation": "2" } }, { - "id": 10892, + "id": 9815, "properties": { "powered": "false", "rotation": "3" } }, { - "id": 10893, + "id": 9816, "properties": { "powered": "false", "rotation": "4" } }, { - "id": 10894, + "id": 9817, "properties": { "powered": "false", "rotation": "5" } }, { - "id": 10895, + "id": 9818, "properties": { "powered": "false", "rotation": "6" } }, { - "id": 10896, + "id": 9819, "properties": { "powered": "false", "rotation": "7" } }, { - "id": 10897, + "id": 9820, "properties": { "powered": "false", "rotation": "8" } }, { - "id": 10898, + "id": 9821, "properties": { "powered": "false", "rotation": "9" } }, { - "id": 10899, + "id": 9822, "properties": { "powered": "false", "rotation": "10" } }, { - "id": 10900, + "id": 9823, "properties": { "powered": "false", "rotation": "11" } }, { - "id": 10901, + "id": 9824, "properties": { "powered": "false", "rotation": "12" } }, { - "id": 10902, + "id": 9825, "properties": { "powered": "false", "rotation": "13" } }, { - "id": 10903, + "id": 9826, "properties": { "powered": "false", "rotation": "14" } }, { - "id": 10904, + "id": 9827, "properties": { "powered": "false", "rotation": "15" @@ -62520,7 +59129,7 @@ }, "states": [ { - "id": 10905, + "id": 9828, "properties": { "facing": "north", "powered": "true" @@ -62528,49 +59137,49 @@ }, { "default": true, - "id": 10906, + "id": 9829, "properties": { "facing": "north", "powered": "false" } }, { - "id": 10907, + "id": 9830, "properties": { "facing": "south", "powered": "true" } }, { - "id": 10908, + "id": 9831, "properties": { "facing": "south", "powered": "false" } }, { - "id": 10909, + "id": 9832, "properties": { "facing": "west", "powered": "true" } }, { - "id": 10910, + "id": 9833, "properties": { "facing": "west", "powered": "false" } }, { - "id": 10911, + "id": 9834, "properties": { "facing": "east", "powered": "true" } }, { - "id": 10912, + "id": 9835, "properties": { "facing": "east", "powered": "false" @@ -62604,7 +59213,7 @@ }, "states": [ { - "id": 21264, + "id": 20123, "properties": { "face": "floor", "facing": "north", @@ -62612,7 +59221,7 @@ } }, { - "id": 21265, + "id": 20124, "properties": { "face": "floor", "facing": "north", @@ -62620,7 +59229,7 @@ } }, { - "id": 21266, + "id": 20125, "properties": { "face": "floor", "facing": "south", @@ -62628,7 +59237,7 @@ } }, { - "id": 21267, + "id": 20126, "properties": { "face": "floor", "facing": "south", @@ -62636,7 +59245,7 @@ } }, { - "id": 21268, + "id": 20127, "properties": { "face": "floor", "facing": "west", @@ -62644,7 +59253,7 @@ } }, { - "id": 21269, + "id": 20128, "properties": { "face": "floor", "facing": "west", @@ -62652,7 +59261,7 @@ } }, { - "id": 21270, + "id": 20129, "properties": { "face": "floor", "facing": "east", @@ -62660,7 +59269,7 @@ } }, { - "id": 21271, + "id": 20130, "properties": { "face": "floor", "facing": "east", @@ -62668,7 +59277,7 @@ } }, { - "id": 21272, + "id": 20131, "properties": { "face": "wall", "facing": "north", @@ -62677,7 +59286,7 @@ }, { "default": true, - "id": 21273, + "id": 20132, "properties": { "face": "wall", "facing": "north", @@ -62685,7 +59294,7 @@ } }, { - "id": 21274, + "id": 20133, "properties": { "face": "wall", "facing": "south", @@ -62693,7 +59302,7 @@ } }, { - "id": 21275, + "id": 20134, "properties": { "face": "wall", "facing": "south", @@ -62701,7 +59310,7 @@ } }, { - "id": 21276, + "id": 20135, "properties": { "face": "wall", "facing": "west", @@ -62709,7 +59318,7 @@ } }, { - "id": 21277, + "id": 20136, "properties": { "face": "wall", "facing": "west", @@ -62717,7 +59326,7 @@ } }, { - "id": 21278, + "id": 20137, "properties": { "face": "wall", "facing": "east", @@ -62725,7 +59334,7 @@ } }, { - "id": 21279, + "id": 20138, "properties": { "face": "wall", "facing": "east", @@ -62733,7 +59342,7 @@ } }, { - "id": 21280, + "id": 20139, "properties": { "face": "ceiling", "facing": "north", @@ -62741,7 +59350,7 @@ } }, { - "id": 21281, + "id": 20140, "properties": { "face": "ceiling", "facing": "north", @@ -62749,7 +59358,7 @@ } }, { - "id": 21282, + "id": 20141, "properties": { "face": "ceiling", "facing": "south", @@ -62757,7 +59366,7 @@ } }, { - "id": 21283, + "id": 20142, "properties": { "face": "ceiling", "facing": "south", @@ -62765,7 +59374,7 @@ } }, { - "id": 21284, + "id": 20143, "properties": { "face": "ceiling", "facing": "west", @@ -62773,7 +59382,7 @@ } }, { - "id": 21285, + "id": 20144, "properties": { "face": "ceiling", "facing": "west", @@ -62781,7 +59390,7 @@ } }, { - "id": 21286, + "id": 20145, "properties": { "face": "ceiling", "facing": "east", @@ -62789,7 +59398,7 @@ } }, { - "id": 21287, + "id": 20146, "properties": { "face": "ceiling", "facing": "east", @@ -62830,7 +59439,7 @@ }, "states": [ { - "id": 21312, + "id": 20171, "properties": { "facing": "north", "half": "upper", @@ -62840,7 +59449,7 @@ } }, { - "id": 21313, + "id": 20172, "properties": { "facing": "north", "half": "upper", @@ -62850,7 +59459,7 @@ } }, { - "id": 21314, + "id": 20173, "properties": { "facing": "north", "half": "upper", @@ -62860,7 +59469,7 @@ } }, { - "id": 21315, + "id": 20174, "properties": { "facing": "north", "half": "upper", @@ -62870,7 +59479,7 @@ } }, { - "id": 21316, + "id": 20175, "properties": { "facing": "north", "half": "upper", @@ -62880,7 +59489,7 @@ } }, { - "id": 21317, + "id": 20176, "properties": { "facing": "north", "half": "upper", @@ -62890,7 +59499,7 @@ } }, { - "id": 21318, + "id": 20177, "properties": { "facing": "north", "half": "upper", @@ -62900,7 +59509,7 @@ } }, { - "id": 21319, + "id": 20178, "properties": { "facing": "north", "half": "upper", @@ -62910,7 +59519,7 @@ } }, { - "id": 21320, + "id": 20179, "properties": { "facing": "north", "half": "lower", @@ -62920,7 +59529,7 @@ } }, { - "id": 21321, + "id": 20180, "properties": { "facing": "north", "half": "lower", @@ -62930,7 +59539,7 @@ } }, { - "id": 21322, + "id": 20181, "properties": { "facing": "north", "half": "lower", @@ -62941,7 +59550,7 @@ }, { "default": true, - "id": 21323, + "id": 20182, "properties": { "facing": "north", "half": "lower", @@ -62951,7 +59560,7 @@ } }, { - "id": 21324, + "id": 20183, "properties": { "facing": "north", "half": "lower", @@ -62961,7 +59570,7 @@ } }, { - "id": 21325, + "id": 20184, "properties": { "facing": "north", "half": "lower", @@ -62971,7 +59580,7 @@ } }, { - "id": 21326, + "id": 20185, "properties": { "facing": "north", "half": "lower", @@ -62981,7 +59590,7 @@ } }, { - "id": 21327, + "id": 20186, "properties": { "facing": "north", "half": "lower", @@ -62991,7 +59600,7 @@ } }, { - "id": 21328, + "id": 20187, "properties": { "facing": "south", "half": "upper", @@ -63001,7 +59610,7 @@ } }, { - "id": 21329, + "id": 20188, "properties": { "facing": "south", "half": "upper", @@ -63011,7 +59620,7 @@ } }, { - "id": 21330, + "id": 20189, "properties": { "facing": "south", "half": "upper", @@ -63021,7 +59630,7 @@ } }, { - "id": 21331, + "id": 20190, "properties": { "facing": "south", "half": "upper", @@ -63031,7 +59640,7 @@ } }, { - "id": 21332, + "id": 20191, "properties": { "facing": "south", "half": "upper", @@ -63041,7 +59650,7 @@ } }, { - "id": 21333, + "id": 20192, "properties": { "facing": "south", "half": "upper", @@ -63051,7 +59660,7 @@ } }, { - "id": 21334, + "id": 20193, "properties": { "facing": "south", "half": "upper", @@ -63061,7 +59670,7 @@ } }, { - "id": 21335, + "id": 20194, "properties": { "facing": "south", "half": "upper", @@ -63071,7 +59680,7 @@ } }, { - "id": 21336, + "id": 20195, "properties": { "facing": "south", "half": "lower", @@ -63081,7 +59690,7 @@ } }, { - "id": 21337, + "id": 20196, "properties": { "facing": "south", "half": "lower", @@ -63091,7 +59700,7 @@ } }, { - "id": 21338, + "id": 20197, "properties": { "facing": "south", "half": "lower", @@ -63101,7 +59710,7 @@ } }, { - "id": 21339, + "id": 20198, "properties": { "facing": "south", "half": "lower", @@ -63111,7 +59720,7 @@ } }, { - "id": 21340, + "id": 20199, "properties": { "facing": "south", "half": "lower", @@ -63121,7 +59730,7 @@ } }, { - "id": 21341, + "id": 20200, "properties": { "facing": "south", "half": "lower", @@ -63131,7 +59740,7 @@ } }, { - "id": 21342, + "id": 20201, "properties": { "facing": "south", "half": "lower", @@ -63141,7 +59750,7 @@ } }, { - "id": 21343, + "id": 20202, "properties": { "facing": "south", "half": "lower", @@ -63151,7 +59760,7 @@ } }, { - "id": 21344, + "id": 20203, "properties": { "facing": "west", "half": "upper", @@ -63161,7 +59770,7 @@ } }, { - "id": 21345, + "id": 20204, "properties": { "facing": "west", "half": "upper", @@ -63171,7 +59780,7 @@ } }, { - "id": 21346, + "id": 20205, "properties": { "facing": "west", "half": "upper", @@ -63181,7 +59790,7 @@ } }, { - "id": 21347, + "id": 20206, "properties": { "facing": "west", "half": "upper", @@ -63191,7 +59800,7 @@ } }, { - "id": 21348, + "id": 20207, "properties": { "facing": "west", "half": "upper", @@ -63201,7 +59810,7 @@ } }, { - "id": 21349, + "id": 20208, "properties": { "facing": "west", "half": "upper", @@ -63211,7 +59820,7 @@ } }, { - "id": 21350, + "id": 20209, "properties": { "facing": "west", "half": "upper", @@ -63221,7 +59830,7 @@ } }, { - "id": 21351, + "id": 20210, "properties": { "facing": "west", "half": "upper", @@ -63231,7 +59840,7 @@ } }, { - "id": 21352, + "id": 20211, "properties": { "facing": "west", "half": "lower", @@ -63241,7 +59850,7 @@ } }, { - "id": 21353, + "id": 20212, "properties": { "facing": "west", "half": "lower", @@ -63251,7 +59860,7 @@ } }, { - "id": 21354, + "id": 20213, "properties": { "facing": "west", "half": "lower", @@ -63261,7 +59870,7 @@ } }, { - "id": 21355, + "id": 20214, "properties": { "facing": "west", "half": "lower", @@ -63271,7 +59880,7 @@ } }, { - "id": 21356, + "id": 20215, "properties": { "facing": "west", "half": "lower", @@ -63281,7 +59890,7 @@ } }, { - "id": 21357, + "id": 20216, "properties": { "facing": "west", "half": "lower", @@ -63291,7 +59900,7 @@ } }, { - "id": 21358, + "id": 20217, "properties": { "facing": "west", "half": "lower", @@ -63301,7 +59910,7 @@ } }, { - "id": 21359, + "id": 20218, "properties": { "facing": "west", "half": "lower", @@ -63311,7 +59920,7 @@ } }, { - "id": 21360, + "id": 20219, "properties": { "facing": "east", "half": "upper", @@ -63321,7 +59930,7 @@ } }, { - "id": 21361, + "id": 20220, "properties": { "facing": "east", "half": "upper", @@ -63331,7 +59940,7 @@ } }, { - "id": 21362, + "id": 20221, "properties": { "facing": "east", "half": "upper", @@ -63341,7 +59950,7 @@ } }, { - "id": 21363, + "id": 20222, "properties": { "facing": "east", "half": "upper", @@ -63351,7 +59960,7 @@ } }, { - "id": 21364, + "id": 20223, "properties": { "facing": "east", "half": "upper", @@ -63361,7 +59970,7 @@ } }, { - "id": 21365, + "id": 20224, "properties": { "facing": "east", "half": "upper", @@ -63371,7 +59980,7 @@ } }, { - "id": 21366, + "id": 20225, "properties": { "facing": "east", "half": "upper", @@ -63381,7 +59990,7 @@ } }, { - "id": 21367, + "id": 20226, "properties": { "facing": "east", "half": "upper", @@ -63391,7 +60000,7 @@ } }, { - "id": 21368, + "id": 20227, "properties": { "facing": "east", "half": "lower", @@ -63401,7 +60010,7 @@ } }, { - "id": 21369, + "id": 20228, "properties": { "facing": "east", "half": "lower", @@ -63411,7 +60020,7 @@ } }, { - "id": 21370, + "id": 20229, "properties": { "facing": "east", "half": "lower", @@ -63421,7 +60030,7 @@ } }, { - "id": 21371, + "id": 20230, "properties": { "facing": "east", "half": "lower", @@ -63431,7 +60040,7 @@ } }, { - "id": 21372, + "id": 20231, "properties": { "facing": "east", "half": "lower", @@ -63441,7 +60050,7 @@ } }, { - "id": 21373, + "id": 20232, "properties": { "facing": "east", "half": "lower", @@ -63451,7 +60060,7 @@ } }, { - "id": 21374, + "id": 20233, "properties": { "facing": "east", "half": "lower", @@ -63461,7 +60070,7 @@ } }, { - "id": 21375, + "id": 20234, "properties": { "facing": "east", "half": "lower", @@ -63501,7 +60110,7 @@ }, "states": [ { - "id": 20848, + "id": 19707, "properties": { "east": "true", "north": "true", @@ -63511,7 +60120,7 @@ } }, { - "id": 20849, + "id": 19708, "properties": { "east": "true", "north": "true", @@ -63521,7 +60130,7 @@ } }, { - "id": 20850, + "id": 19709, "properties": { "east": "true", "north": "true", @@ -63531,7 +60140,7 @@ } }, { - "id": 20851, + "id": 19710, "properties": { "east": "true", "north": "true", @@ -63541,7 +60150,7 @@ } }, { - "id": 20852, + "id": 19711, "properties": { "east": "true", "north": "true", @@ -63551,7 +60160,7 @@ } }, { - "id": 20853, + "id": 19712, "properties": { "east": "true", "north": "true", @@ -63561,7 +60170,7 @@ } }, { - "id": 20854, + "id": 19713, "properties": { "east": "true", "north": "true", @@ -63571,7 +60180,7 @@ } }, { - "id": 20855, + "id": 19714, "properties": { "east": "true", "north": "true", @@ -63581,7 +60190,7 @@ } }, { - "id": 20856, + "id": 19715, "properties": { "east": "true", "north": "false", @@ -63591,7 +60200,7 @@ } }, { - "id": 20857, + "id": 19716, "properties": { "east": "true", "north": "false", @@ -63601,7 +60210,7 @@ } }, { - "id": 20858, + "id": 19717, "properties": { "east": "true", "north": "false", @@ -63611,7 +60220,7 @@ } }, { - "id": 20859, + "id": 19718, "properties": { "east": "true", "north": "false", @@ -63621,7 +60230,7 @@ } }, { - "id": 20860, + "id": 19719, "properties": { "east": "true", "north": "false", @@ -63631,7 +60240,7 @@ } }, { - "id": 20861, + "id": 19720, "properties": { "east": "true", "north": "false", @@ -63641,7 +60250,7 @@ } }, { - "id": 20862, + "id": 19721, "properties": { "east": "true", "north": "false", @@ -63651,7 +60260,7 @@ } }, { - "id": 20863, + "id": 19722, "properties": { "east": "true", "north": "false", @@ -63661,7 +60270,7 @@ } }, { - "id": 20864, + "id": 19723, "properties": { "east": "false", "north": "true", @@ -63671,7 +60280,7 @@ } }, { - "id": 20865, + "id": 19724, "properties": { "east": "false", "north": "true", @@ -63681,7 +60290,7 @@ } }, { - "id": 20866, + "id": 19725, "properties": { "east": "false", "north": "true", @@ -63691,7 +60300,7 @@ } }, { - "id": 20867, + "id": 19726, "properties": { "east": "false", "north": "true", @@ -63701,7 +60310,7 @@ } }, { - "id": 20868, + "id": 19727, "properties": { "east": "false", "north": "true", @@ -63711,7 +60320,7 @@ } }, { - "id": 20869, + "id": 19728, "properties": { "east": "false", "north": "true", @@ -63721,7 +60330,7 @@ } }, { - "id": 20870, + "id": 19729, "properties": { "east": "false", "north": "true", @@ -63731,7 +60340,7 @@ } }, { - "id": 20871, + "id": 19730, "properties": { "east": "false", "north": "true", @@ -63741,7 +60350,7 @@ } }, { - "id": 20872, + "id": 19731, "properties": { "east": "false", "north": "false", @@ -63751,7 +60360,7 @@ } }, { - "id": 20873, + "id": 19732, "properties": { "east": "false", "north": "false", @@ -63761,7 +60370,7 @@ } }, { - "id": 20874, + "id": 19733, "properties": { "east": "false", "north": "false", @@ -63771,7 +60380,7 @@ } }, { - "id": 20875, + "id": 19734, "properties": { "east": "false", "north": "false", @@ -63781,7 +60390,7 @@ } }, { - "id": 20876, + "id": 19735, "properties": { "east": "false", "north": "false", @@ -63791,7 +60400,7 @@ } }, { - "id": 20877, + "id": 19736, "properties": { "east": "false", "north": "false", @@ -63801,7 +60410,7 @@ } }, { - "id": 20878, + "id": 19737, "properties": { "east": "false", "north": "false", @@ -63812,7 +60421,7 @@ }, { "default": true, - "id": 20879, + "id": 19738, "properties": { "east": "false", "north": "false", @@ -63851,7 +60460,7 @@ }, "states": [ { - "id": 21040, + "id": 19899, "properties": { "facing": "north", "in_wall": "true", @@ -63860,7 +60469,7 @@ } }, { - "id": 21041, + "id": 19900, "properties": { "facing": "north", "in_wall": "true", @@ -63869,7 +60478,7 @@ } }, { - "id": 21042, + "id": 19901, "properties": { "facing": "north", "in_wall": "true", @@ -63878,7 +60487,7 @@ } }, { - "id": 21043, + "id": 19902, "properties": { "facing": "north", "in_wall": "true", @@ -63887,7 +60496,7 @@ } }, { - "id": 21044, + "id": 19903, "properties": { "facing": "north", "in_wall": "false", @@ -63896,7 +60505,7 @@ } }, { - "id": 21045, + "id": 19904, "properties": { "facing": "north", "in_wall": "false", @@ -63905,7 +60514,7 @@ } }, { - "id": 21046, + "id": 19905, "properties": { "facing": "north", "in_wall": "false", @@ -63915,7 +60524,7 @@ }, { "default": true, - "id": 21047, + "id": 19906, "properties": { "facing": "north", "in_wall": "false", @@ -63924,7 +60533,7 @@ } }, { - "id": 21048, + "id": 19907, "properties": { "facing": "south", "in_wall": "true", @@ -63933,7 +60542,7 @@ } }, { - "id": 21049, + "id": 19908, "properties": { "facing": "south", "in_wall": "true", @@ -63942,7 +60551,7 @@ } }, { - "id": 21050, + "id": 19909, "properties": { "facing": "south", "in_wall": "true", @@ -63951,7 +60560,7 @@ } }, { - "id": 21051, + "id": 19910, "properties": { "facing": "south", "in_wall": "true", @@ -63960,7 +60569,7 @@ } }, { - "id": 21052, + "id": 19911, "properties": { "facing": "south", "in_wall": "false", @@ -63969,7 +60578,7 @@ } }, { - "id": 21053, + "id": 19912, "properties": { "facing": "south", "in_wall": "false", @@ -63978,7 +60587,7 @@ } }, { - "id": 21054, + "id": 19913, "properties": { "facing": "south", "in_wall": "false", @@ -63987,7 +60596,7 @@ } }, { - "id": 21055, + "id": 19914, "properties": { "facing": "south", "in_wall": "false", @@ -63996,7 +60605,7 @@ } }, { - "id": 21056, + "id": 19915, "properties": { "facing": "west", "in_wall": "true", @@ -64005,7 +60614,7 @@ } }, { - "id": 21057, + "id": 19916, "properties": { "facing": "west", "in_wall": "true", @@ -64014,7 +60623,7 @@ } }, { - "id": 21058, + "id": 19917, "properties": { "facing": "west", "in_wall": "true", @@ -64023,7 +60632,7 @@ } }, { - "id": 21059, + "id": 19918, "properties": { "facing": "west", "in_wall": "true", @@ -64032,7 +60641,7 @@ } }, { - "id": 21060, + "id": 19919, "properties": { "facing": "west", "in_wall": "false", @@ -64041,7 +60650,7 @@ } }, { - "id": 21061, + "id": 19920, "properties": { "facing": "west", "in_wall": "false", @@ -64050,7 +60659,7 @@ } }, { - "id": 21062, + "id": 19921, "properties": { "facing": "west", "in_wall": "false", @@ -64059,7 +60668,7 @@ } }, { - "id": 21063, + "id": 19922, "properties": { "facing": "west", "in_wall": "false", @@ -64068,7 +60677,7 @@ } }, { - "id": 21064, + "id": 19923, "properties": { "facing": "east", "in_wall": "true", @@ -64077,7 +60686,7 @@ } }, { - "id": 21065, + "id": 19924, "properties": { "facing": "east", "in_wall": "true", @@ -64086,7 +60695,7 @@ } }, { - "id": 21066, + "id": 19925, "properties": { "facing": "east", "in_wall": "true", @@ -64095,7 +60704,7 @@ } }, { - "id": 21067, + "id": 19926, "properties": { "facing": "east", "in_wall": "true", @@ -64104,7 +60713,7 @@ } }, { - "id": 21068, + "id": 19927, "properties": { "facing": "east", "in_wall": "false", @@ -64113,7 +60722,7 @@ } }, { - "id": 21069, + "id": 19928, "properties": { "facing": "east", "in_wall": "false", @@ -64122,7 +60731,7 @@ } }, { - "id": 21070, + "id": 19929, "properties": { "facing": "east", "in_wall": "false", @@ -64131,7 +60740,7 @@ } }, { - "id": 21071, + "id": 19930, "properties": { "facing": "east", "in_wall": "false", @@ -64151,7 +60760,7 @@ "states": [ { "default": true, - "id": 20773 + "id": 19632 } ] }, @@ -64191,7 +60800,7 @@ }, "states": [ { - "id": 6218, + "id": 5450, "properties": { "attached": "true", "rotation": "0", @@ -64199,7 +60808,7 @@ } }, { - "id": 6219, + "id": 5451, "properties": { "attached": "true", "rotation": "0", @@ -64207,7 +60816,7 @@ } }, { - "id": 6220, + "id": 5452, "properties": { "attached": "true", "rotation": "1", @@ -64215,7 +60824,7 @@ } }, { - "id": 6221, + "id": 5453, "properties": { "attached": "true", "rotation": "1", @@ -64223,7 +60832,7 @@ } }, { - "id": 6222, + "id": 5454, "properties": { "attached": "true", "rotation": "2", @@ -64231,7 +60840,7 @@ } }, { - "id": 6223, + "id": 5455, "properties": { "attached": "true", "rotation": "2", @@ -64239,7 +60848,7 @@ } }, { - "id": 6224, + "id": 5456, "properties": { "attached": "true", "rotation": "3", @@ -64247,7 +60856,7 @@ } }, { - "id": 6225, + "id": 5457, "properties": { "attached": "true", "rotation": "3", @@ -64255,7 +60864,7 @@ } }, { - "id": 6226, + "id": 5458, "properties": { "attached": "true", "rotation": "4", @@ -64263,7 +60872,7 @@ } }, { - "id": 6227, + "id": 5459, "properties": { "attached": "true", "rotation": "4", @@ -64271,7 +60880,7 @@ } }, { - "id": 6228, + "id": 5460, "properties": { "attached": "true", "rotation": "5", @@ -64279,7 +60888,7 @@ } }, { - "id": 6229, + "id": 5461, "properties": { "attached": "true", "rotation": "5", @@ -64287,7 +60896,7 @@ } }, { - "id": 6230, + "id": 5462, "properties": { "attached": "true", "rotation": "6", @@ -64295,7 +60904,7 @@ } }, { - "id": 6231, + "id": 5463, "properties": { "attached": "true", "rotation": "6", @@ -64303,7 +60912,7 @@ } }, { - "id": 6232, + "id": 5464, "properties": { "attached": "true", "rotation": "7", @@ -64311,7 +60920,7 @@ } }, { - "id": 6233, + "id": 5465, "properties": { "attached": "true", "rotation": "7", @@ -64319,7 +60928,7 @@ } }, { - "id": 6234, + "id": 5466, "properties": { "attached": "true", "rotation": "8", @@ -64327,7 +60936,7 @@ } }, { - "id": 6235, + "id": 5467, "properties": { "attached": "true", "rotation": "8", @@ -64335,7 +60944,7 @@ } }, { - "id": 6236, + "id": 5468, "properties": { "attached": "true", "rotation": "9", @@ -64343,7 +60952,7 @@ } }, { - "id": 6237, + "id": 5469, "properties": { "attached": "true", "rotation": "9", @@ -64351,7 +60960,7 @@ } }, { - "id": 6238, + "id": 5470, "properties": { "attached": "true", "rotation": "10", @@ -64359,7 +60968,7 @@ } }, { - "id": 6239, + "id": 5471, "properties": { "attached": "true", "rotation": "10", @@ -64367,7 +60976,7 @@ } }, { - "id": 6240, + "id": 5472, "properties": { "attached": "true", "rotation": "11", @@ -64375,7 +60984,7 @@ } }, { - "id": 6241, + "id": 5473, "properties": { "attached": "true", "rotation": "11", @@ -64383,7 +60992,7 @@ } }, { - "id": 6242, + "id": 5474, "properties": { "attached": "true", "rotation": "12", @@ -64391,7 +61000,7 @@ } }, { - "id": 6243, + "id": 5475, "properties": { "attached": "true", "rotation": "12", @@ -64399,7 +61008,7 @@ } }, { - "id": 6244, + "id": 5476, "properties": { "attached": "true", "rotation": "13", @@ -64407,7 +61016,7 @@ } }, { - "id": 6245, + "id": 5477, "properties": { "attached": "true", "rotation": "13", @@ -64415,7 +61024,7 @@ } }, { - "id": 6246, + "id": 5478, "properties": { "attached": "true", "rotation": "14", @@ -64423,7 +61032,7 @@ } }, { - "id": 6247, + "id": 5479, "properties": { "attached": "true", "rotation": "14", @@ -64431,7 +61040,7 @@ } }, { - "id": 6248, + "id": 5480, "properties": { "attached": "true", "rotation": "15", @@ -64439,7 +61048,7 @@ } }, { - "id": 6249, + "id": 5481, "properties": { "attached": "true", "rotation": "15", @@ -64447,7 +61056,7 @@ } }, { - "id": 6250, + "id": 5482, "properties": { "attached": "false", "rotation": "0", @@ -64456,7 +61065,7 @@ }, { "default": true, - "id": 6251, + "id": 5483, "properties": { "attached": "false", "rotation": "0", @@ -64464,7 +61073,7 @@ } }, { - "id": 6252, + "id": 5484, "properties": { "attached": "false", "rotation": "1", @@ -64472,7 +61081,7 @@ } }, { - "id": 6253, + "id": 5485, "properties": { "attached": "false", "rotation": "1", @@ -64480,7 +61089,7 @@ } }, { - "id": 6254, + "id": 5486, "properties": { "attached": "false", "rotation": "2", @@ -64488,7 +61097,7 @@ } }, { - "id": 6255, + "id": 5487, "properties": { "attached": "false", "rotation": "2", @@ -64496,7 +61105,7 @@ } }, { - "id": 6256, + "id": 5488, "properties": { "attached": "false", "rotation": "3", @@ -64504,7 +61113,7 @@ } }, { - "id": 6257, + "id": 5489, "properties": { "attached": "false", "rotation": "3", @@ -64512,7 +61121,7 @@ } }, { - "id": 6258, + "id": 5490, "properties": { "attached": "false", "rotation": "4", @@ -64520,7 +61129,7 @@ } }, { - "id": 6259, + "id": 5491, "properties": { "attached": "false", "rotation": "4", @@ -64528,7 +61137,7 @@ } }, { - "id": 6260, + "id": 5492, "properties": { "attached": "false", "rotation": "5", @@ -64536,7 +61145,7 @@ } }, { - "id": 6261, + "id": 5493, "properties": { "attached": "false", "rotation": "5", @@ -64544,7 +61153,7 @@ } }, { - "id": 6262, + "id": 5494, "properties": { "attached": "false", "rotation": "6", @@ -64552,7 +61161,7 @@ } }, { - "id": 6263, + "id": 5495, "properties": { "attached": "false", "rotation": "6", @@ -64560,7 +61169,7 @@ } }, { - "id": 6264, + "id": 5496, "properties": { "attached": "false", "rotation": "7", @@ -64568,7 +61177,7 @@ } }, { - "id": 6265, + "id": 5497, "properties": { "attached": "false", "rotation": "7", @@ -64576,7 +61185,7 @@ } }, { - "id": 6266, + "id": 5498, "properties": { "attached": "false", "rotation": "8", @@ -64584,7 +61193,7 @@ } }, { - "id": 6267, + "id": 5499, "properties": { "attached": "false", "rotation": "8", @@ -64592,7 +61201,7 @@ } }, { - "id": 6268, + "id": 5500, "properties": { "attached": "false", "rotation": "9", @@ -64600,7 +61209,7 @@ } }, { - "id": 6269, + "id": 5501, "properties": { "attached": "false", "rotation": "9", @@ -64608,7 +61217,7 @@ } }, { - "id": 6270, + "id": 5502, "properties": { "attached": "false", "rotation": "10", @@ -64616,7 +61225,7 @@ } }, { - "id": 6271, + "id": 5503, "properties": { "attached": "false", "rotation": "10", @@ -64624,7 +61233,7 @@ } }, { - "id": 6272, + "id": 5504, "properties": { "attached": "false", "rotation": "11", @@ -64632,7 +61241,7 @@ } }, { - "id": 6273, + "id": 5505, "properties": { "attached": "false", "rotation": "11", @@ -64640,7 +61249,7 @@ } }, { - "id": 6274, + "id": 5506, "properties": { "attached": "false", "rotation": "12", @@ -64648,7 +61257,7 @@ } }, { - "id": 6275, + "id": 5507, "properties": { "attached": "false", "rotation": "12", @@ -64656,7 +61265,7 @@ } }, { - "id": 6276, + "id": 5508, "properties": { "attached": "false", "rotation": "13", @@ -64664,7 +61273,7 @@ } }, { - "id": 6277, + "id": 5509, "properties": { "attached": "false", "rotation": "13", @@ -64672,7 +61281,7 @@ } }, { - "id": 6278, + "id": 5510, "properties": { "attached": "false", "rotation": "14", @@ -64680,7 +61289,7 @@ } }, { - "id": 6279, + "id": 5511, "properties": { "attached": "false", "rotation": "14", @@ -64688,7 +61297,7 @@ } }, { - "id": 6280, + "id": 5512, "properties": { "attached": "false", "rotation": "15", @@ -64696,7 +61305,7 @@ } }, { - "id": 6281, + "id": 5513, "properties": { "attached": "false", "rotation": "15", @@ -64719,20 +61328,20 @@ }, "states": [ { - "id": 20766, + "id": 19625, "properties": { "axis": "x" } }, { "default": true, - "id": 20767, + "id": 19626, "properties": { "axis": "y" } }, { - "id": 20768, + "id": 19627, "properties": { "axis": "z" } @@ -64747,7 +61356,7 @@ "states": [ { "default": true, - "id": 20772 + "id": 19631 } ] }, @@ -64759,7 +61368,7 @@ "states": [ { "default": true, - "id": 20830 + "id": 19689 } ] }, @@ -64777,14 +61386,14 @@ }, "states": [ { - "id": 20844, + "id": 19703, "properties": { "powered": "true" } }, { "default": true, - "id": 20845, + "id": 19704, "properties": { "powered": "false" } @@ -64799,614 +61408,7 @@ "states": [ { "default": true, - "id": 20829 - } - ] - }, - "minecraft:crimson_shelf": { - "definition": { - "type": "minecraft:shelf", - "properties": {} - }, - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ], - "side_chain": [ - "unconnected", - "right", - "center", - "left" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 2655, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2656, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2657, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2658, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2659, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2660, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2661, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2662, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2663, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 2664, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2665, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2666, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2667, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2668, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2669, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2670, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2671, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2672, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2673, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2674, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2675, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2676, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2677, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2678, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2679, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2680, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2681, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2682, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2683, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2684, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2685, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2686, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2687, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2688, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2689, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2690, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2691, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2692, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2693, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2694, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2695, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2696, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2697, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2698, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2699, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2700, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2701, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2702, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2703, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2704, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2705, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2706, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2707, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2708, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2709, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2710, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2711, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2712, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2713, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2714, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2715, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2716, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2717, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2718, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "left", - "waterlogged": "false" - } + "id": 19688 } ] }, @@ -65442,7 +61444,7 @@ }, "states": [ { - "id": 21440, + "id": 20299, "properties": { "rotation": "0", "waterlogged": "true" @@ -65450,217 +61452,217 @@ }, { "default": true, - "id": 21441, + "id": 20300, "properties": { "rotation": "0", "waterlogged": "false" } }, { - "id": 21442, + "id": 20301, "properties": { "rotation": "1", "waterlogged": "true" } }, { - "id": 21443, + "id": 20302, "properties": { "rotation": "1", "waterlogged": "false" } }, { - "id": 21444, + "id": 20303, "properties": { "rotation": "2", "waterlogged": "true" } }, { - "id": 21445, + "id": 20304, "properties": { "rotation": "2", "waterlogged": "false" } }, { - "id": 21446, + "id": 20305, "properties": { "rotation": "3", "waterlogged": "true" } }, { - "id": 21447, + "id": 20306, "properties": { "rotation": "3", "waterlogged": "false" } }, { - "id": 21448, + "id": 20307, "properties": { "rotation": "4", "waterlogged": "true" } }, { - "id": 21449, + "id": 20308, "properties": { "rotation": "4", "waterlogged": "false" } }, { - "id": 21450, + "id": 20309, "properties": { "rotation": "5", "waterlogged": "true" } }, { - "id": 21451, + "id": 20310, "properties": { "rotation": "5", "waterlogged": "false" } }, { - "id": 21452, + "id": 20311, "properties": { "rotation": "6", "waterlogged": "true" } }, { - "id": 21453, + "id": 20312, "properties": { "rotation": "6", "waterlogged": "false" } }, { - "id": 21454, + "id": 20313, "properties": { "rotation": "7", "waterlogged": "true" } }, { - "id": 21455, + "id": 20314, "properties": { "rotation": "7", "waterlogged": "false" } }, { - "id": 21456, + "id": 20315, "properties": { "rotation": "8", "waterlogged": "true" } }, { - "id": 21457, + "id": 20316, "properties": { "rotation": "8", "waterlogged": "false" } }, { - "id": 21458, + "id": 20317, "properties": { "rotation": "9", "waterlogged": "true" } }, { - "id": 21459, + "id": 20318, "properties": { "rotation": "9", "waterlogged": "false" } }, { - "id": 21460, + "id": 20319, "properties": { "rotation": "10", "waterlogged": "true" } }, { - "id": 21461, + "id": 20320, "properties": { "rotation": "10", "waterlogged": "false" } }, { - "id": 21462, + "id": 20321, "properties": { "rotation": "11", "waterlogged": "true" } }, { - "id": 21463, + "id": 20322, "properties": { "rotation": "11", "waterlogged": "false" } }, { - "id": 21464, + "id": 20323, "properties": { "rotation": "12", "waterlogged": "true" } }, { - "id": 21465, + "id": 20324, "properties": { "rotation": "12", "waterlogged": "false" } }, { - "id": 21466, + "id": 20325, "properties": { "rotation": "13", "waterlogged": "true" } }, { - "id": 21467, + "id": 20326, "properties": { "rotation": "13", "waterlogged": "false" } }, { - "id": 21468, + "id": 20327, "properties": { "rotation": "14", "waterlogged": "true" } }, { - "id": 21469, + "id": 20328, "properties": { "rotation": "14", "waterlogged": "false" } }, { - "id": 21470, + "id": 20329, "properties": { "rotation": "15", "waterlogged": "true" } }, { - "id": 21471, + "id": 20330, "properties": { "rotation": "15", "waterlogged": "false" @@ -65686,21 +61688,21 @@ }, "states": [ { - "id": 20832, + "id": 19691, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 20833, + "id": 19692, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 20834, + "id": 19693, "properties": { "type": "bottom", "waterlogged": "true" @@ -65708,21 +61710,21 @@ }, { "default": true, - "id": 20835, + "id": 19694, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 20836, + "id": 19695, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 20837, + "id": 19696, "properties": { "type": "double", "waterlogged": "false" @@ -65763,7 +61765,7 @@ }, "states": [ { - "id": 21104, + "id": 19963, "properties": { "facing": "north", "half": "top", @@ -65772,7 +61774,7 @@ } }, { - "id": 21105, + "id": 19964, "properties": { "facing": "north", "half": "top", @@ -65781,7 +61783,7 @@ } }, { - "id": 21106, + "id": 19965, "properties": { "facing": "north", "half": "top", @@ -65790,7 +61792,7 @@ } }, { - "id": 21107, + "id": 19966, "properties": { "facing": "north", "half": "top", @@ -65799,7 +61801,7 @@ } }, { - "id": 21108, + "id": 19967, "properties": { "facing": "north", "half": "top", @@ -65808,7 +61810,7 @@ } }, { - "id": 21109, + "id": 19968, "properties": { "facing": "north", "half": "top", @@ -65817,7 +61819,7 @@ } }, { - "id": 21110, + "id": 19969, "properties": { "facing": "north", "half": "top", @@ -65826,7 +61828,7 @@ } }, { - "id": 21111, + "id": 19970, "properties": { "facing": "north", "half": "top", @@ -65835,7 +61837,7 @@ } }, { - "id": 21112, + "id": 19971, "properties": { "facing": "north", "half": "top", @@ -65844,7 +61846,7 @@ } }, { - "id": 21113, + "id": 19972, "properties": { "facing": "north", "half": "top", @@ -65853,7 +61855,7 @@ } }, { - "id": 21114, + "id": 19973, "properties": { "facing": "north", "half": "bottom", @@ -65863,7 +61865,7 @@ }, { "default": true, - "id": 21115, + "id": 19974, "properties": { "facing": "north", "half": "bottom", @@ -65872,7 +61874,7 @@ } }, { - "id": 21116, + "id": 19975, "properties": { "facing": "north", "half": "bottom", @@ -65881,7 +61883,7 @@ } }, { - "id": 21117, + "id": 19976, "properties": { "facing": "north", "half": "bottom", @@ -65890,7 +61892,7 @@ } }, { - "id": 21118, + "id": 19977, "properties": { "facing": "north", "half": "bottom", @@ -65899,7 +61901,7 @@ } }, { - "id": 21119, + "id": 19978, "properties": { "facing": "north", "half": "bottom", @@ -65908,7 +61910,7 @@ } }, { - "id": 21120, + "id": 19979, "properties": { "facing": "north", "half": "bottom", @@ -65917,7 +61919,7 @@ } }, { - "id": 21121, + "id": 19980, "properties": { "facing": "north", "half": "bottom", @@ -65926,7 +61928,7 @@ } }, { - "id": 21122, + "id": 19981, "properties": { "facing": "north", "half": "bottom", @@ -65935,7 +61937,7 @@ } }, { - "id": 21123, + "id": 19982, "properties": { "facing": "north", "half": "bottom", @@ -65944,7 +61946,7 @@ } }, { - "id": 21124, + "id": 19983, "properties": { "facing": "south", "half": "top", @@ -65953,7 +61955,7 @@ } }, { - "id": 21125, + "id": 19984, "properties": { "facing": "south", "half": "top", @@ -65962,7 +61964,7 @@ } }, { - "id": 21126, + "id": 19985, "properties": { "facing": "south", "half": "top", @@ -65971,7 +61973,7 @@ } }, { - "id": 21127, + "id": 19986, "properties": { "facing": "south", "half": "top", @@ -65980,7 +61982,7 @@ } }, { - "id": 21128, + "id": 19987, "properties": { "facing": "south", "half": "top", @@ -65989,7 +61991,7 @@ } }, { - "id": 21129, + "id": 19988, "properties": { "facing": "south", "half": "top", @@ -65998,7 +62000,7 @@ } }, { - "id": 21130, + "id": 19989, "properties": { "facing": "south", "half": "top", @@ -66007,7 +62009,7 @@ } }, { - "id": 21131, + "id": 19990, "properties": { "facing": "south", "half": "top", @@ -66016,7 +62018,7 @@ } }, { - "id": 21132, + "id": 19991, "properties": { "facing": "south", "half": "top", @@ -66025,7 +62027,7 @@ } }, { - "id": 21133, + "id": 19992, "properties": { "facing": "south", "half": "top", @@ -66034,7 +62036,7 @@ } }, { - "id": 21134, + "id": 19993, "properties": { "facing": "south", "half": "bottom", @@ -66043,7 +62045,7 @@ } }, { - "id": 21135, + "id": 19994, "properties": { "facing": "south", "half": "bottom", @@ -66052,7 +62054,7 @@ } }, { - "id": 21136, + "id": 19995, "properties": { "facing": "south", "half": "bottom", @@ -66061,7 +62063,7 @@ } }, { - "id": 21137, + "id": 19996, "properties": { "facing": "south", "half": "bottom", @@ -66070,7 +62072,7 @@ } }, { - "id": 21138, + "id": 19997, "properties": { "facing": "south", "half": "bottom", @@ -66079,7 +62081,7 @@ } }, { - "id": 21139, + "id": 19998, "properties": { "facing": "south", "half": "bottom", @@ -66088,7 +62090,7 @@ } }, { - "id": 21140, + "id": 19999, "properties": { "facing": "south", "half": "bottom", @@ -66097,7 +62099,7 @@ } }, { - "id": 21141, + "id": 20000, "properties": { "facing": "south", "half": "bottom", @@ -66106,7 +62108,7 @@ } }, { - "id": 21142, + "id": 20001, "properties": { "facing": "south", "half": "bottom", @@ -66115,7 +62117,7 @@ } }, { - "id": 21143, + "id": 20002, "properties": { "facing": "south", "half": "bottom", @@ -66124,7 +62126,7 @@ } }, { - "id": 21144, + "id": 20003, "properties": { "facing": "west", "half": "top", @@ -66133,7 +62135,7 @@ } }, { - "id": 21145, + "id": 20004, "properties": { "facing": "west", "half": "top", @@ -66142,7 +62144,7 @@ } }, { - "id": 21146, + "id": 20005, "properties": { "facing": "west", "half": "top", @@ -66151,7 +62153,7 @@ } }, { - "id": 21147, + "id": 20006, "properties": { "facing": "west", "half": "top", @@ -66160,7 +62162,7 @@ } }, { - "id": 21148, + "id": 20007, "properties": { "facing": "west", "half": "top", @@ -66169,7 +62171,7 @@ } }, { - "id": 21149, + "id": 20008, "properties": { "facing": "west", "half": "top", @@ -66178,7 +62180,7 @@ } }, { - "id": 21150, + "id": 20009, "properties": { "facing": "west", "half": "top", @@ -66187,7 +62189,7 @@ } }, { - "id": 21151, + "id": 20010, "properties": { "facing": "west", "half": "top", @@ -66196,7 +62198,7 @@ } }, { - "id": 21152, + "id": 20011, "properties": { "facing": "west", "half": "top", @@ -66205,7 +62207,7 @@ } }, { - "id": 21153, + "id": 20012, "properties": { "facing": "west", "half": "top", @@ -66214,7 +62216,7 @@ } }, { - "id": 21154, + "id": 20013, "properties": { "facing": "west", "half": "bottom", @@ -66223,7 +62225,7 @@ } }, { - "id": 21155, + "id": 20014, "properties": { "facing": "west", "half": "bottom", @@ -66232,7 +62234,7 @@ } }, { - "id": 21156, + "id": 20015, "properties": { "facing": "west", "half": "bottom", @@ -66241,7 +62243,7 @@ } }, { - "id": 21157, + "id": 20016, "properties": { "facing": "west", "half": "bottom", @@ -66250,7 +62252,7 @@ } }, { - "id": 21158, + "id": 20017, "properties": { "facing": "west", "half": "bottom", @@ -66259,7 +62261,7 @@ } }, { - "id": 21159, + "id": 20018, "properties": { "facing": "west", "half": "bottom", @@ -66268,7 +62270,7 @@ } }, { - "id": 21160, + "id": 20019, "properties": { "facing": "west", "half": "bottom", @@ -66277,7 +62279,7 @@ } }, { - "id": 21161, + "id": 20020, "properties": { "facing": "west", "half": "bottom", @@ -66286,7 +62288,7 @@ } }, { - "id": 21162, + "id": 20021, "properties": { "facing": "west", "half": "bottom", @@ -66295,7 +62297,7 @@ } }, { - "id": 21163, + "id": 20022, "properties": { "facing": "west", "half": "bottom", @@ -66304,7 +62306,7 @@ } }, { - "id": 21164, + "id": 20023, "properties": { "facing": "east", "half": "top", @@ -66313,7 +62315,7 @@ } }, { - "id": 21165, + "id": 20024, "properties": { "facing": "east", "half": "top", @@ -66322,7 +62324,7 @@ } }, { - "id": 21166, + "id": 20025, "properties": { "facing": "east", "half": "top", @@ -66331,7 +62333,7 @@ } }, { - "id": 21167, + "id": 20026, "properties": { "facing": "east", "half": "top", @@ -66340,7 +62342,7 @@ } }, { - "id": 21168, + "id": 20027, "properties": { "facing": "east", "half": "top", @@ -66349,7 +62351,7 @@ } }, { - "id": 21169, + "id": 20028, "properties": { "facing": "east", "half": "top", @@ -66358,7 +62360,7 @@ } }, { - "id": 21170, + "id": 20029, "properties": { "facing": "east", "half": "top", @@ -66367,7 +62369,7 @@ } }, { - "id": 21171, + "id": 20030, "properties": { "facing": "east", "half": "top", @@ -66376,7 +62378,7 @@ } }, { - "id": 21172, + "id": 20031, "properties": { "facing": "east", "half": "top", @@ -66385,7 +62387,7 @@ } }, { - "id": 21173, + "id": 20032, "properties": { "facing": "east", "half": "top", @@ -66394,7 +62396,7 @@ } }, { - "id": 21174, + "id": 20033, "properties": { "facing": "east", "half": "bottom", @@ -66403,7 +62405,7 @@ } }, { - "id": 21175, + "id": 20034, "properties": { "facing": "east", "half": "bottom", @@ -66412,7 +62414,7 @@ } }, { - "id": 21176, + "id": 20035, "properties": { "facing": "east", "half": "bottom", @@ -66421,7 +62423,7 @@ } }, { - "id": 21177, + "id": 20036, "properties": { "facing": "east", "half": "bottom", @@ -66430,7 +62432,7 @@ } }, { - "id": 21178, + "id": 20037, "properties": { "facing": "east", "half": "bottom", @@ -66439,7 +62441,7 @@ } }, { - "id": 21179, + "id": 20038, "properties": { "facing": "east", "half": "bottom", @@ -66448,7 +62450,7 @@ } }, { - "id": 21180, + "id": 20039, "properties": { "facing": "east", "half": "bottom", @@ -66457,7 +62459,7 @@ } }, { - "id": 21181, + "id": 20040, "properties": { "facing": "east", "half": "bottom", @@ -66466,7 +62468,7 @@ } }, { - "id": 21182, + "id": 20041, "properties": { "facing": "east", "half": "bottom", @@ -66475,7 +62477,7 @@ } }, { - "id": 21183, + "id": 20042, "properties": { "facing": "east", "half": "bottom", @@ -66499,20 +62501,20 @@ }, "states": [ { - "id": 20760, + "id": 19619, "properties": { "axis": "x" } }, { "default": true, - "id": 20761, + "id": 19620, "properties": { "axis": "y" } }, { - "id": 20762, + "id": 19621, "properties": { "axis": "z" } @@ -66551,7 +62553,7 @@ }, "states": [ { - "id": 20912, + "id": 19771, "properties": { "facing": "north", "half": "top", @@ -66561,7 +62563,7 @@ } }, { - "id": 20913, + "id": 19772, "properties": { "facing": "north", "half": "top", @@ -66571,7 +62573,7 @@ } }, { - "id": 20914, + "id": 19773, "properties": { "facing": "north", "half": "top", @@ -66581,7 +62583,7 @@ } }, { - "id": 20915, + "id": 19774, "properties": { "facing": "north", "half": "top", @@ -66591,7 +62593,7 @@ } }, { - "id": 20916, + "id": 19775, "properties": { "facing": "north", "half": "top", @@ -66601,7 +62603,7 @@ } }, { - "id": 20917, + "id": 19776, "properties": { "facing": "north", "half": "top", @@ -66611,7 +62613,7 @@ } }, { - "id": 20918, + "id": 19777, "properties": { "facing": "north", "half": "top", @@ -66621,7 +62623,7 @@ } }, { - "id": 20919, + "id": 19778, "properties": { "facing": "north", "half": "top", @@ -66631,7 +62633,7 @@ } }, { - "id": 20920, + "id": 19779, "properties": { "facing": "north", "half": "bottom", @@ -66641,7 +62643,7 @@ } }, { - "id": 20921, + "id": 19780, "properties": { "facing": "north", "half": "bottom", @@ -66651,7 +62653,7 @@ } }, { - "id": 20922, + "id": 19781, "properties": { "facing": "north", "half": "bottom", @@ -66661,7 +62663,7 @@ } }, { - "id": 20923, + "id": 19782, "properties": { "facing": "north", "half": "bottom", @@ -66671,7 +62673,7 @@ } }, { - "id": 20924, + "id": 19783, "properties": { "facing": "north", "half": "bottom", @@ -66681,7 +62683,7 @@ } }, { - "id": 20925, + "id": 19784, "properties": { "facing": "north", "half": "bottom", @@ -66691,7 +62693,7 @@ } }, { - "id": 20926, + "id": 19785, "properties": { "facing": "north", "half": "bottom", @@ -66702,7 +62704,7 @@ }, { "default": true, - "id": 20927, + "id": 19786, "properties": { "facing": "north", "half": "bottom", @@ -66712,7 +62714,7 @@ } }, { - "id": 20928, + "id": 19787, "properties": { "facing": "south", "half": "top", @@ -66722,7 +62724,7 @@ } }, { - "id": 20929, + "id": 19788, "properties": { "facing": "south", "half": "top", @@ -66732,7 +62734,7 @@ } }, { - "id": 20930, + "id": 19789, "properties": { "facing": "south", "half": "top", @@ -66742,7 +62744,7 @@ } }, { - "id": 20931, + "id": 19790, "properties": { "facing": "south", "half": "top", @@ -66752,7 +62754,7 @@ } }, { - "id": 20932, + "id": 19791, "properties": { "facing": "south", "half": "top", @@ -66762,7 +62764,7 @@ } }, { - "id": 20933, + "id": 19792, "properties": { "facing": "south", "half": "top", @@ -66772,7 +62774,7 @@ } }, { - "id": 20934, + "id": 19793, "properties": { "facing": "south", "half": "top", @@ -66782,7 +62784,7 @@ } }, { - "id": 20935, + "id": 19794, "properties": { "facing": "south", "half": "top", @@ -66792,7 +62794,7 @@ } }, { - "id": 20936, + "id": 19795, "properties": { "facing": "south", "half": "bottom", @@ -66802,7 +62804,7 @@ } }, { - "id": 20937, + "id": 19796, "properties": { "facing": "south", "half": "bottom", @@ -66812,7 +62814,7 @@ } }, { - "id": 20938, + "id": 19797, "properties": { "facing": "south", "half": "bottom", @@ -66822,7 +62824,7 @@ } }, { - "id": 20939, + "id": 19798, "properties": { "facing": "south", "half": "bottom", @@ -66832,7 +62834,7 @@ } }, { - "id": 20940, + "id": 19799, "properties": { "facing": "south", "half": "bottom", @@ -66842,7 +62844,7 @@ } }, { - "id": 20941, + "id": 19800, "properties": { "facing": "south", "half": "bottom", @@ -66852,7 +62854,7 @@ } }, { - "id": 20942, + "id": 19801, "properties": { "facing": "south", "half": "bottom", @@ -66862,7 +62864,7 @@ } }, { - "id": 20943, + "id": 19802, "properties": { "facing": "south", "half": "bottom", @@ -66872,7 +62874,7 @@ } }, { - "id": 20944, + "id": 19803, "properties": { "facing": "west", "half": "top", @@ -66882,7 +62884,7 @@ } }, { - "id": 20945, + "id": 19804, "properties": { "facing": "west", "half": "top", @@ -66892,7 +62894,7 @@ } }, { - "id": 20946, + "id": 19805, "properties": { "facing": "west", "half": "top", @@ -66902,7 +62904,7 @@ } }, { - "id": 20947, + "id": 19806, "properties": { "facing": "west", "half": "top", @@ -66912,7 +62914,7 @@ } }, { - "id": 20948, + "id": 19807, "properties": { "facing": "west", "half": "top", @@ -66922,7 +62924,7 @@ } }, { - "id": 20949, + "id": 19808, "properties": { "facing": "west", "half": "top", @@ -66932,7 +62934,7 @@ } }, { - "id": 20950, + "id": 19809, "properties": { "facing": "west", "half": "top", @@ -66942,7 +62944,7 @@ } }, { - "id": 20951, + "id": 19810, "properties": { "facing": "west", "half": "top", @@ -66952,7 +62954,7 @@ } }, { - "id": 20952, + "id": 19811, "properties": { "facing": "west", "half": "bottom", @@ -66962,7 +62964,7 @@ } }, { - "id": 20953, + "id": 19812, "properties": { "facing": "west", "half": "bottom", @@ -66972,7 +62974,7 @@ } }, { - "id": 20954, + "id": 19813, "properties": { "facing": "west", "half": "bottom", @@ -66982,7 +62984,7 @@ } }, { - "id": 20955, + "id": 19814, "properties": { "facing": "west", "half": "bottom", @@ -66992,7 +62994,7 @@ } }, { - "id": 20956, + "id": 19815, "properties": { "facing": "west", "half": "bottom", @@ -67002,7 +63004,7 @@ } }, { - "id": 20957, + "id": 19816, "properties": { "facing": "west", "half": "bottom", @@ -67012,7 +63014,7 @@ } }, { - "id": 20958, + "id": 19817, "properties": { "facing": "west", "half": "bottom", @@ -67022,7 +63024,7 @@ } }, { - "id": 20959, + "id": 19818, "properties": { "facing": "west", "half": "bottom", @@ -67032,7 +63034,7 @@ } }, { - "id": 20960, + "id": 19819, "properties": { "facing": "east", "half": "top", @@ -67042,7 +63044,7 @@ } }, { - "id": 20961, + "id": 19820, "properties": { "facing": "east", "half": "top", @@ -67052,7 +63054,7 @@ } }, { - "id": 20962, + "id": 19821, "properties": { "facing": "east", "half": "top", @@ -67062,7 +63064,7 @@ } }, { - "id": 20963, + "id": 19822, "properties": { "facing": "east", "half": "top", @@ -67072,7 +63074,7 @@ } }, { - "id": 20964, + "id": 19823, "properties": { "facing": "east", "half": "top", @@ -67082,7 +63084,7 @@ } }, { - "id": 20965, + "id": 19824, "properties": { "facing": "east", "half": "top", @@ -67092,7 +63094,7 @@ } }, { - "id": 20966, + "id": 19825, "properties": { "facing": "east", "half": "top", @@ -67102,7 +63104,7 @@ } }, { - "id": 20967, + "id": 19826, "properties": { "facing": "east", "half": "top", @@ -67112,7 +63114,7 @@ } }, { - "id": 20968, + "id": 19827, "properties": { "facing": "east", "half": "bottom", @@ -67122,7 +63124,7 @@ } }, { - "id": 20969, + "id": 19828, "properties": { "facing": "east", "half": "bottom", @@ -67132,7 +63134,7 @@ } }, { - "id": 20970, + "id": 19829, "properties": { "facing": "east", "half": "bottom", @@ -67142,7 +63144,7 @@ } }, { - "id": 20971, + "id": 19830, "properties": { "facing": "east", "half": "bottom", @@ -67152,7 +63154,7 @@ } }, { - "id": 20972, + "id": 19831, "properties": { "facing": "east", "half": "bottom", @@ -67162,7 +63164,7 @@ } }, { - "id": 20973, + "id": 19832, "properties": { "facing": "east", "half": "bottom", @@ -67172,7 +63174,7 @@ } }, { - "id": 20974, + "id": 19833, "properties": { "facing": "east", "half": "bottom", @@ -67182,7 +63184,7 @@ } }, { - "id": 20975, + "id": 19834, "properties": { "facing": "east", "half": "bottom", @@ -67213,7 +63215,7 @@ }, "states": [ { - "id": 6546, + "id": 5778, "properties": { "facing": "north", "waterlogged": "true" @@ -67221,49 +63223,49 @@ }, { "default": true, - "id": 6547, + "id": 5779, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 6548, + "id": 5780, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 6549, + "id": 5781, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 6550, + "id": 5782, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 6551, + "id": 5783, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 6552, + "id": 5784, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 6553, + "id": 5785, "properties": { "facing": "east", "waterlogged": "false" @@ -67291,7 +63293,7 @@ }, "states": [ { - "id": 21504, + "id": 20363, "properties": { "facing": "north", "waterlogged": "true" @@ -67299,49 +63301,49 @@ }, { "default": true, - "id": 21505, + "id": 20364, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 21506, + "id": 20365, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 21507, + "id": 20366, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 21508, + "id": 20367, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 21509, + "id": 20368, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 21510, + "id": 20369, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 21511, + "id": 20370, "properties": { "facing": "east", "waterlogged": "false" @@ -67357,7 +63359,7 @@ "states": [ { "default": true, - "id": 21618 + "id": 20477 } ] }, @@ -67370,7 +63372,7 @@ "states": [ { "default": true, - "id": 25116 + "id": 23975 } ] }, @@ -67393,21 +63395,21 @@ }, "states": [ { - "id": 25463, + "id": 24322, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 25464, + "id": 24323, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 25465, + "id": 24324, "properties": { "type": "bottom", "waterlogged": "true" @@ -67415,21 +63417,21 @@ }, { "default": true, - "id": 25466, + "id": 24325, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 25467, + "id": 24326, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 25468, + "id": 24327, "properties": { "type": "double", "waterlogged": "false" @@ -67471,7 +63473,7 @@ }, "states": [ { - "id": 25365, + "id": 24224, "properties": { "facing": "north", "half": "top", @@ -67480,7 +63482,7 @@ } }, { - "id": 25366, + "id": 24225, "properties": { "facing": "north", "half": "top", @@ -67489,7 +63491,7 @@ } }, { - "id": 25367, + "id": 24226, "properties": { "facing": "north", "half": "top", @@ -67498,7 +63500,7 @@ } }, { - "id": 25368, + "id": 24227, "properties": { "facing": "north", "half": "top", @@ -67507,7 +63509,7 @@ } }, { - "id": 25369, + "id": 24228, "properties": { "facing": "north", "half": "top", @@ -67516,7 +63518,7 @@ } }, { - "id": 25370, + "id": 24229, "properties": { "facing": "north", "half": "top", @@ -67525,7 +63527,7 @@ } }, { - "id": 25371, + "id": 24230, "properties": { "facing": "north", "half": "top", @@ -67534,7 +63536,7 @@ } }, { - "id": 25372, + "id": 24231, "properties": { "facing": "north", "half": "top", @@ -67543,7 +63545,7 @@ } }, { - "id": 25373, + "id": 24232, "properties": { "facing": "north", "half": "top", @@ -67552,7 +63554,7 @@ } }, { - "id": 25374, + "id": 24233, "properties": { "facing": "north", "half": "top", @@ -67561,7 +63563,7 @@ } }, { - "id": 25375, + "id": 24234, "properties": { "facing": "north", "half": "bottom", @@ -67571,7 +63573,7 @@ }, { "default": true, - "id": 25376, + "id": 24235, "properties": { "facing": "north", "half": "bottom", @@ -67580,7 +63582,7 @@ } }, { - "id": 25377, + "id": 24236, "properties": { "facing": "north", "half": "bottom", @@ -67589,7 +63591,7 @@ } }, { - "id": 25378, + "id": 24237, "properties": { "facing": "north", "half": "bottom", @@ -67598,7 +63600,7 @@ } }, { - "id": 25379, + "id": 24238, "properties": { "facing": "north", "half": "bottom", @@ -67607,7 +63609,7 @@ } }, { - "id": 25380, + "id": 24239, "properties": { "facing": "north", "half": "bottom", @@ -67616,7 +63618,7 @@ } }, { - "id": 25381, + "id": 24240, "properties": { "facing": "north", "half": "bottom", @@ -67625,7 +63627,7 @@ } }, { - "id": 25382, + "id": 24241, "properties": { "facing": "north", "half": "bottom", @@ -67634,7 +63636,7 @@ } }, { - "id": 25383, + "id": 24242, "properties": { "facing": "north", "half": "bottom", @@ -67643,7 +63645,7 @@ } }, { - "id": 25384, + "id": 24243, "properties": { "facing": "north", "half": "bottom", @@ -67652,7 +63654,7 @@ } }, { - "id": 25385, + "id": 24244, "properties": { "facing": "south", "half": "top", @@ -67661,7 +63663,7 @@ } }, { - "id": 25386, + "id": 24245, "properties": { "facing": "south", "half": "top", @@ -67670,7 +63672,7 @@ } }, { - "id": 25387, + "id": 24246, "properties": { "facing": "south", "half": "top", @@ -67679,7 +63681,7 @@ } }, { - "id": 25388, + "id": 24247, "properties": { "facing": "south", "half": "top", @@ -67688,7 +63690,7 @@ } }, { - "id": 25389, + "id": 24248, "properties": { "facing": "south", "half": "top", @@ -67697,7 +63699,7 @@ } }, { - "id": 25390, + "id": 24249, "properties": { "facing": "south", "half": "top", @@ -67706,7 +63708,7 @@ } }, { - "id": 25391, + "id": 24250, "properties": { "facing": "south", "half": "top", @@ -67715,7 +63717,7 @@ } }, { - "id": 25392, + "id": 24251, "properties": { "facing": "south", "half": "top", @@ -67724,7 +63726,7 @@ } }, { - "id": 25393, + "id": 24252, "properties": { "facing": "south", "half": "top", @@ -67733,7 +63735,7 @@ } }, { - "id": 25394, + "id": 24253, "properties": { "facing": "south", "half": "top", @@ -67742,7 +63744,7 @@ } }, { - "id": 25395, + "id": 24254, "properties": { "facing": "south", "half": "bottom", @@ -67751,7 +63753,7 @@ } }, { - "id": 25396, + "id": 24255, "properties": { "facing": "south", "half": "bottom", @@ -67760,7 +63762,7 @@ } }, { - "id": 25397, + "id": 24256, "properties": { "facing": "south", "half": "bottom", @@ -67769,7 +63771,7 @@ } }, { - "id": 25398, + "id": 24257, "properties": { "facing": "south", "half": "bottom", @@ -67778,7 +63780,7 @@ } }, { - "id": 25399, + "id": 24258, "properties": { "facing": "south", "half": "bottom", @@ -67787,7 +63789,7 @@ } }, { - "id": 25400, + "id": 24259, "properties": { "facing": "south", "half": "bottom", @@ -67796,7 +63798,7 @@ } }, { - "id": 25401, + "id": 24260, "properties": { "facing": "south", "half": "bottom", @@ -67805,7 +63807,7 @@ } }, { - "id": 25402, + "id": 24261, "properties": { "facing": "south", "half": "bottom", @@ -67814,7 +63816,7 @@ } }, { - "id": 25403, + "id": 24262, "properties": { "facing": "south", "half": "bottom", @@ -67823,7 +63825,7 @@ } }, { - "id": 25404, + "id": 24263, "properties": { "facing": "south", "half": "bottom", @@ -67832,7 +63834,7 @@ } }, { - "id": 25405, + "id": 24264, "properties": { "facing": "west", "half": "top", @@ -67841,7 +63843,7 @@ } }, { - "id": 25406, + "id": 24265, "properties": { "facing": "west", "half": "top", @@ -67850,7 +63852,7 @@ } }, { - "id": 25407, + "id": 24266, "properties": { "facing": "west", "half": "top", @@ -67859,7 +63861,7 @@ } }, { - "id": 25408, + "id": 24267, "properties": { "facing": "west", "half": "top", @@ -67868,7 +63870,7 @@ } }, { - "id": 25409, + "id": 24268, "properties": { "facing": "west", "half": "top", @@ -67877,7 +63879,7 @@ } }, { - "id": 25410, + "id": 24269, "properties": { "facing": "west", "half": "top", @@ -67886,7 +63888,7 @@ } }, { - "id": 25411, + "id": 24270, "properties": { "facing": "west", "half": "top", @@ -67895,7 +63897,7 @@ } }, { - "id": 25412, + "id": 24271, "properties": { "facing": "west", "half": "top", @@ -67904,7 +63906,7 @@ } }, { - "id": 25413, + "id": 24272, "properties": { "facing": "west", "half": "top", @@ -67913,7 +63915,7 @@ } }, { - "id": 25414, + "id": 24273, "properties": { "facing": "west", "half": "top", @@ -67922,7 +63924,7 @@ } }, { - "id": 25415, + "id": 24274, "properties": { "facing": "west", "half": "bottom", @@ -67931,7 +63933,7 @@ } }, { - "id": 25416, + "id": 24275, "properties": { "facing": "west", "half": "bottom", @@ -67940,7 +63942,7 @@ } }, { - "id": 25417, + "id": 24276, "properties": { "facing": "west", "half": "bottom", @@ -67949,7 +63951,7 @@ } }, { - "id": 25418, + "id": 24277, "properties": { "facing": "west", "half": "bottom", @@ -67958,7 +63960,7 @@ } }, { - "id": 25419, + "id": 24278, "properties": { "facing": "west", "half": "bottom", @@ -67967,7 +63969,7 @@ } }, { - "id": 25420, + "id": 24279, "properties": { "facing": "west", "half": "bottom", @@ -67976,7 +63978,7 @@ } }, { - "id": 25421, + "id": 24280, "properties": { "facing": "west", "half": "bottom", @@ -67985,7 +63987,7 @@ } }, { - "id": 25422, + "id": 24281, "properties": { "facing": "west", "half": "bottom", @@ -67994,7 +63996,7 @@ } }, { - "id": 25423, + "id": 24282, "properties": { "facing": "west", "half": "bottom", @@ -68003,7 +64005,7 @@ } }, { - "id": 25424, + "id": 24283, "properties": { "facing": "west", "half": "bottom", @@ -68012,7 +64014,7 @@ } }, { - "id": 25425, + "id": 24284, "properties": { "facing": "east", "half": "top", @@ -68021,7 +64023,7 @@ } }, { - "id": 25426, + "id": 24285, "properties": { "facing": "east", "half": "top", @@ -68030,7 +64032,7 @@ } }, { - "id": 25427, + "id": 24286, "properties": { "facing": "east", "half": "top", @@ -68039,7 +64041,7 @@ } }, { - "id": 25428, + "id": 24287, "properties": { "facing": "east", "half": "top", @@ -68048,7 +64050,7 @@ } }, { - "id": 25429, + "id": 24288, "properties": { "facing": "east", "half": "top", @@ -68057,7 +64059,7 @@ } }, { - "id": 25430, + "id": 24289, "properties": { "facing": "east", "half": "top", @@ -68066,7 +64068,7 @@ } }, { - "id": 25431, + "id": 24290, "properties": { "facing": "east", "half": "top", @@ -68075,7 +64077,7 @@ } }, { - "id": 25432, + "id": 24291, "properties": { "facing": "east", "half": "top", @@ -68084,7 +64086,7 @@ } }, { - "id": 25433, + "id": 24292, "properties": { "facing": "east", "half": "top", @@ -68093,7 +64095,7 @@ } }, { - "id": 25434, + "id": 24293, "properties": { "facing": "east", "half": "top", @@ -68102,7 +64104,7 @@ } }, { - "id": 25435, + "id": 24294, "properties": { "facing": "east", "half": "bottom", @@ -68111,7 +64113,7 @@ } }, { - "id": 25436, + "id": 24295, "properties": { "facing": "east", "half": "bottom", @@ -68120,7 +64122,7 @@ } }, { - "id": 25437, + "id": 24296, "properties": { "facing": "east", "half": "bottom", @@ -68129,7 +64131,7 @@ } }, { - "id": 25438, + "id": 24297, "properties": { "facing": "east", "half": "bottom", @@ -68138,7 +64140,7 @@ } }, { - "id": 25439, + "id": 24298, "properties": { "facing": "east", "half": "bottom", @@ -68147,7 +64149,7 @@ } }, { - "id": 25440, + "id": 24299, "properties": { "facing": "east", "half": "bottom", @@ -68156,7 +64158,7 @@ } }, { - "id": 25441, + "id": 24300, "properties": { "facing": "east", "half": "bottom", @@ -68165,7 +64167,7 @@ } }, { - "id": 25442, + "id": 24301, "properties": { "facing": "east", "half": "bottom", @@ -68174,7 +64176,7 @@ } }, { - "id": 25443, + "id": 24302, "properties": { "facing": "east", "half": "bottom", @@ -68183,7 +64185,7 @@ } }, { - "id": 25444, + "id": 24303, "properties": { "facing": "east", "half": "bottom", @@ -68201,7 +64203,7 @@ "states": [ { "default": true, - "id": 13047 + "id": 11970 } ] }, @@ -68223,21 +64225,21 @@ }, "states": [ { - "id": 13266, + "id": 12189, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 13267, + "id": 12190, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 13268, + "id": 12191, "properties": { "type": "bottom", "waterlogged": "true" @@ -68245,21 +64247,21 @@ }, { "default": true, - "id": 13269, + "id": 12192, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 13270, + "id": 12193, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 13271, + "id": 12194, "properties": { "type": "double", "waterlogged": "false" @@ -68297,21 +64299,21 @@ }, "states": [ { - "id": 13212, + "id": 12135, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 13213, + "id": 12136, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 13214, + "id": 12137, "properties": { "type": "bottom", "waterlogged": "true" @@ -68319,21 +64321,21 @@ }, { "default": true, - "id": 13215, + "id": 12138, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 13216, + "id": 12139, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 13217, + "id": 12140, "properties": { "type": "double", "waterlogged": "false" @@ -68370,97 +64372,97 @@ "states": [ { "default": true, - "id": 12869, + "id": 11792, "properties": { "rotation": "0" } }, { - "id": 12870, + "id": 11793, "properties": { "rotation": "1" } }, { - "id": 12871, + "id": 11794, "properties": { "rotation": "2" } }, { - "id": 12872, + "id": 11795, "properties": { "rotation": "3" } }, { - "id": 12873, + "id": 11796, "properties": { "rotation": "4" } }, { - "id": 12874, + "id": 11797, "properties": { "rotation": "5" } }, { - "id": 12875, + "id": 11798, "properties": { "rotation": "6" } }, { - "id": 12876, + "id": 11799, "properties": { "rotation": "7" } }, { - "id": 12877, + "id": 11800, "properties": { "rotation": "8" } }, { - "id": 12878, + "id": 11801, "properties": { "rotation": "9" } }, { - "id": 12879, + "id": 11802, "properties": { "rotation": "10" } }, { - "id": 12880, + "id": 11803, "properties": { "rotation": "11" } }, { - "id": 12881, + "id": 11804, "properties": { "rotation": "12" } }, { - "id": 12882, + "id": 11805, "properties": { "rotation": "13" } }, { - "id": 12883, + "id": 11806, "properties": { "rotation": "14" } }, { - "id": 12884, + "id": 11807, "properties": { "rotation": "15" } @@ -68644,7 +64646,7 @@ }, "states": [ { - "id": 23054, + "id": 21913, "properties": { "candles": "1", "lit": "true", @@ -68652,7 +64654,7 @@ } }, { - "id": 23055, + "id": 21914, "properties": { "candles": "1", "lit": "true", @@ -68660,7 +64662,7 @@ } }, { - "id": 23056, + "id": 21915, "properties": { "candles": "1", "lit": "false", @@ -68669,7 +64671,7 @@ }, { "default": true, - "id": 23057, + "id": 21916, "properties": { "candles": "1", "lit": "false", @@ -68677,7 +64679,7 @@ } }, { - "id": 23058, + "id": 21917, "properties": { "candles": "2", "lit": "true", @@ -68685,7 +64687,7 @@ } }, { - "id": 23059, + "id": 21918, "properties": { "candles": "2", "lit": "true", @@ -68693,7 +64695,7 @@ } }, { - "id": 23060, + "id": 21919, "properties": { "candles": "2", "lit": "false", @@ -68701,7 +64703,7 @@ } }, { - "id": 23061, + "id": 21920, "properties": { "candles": "2", "lit": "false", @@ -68709,7 +64711,7 @@ } }, { - "id": 23062, + "id": 21921, "properties": { "candles": "3", "lit": "true", @@ -68717,7 +64719,7 @@ } }, { - "id": 23063, + "id": 21922, "properties": { "candles": "3", "lit": "true", @@ -68725,7 +64727,7 @@ } }, { - "id": 23064, + "id": 21923, "properties": { "candles": "3", "lit": "false", @@ -68733,7 +64735,7 @@ } }, { - "id": 23065, + "id": 21924, "properties": { "candles": "3", "lit": "false", @@ -68741,7 +64743,7 @@ } }, { - "id": 23066, + "id": 21925, "properties": { "candles": "4", "lit": "true", @@ -68749,7 +64751,7 @@ } }, { - "id": 23067, + "id": 21926, "properties": { "candles": "4", "lit": "true", @@ -68757,7 +64759,7 @@ } }, { - "id": 23068, + "id": 21927, "properties": { "candles": "4", "lit": "false", @@ -68765,7 +64767,7 @@ } }, { - "id": 23069, + "id": 21928, "properties": { "candles": "4", "lit": "false", @@ -68788,14 +64790,14 @@ }, "states": [ { - "id": 23186, + "id": 22045, "properties": { "lit": "true" } }, { "default": true, - "id": 23187, + "id": 22046, "properties": { "lit": "false" } @@ -68811,7 +64813,7 @@ "states": [ { "default": true, - "id": 12703 + "id": 11626 } ] }, @@ -68823,7 +64825,7 @@ "states": [ { "default": true, - "id": 14837 + "id": 13760 } ] }, @@ -68836,7 +64838,7 @@ "states": [ { "default": true, - "id": 14853 + "id": 13776 } ] }, @@ -68856,25 +64858,25 @@ "states": [ { "default": true, - "id": 14800, + "id": 13723, "properties": { "facing": "north" } }, { - "id": 14801, + "id": 13724, "properties": { "facing": "south" } }, { - "id": 14802, + "id": 13725, "properties": { "facing": "west" } }, { - "id": 14803, + "id": 13726, "properties": { "facing": "east" } @@ -68899,38 +64901,38 @@ }, "states": [ { - "id": 14722, + "id": 13645, "properties": { "facing": "north" } }, { - "id": 14723, + "id": 13646, "properties": { "facing": "east" } }, { - "id": 14724, + "id": 13647, "properties": { "facing": "south" } }, { - "id": 14725, + "id": 13648, "properties": { "facing": "west" } }, { "default": true, - "id": 14726, + "id": 13649, "properties": { "facing": "up" } }, { - "id": 14727, + "id": 13650, "properties": { "facing": "down" } @@ -68946,7 +64948,7 @@ "states": [ { "default": true, - "id": 6906 + "id": 6133 } ] }, @@ -68980,7 +64982,7 @@ }, "states": [ { - "id": 11546, + "id": 10469, "properties": { "east": "true", "north": "true", @@ -68990,7 +64992,7 @@ } }, { - "id": 11547, + "id": 10470, "properties": { "east": "true", "north": "true", @@ -69000,7 +65002,7 @@ } }, { - "id": 11548, + "id": 10471, "properties": { "east": "true", "north": "true", @@ -69010,7 +65012,7 @@ } }, { - "id": 11549, + "id": 10472, "properties": { "east": "true", "north": "true", @@ -69020,7 +65022,7 @@ } }, { - "id": 11550, + "id": 10473, "properties": { "east": "true", "north": "true", @@ -69030,7 +65032,7 @@ } }, { - "id": 11551, + "id": 10474, "properties": { "east": "true", "north": "true", @@ -69040,7 +65042,7 @@ } }, { - "id": 11552, + "id": 10475, "properties": { "east": "true", "north": "true", @@ -69050,7 +65052,7 @@ } }, { - "id": 11553, + "id": 10476, "properties": { "east": "true", "north": "true", @@ -69060,7 +65062,7 @@ } }, { - "id": 11554, + "id": 10477, "properties": { "east": "true", "north": "false", @@ -69070,7 +65072,7 @@ } }, { - "id": 11555, + "id": 10478, "properties": { "east": "true", "north": "false", @@ -69080,7 +65082,7 @@ } }, { - "id": 11556, + "id": 10479, "properties": { "east": "true", "north": "false", @@ -69090,7 +65092,7 @@ } }, { - "id": 11557, + "id": 10480, "properties": { "east": "true", "north": "false", @@ -69100,7 +65102,7 @@ } }, { - "id": 11558, + "id": 10481, "properties": { "east": "true", "north": "false", @@ -69110,7 +65112,7 @@ } }, { - "id": 11559, + "id": 10482, "properties": { "east": "true", "north": "false", @@ -69120,7 +65122,7 @@ } }, { - "id": 11560, + "id": 10483, "properties": { "east": "true", "north": "false", @@ -69130,7 +65132,7 @@ } }, { - "id": 11561, + "id": 10484, "properties": { "east": "true", "north": "false", @@ -69140,7 +65142,7 @@ } }, { - "id": 11562, + "id": 10485, "properties": { "east": "false", "north": "true", @@ -69150,7 +65152,7 @@ } }, { - "id": 11563, + "id": 10486, "properties": { "east": "false", "north": "true", @@ -69160,7 +65162,7 @@ } }, { - "id": 11564, + "id": 10487, "properties": { "east": "false", "north": "true", @@ -69170,7 +65172,7 @@ } }, { - "id": 11565, + "id": 10488, "properties": { "east": "false", "north": "true", @@ -69180,7 +65182,7 @@ } }, { - "id": 11566, + "id": 10489, "properties": { "east": "false", "north": "true", @@ -69190,7 +65192,7 @@ } }, { - "id": 11567, + "id": 10490, "properties": { "east": "false", "north": "true", @@ -69200,7 +65202,7 @@ } }, { - "id": 11568, + "id": 10491, "properties": { "east": "false", "north": "true", @@ -69210,7 +65212,7 @@ } }, { - "id": 11569, + "id": 10492, "properties": { "east": "false", "north": "true", @@ -69220,7 +65222,7 @@ } }, { - "id": 11570, + "id": 10493, "properties": { "east": "false", "north": "false", @@ -69230,7 +65232,7 @@ } }, { - "id": 11571, + "id": 10494, "properties": { "east": "false", "north": "false", @@ -69240,7 +65242,7 @@ } }, { - "id": 11572, + "id": 10495, "properties": { "east": "false", "north": "false", @@ -69250,7 +65252,7 @@ } }, { - "id": 11573, + "id": 10496, "properties": { "east": "false", "north": "false", @@ -69260,7 +65262,7 @@ } }, { - "id": 11574, + "id": 10497, "properties": { "east": "false", "north": "false", @@ -69270,7 +65272,7 @@ } }, { - "id": 11575, + "id": 10498, "properties": { "east": "false", "north": "false", @@ -69280,7 +65282,7 @@ } }, { - "id": 11576, + "id": 10499, "properties": { "east": "false", "north": "false", @@ -69291,7 +65293,7 @@ }, { "default": true, - "id": 11577, + "id": 10500, "properties": { "east": "false", "north": "false", @@ -69304,13 +65306,13 @@ }, "minecraft:cyan_terracotta": { "definition": { - "type": "minecraft:block", + "type": "minecraft:terracotta", "properties": {} }, "states": [ { "default": true, - "id": 11251 + "id": 10174 } ] }, @@ -69331,25 +65333,25 @@ "states": [ { "default": true, - "id": 13017, + "id": 11940, "properties": { "facing": "north" } }, { - "id": 13018, + "id": 11941, "properties": { "facing": "south" } }, { - "id": 13019, + "id": 11942, "properties": { "facing": "west" } }, { - "id": 13020, + "id": 11943, "properties": { "facing": "east" } @@ -69384,25 +65386,25 @@ "states": [ { "default": true, - "id": 11001, + "id": 9924, "properties": { "facing": "north" } }, { - "id": 11002, + "id": 9925, "properties": { "facing": "south" } }, { - "id": 11003, + "id": 9926, "properties": { "facing": "west" } }, { - "id": 11004, + "id": 9927, "properties": { "facing": "east" } @@ -69453,7 +65455,7 @@ }, "states": [ { - "id": 10617, + "id": 9540, "properties": { "face": "floor", "facing": "north", @@ -69461,7 +65463,7 @@ } }, { - "id": 10618, + "id": 9541, "properties": { "face": "floor", "facing": "north", @@ -69469,7 +65471,7 @@ } }, { - "id": 10619, + "id": 9542, "properties": { "face": "floor", "facing": "south", @@ -69477,7 +65479,7 @@ } }, { - "id": 10620, + "id": 9543, "properties": { "face": "floor", "facing": "south", @@ -69485,7 +65487,7 @@ } }, { - "id": 10621, + "id": 9544, "properties": { "face": "floor", "facing": "west", @@ -69493,7 +65495,7 @@ } }, { - "id": 10622, + "id": 9545, "properties": { "face": "floor", "facing": "west", @@ -69501,7 +65503,7 @@ } }, { - "id": 10623, + "id": 9546, "properties": { "face": "floor", "facing": "east", @@ -69509,7 +65511,7 @@ } }, { - "id": 10624, + "id": 9547, "properties": { "face": "floor", "facing": "east", @@ -69517,7 +65519,7 @@ } }, { - "id": 10625, + "id": 9548, "properties": { "face": "wall", "facing": "north", @@ -69526,7 +65528,7 @@ }, { "default": true, - "id": 10626, + "id": 9549, "properties": { "face": "wall", "facing": "north", @@ -69534,7 +65536,7 @@ } }, { - "id": 10627, + "id": 9550, "properties": { "face": "wall", "facing": "south", @@ -69542,7 +65544,7 @@ } }, { - "id": 10628, + "id": 9551, "properties": { "face": "wall", "facing": "south", @@ -69550,7 +65552,7 @@ } }, { - "id": 10629, + "id": 9552, "properties": { "face": "wall", "facing": "west", @@ -69558,7 +65560,7 @@ } }, { - "id": 10630, + "id": 9553, "properties": { "face": "wall", "facing": "west", @@ -69566,7 +65568,7 @@ } }, { - "id": 10631, + "id": 9554, "properties": { "face": "wall", "facing": "east", @@ -69574,7 +65576,7 @@ } }, { - "id": 10632, + "id": 9555, "properties": { "face": "wall", "facing": "east", @@ -69582,7 +65584,7 @@ } }, { - "id": 10633, + "id": 9556, "properties": { "face": "ceiling", "facing": "north", @@ -69590,7 +65592,7 @@ } }, { - "id": 10634, + "id": 9557, "properties": { "face": "ceiling", "facing": "north", @@ -69598,7 +65600,7 @@ } }, { - "id": 10635, + "id": 9558, "properties": { "face": "ceiling", "facing": "south", @@ -69606,7 +65608,7 @@ } }, { - "id": 10636, + "id": 9559, "properties": { "face": "ceiling", "facing": "south", @@ -69614,7 +65616,7 @@ } }, { - "id": 10637, + "id": 9560, "properties": { "face": "ceiling", "facing": "west", @@ -69622,7 +65624,7 @@ } }, { - "id": 10638, + "id": 9561, "properties": { "face": "ceiling", "facing": "west", @@ -69630,7 +65632,7 @@ } }, { - "id": 10639, + "id": 9562, "properties": { "face": "ceiling", "facing": "east", @@ -69638,7 +65640,7 @@ } }, { - "id": 10640, + "id": 9563, "properties": { "face": "ceiling", "facing": "east", @@ -69679,7 +65681,7 @@ }, "states": [ { - "id": 14178, + "id": 13101, "properties": { "facing": "north", "half": "upper", @@ -69689,7 +65691,7 @@ } }, { - "id": 14179, + "id": 13102, "properties": { "facing": "north", "half": "upper", @@ -69699,7 +65701,7 @@ } }, { - "id": 14180, + "id": 13103, "properties": { "facing": "north", "half": "upper", @@ -69709,7 +65711,7 @@ } }, { - "id": 14181, + "id": 13104, "properties": { "facing": "north", "half": "upper", @@ -69719,7 +65721,7 @@ } }, { - "id": 14182, + "id": 13105, "properties": { "facing": "north", "half": "upper", @@ -69729,7 +65731,7 @@ } }, { - "id": 14183, + "id": 13106, "properties": { "facing": "north", "half": "upper", @@ -69739,7 +65741,7 @@ } }, { - "id": 14184, + "id": 13107, "properties": { "facing": "north", "half": "upper", @@ -69749,7 +65751,7 @@ } }, { - "id": 14185, + "id": 13108, "properties": { "facing": "north", "half": "upper", @@ -69759,7 +65761,7 @@ } }, { - "id": 14186, + "id": 13109, "properties": { "facing": "north", "half": "lower", @@ -69769,7 +65771,7 @@ } }, { - "id": 14187, + "id": 13110, "properties": { "facing": "north", "half": "lower", @@ -69779,7 +65781,7 @@ } }, { - "id": 14188, + "id": 13111, "properties": { "facing": "north", "half": "lower", @@ -69790,7 +65792,7 @@ }, { "default": true, - "id": 14189, + "id": 13112, "properties": { "facing": "north", "half": "lower", @@ -69800,7 +65802,7 @@ } }, { - "id": 14190, + "id": 13113, "properties": { "facing": "north", "half": "lower", @@ -69810,7 +65812,7 @@ } }, { - "id": 14191, + "id": 13114, "properties": { "facing": "north", "half": "lower", @@ -69820,7 +65822,7 @@ } }, { - "id": 14192, + "id": 13115, "properties": { "facing": "north", "half": "lower", @@ -69830,7 +65832,7 @@ } }, { - "id": 14193, + "id": 13116, "properties": { "facing": "north", "half": "lower", @@ -69840,7 +65842,7 @@ } }, { - "id": 14194, + "id": 13117, "properties": { "facing": "south", "half": "upper", @@ -69850,7 +65852,7 @@ } }, { - "id": 14195, + "id": 13118, "properties": { "facing": "south", "half": "upper", @@ -69860,7 +65862,7 @@ } }, { - "id": 14196, + "id": 13119, "properties": { "facing": "south", "half": "upper", @@ -69870,7 +65872,7 @@ } }, { - "id": 14197, + "id": 13120, "properties": { "facing": "south", "half": "upper", @@ -69880,7 +65882,7 @@ } }, { - "id": 14198, + "id": 13121, "properties": { "facing": "south", "half": "upper", @@ -69890,7 +65892,7 @@ } }, { - "id": 14199, + "id": 13122, "properties": { "facing": "south", "half": "upper", @@ -69900,7 +65902,7 @@ } }, { - "id": 14200, + "id": 13123, "properties": { "facing": "south", "half": "upper", @@ -69910,7 +65912,7 @@ } }, { - "id": 14201, + "id": 13124, "properties": { "facing": "south", "half": "upper", @@ -69920,7 +65922,7 @@ } }, { - "id": 14202, + "id": 13125, "properties": { "facing": "south", "half": "lower", @@ -69930,7 +65932,7 @@ } }, { - "id": 14203, + "id": 13126, "properties": { "facing": "south", "half": "lower", @@ -69940,7 +65942,7 @@ } }, { - "id": 14204, + "id": 13127, "properties": { "facing": "south", "half": "lower", @@ -69950,7 +65952,7 @@ } }, { - "id": 14205, + "id": 13128, "properties": { "facing": "south", "half": "lower", @@ -69960,7 +65962,7 @@ } }, { - "id": 14206, + "id": 13129, "properties": { "facing": "south", "half": "lower", @@ -69970,7 +65972,7 @@ } }, { - "id": 14207, + "id": 13130, "properties": { "facing": "south", "half": "lower", @@ -69980,7 +65982,7 @@ } }, { - "id": 14208, + "id": 13131, "properties": { "facing": "south", "half": "lower", @@ -69990,7 +65992,7 @@ } }, { - "id": 14209, + "id": 13132, "properties": { "facing": "south", "half": "lower", @@ -70000,7 +66002,7 @@ } }, { - "id": 14210, + "id": 13133, "properties": { "facing": "west", "half": "upper", @@ -70010,7 +66012,7 @@ } }, { - "id": 14211, + "id": 13134, "properties": { "facing": "west", "half": "upper", @@ -70020,7 +66022,7 @@ } }, { - "id": 14212, + "id": 13135, "properties": { "facing": "west", "half": "upper", @@ -70030,7 +66032,7 @@ } }, { - "id": 14213, + "id": 13136, "properties": { "facing": "west", "half": "upper", @@ -70040,7 +66042,7 @@ } }, { - "id": 14214, + "id": 13137, "properties": { "facing": "west", "half": "upper", @@ -70050,7 +66052,7 @@ } }, { - "id": 14215, + "id": 13138, "properties": { "facing": "west", "half": "upper", @@ -70060,7 +66062,7 @@ } }, { - "id": 14216, + "id": 13139, "properties": { "facing": "west", "half": "upper", @@ -70070,7 +66072,7 @@ } }, { - "id": 14217, + "id": 13140, "properties": { "facing": "west", "half": "upper", @@ -70080,7 +66082,7 @@ } }, { - "id": 14218, + "id": 13141, "properties": { "facing": "west", "half": "lower", @@ -70090,7 +66092,7 @@ } }, { - "id": 14219, + "id": 13142, "properties": { "facing": "west", "half": "lower", @@ -70100,7 +66102,7 @@ } }, { - "id": 14220, + "id": 13143, "properties": { "facing": "west", "half": "lower", @@ -70110,7 +66112,7 @@ } }, { - "id": 14221, + "id": 13144, "properties": { "facing": "west", "half": "lower", @@ -70120,7 +66122,7 @@ } }, { - "id": 14222, + "id": 13145, "properties": { "facing": "west", "half": "lower", @@ -70130,7 +66132,7 @@ } }, { - "id": 14223, + "id": 13146, "properties": { "facing": "west", "half": "lower", @@ -70140,7 +66142,7 @@ } }, { - "id": 14224, + "id": 13147, "properties": { "facing": "west", "half": "lower", @@ -70150,7 +66152,7 @@ } }, { - "id": 14225, + "id": 13148, "properties": { "facing": "west", "half": "lower", @@ -70160,7 +66162,7 @@ } }, { - "id": 14226, + "id": 13149, "properties": { "facing": "east", "half": "upper", @@ -70170,7 +66172,7 @@ } }, { - "id": 14227, + "id": 13150, "properties": { "facing": "east", "half": "upper", @@ -70180,7 +66182,7 @@ } }, { - "id": 14228, + "id": 13151, "properties": { "facing": "east", "half": "upper", @@ -70190,7 +66192,7 @@ } }, { - "id": 14229, + "id": 13152, "properties": { "facing": "east", "half": "upper", @@ -70200,7 +66202,7 @@ } }, { - "id": 14230, + "id": 13153, "properties": { "facing": "east", "half": "upper", @@ -70210,7 +66212,7 @@ } }, { - "id": 14231, + "id": 13154, "properties": { "facing": "east", "half": "upper", @@ -70220,7 +66222,7 @@ } }, { - "id": 14232, + "id": 13155, "properties": { "facing": "east", "half": "upper", @@ -70230,7 +66232,7 @@ } }, { - "id": 14233, + "id": 13156, "properties": { "facing": "east", "half": "upper", @@ -70240,7 +66242,7 @@ } }, { - "id": 14234, + "id": 13157, "properties": { "facing": "east", "half": "lower", @@ -70250,7 +66252,7 @@ } }, { - "id": 14235, + "id": 13158, "properties": { "facing": "east", "half": "lower", @@ -70260,7 +66262,7 @@ } }, { - "id": 14236, + "id": 13159, "properties": { "facing": "east", "half": "lower", @@ -70270,7 +66272,7 @@ } }, { - "id": 14237, + "id": 13160, "properties": { "facing": "east", "half": "lower", @@ -70280,7 +66282,7 @@ } }, { - "id": 14238, + "id": 13161, "properties": { "facing": "east", "half": "lower", @@ -70290,7 +66292,7 @@ } }, { - "id": 14239, + "id": 13162, "properties": { "facing": "east", "half": "lower", @@ -70300,7 +66302,7 @@ } }, { - "id": 14240, + "id": 13163, "properties": { "facing": "east", "half": "lower", @@ -70310,7 +66312,7 @@ } }, { - "id": 14241, + "id": 13164, "properties": { "facing": "east", "half": "lower", @@ -70350,7 +66352,7 @@ }, "states": [ { - "id": 13730, + "id": 12653, "properties": { "east": "true", "north": "true", @@ -70360,7 +66362,7 @@ } }, { - "id": 13731, + "id": 12654, "properties": { "east": "true", "north": "true", @@ -70370,7 +66372,7 @@ } }, { - "id": 13732, + "id": 12655, "properties": { "east": "true", "north": "true", @@ -70380,7 +66382,7 @@ } }, { - "id": 13733, + "id": 12656, "properties": { "east": "true", "north": "true", @@ -70390,7 +66392,7 @@ } }, { - "id": 13734, + "id": 12657, "properties": { "east": "true", "north": "true", @@ -70400,7 +66402,7 @@ } }, { - "id": 13735, + "id": 12658, "properties": { "east": "true", "north": "true", @@ -70410,7 +66412,7 @@ } }, { - "id": 13736, + "id": 12659, "properties": { "east": "true", "north": "true", @@ -70420,7 +66422,7 @@ } }, { - "id": 13737, + "id": 12660, "properties": { "east": "true", "north": "true", @@ -70430,7 +66432,7 @@ } }, { - "id": 13738, + "id": 12661, "properties": { "east": "true", "north": "false", @@ -70440,7 +66442,7 @@ } }, { - "id": 13739, + "id": 12662, "properties": { "east": "true", "north": "false", @@ -70450,7 +66452,7 @@ } }, { - "id": 13740, + "id": 12663, "properties": { "east": "true", "north": "false", @@ -70460,7 +66462,7 @@ } }, { - "id": 13741, + "id": 12664, "properties": { "east": "true", "north": "false", @@ -70470,7 +66472,7 @@ } }, { - "id": 13742, + "id": 12665, "properties": { "east": "true", "north": "false", @@ -70480,7 +66482,7 @@ } }, { - "id": 13743, + "id": 12666, "properties": { "east": "true", "north": "false", @@ -70490,7 +66492,7 @@ } }, { - "id": 13744, + "id": 12667, "properties": { "east": "true", "north": "false", @@ -70500,7 +66502,7 @@ } }, { - "id": 13745, + "id": 12668, "properties": { "east": "true", "north": "false", @@ -70510,7 +66512,7 @@ } }, { - "id": 13746, + "id": 12669, "properties": { "east": "false", "north": "true", @@ -70520,7 +66522,7 @@ } }, { - "id": 13747, + "id": 12670, "properties": { "east": "false", "north": "true", @@ -70530,7 +66532,7 @@ } }, { - "id": 13748, + "id": 12671, "properties": { "east": "false", "north": "true", @@ -70540,7 +66542,7 @@ } }, { - "id": 13749, + "id": 12672, "properties": { "east": "false", "north": "true", @@ -70550,7 +66552,7 @@ } }, { - "id": 13750, + "id": 12673, "properties": { "east": "false", "north": "true", @@ -70560,7 +66562,7 @@ } }, { - "id": 13751, + "id": 12674, "properties": { "east": "false", "north": "true", @@ -70570,7 +66572,7 @@ } }, { - "id": 13752, + "id": 12675, "properties": { "east": "false", "north": "true", @@ -70580,7 +66582,7 @@ } }, { - "id": 13753, + "id": 12676, "properties": { "east": "false", "north": "true", @@ -70590,7 +66592,7 @@ } }, { - "id": 13754, + "id": 12677, "properties": { "east": "false", "north": "false", @@ -70600,7 +66602,7 @@ } }, { - "id": 13755, + "id": 12678, "properties": { "east": "false", "north": "false", @@ -70610,7 +66612,7 @@ } }, { - "id": 13756, + "id": 12679, "properties": { "east": "false", "north": "false", @@ -70620,7 +66622,7 @@ } }, { - "id": 13757, + "id": 12680, "properties": { "east": "false", "north": "false", @@ -70630,7 +66632,7 @@ } }, { - "id": 13758, + "id": 12681, "properties": { "east": "false", "north": "false", @@ -70640,7 +66642,7 @@ } }, { - "id": 13759, + "id": 12682, "properties": { "east": "false", "north": "false", @@ -70650,7 +66652,7 @@ } }, { - "id": 13760, + "id": 12683, "properties": { "east": "false", "north": "false", @@ -70661,7 +66663,7 @@ }, { "default": true, - "id": 13761, + "id": 12684, "properties": { "east": "false", "north": "false", @@ -70700,7 +66702,7 @@ }, "states": [ { - "id": 13442, + "id": 12365, "properties": { "facing": "north", "in_wall": "true", @@ -70709,7 +66711,7 @@ } }, { - "id": 13443, + "id": 12366, "properties": { "facing": "north", "in_wall": "true", @@ -70718,7 +66720,7 @@ } }, { - "id": 13444, + "id": 12367, "properties": { "facing": "north", "in_wall": "true", @@ -70727,7 +66729,7 @@ } }, { - "id": 13445, + "id": 12368, "properties": { "facing": "north", "in_wall": "true", @@ -70736,7 +66738,7 @@ } }, { - "id": 13446, + "id": 12369, "properties": { "facing": "north", "in_wall": "false", @@ -70745,7 +66747,7 @@ } }, { - "id": 13447, + "id": 12370, "properties": { "facing": "north", "in_wall": "false", @@ -70754,7 +66756,7 @@ } }, { - "id": 13448, + "id": 12371, "properties": { "facing": "north", "in_wall": "false", @@ -70764,7 +66766,7 @@ }, { "default": true, - "id": 13449, + "id": 12372, "properties": { "facing": "north", "in_wall": "false", @@ -70773,7 +66775,7 @@ } }, { - "id": 13450, + "id": 12373, "properties": { "facing": "south", "in_wall": "true", @@ -70782,7 +66784,7 @@ } }, { - "id": 13451, + "id": 12374, "properties": { "facing": "south", "in_wall": "true", @@ -70791,7 +66793,7 @@ } }, { - "id": 13452, + "id": 12375, "properties": { "facing": "south", "in_wall": "true", @@ -70800,7 +66802,7 @@ } }, { - "id": 13453, + "id": 12376, "properties": { "facing": "south", "in_wall": "true", @@ -70809,7 +66811,7 @@ } }, { - "id": 13454, + "id": 12377, "properties": { "facing": "south", "in_wall": "false", @@ -70818,7 +66820,7 @@ } }, { - "id": 13455, + "id": 12378, "properties": { "facing": "south", "in_wall": "false", @@ -70827,7 +66829,7 @@ } }, { - "id": 13456, + "id": 12379, "properties": { "facing": "south", "in_wall": "false", @@ -70836,7 +66838,7 @@ } }, { - "id": 13457, + "id": 12380, "properties": { "facing": "south", "in_wall": "false", @@ -70845,7 +66847,7 @@ } }, { - "id": 13458, + "id": 12381, "properties": { "facing": "west", "in_wall": "true", @@ -70854,7 +66856,7 @@ } }, { - "id": 13459, + "id": 12382, "properties": { "facing": "west", "in_wall": "true", @@ -70863,7 +66865,7 @@ } }, { - "id": 13460, + "id": 12383, "properties": { "facing": "west", "in_wall": "true", @@ -70872,7 +66874,7 @@ } }, { - "id": 13461, + "id": 12384, "properties": { "facing": "west", "in_wall": "true", @@ -70881,7 +66883,7 @@ } }, { - "id": 13462, + "id": 12385, "properties": { "facing": "west", "in_wall": "false", @@ -70890,7 +66892,7 @@ } }, { - "id": 13463, + "id": 12386, "properties": { "facing": "west", "in_wall": "false", @@ -70899,7 +66901,7 @@ } }, { - "id": 13464, + "id": 12387, "properties": { "facing": "west", "in_wall": "false", @@ -70908,7 +66910,7 @@ } }, { - "id": 13465, + "id": 12388, "properties": { "facing": "west", "in_wall": "false", @@ -70917,7 +66919,7 @@ } }, { - "id": 13466, + "id": 12389, "properties": { "facing": "east", "in_wall": "true", @@ -70926,7 +66928,7 @@ } }, { - "id": 13467, + "id": 12390, "properties": { "facing": "east", "in_wall": "true", @@ -70935,7 +66937,7 @@ } }, { - "id": 13468, + "id": 12391, "properties": { "facing": "east", "in_wall": "true", @@ -70944,7 +66946,7 @@ } }, { - "id": 13469, + "id": 12392, "properties": { "facing": "east", "in_wall": "true", @@ -70953,7 +66955,7 @@ } }, { - "id": 13470, + "id": 12393, "properties": { "facing": "east", "in_wall": "false", @@ -70962,7 +66964,7 @@ } }, { - "id": 13471, + "id": 12394, "properties": { "facing": "east", "in_wall": "false", @@ -70971,7 +66973,7 @@ } }, { - "id": 13472, + "id": 12395, "properties": { "facing": "east", "in_wall": "false", @@ -70980,7 +66982,7 @@ } }, { - "id": 13473, + "id": 12396, "properties": { "facing": "east", "in_wall": "false", @@ -71026,7 +67028,7 @@ }, "states": [ { - "id": 6090, + "id": 5322, "properties": { "attached": "true", "rotation": "0", @@ -71034,7 +67036,7 @@ } }, { - "id": 6091, + "id": 5323, "properties": { "attached": "true", "rotation": "0", @@ -71042,7 +67044,7 @@ } }, { - "id": 6092, + "id": 5324, "properties": { "attached": "true", "rotation": "1", @@ -71050,7 +67052,7 @@ } }, { - "id": 6093, + "id": 5325, "properties": { "attached": "true", "rotation": "1", @@ -71058,7 +67060,7 @@ } }, { - "id": 6094, + "id": 5326, "properties": { "attached": "true", "rotation": "2", @@ -71066,7 +67068,7 @@ } }, { - "id": 6095, + "id": 5327, "properties": { "attached": "true", "rotation": "2", @@ -71074,7 +67076,7 @@ } }, { - "id": 6096, + "id": 5328, "properties": { "attached": "true", "rotation": "3", @@ -71082,7 +67084,7 @@ } }, { - "id": 6097, + "id": 5329, "properties": { "attached": "true", "rotation": "3", @@ -71090,7 +67092,7 @@ } }, { - "id": 6098, + "id": 5330, "properties": { "attached": "true", "rotation": "4", @@ -71098,7 +67100,7 @@ } }, { - "id": 6099, + "id": 5331, "properties": { "attached": "true", "rotation": "4", @@ -71106,7 +67108,7 @@ } }, { - "id": 6100, + "id": 5332, "properties": { "attached": "true", "rotation": "5", @@ -71114,7 +67116,7 @@ } }, { - "id": 6101, + "id": 5333, "properties": { "attached": "true", "rotation": "5", @@ -71122,7 +67124,7 @@ } }, { - "id": 6102, + "id": 5334, "properties": { "attached": "true", "rotation": "6", @@ -71130,7 +67132,7 @@ } }, { - "id": 6103, + "id": 5335, "properties": { "attached": "true", "rotation": "6", @@ -71138,7 +67140,7 @@ } }, { - "id": 6104, + "id": 5336, "properties": { "attached": "true", "rotation": "7", @@ -71146,7 +67148,7 @@ } }, { - "id": 6105, + "id": 5337, "properties": { "attached": "true", "rotation": "7", @@ -71154,7 +67156,7 @@ } }, { - "id": 6106, + "id": 5338, "properties": { "attached": "true", "rotation": "8", @@ -71162,7 +67164,7 @@ } }, { - "id": 6107, + "id": 5339, "properties": { "attached": "true", "rotation": "8", @@ -71170,7 +67172,7 @@ } }, { - "id": 6108, + "id": 5340, "properties": { "attached": "true", "rotation": "9", @@ -71178,7 +67180,7 @@ } }, { - "id": 6109, + "id": 5341, "properties": { "attached": "true", "rotation": "9", @@ -71186,7 +67188,7 @@ } }, { - "id": 6110, + "id": 5342, "properties": { "attached": "true", "rotation": "10", @@ -71194,7 +67196,7 @@ } }, { - "id": 6111, + "id": 5343, "properties": { "attached": "true", "rotation": "10", @@ -71202,7 +67204,7 @@ } }, { - "id": 6112, + "id": 5344, "properties": { "attached": "true", "rotation": "11", @@ -71210,7 +67212,7 @@ } }, { - "id": 6113, + "id": 5345, "properties": { "attached": "true", "rotation": "11", @@ -71218,7 +67220,7 @@ } }, { - "id": 6114, + "id": 5346, "properties": { "attached": "true", "rotation": "12", @@ -71226,7 +67228,7 @@ } }, { - "id": 6115, + "id": 5347, "properties": { "attached": "true", "rotation": "12", @@ -71234,7 +67236,7 @@ } }, { - "id": 6116, + "id": 5348, "properties": { "attached": "true", "rotation": "13", @@ -71242,7 +67244,7 @@ } }, { - "id": 6117, + "id": 5349, "properties": { "attached": "true", "rotation": "13", @@ -71250,7 +67252,7 @@ } }, { - "id": 6118, + "id": 5350, "properties": { "attached": "true", "rotation": "14", @@ -71258,7 +67260,7 @@ } }, { - "id": 6119, + "id": 5351, "properties": { "attached": "true", "rotation": "14", @@ -71266,7 +67268,7 @@ } }, { - "id": 6120, + "id": 5352, "properties": { "attached": "true", "rotation": "15", @@ -71274,7 +67276,7 @@ } }, { - "id": 6121, + "id": 5353, "properties": { "attached": "true", "rotation": "15", @@ -71282,7 +67284,7 @@ } }, { - "id": 6122, + "id": 5354, "properties": { "attached": "false", "rotation": "0", @@ -71291,7 +67293,7 @@ }, { "default": true, - "id": 6123, + "id": 5355, "properties": { "attached": "false", "rotation": "0", @@ -71299,7 +67301,7 @@ } }, { - "id": 6124, + "id": 5356, "properties": { "attached": "false", "rotation": "1", @@ -71307,7 +67309,7 @@ } }, { - "id": 6125, + "id": 5357, "properties": { "attached": "false", "rotation": "1", @@ -71315,7 +67317,7 @@ } }, { - "id": 6126, + "id": 5358, "properties": { "attached": "false", "rotation": "2", @@ -71323,7 +67325,7 @@ } }, { - "id": 6127, + "id": 5359, "properties": { "attached": "false", "rotation": "2", @@ -71331,7 +67333,7 @@ } }, { - "id": 6128, + "id": 5360, "properties": { "attached": "false", "rotation": "3", @@ -71339,7 +67341,7 @@ } }, { - "id": 6129, + "id": 5361, "properties": { "attached": "false", "rotation": "3", @@ -71347,7 +67349,7 @@ } }, { - "id": 6130, + "id": 5362, "properties": { "attached": "false", "rotation": "4", @@ -71355,7 +67357,7 @@ } }, { - "id": 6131, + "id": 5363, "properties": { "attached": "false", "rotation": "4", @@ -71363,7 +67365,7 @@ } }, { - "id": 6132, + "id": 5364, "properties": { "attached": "false", "rotation": "5", @@ -71371,7 +67373,7 @@ } }, { - "id": 6133, + "id": 5365, "properties": { "attached": "false", "rotation": "5", @@ -71379,7 +67381,7 @@ } }, { - "id": 6134, + "id": 5366, "properties": { "attached": "false", "rotation": "6", @@ -71387,7 +67389,7 @@ } }, { - "id": 6135, + "id": 5367, "properties": { "attached": "false", "rotation": "6", @@ -71395,7 +67397,7 @@ } }, { - "id": 6136, + "id": 5368, "properties": { "attached": "false", "rotation": "7", @@ -71403,7 +67405,7 @@ } }, { - "id": 6137, + "id": 5369, "properties": { "attached": "false", "rotation": "7", @@ -71411,7 +67413,7 @@ } }, { - "id": 6138, + "id": 5370, "properties": { "attached": "false", "rotation": "8", @@ -71419,7 +67421,7 @@ } }, { - "id": 6139, + "id": 5371, "properties": { "attached": "false", "rotation": "8", @@ -71427,7 +67429,7 @@ } }, { - "id": 6140, + "id": 5372, "properties": { "attached": "false", "rotation": "9", @@ -71435,7 +67437,7 @@ } }, { - "id": 6141, + "id": 5373, "properties": { "attached": "false", "rotation": "9", @@ -71443,7 +67445,7 @@ } }, { - "id": 6142, + "id": 5374, "properties": { "attached": "false", "rotation": "10", @@ -71451,7 +67453,7 @@ } }, { - "id": 6143, + "id": 5375, "properties": { "attached": "false", "rotation": "10", @@ -71459,7 +67461,7 @@ } }, { - "id": 6144, + "id": 5376, "properties": { "attached": "false", "rotation": "11", @@ -71467,7 +67469,7 @@ } }, { - "id": 6145, + "id": 5377, "properties": { "attached": "false", "rotation": "11", @@ -71475,7 +67477,7 @@ } }, { - "id": 6146, + "id": 5378, "properties": { "attached": "false", "rotation": "12", @@ -71483,7 +67485,7 @@ } }, { - "id": 6147, + "id": 5379, "properties": { "attached": "false", "rotation": "12", @@ -71491,7 +67493,7 @@ } }, { - "id": 6148, + "id": 5380, "properties": { "attached": "false", "rotation": "13", @@ -71499,7 +67501,7 @@ } }, { - "id": 6149, + "id": 5381, "properties": { "attached": "false", "rotation": "13", @@ -71507,7 +67509,7 @@ } }, { - "id": 6150, + "id": 5382, "properties": { "attached": "false", "rotation": "14", @@ -71515,7 +67517,7 @@ } }, { - "id": 6151, + "id": 5383, "properties": { "attached": "false", "rotation": "14", @@ -71523,7 +67525,7 @@ } }, { - "id": 6152, + "id": 5384, "properties": { "attached": "false", "rotation": "15", @@ -71531,7 +67533,7 @@ } }, { - "id": 6153, + "id": 5385, "properties": { "attached": "false", "rotation": "15", @@ -71853,14 +67855,14 @@ }, "states": [ { - "id": 6672, + "id": 5904, "properties": { "powered": "true" } }, { "default": true, - "id": 6673, + "id": 5905, "properties": { "powered": "false" } @@ -71895,613 +67897,6 @@ } ] }, - "minecraft:dark_oak_shelf": { - "definition": { - "type": "minecraft:shelf", - "properties": {} - }, - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ], - "side_chain": [ - "unconnected", - "right", - "center", - "left" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 2719, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2720, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2721, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2722, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2723, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2724, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2725, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2726, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2727, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 2728, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2729, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2730, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2731, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2732, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2733, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2734, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2735, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2736, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2737, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2738, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2739, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2740, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2741, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2742, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2743, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2744, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2745, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2746, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2747, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2748, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2749, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2750, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2751, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2752, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2753, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2754, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2755, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2756, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2757, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2758, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2759, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2760, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2761, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2762, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2763, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2764, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2765, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2766, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2767, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2768, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2769, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2770, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2771, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2772, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2773, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2774, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2775, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2776, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2777, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2778, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2779, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2780, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2781, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2782, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "left", - "waterlogged": "false" - } - } - ] - }, "minecraft:dark_oak_sign": { "definition": { "type": "minecraft:standing_sign", @@ -72534,7 +67929,7 @@ }, "states": [ { - "id": 5326, + "id": 4558, "properties": { "rotation": "0", "waterlogged": "true" @@ -72542,217 +67937,217 @@ }, { "default": true, - "id": 5327, + "id": 4559, "properties": { "rotation": "0", "waterlogged": "false" } }, { - "id": 5328, + "id": 4560, "properties": { "rotation": "1", "waterlogged": "true" } }, { - "id": 5329, + "id": 4561, "properties": { "rotation": "1", "waterlogged": "false" } }, { - "id": 5330, + "id": 4562, "properties": { "rotation": "2", "waterlogged": "true" } }, { - "id": 5331, + "id": 4563, "properties": { "rotation": "2", "waterlogged": "false" } }, { - "id": 5332, + "id": 4564, "properties": { "rotation": "3", "waterlogged": "true" } }, { - "id": 5333, + "id": 4565, "properties": { "rotation": "3", "waterlogged": "false" } }, { - "id": 5334, + "id": 4566, "properties": { "rotation": "4", "waterlogged": "true" } }, { - "id": 5335, + "id": 4567, "properties": { "rotation": "4", "waterlogged": "false" } }, { - "id": 5336, + "id": 4568, "properties": { "rotation": "5", "waterlogged": "true" } }, { - "id": 5337, + "id": 4569, "properties": { "rotation": "5", "waterlogged": "false" } }, { - "id": 5338, + "id": 4570, "properties": { "rotation": "6", "waterlogged": "true" } }, { - "id": 5339, + "id": 4571, "properties": { "rotation": "6", "waterlogged": "false" } }, { - "id": 5340, + "id": 4572, "properties": { "rotation": "7", "waterlogged": "true" } }, { - "id": 5341, + "id": 4573, "properties": { "rotation": "7", "waterlogged": "false" } }, { - "id": 5342, + "id": 4574, "properties": { "rotation": "8", "waterlogged": "true" } }, { - "id": 5343, + "id": 4575, "properties": { "rotation": "8", "waterlogged": "false" } }, { - "id": 5344, + "id": 4576, "properties": { "rotation": "9", "waterlogged": "true" } }, { - "id": 5345, + "id": 4577, "properties": { "rotation": "9", "waterlogged": "false" } }, { - "id": 5346, + "id": 4578, "properties": { "rotation": "10", "waterlogged": "true" } }, { - "id": 5347, + "id": 4579, "properties": { "rotation": "10", "waterlogged": "false" } }, { - "id": 5348, + "id": 4580, "properties": { "rotation": "11", "waterlogged": "true" } }, { - "id": 5349, + "id": 4581, "properties": { "rotation": "11", "waterlogged": "false" } }, { - "id": 5350, + "id": 4582, "properties": { "rotation": "12", "waterlogged": "true" } }, { - "id": 5351, + "id": 4583, "properties": { "rotation": "12", "waterlogged": "false" } }, { - "id": 5352, + "id": 4584, "properties": { "rotation": "13", "waterlogged": "true" } }, { - "id": 5353, + "id": 4585, "properties": { "rotation": "13", "waterlogged": "false" } }, { - "id": 5354, + "id": 4586, "properties": { "rotation": "14", "waterlogged": "true" } }, { - "id": 5355, + "id": 4587, "properties": { "rotation": "14", "waterlogged": "false" } }, { - "id": 5356, + "id": 4588, "properties": { "rotation": "15", "waterlogged": "true" } }, { - "id": 5357, + "id": 4589, "properties": { "rotation": "15", "waterlogged": "false" @@ -72778,21 +68173,21 @@ }, "states": [ { - "id": 13164, + "id": 12087, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 13165, + "id": 12088, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 13166, + "id": 12089, "properties": { "type": "bottom", "waterlogged": "true" @@ -72800,21 +68195,21 @@ }, { "default": true, - "id": 13167, + "id": 12090, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 13168, + "id": 12091, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 13169, + "id": 12092, "properties": { "type": "double", "waterlogged": "false" @@ -72855,7 +68250,7 @@ }, "states": [ { - "id": 11930, + "id": 10853, "properties": { "facing": "north", "half": "top", @@ -72864,7 +68259,7 @@ } }, { - "id": 11931, + "id": 10854, "properties": { "facing": "north", "half": "top", @@ -72873,7 +68268,7 @@ } }, { - "id": 11932, + "id": 10855, "properties": { "facing": "north", "half": "top", @@ -72882,7 +68277,7 @@ } }, { - "id": 11933, + "id": 10856, "properties": { "facing": "north", "half": "top", @@ -72891,7 +68286,7 @@ } }, { - "id": 11934, + "id": 10857, "properties": { "facing": "north", "half": "top", @@ -72900,7 +68295,7 @@ } }, { - "id": 11935, + "id": 10858, "properties": { "facing": "north", "half": "top", @@ -72909,7 +68304,7 @@ } }, { - "id": 11936, + "id": 10859, "properties": { "facing": "north", "half": "top", @@ -72918,7 +68313,7 @@ } }, { - "id": 11937, + "id": 10860, "properties": { "facing": "north", "half": "top", @@ -72927,7 +68322,7 @@ } }, { - "id": 11938, + "id": 10861, "properties": { "facing": "north", "half": "top", @@ -72936,7 +68331,7 @@ } }, { - "id": 11939, + "id": 10862, "properties": { "facing": "north", "half": "top", @@ -72945,7 +68340,7 @@ } }, { - "id": 11940, + "id": 10863, "properties": { "facing": "north", "half": "bottom", @@ -72955,7 +68350,7 @@ }, { "default": true, - "id": 11941, + "id": 10864, "properties": { "facing": "north", "half": "bottom", @@ -72964,7 +68359,7 @@ } }, { - "id": 11942, + "id": 10865, "properties": { "facing": "north", "half": "bottom", @@ -72973,7 +68368,7 @@ } }, { - "id": 11943, + "id": 10866, "properties": { "facing": "north", "half": "bottom", @@ -72982,7 +68377,7 @@ } }, { - "id": 11944, + "id": 10867, "properties": { "facing": "north", "half": "bottom", @@ -72991,7 +68386,7 @@ } }, { - "id": 11945, + "id": 10868, "properties": { "facing": "north", "half": "bottom", @@ -73000,7 +68395,7 @@ } }, { - "id": 11946, + "id": 10869, "properties": { "facing": "north", "half": "bottom", @@ -73009,7 +68404,7 @@ } }, { - "id": 11947, + "id": 10870, "properties": { "facing": "north", "half": "bottom", @@ -73018,7 +68413,7 @@ } }, { - "id": 11948, + "id": 10871, "properties": { "facing": "north", "half": "bottom", @@ -73027,7 +68422,7 @@ } }, { - "id": 11949, + "id": 10872, "properties": { "facing": "north", "half": "bottom", @@ -73036,7 +68431,7 @@ } }, { - "id": 11950, + "id": 10873, "properties": { "facing": "south", "half": "top", @@ -73045,7 +68440,7 @@ } }, { - "id": 11951, + "id": 10874, "properties": { "facing": "south", "half": "top", @@ -73054,7 +68449,7 @@ } }, { - "id": 11952, + "id": 10875, "properties": { "facing": "south", "half": "top", @@ -73063,7 +68458,7 @@ } }, { - "id": 11953, + "id": 10876, "properties": { "facing": "south", "half": "top", @@ -73072,7 +68467,7 @@ } }, { - "id": 11954, + "id": 10877, "properties": { "facing": "south", "half": "top", @@ -73081,7 +68476,7 @@ } }, { - "id": 11955, + "id": 10878, "properties": { "facing": "south", "half": "top", @@ -73090,7 +68485,7 @@ } }, { - "id": 11956, + "id": 10879, "properties": { "facing": "south", "half": "top", @@ -73099,7 +68494,7 @@ } }, { - "id": 11957, + "id": 10880, "properties": { "facing": "south", "half": "top", @@ -73108,7 +68503,7 @@ } }, { - "id": 11958, + "id": 10881, "properties": { "facing": "south", "half": "top", @@ -73117,7 +68512,7 @@ } }, { - "id": 11959, + "id": 10882, "properties": { "facing": "south", "half": "top", @@ -73126,7 +68521,7 @@ } }, { - "id": 11960, + "id": 10883, "properties": { "facing": "south", "half": "bottom", @@ -73135,7 +68530,7 @@ } }, { - "id": 11961, + "id": 10884, "properties": { "facing": "south", "half": "bottom", @@ -73144,7 +68539,7 @@ } }, { - "id": 11962, + "id": 10885, "properties": { "facing": "south", "half": "bottom", @@ -73153,7 +68548,7 @@ } }, { - "id": 11963, + "id": 10886, "properties": { "facing": "south", "half": "bottom", @@ -73162,7 +68557,7 @@ } }, { - "id": 11964, + "id": 10887, "properties": { "facing": "south", "half": "bottom", @@ -73171,7 +68566,7 @@ } }, { - "id": 11965, + "id": 10888, "properties": { "facing": "south", "half": "bottom", @@ -73180,7 +68575,7 @@ } }, { - "id": 11966, + "id": 10889, "properties": { "facing": "south", "half": "bottom", @@ -73189,7 +68584,7 @@ } }, { - "id": 11967, + "id": 10890, "properties": { "facing": "south", "half": "bottom", @@ -73198,7 +68593,7 @@ } }, { - "id": 11968, + "id": 10891, "properties": { "facing": "south", "half": "bottom", @@ -73207,7 +68602,7 @@ } }, { - "id": 11969, + "id": 10892, "properties": { "facing": "south", "half": "bottom", @@ -73216,7 +68611,7 @@ } }, { - "id": 11970, + "id": 10893, "properties": { "facing": "west", "half": "top", @@ -73225,7 +68620,7 @@ } }, { - "id": 11971, + "id": 10894, "properties": { "facing": "west", "half": "top", @@ -73234,7 +68629,7 @@ } }, { - "id": 11972, + "id": 10895, "properties": { "facing": "west", "half": "top", @@ -73243,7 +68638,7 @@ } }, { - "id": 11973, + "id": 10896, "properties": { "facing": "west", "half": "top", @@ -73252,7 +68647,7 @@ } }, { - "id": 11974, + "id": 10897, "properties": { "facing": "west", "half": "top", @@ -73261,7 +68656,7 @@ } }, { - "id": 11975, + "id": 10898, "properties": { "facing": "west", "half": "top", @@ -73270,7 +68665,7 @@ } }, { - "id": 11976, + "id": 10899, "properties": { "facing": "west", "half": "top", @@ -73279,7 +68674,7 @@ } }, { - "id": 11977, + "id": 10900, "properties": { "facing": "west", "half": "top", @@ -73288,7 +68683,7 @@ } }, { - "id": 11978, + "id": 10901, "properties": { "facing": "west", "half": "top", @@ -73297,7 +68692,7 @@ } }, { - "id": 11979, + "id": 10902, "properties": { "facing": "west", "half": "top", @@ -73306,7 +68701,7 @@ } }, { - "id": 11980, + "id": 10903, "properties": { "facing": "west", "half": "bottom", @@ -73315,7 +68710,7 @@ } }, { - "id": 11981, + "id": 10904, "properties": { "facing": "west", "half": "bottom", @@ -73324,7 +68719,7 @@ } }, { - "id": 11982, + "id": 10905, "properties": { "facing": "west", "half": "bottom", @@ -73333,7 +68728,7 @@ } }, { - "id": 11983, + "id": 10906, "properties": { "facing": "west", "half": "bottom", @@ -73342,7 +68737,7 @@ } }, { - "id": 11984, + "id": 10907, "properties": { "facing": "west", "half": "bottom", @@ -73351,7 +68746,7 @@ } }, { - "id": 11985, + "id": 10908, "properties": { "facing": "west", "half": "bottom", @@ -73360,7 +68755,7 @@ } }, { - "id": 11986, + "id": 10909, "properties": { "facing": "west", "half": "bottom", @@ -73369,7 +68764,7 @@ } }, { - "id": 11987, + "id": 10910, "properties": { "facing": "west", "half": "bottom", @@ -73378,7 +68773,7 @@ } }, { - "id": 11988, + "id": 10911, "properties": { "facing": "west", "half": "bottom", @@ -73387,7 +68782,7 @@ } }, { - "id": 11989, + "id": 10912, "properties": { "facing": "west", "half": "bottom", @@ -73396,7 +68791,7 @@ } }, { - "id": 11990, + "id": 10913, "properties": { "facing": "east", "half": "top", @@ -73405,7 +68800,7 @@ } }, { - "id": 11991, + "id": 10914, "properties": { "facing": "east", "half": "top", @@ -73414,7 +68809,7 @@ } }, { - "id": 11992, + "id": 10915, "properties": { "facing": "east", "half": "top", @@ -73423,7 +68818,7 @@ } }, { - "id": 11993, + "id": 10916, "properties": { "facing": "east", "half": "top", @@ -73432,7 +68827,7 @@ } }, { - "id": 11994, + "id": 10917, "properties": { "facing": "east", "half": "top", @@ -73441,7 +68836,7 @@ } }, { - "id": 11995, + "id": 10918, "properties": { "facing": "east", "half": "top", @@ -73450,7 +68845,7 @@ } }, { - "id": 11996, + "id": 10919, "properties": { "facing": "east", "half": "top", @@ -73459,7 +68854,7 @@ } }, { - "id": 11997, + "id": 10920, "properties": { "facing": "east", "half": "top", @@ -73468,7 +68863,7 @@ } }, { - "id": 11998, + "id": 10921, "properties": { "facing": "east", "half": "top", @@ -73477,7 +68872,7 @@ } }, { - "id": 11999, + "id": 10922, "properties": { "facing": "east", "half": "top", @@ -73486,7 +68881,7 @@ } }, { - "id": 12000, + "id": 10923, "properties": { "facing": "east", "half": "bottom", @@ -73495,7 +68890,7 @@ } }, { - "id": 12001, + "id": 10924, "properties": { "facing": "east", "half": "bottom", @@ -73504,7 +68899,7 @@ } }, { - "id": 12002, + "id": 10925, "properties": { "facing": "east", "half": "bottom", @@ -73513,7 +68908,7 @@ } }, { - "id": 12003, + "id": 10926, "properties": { "facing": "east", "half": "bottom", @@ -73522,7 +68917,7 @@ } }, { - "id": 12004, + "id": 10927, "properties": { "facing": "east", "half": "bottom", @@ -73531,7 +68926,7 @@ } }, { - "id": 12005, + "id": 10928, "properties": { "facing": "east", "half": "bottom", @@ -73540,7 +68935,7 @@ } }, { - "id": 12006, + "id": 10929, "properties": { "facing": "east", "half": "bottom", @@ -73549,7 +68944,7 @@ } }, { - "id": 12007, + "id": 10930, "properties": { "facing": "east", "half": "bottom", @@ -73558,7 +68953,7 @@ } }, { - "id": 12008, + "id": 10931, "properties": { "facing": "east", "half": "bottom", @@ -73567,7 +68962,7 @@ } }, { - "id": 12009, + "id": 10932, "properties": { "facing": "east", "half": "bottom", @@ -73609,7 +69004,7 @@ }, "states": [ { - "id": 7297, + "id": 6524, "properties": { "facing": "north", "half": "top", @@ -73619,7 +69014,7 @@ } }, { - "id": 7298, + "id": 6525, "properties": { "facing": "north", "half": "top", @@ -73629,7 +69024,7 @@ } }, { - "id": 7299, + "id": 6526, "properties": { "facing": "north", "half": "top", @@ -73639,7 +69034,7 @@ } }, { - "id": 7300, + "id": 6527, "properties": { "facing": "north", "half": "top", @@ -73649,7 +69044,7 @@ } }, { - "id": 7301, + "id": 6528, "properties": { "facing": "north", "half": "top", @@ -73659,7 +69054,7 @@ } }, { - "id": 7302, + "id": 6529, "properties": { "facing": "north", "half": "top", @@ -73669,7 +69064,7 @@ } }, { - "id": 7303, + "id": 6530, "properties": { "facing": "north", "half": "top", @@ -73679,7 +69074,7 @@ } }, { - "id": 7304, + "id": 6531, "properties": { "facing": "north", "half": "top", @@ -73689,7 +69084,7 @@ } }, { - "id": 7305, + "id": 6532, "properties": { "facing": "north", "half": "bottom", @@ -73699,7 +69094,7 @@ } }, { - "id": 7306, + "id": 6533, "properties": { "facing": "north", "half": "bottom", @@ -73709,7 +69104,7 @@ } }, { - "id": 7307, + "id": 6534, "properties": { "facing": "north", "half": "bottom", @@ -73719,7 +69114,7 @@ } }, { - "id": 7308, + "id": 6535, "properties": { "facing": "north", "half": "bottom", @@ -73729,7 +69124,7 @@ } }, { - "id": 7309, + "id": 6536, "properties": { "facing": "north", "half": "bottom", @@ -73739,7 +69134,7 @@ } }, { - "id": 7310, + "id": 6537, "properties": { "facing": "north", "half": "bottom", @@ -73749,7 +69144,7 @@ } }, { - "id": 7311, + "id": 6538, "properties": { "facing": "north", "half": "bottom", @@ -73760,7 +69155,7 @@ }, { "default": true, - "id": 7312, + "id": 6539, "properties": { "facing": "north", "half": "bottom", @@ -73770,7 +69165,7 @@ } }, { - "id": 7313, + "id": 6540, "properties": { "facing": "south", "half": "top", @@ -73780,7 +69175,7 @@ } }, { - "id": 7314, + "id": 6541, "properties": { "facing": "south", "half": "top", @@ -73790,7 +69185,7 @@ } }, { - "id": 7315, + "id": 6542, "properties": { "facing": "south", "half": "top", @@ -73800,7 +69195,7 @@ } }, { - "id": 7316, + "id": 6543, "properties": { "facing": "south", "half": "top", @@ -73810,7 +69205,7 @@ } }, { - "id": 7317, + "id": 6544, "properties": { "facing": "south", "half": "top", @@ -73820,7 +69215,7 @@ } }, { - "id": 7318, + "id": 6545, "properties": { "facing": "south", "half": "top", @@ -73830,7 +69225,7 @@ } }, { - "id": 7319, + "id": 6546, "properties": { "facing": "south", "half": "top", @@ -73840,7 +69235,7 @@ } }, { - "id": 7320, + "id": 6547, "properties": { "facing": "south", "half": "top", @@ -73850,7 +69245,7 @@ } }, { - "id": 7321, + "id": 6548, "properties": { "facing": "south", "half": "bottom", @@ -73860,7 +69255,7 @@ } }, { - "id": 7322, + "id": 6549, "properties": { "facing": "south", "half": "bottom", @@ -73870,7 +69265,7 @@ } }, { - "id": 7323, + "id": 6550, "properties": { "facing": "south", "half": "bottom", @@ -73880,7 +69275,7 @@ } }, { - "id": 7324, + "id": 6551, "properties": { "facing": "south", "half": "bottom", @@ -73890,7 +69285,7 @@ } }, { - "id": 7325, + "id": 6552, "properties": { "facing": "south", "half": "bottom", @@ -73900,7 +69295,7 @@ } }, { - "id": 7326, + "id": 6553, "properties": { "facing": "south", "half": "bottom", @@ -73910,7 +69305,7 @@ } }, { - "id": 7327, + "id": 6554, "properties": { "facing": "south", "half": "bottom", @@ -73920,7 +69315,7 @@ } }, { - "id": 7328, + "id": 6555, "properties": { "facing": "south", "half": "bottom", @@ -73930,7 +69325,7 @@ } }, { - "id": 7329, + "id": 6556, "properties": { "facing": "west", "half": "top", @@ -73940,7 +69335,7 @@ } }, { - "id": 7330, + "id": 6557, "properties": { "facing": "west", "half": "top", @@ -73950,7 +69345,7 @@ } }, { - "id": 7331, + "id": 6558, "properties": { "facing": "west", "half": "top", @@ -73960,7 +69355,7 @@ } }, { - "id": 7332, + "id": 6559, "properties": { "facing": "west", "half": "top", @@ -73970,7 +69365,7 @@ } }, { - "id": 7333, + "id": 6560, "properties": { "facing": "west", "half": "top", @@ -73980,7 +69375,7 @@ } }, { - "id": 7334, + "id": 6561, "properties": { "facing": "west", "half": "top", @@ -73990,7 +69385,7 @@ } }, { - "id": 7335, + "id": 6562, "properties": { "facing": "west", "half": "top", @@ -74000,7 +69395,7 @@ } }, { - "id": 7336, + "id": 6563, "properties": { "facing": "west", "half": "top", @@ -74010,7 +69405,7 @@ } }, { - "id": 7337, + "id": 6564, "properties": { "facing": "west", "half": "bottom", @@ -74020,7 +69415,7 @@ } }, { - "id": 7338, + "id": 6565, "properties": { "facing": "west", "half": "bottom", @@ -74030,7 +69425,7 @@ } }, { - "id": 7339, + "id": 6566, "properties": { "facing": "west", "half": "bottom", @@ -74040,7 +69435,7 @@ } }, { - "id": 7340, + "id": 6567, "properties": { "facing": "west", "half": "bottom", @@ -74050,7 +69445,7 @@ } }, { - "id": 7341, + "id": 6568, "properties": { "facing": "west", "half": "bottom", @@ -74060,7 +69455,7 @@ } }, { - "id": 7342, + "id": 6569, "properties": { "facing": "west", "half": "bottom", @@ -74070,7 +69465,7 @@ } }, { - "id": 7343, + "id": 6570, "properties": { "facing": "west", "half": "bottom", @@ -74080,7 +69475,7 @@ } }, { - "id": 7344, + "id": 6571, "properties": { "facing": "west", "half": "bottom", @@ -74090,7 +69485,7 @@ } }, { - "id": 7345, + "id": 6572, "properties": { "facing": "east", "half": "top", @@ -74100,7 +69495,7 @@ } }, { - "id": 7346, + "id": 6573, "properties": { "facing": "east", "half": "top", @@ -74110,7 +69505,7 @@ } }, { - "id": 7347, + "id": 6574, "properties": { "facing": "east", "half": "top", @@ -74120,7 +69515,7 @@ } }, { - "id": 7348, + "id": 6575, "properties": { "facing": "east", "half": "top", @@ -74130,7 +69525,7 @@ } }, { - "id": 7349, + "id": 6576, "properties": { "facing": "east", "half": "top", @@ -74140,7 +69535,7 @@ } }, { - "id": 7350, + "id": 6577, "properties": { "facing": "east", "half": "top", @@ -74150,7 +69545,7 @@ } }, { - "id": 7351, + "id": 6578, "properties": { "facing": "east", "half": "top", @@ -74160,7 +69555,7 @@ } }, { - "id": 7352, + "id": 6579, "properties": { "facing": "east", "half": "top", @@ -74170,7 +69565,7 @@ } }, { - "id": 7353, + "id": 6580, "properties": { "facing": "east", "half": "bottom", @@ -74180,7 +69575,7 @@ } }, { - "id": 7354, + "id": 6581, "properties": { "facing": "east", "half": "bottom", @@ -74190,7 +69585,7 @@ } }, { - "id": 7355, + "id": 6582, "properties": { "facing": "east", "half": "bottom", @@ -74200,7 +69595,7 @@ } }, { - "id": 7356, + "id": 6583, "properties": { "facing": "east", "half": "bottom", @@ -74210,7 +69605,7 @@ } }, { - "id": 7357, + "id": 6584, "properties": { "facing": "east", "half": "bottom", @@ -74220,7 +69615,7 @@ } }, { - "id": 7358, + "id": 6585, "properties": { "facing": "east", "half": "bottom", @@ -74230,7 +69625,7 @@ } }, { - "id": 7359, + "id": 6586, "properties": { "facing": "east", "half": "bottom", @@ -74240,7 +69635,7 @@ } }, { - "id": 7360, + "id": 6587, "properties": { "facing": "east", "half": "bottom", @@ -74271,7 +69666,7 @@ }, "states": [ { - "id": 6522, + "id": 5754, "properties": { "facing": "north", "waterlogged": "true" @@ -74279,49 +69674,49 @@ }, { "default": true, - "id": 6523, + "id": 5755, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 6524, + "id": 5756, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 6525, + "id": 5757, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 6526, + "id": 5758, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 6527, + "id": 5759, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 6528, + "id": 5760, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 6529, + "id": 5761, "properties": { "facing": "east", "waterlogged": "false" @@ -74349,7 +69744,7 @@ }, "states": [ { - "id": 5674, + "id": 4906, "properties": { "facing": "north", "waterlogged": "true" @@ -74357,49 +69752,49 @@ }, { "default": true, - "id": 5675, + "id": 4907, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 5676, + "id": 4908, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 5677, + "id": 4909, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 5678, + "id": 4910, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 5679, + "id": 4911, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 5680, + "id": 4912, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 5681, + "id": 4913, "properties": { "facing": "east", "waterlogged": "false" @@ -74449,7 +69844,7 @@ "states": [ { "default": true, - "id": 12431 + "id": 11354 } ] }, @@ -74471,21 +69866,21 @@ }, "states": [ { - "id": 12684, + "id": 11607, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 12685, + "id": 11608, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 12686, + "id": 11609, "properties": { "type": "bottom", "waterlogged": "true" @@ -74493,21 +69888,21 @@ }, { "default": true, - "id": 12687, + "id": 11610, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 12688, + "id": 11611, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 12689, + "id": 11612, "properties": { "type": "double", "waterlogged": "false" @@ -74548,7 +69943,7 @@ }, "states": [ { - "id": 12592, + "id": 11515, "properties": { "facing": "north", "half": "top", @@ -74557,7 +69952,7 @@ } }, { - "id": 12593, + "id": 11516, "properties": { "facing": "north", "half": "top", @@ -74566,7 +69961,7 @@ } }, { - "id": 12594, + "id": 11517, "properties": { "facing": "north", "half": "top", @@ -74575,7 +69970,7 @@ } }, { - "id": 12595, + "id": 11518, "properties": { "facing": "north", "half": "top", @@ -74584,7 +69979,7 @@ } }, { - "id": 12596, + "id": 11519, "properties": { "facing": "north", "half": "top", @@ -74593,7 +69988,7 @@ } }, { - "id": 12597, + "id": 11520, "properties": { "facing": "north", "half": "top", @@ -74602,7 +69997,7 @@ } }, { - "id": 12598, + "id": 11521, "properties": { "facing": "north", "half": "top", @@ -74611,7 +70006,7 @@ } }, { - "id": 12599, + "id": 11522, "properties": { "facing": "north", "half": "top", @@ -74620,7 +70015,7 @@ } }, { - "id": 12600, + "id": 11523, "properties": { "facing": "north", "half": "top", @@ -74629,7 +70024,7 @@ } }, { - "id": 12601, + "id": 11524, "properties": { "facing": "north", "half": "top", @@ -74638,7 +70033,7 @@ } }, { - "id": 12602, + "id": 11525, "properties": { "facing": "north", "half": "bottom", @@ -74648,7 +70043,7 @@ }, { "default": true, - "id": 12603, + "id": 11526, "properties": { "facing": "north", "half": "bottom", @@ -74657,7 +70052,7 @@ } }, { - "id": 12604, + "id": 11527, "properties": { "facing": "north", "half": "bottom", @@ -74666,7 +70061,7 @@ } }, { - "id": 12605, + "id": 11528, "properties": { "facing": "north", "half": "bottom", @@ -74675,7 +70070,7 @@ } }, { - "id": 12606, + "id": 11529, "properties": { "facing": "north", "half": "bottom", @@ -74684,7 +70079,7 @@ } }, { - "id": 12607, + "id": 11530, "properties": { "facing": "north", "half": "bottom", @@ -74693,7 +70088,7 @@ } }, { - "id": 12608, + "id": 11531, "properties": { "facing": "north", "half": "bottom", @@ -74702,7 +70097,7 @@ } }, { - "id": 12609, + "id": 11532, "properties": { "facing": "north", "half": "bottom", @@ -74711,7 +70106,7 @@ } }, { - "id": 12610, + "id": 11533, "properties": { "facing": "north", "half": "bottom", @@ -74720,7 +70115,7 @@ } }, { - "id": 12611, + "id": 11534, "properties": { "facing": "north", "half": "bottom", @@ -74729,7 +70124,7 @@ } }, { - "id": 12612, + "id": 11535, "properties": { "facing": "south", "half": "top", @@ -74738,7 +70133,7 @@ } }, { - "id": 12613, + "id": 11536, "properties": { "facing": "south", "half": "top", @@ -74747,7 +70142,7 @@ } }, { - "id": 12614, + "id": 11537, "properties": { "facing": "south", "half": "top", @@ -74756,7 +70151,7 @@ } }, { - "id": 12615, + "id": 11538, "properties": { "facing": "south", "half": "top", @@ -74765,7 +70160,7 @@ } }, { - "id": 12616, + "id": 11539, "properties": { "facing": "south", "half": "top", @@ -74774,7 +70169,7 @@ } }, { - "id": 12617, + "id": 11540, "properties": { "facing": "south", "half": "top", @@ -74783,7 +70178,7 @@ } }, { - "id": 12618, + "id": 11541, "properties": { "facing": "south", "half": "top", @@ -74792,7 +70187,7 @@ } }, { - "id": 12619, + "id": 11542, "properties": { "facing": "south", "half": "top", @@ -74801,7 +70196,7 @@ } }, { - "id": 12620, + "id": 11543, "properties": { "facing": "south", "half": "top", @@ -74810,7 +70205,7 @@ } }, { - "id": 12621, + "id": 11544, "properties": { "facing": "south", "half": "top", @@ -74819,7 +70214,7 @@ } }, { - "id": 12622, + "id": 11545, "properties": { "facing": "south", "half": "bottom", @@ -74828,7 +70223,7 @@ } }, { - "id": 12623, + "id": 11546, "properties": { "facing": "south", "half": "bottom", @@ -74837,7 +70232,7 @@ } }, { - "id": 12624, + "id": 11547, "properties": { "facing": "south", "half": "bottom", @@ -74846,7 +70241,7 @@ } }, { - "id": 12625, + "id": 11548, "properties": { "facing": "south", "half": "bottom", @@ -74855,7 +70250,7 @@ } }, { - "id": 12626, + "id": 11549, "properties": { "facing": "south", "half": "bottom", @@ -74864,7 +70259,7 @@ } }, { - "id": 12627, + "id": 11550, "properties": { "facing": "south", "half": "bottom", @@ -74873,7 +70268,7 @@ } }, { - "id": 12628, + "id": 11551, "properties": { "facing": "south", "half": "bottom", @@ -74882,7 +70277,7 @@ } }, { - "id": 12629, + "id": 11552, "properties": { "facing": "south", "half": "bottom", @@ -74891,7 +70286,7 @@ } }, { - "id": 12630, + "id": 11553, "properties": { "facing": "south", "half": "bottom", @@ -74900,7 +70295,7 @@ } }, { - "id": 12631, + "id": 11554, "properties": { "facing": "south", "half": "bottom", @@ -74909,7 +70304,7 @@ } }, { - "id": 12632, + "id": 11555, "properties": { "facing": "west", "half": "top", @@ -74918,7 +70313,7 @@ } }, { - "id": 12633, + "id": 11556, "properties": { "facing": "west", "half": "top", @@ -74927,7 +70322,7 @@ } }, { - "id": 12634, + "id": 11557, "properties": { "facing": "west", "half": "top", @@ -74936,7 +70331,7 @@ } }, { - "id": 12635, + "id": 11558, "properties": { "facing": "west", "half": "top", @@ -74945,7 +70340,7 @@ } }, { - "id": 12636, + "id": 11559, "properties": { "facing": "west", "half": "top", @@ -74954,7 +70349,7 @@ } }, { - "id": 12637, + "id": 11560, "properties": { "facing": "west", "half": "top", @@ -74963,7 +70358,7 @@ } }, { - "id": 12638, + "id": 11561, "properties": { "facing": "west", "half": "top", @@ -74972,7 +70367,7 @@ } }, { - "id": 12639, + "id": 11562, "properties": { "facing": "west", "half": "top", @@ -74981,7 +70376,7 @@ } }, { - "id": 12640, + "id": 11563, "properties": { "facing": "west", "half": "top", @@ -74990,7 +70385,7 @@ } }, { - "id": 12641, + "id": 11564, "properties": { "facing": "west", "half": "top", @@ -74999,7 +70394,7 @@ } }, { - "id": 12642, + "id": 11565, "properties": { "facing": "west", "half": "bottom", @@ -75008,7 +70403,7 @@ } }, { - "id": 12643, + "id": 11566, "properties": { "facing": "west", "half": "bottom", @@ -75017,7 +70412,7 @@ } }, { - "id": 12644, + "id": 11567, "properties": { "facing": "west", "half": "bottom", @@ -75026,7 +70421,7 @@ } }, { - "id": 12645, + "id": 11568, "properties": { "facing": "west", "half": "bottom", @@ -75035,7 +70430,7 @@ } }, { - "id": 12646, + "id": 11569, "properties": { "facing": "west", "half": "bottom", @@ -75044,7 +70439,7 @@ } }, { - "id": 12647, + "id": 11570, "properties": { "facing": "west", "half": "bottom", @@ -75053,7 +70448,7 @@ } }, { - "id": 12648, + "id": 11571, "properties": { "facing": "west", "half": "bottom", @@ -75062,7 +70457,7 @@ } }, { - "id": 12649, + "id": 11572, "properties": { "facing": "west", "half": "bottom", @@ -75071,7 +70466,7 @@ } }, { - "id": 12650, + "id": 11573, "properties": { "facing": "west", "half": "bottom", @@ -75080,7 +70475,7 @@ } }, { - "id": 12651, + "id": 11574, "properties": { "facing": "west", "half": "bottom", @@ -75089,7 +70484,7 @@ } }, { - "id": 12652, + "id": 11575, "properties": { "facing": "east", "half": "top", @@ -75098,7 +70493,7 @@ } }, { - "id": 12653, + "id": 11576, "properties": { "facing": "east", "half": "top", @@ -75107,7 +70502,7 @@ } }, { - "id": 12654, + "id": 11577, "properties": { "facing": "east", "half": "top", @@ -75116,7 +70511,7 @@ } }, { - "id": 12655, + "id": 11578, "properties": { "facing": "east", "half": "top", @@ -75125,7 +70520,7 @@ } }, { - "id": 12656, + "id": 11579, "properties": { "facing": "east", "half": "top", @@ -75134,7 +70529,7 @@ } }, { - "id": 12657, + "id": 11580, "properties": { "facing": "east", "half": "top", @@ -75143,7 +70538,7 @@ } }, { - "id": 12658, + "id": 11581, "properties": { "facing": "east", "half": "top", @@ -75152,7 +70547,7 @@ } }, { - "id": 12659, + "id": 11582, "properties": { "facing": "east", "half": "top", @@ -75161,7 +70556,7 @@ } }, { - "id": 12660, + "id": 11583, "properties": { "facing": "east", "half": "top", @@ -75170,7 +70565,7 @@ } }, { - "id": 12661, + "id": 11584, "properties": { "facing": "east", "half": "top", @@ -75179,7 +70574,7 @@ } }, { - "id": 12662, + "id": 11585, "properties": { "facing": "east", "half": "bottom", @@ -75188,7 +70583,7 @@ } }, { - "id": 12663, + "id": 11586, "properties": { "facing": "east", "half": "bottom", @@ -75197,7 +70592,7 @@ } }, { - "id": 12664, + "id": 11587, "properties": { "facing": "east", "half": "bottom", @@ -75206,7 +70601,7 @@ } }, { - "id": 12665, + "id": 11588, "properties": { "facing": "east", "half": "bottom", @@ -75215,7 +70610,7 @@ } }, { - "id": 12666, + "id": 11589, "properties": { "facing": "east", "half": "bottom", @@ -75224,7 +70619,7 @@ } }, { - "id": 12667, + "id": 11590, "properties": { "facing": "east", "half": "bottom", @@ -75233,7 +70628,7 @@ } }, { - "id": 12668, + "id": 11591, "properties": { "facing": "east", "half": "bottom", @@ -75242,7 +70637,7 @@ } }, { - "id": 12669, + "id": 11592, "properties": { "facing": "east", "half": "bottom", @@ -75251,7 +70646,7 @@ } }, { - "id": 12670, + "id": 11593, "properties": { "facing": "east", "half": "bottom", @@ -75260,7 +70655,7 @@ } }, { - "id": 12671, + "id": 11594, "properties": { "facing": "east", "half": "bottom", @@ -75301,112 +70696,112 @@ }, "states": [ { - "id": 11077, + "id": 10000, "properties": { "inverted": "true", "power": "0" } }, { - "id": 11078, + "id": 10001, "properties": { "inverted": "true", "power": "1" } }, { - "id": 11079, + "id": 10002, "properties": { "inverted": "true", "power": "2" } }, { - "id": 11080, + "id": 10003, "properties": { "inverted": "true", "power": "3" } }, { - "id": 11081, + "id": 10004, "properties": { "inverted": "true", "power": "4" } }, { - "id": 11082, + "id": 10005, "properties": { "inverted": "true", "power": "5" } }, { - "id": 11083, + "id": 10006, "properties": { "inverted": "true", "power": "6" } }, { - "id": 11084, + "id": 10007, "properties": { "inverted": "true", "power": "7" } }, { - "id": 11085, + "id": 10008, "properties": { "inverted": "true", "power": "8" } }, { - "id": 11086, + "id": 10009, "properties": { "inverted": "true", "power": "9" } }, { - "id": 11087, + "id": 10010, "properties": { "inverted": "true", "power": "10" } }, { - "id": 11088, + "id": 10011, "properties": { "inverted": "true", "power": "11" } }, { - "id": 11089, + "id": 10012, "properties": { "inverted": "true", "power": "12" } }, { - "id": 11090, + "id": 10013, "properties": { "inverted": "true", "power": "13" } }, { - "id": 11091, + "id": 10014, "properties": { "inverted": "true", "power": "14" } }, { - "id": 11092, + "id": 10015, "properties": { "inverted": "true", "power": "15" @@ -75414,112 +70809,112 @@ }, { "default": true, - "id": 11093, + "id": 10016, "properties": { "inverted": "false", "power": "0" } }, { - "id": 11094, + "id": 10017, "properties": { "inverted": "false", "power": "1" } }, { - "id": 11095, + "id": 10018, "properties": { "inverted": "false", "power": "2" } }, { - "id": 11096, + "id": 10019, "properties": { "inverted": "false", "power": "3" } }, { - "id": 11097, + "id": 10020, "properties": { "inverted": "false", "power": "4" } }, { - "id": 11098, + "id": 10021, "properties": { "inverted": "false", "power": "5" } }, { - "id": 11099, + "id": 10022, "properties": { "inverted": "false", "power": "6" } }, { - "id": 11100, + "id": 10023, "properties": { "inverted": "false", "power": "7" } }, { - "id": 11101, + "id": 10024, "properties": { "inverted": "false", "power": "8" } }, { - "id": 11102, + "id": 10025, "properties": { "inverted": "false", "power": "9" } }, { - "id": 11103, + "id": 10026, "properties": { "inverted": "false", "power": "10" } }, { - "id": 11104, + "id": 10027, "properties": { "inverted": "false", "power": "11" } }, { - "id": 11105, + "id": 10028, "properties": { "inverted": "false", "power": "12" } }, { - "id": 11106, + "id": 10029, "properties": { "inverted": "false", "power": "13" } }, { - "id": 11107, + "id": 10030, "properties": { "inverted": "false", "power": "14" } }, { - "id": 11108, + "id": 10031, "properties": { "inverted": "false", "power": "15" @@ -75541,13 +70936,13 @@ "states": [ { "default": true, - "id": 14947, + "id": 13838, "properties": { "waterlogged": "true" } }, { - "id": 14948, + "id": 13839, "properties": { "waterlogged": "false" } @@ -75562,7 +70957,7 @@ "states": [ { "default": true, - "id": 14936 + "id": 13827 } ] }, @@ -75580,13 +70975,13 @@ "states": [ { "default": true, - "id": 14967, + "id": 13858, "properties": { "waterlogged": "true" } }, { - "id": 14968, + "id": 13859, "properties": { "waterlogged": "false" } @@ -75613,56 +71008,56 @@ "states": [ { "default": true, - "id": 14993, + "id": 13884, "properties": { "facing": "north", "waterlogged": "true" } }, { - "id": 14994, + "id": 13885, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 14995, + "id": 13886, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 14996, + "id": 13887, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 14997, + "id": 13888, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 14998, + "id": 13889, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 14999, + "id": 13890, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 15000, + "id": 13891, "properties": { "facing": "east", "waterlogged": "false" @@ -75684,13 +71079,13 @@ "states": [ { "default": true, - "id": 14949, + "id": 13840, "properties": { "waterlogged": "true" } }, { - "id": 14950, + "id": 13841, "properties": { "waterlogged": "false" } @@ -75705,7 +71100,7 @@ "states": [ { "default": true, - "id": 14937 + "id": 13828 } ] }, @@ -75723,13 +71118,13 @@ "states": [ { "default": true, - "id": 14969, + "id": 13860, "properties": { "waterlogged": "true" } }, { - "id": 14970, + "id": 13861, "properties": { "waterlogged": "false" } @@ -75756,56 +71151,56 @@ "states": [ { "default": true, - "id": 15001, + "id": 13892, "properties": { "facing": "north", "waterlogged": "true" } }, { - "id": 15002, + "id": 13893, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 15003, + "id": 13894, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 15004, + "id": 13895, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 15005, + "id": 13896, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 15006, + "id": 13897, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 15007, + "id": 13898, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 15008, + "id": 13899, "properties": { "facing": "east", "waterlogged": "false" @@ -75839,13 +71234,13 @@ "states": [ { "default": true, - "id": 14951, + "id": 13842, "properties": { "waterlogged": "true" } }, { - "id": 14952, + "id": 13843, "properties": { "waterlogged": "false" } @@ -75860,7 +71255,7 @@ "states": [ { "default": true, - "id": 14938 + "id": 13829 } ] }, @@ -75878,13 +71273,13 @@ "states": [ { "default": true, - "id": 14971, + "id": 13862, "properties": { "waterlogged": "true" } }, { - "id": 14972, + "id": 13863, "properties": { "waterlogged": "false" } @@ -75911,56 +71306,56 @@ "states": [ { "default": true, - "id": 15009, + "id": 13900, "properties": { "facing": "north", "waterlogged": "true" } }, { - "id": 15010, + "id": 13901, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 15011, + "id": 13902, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 15012, + "id": 13903, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 15013, + "id": 13904, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 15014, + "id": 13905, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 15015, + "id": 13906, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 15016, + "id": 13907, "properties": { "facing": "east", "waterlogged": "false" @@ -75982,13 +71377,13 @@ "states": [ { "default": true, - "id": 14953, + "id": 13844, "properties": { "waterlogged": "true" } }, { - "id": 14954, + "id": 13845, "properties": { "waterlogged": "false" } @@ -76003,7 +71398,7 @@ "states": [ { "default": true, - "id": 14939 + "id": 13830 } ] }, @@ -76021,13 +71416,13 @@ "states": [ { "default": true, - "id": 14973, + "id": 13864, "properties": { "waterlogged": "true" } }, { - "id": 14974, + "id": 13865, "properties": { "waterlogged": "false" } @@ -76054,56 +71449,56 @@ "states": [ { "default": true, - "id": 15017, + "id": 13908, "properties": { "facing": "north", "waterlogged": "true" } }, { - "id": 15018, + "id": 13909, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 15019, + "id": 13910, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 15020, + "id": 13911, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 15021, + "id": 13912, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 15022, + "id": 13913, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 15023, + "id": 13914, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 15024, + "id": 13915, "properties": { "facing": "east", "waterlogged": "false" @@ -76125,13 +71520,13 @@ "states": [ { "default": true, - "id": 14945, + "id": 13836, "properties": { "waterlogged": "true" } }, { - "id": 14946, + "id": 13837, "properties": { "waterlogged": "false" } @@ -76146,7 +71541,7 @@ "states": [ { "default": true, - "id": 14935 + "id": 13826 } ] }, @@ -76164,13 +71559,13 @@ "states": [ { "default": true, - "id": 14965, + "id": 13856, "properties": { "waterlogged": "true" } }, { - "id": 14966, + "id": 13857, "properties": { "waterlogged": "false" } @@ -76197,56 +71592,56 @@ "states": [ { "default": true, - "id": 14985, + "id": 13876, "properties": { "facing": "north", "waterlogged": "true" } }, { - "id": 14986, + "id": 13877, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 14987, + "id": 13878, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 14988, + "id": 13879, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 14989, + "id": 13880, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 14990, + "id": 13881, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 14991, + "id": 13882, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 14992, + "id": 13883, "properties": { "facing": "east", "waterlogged": "false" @@ -76277,7 +71672,7 @@ }, "states": [ { - "id": 29391, + "id": 27634, "properties": { "cracked": "true", "facing": "north", @@ -76285,7 +71680,7 @@ } }, { - "id": 29392, + "id": 27635, "properties": { "cracked": "true", "facing": "north", @@ -76293,7 +71688,7 @@ } }, { - "id": 29393, + "id": 27636, "properties": { "cracked": "true", "facing": "south", @@ -76301,7 +71696,7 @@ } }, { - "id": 29394, + "id": 27637, "properties": { "cracked": "true", "facing": "south", @@ -76309,7 +71704,7 @@ } }, { - "id": 29395, + "id": 27638, "properties": { "cracked": "true", "facing": "west", @@ -76317,7 +71712,7 @@ } }, { - "id": 29396, + "id": 27639, "properties": { "cracked": "true", "facing": "west", @@ -76325,7 +71720,7 @@ } }, { - "id": 29397, + "id": 27640, "properties": { "cracked": "true", "facing": "east", @@ -76333,7 +71728,7 @@ } }, { - "id": 29398, + "id": 27641, "properties": { "cracked": "true", "facing": "east", @@ -76341,7 +71736,7 @@ } }, { - "id": 29399, + "id": 27642, "properties": { "cracked": "false", "facing": "north", @@ -76350,7 +71745,7 @@ }, { "default": true, - "id": 29400, + "id": 27643, "properties": { "cracked": "false", "facing": "north", @@ -76358,7 +71753,7 @@ } }, { - "id": 29401, + "id": 27644, "properties": { "cracked": "false", "facing": "south", @@ -76366,7 +71761,7 @@ } }, { - "id": 29402, + "id": 27645, "properties": { "cracked": "false", "facing": "south", @@ -76374,7 +71769,7 @@ } }, { - "id": 29403, + "id": 27646, "properties": { "cracked": "false", "facing": "west", @@ -76382,7 +71777,7 @@ } }, { - "id": 29404, + "id": 27647, "properties": { "cracked": "false", "facing": "west", @@ -76390,7 +71785,7 @@ } }, { - "id": 29405, + "id": 27648, "properties": { "cracked": "false", "facing": "east", @@ -76398,7 +71793,7 @@ } }, { - "id": 29406, + "id": 27649, "properties": { "cracked": "false", "facing": "east", @@ -76421,20 +71816,20 @@ }, "states": [ { - "id": 27721, + "id": 25964, "properties": { "axis": "x" } }, { "default": true, - "id": 27722, + "id": 25965, "properties": { "axis": "y" } }, { - "id": 27723, + "id": 25966, "properties": { "axis": "z" } @@ -76459,21 +71854,21 @@ }, "states": [ { - "id": 29038, + "id": 27281, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 29039, + "id": 27282, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 29040, + "id": 27283, "properties": { "type": "bottom", "waterlogged": "true" @@ -76481,21 +71876,21 @@ }, { "default": true, - "id": 29041, + "id": 27284, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 29042, + "id": 27285, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 29043, + "id": 27286, "properties": { "type": "double", "waterlogged": "false" @@ -76536,7 +71931,7 @@ }, "states": [ { - "id": 28958, + "id": 27201, "properties": { "facing": "north", "half": "top", @@ -76545,7 +71940,7 @@ } }, { - "id": 28959, + "id": 27202, "properties": { "facing": "north", "half": "top", @@ -76554,7 +71949,7 @@ } }, { - "id": 28960, + "id": 27203, "properties": { "facing": "north", "half": "top", @@ -76563,7 +71958,7 @@ } }, { - "id": 28961, + "id": 27204, "properties": { "facing": "north", "half": "top", @@ -76572,7 +71967,7 @@ } }, { - "id": 28962, + "id": 27205, "properties": { "facing": "north", "half": "top", @@ -76581,7 +71976,7 @@ } }, { - "id": 28963, + "id": 27206, "properties": { "facing": "north", "half": "top", @@ -76590,7 +71985,7 @@ } }, { - "id": 28964, + "id": 27207, "properties": { "facing": "north", "half": "top", @@ -76599,7 +71994,7 @@ } }, { - "id": 28965, + "id": 27208, "properties": { "facing": "north", "half": "top", @@ -76608,7 +72003,7 @@ } }, { - "id": 28966, + "id": 27209, "properties": { "facing": "north", "half": "top", @@ -76617,7 +72012,7 @@ } }, { - "id": 28967, + "id": 27210, "properties": { "facing": "north", "half": "top", @@ -76626,7 +72021,7 @@ } }, { - "id": 28968, + "id": 27211, "properties": { "facing": "north", "half": "bottom", @@ -76636,7 +72031,7 @@ }, { "default": true, - "id": 28969, + "id": 27212, "properties": { "facing": "north", "half": "bottom", @@ -76645,7 +72040,7 @@ } }, { - "id": 28970, + "id": 27213, "properties": { "facing": "north", "half": "bottom", @@ -76654,7 +72049,7 @@ } }, { - "id": 28971, + "id": 27214, "properties": { "facing": "north", "half": "bottom", @@ -76663,7 +72058,7 @@ } }, { - "id": 28972, + "id": 27215, "properties": { "facing": "north", "half": "bottom", @@ -76672,7 +72067,7 @@ } }, { - "id": 28973, + "id": 27216, "properties": { "facing": "north", "half": "bottom", @@ -76681,7 +72076,7 @@ } }, { - "id": 28974, + "id": 27217, "properties": { "facing": "north", "half": "bottom", @@ -76690,7 +72085,7 @@ } }, { - "id": 28975, + "id": 27218, "properties": { "facing": "north", "half": "bottom", @@ -76699,7 +72094,7 @@ } }, { - "id": 28976, + "id": 27219, "properties": { "facing": "north", "half": "bottom", @@ -76708,7 +72103,7 @@ } }, { - "id": 28977, + "id": 27220, "properties": { "facing": "north", "half": "bottom", @@ -76717,7 +72112,7 @@ } }, { - "id": 28978, + "id": 27221, "properties": { "facing": "south", "half": "top", @@ -76726,7 +72121,7 @@ } }, { - "id": 28979, + "id": 27222, "properties": { "facing": "south", "half": "top", @@ -76735,7 +72130,7 @@ } }, { - "id": 28980, + "id": 27223, "properties": { "facing": "south", "half": "top", @@ -76744,7 +72139,7 @@ } }, { - "id": 28981, + "id": 27224, "properties": { "facing": "south", "half": "top", @@ -76753,7 +72148,7 @@ } }, { - "id": 28982, + "id": 27225, "properties": { "facing": "south", "half": "top", @@ -76762,7 +72157,7 @@ } }, { - "id": 28983, + "id": 27226, "properties": { "facing": "south", "half": "top", @@ -76771,7 +72166,7 @@ } }, { - "id": 28984, + "id": 27227, "properties": { "facing": "south", "half": "top", @@ -76780,7 +72175,7 @@ } }, { - "id": 28985, + "id": 27228, "properties": { "facing": "south", "half": "top", @@ -76789,7 +72184,7 @@ } }, { - "id": 28986, + "id": 27229, "properties": { "facing": "south", "half": "top", @@ -76798,7 +72193,7 @@ } }, { - "id": 28987, + "id": 27230, "properties": { "facing": "south", "half": "top", @@ -76807,7 +72202,7 @@ } }, { - "id": 28988, + "id": 27231, "properties": { "facing": "south", "half": "bottom", @@ -76816,7 +72211,7 @@ } }, { - "id": 28989, + "id": 27232, "properties": { "facing": "south", "half": "bottom", @@ -76825,7 +72220,7 @@ } }, { - "id": 28990, + "id": 27233, "properties": { "facing": "south", "half": "bottom", @@ -76834,7 +72229,7 @@ } }, { - "id": 28991, + "id": 27234, "properties": { "facing": "south", "half": "bottom", @@ -76843,7 +72238,7 @@ } }, { - "id": 28992, + "id": 27235, "properties": { "facing": "south", "half": "bottom", @@ -76852,7 +72247,7 @@ } }, { - "id": 28993, + "id": 27236, "properties": { "facing": "south", "half": "bottom", @@ -76861,7 +72256,7 @@ } }, { - "id": 28994, + "id": 27237, "properties": { "facing": "south", "half": "bottom", @@ -76870,7 +72265,7 @@ } }, { - "id": 28995, + "id": 27238, "properties": { "facing": "south", "half": "bottom", @@ -76879,7 +72274,7 @@ } }, { - "id": 28996, + "id": 27239, "properties": { "facing": "south", "half": "bottom", @@ -76888,7 +72283,7 @@ } }, { - "id": 28997, + "id": 27240, "properties": { "facing": "south", "half": "bottom", @@ -76897,7 +72292,7 @@ } }, { - "id": 28998, + "id": 27241, "properties": { "facing": "west", "half": "top", @@ -76906,7 +72301,7 @@ } }, { - "id": 28999, + "id": 27242, "properties": { "facing": "west", "half": "top", @@ -76915,7 +72310,7 @@ } }, { - "id": 29000, + "id": 27243, "properties": { "facing": "west", "half": "top", @@ -76924,7 +72319,7 @@ } }, { - "id": 29001, + "id": 27244, "properties": { "facing": "west", "half": "top", @@ -76933,7 +72328,7 @@ } }, { - "id": 29002, + "id": 27245, "properties": { "facing": "west", "half": "top", @@ -76942,7 +72337,7 @@ } }, { - "id": 29003, + "id": 27246, "properties": { "facing": "west", "half": "top", @@ -76951,7 +72346,7 @@ } }, { - "id": 29004, + "id": 27247, "properties": { "facing": "west", "half": "top", @@ -76960,7 +72355,7 @@ } }, { - "id": 29005, + "id": 27248, "properties": { "facing": "west", "half": "top", @@ -76969,7 +72364,7 @@ } }, { - "id": 29006, + "id": 27249, "properties": { "facing": "west", "half": "top", @@ -76978,7 +72373,7 @@ } }, { - "id": 29007, + "id": 27250, "properties": { "facing": "west", "half": "top", @@ -76987,7 +72382,7 @@ } }, { - "id": 29008, + "id": 27251, "properties": { "facing": "west", "half": "bottom", @@ -76996,7 +72391,7 @@ } }, { - "id": 29009, + "id": 27252, "properties": { "facing": "west", "half": "bottom", @@ -77005,7 +72400,7 @@ } }, { - "id": 29010, + "id": 27253, "properties": { "facing": "west", "half": "bottom", @@ -77014,7 +72409,7 @@ } }, { - "id": 29011, + "id": 27254, "properties": { "facing": "west", "half": "bottom", @@ -77023,7 +72418,7 @@ } }, { - "id": 29012, + "id": 27255, "properties": { "facing": "west", "half": "bottom", @@ -77032,7 +72427,7 @@ } }, { - "id": 29013, + "id": 27256, "properties": { "facing": "west", "half": "bottom", @@ -77041,7 +72436,7 @@ } }, { - "id": 29014, + "id": 27257, "properties": { "facing": "west", "half": "bottom", @@ -77050,7 +72445,7 @@ } }, { - "id": 29015, + "id": 27258, "properties": { "facing": "west", "half": "bottom", @@ -77059,7 +72454,7 @@ } }, { - "id": 29016, + "id": 27259, "properties": { "facing": "west", "half": "bottom", @@ -77068,7 +72463,7 @@ } }, { - "id": 29017, + "id": 27260, "properties": { "facing": "west", "half": "bottom", @@ -77077,7 +72472,7 @@ } }, { - "id": 29018, + "id": 27261, "properties": { "facing": "east", "half": "top", @@ -77086,7 +72481,7 @@ } }, { - "id": 29019, + "id": 27262, "properties": { "facing": "east", "half": "top", @@ -77095,7 +72490,7 @@ } }, { - "id": 29020, + "id": 27263, "properties": { "facing": "east", "half": "top", @@ -77104,7 +72499,7 @@ } }, { - "id": 29021, + "id": 27264, "properties": { "facing": "east", "half": "top", @@ -77113,7 +72508,7 @@ } }, { - "id": 29022, + "id": 27265, "properties": { "facing": "east", "half": "top", @@ -77122,7 +72517,7 @@ } }, { - "id": 29023, + "id": 27266, "properties": { "facing": "east", "half": "top", @@ -77131,7 +72526,7 @@ } }, { - "id": 29024, + "id": 27267, "properties": { "facing": "east", "half": "top", @@ -77140,7 +72535,7 @@ } }, { - "id": 29025, + "id": 27268, "properties": { "facing": "east", "half": "top", @@ -77149,7 +72544,7 @@ } }, { - "id": 29026, + "id": 27269, "properties": { "facing": "east", "half": "top", @@ -77158,7 +72553,7 @@ } }, { - "id": 29027, + "id": 27270, "properties": { "facing": "east", "half": "top", @@ -77167,7 +72562,7 @@ } }, { - "id": 29028, + "id": 27271, "properties": { "facing": "east", "half": "bottom", @@ -77176,7 +72571,7 @@ } }, { - "id": 29029, + "id": 27272, "properties": { "facing": "east", "half": "bottom", @@ -77185,7 +72580,7 @@ } }, { - "id": 29030, + "id": 27273, "properties": { "facing": "east", "half": "bottom", @@ -77194,7 +72589,7 @@ } }, { - "id": 29031, + "id": 27274, "properties": { "facing": "east", "half": "bottom", @@ -77203,7 +72598,7 @@ } }, { - "id": 29032, + "id": 27275, "properties": { "facing": "east", "half": "bottom", @@ -77212,7 +72607,7 @@ } }, { - "id": 29033, + "id": 27276, "properties": { "facing": "east", "half": "bottom", @@ -77221,7 +72616,7 @@ } }, { - "id": 29034, + "id": 27277, "properties": { "facing": "east", "half": "bottom", @@ -77230,7 +72625,7 @@ } }, { - "id": 29035, + "id": 27278, "properties": { "facing": "east", "half": "bottom", @@ -77239,7 +72634,7 @@ } }, { - "id": 29036, + "id": 27279, "properties": { "facing": "east", "half": "bottom", @@ -77248,7 +72643,7 @@ } }, { - "id": 29037, + "id": 27280, "properties": { "facing": "east", "half": "bottom", @@ -77295,7 +72690,7 @@ }, "states": [ { - "id": 29044, + "id": 27287, "properties": { "east": "none", "north": "none", @@ -77306,7 +72701,7 @@ } }, { - "id": 29045, + "id": 27288, "properties": { "east": "none", "north": "none", @@ -77317,7 +72712,7 @@ } }, { - "id": 29046, + "id": 27289, "properties": { "east": "none", "north": "none", @@ -77329,7 +72724,7 @@ }, { "default": true, - "id": 29047, + "id": 27290, "properties": { "east": "none", "north": "none", @@ -77340,7 +72735,7 @@ } }, { - "id": 29048, + "id": 27291, "properties": { "east": "none", "north": "none", @@ -77351,7 +72746,7 @@ } }, { - "id": 29049, + "id": 27292, "properties": { "east": "none", "north": "none", @@ -77362,7 +72757,7 @@ } }, { - "id": 29050, + "id": 27293, "properties": { "east": "none", "north": "none", @@ -77373,7 +72768,7 @@ } }, { - "id": 29051, + "id": 27294, "properties": { "east": "none", "north": "none", @@ -77384,7 +72779,7 @@ } }, { - "id": 29052, + "id": 27295, "properties": { "east": "none", "north": "none", @@ -77395,7 +72790,7 @@ } }, { - "id": 29053, + "id": 27296, "properties": { "east": "none", "north": "none", @@ -77406,7 +72801,7 @@ } }, { - "id": 29054, + "id": 27297, "properties": { "east": "none", "north": "none", @@ -77417,7 +72812,7 @@ } }, { - "id": 29055, + "id": 27298, "properties": { "east": "none", "north": "none", @@ -77428,7 +72823,7 @@ } }, { - "id": 29056, + "id": 27299, "properties": { "east": "none", "north": "none", @@ -77439,7 +72834,7 @@ } }, { - "id": 29057, + "id": 27300, "properties": { "east": "none", "north": "none", @@ -77450,7 +72845,7 @@ } }, { - "id": 29058, + "id": 27301, "properties": { "east": "none", "north": "none", @@ -77461,7 +72856,7 @@ } }, { - "id": 29059, + "id": 27302, "properties": { "east": "none", "north": "none", @@ -77472,7 +72867,7 @@ } }, { - "id": 29060, + "id": 27303, "properties": { "east": "none", "north": "none", @@ -77483,7 +72878,7 @@ } }, { - "id": 29061, + "id": 27304, "properties": { "east": "none", "north": "none", @@ -77494,7 +72889,7 @@ } }, { - "id": 29062, + "id": 27305, "properties": { "east": "none", "north": "none", @@ -77505,7 +72900,7 @@ } }, { - "id": 29063, + "id": 27306, "properties": { "east": "none", "north": "none", @@ -77516,7 +72911,7 @@ } }, { - "id": 29064, + "id": 27307, "properties": { "east": "none", "north": "none", @@ -77527,7 +72922,7 @@ } }, { - "id": 29065, + "id": 27308, "properties": { "east": "none", "north": "none", @@ -77538,7 +72933,7 @@ } }, { - "id": 29066, + "id": 27309, "properties": { "east": "none", "north": "none", @@ -77549,7 +72944,7 @@ } }, { - "id": 29067, + "id": 27310, "properties": { "east": "none", "north": "none", @@ -77560,7 +72955,7 @@ } }, { - "id": 29068, + "id": 27311, "properties": { "east": "none", "north": "none", @@ -77571,7 +72966,7 @@ } }, { - "id": 29069, + "id": 27312, "properties": { "east": "none", "north": "none", @@ -77582,7 +72977,7 @@ } }, { - "id": 29070, + "id": 27313, "properties": { "east": "none", "north": "none", @@ -77593,7 +72988,7 @@ } }, { - "id": 29071, + "id": 27314, "properties": { "east": "none", "north": "none", @@ -77604,7 +72999,7 @@ } }, { - "id": 29072, + "id": 27315, "properties": { "east": "none", "north": "none", @@ -77615,7 +73010,7 @@ } }, { - "id": 29073, + "id": 27316, "properties": { "east": "none", "north": "none", @@ -77626,7 +73021,7 @@ } }, { - "id": 29074, + "id": 27317, "properties": { "east": "none", "north": "none", @@ -77637,7 +73032,7 @@ } }, { - "id": 29075, + "id": 27318, "properties": { "east": "none", "north": "none", @@ -77648,7 +73043,7 @@ } }, { - "id": 29076, + "id": 27319, "properties": { "east": "none", "north": "none", @@ -77659,7 +73054,7 @@ } }, { - "id": 29077, + "id": 27320, "properties": { "east": "none", "north": "none", @@ -77670,7 +73065,7 @@ } }, { - "id": 29078, + "id": 27321, "properties": { "east": "none", "north": "none", @@ -77681,7 +73076,7 @@ } }, { - "id": 29079, + "id": 27322, "properties": { "east": "none", "north": "none", @@ -77692,7 +73087,7 @@ } }, { - "id": 29080, + "id": 27323, "properties": { "east": "none", "north": "low", @@ -77703,7 +73098,7 @@ } }, { - "id": 29081, + "id": 27324, "properties": { "east": "none", "north": "low", @@ -77714,7 +73109,7 @@ } }, { - "id": 29082, + "id": 27325, "properties": { "east": "none", "north": "low", @@ -77725,7 +73120,7 @@ } }, { - "id": 29083, + "id": 27326, "properties": { "east": "none", "north": "low", @@ -77736,7 +73131,7 @@ } }, { - "id": 29084, + "id": 27327, "properties": { "east": "none", "north": "low", @@ -77747,7 +73142,7 @@ } }, { - "id": 29085, + "id": 27328, "properties": { "east": "none", "north": "low", @@ -77758,7 +73153,7 @@ } }, { - "id": 29086, + "id": 27329, "properties": { "east": "none", "north": "low", @@ -77769,7 +73164,7 @@ } }, { - "id": 29087, + "id": 27330, "properties": { "east": "none", "north": "low", @@ -77780,7 +73175,7 @@ } }, { - "id": 29088, + "id": 27331, "properties": { "east": "none", "north": "low", @@ -77791,7 +73186,7 @@ } }, { - "id": 29089, + "id": 27332, "properties": { "east": "none", "north": "low", @@ -77802,7 +73197,7 @@ } }, { - "id": 29090, + "id": 27333, "properties": { "east": "none", "north": "low", @@ -77813,7 +73208,7 @@ } }, { - "id": 29091, + "id": 27334, "properties": { "east": "none", "north": "low", @@ -77824,7 +73219,7 @@ } }, { - "id": 29092, + "id": 27335, "properties": { "east": "none", "north": "low", @@ -77835,7 +73230,7 @@ } }, { - "id": 29093, + "id": 27336, "properties": { "east": "none", "north": "low", @@ -77846,7 +73241,7 @@ } }, { - "id": 29094, + "id": 27337, "properties": { "east": "none", "north": "low", @@ -77857,7 +73252,7 @@ } }, { - "id": 29095, + "id": 27338, "properties": { "east": "none", "north": "low", @@ -77868,7 +73263,7 @@ } }, { - "id": 29096, + "id": 27339, "properties": { "east": "none", "north": "low", @@ -77879,7 +73274,7 @@ } }, { - "id": 29097, + "id": 27340, "properties": { "east": "none", "north": "low", @@ -77890,7 +73285,7 @@ } }, { - "id": 29098, + "id": 27341, "properties": { "east": "none", "north": "low", @@ -77901,7 +73296,7 @@ } }, { - "id": 29099, + "id": 27342, "properties": { "east": "none", "north": "low", @@ -77912,7 +73307,7 @@ } }, { - "id": 29100, + "id": 27343, "properties": { "east": "none", "north": "low", @@ -77923,7 +73318,7 @@ } }, { - "id": 29101, + "id": 27344, "properties": { "east": "none", "north": "low", @@ -77934,7 +73329,7 @@ } }, { - "id": 29102, + "id": 27345, "properties": { "east": "none", "north": "low", @@ -77945,7 +73340,7 @@ } }, { - "id": 29103, + "id": 27346, "properties": { "east": "none", "north": "low", @@ -77956,7 +73351,7 @@ } }, { - "id": 29104, + "id": 27347, "properties": { "east": "none", "north": "low", @@ -77967,7 +73362,7 @@ } }, { - "id": 29105, + "id": 27348, "properties": { "east": "none", "north": "low", @@ -77978,7 +73373,7 @@ } }, { - "id": 29106, + "id": 27349, "properties": { "east": "none", "north": "low", @@ -77989,7 +73384,7 @@ } }, { - "id": 29107, + "id": 27350, "properties": { "east": "none", "north": "low", @@ -78000,7 +73395,7 @@ } }, { - "id": 29108, + "id": 27351, "properties": { "east": "none", "north": "low", @@ -78011,7 +73406,7 @@ } }, { - "id": 29109, + "id": 27352, "properties": { "east": "none", "north": "low", @@ -78022,7 +73417,7 @@ } }, { - "id": 29110, + "id": 27353, "properties": { "east": "none", "north": "low", @@ -78033,7 +73428,7 @@ } }, { - "id": 29111, + "id": 27354, "properties": { "east": "none", "north": "low", @@ -78044,7 +73439,7 @@ } }, { - "id": 29112, + "id": 27355, "properties": { "east": "none", "north": "low", @@ -78055,7 +73450,7 @@ } }, { - "id": 29113, + "id": 27356, "properties": { "east": "none", "north": "low", @@ -78066,7 +73461,7 @@ } }, { - "id": 29114, + "id": 27357, "properties": { "east": "none", "north": "low", @@ -78077,7 +73472,7 @@ } }, { - "id": 29115, + "id": 27358, "properties": { "east": "none", "north": "low", @@ -78088,7 +73483,7 @@ } }, { - "id": 29116, + "id": 27359, "properties": { "east": "none", "north": "tall", @@ -78099,7 +73494,7 @@ } }, { - "id": 29117, + "id": 27360, "properties": { "east": "none", "north": "tall", @@ -78110,7 +73505,7 @@ } }, { - "id": 29118, + "id": 27361, "properties": { "east": "none", "north": "tall", @@ -78121,7 +73516,7 @@ } }, { - "id": 29119, + "id": 27362, "properties": { "east": "none", "north": "tall", @@ -78132,7 +73527,7 @@ } }, { - "id": 29120, + "id": 27363, "properties": { "east": "none", "north": "tall", @@ -78143,7 +73538,7 @@ } }, { - "id": 29121, + "id": 27364, "properties": { "east": "none", "north": "tall", @@ -78154,7 +73549,7 @@ } }, { - "id": 29122, + "id": 27365, "properties": { "east": "none", "north": "tall", @@ -78165,7 +73560,7 @@ } }, { - "id": 29123, + "id": 27366, "properties": { "east": "none", "north": "tall", @@ -78176,7 +73571,7 @@ } }, { - "id": 29124, + "id": 27367, "properties": { "east": "none", "north": "tall", @@ -78187,7 +73582,7 @@ } }, { - "id": 29125, + "id": 27368, "properties": { "east": "none", "north": "tall", @@ -78198,7 +73593,7 @@ } }, { - "id": 29126, + "id": 27369, "properties": { "east": "none", "north": "tall", @@ -78209,7 +73604,7 @@ } }, { - "id": 29127, + "id": 27370, "properties": { "east": "none", "north": "tall", @@ -78220,7 +73615,7 @@ } }, { - "id": 29128, + "id": 27371, "properties": { "east": "none", "north": "tall", @@ -78231,7 +73626,7 @@ } }, { - "id": 29129, + "id": 27372, "properties": { "east": "none", "north": "tall", @@ -78242,7 +73637,7 @@ } }, { - "id": 29130, + "id": 27373, "properties": { "east": "none", "north": "tall", @@ -78253,7 +73648,7 @@ } }, { - "id": 29131, + "id": 27374, "properties": { "east": "none", "north": "tall", @@ -78264,7 +73659,7 @@ } }, { - "id": 29132, + "id": 27375, "properties": { "east": "none", "north": "tall", @@ -78275,7 +73670,7 @@ } }, { - "id": 29133, + "id": 27376, "properties": { "east": "none", "north": "tall", @@ -78286,7 +73681,7 @@ } }, { - "id": 29134, + "id": 27377, "properties": { "east": "none", "north": "tall", @@ -78297,7 +73692,7 @@ } }, { - "id": 29135, + "id": 27378, "properties": { "east": "none", "north": "tall", @@ -78308,7 +73703,7 @@ } }, { - "id": 29136, + "id": 27379, "properties": { "east": "none", "north": "tall", @@ -78319,7 +73714,7 @@ } }, { - "id": 29137, + "id": 27380, "properties": { "east": "none", "north": "tall", @@ -78330,7 +73725,7 @@ } }, { - "id": 29138, + "id": 27381, "properties": { "east": "none", "north": "tall", @@ -78341,7 +73736,7 @@ } }, { - "id": 29139, + "id": 27382, "properties": { "east": "none", "north": "tall", @@ -78352,7 +73747,7 @@ } }, { - "id": 29140, + "id": 27383, "properties": { "east": "none", "north": "tall", @@ -78363,7 +73758,7 @@ } }, { - "id": 29141, + "id": 27384, "properties": { "east": "none", "north": "tall", @@ -78374,7 +73769,7 @@ } }, { - "id": 29142, + "id": 27385, "properties": { "east": "none", "north": "tall", @@ -78385,7 +73780,7 @@ } }, { - "id": 29143, + "id": 27386, "properties": { "east": "none", "north": "tall", @@ -78396,7 +73791,7 @@ } }, { - "id": 29144, + "id": 27387, "properties": { "east": "none", "north": "tall", @@ -78407,7 +73802,7 @@ } }, { - "id": 29145, + "id": 27388, "properties": { "east": "none", "north": "tall", @@ -78418,7 +73813,7 @@ } }, { - "id": 29146, + "id": 27389, "properties": { "east": "none", "north": "tall", @@ -78429,7 +73824,7 @@ } }, { - "id": 29147, + "id": 27390, "properties": { "east": "none", "north": "tall", @@ -78440,7 +73835,7 @@ } }, { - "id": 29148, + "id": 27391, "properties": { "east": "none", "north": "tall", @@ -78451,7 +73846,7 @@ } }, { - "id": 29149, + "id": 27392, "properties": { "east": "none", "north": "tall", @@ -78462,7 +73857,7 @@ } }, { - "id": 29150, + "id": 27393, "properties": { "east": "none", "north": "tall", @@ -78473,7 +73868,7 @@ } }, { - "id": 29151, + "id": 27394, "properties": { "east": "none", "north": "tall", @@ -78484,7 +73879,7 @@ } }, { - "id": 29152, + "id": 27395, "properties": { "east": "low", "north": "none", @@ -78495,7 +73890,7 @@ } }, { - "id": 29153, + "id": 27396, "properties": { "east": "low", "north": "none", @@ -78506,7 +73901,7 @@ } }, { - "id": 29154, + "id": 27397, "properties": { "east": "low", "north": "none", @@ -78517,7 +73912,7 @@ } }, { - "id": 29155, + "id": 27398, "properties": { "east": "low", "north": "none", @@ -78528,7 +73923,7 @@ } }, { - "id": 29156, + "id": 27399, "properties": { "east": "low", "north": "none", @@ -78539,7 +73934,7 @@ } }, { - "id": 29157, + "id": 27400, "properties": { "east": "low", "north": "none", @@ -78550,7 +73945,7 @@ } }, { - "id": 29158, + "id": 27401, "properties": { "east": "low", "north": "none", @@ -78561,7 +73956,7 @@ } }, { - "id": 29159, + "id": 27402, "properties": { "east": "low", "north": "none", @@ -78572,7 +73967,7 @@ } }, { - "id": 29160, + "id": 27403, "properties": { "east": "low", "north": "none", @@ -78583,7 +73978,7 @@ } }, { - "id": 29161, + "id": 27404, "properties": { "east": "low", "north": "none", @@ -78594,7 +73989,7 @@ } }, { - "id": 29162, + "id": 27405, "properties": { "east": "low", "north": "none", @@ -78605,7 +74000,7 @@ } }, { - "id": 29163, + "id": 27406, "properties": { "east": "low", "north": "none", @@ -78616,7 +74011,7 @@ } }, { - "id": 29164, + "id": 27407, "properties": { "east": "low", "north": "none", @@ -78627,7 +74022,7 @@ } }, { - "id": 29165, + "id": 27408, "properties": { "east": "low", "north": "none", @@ -78638,7 +74033,7 @@ } }, { - "id": 29166, + "id": 27409, "properties": { "east": "low", "north": "none", @@ -78649,7 +74044,7 @@ } }, { - "id": 29167, + "id": 27410, "properties": { "east": "low", "north": "none", @@ -78660,7 +74055,7 @@ } }, { - "id": 29168, + "id": 27411, "properties": { "east": "low", "north": "none", @@ -78671,7 +74066,7 @@ } }, { - "id": 29169, + "id": 27412, "properties": { "east": "low", "north": "none", @@ -78682,7 +74077,7 @@ } }, { - "id": 29170, + "id": 27413, "properties": { "east": "low", "north": "none", @@ -78693,7 +74088,7 @@ } }, { - "id": 29171, + "id": 27414, "properties": { "east": "low", "north": "none", @@ -78704,7 +74099,7 @@ } }, { - "id": 29172, + "id": 27415, "properties": { "east": "low", "north": "none", @@ -78715,7 +74110,7 @@ } }, { - "id": 29173, + "id": 27416, "properties": { "east": "low", "north": "none", @@ -78726,7 +74121,7 @@ } }, { - "id": 29174, + "id": 27417, "properties": { "east": "low", "north": "none", @@ -78737,7 +74132,7 @@ } }, { - "id": 29175, + "id": 27418, "properties": { "east": "low", "north": "none", @@ -78748,7 +74143,7 @@ } }, { - "id": 29176, + "id": 27419, "properties": { "east": "low", "north": "none", @@ -78759,7 +74154,7 @@ } }, { - "id": 29177, + "id": 27420, "properties": { "east": "low", "north": "none", @@ -78770,7 +74165,7 @@ } }, { - "id": 29178, + "id": 27421, "properties": { "east": "low", "north": "none", @@ -78781,7 +74176,7 @@ } }, { - "id": 29179, + "id": 27422, "properties": { "east": "low", "north": "none", @@ -78792,7 +74187,7 @@ } }, { - "id": 29180, + "id": 27423, "properties": { "east": "low", "north": "none", @@ -78803,7 +74198,7 @@ } }, { - "id": 29181, + "id": 27424, "properties": { "east": "low", "north": "none", @@ -78814,7 +74209,7 @@ } }, { - "id": 29182, + "id": 27425, "properties": { "east": "low", "north": "none", @@ -78825,7 +74220,7 @@ } }, { - "id": 29183, + "id": 27426, "properties": { "east": "low", "north": "none", @@ -78836,7 +74231,7 @@ } }, { - "id": 29184, + "id": 27427, "properties": { "east": "low", "north": "none", @@ -78847,7 +74242,7 @@ } }, { - "id": 29185, + "id": 27428, "properties": { "east": "low", "north": "none", @@ -78858,7 +74253,7 @@ } }, { - "id": 29186, + "id": 27429, "properties": { "east": "low", "north": "none", @@ -78869,7 +74264,7 @@ } }, { - "id": 29187, + "id": 27430, "properties": { "east": "low", "north": "none", @@ -78880,7 +74275,7 @@ } }, { - "id": 29188, + "id": 27431, "properties": { "east": "low", "north": "low", @@ -78891,7 +74286,7 @@ } }, { - "id": 29189, + "id": 27432, "properties": { "east": "low", "north": "low", @@ -78902,7 +74297,7 @@ } }, { - "id": 29190, + "id": 27433, "properties": { "east": "low", "north": "low", @@ -78913,7 +74308,7 @@ } }, { - "id": 29191, + "id": 27434, "properties": { "east": "low", "north": "low", @@ -78924,7 +74319,7 @@ } }, { - "id": 29192, + "id": 27435, "properties": { "east": "low", "north": "low", @@ -78935,7 +74330,7 @@ } }, { - "id": 29193, + "id": 27436, "properties": { "east": "low", "north": "low", @@ -78946,7 +74341,7 @@ } }, { - "id": 29194, + "id": 27437, "properties": { "east": "low", "north": "low", @@ -78957,7 +74352,7 @@ } }, { - "id": 29195, + "id": 27438, "properties": { "east": "low", "north": "low", @@ -78968,7 +74363,7 @@ } }, { - "id": 29196, + "id": 27439, "properties": { "east": "low", "north": "low", @@ -78979,7 +74374,7 @@ } }, { - "id": 29197, + "id": 27440, "properties": { "east": "low", "north": "low", @@ -78990,7 +74385,7 @@ } }, { - "id": 29198, + "id": 27441, "properties": { "east": "low", "north": "low", @@ -79001,7 +74396,7 @@ } }, { - "id": 29199, + "id": 27442, "properties": { "east": "low", "north": "low", @@ -79012,7 +74407,7 @@ } }, { - "id": 29200, + "id": 27443, "properties": { "east": "low", "north": "low", @@ -79023,7 +74418,7 @@ } }, { - "id": 29201, + "id": 27444, "properties": { "east": "low", "north": "low", @@ -79034,7 +74429,7 @@ } }, { - "id": 29202, + "id": 27445, "properties": { "east": "low", "north": "low", @@ -79045,7 +74440,7 @@ } }, { - "id": 29203, + "id": 27446, "properties": { "east": "low", "north": "low", @@ -79056,7 +74451,7 @@ } }, { - "id": 29204, + "id": 27447, "properties": { "east": "low", "north": "low", @@ -79067,7 +74462,7 @@ } }, { - "id": 29205, + "id": 27448, "properties": { "east": "low", "north": "low", @@ -79078,7 +74473,7 @@ } }, { - "id": 29206, + "id": 27449, "properties": { "east": "low", "north": "low", @@ -79089,7 +74484,7 @@ } }, { - "id": 29207, + "id": 27450, "properties": { "east": "low", "north": "low", @@ -79100,7 +74495,7 @@ } }, { - "id": 29208, + "id": 27451, "properties": { "east": "low", "north": "low", @@ -79111,7 +74506,7 @@ } }, { - "id": 29209, + "id": 27452, "properties": { "east": "low", "north": "low", @@ -79122,7 +74517,7 @@ } }, { - "id": 29210, + "id": 27453, "properties": { "east": "low", "north": "low", @@ -79133,7 +74528,7 @@ } }, { - "id": 29211, + "id": 27454, "properties": { "east": "low", "north": "low", @@ -79144,7 +74539,7 @@ } }, { - "id": 29212, + "id": 27455, "properties": { "east": "low", "north": "low", @@ -79155,7 +74550,7 @@ } }, { - "id": 29213, + "id": 27456, "properties": { "east": "low", "north": "low", @@ -79166,7 +74561,7 @@ } }, { - "id": 29214, + "id": 27457, "properties": { "east": "low", "north": "low", @@ -79177,7 +74572,7 @@ } }, { - "id": 29215, + "id": 27458, "properties": { "east": "low", "north": "low", @@ -79188,7 +74583,7 @@ } }, { - "id": 29216, + "id": 27459, "properties": { "east": "low", "north": "low", @@ -79199,7 +74594,7 @@ } }, { - "id": 29217, + "id": 27460, "properties": { "east": "low", "north": "low", @@ -79210,7 +74605,7 @@ } }, { - "id": 29218, + "id": 27461, "properties": { "east": "low", "north": "low", @@ -79221,7 +74616,7 @@ } }, { - "id": 29219, + "id": 27462, "properties": { "east": "low", "north": "low", @@ -79232,7 +74627,7 @@ } }, { - "id": 29220, + "id": 27463, "properties": { "east": "low", "north": "low", @@ -79243,7 +74638,7 @@ } }, { - "id": 29221, + "id": 27464, "properties": { "east": "low", "north": "low", @@ -79254,7 +74649,7 @@ } }, { - "id": 29222, + "id": 27465, "properties": { "east": "low", "north": "low", @@ -79265,7 +74660,7 @@ } }, { - "id": 29223, + "id": 27466, "properties": { "east": "low", "north": "low", @@ -79276,7 +74671,7 @@ } }, { - "id": 29224, + "id": 27467, "properties": { "east": "low", "north": "tall", @@ -79287,7 +74682,7 @@ } }, { - "id": 29225, + "id": 27468, "properties": { "east": "low", "north": "tall", @@ -79298,7 +74693,7 @@ } }, { - "id": 29226, + "id": 27469, "properties": { "east": "low", "north": "tall", @@ -79309,7 +74704,7 @@ } }, { - "id": 29227, + "id": 27470, "properties": { "east": "low", "north": "tall", @@ -79320,7 +74715,7 @@ } }, { - "id": 29228, + "id": 27471, "properties": { "east": "low", "north": "tall", @@ -79331,7 +74726,7 @@ } }, { - "id": 29229, + "id": 27472, "properties": { "east": "low", "north": "tall", @@ -79342,7 +74737,7 @@ } }, { - "id": 29230, + "id": 27473, "properties": { "east": "low", "north": "tall", @@ -79353,7 +74748,7 @@ } }, { - "id": 29231, + "id": 27474, "properties": { "east": "low", "north": "tall", @@ -79364,7 +74759,7 @@ } }, { - "id": 29232, + "id": 27475, "properties": { "east": "low", "north": "tall", @@ -79375,7 +74770,7 @@ } }, { - "id": 29233, + "id": 27476, "properties": { "east": "low", "north": "tall", @@ -79386,7 +74781,7 @@ } }, { - "id": 29234, + "id": 27477, "properties": { "east": "low", "north": "tall", @@ -79397,7 +74792,7 @@ } }, { - "id": 29235, + "id": 27478, "properties": { "east": "low", "north": "tall", @@ -79408,7 +74803,7 @@ } }, { - "id": 29236, + "id": 27479, "properties": { "east": "low", "north": "tall", @@ -79419,7 +74814,7 @@ } }, { - "id": 29237, + "id": 27480, "properties": { "east": "low", "north": "tall", @@ -79430,7 +74825,7 @@ } }, { - "id": 29238, + "id": 27481, "properties": { "east": "low", "north": "tall", @@ -79441,7 +74836,7 @@ } }, { - "id": 29239, + "id": 27482, "properties": { "east": "low", "north": "tall", @@ -79452,7 +74847,7 @@ } }, { - "id": 29240, + "id": 27483, "properties": { "east": "low", "north": "tall", @@ -79463,7 +74858,7 @@ } }, { - "id": 29241, + "id": 27484, "properties": { "east": "low", "north": "tall", @@ -79474,7 +74869,7 @@ } }, { - "id": 29242, + "id": 27485, "properties": { "east": "low", "north": "tall", @@ -79485,7 +74880,7 @@ } }, { - "id": 29243, + "id": 27486, "properties": { "east": "low", "north": "tall", @@ -79496,7 +74891,7 @@ } }, { - "id": 29244, + "id": 27487, "properties": { "east": "low", "north": "tall", @@ -79507,7 +74902,7 @@ } }, { - "id": 29245, + "id": 27488, "properties": { "east": "low", "north": "tall", @@ -79518,7 +74913,7 @@ } }, { - "id": 29246, + "id": 27489, "properties": { "east": "low", "north": "tall", @@ -79529,7 +74924,7 @@ } }, { - "id": 29247, + "id": 27490, "properties": { "east": "low", "north": "tall", @@ -79540,7 +74935,7 @@ } }, { - "id": 29248, + "id": 27491, "properties": { "east": "low", "north": "tall", @@ -79551,7 +74946,7 @@ } }, { - "id": 29249, + "id": 27492, "properties": { "east": "low", "north": "tall", @@ -79562,7 +74957,7 @@ } }, { - "id": 29250, + "id": 27493, "properties": { "east": "low", "north": "tall", @@ -79573,7 +74968,7 @@ } }, { - "id": 29251, + "id": 27494, "properties": { "east": "low", "north": "tall", @@ -79584,7 +74979,7 @@ } }, { - "id": 29252, + "id": 27495, "properties": { "east": "low", "north": "tall", @@ -79595,7 +74990,7 @@ } }, { - "id": 29253, + "id": 27496, "properties": { "east": "low", "north": "tall", @@ -79606,7 +75001,7 @@ } }, { - "id": 29254, + "id": 27497, "properties": { "east": "low", "north": "tall", @@ -79617,7 +75012,7 @@ } }, { - "id": 29255, + "id": 27498, "properties": { "east": "low", "north": "tall", @@ -79628,7 +75023,7 @@ } }, { - "id": 29256, + "id": 27499, "properties": { "east": "low", "north": "tall", @@ -79639,7 +75034,7 @@ } }, { - "id": 29257, + "id": 27500, "properties": { "east": "low", "north": "tall", @@ -79650,7 +75045,7 @@ } }, { - "id": 29258, + "id": 27501, "properties": { "east": "low", "north": "tall", @@ -79661,7 +75056,7 @@ } }, { - "id": 29259, + "id": 27502, "properties": { "east": "low", "north": "tall", @@ -79672,7 +75067,7 @@ } }, { - "id": 29260, + "id": 27503, "properties": { "east": "tall", "north": "none", @@ -79683,7 +75078,7 @@ } }, { - "id": 29261, + "id": 27504, "properties": { "east": "tall", "north": "none", @@ -79694,7 +75089,7 @@ } }, { - "id": 29262, + "id": 27505, "properties": { "east": "tall", "north": "none", @@ -79705,7 +75100,7 @@ } }, { - "id": 29263, + "id": 27506, "properties": { "east": "tall", "north": "none", @@ -79716,7 +75111,7 @@ } }, { - "id": 29264, + "id": 27507, "properties": { "east": "tall", "north": "none", @@ -79727,7 +75122,7 @@ } }, { - "id": 29265, + "id": 27508, "properties": { "east": "tall", "north": "none", @@ -79738,7 +75133,7 @@ } }, { - "id": 29266, + "id": 27509, "properties": { "east": "tall", "north": "none", @@ -79749,7 +75144,7 @@ } }, { - "id": 29267, + "id": 27510, "properties": { "east": "tall", "north": "none", @@ -79760,7 +75155,7 @@ } }, { - "id": 29268, + "id": 27511, "properties": { "east": "tall", "north": "none", @@ -79771,7 +75166,7 @@ } }, { - "id": 29269, + "id": 27512, "properties": { "east": "tall", "north": "none", @@ -79782,7 +75177,7 @@ } }, { - "id": 29270, + "id": 27513, "properties": { "east": "tall", "north": "none", @@ -79793,7 +75188,7 @@ } }, { - "id": 29271, + "id": 27514, "properties": { "east": "tall", "north": "none", @@ -79804,7 +75199,7 @@ } }, { - "id": 29272, + "id": 27515, "properties": { "east": "tall", "north": "none", @@ -79815,7 +75210,7 @@ } }, { - "id": 29273, + "id": 27516, "properties": { "east": "tall", "north": "none", @@ -79826,7 +75221,7 @@ } }, { - "id": 29274, + "id": 27517, "properties": { "east": "tall", "north": "none", @@ -79837,7 +75232,7 @@ } }, { - "id": 29275, + "id": 27518, "properties": { "east": "tall", "north": "none", @@ -79848,7 +75243,7 @@ } }, { - "id": 29276, + "id": 27519, "properties": { "east": "tall", "north": "none", @@ -79859,7 +75254,7 @@ } }, { - "id": 29277, + "id": 27520, "properties": { "east": "tall", "north": "none", @@ -79870,7 +75265,7 @@ } }, { - "id": 29278, + "id": 27521, "properties": { "east": "tall", "north": "none", @@ -79881,7 +75276,7 @@ } }, { - "id": 29279, + "id": 27522, "properties": { "east": "tall", "north": "none", @@ -79892,7 +75287,7 @@ } }, { - "id": 29280, + "id": 27523, "properties": { "east": "tall", "north": "none", @@ -79903,7 +75298,7 @@ } }, { - "id": 29281, + "id": 27524, "properties": { "east": "tall", "north": "none", @@ -79914,7 +75309,7 @@ } }, { - "id": 29282, + "id": 27525, "properties": { "east": "tall", "north": "none", @@ -79925,7 +75320,7 @@ } }, { - "id": 29283, + "id": 27526, "properties": { "east": "tall", "north": "none", @@ -79936,7 +75331,7 @@ } }, { - "id": 29284, + "id": 27527, "properties": { "east": "tall", "north": "none", @@ -79947,7 +75342,7 @@ } }, { - "id": 29285, + "id": 27528, "properties": { "east": "tall", "north": "none", @@ -79958,7 +75353,7 @@ } }, { - "id": 29286, + "id": 27529, "properties": { "east": "tall", "north": "none", @@ -79969,7 +75364,7 @@ } }, { - "id": 29287, + "id": 27530, "properties": { "east": "tall", "north": "none", @@ -79980,7 +75375,7 @@ } }, { - "id": 29288, + "id": 27531, "properties": { "east": "tall", "north": "none", @@ -79991,7 +75386,7 @@ } }, { - "id": 29289, + "id": 27532, "properties": { "east": "tall", "north": "none", @@ -80002,7 +75397,7 @@ } }, { - "id": 29290, + "id": 27533, "properties": { "east": "tall", "north": "none", @@ -80013,7 +75408,7 @@ } }, { - "id": 29291, + "id": 27534, "properties": { "east": "tall", "north": "none", @@ -80024,7 +75419,7 @@ } }, { - "id": 29292, + "id": 27535, "properties": { "east": "tall", "north": "none", @@ -80035,7 +75430,7 @@ } }, { - "id": 29293, + "id": 27536, "properties": { "east": "tall", "north": "none", @@ -80046,7 +75441,7 @@ } }, { - "id": 29294, + "id": 27537, "properties": { "east": "tall", "north": "none", @@ -80057,7 +75452,7 @@ } }, { - "id": 29295, + "id": 27538, "properties": { "east": "tall", "north": "none", @@ -80068,7 +75463,7 @@ } }, { - "id": 29296, + "id": 27539, "properties": { "east": "tall", "north": "low", @@ -80079,7 +75474,7 @@ } }, { - "id": 29297, + "id": 27540, "properties": { "east": "tall", "north": "low", @@ -80090,7 +75485,7 @@ } }, { - "id": 29298, + "id": 27541, "properties": { "east": "tall", "north": "low", @@ -80101,7 +75496,7 @@ } }, { - "id": 29299, + "id": 27542, "properties": { "east": "tall", "north": "low", @@ -80112,7 +75507,7 @@ } }, { - "id": 29300, + "id": 27543, "properties": { "east": "tall", "north": "low", @@ -80123,7 +75518,7 @@ } }, { - "id": 29301, + "id": 27544, "properties": { "east": "tall", "north": "low", @@ -80134,7 +75529,7 @@ } }, { - "id": 29302, + "id": 27545, "properties": { "east": "tall", "north": "low", @@ -80145,7 +75540,7 @@ } }, { - "id": 29303, + "id": 27546, "properties": { "east": "tall", "north": "low", @@ -80156,7 +75551,7 @@ } }, { - "id": 29304, + "id": 27547, "properties": { "east": "tall", "north": "low", @@ -80167,7 +75562,7 @@ } }, { - "id": 29305, + "id": 27548, "properties": { "east": "tall", "north": "low", @@ -80178,7 +75573,7 @@ } }, { - "id": 29306, + "id": 27549, "properties": { "east": "tall", "north": "low", @@ -80189,7 +75584,7 @@ } }, { - "id": 29307, + "id": 27550, "properties": { "east": "tall", "north": "low", @@ -80200,7 +75595,7 @@ } }, { - "id": 29308, + "id": 27551, "properties": { "east": "tall", "north": "low", @@ -80211,7 +75606,7 @@ } }, { - "id": 29309, + "id": 27552, "properties": { "east": "tall", "north": "low", @@ -80222,7 +75617,7 @@ } }, { - "id": 29310, + "id": 27553, "properties": { "east": "tall", "north": "low", @@ -80233,7 +75628,7 @@ } }, { - "id": 29311, + "id": 27554, "properties": { "east": "tall", "north": "low", @@ -80244,7 +75639,7 @@ } }, { - "id": 29312, + "id": 27555, "properties": { "east": "tall", "north": "low", @@ -80255,7 +75650,7 @@ } }, { - "id": 29313, + "id": 27556, "properties": { "east": "tall", "north": "low", @@ -80266,7 +75661,7 @@ } }, { - "id": 29314, + "id": 27557, "properties": { "east": "tall", "north": "low", @@ -80277,7 +75672,7 @@ } }, { - "id": 29315, + "id": 27558, "properties": { "east": "tall", "north": "low", @@ -80288,7 +75683,7 @@ } }, { - "id": 29316, + "id": 27559, "properties": { "east": "tall", "north": "low", @@ -80299,7 +75694,7 @@ } }, { - "id": 29317, + "id": 27560, "properties": { "east": "tall", "north": "low", @@ -80310,7 +75705,7 @@ } }, { - "id": 29318, + "id": 27561, "properties": { "east": "tall", "north": "low", @@ -80321,7 +75716,7 @@ } }, { - "id": 29319, + "id": 27562, "properties": { "east": "tall", "north": "low", @@ -80332,7 +75727,7 @@ } }, { - "id": 29320, + "id": 27563, "properties": { "east": "tall", "north": "low", @@ -80343,7 +75738,7 @@ } }, { - "id": 29321, + "id": 27564, "properties": { "east": "tall", "north": "low", @@ -80354,7 +75749,7 @@ } }, { - "id": 29322, + "id": 27565, "properties": { "east": "tall", "north": "low", @@ -80365,7 +75760,7 @@ } }, { - "id": 29323, + "id": 27566, "properties": { "east": "tall", "north": "low", @@ -80376,7 +75771,7 @@ } }, { - "id": 29324, + "id": 27567, "properties": { "east": "tall", "north": "low", @@ -80387,7 +75782,7 @@ } }, { - "id": 29325, + "id": 27568, "properties": { "east": "tall", "north": "low", @@ -80398,7 +75793,7 @@ } }, { - "id": 29326, + "id": 27569, "properties": { "east": "tall", "north": "low", @@ -80409,7 +75804,7 @@ } }, { - "id": 29327, + "id": 27570, "properties": { "east": "tall", "north": "low", @@ -80420,7 +75815,7 @@ } }, { - "id": 29328, + "id": 27571, "properties": { "east": "tall", "north": "low", @@ -80431,7 +75826,7 @@ } }, { - "id": 29329, + "id": 27572, "properties": { "east": "tall", "north": "low", @@ -80442,7 +75837,7 @@ } }, { - "id": 29330, + "id": 27573, "properties": { "east": "tall", "north": "low", @@ -80453,7 +75848,7 @@ } }, { - "id": 29331, + "id": 27574, "properties": { "east": "tall", "north": "low", @@ -80464,7 +75859,7 @@ } }, { - "id": 29332, + "id": 27575, "properties": { "east": "tall", "north": "tall", @@ -80475,7 +75870,7 @@ } }, { - "id": 29333, + "id": 27576, "properties": { "east": "tall", "north": "tall", @@ -80486,7 +75881,7 @@ } }, { - "id": 29334, + "id": 27577, "properties": { "east": "tall", "north": "tall", @@ -80497,7 +75892,7 @@ } }, { - "id": 29335, + "id": 27578, "properties": { "east": "tall", "north": "tall", @@ -80508,7 +75903,7 @@ } }, { - "id": 29336, + "id": 27579, "properties": { "east": "tall", "north": "tall", @@ -80519,7 +75914,7 @@ } }, { - "id": 29337, + "id": 27580, "properties": { "east": "tall", "north": "tall", @@ -80530,7 +75925,7 @@ } }, { - "id": 29338, + "id": 27581, "properties": { "east": "tall", "north": "tall", @@ -80541,7 +75936,7 @@ } }, { - "id": 29339, + "id": 27582, "properties": { "east": "tall", "north": "tall", @@ -80552,7 +75947,7 @@ } }, { - "id": 29340, + "id": 27583, "properties": { "east": "tall", "north": "tall", @@ -80563,7 +75958,7 @@ } }, { - "id": 29341, + "id": 27584, "properties": { "east": "tall", "north": "tall", @@ -80574,7 +75969,7 @@ } }, { - "id": 29342, + "id": 27585, "properties": { "east": "tall", "north": "tall", @@ -80585,7 +75980,7 @@ } }, { - "id": 29343, + "id": 27586, "properties": { "east": "tall", "north": "tall", @@ -80596,7 +75991,7 @@ } }, { - "id": 29344, + "id": 27587, "properties": { "east": "tall", "north": "tall", @@ -80607,7 +76002,7 @@ } }, { - "id": 29345, + "id": 27588, "properties": { "east": "tall", "north": "tall", @@ -80618,7 +76013,7 @@ } }, { - "id": 29346, + "id": 27589, "properties": { "east": "tall", "north": "tall", @@ -80629,7 +76024,7 @@ } }, { - "id": 29347, + "id": 27590, "properties": { "east": "tall", "north": "tall", @@ -80640,7 +76035,7 @@ } }, { - "id": 29348, + "id": 27591, "properties": { "east": "tall", "north": "tall", @@ -80651,7 +76046,7 @@ } }, { - "id": 29349, + "id": 27592, "properties": { "east": "tall", "north": "tall", @@ -80662,7 +76057,7 @@ } }, { - "id": 29350, + "id": 27593, "properties": { "east": "tall", "north": "tall", @@ -80673,7 +76068,7 @@ } }, { - "id": 29351, + "id": 27594, "properties": { "east": "tall", "north": "tall", @@ -80684,7 +76079,7 @@ } }, { - "id": 29352, + "id": 27595, "properties": { "east": "tall", "north": "tall", @@ -80695,7 +76090,7 @@ } }, { - "id": 29353, + "id": 27596, "properties": { "east": "tall", "north": "tall", @@ -80706,7 +76101,7 @@ } }, { - "id": 29354, + "id": 27597, "properties": { "east": "tall", "north": "tall", @@ -80717,7 +76112,7 @@ } }, { - "id": 29355, + "id": 27598, "properties": { "east": "tall", "north": "tall", @@ -80728,7 +76123,7 @@ } }, { - "id": 29356, + "id": 27599, "properties": { "east": "tall", "north": "tall", @@ -80739,7 +76134,7 @@ } }, { - "id": 29357, + "id": 27600, "properties": { "east": "tall", "north": "tall", @@ -80750,7 +76145,7 @@ } }, { - "id": 29358, + "id": 27601, "properties": { "east": "tall", "north": "tall", @@ -80761,7 +76156,7 @@ } }, { - "id": 29359, + "id": 27602, "properties": { "east": "tall", "north": "tall", @@ -80772,7 +76167,7 @@ } }, { - "id": 29360, + "id": 27603, "properties": { "east": "tall", "north": "tall", @@ -80783,7 +76178,7 @@ } }, { - "id": 29361, + "id": 27604, "properties": { "east": "tall", "north": "tall", @@ -80794,7 +76189,7 @@ } }, { - "id": 29362, + "id": 27605, "properties": { "east": "tall", "north": "tall", @@ -80805,7 +76200,7 @@ } }, { - "id": 29363, + "id": 27606, "properties": { "east": "tall", "north": "tall", @@ -80816,7 +76211,7 @@ } }, { - "id": 29364, + "id": 27607, "properties": { "east": "tall", "north": "tall", @@ -80827,7 +76222,7 @@ } }, { - "id": 29365, + "id": 27608, "properties": { "east": "tall", "north": "tall", @@ -80838,7 +76233,7 @@ } }, { - "id": 29366, + "id": 27609, "properties": { "east": "tall", "north": "tall", @@ -80849,7 +76244,7 @@ } }, { - "id": 29367, + "id": 27610, "properties": { "east": "tall", "north": "tall", @@ -80869,7 +76264,7 @@ "states": [ { "default": true, - "id": 28957 + "id": 27200 } ] }, @@ -80899,7 +76294,7 @@ "states": [ { "default": true, - "id": 25112 + "id": 23971 } ] }, @@ -80916,7 +76311,7 @@ "states": [ { "default": true, - "id": 5107 + "id": 4339 } ] }, @@ -80933,7 +76328,7 @@ "states": [ { "default": true, - "id": 9373 + "id": 8296 } ] }, @@ -80993,14 +76388,14 @@ }, "states": [ { - "id": 6682, + "id": 5914, "properties": { "lit": "true" } }, { "default": true, - "id": 6683, + "id": 5915, "properties": { "lit": "false" } @@ -81025,21 +76420,21 @@ }, "states": [ { - "id": 28627, + "id": 26870, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 28628, + "id": 26871, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 28629, + "id": 26872, "properties": { "type": "bottom", "waterlogged": "true" @@ -81047,21 +76442,21 @@ }, { "default": true, - "id": 28630, + "id": 26873, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 28631, + "id": 26874, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 28632, + "id": 26875, "properties": { "type": "double", "waterlogged": "false" @@ -81102,7 +76497,7 @@ }, "states": [ { - "id": 28547, + "id": 26790, "properties": { "facing": "north", "half": "top", @@ -81111,7 +76506,7 @@ } }, { - "id": 28548, + "id": 26791, "properties": { "facing": "north", "half": "top", @@ -81120,7 +76515,7 @@ } }, { - "id": 28549, + "id": 26792, "properties": { "facing": "north", "half": "top", @@ -81129,7 +76524,7 @@ } }, { - "id": 28550, + "id": 26793, "properties": { "facing": "north", "half": "top", @@ -81138,7 +76533,7 @@ } }, { - "id": 28551, + "id": 26794, "properties": { "facing": "north", "half": "top", @@ -81147,7 +76542,7 @@ } }, { - "id": 28552, + "id": 26795, "properties": { "facing": "north", "half": "top", @@ -81156,7 +76551,7 @@ } }, { - "id": 28553, + "id": 26796, "properties": { "facing": "north", "half": "top", @@ -81165,7 +76560,7 @@ } }, { - "id": 28554, + "id": 26797, "properties": { "facing": "north", "half": "top", @@ -81174,7 +76569,7 @@ } }, { - "id": 28555, + "id": 26798, "properties": { "facing": "north", "half": "top", @@ -81183,7 +76578,7 @@ } }, { - "id": 28556, + "id": 26799, "properties": { "facing": "north", "half": "top", @@ -81192,7 +76587,7 @@ } }, { - "id": 28557, + "id": 26800, "properties": { "facing": "north", "half": "bottom", @@ -81202,7 +76597,7 @@ }, { "default": true, - "id": 28558, + "id": 26801, "properties": { "facing": "north", "half": "bottom", @@ -81211,7 +76606,7 @@ } }, { - "id": 28559, + "id": 26802, "properties": { "facing": "north", "half": "bottom", @@ -81220,7 +76615,7 @@ } }, { - "id": 28560, + "id": 26803, "properties": { "facing": "north", "half": "bottom", @@ -81229,7 +76624,7 @@ } }, { - "id": 28561, + "id": 26804, "properties": { "facing": "north", "half": "bottom", @@ -81238,7 +76633,7 @@ } }, { - "id": 28562, + "id": 26805, "properties": { "facing": "north", "half": "bottom", @@ -81247,7 +76642,7 @@ } }, { - "id": 28563, + "id": 26806, "properties": { "facing": "north", "half": "bottom", @@ -81256,7 +76651,7 @@ } }, { - "id": 28564, + "id": 26807, "properties": { "facing": "north", "half": "bottom", @@ -81265,7 +76660,7 @@ } }, { - "id": 28565, + "id": 26808, "properties": { "facing": "north", "half": "bottom", @@ -81274,7 +76669,7 @@ } }, { - "id": 28566, + "id": 26809, "properties": { "facing": "north", "half": "bottom", @@ -81283,7 +76678,7 @@ } }, { - "id": 28567, + "id": 26810, "properties": { "facing": "south", "half": "top", @@ -81292,7 +76687,7 @@ } }, { - "id": 28568, + "id": 26811, "properties": { "facing": "south", "half": "top", @@ -81301,7 +76696,7 @@ } }, { - "id": 28569, + "id": 26812, "properties": { "facing": "south", "half": "top", @@ -81310,7 +76705,7 @@ } }, { - "id": 28570, + "id": 26813, "properties": { "facing": "south", "half": "top", @@ -81319,7 +76714,7 @@ } }, { - "id": 28571, + "id": 26814, "properties": { "facing": "south", "half": "top", @@ -81328,7 +76723,7 @@ } }, { - "id": 28572, + "id": 26815, "properties": { "facing": "south", "half": "top", @@ -81337,7 +76732,7 @@ } }, { - "id": 28573, + "id": 26816, "properties": { "facing": "south", "half": "top", @@ -81346,7 +76741,7 @@ } }, { - "id": 28574, + "id": 26817, "properties": { "facing": "south", "half": "top", @@ -81355,7 +76750,7 @@ } }, { - "id": 28575, + "id": 26818, "properties": { "facing": "south", "half": "top", @@ -81364,7 +76759,7 @@ } }, { - "id": 28576, + "id": 26819, "properties": { "facing": "south", "half": "top", @@ -81373,7 +76768,7 @@ } }, { - "id": 28577, + "id": 26820, "properties": { "facing": "south", "half": "bottom", @@ -81382,7 +76777,7 @@ } }, { - "id": 28578, + "id": 26821, "properties": { "facing": "south", "half": "bottom", @@ -81391,7 +76786,7 @@ } }, { - "id": 28579, + "id": 26822, "properties": { "facing": "south", "half": "bottom", @@ -81400,7 +76795,7 @@ } }, { - "id": 28580, + "id": 26823, "properties": { "facing": "south", "half": "bottom", @@ -81409,7 +76804,7 @@ } }, { - "id": 28581, + "id": 26824, "properties": { "facing": "south", "half": "bottom", @@ -81418,7 +76813,7 @@ } }, { - "id": 28582, + "id": 26825, "properties": { "facing": "south", "half": "bottom", @@ -81427,7 +76822,7 @@ } }, { - "id": 28583, + "id": 26826, "properties": { "facing": "south", "half": "bottom", @@ -81436,7 +76831,7 @@ } }, { - "id": 28584, + "id": 26827, "properties": { "facing": "south", "half": "bottom", @@ -81445,7 +76840,7 @@ } }, { - "id": 28585, + "id": 26828, "properties": { "facing": "south", "half": "bottom", @@ -81454,7 +76849,7 @@ } }, { - "id": 28586, + "id": 26829, "properties": { "facing": "south", "half": "bottom", @@ -81463,7 +76858,7 @@ } }, { - "id": 28587, + "id": 26830, "properties": { "facing": "west", "half": "top", @@ -81472,7 +76867,7 @@ } }, { - "id": 28588, + "id": 26831, "properties": { "facing": "west", "half": "top", @@ -81481,7 +76876,7 @@ } }, { - "id": 28589, + "id": 26832, "properties": { "facing": "west", "half": "top", @@ -81490,7 +76885,7 @@ } }, { - "id": 28590, + "id": 26833, "properties": { "facing": "west", "half": "top", @@ -81499,7 +76894,7 @@ } }, { - "id": 28591, + "id": 26834, "properties": { "facing": "west", "half": "top", @@ -81508,7 +76903,7 @@ } }, { - "id": 28592, + "id": 26835, "properties": { "facing": "west", "half": "top", @@ -81517,7 +76912,7 @@ } }, { - "id": 28593, + "id": 26836, "properties": { "facing": "west", "half": "top", @@ -81526,7 +76921,7 @@ } }, { - "id": 28594, + "id": 26837, "properties": { "facing": "west", "half": "top", @@ -81535,7 +76930,7 @@ } }, { - "id": 28595, + "id": 26838, "properties": { "facing": "west", "half": "top", @@ -81544,7 +76939,7 @@ } }, { - "id": 28596, + "id": 26839, "properties": { "facing": "west", "half": "top", @@ -81553,7 +76948,7 @@ } }, { - "id": 28597, + "id": 26840, "properties": { "facing": "west", "half": "bottom", @@ -81562,7 +76957,7 @@ } }, { - "id": 28598, + "id": 26841, "properties": { "facing": "west", "half": "bottom", @@ -81571,7 +76966,7 @@ } }, { - "id": 28599, + "id": 26842, "properties": { "facing": "west", "half": "bottom", @@ -81580,7 +76975,7 @@ } }, { - "id": 28600, + "id": 26843, "properties": { "facing": "west", "half": "bottom", @@ -81589,7 +76984,7 @@ } }, { - "id": 28601, + "id": 26844, "properties": { "facing": "west", "half": "bottom", @@ -81598,7 +76993,7 @@ } }, { - "id": 28602, + "id": 26845, "properties": { "facing": "west", "half": "bottom", @@ -81607,7 +77002,7 @@ } }, { - "id": 28603, + "id": 26846, "properties": { "facing": "west", "half": "bottom", @@ -81616,7 +77011,7 @@ } }, { - "id": 28604, + "id": 26847, "properties": { "facing": "west", "half": "bottom", @@ -81625,7 +77020,7 @@ } }, { - "id": 28605, + "id": 26848, "properties": { "facing": "west", "half": "bottom", @@ -81634,7 +77029,7 @@ } }, { - "id": 28606, + "id": 26849, "properties": { "facing": "west", "half": "bottom", @@ -81643,7 +77038,7 @@ } }, { - "id": 28607, + "id": 26850, "properties": { "facing": "east", "half": "top", @@ -81652,7 +77047,7 @@ } }, { - "id": 28608, + "id": 26851, "properties": { "facing": "east", "half": "top", @@ -81661,7 +77056,7 @@ } }, { - "id": 28609, + "id": 26852, "properties": { "facing": "east", "half": "top", @@ -81670,7 +77065,7 @@ } }, { - "id": 28610, + "id": 26853, "properties": { "facing": "east", "half": "top", @@ -81679,7 +77074,7 @@ } }, { - "id": 28611, + "id": 26854, "properties": { "facing": "east", "half": "top", @@ -81688,7 +77083,7 @@ } }, { - "id": 28612, + "id": 26855, "properties": { "facing": "east", "half": "top", @@ -81697,7 +77092,7 @@ } }, { - "id": 28613, + "id": 26856, "properties": { "facing": "east", "half": "top", @@ -81706,7 +77101,7 @@ } }, { - "id": 28614, + "id": 26857, "properties": { "facing": "east", "half": "top", @@ -81715,7 +77110,7 @@ } }, { - "id": 28615, + "id": 26858, "properties": { "facing": "east", "half": "top", @@ -81724,7 +77119,7 @@ } }, { - "id": 28616, + "id": 26859, "properties": { "facing": "east", "half": "top", @@ -81733,7 +77128,7 @@ } }, { - "id": 28617, + "id": 26860, "properties": { "facing": "east", "half": "bottom", @@ -81742,7 +77137,7 @@ } }, { - "id": 28618, + "id": 26861, "properties": { "facing": "east", "half": "bottom", @@ -81751,7 +77146,7 @@ } }, { - "id": 28619, + "id": 26862, "properties": { "facing": "east", "half": "bottom", @@ -81760,7 +77155,7 @@ } }, { - "id": 28620, + "id": 26863, "properties": { "facing": "east", "half": "bottom", @@ -81769,7 +77164,7 @@ } }, { - "id": 28621, + "id": 26864, "properties": { "facing": "east", "half": "bottom", @@ -81778,7 +77173,7 @@ } }, { - "id": 28622, + "id": 26865, "properties": { "facing": "east", "half": "bottom", @@ -81787,7 +77182,7 @@ } }, { - "id": 28623, + "id": 26866, "properties": { "facing": "east", "half": "bottom", @@ -81796,7 +77191,7 @@ } }, { - "id": 28624, + "id": 26867, "properties": { "facing": "east", "half": "bottom", @@ -81805,7 +77200,7 @@ } }, { - "id": 28625, + "id": 26868, "properties": { "facing": "east", "half": "bottom", @@ -81814,7 +77209,7 @@ } }, { - "id": 28626, + "id": 26869, "properties": { "facing": "east", "half": "bottom", @@ -81861,7 +77256,7 @@ }, "states": [ { - "id": 28633, + "id": 26876, "properties": { "east": "none", "north": "none", @@ -81872,7 +77267,7 @@ } }, { - "id": 28634, + "id": 26877, "properties": { "east": "none", "north": "none", @@ -81883,7 +77278,7 @@ } }, { - "id": 28635, + "id": 26878, "properties": { "east": "none", "north": "none", @@ -81895,7 +77290,7 @@ }, { "default": true, - "id": 28636, + "id": 26879, "properties": { "east": "none", "north": "none", @@ -81906,7 +77301,7 @@ } }, { - "id": 28637, + "id": 26880, "properties": { "east": "none", "north": "none", @@ -81917,7 +77312,7 @@ } }, { - "id": 28638, + "id": 26881, "properties": { "east": "none", "north": "none", @@ -81928,7 +77323,7 @@ } }, { - "id": 28639, + "id": 26882, "properties": { "east": "none", "north": "none", @@ -81939,7 +77334,7 @@ } }, { - "id": 28640, + "id": 26883, "properties": { "east": "none", "north": "none", @@ -81950,7 +77345,7 @@ } }, { - "id": 28641, + "id": 26884, "properties": { "east": "none", "north": "none", @@ -81961,7 +77356,7 @@ } }, { - "id": 28642, + "id": 26885, "properties": { "east": "none", "north": "none", @@ -81972,7 +77367,7 @@ } }, { - "id": 28643, + "id": 26886, "properties": { "east": "none", "north": "none", @@ -81983,7 +77378,7 @@ } }, { - "id": 28644, + "id": 26887, "properties": { "east": "none", "north": "none", @@ -81994,7 +77389,7 @@ } }, { - "id": 28645, + "id": 26888, "properties": { "east": "none", "north": "none", @@ -82005,7 +77400,7 @@ } }, { - "id": 28646, + "id": 26889, "properties": { "east": "none", "north": "none", @@ -82016,7 +77411,7 @@ } }, { - "id": 28647, + "id": 26890, "properties": { "east": "none", "north": "none", @@ -82027,7 +77422,7 @@ } }, { - "id": 28648, + "id": 26891, "properties": { "east": "none", "north": "none", @@ -82038,7 +77433,7 @@ } }, { - "id": 28649, + "id": 26892, "properties": { "east": "none", "north": "none", @@ -82049,7 +77444,7 @@ } }, { - "id": 28650, + "id": 26893, "properties": { "east": "none", "north": "none", @@ -82060,7 +77455,7 @@ } }, { - "id": 28651, + "id": 26894, "properties": { "east": "none", "north": "none", @@ -82071,7 +77466,7 @@ } }, { - "id": 28652, + "id": 26895, "properties": { "east": "none", "north": "none", @@ -82082,7 +77477,7 @@ } }, { - "id": 28653, + "id": 26896, "properties": { "east": "none", "north": "none", @@ -82093,7 +77488,7 @@ } }, { - "id": 28654, + "id": 26897, "properties": { "east": "none", "north": "none", @@ -82104,7 +77499,7 @@ } }, { - "id": 28655, + "id": 26898, "properties": { "east": "none", "north": "none", @@ -82115,7 +77510,7 @@ } }, { - "id": 28656, + "id": 26899, "properties": { "east": "none", "north": "none", @@ -82126,7 +77521,7 @@ } }, { - "id": 28657, + "id": 26900, "properties": { "east": "none", "north": "none", @@ -82137,7 +77532,7 @@ } }, { - "id": 28658, + "id": 26901, "properties": { "east": "none", "north": "none", @@ -82148,7 +77543,7 @@ } }, { - "id": 28659, + "id": 26902, "properties": { "east": "none", "north": "none", @@ -82159,7 +77554,7 @@ } }, { - "id": 28660, + "id": 26903, "properties": { "east": "none", "north": "none", @@ -82170,7 +77565,7 @@ } }, { - "id": 28661, + "id": 26904, "properties": { "east": "none", "north": "none", @@ -82181,7 +77576,7 @@ } }, { - "id": 28662, + "id": 26905, "properties": { "east": "none", "north": "none", @@ -82192,7 +77587,7 @@ } }, { - "id": 28663, + "id": 26906, "properties": { "east": "none", "north": "none", @@ -82203,7 +77598,7 @@ } }, { - "id": 28664, + "id": 26907, "properties": { "east": "none", "north": "none", @@ -82214,7 +77609,7 @@ } }, { - "id": 28665, + "id": 26908, "properties": { "east": "none", "north": "none", @@ -82225,7 +77620,7 @@ } }, { - "id": 28666, + "id": 26909, "properties": { "east": "none", "north": "none", @@ -82236,7 +77631,7 @@ } }, { - "id": 28667, + "id": 26910, "properties": { "east": "none", "north": "none", @@ -82247,7 +77642,7 @@ } }, { - "id": 28668, + "id": 26911, "properties": { "east": "none", "north": "none", @@ -82258,7 +77653,7 @@ } }, { - "id": 28669, + "id": 26912, "properties": { "east": "none", "north": "low", @@ -82269,7 +77664,7 @@ } }, { - "id": 28670, + "id": 26913, "properties": { "east": "none", "north": "low", @@ -82280,7 +77675,7 @@ } }, { - "id": 28671, + "id": 26914, "properties": { "east": "none", "north": "low", @@ -82291,7 +77686,7 @@ } }, { - "id": 28672, + "id": 26915, "properties": { "east": "none", "north": "low", @@ -82302,7 +77697,7 @@ } }, { - "id": 28673, + "id": 26916, "properties": { "east": "none", "north": "low", @@ -82313,7 +77708,7 @@ } }, { - "id": 28674, + "id": 26917, "properties": { "east": "none", "north": "low", @@ -82324,7 +77719,7 @@ } }, { - "id": 28675, + "id": 26918, "properties": { "east": "none", "north": "low", @@ -82335,7 +77730,7 @@ } }, { - "id": 28676, + "id": 26919, "properties": { "east": "none", "north": "low", @@ -82346,7 +77741,7 @@ } }, { - "id": 28677, + "id": 26920, "properties": { "east": "none", "north": "low", @@ -82357,7 +77752,7 @@ } }, { - "id": 28678, + "id": 26921, "properties": { "east": "none", "north": "low", @@ -82368,7 +77763,7 @@ } }, { - "id": 28679, + "id": 26922, "properties": { "east": "none", "north": "low", @@ -82379,7 +77774,7 @@ } }, { - "id": 28680, + "id": 26923, "properties": { "east": "none", "north": "low", @@ -82390,7 +77785,7 @@ } }, { - "id": 28681, + "id": 26924, "properties": { "east": "none", "north": "low", @@ -82401,7 +77796,7 @@ } }, { - "id": 28682, + "id": 26925, "properties": { "east": "none", "north": "low", @@ -82412,7 +77807,7 @@ } }, { - "id": 28683, + "id": 26926, "properties": { "east": "none", "north": "low", @@ -82423,7 +77818,7 @@ } }, { - "id": 28684, + "id": 26927, "properties": { "east": "none", "north": "low", @@ -82434,7 +77829,7 @@ } }, { - "id": 28685, + "id": 26928, "properties": { "east": "none", "north": "low", @@ -82445,7 +77840,7 @@ } }, { - "id": 28686, + "id": 26929, "properties": { "east": "none", "north": "low", @@ -82456,7 +77851,7 @@ } }, { - "id": 28687, + "id": 26930, "properties": { "east": "none", "north": "low", @@ -82467,7 +77862,7 @@ } }, { - "id": 28688, + "id": 26931, "properties": { "east": "none", "north": "low", @@ -82478,7 +77873,7 @@ } }, { - "id": 28689, + "id": 26932, "properties": { "east": "none", "north": "low", @@ -82489,7 +77884,7 @@ } }, { - "id": 28690, + "id": 26933, "properties": { "east": "none", "north": "low", @@ -82500,7 +77895,7 @@ } }, { - "id": 28691, + "id": 26934, "properties": { "east": "none", "north": "low", @@ -82511,7 +77906,7 @@ } }, { - "id": 28692, + "id": 26935, "properties": { "east": "none", "north": "low", @@ -82522,7 +77917,7 @@ } }, { - "id": 28693, + "id": 26936, "properties": { "east": "none", "north": "low", @@ -82533,7 +77928,7 @@ } }, { - "id": 28694, + "id": 26937, "properties": { "east": "none", "north": "low", @@ -82544,7 +77939,7 @@ } }, { - "id": 28695, + "id": 26938, "properties": { "east": "none", "north": "low", @@ -82555,7 +77950,7 @@ } }, { - "id": 28696, + "id": 26939, "properties": { "east": "none", "north": "low", @@ -82566,7 +77961,7 @@ } }, { - "id": 28697, + "id": 26940, "properties": { "east": "none", "north": "low", @@ -82577,7 +77972,7 @@ } }, { - "id": 28698, + "id": 26941, "properties": { "east": "none", "north": "low", @@ -82588,7 +77983,7 @@ } }, { - "id": 28699, + "id": 26942, "properties": { "east": "none", "north": "low", @@ -82599,7 +77994,7 @@ } }, { - "id": 28700, + "id": 26943, "properties": { "east": "none", "north": "low", @@ -82610,7 +78005,7 @@ } }, { - "id": 28701, + "id": 26944, "properties": { "east": "none", "north": "low", @@ -82621,7 +78016,7 @@ } }, { - "id": 28702, + "id": 26945, "properties": { "east": "none", "north": "low", @@ -82632,7 +78027,7 @@ } }, { - "id": 28703, + "id": 26946, "properties": { "east": "none", "north": "low", @@ -82643,7 +78038,7 @@ } }, { - "id": 28704, + "id": 26947, "properties": { "east": "none", "north": "low", @@ -82654,7 +78049,7 @@ } }, { - "id": 28705, + "id": 26948, "properties": { "east": "none", "north": "tall", @@ -82665,7 +78060,7 @@ } }, { - "id": 28706, + "id": 26949, "properties": { "east": "none", "north": "tall", @@ -82676,7 +78071,7 @@ } }, { - "id": 28707, + "id": 26950, "properties": { "east": "none", "north": "tall", @@ -82687,7 +78082,7 @@ } }, { - "id": 28708, + "id": 26951, "properties": { "east": "none", "north": "tall", @@ -82698,7 +78093,7 @@ } }, { - "id": 28709, + "id": 26952, "properties": { "east": "none", "north": "tall", @@ -82709,7 +78104,7 @@ } }, { - "id": 28710, + "id": 26953, "properties": { "east": "none", "north": "tall", @@ -82720,7 +78115,7 @@ } }, { - "id": 28711, + "id": 26954, "properties": { "east": "none", "north": "tall", @@ -82731,7 +78126,7 @@ } }, { - "id": 28712, + "id": 26955, "properties": { "east": "none", "north": "tall", @@ -82742,7 +78137,7 @@ } }, { - "id": 28713, + "id": 26956, "properties": { "east": "none", "north": "tall", @@ -82753,7 +78148,7 @@ } }, { - "id": 28714, + "id": 26957, "properties": { "east": "none", "north": "tall", @@ -82764,7 +78159,7 @@ } }, { - "id": 28715, + "id": 26958, "properties": { "east": "none", "north": "tall", @@ -82775,7 +78170,7 @@ } }, { - "id": 28716, + "id": 26959, "properties": { "east": "none", "north": "tall", @@ -82786,7 +78181,7 @@ } }, { - "id": 28717, + "id": 26960, "properties": { "east": "none", "north": "tall", @@ -82797,7 +78192,7 @@ } }, { - "id": 28718, + "id": 26961, "properties": { "east": "none", "north": "tall", @@ -82808,7 +78203,7 @@ } }, { - "id": 28719, + "id": 26962, "properties": { "east": "none", "north": "tall", @@ -82819,7 +78214,7 @@ } }, { - "id": 28720, + "id": 26963, "properties": { "east": "none", "north": "tall", @@ -82830,7 +78225,7 @@ } }, { - "id": 28721, + "id": 26964, "properties": { "east": "none", "north": "tall", @@ -82841,7 +78236,7 @@ } }, { - "id": 28722, + "id": 26965, "properties": { "east": "none", "north": "tall", @@ -82852,7 +78247,7 @@ } }, { - "id": 28723, + "id": 26966, "properties": { "east": "none", "north": "tall", @@ -82863,7 +78258,7 @@ } }, { - "id": 28724, + "id": 26967, "properties": { "east": "none", "north": "tall", @@ -82874,7 +78269,7 @@ } }, { - "id": 28725, + "id": 26968, "properties": { "east": "none", "north": "tall", @@ -82885,7 +78280,7 @@ } }, { - "id": 28726, + "id": 26969, "properties": { "east": "none", "north": "tall", @@ -82896,7 +78291,7 @@ } }, { - "id": 28727, + "id": 26970, "properties": { "east": "none", "north": "tall", @@ -82907,7 +78302,7 @@ } }, { - "id": 28728, + "id": 26971, "properties": { "east": "none", "north": "tall", @@ -82918,7 +78313,7 @@ } }, { - "id": 28729, + "id": 26972, "properties": { "east": "none", "north": "tall", @@ -82929,7 +78324,7 @@ } }, { - "id": 28730, + "id": 26973, "properties": { "east": "none", "north": "tall", @@ -82940,7 +78335,7 @@ } }, { - "id": 28731, + "id": 26974, "properties": { "east": "none", "north": "tall", @@ -82951,7 +78346,7 @@ } }, { - "id": 28732, + "id": 26975, "properties": { "east": "none", "north": "tall", @@ -82962,7 +78357,7 @@ } }, { - "id": 28733, + "id": 26976, "properties": { "east": "none", "north": "tall", @@ -82973,7 +78368,7 @@ } }, { - "id": 28734, + "id": 26977, "properties": { "east": "none", "north": "tall", @@ -82984,7 +78379,7 @@ } }, { - "id": 28735, + "id": 26978, "properties": { "east": "none", "north": "tall", @@ -82995,7 +78390,7 @@ } }, { - "id": 28736, + "id": 26979, "properties": { "east": "none", "north": "tall", @@ -83006,7 +78401,7 @@ } }, { - "id": 28737, + "id": 26980, "properties": { "east": "none", "north": "tall", @@ -83017,7 +78412,7 @@ } }, { - "id": 28738, + "id": 26981, "properties": { "east": "none", "north": "tall", @@ -83028,7 +78423,7 @@ } }, { - "id": 28739, + "id": 26982, "properties": { "east": "none", "north": "tall", @@ -83039,7 +78434,7 @@ } }, { - "id": 28740, + "id": 26983, "properties": { "east": "none", "north": "tall", @@ -83050,7 +78445,7 @@ } }, { - "id": 28741, + "id": 26984, "properties": { "east": "low", "north": "none", @@ -83061,7 +78456,7 @@ } }, { - "id": 28742, + "id": 26985, "properties": { "east": "low", "north": "none", @@ -83072,7 +78467,7 @@ } }, { - "id": 28743, + "id": 26986, "properties": { "east": "low", "north": "none", @@ -83083,7 +78478,7 @@ } }, { - "id": 28744, + "id": 26987, "properties": { "east": "low", "north": "none", @@ -83094,7 +78489,7 @@ } }, { - "id": 28745, + "id": 26988, "properties": { "east": "low", "north": "none", @@ -83105,7 +78500,7 @@ } }, { - "id": 28746, + "id": 26989, "properties": { "east": "low", "north": "none", @@ -83116,7 +78511,7 @@ } }, { - "id": 28747, + "id": 26990, "properties": { "east": "low", "north": "none", @@ -83127,7 +78522,7 @@ } }, { - "id": 28748, + "id": 26991, "properties": { "east": "low", "north": "none", @@ -83138,7 +78533,7 @@ } }, { - "id": 28749, + "id": 26992, "properties": { "east": "low", "north": "none", @@ -83149,7 +78544,7 @@ } }, { - "id": 28750, + "id": 26993, "properties": { "east": "low", "north": "none", @@ -83160,7 +78555,7 @@ } }, { - "id": 28751, + "id": 26994, "properties": { "east": "low", "north": "none", @@ -83171,7 +78566,7 @@ } }, { - "id": 28752, + "id": 26995, "properties": { "east": "low", "north": "none", @@ -83182,7 +78577,7 @@ } }, { - "id": 28753, + "id": 26996, "properties": { "east": "low", "north": "none", @@ -83193,7 +78588,7 @@ } }, { - "id": 28754, + "id": 26997, "properties": { "east": "low", "north": "none", @@ -83204,7 +78599,7 @@ } }, { - "id": 28755, + "id": 26998, "properties": { "east": "low", "north": "none", @@ -83215,7 +78610,7 @@ } }, { - "id": 28756, + "id": 26999, "properties": { "east": "low", "north": "none", @@ -83226,7 +78621,7 @@ } }, { - "id": 28757, + "id": 27000, "properties": { "east": "low", "north": "none", @@ -83237,7 +78632,7 @@ } }, { - "id": 28758, + "id": 27001, "properties": { "east": "low", "north": "none", @@ -83248,7 +78643,7 @@ } }, { - "id": 28759, + "id": 27002, "properties": { "east": "low", "north": "none", @@ -83259,7 +78654,7 @@ } }, { - "id": 28760, + "id": 27003, "properties": { "east": "low", "north": "none", @@ -83270,7 +78665,7 @@ } }, { - "id": 28761, + "id": 27004, "properties": { "east": "low", "north": "none", @@ -83281,7 +78676,7 @@ } }, { - "id": 28762, + "id": 27005, "properties": { "east": "low", "north": "none", @@ -83292,7 +78687,7 @@ } }, { - "id": 28763, + "id": 27006, "properties": { "east": "low", "north": "none", @@ -83303,7 +78698,7 @@ } }, { - "id": 28764, + "id": 27007, "properties": { "east": "low", "north": "none", @@ -83314,7 +78709,7 @@ } }, { - "id": 28765, + "id": 27008, "properties": { "east": "low", "north": "none", @@ -83325,7 +78720,7 @@ } }, { - "id": 28766, + "id": 27009, "properties": { "east": "low", "north": "none", @@ -83336,7 +78731,7 @@ } }, { - "id": 28767, + "id": 27010, "properties": { "east": "low", "north": "none", @@ -83347,7 +78742,7 @@ } }, { - "id": 28768, + "id": 27011, "properties": { "east": "low", "north": "none", @@ -83358,7 +78753,7 @@ } }, { - "id": 28769, + "id": 27012, "properties": { "east": "low", "north": "none", @@ -83369,7 +78764,7 @@ } }, { - "id": 28770, + "id": 27013, "properties": { "east": "low", "north": "none", @@ -83380,7 +78775,7 @@ } }, { - "id": 28771, + "id": 27014, "properties": { "east": "low", "north": "none", @@ -83391,7 +78786,7 @@ } }, { - "id": 28772, + "id": 27015, "properties": { "east": "low", "north": "none", @@ -83402,7 +78797,7 @@ } }, { - "id": 28773, + "id": 27016, "properties": { "east": "low", "north": "none", @@ -83413,7 +78808,7 @@ } }, { - "id": 28774, + "id": 27017, "properties": { "east": "low", "north": "none", @@ -83424,7 +78819,7 @@ } }, { - "id": 28775, + "id": 27018, "properties": { "east": "low", "north": "none", @@ -83435,7 +78830,7 @@ } }, { - "id": 28776, + "id": 27019, "properties": { "east": "low", "north": "none", @@ -83446,7 +78841,7 @@ } }, { - "id": 28777, + "id": 27020, "properties": { "east": "low", "north": "low", @@ -83457,7 +78852,7 @@ } }, { - "id": 28778, + "id": 27021, "properties": { "east": "low", "north": "low", @@ -83468,7 +78863,7 @@ } }, { - "id": 28779, + "id": 27022, "properties": { "east": "low", "north": "low", @@ -83479,7 +78874,7 @@ } }, { - "id": 28780, + "id": 27023, "properties": { "east": "low", "north": "low", @@ -83490,7 +78885,7 @@ } }, { - "id": 28781, + "id": 27024, "properties": { "east": "low", "north": "low", @@ -83501,7 +78896,7 @@ } }, { - "id": 28782, + "id": 27025, "properties": { "east": "low", "north": "low", @@ -83512,7 +78907,7 @@ } }, { - "id": 28783, + "id": 27026, "properties": { "east": "low", "north": "low", @@ -83523,7 +78918,7 @@ } }, { - "id": 28784, + "id": 27027, "properties": { "east": "low", "north": "low", @@ -83534,7 +78929,7 @@ } }, { - "id": 28785, + "id": 27028, "properties": { "east": "low", "north": "low", @@ -83545,7 +78940,7 @@ } }, { - "id": 28786, + "id": 27029, "properties": { "east": "low", "north": "low", @@ -83556,7 +78951,7 @@ } }, { - "id": 28787, + "id": 27030, "properties": { "east": "low", "north": "low", @@ -83567,7 +78962,7 @@ } }, { - "id": 28788, + "id": 27031, "properties": { "east": "low", "north": "low", @@ -83578,7 +78973,7 @@ } }, { - "id": 28789, + "id": 27032, "properties": { "east": "low", "north": "low", @@ -83589,7 +78984,7 @@ } }, { - "id": 28790, + "id": 27033, "properties": { "east": "low", "north": "low", @@ -83600,7 +78995,7 @@ } }, { - "id": 28791, + "id": 27034, "properties": { "east": "low", "north": "low", @@ -83611,7 +79006,7 @@ } }, { - "id": 28792, + "id": 27035, "properties": { "east": "low", "north": "low", @@ -83622,7 +79017,7 @@ } }, { - "id": 28793, + "id": 27036, "properties": { "east": "low", "north": "low", @@ -83633,7 +79028,7 @@ } }, { - "id": 28794, + "id": 27037, "properties": { "east": "low", "north": "low", @@ -83644,7 +79039,7 @@ } }, { - "id": 28795, + "id": 27038, "properties": { "east": "low", "north": "low", @@ -83655,7 +79050,7 @@ } }, { - "id": 28796, + "id": 27039, "properties": { "east": "low", "north": "low", @@ -83666,7 +79061,7 @@ } }, { - "id": 28797, + "id": 27040, "properties": { "east": "low", "north": "low", @@ -83677,7 +79072,7 @@ } }, { - "id": 28798, + "id": 27041, "properties": { "east": "low", "north": "low", @@ -83688,7 +79083,7 @@ } }, { - "id": 28799, + "id": 27042, "properties": { "east": "low", "north": "low", @@ -83699,7 +79094,7 @@ } }, { - "id": 28800, + "id": 27043, "properties": { "east": "low", "north": "low", @@ -83710,7 +79105,7 @@ } }, { - "id": 28801, + "id": 27044, "properties": { "east": "low", "north": "low", @@ -83721,7 +79116,7 @@ } }, { - "id": 28802, + "id": 27045, "properties": { "east": "low", "north": "low", @@ -83732,7 +79127,7 @@ } }, { - "id": 28803, + "id": 27046, "properties": { "east": "low", "north": "low", @@ -83743,7 +79138,7 @@ } }, { - "id": 28804, + "id": 27047, "properties": { "east": "low", "north": "low", @@ -83754,7 +79149,7 @@ } }, { - "id": 28805, + "id": 27048, "properties": { "east": "low", "north": "low", @@ -83765,7 +79160,7 @@ } }, { - "id": 28806, + "id": 27049, "properties": { "east": "low", "north": "low", @@ -83776,7 +79171,7 @@ } }, { - "id": 28807, + "id": 27050, "properties": { "east": "low", "north": "low", @@ -83787,7 +79182,7 @@ } }, { - "id": 28808, + "id": 27051, "properties": { "east": "low", "north": "low", @@ -83798,7 +79193,7 @@ } }, { - "id": 28809, + "id": 27052, "properties": { "east": "low", "north": "low", @@ -83809,7 +79204,7 @@ } }, { - "id": 28810, + "id": 27053, "properties": { "east": "low", "north": "low", @@ -83820,7 +79215,7 @@ } }, { - "id": 28811, + "id": 27054, "properties": { "east": "low", "north": "low", @@ -83831,7 +79226,7 @@ } }, { - "id": 28812, + "id": 27055, "properties": { "east": "low", "north": "low", @@ -83842,7 +79237,7 @@ } }, { - "id": 28813, + "id": 27056, "properties": { "east": "low", "north": "tall", @@ -83853,7 +79248,7 @@ } }, { - "id": 28814, + "id": 27057, "properties": { "east": "low", "north": "tall", @@ -83864,7 +79259,7 @@ } }, { - "id": 28815, + "id": 27058, "properties": { "east": "low", "north": "tall", @@ -83875,7 +79270,7 @@ } }, { - "id": 28816, + "id": 27059, "properties": { "east": "low", "north": "tall", @@ -83886,7 +79281,7 @@ } }, { - "id": 28817, + "id": 27060, "properties": { "east": "low", "north": "tall", @@ -83897,7 +79292,7 @@ } }, { - "id": 28818, + "id": 27061, "properties": { "east": "low", "north": "tall", @@ -83908,7 +79303,7 @@ } }, { - "id": 28819, + "id": 27062, "properties": { "east": "low", "north": "tall", @@ -83919,7 +79314,7 @@ } }, { - "id": 28820, + "id": 27063, "properties": { "east": "low", "north": "tall", @@ -83930,7 +79325,7 @@ } }, { - "id": 28821, + "id": 27064, "properties": { "east": "low", "north": "tall", @@ -83941,7 +79336,7 @@ } }, { - "id": 28822, + "id": 27065, "properties": { "east": "low", "north": "tall", @@ -83952,7 +79347,7 @@ } }, { - "id": 28823, + "id": 27066, "properties": { "east": "low", "north": "tall", @@ -83963,7 +79358,7 @@ } }, { - "id": 28824, + "id": 27067, "properties": { "east": "low", "north": "tall", @@ -83974,7 +79369,7 @@ } }, { - "id": 28825, + "id": 27068, "properties": { "east": "low", "north": "tall", @@ -83985,7 +79380,7 @@ } }, { - "id": 28826, + "id": 27069, "properties": { "east": "low", "north": "tall", @@ -83996,7 +79391,7 @@ } }, { - "id": 28827, + "id": 27070, "properties": { "east": "low", "north": "tall", @@ -84007,7 +79402,7 @@ } }, { - "id": 28828, + "id": 27071, "properties": { "east": "low", "north": "tall", @@ -84018,7 +79413,7 @@ } }, { - "id": 28829, + "id": 27072, "properties": { "east": "low", "north": "tall", @@ -84029,7 +79424,7 @@ } }, { - "id": 28830, + "id": 27073, "properties": { "east": "low", "north": "tall", @@ -84040,7 +79435,7 @@ } }, { - "id": 28831, + "id": 27074, "properties": { "east": "low", "north": "tall", @@ -84051,7 +79446,7 @@ } }, { - "id": 28832, + "id": 27075, "properties": { "east": "low", "north": "tall", @@ -84062,7 +79457,7 @@ } }, { - "id": 28833, + "id": 27076, "properties": { "east": "low", "north": "tall", @@ -84073,7 +79468,7 @@ } }, { - "id": 28834, + "id": 27077, "properties": { "east": "low", "north": "tall", @@ -84084,7 +79479,7 @@ } }, { - "id": 28835, + "id": 27078, "properties": { "east": "low", "north": "tall", @@ -84095,7 +79490,7 @@ } }, { - "id": 28836, + "id": 27079, "properties": { "east": "low", "north": "tall", @@ -84106,7 +79501,7 @@ } }, { - "id": 28837, + "id": 27080, "properties": { "east": "low", "north": "tall", @@ -84117,7 +79512,7 @@ } }, { - "id": 28838, + "id": 27081, "properties": { "east": "low", "north": "tall", @@ -84128,7 +79523,7 @@ } }, { - "id": 28839, + "id": 27082, "properties": { "east": "low", "north": "tall", @@ -84139,7 +79534,7 @@ } }, { - "id": 28840, + "id": 27083, "properties": { "east": "low", "north": "tall", @@ -84150,7 +79545,7 @@ } }, { - "id": 28841, + "id": 27084, "properties": { "east": "low", "north": "tall", @@ -84161,7 +79556,7 @@ } }, { - "id": 28842, + "id": 27085, "properties": { "east": "low", "north": "tall", @@ -84172,7 +79567,7 @@ } }, { - "id": 28843, + "id": 27086, "properties": { "east": "low", "north": "tall", @@ -84183,7 +79578,7 @@ } }, { - "id": 28844, + "id": 27087, "properties": { "east": "low", "north": "tall", @@ -84194,7 +79589,7 @@ } }, { - "id": 28845, + "id": 27088, "properties": { "east": "low", "north": "tall", @@ -84205,7 +79600,7 @@ } }, { - "id": 28846, + "id": 27089, "properties": { "east": "low", "north": "tall", @@ -84216,7 +79611,7 @@ } }, { - "id": 28847, + "id": 27090, "properties": { "east": "low", "north": "tall", @@ -84227,7 +79622,7 @@ } }, { - "id": 28848, + "id": 27091, "properties": { "east": "low", "north": "tall", @@ -84238,7 +79633,7 @@ } }, { - "id": 28849, + "id": 27092, "properties": { "east": "tall", "north": "none", @@ -84249,7 +79644,7 @@ } }, { - "id": 28850, + "id": 27093, "properties": { "east": "tall", "north": "none", @@ -84260,7 +79655,7 @@ } }, { - "id": 28851, + "id": 27094, "properties": { "east": "tall", "north": "none", @@ -84271,7 +79666,7 @@ } }, { - "id": 28852, + "id": 27095, "properties": { "east": "tall", "north": "none", @@ -84282,7 +79677,7 @@ } }, { - "id": 28853, + "id": 27096, "properties": { "east": "tall", "north": "none", @@ -84293,7 +79688,7 @@ } }, { - "id": 28854, + "id": 27097, "properties": { "east": "tall", "north": "none", @@ -84304,7 +79699,7 @@ } }, { - "id": 28855, + "id": 27098, "properties": { "east": "tall", "north": "none", @@ -84315,7 +79710,7 @@ } }, { - "id": 28856, + "id": 27099, "properties": { "east": "tall", "north": "none", @@ -84326,7 +79721,7 @@ } }, { - "id": 28857, + "id": 27100, "properties": { "east": "tall", "north": "none", @@ -84337,7 +79732,7 @@ } }, { - "id": 28858, + "id": 27101, "properties": { "east": "tall", "north": "none", @@ -84348,7 +79743,7 @@ } }, { - "id": 28859, + "id": 27102, "properties": { "east": "tall", "north": "none", @@ -84359,7 +79754,7 @@ } }, { - "id": 28860, + "id": 27103, "properties": { "east": "tall", "north": "none", @@ -84370,7 +79765,7 @@ } }, { - "id": 28861, + "id": 27104, "properties": { "east": "tall", "north": "none", @@ -84381,7 +79776,7 @@ } }, { - "id": 28862, + "id": 27105, "properties": { "east": "tall", "north": "none", @@ -84392,7 +79787,7 @@ } }, { - "id": 28863, + "id": 27106, "properties": { "east": "tall", "north": "none", @@ -84403,7 +79798,7 @@ } }, { - "id": 28864, + "id": 27107, "properties": { "east": "tall", "north": "none", @@ -84414,7 +79809,7 @@ } }, { - "id": 28865, + "id": 27108, "properties": { "east": "tall", "north": "none", @@ -84425,7 +79820,7 @@ } }, { - "id": 28866, + "id": 27109, "properties": { "east": "tall", "north": "none", @@ -84436,7 +79831,7 @@ } }, { - "id": 28867, + "id": 27110, "properties": { "east": "tall", "north": "none", @@ -84447,7 +79842,7 @@ } }, { - "id": 28868, + "id": 27111, "properties": { "east": "tall", "north": "none", @@ -84458,7 +79853,7 @@ } }, { - "id": 28869, + "id": 27112, "properties": { "east": "tall", "north": "none", @@ -84469,7 +79864,7 @@ } }, { - "id": 28870, + "id": 27113, "properties": { "east": "tall", "north": "none", @@ -84480,7 +79875,7 @@ } }, { - "id": 28871, + "id": 27114, "properties": { "east": "tall", "north": "none", @@ -84491,7 +79886,7 @@ } }, { - "id": 28872, + "id": 27115, "properties": { "east": "tall", "north": "none", @@ -84502,7 +79897,7 @@ } }, { - "id": 28873, + "id": 27116, "properties": { "east": "tall", "north": "none", @@ -84513,7 +79908,7 @@ } }, { - "id": 28874, + "id": 27117, "properties": { "east": "tall", "north": "none", @@ -84524,7 +79919,7 @@ } }, { - "id": 28875, + "id": 27118, "properties": { "east": "tall", "north": "none", @@ -84535,7 +79930,7 @@ } }, { - "id": 28876, + "id": 27119, "properties": { "east": "tall", "north": "none", @@ -84546,7 +79941,7 @@ } }, { - "id": 28877, + "id": 27120, "properties": { "east": "tall", "north": "none", @@ -84557,7 +79952,7 @@ } }, { - "id": 28878, + "id": 27121, "properties": { "east": "tall", "north": "none", @@ -84568,7 +79963,7 @@ } }, { - "id": 28879, + "id": 27122, "properties": { "east": "tall", "north": "none", @@ -84579,7 +79974,7 @@ } }, { - "id": 28880, + "id": 27123, "properties": { "east": "tall", "north": "none", @@ -84590,7 +79985,7 @@ } }, { - "id": 28881, + "id": 27124, "properties": { "east": "tall", "north": "none", @@ -84601,7 +79996,7 @@ } }, { - "id": 28882, + "id": 27125, "properties": { "east": "tall", "north": "none", @@ -84612,7 +80007,7 @@ } }, { - "id": 28883, + "id": 27126, "properties": { "east": "tall", "north": "none", @@ -84623,7 +80018,7 @@ } }, { - "id": 28884, + "id": 27127, "properties": { "east": "tall", "north": "none", @@ -84634,7 +80029,7 @@ } }, { - "id": 28885, + "id": 27128, "properties": { "east": "tall", "north": "low", @@ -84645,7 +80040,7 @@ } }, { - "id": 28886, + "id": 27129, "properties": { "east": "tall", "north": "low", @@ -84656,7 +80051,7 @@ } }, { - "id": 28887, + "id": 27130, "properties": { "east": "tall", "north": "low", @@ -84667,7 +80062,7 @@ } }, { - "id": 28888, + "id": 27131, "properties": { "east": "tall", "north": "low", @@ -84678,7 +80073,7 @@ } }, { - "id": 28889, + "id": 27132, "properties": { "east": "tall", "north": "low", @@ -84689,7 +80084,7 @@ } }, { - "id": 28890, + "id": 27133, "properties": { "east": "tall", "north": "low", @@ -84700,7 +80095,7 @@ } }, { - "id": 28891, + "id": 27134, "properties": { "east": "tall", "north": "low", @@ -84711,7 +80106,7 @@ } }, { - "id": 28892, + "id": 27135, "properties": { "east": "tall", "north": "low", @@ -84722,7 +80117,7 @@ } }, { - "id": 28893, + "id": 27136, "properties": { "east": "tall", "north": "low", @@ -84733,7 +80128,7 @@ } }, { - "id": 28894, + "id": 27137, "properties": { "east": "tall", "north": "low", @@ -84744,7 +80139,7 @@ } }, { - "id": 28895, + "id": 27138, "properties": { "east": "tall", "north": "low", @@ -84755,7 +80150,7 @@ } }, { - "id": 28896, + "id": 27139, "properties": { "east": "tall", "north": "low", @@ -84766,7 +80161,7 @@ } }, { - "id": 28897, + "id": 27140, "properties": { "east": "tall", "north": "low", @@ -84777,7 +80172,7 @@ } }, { - "id": 28898, + "id": 27141, "properties": { "east": "tall", "north": "low", @@ -84788,7 +80183,7 @@ } }, { - "id": 28899, + "id": 27142, "properties": { "east": "tall", "north": "low", @@ -84799,7 +80194,7 @@ } }, { - "id": 28900, + "id": 27143, "properties": { "east": "tall", "north": "low", @@ -84810,7 +80205,7 @@ } }, { - "id": 28901, + "id": 27144, "properties": { "east": "tall", "north": "low", @@ -84821,7 +80216,7 @@ } }, { - "id": 28902, + "id": 27145, "properties": { "east": "tall", "north": "low", @@ -84832,7 +80227,7 @@ } }, { - "id": 28903, + "id": 27146, "properties": { "east": "tall", "north": "low", @@ -84843,7 +80238,7 @@ } }, { - "id": 28904, + "id": 27147, "properties": { "east": "tall", "north": "low", @@ -84854,7 +80249,7 @@ } }, { - "id": 28905, + "id": 27148, "properties": { "east": "tall", "north": "low", @@ -84865,7 +80260,7 @@ } }, { - "id": 28906, + "id": 27149, "properties": { "east": "tall", "north": "low", @@ -84876,7 +80271,7 @@ } }, { - "id": 28907, + "id": 27150, "properties": { "east": "tall", "north": "low", @@ -84887,7 +80282,7 @@ } }, { - "id": 28908, + "id": 27151, "properties": { "east": "tall", "north": "low", @@ -84898,7 +80293,7 @@ } }, { - "id": 28909, + "id": 27152, "properties": { "east": "tall", "north": "low", @@ -84909,7 +80304,7 @@ } }, { - "id": 28910, + "id": 27153, "properties": { "east": "tall", "north": "low", @@ -84920,7 +80315,7 @@ } }, { - "id": 28911, + "id": 27154, "properties": { "east": "tall", "north": "low", @@ -84931,7 +80326,7 @@ } }, { - "id": 28912, + "id": 27155, "properties": { "east": "tall", "north": "low", @@ -84942,7 +80337,7 @@ } }, { - "id": 28913, + "id": 27156, "properties": { "east": "tall", "north": "low", @@ -84953,7 +80348,7 @@ } }, { - "id": 28914, + "id": 27157, "properties": { "east": "tall", "north": "low", @@ -84964,7 +80359,7 @@ } }, { - "id": 28915, + "id": 27158, "properties": { "east": "tall", "north": "low", @@ -84975,7 +80370,7 @@ } }, { - "id": 28916, + "id": 27159, "properties": { "east": "tall", "north": "low", @@ -84986,7 +80381,7 @@ } }, { - "id": 28917, + "id": 27160, "properties": { "east": "tall", "north": "low", @@ -84997,7 +80392,7 @@ } }, { - "id": 28918, + "id": 27161, "properties": { "east": "tall", "north": "low", @@ -85008,7 +80403,7 @@ } }, { - "id": 28919, + "id": 27162, "properties": { "east": "tall", "north": "low", @@ -85019,7 +80414,7 @@ } }, { - "id": 28920, + "id": 27163, "properties": { "east": "tall", "north": "low", @@ -85030,7 +80425,7 @@ } }, { - "id": 28921, + "id": 27164, "properties": { "east": "tall", "north": "tall", @@ -85041,7 +80436,7 @@ } }, { - "id": 28922, + "id": 27165, "properties": { "east": "tall", "north": "tall", @@ -85052,7 +80447,7 @@ } }, { - "id": 28923, + "id": 27166, "properties": { "east": "tall", "north": "tall", @@ -85063,7 +80458,7 @@ } }, { - "id": 28924, + "id": 27167, "properties": { "east": "tall", "north": "tall", @@ -85074,7 +80469,7 @@ } }, { - "id": 28925, + "id": 27168, "properties": { "east": "tall", "north": "tall", @@ -85085,7 +80480,7 @@ } }, { - "id": 28926, + "id": 27169, "properties": { "east": "tall", "north": "tall", @@ -85096,7 +80491,7 @@ } }, { - "id": 28927, + "id": 27170, "properties": { "east": "tall", "north": "tall", @@ -85107,7 +80502,7 @@ } }, { - "id": 28928, + "id": 27171, "properties": { "east": "tall", "north": "tall", @@ -85118,7 +80513,7 @@ } }, { - "id": 28929, + "id": 27172, "properties": { "east": "tall", "north": "tall", @@ -85129,7 +80524,7 @@ } }, { - "id": 28930, + "id": 27173, "properties": { "east": "tall", "north": "tall", @@ -85140,7 +80535,7 @@ } }, { - "id": 28931, + "id": 27174, "properties": { "east": "tall", "north": "tall", @@ -85151,7 +80546,7 @@ } }, { - "id": 28932, + "id": 27175, "properties": { "east": "tall", "north": "tall", @@ -85162,7 +80557,7 @@ } }, { - "id": 28933, + "id": 27176, "properties": { "east": "tall", "north": "tall", @@ -85173,7 +80568,7 @@ } }, { - "id": 28934, + "id": 27177, "properties": { "east": "tall", "north": "tall", @@ -85184,7 +80579,7 @@ } }, { - "id": 28935, + "id": 27178, "properties": { "east": "tall", "north": "tall", @@ -85195,7 +80590,7 @@ } }, { - "id": 28936, + "id": 27179, "properties": { "east": "tall", "north": "tall", @@ -85206,7 +80601,7 @@ } }, { - "id": 28937, + "id": 27180, "properties": { "east": "tall", "north": "tall", @@ -85217,7 +80612,7 @@ } }, { - "id": 28938, + "id": 27181, "properties": { "east": "tall", "north": "tall", @@ -85228,7 +80623,7 @@ } }, { - "id": 28939, + "id": 27182, "properties": { "east": "tall", "north": "tall", @@ -85239,7 +80634,7 @@ } }, { - "id": 28940, + "id": 27183, "properties": { "east": "tall", "north": "tall", @@ -85250,7 +80645,7 @@ } }, { - "id": 28941, + "id": 27184, "properties": { "east": "tall", "north": "tall", @@ -85261,7 +80656,7 @@ } }, { - "id": 28942, + "id": 27185, "properties": { "east": "tall", "north": "tall", @@ -85272,7 +80667,7 @@ } }, { - "id": 28943, + "id": 27186, "properties": { "east": "tall", "north": "tall", @@ -85283,7 +80678,7 @@ } }, { - "id": 28944, + "id": 27187, "properties": { "east": "tall", "north": "tall", @@ -85294,7 +80689,7 @@ } }, { - "id": 28945, + "id": 27188, "properties": { "east": "tall", "north": "tall", @@ -85305,7 +80700,7 @@ } }, { - "id": 28946, + "id": 27189, "properties": { "east": "tall", "north": "tall", @@ -85316,7 +80711,7 @@ } }, { - "id": 28947, + "id": 27190, "properties": { "east": "tall", "north": "tall", @@ -85327,7 +80722,7 @@ } }, { - "id": 28948, + "id": 27191, "properties": { "east": "tall", "north": "tall", @@ -85338,7 +80733,7 @@ } }, { - "id": 28949, + "id": 27192, "properties": { "east": "tall", "north": "tall", @@ -85349,7 +80744,7 @@ } }, { - "id": 28950, + "id": 27193, "properties": { "east": "tall", "north": "tall", @@ -85360,7 +80755,7 @@ } }, { - "id": 28951, + "id": 27194, "properties": { "east": "tall", "north": "tall", @@ -85371,7 +80766,7 @@ } }, { - "id": 28952, + "id": 27195, "properties": { "east": "tall", "north": "tall", @@ -85382,7 +80777,7 @@ } }, { - "id": 28953, + "id": 27196, "properties": { "east": "tall", "north": "tall", @@ -85393,7 +80788,7 @@ } }, { - "id": 28954, + "id": 27197, "properties": { "east": "tall", "north": "tall", @@ -85404,7 +80799,7 @@ } }, { - "id": 28955, + "id": 27198, "properties": { "east": "tall", "north": "tall", @@ -85415,7 +80810,7 @@ } }, { - "id": 28956, + "id": 27199, "properties": { "east": "tall", "north": "tall", @@ -85435,7 +80830,7 @@ "states": [ { "default": true, - "id": 28546 + "id": 26789 } ] }, @@ -85666,7 +81061,7 @@ "states": [ { "default": true, - "id": 5108 + "id": 4340 } ] }, @@ -85683,7 +81078,7 @@ "states": [ { "default": true, - "id": 5106 + "id": 4338 } ] }, @@ -85717,21 +81112,21 @@ }, "states": [ { - "id": 16286, + "id": 15177, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 16287, + "id": 15178, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 16288, + "id": 15179, "properties": { "type": "bottom", "waterlogged": "true" @@ -85739,21 +81134,21 @@ }, { "default": true, - "id": 16289, + "id": 15180, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 16290, + "id": 15181, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 16291, + "id": 15182, "properties": { "type": "double", "waterlogged": "false" @@ -85794,7 +81189,7 @@ }, "states": [ { - "id": 16134, + "id": 15025, "properties": { "facing": "north", "half": "top", @@ -85803,7 +81198,7 @@ } }, { - "id": 16135, + "id": 15026, "properties": { "facing": "north", "half": "top", @@ -85812,7 +81207,7 @@ } }, { - "id": 16136, + "id": 15027, "properties": { "facing": "north", "half": "top", @@ -85821,7 +81216,7 @@ } }, { - "id": 16137, + "id": 15028, "properties": { "facing": "north", "half": "top", @@ -85830,7 +81225,7 @@ } }, { - "id": 16138, + "id": 15029, "properties": { "facing": "north", "half": "top", @@ -85839,7 +81234,7 @@ } }, { - "id": 16139, + "id": 15030, "properties": { "facing": "north", "half": "top", @@ -85848,7 +81243,7 @@ } }, { - "id": 16140, + "id": 15031, "properties": { "facing": "north", "half": "top", @@ -85857,7 +81252,7 @@ } }, { - "id": 16141, + "id": 15032, "properties": { "facing": "north", "half": "top", @@ -85866,7 +81261,7 @@ } }, { - "id": 16142, + "id": 15033, "properties": { "facing": "north", "half": "top", @@ -85875,7 +81270,7 @@ } }, { - "id": 16143, + "id": 15034, "properties": { "facing": "north", "half": "top", @@ -85884,7 +81279,7 @@ } }, { - "id": 16144, + "id": 15035, "properties": { "facing": "north", "half": "bottom", @@ -85894,7 +81289,7 @@ }, { "default": true, - "id": 16145, + "id": 15036, "properties": { "facing": "north", "half": "bottom", @@ -85903,7 +81298,7 @@ } }, { - "id": 16146, + "id": 15037, "properties": { "facing": "north", "half": "bottom", @@ -85912,7 +81307,7 @@ } }, { - "id": 16147, + "id": 15038, "properties": { "facing": "north", "half": "bottom", @@ -85921,7 +81316,7 @@ } }, { - "id": 16148, + "id": 15039, "properties": { "facing": "north", "half": "bottom", @@ -85930,7 +81325,7 @@ } }, { - "id": 16149, + "id": 15040, "properties": { "facing": "north", "half": "bottom", @@ -85939,7 +81334,7 @@ } }, { - "id": 16150, + "id": 15041, "properties": { "facing": "north", "half": "bottom", @@ -85948,7 +81343,7 @@ } }, { - "id": 16151, + "id": 15042, "properties": { "facing": "north", "half": "bottom", @@ -85957,7 +81352,7 @@ } }, { - "id": 16152, + "id": 15043, "properties": { "facing": "north", "half": "bottom", @@ -85966,7 +81361,7 @@ } }, { - "id": 16153, + "id": 15044, "properties": { "facing": "north", "half": "bottom", @@ -85975,7 +81370,7 @@ } }, { - "id": 16154, + "id": 15045, "properties": { "facing": "south", "half": "top", @@ -85984,7 +81379,7 @@ } }, { - "id": 16155, + "id": 15046, "properties": { "facing": "south", "half": "top", @@ -85993,7 +81388,7 @@ } }, { - "id": 16156, + "id": 15047, "properties": { "facing": "south", "half": "top", @@ -86002,7 +81397,7 @@ } }, { - "id": 16157, + "id": 15048, "properties": { "facing": "south", "half": "top", @@ -86011,7 +81406,7 @@ } }, { - "id": 16158, + "id": 15049, "properties": { "facing": "south", "half": "top", @@ -86020,7 +81415,7 @@ } }, { - "id": 16159, + "id": 15050, "properties": { "facing": "south", "half": "top", @@ -86029,7 +81424,7 @@ } }, { - "id": 16160, + "id": 15051, "properties": { "facing": "south", "half": "top", @@ -86038,7 +81433,7 @@ } }, { - "id": 16161, + "id": 15052, "properties": { "facing": "south", "half": "top", @@ -86047,7 +81442,7 @@ } }, { - "id": 16162, + "id": 15053, "properties": { "facing": "south", "half": "top", @@ -86056,7 +81451,7 @@ } }, { - "id": 16163, + "id": 15054, "properties": { "facing": "south", "half": "top", @@ -86065,7 +81460,7 @@ } }, { - "id": 16164, + "id": 15055, "properties": { "facing": "south", "half": "bottom", @@ -86074,7 +81469,7 @@ } }, { - "id": 16165, + "id": 15056, "properties": { "facing": "south", "half": "bottom", @@ -86083,7 +81478,7 @@ } }, { - "id": 16166, + "id": 15057, "properties": { "facing": "south", "half": "bottom", @@ -86092,7 +81487,7 @@ } }, { - "id": 16167, + "id": 15058, "properties": { "facing": "south", "half": "bottom", @@ -86101,7 +81496,7 @@ } }, { - "id": 16168, + "id": 15059, "properties": { "facing": "south", "half": "bottom", @@ -86110,7 +81505,7 @@ } }, { - "id": 16169, + "id": 15060, "properties": { "facing": "south", "half": "bottom", @@ -86119,7 +81514,7 @@ } }, { - "id": 16170, + "id": 15061, "properties": { "facing": "south", "half": "bottom", @@ -86128,7 +81523,7 @@ } }, { - "id": 16171, + "id": 15062, "properties": { "facing": "south", "half": "bottom", @@ -86137,7 +81532,7 @@ } }, { - "id": 16172, + "id": 15063, "properties": { "facing": "south", "half": "bottom", @@ -86146,7 +81541,7 @@ } }, { - "id": 16173, + "id": 15064, "properties": { "facing": "south", "half": "bottom", @@ -86155,7 +81550,7 @@ } }, { - "id": 16174, + "id": 15065, "properties": { "facing": "west", "half": "top", @@ -86164,7 +81559,7 @@ } }, { - "id": 16175, + "id": 15066, "properties": { "facing": "west", "half": "top", @@ -86173,7 +81568,7 @@ } }, { - "id": 16176, + "id": 15067, "properties": { "facing": "west", "half": "top", @@ -86182,7 +81577,7 @@ } }, { - "id": 16177, + "id": 15068, "properties": { "facing": "west", "half": "top", @@ -86191,7 +81586,7 @@ } }, { - "id": 16178, + "id": 15069, "properties": { "facing": "west", "half": "top", @@ -86200,7 +81595,7 @@ } }, { - "id": 16179, + "id": 15070, "properties": { "facing": "west", "half": "top", @@ -86209,7 +81604,7 @@ } }, { - "id": 16180, + "id": 15071, "properties": { "facing": "west", "half": "top", @@ -86218,7 +81613,7 @@ } }, { - "id": 16181, + "id": 15072, "properties": { "facing": "west", "half": "top", @@ -86227,7 +81622,7 @@ } }, { - "id": 16182, + "id": 15073, "properties": { "facing": "west", "half": "top", @@ -86236,7 +81631,7 @@ } }, { - "id": 16183, + "id": 15074, "properties": { "facing": "west", "half": "top", @@ -86245,7 +81640,7 @@ } }, { - "id": 16184, + "id": 15075, "properties": { "facing": "west", "half": "bottom", @@ -86254,7 +81649,7 @@ } }, { - "id": 16185, + "id": 15076, "properties": { "facing": "west", "half": "bottom", @@ -86263,7 +81658,7 @@ } }, { - "id": 16186, + "id": 15077, "properties": { "facing": "west", "half": "bottom", @@ -86272,7 +81667,7 @@ } }, { - "id": 16187, + "id": 15078, "properties": { "facing": "west", "half": "bottom", @@ -86281,7 +81676,7 @@ } }, { - "id": 16188, + "id": 15079, "properties": { "facing": "west", "half": "bottom", @@ -86290,7 +81685,7 @@ } }, { - "id": 16189, + "id": 15080, "properties": { "facing": "west", "half": "bottom", @@ -86299,7 +81694,7 @@ } }, { - "id": 16190, + "id": 15081, "properties": { "facing": "west", "half": "bottom", @@ -86308,7 +81703,7 @@ } }, { - "id": 16191, + "id": 15082, "properties": { "facing": "west", "half": "bottom", @@ -86317,7 +81712,7 @@ } }, { - "id": 16192, + "id": 15083, "properties": { "facing": "west", "half": "bottom", @@ -86326,7 +81721,7 @@ } }, { - "id": 16193, + "id": 15084, "properties": { "facing": "west", "half": "bottom", @@ -86335,7 +81730,7 @@ } }, { - "id": 16194, + "id": 15085, "properties": { "facing": "east", "half": "top", @@ -86344,7 +81739,7 @@ } }, { - "id": 16195, + "id": 15086, "properties": { "facing": "east", "half": "top", @@ -86353,7 +81748,7 @@ } }, { - "id": 16196, + "id": 15087, "properties": { "facing": "east", "half": "top", @@ -86362,7 +81757,7 @@ } }, { - "id": 16197, + "id": 15088, "properties": { "facing": "east", "half": "top", @@ -86371,7 +81766,7 @@ } }, { - "id": 16198, + "id": 15089, "properties": { "facing": "east", "half": "top", @@ -86380,7 +81775,7 @@ } }, { - "id": 16199, + "id": 15090, "properties": { "facing": "east", "half": "top", @@ -86389,7 +81784,7 @@ } }, { - "id": 16200, + "id": 15091, "properties": { "facing": "east", "half": "top", @@ -86398,7 +81793,7 @@ } }, { - "id": 16201, + "id": 15092, "properties": { "facing": "east", "half": "top", @@ -86407,7 +81802,7 @@ } }, { - "id": 16202, + "id": 15093, "properties": { "facing": "east", "half": "top", @@ -86416,7 +81811,7 @@ } }, { - "id": 16203, + "id": 15094, "properties": { "facing": "east", "half": "top", @@ -86425,7 +81820,7 @@ } }, { - "id": 16204, + "id": 15095, "properties": { "facing": "east", "half": "bottom", @@ -86434,7 +81829,7 @@ } }, { - "id": 16205, + "id": 15096, "properties": { "facing": "east", "half": "bottom", @@ -86443,7 +81838,7 @@ } }, { - "id": 16206, + "id": 15097, "properties": { "facing": "east", "half": "bottom", @@ -86452,7 +81847,7 @@ } }, { - "id": 16207, + "id": 15098, "properties": { "facing": "east", "half": "bottom", @@ -86461,7 +81856,7 @@ } }, { - "id": 16208, + "id": 15099, "properties": { "facing": "east", "half": "bottom", @@ -86470,7 +81865,7 @@ } }, { - "id": 16209, + "id": 15100, "properties": { "facing": "east", "half": "bottom", @@ -86479,7 +81874,7 @@ } }, { - "id": 16210, + "id": 15101, "properties": { "facing": "east", "half": "bottom", @@ -86488,7 +81883,7 @@ } }, { - "id": 16211, + "id": 15102, "properties": { "facing": "east", "half": "bottom", @@ -86497,7 +81892,7 @@ } }, { - "id": 16212, + "id": 15103, "properties": { "facing": "east", "half": "bottom", @@ -86506,7 +81901,7 @@ } }, { - "id": 16213, + "id": 15104, "properties": { "facing": "east", "half": "bottom", @@ -86553,7 +81948,7 @@ }, "states": [ { - "id": 20180, + "id": 19071, "properties": { "east": "none", "north": "none", @@ -86564,7 +81959,7 @@ } }, { - "id": 20181, + "id": 19072, "properties": { "east": "none", "north": "none", @@ -86575,7 +81970,7 @@ } }, { - "id": 20182, + "id": 19073, "properties": { "east": "none", "north": "none", @@ -86587,7 +81982,7 @@ }, { "default": true, - "id": 20183, + "id": 19074, "properties": { "east": "none", "north": "none", @@ -86598,7 +81993,7 @@ } }, { - "id": 20184, + "id": 19075, "properties": { "east": "none", "north": "none", @@ -86609,7 +82004,7 @@ } }, { - "id": 20185, + "id": 19076, "properties": { "east": "none", "north": "none", @@ -86620,7 +82015,7 @@ } }, { - "id": 20186, + "id": 19077, "properties": { "east": "none", "north": "none", @@ -86631,7 +82026,7 @@ } }, { - "id": 20187, + "id": 19078, "properties": { "east": "none", "north": "none", @@ -86642,7 +82037,7 @@ } }, { - "id": 20188, + "id": 19079, "properties": { "east": "none", "north": "none", @@ -86653,7 +82048,7 @@ } }, { - "id": 20189, + "id": 19080, "properties": { "east": "none", "north": "none", @@ -86664,7 +82059,7 @@ } }, { - "id": 20190, + "id": 19081, "properties": { "east": "none", "north": "none", @@ -86675,7 +82070,7 @@ } }, { - "id": 20191, + "id": 19082, "properties": { "east": "none", "north": "none", @@ -86686,7 +82081,7 @@ } }, { - "id": 20192, + "id": 19083, "properties": { "east": "none", "north": "none", @@ -86697,7 +82092,7 @@ } }, { - "id": 20193, + "id": 19084, "properties": { "east": "none", "north": "none", @@ -86708,7 +82103,7 @@ } }, { - "id": 20194, + "id": 19085, "properties": { "east": "none", "north": "none", @@ -86719,7 +82114,7 @@ } }, { - "id": 20195, + "id": 19086, "properties": { "east": "none", "north": "none", @@ -86730,7 +82125,7 @@ } }, { - "id": 20196, + "id": 19087, "properties": { "east": "none", "north": "none", @@ -86741,7 +82136,7 @@ } }, { - "id": 20197, + "id": 19088, "properties": { "east": "none", "north": "none", @@ -86752,7 +82147,7 @@ } }, { - "id": 20198, + "id": 19089, "properties": { "east": "none", "north": "none", @@ -86763,7 +82158,7 @@ } }, { - "id": 20199, + "id": 19090, "properties": { "east": "none", "north": "none", @@ -86774,7 +82169,7 @@ } }, { - "id": 20200, + "id": 19091, "properties": { "east": "none", "north": "none", @@ -86785,7 +82180,7 @@ } }, { - "id": 20201, + "id": 19092, "properties": { "east": "none", "north": "none", @@ -86796,7 +82191,7 @@ } }, { - "id": 20202, + "id": 19093, "properties": { "east": "none", "north": "none", @@ -86807,7 +82202,7 @@ } }, { - "id": 20203, + "id": 19094, "properties": { "east": "none", "north": "none", @@ -86818,7 +82213,7 @@ } }, { - "id": 20204, + "id": 19095, "properties": { "east": "none", "north": "none", @@ -86829,7 +82224,7 @@ } }, { - "id": 20205, + "id": 19096, "properties": { "east": "none", "north": "none", @@ -86840,7 +82235,7 @@ } }, { - "id": 20206, + "id": 19097, "properties": { "east": "none", "north": "none", @@ -86851,7 +82246,7 @@ } }, { - "id": 20207, + "id": 19098, "properties": { "east": "none", "north": "none", @@ -86862,7 +82257,7 @@ } }, { - "id": 20208, + "id": 19099, "properties": { "east": "none", "north": "none", @@ -86873,7 +82268,7 @@ } }, { - "id": 20209, + "id": 19100, "properties": { "east": "none", "north": "none", @@ -86884,7 +82279,7 @@ } }, { - "id": 20210, + "id": 19101, "properties": { "east": "none", "north": "none", @@ -86895,7 +82290,7 @@ } }, { - "id": 20211, + "id": 19102, "properties": { "east": "none", "north": "none", @@ -86906,7 +82301,7 @@ } }, { - "id": 20212, + "id": 19103, "properties": { "east": "none", "north": "none", @@ -86917,7 +82312,7 @@ } }, { - "id": 20213, + "id": 19104, "properties": { "east": "none", "north": "none", @@ -86928,7 +82323,7 @@ } }, { - "id": 20214, + "id": 19105, "properties": { "east": "none", "north": "none", @@ -86939,7 +82334,7 @@ } }, { - "id": 20215, + "id": 19106, "properties": { "east": "none", "north": "none", @@ -86950,7 +82345,7 @@ } }, { - "id": 20216, + "id": 19107, "properties": { "east": "none", "north": "low", @@ -86961,7 +82356,7 @@ } }, { - "id": 20217, + "id": 19108, "properties": { "east": "none", "north": "low", @@ -86972,7 +82367,7 @@ } }, { - "id": 20218, + "id": 19109, "properties": { "east": "none", "north": "low", @@ -86983,7 +82378,7 @@ } }, { - "id": 20219, + "id": 19110, "properties": { "east": "none", "north": "low", @@ -86994,7 +82389,7 @@ } }, { - "id": 20220, + "id": 19111, "properties": { "east": "none", "north": "low", @@ -87005,7 +82400,7 @@ } }, { - "id": 20221, + "id": 19112, "properties": { "east": "none", "north": "low", @@ -87016,7 +82411,7 @@ } }, { - "id": 20222, + "id": 19113, "properties": { "east": "none", "north": "low", @@ -87027,7 +82422,7 @@ } }, { - "id": 20223, + "id": 19114, "properties": { "east": "none", "north": "low", @@ -87038,7 +82433,7 @@ } }, { - "id": 20224, + "id": 19115, "properties": { "east": "none", "north": "low", @@ -87049,7 +82444,7 @@ } }, { - "id": 20225, + "id": 19116, "properties": { "east": "none", "north": "low", @@ -87060,7 +82455,7 @@ } }, { - "id": 20226, + "id": 19117, "properties": { "east": "none", "north": "low", @@ -87071,7 +82466,7 @@ } }, { - "id": 20227, + "id": 19118, "properties": { "east": "none", "north": "low", @@ -87082,7 +82477,7 @@ } }, { - "id": 20228, + "id": 19119, "properties": { "east": "none", "north": "low", @@ -87093,7 +82488,7 @@ } }, { - "id": 20229, + "id": 19120, "properties": { "east": "none", "north": "low", @@ -87104,7 +82499,7 @@ } }, { - "id": 20230, + "id": 19121, "properties": { "east": "none", "north": "low", @@ -87115,7 +82510,7 @@ } }, { - "id": 20231, + "id": 19122, "properties": { "east": "none", "north": "low", @@ -87126,7 +82521,7 @@ } }, { - "id": 20232, + "id": 19123, "properties": { "east": "none", "north": "low", @@ -87137,7 +82532,7 @@ } }, { - "id": 20233, + "id": 19124, "properties": { "east": "none", "north": "low", @@ -87148,7 +82543,7 @@ } }, { - "id": 20234, + "id": 19125, "properties": { "east": "none", "north": "low", @@ -87159,7 +82554,7 @@ } }, { - "id": 20235, + "id": 19126, "properties": { "east": "none", "north": "low", @@ -87170,7 +82565,7 @@ } }, { - "id": 20236, + "id": 19127, "properties": { "east": "none", "north": "low", @@ -87181,7 +82576,7 @@ } }, { - "id": 20237, + "id": 19128, "properties": { "east": "none", "north": "low", @@ -87192,7 +82587,7 @@ } }, { - "id": 20238, + "id": 19129, "properties": { "east": "none", "north": "low", @@ -87203,7 +82598,7 @@ } }, { - "id": 20239, + "id": 19130, "properties": { "east": "none", "north": "low", @@ -87214,7 +82609,7 @@ } }, { - "id": 20240, + "id": 19131, "properties": { "east": "none", "north": "low", @@ -87225,7 +82620,7 @@ } }, { - "id": 20241, + "id": 19132, "properties": { "east": "none", "north": "low", @@ -87236,7 +82631,7 @@ } }, { - "id": 20242, + "id": 19133, "properties": { "east": "none", "north": "low", @@ -87247,7 +82642,7 @@ } }, { - "id": 20243, + "id": 19134, "properties": { "east": "none", "north": "low", @@ -87258,7 +82653,7 @@ } }, { - "id": 20244, + "id": 19135, "properties": { "east": "none", "north": "low", @@ -87269,7 +82664,7 @@ } }, { - "id": 20245, + "id": 19136, "properties": { "east": "none", "north": "low", @@ -87280,7 +82675,7 @@ } }, { - "id": 20246, + "id": 19137, "properties": { "east": "none", "north": "low", @@ -87291,7 +82686,7 @@ } }, { - "id": 20247, + "id": 19138, "properties": { "east": "none", "north": "low", @@ -87302,7 +82697,7 @@ } }, { - "id": 20248, + "id": 19139, "properties": { "east": "none", "north": "low", @@ -87313,7 +82708,7 @@ } }, { - "id": 20249, + "id": 19140, "properties": { "east": "none", "north": "low", @@ -87324,7 +82719,7 @@ } }, { - "id": 20250, + "id": 19141, "properties": { "east": "none", "north": "low", @@ -87335,7 +82730,7 @@ } }, { - "id": 20251, + "id": 19142, "properties": { "east": "none", "north": "low", @@ -87346,7 +82741,7 @@ } }, { - "id": 20252, + "id": 19143, "properties": { "east": "none", "north": "tall", @@ -87357,7 +82752,7 @@ } }, { - "id": 20253, + "id": 19144, "properties": { "east": "none", "north": "tall", @@ -87368,7 +82763,7 @@ } }, { - "id": 20254, + "id": 19145, "properties": { "east": "none", "north": "tall", @@ -87379,7 +82774,7 @@ } }, { - "id": 20255, + "id": 19146, "properties": { "east": "none", "north": "tall", @@ -87390,7 +82785,7 @@ } }, { - "id": 20256, + "id": 19147, "properties": { "east": "none", "north": "tall", @@ -87401,7 +82796,7 @@ } }, { - "id": 20257, + "id": 19148, "properties": { "east": "none", "north": "tall", @@ -87412,7 +82807,7 @@ } }, { - "id": 20258, + "id": 19149, "properties": { "east": "none", "north": "tall", @@ -87423,7 +82818,7 @@ } }, { - "id": 20259, + "id": 19150, "properties": { "east": "none", "north": "tall", @@ -87434,7 +82829,7 @@ } }, { - "id": 20260, + "id": 19151, "properties": { "east": "none", "north": "tall", @@ -87445,7 +82840,7 @@ } }, { - "id": 20261, + "id": 19152, "properties": { "east": "none", "north": "tall", @@ -87456,7 +82851,7 @@ } }, { - "id": 20262, + "id": 19153, "properties": { "east": "none", "north": "tall", @@ -87467,7 +82862,7 @@ } }, { - "id": 20263, + "id": 19154, "properties": { "east": "none", "north": "tall", @@ -87478,7 +82873,7 @@ } }, { - "id": 20264, + "id": 19155, "properties": { "east": "none", "north": "tall", @@ -87489,7 +82884,7 @@ } }, { - "id": 20265, + "id": 19156, "properties": { "east": "none", "north": "tall", @@ -87500,7 +82895,7 @@ } }, { - "id": 20266, + "id": 19157, "properties": { "east": "none", "north": "tall", @@ -87511,7 +82906,7 @@ } }, { - "id": 20267, + "id": 19158, "properties": { "east": "none", "north": "tall", @@ -87522,7 +82917,7 @@ } }, { - "id": 20268, + "id": 19159, "properties": { "east": "none", "north": "tall", @@ -87533,7 +82928,7 @@ } }, { - "id": 20269, + "id": 19160, "properties": { "east": "none", "north": "tall", @@ -87544,7 +82939,7 @@ } }, { - "id": 20270, + "id": 19161, "properties": { "east": "none", "north": "tall", @@ -87555,7 +82950,7 @@ } }, { - "id": 20271, + "id": 19162, "properties": { "east": "none", "north": "tall", @@ -87566,7 +82961,7 @@ } }, { - "id": 20272, + "id": 19163, "properties": { "east": "none", "north": "tall", @@ -87577,7 +82972,7 @@ } }, { - "id": 20273, + "id": 19164, "properties": { "east": "none", "north": "tall", @@ -87588,7 +82983,7 @@ } }, { - "id": 20274, + "id": 19165, "properties": { "east": "none", "north": "tall", @@ -87599,7 +82994,7 @@ } }, { - "id": 20275, + "id": 19166, "properties": { "east": "none", "north": "tall", @@ -87610,7 +83005,7 @@ } }, { - "id": 20276, + "id": 19167, "properties": { "east": "none", "north": "tall", @@ -87621,7 +83016,7 @@ } }, { - "id": 20277, + "id": 19168, "properties": { "east": "none", "north": "tall", @@ -87632,7 +83027,7 @@ } }, { - "id": 20278, + "id": 19169, "properties": { "east": "none", "north": "tall", @@ -87643,7 +83038,7 @@ } }, { - "id": 20279, + "id": 19170, "properties": { "east": "none", "north": "tall", @@ -87654,7 +83049,7 @@ } }, { - "id": 20280, + "id": 19171, "properties": { "east": "none", "north": "tall", @@ -87665,7 +83060,7 @@ } }, { - "id": 20281, + "id": 19172, "properties": { "east": "none", "north": "tall", @@ -87676,7 +83071,7 @@ } }, { - "id": 20282, + "id": 19173, "properties": { "east": "none", "north": "tall", @@ -87687,7 +83082,7 @@ } }, { - "id": 20283, + "id": 19174, "properties": { "east": "none", "north": "tall", @@ -87698,7 +83093,7 @@ } }, { - "id": 20284, + "id": 19175, "properties": { "east": "none", "north": "tall", @@ -87709,7 +83104,7 @@ } }, { - "id": 20285, + "id": 19176, "properties": { "east": "none", "north": "tall", @@ -87720,7 +83115,7 @@ } }, { - "id": 20286, + "id": 19177, "properties": { "east": "none", "north": "tall", @@ -87731,7 +83126,7 @@ } }, { - "id": 20287, + "id": 19178, "properties": { "east": "none", "north": "tall", @@ -87742,7 +83137,7 @@ } }, { - "id": 20288, + "id": 19179, "properties": { "east": "low", "north": "none", @@ -87753,7 +83148,7 @@ } }, { - "id": 20289, + "id": 19180, "properties": { "east": "low", "north": "none", @@ -87764,7 +83159,7 @@ } }, { - "id": 20290, + "id": 19181, "properties": { "east": "low", "north": "none", @@ -87775,7 +83170,7 @@ } }, { - "id": 20291, + "id": 19182, "properties": { "east": "low", "north": "none", @@ -87786,7 +83181,7 @@ } }, { - "id": 20292, + "id": 19183, "properties": { "east": "low", "north": "none", @@ -87797,7 +83192,7 @@ } }, { - "id": 20293, + "id": 19184, "properties": { "east": "low", "north": "none", @@ -87808,7 +83203,7 @@ } }, { - "id": 20294, + "id": 19185, "properties": { "east": "low", "north": "none", @@ -87819,7 +83214,7 @@ } }, { - "id": 20295, + "id": 19186, "properties": { "east": "low", "north": "none", @@ -87830,7 +83225,7 @@ } }, { - "id": 20296, + "id": 19187, "properties": { "east": "low", "north": "none", @@ -87841,7 +83236,7 @@ } }, { - "id": 20297, + "id": 19188, "properties": { "east": "low", "north": "none", @@ -87852,7 +83247,7 @@ } }, { - "id": 20298, + "id": 19189, "properties": { "east": "low", "north": "none", @@ -87863,7 +83258,7 @@ } }, { - "id": 20299, + "id": 19190, "properties": { "east": "low", "north": "none", @@ -87874,7 +83269,7 @@ } }, { - "id": 20300, + "id": 19191, "properties": { "east": "low", "north": "none", @@ -87885,7 +83280,7 @@ } }, { - "id": 20301, + "id": 19192, "properties": { "east": "low", "north": "none", @@ -87896,7 +83291,7 @@ } }, { - "id": 20302, + "id": 19193, "properties": { "east": "low", "north": "none", @@ -87907,7 +83302,7 @@ } }, { - "id": 20303, + "id": 19194, "properties": { "east": "low", "north": "none", @@ -87918,7 +83313,7 @@ } }, { - "id": 20304, + "id": 19195, "properties": { "east": "low", "north": "none", @@ -87929,7 +83324,7 @@ } }, { - "id": 20305, + "id": 19196, "properties": { "east": "low", "north": "none", @@ -87940,7 +83335,7 @@ } }, { - "id": 20306, + "id": 19197, "properties": { "east": "low", "north": "none", @@ -87951,7 +83346,7 @@ } }, { - "id": 20307, + "id": 19198, "properties": { "east": "low", "north": "none", @@ -87962,7 +83357,7 @@ } }, { - "id": 20308, + "id": 19199, "properties": { "east": "low", "north": "none", @@ -87973,7 +83368,7 @@ } }, { - "id": 20309, + "id": 19200, "properties": { "east": "low", "north": "none", @@ -87984,7 +83379,7 @@ } }, { - "id": 20310, + "id": 19201, "properties": { "east": "low", "north": "none", @@ -87995,7 +83390,7 @@ } }, { - "id": 20311, + "id": 19202, "properties": { "east": "low", "north": "none", @@ -88006,7 +83401,7 @@ } }, { - "id": 20312, + "id": 19203, "properties": { "east": "low", "north": "none", @@ -88017,7 +83412,7 @@ } }, { - "id": 20313, + "id": 19204, "properties": { "east": "low", "north": "none", @@ -88028,7 +83423,7 @@ } }, { - "id": 20314, + "id": 19205, "properties": { "east": "low", "north": "none", @@ -88039,7 +83434,7 @@ } }, { - "id": 20315, + "id": 19206, "properties": { "east": "low", "north": "none", @@ -88050,7 +83445,7 @@ } }, { - "id": 20316, + "id": 19207, "properties": { "east": "low", "north": "none", @@ -88061,7 +83456,7 @@ } }, { - "id": 20317, + "id": 19208, "properties": { "east": "low", "north": "none", @@ -88072,7 +83467,7 @@ } }, { - "id": 20318, + "id": 19209, "properties": { "east": "low", "north": "none", @@ -88083,7 +83478,7 @@ } }, { - "id": 20319, + "id": 19210, "properties": { "east": "low", "north": "none", @@ -88094,7 +83489,7 @@ } }, { - "id": 20320, + "id": 19211, "properties": { "east": "low", "north": "none", @@ -88105,7 +83500,7 @@ } }, { - "id": 20321, + "id": 19212, "properties": { "east": "low", "north": "none", @@ -88116,7 +83511,7 @@ } }, { - "id": 20322, + "id": 19213, "properties": { "east": "low", "north": "none", @@ -88127,7 +83522,7 @@ } }, { - "id": 20323, + "id": 19214, "properties": { "east": "low", "north": "none", @@ -88138,7 +83533,7 @@ } }, { - "id": 20324, + "id": 19215, "properties": { "east": "low", "north": "low", @@ -88149,7 +83544,7 @@ } }, { - "id": 20325, + "id": 19216, "properties": { "east": "low", "north": "low", @@ -88160,7 +83555,7 @@ } }, { - "id": 20326, + "id": 19217, "properties": { "east": "low", "north": "low", @@ -88171,7 +83566,7 @@ } }, { - "id": 20327, + "id": 19218, "properties": { "east": "low", "north": "low", @@ -88182,7 +83577,7 @@ } }, { - "id": 20328, + "id": 19219, "properties": { "east": "low", "north": "low", @@ -88193,7 +83588,7 @@ } }, { - "id": 20329, + "id": 19220, "properties": { "east": "low", "north": "low", @@ -88204,7 +83599,7 @@ } }, { - "id": 20330, + "id": 19221, "properties": { "east": "low", "north": "low", @@ -88215,7 +83610,7 @@ } }, { - "id": 20331, + "id": 19222, "properties": { "east": "low", "north": "low", @@ -88226,7 +83621,7 @@ } }, { - "id": 20332, + "id": 19223, "properties": { "east": "low", "north": "low", @@ -88237,7 +83632,7 @@ } }, { - "id": 20333, + "id": 19224, "properties": { "east": "low", "north": "low", @@ -88248,7 +83643,7 @@ } }, { - "id": 20334, + "id": 19225, "properties": { "east": "low", "north": "low", @@ -88259,7 +83654,7 @@ } }, { - "id": 20335, + "id": 19226, "properties": { "east": "low", "north": "low", @@ -88270,7 +83665,7 @@ } }, { - "id": 20336, + "id": 19227, "properties": { "east": "low", "north": "low", @@ -88281,7 +83676,7 @@ } }, { - "id": 20337, + "id": 19228, "properties": { "east": "low", "north": "low", @@ -88292,7 +83687,7 @@ } }, { - "id": 20338, + "id": 19229, "properties": { "east": "low", "north": "low", @@ -88303,7 +83698,7 @@ } }, { - "id": 20339, + "id": 19230, "properties": { "east": "low", "north": "low", @@ -88314,7 +83709,7 @@ } }, { - "id": 20340, + "id": 19231, "properties": { "east": "low", "north": "low", @@ -88325,7 +83720,7 @@ } }, { - "id": 20341, + "id": 19232, "properties": { "east": "low", "north": "low", @@ -88336,7 +83731,7 @@ } }, { - "id": 20342, + "id": 19233, "properties": { "east": "low", "north": "low", @@ -88347,7 +83742,7 @@ } }, { - "id": 20343, + "id": 19234, "properties": { "east": "low", "north": "low", @@ -88358,7 +83753,7 @@ } }, { - "id": 20344, + "id": 19235, "properties": { "east": "low", "north": "low", @@ -88369,7 +83764,7 @@ } }, { - "id": 20345, + "id": 19236, "properties": { "east": "low", "north": "low", @@ -88380,7 +83775,7 @@ } }, { - "id": 20346, + "id": 19237, "properties": { "east": "low", "north": "low", @@ -88391,7 +83786,7 @@ } }, { - "id": 20347, + "id": 19238, "properties": { "east": "low", "north": "low", @@ -88402,7 +83797,7 @@ } }, { - "id": 20348, + "id": 19239, "properties": { "east": "low", "north": "low", @@ -88413,7 +83808,7 @@ } }, { - "id": 20349, + "id": 19240, "properties": { "east": "low", "north": "low", @@ -88424,7 +83819,7 @@ } }, { - "id": 20350, + "id": 19241, "properties": { "east": "low", "north": "low", @@ -88435,7 +83830,7 @@ } }, { - "id": 20351, + "id": 19242, "properties": { "east": "low", "north": "low", @@ -88446,7 +83841,7 @@ } }, { - "id": 20352, + "id": 19243, "properties": { "east": "low", "north": "low", @@ -88457,7 +83852,7 @@ } }, { - "id": 20353, + "id": 19244, "properties": { "east": "low", "north": "low", @@ -88468,7 +83863,7 @@ } }, { - "id": 20354, + "id": 19245, "properties": { "east": "low", "north": "low", @@ -88479,7 +83874,7 @@ } }, { - "id": 20355, + "id": 19246, "properties": { "east": "low", "north": "low", @@ -88490,7 +83885,7 @@ } }, { - "id": 20356, + "id": 19247, "properties": { "east": "low", "north": "low", @@ -88501,7 +83896,7 @@ } }, { - "id": 20357, + "id": 19248, "properties": { "east": "low", "north": "low", @@ -88512,7 +83907,7 @@ } }, { - "id": 20358, + "id": 19249, "properties": { "east": "low", "north": "low", @@ -88523,7 +83918,7 @@ } }, { - "id": 20359, + "id": 19250, "properties": { "east": "low", "north": "low", @@ -88534,7 +83929,7 @@ } }, { - "id": 20360, + "id": 19251, "properties": { "east": "low", "north": "tall", @@ -88545,7 +83940,7 @@ } }, { - "id": 20361, + "id": 19252, "properties": { "east": "low", "north": "tall", @@ -88556,7 +83951,7 @@ } }, { - "id": 20362, + "id": 19253, "properties": { "east": "low", "north": "tall", @@ -88567,7 +83962,7 @@ } }, { - "id": 20363, + "id": 19254, "properties": { "east": "low", "north": "tall", @@ -88578,7 +83973,7 @@ } }, { - "id": 20364, + "id": 19255, "properties": { "east": "low", "north": "tall", @@ -88589,7 +83984,7 @@ } }, { - "id": 20365, + "id": 19256, "properties": { "east": "low", "north": "tall", @@ -88600,7 +83995,7 @@ } }, { - "id": 20366, + "id": 19257, "properties": { "east": "low", "north": "tall", @@ -88611,7 +84006,7 @@ } }, { - "id": 20367, + "id": 19258, "properties": { "east": "low", "north": "tall", @@ -88622,7 +84017,7 @@ } }, { - "id": 20368, + "id": 19259, "properties": { "east": "low", "north": "tall", @@ -88633,7 +84028,7 @@ } }, { - "id": 20369, + "id": 19260, "properties": { "east": "low", "north": "tall", @@ -88644,7 +84039,7 @@ } }, { - "id": 20370, + "id": 19261, "properties": { "east": "low", "north": "tall", @@ -88655,7 +84050,7 @@ } }, { - "id": 20371, + "id": 19262, "properties": { "east": "low", "north": "tall", @@ -88666,7 +84061,7 @@ } }, { - "id": 20372, + "id": 19263, "properties": { "east": "low", "north": "tall", @@ -88677,7 +84072,7 @@ } }, { - "id": 20373, + "id": 19264, "properties": { "east": "low", "north": "tall", @@ -88688,7 +84083,7 @@ } }, { - "id": 20374, + "id": 19265, "properties": { "east": "low", "north": "tall", @@ -88699,7 +84094,7 @@ } }, { - "id": 20375, + "id": 19266, "properties": { "east": "low", "north": "tall", @@ -88710,7 +84105,7 @@ } }, { - "id": 20376, + "id": 19267, "properties": { "east": "low", "north": "tall", @@ -88721,7 +84116,7 @@ } }, { - "id": 20377, + "id": 19268, "properties": { "east": "low", "north": "tall", @@ -88732,7 +84127,7 @@ } }, { - "id": 20378, + "id": 19269, "properties": { "east": "low", "north": "tall", @@ -88743,7 +84138,7 @@ } }, { - "id": 20379, + "id": 19270, "properties": { "east": "low", "north": "tall", @@ -88754,7 +84149,7 @@ } }, { - "id": 20380, + "id": 19271, "properties": { "east": "low", "north": "tall", @@ -88765,7 +84160,7 @@ } }, { - "id": 20381, + "id": 19272, "properties": { "east": "low", "north": "tall", @@ -88776,7 +84171,7 @@ } }, { - "id": 20382, + "id": 19273, "properties": { "east": "low", "north": "tall", @@ -88787,7 +84182,7 @@ } }, { - "id": 20383, + "id": 19274, "properties": { "east": "low", "north": "tall", @@ -88798,7 +84193,7 @@ } }, { - "id": 20384, + "id": 19275, "properties": { "east": "low", "north": "tall", @@ -88809,7 +84204,7 @@ } }, { - "id": 20385, + "id": 19276, "properties": { "east": "low", "north": "tall", @@ -88820,7 +84215,7 @@ } }, { - "id": 20386, + "id": 19277, "properties": { "east": "low", "north": "tall", @@ -88831,7 +84226,7 @@ } }, { - "id": 20387, + "id": 19278, "properties": { "east": "low", "north": "tall", @@ -88842,7 +84237,7 @@ } }, { - "id": 20388, + "id": 19279, "properties": { "east": "low", "north": "tall", @@ -88853,7 +84248,7 @@ } }, { - "id": 20389, + "id": 19280, "properties": { "east": "low", "north": "tall", @@ -88864,7 +84259,7 @@ } }, { - "id": 20390, + "id": 19281, "properties": { "east": "low", "north": "tall", @@ -88875,7 +84270,7 @@ } }, { - "id": 20391, + "id": 19282, "properties": { "east": "low", "north": "tall", @@ -88886,7 +84281,7 @@ } }, { - "id": 20392, + "id": 19283, "properties": { "east": "low", "north": "tall", @@ -88897,7 +84292,7 @@ } }, { - "id": 20393, + "id": 19284, "properties": { "east": "low", "north": "tall", @@ -88908,7 +84303,7 @@ } }, { - "id": 20394, + "id": 19285, "properties": { "east": "low", "north": "tall", @@ -88919,7 +84314,7 @@ } }, { - "id": 20395, + "id": 19286, "properties": { "east": "low", "north": "tall", @@ -88930,7 +84325,7 @@ } }, { - "id": 20396, + "id": 19287, "properties": { "east": "tall", "north": "none", @@ -88941,7 +84336,7 @@ } }, { - "id": 20397, + "id": 19288, "properties": { "east": "tall", "north": "none", @@ -88952,7 +84347,7 @@ } }, { - "id": 20398, + "id": 19289, "properties": { "east": "tall", "north": "none", @@ -88963,7 +84358,7 @@ } }, { - "id": 20399, + "id": 19290, "properties": { "east": "tall", "north": "none", @@ -88974,7 +84369,7 @@ } }, { - "id": 20400, + "id": 19291, "properties": { "east": "tall", "north": "none", @@ -88985,7 +84380,7 @@ } }, { - "id": 20401, + "id": 19292, "properties": { "east": "tall", "north": "none", @@ -88996,7 +84391,7 @@ } }, { - "id": 20402, + "id": 19293, "properties": { "east": "tall", "north": "none", @@ -89007,7 +84402,7 @@ } }, { - "id": 20403, + "id": 19294, "properties": { "east": "tall", "north": "none", @@ -89018,7 +84413,7 @@ } }, { - "id": 20404, + "id": 19295, "properties": { "east": "tall", "north": "none", @@ -89029,7 +84424,7 @@ } }, { - "id": 20405, + "id": 19296, "properties": { "east": "tall", "north": "none", @@ -89040,7 +84435,7 @@ } }, { - "id": 20406, + "id": 19297, "properties": { "east": "tall", "north": "none", @@ -89051,7 +84446,7 @@ } }, { - "id": 20407, + "id": 19298, "properties": { "east": "tall", "north": "none", @@ -89062,7 +84457,7 @@ } }, { - "id": 20408, + "id": 19299, "properties": { "east": "tall", "north": "none", @@ -89073,7 +84468,7 @@ } }, { - "id": 20409, + "id": 19300, "properties": { "east": "tall", "north": "none", @@ -89084,7 +84479,7 @@ } }, { - "id": 20410, + "id": 19301, "properties": { "east": "tall", "north": "none", @@ -89095,7 +84490,7 @@ } }, { - "id": 20411, + "id": 19302, "properties": { "east": "tall", "north": "none", @@ -89106,7 +84501,7 @@ } }, { - "id": 20412, + "id": 19303, "properties": { "east": "tall", "north": "none", @@ -89117,7 +84512,7 @@ } }, { - "id": 20413, + "id": 19304, "properties": { "east": "tall", "north": "none", @@ -89128,7 +84523,7 @@ } }, { - "id": 20414, + "id": 19305, "properties": { "east": "tall", "north": "none", @@ -89139,7 +84534,7 @@ } }, { - "id": 20415, + "id": 19306, "properties": { "east": "tall", "north": "none", @@ -89150,7 +84545,7 @@ } }, { - "id": 20416, + "id": 19307, "properties": { "east": "tall", "north": "none", @@ -89161,7 +84556,7 @@ } }, { - "id": 20417, + "id": 19308, "properties": { "east": "tall", "north": "none", @@ -89172,7 +84567,7 @@ } }, { - "id": 20418, + "id": 19309, "properties": { "east": "tall", "north": "none", @@ -89183,7 +84578,7 @@ } }, { - "id": 20419, + "id": 19310, "properties": { "east": "tall", "north": "none", @@ -89194,7 +84589,7 @@ } }, { - "id": 20420, + "id": 19311, "properties": { "east": "tall", "north": "none", @@ -89205,7 +84600,7 @@ } }, { - "id": 20421, + "id": 19312, "properties": { "east": "tall", "north": "none", @@ -89216,7 +84611,7 @@ } }, { - "id": 20422, + "id": 19313, "properties": { "east": "tall", "north": "none", @@ -89227,7 +84622,7 @@ } }, { - "id": 20423, + "id": 19314, "properties": { "east": "tall", "north": "none", @@ -89238,7 +84633,7 @@ } }, { - "id": 20424, + "id": 19315, "properties": { "east": "tall", "north": "none", @@ -89249,7 +84644,7 @@ } }, { - "id": 20425, + "id": 19316, "properties": { "east": "tall", "north": "none", @@ -89260,7 +84655,7 @@ } }, { - "id": 20426, + "id": 19317, "properties": { "east": "tall", "north": "none", @@ -89271,7 +84666,7 @@ } }, { - "id": 20427, + "id": 19318, "properties": { "east": "tall", "north": "none", @@ -89282,7 +84677,7 @@ } }, { - "id": 20428, + "id": 19319, "properties": { "east": "tall", "north": "none", @@ -89293,7 +84688,7 @@ } }, { - "id": 20429, + "id": 19320, "properties": { "east": "tall", "north": "none", @@ -89304,7 +84699,7 @@ } }, { - "id": 20430, + "id": 19321, "properties": { "east": "tall", "north": "none", @@ -89315,7 +84710,7 @@ } }, { - "id": 20431, + "id": 19322, "properties": { "east": "tall", "north": "none", @@ -89326,7 +84721,7 @@ } }, { - "id": 20432, + "id": 19323, "properties": { "east": "tall", "north": "low", @@ -89337,7 +84732,7 @@ } }, { - "id": 20433, + "id": 19324, "properties": { "east": "tall", "north": "low", @@ -89348,7 +84743,7 @@ } }, { - "id": 20434, + "id": 19325, "properties": { "east": "tall", "north": "low", @@ -89359,7 +84754,7 @@ } }, { - "id": 20435, + "id": 19326, "properties": { "east": "tall", "north": "low", @@ -89370,7 +84765,7 @@ } }, { - "id": 20436, + "id": 19327, "properties": { "east": "tall", "north": "low", @@ -89381,7 +84776,7 @@ } }, { - "id": 20437, + "id": 19328, "properties": { "east": "tall", "north": "low", @@ -89392,7 +84787,7 @@ } }, { - "id": 20438, + "id": 19329, "properties": { "east": "tall", "north": "low", @@ -89403,7 +84798,7 @@ } }, { - "id": 20439, + "id": 19330, "properties": { "east": "tall", "north": "low", @@ -89414,7 +84809,7 @@ } }, { - "id": 20440, + "id": 19331, "properties": { "east": "tall", "north": "low", @@ -89425,7 +84820,7 @@ } }, { - "id": 20441, + "id": 19332, "properties": { "east": "tall", "north": "low", @@ -89436,7 +84831,7 @@ } }, { - "id": 20442, + "id": 19333, "properties": { "east": "tall", "north": "low", @@ -89447,7 +84842,7 @@ } }, { - "id": 20443, + "id": 19334, "properties": { "east": "tall", "north": "low", @@ -89458,7 +84853,7 @@ } }, { - "id": 20444, + "id": 19335, "properties": { "east": "tall", "north": "low", @@ -89469,7 +84864,7 @@ } }, { - "id": 20445, + "id": 19336, "properties": { "east": "tall", "north": "low", @@ -89480,7 +84875,7 @@ } }, { - "id": 20446, + "id": 19337, "properties": { "east": "tall", "north": "low", @@ -89491,7 +84886,7 @@ } }, { - "id": 20447, + "id": 19338, "properties": { "east": "tall", "north": "low", @@ -89502,7 +84897,7 @@ } }, { - "id": 20448, + "id": 19339, "properties": { "east": "tall", "north": "low", @@ -89513,7 +84908,7 @@ } }, { - "id": 20449, + "id": 19340, "properties": { "east": "tall", "north": "low", @@ -89524,7 +84919,7 @@ } }, { - "id": 20450, + "id": 19341, "properties": { "east": "tall", "north": "low", @@ -89535,7 +84930,7 @@ } }, { - "id": 20451, + "id": 19342, "properties": { "east": "tall", "north": "low", @@ -89546,7 +84941,7 @@ } }, { - "id": 20452, + "id": 19343, "properties": { "east": "tall", "north": "low", @@ -89557,7 +84952,7 @@ } }, { - "id": 20453, + "id": 19344, "properties": { "east": "tall", "north": "low", @@ -89568,7 +84963,7 @@ } }, { - "id": 20454, + "id": 19345, "properties": { "east": "tall", "north": "low", @@ -89579,7 +84974,7 @@ } }, { - "id": 20455, + "id": 19346, "properties": { "east": "tall", "north": "low", @@ -89590,7 +84985,7 @@ } }, { - "id": 20456, + "id": 19347, "properties": { "east": "tall", "north": "low", @@ -89601,7 +84996,7 @@ } }, { - "id": 20457, + "id": 19348, "properties": { "east": "tall", "north": "low", @@ -89612,7 +85007,7 @@ } }, { - "id": 20458, + "id": 19349, "properties": { "east": "tall", "north": "low", @@ -89623,7 +85018,7 @@ } }, { - "id": 20459, + "id": 19350, "properties": { "east": "tall", "north": "low", @@ -89634,7 +85029,7 @@ } }, { - "id": 20460, + "id": 19351, "properties": { "east": "tall", "north": "low", @@ -89645,7 +85040,7 @@ } }, { - "id": 20461, + "id": 19352, "properties": { "east": "tall", "north": "low", @@ -89656,7 +85051,7 @@ } }, { - "id": 20462, + "id": 19353, "properties": { "east": "tall", "north": "low", @@ -89667,7 +85062,7 @@ } }, { - "id": 20463, + "id": 19354, "properties": { "east": "tall", "north": "low", @@ -89678,7 +85073,7 @@ } }, { - "id": 20464, + "id": 19355, "properties": { "east": "tall", "north": "low", @@ -89689,7 +85084,7 @@ } }, { - "id": 20465, + "id": 19356, "properties": { "east": "tall", "north": "low", @@ -89700,7 +85095,7 @@ } }, { - "id": 20466, + "id": 19357, "properties": { "east": "tall", "north": "low", @@ -89711,7 +85106,7 @@ } }, { - "id": 20467, + "id": 19358, "properties": { "east": "tall", "north": "low", @@ -89722,7 +85117,7 @@ } }, { - "id": 20468, + "id": 19359, "properties": { "east": "tall", "north": "tall", @@ -89733,7 +85128,7 @@ } }, { - "id": 20469, + "id": 19360, "properties": { "east": "tall", "north": "tall", @@ -89744,7 +85139,7 @@ } }, { - "id": 20470, + "id": 19361, "properties": { "east": "tall", "north": "tall", @@ -89755,7 +85150,7 @@ } }, { - "id": 20471, + "id": 19362, "properties": { "east": "tall", "north": "tall", @@ -89766,7 +85161,7 @@ } }, { - "id": 20472, + "id": 19363, "properties": { "east": "tall", "north": "tall", @@ -89777,7 +85172,7 @@ } }, { - "id": 20473, + "id": 19364, "properties": { "east": "tall", "north": "tall", @@ -89788,7 +85183,7 @@ } }, { - "id": 20474, + "id": 19365, "properties": { "east": "tall", "north": "tall", @@ -89799,7 +85194,7 @@ } }, { - "id": 20475, + "id": 19366, "properties": { "east": "tall", "north": "tall", @@ -89810,7 +85205,7 @@ } }, { - "id": 20476, + "id": 19367, "properties": { "east": "tall", "north": "tall", @@ -89821,7 +85216,7 @@ } }, { - "id": 20477, + "id": 19368, "properties": { "east": "tall", "north": "tall", @@ -89832,7 +85227,7 @@ } }, { - "id": 20478, + "id": 19369, "properties": { "east": "tall", "north": "tall", @@ -89843,7 +85238,7 @@ } }, { - "id": 20479, + "id": 19370, "properties": { "east": "tall", "north": "tall", @@ -89854,7 +85249,7 @@ } }, { - "id": 20480, + "id": 19371, "properties": { "east": "tall", "north": "tall", @@ -89865,7 +85260,7 @@ } }, { - "id": 20481, + "id": 19372, "properties": { "east": "tall", "north": "tall", @@ -89876,7 +85271,7 @@ } }, { - "id": 20482, + "id": 19373, "properties": { "east": "tall", "north": "tall", @@ -89887,7 +85282,7 @@ } }, { - "id": 20483, + "id": 19374, "properties": { "east": "tall", "north": "tall", @@ -89898,7 +85293,7 @@ } }, { - "id": 20484, + "id": 19375, "properties": { "east": "tall", "north": "tall", @@ -89909,7 +85304,7 @@ } }, { - "id": 20485, + "id": 19376, "properties": { "east": "tall", "north": "tall", @@ -89920,7 +85315,7 @@ } }, { - "id": 20486, + "id": 19377, "properties": { "east": "tall", "north": "tall", @@ -89931,7 +85326,7 @@ } }, { - "id": 20487, + "id": 19378, "properties": { "east": "tall", "north": "tall", @@ -89942,7 +85337,7 @@ } }, { - "id": 20488, + "id": 19379, "properties": { "east": "tall", "north": "tall", @@ -89953,7 +85348,7 @@ } }, { - "id": 20489, + "id": 19380, "properties": { "east": "tall", "north": "tall", @@ -89964,7 +85359,7 @@ } }, { - "id": 20490, + "id": 19381, "properties": { "east": "tall", "north": "tall", @@ -89975,7 +85370,7 @@ } }, { - "id": 20491, + "id": 19382, "properties": { "east": "tall", "north": "tall", @@ -89986,7 +85381,7 @@ } }, { - "id": 20492, + "id": 19383, "properties": { "east": "tall", "north": "tall", @@ -89997,7 +85392,7 @@ } }, { - "id": 20493, + "id": 19384, "properties": { "east": "tall", "north": "tall", @@ -90008,7 +85403,7 @@ } }, { - "id": 20494, + "id": 19385, "properties": { "east": "tall", "north": "tall", @@ -90019,7 +85414,7 @@ } }, { - "id": 20495, + "id": 19386, "properties": { "east": "tall", "north": "tall", @@ -90030,7 +85425,7 @@ } }, { - "id": 20496, + "id": 19387, "properties": { "east": "tall", "north": "tall", @@ -90041,7 +85436,7 @@ } }, { - "id": 20497, + "id": 19388, "properties": { "east": "tall", "north": "tall", @@ -90052,7 +85447,7 @@ } }, { - "id": 20498, + "id": 19389, "properties": { "east": "tall", "north": "tall", @@ -90063,7 +85458,7 @@ } }, { - "id": 20499, + "id": 19390, "properties": { "east": "tall", "north": "tall", @@ -90074,7 +85469,7 @@ } }, { - "id": 20500, + "id": 19391, "properties": { "east": "tall", "north": "tall", @@ -90085,7 +85480,7 @@ } }, { - "id": 20501, + "id": 19392, "properties": { "east": "tall", "north": "tall", @@ -90096,7 +85491,7 @@ } }, { - "id": 20502, + "id": 19393, "properties": { "east": "tall", "north": "tall", @@ -90107,7 +85502,7 @@ } }, { - "id": 20503, + "id": 19394, "properties": { "east": "tall", "north": "tall", @@ -90139,7 +85534,7 @@ "states": [ { "default": true, - "id": 14613 + "id": 13536 } ] }, @@ -90258,7 +85653,7 @@ "states": [ { "default": true, - "id": 9277 + "id": 8200 } ] }, @@ -90294,112 +85689,112 @@ }, "states": [ { - "id": 10913, + "id": 9836, "properties": { "powered": "true", "rotation": "0" } }, { - "id": 10914, + "id": 9837, "properties": { "powered": "true", "rotation": "1" } }, { - "id": 10915, + "id": 9838, "properties": { "powered": "true", "rotation": "2" } }, { - "id": 10916, + "id": 9839, "properties": { "powered": "true", "rotation": "3" } }, { - "id": 10917, + "id": 9840, "properties": { "powered": "true", "rotation": "4" } }, { - "id": 10918, + "id": 9841, "properties": { "powered": "true", "rotation": "5" } }, { - "id": 10919, + "id": 9842, "properties": { "powered": "true", "rotation": "6" } }, { - "id": 10920, + "id": 9843, "properties": { "powered": "true", "rotation": "7" } }, { - "id": 10921, + "id": 9844, "properties": { "powered": "true", "rotation": "8" } }, { - "id": 10922, + "id": 9845, "properties": { "powered": "true", "rotation": "9" } }, { - "id": 10923, + "id": 9846, "properties": { "powered": "true", "rotation": "10" } }, { - "id": 10924, + "id": 9847, "properties": { "powered": "true", "rotation": "11" } }, { - "id": 10925, + "id": 9848, "properties": { "powered": "true", "rotation": "12" } }, { - "id": 10926, + "id": 9849, "properties": { "powered": "true", "rotation": "13" } }, { - "id": 10927, + "id": 9850, "properties": { "powered": "true", "rotation": "14" } }, { - "id": 10928, + "id": 9851, "properties": { "powered": "true", "rotation": "15" @@ -90407,112 +85802,112 @@ }, { "default": true, - "id": 10929, + "id": 9852, "properties": { "powered": "false", "rotation": "0" } }, { - "id": 10930, + "id": 9853, "properties": { "powered": "false", "rotation": "1" } }, { - "id": 10931, + "id": 9854, "properties": { "powered": "false", "rotation": "2" } }, { - "id": 10932, + "id": 9855, "properties": { "powered": "false", "rotation": "3" } }, { - "id": 10933, + "id": 9856, "properties": { "powered": "false", "rotation": "4" } }, { - "id": 10934, + "id": 9857, "properties": { "powered": "false", "rotation": "5" } }, { - "id": 10935, + "id": 9858, "properties": { "powered": "false", "rotation": "6" } }, { - "id": 10936, + "id": 9859, "properties": { "powered": "false", "rotation": "7" } }, { - "id": 10937, + "id": 9860, "properties": { "powered": "false", "rotation": "8" } }, { - "id": 10938, + "id": 9861, "properties": { "powered": "false", "rotation": "9" } }, { - "id": 10939, + "id": 9862, "properties": { "powered": "false", "rotation": "10" } }, { - "id": 10940, + "id": 9863, "properties": { "powered": "false", "rotation": "11" } }, { - "id": 10941, + "id": 9864, "properties": { "powered": "false", "rotation": "12" } }, { - "id": 10942, + "id": 9865, "properties": { "powered": "false", "rotation": "13" } }, { - "id": 10943, + "id": 9866, "properties": { "powered": "false", "rotation": "14" } }, { - "id": 10944, + "id": 9867, "properties": { "powered": "false", "rotation": "15" @@ -90540,7 +85935,7 @@ }, "states": [ { - "id": 10945, + "id": 9868, "properties": { "facing": "north", "powered": "true" @@ -90548,49 +85943,49 @@ }, { "default": true, - "id": 10946, + "id": 9869, "properties": { "facing": "north", "powered": "false" } }, { - "id": 10947, + "id": 9870, "properties": { "facing": "south", "powered": "true" } }, { - "id": 10948, + "id": 9871, "properties": { "facing": "south", "powered": "false" } }, { - "id": 10949, + "id": 9872, "properties": { "facing": "west", "powered": "true" } }, { - "id": 10950, + "id": 9873, "properties": { "facing": "west", "powered": "false" } }, { - "id": 10951, + "id": 9874, "properties": { "facing": "east", "powered": "true" } }, { - "id": 10952, + "id": 9875, "properties": { "facing": "east", "powered": "false" @@ -90598,289 +85993,6 @@ } ] }, - "minecraft:dried_ghast": { - "definition": { - "type": "minecraft:dried_ghast", - "properties": {} - }, - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "hydration": [ - "0", - "1", - "2", - "3" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 14903, - "properties": { - "facing": "north", - "hydration": "0", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 14904, - "properties": { - "facing": "north", - "hydration": "0", - "waterlogged": "false" - } - }, - { - "id": 14905, - "properties": { - "facing": "north", - "hydration": "1", - "waterlogged": "true" - } - }, - { - "id": 14906, - "properties": { - "facing": "north", - "hydration": "1", - "waterlogged": "false" - } - }, - { - "id": 14907, - "properties": { - "facing": "north", - "hydration": "2", - "waterlogged": "true" - } - }, - { - "id": 14908, - "properties": { - "facing": "north", - "hydration": "2", - "waterlogged": "false" - } - }, - { - "id": 14909, - "properties": { - "facing": "north", - "hydration": "3", - "waterlogged": "true" - } - }, - { - "id": 14910, - "properties": { - "facing": "north", - "hydration": "3", - "waterlogged": "false" - } - }, - { - "id": 14911, - "properties": { - "facing": "south", - "hydration": "0", - "waterlogged": "true" - } - }, - { - "id": 14912, - "properties": { - "facing": "south", - "hydration": "0", - "waterlogged": "false" - } - }, - { - "id": 14913, - "properties": { - "facing": "south", - "hydration": "1", - "waterlogged": "true" - } - }, - { - "id": 14914, - "properties": { - "facing": "south", - "hydration": "1", - "waterlogged": "false" - } - }, - { - "id": 14915, - "properties": { - "facing": "south", - "hydration": "2", - "waterlogged": "true" - } - }, - { - "id": 14916, - "properties": { - "facing": "south", - "hydration": "2", - "waterlogged": "false" - } - }, - { - "id": 14917, - "properties": { - "facing": "south", - "hydration": "3", - "waterlogged": "true" - } - }, - { - "id": 14918, - "properties": { - "facing": "south", - "hydration": "3", - "waterlogged": "false" - } - }, - { - "id": 14919, - "properties": { - "facing": "west", - "hydration": "0", - "waterlogged": "true" - } - }, - { - "id": 14920, - "properties": { - "facing": "west", - "hydration": "0", - "waterlogged": "false" - } - }, - { - "id": 14921, - "properties": { - "facing": "west", - "hydration": "1", - "waterlogged": "true" - } - }, - { - "id": 14922, - "properties": { - "facing": "west", - "hydration": "1", - "waterlogged": "false" - } - }, - { - "id": 14923, - "properties": { - "facing": "west", - "hydration": "2", - "waterlogged": "true" - } - }, - { - "id": 14924, - "properties": { - "facing": "west", - "hydration": "2", - "waterlogged": "false" - } - }, - { - "id": 14925, - "properties": { - "facing": "west", - "hydration": "3", - "waterlogged": "true" - } - }, - { - "id": 14926, - "properties": { - "facing": "west", - "hydration": "3", - "waterlogged": "false" - } - }, - { - "id": 14927, - "properties": { - "facing": "east", - "hydration": "0", - "waterlogged": "true" - } - }, - { - "id": 14928, - "properties": { - "facing": "east", - "hydration": "0", - "waterlogged": "false" - } - }, - { - "id": 14929, - "properties": { - "facing": "east", - "hydration": "1", - "waterlogged": "true" - } - }, - { - "id": 14930, - "properties": { - "facing": "east", - "hydration": "1", - "waterlogged": "false" - } - }, - { - "id": 14931, - "properties": { - "facing": "east", - "hydration": "2", - "waterlogged": "true" - } - }, - { - "id": 14932, - "properties": { - "facing": "east", - "hydration": "2", - "waterlogged": "false" - } - }, - { - "id": 14933, - "properties": { - "facing": "east", - "hydration": "3", - "waterlogged": "true" - } - }, - { - "id": 14934, - "properties": { - "facing": "east", - "hydration": "3", - "waterlogged": "false" - } - } - ] - }, "minecraft:dried_kelp_block": { "definition": { "type": "minecraft:block", @@ -90889,7 +86001,7 @@ "states": [ { "default": true, - "id": 14887 + "id": 13810 } ] }, @@ -90901,7 +86013,7 @@ "states": [ { "default": true, - "id": 27553 + "id": 25796 } ] }, @@ -90926,7 +86038,7 @@ }, "states": [ { - "id": 11230, + "id": 10153, "properties": { "facing": "north", "triggered": "true" @@ -90934,77 +86046,77 @@ }, { "default": true, - "id": 11231, + "id": 10154, "properties": { "facing": "north", "triggered": "false" } }, { - "id": 11232, + "id": 10155, "properties": { "facing": "east", "triggered": "true" } }, { - "id": 11233, + "id": 10156, "properties": { "facing": "east", "triggered": "false" } }, { - "id": 11234, + "id": 10157, "properties": { "facing": "south", "triggered": "true" } }, { - "id": 11235, + "id": 10158, "properties": { "facing": "south", "triggered": "false" } }, { - "id": 11236, + "id": 10159, "properties": { "facing": "west", "triggered": "true" } }, { - "id": 11237, + "id": 10160, "properties": { "facing": "west", "triggered": "false" } }, { - "id": 11238, + "id": 10161, "properties": { "facing": "up", "triggered": "true" } }, { - "id": 11239, + "id": 10162, "properties": { "facing": "up", "triggered": "false" } }, { - "id": 11240, + "id": 10163, "properties": { "facing": "down", "triggered": "true" } }, { - "id": 11241, + "id": 10164, "properties": { "facing": "down", "triggered": "false" @@ -91020,7 +86132,7 @@ "states": [ { "default": true, - "id": 9526 + "id": 8449 } ] }, @@ -91037,7 +86149,7 @@ "states": [ { "default": true, - "id": 9372 + "id": 8295 } ] }, @@ -91049,7 +86161,7 @@ "states": [ { "default": true, - "id": 9250 + "id": 8173 } ] }, @@ -91061,7 +86173,7 @@ "states": [ { "default": true, - "id": 14614 + "id": 13537 } ] }, @@ -91073,7 +86185,7 @@ "states": [ { "default": true, - "id": 9267 + "id": 8190 } ] }, @@ -91096,28 +86208,28 @@ }, "states": [ { - "id": 9268, + "id": 8191, "properties": { "eye": "true", "facing": "north" } }, { - "id": 9269, + "id": 8192, "properties": { "eye": "true", "facing": "south" } }, { - "id": 9270, + "id": 8193, "properties": { "eye": "true", "facing": "west" } }, { - "id": 9271, + "id": 8194, "properties": { "eye": "true", "facing": "east" @@ -91125,28 +86237,28 @@ }, { "default": true, - "id": 9272, + "id": 8195, "properties": { "eye": "false", "facing": "north" } }, { - "id": 9273, + "id": 8196, "properties": { "eye": "false", "facing": "south" } }, { - "id": 9274, + "id": 8197, "properties": { "eye": "false", "facing": "west" } }, { - "id": 9275, + "id": 8198, "properties": { "eye": "false", "facing": "east" @@ -91171,38 +86283,38 @@ }, "states": [ { - "id": 14434, + "id": 13357, "properties": { "facing": "north" } }, { - "id": 14435, + "id": 13358, "properties": { "facing": "east" } }, { - "id": 14436, + "id": 13359, "properties": { "facing": "south" } }, { - "id": 14437, + "id": 13360, "properties": { "facing": "west" } }, { "default": true, - "id": 14438, + "id": 13361, "properties": { "facing": "up" } }, { - "id": 14439, + "id": 13362, "properties": { "facing": "down" } @@ -91217,7 +86329,7 @@ "states": [ { "default": true, - "id": 9276 + "id": 8199 } ] }, @@ -91239,21 +86351,21 @@ }, "states": [ { - "id": 16244, + "id": 15135, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 16245, + "id": 15136, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 16246, + "id": 15137, "properties": { "type": "bottom", "waterlogged": "true" @@ -91261,21 +86373,21 @@ }, { "default": true, - "id": 16247, + "id": 15138, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 16248, + "id": 15139, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 16249, + "id": 15140, "properties": { "type": "double", "waterlogged": "false" @@ -91316,7 +86428,7 @@ }, "states": [ { - "id": 15494, + "id": 14385, "properties": { "facing": "north", "half": "top", @@ -91325,7 +86437,7 @@ } }, { - "id": 15495, + "id": 14386, "properties": { "facing": "north", "half": "top", @@ -91334,7 +86446,7 @@ } }, { - "id": 15496, + "id": 14387, "properties": { "facing": "north", "half": "top", @@ -91343,7 +86455,7 @@ } }, { - "id": 15497, + "id": 14388, "properties": { "facing": "north", "half": "top", @@ -91352,7 +86464,7 @@ } }, { - "id": 15498, + "id": 14389, "properties": { "facing": "north", "half": "top", @@ -91361,7 +86473,7 @@ } }, { - "id": 15499, + "id": 14390, "properties": { "facing": "north", "half": "top", @@ -91370,7 +86482,7 @@ } }, { - "id": 15500, + "id": 14391, "properties": { "facing": "north", "half": "top", @@ -91379,7 +86491,7 @@ } }, { - "id": 15501, + "id": 14392, "properties": { "facing": "north", "half": "top", @@ -91388,7 +86500,7 @@ } }, { - "id": 15502, + "id": 14393, "properties": { "facing": "north", "half": "top", @@ -91397,7 +86509,7 @@ } }, { - "id": 15503, + "id": 14394, "properties": { "facing": "north", "half": "top", @@ -91406,7 +86518,7 @@ } }, { - "id": 15504, + "id": 14395, "properties": { "facing": "north", "half": "bottom", @@ -91416,7 +86528,7 @@ }, { "default": true, - "id": 15505, + "id": 14396, "properties": { "facing": "north", "half": "bottom", @@ -91425,7 +86537,7 @@ } }, { - "id": 15506, + "id": 14397, "properties": { "facing": "north", "half": "bottom", @@ -91434,7 +86546,7 @@ } }, { - "id": 15507, + "id": 14398, "properties": { "facing": "north", "half": "bottom", @@ -91443,7 +86555,7 @@ } }, { - "id": 15508, + "id": 14399, "properties": { "facing": "north", "half": "bottom", @@ -91452,7 +86564,7 @@ } }, { - "id": 15509, + "id": 14400, "properties": { "facing": "north", "half": "bottom", @@ -91461,7 +86573,7 @@ } }, { - "id": 15510, + "id": 14401, "properties": { "facing": "north", "half": "bottom", @@ -91470,7 +86582,7 @@ } }, { - "id": 15511, + "id": 14402, "properties": { "facing": "north", "half": "bottom", @@ -91479,7 +86591,7 @@ } }, { - "id": 15512, + "id": 14403, "properties": { "facing": "north", "half": "bottom", @@ -91488,7 +86600,7 @@ } }, { - "id": 15513, + "id": 14404, "properties": { "facing": "north", "half": "bottom", @@ -91497,7 +86609,7 @@ } }, { - "id": 15514, + "id": 14405, "properties": { "facing": "south", "half": "top", @@ -91506,7 +86618,7 @@ } }, { - "id": 15515, + "id": 14406, "properties": { "facing": "south", "half": "top", @@ -91515,7 +86627,7 @@ } }, { - "id": 15516, + "id": 14407, "properties": { "facing": "south", "half": "top", @@ -91524,7 +86636,7 @@ } }, { - "id": 15517, + "id": 14408, "properties": { "facing": "south", "half": "top", @@ -91533,7 +86645,7 @@ } }, { - "id": 15518, + "id": 14409, "properties": { "facing": "south", "half": "top", @@ -91542,7 +86654,7 @@ } }, { - "id": 15519, + "id": 14410, "properties": { "facing": "south", "half": "top", @@ -91551,7 +86663,7 @@ } }, { - "id": 15520, + "id": 14411, "properties": { "facing": "south", "half": "top", @@ -91560,7 +86672,7 @@ } }, { - "id": 15521, + "id": 14412, "properties": { "facing": "south", "half": "top", @@ -91569,7 +86681,7 @@ } }, { - "id": 15522, + "id": 14413, "properties": { "facing": "south", "half": "top", @@ -91578,7 +86690,7 @@ } }, { - "id": 15523, + "id": 14414, "properties": { "facing": "south", "half": "top", @@ -91587,7 +86699,7 @@ } }, { - "id": 15524, + "id": 14415, "properties": { "facing": "south", "half": "bottom", @@ -91596,7 +86708,7 @@ } }, { - "id": 15525, + "id": 14416, "properties": { "facing": "south", "half": "bottom", @@ -91605,7 +86717,7 @@ } }, { - "id": 15526, + "id": 14417, "properties": { "facing": "south", "half": "bottom", @@ -91614,7 +86726,7 @@ } }, { - "id": 15527, + "id": 14418, "properties": { "facing": "south", "half": "bottom", @@ -91623,7 +86735,7 @@ } }, { - "id": 15528, + "id": 14419, "properties": { "facing": "south", "half": "bottom", @@ -91632,7 +86744,7 @@ } }, { - "id": 15529, + "id": 14420, "properties": { "facing": "south", "half": "bottom", @@ -91641,7 +86753,7 @@ } }, { - "id": 15530, + "id": 14421, "properties": { "facing": "south", "half": "bottom", @@ -91650,7 +86762,7 @@ } }, { - "id": 15531, + "id": 14422, "properties": { "facing": "south", "half": "bottom", @@ -91659,7 +86771,7 @@ } }, { - "id": 15532, + "id": 14423, "properties": { "facing": "south", "half": "bottom", @@ -91668,7 +86780,7 @@ } }, { - "id": 15533, + "id": 14424, "properties": { "facing": "south", "half": "bottom", @@ -91677,7 +86789,7 @@ } }, { - "id": 15534, + "id": 14425, "properties": { "facing": "west", "half": "top", @@ -91686,7 +86798,7 @@ } }, { - "id": 15535, + "id": 14426, "properties": { "facing": "west", "half": "top", @@ -91695,7 +86807,7 @@ } }, { - "id": 15536, + "id": 14427, "properties": { "facing": "west", "half": "top", @@ -91704,7 +86816,7 @@ } }, { - "id": 15537, + "id": 14428, "properties": { "facing": "west", "half": "top", @@ -91713,7 +86825,7 @@ } }, { - "id": 15538, + "id": 14429, "properties": { "facing": "west", "half": "top", @@ -91722,7 +86834,7 @@ } }, { - "id": 15539, + "id": 14430, "properties": { "facing": "west", "half": "top", @@ -91731,7 +86843,7 @@ } }, { - "id": 15540, + "id": 14431, "properties": { "facing": "west", "half": "top", @@ -91740,7 +86852,7 @@ } }, { - "id": 15541, + "id": 14432, "properties": { "facing": "west", "half": "top", @@ -91749,7 +86861,7 @@ } }, { - "id": 15542, + "id": 14433, "properties": { "facing": "west", "half": "top", @@ -91758,7 +86870,7 @@ } }, { - "id": 15543, + "id": 14434, "properties": { "facing": "west", "half": "top", @@ -91767,7 +86879,7 @@ } }, { - "id": 15544, + "id": 14435, "properties": { "facing": "west", "half": "bottom", @@ -91776,7 +86888,7 @@ } }, { - "id": 15545, + "id": 14436, "properties": { "facing": "west", "half": "bottom", @@ -91785,7 +86897,7 @@ } }, { - "id": 15546, + "id": 14437, "properties": { "facing": "west", "half": "bottom", @@ -91794,7 +86906,7 @@ } }, { - "id": 15547, + "id": 14438, "properties": { "facing": "west", "half": "bottom", @@ -91803,7 +86915,7 @@ } }, { - "id": 15548, + "id": 14439, "properties": { "facing": "west", "half": "bottom", @@ -91812,7 +86924,7 @@ } }, { - "id": 15549, + "id": 14440, "properties": { "facing": "west", "half": "bottom", @@ -91821,7 +86933,7 @@ } }, { - "id": 15550, + "id": 14441, "properties": { "facing": "west", "half": "bottom", @@ -91830,7 +86942,7 @@ } }, { - "id": 15551, + "id": 14442, "properties": { "facing": "west", "half": "bottom", @@ -91839,7 +86951,7 @@ } }, { - "id": 15552, + "id": 14443, "properties": { "facing": "west", "half": "bottom", @@ -91848,7 +86960,7 @@ } }, { - "id": 15553, + "id": 14444, "properties": { "facing": "west", "half": "bottom", @@ -91857,7 +86969,7 @@ } }, { - "id": 15554, + "id": 14445, "properties": { "facing": "east", "half": "top", @@ -91866,7 +86978,7 @@ } }, { - "id": 15555, + "id": 14446, "properties": { "facing": "east", "half": "top", @@ -91875,7 +86987,7 @@ } }, { - "id": 15556, + "id": 14447, "properties": { "facing": "east", "half": "top", @@ -91884,7 +86996,7 @@ } }, { - "id": 15557, + "id": 14448, "properties": { "facing": "east", "half": "top", @@ -91893,7 +87005,7 @@ } }, { - "id": 15558, + "id": 14449, "properties": { "facing": "east", "half": "top", @@ -91902,7 +87014,7 @@ } }, { - "id": 15559, + "id": 14450, "properties": { "facing": "east", "half": "top", @@ -91911,7 +87023,7 @@ } }, { - "id": 15560, + "id": 14451, "properties": { "facing": "east", "half": "top", @@ -91920,7 +87032,7 @@ } }, { - "id": 15561, + "id": 14452, "properties": { "facing": "east", "half": "top", @@ -91929,7 +87041,7 @@ } }, { - "id": 15562, + "id": 14453, "properties": { "facing": "east", "half": "top", @@ -91938,7 +87050,7 @@ } }, { - "id": 15563, + "id": 14454, "properties": { "facing": "east", "half": "top", @@ -91947,7 +87059,7 @@ } }, { - "id": 15564, + "id": 14455, "properties": { "facing": "east", "half": "bottom", @@ -91956,7 +87068,7 @@ } }, { - "id": 15565, + "id": 14456, "properties": { "facing": "east", "half": "bottom", @@ -91965,7 +87077,7 @@ } }, { - "id": 15566, + "id": 14457, "properties": { "facing": "east", "half": "bottom", @@ -91974,7 +87086,7 @@ } }, { - "id": 15567, + "id": 14458, "properties": { "facing": "east", "half": "bottom", @@ -91983,7 +87095,7 @@ } }, { - "id": 15568, + "id": 14459, "properties": { "facing": "east", "half": "bottom", @@ -91992,7 +87104,7 @@ } }, { - "id": 15569, + "id": 14460, "properties": { "facing": "east", "half": "bottom", @@ -92001,7 +87113,7 @@ } }, { - "id": 15570, + "id": 14461, "properties": { "facing": "east", "half": "bottom", @@ -92010,7 +87122,7 @@ } }, { - "id": 15571, + "id": 14462, "properties": { "facing": "east", "half": "bottom", @@ -92019,7 +87131,7 @@ } }, { - "id": 15572, + "id": 14463, "properties": { "facing": "east", "half": "bottom", @@ -92028,7 +87140,7 @@ } }, { - "id": 15573, + "id": 14464, "properties": { "facing": "east", "half": "bottom", @@ -92075,7 +87187,7 @@ }, "states": [ { - "id": 19856, + "id": 18747, "properties": { "east": "none", "north": "none", @@ -92086,7 +87198,7 @@ } }, { - "id": 19857, + "id": 18748, "properties": { "east": "none", "north": "none", @@ -92097,7 +87209,7 @@ } }, { - "id": 19858, + "id": 18749, "properties": { "east": "none", "north": "none", @@ -92109,7 +87221,7 @@ }, { "default": true, - "id": 19859, + "id": 18750, "properties": { "east": "none", "north": "none", @@ -92120,7 +87232,7 @@ } }, { - "id": 19860, + "id": 18751, "properties": { "east": "none", "north": "none", @@ -92131,7 +87243,7 @@ } }, { - "id": 19861, + "id": 18752, "properties": { "east": "none", "north": "none", @@ -92142,7 +87254,7 @@ } }, { - "id": 19862, + "id": 18753, "properties": { "east": "none", "north": "none", @@ -92153,7 +87265,7 @@ } }, { - "id": 19863, + "id": 18754, "properties": { "east": "none", "north": "none", @@ -92164,7 +87276,7 @@ } }, { - "id": 19864, + "id": 18755, "properties": { "east": "none", "north": "none", @@ -92175,7 +87287,7 @@ } }, { - "id": 19865, + "id": 18756, "properties": { "east": "none", "north": "none", @@ -92186,7 +87298,7 @@ } }, { - "id": 19866, + "id": 18757, "properties": { "east": "none", "north": "none", @@ -92197,7 +87309,7 @@ } }, { - "id": 19867, + "id": 18758, "properties": { "east": "none", "north": "none", @@ -92208,7 +87320,7 @@ } }, { - "id": 19868, + "id": 18759, "properties": { "east": "none", "north": "none", @@ -92219,7 +87331,7 @@ } }, { - "id": 19869, + "id": 18760, "properties": { "east": "none", "north": "none", @@ -92230,7 +87342,7 @@ } }, { - "id": 19870, + "id": 18761, "properties": { "east": "none", "north": "none", @@ -92241,7 +87353,7 @@ } }, { - "id": 19871, + "id": 18762, "properties": { "east": "none", "north": "none", @@ -92252,7 +87364,7 @@ } }, { - "id": 19872, + "id": 18763, "properties": { "east": "none", "north": "none", @@ -92263,7 +87375,7 @@ } }, { - "id": 19873, + "id": 18764, "properties": { "east": "none", "north": "none", @@ -92274,7 +87386,7 @@ } }, { - "id": 19874, + "id": 18765, "properties": { "east": "none", "north": "none", @@ -92285,7 +87397,7 @@ } }, { - "id": 19875, + "id": 18766, "properties": { "east": "none", "north": "none", @@ -92296,7 +87408,7 @@ } }, { - "id": 19876, + "id": 18767, "properties": { "east": "none", "north": "none", @@ -92307,7 +87419,7 @@ } }, { - "id": 19877, + "id": 18768, "properties": { "east": "none", "north": "none", @@ -92318,7 +87430,7 @@ } }, { - "id": 19878, + "id": 18769, "properties": { "east": "none", "north": "none", @@ -92329,7 +87441,7 @@ } }, { - "id": 19879, + "id": 18770, "properties": { "east": "none", "north": "none", @@ -92340,7 +87452,7 @@ } }, { - "id": 19880, + "id": 18771, "properties": { "east": "none", "north": "none", @@ -92351,7 +87463,7 @@ } }, { - "id": 19881, + "id": 18772, "properties": { "east": "none", "north": "none", @@ -92362,7 +87474,7 @@ } }, { - "id": 19882, + "id": 18773, "properties": { "east": "none", "north": "none", @@ -92373,7 +87485,7 @@ } }, { - "id": 19883, + "id": 18774, "properties": { "east": "none", "north": "none", @@ -92384,7 +87496,7 @@ } }, { - "id": 19884, + "id": 18775, "properties": { "east": "none", "north": "none", @@ -92395,7 +87507,7 @@ } }, { - "id": 19885, + "id": 18776, "properties": { "east": "none", "north": "none", @@ -92406,7 +87518,7 @@ } }, { - "id": 19886, + "id": 18777, "properties": { "east": "none", "north": "none", @@ -92417,7 +87529,7 @@ } }, { - "id": 19887, + "id": 18778, "properties": { "east": "none", "north": "none", @@ -92428,7 +87540,7 @@ } }, { - "id": 19888, + "id": 18779, "properties": { "east": "none", "north": "none", @@ -92439,7 +87551,7 @@ } }, { - "id": 19889, + "id": 18780, "properties": { "east": "none", "north": "none", @@ -92450,7 +87562,7 @@ } }, { - "id": 19890, + "id": 18781, "properties": { "east": "none", "north": "none", @@ -92461,7 +87573,7 @@ } }, { - "id": 19891, + "id": 18782, "properties": { "east": "none", "north": "none", @@ -92472,7 +87584,7 @@ } }, { - "id": 19892, + "id": 18783, "properties": { "east": "none", "north": "low", @@ -92483,7 +87595,7 @@ } }, { - "id": 19893, + "id": 18784, "properties": { "east": "none", "north": "low", @@ -92494,7 +87606,7 @@ } }, { - "id": 19894, + "id": 18785, "properties": { "east": "none", "north": "low", @@ -92505,7 +87617,7 @@ } }, { - "id": 19895, + "id": 18786, "properties": { "east": "none", "north": "low", @@ -92516,7 +87628,7 @@ } }, { - "id": 19896, + "id": 18787, "properties": { "east": "none", "north": "low", @@ -92527,7 +87639,7 @@ } }, { - "id": 19897, + "id": 18788, "properties": { "east": "none", "north": "low", @@ -92538,7 +87650,7 @@ } }, { - "id": 19898, + "id": 18789, "properties": { "east": "none", "north": "low", @@ -92549,7 +87661,7 @@ } }, { - "id": 19899, + "id": 18790, "properties": { "east": "none", "north": "low", @@ -92560,7 +87672,7 @@ } }, { - "id": 19900, + "id": 18791, "properties": { "east": "none", "north": "low", @@ -92571,7 +87683,7 @@ } }, { - "id": 19901, + "id": 18792, "properties": { "east": "none", "north": "low", @@ -92582,7 +87694,7 @@ } }, { - "id": 19902, + "id": 18793, "properties": { "east": "none", "north": "low", @@ -92593,7 +87705,7 @@ } }, { - "id": 19903, + "id": 18794, "properties": { "east": "none", "north": "low", @@ -92604,7 +87716,7 @@ } }, { - "id": 19904, + "id": 18795, "properties": { "east": "none", "north": "low", @@ -92615,7 +87727,7 @@ } }, { - "id": 19905, + "id": 18796, "properties": { "east": "none", "north": "low", @@ -92626,7 +87738,7 @@ } }, { - "id": 19906, + "id": 18797, "properties": { "east": "none", "north": "low", @@ -92637,7 +87749,7 @@ } }, { - "id": 19907, + "id": 18798, "properties": { "east": "none", "north": "low", @@ -92648,7 +87760,7 @@ } }, { - "id": 19908, + "id": 18799, "properties": { "east": "none", "north": "low", @@ -92659,7 +87771,7 @@ } }, { - "id": 19909, + "id": 18800, "properties": { "east": "none", "north": "low", @@ -92670,7 +87782,7 @@ } }, { - "id": 19910, + "id": 18801, "properties": { "east": "none", "north": "low", @@ -92681,7 +87793,7 @@ } }, { - "id": 19911, + "id": 18802, "properties": { "east": "none", "north": "low", @@ -92692,7 +87804,7 @@ } }, { - "id": 19912, + "id": 18803, "properties": { "east": "none", "north": "low", @@ -92703,7 +87815,7 @@ } }, { - "id": 19913, + "id": 18804, "properties": { "east": "none", "north": "low", @@ -92714,7 +87826,7 @@ } }, { - "id": 19914, + "id": 18805, "properties": { "east": "none", "north": "low", @@ -92725,7 +87837,7 @@ } }, { - "id": 19915, + "id": 18806, "properties": { "east": "none", "north": "low", @@ -92736,7 +87848,7 @@ } }, { - "id": 19916, + "id": 18807, "properties": { "east": "none", "north": "low", @@ -92747,7 +87859,7 @@ } }, { - "id": 19917, + "id": 18808, "properties": { "east": "none", "north": "low", @@ -92758,7 +87870,7 @@ } }, { - "id": 19918, + "id": 18809, "properties": { "east": "none", "north": "low", @@ -92769,7 +87881,7 @@ } }, { - "id": 19919, + "id": 18810, "properties": { "east": "none", "north": "low", @@ -92780,7 +87892,7 @@ } }, { - "id": 19920, + "id": 18811, "properties": { "east": "none", "north": "low", @@ -92791,7 +87903,7 @@ } }, { - "id": 19921, + "id": 18812, "properties": { "east": "none", "north": "low", @@ -92802,7 +87914,7 @@ } }, { - "id": 19922, + "id": 18813, "properties": { "east": "none", "north": "low", @@ -92813,7 +87925,7 @@ } }, { - "id": 19923, + "id": 18814, "properties": { "east": "none", "north": "low", @@ -92824,7 +87936,7 @@ } }, { - "id": 19924, + "id": 18815, "properties": { "east": "none", "north": "low", @@ -92835,7 +87947,7 @@ } }, { - "id": 19925, + "id": 18816, "properties": { "east": "none", "north": "low", @@ -92846,7 +87958,7 @@ } }, { - "id": 19926, + "id": 18817, "properties": { "east": "none", "north": "low", @@ -92857,7 +87969,7 @@ } }, { - "id": 19927, + "id": 18818, "properties": { "east": "none", "north": "low", @@ -92868,7 +87980,7 @@ } }, { - "id": 19928, + "id": 18819, "properties": { "east": "none", "north": "tall", @@ -92879,7 +87991,7 @@ } }, { - "id": 19929, + "id": 18820, "properties": { "east": "none", "north": "tall", @@ -92890,7 +88002,7 @@ } }, { - "id": 19930, + "id": 18821, "properties": { "east": "none", "north": "tall", @@ -92901,7 +88013,7 @@ } }, { - "id": 19931, + "id": 18822, "properties": { "east": "none", "north": "tall", @@ -92912,7 +88024,7 @@ } }, { - "id": 19932, + "id": 18823, "properties": { "east": "none", "north": "tall", @@ -92923,7 +88035,7 @@ } }, { - "id": 19933, + "id": 18824, "properties": { "east": "none", "north": "tall", @@ -92934,7 +88046,7 @@ } }, { - "id": 19934, + "id": 18825, "properties": { "east": "none", "north": "tall", @@ -92945,7 +88057,7 @@ } }, { - "id": 19935, + "id": 18826, "properties": { "east": "none", "north": "tall", @@ -92956,7 +88068,7 @@ } }, { - "id": 19936, + "id": 18827, "properties": { "east": "none", "north": "tall", @@ -92967,7 +88079,7 @@ } }, { - "id": 19937, + "id": 18828, "properties": { "east": "none", "north": "tall", @@ -92978,7 +88090,7 @@ } }, { - "id": 19938, + "id": 18829, "properties": { "east": "none", "north": "tall", @@ -92989,7 +88101,7 @@ } }, { - "id": 19939, + "id": 18830, "properties": { "east": "none", "north": "tall", @@ -93000,7 +88112,7 @@ } }, { - "id": 19940, + "id": 18831, "properties": { "east": "none", "north": "tall", @@ -93011,7 +88123,7 @@ } }, { - "id": 19941, + "id": 18832, "properties": { "east": "none", "north": "tall", @@ -93022,7 +88134,7 @@ } }, { - "id": 19942, + "id": 18833, "properties": { "east": "none", "north": "tall", @@ -93033,7 +88145,7 @@ } }, { - "id": 19943, + "id": 18834, "properties": { "east": "none", "north": "tall", @@ -93044,7 +88156,7 @@ } }, { - "id": 19944, + "id": 18835, "properties": { "east": "none", "north": "tall", @@ -93055,7 +88167,7 @@ } }, { - "id": 19945, + "id": 18836, "properties": { "east": "none", "north": "tall", @@ -93066,7 +88178,7 @@ } }, { - "id": 19946, + "id": 18837, "properties": { "east": "none", "north": "tall", @@ -93077,7 +88189,7 @@ } }, { - "id": 19947, + "id": 18838, "properties": { "east": "none", "north": "tall", @@ -93088,7 +88200,7 @@ } }, { - "id": 19948, + "id": 18839, "properties": { "east": "none", "north": "tall", @@ -93099,7 +88211,7 @@ } }, { - "id": 19949, + "id": 18840, "properties": { "east": "none", "north": "tall", @@ -93110,7 +88222,7 @@ } }, { - "id": 19950, + "id": 18841, "properties": { "east": "none", "north": "tall", @@ -93121,7 +88233,7 @@ } }, { - "id": 19951, + "id": 18842, "properties": { "east": "none", "north": "tall", @@ -93132,7 +88244,7 @@ } }, { - "id": 19952, + "id": 18843, "properties": { "east": "none", "north": "tall", @@ -93143,7 +88255,7 @@ } }, { - "id": 19953, + "id": 18844, "properties": { "east": "none", "north": "tall", @@ -93154,7 +88266,7 @@ } }, { - "id": 19954, + "id": 18845, "properties": { "east": "none", "north": "tall", @@ -93165,7 +88277,7 @@ } }, { - "id": 19955, + "id": 18846, "properties": { "east": "none", "north": "tall", @@ -93176,7 +88288,7 @@ } }, { - "id": 19956, + "id": 18847, "properties": { "east": "none", "north": "tall", @@ -93187,7 +88299,7 @@ } }, { - "id": 19957, + "id": 18848, "properties": { "east": "none", "north": "tall", @@ -93198,7 +88310,7 @@ } }, { - "id": 19958, + "id": 18849, "properties": { "east": "none", "north": "tall", @@ -93209,7 +88321,7 @@ } }, { - "id": 19959, + "id": 18850, "properties": { "east": "none", "north": "tall", @@ -93220,7 +88332,7 @@ } }, { - "id": 19960, + "id": 18851, "properties": { "east": "none", "north": "tall", @@ -93231,7 +88343,7 @@ } }, { - "id": 19961, + "id": 18852, "properties": { "east": "none", "north": "tall", @@ -93242,7 +88354,7 @@ } }, { - "id": 19962, + "id": 18853, "properties": { "east": "none", "north": "tall", @@ -93253,7 +88365,7 @@ } }, { - "id": 19963, + "id": 18854, "properties": { "east": "none", "north": "tall", @@ -93264,7 +88376,7 @@ } }, { - "id": 19964, + "id": 18855, "properties": { "east": "low", "north": "none", @@ -93275,7 +88387,7 @@ } }, { - "id": 19965, + "id": 18856, "properties": { "east": "low", "north": "none", @@ -93286,7 +88398,7 @@ } }, { - "id": 19966, + "id": 18857, "properties": { "east": "low", "north": "none", @@ -93297,7 +88409,7 @@ } }, { - "id": 19967, + "id": 18858, "properties": { "east": "low", "north": "none", @@ -93308,7 +88420,7 @@ } }, { - "id": 19968, + "id": 18859, "properties": { "east": "low", "north": "none", @@ -93319,7 +88431,7 @@ } }, { - "id": 19969, + "id": 18860, "properties": { "east": "low", "north": "none", @@ -93330,7 +88442,7 @@ } }, { - "id": 19970, + "id": 18861, "properties": { "east": "low", "north": "none", @@ -93341,7 +88453,7 @@ } }, { - "id": 19971, + "id": 18862, "properties": { "east": "low", "north": "none", @@ -93352,7 +88464,7 @@ } }, { - "id": 19972, + "id": 18863, "properties": { "east": "low", "north": "none", @@ -93363,7 +88475,7 @@ } }, { - "id": 19973, + "id": 18864, "properties": { "east": "low", "north": "none", @@ -93374,7 +88486,7 @@ } }, { - "id": 19974, + "id": 18865, "properties": { "east": "low", "north": "none", @@ -93385,7 +88497,7 @@ } }, { - "id": 19975, + "id": 18866, "properties": { "east": "low", "north": "none", @@ -93396,7 +88508,7 @@ } }, { - "id": 19976, + "id": 18867, "properties": { "east": "low", "north": "none", @@ -93407,7 +88519,7 @@ } }, { - "id": 19977, + "id": 18868, "properties": { "east": "low", "north": "none", @@ -93418,7 +88530,7 @@ } }, { - "id": 19978, + "id": 18869, "properties": { "east": "low", "north": "none", @@ -93429,7 +88541,7 @@ } }, { - "id": 19979, + "id": 18870, "properties": { "east": "low", "north": "none", @@ -93440,7 +88552,7 @@ } }, { - "id": 19980, + "id": 18871, "properties": { "east": "low", "north": "none", @@ -93451,7 +88563,7 @@ } }, { - "id": 19981, + "id": 18872, "properties": { "east": "low", "north": "none", @@ -93462,7 +88574,7 @@ } }, { - "id": 19982, + "id": 18873, "properties": { "east": "low", "north": "none", @@ -93473,7 +88585,7 @@ } }, { - "id": 19983, + "id": 18874, "properties": { "east": "low", "north": "none", @@ -93484,7 +88596,7 @@ } }, { - "id": 19984, + "id": 18875, "properties": { "east": "low", "north": "none", @@ -93495,7 +88607,7 @@ } }, { - "id": 19985, + "id": 18876, "properties": { "east": "low", "north": "none", @@ -93506,7 +88618,7 @@ } }, { - "id": 19986, + "id": 18877, "properties": { "east": "low", "north": "none", @@ -93517,7 +88629,7 @@ } }, { - "id": 19987, + "id": 18878, "properties": { "east": "low", "north": "none", @@ -93528,7 +88640,7 @@ } }, { - "id": 19988, + "id": 18879, "properties": { "east": "low", "north": "none", @@ -93539,7 +88651,7 @@ } }, { - "id": 19989, + "id": 18880, "properties": { "east": "low", "north": "none", @@ -93550,7 +88662,7 @@ } }, { - "id": 19990, + "id": 18881, "properties": { "east": "low", "north": "none", @@ -93561,7 +88673,7 @@ } }, { - "id": 19991, + "id": 18882, "properties": { "east": "low", "north": "none", @@ -93572,7 +88684,7 @@ } }, { - "id": 19992, + "id": 18883, "properties": { "east": "low", "north": "none", @@ -93583,7 +88695,7 @@ } }, { - "id": 19993, + "id": 18884, "properties": { "east": "low", "north": "none", @@ -93594,7 +88706,7 @@ } }, { - "id": 19994, + "id": 18885, "properties": { "east": "low", "north": "none", @@ -93605,7 +88717,7 @@ } }, { - "id": 19995, + "id": 18886, "properties": { "east": "low", "north": "none", @@ -93616,7 +88728,7 @@ } }, { - "id": 19996, + "id": 18887, "properties": { "east": "low", "north": "none", @@ -93627,7 +88739,7 @@ } }, { - "id": 19997, + "id": 18888, "properties": { "east": "low", "north": "none", @@ -93638,7 +88750,7 @@ } }, { - "id": 19998, + "id": 18889, "properties": { "east": "low", "north": "none", @@ -93649,7 +88761,7 @@ } }, { - "id": 19999, + "id": 18890, "properties": { "east": "low", "north": "none", @@ -93660,7 +88772,7 @@ } }, { - "id": 20000, + "id": 18891, "properties": { "east": "low", "north": "low", @@ -93671,7 +88783,7 @@ } }, { - "id": 20001, + "id": 18892, "properties": { "east": "low", "north": "low", @@ -93682,7 +88794,7 @@ } }, { - "id": 20002, + "id": 18893, "properties": { "east": "low", "north": "low", @@ -93693,7 +88805,7 @@ } }, { - "id": 20003, + "id": 18894, "properties": { "east": "low", "north": "low", @@ -93704,7 +88816,7 @@ } }, { - "id": 20004, + "id": 18895, "properties": { "east": "low", "north": "low", @@ -93715,7 +88827,7 @@ } }, { - "id": 20005, + "id": 18896, "properties": { "east": "low", "north": "low", @@ -93726,7 +88838,7 @@ } }, { - "id": 20006, + "id": 18897, "properties": { "east": "low", "north": "low", @@ -93737,7 +88849,7 @@ } }, { - "id": 20007, + "id": 18898, "properties": { "east": "low", "north": "low", @@ -93748,7 +88860,7 @@ } }, { - "id": 20008, + "id": 18899, "properties": { "east": "low", "north": "low", @@ -93759,7 +88871,7 @@ } }, { - "id": 20009, + "id": 18900, "properties": { "east": "low", "north": "low", @@ -93770,7 +88882,7 @@ } }, { - "id": 20010, + "id": 18901, "properties": { "east": "low", "north": "low", @@ -93781,7 +88893,7 @@ } }, { - "id": 20011, + "id": 18902, "properties": { "east": "low", "north": "low", @@ -93792,7 +88904,7 @@ } }, { - "id": 20012, + "id": 18903, "properties": { "east": "low", "north": "low", @@ -93803,7 +88915,7 @@ } }, { - "id": 20013, + "id": 18904, "properties": { "east": "low", "north": "low", @@ -93814,7 +88926,7 @@ } }, { - "id": 20014, + "id": 18905, "properties": { "east": "low", "north": "low", @@ -93825,7 +88937,7 @@ } }, { - "id": 20015, + "id": 18906, "properties": { "east": "low", "north": "low", @@ -93836,7 +88948,7 @@ } }, { - "id": 20016, + "id": 18907, "properties": { "east": "low", "north": "low", @@ -93847,7 +88959,7 @@ } }, { - "id": 20017, + "id": 18908, "properties": { "east": "low", "north": "low", @@ -93858,7 +88970,7 @@ } }, { - "id": 20018, + "id": 18909, "properties": { "east": "low", "north": "low", @@ -93869,7 +88981,7 @@ } }, { - "id": 20019, + "id": 18910, "properties": { "east": "low", "north": "low", @@ -93880,7 +88992,7 @@ } }, { - "id": 20020, + "id": 18911, "properties": { "east": "low", "north": "low", @@ -93891,7 +89003,7 @@ } }, { - "id": 20021, + "id": 18912, "properties": { "east": "low", "north": "low", @@ -93902,7 +89014,7 @@ } }, { - "id": 20022, + "id": 18913, "properties": { "east": "low", "north": "low", @@ -93913,7 +89025,7 @@ } }, { - "id": 20023, + "id": 18914, "properties": { "east": "low", "north": "low", @@ -93924,7 +89036,7 @@ } }, { - "id": 20024, + "id": 18915, "properties": { "east": "low", "north": "low", @@ -93935,7 +89047,7 @@ } }, { - "id": 20025, + "id": 18916, "properties": { "east": "low", "north": "low", @@ -93946,7 +89058,7 @@ } }, { - "id": 20026, + "id": 18917, "properties": { "east": "low", "north": "low", @@ -93957,7 +89069,7 @@ } }, { - "id": 20027, + "id": 18918, "properties": { "east": "low", "north": "low", @@ -93968,7 +89080,7 @@ } }, { - "id": 20028, + "id": 18919, "properties": { "east": "low", "north": "low", @@ -93979,7 +89091,7 @@ } }, { - "id": 20029, + "id": 18920, "properties": { "east": "low", "north": "low", @@ -93990,7 +89102,7 @@ } }, { - "id": 20030, + "id": 18921, "properties": { "east": "low", "north": "low", @@ -94001,7 +89113,7 @@ } }, { - "id": 20031, + "id": 18922, "properties": { "east": "low", "north": "low", @@ -94012,7 +89124,7 @@ } }, { - "id": 20032, + "id": 18923, "properties": { "east": "low", "north": "low", @@ -94023,7 +89135,7 @@ } }, { - "id": 20033, + "id": 18924, "properties": { "east": "low", "north": "low", @@ -94034,7 +89146,7 @@ } }, { - "id": 20034, + "id": 18925, "properties": { "east": "low", "north": "low", @@ -94045,7 +89157,7 @@ } }, { - "id": 20035, + "id": 18926, "properties": { "east": "low", "north": "low", @@ -94056,7 +89168,7 @@ } }, { - "id": 20036, + "id": 18927, "properties": { "east": "low", "north": "tall", @@ -94067,7 +89179,7 @@ } }, { - "id": 20037, + "id": 18928, "properties": { "east": "low", "north": "tall", @@ -94078,7 +89190,7 @@ } }, { - "id": 20038, + "id": 18929, "properties": { "east": "low", "north": "tall", @@ -94089,7 +89201,7 @@ } }, { - "id": 20039, + "id": 18930, "properties": { "east": "low", "north": "tall", @@ -94100,7 +89212,7 @@ } }, { - "id": 20040, + "id": 18931, "properties": { "east": "low", "north": "tall", @@ -94111,7 +89223,7 @@ } }, { - "id": 20041, + "id": 18932, "properties": { "east": "low", "north": "tall", @@ -94122,7 +89234,7 @@ } }, { - "id": 20042, + "id": 18933, "properties": { "east": "low", "north": "tall", @@ -94133,7 +89245,7 @@ } }, { - "id": 20043, + "id": 18934, "properties": { "east": "low", "north": "tall", @@ -94144,7 +89256,7 @@ } }, { - "id": 20044, + "id": 18935, "properties": { "east": "low", "north": "tall", @@ -94155,7 +89267,7 @@ } }, { - "id": 20045, + "id": 18936, "properties": { "east": "low", "north": "tall", @@ -94166,7 +89278,7 @@ } }, { - "id": 20046, + "id": 18937, "properties": { "east": "low", "north": "tall", @@ -94177,7 +89289,7 @@ } }, { - "id": 20047, + "id": 18938, "properties": { "east": "low", "north": "tall", @@ -94188,7 +89300,7 @@ } }, { - "id": 20048, + "id": 18939, "properties": { "east": "low", "north": "tall", @@ -94199,7 +89311,7 @@ } }, { - "id": 20049, + "id": 18940, "properties": { "east": "low", "north": "tall", @@ -94210,7 +89322,7 @@ } }, { - "id": 20050, + "id": 18941, "properties": { "east": "low", "north": "tall", @@ -94221,7 +89333,7 @@ } }, { - "id": 20051, + "id": 18942, "properties": { "east": "low", "north": "tall", @@ -94232,7 +89344,7 @@ } }, { - "id": 20052, + "id": 18943, "properties": { "east": "low", "north": "tall", @@ -94243,7 +89355,7 @@ } }, { - "id": 20053, + "id": 18944, "properties": { "east": "low", "north": "tall", @@ -94254,7 +89366,7 @@ } }, { - "id": 20054, + "id": 18945, "properties": { "east": "low", "north": "tall", @@ -94265,7 +89377,7 @@ } }, { - "id": 20055, + "id": 18946, "properties": { "east": "low", "north": "tall", @@ -94276,7 +89388,7 @@ } }, { - "id": 20056, + "id": 18947, "properties": { "east": "low", "north": "tall", @@ -94287,7 +89399,7 @@ } }, { - "id": 20057, + "id": 18948, "properties": { "east": "low", "north": "tall", @@ -94298,7 +89410,7 @@ } }, { - "id": 20058, + "id": 18949, "properties": { "east": "low", "north": "tall", @@ -94309,7 +89421,7 @@ } }, { - "id": 20059, + "id": 18950, "properties": { "east": "low", "north": "tall", @@ -94320,7 +89432,7 @@ } }, { - "id": 20060, + "id": 18951, "properties": { "east": "low", "north": "tall", @@ -94331,7 +89443,7 @@ } }, { - "id": 20061, + "id": 18952, "properties": { "east": "low", "north": "tall", @@ -94342,7 +89454,7 @@ } }, { - "id": 20062, + "id": 18953, "properties": { "east": "low", "north": "tall", @@ -94353,7 +89465,7 @@ } }, { - "id": 20063, + "id": 18954, "properties": { "east": "low", "north": "tall", @@ -94364,7 +89476,7 @@ } }, { - "id": 20064, + "id": 18955, "properties": { "east": "low", "north": "tall", @@ -94375,7 +89487,7 @@ } }, { - "id": 20065, + "id": 18956, "properties": { "east": "low", "north": "tall", @@ -94386,7 +89498,7 @@ } }, { - "id": 20066, + "id": 18957, "properties": { "east": "low", "north": "tall", @@ -94397,7 +89509,7 @@ } }, { - "id": 20067, + "id": 18958, "properties": { "east": "low", "north": "tall", @@ -94408,7 +89520,7 @@ } }, { - "id": 20068, + "id": 18959, "properties": { "east": "low", "north": "tall", @@ -94419,7 +89531,7 @@ } }, { - "id": 20069, + "id": 18960, "properties": { "east": "low", "north": "tall", @@ -94430,7 +89542,7 @@ } }, { - "id": 20070, + "id": 18961, "properties": { "east": "low", "north": "tall", @@ -94441,7 +89553,7 @@ } }, { - "id": 20071, + "id": 18962, "properties": { "east": "low", "north": "tall", @@ -94452,7 +89564,7 @@ } }, { - "id": 20072, + "id": 18963, "properties": { "east": "tall", "north": "none", @@ -94463,7 +89575,7 @@ } }, { - "id": 20073, + "id": 18964, "properties": { "east": "tall", "north": "none", @@ -94474,7 +89586,7 @@ } }, { - "id": 20074, + "id": 18965, "properties": { "east": "tall", "north": "none", @@ -94485,7 +89597,7 @@ } }, { - "id": 20075, + "id": 18966, "properties": { "east": "tall", "north": "none", @@ -94496,7 +89608,7 @@ } }, { - "id": 20076, + "id": 18967, "properties": { "east": "tall", "north": "none", @@ -94507,7 +89619,7 @@ } }, { - "id": 20077, + "id": 18968, "properties": { "east": "tall", "north": "none", @@ -94518,7 +89630,7 @@ } }, { - "id": 20078, + "id": 18969, "properties": { "east": "tall", "north": "none", @@ -94529,7 +89641,7 @@ } }, { - "id": 20079, + "id": 18970, "properties": { "east": "tall", "north": "none", @@ -94540,7 +89652,7 @@ } }, { - "id": 20080, + "id": 18971, "properties": { "east": "tall", "north": "none", @@ -94551,7 +89663,7 @@ } }, { - "id": 20081, + "id": 18972, "properties": { "east": "tall", "north": "none", @@ -94562,7 +89674,7 @@ } }, { - "id": 20082, + "id": 18973, "properties": { "east": "tall", "north": "none", @@ -94573,7 +89685,7 @@ } }, { - "id": 20083, + "id": 18974, "properties": { "east": "tall", "north": "none", @@ -94584,7 +89696,7 @@ } }, { - "id": 20084, + "id": 18975, "properties": { "east": "tall", "north": "none", @@ -94595,7 +89707,7 @@ } }, { - "id": 20085, + "id": 18976, "properties": { "east": "tall", "north": "none", @@ -94606,7 +89718,7 @@ } }, { - "id": 20086, + "id": 18977, "properties": { "east": "tall", "north": "none", @@ -94617,7 +89729,7 @@ } }, { - "id": 20087, + "id": 18978, "properties": { "east": "tall", "north": "none", @@ -94628,7 +89740,7 @@ } }, { - "id": 20088, + "id": 18979, "properties": { "east": "tall", "north": "none", @@ -94639,7 +89751,7 @@ } }, { - "id": 20089, + "id": 18980, "properties": { "east": "tall", "north": "none", @@ -94650,7 +89762,7 @@ } }, { - "id": 20090, + "id": 18981, "properties": { "east": "tall", "north": "none", @@ -94661,7 +89773,7 @@ } }, { - "id": 20091, + "id": 18982, "properties": { "east": "tall", "north": "none", @@ -94672,7 +89784,7 @@ } }, { - "id": 20092, + "id": 18983, "properties": { "east": "tall", "north": "none", @@ -94683,7 +89795,7 @@ } }, { - "id": 20093, + "id": 18984, "properties": { "east": "tall", "north": "none", @@ -94694,7 +89806,7 @@ } }, { - "id": 20094, + "id": 18985, "properties": { "east": "tall", "north": "none", @@ -94705,7 +89817,7 @@ } }, { - "id": 20095, + "id": 18986, "properties": { "east": "tall", "north": "none", @@ -94716,7 +89828,7 @@ } }, { - "id": 20096, + "id": 18987, "properties": { "east": "tall", "north": "none", @@ -94727,7 +89839,7 @@ } }, { - "id": 20097, + "id": 18988, "properties": { "east": "tall", "north": "none", @@ -94738,7 +89850,7 @@ } }, { - "id": 20098, + "id": 18989, "properties": { "east": "tall", "north": "none", @@ -94749,7 +89861,7 @@ } }, { - "id": 20099, + "id": 18990, "properties": { "east": "tall", "north": "none", @@ -94760,7 +89872,7 @@ } }, { - "id": 20100, + "id": 18991, "properties": { "east": "tall", "north": "none", @@ -94771,7 +89883,7 @@ } }, { - "id": 20101, + "id": 18992, "properties": { "east": "tall", "north": "none", @@ -94782,7 +89894,7 @@ } }, { - "id": 20102, + "id": 18993, "properties": { "east": "tall", "north": "none", @@ -94793,7 +89905,7 @@ } }, { - "id": 20103, + "id": 18994, "properties": { "east": "tall", "north": "none", @@ -94804,7 +89916,7 @@ } }, { - "id": 20104, + "id": 18995, "properties": { "east": "tall", "north": "none", @@ -94815,7 +89927,7 @@ } }, { - "id": 20105, + "id": 18996, "properties": { "east": "tall", "north": "none", @@ -94826,7 +89938,7 @@ } }, { - "id": 20106, + "id": 18997, "properties": { "east": "tall", "north": "none", @@ -94837,7 +89949,7 @@ } }, { - "id": 20107, + "id": 18998, "properties": { "east": "tall", "north": "none", @@ -94848,7 +89960,7 @@ } }, { - "id": 20108, + "id": 18999, "properties": { "east": "tall", "north": "low", @@ -94859,7 +89971,7 @@ } }, { - "id": 20109, + "id": 19000, "properties": { "east": "tall", "north": "low", @@ -94870,7 +89982,7 @@ } }, { - "id": 20110, + "id": 19001, "properties": { "east": "tall", "north": "low", @@ -94881,7 +89993,7 @@ } }, { - "id": 20111, + "id": 19002, "properties": { "east": "tall", "north": "low", @@ -94892,7 +90004,7 @@ } }, { - "id": 20112, + "id": 19003, "properties": { "east": "tall", "north": "low", @@ -94903,7 +90015,7 @@ } }, { - "id": 20113, + "id": 19004, "properties": { "east": "tall", "north": "low", @@ -94914,7 +90026,7 @@ } }, { - "id": 20114, + "id": 19005, "properties": { "east": "tall", "north": "low", @@ -94925,7 +90037,7 @@ } }, { - "id": 20115, + "id": 19006, "properties": { "east": "tall", "north": "low", @@ -94936,7 +90048,7 @@ } }, { - "id": 20116, + "id": 19007, "properties": { "east": "tall", "north": "low", @@ -94947,7 +90059,7 @@ } }, { - "id": 20117, + "id": 19008, "properties": { "east": "tall", "north": "low", @@ -94958,7 +90070,7 @@ } }, { - "id": 20118, + "id": 19009, "properties": { "east": "tall", "north": "low", @@ -94969,7 +90081,7 @@ } }, { - "id": 20119, + "id": 19010, "properties": { "east": "tall", "north": "low", @@ -94980,7 +90092,7 @@ } }, { - "id": 20120, + "id": 19011, "properties": { "east": "tall", "north": "low", @@ -94991,7 +90103,7 @@ } }, { - "id": 20121, + "id": 19012, "properties": { "east": "tall", "north": "low", @@ -95002,7 +90114,7 @@ } }, { - "id": 20122, + "id": 19013, "properties": { "east": "tall", "north": "low", @@ -95013,7 +90125,7 @@ } }, { - "id": 20123, + "id": 19014, "properties": { "east": "tall", "north": "low", @@ -95024,7 +90136,7 @@ } }, { - "id": 20124, + "id": 19015, "properties": { "east": "tall", "north": "low", @@ -95035,7 +90147,7 @@ } }, { - "id": 20125, + "id": 19016, "properties": { "east": "tall", "north": "low", @@ -95046,7 +90158,7 @@ } }, { - "id": 20126, + "id": 19017, "properties": { "east": "tall", "north": "low", @@ -95057,7 +90169,7 @@ } }, { - "id": 20127, + "id": 19018, "properties": { "east": "tall", "north": "low", @@ -95068,7 +90180,7 @@ } }, { - "id": 20128, + "id": 19019, "properties": { "east": "tall", "north": "low", @@ -95079,7 +90191,7 @@ } }, { - "id": 20129, + "id": 19020, "properties": { "east": "tall", "north": "low", @@ -95090,7 +90202,7 @@ } }, { - "id": 20130, + "id": 19021, "properties": { "east": "tall", "north": "low", @@ -95101,7 +90213,7 @@ } }, { - "id": 20131, + "id": 19022, "properties": { "east": "tall", "north": "low", @@ -95112,7 +90224,7 @@ } }, { - "id": 20132, + "id": 19023, "properties": { "east": "tall", "north": "low", @@ -95123,7 +90235,7 @@ } }, { - "id": 20133, + "id": 19024, "properties": { "east": "tall", "north": "low", @@ -95134,7 +90246,7 @@ } }, { - "id": 20134, + "id": 19025, "properties": { "east": "tall", "north": "low", @@ -95145,7 +90257,7 @@ } }, { - "id": 20135, + "id": 19026, "properties": { "east": "tall", "north": "low", @@ -95156,7 +90268,7 @@ } }, { - "id": 20136, + "id": 19027, "properties": { "east": "tall", "north": "low", @@ -95167,7 +90279,7 @@ } }, { - "id": 20137, + "id": 19028, "properties": { "east": "tall", "north": "low", @@ -95178,7 +90290,7 @@ } }, { - "id": 20138, + "id": 19029, "properties": { "east": "tall", "north": "low", @@ -95189,7 +90301,7 @@ } }, { - "id": 20139, + "id": 19030, "properties": { "east": "tall", "north": "low", @@ -95200,7 +90312,7 @@ } }, { - "id": 20140, + "id": 19031, "properties": { "east": "tall", "north": "low", @@ -95211,7 +90323,7 @@ } }, { - "id": 20141, + "id": 19032, "properties": { "east": "tall", "north": "low", @@ -95222,7 +90334,7 @@ } }, { - "id": 20142, + "id": 19033, "properties": { "east": "tall", "north": "low", @@ -95233,7 +90345,7 @@ } }, { - "id": 20143, + "id": 19034, "properties": { "east": "tall", "north": "low", @@ -95244,7 +90356,7 @@ } }, { - "id": 20144, + "id": 19035, "properties": { "east": "tall", "north": "tall", @@ -95255,7 +90367,7 @@ } }, { - "id": 20145, + "id": 19036, "properties": { "east": "tall", "north": "tall", @@ -95266,7 +90378,7 @@ } }, { - "id": 20146, + "id": 19037, "properties": { "east": "tall", "north": "tall", @@ -95277,7 +90389,7 @@ } }, { - "id": 20147, + "id": 19038, "properties": { "east": "tall", "north": "tall", @@ -95288,7 +90400,7 @@ } }, { - "id": 20148, + "id": 19039, "properties": { "east": "tall", "north": "tall", @@ -95299,7 +90411,7 @@ } }, { - "id": 20149, + "id": 19040, "properties": { "east": "tall", "north": "tall", @@ -95310,7 +90422,7 @@ } }, { - "id": 20150, + "id": 19041, "properties": { "east": "tall", "north": "tall", @@ -95321,7 +90433,7 @@ } }, { - "id": 20151, + "id": 19042, "properties": { "east": "tall", "north": "tall", @@ -95332,7 +90444,7 @@ } }, { - "id": 20152, + "id": 19043, "properties": { "east": "tall", "north": "tall", @@ -95343,7 +90455,7 @@ } }, { - "id": 20153, + "id": 19044, "properties": { "east": "tall", "north": "tall", @@ -95354,7 +90466,7 @@ } }, { - "id": 20154, + "id": 19045, "properties": { "east": "tall", "north": "tall", @@ -95365,7 +90477,7 @@ } }, { - "id": 20155, + "id": 19046, "properties": { "east": "tall", "north": "tall", @@ -95376,7 +90488,7 @@ } }, { - "id": 20156, + "id": 19047, "properties": { "east": "tall", "north": "tall", @@ -95387,7 +90499,7 @@ } }, { - "id": 20157, + "id": 19048, "properties": { "east": "tall", "north": "tall", @@ -95398,7 +90510,7 @@ } }, { - "id": 20158, + "id": 19049, "properties": { "east": "tall", "north": "tall", @@ -95409,7 +90521,7 @@ } }, { - "id": 20159, + "id": 19050, "properties": { "east": "tall", "north": "tall", @@ -95420,7 +90532,7 @@ } }, { - "id": 20160, + "id": 19051, "properties": { "east": "tall", "north": "tall", @@ -95431,7 +90543,7 @@ } }, { - "id": 20161, + "id": 19052, "properties": { "east": "tall", "north": "tall", @@ -95442,7 +90554,7 @@ } }, { - "id": 20162, + "id": 19053, "properties": { "east": "tall", "north": "tall", @@ -95453,7 +90565,7 @@ } }, { - "id": 20163, + "id": 19054, "properties": { "east": "tall", "north": "tall", @@ -95464,7 +90576,7 @@ } }, { - "id": 20164, + "id": 19055, "properties": { "east": "tall", "north": "tall", @@ -95475,7 +90587,7 @@ } }, { - "id": 20165, + "id": 19056, "properties": { "east": "tall", "north": "tall", @@ -95486,7 +90598,7 @@ } }, { - "id": 20166, + "id": 19057, "properties": { "east": "tall", "north": "tall", @@ -95497,7 +90609,7 @@ } }, { - "id": 20167, + "id": 19058, "properties": { "east": "tall", "north": "tall", @@ -95508,7 +90620,7 @@ } }, { - "id": 20168, + "id": 19059, "properties": { "east": "tall", "north": "tall", @@ -95519,7 +90631,7 @@ } }, { - "id": 20169, + "id": 19060, "properties": { "east": "tall", "north": "tall", @@ -95530,7 +90642,7 @@ } }, { - "id": 20170, + "id": 19061, "properties": { "east": "tall", "north": "tall", @@ -95541,7 +90653,7 @@ } }, { - "id": 20171, + "id": 19062, "properties": { "east": "tall", "north": "tall", @@ -95552,7 +90664,7 @@ } }, { - "id": 20172, + "id": 19063, "properties": { "east": "tall", "north": "tall", @@ -95563,7 +90675,7 @@ } }, { - "id": 20173, + "id": 19064, "properties": { "east": "tall", "north": "tall", @@ -95574,7 +90686,7 @@ } }, { - "id": 20174, + "id": 19065, "properties": { "east": "tall", "north": "tall", @@ -95585,7 +90697,7 @@ } }, { - "id": 20175, + "id": 19066, "properties": { "east": "tall", "north": "tall", @@ -95596,7 +90708,7 @@ } }, { - "id": 20176, + "id": 19067, "properties": { "east": "tall", "north": "tall", @@ -95607,7 +90719,7 @@ } }, { - "id": 20177, + "id": 19068, "properties": { "east": "tall", "north": "tall", @@ -95618,7 +90730,7 @@ } }, { - "id": 20178, + "id": 19069, "properties": { "east": "tall", "north": "tall", @@ -95629,7 +90741,7 @@ } }, { - "id": 20179, + "id": 19070, "properties": { "east": "tall", "north": "tall", @@ -95649,7 +90761,7 @@ "states": [ { "default": true, - "id": 14594 + "id": 13517 } ] }, @@ -95672,7 +90784,7 @@ }, "states": [ { - "id": 9374, + "id": 8297, "properties": { "facing": "north", "waterlogged": "true" @@ -95680,49 +90792,49 @@ }, { "default": true, - "id": 9375, + "id": 8298, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 9376, + "id": 8299, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 9377, + "id": 8300, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 9378, + "id": 8301, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 9379, + "id": 8302, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 9380, + "id": 8303, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 9381, + "id": 8304, "properties": { "facing": "east", "waterlogged": "false" @@ -95739,7 +90851,7 @@ "states": [ { "default": true, - "id": 25119 + "id": 23978 } ] }, @@ -95752,359 +90864,7 @@ "states": [ { "default": true, - "id": 25108 - } - ] - }, - "minecraft:exposed_copper_bars": { - "definition": { - "type": "minecraft:weathering_copper_bar", - "properties": {}, - "weathering_state": "exposed" - }, - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 7821, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7822, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7823, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7824, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7825, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7826, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7827, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7828, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7829, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7830, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7831, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7832, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7833, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7834, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7835, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7836, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7837, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7838, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7839, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7840, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7841, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7842, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7843, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7844, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7845, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7846, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7847, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7848, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7849, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7850, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7851, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "default": true, - "id": 7852, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } + "id": 23967 } ] }, @@ -96126,21 +90886,21 @@ }, "states": [ { - "id": 26865, + "id": 25724, "properties": { "lit": "true", "powered": "true" } }, { - "id": 26866, + "id": 25725, "properties": { "lit": "true", "powered": "false" } }, { - "id": 26867, + "id": 25726, "properties": { "lit": "false", "powered": "true" @@ -96148,7 +90908,7 @@ }, { "default": true, - "id": 26868, + "id": 25727, "properties": { "lit": "false", "powered": "false" @@ -96156,290 +90916,6 @@ } ] }, - "minecraft:exposed_copper_chain": { - "definition": { - "type": "minecraft:weathering_copper_chain", - "properties": {}, - "weathering_state": "exposed" - }, - "properties": { - "axis": [ - "x", - "y", - "z" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 8057, - "properties": { - "axis": "x", - "waterlogged": "true" - } - }, - { - "id": 8058, - "properties": { - "axis": "x", - "waterlogged": "false" - } - }, - { - "id": 8059, - "properties": { - "axis": "y", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 8060, - "properties": { - "axis": "y", - "waterlogged": "false" - } - }, - { - "id": 8061, - "properties": { - "axis": "z", - "waterlogged": "true" - } - }, - { - "id": 8062, - "properties": { - "axis": "z", - "waterlogged": "false" - } - } - ] - }, - "minecraft:exposed_copper_chest": { - "definition": { - "type": "minecraft:weathering_copper_chest", - "close_sound": "minecraft:block.copper_chest.close", - "open_sound": "minecraft:block.copper_chest.open", - "properties": {}, - "weathering_state": "exposed" - }, - "properties": { - "type": [ - "single", - "left", - "right" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 26917, - "properties": { - "type": "single", - "facing": "north", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 26918, - "properties": { - "type": "single", - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 26919, - "properties": { - "type": "left", - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 26920, - "properties": { - "type": "left", - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 26921, - "properties": { - "type": "right", - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 26922, - "properties": { - "type": "right", - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 26923, - "properties": { - "type": "single", - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 26924, - "properties": { - "type": "single", - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 26925, - "properties": { - "type": "left", - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 26926, - "properties": { - "type": "left", - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 26927, - "properties": { - "type": "right", - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 26928, - "properties": { - "type": "right", - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 26929, - "properties": { - "type": "single", - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 26930, - "properties": { - "type": "single", - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 26931, - "properties": { - "type": "left", - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 26932, - "properties": { - "type": "left", - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 26933, - "properties": { - "type": "right", - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 26934, - "properties": { - "type": "right", - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 26935, - "properties": { - "type": "single", - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 26936, - "properties": { - "type": "single", - "facing": "east", - "waterlogged": "false" - } - }, - { - "id": 26937, - "properties": { - "type": "left", - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 26938, - "properties": { - "type": "left", - "facing": "east", - "waterlogged": "false" - } - }, - { - "id": 26939, - "properties": { - "type": "right", - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 26940, - "properties": { - "type": "right", - "facing": "east", - "waterlogged": "false" - } - } - ] - }, "minecraft:exposed_copper_door": { "definition": { "type": "minecraft:weathering_copper_door", @@ -96473,7 +90949,7 @@ }, "states": [ { - "id": 25885, + "id": 24744, "properties": { "facing": "north", "half": "upper", @@ -96483,7 +90959,7 @@ } }, { - "id": 25886, + "id": 24745, "properties": { "facing": "north", "half": "upper", @@ -96493,7 +90969,7 @@ } }, { - "id": 25887, + "id": 24746, "properties": { "facing": "north", "half": "upper", @@ -96503,7 +90979,7 @@ } }, { - "id": 25888, + "id": 24747, "properties": { "facing": "north", "half": "upper", @@ -96513,7 +90989,7 @@ } }, { - "id": 25889, + "id": 24748, "properties": { "facing": "north", "half": "upper", @@ -96523,7 +90999,7 @@ } }, { - "id": 25890, + "id": 24749, "properties": { "facing": "north", "half": "upper", @@ -96533,7 +91009,7 @@ } }, { - "id": 25891, + "id": 24750, "properties": { "facing": "north", "half": "upper", @@ -96543,7 +91019,7 @@ } }, { - "id": 25892, + "id": 24751, "properties": { "facing": "north", "half": "upper", @@ -96553,7 +91029,7 @@ } }, { - "id": 25893, + "id": 24752, "properties": { "facing": "north", "half": "lower", @@ -96563,7 +91039,7 @@ } }, { - "id": 25894, + "id": 24753, "properties": { "facing": "north", "half": "lower", @@ -96573,7 +91049,7 @@ } }, { - "id": 25895, + "id": 24754, "properties": { "facing": "north", "half": "lower", @@ -96584,7 +91060,7 @@ }, { "default": true, - "id": 25896, + "id": 24755, "properties": { "facing": "north", "half": "lower", @@ -96594,7 +91070,7 @@ } }, { - "id": 25897, + "id": 24756, "properties": { "facing": "north", "half": "lower", @@ -96604,7 +91080,7 @@ } }, { - "id": 25898, + "id": 24757, "properties": { "facing": "north", "half": "lower", @@ -96614,7 +91090,7 @@ } }, { - "id": 25899, + "id": 24758, "properties": { "facing": "north", "half": "lower", @@ -96624,7 +91100,7 @@ } }, { - "id": 25900, + "id": 24759, "properties": { "facing": "north", "half": "lower", @@ -96634,7 +91110,7 @@ } }, { - "id": 25901, + "id": 24760, "properties": { "facing": "south", "half": "upper", @@ -96644,7 +91120,7 @@ } }, { - "id": 25902, + "id": 24761, "properties": { "facing": "south", "half": "upper", @@ -96654,7 +91130,7 @@ } }, { - "id": 25903, + "id": 24762, "properties": { "facing": "south", "half": "upper", @@ -96664,7 +91140,7 @@ } }, { - "id": 25904, + "id": 24763, "properties": { "facing": "south", "half": "upper", @@ -96674,7 +91150,7 @@ } }, { - "id": 25905, + "id": 24764, "properties": { "facing": "south", "half": "upper", @@ -96684,7 +91160,7 @@ } }, { - "id": 25906, + "id": 24765, "properties": { "facing": "south", "half": "upper", @@ -96694,7 +91170,7 @@ } }, { - "id": 25907, + "id": 24766, "properties": { "facing": "south", "half": "upper", @@ -96704,7 +91180,7 @@ } }, { - "id": 25908, + "id": 24767, "properties": { "facing": "south", "half": "upper", @@ -96714,7 +91190,7 @@ } }, { - "id": 25909, + "id": 24768, "properties": { "facing": "south", "half": "lower", @@ -96724,7 +91200,7 @@ } }, { - "id": 25910, + "id": 24769, "properties": { "facing": "south", "half": "lower", @@ -96734,7 +91210,7 @@ } }, { - "id": 25911, + "id": 24770, "properties": { "facing": "south", "half": "lower", @@ -96744,7 +91220,7 @@ } }, { - "id": 25912, + "id": 24771, "properties": { "facing": "south", "half": "lower", @@ -96754,7 +91230,7 @@ } }, { - "id": 25913, + "id": 24772, "properties": { "facing": "south", "half": "lower", @@ -96764,7 +91240,7 @@ } }, { - "id": 25914, + "id": 24773, "properties": { "facing": "south", "half": "lower", @@ -96774,7 +91250,7 @@ } }, { - "id": 25915, + "id": 24774, "properties": { "facing": "south", "half": "lower", @@ -96784,7 +91260,7 @@ } }, { - "id": 25916, + "id": 24775, "properties": { "facing": "south", "half": "lower", @@ -96794,7 +91270,7 @@ } }, { - "id": 25917, + "id": 24776, "properties": { "facing": "west", "half": "upper", @@ -96804,7 +91280,7 @@ } }, { - "id": 25918, + "id": 24777, "properties": { "facing": "west", "half": "upper", @@ -96814,7 +91290,7 @@ } }, { - "id": 25919, + "id": 24778, "properties": { "facing": "west", "half": "upper", @@ -96824,7 +91300,7 @@ } }, { - "id": 25920, + "id": 24779, "properties": { "facing": "west", "half": "upper", @@ -96834,7 +91310,7 @@ } }, { - "id": 25921, + "id": 24780, "properties": { "facing": "west", "half": "upper", @@ -96844,7 +91320,7 @@ } }, { - "id": 25922, + "id": 24781, "properties": { "facing": "west", "half": "upper", @@ -96854,7 +91330,7 @@ } }, { - "id": 25923, + "id": 24782, "properties": { "facing": "west", "half": "upper", @@ -96864,7 +91340,7 @@ } }, { - "id": 25924, + "id": 24783, "properties": { "facing": "west", "half": "upper", @@ -96874,7 +91350,7 @@ } }, { - "id": 25925, + "id": 24784, "properties": { "facing": "west", "half": "lower", @@ -96884,7 +91360,7 @@ } }, { - "id": 25926, + "id": 24785, "properties": { "facing": "west", "half": "lower", @@ -96894,7 +91370,7 @@ } }, { - "id": 25927, + "id": 24786, "properties": { "facing": "west", "half": "lower", @@ -96904,7 +91380,7 @@ } }, { - "id": 25928, + "id": 24787, "properties": { "facing": "west", "half": "lower", @@ -96914,7 +91390,7 @@ } }, { - "id": 25929, + "id": 24788, "properties": { "facing": "west", "half": "lower", @@ -96924,7 +91400,7 @@ } }, { - "id": 25930, + "id": 24789, "properties": { "facing": "west", "half": "lower", @@ -96934,7 +91410,7 @@ } }, { - "id": 25931, + "id": 24790, "properties": { "facing": "west", "half": "lower", @@ -96944,7 +91420,7 @@ } }, { - "id": 25932, + "id": 24791, "properties": { "facing": "west", "half": "lower", @@ -96954,7 +91430,7 @@ } }, { - "id": 25933, + "id": 24792, "properties": { "facing": "east", "half": "upper", @@ -96964,7 +91440,7 @@ } }, { - "id": 25934, + "id": 24793, "properties": { "facing": "east", "half": "upper", @@ -96974,7 +91450,7 @@ } }, { - "id": 25935, + "id": 24794, "properties": { "facing": "east", "half": "upper", @@ -96984,7 +91460,7 @@ } }, { - "id": 25936, + "id": 24795, "properties": { "facing": "east", "half": "upper", @@ -96994,7 +91470,7 @@ } }, { - "id": 25937, + "id": 24796, "properties": { "facing": "east", "half": "upper", @@ -97004,7 +91480,7 @@ } }, { - "id": 25938, + "id": 24797, "properties": { "facing": "east", "half": "upper", @@ -97014,7 +91490,7 @@ } }, { - "id": 25939, + "id": 24798, "properties": { "facing": "east", "half": "upper", @@ -97024,7 +91500,7 @@ } }, { - "id": 25940, + "id": 24799, "properties": { "facing": "east", "half": "upper", @@ -97034,7 +91510,7 @@ } }, { - "id": 25941, + "id": 24800, "properties": { "facing": "east", "half": "lower", @@ -97044,7 +91520,7 @@ } }, { - "id": 25942, + "id": 24801, "properties": { "facing": "east", "half": "lower", @@ -97054,7 +91530,7 @@ } }, { - "id": 25943, + "id": 24802, "properties": { "facing": "east", "half": "lower", @@ -97064,7 +91540,7 @@ } }, { - "id": 25944, + "id": 24803, "properties": { "facing": "east", "half": "lower", @@ -97074,7 +91550,7 @@ } }, { - "id": 25945, + "id": 24804, "properties": { "facing": "east", "half": "lower", @@ -97084,7 +91560,7 @@ } }, { - "id": 25946, + "id": 24805, "properties": { "facing": "east", "half": "lower", @@ -97094,7 +91570,7 @@ } }, { - "id": 25947, + "id": 24806, "properties": { "facing": "east", "half": "lower", @@ -97104,7 +91580,7 @@ } }, { - "id": 25948, + "id": 24807, "properties": { "facing": "east", "half": "lower", @@ -97115,25 +91591,60 @@ } ] }, - "minecraft:exposed_copper_golem_statue": { + "minecraft:exposed_copper_grate": { "definition": { - "type": "minecraft:weathering_copper_golem_statue", + "type": "minecraft:weathering_copper_grate", + "properties": {}, + "weathering_state": "exposed" + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 25706, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 25707, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:exposed_copper_trapdoor": { + "definition": { + "type": "minecraft:weathering_copper_trap_door", + "block_set_type": "copper", "properties": {}, "weathering_state": "exposed" }, "properties": { - "copper_golem_pose": [ - "standing", - "sitting", - "running", - "star" - ], "facing": [ "north", "south", "west", "east" ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], "waterlogged": [ "true", "false" @@ -97141,685 +91652,318 @@ }, "states": [ { - "id": 27117, + "id": 25256, "properties": { - "copper_golem_pose": "standing", "facing": "north", + "half": "top", + "open": "true", + "powered": "true", "waterlogged": "true" } }, { - "default": true, - "id": 27118, + "id": 25257, "properties": { - "copper_golem_pose": "standing", "facing": "north", + "half": "top", + "open": "true", + "powered": "true", "waterlogged": "false" } }, { - "id": 27119, + "id": 25258, "properties": { - "copper_golem_pose": "standing", - "facing": "south", + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "true" } }, { - "id": 27120, + "id": 25259, "properties": { - "copper_golem_pose": "standing", - "facing": "south", + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { - "id": 27121, + "id": 25260, "properties": { - "copper_golem_pose": "standing", - "facing": "west", + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", "waterlogged": "true" } }, { - "id": 27122, + "id": 25261, "properties": { - "copper_golem_pose": "standing", - "facing": "west", + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", "waterlogged": "false" } }, { - "id": 27123, + "id": 25262, "properties": { - "copper_golem_pose": "standing", - "facing": "east", + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", "waterlogged": "true" } }, { - "id": 27124, + "id": 25263, "properties": { - "copper_golem_pose": "standing", - "facing": "east", + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", "waterlogged": "false" } }, { - "id": 27125, + "id": 25264, "properties": { - "copper_golem_pose": "sitting", "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", "waterlogged": "true" } }, { - "id": 27126, + "id": 25265, "properties": { - "copper_golem_pose": "sitting", "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", "waterlogged": "false" } }, { - "id": 27127, + "id": 25266, "properties": { - "copper_golem_pose": "sitting", - "facing": "south", + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", "waterlogged": "true" } }, { - "id": 27128, + "id": 25267, "properties": { - "copper_golem_pose": "sitting", - "facing": "south", + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { - "id": 27129, + "id": 25268, "properties": { - "copper_golem_pose": "sitting", - "facing": "west", + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", "waterlogged": "true" } }, { - "id": 27130, + "id": 25269, "properties": { - "copper_golem_pose": "sitting", - "facing": "west", + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", "waterlogged": "false" } }, { - "id": 27131, + "id": 25270, "properties": { - "copper_golem_pose": "sitting", - "facing": "east", + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", "waterlogged": "true" } }, { - "id": 27132, + "default": true, + "id": 25271, "properties": { - "copper_golem_pose": "sitting", - "facing": "east", + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", "waterlogged": "false" } }, { - "id": 27133, + "id": 25272, "properties": { - "copper_golem_pose": "running", - "facing": "north", + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", "waterlogged": "true" } }, { - "id": 27134, + "id": 25273, "properties": { - "copper_golem_pose": "running", - "facing": "north", + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", "waterlogged": "false" } }, { - "id": 27135, + "id": 25274, "properties": { - "copper_golem_pose": "running", "facing": "south", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "true" } }, { - "id": 27136, + "id": 25275, "properties": { - "copper_golem_pose": "running", "facing": "south", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { - "id": 27137, + "id": 25276, "properties": { - "copper_golem_pose": "running", - "facing": "west", + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", "waterlogged": "true" } }, { - "id": 27138, + "id": 25277, "properties": { - "copper_golem_pose": "running", - "facing": "west", + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", "waterlogged": "false" } }, { - "id": 27139, + "id": 25278, "properties": { - "copper_golem_pose": "running", - "facing": "east", + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", "waterlogged": "true" } }, { - "id": 27140, + "id": 25279, "properties": { - "copper_golem_pose": "running", - "facing": "east", + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", "waterlogged": "false" } }, { - "id": 27141, + "id": 25280, "properties": { - "copper_golem_pose": "star", - "facing": "north", + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", "waterlogged": "true" } }, { - "id": 27142, + "id": 25281, "properties": { - "copper_golem_pose": "star", - "facing": "north", + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", "waterlogged": "false" } }, { - "id": 27143, + "id": 25282, "properties": { - "copper_golem_pose": "star", "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", "waterlogged": "true" } }, { - "id": 27144, + "id": 25283, "properties": { - "copper_golem_pose": "star", "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { - "id": 27145, + "id": 25284, "properties": { - "copper_golem_pose": "star", - "facing": "west", + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", "waterlogged": "true" } }, { - "id": 27146, + "id": 25285, "properties": { - "copper_golem_pose": "star", - "facing": "west", + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", "waterlogged": "false" } }, { - "id": 27147, + "id": 25286, "properties": { - "copper_golem_pose": "star", - "facing": "east", + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", "waterlogged": "true" } }, { - "id": 27148, - "properties": { - "copper_golem_pose": "star", - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:exposed_copper_grate": { - "definition": { - "type": "minecraft:weathering_copper_grate", - "properties": {}, - "weathering_state": "exposed" - }, - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 26847, - "properties": { - "waterlogged": "true" - } - }, - { - "default": true, - "id": 26848, - "properties": { - "waterlogged": "false" - } - } - ] - }, - "minecraft:exposed_copper_lantern": { - "definition": { - "type": "minecraft:weathering_lantern", - "properties": {}, - "weathering_state": "exposed" - }, - "properties": { - "hanging": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20647, - "properties": { - "hanging": "true", - "waterlogged": "true" - } - }, - { - "id": 20648, - "properties": { - "hanging": "true", - "waterlogged": "false" - } - }, - { - "id": 20649, - "properties": { - "hanging": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 20650, - "properties": { - "hanging": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:exposed_copper_trapdoor": { - "definition": { - "type": "minecraft:weathering_copper_trap_door", - "block_set_type": "copper", - "properties": {}, - "weathering_state": "exposed" - }, - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 26397, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 26398, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 26399, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 26400, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 26401, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 26402, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 26403, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 26404, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 26405, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 26406, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 26407, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 26408, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 26409, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 26410, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 26411, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 26412, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 26413, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 26414, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 26415, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 26416, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 26417, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 26418, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 26419, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 26420, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 26421, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 26422, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 26423, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 26424, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 26425, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 26426, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 26427, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 26428, + "id": 25287, "properties": { "facing": "south", "half": "bottom", @@ -97829,7 +91973,7 @@ } }, { - "id": 26429, + "id": 25288, "properties": { "facing": "west", "half": "top", @@ -97839,7 +91983,7 @@ } }, { - "id": 26430, + "id": 25289, "properties": { "facing": "west", "half": "top", @@ -97849,7 +91993,7 @@ } }, { - "id": 26431, + "id": 25290, "properties": { "facing": "west", "half": "top", @@ -97859,7 +92003,7 @@ } }, { - "id": 26432, + "id": 25291, "properties": { "facing": "west", "half": "top", @@ -97869,7 +92013,7 @@ } }, { - "id": 26433, + "id": 25292, "properties": { "facing": "west", "half": "top", @@ -97879,7 +92023,7 @@ } }, { - "id": 26434, + "id": 25293, "properties": { "facing": "west", "half": "top", @@ -97889,7 +92033,7 @@ } }, { - "id": 26435, + "id": 25294, "properties": { "facing": "west", "half": "top", @@ -97899,7 +92043,7 @@ } }, { - "id": 26436, + "id": 25295, "properties": { "facing": "west", "half": "top", @@ -97909,7 +92053,7 @@ } }, { - "id": 26437, + "id": 25296, "properties": { "facing": "west", "half": "bottom", @@ -97919,7 +92063,7 @@ } }, { - "id": 26438, + "id": 25297, "properties": { "facing": "west", "half": "bottom", @@ -97929,7 +92073,7 @@ } }, { - "id": 26439, + "id": 25298, "properties": { "facing": "west", "half": "bottom", @@ -97939,7 +92083,7 @@ } }, { - "id": 26440, + "id": 25299, "properties": { "facing": "west", "half": "bottom", @@ -97949,7 +92093,7 @@ } }, { - "id": 26441, + "id": 25300, "properties": { "facing": "west", "half": "bottom", @@ -97959,7 +92103,7 @@ } }, { - "id": 26442, + "id": 25301, "properties": { "facing": "west", "half": "bottom", @@ -97969,7 +92113,7 @@ } }, { - "id": 26443, + "id": 25302, "properties": { "facing": "west", "half": "bottom", @@ -97979,7 +92123,7 @@ } }, { - "id": 26444, + "id": 25303, "properties": { "facing": "west", "half": "bottom", @@ -97989,7 +92133,7 @@ } }, { - "id": 26445, + "id": 25304, "properties": { "facing": "east", "half": "top", @@ -97999,7 +92143,7 @@ } }, { - "id": 26446, + "id": 25305, "properties": { "facing": "east", "half": "top", @@ -98009,7 +92153,7 @@ } }, { - "id": 26447, + "id": 25306, "properties": { "facing": "east", "half": "top", @@ -98019,7 +92163,7 @@ } }, { - "id": 26448, + "id": 25307, "properties": { "facing": "east", "half": "top", @@ -98029,7 +92173,7 @@ } }, { - "id": 26449, + "id": 25308, "properties": { "facing": "east", "half": "top", @@ -98039,7 +92183,7 @@ } }, { - "id": 26450, + "id": 25309, "properties": { "facing": "east", "half": "top", @@ -98049,7 +92193,7 @@ } }, { - "id": 26451, + "id": 25310, "properties": { "facing": "east", "half": "top", @@ -98059,7 +92203,7 @@ } }, { - "id": 26452, + "id": 25311, "properties": { "facing": "east", "half": "top", @@ -98069,7 +92213,7 @@ } }, { - "id": 26453, + "id": 25312, "properties": { "facing": "east", "half": "bottom", @@ -98079,7 +92223,7 @@ } }, { - "id": 26454, + "id": 25313, "properties": { "facing": "east", "half": "bottom", @@ -98089,7 +92233,7 @@ } }, { - "id": 26455, + "id": 25314, "properties": { "facing": "east", "half": "bottom", @@ -98099,7 +92243,7 @@ } }, { - "id": 26456, + "id": 25315, "properties": { "facing": "east", "half": "bottom", @@ -98109,7 +92253,7 @@ } }, { - "id": 26457, + "id": 25316, "properties": { "facing": "east", "half": "bottom", @@ -98119,7 +92263,7 @@ } }, { - "id": 26458, + "id": 25317, "properties": { "facing": "east", "half": "bottom", @@ -98129,7 +92273,7 @@ } }, { - "id": 26459, + "id": 25318, "properties": { "facing": "east", "half": "bottom", @@ -98139,7 +92283,7 @@ } }, { - "id": 26460, + "id": 25319, "properties": { "facing": "east", "half": "bottom", @@ -98159,7 +92303,7 @@ "states": [ { "default": true, - "id": 25115 + "id": 23974 } ] }, @@ -98182,21 +92326,21 @@ }, "states": [ { - "id": 25457, + "id": 24316, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 25458, + "id": 24317, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 25459, + "id": 24318, "properties": { "type": "bottom", "waterlogged": "true" @@ -98204,21 +92348,21 @@ }, { "default": true, - "id": 25460, + "id": 24319, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 25461, + "id": 24320, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 25462, + "id": 24321, "properties": { "type": "double", "waterlogged": "false" @@ -98260,7 +92404,7 @@ }, "states": [ { - "id": 25285, + "id": 24144, "properties": { "facing": "north", "half": "top", @@ -98269,7 +92413,7 @@ } }, { - "id": 25286, + "id": 24145, "properties": { "facing": "north", "half": "top", @@ -98278,7 +92422,7 @@ } }, { - "id": 25287, + "id": 24146, "properties": { "facing": "north", "half": "top", @@ -98287,7 +92431,7 @@ } }, { - "id": 25288, + "id": 24147, "properties": { "facing": "north", "half": "top", @@ -98296,7 +92440,7 @@ } }, { - "id": 25289, + "id": 24148, "properties": { "facing": "north", "half": "top", @@ -98305,7 +92449,7 @@ } }, { - "id": 25290, + "id": 24149, "properties": { "facing": "north", "half": "top", @@ -98314,7 +92458,7 @@ } }, { - "id": 25291, + "id": 24150, "properties": { "facing": "north", "half": "top", @@ -98323,7 +92467,7 @@ } }, { - "id": 25292, + "id": 24151, "properties": { "facing": "north", "half": "top", @@ -98332,7 +92476,7 @@ } }, { - "id": 25293, + "id": 24152, "properties": { "facing": "north", "half": "top", @@ -98341,7 +92485,7 @@ } }, { - "id": 25294, + "id": 24153, "properties": { "facing": "north", "half": "top", @@ -98350,7 +92494,7 @@ } }, { - "id": 25295, + "id": 24154, "properties": { "facing": "north", "half": "bottom", @@ -98360,7 +92504,7 @@ }, { "default": true, - "id": 25296, + "id": 24155, "properties": { "facing": "north", "half": "bottom", @@ -98369,7 +92513,7 @@ } }, { - "id": 25297, + "id": 24156, "properties": { "facing": "north", "half": "bottom", @@ -98378,7 +92522,7 @@ } }, { - "id": 25298, + "id": 24157, "properties": { "facing": "north", "half": "bottom", @@ -98387,7 +92531,7 @@ } }, { - "id": 25299, + "id": 24158, "properties": { "facing": "north", "half": "bottom", @@ -98396,7 +92540,7 @@ } }, { - "id": 25300, + "id": 24159, "properties": { "facing": "north", "half": "bottom", @@ -98405,7 +92549,7 @@ } }, { - "id": 25301, + "id": 24160, "properties": { "facing": "north", "half": "bottom", @@ -98414,7 +92558,7 @@ } }, { - "id": 25302, + "id": 24161, "properties": { "facing": "north", "half": "bottom", @@ -98423,7 +92567,7 @@ } }, { - "id": 25303, + "id": 24162, "properties": { "facing": "north", "half": "bottom", @@ -98432,7 +92576,7 @@ } }, { - "id": 25304, + "id": 24163, "properties": { "facing": "north", "half": "bottom", @@ -98441,7 +92585,7 @@ } }, { - "id": 25305, + "id": 24164, "properties": { "facing": "south", "half": "top", @@ -98450,7 +92594,7 @@ } }, { - "id": 25306, + "id": 24165, "properties": { "facing": "south", "half": "top", @@ -98459,7 +92603,7 @@ } }, { - "id": 25307, + "id": 24166, "properties": { "facing": "south", "half": "top", @@ -98468,7 +92612,7 @@ } }, { - "id": 25308, + "id": 24167, "properties": { "facing": "south", "half": "top", @@ -98477,7 +92621,7 @@ } }, { - "id": 25309, + "id": 24168, "properties": { "facing": "south", "half": "top", @@ -98486,7 +92630,7 @@ } }, { - "id": 25310, + "id": 24169, "properties": { "facing": "south", "half": "top", @@ -98495,7 +92639,7 @@ } }, { - "id": 25311, + "id": 24170, "properties": { "facing": "south", "half": "top", @@ -98504,7 +92648,7 @@ } }, { - "id": 25312, + "id": 24171, "properties": { "facing": "south", "half": "top", @@ -98513,7 +92657,7 @@ } }, { - "id": 25313, + "id": 24172, "properties": { "facing": "south", "half": "top", @@ -98522,7 +92666,7 @@ } }, { - "id": 25314, + "id": 24173, "properties": { "facing": "south", "half": "top", @@ -98531,7 +92675,7 @@ } }, { - "id": 25315, + "id": 24174, "properties": { "facing": "south", "half": "bottom", @@ -98540,7 +92684,7 @@ } }, { - "id": 25316, + "id": 24175, "properties": { "facing": "south", "half": "bottom", @@ -98549,7 +92693,7 @@ } }, { - "id": 25317, + "id": 24176, "properties": { "facing": "south", "half": "bottom", @@ -98558,7 +92702,7 @@ } }, { - "id": 25318, + "id": 24177, "properties": { "facing": "south", "half": "bottom", @@ -98567,7 +92711,7 @@ } }, { - "id": 25319, + "id": 24178, "properties": { "facing": "south", "half": "bottom", @@ -98576,7 +92720,7 @@ } }, { - "id": 25320, + "id": 24179, "properties": { "facing": "south", "half": "bottom", @@ -98585,7 +92729,7 @@ } }, { - "id": 25321, + "id": 24180, "properties": { "facing": "south", "half": "bottom", @@ -98594,7 +92738,7 @@ } }, { - "id": 25322, + "id": 24181, "properties": { "facing": "south", "half": "bottom", @@ -98603,7 +92747,7 @@ } }, { - "id": 25323, + "id": 24182, "properties": { "facing": "south", "half": "bottom", @@ -98612,7 +92756,7 @@ } }, { - "id": 25324, + "id": 24183, "properties": { "facing": "south", "half": "bottom", @@ -98621,7 +92765,7 @@ } }, { - "id": 25325, + "id": 24184, "properties": { "facing": "west", "half": "top", @@ -98630,7 +92774,7 @@ } }, { - "id": 25326, + "id": 24185, "properties": { "facing": "west", "half": "top", @@ -98639,7 +92783,7 @@ } }, { - "id": 25327, + "id": 24186, "properties": { "facing": "west", "half": "top", @@ -98648,7 +92792,7 @@ } }, { - "id": 25328, + "id": 24187, "properties": { "facing": "west", "half": "top", @@ -98657,7 +92801,7 @@ } }, { - "id": 25329, + "id": 24188, "properties": { "facing": "west", "half": "top", @@ -98666,7 +92810,7 @@ } }, { - "id": 25330, + "id": 24189, "properties": { "facing": "west", "half": "top", @@ -98675,7 +92819,7 @@ } }, { - "id": 25331, + "id": 24190, "properties": { "facing": "west", "half": "top", @@ -98684,7 +92828,7 @@ } }, { - "id": 25332, + "id": 24191, "properties": { "facing": "west", "half": "top", @@ -98693,7 +92837,7 @@ } }, { - "id": 25333, + "id": 24192, "properties": { "facing": "west", "half": "top", @@ -98702,7 +92846,7 @@ } }, { - "id": 25334, + "id": 24193, "properties": { "facing": "west", "half": "top", @@ -98711,7 +92855,7 @@ } }, { - "id": 25335, + "id": 24194, "properties": { "facing": "west", "half": "bottom", @@ -98720,7 +92864,7 @@ } }, { - "id": 25336, + "id": 24195, "properties": { "facing": "west", "half": "bottom", @@ -98729,7 +92873,7 @@ } }, { - "id": 25337, + "id": 24196, "properties": { "facing": "west", "half": "bottom", @@ -98738,7 +92882,7 @@ } }, { - "id": 25338, + "id": 24197, "properties": { "facing": "west", "half": "bottom", @@ -98747,7 +92891,7 @@ } }, { - "id": 25339, + "id": 24198, "properties": { "facing": "west", "half": "bottom", @@ -98756,7 +92900,7 @@ } }, { - "id": 25340, + "id": 24199, "properties": { "facing": "west", "half": "bottom", @@ -98765,7 +92909,7 @@ } }, { - "id": 25341, + "id": 24200, "properties": { "facing": "west", "half": "bottom", @@ -98774,7 +92918,7 @@ } }, { - "id": 25342, + "id": 24201, "properties": { "facing": "west", "half": "bottom", @@ -98783,7 +92927,7 @@ } }, { - "id": 25343, + "id": 24202, "properties": { "facing": "west", "half": "bottom", @@ -98792,7 +92936,7 @@ } }, { - "id": 25344, + "id": 24203, "properties": { "facing": "west", "half": "bottom", @@ -98801,7 +92945,7 @@ } }, { - "id": 25345, + "id": 24204, "properties": { "facing": "east", "half": "top", @@ -98810,7 +92954,7 @@ } }, { - "id": 25346, + "id": 24205, "properties": { "facing": "east", "half": "top", @@ -98819,7 +92963,7 @@ } }, { - "id": 25347, + "id": 24206, "properties": { "facing": "east", "half": "top", @@ -98828,7 +92972,7 @@ } }, { - "id": 25348, + "id": 24207, "properties": { "facing": "east", "half": "top", @@ -98837,7 +92981,7 @@ } }, { - "id": 25349, + "id": 24208, "properties": { "facing": "east", "half": "top", @@ -98846,7 +92990,7 @@ } }, { - "id": 25350, + "id": 24209, "properties": { "facing": "east", "half": "top", @@ -98855,7 +92999,7 @@ } }, { - "id": 25351, + "id": 24210, "properties": { "facing": "east", "half": "top", @@ -98864,7 +93008,7 @@ } }, { - "id": 25352, + "id": 24211, "properties": { "facing": "east", "half": "top", @@ -98873,7 +93017,7 @@ } }, { - "id": 25353, + "id": 24212, "properties": { "facing": "east", "half": "top", @@ -98882,7 +93026,7 @@ } }, { - "id": 25354, + "id": 24213, "properties": { "facing": "east", "half": "top", @@ -98891,7 +93035,7 @@ } }, { - "id": 25355, + "id": 24214, "properties": { "facing": "east", "half": "bottom", @@ -98900,7 +93044,7 @@ } }, { - "id": 25356, + "id": 24215, "properties": { "facing": "east", "half": "bottom", @@ -98909,7 +93053,7 @@ } }, { - "id": 25357, + "id": 24216, "properties": { "facing": "east", "half": "bottom", @@ -98918,7 +93062,7 @@ } }, { - "id": 25358, + "id": 24217, "properties": { "facing": "east", "half": "bottom", @@ -98927,7 +93071,7 @@ } }, { - "id": 25359, + "id": 24218, "properties": { "facing": "east", "half": "bottom", @@ -98936,7 +93080,7 @@ } }, { - "id": 25360, + "id": 24219, "properties": { "facing": "east", "half": "bottom", @@ -98945,7 +93089,7 @@ } }, { - "id": 25361, + "id": 24220, "properties": { "facing": "east", "half": "bottom", @@ -98954,7 +93098,7 @@ } }, { - "id": 25362, + "id": 24221, "properties": { "facing": "east", "half": "bottom", @@ -98963,7 +93107,7 @@ } }, { - "id": 25363, + "id": 24222, "properties": { "facing": "east", "half": "bottom", @@ -98972,7 +93116,7 @@ } }, { - "id": 25364, + "id": 24223, "properties": { "facing": "east", "half": "bottom", @@ -98982,226 +93126,6 @@ } ] }, - "minecraft:exposed_lightning_rod": { - "definition": { - "type": "minecraft:weathering_lightning_rod", - "properties": {}, - "weathering_state": "exposed" - }, - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ], - "powered": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 27365, - "properties": { - "facing": "north", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 27366, - "properties": { - "facing": "north", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 27367, - "properties": { - "facing": "north", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 27368, - "properties": { - "facing": "north", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 27369, - "properties": { - "facing": "east", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 27370, - "properties": { - "facing": "east", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 27371, - "properties": { - "facing": "east", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 27372, - "properties": { - "facing": "east", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 27373, - "properties": { - "facing": "south", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 27374, - "properties": { - "facing": "south", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 27375, - "properties": { - "facing": "south", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 27376, - "properties": { - "facing": "south", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 27377, - "properties": { - "facing": "west", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 27378, - "properties": { - "facing": "west", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 27379, - "properties": { - "facing": "west", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 27380, - "properties": { - "facing": "west", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 27381, - "properties": { - "facing": "up", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 27382, - "properties": { - "facing": "up", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 27383, - "properties": { - "facing": "up", - "powered": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 27384, - "properties": { - "facing": "up", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 27385, - "properties": { - "facing": "down", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 27386, - "properties": { - "facing": "down", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 27387, - "properties": { - "facing": "down", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 27388, - "properties": { - "facing": "down", - "powered": "false", - "waterlogged": "false" - } - } - ] - }, "minecraft:farmland": { "definition": { "type": "minecraft:farm", @@ -99222,49 +93146,49 @@ "states": [ { "default": true, - "id": 5118, + "id": 4350, "properties": { "moisture": "0" } }, { - "id": 5119, + "id": 4351, "properties": { "moisture": "1" } }, { - "id": 5120, + "id": 4352, "properties": { "moisture": "2" } }, { - "id": 5121, + "id": 4353, "properties": { "moisture": "3" } }, { - "id": 5122, + "id": 4354, "properties": { "moisture": "4" } }, { - "id": 5123, + "id": 4355, "properties": { "moisture": "5" } }, { - "id": 5124, + "id": 4356, "properties": { "moisture": "6" } }, { - "id": 5125, + "id": 4357, "properties": { "moisture": "7" } @@ -99330,7 +93254,7 @@ }, "states": [ { - "id": 3174, + "id": 2406, "properties": { "age": "0", "east": "true", @@ -99341,7 +93265,7 @@ } }, { - "id": 3175, + "id": 2407, "properties": { "age": "0", "east": "true", @@ -99352,7 +93276,7 @@ } }, { - "id": 3176, + "id": 2408, "properties": { "age": "0", "east": "true", @@ -99363,7 +93287,7 @@ } }, { - "id": 3177, + "id": 2409, "properties": { "age": "0", "east": "true", @@ -99374,7 +93298,7 @@ } }, { - "id": 3178, + "id": 2410, "properties": { "age": "0", "east": "true", @@ -99385,7 +93309,7 @@ } }, { - "id": 3179, + "id": 2411, "properties": { "age": "0", "east": "true", @@ -99396,7 +93320,7 @@ } }, { - "id": 3180, + "id": 2412, "properties": { "age": "0", "east": "true", @@ -99407,7 +93331,7 @@ } }, { - "id": 3181, + "id": 2413, "properties": { "age": "0", "east": "true", @@ -99418,7 +93342,7 @@ } }, { - "id": 3182, + "id": 2414, "properties": { "age": "0", "east": "true", @@ -99429,7 +93353,7 @@ } }, { - "id": 3183, + "id": 2415, "properties": { "age": "0", "east": "true", @@ -99440,7 +93364,7 @@ } }, { - "id": 3184, + "id": 2416, "properties": { "age": "0", "east": "true", @@ -99451,7 +93375,7 @@ } }, { - "id": 3185, + "id": 2417, "properties": { "age": "0", "east": "true", @@ -99462,7 +93386,7 @@ } }, { - "id": 3186, + "id": 2418, "properties": { "age": "0", "east": "true", @@ -99473,7 +93397,7 @@ } }, { - "id": 3187, + "id": 2419, "properties": { "age": "0", "east": "true", @@ -99484,7 +93408,7 @@ } }, { - "id": 3188, + "id": 2420, "properties": { "age": "0", "east": "true", @@ -99495,7 +93419,7 @@ } }, { - "id": 3189, + "id": 2421, "properties": { "age": "0", "east": "true", @@ -99506,7 +93430,7 @@ } }, { - "id": 3190, + "id": 2422, "properties": { "age": "0", "east": "false", @@ -99517,7 +93441,7 @@ } }, { - "id": 3191, + "id": 2423, "properties": { "age": "0", "east": "false", @@ -99528,7 +93452,7 @@ } }, { - "id": 3192, + "id": 2424, "properties": { "age": "0", "east": "false", @@ -99539,7 +93463,7 @@ } }, { - "id": 3193, + "id": 2425, "properties": { "age": "0", "east": "false", @@ -99550,7 +93474,7 @@ } }, { - "id": 3194, + "id": 2426, "properties": { "age": "0", "east": "false", @@ -99561,7 +93485,7 @@ } }, { - "id": 3195, + "id": 2427, "properties": { "age": "0", "east": "false", @@ -99572,7 +93496,7 @@ } }, { - "id": 3196, + "id": 2428, "properties": { "age": "0", "east": "false", @@ -99583,7 +93507,7 @@ } }, { - "id": 3197, + "id": 2429, "properties": { "age": "0", "east": "false", @@ -99594,7 +93518,7 @@ } }, { - "id": 3198, + "id": 2430, "properties": { "age": "0", "east": "false", @@ -99605,7 +93529,7 @@ } }, { - "id": 3199, + "id": 2431, "properties": { "age": "0", "east": "false", @@ -99616,7 +93540,7 @@ } }, { - "id": 3200, + "id": 2432, "properties": { "age": "0", "east": "false", @@ -99627,7 +93551,7 @@ } }, { - "id": 3201, + "id": 2433, "properties": { "age": "0", "east": "false", @@ -99638,7 +93562,7 @@ } }, { - "id": 3202, + "id": 2434, "properties": { "age": "0", "east": "false", @@ -99649,7 +93573,7 @@ } }, { - "id": 3203, + "id": 2435, "properties": { "age": "0", "east": "false", @@ -99660,7 +93584,7 @@ } }, { - "id": 3204, + "id": 2436, "properties": { "age": "0", "east": "false", @@ -99672,7 +93596,7 @@ }, { "default": true, - "id": 3205, + "id": 2437, "properties": { "age": "0", "east": "false", @@ -99683,7 +93607,7 @@ } }, { - "id": 3206, + "id": 2438, "properties": { "age": "1", "east": "true", @@ -99694,7 +93618,7 @@ } }, { - "id": 3207, + "id": 2439, "properties": { "age": "1", "east": "true", @@ -99705,7 +93629,7 @@ } }, { - "id": 3208, + "id": 2440, "properties": { "age": "1", "east": "true", @@ -99716,7 +93640,7 @@ } }, { - "id": 3209, + "id": 2441, "properties": { "age": "1", "east": "true", @@ -99727,7 +93651,7 @@ } }, { - "id": 3210, + "id": 2442, "properties": { "age": "1", "east": "true", @@ -99738,7 +93662,7 @@ } }, { - "id": 3211, + "id": 2443, "properties": { "age": "1", "east": "true", @@ -99749,7 +93673,7 @@ } }, { - "id": 3212, + "id": 2444, "properties": { "age": "1", "east": "true", @@ -99760,7 +93684,7 @@ } }, { - "id": 3213, + "id": 2445, "properties": { "age": "1", "east": "true", @@ -99771,7 +93695,7 @@ } }, { - "id": 3214, + "id": 2446, "properties": { "age": "1", "east": "true", @@ -99782,7 +93706,7 @@ } }, { - "id": 3215, + "id": 2447, "properties": { "age": "1", "east": "true", @@ -99793,7 +93717,7 @@ } }, { - "id": 3216, + "id": 2448, "properties": { "age": "1", "east": "true", @@ -99804,7 +93728,7 @@ } }, { - "id": 3217, + "id": 2449, "properties": { "age": "1", "east": "true", @@ -99815,7 +93739,7 @@ } }, { - "id": 3218, + "id": 2450, "properties": { "age": "1", "east": "true", @@ -99826,7 +93750,7 @@ } }, { - "id": 3219, + "id": 2451, "properties": { "age": "1", "east": "true", @@ -99837,7 +93761,7 @@ } }, { - "id": 3220, + "id": 2452, "properties": { "age": "1", "east": "true", @@ -99848,7 +93772,7 @@ } }, { - "id": 3221, + "id": 2453, "properties": { "age": "1", "east": "true", @@ -99859,7 +93783,7 @@ } }, { - "id": 3222, + "id": 2454, "properties": { "age": "1", "east": "false", @@ -99870,7 +93794,7 @@ } }, { - "id": 3223, + "id": 2455, "properties": { "age": "1", "east": "false", @@ -99881,7 +93805,7 @@ } }, { - "id": 3224, + "id": 2456, "properties": { "age": "1", "east": "false", @@ -99892,7 +93816,7 @@ } }, { - "id": 3225, + "id": 2457, "properties": { "age": "1", "east": "false", @@ -99903,7 +93827,7 @@ } }, { - "id": 3226, + "id": 2458, "properties": { "age": "1", "east": "false", @@ -99914,7 +93838,7 @@ } }, { - "id": 3227, + "id": 2459, "properties": { "age": "1", "east": "false", @@ -99925,7 +93849,7 @@ } }, { - "id": 3228, + "id": 2460, "properties": { "age": "1", "east": "false", @@ -99936,7 +93860,7 @@ } }, { - "id": 3229, + "id": 2461, "properties": { "age": "1", "east": "false", @@ -99947,7 +93871,7 @@ } }, { - "id": 3230, + "id": 2462, "properties": { "age": "1", "east": "false", @@ -99958,7 +93882,7 @@ } }, { - "id": 3231, + "id": 2463, "properties": { "age": "1", "east": "false", @@ -99969,7 +93893,7 @@ } }, { - "id": 3232, + "id": 2464, "properties": { "age": "1", "east": "false", @@ -99980,7 +93904,7 @@ } }, { - "id": 3233, + "id": 2465, "properties": { "age": "1", "east": "false", @@ -99991,7 +93915,7 @@ } }, { - "id": 3234, + "id": 2466, "properties": { "age": "1", "east": "false", @@ -100002,7 +93926,7 @@ } }, { - "id": 3235, + "id": 2467, "properties": { "age": "1", "east": "false", @@ -100013,7 +93937,7 @@ } }, { - "id": 3236, + "id": 2468, "properties": { "age": "1", "east": "false", @@ -100024,7 +93948,7 @@ } }, { - "id": 3237, + "id": 2469, "properties": { "age": "1", "east": "false", @@ -100035,7 +93959,7 @@ } }, { - "id": 3238, + "id": 2470, "properties": { "age": "2", "east": "true", @@ -100046,7 +93970,7 @@ } }, { - "id": 3239, + "id": 2471, "properties": { "age": "2", "east": "true", @@ -100057,7 +93981,7 @@ } }, { - "id": 3240, + "id": 2472, "properties": { "age": "2", "east": "true", @@ -100068,7 +93992,7 @@ } }, { - "id": 3241, + "id": 2473, "properties": { "age": "2", "east": "true", @@ -100079,7 +94003,7 @@ } }, { - "id": 3242, + "id": 2474, "properties": { "age": "2", "east": "true", @@ -100090,7 +94014,7 @@ } }, { - "id": 3243, + "id": 2475, "properties": { "age": "2", "east": "true", @@ -100101,7 +94025,7 @@ } }, { - "id": 3244, + "id": 2476, "properties": { "age": "2", "east": "true", @@ -100112,7 +94036,7 @@ } }, { - "id": 3245, + "id": 2477, "properties": { "age": "2", "east": "true", @@ -100123,7 +94047,7 @@ } }, { - "id": 3246, + "id": 2478, "properties": { "age": "2", "east": "true", @@ -100134,7 +94058,7 @@ } }, { - "id": 3247, + "id": 2479, "properties": { "age": "2", "east": "true", @@ -100145,7 +94069,7 @@ } }, { - "id": 3248, + "id": 2480, "properties": { "age": "2", "east": "true", @@ -100156,7 +94080,7 @@ } }, { - "id": 3249, + "id": 2481, "properties": { "age": "2", "east": "true", @@ -100167,7 +94091,7 @@ } }, { - "id": 3250, + "id": 2482, "properties": { "age": "2", "east": "true", @@ -100178,7 +94102,7 @@ } }, { - "id": 3251, + "id": 2483, "properties": { "age": "2", "east": "true", @@ -100189,7 +94113,7 @@ } }, { - "id": 3252, + "id": 2484, "properties": { "age": "2", "east": "true", @@ -100200,7 +94124,7 @@ } }, { - "id": 3253, + "id": 2485, "properties": { "age": "2", "east": "true", @@ -100211,7 +94135,7 @@ } }, { - "id": 3254, + "id": 2486, "properties": { "age": "2", "east": "false", @@ -100222,7 +94146,7 @@ } }, { - "id": 3255, + "id": 2487, "properties": { "age": "2", "east": "false", @@ -100233,7 +94157,7 @@ } }, { - "id": 3256, + "id": 2488, "properties": { "age": "2", "east": "false", @@ -100244,7 +94168,7 @@ } }, { - "id": 3257, + "id": 2489, "properties": { "age": "2", "east": "false", @@ -100255,7 +94179,7 @@ } }, { - "id": 3258, + "id": 2490, "properties": { "age": "2", "east": "false", @@ -100266,7 +94190,7 @@ } }, { - "id": 3259, + "id": 2491, "properties": { "age": "2", "east": "false", @@ -100277,7 +94201,7 @@ } }, { - "id": 3260, + "id": 2492, "properties": { "age": "2", "east": "false", @@ -100288,7 +94212,7 @@ } }, { - "id": 3261, + "id": 2493, "properties": { "age": "2", "east": "false", @@ -100299,7 +94223,7 @@ } }, { - "id": 3262, + "id": 2494, "properties": { "age": "2", "east": "false", @@ -100310,7 +94234,7 @@ } }, { - "id": 3263, + "id": 2495, "properties": { "age": "2", "east": "false", @@ -100321,7 +94245,7 @@ } }, { - "id": 3264, + "id": 2496, "properties": { "age": "2", "east": "false", @@ -100332,7 +94256,7 @@ } }, { - "id": 3265, + "id": 2497, "properties": { "age": "2", "east": "false", @@ -100343,7 +94267,7 @@ } }, { - "id": 3266, + "id": 2498, "properties": { "age": "2", "east": "false", @@ -100354,7 +94278,7 @@ } }, { - "id": 3267, + "id": 2499, "properties": { "age": "2", "east": "false", @@ -100365,7 +94289,7 @@ } }, { - "id": 3268, + "id": 2500, "properties": { "age": "2", "east": "false", @@ -100376,7 +94300,7 @@ } }, { - "id": 3269, + "id": 2501, "properties": { "age": "2", "east": "false", @@ -100387,7 +94311,7 @@ } }, { - "id": 3270, + "id": 2502, "properties": { "age": "3", "east": "true", @@ -100398,7 +94322,7 @@ } }, { - "id": 3271, + "id": 2503, "properties": { "age": "3", "east": "true", @@ -100409,7 +94333,7 @@ } }, { - "id": 3272, + "id": 2504, "properties": { "age": "3", "east": "true", @@ -100420,7 +94344,7 @@ } }, { - "id": 3273, + "id": 2505, "properties": { "age": "3", "east": "true", @@ -100431,7 +94355,7 @@ } }, { - "id": 3274, + "id": 2506, "properties": { "age": "3", "east": "true", @@ -100442,7 +94366,7 @@ } }, { - "id": 3275, + "id": 2507, "properties": { "age": "3", "east": "true", @@ -100453,7 +94377,7 @@ } }, { - "id": 3276, + "id": 2508, "properties": { "age": "3", "east": "true", @@ -100464,7 +94388,7 @@ } }, { - "id": 3277, + "id": 2509, "properties": { "age": "3", "east": "true", @@ -100475,7 +94399,7 @@ } }, { - "id": 3278, + "id": 2510, "properties": { "age": "3", "east": "true", @@ -100486,7 +94410,7 @@ } }, { - "id": 3279, + "id": 2511, "properties": { "age": "3", "east": "true", @@ -100497,7 +94421,7 @@ } }, { - "id": 3280, + "id": 2512, "properties": { "age": "3", "east": "true", @@ -100508,7 +94432,7 @@ } }, { - "id": 3281, + "id": 2513, "properties": { "age": "3", "east": "true", @@ -100519,7 +94443,7 @@ } }, { - "id": 3282, + "id": 2514, "properties": { "age": "3", "east": "true", @@ -100530,7 +94454,7 @@ } }, { - "id": 3283, + "id": 2515, "properties": { "age": "3", "east": "true", @@ -100541,7 +94465,7 @@ } }, { - "id": 3284, + "id": 2516, "properties": { "age": "3", "east": "true", @@ -100552,7 +94476,7 @@ } }, { - "id": 3285, + "id": 2517, "properties": { "age": "3", "east": "true", @@ -100563,7 +94487,7 @@ } }, { - "id": 3286, + "id": 2518, "properties": { "age": "3", "east": "false", @@ -100574,7 +94498,7 @@ } }, { - "id": 3287, + "id": 2519, "properties": { "age": "3", "east": "false", @@ -100585,7 +94509,7 @@ } }, { - "id": 3288, + "id": 2520, "properties": { "age": "3", "east": "false", @@ -100596,7 +94520,7 @@ } }, { - "id": 3289, + "id": 2521, "properties": { "age": "3", "east": "false", @@ -100607,7 +94531,7 @@ } }, { - "id": 3290, + "id": 2522, "properties": { "age": "3", "east": "false", @@ -100618,7 +94542,7 @@ } }, { - "id": 3291, + "id": 2523, "properties": { "age": "3", "east": "false", @@ -100629,7 +94553,7 @@ } }, { - "id": 3292, + "id": 2524, "properties": { "age": "3", "east": "false", @@ -100640,7 +94564,7 @@ } }, { - "id": 3293, + "id": 2525, "properties": { "age": "3", "east": "false", @@ -100651,7 +94575,7 @@ } }, { - "id": 3294, + "id": 2526, "properties": { "age": "3", "east": "false", @@ -100662,7 +94586,7 @@ } }, { - "id": 3295, + "id": 2527, "properties": { "age": "3", "east": "false", @@ -100673,7 +94597,7 @@ } }, { - "id": 3296, + "id": 2528, "properties": { "age": "3", "east": "false", @@ -100684,7 +94608,7 @@ } }, { - "id": 3297, + "id": 2529, "properties": { "age": "3", "east": "false", @@ -100695,7 +94619,7 @@ } }, { - "id": 3298, + "id": 2530, "properties": { "age": "3", "east": "false", @@ -100706,7 +94630,7 @@ } }, { - "id": 3299, + "id": 2531, "properties": { "age": "3", "east": "false", @@ -100717,7 +94641,7 @@ } }, { - "id": 3300, + "id": 2532, "properties": { "age": "3", "east": "false", @@ -100728,7 +94652,7 @@ } }, { - "id": 3301, + "id": 2533, "properties": { "age": "3", "east": "false", @@ -100739,7 +94663,7 @@ } }, { - "id": 3302, + "id": 2534, "properties": { "age": "4", "east": "true", @@ -100750,7 +94674,7 @@ } }, { - "id": 3303, + "id": 2535, "properties": { "age": "4", "east": "true", @@ -100761,7 +94685,7 @@ } }, { - "id": 3304, + "id": 2536, "properties": { "age": "4", "east": "true", @@ -100772,7 +94696,7 @@ } }, { - "id": 3305, + "id": 2537, "properties": { "age": "4", "east": "true", @@ -100783,7 +94707,7 @@ } }, { - "id": 3306, + "id": 2538, "properties": { "age": "4", "east": "true", @@ -100794,7 +94718,7 @@ } }, { - "id": 3307, + "id": 2539, "properties": { "age": "4", "east": "true", @@ -100805,7 +94729,7 @@ } }, { - "id": 3308, + "id": 2540, "properties": { "age": "4", "east": "true", @@ -100816,7 +94740,7 @@ } }, { - "id": 3309, + "id": 2541, "properties": { "age": "4", "east": "true", @@ -100827,7 +94751,7 @@ } }, { - "id": 3310, + "id": 2542, "properties": { "age": "4", "east": "true", @@ -100838,7 +94762,7 @@ } }, { - "id": 3311, + "id": 2543, "properties": { "age": "4", "east": "true", @@ -100849,7 +94773,7 @@ } }, { - "id": 3312, + "id": 2544, "properties": { "age": "4", "east": "true", @@ -100860,7 +94784,7 @@ } }, { - "id": 3313, + "id": 2545, "properties": { "age": "4", "east": "true", @@ -100871,7 +94795,7 @@ } }, { - "id": 3314, + "id": 2546, "properties": { "age": "4", "east": "true", @@ -100882,7 +94806,7 @@ } }, { - "id": 3315, + "id": 2547, "properties": { "age": "4", "east": "true", @@ -100893,7 +94817,7 @@ } }, { - "id": 3316, + "id": 2548, "properties": { "age": "4", "east": "true", @@ -100904,7 +94828,7 @@ } }, { - "id": 3317, + "id": 2549, "properties": { "age": "4", "east": "true", @@ -100915,7 +94839,7 @@ } }, { - "id": 3318, + "id": 2550, "properties": { "age": "4", "east": "false", @@ -100926,7 +94850,7 @@ } }, { - "id": 3319, + "id": 2551, "properties": { "age": "4", "east": "false", @@ -100937,7 +94861,7 @@ } }, { - "id": 3320, + "id": 2552, "properties": { "age": "4", "east": "false", @@ -100948,7 +94872,7 @@ } }, { - "id": 3321, + "id": 2553, "properties": { "age": "4", "east": "false", @@ -100959,7 +94883,7 @@ } }, { - "id": 3322, + "id": 2554, "properties": { "age": "4", "east": "false", @@ -100970,7 +94894,7 @@ } }, { - "id": 3323, + "id": 2555, "properties": { "age": "4", "east": "false", @@ -100981,7 +94905,7 @@ } }, { - "id": 3324, + "id": 2556, "properties": { "age": "4", "east": "false", @@ -100992,7 +94916,7 @@ } }, { - "id": 3325, + "id": 2557, "properties": { "age": "4", "east": "false", @@ -101003,7 +94927,7 @@ } }, { - "id": 3326, + "id": 2558, "properties": { "age": "4", "east": "false", @@ -101014,7 +94938,7 @@ } }, { - "id": 3327, + "id": 2559, "properties": { "age": "4", "east": "false", @@ -101025,7 +94949,7 @@ } }, { - "id": 3328, + "id": 2560, "properties": { "age": "4", "east": "false", @@ -101036,7 +94960,7 @@ } }, { - "id": 3329, + "id": 2561, "properties": { "age": "4", "east": "false", @@ -101047,7 +94971,7 @@ } }, { - "id": 3330, + "id": 2562, "properties": { "age": "4", "east": "false", @@ -101058,7 +94982,7 @@ } }, { - "id": 3331, + "id": 2563, "properties": { "age": "4", "east": "false", @@ -101069,7 +94993,7 @@ } }, { - "id": 3332, + "id": 2564, "properties": { "age": "4", "east": "false", @@ -101080,7 +95004,7 @@ } }, { - "id": 3333, + "id": 2565, "properties": { "age": "4", "east": "false", @@ -101091,7 +95015,7 @@ } }, { - "id": 3334, + "id": 2566, "properties": { "age": "5", "east": "true", @@ -101102,7 +95026,7 @@ } }, { - "id": 3335, + "id": 2567, "properties": { "age": "5", "east": "true", @@ -101113,7 +95037,7 @@ } }, { - "id": 3336, + "id": 2568, "properties": { "age": "5", "east": "true", @@ -101124,7 +95048,7 @@ } }, { - "id": 3337, + "id": 2569, "properties": { "age": "5", "east": "true", @@ -101135,7 +95059,7 @@ } }, { - "id": 3338, + "id": 2570, "properties": { "age": "5", "east": "true", @@ -101146,7 +95070,7 @@ } }, { - "id": 3339, + "id": 2571, "properties": { "age": "5", "east": "true", @@ -101157,7 +95081,7 @@ } }, { - "id": 3340, + "id": 2572, "properties": { "age": "5", "east": "true", @@ -101168,7 +95092,7 @@ } }, { - "id": 3341, + "id": 2573, "properties": { "age": "5", "east": "true", @@ -101179,7 +95103,7 @@ } }, { - "id": 3342, + "id": 2574, "properties": { "age": "5", "east": "true", @@ -101190,7 +95114,7 @@ } }, { - "id": 3343, + "id": 2575, "properties": { "age": "5", "east": "true", @@ -101201,7 +95125,7 @@ } }, { - "id": 3344, + "id": 2576, "properties": { "age": "5", "east": "true", @@ -101212,7 +95136,7 @@ } }, { - "id": 3345, + "id": 2577, "properties": { "age": "5", "east": "true", @@ -101223,7 +95147,7 @@ } }, { - "id": 3346, + "id": 2578, "properties": { "age": "5", "east": "true", @@ -101234,7 +95158,7 @@ } }, { - "id": 3347, + "id": 2579, "properties": { "age": "5", "east": "true", @@ -101245,7 +95169,7 @@ } }, { - "id": 3348, + "id": 2580, "properties": { "age": "5", "east": "true", @@ -101256,7 +95180,7 @@ } }, { - "id": 3349, + "id": 2581, "properties": { "age": "5", "east": "true", @@ -101267,7 +95191,7 @@ } }, { - "id": 3350, + "id": 2582, "properties": { "age": "5", "east": "false", @@ -101278,7 +95202,7 @@ } }, { - "id": 3351, + "id": 2583, "properties": { "age": "5", "east": "false", @@ -101289,7 +95213,7 @@ } }, { - "id": 3352, + "id": 2584, "properties": { "age": "5", "east": "false", @@ -101300,7 +95224,7 @@ } }, { - "id": 3353, + "id": 2585, "properties": { "age": "5", "east": "false", @@ -101311,7 +95235,7 @@ } }, { - "id": 3354, + "id": 2586, "properties": { "age": "5", "east": "false", @@ -101322,7 +95246,7 @@ } }, { - "id": 3355, + "id": 2587, "properties": { "age": "5", "east": "false", @@ -101333,7 +95257,7 @@ } }, { - "id": 3356, + "id": 2588, "properties": { "age": "5", "east": "false", @@ -101344,7 +95268,7 @@ } }, { - "id": 3357, + "id": 2589, "properties": { "age": "5", "east": "false", @@ -101355,7 +95279,7 @@ } }, { - "id": 3358, + "id": 2590, "properties": { "age": "5", "east": "false", @@ -101366,7 +95290,7 @@ } }, { - "id": 3359, + "id": 2591, "properties": { "age": "5", "east": "false", @@ -101377,7 +95301,7 @@ } }, { - "id": 3360, + "id": 2592, "properties": { "age": "5", "east": "false", @@ -101388,7 +95312,7 @@ } }, { - "id": 3361, + "id": 2593, "properties": { "age": "5", "east": "false", @@ -101399,7 +95323,7 @@ } }, { - "id": 3362, + "id": 2594, "properties": { "age": "5", "east": "false", @@ -101410,7 +95334,7 @@ } }, { - "id": 3363, + "id": 2595, "properties": { "age": "5", "east": "false", @@ -101421,7 +95345,7 @@ } }, { - "id": 3364, + "id": 2596, "properties": { "age": "5", "east": "false", @@ -101432,7 +95356,7 @@ } }, { - "id": 3365, + "id": 2597, "properties": { "age": "5", "east": "false", @@ -101443,7 +95367,7 @@ } }, { - "id": 3366, + "id": 2598, "properties": { "age": "6", "east": "true", @@ -101454,7 +95378,7 @@ } }, { - "id": 3367, + "id": 2599, "properties": { "age": "6", "east": "true", @@ -101465,7 +95389,7 @@ } }, { - "id": 3368, + "id": 2600, "properties": { "age": "6", "east": "true", @@ -101476,7 +95400,7 @@ } }, { - "id": 3369, + "id": 2601, "properties": { "age": "6", "east": "true", @@ -101487,7 +95411,7 @@ } }, { - "id": 3370, + "id": 2602, "properties": { "age": "6", "east": "true", @@ -101498,7 +95422,7 @@ } }, { - "id": 3371, + "id": 2603, "properties": { "age": "6", "east": "true", @@ -101509,7 +95433,7 @@ } }, { - "id": 3372, + "id": 2604, "properties": { "age": "6", "east": "true", @@ -101520,7 +95444,7 @@ } }, { - "id": 3373, + "id": 2605, "properties": { "age": "6", "east": "true", @@ -101531,7 +95455,7 @@ } }, { - "id": 3374, + "id": 2606, "properties": { "age": "6", "east": "true", @@ -101542,7 +95466,7 @@ } }, { - "id": 3375, + "id": 2607, "properties": { "age": "6", "east": "true", @@ -101553,7 +95477,7 @@ } }, { - "id": 3376, + "id": 2608, "properties": { "age": "6", "east": "true", @@ -101564,7 +95488,7 @@ } }, { - "id": 3377, + "id": 2609, "properties": { "age": "6", "east": "true", @@ -101575,7 +95499,7 @@ } }, { - "id": 3378, + "id": 2610, "properties": { "age": "6", "east": "true", @@ -101586,7 +95510,7 @@ } }, { - "id": 3379, + "id": 2611, "properties": { "age": "6", "east": "true", @@ -101597,7 +95521,7 @@ } }, { - "id": 3380, + "id": 2612, "properties": { "age": "6", "east": "true", @@ -101608,7 +95532,7 @@ } }, { - "id": 3381, + "id": 2613, "properties": { "age": "6", "east": "true", @@ -101619,7 +95543,7 @@ } }, { - "id": 3382, + "id": 2614, "properties": { "age": "6", "east": "false", @@ -101630,7 +95554,7 @@ } }, { - "id": 3383, + "id": 2615, "properties": { "age": "6", "east": "false", @@ -101641,7 +95565,7 @@ } }, { - "id": 3384, + "id": 2616, "properties": { "age": "6", "east": "false", @@ -101652,7 +95576,7 @@ } }, { - "id": 3385, + "id": 2617, "properties": { "age": "6", "east": "false", @@ -101663,7 +95587,7 @@ } }, { - "id": 3386, + "id": 2618, "properties": { "age": "6", "east": "false", @@ -101674,7 +95598,7 @@ } }, { - "id": 3387, + "id": 2619, "properties": { "age": "6", "east": "false", @@ -101685,7 +95609,7 @@ } }, { - "id": 3388, + "id": 2620, "properties": { "age": "6", "east": "false", @@ -101696,7 +95620,7 @@ } }, { - "id": 3389, + "id": 2621, "properties": { "age": "6", "east": "false", @@ -101707,7 +95631,7 @@ } }, { - "id": 3390, + "id": 2622, "properties": { "age": "6", "east": "false", @@ -101718,7 +95642,7 @@ } }, { - "id": 3391, + "id": 2623, "properties": { "age": "6", "east": "false", @@ -101729,7 +95653,7 @@ } }, { - "id": 3392, + "id": 2624, "properties": { "age": "6", "east": "false", @@ -101740,7 +95664,7 @@ } }, { - "id": 3393, + "id": 2625, "properties": { "age": "6", "east": "false", @@ -101751,7 +95675,7 @@ } }, { - "id": 3394, + "id": 2626, "properties": { "age": "6", "east": "false", @@ -101762,7 +95686,7 @@ } }, { - "id": 3395, + "id": 2627, "properties": { "age": "6", "east": "false", @@ -101773,7 +95697,7 @@ } }, { - "id": 3396, + "id": 2628, "properties": { "age": "6", "east": "false", @@ -101784,7 +95708,7 @@ } }, { - "id": 3397, + "id": 2629, "properties": { "age": "6", "east": "false", @@ -101795,7 +95719,7 @@ } }, { - "id": 3398, + "id": 2630, "properties": { "age": "7", "east": "true", @@ -101806,7 +95730,7 @@ } }, { - "id": 3399, + "id": 2631, "properties": { "age": "7", "east": "true", @@ -101817,7 +95741,7 @@ } }, { - "id": 3400, + "id": 2632, "properties": { "age": "7", "east": "true", @@ -101828,7 +95752,7 @@ } }, { - "id": 3401, + "id": 2633, "properties": { "age": "7", "east": "true", @@ -101839,7 +95763,7 @@ } }, { - "id": 3402, + "id": 2634, "properties": { "age": "7", "east": "true", @@ -101850,7 +95774,7 @@ } }, { - "id": 3403, + "id": 2635, "properties": { "age": "7", "east": "true", @@ -101861,7 +95785,7 @@ } }, { - "id": 3404, + "id": 2636, "properties": { "age": "7", "east": "true", @@ -101872,7 +95796,7 @@ } }, { - "id": 3405, + "id": 2637, "properties": { "age": "7", "east": "true", @@ -101883,7 +95807,7 @@ } }, { - "id": 3406, + "id": 2638, "properties": { "age": "7", "east": "true", @@ -101894,7 +95818,7 @@ } }, { - "id": 3407, + "id": 2639, "properties": { "age": "7", "east": "true", @@ -101905,7 +95829,7 @@ } }, { - "id": 3408, + "id": 2640, "properties": { "age": "7", "east": "true", @@ -101916,7 +95840,7 @@ } }, { - "id": 3409, + "id": 2641, "properties": { "age": "7", "east": "true", @@ -101927,7 +95851,7 @@ } }, { - "id": 3410, + "id": 2642, "properties": { "age": "7", "east": "true", @@ -101938,7 +95862,7 @@ } }, { - "id": 3411, + "id": 2643, "properties": { "age": "7", "east": "true", @@ -101949,7 +95873,7 @@ } }, { - "id": 3412, + "id": 2644, "properties": { "age": "7", "east": "true", @@ -101960,7 +95884,7 @@ } }, { - "id": 3413, + "id": 2645, "properties": { "age": "7", "east": "true", @@ -101971,7 +95895,7 @@ } }, { - "id": 3414, + "id": 2646, "properties": { "age": "7", "east": "false", @@ -101982,7 +95906,7 @@ } }, { - "id": 3415, + "id": 2647, "properties": { "age": "7", "east": "false", @@ -101993,7 +95917,7 @@ } }, { - "id": 3416, + "id": 2648, "properties": { "age": "7", "east": "false", @@ -102004,7 +95928,7 @@ } }, { - "id": 3417, + "id": 2649, "properties": { "age": "7", "east": "false", @@ -102015,7 +95939,7 @@ } }, { - "id": 3418, + "id": 2650, "properties": { "age": "7", "east": "false", @@ -102026,7 +95950,7 @@ } }, { - "id": 3419, + "id": 2651, "properties": { "age": "7", "east": "false", @@ -102037,7 +95961,7 @@ } }, { - "id": 3420, + "id": 2652, "properties": { "age": "7", "east": "false", @@ -102048,7 +95972,7 @@ } }, { - "id": 3421, + "id": 2653, "properties": { "age": "7", "east": "false", @@ -102059,7 +95983,7 @@ } }, { - "id": 3422, + "id": 2654, "properties": { "age": "7", "east": "false", @@ -102070,7 +95994,7 @@ } }, { - "id": 3423, + "id": 2655, "properties": { "age": "7", "east": "false", @@ -102081,7 +96005,7 @@ } }, { - "id": 3424, + "id": 2656, "properties": { "age": "7", "east": "false", @@ -102092,7 +96016,7 @@ } }, { - "id": 3425, + "id": 2657, "properties": { "age": "7", "east": "false", @@ -102103,7 +96027,7 @@ } }, { - "id": 3426, + "id": 2658, "properties": { "age": "7", "east": "false", @@ -102114,7 +96038,7 @@ } }, { - "id": 3427, + "id": 2659, "properties": { "age": "7", "east": "false", @@ -102125,7 +96049,7 @@ } }, { - "id": 3428, + "id": 2660, "properties": { "age": "7", "east": "false", @@ -102136,7 +96060,7 @@ } }, { - "id": 3429, + "id": 2661, "properties": { "age": "7", "east": "false", @@ -102147,7 +96071,7 @@ } }, { - "id": 3430, + "id": 2662, "properties": { "age": "8", "east": "true", @@ -102158,7 +96082,7 @@ } }, { - "id": 3431, + "id": 2663, "properties": { "age": "8", "east": "true", @@ -102169,7 +96093,7 @@ } }, { - "id": 3432, + "id": 2664, "properties": { "age": "8", "east": "true", @@ -102180,7 +96104,7 @@ } }, { - "id": 3433, + "id": 2665, "properties": { "age": "8", "east": "true", @@ -102191,7 +96115,7 @@ } }, { - "id": 3434, + "id": 2666, "properties": { "age": "8", "east": "true", @@ -102202,7 +96126,7 @@ } }, { - "id": 3435, + "id": 2667, "properties": { "age": "8", "east": "true", @@ -102213,7 +96137,7 @@ } }, { - "id": 3436, + "id": 2668, "properties": { "age": "8", "east": "true", @@ -102224,7 +96148,7 @@ } }, { - "id": 3437, + "id": 2669, "properties": { "age": "8", "east": "true", @@ -102235,7 +96159,7 @@ } }, { - "id": 3438, + "id": 2670, "properties": { "age": "8", "east": "true", @@ -102246,7 +96170,7 @@ } }, { - "id": 3439, + "id": 2671, "properties": { "age": "8", "east": "true", @@ -102257,7 +96181,7 @@ } }, { - "id": 3440, + "id": 2672, "properties": { "age": "8", "east": "true", @@ -102268,7 +96192,7 @@ } }, { - "id": 3441, + "id": 2673, "properties": { "age": "8", "east": "true", @@ -102279,7 +96203,7 @@ } }, { - "id": 3442, + "id": 2674, "properties": { "age": "8", "east": "true", @@ -102290,7 +96214,7 @@ } }, { - "id": 3443, + "id": 2675, "properties": { "age": "8", "east": "true", @@ -102301,7 +96225,7 @@ } }, { - "id": 3444, + "id": 2676, "properties": { "age": "8", "east": "true", @@ -102312,7 +96236,7 @@ } }, { - "id": 3445, + "id": 2677, "properties": { "age": "8", "east": "true", @@ -102323,7 +96247,7 @@ } }, { - "id": 3446, + "id": 2678, "properties": { "age": "8", "east": "false", @@ -102334,7 +96258,7 @@ } }, { - "id": 3447, + "id": 2679, "properties": { "age": "8", "east": "false", @@ -102345,7 +96269,7 @@ } }, { - "id": 3448, + "id": 2680, "properties": { "age": "8", "east": "false", @@ -102356,7 +96280,7 @@ } }, { - "id": 3449, + "id": 2681, "properties": { "age": "8", "east": "false", @@ -102367,7 +96291,7 @@ } }, { - "id": 3450, + "id": 2682, "properties": { "age": "8", "east": "false", @@ -102378,7 +96302,7 @@ } }, { - "id": 3451, + "id": 2683, "properties": { "age": "8", "east": "false", @@ -102389,7 +96313,7 @@ } }, { - "id": 3452, + "id": 2684, "properties": { "age": "8", "east": "false", @@ -102400,7 +96324,7 @@ } }, { - "id": 3453, + "id": 2685, "properties": { "age": "8", "east": "false", @@ -102411,7 +96335,7 @@ } }, { - "id": 3454, + "id": 2686, "properties": { "age": "8", "east": "false", @@ -102422,7 +96346,7 @@ } }, { - "id": 3455, + "id": 2687, "properties": { "age": "8", "east": "false", @@ -102433,7 +96357,7 @@ } }, { - "id": 3456, + "id": 2688, "properties": { "age": "8", "east": "false", @@ -102444,7 +96368,7 @@ } }, { - "id": 3457, + "id": 2689, "properties": { "age": "8", "east": "false", @@ -102455,7 +96379,7 @@ } }, { - "id": 3458, + "id": 2690, "properties": { "age": "8", "east": "false", @@ -102466,7 +96390,7 @@ } }, { - "id": 3459, + "id": 2691, "properties": { "age": "8", "east": "false", @@ -102477,7 +96401,7 @@ } }, { - "id": 3460, + "id": 2692, "properties": { "age": "8", "east": "false", @@ -102488,7 +96412,7 @@ } }, { - "id": 3461, + "id": 2693, "properties": { "age": "8", "east": "false", @@ -102499,7 +96423,7 @@ } }, { - "id": 3462, + "id": 2694, "properties": { "age": "9", "east": "true", @@ -102510,7 +96434,7 @@ } }, { - "id": 3463, + "id": 2695, "properties": { "age": "9", "east": "true", @@ -102521,7 +96445,7 @@ } }, { - "id": 3464, + "id": 2696, "properties": { "age": "9", "east": "true", @@ -102532,7 +96456,7 @@ } }, { - "id": 3465, + "id": 2697, "properties": { "age": "9", "east": "true", @@ -102543,7 +96467,7 @@ } }, { - "id": 3466, + "id": 2698, "properties": { "age": "9", "east": "true", @@ -102554,7 +96478,7 @@ } }, { - "id": 3467, + "id": 2699, "properties": { "age": "9", "east": "true", @@ -102565,7 +96489,7 @@ } }, { - "id": 3468, + "id": 2700, "properties": { "age": "9", "east": "true", @@ -102576,7 +96500,7 @@ } }, { - "id": 3469, + "id": 2701, "properties": { "age": "9", "east": "true", @@ -102587,7 +96511,7 @@ } }, { - "id": 3470, + "id": 2702, "properties": { "age": "9", "east": "true", @@ -102598,7 +96522,7 @@ } }, { - "id": 3471, + "id": 2703, "properties": { "age": "9", "east": "true", @@ -102609,7 +96533,7 @@ } }, { - "id": 3472, + "id": 2704, "properties": { "age": "9", "east": "true", @@ -102620,7 +96544,7 @@ } }, { - "id": 3473, + "id": 2705, "properties": { "age": "9", "east": "true", @@ -102631,7 +96555,7 @@ } }, { - "id": 3474, + "id": 2706, "properties": { "age": "9", "east": "true", @@ -102642,7 +96566,7 @@ } }, { - "id": 3475, + "id": 2707, "properties": { "age": "9", "east": "true", @@ -102653,7 +96577,7 @@ } }, { - "id": 3476, + "id": 2708, "properties": { "age": "9", "east": "true", @@ -102664,7 +96588,7 @@ } }, { - "id": 3477, + "id": 2709, "properties": { "age": "9", "east": "true", @@ -102675,7 +96599,7 @@ } }, { - "id": 3478, + "id": 2710, "properties": { "age": "9", "east": "false", @@ -102686,7 +96610,7 @@ } }, { - "id": 3479, + "id": 2711, "properties": { "age": "9", "east": "false", @@ -102697,7 +96621,7 @@ } }, { - "id": 3480, + "id": 2712, "properties": { "age": "9", "east": "false", @@ -102708,7 +96632,7 @@ } }, { - "id": 3481, + "id": 2713, "properties": { "age": "9", "east": "false", @@ -102719,7 +96643,7 @@ } }, { - "id": 3482, + "id": 2714, "properties": { "age": "9", "east": "false", @@ -102730,7 +96654,7 @@ } }, { - "id": 3483, + "id": 2715, "properties": { "age": "9", "east": "false", @@ -102741,7 +96665,7 @@ } }, { - "id": 3484, + "id": 2716, "properties": { "age": "9", "east": "false", @@ -102752,7 +96676,7 @@ } }, { - "id": 3485, + "id": 2717, "properties": { "age": "9", "east": "false", @@ -102763,7 +96687,7 @@ } }, { - "id": 3486, + "id": 2718, "properties": { "age": "9", "east": "false", @@ -102774,7 +96698,7 @@ } }, { - "id": 3487, + "id": 2719, "properties": { "age": "9", "east": "false", @@ -102785,7 +96709,7 @@ } }, { - "id": 3488, + "id": 2720, "properties": { "age": "9", "east": "false", @@ -102796,7 +96720,7 @@ } }, { - "id": 3489, + "id": 2721, "properties": { "age": "9", "east": "false", @@ -102807,7 +96731,7 @@ } }, { - "id": 3490, + "id": 2722, "properties": { "age": "9", "east": "false", @@ -102818,7 +96742,7 @@ } }, { - "id": 3491, + "id": 2723, "properties": { "age": "9", "east": "false", @@ -102829,7 +96753,7 @@ } }, { - "id": 3492, + "id": 2724, "properties": { "age": "9", "east": "false", @@ -102840,7 +96764,7 @@ } }, { - "id": 3493, + "id": 2725, "properties": { "age": "9", "east": "false", @@ -102851,7 +96775,7 @@ } }, { - "id": 3494, + "id": 2726, "properties": { "age": "10", "east": "true", @@ -102862,7 +96786,7 @@ } }, { - "id": 3495, + "id": 2727, "properties": { "age": "10", "east": "true", @@ -102873,7 +96797,7 @@ } }, { - "id": 3496, + "id": 2728, "properties": { "age": "10", "east": "true", @@ -102884,7 +96808,7 @@ } }, { - "id": 3497, + "id": 2729, "properties": { "age": "10", "east": "true", @@ -102895,7 +96819,7 @@ } }, { - "id": 3498, + "id": 2730, "properties": { "age": "10", "east": "true", @@ -102906,7 +96830,7 @@ } }, { - "id": 3499, + "id": 2731, "properties": { "age": "10", "east": "true", @@ -102917,7 +96841,7 @@ } }, { - "id": 3500, + "id": 2732, "properties": { "age": "10", "east": "true", @@ -102928,7 +96852,7 @@ } }, { - "id": 3501, + "id": 2733, "properties": { "age": "10", "east": "true", @@ -102939,7 +96863,7 @@ } }, { - "id": 3502, + "id": 2734, "properties": { "age": "10", "east": "true", @@ -102950,7 +96874,7 @@ } }, { - "id": 3503, + "id": 2735, "properties": { "age": "10", "east": "true", @@ -102961,7 +96885,7 @@ } }, { - "id": 3504, + "id": 2736, "properties": { "age": "10", "east": "true", @@ -102972,7 +96896,7 @@ } }, { - "id": 3505, + "id": 2737, "properties": { "age": "10", "east": "true", @@ -102983,7 +96907,7 @@ } }, { - "id": 3506, + "id": 2738, "properties": { "age": "10", "east": "true", @@ -102994,7 +96918,7 @@ } }, { - "id": 3507, + "id": 2739, "properties": { "age": "10", "east": "true", @@ -103005,7 +96929,7 @@ } }, { - "id": 3508, + "id": 2740, "properties": { "age": "10", "east": "true", @@ -103016,7 +96940,7 @@ } }, { - "id": 3509, + "id": 2741, "properties": { "age": "10", "east": "true", @@ -103027,7 +96951,7 @@ } }, { - "id": 3510, + "id": 2742, "properties": { "age": "10", "east": "false", @@ -103038,7 +96962,7 @@ } }, { - "id": 3511, + "id": 2743, "properties": { "age": "10", "east": "false", @@ -103049,7 +96973,7 @@ } }, { - "id": 3512, + "id": 2744, "properties": { "age": "10", "east": "false", @@ -103060,7 +96984,7 @@ } }, { - "id": 3513, + "id": 2745, "properties": { "age": "10", "east": "false", @@ -103071,7 +96995,7 @@ } }, { - "id": 3514, + "id": 2746, "properties": { "age": "10", "east": "false", @@ -103082,7 +97006,7 @@ } }, { - "id": 3515, + "id": 2747, "properties": { "age": "10", "east": "false", @@ -103093,7 +97017,7 @@ } }, { - "id": 3516, + "id": 2748, "properties": { "age": "10", "east": "false", @@ -103104,7 +97028,7 @@ } }, { - "id": 3517, + "id": 2749, "properties": { "age": "10", "east": "false", @@ -103115,7 +97039,7 @@ } }, { - "id": 3518, + "id": 2750, "properties": { "age": "10", "east": "false", @@ -103126,7 +97050,7 @@ } }, { - "id": 3519, + "id": 2751, "properties": { "age": "10", "east": "false", @@ -103137,7 +97061,7 @@ } }, { - "id": 3520, + "id": 2752, "properties": { "age": "10", "east": "false", @@ -103148,7 +97072,7 @@ } }, { - "id": 3521, + "id": 2753, "properties": { "age": "10", "east": "false", @@ -103159,7 +97083,7 @@ } }, { - "id": 3522, + "id": 2754, "properties": { "age": "10", "east": "false", @@ -103170,7 +97094,7 @@ } }, { - "id": 3523, + "id": 2755, "properties": { "age": "10", "east": "false", @@ -103181,7 +97105,7 @@ } }, { - "id": 3524, + "id": 2756, "properties": { "age": "10", "east": "false", @@ -103192,7 +97116,7 @@ } }, { - "id": 3525, + "id": 2757, "properties": { "age": "10", "east": "false", @@ -103203,7 +97127,7 @@ } }, { - "id": 3526, + "id": 2758, "properties": { "age": "11", "east": "true", @@ -103214,7 +97138,7 @@ } }, { - "id": 3527, + "id": 2759, "properties": { "age": "11", "east": "true", @@ -103225,7 +97149,7 @@ } }, { - "id": 3528, + "id": 2760, "properties": { "age": "11", "east": "true", @@ -103236,7 +97160,7 @@ } }, { - "id": 3529, + "id": 2761, "properties": { "age": "11", "east": "true", @@ -103247,7 +97171,7 @@ } }, { - "id": 3530, + "id": 2762, "properties": { "age": "11", "east": "true", @@ -103258,7 +97182,7 @@ } }, { - "id": 3531, + "id": 2763, "properties": { "age": "11", "east": "true", @@ -103269,7 +97193,7 @@ } }, { - "id": 3532, + "id": 2764, "properties": { "age": "11", "east": "true", @@ -103280,7 +97204,7 @@ } }, { - "id": 3533, + "id": 2765, "properties": { "age": "11", "east": "true", @@ -103291,7 +97215,7 @@ } }, { - "id": 3534, + "id": 2766, "properties": { "age": "11", "east": "true", @@ -103302,7 +97226,7 @@ } }, { - "id": 3535, + "id": 2767, "properties": { "age": "11", "east": "true", @@ -103313,7 +97237,7 @@ } }, { - "id": 3536, + "id": 2768, "properties": { "age": "11", "east": "true", @@ -103324,7 +97248,7 @@ } }, { - "id": 3537, + "id": 2769, "properties": { "age": "11", "east": "true", @@ -103335,7 +97259,7 @@ } }, { - "id": 3538, + "id": 2770, "properties": { "age": "11", "east": "true", @@ -103346,7 +97270,7 @@ } }, { - "id": 3539, + "id": 2771, "properties": { "age": "11", "east": "true", @@ -103357,7 +97281,7 @@ } }, { - "id": 3540, + "id": 2772, "properties": { "age": "11", "east": "true", @@ -103368,7 +97292,7 @@ } }, { - "id": 3541, + "id": 2773, "properties": { "age": "11", "east": "true", @@ -103379,7 +97303,7 @@ } }, { - "id": 3542, + "id": 2774, "properties": { "age": "11", "east": "false", @@ -103390,7 +97314,7 @@ } }, { - "id": 3543, + "id": 2775, "properties": { "age": "11", "east": "false", @@ -103401,7 +97325,7 @@ } }, { - "id": 3544, + "id": 2776, "properties": { "age": "11", "east": "false", @@ -103412,7 +97336,7 @@ } }, { - "id": 3545, + "id": 2777, "properties": { "age": "11", "east": "false", @@ -103423,7 +97347,7 @@ } }, { - "id": 3546, + "id": 2778, "properties": { "age": "11", "east": "false", @@ -103434,7 +97358,7 @@ } }, { - "id": 3547, + "id": 2779, "properties": { "age": "11", "east": "false", @@ -103445,7 +97369,7 @@ } }, { - "id": 3548, + "id": 2780, "properties": { "age": "11", "east": "false", @@ -103456,7 +97380,7 @@ } }, { - "id": 3549, + "id": 2781, "properties": { "age": "11", "east": "false", @@ -103467,7 +97391,7 @@ } }, { - "id": 3550, + "id": 2782, "properties": { "age": "11", "east": "false", @@ -103478,7 +97402,7 @@ } }, { - "id": 3551, + "id": 2783, "properties": { "age": "11", "east": "false", @@ -103489,7 +97413,7 @@ } }, { - "id": 3552, + "id": 2784, "properties": { "age": "11", "east": "false", @@ -103500,7 +97424,7 @@ } }, { - "id": 3553, + "id": 2785, "properties": { "age": "11", "east": "false", @@ -103511,7 +97435,7 @@ } }, { - "id": 3554, + "id": 2786, "properties": { "age": "11", "east": "false", @@ -103522,7 +97446,7 @@ } }, { - "id": 3555, + "id": 2787, "properties": { "age": "11", "east": "false", @@ -103533,7 +97457,7 @@ } }, { - "id": 3556, + "id": 2788, "properties": { "age": "11", "east": "false", @@ -103544,7 +97468,7 @@ } }, { - "id": 3557, + "id": 2789, "properties": { "age": "11", "east": "false", @@ -103555,7 +97479,7 @@ } }, { - "id": 3558, + "id": 2790, "properties": { "age": "12", "east": "true", @@ -103566,7 +97490,7 @@ } }, { - "id": 3559, + "id": 2791, "properties": { "age": "12", "east": "true", @@ -103577,7 +97501,7 @@ } }, { - "id": 3560, + "id": 2792, "properties": { "age": "12", "east": "true", @@ -103588,7 +97512,7 @@ } }, { - "id": 3561, + "id": 2793, "properties": { "age": "12", "east": "true", @@ -103599,7 +97523,7 @@ } }, { - "id": 3562, + "id": 2794, "properties": { "age": "12", "east": "true", @@ -103610,7 +97534,7 @@ } }, { - "id": 3563, + "id": 2795, "properties": { "age": "12", "east": "true", @@ -103621,7 +97545,7 @@ } }, { - "id": 3564, + "id": 2796, "properties": { "age": "12", "east": "true", @@ -103632,7 +97556,7 @@ } }, { - "id": 3565, + "id": 2797, "properties": { "age": "12", "east": "true", @@ -103643,7 +97567,7 @@ } }, { - "id": 3566, + "id": 2798, "properties": { "age": "12", "east": "true", @@ -103654,7 +97578,7 @@ } }, { - "id": 3567, + "id": 2799, "properties": { "age": "12", "east": "true", @@ -103665,7 +97589,7 @@ } }, { - "id": 3568, + "id": 2800, "properties": { "age": "12", "east": "true", @@ -103676,7 +97600,7 @@ } }, { - "id": 3569, + "id": 2801, "properties": { "age": "12", "east": "true", @@ -103687,7 +97611,7 @@ } }, { - "id": 3570, + "id": 2802, "properties": { "age": "12", "east": "true", @@ -103698,7 +97622,7 @@ } }, { - "id": 3571, + "id": 2803, "properties": { "age": "12", "east": "true", @@ -103709,7 +97633,7 @@ } }, { - "id": 3572, + "id": 2804, "properties": { "age": "12", "east": "true", @@ -103720,7 +97644,7 @@ } }, { - "id": 3573, + "id": 2805, "properties": { "age": "12", "east": "true", @@ -103731,7 +97655,7 @@ } }, { - "id": 3574, + "id": 2806, "properties": { "age": "12", "east": "false", @@ -103742,7 +97666,7 @@ } }, { - "id": 3575, + "id": 2807, "properties": { "age": "12", "east": "false", @@ -103753,7 +97677,7 @@ } }, { - "id": 3576, + "id": 2808, "properties": { "age": "12", "east": "false", @@ -103764,7 +97688,7 @@ } }, { - "id": 3577, + "id": 2809, "properties": { "age": "12", "east": "false", @@ -103775,7 +97699,7 @@ } }, { - "id": 3578, + "id": 2810, "properties": { "age": "12", "east": "false", @@ -103786,7 +97710,7 @@ } }, { - "id": 3579, + "id": 2811, "properties": { "age": "12", "east": "false", @@ -103797,7 +97721,7 @@ } }, { - "id": 3580, + "id": 2812, "properties": { "age": "12", "east": "false", @@ -103808,7 +97732,7 @@ } }, { - "id": 3581, + "id": 2813, "properties": { "age": "12", "east": "false", @@ -103819,7 +97743,7 @@ } }, { - "id": 3582, + "id": 2814, "properties": { "age": "12", "east": "false", @@ -103830,7 +97754,7 @@ } }, { - "id": 3583, + "id": 2815, "properties": { "age": "12", "east": "false", @@ -103841,7 +97765,7 @@ } }, { - "id": 3584, + "id": 2816, "properties": { "age": "12", "east": "false", @@ -103852,7 +97776,7 @@ } }, { - "id": 3585, + "id": 2817, "properties": { "age": "12", "east": "false", @@ -103863,7 +97787,7 @@ } }, { - "id": 3586, + "id": 2818, "properties": { "age": "12", "east": "false", @@ -103874,7 +97798,7 @@ } }, { - "id": 3587, + "id": 2819, "properties": { "age": "12", "east": "false", @@ -103885,7 +97809,7 @@ } }, { - "id": 3588, + "id": 2820, "properties": { "age": "12", "east": "false", @@ -103896,7 +97820,7 @@ } }, { - "id": 3589, + "id": 2821, "properties": { "age": "12", "east": "false", @@ -103907,7 +97831,7 @@ } }, { - "id": 3590, + "id": 2822, "properties": { "age": "13", "east": "true", @@ -103918,7 +97842,7 @@ } }, { - "id": 3591, + "id": 2823, "properties": { "age": "13", "east": "true", @@ -103929,7 +97853,7 @@ } }, { - "id": 3592, + "id": 2824, "properties": { "age": "13", "east": "true", @@ -103940,7 +97864,7 @@ } }, { - "id": 3593, + "id": 2825, "properties": { "age": "13", "east": "true", @@ -103951,7 +97875,7 @@ } }, { - "id": 3594, + "id": 2826, "properties": { "age": "13", "east": "true", @@ -103962,7 +97886,7 @@ } }, { - "id": 3595, + "id": 2827, "properties": { "age": "13", "east": "true", @@ -103973,7 +97897,7 @@ } }, { - "id": 3596, + "id": 2828, "properties": { "age": "13", "east": "true", @@ -103984,7 +97908,7 @@ } }, { - "id": 3597, + "id": 2829, "properties": { "age": "13", "east": "true", @@ -103995,7 +97919,7 @@ } }, { - "id": 3598, + "id": 2830, "properties": { "age": "13", "east": "true", @@ -104006,7 +97930,7 @@ } }, { - "id": 3599, + "id": 2831, "properties": { "age": "13", "east": "true", @@ -104017,7 +97941,7 @@ } }, { - "id": 3600, + "id": 2832, "properties": { "age": "13", "east": "true", @@ -104028,7 +97952,7 @@ } }, { - "id": 3601, + "id": 2833, "properties": { "age": "13", "east": "true", @@ -104039,7 +97963,7 @@ } }, { - "id": 3602, + "id": 2834, "properties": { "age": "13", "east": "true", @@ -104050,7 +97974,7 @@ } }, { - "id": 3603, + "id": 2835, "properties": { "age": "13", "east": "true", @@ -104061,7 +97985,7 @@ } }, { - "id": 3604, + "id": 2836, "properties": { "age": "13", "east": "true", @@ -104072,7 +97996,7 @@ } }, { - "id": 3605, + "id": 2837, "properties": { "age": "13", "east": "true", @@ -104083,7 +98007,7 @@ } }, { - "id": 3606, + "id": 2838, "properties": { "age": "13", "east": "false", @@ -104094,7 +98018,7 @@ } }, { - "id": 3607, + "id": 2839, "properties": { "age": "13", "east": "false", @@ -104105,7 +98029,7 @@ } }, { - "id": 3608, + "id": 2840, "properties": { "age": "13", "east": "false", @@ -104116,7 +98040,7 @@ } }, { - "id": 3609, + "id": 2841, "properties": { "age": "13", "east": "false", @@ -104127,7 +98051,7 @@ } }, { - "id": 3610, + "id": 2842, "properties": { "age": "13", "east": "false", @@ -104138,7 +98062,7 @@ } }, { - "id": 3611, + "id": 2843, "properties": { "age": "13", "east": "false", @@ -104149,7 +98073,7 @@ } }, { - "id": 3612, + "id": 2844, "properties": { "age": "13", "east": "false", @@ -104160,7 +98084,7 @@ } }, { - "id": 3613, + "id": 2845, "properties": { "age": "13", "east": "false", @@ -104171,7 +98095,7 @@ } }, { - "id": 3614, + "id": 2846, "properties": { "age": "13", "east": "false", @@ -104182,7 +98106,7 @@ } }, { - "id": 3615, + "id": 2847, "properties": { "age": "13", "east": "false", @@ -104193,7 +98117,7 @@ } }, { - "id": 3616, + "id": 2848, "properties": { "age": "13", "east": "false", @@ -104204,7 +98128,7 @@ } }, { - "id": 3617, + "id": 2849, "properties": { "age": "13", "east": "false", @@ -104215,7 +98139,7 @@ } }, { - "id": 3618, + "id": 2850, "properties": { "age": "13", "east": "false", @@ -104226,7 +98150,7 @@ } }, { - "id": 3619, + "id": 2851, "properties": { "age": "13", "east": "false", @@ -104237,7 +98161,7 @@ } }, { - "id": 3620, + "id": 2852, "properties": { "age": "13", "east": "false", @@ -104248,7 +98172,7 @@ } }, { - "id": 3621, + "id": 2853, "properties": { "age": "13", "east": "false", @@ -104259,7 +98183,7 @@ } }, { - "id": 3622, + "id": 2854, "properties": { "age": "14", "east": "true", @@ -104270,7 +98194,7 @@ } }, { - "id": 3623, + "id": 2855, "properties": { "age": "14", "east": "true", @@ -104281,7 +98205,7 @@ } }, { - "id": 3624, + "id": 2856, "properties": { "age": "14", "east": "true", @@ -104292,7 +98216,7 @@ } }, { - "id": 3625, + "id": 2857, "properties": { "age": "14", "east": "true", @@ -104303,7 +98227,7 @@ } }, { - "id": 3626, + "id": 2858, "properties": { "age": "14", "east": "true", @@ -104314,7 +98238,7 @@ } }, { - "id": 3627, + "id": 2859, "properties": { "age": "14", "east": "true", @@ -104325,7 +98249,7 @@ } }, { - "id": 3628, + "id": 2860, "properties": { "age": "14", "east": "true", @@ -104336,7 +98260,7 @@ } }, { - "id": 3629, + "id": 2861, "properties": { "age": "14", "east": "true", @@ -104347,7 +98271,7 @@ } }, { - "id": 3630, + "id": 2862, "properties": { "age": "14", "east": "true", @@ -104358,7 +98282,7 @@ } }, { - "id": 3631, + "id": 2863, "properties": { "age": "14", "east": "true", @@ -104369,7 +98293,7 @@ } }, { - "id": 3632, + "id": 2864, "properties": { "age": "14", "east": "true", @@ -104380,7 +98304,7 @@ } }, { - "id": 3633, + "id": 2865, "properties": { "age": "14", "east": "true", @@ -104391,7 +98315,7 @@ } }, { - "id": 3634, + "id": 2866, "properties": { "age": "14", "east": "true", @@ -104402,7 +98326,7 @@ } }, { - "id": 3635, + "id": 2867, "properties": { "age": "14", "east": "true", @@ -104413,7 +98337,7 @@ } }, { - "id": 3636, + "id": 2868, "properties": { "age": "14", "east": "true", @@ -104424,7 +98348,7 @@ } }, { - "id": 3637, + "id": 2869, "properties": { "age": "14", "east": "true", @@ -104435,7 +98359,7 @@ } }, { - "id": 3638, + "id": 2870, "properties": { "age": "14", "east": "false", @@ -104446,7 +98370,7 @@ } }, { - "id": 3639, + "id": 2871, "properties": { "age": "14", "east": "false", @@ -104457,7 +98381,7 @@ } }, { - "id": 3640, + "id": 2872, "properties": { "age": "14", "east": "false", @@ -104468,7 +98392,7 @@ } }, { - "id": 3641, + "id": 2873, "properties": { "age": "14", "east": "false", @@ -104479,7 +98403,7 @@ } }, { - "id": 3642, + "id": 2874, "properties": { "age": "14", "east": "false", @@ -104490,7 +98414,7 @@ } }, { - "id": 3643, + "id": 2875, "properties": { "age": "14", "east": "false", @@ -104501,7 +98425,7 @@ } }, { - "id": 3644, + "id": 2876, "properties": { "age": "14", "east": "false", @@ -104512,7 +98436,7 @@ } }, { - "id": 3645, + "id": 2877, "properties": { "age": "14", "east": "false", @@ -104523,7 +98447,7 @@ } }, { - "id": 3646, + "id": 2878, "properties": { "age": "14", "east": "false", @@ -104534,7 +98458,7 @@ } }, { - "id": 3647, + "id": 2879, "properties": { "age": "14", "east": "false", @@ -104545,7 +98469,7 @@ } }, { - "id": 3648, + "id": 2880, "properties": { "age": "14", "east": "false", @@ -104556,7 +98480,7 @@ } }, { - "id": 3649, + "id": 2881, "properties": { "age": "14", "east": "false", @@ -104567,7 +98491,7 @@ } }, { - "id": 3650, + "id": 2882, "properties": { "age": "14", "east": "false", @@ -104578,7 +98502,7 @@ } }, { - "id": 3651, + "id": 2883, "properties": { "age": "14", "east": "false", @@ -104589,7 +98513,7 @@ } }, { - "id": 3652, + "id": 2884, "properties": { "age": "14", "east": "false", @@ -104600,7 +98524,7 @@ } }, { - "id": 3653, + "id": 2885, "properties": { "age": "14", "east": "false", @@ -104611,7 +98535,7 @@ } }, { - "id": 3654, + "id": 2886, "properties": { "age": "15", "east": "true", @@ -104622,7 +98546,7 @@ } }, { - "id": 3655, + "id": 2887, "properties": { "age": "15", "east": "true", @@ -104633,7 +98557,7 @@ } }, { - "id": 3656, + "id": 2888, "properties": { "age": "15", "east": "true", @@ -104644,7 +98568,7 @@ } }, { - "id": 3657, + "id": 2889, "properties": { "age": "15", "east": "true", @@ -104655,7 +98579,7 @@ } }, { - "id": 3658, + "id": 2890, "properties": { "age": "15", "east": "true", @@ -104666,7 +98590,7 @@ } }, { - "id": 3659, + "id": 2891, "properties": { "age": "15", "east": "true", @@ -104677,7 +98601,7 @@ } }, { - "id": 3660, + "id": 2892, "properties": { "age": "15", "east": "true", @@ -104688,7 +98612,7 @@ } }, { - "id": 3661, + "id": 2893, "properties": { "age": "15", "east": "true", @@ -104699,7 +98623,7 @@ } }, { - "id": 3662, + "id": 2894, "properties": { "age": "15", "east": "true", @@ -104710,7 +98634,7 @@ } }, { - "id": 3663, + "id": 2895, "properties": { "age": "15", "east": "true", @@ -104721,7 +98645,7 @@ } }, { - "id": 3664, + "id": 2896, "properties": { "age": "15", "east": "true", @@ -104732,7 +98656,7 @@ } }, { - "id": 3665, + "id": 2897, "properties": { "age": "15", "east": "true", @@ -104743,7 +98667,7 @@ } }, { - "id": 3666, + "id": 2898, "properties": { "age": "15", "east": "true", @@ -104754,7 +98678,7 @@ } }, { - "id": 3667, + "id": 2899, "properties": { "age": "15", "east": "true", @@ -104765,7 +98689,7 @@ } }, { - "id": 3668, + "id": 2900, "properties": { "age": "15", "east": "true", @@ -104776,7 +98700,7 @@ } }, { - "id": 3669, + "id": 2901, "properties": { "age": "15", "east": "true", @@ -104787,7 +98711,7 @@ } }, { - "id": 3670, + "id": 2902, "properties": { "age": "15", "east": "false", @@ -104798,7 +98722,7 @@ } }, { - "id": 3671, + "id": 2903, "properties": { "age": "15", "east": "false", @@ -104809,7 +98733,7 @@ } }, { - "id": 3672, + "id": 2904, "properties": { "age": "15", "east": "false", @@ -104820,7 +98744,7 @@ } }, { - "id": 3673, + "id": 2905, "properties": { "age": "15", "east": "false", @@ -104831,7 +98755,7 @@ } }, { - "id": 3674, + "id": 2906, "properties": { "age": "15", "east": "false", @@ -104842,7 +98766,7 @@ } }, { - "id": 3675, + "id": 2907, "properties": { "age": "15", "east": "false", @@ -104853,7 +98777,7 @@ } }, { - "id": 3676, + "id": 2908, "properties": { "age": "15", "east": "false", @@ -104864,7 +98788,7 @@ } }, { - "id": 3677, + "id": 2909, "properties": { "age": "15", "east": "false", @@ -104875,7 +98799,7 @@ } }, { - "id": 3678, + "id": 2910, "properties": { "age": "15", "east": "false", @@ -104886,7 +98810,7 @@ } }, { - "id": 3679, + "id": 2911, "properties": { "age": "15", "east": "false", @@ -104897,7 +98821,7 @@ } }, { - "id": 3680, + "id": 2912, "properties": { "age": "15", "east": "false", @@ -104908,7 +98832,7 @@ } }, { - "id": 3681, + "id": 2913, "properties": { "age": "15", "east": "false", @@ -104919,7 +98843,7 @@ } }, { - "id": 3682, + "id": 2914, "properties": { "age": "15", "east": "false", @@ -104930,7 +98854,7 @@ } }, { - "id": 3683, + "id": 2915, "properties": { "age": "15", "east": "false", @@ -104941,7 +98865,7 @@ } }, { - "id": 3684, + "id": 2916, "properties": { "age": "15", "east": "false", @@ -104952,7 +98876,7 @@ } }, { - "id": 3685, + "id": 2917, "properties": { "age": "15", "east": "false", @@ -104979,13 +98903,13 @@ "states": [ { "default": true, - "id": 14961, + "id": 13852, "properties": { "waterlogged": "true" } }, { - "id": 14962, + "id": 13853, "properties": { "waterlogged": "false" } @@ -105001,7 +98925,7 @@ "states": [ { "default": true, - "id": 14943 + "id": 13834 } ] }, @@ -105020,13 +98944,13 @@ "states": [ { "default": true, - "id": 14981, + "id": 13872, "properties": { "waterlogged": "true" } }, { - "id": 14982, + "id": 13873, "properties": { "waterlogged": "false" } @@ -105054,56 +98978,56 @@ "states": [ { "default": true, - "id": 15049, + "id": 13940, "properties": { "facing": "north", "waterlogged": "true" } }, { - "id": 15050, + "id": 13941, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 15051, + "id": 13942, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 15052, + "id": 13943, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 15053, + "id": 13944, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 15054, + "id": 13945, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 15055, + "id": 13946, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 15056, + "id": 13947, "properties": { "facing": "east", "waterlogged": "false" @@ -105119,19 +99043,19 @@ "states": [ { "default": true, - "id": 29670 + "id": 27913 } ] }, "minecraft:fletching_table": { "definition": { - "type": "minecraft:block", + "type": "minecraft:fletching_table", "properties": {} }, "states": [ { "default": true, - "id": 20569 + "id": 19460 } ] }, @@ -105144,7 +99068,7 @@ "states": [ { "default": true, - "id": 10428 + "id": 9351 } ] }, @@ -105156,7 +99080,7 @@ "states": [ { "default": true, - "id": 27610 + "id": 25853 } ] }, @@ -105425,7 +99349,7 @@ "states": [ { "default": true, - "id": 29389 + "id": 27632 } ] }, @@ -105445,25 +99369,25 @@ "states": [ { "default": true, - "id": 14639, + "id": 13562, "properties": { "age": "0" } }, { - "id": 14640, + "id": 13563, "properties": { "age": "1" } }, { - "id": 14641, + "id": 13564, "properties": { "age": "2" } }, { - "id": 14642, + "id": 13565, "properties": { "age": "3" } @@ -105489,7 +99413,7 @@ }, "states": [ { - "id": 5126, + "id": 4358, "properties": { "facing": "north", "lit": "true" @@ -105497,49 +99421,49 @@ }, { "default": true, - "id": 5127, + "id": 4359, "properties": { "facing": "north", "lit": "false" } }, { - "id": 5128, + "id": 4360, "properties": { "facing": "south", "lit": "true" } }, { - "id": 5129, + "id": 4361, "properties": { "facing": "south", "lit": "false" } }, { - "id": 5130, + "id": 4362, "properties": { "facing": "west", "lit": "true" } }, { - "id": 5131, + "id": 4363, "properties": { "facing": "west", "lit": "false" } }, { - "id": 5132, + "id": 4364, "properties": { "facing": "east", "lit": "true" } }, { - "id": 5133, + "id": 4365, "properties": { "facing": "east", "lit": "false" @@ -105555,7 +99479,7 @@ "states": [ { "default": true, - "id": 22454 + "id": 21313 } ] }, @@ -105600,7 +99524,7 @@ }, "states": [ { - "id": 8099, + "id": 7022, "properties": { "east": "true", "north": "true", @@ -105610,7 +99534,7 @@ } }, { - "id": 8100, + "id": 7023, "properties": { "east": "true", "north": "true", @@ -105620,7 +99544,7 @@ } }, { - "id": 8101, + "id": 7024, "properties": { "east": "true", "north": "true", @@ -105630,7 +99554,7 @@ } }, { - "id": 8102, + "id": 7025, "properties": { "east": "true", "north": "true", @@ -105640,7 +99564,7 @@ } }, { - "id": 8103, + "id": 7026, "properties": { "east": "true", "north": "true", @@ -105650,7 +99574,7 @@ } }, { - "id": 8104, + "id": 7027, "properties": { "east": "true", "north": "true", @@ -105660,7 +99584,7 @@ } }, { - "id": 8105, + "id": 7028, "properties": { "east": "true", "north": "true", @@ -105670,7 +99594,7 @@ } }, { - "id": 8106, + "id": 7029, "properties": { "east": "true", "north": "true", @@ -105680,7 +99604,7 @@ } }, { - "id": 8107, + "id": 7030, "properties": { "east": "true", "north": "false", @@ -105690,7 +99614,7 @@ } }, { - "id": 8108, + "id": 7031, "properties": { "east": "true", "north": "false", @@ -105700,7 +99624,7 @@ } }, { - "id": 8109, + "id": 7032, "properties": { "east": "true", "north": "false", @@ -105710,7 +99634,7 @@ } }, { - "id": 8110, + "id": 7033, "properties": { "east": "true", "north": "false", @@ -105720,7 +99644,7 @@ } }, { - "id": 8111, + "id": 7034, "properties": { "east": "true", "north": "false", @@ -105730,7 +99654,7 @@ } }, { - "id": 8112, + "id": 7035, "properties": { "east": "true", "north": "false", @@ -105740,7 +99664,7 @@ } }, { - "id": 8113, + "id": 7036, "properties": { "east": "true", "north": "false", @@ -105750,7 +99674,7 @@ } }, { - "id": 8114, + "id": 7037, "properties": { "east": "true", "north": "false", @@ -105760,7 +99684,7 @@ } }, { - "id": 8115, + "id": 7038, "properties": { "east": "false", "north": "true", @@ -105770,7 +99694,7 @@ } }, { - "id": 8116, + "id": 7039, "properties": { "east": "false", "north": "true", @@ -105780,7 +99704,7 @@ } }, { - "id": 8117, + "id": 7040, "properties": { "east": "false", "north": "true", @@ -105790,7 +99714,7 @@ } }, { - "id": 8118, + "id": 7041, "properties": { "east": "false", "north": "true", @@ -105800,7 +99724,7 @@ } }, { - "id": 8119, + "id": 7042, "properties": { "east": "false", "north": "true", @@ -105810,7 +99734,7 @@ } }, { - "id": 8120, + "id": 7043, "properties": { "east": "false", "north": "true", @@ -105820,7 +99744,7 @@ } }, { - "id": 8121, + "id": 7044, "properties": { "east": "false", "north": "true", @@ -105830,7 +99754,7 @@ } }, { - "id": 8122, + "id": 7045, "properties": { "east": "false", "north": "true", @@ -105840,7 +99764,7 @@ } }, { - "id": 8123, + "id": 7046, "properties": { "east": "false", "north": "false", @@ -105850,7 +99774,7 @@ } }, { - "id": 8124, + "id": 7047, "properties": { "east": "false", "north": "false", @@ -105860,7 +99784,7 @@ } }, { - "id": 8125, + "id": 7048, "properties": { "east": "false", "north": "false", @@ -105870,7 +99794,7 @@ } }, { - "id": 8126, + "id": 7049, "properties": { "east": "false", "north": "false", @@ -105880,7 +99804,7 @@ } }, { - "id": 8127, + "id": 7050, "properties": { "east": "false", "north": "false", @@ -105890,7 +99814,7 @@ } }, { - "id": 8128, + "id": 7051, "properties": { "east": "false", "north": "false", @@ -105900,7 +99824,7 @@ } }, { - "id": 8129, + "id": 7052, "properties": { "east": "false", "north": "false", @@ -105911,7 +99835,7 @@ }, { "default": true, - "id": 8130, + "id": 7053, "properties": { "east": "false", "north": "false", @@ -105959,7 +99883,7 @@ }, "states": [ { - "id": 8189, + "id": 7112, "properties": { "down": "true", "east": "true", @@ -105971,7 +99895,7 @@ } }, { - "id": 8190, + "id": 7113, "properties": { "down": "true", "east": "true", @@ -105983,7 +99907,7 @@ } }, { - "id": 8191, + "id": 7114, "properties": { "down": "true", "east": "true", @@ -105995,7 +99919,7 @@ } }, { - "id": 8192, + "id": 7115, "properties": { "down": "true", "east": "true", @@ -106007,7 +99931,7 @@ } }, { - "id": 8193, + "id": 7116, "properties": { "down": "true", "east": "true", @@ -106019,7 +99943,7 @@ } }, { - "id": 8194, + "id": 7117, "properties": { "down": "true", "east": "true", @@ -106031,7 +99955,7 @@ } }, { - "id": 8195, + "id": 7118, "properties": { "down": "true", "east": "true", @@ -106043,7 +99967,7 @@ } }, { - "id": 8196, + "id": 7119, "properties": { "down": "true", "east": "true", @@ -106055,7 +99979,7 @@ } }, { - "id": 8197, + "id": 7120, "properties": { "down": "true", "east": "true", @@ -106067,7 +99991,7 @@ } }, { - "id": 8198, + "id": 7121, "properties": { "down": "true", "east": "true", @@ -106079,7 +100003,7 @@ } }, { - "id": 8199, + "id": 7122, "properties": { "down": "true", "east": "true", @@ -106091,7 +100015,7 @@ } }, { - "id": 8200, + "id": 7123, "properties": { "down": "true", "east": "true", @@ -106103,7 +100027,7 @@ } }, { - "id": 8201, + "id": 7124, "properties": { "down": "true", "east": "true", @@ -106115,7 +100039,7 @@ } }, { - "id": 8202, + "id": 7125, "properties": { "down": "true", "east": "true", @@ -106127,7 +100051,7 @@ } }, { - "id": 8203, + "id": 7126, "properties": { "down": "true", "east": "true", @@ -106139,7 +100063,7 @@ } }, { - "id": 8204, + "id": 7127, "properties": { "down": "true", "east": "true", @@ -106151,7 +100075,7 @@ } }, { - "id": 8205, + "id": 7128, "properties": { "down": "true", "east": "true", @@ -106163,7 +100087,7 @@ } }, { - "id": 8206, + "id": 7129, "properties": { "down": "true", "east": "true", @@ -106175,7 +100099,7 @@ } }, { - "id": 8207, + "id": 7130, "properties": { "down": "true", "east": "true", @@ -106187,7 +100111,7 @@ } }, { - "id": 8208, + "id": 7131, "properties": { "down": "true", "east": "true", @@ -106199,7 +100123,7 @@ } }, { - "id": 8209, + "id": 7132, "properties": { "down": "true", "east": "true", @@ -106211,7 +100135,7 @@ } }, { - "id": 8210, + "id": 7133, "properties": { "down": "true", "east": "true", @@ -106223,7 +100147,7 @@ } }, { - "id": 8211, + "id": 7134, "properties": { "down": "true", "east": "true", @@ -106235,7 +100159,7 @@ } }, { - "id": 8212, + "id": 7135, "properties": { "down": "true", "east": "true", @@ -106247,7 +100171,7 @@ } }, { - "id": 8213, + "id": 7136, "properties": { "down": "true", "east": "true", @@ -106259,7 +100183,7 @@ } }, { - "id": 8214, + "id": 7137, "properties": { "down": "true", "east": "true", @@ -106271,7 +100195,7 @@ } }, { - "id": 8215, + "id": 7138, "properties": { "down": "true", "east": "true", @@ -106283,7 +100207,7 @@ } }, { - "id": 8216, + "id": 7139, "properties": { "down": "true", "east": "true", @@ -106295,7 +100219,7 @@ } }, { - "id": 8217, + "id": 7140, "properties": { "down": "true", "east": "true", @@ -106307,7 +100231,7 @@ } }, { - "id": 8218, + "id": 7141, "properties": { "down": "true", "east": "true", @@ -106319,7 +100243,7 @@ } }, { - "id": 8219, + "id": 7142, "properties": { "down": "true", "east": "true", @@ -106331,7 +100255,7 @@ } }, { - "id": 8220, + "id": 7143, "properties": { "down": "true", "east": "true", @@ -106343,7 +100267,7 @@ } }, { - "id": 8221, + "id": 7144, "properties": { "down": "true", "east": "false", @@ -106355,7 +100279,7 @@ } }, { - "id": 8222, + "id": 7145, "properties": { "down": "true", "east": "false", @@ -106367,7 +100291,7 @@ } }, { - "id": 8223, + "id": 7146, "properties": { "down": "true", "east": "false", @@ -106379,7 +100303,7 @@ } }, { - "id": 8224, + "id": 7147, "properties": { "down": "true", "east": "false", @@ -106391,7 +100315,7 @@ } }, { - "id": 8225, + "id": 7148, "properties": { "down": "true", "east": "false", @@ -106403,7 +100327,7 @@ } }, { - "id": 8226, + "id": 7149, "properties": { "down": "true", "east": "false", @@ -106415,7 +100339,7 @@ } }, { - "id": 8227, + "id": 7150, "properties": { "down": "true", "east": "false", @@ -106427,7 +100351,7 @@ } }, { - "id": 8228, + "id": 7151, "properties": { "down": "true", "east": "false", @@ -106439,7 +100363,7 @@ } }, { - "id": 8229, + "id": 7152, "properties": { "down": "true", "east": "false", @@ -106451,7 +100375,7 @@ } }, { - "id": 8230, + "id": 7153, "properties": { "down": "true", "east": "false", @@ -106463,7 +100387,7 @@ } }, { - "id": 8231, + "id": 7154, "properties": { "down": "true", "east": "false", @@ -106475,7 +100399,7 @@ } }, { - "id": 8232, + "id": 7155, "properties": { "down": "true", "east": "false", @@ -106487,7 +100411,7 @@ } }, { - "id": 8233, + "id": 7156, "properties": { "down": "true", "east": "false", @@ -106499,7 +100423,7 @@ } }, { - "id": 8234, + "id": 7157, "properties": { "down": "true", "east": "false", @@ -106511,7 +100435,7 @@ } }, { - "id": 8235, + "id": 7158, "properties": { "down": "true", "east": "false", @@ -106523,7 +100447,7 @@ } }, { - "id": 8236, + "id": 7159, "properties": { "down": "true", "east": "false", @@ -106535,7 +100459,7 @@ } }, { - "id": 8237, + "id": 7160, "properties": { "down": "true", "east": "false", @@ -106547,7 +100471,7 @@ } }, { - "id": 8238, + "id": 7161, "properties": { "down": "true", "east": "false", @@ -106559,7 +100483,7 @@ } }, { - "id": 8239, + "id": 7162, "properties": { "down": "true", "east": "false", @@ -106571,7 +100495,7 @@ } }, { - "id": 8240, + "id": 7163, "properties": { "down": "true", "east": "false", @@ -106583,7 +100507,7 @@ } }, { - "id": 8241, + "id": 7164, "properties": { "down": "true", "east": "false", @@ -106595,7 +100519,7 @@ } }, { - "id": 8242, + "id": 7165, "properties": { "down": "true", "east": "false", @@ -106607,7 +100531,7 @@ } }, { - "id": 8243, + "id": 7166, "properties": { "down": "true", "east": "false", @@ -106619,7 +100543,7 @@ } }, { - "id": 8244, + "id": 7167, "properties": { "down": "true", "east": "false", @@ -106631,7 +100555,7 @@ } }, { - "id": 8245, + "id": 7168, "properties": { "down": "true", "east": "false", @@ -106643,7 +100567,7 @@ } }, { - "id": 8246, + "id": 7169, "properties": { "down": "true", "east": "false", @@ -106655,7 +100579,7 @@ } }, { - "id": 8247, + "id": 7170, "properties": { "down": "true", "east": "false", @@ -106667,7 +100591,7 @@ } }, { - "id": 8248, + "id": 7171, "properties": { "down": "true", "east": "false", @@ -106679,7 +100603,7 @@ } }, { - "id": 8249, + "id": 7172, "properties": { "down": "true", "east": "false", @@ -106691,7 +100615,7 @@ } }, { - "id": 8250, + "id": 7173, "properties": { "down": "true", "east": "false", @@ -106703,7 +100627,7 @@ } }, { - "id": 8251, + "id": 7174, "properties": { "down": "true", "east": "false", @@ -106715,7 +100639,7 @@ } }, { - "id": 8252, + "id": 7175, "properties": { "down": "true", "east": "false", @@ -106727,7 +100651,7 @@ } }, { - "id": 8253, + "id": 7176, "properties": { "down": "false", "east": "true", @@ -106739,7 +100663,7 @@ } }, { - "id": 8254, + "id": 7177, "properties": { "down": "false", "east": "true", @@ -106751,7 +100675,7 @@ } }, { - "id": 8255, + "id": 7178, "properties": { "down": "false", "east": "true", @@ -106763,7 +100687,7 @@ } }, { - "id": 8256, + "id": 7179, "properties": { "down": "false", "east": "true", @@ -106775,7 +100699,7 @@ } }, { - "id": 8257, + "id": 7180, "properties": { "down": "false", "east": "true", @@ -106787,7 +100711,7 @@ } }, { - "id": 8258, + "id": 7181, "properties": { "down": "false", "east": "true", @@ -106799,7 +100723,7 @@ } }, { - "id": 8259, + "id": 7182, "properties": { "down": "false", "east": "true", @@ -106811,7 +100735,7 @@ } }, { - "id": 8260, + "id": 7183, "properties": { "down": "false", "east": "true", @@ -106823,7 +100747,7 @@ } }, { - "id": 8261, + "id": 7184, "properties": { "down": "false", "east": "true", @@ -106835,7 +100759,7 @@ } }, { - "id": 8262, + "id": 7185, "properties": { "down": "false", "east": "true", @@ -106847,7 +100771,7 @@ } }, { - "id": 8263, + "id": 7186, "properties": { "down": "false", "east": "true", @@ -106859,7 +100783,7 @@ } }, { - "id": 8264, + "id": 7187, "properties": { "down": "false", "east": "true", @@ -106871,7 +100795,7 @@ } }, { - "id": 8265, + "id": 7188, "properties": { "down": "false", "east": "true", @@ -106883,7 +100807,7 @@ } }, { - "id": 8266, + "id": 7189, "properties": { "down": "false", "east": "true", @@ -106895,7 +100819,7 @@ } }, { - "id": 8267, + "id": 7190, "properties": { "down": "false", "east": "true", @@ -106907,7 +100831,7 @@ } }, { - "id": 8268, + "id": 7191, "properties": { "down": "false", "east": "true", @@ -106919,7 +100843,7 @@ } }, { - "id": 8269, + "id": 7192, "properties": { "down": "false", "east": "true", @@ -106931,7 +100855,7 @@ } }, { - "id": 8270, + "id": 7193, "properties": { "down": "false", "east": "true", @@ -106943,7 +100867,7 @@ } }, { - "id": 8271, + "id": 7194, "properties": { "down": "false", "east": "true", @@ -106955,7 +100879,7 @@ } }, { - "id": 8272, + "id": 7195, "properties": { "down": "false", "east": "true", @@ -106967,7 +100891,7 @@ } }, { - "id": 8273, + "id": 7196, "properties": { "down": "false", "east": "true", @@ -106979,7 +100903,7 @@ } }, { - "id": 8274, + "id": 7197, "properties": { "down": "false", "east": "true", @@ -106991,7 +100915,7 @@ } }, { - "id": 8275, + "id": 7198, "properties": { "down": "false", "east": "true", @@ -107003,7 +100927,7 @@ } }, { - "id": 8276, + "id": 7199, "properties": { "down": "false", "east": "true", @@ -107015,7 +100939,7 @@ } }, { - "id": 8277, + "id": 7200, "properties": { "down": "false", "east": "true", @@ -107027,7 +100951,7 @@ } }, { - "id": 8278, + "id": 7201, "properties": { "down": "false", "east": "true", @@ -107039,7 +100963,7 @@ } }, { - "id": 8279, + "id": 7202, "properties": { "down": "false", "east": "true", @@ -107051,7 +100975,7 @@ } }, { - "id": 8280, + "id": 7203, "properties": { "down": "false", "east": "true", @@ -107063,7 +100987,7 @@ } }, { - "id": 8281, + "id": 7204, "properties": { "down": "false", "east": "true", @@ -107075,7 +100999,7 @@ } }, { - "id": 8282, + "id": 7205, "properties": { "down": "false", "east": "true", @@ -107087,7 +101011,7 @@ } }, { - "id": 8283, + "id": 7206, "properties": { "down": "false", "east": "true", @@ -107099,7 +101023,7 @@ } }, { - "id": 8284, + "id": 7207, "properties": { "down": "false", "east": "true", @@ -107111,7 +101035,7 @@ } }, { - "id": 8285, + "id": 7208, "properties": { "down": "false", "east": "false", @@ -107123,7 +101047,7 @@ } }, { - "id": 8286, + "id": 7209, "properties": { "down": "false", "east": "false", @@ -107135,7 +101059,7 @@ } }, { - "id": 8287, + "id": 7210, "properties": { "down": "false", "east": "false", @@ -107147,7 +101071,7 @@ } }, { - "id": 8288, + "id": 7211, "properties": { "down": "false", "east": "false", @@ -107159,7 +101083,7 @@ } }, { - "id": 8289, + "id": 7212, "properties": { "down": "false", "east": "false", @@ -107171,7 +101095,7 @@ } }, { - "id": 8290, + "id": 7213, "properties": { "down": "false", "east": "false", @@ -107183,7 +101107,7 @@ } }, { - "id": 8291, + "id": 7214, "properties": { "down": "false", "east": "false", @@ -107195,7 +101119,7 @@ } }, { - "id": 8292, + "id": 7215, "properties": { "down": "false", "east": "false", @@ -107207,7 +101131,7 @@ } }, { - "id": 8293, + "id": 7216, "properties": { "down": "false", "east": "false", @@ -107219,7 +101143,7 @@ } }, { - "id": 8294, + "id": 7217, "properties": { "down": "false", "east": "false", @@ -107231,7 +101155,7 @@ } }, { - "id": 8295, + "id": 7218, "properties": { "down": "false", "east": "false", @@ -107243,7 +101167,7 @@ } }, { - "id": 8296, + "id": 7219, "properties": { "down": "false", "east": "false", @@ -107255,7 +101179,7 @@ } }, { - "id": 8297, + "id": 7220, "properties": { "down": "false", "east": "false", @@ -107267,7 +101191,7 @@ } }, { - "id": 8298, + "id": 7221, "properties": { "down": "false", "east": "false", @@ -107279,7 +101203,7 @@ } }, { - "id": 8299, + "id": 7222, "properties": { "down": "false", "east": "false", @@ -107291,7 +101215,7 @@ } }, { - "id": 8300, + "id": 7223, "properties": { "down": "false", "east": "false", @@ -107303,7 +101227,7 @@ } }, { - "id": 8301, + "id": 7224, "properties": { "down": "false", "east": "false", @@ -107315,7 +101239,7 @@ } }, { - "id": 8302, + "id": 7225, "properties": { "down": "false", "east": "false", @@ -107327,7 +101251,7 @@ } }, { - "id": 8303, + "id": 7226, "properties": { "down": "false", "east": "false", @@ -107339,7 +101263,7 @@ } }, { - "id": 8304, + "id": 7227, "properties": { "down": "false", "east": "false", @@ -107351,7 +101275,7 @@ } }, { - "id": 8305, + "id": 7228, "properties": { "down": "false", "east": "false", @@ -107363,7 +101287,7 @@ } }, { - "id": 8306, + "id": 7229, "properties": { "down": "false", "east": "false", @@ -107375,7 +101299,7 @@ } }, { - "id": 8307, + "id": 7230, "properties": { "down": "false", "east": "false", @@ -107387,7 +101311,7 @@ } }, { - "id": 8308, + "id": 7231, "properties": { "down": "false", "east": "false", @@ -107399,7 +101323,7 @@ } }, { - "id": 8309, + "id": 7232, "properties": { "down": "false", "east": "false", @@ -107411,7 +101335,7 @@ } }, { - "id": 8310, + "id": 7233, "properties": { "down": "false", "east": "false", @@ -107423,7 +101347,7 @@ } }, { - "id": 8311, + "id": 7234, "properties": { "down": "false", "east": "false", @@ -107435,7 +101359,7 @@ } }, { - "id": 8312, + "id": 7235, "properties": { "down": "false", "east": "false", @@ -107447,7 +101371,7 @@ } }, { - "id": 8313, + "id": 7236, "properties": { "down": "false", "east": "false", @@ -107459,7 +101383,7 @@ } }, { - "id": 8314, + "id": 7237, "properties": { "down": "false", "east": "false", @@ -107471,7 +101395,7 @@ } }, { - "id": 8315, + "id": 7238, "properties": { "down": "false", "east": "false", @@ -107484,7 +101408,7 @@ }, { "default": true, - "id": 8316, + "id": 7239, "properties": { "down": "false", "east": "false", @@ -107505,7 +101429,7 @@ "states": [ { "default": true, - "id": 6815 + "id": 6042 } ] }, @@ -107564,21 +101488,21 @@ }, "states": [ { - "id": 16262, + "id": 15153, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 16263, + "id": 15154, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 16264, + "id": 15155, "properties": { "type": "bottom", "waterlogged": "true" @@ -107586,21 +101510,21 @@ }, { "default": true, - "id": 16265, + "id": 15156, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 16266, + "id": 15157, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 16267, + "id": 15158, "properties": { "type": "double", "waterlogged": "false" @@ -107641,7 +101565,7 @@ }, "states": [ { - "id": 15814, + "id": 14705, "properties": { "facing": "north", "half": "top", @@ -107650,7 +101574,7 @@ } }, { - "id": 15815, + "id": 14706, "properties": { "facing": "north", "half": "top", @@ -107659,7 +101583,7 @@ } }, { - "id": 15816, + "id": 14707, "properties": { "facing": "north", "half": "top", @@ -107668,7 +101592,7 @@ } }, { - "id": 15817, + "id": 14708, "properties": { "facing": "north", "half": "top", @@ -107677,7 +101601,7 @@ } }, { - "id": 15818, + "id": 14709, "properties": { "facing": "north", "half": "top", @@ -107686,7 +101610,7 @@ } }, { - "id": 15819, + "id": 14710, "properties": { "facing": "north", "half": "top", @@ -107695,7 +101619,7 @@ } }, { - "id": 15820, + "id": 14711, "properties": { "facing": "north", "half": "top", @@ -107704,7 +101628,7 @@ } }, { - "id": 15821, + "id": 14712, "properties": { "facing": "north", "half": "top", @@ -107713,7 +101637,7 @@ } }, { - "id": 15822, + "id": 14713, "properties": { "facing": "north", "half": "top", @@ -107722,7 +101646,7 @@ } }, { - "id": 15823, + "id": 14714, "properties": { "facing": "north", "half": "top", @@ -107731,7 +101655,7 @@ } }, { - "id": 15824, + "id": 14715, "properties": { "facing": "north", "half": "bottom", @@ -107741,7 +101665,7 @@ }, { "default": true, - "id": 15825, + "id": 14716, "properties": { "facing": "north", "half": "bottom", @@ -107750,7 +101674,7 @@ } }, { - "id": 15826, + "id": 14717, "properties": { "facing": "north", "half": "bottom", @@ -107759,7 +101683,7 @@ } }, { - "id": 15827, + "id": 14718, "properties": { "facing": "north", "half": "bottom", @@ -107768,7 +101692,7 @@ } }, { - "id": 15828, + "id": 14719, "properties": { "facing": "north", "half": "bottom", @@ -107777,7 +101701,7 @@ } }, { - "id": 15829, + "id": 14720, "properties": { "facing": "north", "half": "bottom", @@ -107786,7 +101710,7 @@ } }, { - "id": 15830, + "id": 14721, "properties": { "facing": "north", "half": "bottom", @@ -107795,7 +101719,7 @@ } }, { - "id": 15831, + "id": 14722, "properties": { "facing": "north", "half": "bottom", @@ -107804,7 +101728,7 @@ } }, { - "id": 15832, + "id": 14723, "properties": { "facing": "north", "half": "bottom", @@ -107813,7 +101737,7 @@ } }, { - "id": 15833, + "id": 14724, "properties": { "facing": "north", "half": "bottom", @@ -107822,7 +101746,7 @@ } }, { - "id": 15834, + "id": 14725, "properties": { "facing": "south", "half": "top", @@ -107831,7 +101755,7 @@ } }, { - "id": 15835, + "id": 14726, "properties": { "facing": "south", "half": "top", @@ -107840,7 +101764,7 @@ } }, { - "id": 15836, + "id": 14727, "properties": { "facing": "south", "half": "top", @@ -107849,7 +101773,7 @@ } }, { - "id": 15837, + "id": 14728, "properties": { "facing": "south", "half": "top", @@ -107858,7 +101782,7 @@ } }, { - "id": 15838, + "id": 14729, "properties": { "facing": "south", "half": "top", @@ -107867,7 +101791,7 @@ } }, { - "id": 15839, + "id": 14730, "properties": { "facing": "south", "half": "top", @@ -107876,7 +101800,7 @@ } }, { - "id": 15840, + "id": 14731, "properties": { "facing": "south", "half": "top", @@ -107885,7 +101809,7 @@ } }, { - "id": 15841, + "id": 14732, "properties": { "facing": "south", "half": "top", @@ -107894,7 +101818,7 @@ } }, { - "id": 15842, + "id": 14733, "properties": { "facing": "south", "half": "top", @@ -107903,7 +101827,7 @@ } }, { - "id": 15843, + "id": 14734, "properties": { "facing": "south", "half": "top", @@ -107912,7 +101836,7 @@ } }, { - "id": 15844, + "id": 14735, "properties": { "facing": "south", "half": "bottom", @@ -107921,7 +101845,7 @@ } }, { - "id": 15845, + "id": 14736, "properties": { "facing": "south", "half": "bottom", @@ -107930,7 +101854,7 @@ } }, { - "id": 15846, + "id": 14737, "properties": { "facing": "south", "half": "bottom", @@ -107939,7 +101863,7 @@ } }, { - "id": 15847, + "id": 14738, "properties": { "facing": "south", "half": "bottom", @@ -107948,7 +101872,7 @@ } }, { - "id": 15848, + "id": 14739, "properties": { "facing": "south", "half": "bottom", @@ -107957,7 +101881,7 @@ } }, { - "id": 15849, + "id": 14740, "properties": { "facing": "south", "half": "bottom", @@ -107966,7 +101890,7 @@ } }, { - "id": 15850, + "id": 14741, "properties": { "facing": "south", "half": "bottom", @@ -107975,7 +101899,7 @@ } }, { - "id": 15851, + "id": 14742, "properties": { "facing": "south", "half": "bottom", @@ -107984,7 +101908,7 @@ } }, { - "id": 15852, + "id": 14743, "properties": { "facing": "south", "half": "bottom", @@ -107993,7 +101917,7 @@ } }, { - "id": 15853, + "id": 14744, "properties": { "facing": "south", "half": "bottom", @@ -108002,7 +101926,7 @@ } }, { - "id": 15854, + "id": 14745, "properties": { "facing": "west", "half": "top", @@ -108011,7 +101935,7 @@ } }, { - "id": 15855, + "id": 14746, "properties": { "facing": "west", "half": "top", @@ -108020,7 +101944,7 @@ } }, { - "id": 15856, + "id": 14747, "properties": { "facing": "west", "half": "top", @@ -108029,7 +101953,7 @@ } }, { - "id": 15857, + "id": 14748, "properties": { "facing": "west", "half": "top", @@ -108038,7 +101962,7 @@ } }, { - "id": 15858, + "id": 14749, "properties": { "facing": "west", "half": "top", @@ -108047,7 +101971,7 @@ } }, { - "id": 15859, + "id": 14750, "properties": { "facing": "west", "half": "top", @@ -108056,7 +101980,7 @@ } }, { - "id": 15860, + "id": 14751, "properties": { "facing": "west", "half": "top", @@ -108065,7 +101989,7 @@ } }, { - "id": 15861, + "id": 14752, "properties": { "facing": "west", "half": "top", @@ -108074,7 +101998,7 @@ } }, { - "id": 15862, + "id": 14753, "properties": { "facing": "west", "half": "top", @@ -108083,7 +102007,7 @@ } }, { - "id": 15863, + "id": 14754, "properties": { "facing": "west", "half": "top", @@ -108092,7 +102016,7 @@ } }, { - "id": 15864, + "id": 14755, "properties": { "facing": "west", "half": "bottom", @@ -108101,7 +102025,7 @@ } }, { - "id": 15865, + "id": 14756, "properties": { "facing": "west", "half": "bottom", @@ -108110,7 +102034,7 @@ } }, { - "id": 15866, + "id": 14757, "properties": { "facing": "west", "half": "bottom", @@ -108119,7 +102043,7 @@ } }, { - "id": 15867, + "id": 14758, "properties": { "facing": "west", "half": "bottom", @@ -108128,7 +102052,7 @@ } }, { - "id": 15868, + "id": 14759, "properties": { "facing": "west", "half": "bottom", @@ -108137,7 +102061,7 @@ } }, { - "id": 15869, + "id": 14760, "properties": { "facing": "west", "half": "bottom", @@ -108146,7 +102070,7 @@ } }, { - "id": 15870, + "id": 14761, "properties": { "facing": "west", "half": "bottom", @@ -108155,7 +102079,7 @@ } }, { - "id": 15871, + "id": 14762, "properties": { "facing": "west", "half": "bottom", @@ -108164,7 +102088,7 @@ } }, { - "id": 15872, + "id": 14763, "properties": { "facing": "west", "half": "bottom", @@ -108173,7 +102097,7 @@ } }, { - "id": 15873, + "id": 14764, "properties": { "facing": "west", "half": "bottom", @@ -108182,7 +102106,7 @@ } }, { - "id": 15874, + "id": 14765, "properties": { "facing": "east", "half": "top", @@ -108191,7 +102115,7 @@ } }, { - "id": 15875, + "id": 14766, "properties": { "facing": "east", "half": "top", @@ -108200,7 +102124,7 @@ } }, { - "id": 15876, + "id": 14767, "properties": { "facing": "east", "half": "top", @@ -108209,7 +102133,7 @@ } }, { - "id": 15877, + "id": 14768, "properties": { "facing": "east", "half": "top", @@ -108218,7 +102142,7 @@ } }, { - "id": 15878, + "id": 14769, "properties": { "facing": "east", "half": "top", @@ -108227,7 +102151,7 @@ } }, { - "id": 15879, + "id": 14770, "properties": { "facing": "east", "half": "top", @@ -108236,7 +102160,7 @@ } }, { - "id": 15880, + "id": 14771, "properties": { "facing": "east", "half": "top", @@ -108245,7 +102169,7 @@ } }, { - "id": 15881, + "id": 14772, "properties": { "facing": "east", "half": "top", @@ -108254,7 +102178,7 @@ } }, { - "id": 15882, + "id": 14773, "properties": { "facing": "east", "half": "top", @@ -108263,7 +102187,7 @@ } }, { - "id": 15883, + "id": 14774, "properties": { "facing": "east", "half": "top", @@ -108272,7 +102196,7 @@ } }, { - "id": 15884, + "id": 14775, "properties": { "facing": "east", "half": "bottom", @@ -108281,7 +102205,7 @@ } }, { - "id": 15885, + "id": 14776, "properties": { "facing": "east", "half": "bottom", @@ -108290,7 +102214,7 @@ } }, { - "id": 15886, + "id": 14777, "properties": { "facing": "east", "half": "bottom", @@ -108299,7 +102223,7 @@ } }, { - "id": 15887, + "id": 14778, "properties": { "facing": "east", "half": "bottom", @@ -108308,7 +102232,7 @@ } }, { - "id": 15888, + "id": 14779, "properties": { "facing": "east", "half": "bottom", @@ -108317,7 +102241,7 @@ } }, { - "id": 15889, + "id": 14780, "properties": { "facing": "east", "half": "bottom", @@ -108326,7 +102250,7 @@ } }, { - "id": 15890, + "id": 14781, "properties": { "facing": "east", "half": "bottom", @@ -108335,7 +102259,7 @@ } }, { - "id": 15891, + "id": 14782, "properties": { "facing": "east", "half": "bottom", @@ -108344,7 +102268,7 @@ } }, { - "id": 15892, + "id": 14783, "properties": { "facing": "east", "half": "bottom", @@ -108353,7 +102277,7 @@ } }, { - "id": 15893, + "id": 14784, "properties": { "facing": "east", "half": "bottom", @@ -108400,7 +102324,7 @@ }, "states": [ { - "id": 17588, + "id": 16479, "properties": { "east": "none", "north": "none", @@ -108411,7 +102335,7 @@ } }, { - "id": 17589, + "id": 16480, "properties": { "east": "none", "north": "none", @@ -108422,7 +102346,7 @@ } }, { - "id": 17590, + "id": 16481, "properties": { "east": "none", "north": "none", @@ -108434,7 +102358,7 @@ }, { "default": true, - "id": 17591, + "id": 16482, "properties": { "east": "none", "north": "none", @@ -108445,7 +102369,7 @@ } }, { - "id": 17592, + "id": 16483, "properties": { "east": "none", "north": "none", @@ -108456,7 +102380,7 @@ } }, { - "id": 17593, + "id": 16484, "properties": { "east": "none", "north": "none", @@ -108467,7 +102391,7 @@ } }, { - "id": 17594, + "id": 16485, "properties": { "east": "none", "north": "none", @@ -108478,7 +102402,7 @@ } }, { - "id": 17595, + "id": 16486, "properties": { "east": "none", "north": "none", @@ -108489,7 +102413,7 @@ } }, { - "id": 17596, + "id": 16487, "properties": { "east": "none", "north": "none", @@ -108500,7 +102424,7 @@ } }, { - "id": 17597, + "id": 16488, "properties": { "east": "none", "north": "none", @@ -108511,7 +102435,7 @@ } }, { - "id": 17598, + "id": 16489, "properties": { "east": "none", "north": "none", @@ -108522,7 +102446,7 @@ } }, { - "id": 17599, + "id": 16490, "properties": { "east": "none", "north": "none", @@ -108533,7 +102457,7 @@ } }, { - "id": 17600, + "id": 16491, "properties": { "east": "none", "north": "none", @@ -108544,7 +102468,7 @@ } }, { - "id": 17601, + "id": 16492, "properties": { "east": "none", "north": "none", @@ -108555,7 +102479,7 @@ } }, { - "id": 17602, + "id": 16493, "properties": { "east": "none", "north": "none", @@ -108566,7 +102490,7 @@ } }, { - "id": 17603, + "id": 16494, "properties": { "east": "none", "north": "none", @@ -108577,7 +102501,7 @@ } }, { - "id": 17604, + "id": 16495, "properties": { "east": "none", "north": "none", @@ -108588,7 +102512,7 @@ } }, { - "id": 17605, + "id": 16496, "properties": { "east": "none", "north": "none", @@ -108599,7 +102523,7 @@ } }, { - "id": 17606, + "id": 16497, "properties": { "east": "none", "north": "none", @@ -108610,7 +102534,7 @@ } }, { - "id": 17607, + "id": 16498, "properties": { "east": "none", "north": "none", @@ -108621,7 +102545,7 @@ } }, { - "id": 17608, + "id": 16499, "properties": { "east": "none", "north": "none", @@ -108632,7 +102556,7 @@ } }, { - "id": 17609, + "id": 16500, "properties": { "east": "none", "north": "none", @@ -108643,7 +102567,7 @@ } }, { - "id": 17610, + "id": 16501, "properties": { "east": "none", "north": "none", @@ -108654,7 +102578,7 @@ } }, { - "id": 17611, + "id": 16502, "properties": { "east": "none", "north": "none", @@ -108665,7 +102589,7 @@ } }, { - "id": 17612, + "id": 16503, "properties": { "east": "none", "north": "none", @@ -108676,7 +102600,7 @@ } }, { - "id": 17613, + "id": 16504, "properties": { "east": "none", "north": "none", @@ -108687,7 +102611,7 @@ } }, { - "id": 17614, + "id": 16505, "properties": { "east": "none", "north": "none", @@ -108698,7 +102622,7 @@ } }, { - "id": 17615, + "id": 16506, "properties": { "east": "none", "north": "none", @@ -108709,7 +102633,7 @@ } }, { - "id": 17616, + "id": 16507, "properties": { "east": "none", "north": "none", @@ -108720,7 +102644,7 @@ } }, { - "id": 17617, + "id": 16508, "properties": { "east": "none", "north": "none", @@ -108731,7 +102655,7 @@ } }, { - "id": 17618, + "id": 16509, "properties": { "east": "none", "north": "none", @@ -108742,7 +102666,7 @@ } }, { - "id": 17619, + "id": 16510, "properties": { "east": "none", "north": "none", @@ -108753,7 +102677,7 @@ } }, { - "id": 17620, + "id": 16511, "properties": { "east": "none", "north": "none", @@ -108764,7 +102688,7 @@ } }, { - "id": 17621, + "id": 16512, "properties": { "east": "none", "north": "none", @@ -108775,7 +102699,7 @@ } }, { - "id": 17622, + "id": 16513, "properties": { "east": "none", "north": "none", @@ -108786,7 +102710,7 @@ } }, { - "id": 17623, + "id": 16514, "properties": { "east": "none", "north": "none", @@ -108797,7 +102721,7 @@ } }, { - "id": 17624, + "id": 16515, "properties": { "east": "none", "north": "low", @@ -108808,7 +102732,7 @@ } }, { - "id": 17625, + "id": 16516, "properties": { "east": "none", "north": "low", @@ -108819,7 +102743,7 @@ } }, { - "id": 17626, + "id": 16517, "properties": { "east": "none", "north": "low", @@ -108830,7 +102754,7 @@ } }, { - "id": 17627, + "id": 16518, "properties": { "east": "none", "north": "low", @@ -108841,7 +102765,7 @@ } }, { - "id": 17628, + "id": 16519, "properties": { "east": "none", "north": "low", @@ -108852,7 +102776,7 @@ } }, { - "id": 17629, + "id": 16520, "properties": { "east": "none", "north": "low", @@ -108863,7 +102787,7 @@ } }, { - "id": 17630, + "id": 16521, "properties": { "east": "none", "north": "low", @@ -108874,7 +102798,7 @@ } }, { - "id": 17631, + "id": 16522, "properties": { "east": "none", "north": "low", @@ -108885,7 +102809,7 @@ } }, { - "id": 17632, + "id": 16523, "properties": { "east": "none", "north": "low", @@ -108896,7 +102820,7 @@ } }, { - "id": 17633, + "id": 16524, "properties": { "east": "none", "north": "low", @@ -108907,7 +102831,7 @@ } }, { - "id": 17634, + "id": 16525, "properties": { "east": "none", "north": "low", @@ -108918,7 +102842,7 @@ } }, { - "id": 17635, + "id": 16526, "properties": { "east": "none", "north": "low", @@ -108929,7 +102853,7 @@ } }, { - "id": 17636, + "id": 16527, "properties": { "east": "none", "north": "low", @@ -108940,7 +102864,7 @@ } }, { - "id": 17637, + "id": 16528, "properties": { "east": "none", "north": "low", @@ -108951,7 +102875,7 @@ } }, { - "id": 17638, + "id": 16529, "properties": { "east": "none", "north": "low", @@ -108962,7 +102886,7 @@ } }, { - "id": 17639, + "id": 16530, "properties": { "east": "none", "north": "low", @@ -108973,7 +102897,7 @@ } }, { - "id": 17640, + "id": 16531, "properties": { "east": "none", "north": "low", @@ -108984,7 +102908,7 @@ } }, { - "id": 17641, + "id": 16532, "properties": { "east": "none", "north": "low", @@ -108995,7 +102919,7 @@ } }, { - "id": 17642, + "id": 16533, "properties": { "east": "none", "north": "low", @@ -109006,7 +102930,7 @@ } }, { - "id": 17643, + "id": 16534, "properties": { "east": "none", "north": "low", @@ -109017,7 +102941,7 @@ } }, { - "id": 17644, + "id": 16535, "properties": { "east": "none", "north": "low", @@ -109028,7 +102952,7 @@ } }, { - "id": 17645, + "id": 16536, "properties": { "east": "none", "north": "low", @@ -109039,7 +102963,7 @@ } }, { - "id": 17646, + "id": 16537, "properties": { "east": "none", "north": "low", @@ -109050,7 +102974,7 @@ } }, { - "id": 17647, + "id": 16538, "properties": { "east": "none", "north": "low", @@ -109061,7 +102985,7 @@ } }, { - "id": 17648, + "id": 16539, "properties": { "east": "none", "north": "low", @@ -109072,7 +102996,7 @@ } }, { - "id": 17649, + "id": 16540, "properties": { "east": "none", "north": "low", @@ -109083,7 +103007,7 @@ } }, { - "id": 17650, + "id": 16541, "properties": { "east": "none", "north": "low", @@ -109094,7 +103018,7 @@ } }, { - "id": 17651, + "id": 16542, "properties": { "east": "none", "north": "low", @@ -109105,7 +103029,7 @@ } }, { - "id": 17652, + "id": 16543, "properties": { "east": "none", "north": "low", @@ -109116,7 +103040,7 @@ } }, { - "id": 17653, + "id": 16544, "properties": { "east": "none", "north": "low", @@ -109127,7 +103051,7 @@ } }, { - "id": 17654, + "id": 16545, "properties": { "east": "none", "north": "low", @@ -109138,7 +103062,7 @@ } }, { - "id": 17655, + "id": 16546, "properties": { "east": "none", "north": "low", @@ -109149,7 +103073,7 @@ } }, { - "id": 17656, + "id": 16547, "properties": { "east": "none", "north": "low", @@ -109160,7 +103084,7 @@ } }, { - "id": 17657, + "id": 16548, "properties": { "east": "none", "north": "low", @@ -109171,7 +103095,7 @@ } }, { - "id": 17658, + "id": 16549, "properties": { "east": "none", "north": "low", @@ -109182,7 +103106,7 @@ } }, { - "id": 17659, + "id": 16550, "properties": { "east": "none", "north": "low", @@ -109193,7 +103117,7 @@ } }, { - "id": 17660, + "id": 16551, "properties": { "east": "none", "north": "tall", @@ -109204,7 +103128,7 @@ } }, { - "id": 17661, + "id": 16552, "properties": { "east": "none", "north": "tall", @@ -109215,7 +103139,7 @@ } }, { - "id": 17662, + "id": 16553, "properties": { "east": "none", "north": "tall", @@ -109226,7 +103150,7 @@ } }, { - "id": 17663, + "id": 16554, "properties": { "east": "none", "north": "tall", @@ -109237,7 +103161,7 @@ } }, { - "id": 17664, + "id": 16555, "properties": { "east": "none", "north": "tall", @@ -109248,7 +103172,7 @@ } }, { - "id": 17665, + "id": 16556, "properties": { "east": "none", "north": "tall", @@ -109259,7 +103183,7 @@ } }, { - "id": 17666, + "id": 16557, "properties": { "east": "none", "north": "tall", @@ -109270,7 +103194,7 @@ } }, { - "id": 17667, + "id": 16558, "properties": { "east": "none", "north": "tall", @@ -109281,7 +103205,7 @@ } }, { - "id": 17668, + "id": 16559, "properties": { "east": "none", "north": "tall", @@ -109292,7 +103216,7 @@ } }, { - "id": 17669, + "id": 16560, "properties": { "east": "none", "north": "tall", @@ -109303,7 +103227,7 @@ } }, { - "id": 17670, + "id": 16561, "properties": { "east": "none", "north": "tall", @@ -109314,7 +103238,7 @@ } }, { - "id": 17671, + "id": 16562, "properties": { "east": "none", "north": "tall", @@ -109325,7 +103249,7 @@ } }, { - "id": 17672, + "id": 16563, "properties": { "east": "none", "north": "tall", @@ -109336,7 +103260,7 @@ } }, { - "id": 17673, + "id": 16564, "properties": { "east": "none", "north": "tall", @@ -109347,7 +103271,7 @@ } }, { - "id": 17674, + "id": 16565, "properties": { "east": "none", "north": "tall", @@ -109358,7 +103282,7 @@ } }, { - "id": 17675, + "id": 16566, "properties": { "east": "none", "north": "tall", @@ -109369,7 +103293,7 @@ } }, { - "id": 17676, + "id": 16567, "properties": { "east": "none", "north": "tall", @@ -109380,7 +103304,7 @@ } }, { - "id": 17677, + "id": 16568, "properties": { "east": "none", "north": "tall", @@ -109391,7 +103315,7 @@ } }, { - "id": 17678, + "id": 16569, "properties": { "east": "none", "north": "tall", @@ -109402,7 +103326,7 @@ } }, { - "id": 17679, + "id": 16570, "properties": { "east": "none", "north": "tall", @@ -109413,7 +103337,7 @@ } }, { - "id": 17680, + "id": 16571, "properties": { "east": "none", "north": "tall", @@ -109424,7 +103348,7 @@ } }, { - "id": 17681, + "id": 16572, "properties": { "east": "none", "north": "tall", @@ -109435,7 +103359,7 @@ } }, { - "id": 17682, + "id": 16573, "properties": { "east": "none", "north": "tall", @@ -109446,7 +103370,7 @@ } }, { - "id": 17683, + "id": 16574, "properties": { "east": "none", "north": "tall", @@ -109457,7 +103381,7 @@ } }, { - "id": 17684, + "id": 16575, "properties": { "east": "none", "north": "tall", @@ -109468,7 +103392,7 @@ } }, { - "id": 17685, + "id": 16576, "properties": { "east": "none", "north": "tall", @@ -109479,7 +103403,7 @@ } }, { - "id": 17686, + "id": 16577, "properties": { "east": "none", "north": "tall", @@ -109490,7 +103414,7 @@ } }, { - "id": 17687, + "id": 16578, "properties": { "east": "none", "north": "tall", @@ -109501,7 +103425,7 @@ } }, { - "id": 17688, + "id": 16579, "properties": { "east": "none", "north": "tall", @@ -109512,7 +103436,7 @@ } }, { - "id": 17689, + "id": 16580, "properties": { "east": "none", "north": "tall", @@ -109523,7 +103447,7 @@ } }, { - "id": 17690, + "id": 16581, "properties": { "east": "none", "north": "tall", @@ -109534,7 +103458,7 @@ } }, { - "id": 17691, + "id": 16582, "properties": { "east": "none", "north": "tall", @@ -109545,7 +103469,7 @@ } }, { - "id": 17692, + "id": 16583, "properties": { "east": "none", "north": "tall", @@ -109556,7 +103480,7 @@ } }, { - "id": 17693, + "id": 16584, "properties": { "east": "none", "north": "tall", @@ -109567,7 +103491,7 @@ } }, { - "id": 17694, + "id": 16585, "properties": { "east": "none", "north": "tall", @@ -109578,7 +103502,7 @@ } }, { - "id": 17695, + "id": 16586, "properties": { "east": "none", "north": "tall", @@ -109589,7 +103513,7 @@ } }, { - "id": 17696, + "id": 16587, "properties": { "east": "low", "north": "none", @@ -109600,7 +103524,7 @@ } }, { - "id": 17697, + "id": 16588, "properties": { "east": "low", "north": "none", @@ -109611,7 +103535,7 @@ } }, { - "id": 17698, + "id": 16589, "properties": { "east": "low", "north": "none", @@ -109622,7 +103546,7 @@ } }, { - "id": 17699, + "id": 16590, "properties": { "east": "low", "north": "none", @@ -109633,7 +103557,7 @@ } }, { - "id": 17700, + "id": 16591, "properties": { "east": "low", "north": "none", @@ -109644,7 +103568,7 @@ } }, { - "id": 17701, + "id": 16592, "properties": { "east": "low", "north": "none", @@ -109655,7 +103579,7 @@ } }, { - "id": 17702, + "id": 16593, "properties": { "east": "low", "north": "none", @@ -109666,7 +103590,7 @@ } }, { - "id": 17703, + "id": 16594, "properties": { "east": "low", "north": "none", @@ -109677,7 +103601,7 @@ } }, { - "id": 17704, + "id": 16595, "properties": { "east": "low", "north": "none", @@ -109688,7 +103612,7 @@ } }, { - "id": 17705, + "id": 16596, "properties": { "east": "low", "north": "none", @@ -109699,7 +103623,7 @@ } }, { - "id": 17706, + "id": 16597, "properties": { "east": "low", "north": "none", @@ -109710,7 +103634,7 @@ } }, { - "id": 17707, + "id": 16598, "properties": { "east": "low", "north": "none", @@ -109721,7 +103645,7 @@ } }, { - "id": 17708, + "id": 16599, "properties": { "east": "low", "north": "none", @@ -109732,7 +103656,7 @@ } }, { - "id": 17709, + "id": 16600, "properties": { "east": "low", "north": "none", @@ -109743,7 +103667,7 @@ } }, { - "id": 17710, + "id": 16601, "properties": { "east": "low", "north": "none", @@ -109754,7 +103678,7 @@ } }, { - "id": 17711, + "id": 16602, "properties": { "east": "low", "north": "none", @@ -109765,7 +103689,7 @@ } }, { - "id": 17712, + "id": 16603, "properties": { "east": "low", "north": "none", @@ -109776,7 +103700,7 @@ } }, { - "id": 17713, + "id": 16604, "properties": { "east": "low", "north": "none", @@ -109787,7 +103711,7 @@ } }, { - "id": 17714, + "id": 16605, "properties": { "east": "low", "north": "none", @@ -109798,7 +103722,7 @@ } }, { - "id": 17715, + "id": 16606, "properties": { "east": "low", "north": "none", @@ -109809,7 +103733,7 @@ } }, { - "id": 17716, + "id": 16607, "properties": { "east": "low", "north": "none", @@ -109820,7 +103744,7 @@ } }, { - "id": 17717, + "id": 16608, "properties": { "east": "low", "north": "none", @@ -109831,7 +103755,7 @@ } }, { - "id": 17718, + "id": 16609, "properties": { "east": "low", "north": "none", @@ -109842,7 +103766,7 @@ } }, { - "id": 17719, + "id": 16610, "properties": { "east": "low", "north": "none", @@ -109853,7 +103777,7 @@ } }, { - "id": 17720, + "id": 16611, "properties": { "east": "low", "north": "none", @@ -109864,7 +103788,7 @@ } }, { - "id": 17721, + "id": 16612, "properties": { "east": "low", "north": "none", @@ -109875,7 +103799,7 @@ } }, { - "id": 17722, + "id": 16613, "properties": { "east": "low", "north": "none", @@ -109886,7 +103810,7 @@ } }, { - "id": 17723, + "id": 16614, "properties": { "east": "low", "north": "none", @@ -109897,7 +103821,7 @@ } }, { - "id": 17724, + "id": 16615, "properties": { "east": "low", "north": "none", @@ -109908,7 +103832,7 @@ } }, { - "id": 17725, + "id": 16616, "properties": { "east": "low", "north": "none", @@ -109919,7 +103843,7 @@ } }, { - "id": 17726, + "id": 16617, "properties": { "east": "low", "north": "none", @@ -109930,7 +103854,7 @@ } }, { - "id": 17727, + "id": 16618, "properties": { "east": "low", "north": "none", @@ -109941,7 +103865,7 @@ } }, { - "id": 17728, + "id": 16619, "properties": { "east": "low", "north": "none", @@ -109952,7 +103876,7 @@ } }, { - "id": 17729, + "id": 16620, "properties": { "east": "low", "north": "none", @@ -109963,7 +103887,7 @@ } }, { - "id": 17730, + "id": 16621, "properties": { "east": "low", "north": "none", @@ -109974,7 +103898,7 @@ } }, { - "id": 17731, + "id": 16622, "properties": { "east": "low", "north": "none", @@ -109985,7 +103909,7 @@ } }, { - "id": 17732, + "id": 16623, "properties": { "east": "low", "north": "low", @@ -109996,7 +103920,7 @@ } }, { - "id": 17733, + "id": 16624, "properties": { "east": "low", "north": "low", @@ -110007,7 +103931,7 @@ } }, { - "id": 17734, + "id": 16625, "properties": { "east": "low", "north": "low", @@ -110018,7 +103942,7 @@ } }, { - "id": 17735, + "id": 16626, "properties": { "east": "low", "north": "low", @@ -110029,7 +103953,7 @@ } }, { - "id": 17736, + "id": 16627, "properties": { "east": "low", "north": "low", @@ -110040,7 +103964,7 @@ } }, { - "id": 17737, + "id": 16628, "properties": { "east": "low", "north": "low", @@ -110051,7 +103975,7 @@ } }, { - "id": 17738, + "id": 16629, "properties": { "east": "low", "north": "low", @@ -110062,7 +103986,7 @@ } }, { - "id": 17739, + "id": 16630, "properties": { "east": "low", "north": "low", @@ -110073,7 +103997,7 @@ } }, { - "id": 17740, + "id": 16631, "properties": { "east": "low", "north": "low", @@ -110084,7 +104008,7 @@ } }, { - "id": 17741, + "id": 16632, "properties": { "east": "low", "north": "low", @@ -110095,7 +104019,7 @@ } }, { - "id": 17742, + "id": 16633, "properties": { "east": "low", "north": "low", @@ -110106,7 +104030,7 @@ } }, { - "id": 17743, + "id": 16634, "properties": { "east": "low", "north": "low", @@ -110117,7 +104041,7 @@ } }, { - "id": 17744, + "id": 16635, "properties": { "east": "low", "north": "low", @@ -110128,7 +104052,7 @@ } }, { - "id": 17745, + "id": 16636, "properties": { "east": "low", "north": "low", @@ -110139,7 +104063,7 @@ } }, { - "id": 17746, + "id": 16637, "properties": { "east": "low", "north": "low", @@ -110150,7 +104074,7 @@ } }, { - "id": 17747, + "id": 16638, "properties": { "east": "low", "north": "low", @@ -110161,7 +104085,7 @@ } }, { - "id": 17748, + "id": 16639, "properties": { "east": "low", "north": "low", @@ -110172,7 +104096,7 @@ } }, { - "id": 17749, + "id": 16640, "properties": { "east": "low", "north": "low", @@ -110183,7 +104107,7 @@ } }, { - "id": 17750, + "id": 16641, "properties": { "east": "low", "north": "low", @@ -110194,7 +104118,7 @@ } }, { - "id": 17751, + "id": 16642, "properties": { "east": "low", "north": "low", @@ -110205,7 +104129,7 @@ } }, { - "id": 17752, + "id": 16643, "properties": { "east": "low", "north": "low", @@ -110216,7 +104140,7 @@ } }, { - "id": 17753, + "id": 16644, "properties": { "east": "low", "north": "low", @@ -110227,7 +104151,7 @@ } }, { - "id": 17754, + "id": 16645, "properties": { "east": "low", "north": "low", @@ -110238,7 +104162,7 @@ } }, { - "id": 17755, + "id": 16646, "properties": { "east": "low", "north": "low", @@ -110249,7 +104173,7 @@ } }, { - "id": 17756, + "id": 16647, "properties": { "east": "low", "north": "low", @@ -110260,7 +104184,7 @@ } }, { - "id": 17757, + "id": 16648, "properties": { "east": "low", "north": "low", @@ -110271,7 +104195,7 @@ } }, { - "id": 17758, + "id": 16649, "properties": { "east": "low", "north": "low", @@ -110282,7 +104206,7 @@ } }, { - "id": 17759, + "id": 16650, "properties": { "east": "low", "north": "low", @@ -110293,7 +104217,7 @@ } }, { - "id": 17760, + "id": 16651, "properties": { "east": "low", "north": "low", @@ -110304,7 +104228,7 @@ } }, { - "id": 17761, + "id": 16652, "properties": { "east": "low", "north": "low", @@ -110315,7 +104239,7 @@ } }, { - "id": 17762, + "id": 16653, "properties": { "east": "low", "north": "low", @@ -110326,7 +104250,7 @@ } }, { - "id": 17763, + "id": 16654, "properties": { "east": "low", "north": "low", @@ -110337,7 +104261,7 @@ } }, { - "id": 17764, + "id": 16655, "properties": { "east": "low", "north": "low", @@ -110348,7 +104272,7 @@ } }, { - "id": 17765, + "id": 16656, "properties": { "east": "low", "north": "low", @@ -110359,7 +104283,7 @@ } }, { - "id": 17766, + "id": 16657, "properties": { "east": "low", "north": "low", @@ -110370,7 +104294,7 @@ } }, { - "id": 17767, + "id": 16658, "properties": { "east": "low", "north": "low", @@ -110381,7 +104305,7 @@ } }, { - "id": 17768, + "id": 16659, "properties": { "east": "low", "north": "tall", @@ -110392,7 +104316,7 @@ } }, { - "id": 17769, + "id": 16660, "properties": { "east": "low", "north": "tall", @@ -110403,7 +104327,7 @@ } }, { - "id": 17770, + "id": 16661, "properties": { "east": "low", "north": "tall", @@ -110414,7 +104338,7 @@ } }, { - "id": 17771, + "id": 16662, "properties": { "east": "low", "north": "tall", @@ -110425,7 +104349,7 @@ } }, { - "id": 17772, + "id": 16663, "properties": { "east": "low", "north": "tall", @@ -110436,7 +104360,7 @@ } }, { - "id": 17773, + "id": 16664, "properties": { "east": "low", "north": "tall", @@ -110447,7 +104371,7 @@ } }, { - "id": 17774, + "id": 16665, "properties": { "east": "low", "north": "tall", @@ -110458,7 +104382,7 @@ } }, { - "id": 17775, + "id": 16666, "properties": { "east": "low", "north": "tall", @@ -110469,7 +104393,7 @@ } }, { - "id": 17776, + "id": 16667, "properties": { "east": "low", "north": "tall", @@ -110480,7 +104404,7 @@ } }, { - "id": 17777, + "id": 16668, "properties": { "east": "low", "north": "tall", @@ -110491,7 +104415,7 @@ } }, { - "id": 17778, + "id": 16669, "properties": { "east": "low", "north": "tall", @@ -110502,7 +104426,7 @@ } }, { - "id": 17779, + "id": 16670, "properties": { "east": "low", "north": "tall", @@ -110513,7 +104437,7 @@ } }, { - "id": 17780, + "id": 16671, "properties": { "east": "low", "north": "tall", @@ -110524,7 +104448,7 @@ } }, { - "id": 17781, + "id": 16672, "properties": { "east": "low", "north": "tall", @@ -110535,7 +104459,7 @@ } }, { - "id": 17782, + "id": 16673, "properties": { "east": "low", "north": "tall", @@ -110546,7 +104470,7 @@ } }, { - "id": 17783, + "id": 16674, "properties": { "east": "low", "north": "tall", @@ -110557,7 +104481,7 @@ } }, { - "id": 17784, + "id": 16675, "properties": { "east": "low", "north": "tall", @@ -110568,7 +104492,7 @@ } }, { - "id": 17785, + "id": 16676, "properties": { "east": "low", "north": "tall", @@ -110579,7 +104503,7 @@ } }, { - "id": 17786, + "id": 16677, "properties": { "east": "low", "north": "tall", @@ -110590,7 +104514,7 @@ } }, { - "id": 17787, + "id": 16678, "properties": { "east": "low", "north": "tall", @@ -110601,7 +104525,7 @@ } }, { - "id": 17788, + "id": 16679, "properties": { "east": "low", "north": "tall", @@ -110612,7 +104536,7 @@ } }, { - "id": 17789, + "id": 16680, "properties": { "east": "low", "north": "tall", @@ -110623,7 +104547,7 @@ } }, { - "id": 17790, + "id": 16681, "properties": { "east": "low", "north": "tall", @@ -110634,7 +104558,7 @@ } }, { - "id": 17791, + "id": 16682, "properties": { "east": "low", "north": "tall", @@ -110645,7 +104569,7 @@ } }, { - "id": 17792, + "id": 16683, "properties": { "east": "low", "north": "tall", @@ -110656,7 +104580,7 @@ } }, { - "id": 17793, + "id": 16684, "properties": { "east": "low", "north": "tall", @@ -110667,7 +104591,7 @@ } }, { - "id": 17794, + "id": 16685, "properties": { "east": "low", "north": "tall", @@ -110678,7 +104602,7 @@ } }, { - "id": 17795, + "id": 16686, "properties": { "east": "low", "north": "tall", @@ -110689,7 +104613,7 @@ } }, { - "id": 17796, + "id": 16687, "properties": { "east": "low", "north": "tall", @@ -110700,7 +104624,7 @@ } }, { - "id": 17797, + "id": 16688, "properties": { "east": "low", "north": "tall", @@ -110711,7 +104635,7 @@ } }, { - "id": 17798, + "id": 16689, "properties": { "east": "low", "north": "tall", @@ -110722,7 +104646,7 @@ } }, { - "id": 17799, + "id": 16690, "properties": { "east": "low", "north": "tall", @@ -110733,7 +104657,7 @@ } }, { - "id": 17800, + "id": 16691, "properties": { "east": "low", "north": "tall", @@ -110744,7 +104668,7 @@ } }, { - "id": 17801, + "id": 16692, "properties": { "east": "low", "north": "tall", @@ -110755,7 +104679,7 @@ } }, { - "id": 17802, + "id": 16693, "properties": { "east": "low", "north": "tall", @@ -110766,7 +104690,7 @@ } }, { - "id": 17803, + "id": 16694, "properties": { "east": "low", "north": "tall", @@ -110777,7 +104701,7 @@ } }, { - "id": 17804, + "id": 16695, "properties": { "east": "tall", "north": "none", @@ -110788,7 +104712,7 @@ } }, { - "id": 17805, + "id": 16696, "properties": { "east": "tall", "north": "none", @@ -110799,7 +104723,7 @@ } }, { - "id": 17806, + "id": 16697, "properties": { "east": "tall", "north": "none", @@ -110810,7 +104734,7 @@ } }, { - "id": 17807, + "id": 16698, "properties": { "east": "tall", "north": "none", @@ -110821,7 +104745,7 @@ } }, { - "id": 17808, + "id": 16699, "properties": { "east": "tall", "north": "none", @@ -110832,7 +104756,7 @@ } }, { - "id": 17809, + "id": 16700, "properties": { "east": "tall", "north": "none", @@ -110843,7 +104767,7 @@ } }, { - "id": 17810, + "id": 16701, "properties": { "east": "tall", "north": "none", @@ -110854,7 +104778,7 @@ } }, { - "id": 17811, + "id": 16702, "properties": { "east": "tall", "north": "none", @@ -110865,7 +104789,7 @@ } }, { - "id": 17812, + "id": 16703, "properties": { "east": "tall", "north": "none", @@ -110876,7 +104800,7 @@ } }, { - "id": 17813, + "id": 16704, "properties": { "east": "tall", "north": "none", @@ -110887,7 +104811,7 @@ } }, { - "id": 17814, + "id": 16705, "properties": { "east": "tall", "north": "none", @@ -110898,7 +104822,7 @@ } }, { - "id": 17815, + "id": 16706, "properties": { "east": "tall", "north": "none", @@ -110909,7 +104833,7 @@ } }, { - "id": 17816, + "id": 16707, "properties": { "east": "tall", "north": "none", @@ -110920,7 +104844,7 @@ } }, { - "id": 17817, + "id": 16708, "properties": { "east": "tall", "north": "none", @@ -110931,7 +104855,7 @@ } }, { - "id": 17818, + "id": 16709, "properties": { "east": "tall", "north": "none", @@ -110942,7 +104866,7 @@ } }, { - "id": 17819, + "id": 16710, "properties": { "east": "tall", "north": "none", @@ -110953,7 +104877,7 @@ } }, { - "id": 17820, + "id": 16711, "properties": { "east": "tall", "north": "none", @@ -110964,7 +104888,7 @@ } }, { - "id": 17821, + "id": 16712, "properties": { "east": "tall", "north": "none", @@ -110975,7 +104899,7 @@ } }, { - "id": 17822, + "id": 16713, "properties": { "east": "tall", "north": "none", @@ -110986,7 +104910,7 @@ } }, { - "id": 17823, + "id": 16714, "properties": { "east": "tall", "north": "none", @@ -110997,7 +104921,7 @@ } }, { - "id": 17824, + "id": 16715, "properties": { "east": "tall", "north": "none", @@ -111008,7 +104932,7 @@ } }, { - "id": 17825, + "id": 16716, "properties": { "east": "tall", "north": "none", @@ -111019,7 +104943,7 @@ } }, { - "id": 17826, + "id": 16717, "properties": { "east": "tall", "north": "none", @@ -111030,7 +104954,7 @@ } }, { - "id": 17827, + "id": 16718, "properties": { "east": "tall", "north": "none", @@ -111041,7 +104965,7 @@ } }, { - "id": 17828, + "id": 16719, "properties": { "east": "tall", "north": "none", @@ -111052,7 +104976,7 @@ } }, { - "id": 17829, + "id": 16720, "properties": { "east": "tall", "north": "none", @@ -111063,7 +104987,7 @@ } }, { - "id": 17830, + "id": 16721, "properties": { "east": "tall", "north": "none", @@ -111074,7 +104998,7 @@ } }, { - "id": 17831, + "id": 16722, "properties": { "east": "tall", "north": "none", @@ -111085,7 +105009,7 @@ } }, { - "id": 17832, + "id": 16723, "properties": { "east": "tall", "north": "none", @@ -111096,7 +105020,7 @@ } }, { - "id": 17833, + "id": 16724, "properties": { "east": "tall", "north": "none", @@ -111107,7 +105031,7 @@ } }, { - "id": 17834, + "id": 16725, "properties": { "east": "tall", "north": "none", @@ -111118,7 +105042,7 @@ } }, { - "id": 17835, + "id": 16726, "properties": { "east": "tall", "north": "none", @@ -111129,7 +105053,7 @@ } }, { - "id": 17836, + "id": 16727, "properties": { "east": "tall", "north": "none", @@ -111140,7 +105064,7 @@ } }, { - "id": 17837, + "id": 16728, "properties": { "east": "tall", "north": "none", @@ -111151,7 +105075,7 @@ } }, { - "id": 17838, + "id": 16729, "properties": { "east": "tall", "north": "none", @@ -111162,7 +105086,7 @@ } }, { - "id": 17839, + "id": 16730, "properties": { "east": "tall", "north": "none", @@ -111173,7 +105097,7 @@ } }, { - "id": 17840, + "id": 16731, "properties": { "east": "tall", "north": "low", @@ -111184,7 +105108,7 @@ } }, { - "id": 17841, + "id": 16732, "properties": { "east": "tall", "north": "low", @@ -111195,7 +105119,7 @@ } }, { - "id": 17842, + "id": 16733, "properties": { "east": "tall", "north": "low", @@ -111206,7 +105130,7 @@ } }, { - "id": 17843, + "id": 16734, "properties": { "east": "tall", "north": "low", @@ -111217,7 +105141,7 @@ } }, { - "id": 17844, + "id": 16735, "properties": { "east": "tall", "north": "low", @@ -111228,7 +105152,7 @@ } }, { - "id": 17845, + "id": 16736, "properties": { "east": "tall", "north": "low", @@ -111239,7 +105163,7 @@ } }, { - "id": 17846, + "id": 16737, "properties": { "east": "tall", "north": "low", @@ -111250,7 +105174,7 @@ } }, { - "id": 17847, + "id": 16738, "properties": { "east": "tall", "north": "low", @@ -111261,7 +105185,7 @@ } }, { - "id": 17848, + "id": 16739, "properties": { "east": "tall", "north": "low", @@ -111272,7 +105196,7 @@ } }, { - "id": 17849, + "id": 16740, "properties": { "east": "tall", "north": "low", @@ -111283,7 +105207,7 @@ } }, { - "id": 17850, + "id": 16741, "properties": { "east": "tall", "north": "low", @@ -111294,7 +105218,7 @@ } }, { - "id": 17851, + "id": 16742, "properties": { "east": "tall", "north": "low", @@ -111305,7 +105229,7 @@ } }, { - "id": 17852, + "id": 16743, "properties": { "east": "tall", "north": "low", @@ -111316,7 +105240,7 @@ } }, { - "id": 17853, + "id": 16744, "properties": { "east": "tall", "north": "low", @@ -111327,7 +105251,7 @@ } }, { - "id": 17854, + "id": 16745, "properties": { "east": "tall", "north": "low", @@ -111338,7 +105262,7 @@ } }, { - "id": 17855, + "id": 16746, "properties": { "east": "tall", "north": "low", @@ -111349,7 +105273,7 @@ } }, { - "id": 17856, + "id": 16747, "properties": { "east": "tall", "north": "low", @@ -111360,7 +105284,7 @@ } }, { - "id": 17857, + "id": 16748, "properties": { "east": "tall", "north": "low", @@ -111371,7 +105295,7 @@ } }, { - "id": 17858, + "id": 16749, "properties": { "east": "tall", "north": "low", @@ -111382,7 +105306,7 @@ } }, { - "id": 17859, + "id": 16750, "properties": { "east": "tall", "north": "low", @@ -111393,7 +105317,7 @@ } }, { - "id": 17860, + "id": 16751, "properties": { "east": "tall", "north": "low", @@ -111404,7 +105328,7 @@ } }, { - "id": 17861, + "id": 16752, "properties": { "east": "tall", "north": "low", @@ -111415,7 +105339,7 @@ } }, { - "id": 17862, + "id": 16753, "properties": { "east": "tall", "north": "low", @@ -111426,7 +105350,7 @@ } }, { - "id": 17863, + "id": 16754, "properties": { "east": "tall", "north": "low", @@ -111437,7 +105361,7 @@ } }, { - "id": 17864, + "id": 16755, "properties": { "east": "tall", "north": "low", @@ -111448,7 +105372,7 @@ } }, { - "id": 17865, + "id": 16756, "properties": { "east": "tall", "north": "low", @@ -111459,7 +105383,7 @@ } }, { - "id": 17866, + "id": 16757, "properties": { "east": "tall", "north": "low", @@ -111470,7 +105394,7 @@ } }, { - "id": 17867, + "id": 16758, "properties": { "east": "tall", "north": "low", @@ -111481,7 +105405,7 @@ } }, { - "id": 17868, + "id": 16759, "properties": { "east": "tall", "north": "low", @@ -111492,7 +105416,7 @@ } }, { - "id": 17869, + "id": 16760, "properties": { "east": "tall", "north": "low", @@ -111503,7 +105427,7 @@ } }, { - "id": 17870, + "id": 16761, "properties": { "east": "tall", "north": "low", @@ -111514,7 +105438,7 @@ } }, { - "id": 17871, + "id": 16762, "properties": { "east": "tall", "north": "low", @@ -111525,7 +105449,7 @@ } }, { - "id": 17872, + "id": 16763, "properties": { "east": "tall", "north": "low", @@ -111536,7 +105460,7 @@ } }, { - "id": 17873, + "id": 16764, "properties": { "east": "tall", "north": "low", @@ -111547,7 +105471,7 @@ } }, { - "id": 17874, + "id": 16765, "properties": { "east": "tall", "north": "low", @@ -111558,7 +105482,7 @@ } }, { - "id": 17875, + "id": 16766, "properties": { "east": "tall", "north": "low", @@ -111569,7 +105493,7 @@ } }, { - "id": 17876, + "id": 16767, "properties": { "east": "tall", "north": "tall", @@ -111580,7 +105504,7 @@ } }, { - "id": 17877, + "id": 16768, "properties": { "east": "tall", "north": "tall", @@ -111591,7 +105515,7 @@ } }, { - "id": 17878, + "id": 16769, "properties": { "east": "tall", "north": "tall", @@ -111602,7 +105526,7 @@ } }, { - "id": 17879, + "id": 16770, "properties": { "east": "tall", "north": "tall", @@ -111613,7 +105537,7 @@ } }, { - "id": 17880, + "id": 16771, "properties": { "east": "tall", "north": "tall", @@ -111624,7 +105548,7 @@ } }, { - "id": 17881, + "id": 16772, "properties": { "east": "tall", "north": "tall", @@ -111635,7 +105559,7 @@ } }, { - "id": 17882, + "id": 16773, "properties": { "east": "tall", "north": "tall", @@ -111646,7 +105570,7 @@ } }, { - "id": 17883, + "id": 16774, "properties": { "east": "tall", "north": "tall", @@ -111657,7 +105581,7 @@ } }, { - "id": 17884, + "id": 16775, "properties": { "east": "tall", "north": "tall", @@ -111668,7 +105592,7 @@ } }, { - "id": 17885, + "id": 16776, "properties": { "east": "tall", "north": "tall", @@ -111679,7 +105603,7 @@ } }, { - "id": 17886, + "id": 16777, "properties": { "east": "tall", "north": "tall", @@ -111690,7 +105614,7 @@ } }, { - "id": 17887, + "id": 16778, "properties": { "east": "tall", "north": "tall", @@ -111701,7 +105625,7 @@ } }, { - "id": 17888, + "id": 16779, "properties": { "east": "tall", "north": "tall", @@ -111712,7 +105636,7 @@ } }, { - "id": 17889, + "id": 16780, "properties": { "east": "tall", "north": "tall", @@ -111723,7 +105647,7 @@ } }, { - "id": 17890, + "id": 16781, "properties": { "east": "tall", "north": "tall", @@ -111734,7 +105658,7 @@ } }, { - "id": 17891, + "id": 16782, "properties": { "east": "tall", "north": "tall", @@ -111745,7 +105669,7 @@ } }, { - "id": 17892, + "id": 16783, "properties": { "east": "tall", "north": "tall", @@ -111756,7 +105680,7 @@ } }, { - "id": 17893, + "id": 16784, "properties": { "east": "tall", "north": "tall", @@ -111767,7 +105691,7 @@ } }, { - "id": 17894, + "id": 16785, "properties": { "east": "tall", "north": "tall", @@ -111778,7 +105702,7 @@ } }, { - "id": 17895, + "id": 16786, "properties": { "east": "tall", "north": "tall", @@ -111789,7 +105713,7 @@ } }, { - "id": 17896, + "id": 16787, "properties": { "east": "tall", "north": "tall", @@ -111800,7 +105724,7 @@ } }, { - "id": 17897, + "id": 16788, "properties": { "east": "tall", "north": "tall", @@ -111811,7 +105735,7 @@ } }, { - "id": 17898, + "id": 16789, "properties": { "east": "tall", "north": "tall", @@ -111822,7 +105746,7 @@ } }, { - "id": 17899, + "id": 16790, "properties": { "east": "tall", "north": "tall", @@ -111833,7 +105757,7 @@ } }, { - "id": 17900, + "id": 16791, "properties": { "east": "tall", "north": "tall", @@ -111844,7 +105768,7 @@ } }, { - "id": 17901, + "id": 16792, "properties": { "east": "tall", "north": "tall", @@ -111855,7 +105779,7 @@ } }, { - "id": 17902, + "id": 16793, "properties": { "east": "tall", "north": "tall", @@ -111866,7 +105790,7 @@ } }, { - "id": 17903, + "id": 16794, "properties": { "east": "tall", "north": "tall", @@ -111877,7 +105801,7 @@ } }, { - "id": 17904, + "id": 16795, "properties": { "east": "tall", "north": "tall", @@ -111888,7 +105812,7 @@ } }, { - "id": 17905, + "id": 16796, "properties": { "east": "tall", "north": "tall", @@ -111899,7 +105823,7 @@ } }, { - "id": 17906, + "id": 16797, "properties": { "east": "tall", "north": "tall", @@ -111910,7 +105834,7 @@ } }, { - "id": 17907, + "id": 16798, "properties": { "east": "tall", "north": "tall", @@ -111921,7 +105845,7 @@ } }, { - "id": 17908, + "id": 16799, "properties": { "east": "tall", "north": "tall", @@ -111932,7 +105856,7 @@ } }, { - "id": 17909, + "id": 16800, "properties": { "east": "tall", "north": "tall", @@ -111943,7 +105867,7 @@ } }, { - "id": 17910, + "id": 16801, "properties": { "east": "tall", "north": "tall", @@ -111954,7 +105878,7 @@ } }, { - "id": 17911, + "id": 16802, "properties": { "east": "tall", "north": "tall", @@ -112035,97 +105959,97 @@ "states": [ { "default": true, - "id": 12837, + "id": 11760, "properties": { "rotation": "0" } }, { - "id": 12838, + "id": 11761, "properties": { "rotation": "1" } }, { - "id": 12839, + "id": 11762, "properties": { "rotation": "2" } }, { - "id": 12840, + "id": 11763, "properties": { "rotation": "3" } }, { - "id": 12841, + "id": 11764, "properties": { "rotation": "4" } }, { - "id": 12842, + "id": 11765, "properties": { "rotation": "5" } }, { - "id": 12843, + "id": 11766, "properties": { "rotation": "6" } }, { - "id": 12844, + "id": 11767, "properties": { "rotation": "7" } }, { - "id": 12845, + "id": 11768, "properties": { "rotation": "8" } }, { - "id": 12846, + "id": 11769, "properties": { "rotation": "9" } }, { - "id": 12847, + "id": 11770, "properties": { "rotation": "10" } }, { - "id": 12848, + "id": 11771, "properties": { "rotation": "11" } }, { - "id": 12849, + "id": 11772, "properties": { "rotation": "12" } }, { - "id": 12850, + "id": 11773, "properties": { "rotation": "13" } }, { - "id": 12851, + "id": 11774, "properties": { "rotation": "14" } }, { - "id": 12852, + "id": 11775, "properties": { "rotation": "15" } @@ -112309,7 +106233,7 @@ }, "states": [ { - "id": 23022, + "id": 21881, "properties": { "candles": "1", "lit": "true", @@ -112317,7 +106241,7 @@ } }, { - "id": 23023, + "id": 21882, "properties": { "candles": "1", "lit": "true", @@ -112325,7 +106249,7 @@ } }, { - "id": 23024, + "id": 21883, "properties": { "candles": "1", "lit": "false", @@ -112334,7 +106258,7 @@ }, { "default": true, - "id": 23025, + "id": 21884, "properties": { "candles": "1", "lit": "false", @@ -112342,7 +106266,7 @@ } }, { - "id": 23026, + "id": 21885, "properties": { "candles": "2", "lit": "true", @@ -112350,7 +106274,7 @@ } }, { - "id": 23027, + "id": 21886, "properties": { "candles": "2", "lit": "true", @@ -112358,7 +106282,7 @@ } }, { - "id": 23028, + "id": 21887, "properties": { "candles": "2", "lit": "false", @@ -112366,7 +106290,7 @@ } }, { - "id": 23029, + "id": 21888, "properties": { "candles": "2", "lit": "false", @@ -112374,7 +106298,7 @@ } }, { - "id": 23030, + "id": 21889, "properties": { "candles": "3", "lit": "true", @@ -112382,7 +106306,7 @@ } }, { - "id": 23031, + "id": 21890, "properties": { "candles": "3", "lit": "true", @@ -112390,7 +106314,7 @@ } }, { - "id": 23032, + "id": 21891, "properties": { "candles": "3", "lit": "false", @@ -112398,7 +106322,7 @@ } }, { - "id": 23033, + "id": 21892, "properties": { "candles": "3", "lit": "false", @@ -112406,7 +106330,7 @@ } }, { - "id": 23034, + "id": 21893, "properties": { "candles": "4", "lit": "true", @@ -112414,7 +106338,7 @@ } }, { - "id": 23035, + "id": 21894, "properties": { "candles": "4", "lit": "true", @@ -112422,7 +106346,7 @@ } }, { - "id": 23036, + "id": 21895, "properties": { "candles": "4", "lit": "false", @@ -112430,7 +106354,7 @@ } }, { - "id": 23037, + "id": 21896, "properties": { "candles": "4", "lit": "false", @@ -112453,14 +106377,14 @@ }, "states": [ { - "id": 23182, + "id": 22041, "properties": { "lit": "true" } }, { "default": true, - "id": 23183, + "id": 22042, "properties": { "lit": "false" } @@ -112476,7 +106400,7 @@ "states": [ { "default": true, - "id": 12701 + "id": 11624 } ] }, @@ -112488,7 +106412,7 @@ "states": [ { "default": true, - "id": 14835 + "id": 13758 } ] }, @@ -112501,7 +106425,7 @@ "states": [ { "default": true, - "id": 14851 + "id": 13774 } ] }, @@ -112521,25 +106445,25 @@ "states": [ { "default": true, - "id": 14792, + "id": 13715, "properties": { "facing": "north" } }, { - "id": 14793, + "id": 13716, "properties": { "facing": "south" } }, { - "id": 14794, + "id": 13717, "properties": { "facing": "west" } }, { - "id": 14795, + "id": 13718, "properties": { "facing": "east" } @@ -112564,38 +106488,38 @@ }, "states": [ { - "id": 14710, + "id": 13633, "properties": { "facing": "north" } }, { - "id": 14711, + "id": 13634, "properties": { "facing": "east" } }, { - "id": 14712, + "id": 13635, "properties": { "facing": "south" } }, { - "id": 14713, + "id": 13636, "properties": { "facing": "west" } }, { "default": true, - "id": 14714, + "id": 13637, "properties": { "facing": "up" } }, { - "id": 14715, + "id": 13638, "properties": { "facing": "down" } @@ -112611,7 +106535,7 @@ "states": [ { "default": true, - "id": 6904 + "id": 6131 } ] }, @@ -112645,7 +106569,7 @@ }, "states": [ { - "id": 11482, + "id": 10405, "properties": { "east": "true", "north": "true", @@ -112655,7 +106579,7 @@ } }, { - "id": 11483, + "id": 10406, "properties": { "east": "true", "north": "true", @@ -112665,7 +106589,7 @@ } }, { - "id": 11484, + "id": 10407, "properties": { "east": "true", "north": "true", @@ -112675,7 +106599,7 @@ } }, { - "id": 11485, + "id": 10408, "properties": { "east": "true", "north": "true", @@ -112685,7 +106609,7 @@ } }, { - "id": 11486, + "id": 10409, "properties": { "east": "true", "north": "true", @@ -112695,7 +106619,7 @@ } }, { - "id": 11487, + "id": 10410, "properties": { "east": "true", "north": "true", @@ -112705,7 +106629,7 @@ } }, { - "id": 11488, + "id": 10411, "properties": { "east": "true", "north": "true", @@ -112715,7 +106639,7 @@ } }, { - "id": 11489, + "id": 10412, "properties": { "east": "true", "north": "true", @@ -112725,7 +106649,7 @@ } }, { - "id": 11490, + "id": 10413, "properties": { "east": "true", "north": "false", @@ -112735,7 +106659,7 @@ } }, { - "id": 11491, + "id": 10414, "properties": { "east": "true", "north": "false", @@ -112745,7 +106669,7 @@ } }, { - "id": 11492, + "id": 10415, "properties": { "east": "true", "north": "false", @@ -112755,7 +106679,7 @@ } }, { - "id": 11493, + "id": 10416, "properties": { "east": "true", "north": "false", @@ -112765,7 +106689,7 @@ } }, { - "id": 11494, + "id": 10417, "properties": { "east": "true", "north": "false", @@ -112775,7 +106699,7 @@ } }, { - "id": 11495, + "id": 10418, "properties": { "east": "true", "north": "false", @@ -112785,7 +106709,7 @@ } }, { - "id": 11496, + "id": 10419, "properties": { "east": "true", "north": "false", @@ -112795,7 +106719,7 @@ } }, { - "id": 11497, + "id": 10420, "properties": { "east": "true", "north": "false", @@ -112805,7 +106729,7 @@ } }, { - "id": 11498, + "id": 10421, "properties": { "east": "false", "north": "true", @@ -112815,7 +106739,7 @@ } }, { - "id": 11499, + "id": 10422, "properties": { "east": "false", "north": "true", @@ -112825,7 +106749,7 @@ } }, { - "id": 11500, + "id": 10423, "properties": { "east": "false", "north": "true", @@ -112835,7 +106759,7 @@ } }, { - "id": 11501, + "id": 10424, "properties": { "east": "false", "north": "true", @@ -112845,7 +106769,7 @@ } }, { - "id": 11502, + "id": 10425, "properties": { "east": "false", "north": "true", @@ -112855,7 +106779,7 @@ } }, { - "id": 11503, + "id": 10426, "properties": { "east": "false", "north": "true", @@ -112865,7 +106789,7 @@ } }, { - "id": 11504, + "id": 10427, "properties": { "east": "false", "north": "true", @@ -112875,7 +106799,7 @@ } }, { - "id": 11505, + "id": 10428, "properties": { "east": "false", "north": "true", @@ -112885,7 +106809,7 @@ } }, { - "id": 11506, + "id": 10429, "properties": { "east": "false", "north": "false", @@ -112895,7 +106819,7 @@ } }, { - "id": 11507, + "id": 10430, "properties": { "east": "false", "north": "false", @@ -112905,7 +106829,7 @@ } }, { - "id": 11508, + "id": 10431, "properties": { "east": "false", "north": "false", @@ -112915,7 +106839,7 @@ } }, { - "id": 11509, + "id": 10432, "properties": { "east": "false", "north": "false", @@ -112925,7 +106849,7 @@ } }, { - "id": 11510, + "id": 10433, "properties": { "east": "false", "north": "false", @@ -112935,7 +106859,7 @@ } }, { - "id": 11511, + "id": 10434, "properties": { "east": "false", "north": "false", @@ -112945,7 +106869,7 @@ } }, { - "id": 11512, + "id": 10435, "properties": { "east": "false", "north": "false", @@ -112956,7 +106880,7 @@ }, { "default": true, - "id": 11513, + "id": 10436, "properties": { "east": "false", "north": "false", @@ -112969,13 +106893,13 @@ }, "minecraft:gray_terracotta": { "definition": { - "type": "minecraft:block", + "type": "minecraft:terracotta", "properties": {} }, "states": [ { "default": true, - "id": 11249 + "id": 10172 } ] }, @@ -112996,25 +106920,25 @@ "states": [ { "default": true, - "id": 13009, + "id": 11932, "properties": { "facing": "north" } }, { - "id": 13010, + "id": 11933, "properties": { "facing": "south" } }, { - "id": 13011, + "id": 11934, "properties": { "facing": "west" } }, { - "id": 13012, + "id": 11935, "properties": { "facing": "east" } @@ -113062,97 +106986,97 @@ "states": [ { "default": true, - "id": 12933, + "id": 11856, "properties": { "rotation": "0" } }, { - "id": 12934, + "id": 11857, "properties": { "rotation": "1" } }, { - "id": 12935, + "id": 11858, "properties": { "rotation": "2" } }, { - "id": 12936, + "id": 11859, "properties": { "rotation": "3" } }, { - "id": 12937, + "id": 11860, "properties": { "rotation": "4" } }, { - "id": 12938, + "id": 11861, "properties": { "rotation": "5" } }, { - "id": 12939, + "id": 11862, "properties": { "rotation": "6" } }, { - "id": 12940, + "id": 11863, "properties": { "rotation": "7" } }, { - "id": 12941, + "id": 11864, "properties": { "rotation": "8" } }, { - "id": 12942, + "id": 11865, "properties": { "rotation": "9" } }, { - "id": 12943, + "id": 11866, "properties": { "rotation": "10" } }, { - "id": 12944, + "id": 11867, "properties": { "rotation": "11" } }, { - "id": 12945, + "id": 11868, "properties": { "rotation": "12" } }, { - "id": 12946, + "id": 11869, "properties": { "rotation": "13" } }, { - "id": 12947, + "id": 11870, "properties": { "rotation": "14" } }, { - "id": 12948, + "id": 11871, "properties": { "rotation": "15" } @@ -113336,7 +107260,7 @@ }, "states": [ { - "id": 23118, + "id": 21977, "properties": { "candles": "1", "lit": "true", @@ -113344,7 +107268,7 @@ } }, { - "id": 23119, + "id": 21978, "properties": { "candles": "1", "lit": "true", @@ -113352,7 +107276,7 @@ } }, { - "id": 23120, + "id": 21979, "properties": { "candles": "1", "lit": "false", @@ -113361,7 +107285,7 @@ }, { "default": true, - "id": 23121, + "id": 21980, "properties": { "candles": "1", "lit": "false", @@ -113369,7 +107293,7 @@ } }, { - "id": 23122, + "id": 21981, "properties": { "candles": "2", "lit": "true", @@ -113377,7 +107301,7 @@ } }, { - "id": 23123, + "id": 21982, "properties": { "candles": "2", "lit": "true", @@ -113385,7 +107309,7 @@ } }, { - "id": 23124, + "id": 21983, "properties": { "candles": "2", "lit": "false", @@ -113393,7 +107317,7 @@ } }, { - "id": 23125, + "id": 21984, "properties": { "candles": "2", "lit": "false", @@ -113401,7 +107325,7 @@ } }, { - "id": 23126, + "id": 21985, "properties": { "candles": "3", "lit": "true", @@ -113409,7 +107333,7 @@ } }, { - "id": 23127, + "id": 21986, "properties": { "candles": "3", "lit": "true", @@ -113417,7 +107341,7 @@ } }, { - "id": 23128, + "id": 21987, "properties": { "candles": "3", "lit": "false", @@ -113425,7 +107349,7 @@ } }, { - "id": 23129, + "id": 21988, "properties": { "candles": "3", "lit": "false", @@ -113433,7 +107357,7 @@ } }, { - "id": 23130, + "id": 21989, "properties": { "candles": "4", "lit": "true", @@ -113441,7 +107365,7 @@ } }, { - "id": 23131, + "id": 21990, "properties": { "candles": "4", "lit": "true", @@ -113449,7 +107373,7 @@ } }, { - "id": 23132, + "id": 21991, "properties": { "candles": "4", "lit": "false", @@ -113457,7 +107381,7 @@ } }, { - "id": 23133, + "id": 21992, "properties": { "candles": "4", "lit": "false", @@ -113480,14 +107404,14 @@ }, "states": [ { - "id": 23194, + "id": 22053, "properties": { "lit": "true" } }, { "default": true, - "id": 23195, + "id": 22054, "properties": { "lit": "false" } @@ -113503,7 +107427,7 @@ "states": [ { "default": true, - "id": 12707 + "id": 11630 } ] }, @@ -113515,7 +107439,7 @@ "states": [ { "default": true, - "id": 14841 + "id": 13764 } ] }, @@ -113528,7 +107452,7 @@ "states": [ { "default": true, - "id": 14857 + "id": 13780 } ] }, @@ -113548,25 +107472,25 @@ "states": [ { "default": true, - "id": 14816, + "id": 13739, "properties": { "facing": "north" } }, { - "id": 14817, + "id": 13740, "properties": { "facing": "south" } }, { - "id": 14818, + "id": 13741, "properties": { "facing": "west" } }, { - "id": 14819, + "id": 13742, "properties": { "facing": "east" } @@ -113591,38 +107515,38 @@ }, "states": [ { - "id": 14746, + "id": 13669, "properties": { "facing": "north" } }, { - "id": 14747, + "id": 13670, "properties": { "facing": "east" } }, { - "id": 14748, + "id": 13671, "properties": { "facing": "south" } }, { - "id": 14749, + "id": 13672, "properties": { "facing": "west" } }, { "default": true, - "id": 14750, + "id": 13673, "properties": { "facing": "up" } }, { - "id": 14751, + "id": 13674, "properties": { "facing": "down" } @@ -113638,7 +107562,7 @@ "states": [ { "default": true, - "id": 6910 + "id": 6137 } ] }, @@ -113672,7 +107596,7 @@ }, "states": [ { - "id": 11674, + "id": 10597, "properties": { "east": "true", "north": "true", @@ -113682,7 +107606,7 @@ } }, { - "id": 11675, + "id": 10598, "properties": { "east": "true", "north": "true", @@ -113692,7 +107616,7 @@ } }, { - "id": 11676, + "id": 10599, "properties": { "east": "true", "north": "true", @@ -113702,7 +107626,7 @@ } }, { - "id": 11677, + "id": 10600, "properties": { "east": "true", "north": "true", @@ -113712,7 +107636,7 @@ } }, { - "id": 11678, + "id": 10601, "properties": { "east": "true", "north": "true", @@ -113722,7 +107646,7 @@ } }, { - "id": 11679, + "id": 10602, "properties": { "east": "true", "north": "true", @@ -113732,7 +107656,7 @@ } }, { - "id": 11680, + "id": 10603, "properties": { "east": "true", "north": "true", @@ -113742,7 +107666,7 @@ } }, { - "id": 11681, + "id": 10604, "properties": { "east": "true", "north": "true", @@ -113752,7 +107676,7 @@ } }, { - "id": 11682, + "id": 10605, "properties": { "east": "true", "north": "false", @@ -113762,7 +107686,7 @@ } }, { - "id": 11683, + "id": 10606, "properties": { "east": "true", "north": "false", @@ -113772,7 +107696,7 @@ } }, { - "id": 11684, + "id": 10607, "properties": { "east": "true", "north": "false", @@ -113782,7 +107706,7 @@ } }, { - "id": 11685, + "id": 10608, "properties": { "east": "true", "north": "false", @@ -113792,7 +107716,7 @@ } }, { - "id": 11686, + "id": 10609, "properties": { "east": "true", "north": "false", @@ -113802,7 +107726,7 @@ } }, { - "id": 11687, + "id": 10610, "properties": { "east": "true", "north": "false", @@ -113812,7 +107736,7 @@ } }, { - "id": 11688, + "id": 10611, "properties": { "east": "true", "north": "false", @@ -113822,7 +107746,7 @@ } }, { - "id": 11689, + "id": 10612, "properties": { "east": "true", "north": "false", @@ -113832,7 +107756,7 @@ } }, { - "id": 11690, + "id": 10613, "properties": { "east": "false", "north": "true", @@ -113842,7 +107766,7 @@ } }, { - "id": 11691, + "id": 10614, "properties": { "east": "false", "north": "true", @@ -113852,7 +107776,7 @@ } }, { - "id": 11692, + "id": 10615, "properties": { "east": "false", "north": "true", @@ -113862,7 +107786,7 @@ } }, { - "id": 11693, + "id": 10616, "properties": { "east": "false", "north": "true", @@ -113872,7 +107796,7 @@ } }, { - "id": 11694, + "id": 10617, "properties": { "east": "false", "north": "true", @@ -113882,7 +107806,7 @@ } }, { - "id": 11695, + "id": 10618, "properties": { "east": "false", "north": "true", @@ -113892,7 +107816,7 @@ } }, { - "id": 11696, + "id": 10619, "properties": { "east": "false", "north": "true", @@ -113902,7 +107826,7 @@ } }, { - "id": 11697, + "id": 10620, "properties": { "east": "false", "north": "true", @@ -113912,7 +107836,7 @@ } }, { - "id": 11698, + "id": 10621, "properties": { "east": "false", "north": "false", @@ -113922,7 +107846,7 @@ } }, { - "id": 11699, + "id": 10622, "properties": { "east": "false", "north": "false", @@ -113932,7 +107856,7 @@ } }, { - "id": 11700, + "id": 10623, "properties": { "east": "false", "north": "false", @@ -113942,7 +107866,7 @@ } }, { - "id": 11701, + "id": 10624, "properties": { "east": "false", "north": "false", @@ -113952,7 +107876,7 @@ } }, { - "id": 11702, + "id": 10625, "properties": { "east": "false", "north": "false", @@ -113962,7 +107886,7 @@ } }, { - "id": 11703, + "id": 10626, "properties": { "east": "false", "north": "false", @@ -113972,7 +107896,7 @@ } }, { - "id": 11704, + "id": 10627, "properties": { "east": "false", "north": "false", @@ -113983,7 +107907,7 @@ }, { "default": true, - "id": 11705, + "id": 10628, "properties": { "east": "false", "north": "false", @@ -113996,13 +107920,13 @@ }, "minecraft:green_terracotta": { "definition": { - "type": "minecraft:block", + "type": "minecraft:terracotta", "properties": {} }, "states": [ { "default": true, - "id": 11255 + "id": 10178 } ] }, @@ -114023,25 +107947,25 @@ "states": [ { "default": true, - "id": 13033, + "id": 11956, "properties": { "facing": "north" } }, { - "id": 13034, + "id": 11957, "properties": { "facing": "south" } }, { - "id": 13035, + "id": 11958, "properties": { "facing": "west" } }, { - "id": 13036, + "id": 11959, "properties": { "facing": "east" } @@ -114080,28 +108004,28 @@ }, "states": [ { - "id": 20570, + "id": 19461, "properties": { "face": "floor", "facing": "north" } }, { - "id": 20571, + "id": 19462, "properties": { "face": "floor", "facing": "south" } }, { - "id": 20572, + "id": 19463, "properties": { "face": "floor", "facing": "west" } }, { - "id": 20573, + "id": 19464, "properties": { "face": "floor", "facing": "east" @@ -114109,56 +108033,56 @@ }, { "default": true, - "id": 20574, + "id": 19465, "properties": { "face": "wall", "facing": "north" } }, { - "id": 20575, + "id": 19466, "properties": { "face": "wall", "facing": "south" } }, { - "id": 20576, + "id": 19467, "properties": { "face": "wall", "facing": "west" } }, { - "id": 20577, + "id": 19468, "properties": { "face": "wall", "facing": "east" } }, { - "id": 20578, + "id": 19469, "properties": { "face": "ceiling", "facing": "north" } }, { - "id": 20579, + "id": 19470, "properties": { "face": "ceiling", "facing": "south" } }, { - "id": 20580, + "id": 19471, "properties": { "face": "ceiling", "facing": "west" } }, { - "id": 20581, + "id": 19472, "properties": { "face": "ceiling", "facing": "east" @@ -114179,14 +108103,14 @@ }, "states": [ { - "id": 27717, + "id": 25960, "properties": { "waterlogged": "true" } }, { "default": true, - "id": 27718, + "id": 25961, "properties": { "waterlogged": "false" } @@ -114207,20 +108131,20 @@ }, "states": [ { - "id": 12691, + "id": 11614, "properties": { "axis": "x" } }, { "default": true, - "id": 12692, + "id": 11615, "properties": { "axis": "y" } }, { - "id": 12693, + "id": 11616, "properties": { "axis": "z" } @@ -114240,14 +108164,14 @@ }, "states": [ { - "id": 29499, + "id": 27742, "properties": { "waterlogged": "true" } }, { "default": true, - "id": 29500, + "id": 27743, "properties": { "waterlogged": "false" } @@ -114284,97 +108208,97 @@ "states": [ { "default": true, - "id": 11045, + "id": 9968, "properties": { "power": "0" } }, { - "id": 11046, + "id": 9969, "properties": { "power": "1" } }, { - "id": 11047, + "id": 9970, "properties": { "power": "2" } }, { - "id": 11048, + "id": 9971, "properties": { "power": "3" } }, { - "id": 11049, + "id": 9972, "properties": { "power": "4" } }, { - "id": 11050, + "id": 9973, "properties": { "power": "5" } }, { - "id": 11051, + "id": 9974, "properties": { "power": "6" } }, { - "id": 11052, + "id": 9975, "properties": { "power": "7" } }, { - "id": 11053, + "id": 9976, "properties": { "power": "8" } }, { - "id": 11054, + "id": 9977, "properties": { "power": "9" } }, { - "id": 11055, + "id": 9978, "properties": { "power": "10" } }, { - "id": 11056, + "id": 9979, "properties": { "power": "11" } }, { - "id": 11057, + "id": 9980, "properties": { "power": "12" } }, { - "id": 11058, + "id": 9981, "properties": { "power": "13" } }, { - "id": 11059, + "id": 9982, "properties": { "power": "14" } }, { - "id": 11060, + "id": 9983, "properties": { "power": "15" } @@ -114389,7 +108313,7 @@ "states": [ { "default": true, - "id": 21614 + "id": 20473 } ] }, @@ -114401,7 +108325,7 @@ "states": [ { "default": true, - "id": 21615 + "id": 20474 } ] }, @@ -114426,70 +108350,70 @@ "states": [ { "default": true, - "id": 11111, + "id": 10034, "properties": { "enabled": "true", "facing": "down" } }, { - "id": 11112, + "id": 10035, "properties": { "enabled": "true", "facing": "north" } }, { - "id": 11113, + "id": 10036, "properties": { "enabled": "true", "facing": "south" } }, { - "id": 11114, + "id": 10037, "properties": { "enabled": "true", "facing": "west" } }, { - "id": 11115, + "id": 10038, "properties": { "enabled": "true", "facing": "east" } }, { - "id": 11116, + "id": 10039, "properties": { "enabled": "false", "facing": "down" } }, { - "id": 11117, + "id": 10040, "properties": { "enabled": "false", "facing": "north" } }, { - "id": 11118, + "id": 10041, "properties": { "enabled": "false", "facing": "south" } }, { - "id": 11119, + "id": 10042, "properties": { "enabled": "false", "facing": "west" } }, { - "id": 11120, + "id": 10043, "properties": { "enabled": "false", "facing": "east" @@ -114512,13 +108436,13 @@ "states": [ { "default": true, - "id": 14963, + "id": 13854, "properties": { "waterlogged": "true" } }, { - "id": 14964, + "id": 13855, "properties": { "waterlogged": "false" } @@ -114534,7 +108458,7 @@ "states": [ { "default": true, - "id": 14944 + "id": 13835 } ] }, @@ -114553,13 +108477,13 @@ "states": [ { "default": true, - "id": 14983, + "id": 13874, "properties": { "waterlogged": "true" } }, { - "id": 14984, + "id": 13875, "properties": { "waterlogged": "false" } @@ -114587,56 +108511,56 @@ "states": [ { "default": true, - "id": 15057, + "id": 13948, "properties": { "facing": "north", "waterlogged": "true" } }, { - "id": 15058, + "id": 13949, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 15059, + "id": 13950, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 15060, + "id": 13951, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 15061, + "id": 13952, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 15062, + "id": 13953, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 15063, + "id": 13954, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 15064, + "id": 13955, "properties": { "facing": "east", "waterlogged": "false" @@ -114652,7 +108576,7 @@ "states": [ { "default": true, - "id": 6726 + "id": 5958 } ] }, @@ -114665,7 +108589,7 @@ "states": [ { "default": true, - "id": 7564 + "id": 6791 } ] }, @@ -114678,7 +108602,7 @@ "states": [ { "default": true, - "id": 7560 + "id": 6787 } ] }, @@ -114691,7 +108615,7 @@ "states": [ { "default": true, - "id": 7563 + "id": 6790 } ] }, @@ -114710,20 +108634,20 @@ }, "states": [ { - "id": 29371, + "id": 27614, "properties": { "axis": "x" } }, { "default": true, - "id": 29372, + "id": 27615, "properties": { "axis": "y" } }, { - "id": 29373, + "id": 27616, "properties": { "axis": "z" } @@ -114739,7 +108663,7 @@ "states": [ { "default": true, - "id": 7562 + "id": 6789 } ] }, @@ -114752,7 +108676,7 @@ "states": [ { "default": true, - "id": 7559 + "id": 6786 } ] }, @@ -114765,7 +108689,7 @@ "states": [ { "default": true, - "id": 7561 + "id": 6788 } ] }, @@ -114798,7 +108722,7 @@ }, "states": [ { - "id": 7757, + "id": 6984, "properties": { "east": "true", "north": "true", @@ -114808,7 +108732,7 @@ } }, { - "id": 7758, + "id": 6985, "properties": { "east": "true", "north": "true", @@ -114818,7 +108742,7 @@ } }, { - "id": 7759, + "id": 6986, "properties": { "east": "true", "north": "true", @@ -114828,7 +108752,7 @@ } }, { - "id": 7760, + "id": 6987, "properties": { "east": "true", "north": "true", @@ -114838,7 +108762,7 @@ } }, { - "id": 7761, + "id": 6988, "properties": { "east": "true", "north": "true", @@ -114848,7 +108772,7 @@ } }, { - "id": 7762, + "id": 6989, "properties": { "east": "true", "north": "true", @@ -114858,7 +108782,7 @@ } }, { - "id": 7763, + "id": 6990, "properties": { "east": "true", "north": "true", @@ -114868,7 +108792,7 @@ } }, { - "id": 7764, + "id": 6991, "properties": { "east": "true", "north": "true", @@ -114878,7 +108802,7 @@ } }, { - "id": 7765, + "id": 6992, "properties": { "east": "true", "north": "false", @@ -114888,7 +108812,7 @@ } }, { - "id": 7766, + "id": 6993, "properties": { "east": "true", "north": "false", @@ -114898,7 +108822,7 @@ } }, { - "id": 7767, + "id": 6994, "properties": { "east": "true", "north": "false", @@ -114908,7 +108832,7 @@ } }, { - "id": 7768, + "id": 6995, "properties": { "east": "true", "north": "false", @@ -114918,7 +108842,7 @@ } }, { - "id": 7769, + "id": 6996, "properties": { "east": "true", "north": "false", @@ -114928,7 +108852,7 @@ } }, { - "id": 7770, + "id": 6997, "properties": { "east": "true", "north": "false", @@ -114938,7 +108862,7 @@ } }, { - "id": 7771, + "id": 6998, "properties": { "east": "true", "north": "false", @@ -114948,7 +108872,7 @@ } }, { - "id": 7772, + "id": 6999, "properties": { "east": "true", "north": "false", @@ -114958,7 +108882,7 @@ } }, { - "id": 7773, + "id": 7000, "properties": { "east": "false", "north": "true", @@ -114968,7 +108892,7 @@ } }, { - "id": 7774, + "id": 7001, "properties": { "east": "false", "north": "true", @@ -114978,7 +108902,7 @@ } }, { - "id": 7775, + "id": 7002, "properties": { "east": "false", "north": "true", @@ -114988,7 +108912,7 @@ } }, { - "id": 7776, + "id": 7003, "properties": { "east": "false", "north": "true", @@ -114998,7 +108922,7 @@ } }, { - "id": 7777, + "id": 7004, "properties": { "east": "false", "north": "true", @@ -115008,7 +108932,7 @@ } }, { - "id": 7778, + "id": 7005, "properties": { "east": "false", "north": "true", @@ -115018,7 +108942,7 @@ } }, { - "id": 7779, + "id": 7006, "properties": { "east": "false", "north": "true", @@ -115028,7 +108952,7 @@ } }, { - "id": 7780, + "id": 7007, "properties": { "east": "false", "north": "true", @@ -115038,7 +108962,7 @@ } }, { - "id": 7781, + "id": 7008, "properties": { "east": "false", "north": "false", @@ -115048,7 +108972,7 @@ } }, { - "id": 7782, + "id": 7009, "properties": { "east": "false", "north": "false", @@ -115058,7 +108982,7 @@ } }, { - "id": 7783, + "id": 7010, "properties": { "east": "false", "north": "false", @@ -115068,7 +108992,7 @@ } }, { - "id": 7784, + "id": 7011, "properties": { "east": "false", "north": "false", @@ -115078,7 +109002,7 @@ } }, { - "id": 7785, + "id": 7012, "properties": { "east": "false", "north": "false", @@ -115088,7 +109012,7 @@ } }, { - "id": 7786, + "id": 7013, "properties": { "east": "false", "north": "false", @@ -115098,7 +109022,7 @@ } }, { - "id": 7787, + "id": 7014, "properties": { "east": "false", "north": "false", @@ -115109,7 +109033,7 @@ }, { "default": true, - "id": 7788, + "id": 7015, "properties": { "east": "false", "north": "false", @@ -115132,68 +109056,6 @@ } ] }, - "minecraft:iron_chain": { - "definition": { - "type": "minecraft:chain", - "properties": {} - }, - "properties": { - "axis": [ - "x", - "y", - "z" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 8045, - "properties": { - "axis": "x", - "waterlogged": "true" - } - }, - { - "id": 8046, - "properties": { - "axis": "x", - "waterlogged": "false" - } - }, - { - "id": 8047, - "properties": { - "axis": "y", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 8048, - "properties": { - "axis": "y", - "waterlogged": "false" - } - }, - { - "id": 8049, - "properties": { - "axis": "z", - "waterlogged": "true" - } - }, - { - "id": 8050, - "properties": { - "axis": "z", - "waterlogged": "false" - } - } - ] - }, "minecraft:iron_door": { "definition": { "type": "minecraft:door", @@ -115226,7 +109088,7 @@ }, "states": [ { - "id": 6596, + "id": 5828, "properties": { "facing": "north", "half": "upper", @@ -115236,7 +109098,7 @@ } }, { - "id": 6597, + "id": 5829, "properties": { "facing": "north", "half": "upper", @@ -115246,7 +109108,7 @@ } }, { - "id": 6598, + "id": 5830, "properties": { "facing": "north", "half": "upper", @@ -115256,7 +109118,7 @@ } }, { - "id": 6599, + "id": 5831, "properties": { "facing": "north", "half": "upper", @@ -115266,7 +109128,7 @@ } }, { - "id": 6600, + "id": 5832, "properties": { "facing": "north", "half": "upper", @@ -115276,7 +109138,7 @@ } }, { - "id": 6601, + "id": 5833, "properties": { "facing": "north", "half": "upper", @@ -115286,7 +109148,7 @@ } }, { - "id": 6602, + "id": 5834, "properties": { "facing": "north", "half": "upper", @@ -115296,7 +109158,7 @@ } }, { - "id": 6603, + "id": 5835, "properties": { "facing": "north", "half": "upper", @@ -115306,7 +109168,7 @@ } }, { - "id": 6604, + "id": 5836, "properties": { "facing": "north", "half": "lower", @@ -115316,7 +109178,7 @@ } }, { - "id": 6605, + "id": 5837, "properties": { "facing": "north", "half": "lower", @@ -115326,7 +109188,7 @@ } }, { - "id": 6606, + "id": 5838, "properties": { "facing": "north", "half": "lower", @@ -115337,7 +109199,7 @@ }, { "default": true, - "id": 6607, + "id": 5839, "properties": { "facing": "north", "half": "lower", @@ -115347,7 +109209,7 @@ } }, { - "id": 6608, + "id": 5840, "properties": { "facing": "north", "half": "lower", @@ -115357,7 +109219,7 @@ } }, { - "id": 6609, + "id": 5841, "properties": { "facing": "north", "half": "lower", @@ -115367,7 +109229,7 @@ } }, { - "id": 6610, + "id": 5842, "properties": { "facing": "north", "half": "lower", @@ -115377,7 +109239,7 @@ } }, { - "id": 6611, + "id": 5843, "properties": { "facing": "north", "half": "lower", @@ -115387,7 +109249,7 @@ } }, { - "id": 6612, + "id": 5844, "properties": { "facing": "south", "half": "upper", @@ -115397,7 +109259,7 @@ } }, { - "id": 6613, + "id": 5845, "properties": { "facing": "south", "half": "upper", @@ -115407,7 +109269,7 @@ } }, { - "id": 6614, + "id": 5846, "properties": { "facing": "south", "half": "upper", @@ -115417,7 +109279,7 @@ } }, { - "id": 6615, + "id": 5847, "properties": { "facing": "south", "half": "upper", @@ -115427,7 +109289,7 @@ } }, { - "id": 6616, + "id": 5848, "properties": { "facing": "south", "half": "upper", @@ -115437,7 +109299,7 @@ } }, { - "id": 6617, + "id": 5849, "properties": { "facing": "south", "half": "upper", @@ -115447,7 +109309,7 @@ } }, { - "id": 6618, + "id": 5850, "properties": { "facing": "south", "half": "upper", @@ -115457,7 +109319,7 @@ } }, { - "id": 6619, + "id": 5851, "properties": { "facing": "south", "half": "upper", @@ -115467,7 +109329,7 @@ } }, { - "id": 6620, + "id": 5852, "properties": { "facing": "south", "half": "lower", @@ -115477,7 +109339,7 @@ } }, { - "id": 6621, + "id": 5853, "properties": { "facing": "south", "half": "lower", @@ -115487,7 +109349,7 @@ } }, { - "id": 6622, + "id": 5854, "properties": { "facing": "south", "half": "lower", @@ -115497,7 +109359,7 @@ } }, { - "id": 6623, + "id": 5855, "properties": { "facing": "south", "half": "lower", @@ -115507,7 +109369,7 @@ } }, { - "id": 6624, + "id": 5856, "properties": { "facing": "south", "half": "lower", @@ -115517,7 +109379,7 @@ } }, { - "id": 6625, + "id": 5857, "properties": { "facing": "south", "half": "lower", @@ -115527,7 +109389,7 @@ } }, { - "id": 6626, + "id": 5858, "properties": { "facing": "south", "half": "lower", @@ -115537,7 +109399,7 @@ } }, { - "id": 6627, + "id": 5859, "properties": { "facing": "south", "half": "lower", @@ -115547,7 +109409,7 @@ } }, { - "id": 6628, + "id": 5860, "properties": { "facing": "west", "half": "upper", @@ -115557,7 +109419,7 @@ } }, { - "id": 6629, + "id": 5861, "properties": { "facing": "west", "half": "upper", @@ -115567,7 +109429,7 @@ } }, { - "id": 6630, + "id": 5862, "properties": { "facing": "west", "half": "upper", @@ -115577,7 +109439,7 @@ } }, { - "id": 6631, + "id": 5863, "properties": { "facing": "west", "half": "upper", @@ -115587,7 +109449,7 @@ } }, { - "id": 6632, + "id": 5864, "properties": { "facing": "west", "half": "upper", @@ -115597,7 +109459,7 @@ } }, { - "id": 6633, + "id": 5865, "properties": { "facing": "west", "half": "upper", @@ -115607,7 +109469,7 @@ } }, { - "id": 6634, + "id": 5866, "properties": { "facing": "west", "half": "upper", @@ -115617,7 +109479,7 @@ } }, { - "id": 6635, + "id": 5867, "properties": { "facing": "west", "half": "upper", @@ -115627,7 +109489,7 @@ } }, { - "id": 6636, + "id": 5868, "properties": { "facing": "west", "half": "lower", @@ -115637,7 +109499,7 @@ } }, { - "id": 6637, + "id": 5869, "properties": { "facing": "west", "half": "lower", @@ -115647,7 +109509,7 @@ } }, { - "id": 6638, + "id": 5870, "properties": { "facing": "west", "half": "lower", @@ -115657,7 +109519,7 @@ } }, { - "id": 6639, + "id": 5871, "properties": { "facing": "west", "half": "lower", @@ -115667,7 +109529,7 @@ } }, { - "id": 6640, + "id": 5872, "properties": { "facing": "west", "half": "lower", @@ -115677,7 +109539,7 @@ } }, { - "id": 6641, + "id": 5873, "properties": { "facing": "west", "half": "lower", @@ -115687,7 +109549,7 @@ } }, { - "id": 6642, + "id": 5874, "properties": { "facing": "west", "half": "lower", @@ -115697,7 +109559,7 @@ } }, { - "id": 6643, + "id": 5875, "properties": { "facing": "west", "half": "lower", @@ -115707,7 +109569,7 @@ } }, { - "id": 6644, + "id": 5876, "properties": { "facing": "east", "half": "upper", @@ -115717,7 +109579,7 @@ } }, { - "id": 6645, + "id": 5877, "properties": { "facing": "east", "half": "upper", @@ -115727,7 +109589,7 @@ } }, { - "id": 6646, + "id": 5878, "properties": { "facing": "east", "half": "upper", @@ -115737,7 +109599,7 @@ } }, { - "id": 6647, + "id": 5879, "properties": { "facing": "east", "half": "upper", @@ -115747,7 +109609,7 @@ } }, { - "id": 6648, + "id": 5880, "properties": { "facing": "east", "half": "upper", @@ -115757,7 +109619,7 @@ } }, { - "id": 6649, + "id": 5881, "properties": { "facing": "east", "half": "upper", @@ -115767,7 +109629,7 @@ } }, { - "id": 6650, + "id": 5882, "properties": { "facing": "east", "half": "upper", @@ -115777,7 +109639,7 @@ } }, { - "id": 6651, + "id": 5883, "properties": { "facing": "east", "half": "upper", @@ -115787,7 +109649,7 @@ } }, { - "id": 6652, + "id": 5884, "properties": { "facing": "east", "half": "lower", @@ -115797,7 +109659,7 @@ } }, { - "id": 6653, + "id": 5885, "properties": { "facing": "east", "half": "lower", @@ -115807,7 +109669,7 @@ } }, { - "id": 6654, + "id": 5886, "properties": { "facing": "east", "half": "lower", @@ -115817,7 +109679,7 @@ } }, { - "id": 6655, + "id": 5887, "properties": { "facing": "east", "half": "lower", @@ -115827,7 +109689,7 @@ } }, { - "id": 6656, + "id": 5888, "properties": { "facing": "east", "half": "lower", @@ -115837,7 +109699,7 @@ } }, { - "id": 6657, + "id": 5889, "properties": { "facing": "east", "half": "lower", @@ -115847,7 +109709,7 @@ } }, { - "id": 6658, + "id": 5890, "properties": { "facing": "east", "half": "lower", @@ -115857,7 +109719,7 @@ } }, { - "id": 6659, + "id": 5891, "properties": { "facing": "east", "half": "lower", @@ -115913,7 +109775,7 @@ }, "states": [ { - "id": 12365, + "id": 11288, "properties": { "facing": "north", "half": "top", @@ -115923,7 +109785,7 @@ } }, { - "id": 12366, + "id": 11289, "properties": { "facing": "north", "half": "top", @@ -115933,7 +109795,7 @@ } }, { - "id": 12367, + "id": 11290, "properties": { "facing": "north", "half": "top", @@ -115943,7 +109805,7 @@ } }, { - "id": 12368, + "id": 11291, "properties": { "facing": "north", "half": "top", @@ -115953,7 +109815,7 @@ } }, { - "id": 12369, + "id": 11292, "properties": { "facing": "north", "half": "top", @@ -115963,7 +109825,7 @@ } }, { - "id": 12370, + "id": 11293, "properties": { "facing": "north", "half": "top", @@ -115973,7 +109835,7 @@ } }, { - "id": 12371, + "id": 11294, "properties": { "facing": "north", "half": "top", @@ -115983,7 +109845,7 @@ } }, { - "id": 12372, + "id": 11295, "properties": { "facing": "north", "half": "top", @@ -115993,7 +109855,7 @@ } }, { - "id": 12373, + "id": 11296, "properties": { "facing": "north", "half": "bottom", @@ -116003,7 +109865,7 @@ } }, { - "id": 12374, + "id": 11297, "properties": { "facing": "north", "half": "bottom", @@ -116013,7 +109875,7 @@ } }, { - "id": 12375, + "id": 11298, "properties": { "facing": "north", "half": "bottom", @@ -116023,7 +109885,7 @@ } }, { - "id": 12376, + "id": 11299, "properties": { "facing": "north", "half": "bottom", @@ -116033,7 +109895,7 @@ } }, { - "id": 12377, + "id": 11300, "properties": { "facing": "north", "half": "bottom", @@ -116043,7 +109905,7 @@ } }, { - "id": 12378, + "id": 11301, "properties": { "facing": "north", "half": "bottom", @@ -116053,7 +109915,7 @@ } }, { - "id": 12379, + "id": 11302, "properties": { "facing": "north", "half": "bottom", @@ -116064,7 +109926,7 @@ }, { "default": true, - "id": 12380, + "id": 11303, "properties": { "facing": "north", "half": "bottom", @@ -116074,7 +109936,7 @@ } }, { - "id": 12381, + "id": 11304, "properties": { "facing": "south", "half": "top", @@ -116084,7 +109946,7 @@ } }, { - "id": 12382, + "id": 11305, "properties": { "facing": "south", "half": "top", @@ -116094,7 +109956,7 @@ } }, { - "id": 12383, + "id": 11306, "properties": { "facing": "south", "half": "top", @@ -116104,7 +109966,7 @@ } }, { - "id": 12384, + "id": 11307, "properties": { "facing": "south", "half": "top", @@ -116114,7 +109976,7 @@ } }, { - "id": 12385, + "id": 11308, "properties": { "facing": "south", "half": "top", @@ -116124,7 +109986,7 @@ } }, { - "id": 12386, + "id": 11309, "properties": { "facing": "south", "half": "top", @@ -116134,7 +109996,7 @@ } }, { - "id": 12387, + "id": 11310, "properties": { "facing": "south", "half": "top", @@ -116144,7 +110006,7 @@ } }, { - "id": 12388, + "id": 11311, "properties": { "facing": "south", "half": "top", @@ -116154,7 +110016,7 @@ } }, { - "id": 12389, + "id": 11312, "properties": { "facing": "south", "half": "bottom", @@ -116164,7 +110026,7 @@ } }, { - "id": 12390, + "id": 11313, "properties": { "facing": "south", "half": "bottom", @@ -116174,7 +110036,7 @@ } }, { - "id": 12391, + "id": 11314, "properties": { "facing": "south", "half": "bottom", @@ -116184,7 +110046,7 @@ } }, { - "id": 12392, + "id": 11315, "properties": { "facing": "south", "half": "bottom", @@ -116194,7 +110056,7 @@ } }, { - "id": 12393, + "id": 11316, "properties": { "facing": "south", "half": "bottom", @@ -116204,7 +110066,7 @@ } }, { - "id": 12394, + "id": 11317, "properties": { "facing": "south", "half": "bottom", @@ -116214,7 +110076,7 @@ } }, { - "id": 12395, + "id": 11318, "properties": { "facing": "south", "half": "bottom", @@ -116224,7 +110086,7 @@ } }, { - "id": 12396, + "id": 11319, "properties": { "facing": "south", "half": "bottom", @@ -116234,7 +110096,7 @@ } }, { - "id": 12397, + "id": 11320, "properties": { "facing": "west", "half": "top", @@ -116244,7 +110106,7 @@ } }, { - "id": 12398, + "id": 11321, "properties": { "facing": "west", "half": "top", @@ -116254,7 +110116,7 @@ } }, { - "id": 12399, + "id": 11322, "properties": { "facing": "west", "half": "top", @@ -116264,7 +110126,7 @@ } }, { - "id": 12400, + "id": 11323, "properties": { "facing": "west", "half": "top", @@ -116274,7 +110136,7 @@ } }, { - "id": 12401, + "id": 11324, "properties": { "facing": "west", "half": "top", @@ -116284,7 +110146,7 @@ } }, { - "id": 12402, + "id": 11325, "properties": { "facing": "west", "half": "top", @@ -116294,7 +110156,7 @@ } }, { - "id": 12403, + "id": 11326, "properties": { "facing": "west", "half": "top", @@ -116304,7 +110166,7 @@ } }, { - "id": 12404, + "id": 11327, "properties": { "facing": "west", "half": "top", @@ -116314,7 +110176,7 @@ } }, { - "id": 12405, + "id": 11328, "properties": { "facing": "west", "half": "bottom", @@ -116324,7 +110186,7 @@ } }, { - "id": 12406, + "id": 11329, "properties": { "facing": "west", "half": "bottom", @@ -116334,7 +110196,7 @@ } }, { - "id": 12407, + "id": 11330, "properties": { "facing": "west", "half": "bottom", @@ -116344,7 +110206,7 @@ } }, { - "id": 12408, + "id": 11331, "properties": { "facing": "west", "half": "bottom", @@ -116354,7 +110216,7 @@ } }, { - "id": 12409, + "id": 11332, "properties": { "facing": "west", "half": "bottom", @@ -116364,7 +110226,7 @@ } }, { - "id": 12410, + "id": 11333, "properties": { "facing": "west", "half": "bottom", @@ -116374,7 +110236,7 @@ } }, { - "id": 12411, + "id": 11334, "properties": { "facing": "west", "half": "bottom", @@ -116384,7 +110246,7 @@ } }, { - "id": 12412, + "id": 11335, "properties": { "facing": "west", "half": "bottom", @@ -116394,7 +110256,7 @@ } }, { - "id": 12413, + "id": 11336, "properties": { "facing": "east", "half": "top", @@ -116404,7 +110266,7 @@ } }, { - "id": 12414, + "id": 11337, "properties": { "facing": "east", "half": "top", @@ -116414,7 +110276,7 @@ } }, { - "id": 12415, + "id": 11338, "properties": { "facing": "east", "half": "top", @@ -116424,7 +110286,7 @@ } }, { - "id": 12416, + "id": 11339, "properties": { "facing": "east", "half": "top", @@ -116434,7 +110296,7 @@ } }, { - "id": 12417, + "id": 11340, "properties": { "facing": "east", "half": "top", @@ -116444,7 +110306,7 @@ } }, { - "id": 12418, + "id": 11341, "properties": { "facing": "east", "half": "top", @@ -116454,7 +110316,7 @@ } }, { - "id": 12419, + "id": 11342, "properties": { "facing": "east", "half": "top", @@ -116464,7 +110326,7 @@ } }, { - "id": 12420, + "id": 11343, "properties": { "facing": "east", "half": "top", @@ -116474,7 +110336,7 @@ } }, { - "id": 12421, + "id": 11344, "properties": { "facing": "east", "half": "bottom", @@ -116484,7 +110346,7 @@ } }, { - "id": 12422, + "id": 11345, "properties": { "facing": "east", "half": "bottom", @@ -116494,7 +110356,7 @@ } }, { - "id": 12423, + "id": 11346, "properties": { "facing": "east", "half": "bottom", @@ -116504,7 +110366,7 @@ } }, { - "id": 12424, + "id": 11347, "properties": { "facing": "east", "half": "bottom", @@ -116514,7 +110376,7 @@ } }, { - "id": 12425, + "id": 11348, "properties": { "facing": "east", "half": "bottom", @@ -116524,7 +110386,7 @@ } }, { - "id": 12426, + "id": 11349, "properties": { "facing": "east", "half": "bottom", @@ -116534,7 +110396,7 @@ } }, { - "id": 12427, + "id": 11350, "properties": { "facing": "east", "half": "bottom", @@ -116544,7 +110406,7 @@ } }, { - "id": 12428, + "id": 11351, "properties": { "facing": "east", "half": "bottom", @@ -116571,25 +110433,25 @@ "states": [ { "default": true, - "id": 6822, + "id": 6049, "properties": { "facing": "north" } }, { - "id": 6823, + "id": 6050, "properties": { "facing": "south" } }, { - "id": 6824, + "id": 6051, "properties": { "facing": "west" } }, { - "id": 6825, + "id": 6052, "properties": { "facing": "east" } @@ -116619,74 +110481,74 @@ }, "states": [ { - "id": 21524, + "id": 20383, "properties": { "orientation": "down_east" } }, { - "id": 21525, + "id": 20384, "properties": { "orientation": "down_north" } }, { - "id": 21526, + "id": 20385, "properties": { "orientation": "down_south" } }, { - "id": 21527, + "id": 20386, "properties": { "orientation": "down_west" } }, { - "id": 21528, + "id": 20387, "properties": { "orientation": "up_east" } }, { - "id": 21529, + "id": 20388, "properties": { "orientation": "up_north" } }, { - "id": 21530, + "id": 20389, "properties": { "orientation": "up_south" } }, { - "id": 21531, + "id": 20390, "properties": { "orientation": "up_west" } }, { - "id": 21532, + "id": 20391, "properties": { "orientation": "west_up" } }, { - "id": 21533, + "id": 20392, "properties": { "orientation": "east_up" } }, { "default": true, - "id": 21534, + "id": 20393, "properties": { "orientation": "north_up" } }, { - "id": 21535, + "id": 20394, "properties": { "orientation": "south_up" } @@ -116706,14 +110568,14 @@ }, "states": [ { - "id": 6762, + "id": 5994, "properties": { "has_record": "true" } }, { "default": true, - "id": 6763, + "id": 5995, "properties": { "has_record": "false" } @@ -116746,7 +110608,7 @@ }, "states": [ { - "id": 10545, + "id": 9468, "properties": { "face": "floor", "facing": "north", @@ -116754,7 +110616,7 @@ } }, { - "id": 10546, + "id": 9469, "properties": { "face": "floor", "facing": "north", @@ -116762,7 +110624,7 @@ } }, { - "id": 10547, + "id": 9470, "properties": { "face": "floor", "facing": "south", @@ -116770,7 +110632,7 @@ } }, { - "id": 10548, + "id": 9471, "properties": { "face": "floor", "facing": "south", @@ -116778,7 +110640,7 @@ } }, { - "id": 10549, + "id": 9472, "properties": { "face": "floor", "facing": "west", @@ -116786,7 +110648,7 @@ } }, { - "id": 10550, + "id": 9473, "properties": { "face": "floor", "facing": "west", @@ -116794,7 +110656,7 @@ } }, { - "id": 10551, + "id": 9474, "properties": { "face": "floor", "facing": "east", @@ -116802,7 +110664,7 @@ } }, { - "id": 10552, + "id": 9475, "properties": { "face": "floor", "facing": "east", @@ -116810,7 +110672,7 @@ } }, { - "id": 10553, + "id": 9476, "properties": { "face": "wall", "facing": "north", @@ -116819,7 +110681,7 @@ }, { "default": true, - "id": 10554, + "id": 9477, "properties": { "face": "wall", "facing": "north", @@ -116827,7 +110689,7 @@ } }, { - "id": 10555, + "id": 9478, "properties": { "face": "wall", "facing": "south", @@ -116835,7 +110697,7 @@ } }, { - "id": 10556, + "id": 9479, "properties": { "face": "wall", "facing": "south", @@ -116843,7 +110705,7 @@ } }, { - "id": 10557, + "id": 9480, "properties": { "face": "wall", "facing": "west", @@ -116851,7 +110713,7 @@ } }, { - "id": 10558, + "id": 9481, "properties": { "face": "wall", "facing": "west", @@ -116859,7 +110721,7 @@ } }, { - "id": 10559, + "id": 9482, "properties": { "face": "wall", "facing": "east", @@ -116867,7 +110729,7 @@ } }, { - "id": 10560, + "id": 9483, "properties": { "face": "wall", "facing": "east", @@ -116875,7 +110737,7 @@ } }, { - "id": 10561, + "id": 9484, "properties": { "face": "ceiling", "facing": "north", @@ -116883,7 +110745,7 @@ } }, { - "id": 10562, + "id": 9485, "properties": { "face": "ceiling", "facing": "north", @@ -116891,7 +110753,7 @@ } }, { - "id": 10563, + "id": 9486, "properties": { "face": "ceiling", "facing": "south", @@ -116899,7 +110761,7 @@ } }, { - "id": 10564, + "id": 9487, "properties": { "face": "ceiling", "facing": "south", @@ -116907,7 +110769,7 @@ } }, { - "id": 10565, + "id": 9488, "properties": { "face": "ceiling", "facing": "west", @@ -116915,7 +110777,7 @@ } }, { - "id": 10566, + "id": 9489, "properties": { "face": "ceiling", "facing": "west", @@ -116923,7 +110785,7 @@ } }, { - "id": 10567, + "id": 9490, "properties": { "face": "ceiling", "facing": "east", @@ -116931,7 +110793,7 @@ } }, { - "id": 10568, + "id": 9491, "properties": { "face": "ceiling", "facing": "east", @@ -116972,7 +110834,7 @@ }, "states": [ { - "id": 13986, + "id": 12909, "properties": { "facing": "north", "half": "upper", @@ -116982,7 +110844,7 @@ } }, { - "id": 13987, + "id": 12910, "properties": { "facing": "north", "half": "upper", @@ -116992,7 +110854,7 @@ } }, { - "id": 13988, + "id": 12911, "properties": { "facing": "north", "half": "upper", @@ -117002,7 +110864,7 @@ } }, { - "id": 13989, + "id": 12912, "properties": { "facing": "north", "half": "upper", @@ -117012,7 +110874,7 @@ } }, { - "id": 13990, + "id": 12913, "properties": { "facing": "north", "half": "upper", @@ -117022,7 +110884,7 @@ } }, { - "id": 13991, + "id": 12914, "properties": { "facing": "north", "half": "upper", @@ -117032,7 +110894,7 @@ } }, { - "id": 13992, + "id": 12915, "properties": { "facing": "north", "half": "upper", @@ -117042,7 +110904,7 @@ } }, { - "id": 13993, + "id": 12916, "properties": { "facing": "north", "half": "upper", @@ -117052,7 +110914,7 @@ } }, { - "id": 13994, + "id": 12917, "properties": { "facing": "north", "half": "lower", @@ -117062,7 +110924,7 @@ } }, { - "id": 13995, + "id": 12918, "properties": { "facing": "north", "half": "lower", @@ -117072,7 +110934,7 @@ } }, { - "id": 13996, + "id": 12919, "properties": { "facing": "north", "half": "lower", @@ -117083,7 +110945,7 @@ }, { "default": true, - "id": 13997, + "id": 12920, "properties": { "facing": "north", "half": "lower", @@ -117093,7 +110955,7 @@ } }, { - "id": 13998, + "id": 12921, "properties": { "facing": "north", "half": "lower", @@ -117103,7 +110965,7 @@ } }, { - "id": 13999, + "id": 12922, "properties": { "facing": "north", "half": "lower", @@ -117113,7 +110975,7 @@ } }, { - "id": 14000, + "id": 12923, "properties": { "facing": "north", "half": "lower", @@ -117123,7 +110985,7 @@ } }, { - "id": 14001, + "id": 12924, "properties": { "facing": "north", "half": "lower", @@ -117133,7 +110995,7 @@ } }, { - "id": 14002, + "id": 12925, "properties": { "facing": "south", "half": "upper", @@ -117143,7 +111005,7 @@ } }, { - "id": 14003, + "id": 12926, "properties": { "facing": "south", "half": "upper", @@ -117153,7 +111015,7 @@ } }, { - "id": 14004, + "id": 12927, "properties": { "facing": "south", "half": "upper", @@ -117163,7 +111025,7 @@ } }, { - "id": 14005, + "id": 12928, "properties": { "facing": "south", "half": "upper", @@ -117173,7 +111035,7 @@ } }, { - "id": 14006, + "id": 12929, "properties": { "facing": "south", "half": "upper", @@ -117183,7 +111045,7 @@ } }, { - "id": 14007, + "id": 12930, "properties": { "facing": "south", "half": "upper", @@ -117193,7 +111055,7 @@ } }, { - "id": 14008, + "id": 12931, "properties": { "facing": "south", "half": "upper", @@ -117203,7 +111065,7 @@ } }, { - "id": 14009, + "id": 12932, "properties": { "facing": "south", "half": "upper", @@ -117213,7 +111075,7 @@ } }, { - "id": 14010, + "id": 12933, "properties": { "facing": "south", "half": "lower", @@ -117223,7 +111085,7 @@ } }, { - "id": 14011, + "id": 12934, "properties": { "facing": "south", "half": "lower", @@ -117233,7 +111095,7 @@ } }, { - "id": 14012, + "id": 12935, "properties": { "facing": "south", "half": "lower", @@ -117243,7 +111105,7 @@ } }, { - "id": 14013, + "id": 12936, "properties": { "facing": "south", "half": "lower", @@ -117253,7 +111115,7 @@ } }, { - "id": 14014, + "id": 12937, "properties": { "facing": "south", "half": "lower", @@ -117263,7 +111125,7 @@ } }, { - "id": 14015, + "id": 12938, "properties": { "facing": "south", "half": "lower", @@ -117273,7 +111135,7 @@ } }, { - "id": 14016, + "id": 12939, "properties": { "facing": "south", "half": "lower", @@ -117283,7 +111145,7 @@ } }, { - "id": 14017, + "id": 12940, "properties": { "facing": "south", "half": "lower", @@ -117293,7 +111155,7 @@ } }, { - "id": 14018, + "id": 12941, "properties": { "facing": "west", "half": "upper", @@ -117303,7 +111165,7 @@ } }, { - "id": 14019, + "id": 12942, "properties": { "facing": "west", "half": "upper", @@ -117313,7 +111175,7 @@ } }, { - "id": 14020, + "id": 12943, "properties": { "facing": "west", "half": "upper", @@ -117323,7 +111185,7 @@ } }, { - "id": 14021, + "id": 12944, "properties": { "facing": "west", "half": "upper", @@ -117333,7 +111195,7 @@ } }, { - "id": 14022, + "id": 12945, "properties": { "facing": "west", "half": "upper", @@ -117343,7 +111205,7 @@ } }, { - "id": 14023, + "id": 12946, "properties": { "facing": "west", "half": "upper", @@ -117353,7 +111215,7 @@ } }, { - "id": 14024, + "id": 12947, "properties": { "facing": "west", "half": "upper", @@ -117363,7 +111225,7 @@ } }, { - "id": 14025, + "id": 12948, "properties": { "facing": "west", "half": "upper", @@ -117373,7 +111235,7 @@ } }, { - "id": 14026, + "id": 12949, "properties": { "facing": "west", "half": "lower", @@ -117383,7 +111245,7 @@ } }, { - "id": 14027, + "id": 12950, "properties": { "facing": "west", "half": "lower", @@ -117393,7 +111255,7 @@ } }, { - "id": 14028, + "id": 12951, "properties": { "facing": "west", "half": "lower", @@ -117403,7 +111265,7 @@ } }, { - "id": 14029, + "id": 12952, "properties": { "facing": "west", "half": "lower", @@ -117413,7 +111275,7 @@ } }, { - "id": 14030, + "id": 12953, "properties": { "facing": "west", "half": "lower", @@ -117423,7 +111285,7 @@ } }, { - "id": 14031, + "id": 12954, "properties": { "facing": "west", "half": "lower", @@ -117433,7 +111295,7 @@ } }, { - "id": 14032, + "id": 12955, "properties": { "facing": "west", "half": "lower", @@ -117443,7 +111305,7 @@ } }, { - "id": 14033, + "id": 12956, "properties": { "facing": "west", "half": "lower", @@ -117453,7 +111315,7 @@ } }, { - "id": 14034, + "id": 12957, "properties": { "facing": "east", "half": "upper", @@ -117463,7 +111325,7 @@ } }, { - "id": 14035, + "id": 12958, "properties": { "facing": "east", "half": "upper", @@ -117473,7 +111335,7 @@ } }, { - "id": 14036, + "id": 12959, "properties": { "facing": "east", "half": "upper", @@ -117483,7 +111345,7 @@ } }, { - "id": 14037, + "id": 12960, "properties": { "facing": "east", "half": "upper", @@ -117493,7 +111355,7 @@ } }, { - "id": 14038, + "id": 12961, "properties": { "facing": "east", "half": "upper", @@ -117503,7 +111365,7 @@ } }, { - "id": 14039, + "id": 12962, "properties": { "facing": "east", "half": "upper", @@ -117513,7 +111375,7 @@ } }, { - "id": 14040, + "id": 12963, "properties": { "facing": "east", "half": "upper", @@ -117523,7 +111385,7 @@ } }, { - "id": 14041, + "id": 12964, "properties": { "facing": "east", "half": "upper", @@ -117533,7 +111395,7 @@ } }, { - "id": 14042, + "id": 12965, "properties": { "facing": "east", "half": "lower", @@ -117543,7 +111405,7 @@ } }, { - "id": 14043, + "id": 12966, "properties": { "facing": "east", "half": "lower", @@ -117553,7 +111415,7 @@ } }, { - "id": 14044, + "id": 12967, "properties": { "facing": "east", "half": "lower", @@ -117563,7 +111425,7 @@ } }, { - "id": 14045, + "id": 12968, "properties": { "facing": "east", "half": "lower", @@ -117573,7 +111435,7 @@ } }, { - "id": 14046, + "id": 12969, "properties": { "facing": "east", "half": "lower", @@ -117583,7 +111445,7 @@ } }, { - "id": 14047, + "id": 12970, "properties": { "facing": "east", "half": "lower", @@ -117593,7 +111455,7 @@ } }, { - "id": 14048, + "id": 12971, "properties": { "facing": "east", "half": "lower", @@ -117603,7 +111465,7 @@ } }, { - "id": 14049, + "id": 12972, "properties": { "facing": "east", "half": "lower", @@ -117643,7 +111505,7 @@ }, "states": [ { - "id": 13634, + "id": 12557, "properties": { "east": "true", "north": "true", @@ -117653,7 +111515,7 @@ } }, { - "id": 13635, + "id": 12558, "properties": { "east": "true", "north": "true", @@ -117663,7 +111525,7 @@ } }, { - "id": 13636, + "id": 12559, "properties": { "east": "true", "north": "true", @@ -117673,7 +111535,7 @@ } }, { - "id": 13637, + "id": 12560, "properties": { "east": "true", "north": "true", @@ -117683,7 +111545,7 @@ } }, { - "id": 13638, + "id": 12561, "properties": { "east": "true", "north": "true", @@ -117693,7 +111555,7 @@ } }, { - "id": 13639, + "id": 12562, "properties": { "east": "true", "north": "true", @@ -117703,7 +111565,7 @@ } }, { - "id": 13640, + "id": 12563, "properties": { "east": "true", "north": "true", @@ -117713,7 +111575,7 @@ } }, { - "id": 13641, + "id": 12564, "properties": { "east": "true", "north": "true", @@ -117723,7 +111585,7 @@ } }, { - "id": 13642, + "id": 12565, "properties": { "east": "true", "north": "false", @@ -117733,7 +111595,7 @@ } }, { - "id": 13643, + "id": 12566, "properties": { "east": "true", "north": "false", @@ -117743,7 +111605,7 @@ } }, { - "id": 13644, + "id": 12567, "properties": { "east": "true", "north": "false", @@ -117753,7 +111615,7 @@ } }, { - "id": 13645, + "id": 12568, "properties": { "east": "true", "north": "false", @@ -117763,7 +111625,7 @@ } }, { - "id": 13646, + "id": 12569, "properties": { "east": "true", "north": "false", @@ -117773,7 +111635,7 @@ } }, { - "id": 13647, + "id": 12570, "properties": { "east": "true", "north": "false", @@ -117783,7 +111645,7 @@ } }, { - "id": 13648, + "id": 12571, "properties": { "east": "true", "north": "false", @@ -117793,7 +111655,7 @@ } }, { - "id": 13649, + "id": 12572, "properties": { "east": "true", "north": "false", @@ -117803,7 +111665,7 @@ } }, { - "id": 13650, + "id": 12573, "properties": { "east": "false", "north": "true", @@ -117813,7 +111675,7 @@ } }, { - "id": 13651, + "id": 12574, "properties": { "east": "false", "north": "true", @@ -117823,7 +111685,7 @@ } }, { - "id": 13652, + "id": 12575, "properties": { "east": "false", "north": "true", @@ -117833,7 +111695,7 @@ } }, { - "id": 13653, + "id": 12576, "properties": { "east": "false", "north": "true", @@ -117843,7 +111705,7 @@ } }, { - "id": 13654, + "id": 12577, "properties": { "east": "false", "north": "true", @@ -117853,7 +111715,7 @@ } }, { - "id": 13655, + "id": 12578, "properties": { "east": "false", "north": "true", @@ -117863,7 +111725,7 @@ } }, { - "id": 13656, + "id": 12579, "properties": { "east": "false", "north": "true", @@ -117873,7 +111735,7 @@ } }, { - "id": 13657, + "id": 12580, "properties": { "east": "false", "north": "true", @@ -117883,7 +111745,7 @@ } }, { - "id": 13658, + "id": 12581, "properties": { "east": "false", "north": "false", @@ -117893,7 +111755,7 @@ } }, { - "id": 13659, + "id": 12582, "properties": { "east": "false", "north": "false", @@ -117903,7 +111765,7 @@ } }, { - "id": 13660, + "id": 12583, "properties": { "east": "false", "north": "false", @@ -117913,7 +111775,7 @@ } }, { - "id": 13661, + "id": 12584, "properties": { "east": "false", "north": "false", @@ -117923,7 +111785,7 @@ } }, { - "id": 13662, + "id": 12585, "properties": { "east": "false", "north": "false", @@ -117933,7 +111795,7 @@ } }, { - "id": 13663, + "id": 12586, "properties": { "east": "false", "north": "false", @@ -117943,7 +111805,7 @@ } }, { - "id": 13664, + "id": 12587, "properties": { "east": "false", "north": "false", @@ -117954,7 +111816,7 @@ }, { "default": true, - "id": 13665, + "id": 12588, "properties": { "east": "false", "north": "false", @@ -117993,7 +111855,7 @@ }, "states": [ { - "id": 13346, + "id": 12269, "properties": { "facing": "north", "in_wall": "true", @@ -118002,7 +111864,7 @@ } }, { - "id": 13347, + "id": 12270, "properties": { "facing": "north", "in_wall": "true", @@ -118011,7 +111873,7 @@ } }, { - "id": 13348, + "id": 12271, "properties": { "facing": "north", "in_wall": "true", @@ -118020,7 +111882,7 @@ } }, { - "id": 13349, + "id": 12272, "properties": { "facing": "north", "in_wall": "true", @@ -118029,7 +111891,7 @@ } }, { - "id": 13350, + "id": 12273, "properties": { "facing": "north", "in_wall": "false", @@ -118038,7 +111900,7 @@ } }, { - "id": 13351, + "id": 12274, "properties": { "facing": "north", "in_wall": "false", @@ -118047,7 +111909,7 @@ } }, { - "id": 13352, + "id": 12275, "properties": { "facing": "north", "in_wall": "false", @@ -118057,7 +111919,7 @@ }, { "default": true, - "id": 13353, + "id": 12276, "properties": { "facing": "north", "in_wall": "false", @@ -118066,7 +111928,7 @@ } }, { - "id": 13354, + "id": 12277, "properties": { "facing": "south", "in_wall": "true", @@ -118075,7 +111937,7 @@ } }, { - "id": 13355, + "id": 12278, "properties": { "facing": "south", "in_wall": "true", @@ -118084,7 +111946,7 @@ } }, { - "id": 13356, + "id": 12279, "properties": { "facing": "south", "in_wall": "true", @@ -118093,7 +111955,7 @@ } }, { - "id": 13357, + "id": 12280, "properties": { "facing": "south", "in_wall": "true", @@ -118102,7 +111964,7 @@ } }, { - "id": 13358, + "id": 12281, "properties": { "facing": "south", "in_wall": "false", @@ -118111,7 +111973,7 @@ } }, { - "id": 13359, + "id": 12282, "properties": { "facing": "south", "in_wall": "false", @@ -118120,7 +111982,7 @@ } }, { - "id": 13360, + "id": 12283, "properties": { "facing": "south", "in_wall": "false", @@ -118129,7 +111991,7 @@ } }, { - "id": 13361, + "id": 12284, "properties": { "facing": "south", "in_wall": "false", @@ -118138,7 +112000,7 @@ } }, { - "id": 13362, + "id": 12285, "properties": { "facing": "west", "in_wall": "true", @@ -118147,7 +112009,7 @@ } }, { - "id": 13363, + "id": 12286, "properties": { "facing": "west", "in_wall": "true", @@ -118156,7 +112018,7 @@ } }, { - "id": 13364, + "id": 12287, "properties": { "facing": "west", "in_wall": "true", @@ -118165,7 +112027,7 @@ } }, { - "id": 13365, + "id": 12288, "properties": { "facing": "west", "in_wall": "true", @@ -118174,7 +112036,7 @@ } }, { - "id": 13366, + "id": 12289, "properties": { "facing": "west", "in_wall": "false", @@ -118183,7 +112045,7 @@ } }, { - "id": 13367, + "id": 12290, "properties": { "facing": "west", "in_wall": "false", @@ -118192,7 +112054,7 @@ } }, { - "id": 13368, + "id": 12291, "properties": { "facing": "west", "in_wall": "false", @@ -118201,7 +112063,7 @@ } }, { - "id": 13369, + "id": 12292, "properties": { "facing": "west", "in_wall": "false", @@ -118210,7 +112072,7 @@ } }, { - "id": 13370, + "id": 12293, "properties": { "facing": "east", "in_wall": "true", @@ -118219,7 +112081,7 @@ } }, { - "id": 13371, + "id": 12294, "properties": { "facing": "east", "in_wall": "true", @@ -118228,7 +112090,7 @@ } }, { - "id": 13372, + "id": 12295, "properties": { "facing": "east", "in_wall": "true", @@ -118237,7 +112099,7 @@ } }, { - "id": 13373, + "id": 12296, "properties": { "facing": "east", "in_wall": "true", @@ -118246,7 +112108,7 @@ } }, { - "id": 13374, + "id": 12297, "properties": { "facing": "east", "in_wall": "false", @@ -118255,7 +112117,7 @@ } }, { - "id": 13375, + "id": 12298, "properties": { "facing": "east", "in_wall": "false", @@ -118264,7 +112126,7 @@ } }, { - "id": 13376, + "id": 12299, "properties": { "facing": "east", "in_wall": "false", @@ -118273,7 +112135,7 @@ } }, { - "id": 13377, + "id": 12300, "properties": { "facing": "east", "in_wall": "false", @@ -118319,7 +112181,7 @@ }, "states": [ { - "id": 6026, + "id": 5258, "properties": { "attached": "true", "rotation": "0", @@ -118327,7 +112189,7 @@ } }, { - "id": 6027, + "id": 5259, "properties": { "attached": "true", "rotation": "0", @@ -118335,7 +112197,7 @@ } }, { - "id": 6028, + "id": 5260, "properties": { "attached": "true", "rotation": "1", @@ -118343,7 +112205,7 @@ } }, { - "id": 6029, + "id": 5261, "properties": { "attached": "true", "rotation": "1", @@ -118351,7 +112213,7 @@ } }, { - "id": 6030, + "id": 5262, "properties": { "attached": "true", "rotation": "2", @@ -118359,7 +112221,7 @@ } }, { - "id": 6031, + "id": 5263, "properties": { "attached": "true", "rotation": "2", @@ -118367,7 +112229,7 @@ } }, { - "id": 6032, + "id": 5264, "properties": { "attached": "true", "rotation": "3", @@ -118375,7 +112237,7 @@ } }, { - "id": 6033, + "id": 5265, "properties": { "attached": "true", "rotation": "3", @@ -118383,7 +112245,7 @@ } }, { - "id": 6034, + "id": 5266, "properties": { "attached": "true", "rotation": "4", @@ -118391,7 +112253,7 @@ } }, { - "id": 6035, + "id": 5267, "properties": { "attached": "true", "rotation": "4", @@ -118399,7 +112261,7 @@ } }, { - "id": 6036, + "id": 5268, "properties": { "attached": "true", "rotation": "5", @@ -118407,7 +112269,7 @@ } }, { - "id": 6037, + "id": 5269, "properties": { "attached": "true", "rotation": "5", @@ -118415,7 +112277,7 @@ } }, { - "id": 6038, + "id": 5270, "properties": { "attached": "true", "rotation": "6", @@ -118423,7 +112285,7 @@ } }, { - "id": 6039, + "id": 5271, "properties": { "attached": "true", "rotation": "6", @@ -118431,7 +112293,7 @@ } }, { - "id": 6040, + "id": 5272, "properties": { "attached": "true", "rotation": "7", @@ -118439,7 +112301,7 @@ } }, { - "id": 6041, + "id": 5273, "properties": { "attached": "true", "rotation": "7", @@ -118447,7 +112309,7 @@ } }, { - "id": 6042, + "id": 5274, "properties": { "attached": "true", "rotation": "8", @@ -118455,7 +112317,7 @@ } }, { - "id": 6043, + "id": 5275, "properties": { "attached": "true", "rotation": "8", @@ -118463,7 +112325,7 @@ } }, { - "id": 6044, + "id": 5276, "properties": { "attached": "true", "rotation": "9", @@ -118471,7 +112333,7 @@ } }, { - "id": 6045, + "id": 5277, "properties": { "attached": "true", "rotation": "9", @@ -118479,7 +112341,7 @@ } }, { - "id": 6046, + "id": 5278, "properties": { "attached": "true", "rotation": "10", @@ -118487,7 +112349,7 @@ } }, { - "id": 6047, + "id": 5279, "properties": { "attached": "true", "rotation": "10", @@ -118495,7 +112357,7 @@ } }, { - "id": 6048, + "id": 5280, "properties": { "attached": "true", "rotation": "11", @@ -118503,7 +112365,7 @@ } }, { - "id": 6049, + "id": 5281, "properties": { "attached": "true", "rotation": "11", @@ -118511,7 +112373,7 @@ } }, { - "id": 6050, + "id": 5282, "properties": { "attached": "true", "rotation": "12", @@ -118519,7 +112381,7 @@ } }, { - "id": 6051, + "id": 5283, "properties": { "attached": "true", "rotation": "12", @@ -118527,7 +112389,7 @@ } }, { - "id": 6052, + "id": 5284, "properties": { "attached": "true", "rotation": "13", @@ -118535,7 +112397,7 @@ } }, { - "id": 6053, + "id": 5285, "properties": { "attached": "true", "rotation": "13", @@ -118543,7 +112405,7 @@ } }, { - "id": 6054, + "id": 5286, "properties": { "attached": "true", "rotation": "14", @@ -118551,7 +112413,7 @@ } }, { - "id": 6055, + "id": 5287, "properties": { "attached": "true", "rotation": "14", @@ -118559,7 +112421,7 @@ } }, { - "id": 6056, + "id": 5288, "properties": { "attached": "true", "rotation": "15", @@ -118567,7 +112429,7 @@ } }, { - "id": 6057, + "id": 5289, "properties": { "attached": "true", "rotation": "15", @@ -118575,7 +112437,7 @@ } }, { - "id": 6058, + "id": 5290, "properties": { "attached": "false", "rotation": "0", @@ -118584,7 +112446,7 @@ }, { "default": true, - "id": 6059, + "id": 5291, "properties": { "attached": "false", "rotation": "0", @@ -118592,7 +112454,7 @@ } }, { - "id": 6060, + "id": 5292, "properties": { "attached": "false", "rotation": "1", @@ -118600,7 +112462,7 @@ } }, { - "id": 6061, + "id": 5293, "properties": { "attached": "false", "rotation": "1", @@ -118608,7 +112470,7 @@ } }, { - "id": 6062, + "id": 5294, "properties": { "attached": "false", "rotation": "2", @@ -118616,7 +112478,7 @@ } }, { - "id": 6063, + "id": 5295, "properties": { "attached": "false", "rotation": "2", @@ -118624,7 +112486,7 @@ } }, { - "id": 6064, + "id": 5296, "properties": { "attached": "false", "rotation": "3", @@ -118632,7 +112494,7 @@ } }, { - "id": 6065, + "id": 5297, "properties": { "attached": "false", "rotation": "3", @@ -118640,7 +112502,7 @@ } }, { - "id": 6066, + "id": 5298, "properties": { "attached": "false", "rotation": "4", @@ -118648,7 +112510,7 @@ } }, { - "id": 6067, + "id": 5299, "properties": { "attached": "false", "rotation": "4", @@ -118656,7 +112518,7 @@ } }, { - "id": 6068, + "id": 5300, "properties": { "attached": "false", "rotation": "5", @@ -118664,7 +112526,7 @@ } }, { - "id": 6069, + "id": 5301, "properties": { "attached": "false", "rotation": "5", @@ -118672,7 +112534,7 @@ } }, { - "id": 6070, + "id": 5302, "properties": { "attached": "false", "rotation": "6", @@ -118680,7 +112542,7 @@ } }, { - "id": 6071, + "id": 5303, "properties": { "attached": "false", "rotation": "6", @@ -118688,7 +112550,7 @@ } }, { - "id": 6072, + "id": 5304, "properties": { "attached": "false", "rotation": "7", @@ -118696,7 +112558,7 @@ } }, { - "id": 6073, + "id": 5305, "properties": { "attached": "false", "rotation": "7", @@ -118704,7 +112566,7 @@ } }, { - "id": 6074, + "id": 5306, "properties": { "attached": "false", "rotation": "8", @@ -118712,7 +112574,7 @@ } }, { - "id": 6075, + "id": 5307, "properties": { "attached": "false", "rotation": "8", @@ -118720,7 +112582,7 @@ } }, { - "id": 6076, + "id": 5308, "properties": { "attached": "false", "rotation": "9", @@ -118728,7 +112590,7 @@ } }, { - "id": 6077, + "id": 5309, "properties": { "attached": "false", "rotation": "9", @@ -118736,7 +112598,7 @@ } }, { - "id": 6078, + "id": 5310, "properties": { "attached": "false", "rotation": "10", @@ -118744,7 +112606,7 @@ } }, { - "id": 6079, + "id": 5311, "properties": { "attached": "false", "rotation": "10", @@ -118752,7 +112614,7 @@ } }, { - "id": 6080, + "id": 5312, "properties": { "attached": "false", "rotation": "11", @@ -118760,7 +112622,7 @@ } }, { - "id": 6081, + "id": 5313, "properties": { "attached": "false", "rotation": "11", @@ -118768,7 +112630,7 @@ } }, { - "id": 6082, + "id": 5314, "properties": { "attached": "false", "rotation": "12", @@ -118776,7 +112638,7 @@ } }, { - "id": 6083, + "id": 5315, "properties": { "attached": "false", "rotation": "12", @@ -118784,7 +112646,7 @@ } }, { - "id": 6084, + "id": 5316, "properties": { "attached": "false", "rotation": "13", @@ -118792,7 +112654,7 @@ } }, { - "id": 6085, + "id": 5317, "properties": { "attached": "false", "rotation": "13", @@ -118800,7 +112662,7 @@ } }, { - "id": 6086, + "id": 5318, "properties": { "attached": "false", "rotation": "14", @@ -118808,7 +112670,7 @@ } }, { - "id": 6087, + "id": 5319, "properties": { "attached": "false", "rotation": "14", @@ -118816,7 +112678,7 @@ } }, { - "id": 6088, + "id": 5320, "properties": { "attached": "false", "rotation": "15", @@ -118824,7 +112686,7 @@ } }, { - "id": 6089, + "id": 5321, "properties": { "attached": "false", "rotation": "15", @@ -119146,14 +113008,14 @@ }, "states": [ { - "id": 6666, + "id": 5898, "properties": { "powered": "true" } }, { "default": true, - "id": 6667, + "id": 5899, "properties": { "powered": "false" } @@ -119188,613 +113050,6 @@ } ] }, - "minecraft:jungle_shelf": { - "definition": { - "type": "minecraft:shelf", - "properties": {} - }, - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ], - "side_chain": [ - "unconnected", - "right", - "center", - "left" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 2783, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2784, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2785, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2786, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2787, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2788, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2789, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2790, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2791, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 2792, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2793, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2794, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2795, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2796, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2797, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2798, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2799, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2800, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2801, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2802, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2803, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2804, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2805, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2806, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2807, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2808, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2809, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2810, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2811, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2812, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2813, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2814, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2815, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2816, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2817, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2818, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2819, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2820, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2821, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2822, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2823, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2824, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2825, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2826, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2827, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2828, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2829, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2830, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2831, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2832, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2833, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2834, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2835, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2836, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2837, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2838, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2839, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2840, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2841, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2842, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2843, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2844, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2845, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2846, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "left", - "waterlogged": "false" - } - } - ] - }, "minecraft:jungle_sign": { "definition": { "type": "minecraft:standing_sign", @@ -119827,7 +113082,7 @@ }, "states": [ { - "id": 5294, + "id": 4526, "properties": { "rotation": "0", "waterlogged": "true" @@ -119835,217 +113090,217 @@ }, { "default": true, - "id": 5295, + "id": 4527, "properties": { "rotation": "0", "waterlogged": "false" } }, { - "id": 5296, + "id": 4528, "properties": { "rotation": "1", "waterlogged": "true" } }, { - "id": 5297, + "id": 4529, "properties": { "rotation": "1", "waterlogged": "false" } }, { - "id": 5298, + "id": 4530, "properties": { "rotation": "2", "waterlogged": "true" } }, { - "id": 5299, + "id": 4531, "properties": { "rotation": "2", "waterlogged": "false" } }, { - "id": 5300, + "id": 4532, "properties": { "rotation": "3", "waterlogged": "true" } }, { - "id": 5301, + "id": 4533, "properties": { "rotation": "3", "waterlogged": "false" } }, { - "id": 5302, + "id": 4534, "properties": { "rotation": "4", "waterlogged": "true" } }, { - "id": 5303, + "id": 4535, "properties": { "rotation": "4", "waterlogged": "false" } }, { - "id": 5304, + "id": 4536, "properties": { "rotation": "5", "waterlogged": "true" } }, { - "id": 5305, + "id": 4537, "properties": { "rotation": "5", "waterlogged": "false" } }, { - "id": 5306, + "id": 4538, "properties": { "rotation": "6", "waterlogged": "true" } }, { - "id": 5307, + "id": 4539, "properties": { "rotation": "6", "waterlogged": "false" } }, { - "id": 5308, + "id": 4540, "properties": { "rotation": "7", "waterlogged": "true" } }, { - "id": 5309, + "id": 4541, "properties": { "rotation": "7", "waterlogged": "false" } }, { - "id": 5310, + "id": 4542, "properties": { "rotation": "8", "waterlogged": "true" } }, { - "id": 5311, + "id": 4543, "properties": { "rotation": "8", "waterlogged": "false" } }, { - "id": 5312, + "id": 4544, "properties": { "rotation": "9", "waterlogged": "true" } }, { - "id": 5313, + "id": 4545, "properties": { "rotation": "9", "waterlogged": "false" } }, { - "id": 5314, + "id": 4546, "properties": { "rotation": "10", "waterlogged": "true" } }, { - "id": 5315, + "id": 4547, "properties": { "rotation": "10", "waterlogged": "false" } }, { - "id": 5316, + "id": 4548, "properties": { "rotation": "11", "waterlogged": "true" } }, { - "id": 5317, + "id": 4549, "properties": { "rotation": "11", "waterlogged": "false" } }, { - "id": 5318, + "id": 4550, "properties": { "rotation": "12", "waterlogged": "true" } }, { - "id": 5319, + "id": 4551, "properties": { "rotation": "12", "waterlogged": "false" } }, { - "id": 5320, + "id": 4552, "properties": { "rotation": "13", "waterlogged": "true" } }, { - "id": 5321, + "id": 4553, "properties": { "rotation": "13", "waterlogged": "false" } }, { - "id": 5322, + "id": 4554, "properties": { "rotation": "14", "waterlogged": "true" } }, { - "id": 5323, + "id": 4555, "properties": { "rotation": "14", "waterlogged": "false" } }, { - "id": 5324, + "id": 4556, "properties": { "rotation": "15", "waterlogged": "true" } }, { - "id": 5325, + "id": 4557, "properties": { "rotation": "15", "waterlogged": "false" @@ -120071,21 +113326,21 @@ }, "states": [ { - "id": 13146, + "id": 12069, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 13147, + "id": 12070, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 13148, + "id": 12071, "properties": { "type": "bottom", "waterlogged": "true" @@ -120093,21 +113348,21 @@ }, { "default": true, - "id": 13149, + "id": 12072, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 13150, + "id": 12073, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 13151, + "id": 12074, "properties": { "type": "double", "waterlogged": "false" @@ -120148,7 +113403,7 @@ }, "states": [ { - "id": 9687, + "id": 8610, "properties": { "facing": "north", "half": "top", @@ -120157,7 +113412,7 @@ } }, { - "id": 9688, + "id": 8611, "properties": { "facing": "north", "half": "top", @@ -120166,7 +113421,7 @@ } }, { - "id": 9689, + "id": 8612, "properties": { "facing": "north", "half": "top", @@ -120175,7 +113430,7 @@ } }, { - "id": 9690, + "id": 8613, "properties": { "facing": "north", "half": "top", @@ -120184,7 +113439,7 @@ } }, { - "id": 9691, + "id": 8614, "properties": { "facing": "north", "half": "top", @@ -120193,7 +113448,7 @@ } }, { - "id": 9692, + "id": 8615, "properties": { "facing": "north", "half": "top", @@ -120202,7 +113457,7 @@ } }, { - "id": 9693, + "id": 8616, "properties": { "facing": "north", "half": "top", @@ -120211,7 +113466,7 @@ } }, { - "id": 9694, + "id": 8617, "properties": { "facing": "north", "half": "top", @@ -120220,7 +113475,7 @@ } }, { - "id": 9695, + "id": 8618, "properties": { "facing": "north", "half": "top", @@ -120229,7 +113484,7 @@ } }, { - "id": 9696, + "id": 8619, "properties": { "facing": "north", "half": "top", @@ -120238,7 +113493,7 @@ } }, { - "id": 9697, + "id": 8620, "properties": { "facing": "north", "half": "bottom", @@ -120248,7 +113503,7 @@ }, { "default": true, - "id": 9698, + "id": 8621, "properties": { "facing": "north", "half": "bottom", @@ -120257,7 +113512,7 @@ } }, { - "id": 9699, + "id": 8622, "properties": { "facing": "north", "half": "bottom", @@ -120266,7 +113521,7 @@ } }, { - "id": 9700, + "id": 8623, "properties": { "facing": "north", "half": "bottom", @@ -120275,7 +113530,7 @@ } }, { - "id": 9701, + "id": 8624, "properties": { "facing": "north", "half": "bottom", @@ -120284,7 +113539,7 @@ } }, { - "id": 9702, + "id": 8625, "properties": { "facing": "north", "half": "bottom", @@ -120293,7 +113548,7 @@ } }, { - "id": 9703, + "id": 8626, "properties": { "facing": "north", "half": "bottom", @@ -120302,7 +113557,7 @@ } }, { - "id": 9704, + "id": 8627, "properties": { "facing": "north", "half": "bottom", @@ -120311,7 +113566,7 @@ } }, { - "id": 9705, + "id": 8628, "properties": { "facing": "north", "half": "bottom", @@ -120320,7 +113575,7 @@ } }, { - "id": 9706, + "id": 8629, "properties": { "facing": "north", "half": "bottom", @@ -120329,7 +113584,7 @@ } }, { - "id": 9707, + "id": 8630, "properties": { "facing": "south", "half": "top", @@ -120338,7 +113593,7 @@ } }, { - "id": 9708, + "id": 8631, "properties": { "facing": "south", "half": "top", @@ -120347,7 +113602,7 @@ } }, { - "id": 9709, + "id": 8632, "properties": { "facing": "south", "half": "top", @@ -120356,7 +113611,7 @@ } }, { - "id": 9710, + "id": 8633, "properties": { "facing": "south", "half": "top", @@ -120365,7 +113620,7 @@ } }, { - "id": 9711, + "id": 8634, "properties": { "facing": "south", "half": "top", @@ -120374,7 +113629,7 @@ } }, { - "id": 9712, + "id": 8635, "properties": { "facing": "south", "half": "top", @@ -120383,7 +113638,7 @@ } }, { - "id": 9713, + "id": 8636, "properties": { "facing": "south", "half": "top", @@ -120392,7 +113647,7 @@ } }, { - "id": 9714, + "id": 8637, "properties": { "facing": "south", "half": "top", @@ -120401,7 +113656,7 @@ } }, { - "id": 9715, + "id": 8638, "properties": { "facing": "south", "half": "top", @@ -120410,7 +113665,7 @@ } }, { - "id": 9716, + "id": 8639, "properties": { "facing": "south", "half": "top", @@ -120419,7 +113674,7 @@ } }, { - "id": 9717, + "id": 8640, "properties": { "facing": "south", "half": "bottom", @@ -120428,7 +113683,7 @@ } }, { - "id": 9718, + "id": 8641, "properties": { "facing": "south", "half": "bottom", @@ -120437,7 +113692,7 @@ } }, { - "id": 9719, + "id": 8642, "properties": { "facing": "south", "half": "bottom", @@ -120446,7 +113701,7 @@ } }, { - "id": 9720, + "id": 8643, "properties": { "facing": "south", "half": "bottom", @@ -120455,7 +113710,7 @@ } }, { - "id": 9721, + "id": 8644, "properties": { "facing": "south", "half": "bottom", @@ -120464,7 +113719,7 @@ } }, { - "id": 9722, + "id": 8645, "properties": { "facing": "south", "half": "bottom", @@ -120473,7 +113728,7 @@ } }, { - "id": 9723, + "id": 8646, "properties": { "facing": "south", "half": "bottom", @@ -120482,7 +113737,7 @@ } }, { - "id": 9724, + "id": 8647, "properties": { "facing": "south", "half": "bottom", @@ -120491,7 +113746,7 @@ } }, { - "id": 9725, + "id": 8648, "properties": { "facing": "south", "half": "bottom", @@ -120500,7 +113755,7 @@ } }, { - "id": 9726, + "id": 8649, "properties": { "facing": "south", "half": "bottom", @@ -120509,7 +113764,7 @@ } }, { - "id": 9727, + "id": 8650, "properties": { "facing": "west", "half": "top", @@ -120518,7 +113773,7 @@ } }, { - "id": 9728, + "id": 8651, "properties": { "facing": "west", "half": "top", @@ -120527,7 +113782,7 @@ } }, { - "id": 9729, + "id": 8652, "properties": { "facing": "west", "half": "top", @@ -120536,7 +113791,7 @@ } }, { - "id": 9730, + "id": 8653, "properties": { "facing": "west", "half": "top", @@ -120545,7 +113800,7 @@ } }, { - "id": 9731, + "id": 8654, "properties": { "facing": "west", "half": "top", @@ -120554,7 +113809,7 @@ } }, { - "id": 9732, + "id": 8655, "properties": { "facing": "west", "half": "top", @@ -120563,7 +113818,7 @@ } }, { - "id": 9733, + "id": 8656, "properties": { "facing": "west", "half": "top", @@ -120572,7 +113827,7 @@ } }, { - "id": 9734, + "id": 8657, "properties": { "facing": "west", "half": "top", @@ -120581,7 +113836,7 @@ } }, { - "id": 9735, + "id": 8658, "properties": { "facing": "west", "half": "top", @@ -120590,7 +113845,7 @@ } }, { - "id": 9736, + "id": 8659, "properties": { "facing": "west", "half": "top", @@ -120599,7 +113854,7 @@ } }, { - "id": 9737, + "id": 8660, "properties": { "facing": "west", "half": "bottom", @@ -120608,7 +113863,7 @@ } }, { - "id": 9738, + "id": 8661, "properties": { "facing": "west", "half": "bottom", @@ -120617,7 +113872,7 @@ } }, { - "id": 9739, + "id": 8662, "properties": { "facing": "west", "half": "bottom", @@ -120626,7 +113881,7 @@ } }, { - "id": 9740, + "id": 8663, "properties": { "facing": "west", "half": "bottom", @@ -120635,7 +113890,7 @@ } }, { - "id": 9741, + "id": 8664, "properties": { "facing": "west", "half": "bottom", @@ -120644,7 +113899,7 @@ } }, { - "id": 9742, + "id": 8665, "properties": { "facing": "west", "half": "bottom", @@ -120653,7 +113908,7 @@ } }, { - "id": 9743, + "id": 8666, "properties": { "facing": "west", "half": "bottom", @@ -120662,7 +113917,7 @@ } }, { - "id": 9744, + "id": 8667, "properties": { "facing": "west", "half": "bottom", @@ -120671,7 +113926,7 @@ } }, { - "id": 9745, + "id": 8668, "properties": { "facing": "west", "half": "bottom", @@ -120680,7 +113935,7 @@ } }, { - "id": 9746, + "id": 8669, "properties": { "facing": "west", "half": "bottom", @@ -120689,7 +113944,7 @@ } }, { - "id": 9747, + "id": 8670, "properties": { "facing": "east", "half": "top", @@ -120698,7 +113953,7 @@ } }, { - "id": 9748, + "id": 8671, "properties": { "facing": "east", "half": "top", @@ -120707,7 +113962,7 @@ } }, { - "id": 9749, + "id": 8672, "properties": { "facing": "east", "half": "top", @@ -120716,7 +113971,7 @@ } }, { - "id": 9750, + "id": 8673, "properties": { "facing": "east", "half": "top", @@ -120725,7 +113980,7 @@ } }, { - "id": 9751, + "id": 8674, "properties": { "facing": "east", "half": "top", @@ -120734,7 +113989,7 @@ } }, { - "id": 9752, + "id": 8675, "properties": { "facing": "east", "half": "top", @@ -120743,7 +113998,7 @@ } }, { - "id": 9753, + "id": 8676, "properties": { "facing": "east", "half": "top", @@ -120752,7 +114007,7 @@ } }, { - "id": 9754, + "id": 8677, "properties": { "facing": "east", "half": "top", @@ -120761,7 +114016,7 @@ } }, { - "id": 9755, + "id": 8678, "properties": { "facing": "east", "half": "top", @@ -120770,7 +114025,7 @@ } }, { - "id": 9756, + "id": 8679, "properties": { "facing": "east", "half": "top", @@ -120779,7 +114034,7 @@ } }, { - "id": 9757, + "id": 8680, "properties": { "facing": "east", "half": "bottom", @@ -120788,7 +114043,7 @@ } }, { - "id": 9758, + "id": 8681, "properties": { "facing": "east", "half": "bottom", @@ -120797,7 +114052,7 @@ } }, { - "id": 9759, + "id": 8682, "properties": { "facing": "east", "half": "bottom", @@ -120806,7 +114061,7 @@ } }, { - "id": 9760, + "id": 8683, "properties": { "facing": "east", "half": "bottom", @@ -120815,7 +114070,7 @@ } }, { - "id": 9761, + "id": 8684, "properties": { "facing": "east", "half": "bottom", @@ -120824,7 +114079,7 @@ } }, { - "id": 9762, + "id": 8685, "properties": { "facing": "east", "half": "bottom", @@ -120833,7 +114088,7 @@ } }, { - "id": 9763, + "id": 8686, "properties": { "facing": "east", "half": "bottom", @@ -120842,7 +114097,7 @@ } }, { - "id": 9764, + "id": 8687, "properties": { "facing": "east", "half": "bottom", @@ -120851,7 +114106,7 @@ } }, { - "id": 9765, + "id": 8688, "properties": { "facing": "east", "half": "bottom", @@ -120860,7 +114115,7 @@ } }, { - "id": 9766, + "id": 8689, "properties": { "facing": "east", "half": "bottom", @@ -120902,7 +114157,7 @@ }, "states": [ { - "id": 7105, + "id": 6332, "properties": { "facing": "north", "half": "top", @@ -120912,7 +114167,7 @@ } }, { - "id": 7106, + "id": 6333, "properties": { "facing": "north", "half": "top", @@ -120922,7 +114177,7 @@ } }, { - "id": 7107, + "id": 6334, "properties": { "facing": "north", "half": "top", @@ -120932,7 +114187,7 @@ } }, { - "id": 7108, + "id": 6335, "properties": { "facing": "north", "half": "top", @@ -120942,7 +114197,7 @@ } }, { - "id": 7109, + "id": 6336, "properties": { "facing": "north", "half": "top", @@ -120952,7 +114207,7 @@ } }, { - "id": 7110, + "id": 6337, "properties": { "facing": "north", "half": "top", @@ -120962,7 +114217,7 @@ } }, { - "id": 7111, + "id": 6338, "properties": { "facing": "north", "half": "top", @@ -120972,7 +114227,7 @@ } }, { - "id": 7112, + "id": 6339, "properties": { "facing": "north", "half": "top", @@ -120982,7 +114237,7 @@ } }, { - "id": 7113, + "id": 6340, "properties": { "facing": "north", "half": "bottom", @@ -120992,7 +114247,7 @@ } }, { - "id": 7114, + "id": 6341, "properties": { "facing": "north", "half": "bottom", @@ -121002,7 +114257,7 @@ } }, { - "id": 7115, + "id": 6342, "properties": { "facing": "north", "half": "bottom", @@ -121012,7 +114267,7 @@ } }, { - "id": 7116, + "id": 6343, "properties": { "facing": "north", "half": "bottom", @@ -121022,7 +114277,7 @@ } }, { - "id": 7117, + "id": 6344, "properties": { "facing": "north", "half": "bottom", @@ -121032,7 +114287,7 @@ } }, { - "id": 7118, + "id": 6345, "properties": { "facing": "north", "half": "bottom", @@ -121042,7 +114297,7 @@ } }, { - "id": 7119, + "id": 6346, "properties": { "facing": "north", "half": "bottom", @@ -121053,7 +114308,7 @@ }, { "default": true, - "id": 7120, + "id": 6347, "properties": { "facing": "north", "half": "bottom", @@ -121063,7 +114318,7 @@ } }, { - "id": 7121, + "id": 6348, "properties": { "facing": "south", "half": "top", @@ -121073,7 +114328,7 @@ } }, { - "id": 7122, + "id": 6349, "properties": { "facing": "south", "half": "top", @@ -121083,7 +114338,7 @@ } }, { - "id": 7123, + "id": 6350, "properties": { "facing": "south", "half": "top", @@ -121093,7 +114348,7 @@ } }, { - "id": 7124, + "id": 6351, "properties": { "facing": "south", "half": "top", @@ -121103,7 +114358,7 @@ } }, { - "id": 7125, + "id": 6352, "properties": { "facing": "south", "half": "top", @@ -121113,7 +114368,7 @@ } }, { - "id": 7126, + "id": 6353, "properties": { "facing": "south", "half": "top", @@ -121123,7 +114378,7 @@ } }, { - "id": 7127, + "id": 6354, "properties": { "facing": "south", "half": "top", @@ -121133,7 +114388,7 @@ } }, { - "id": 7128, + "id": 6355, "properties": { "facing": "south", "half": "top", @@ -121143,7 +114398,7 @@ } }, { - "id": 7129, + "id": 6356, "properties": { "facing": "south", "half": "bottom", @@ -121153,7 +114408,7 @@ } }, { - "id": 7130, + "id": 6357, "properties": { "facing": "south", "half": "bottom", @@ -121163,7 +114418,7 @@ } }, { - "id": 7131, + "id": 6358, "properties": { "facing": "south", "half": "bottom", @@ -121173,7 +114428,7 @@ } }, { - "id": 7132, + "id": 6359, "properties": { "facing": "south", "half": "bottom", @@ -121183,7 +114438,7 @@ } }, { - "id": 7133, + "id": 6360, "properties": { "facing": "south", "half": "bottom", @@ -121193,7 +114448,7 @@ } }, { - "id": 7134, + "id": 6361, "properties": { "facing": "south", "half": "bottom", @@ -121203,7 +114458,7 @@ } }, { - "id": 7135, + "id": 6362, "properties": { "facing": "south", "half": "bottom", @@ -121213,7 +114468,7 @@ } }, { - "id": 7136, + "id": 6363, "properties": { "facing": "south", "half": "bottom", @@ -121223,7 +114478,7 @@ } }, { - "id": 7137, + "id": 6364, "properties": { "facing": "west", "half": "top", @@ -121233,7 +114488,7 @@ } }, { - "id": 7138, + "id": 6365, "properties": { "facing": "west", "half": "top", @@ -121243,7 +114498,7 @@ } }, { - "id": 7139, + "id": 6366, "properties": { "facing": "west", "half": "top", @@ -121253,7 +114508,7 @@ } }, { - "id": 7140, + "id": 6367, "properties": { "facing": "west", "half": "top", @@ -121263,7 +114518,7 @@ } }, { - "id": 7141, + "id": 6368, "properties": { "facing": "west", "half": "top", @@ -121273,7 +114528,7 @@ } }, { - "id": 7142, + "id": 6369, "properties": { "facing": "west", "half": "top", @@ -121283,7 +114538,7 @@ } }, { - "id": 7143, + "id": 6370, "properties": { "facing": "west", "half": "top", @@ -121293,7 +114548,7 @@ } }, { - "id": 7144, + "id": 6371, "properties": { "facing": "west", "half": "top", @@ -121303,7 +114558,7 @@ } }, { - "id": 7145, + "id": 6372, "properties": { "facing": "west", "half": "bottom", @@ -121313,7 +114568,7 @@ } }, { - "id": 7146, + "id": 6373, "properties": { "facing": "west", "half": "bottom", @@ -121323,7 +114578,7 @@ } }, { - "id": 7147, + "id": 6374, "properties": { "facing": "west", "half": "bottom", @@ -121333,7 +114588,7 @@ } }, { - "id": 7148, + "id": 6375, "properties": { "facing": "west", "half": "bottom", @@ -121343,7 +114598,7 @@ } }, { - "id": 7149, + "id": 6376, "properties": { "facing": "west", "half": "bottom", @@ -121353,7 +114608,7 @@ } }, { - "id": 7150, + "id": 6377, "properties": { "facing": "west", "half": "bottom", @@ -121363,7 +114618,7 @@ } }, { - "id": 7151, + "id": 6378, "properties": { "facing": "west", "half": "bottom", @@ -121373,7 +114628,7 @@ } }, { - "id": 7152, + "id": 6379, "properties": { "facing": "west", "half": "bottom", @@ -121383,7 +114638,7 @@ } }, { - "id": 7153, + "id": 6380, "properties": { "facing": "east", "half": "top", @@ -121393,7 +114648,7 @@ } }, { - "id": 7154, + "id": 6381, "properties": { "facing": "east", "half": "top", @@ -121403,7 +114658,7 @@ } }, { - "id": 7155, + "id": 6382, "properties": { "facing": "east", "half": "top", @@ -121413,7 +114668,7 @@ } }, { - "id": 7156, + "id": 6383, "properties": { "facing": "east", "half": "top", @@ -121423,7 +114678,7 @@ } }, { - "id": 7157, + "id": 6384, "properties": { "facing": "east", "half": "top", @@ -121433,7 +114688,7 @@ } }, { - "id": 7158, + "id": 6385, "properties": { "facing": "east", "half": "top", @@ -121443,7 +114698,7 @@ } }, { - "id": 7159, + "id": 6386, "properties": { "facing": "east", "half": "top", @@ -121453,7 +114708,7 @@ } }, { - "id": 7160, + "id": 6387, "properties": { "facing": "east", "half": "top", @@ -121463,7 +114718,7 @@ } }, { - "id": 7161, + "id": 6388, "properties": { "facing": "east", "half": "bottom", @@ -121473,7 +114728,7 @@ } }, { - "id": 7162, + "id": 6389, "properties": { "facing": "east", "half": "bottom", @@ -121483,7 +114738,7 @@ } }, { - "id": 7163, + "id": 6390, "properties": { "facing": "east", "half": "bottom", @@ -121493,7 +114748,7 @@ } }, { - "id": 7164, + "id": 6391, "properties": { "facing": "east", "half": "bottom", @@ -121503,7 +114758,7 @@ } }, { - "id": 7165, + "id": 6392, "properties": { "facing": "east", "half": "bottom", @@ -121513,7 +114768,7 @@ } }, { - "id": 7166, + "id": 6393, "properties": { "facing": "east", "half": "bottom", @@ -121523,7 +114778,7 @@ } }, { - "id": 7167, + "id": 6394, "properties": { "facing": "east", "half": "bottom", @@ -121533,7 +114788,7 @@ } }, { - "id": 7168, + "id": 6395, "properties": { "facing": "east", "half": "bottom", @@ -121564,7 +114819,7 @@ }, "states": [ { - "id": 6514, + "id": 5746, "properties": { "facing": "north", "waterlogged": "true" @@ -121572,49 +114827,49 @@ }, { "default": true, - "id": 6515, + "id": 5747, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 6516, + "id": 5748, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 6517, + "id": 5749, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 6518, + "id": 5750, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 6519, + "id": 5751, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 6520, + "id": 5752, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 6521, + "id": 5753, "properties": { "facing": "east", "waterlogged": "false" @@ -121642,7 +114897,7 @@ }, "states": [ { - "id": 5666, + "id": 4898, "properties": { "facing": "north", "waterlogged": "true" @@ -121650,49 +114905,49 @@ }, { "default": true, - "id": 5667, + "id": 4899, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 5668, + "id": 4900, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 5669, + "id": 4901, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 5670, + "id": 4902, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 5671, + "id": 4903, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 5672, + "id": 4904, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 5673, + "id": 4905, "properties": { "facing": "east", "waterlogged": "false" @@ -121772,157 +115027,157 @@ "states": [ { "default": true, - "id": 14860, + "id": 13783, "properties": { "age": "0" } }, { - "id": 14861, + "id": 13784, "properties": { "age": "1" } }, { - "id": 14862, + "id": 13785, "properties": { "age": "2" } }, { - "id": 14863, + "id": 13786, "properties": { "age": "3" } }, { - "id": 14864, + "id": 13787, "properties": { "age": "4" } }, { - "id": 14865, + "id": 13788, "properties": { "age": "5" } }, { - "id": 14866, + "id": 13789, "properties": { "age": "6" } }, { - "id": 14867, + "id": 13790, "properties": { "age": "7" } }, { - "id": 14868, + "id": 13791, "properties": { "age": "8" } }, { - "id": 14869, + "id": 13792, "properties": { "age": "9" } }, { - "id": 14870, + "id": 13793, "properties": { "age": "10" } }, { - "id": 14871, + "id": 13794, "properties": { "age": "11" } }, { - "id": 14872, + "id": 13795, "properties": { "age": "12" } }, { - "id": 14873, + "id": 13796, "properties": { "age": "13" } }, { - "id": 14874, + "id": 13797, "properties": { "age": "14" } }, { - "id": 14875, + "id": 13798, "properties": { "age": "15" } }, { - "id": 14876, + "id": 13799, "properties": { "age": "16" } }, { - "id": 14877, + "id": 13800, "properties": { "age": "17" } }, { - "id": 14878, + "id": 13801, "properties": { "age": "18" } }, { - "id": 14879, + "id": 13802, "properties": { "age": "19" } }, { - "id": 14880, + "id": 13803, "properties": { "age": "20" } }, { - "id": 14881, + "id": 13804, "properties": { "age": "21" } }, { - "id": 14882, + "id": 13805, "properties": { "age": "22" } }, { - "id": 14883, + "id": 13806, "properties": { "age": "23" } }, { - "id": 14884, + "id": 13807, "properties": { "age": "24" } }, { - "id": 14885, + "id": 13808, "properties": { "age": "25" } @@ -121937,7 +115192,7 @@ "states": [ { "default": true, - "id": 14886 + "id": 13809 } ] }, @@ -121960,7 +115215,7 @@ }, "states": [ { - "id": 5518, + "id": 4750, "properties": { "facing": "north", "waterlogged": "true" @@ -121968,49 +115223,49 @@ }, { "default": true, - "id": 5519, + "id": 4751, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 5520, + "id": 4752, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 5521, + "id": 4753, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 5522, + "id": 4754, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 5523, + "id": 4755, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 5524, + "id": 4756, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 5525, + "id": 4757, "properties": { "facing": "east", "waterlogged": "false" @@ -122035,21 +115290,21 @@ }, "states": [ { - "id": 20635, + "id": 19526, "properties": { "hanging": "true", "waterlogged": "true" } }, { - "id": 20636, + "id": 19527, "properties": { "hanging": "true", "waterlogged": "false" } }, { - "id": 20637, + "id": 19528, "properties": { "hanging": "false", "waterlogged": "true" @@ -122057,7 +115312,7 @@ }, { "default": true, - "id": 20638, + "id": 19529, "properties": { "hanging": "false", "waterlogged": "false" @@ -122117,63 +115372,63 @@ }, "states": [ { - "id": 23214, + "id": 22073, "properties": { "facing": "north", "waterlogged": "true" } }, { - "id": 23215, + "id": 22074, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 23216, + "id": 22075, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 23217, + "id": 22076, "properties": { "facing": "east", "waterlogged": "false" } }, { - "id": 23218, + "id": 22077, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 23219, + "id": 22078, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 23220, + "id": 22079, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 23221, + "id": 22080, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 23222, + "id": 22081, "properties": { "facing": "up", "waterlogged": "true" @@ -122181,21 +115436,21 @@ }, { "default": true, - "id": 23223, + "id": 22082, "properties": { "facing": "up", "waterlogged": "false" } }, { - "id": 23224, + "id": 22083, "properties": { "facing": "down", "waterlogged": "true" } }, { - "id": 23225, + "id": 22084, "properties": { "facing": "down", "waterlogged": "false" @@ -122216,14 +115471,14 @@ }, "states": [ { - "id": 12723, + "id": 11646, "properties": { "half": "upper" } }, { "default": true, - "id": 12724, + "id": 11647, "properties": { "half": "lower" } @@ -122364,7 +115619,7 @@ "states": [ { "default": true, - "id": 9263 + "id": 8186 } ] }, @@ -122390,112 +115645,112 @@ "states": [ { "default": true, - "id": 27644, + "id": 25887, "properties": { "facing": "north", "segment_amount": "1" } }, { - "id": 27645, + "id": 25888, "properties": { "facing": "north", "segment_amount": "2" } }, { - "id": 27646, + "id": 25889, "properties": { "facing": "north", "segment_amount": "3" } }, { - "id": 27647, + "id": 25890, "properties": { "facing": "north", "segment_amount": "4" } }, { - "id": 27648, + "id": 25891, "properties": { "facing": "south", "segment_amount": "1" } }, { - "id": 27649, + "id": 25892, "properties": { "facing": "south", "segment_amount": "2" } }, { - "id": 27650, + "id": 25893, "properties": { "facing": "south", "segment_amount": "3" } }, { - "id": 27651, + "id": 25894, "properties": { "facing": "south", "segment_amount": "4" } }, { - "id": 27652, + "id": 25895, "properties": { "facing": "west", "segment_amount": "1" } }, { - "id": 27653, + "id": 25896, "properties": { "facing": "west", "segment_amount": "2" } }, { - "id": 27654, + "id": 25897, "properties": { "facing": "west", "segment_amount": "3" } }, { - "id": 27655, + "id": 25898, "properties": { "facing": "west", "segment_amount": "4" } }, { - "id": 27656, + "id": 25899, "properties": { "facing": "east", "segment_amount": "1" } }, { - "id": 27657, + "id": 25900, "properties": { "facing": "east", "segment_amount": "2" } }, { - "id": 27658, + "id": 25901, "properties": { "facing": "east", "segment_amount": "3" } }, { - "id": 27659, + "id": 25902, "properties": { "facing": "east", "segment_amount": "4" @@ -122526,7 +115781,7 @@ }, "states": [ { - "id": 20582, + "id": 19473, "properties": { "facing": "north", "has_book": "true", @@ -122534,7 +115789,7 @@ } }, { - "id": 20583, + "id": 19474, "properties": { "facing": "north", "has_book": "true", @@ -122542,7 +115797,7 @@ } }, { - "id": 20584, + "id": 19475, "properties": { "facing": "north", "has_book": "false", @@ -122551,7 +115806,7 @@ }, { "default": true, - "id": 20585, + "id": 19476, "properties": { "facing": "north", "has_book": "false", @@ -122559,7 +115814,7 @@ } }, { - "id": 20586, + "id": 19477, "properties": { "facing": "south", "has_book": "true", @@ -122567,7 +115822,7 @@ } }, { - "id": 20587, + "id": 19478, "properties": { "facing": "south", "has_book": "true", @@ -122575,7 +115830,7 @@ } }, { - "id": 20588, + "id": 19479, "properties": { "facing": "south", "has_book": "false", @@ -122583,7 +115838,7 @@ } }, { - "id": 20589, + "id": 19480, "properties": { "facing": "south", "has_book": "false", @@ -122591,7 +115846,7 @@ } }, { - "id": 20590, + "id": 19481, "properties": { "facing": "west", "has_book": "true", @@ -122599,7 +115854,7 @@ } }, { - "id": 20591, + "id": 19482, "properties": { "facing": "west", "has_book": "true", @@ -122607,7 +115862,7 @@ } }, { - "id": 20592, + "id": 19483, "properties": { "facing": "west", "has_book": "false", @@ -122615,7 +115870,7 @@ } }, { - "id": 20593, + "id": 19484, "properties": { "facing": "west", "has_book": "false", @@ -122623,7 +115878,7 @@ } }, { - "id": 20594, + "id": 19485, "properties": { "facing": "east", "has_book": "true", @@ -122631,7 +115886,7 @@ } }, { - "id": 20595, + "id": 19486, "properties": { "facing": "east", "has_book": "true", @@ -122639,7 +115894,7 @@ } }, { - "id": 20596, + "id": 19487, "properties": { "facing": "east", "has_book": "false", @@ -122647,7 +115902,7 @@ } }, { - "id": 20597, + "id": 19488, "properties": { "facing": "east", "has_book": "false", @@ -122680,7 +115935,7 @@ }, "states": [ { - "id": 6570, + "id": 5802, "properties": { "face": "floor", "facing": "north", @@ -122688,7 +115943,7 @@ } }, { - "id": 6571, + "id": 5803, "properties": { "face": "floor", "facing": "north", @@ -122696,7 +115951,7 @@ } }, { - "id": 6572, + "id": 5804, "properties": { "face": "floor", "facing": "south", @@ -122704,7 +115959,7 @@ } }, { - "id": 6573, + "id": 5805, "properties": { "face": "floor", "facing": "south", @@ -122712,7 +115967,7 @@ } }, { - "id": 6574, + "id": 5806, "properties": { "face": "floor", "facing": "west", @@ -122720,7 +115975,7 @@ } }, { - "id": 6575, + "id": 5807, "properties": { "face": "floor", "facing": "west", @@ -122728,7 +115983,7 @@ } }, { - "id": 6576, + "id": 5808, "properties": { "face": "floor", "facing": "east", @@ -122736,7 +115991,7 @@ } }, { - "id": 6577, + "id": 5809, "properties": { "face": "floor", "facing": "east", @@ -122744,7 +115999,7 @@ } }, { - "id": 6578, + "id": 5810, "properties": { "face": "wall", "facing": "north", @@ -122753,7 +116008,7 @@ }, { "default": true, - "id": 6579, + "id": 5811, "properties": { "face": "wall", "facing": "north", @@ -122761,7 +116016,7 @@ } }, { - "id": 6580, + "id": 5812, "properties": { "face": "wall", "facing": "south", @@ -122769,7 +116024,7 @@ } }, { - "id": 6581, + "id": 5813, "properties": { "face": "wall", "facing": "south", @@ -122777,7 +116032,7 @@ } }, { - "id": 6582, + "id": 5814, "properties": { "face": "wall", "facing": "west", @@ -122785,7 +116040,7 @@ } }, { - "id": 6583, + "id": 5815, "properties": { "face": "wall", "facing": "west", @@ -122793,7 +116048,7 @@ } }, { - "id": 6584, + "id": 5816, "properties": { "face": "wall", "facing": "east", @@ -122801,7 +116056,7 @@ } }, { - "id": 6585, + "id": 5817, "properties": { "face": "wall", "facing": "east", @@ -122809,7 +116064,7 @@ } }, { - "id": 6586, + "id": 5818, "properties": { "face": "ceiling", "facing": "north", @@ -122817,7 +116072,7 @@ } }, { - "id": 6587, + "id": 5819, "properties": { "face": "ceiling", "facing": "north", @@ -122825,7 +116080,7 @@ } }, { - "id": 6588, + "id": 5820, "properties": { "face": "ceiling", "facing": "south", @@ -122833,7 +116088,7 @@ } }, { - "id": 6589, + "id": 5821, "properties": { "face": "ceiling", "facing": "south", @@ -122841,7 +116096,7 @@ } }, { - "id": 6590, + "id": 5822, "properties": { "face": "ceiling", "facing": "west", @@ -122849,7 +116104,7 @@ } }, { - "id": 6591, + "id": 5823, "properties": { "face": "ceiling", "facing": "west", @@ -122857,7 +116112,7 @@ } }, { - "id": 6592, + "id": 5824, "properties": { "face": "ceiling", "facing": "east", @@ -122865,7 +116120,7 @@ } }, { - "id": 6593, + "id": 5825, "properties": { "face": "ceiling", "facing": "east", @@ -122905,217 +116160,217 @@ }, "states": [ { - "id": 12333, + "id": 11256, "properties": { "level": "0", "waterlogged": "true" } }, { - "id": 12334, + "id": 11257, "properties": { "level": "0", "waterlogged": "false" } }, { - "id": 12335, + "id": 11258, "properties": { "level": "1", "waterlogged": "true" } }, { - "id": 12336, + "id": 11259, "properties": { "level": "1", "waterlogged": "false" } }, { - "id": 12337, + "id": 11260, "properties": { "level": "2", "waterlogged": "true" } }, { - "id": 12338, + "id": 11261, "properties": { "level": "2", "waterlogged": "false" } }, { - "id": 12339, + "id": 11262, "properties": { "level": "3", "waterlogged": "true" } }, { - "id": 12340, + "id": 11263, "properties": { "level": "3", "waterlogged": "false" } }, { - "id": 12341, + "id": 11264, "properties": { "level": "4", "waterlogged": "true" } }, { - "id": 12342, + "id": 11265, "properties": { "level": "4", "waterlogged": "false" } }, { - "id": 12343, + "id": 11266, "properties": { "level": "5", "waterlogged": "true" } }, { - "id": 12344, + "id": 11267, "properties": { "level": "5", "waterlogged": "false" } }, { - "id": 12345, + "id": 11268, "properties": { "level": "6", "waterlogged": "true" } }, { - "id": 12346, + "id": 11269, "properties": { "level": "6", "waterlogged": "false" } }, { - "id": 12347, + "id": 11270, "properties": { "level": "7", "waterlogged": "true" } }, { - "id": 12348, + "id": 11271, "properties": { "level": "7", "waterlogged": "false" } }, { - "id": 12349, + "id": 11272, "properties": { "level": "8", "waterlogged": "true" } }, { - "id": 12350, + "id": 11273, "properties": { "level": "8", "waterlogged": "false" } }, { - "id": 12351, + "id": 11274, "properties": { "level": "9", "waterlogged": "true" } }, { - "id": 12352, + "id": 11275, "properties": { "level": "9", "waterlogged": "false" } }, { - "id": 12353, + "id": 11276, "properties": { "level": "10", "waterlogged": "true" } }, { - "id": 12354, + "id": 11277, "properties": { "level": "10", "waterlogged": "false" } }, { - "id": 12355, + "id": 11278, "properties": { "level": "11", "waterlogged": "true" } }, { - "id": 12356, + "id": 11279, "properties": { "level": "11", "waterlogged": "false" } }, { - "id": 12357, + "id": 11280, "properties": { "level": "12", "waterlogged": "true" } }, { - "id": 12358, + "id": 11281, "properties": { "level": "12", "waterlogged": "false" } }, { - "id": 12359, + "id": 11282, "properties": { "level": "13", "waterlogged": "true" } }, { - "id": 12360, + "id": 11283, "properties": { "level": "13", "waterlogged": "false" } }, { - "id": 12361, + "id": 11284, "properties": { "level": "14", "waterlogged": "true" } }, { - "id": 12362, + "id": 11285, "properties": { "level": "14", "waterlogged": "false" } }, { - "id": 12363, + "id": 11286, "properties": { "level": "15", "waterlogged": "true" @@ -123123,7 +116378,7 @@ }, { "default": true, - "id": 12364, + "id": 11287, "properties": { "level": "15", "waterlogged": "false" @@ -123160,97 +116415,97 @@ "states": [ { "default": true, - "id": 12773, + "id": 11696, "properties": { "rotation": "0" } }, { - "id": 12774, + "id": 11697, "properties": { "rotation": "1" } }, { - "id": 12775, + "id": 11698, "properties": { "rotation": "2" } }, { - "id": 12776, + "id": 11699, "properties": { "rotation": "3" } }, { - "id": 12777, + "id": 11700, "properties": { "rotation": "4" } }, { - "id": 12778, + "id": 11701, "properties": { "rotation": "5" } }, { - "id": 12779, + "id": 11702, "properties": { "rotation": "6" } }, { - "id": 12780, + "id": 11703, "properties": { "rotation": "7" } }, { - "id": 12781, + "id": 11704, "properties": { "rotation": "8" } }, { - "id": 12782, + "id": 11705, "properties": { "rotation": "9" } }, { - "id": 12783, + "id": 11706, "properties": { "rotation": "10" } }, { - "id": 12784, + "id": 11707, "properties": { "rotation": "11" } }, { - "id": 12785, + "id": 11708, "properties": { "rotation": "12" } }, { - "id": 12786, + "id": 11709, "properties": { "rotation": "13" } }, { - "id": 12787, + "id": 11710, "properties": { "rotation": "14" } }, { - "id": 12788, + "id": 11711, "properties": { "rotation": "15" } @@ -123434,7 +116689,7 @@ }, "states": [ { - "id": 22958, + "id": 21817, "properties": { "candles": "1", "lit": "true", @@ -123442,7 +116697,7 @@ } }, { - "id": 22959, + "id": 21818, "properties": { "candles": "1", "lit": "true", @@ -123450,7 +116705,7 @@ } }, { - "id": 22960, + "id": 21819, "properties": { "candles": "1", "lit": "false", @@ -123459,7 +116714,7 @@ }, { "default": true, - "id": 22961, + "id": 21820, "properties": { "candles": "1", "lit": "false", @@ -123467,7 +116722,7 @@ } }, { - "id": 22962, + "id": 21821, "properties": { "candles": "2", "lit": "true", @@ -123475,7 +116730,7 @@ } }, { - "id": 22963, + "id": 21822, "properties": { "candles": "2", "lit": "true", @@ -123483,7 +116738,7 @@ } }, { - "id": 22964, + "id": 21823, "properties": { "candles": "2", "lit": "false", @@ -123491,7 +116746,7 @@ } }, { - "id": 22965, + "id": 21824, "properties": { "candles": "2", "lit": "false", @@ -123499,7 +116754,7 @@ } }, { - "id": 22966, + "id": 21825, "properties": { "candles": "3", "lit": "true", @@ -123507,7 +116762,7 @@ } }, { - "id": 22967, + "id": 21826, "properties": { "candles": "3", "lit": "true", @@ -123515,7 +116770,7 @@ } }, { - "id": 22968, + "id": 21827, "properties": { "candles": "3", "lit": "false", @@ -123523,7 +116778,7 @@ } }, { - "id": 22969, + "id": 21828, "properties": { "candles": "3", "lit": "false", @@ -123531,7 +116786,7 @@ } }, { - "id": 22970, + "id": 21829, "properties": { "candles": "4", "lit": "true", @@ -123539,7 +116794,7 @@ } }, { - "id": 22971, + "id": 21830, "properties": { "candles": "4", "lit": "true", @@ -123547,7 +116802,7 @@ } }, { - "id": 22972, + "id": 21831, "properties": { "candles": "4", "lit": "false", @@ -123555,7 +116810,7 @@ } }, { - "id": 22973, + "id": 21832, "properties": { "candles": "4", "lit": "false", @@ -123578,14 +116833,14 @@ }, "states": [ { - "id": 23174, + "id": 22033, "properties": { "lit": "true" } }, { "default": true, - "id": 23175, + "id": 22034, "properties": { "lit": "false" } @@ -123601,7 +116856,7 @@ "states": [ { "default": true, - "id": 12697 + "id": 11620 } ] }, @@ -123613,7 +116868,7 @@ "states": [ { "default": true, - "id": 14831 + "id": 13754 } ] }, @@ -123626,7 +116881,7 @@ "states": [ { "default": true, - "id": 14847 + "id": 13770 } ] }, @@ -123646,25 +116901,25 @@ "states": [ { "default": true, - "id": 14776, + "id": 13699, "properties": { "facing": "north" } }, { - "id": 14777, + "id": 13700, "properties": { "facing": "south" } }, { - "id": 14778, + "id": 13701, "properties": { "facing": "west" } }, { - "id": 14779, + "id": 13702, "properties": { "facing": "east" } @@ -123689,38 +116944,38 @@ }, "states": [ { - "id": 14686, + "id": 13609, "properties": { "facing": "north" } }, { - "id": 14687, + "id": 13610, "properties": { "facing": "east" } }, { - "id": 14688, + "id": 13611, "properties": { "facing": "south" } }, { - "id": 14689, + "id": 13612, "properties": { "facing": "west" } }, { "default": true, - "id": 14690, + "id": 13613, "properties": { "facing": "up" } }, { - "id": 14691, + "id": 13614, "properties": { "facing": "down" } @@ -123736,7 +116991,7 @@ "states": [ { "default": true, - "id": 6900 + "id": 6127 } ] }, @@ -123770,7 +117025,7 @@ }, "states": [ { - "id": 11354, + "id": 10277, "properties": { "east": "true", "north": "true", @@ -123780,7 +117035,7 @@ } }, { - "id": 11355, + "id": 10278, "properties": { "east": "true", "north": "true", @@ -123790,7 +117045,7 @@ } }, { - "id": 11356, + "id": 10279, "properties": { "east": "true", "north": "true", @@ -123800,7 +117055,7 @@ } }, { - "id": 11357, + "id": 10280, "properties": { "east": "true", "north": "true", @@ -123810,7 +117065,7 @@ } }, { - "id": 11358, + "id": 10281, "properties": { "east": "true", "north": "true", @@ -123820,7 +117075,7 @@ } }, { - "id": 11359, + "id": 10282, "properties": { "east": "true", "north": "true", @@ -123830,7 +117085,7 @@ } }, { - "id": 11360, + "id": 10283, "properties": { "east": "true", "north": "true", @@ -123840,7 +117095,7 @@ } }, { - "id": 11361, + "id": 10284, "properties": { "east": "true", "north": "true", @@ -123850,7 +117105,7 @@ } }, { - "id": 11362, + "id": 10285, "properties": { "east": "true", "north": "false", @@ -123860,7 +117115,7 @@ } }, { - "id": 11363, + "id": 10286, "properties": { "east": "true", "north": "false", @@ -123870,7 +117125,7 @@ } }, { - "id": 11364, + "id": 10287, "properties": { "east": "true", "north": "false", @@ -123880,7 +117135,7 @@ } }, { - "id": 11365, + "id": 10288, "properties": { "east": "true", "north": "false", @@ -123890,7 +117145,7 @@ } }, { - "id": 11366, + "id": 10289, "properties": { "east": "true", "north": "false", @@ -123900,7 +117155,7 @@ } }, { - "id": 11367, + "id": 10290, "properties": { "east": "true", "north": "false", @@ -123910,7 +117165,7 @@ } }, { - "id": 11368, + "id": 10291, "properties": { "east": "true", "north": "false", @@ -123920,7 +117175,7 @@ } }, { - "id": 11369, + "id": 10292, "properties": { "east": "true", "north": "false", @@ -123930,7 +117185,7 @@ } }, { - "id": 11370, + "id": 10293, "properties": { "east": "false", "north": "true", @@ -123940,7 +117195,7 @@ } }, { - "id": 11371, + "id": 10294, "properties": { "east": "false", "north": "true", @@ -123950,7 +117205,7 @@ } }, { - "id": 11372, + "id": 10295, "properties": { "east": "false", "north": "true", @@ -123960,7 +117215,7 @@ } }, { - "id": 11373, + "id": 10296, "properties": { "east": "false", "north": "true", @@ -123970,7 +117225,7 @@ } }, { - "id": 11374, + "id": 10297, "properties": { "east": "false", "north": "true", @@ -123980,7 +117235,7 @@ } }, { - "id": 11375, + "id": 10298, "properties": { "east": "false", "north": "true", @@ -123990,7 +117245,7 @@ } }, { - "id": 11376, + "id": 10299, "properties": { "east": "false", "north": "true", @@ -124000,7 +117255,7 @@ } }, { - "id": 11377, + "id": 10300, "properties": { "east": "false", "north": "true", @@ -124010,7 +117265,7 @@ } }, { - "id": 11378, + "id": 10301, "properties": { "east": "false", "north": "false", @@ -124020,7 +117275,7 @@ } }, { - "id": 11379, + "id": 10302, "properties": { "east": "false", "north": "false", @@ -124030,7 +117285,7 @@ } }, { - "id": 11380, + "id": 10303, "properties": { "east": "false", "north": "false", @@ -124040,7 +117295,7 @@ } }, { - "id": 11381, + "id": 10304, "properties": { "east": "false", "north": "false", @@ -124050,7 +117305,7 @@ } }, { - "id": 11382, + "id": 10305, "properties": { "east": "false", "north": "false", @@ -124060,7 +117315,7 @@ } }, { - "id": 11383, + "id": 10306, "properties": { "east": "false", "north": "false", @@ -124070,7 +117325,7 @@ } }, { - "id": 11384, + "id": 10307, "properties": { "east": "false", "north": "false", @@ -124081,7 +117336,7 @@ }, { "default": true, - "id": 11385, + "id": 10308, "properties": { "east": "false", "north": "false", @@ -124094,13 +117349,13 @@ }, "minecraft:light_blue_terracotta": { "definition": { - "type": "minecraft:block", + "type": "minecraft:terracotta", "properties": {} }, "states": [ { "default": true, - "id": 11245 + "id": 10168 } ] }, @@ -124121,25 +117376,25 @@ "states": [ { "default": true, - "id": 12993, + "id": 11916, "properties": { "facing": "north" } }, { - "id": 12994, + "id": 11917, "properties": { "facing": "south" } }, { - "id": 12995, + "id": 11918, "properties": { "facing": "west" } }, { - "id": 12996, + "id": 11919, "properties": { "facing": "east" } @@ -124187,97 +117442,97 @@ "states": [ { "default": true, - "id": 12853, + "id": 11776, "properties": { "rotation": "0" } }, { - "id": 12854, + "id": 11777, "properties": { "rotation": "1" } }, { - "id": 12855, + "id": 11778, "properties": { "rotation": "2" } }, { - "id": 12856, + "id": 11779, "properties": { "rotation": "3" } }, { - "id": 12857, + "id": 11780, "properties": { "rotation": "4" } }, { - "id": 12858, + "id": 11781, "properties": { "rotation": "5" } }, { - "id": 12859, + "id": 11782, "properties": { "rotation": "6" } }, { - "id": 12860, + "id": 11783, "properties": { "rotation": "7" } }, { - "id": 12861, + "id": 11784, "properties": { "rotation": "8" } }, { - "id": 12862, + "id": 11785, "properties": { "rotation": "9" } }, { - "id": 12863, + "id": 11786, "properties": { "rotation": "10" } }, { - "id": 12864, + "id": 11787, "properties": { "rotation": "11" } }, { - "id": 12865, + "id": 11788, "properties": { "rotation": "12" } }, { - "id": 12866, + "id": 11789, "properties": { "rotation": "13" } }, { - "id": 12867, + "id": 11790, "properties": { "rotation": "14" } }, { - "id": 12868, + "id": 11791, "properties": { "rotation": "15" } @@ -124461,7 +117716,7 @@ }, "states": [ { - "id": 23038, + "id": 21897, "properties": { "candles": "1", "lit": "true", @@ -124469,7 +117724,7 @@ } }, { - "id": 23039, + "id": 21898, "properties": { "candles": "1", "lit": "true", @@ -124477,7 +117732,7 @@ } }, { - "id": 23040, + "id": 21899, "properties": { "candles": "1", "lit": "false", @@ -124486,7 +117741,7 @@ }, { "default": true, - "id": 23041, + "id": 21900, "properties": { "candles": "1", "lit": "false", @@ -124494,7 +117749,7 @@ } }, { - "id": 23042, + "id": 21901, "properties": { "candles": "2", "lit": "true", @@ -124502,7 +117757,7 @@ } }, { - "id": 23043, + "id": 21902, "properties": { "candles": "2", "lit": "true", @@ -124510,7 +117765,7 @@ } }, { - "id": 23044, + "id": 21903, "properties": { "candles": "2", "lit": "false", @@ -124518,7 +117773,7 @@ } }, { - "id": 23045, + "id": 21904, "properties": { "candles": "2", "lit": "false", @@ -124526,7 +117781,7 @@ } }, { - "id": 23046, + "id": 21905, "properties": { "candles": "3", "lit": "true", @@ -124534,7 +117789,7 @@ } }, { - "id": 23047, + "id": 21906, "properties": { "candles": "3", "lit": "true", @@ -124542,7 +117797,7 @@ } }, { - "id": 23048, + "id": 21907, "properties": { "candles": "3", "lit": "false", @@ -124550,7 +117805,7 @@ } }, { - "id": 23049, + "id": 21908, "properties": { "candles": "3", "lit": "false", @@ -124558,7 +117813,7 @@ } }, { - "id": 23050, + "id": 21909, "properties": { "candles": "4", "lit": "true", @@ -124566,7 +117821,7 @@ } }, { - "id": 23051, + "id": 21910, "properties": { "candles": "4", "lit": "true", @@ -124574,7 +117829,7 @@ } }, { - "id": 23052, + "id": 21911, "properties": { "candles": "4", "lit": "false", @@ -124582,7 +117837,7 @@ } }, { - "id": 23053, + "id": 21912, "properties": { "candles": "4", "lit": "false", @@ -124605,14 +117860,14 @@ }, "states": [ { - "id": 23184, + "id": 22043, "properties": { "lit": "true" } }, { "default": true, - "id": 23185, + "id": 22044, "properties": { "lit": "false" } @@ -124628,7 +117883,7 @@ "states": [ { "default": true, - "id": 12702 + "id": 11625 } ] }, @@ -124640,7 +117895,7 @@ "states": [ { "default": true, - "id": 14836 + "id": 13759 } ] }, @@ -124653,7 +117908,7 @@ "states": [ { "default": true, - "id": 14852 + "id": 13775 } ] }, @@ -124673,25 +117928,25 @@ "states": [ { "default": true, - "id": 14796, + "id": 13719, "properties": { "facing": "north" } }, { - "id": 14797, + "id": 13720, "properties": { "facing": "south" } }, { - "id": 14798, + "id": 13721, "properties": { "facing": "west" } }, { - "id": 14799, + "id": 13722, "properties": { "facing": "east" } @@ -124716,38 +117971,38 @@ }, "states": [ { - "id": 14716, + "id": 13639, "properties": { "facing": "north" } }, { - "id": 14717, + "id": 13640, "properties": { "facing": "east" } }, { - "id": 14718, + "id": 13641, "properties": { "facing": "south" } }, { - "id": 14719, + "id": 13642, "properties": { "facing": "west" } }, { "default": true, - "id": 14720, + "id": 13643, "properties": { "facing": "up" } }, { - "id": 14721, + "id": 13644, "properties": { "facing": "down" } @@ -124763,7 +118018,7 @@ "states": [ { "default": true, - "id": 6905 + "id": 6132 } ] }, @@ -124797,7 +118052,7 @@ }, "states": [ { - "id": 11514, + "id": 10437, "properties": { "east": "true", "north": "true", @@ -124807,7 +118062,7 @@ } }, { - "id": 11515, + "id": 10438, "properties": { "east": "true", "north": "true", @@ -124817,7 +118072,7 @@ } }, { - "id": 11516, + "id": 10439, "properties": { "east": "true", "north": "true", @@ -124827,7 +118082,7 @@ } }, { - "id": 11517, + "id": 10440, "properties": { "east": "true", "north": "true", @@ -124837,7 +118092,7 @@ } }, { - "id": 11518, + "id": 10441, "properties": { "east": "true", "north": "true", @@ -124847,7 +118102,7 @@ } }, { - "id": 11519, + "id": 10442, "properties": { "east": "true", "north": "true", @@ -124857,7 +118112,7 @@ } }, { - "id": 11520, + "id": 10443, "properties": { "east": "true", "north": "true", @@ -124867,7 +118122,7 @@ } }, { - "id": 11521, + "id": 10444, "properties": { "east": "true", "north": "true", @@ -124877,7 +118132,7 @@ } }, { - "id": 11522, + "id": 10445, "properties": { "east": "true", "north": "false", @@ -124887,7 +118142,7 @@ } }, { - "id": 11523, + "id": 10446, "properties": { "east": "true", "north": "false", @@ -124897,7 +118152,7 @@ } }, { - "id": 11524, + "id": 10447, "properties": { "east": "true", "north": "false", @@ -124907,7 +118162,7 @@ } }, { - "id": 11525, + "id": 10448, "properties": { "east": "true", "north": "false", @@ -124917,7 +118172,7 @@ } }, { - "id": 11526, + "id": 10449, "properties": { "east": "true", "north": "false", @@ -124927,7 +118182,7 @@ } }, { - "id": 11527, + "id": 10450, "properties": { "east": "true", "north": "false", @@ -124937,7 +118192,7 @@ } }, { - "id": 11528, + "id": 10451, "properties": { "east": "true", "north": "false", @@ -124947,7 +118202,7 @@ } }, { - "id": 11529, + "id": 10452, "properties": { "east": "true", "north": "false", @@ -124957,7 +118212,7 @@ } }, { - "id": 11530, + "id": 10453, "properties": { "east": "false", "north": "true", @@ -124967,7 +118222,7 @@ } }, { - "id": 11531, + "id": 10454, "properties": { "east": "false", "north": "true", @@ -124977,7 +118232,7 @@ } }, { - "id": 11532, + "id": 10455, "properties": { "east": "false", "north": "true", @@ -124987,7 +118242,7 @@ } }, { - "id": 11533, + "id": 10456, "properties": { "east": "false", "north": "true", @@ -124997,7 +118252,7 @@ } }, { - "id": 11534, + "id": 10457, "properties": { "east": "false", "north": "true", @@ -125007,7 +118262,7 @@ } }, { - "id": 11535, + "id": 10458, "properties": { "east": "false", "north": "true", @@ -125017,7 +118272,7 @@ } }, { - "id": 11536, + "id": 10459, "properties": { "east": "false", "north": "true", @@ -125027,7 +118282,7 @@ } }, { - "id": 11537, + "id": 10460, "properties": { "east": "false", "north": "true", @@ -125037,7 +118292,7 @@ } }, { - "id": 11538, + "id": 10461, "properties": { "east": "false", "north": "false", @@ -125047,7 +118302,7 @@ } }, { - "id": 11539, + "id": 10462, "properties": { "east": "false", "north": "false", @@ -125057,7 +118312,7 @@ } }, { - "id": 11540, + "id": 10463, "properties": { "east": "false", "north": "false", @@ -125067,7 +118322,7 @@ } }, { - "id": 11541, + "id": 10464, "properties": { "east": "false", "north": "false", @@ -125077,7 +118332,7 @@ } }, { - "id": 11542, + "id": 10465, "properties": { "east": "false", "north": "false", @@ -125087,7 +118342,7 @@ } }, { - "id": 11543, + "id": 10466, "properties": { "east": "false", "north": "false", @@ -125097,7 +118352,7 @@ } }, { - "id": 11544, + "id": 10467, "properties": { "east": "false", "north": "false", @@ -125108,7 +118363,7 @@ }, { "default": true, - "id": 11545, + "id": 10468, "properties": { "east": "false", "north": "false", @@ -125121,13 +118376,13 @@ }, "minecraft:light_gray_terracotta": { "definition": { - "type": "minecraft:block", + "type": "minecraft:terracotta", "properties": {} }, "states": [ { "default": true, - "id": 11250 + "id": 10173 } ] }, @@ -125148,25 +118403,25 @@ "states": [ { "default": true, - "id": 13013, + "id": 11936, "properties": { "facing": "north" } }, { - "id": 13014, + "id": 11937, "properties": { "facing": "south" } }, { - "id": 13015, + "id": 11938, "properties": { "facing": "west" } }, { - "id": 13016, + "id": 11939, "properties": { "facing": "east" } @@ -125215,97 +118470,97 @@ "states": [ { "default": true, - "id": 11029, + "id": 9952, "properties": { "power": "0" } }, { - "id": 11030, + "id": 9953, "properties": { "power": "1" } }, { - "id": 11031, + "id": 9954, "properties": { "power": "2" } }, { - "id": 11032, + "id": 9955, "properties": { "power": "3" } }, { - "id": 11033, + "id": 9956, "properties": { "power": "4" } }, { - "id": 11034, + "id": 9957, "properties": { "power": "5" } }, { - "id": 11035, + "id": 9958, "properties": { "power": "6" } }, { - "id": 11036, + "id": 9959, "properties": { "power": "7" } }, { - "id": 11037, + "id": 9960, "properties": { "power": "8" } }, { - "id": 11038, + "id": 9961, "properties": { "power": "9" } }, { - "id": 11039, + "id": 9962, "properties": { "power": "10" } }, { - "id": 11040, + "id": 9963, "properties": { "power": "11" } }, { - "id": 11041, + "id": 9964, "properties": { "power": "12" } }, { - "id": 11042, + "id": 9965, "properties": { "power": "13" } }, { - "id": 11043, + "id": 9966, "properties": { "power": "14" } }, { - "id": 11044, + "id": 9967, "properties": { "power": "15" } @@ -125314,9 +118569,8 @@ }, "minecraft:lightning_rod": { "definition": { - "type": "minecraft:weathering_lightning_rod", - "properties": {}, - "weathering_state": "unaffected" + "type": "minecraft:lightning_rod", + "properties": {} }, "properties": { "facing": [ @@ -125338,7 +118592,7 @@ }, "states": [ { - "id": 27341, + "id": 25752, "properties": { "facing": "north", "powered": "true", @@ -125346,7 +118600,7 @@ } }, { - "id": 27342, + "id": 25753, "properties": { "facing": "north", "powered": "true", @@ -125354,7 +118608,7 @@ } }, { - "id": 27343, + "id": 25754, "properties": { "facing": "north", "powered": "false", @@ -125362,7 +118616,7 @@ } }, { - "id": 27344, + "id": 25755, "properties": { "facing": "north", "powered": "false", @@ -125370,7 +118624,7 @@ } }, { - "id": 27345, + "id": 25756, "properties": { "facing": "east", "powered": "true", @@ -125378,7 +118632,7 @@ } }, { - "id": 27346, + "id": 25757, "properties": { "facing": "east", "powered": "true", @@ -125386,7 +118640,7 @@ } }, { - "id": 27347, + "id": 25758, "properties": { "facing": "east", "powered": "false", @@ -125394,7 +118648,7 @@ } }, { - "id": 27348, + "id": 25759, "properties": { "facing": "east", "powered": "false", @@ -125402,7 +118656,7 @@ } }, { - "id": 27349, + "id": 25760, "properties": { "facing": "south", "powered": "true", @@ -125410,7 +118664,7 @@ } }, { - "id": 27350, + "id": 25761, "properties": { "facing": "south", "powered": "true", @@ -125418,7 +118672,7 @@ } }, { - "id": 27351, + "id": 25762, "properties": { "facing": "south", "powered": "false", @@ -125426,7 +118680,7 @@ } }, { - "id": 27352, + "id": 25763, "properties": { "facing": "south", "powered": "false", @@ -125434,7 +118688,7 @@ } }, { - "id": 27353, + "id": 25764, "properties": { "facing": "west", "powered": "true", @@ -125442,7 +118696,7 @@ } }, { - "id": 27354, + "id": 25765, "properties": { "facing": "west", "powered": "true", @@ -125450,7 +118704,7 @@ } }, { - "id": 27355, + "id": 25766, "properties": { "facing": "west", "powered": "false", @@ -125458,7 +118712,7 @@ } }, { - "id": 27356, + "id": 25767, "properties": { "facing": "west", "powered": "false", @@ -125466,7 +118720,7 @@ } }, { - "id": 27357, + "id": 25768, "properties": { "facing": "up", "powered": "true", @@ -125474,7 +118728,7 @@ } }, { - "id": 27358, + "id": 25769, "properties": { "facing": "up", "powered": "true", @@ -125482,7 +118736,7 @@ } }, { - "id": 27359, + "id": 25770, "properties": { "facing": "up", "powered": "false", @@ -125491,7 +118745,7 @@ }, { "default": true, - "id": 27360, + "id": 25771, "properties": { "facing": "up", "powered": "false", @@ -125499,7 +118753,7 @@ } }, { - "id": 27361, + "id": 25772, "properties": { "facing": "down", "powered": "true", @@ -125507,7 +118761,7 @@ } }, { - "id": 27362, + "id": 25773, "properties": { "facing": "down", "powered": "true", @@ -125515,7 +118769,7 @@ } }, { - "id": 27363, + "id": 25774, "properties": { "facing": "down", "powered": "false", @@ -125523,7 +118777,7 @@ } }, { - "id": 27364, + "id": 25775, "properties": { "facing": "down", "powered": "false", @@ -125545,14 +118799,14 @@ }, "states": [ { - "id": 12715, + "id": 11638, "properties": { "half": "upper" } }, { "default": true, - "id": 12716, + "id": 11639, "properties": { "half": "lower" } @@ -125585,7 +118839,7 @@ "states": [ { "default": true, - "id": 8719 + "id": 7642 } ] }, @@ -125618,97 +118872,97 @@ "states": [ { "default": true, - "id": 12805, + "id": 11728, "properties": { "rotation": "0" } }, { - "id": 12806, + "id": 11729, "properties": { "rotation": "1" } }, { - "id": 12807, + "id": 11730, "properties": { "rotation": "2" } }, { - "id": 12808, + "id": 11731, "properties": { "rotation": "3" } }, { - "id": 12809, + "id": 11732, "properties": { "rotation": "4" } }, { - "id": 12810, + "id": 11733, "properties": { "rotation": "5" } }, { - "id": 12811, + "id": 11734, "properties": { "rotation": "6" } }, { - "id": 12812, + "id": 11735, "properties": { "rotation": "7" } }, { - "id": 12813, + "id": 11736, "properties": { "rotation": "8" } }, { - "id": 12814, + "id": 11737, "properties": { "rotation": "9" } }, { - "id": 12815, + "id": 11738, "properties": { "rotation": "10" } }, { - "id": 12816, + "id": 11739, "properties": { "rotation": "11" } }, { - "id": 12817, + "id": 11740, "properties": { "rotation": "12" } }, { - "id": 12818, + "id": 11741, "properties": { "rotation": "13" } }, { - "id": 12819, + "id": 11742, "properties": { "rotation": "14" } }, { - "id": 12820, + "id": 11743, "properties": { "rotation": "15" } @@ -125892,7 +119146,7 @@ }, "states": [ { - "id": 22990, + "id": 21849, "properties": { "candles": "1", "lit": "true", @@ -125900,7 +119154,7 @@ } }, { - "id": 22991, + "id": 21850, "properties": { "candles": "1", "lit": "true", @@ -125908,7 +119162,7 @@ } }, { - "id": 22992, + "id": 21851, "properties": { "candles": "1", "lit": "false", @@ -125917,7 +119171,7 @@ }, { "default": true, - "id": 22993, + "id": 21852, "properties": { "candles": "1", "lit": "false", @@ -125925,7 +119179,7 @@ } }, { - "id": 22994, + "id": 21853, "properties": { "candles": "2", "lit": "true", @@ -125933,7 +119187,7 @@ } }, { - "id": 22995, + "id": 21854, "properties": { "candles": "2", "lit": "true", @@ -125941,7 +119195,7 @@ } }, { - "id": 22996, + "id": 21855, "properties": { "candles": "2", "lit": "false", @@ -125949,7 +119203,7 @@ } }, { - "id": 22997, + "id": 21856, "properties": { "candles": "2", "lit": "false", @@ -125957,7 +119211,7 @@ } }, { - "id": 22998, + "id": 21857, "properties": { "candles": "3", "lit": "true", @@ -125965,7 +119219,7 @@ } }, { - "id": 22999, + "id": 21858, "properties": { "candles": "3", "lit": "true", @@ -125973,7 +119227,7 @@ } }, { - "id": 23000, + "id": 21859, "properties": { "candles": "3", "lit": "false", @@ -125981,7 +119235,7 @@ } }, { - "id": 23001, + "id": 21860, "properties": { "candles": "3", "lit": "false", @@ -125989,7 +119243,7 @@ } }, { - "id": 23002, + "id": 21861, "properties": { "candles": "4", "lit": "true", @@ -125997,7 +119251,7 @@ } }, { - "id": 23003, + "id": 21862, "properties": { "candles": "4", "lit": "true", @@ -126005,7 +119259,7 @@ } }, { - "id": 23004, + "id": 21863, "properties": { "candles": "4", "lit": "false", @@ -126013,7 +119267,7 @@ } }, { - "id": 23005, + "id": 21864, "properties": { "candles": "4", "lit": "false", @@ -126036,14 +119290,14 @@ }, "states": [ { - "id": 23178, + "id": 22037, "properties": { "lit": "true" } }, { "default": true, - "id": 23179, + "id": 22038, "properties": { "lit": "false" } @@ -126059,7 +119313,7 @@ "states": [ { "default": true, - "id": 12699 + "id": 11622 } ] }, @@ -126071,7 +119325,7 @@ "states": [ { "default": true, - "id": 14833 + "id": 13756 } ] }, @@ -126084,7 +119338,7 @@ "states": [ { "default": true, - "id": 14849 + "id": 13772 } ] }, @@ -126104,25 +119358,25 @@ "states": [ { "default": true, - "id": 14784, + "id": 13707, "properties": { "facing": "north" } }, { - "id": 14785, + "id": 13708, "properties": { "facing": "south" } }, { - "id": 14786, + "id": 13709, "properties": { "facing": "west" } }, { - "id": 14787, + "id": 13710, "properties": { "facing": "east" } @@ -126147,38 +119401,38 @@ }, "states": [ { - "id": 14698, + "id": 13621, "properties": { "facing": "north" } }, { - "id": 14699, + "id": 13622, "properties": { "facing": "east" } }, { - "id": 14700, + "id": 13623, "properties": { "facing": "south" } }, { - "id": 14701, + "id": 13624, "properties": { "facing": "west" } }, { "default": true, - "id": 14702, + "id": 13625, "properties": { "facing": "up" } }, { - "id": 14703, + "id": 13626, "properties": { "facing": "down" } @@ -126194,7 +119448,7 @@ "states": [ { "default": true, - "id": 6902 + "id": 6129 } ] }, @@ -126228,7 +119482,7 @@ }, "states": [ { - "id": 11418, + "id": 10341, "properties": { "east": "true", "north": "true", @@ -126238,7 +119492,7 @@ } }, { - "id": 11419, + "id": 10342, "properties": { "east": "true", "north": "true", @@ -126248,7 +119502,7 @@ } }, { - "id": 11420, + "id": 10343, "properties": { "east": "true", "north": "true", @@ -126258,7 +119512,7 @@ } }, { - "id": 11421, + "id": 10344, "properties": { "east": "true", "north": "true", @@ -126268,7 +119522,7 @@ } }, { - "id": 11422, + "id": 10345, "properties": { "east": "true", "north": "true", @@ -126278,7 +119532,7 @@ } }, { - "id": 11423, + "id": 10346, "properties": { "east": "true", "north": "true", @@ -126288,7 +119542,7 @@ } }, { - "id": 11424, + "id": 10347, "properties": { "east": "true", "north": "true", @@ -126298,7 +119552,7 @@ } }, { - "id": 11425, + "id": 10348, "properties": { "east": "true", "north": "true", @@ -126308,7 +119562,7 @@ } }, { - "id": 11426, + "id": 10349, "properties": { "east": "true", "north": "false", @@ -126318,7 +119572,7 @@ } }, { - "id": 11427, + "id": 10350, "properties": { "east": "true", "north": "false", @@ -126328,7 +119582,7 @@ } }, { - "id": 11428, + "id": 10351, "properties": { "east": "true", "north": "false", @@ -126338,7 +119592,7 @@ } }, { - "id": 11429, + "id": 10352, "properties": { "east": "true", "north": "false", @@ -126348,7 +119602,7 @@ } }, { - "id": 11430, + "id": 10353, "properties": { "east": "true", "north": "false", @@ -126358,7 +119612,7 @@ } }, { - "id": 11431, + "id": 10354, "properties": { "east": "true", "north": "false", @@ -126368,7 +119622,7 @@ } }, { - "id": 11432, + "id": 10355, "properties": { "east": "true", "north": "false", @@ -126378,7 +119632,7 @@ } }, { - "id": 11433, + "id": 10356, "properties": { "east": "true", "north": "false", @@ -126388,7 +119642,7 @@ } }, { - "id": 11434, + "id": 10357, "properties": { "east": "false", "north": "true", @@ -126398,7 +119652,7 @@ } }, { - "id": 11435, + "id": 10358, "properties": { "east": "false", "north": "true", @@ -126408,7 +119662,7 @@ } }, { - "id": 11436, + "id": 10359, "properties": { "east": "false", "north": "true", @@ -126418,7 +119672,7 @@ } }, { - "id": 11437, + "id": 10360, "properties": { "east": "false", "north": "true", @@ -126428,7 +119682,7 @@ } }, { - "id": 11438, + "id": 10361, "properties": { "east": "false", "north": "true", @@ -126438,7 +119692,7 @@ } }, { - "id": 11439, + "id": 10362, "properties": { "east": "false", "north": "true", @@ -126448,7 +119702,7 @@ } }, { - "id": 11440, + "id": 10363, "properties": { "east": "false", "north": "true", @@ -126458,7 +119712,7 @@ } }, { - "id": 11441, + "id": 10364, "properties": { "east": "false", "north": "true", @@ -126468,7 +119722,7 @@ } }, { - "id": 11442, + "id": 10365, "properties": { "east": "false", "north": "false", @@ -126478,7 +119732,7 @@ } }, { - "id": 11443, + "id": 10366, "properties": { "east": "false", "north": "false", @@ -126488,7 +119742,7 @@ } }, { - "id": 11444, + "id": 10367, "properties": { "east": "false", "north": "false", @@ -126498,7 +119752,7 @@ } }, { - "id": 11445, + "id": 10368, "properties": { "east": "false", "north": "false", @@ -126508,7 +119762,7 @@ } }, { - "id": 11446, + "id": 10369, "properties": { "east": "false", "north": "false", @@ -126518,7 +119772,7 @@ } }, { - "id": 11447, + "id": 10370, "properties": { "east": "false", "north": "false", @@ -126528,7 +119782,7 @@ } }, { - "id": 11448, + "id": 10371, "properties": { "east": "false", "north": "false", @@ -126539,7 +119793,7 @@ }, { "default": true, - "id": 11449, + "id": 10372, "properties": { "east": "false", "north": "false", @@ -126552,13 +119806,13 @@ }, "minecraft:lime_terracotta": { "definition": { - "type": "minecraft:block", + "type": "minecraft:terracotta", "properties": {} }, "states": [ { "default": true, - "id": 11247 + "id": 10170 } ] }, @@ -126579,25 +119833,25 @@ "states": [ { "default": true, - "id": 13001, + "id": 11924, "properties": { "facing": "north" } }, { - "id": 13002, + "id": 11925, "properties": { "facing": "south" } }, { - "id": 13003, + "id": 11926, "properties": { "facing": "west" } }, { - "id": 13004, + "id": 11927, "properties": { "facing": "east" } @@ -126624,7 +119878,7 @@ "states": [ { "default": true, - "id": 21628 + "id": 20487 } ] }, @@ -126644,25 +119898,25 @@ "states": [ { "default": true, - "id": 20536, + "id": 19427, "properties": { "facing": "north" } }, { - "id": 20537, + "id": 19428, "properties": { "facing": "south" } }, { - "id": 20538, + "id": 19429, "properties": { "facing": "west" } }, { - "id": 20539, + "id": 19430, "properties": { "facing": "east" } @@ -126698,97 +119952,97 @@ "states": [ { "default": true, - "id": 12757, + "id": 11680, "properties": { "rotation": "0" } }, { - "id": 12758, + "id": 11681, "properties": { "rotation": "1" } }, { - "id": 12759, + "id": 11682, "properties": { "rotation": "2" } }, { - "id": 12760, + "id": 11683, "properties": { "rotation": "3" } }, { - "id": 12761, + "id": 11684, "properties": { "rotation": "4" } }, { - "id": 12762, + "id": 11685, "properties": { "rotation": "5" } }, { - "id": 12763, + "id": 11686, "properties": { "rotation": "6" } }, { - "id": 12764, + "id": 11687, "properties": { "rotation": "7" } }, { - "id": 12765, + "id": 11688, "properties": { "rotation": "8" } }, { - "id": 12766, + "id": 11689, "properties": { "rotation": "9" } }, { - "id": 12767, + "id": 11690, "properties": { "rotation": "10" } }, { - "id": 12768, + "id": 11691, "properties": { "rotation": "11" } }, { - "id": 12769, + "id": 11692, "properties": { "rotation": "12" } }, { - "id": 12770, + "id": 11693, "properties": { "rotation": "13" } }, { - "id": 12771, + "id": 11694, "properties": { "rotation": "14" } }, { - "id": 12772, + "id": 11695, "properties": { "rotation": "15" } @@ -126972,7 +120226,7 @@ }, "states": [ { - "id": 22942, + "id": 21801, "properties": { "candles": "1", "lit": "true", @@ -126980,7 +120234,7 @@ } }, { - "id": 22943, + "id": 21802, "properties": { "candles": "1", "lit": "true", @@ -126988,7 +120242,7 @@ } }, { - "id": 22944, + "id": 21803, "properties": { "candles": "1", "lit": "false", @@ -126997,7 +120251,7 @@ }, { "default": true, - "id": 22945, + "id": 21804, "properties": { "candles": "1", "lit": "false", @@ -127005,7 +120259,7 @@ } }, { - "id": 22946, + "id": 21805, "properties": { "candles": "2", "lit": "true", @@ -127013,7 +120267,7 @@ } }, { - "id": 22947, + "id": 21806, "properties": { "candles": "2", "lit": "true", @@ -127021,7 +120275,7 @@ } }, { - "id": 22948, + "id": 21807, "properties": { "candles": "2", "lit": "false", @@ -127029,7 +120283,7 @@ } }, { - "id": 22949, + "id": 21808, "properties": { "candles": "2", "lit": "false", @@ -127037,7 +120291,7 @@ } }, { - "id": 22950, + "id": 21809, "properties": { "candles": "3", "lit": "true", @@ -127045,7 +120299,7 @@ } }, { - "id": 22951, + "id": 21810, "properties": { "candles": "3", "lit": "true", @@ -127053,7 +120307,7 @@ } }, { - "id": 22952, + "id": 21811, "properties": { "candles": "3", "lit": "false", @@ -127061,7 +120315,7 @@ } }, { - "id": 22953, + "id": 21812, "properties": { "candles": "3", "lit": "false", @@ -127069,7 +120323,7 @@ } }, { - "id": 22954, + "id": 21813, "properties": { "candles": "4", "lit": "true", @@ -127077,7 +120331,7 @@ } }, { - "id": 22955, + "id": 21814, "properties": { "candles": "4", "lit": "true", @@ -127085,7 +120339,7 @@ } }, { - "id": 22956, + "id": 21815, "properties": { "candles": "4", "lit": "false", @@ -127093,7 +120347,7 @@ } }, { - "id": 22957, + "id": 21816, "properties": { "candles": "4", "lit": "false", @@ -127116,14 +120370,14 @@ }, "states": [ { - "id": 23172, + "id": 22031, "properties": { "lit": "true" } }, { "default": true, - "id": 23173, + "id": 22032, "properties": { "lit": "false" } @@ -127139,7 +120393,7 @@ "states": [ { "default": true, - "id": 12696 + "id": 11619 } ] }, @@ -127151,7 +120405,7 @@ "states": [ { "default": true, - "id": 14830 + "id": 13753 } ] }, @@ -127164,7 +120418,7 @@ "states": [ { "default": true, - "id": 14846 + "id": 13769 } ] }, @@ -127184,25 +120438,25 @@ "states": [ { "default": true, - "id": 14772, + "id": 13695, "properties": { "facing": "north" } }, { - "id": 14773, + "id": 13696, "properties": { "facing": "south" } }, { - "id": 14774, + "id": 13697, "properties": { "facing": "west" } }, { - "id": 14775, + "id": 13698, "properties": { "facing": "east" } @@ -127227,38 +120481,38 @@ }, "states": [ { - "id": 14680, + "id": 13603, "properties": { "facing": "north" } }, { - "id": 14681, + "id": 13604, "properties": { "facing": "east" } }, { - "id": 14682, + "id": 13605, "properties": { "facing": "south" } }, { - "id": 14683, + "id": 13606, "properties": { "facing": "west" } }, { "default": true, - "id": 14684, + "id": 13607, "properties": { "facing": "up" } }, { - "id": 14685, + "id": 13608, "properties": { "facing": "down" } @@ -127274,7 +120528,7 @@ "states": [ { "default": true, - "id": 6899 + "id": 6126 } ] }, @@ -127308,7 +120562,7 @@ }, "states": [ { - "id": 11322, + "id": 10245, "properties": { "east": "true", "north": "true", @@ -127318,7 +120572,7 @@ } }, { - "id": 11323, + "id": 10246, "properties": { "east": "true", "north": "true", @@ -127328,7 +120582,7 @@ } }, { - "id": 11324, + "id": 10247, "properties": { "east": "true", "north": "true", @@ -127338,7 +120592,7 @@ } }, { - "id": 11325, + "id": 10248, "properties": { "east": "true", "north": "true", @@ -127348,7 +120602,7 @@ } }, { - "id": 11326, + "id": 10249, "properties": { "east": "true", "north": "true", @@ -127358,7 +120612,7 @@ } }, { - "id": 11327, + "id": 10250, "properties": { "east": "true", "north": "true", @@ -127368,7 +120622,7 @@ } }, { - "id": 11328, + "id": 10251, "properties": { "east": "true", "north": "true", @@ -127378,7 +120632,7 @@ } }, { - "id": 11329, + "id": 10252, "properties": { "east": "true", "north": "true", @@ -127388,7 +120642,7 @@ } }, { - "id": 11330, + "id": 10253, "properties": { "east": "true", "north": "false", @@ -127398,7 +120652,7 @@ } }, { - "id": 11331, + "id": 10254, "properties": { "east": "true", "north": "false", @@ -127408,7 +120662,7 @@ } }, { - "id": 11332, + "id": 10255, "properties": { "east": "true", "north": "false", @@ -127418,7 +120672,7 @@ } }, { - "id": 11333, + "id": 10256, "properties": { "east": "true", "north": "false", @@ -127428,7 +120682,7 @@ } }, { - "id": 11334, + "id": 10257, "properties": { "east": "true", "north": "false", @@ -127438,7 +120692,7 @@ } }, { - "id": 11335, + "id": 10258, "properties": { "east": "true", "north": "false", @@ -127448,7 +120702,7 @@ } }, { - "id": 11336, + "id": 10259, "properties": { "east": "true", "north": "false", @@ -127458,7 +120712,7 @@ } }, { - "id": 11337, + "id": 10260, "properties": { "east": "true", "north": "false", @@ -127468,7 +120722,7 @@ } }, { - "id": 11338, + "id": 10261, "properties": { "east": "false", "north": "true", @@ -127478,7 +120732,7 @@ } }, { - "id": 11339, + "id": 10262, "properties": { "east": "false", "north": "true", @@ -127488,7 +120742,7 @@ } }, { - "id": 11340, + "id": 10263, "properties": { "east": "false", "north": "true", @@ -127498,7 +120752,7 @@ } }, { - "id": 11341, + "id": 10264, "properties": { "east": "false", "north": "true", @@ -127508,7 +120762,7 @@ } }, { - "id": 11342, + "id": 10265, "properties": { "east": "false", "north": "true", @@ -127518,7 +120772,7 @@ } }, { - "id": 11343, + "id": 10266, "properties": { "east": "false", "north": "true", @@ -127528,7 +120782,7 @@ } }, { - "id": 11344, + "id": 10267, "properties": { "east": "false", "north": "true", @@ -127538,7 +120792,7 @@ } }, { - "id": 11345, + "id": 10268, "properties": { "east": "false", "north": "true", @@ -127548,7 +120802,7 @@ } }, { - "id": 11346, + "id": 10269, "properties": { "east": "false", "north": "false", @@ -127558,7 +120812,7 @@ } }, { - "id": 11347, + "id": 10270, "properties": { "east": "false", "north": "false", @@ -127568,7 +120822,7 @@ } }, { - "id": 11348, + "id": 10271, "properties": { "east": "false", "north": "false", @@ -127578,7 +120832,7 @@ } }, { - "id": 11349, + "id": 10272, "properties": { "east": "false", "north": "false", @@ -127588,7 +120842,7 @@ } }, { - "id": 11350, + "id": 10273, "properties": { "east": "false", "north": "false", @@ -127598,7 +120852,7 @@ } }, { - "id": 11351, + "id": 10274, "properties": { "east": "false", "north": "false", @@ -127608,7 +120862,7 @@ } }, { - "id": 11352, + "id": 10275, "properties": { "east": "false", "north": "false", @@ -127619,7 +120873,7 @@ }, { "default": true, - "id": 11353, + "id": 10276, "properties": { "east": "false", "north": "false", @@ -127632,13 +120886,13 @@ }, "minecraft:magenta_terracotta": { "definition": { - "type": "minecraft:block", + "type": "minecraft:terracotta", "properties": {} }, "states": [ { "default": true, - "id": 11244 + "id": 10167 } ] }, @@ -127659,25 +120913,25 @@ "states": [ { "default": true, - "id": 12989, + "id": 11912, "properties": { "facing": "north" } }, { - "id": 12990, + "id": 11913, "properties": { "facing": "south" } }, { - "id": 12991, + "id": 11914, "properties": { "facing": "west" } }, { - "id": 12992, + "id": 11915, "properties": { "facing": "east" } @@ -127704,7 +120958,7 @@ "states": [ { "default": true, - "id": 14643 + "id": 13566 } ] }, @@ -127734,7 +120988,7 @@ }, "states": [ { - "id": 10665, + "id": 9588, "properties": { "face": "floor", "facing": "north", @@ -127742,7 +120996,7 @@ } }, { - "id": 10666, + "id": 9589, "properties": { "face": "floor", "facing": "north", @@ -127750,7 +121004,7 @@ } }, { - "id": 10667, + "id": 9590, "properties": { "face": "floor", "facing": "south", @@ -127758,7 +121012,7 @@ } }, { - "id": 10668, + "id": 9591, "properties": { "face": "floor", "facing": "south", @@ -127766,7 +121020,7 @@ } }, { - "id": 10669, + "id": 9592, "properties": { "face": "floor", "facing": "west", @@ -127774,7 +121028,7 @@ } }, { - "id": 10670, + "id": 9593, "properties": { "face": "floor", "facing": "west", @@ -127782,7 +121036,7 @@ } }, { - "id": 10671, + "id": 9594, "properties": { "face": "floor", "facing": "east", @@ -127790,7 +121044,7 @@ } }, { - "id": 10672, + "id": 9595, "properties": { "face": "floor", "facing": "east", @@ -127798,7 +121052,7 @@ } }, { - "id": 10673, + "id": 9596, "properties": { "face": "wall", "facing": "north", @@ -127807,7 +121061,7 @@ }, { "default": true, - "id": 10674, + "id": 9597, "properties": { "face": "wall", "facing": "north", @@ -127815,7 +121069,7 @@ } }, { - "id": 10675, + "id": 9598, "properties": { "face": "wall", "facing": "south", @@ -127823,7 +121077,7 @@ } }, { - "id": 10676, + "id": 9599, "properties": { "face": "wall", "facing": "south", @@ -127831,7 +121085,7 @@ } }, { - "id": 10677, + "id": 9600, "properties": { "face": "wall", "facing": "west", @@ -127839,7 +121093,7 @@ } }, { - "id": 10678, + "id": 9601, "properties": { "face": "wall", "facing": "west", @@ -127847,7 +121101,7 @@ } }, { - "id": 10679, + "id": 9602, "properties": { "face": "wall", "facing": "east", @@ -127855,7 +121109,7 @@ } }, { - "id": 10680, + "id": 9603, "properties": { "face": "wall", "facing": "east", @@ -127863,7 +121117,7 @@ } }, { - "id": 10681, + "id": 9604, "properties": { "face": "ceiling", "facing": "north", @@ -127871,7 +121125,7 @@ } }, { - "id": 10682, + "id": 9605, "properties": { "face": "ceiling", "facing": "north", @@ -127879,7 +121133,7 @@ } }, { - "id": 10683, + "id": 9606, "properties": { "face": "ceiling", "facing": "south", @@ -127887,7 +121141,7 @@ } }, { - "id": 10684, + "id": 9607, "properties": { "face": "ceiling", "facing": "south", @@ -127895,7 +121149,7 @@ } }, { - "id": 10685, + "id": 9608, "properties": { "face": "ceiling", "facing": "west", @@ -127903,7 +121157,7 @@ } }, { - "id": 10686, + "id": 9609, "properties": { "face": "ceiling", "facing": "west", @@ -127911,7 +121165,7 @@ } }, { - "id": 10687, + "id": 9610, "properties": { "face": "ceiling", "facing": "east", @@ -127919,7 +121173,7 @@ } }, { - "id": 10688, + "id": 9611, "properties": { "face": "ceiling", "facing": "east", @@ -127960,7 +121214,7 @@ }, "states": [ { - "id": 14306, + "id": 13229, "properties": { "facing": "north", "half": "upper", @@ -127970,7 +121224,7 @@ } }, { - "id": 14307, + "id": 13230, "properties": { "facing": "north", "half": "upper", @@ -127980,7 +121234,7 @@ } }, { - "id": 14308, + "id": 13231, "properties": { "facing": "north", "half": "upper", @@ -127990,7 +121244,7 @@ } }, { - "id": 14309, + "id": 13232, "properties": { "facing": "north", "half": "upper", @@ -128000,7 +121254,7 @@ } }, { - "id": 14310, + "id": 13233, "properties": { "facing": "north", "half": "upper", @@ -128010,7 +121264,7 @@ } }, { - "id": 14311, + "id": 13234, "properties": { "facing": "north", "half": "upper", @@ -128020,7 +121274,7 @@ } }, { - "id": 14312, + "id": 13235, "properties": { "facing": "north", "half": "upper", @@ -128030,7 +121284,7 @@ } }, { - "id": 14313, + "id": 13236, "properties": { "facing": "north", "half": "upper", @@ -128040,7 +121294,7 @@ } }, { - "id": 14314, + "id": 13237, "properties": { "facing": "north", "half": "lower", @@ -128050,7 +121304,7 @@ } }, { - "id": 14315, + "id": 13238, "properties": { "facing": "north", "half": "lower", @@ -128060,7 +121314,7 @@ } }, { - "id": 14316, + "id": 13239, "properties": { "facing": "north", "half": "lower", @@ -128071,7 +121325,7 @@ }, { "default": true, - "id": 14317, + "id": 13240, "properties": { "facing": "north", "half": "lower", @@ -128081,7 +121335,7 @@ } }, { - "id": 14318, + "id": 13241, "properties": { "facing": "north", "half": "lower", @@ -128091,7 +121345,7 @@ } }, { - "id": 14319, + "id": 13242, "properties": { "facing": "north", "half": "lower", @@ -128101,7 +121355,7 @@ } }, { - "id": 14320, + "id": 13243, "properties": { "facing": "north", "half": "lower", @@ -128111,7 +121365,7 @@ } }, { - "id": 14321, + "id": 13244, "properties": { "facing": "north", "half": "lower", @@ -128121,7 +121375,7 @@ } }, { - "id": 14322, + "id": 13245, "properties": { "facing": "south", "half": "upper", @@ -128131,7 +121385,7 @@ } }, { - "id": 14323, + "id": 13246, "properties": { "facing": "south", "half": "upper", @@ -128141,7 +121395,7 @@ } }, { - "id": 14324, + "id": 13247, "properties": { "facing": "south", "half": "upper", @@ -128151,7 +121405,7 @@ } }, { - "id": 14325, + "id": 13248, "properties": { "facing": "south", "half": "upper", @@ -128161,7 +121415,7 @@ } }, { - "id": 14326, + "id": 13249, "properties": { "facing": "south", "half": "upper", @@ -128171,7 +121425,7 @@ } }, { - "id": 14327, + "id": 13250, "properties": { "facing": "south", "half": "upper", @@ -128181,7 +121435,7 @@ } }, { - "id": 14328, + "id": 13251, "properties": { "facing": "south", "half": "upper", @@ -128191,7 +121445,7 @@ } }, { - "id": 14329, + "id": 13252, "properties": { "facing": "south", "half": "upper", @@ -128201,7 +121455,7 @@ } }, { - "id": 14330, + "id": 13253, "properties": { "facing": "south", "half": "lower", @@ -128211,7 +121465,7 @@ } }, { - "id": 14331, + "id": 13254, "properties": { "facing": "south", "half": "lower", @@ -128221,7 +121475,7 @@ } }, { - "id": 14332, + "id": 13255, "properties": { "facing": "south", "half": "lower", @@ -128231,7 +121485,7 @@ } }, { - "id": 14333, + "id": 13256, "properties": { "facing": "south", "half": "lower", @@ -128241,7 +121495,7 @@ } }, { - "id": 14334, + "id": 13257, "properties": { "facing": "south", "half": "lower", @@ -128251,7 +121505,7 @@ } }, { - "id": 14335, + "id": 13258, "properties": { "facing": "south", "half": "lower", @@ -128261,7 +121515,7 @@ } }, { - "id": 14336, + "id": 13259, "properties": { "facing": "south", "half": "lower", @@ -128271,7 +121525,7 @@ } }, { - "id": 14337, + "id": 13260, "properties": { "facing": "south", "half": "lower", @@ -128281,7 +121535,7 @@ } }, { - "id": 14338, + "id": 13261, "properties": { "facing": "west", "half": "upper", @@ -128291,7 +121545,7 @@ } }, { - "id": 14339, + "id": 13262, "properties": { "facing": "west", "half": "upper", @@ -128301,7 +121555,7 @@ } }, { - "id": 14340, + "id": 13263, "properties": { "facing": "west", "half": "upper", @@ -128311,7 +121565,7 @@ } }, { - "id": 14341, + "id": 13264, "properties": { "facing": "west", "half": "upper", @@ -128321,7 +121575,7 @@ } }, { - "id": 14342, + "id": 13265, "properties": { "facing": "west", "half": "upper", @@ -128331,7 +121585,7 @@ } }, { - "id": 14343, + "id": 13266, "properties": { "facing": "west", "half": "upper", @@ -128341,7 +121595,7 @@ } }, { - "id": 14344, + "id": 13267, "properties": { "facing": "west", "half": "upper", @@ -128351,7 +121605,7 @@ } }, { - "id": 14345, + "id": 13268, "properties": { "facing": "west", "half": "upper", @@ -128361,7 +121615,7 @@ } }, { - "id": 14346, + "id": 13269, "properties": { "facing": "west", "half": "lower", @@ -128371,7 +121625,7 @@ } }, { - "id": 14347, + "id": 13270, "properties": { "facing": "west", "half": "lower", @@ -128381,7 +121635,7 @@ } }, { - "id": 14348, + "id": 13271, "properties": { "facing": "west", "half": "lower", @@ -128391,7 +121645,7 @@ } }, { - "id": 14349, + "id": 13272, "properties": { "facing": "west", "half": "lower", @@ -128401,7 +121655,7 @@ } }, { - "id": 14350, + "id": 13273, "properties": { "facing": "west", "half": "lower", @@ -128411,7 +121665,7 @@ } }, { - "id": 14351, + "id": 13274, "properties": { "facing": "west", "half": "lower", @@ -128421,7 +121675,7 @@ } }, { - "id": 14352, + "id": 13275, "properties": { "facing": "west", "half": "lower", @@ -128431,7 +121685,7 @@ } }, { - "id": 14353, + "id": 13276, "properties": { "facing": "west", "half": "lower", @@ -128441,7 +121695,7 @@ } }, { - "id": 14354, + "id": 13277, "properties": { "facing": "east", "half": "upper", @@ -128451,7 +121705,7 @@ } }, { - "id": 14355, + "id": 13278, "properties": { "facing": "east", "half": "upper", @@ -128461,7 +121715,7 @@ } }, { - "id": 14356, + "id": 13279, "properties": { "facing": "east", "half": "upper", @@ -128471,7 +121725,7 @@ } }, { - "id": 14357, + "id": 13280, "properties": { "facing": "east", "half": "upper", @@ -128481,7 +121735,7 @@ } }, { - "id": 14358, + "id": 13281, "properties": { "facing": "east", "half": "upper", @@ -128491,7 +121745,7 @@ } }, { - "id": 14359, + "id": 13282, "properties": { "facing": "east", "half": "upper", @@ -128501,7 +121755,7 @@ } }, { - "id": 14360, + "id": 13283, "properties": { "facing": "east", "half": "upper", @@ -128511,7 +121765,7 @@ } }, { - "id": 14361, + "id": 13284, "properties": { "facing": "east", "half": "upper", @@ -128521,7 +121775,7 @@ } }, { - "id": 14362, + "id": 13285, "properties": { "facing": "east", "half": "lower", @@ -128531,7 +121785,7 @@ } }, { - "id": 14363, + "id": 13286, "properties": { "facing": "east", "half": "lower", @@ -128541,7 +121795,7 @@ } }, { - "id": 14364, + "id": 13287, "properties": { "facing": "east", "half": "lower", @@ -128551,7 +121805,7 @@ } }, { - "id": 14365, + "id": 13288, "properties": { "facing": "east", "half": "lower", @@ -128561,7 +121815,7 @@ } }, { - "id": 14366, + "id": 13289, "properties": { "facing": "east", "half": "lower", @@ -128571,7 +121825,7 @@ } }, { - "id": 14367, + "id": 13290, "properties": { "facing": "east", "half": "lower", @@ -128581,7 +121835,7 @@ } }, { - "id": 14368, + "id": 13291, "properties": { "facing": "east", "half": "lower", @@ -128591,7 +121845,7 @@ } }, { - "id": 14369, + "id": 13292, "properties": { "facing": "east", "half": "lower", @@ -128631,7 +121885,7 @@ }, "states": [ { - "id": 13794, + "id": 12717, "properties": { "east": "true", "north": "true", @@ -128641,7 +121895,7 @@ } }, { - "id": 13795, + "id": 12718, "properties": { "east": "true", "north": "true", @@ -128651,7 +121905,7 @@ } }, { - "id": 13796, + "id": 12719, "properties": { "east": "true", "north": "true", @@ -128661,7 +121915,7 @@ } }, { - "id": 13797, + "id": 12720, "properties": { "east": "true", "north": "true", @@ -128671,7 +121925,7 @@ } }, { - "id": 13798, + "id": 12721, "properties": { "east": "true", "north": "true", @@ -128681,7 +121935,7 @@ } }, { - "id": 13799, + "id": 12722, "properties": { "east": "true", "north": "true", @@ -128691,7 +121945,7 @@ } }, { - "id": 13800, + "id": 12723, "properties": { "east": "true", "north": "true", @@ -128701,7 +121955,7 @@ } }, { - "id": 13801, + "id": 12724, "properties": { "east": "true", "north": "true", @@ -128711,7 +121965,7 @@ } }, { - "id": 13802, + "id": 12725, "properties": { "east": "true", "north": "false", @@ -128721,7 +121975,7 @@ } }, { - "id": 13803, + "id": 12726, "properties": { "east": "true", "north": "false", @@ -128731,7 +121985,7 @@ } }, { - "id": 13804, + "id": 12727, "properties": { "east": "true", "north": "false", @@ -128741,7 +121995,7 @@ } }, { - "id": 13805, + "id": 12728, "properties": { "east": "true", "north": "false", @@ -128751,7 +122005,7 @@ } }, { - "id": 13806, + "id": 12729, "properties": { "east": "true", "north": "false", @@ -128761,7 +122015,7 @@ } }, { - "id": 13807, + "id": 12730, "properties": { "east": "true", "north": "false", @@ -128771,7 +122025,7 @@ } }, { - "id": 13808, + "id": 12731, "properties": { "east": "true", "north": "false", @@ -128781,7 +122035,7 @@ } }, { - "id": 13809, + "id": 12732, "properties": { "east": "true", "north": "false", @@ -128791,7 +122045,7 @@ } }, { - "id": 13810, + "id": 12733, "properties": { "east": "false", "north": "true", @@ -128801,7 +122055,7 @@ } }, { - "id": 13811, + "id": 12734, "properties": { "east": "false", "north": "true", @@ -128811,7 +122065,7 @@ } }, { - "id": 13812, + "id": 12735, "properties": { "east": "false", "north": "true", @@ -128821,7 +122075,7 @@ } }, { - "id": 13813, + "id": 12736, "properties": { "east": "false", "north": "true", @@ -128831,7 +122085,7 @@ } }, { - "id": 13814, + "id": 12737, "properties": { "east": "false", "north": "true", @@ -128841,7 +122095,7 @@ } }, { - "id": 13815, + "id": 12738, "properties": { "east": "false", "north": "true", @@ -128851,7 +122105,7 @@ } }, { - "id": 13816, + "id": 12739, "properties": { "east": "false", "north": "true", @@ -128861,7 +122115,7 @@ } }, { - "id": 13817, + "id": 12740, "properties": { "east": "false", "north": "true", @@ -128871,7 +122125,7 @@ } }, { - "id": 13818, + "id": 12741, "properties": { "east": "false", "north": "false", @@ -128881,7 +122135,7 @@ } }, { - "id": 13819, + "id": 12742, "properties": { "east": "false", "north": "false", @@ -128891,7 +122145,7 @@ } }, { - "id": 13820, + "id": 12743, "properties": { "east": "false", "north": "false", @@ -128901,7 +122155,7 @@ } }, { - "id": 13821, + "id": 12744, "properties": { "east": "false", "north": "false", @@ -128911,7 +122165,7 @@ } }, { - "id": 13822, + "id": 12745, "properties": { "east": "false", "north": "false", @@ -128921,7 +122175,7 @@ } }, { - "id": 13823, + "id": 12746, "properties": { "east": "false", "north": "false", @@ -128931,7 +122185,7 @@ } }, { - "id": 13824, + "id": 12747, "properties": { "east": "false", "north": "false", @@ -128942,7 +122196,7 @@ }, { "default": true, - "id": 13825, + "id": 12748, "properties": { "east": "false", "north": "false", @@ -128981,7 +122235,7 @@ }, "states": [ { - "id": 13506, + "id": 12429, "properties": { "facing": "north", "in_wall": "true", @@ -128990,7 +122244,7 @@ } }, { - "id": 13507, + "id": 12430, "properties": { "facing": "north", "in_wall": "true", @@ -128999,7 +122253,7 @@ } }, { - "id": 13508, + "id": 12431, "properties": { "facing": "north", "in_wall": "true", @@ -129008,7 +122262,7 @@ } }, { - "id": 13509, + "id": 12432, "properties": { "facing": "north", "in_wall": "true", @@ -129017,7 +122271,7 @@ } }, { - "id": 13510, + "id": 12433, "properties": { "facing": "north", "in_wall": "false", @@ -129026,7 +122280,7 @@ } }, { - "id": 13511, + "id": 12434, "properties": { "facing": "north", "in_wall": "false", @@ -129035,7 +122289,7 @@ } }, { - "id": 13512, + "id": 12435, "properties": { "facing": "north", "in_wall": "false", @@ -129045,7 +122299,7 @@ }, { "default": true, - "id": 13513, + "id": 12436, "properties": { "facing": "north", "in_wall": "false", @@ -129054,7 +122308,7 @@ } }, { - "id": 13514, + "id": 12437, "properties": { "facing": "south", "in_wall": "true", @@ -129063,7 +122317,7 @@ } }, { - "id": 13515, + "id": 12438, "properties": { "facing": "south", "in_wall": "true", @@ -129072,7 +122326,7 @@ } }, { - "id": 13516, + "id": 12439, "properties": { "facing": "south", "in_wall": "true", @@ -129081,7 +122335,7 @@ } }, { - "id": 13517, + "id": 12440, "properties": { "facing": "south", "in_wall": "true", @@ -129090,7 +122344,7 @@ } }, { - "id": 13518, + "id": 12441, "properties": { "facing": "south", "in_wall": "false", @@ -129099,7 +122353,7 @@ } }, { - "id": 13519, + "id": 12442, "properties": { "facing": "south", "in_wall": "false", @@ -129108,7 +122362,7 @@ } }, { - "id": 13520, + "id": 12443, "properties": { "facing": "south", "in_wall": "false", @@ -129117,7 +122371,7 @@ } }, { - "id": 13521, + "id": 12444, "properties": { "facing": "south", "in_wall": "false", @@ -129126,7 +122380,7 @@ } }, { - "id": 13522, + "id": 12445, "properties": { "facing": "west", "in_wall": "true", @@ -129135,7 +122389,7 @@ } }, { - "id": 13523, + "id": 12446, "properties": { "facing": "west", "in_wall": "true", @@ -129144,7 +122398,7 @@ } }, { - "id": 13524, + "id": 12447, "properties": { "facing": "west", "in_wall": "true", @@ -129153,7 +122407,7 @@ } }, { - "id": 13525, + "id": 12448, "properties": { "facing": "west", "in_wall": "true", @@ -129162,7 +122416,7 @@ } }, { - "id": 13526, + "id": 12449, "properties": { "facing": "west", "in_wall": "false", @@ -129171,7 +122425,7 @@ } }, { - "id": 13527, + "id": 12450, "properties": { "facing": "west", "in_wall": "false", @@ -129180,7 +122434,7 @@ } }, { - "id": 13528, + "id": 12451, "properties": { "facing": "west", "in_wall": "false", @@ -129189,7 +122443,7 @@ } }, { - "id": 13529, + "id": 12452, "properties": { "facing": "west", "in_wall": "false", @@ -129198,7 +122452,7 @@ } }, { - "id": 13530, + "id": 12453, "properties": { "facing": "east", "in_wall": "true", @@ -129207,7 +122461,7 @@ } }, { - "id": 13531, + "id": 12454, "properties": { "facing": "east", "in_wall": "true", @@ -129216,7 +122470,7 @@ } }, { - "id": 13532, + "id": 12455, "properties": { "facing": "east", "in_wall": "true", @@ -129225,7 +122479,7 @@ } }, { - "id": 13533, + "id": 12456, "properties": { "facing": "east", "in_wall": "true", @@ -129234,7 +122488,7 @@ } }, { - "id": 13534, + "id": 12457, "properties": { "facing": "east", "in_wall": "false", @@ -129243,7 +122497,7 @@ } }, { - "id": 13535, + "id": 12458, "properties": { "facing": "east", "in_wall": "false", @@ -129252,7 +122506,7 @@ } }, { - "id": 13536, + "id": 12459, "properties": { "facing": "east", "in_wall": "false", @@ -129261,7 +122515,7 @@ } }, { - "id": 13537, + "id": 12460, "properties": { "facing": "east", "in_wall": "false", @@ -129307,7 +122561,7 @@ }, "states": [ { - "id": 6346, + "id": 5578, "properties": { "attached": "true", "rotation": "0", @@ -129315,7 +122569,7 @@ } }, { - "id": 6347, + "id": 5579, "properties": { "attached": "true", "rotation": "0", @@ -129323,7 +122577,7 @@ } }, { - "id": 6348, + "id": 5580, "properties": { "attached": "true", "rotation": "1", @@ -129331,7 +122585,7 @@ } }, { - "id": 6349, + "id": 5581, "properties": { "attached": "true", "rotation": "1", @@ -129339,7 +122593,7 @@ } }, { - "id": 6350, + "id": 5582, "properties": { "attached": "true", "rotation": "2", @@ -129347,7 +122601,7 @@ } }, { - "id": 6351, + "id": 5583, "properties": { "attached": "true", "rotation": "2", @@ -129355,7 +122609,7 @@ } }, { - "id": 6352, + "id": 5584, "properties": { "attached": "true", "rotation": "3", @@ -129363,7 +122617,7 @@ } }, { - "id": 6353, + "id": 5585, "properties": { "attached": "true", "rotation": "3", @@ -129371,7 +122625,7 @@ } }, { - "id": 6354, + "id": 5586, "properties": { "attached": "true", "rotation": "4", @@ -129379,7 +122633,7 @@ } }, { - "id": 6355, + "id": 5587, "properties": { "attached": "true", "rotation": "4", @@ -129387,7 +122641,7 @@ } }, { - "id": 6356, + "id": 5588, "properties": { "attached": "true", "rotation": "5", @@ -129395,7 +122649,7 @@ } }, { - "id": 6357, + "id": 5589, "properties": { "attached": "true", "rotation": "5", @@ -129403,7 +122657,7 @@ } }, { - "id": 6358, + "id": 5590, "properties": { "attached": "true", "rotation": "6", @@ -129411,7 +122665,7 @@ } }, { - "id": 6359, + "id": 5591, "properties": { "attached": "true", "rotation": "6", @@ -129419,7 +122673,7 @@ } }, { - "id": 6360, + "id": 5592, "properties": { "attached": "true", "rotation": "7", @@ -129427,7 +122681,7 @@ } }, { - "id": 6361, + "id": 5593, "properties": { "attached": "true", "rotation": "7", @@ -129435,7 +122689,7 @@ } }, { - "id": 6362, + "id": 5594, "properties": { "attached": "true", "rotation": "8", @@ -129443,7 +122697,7 @@ } }, { - "id": 6363, + "id": 5595, "properties": { "attached": "true", "rotation": "8", @@ -129451,7 +122705,7 @@ } }, { - "id": 6364, + "id": 5596, "properties": { "attached": "true", "rotation": "9", @@ -129459,7 +122713,7 @@ } }, { - "id": 6365, + "id": 5597, "properties": { "attached": "true", "rotation": "9", @@ -129467,7 +122721,7 @@ } }, { - "id": 6366, + "id": 5598, "properties": { "attached": "true", "rotation": "10", @@ -129475,7 +122729,7 @@ } }, { - "id": 6367, + "id": 5599, "properties": { "attached": "true", "rotation": "10", @@ -129483,7 +122737,7 @@ } }, { - "id": 6368, + "id": 5600, "properties": { "attached": "true", "rotation": "11", @@ -129491,7 +122745,7 @@ } }, { - "id": 6369, + "id": 5601, "properties": { "attached": "true", "rotation": "11", @@ -129499,7 +122753,7 @@ } }, { - "id": 6370, + "id": 5602, "properties": { "attached": "true", "rotation": "12", @@ -129507,7 +122761,7 @@ } }, { - "id": 6371, + "id": 5603, "properties": { "attached": "true", "rotation": "12", @@ -129515,7 +122769,7 @@ } }, { - "id": 6372, + "id": 5604, "properties": { "attached": "true", "rotation": "13", @@ -129523,7 +122777,7 @@ } }, { - "id": 6373, + "id": 5605, "properties": { "attached": "true", "rotation": "13", @@ -129531,7 +122785,7 @@ } }, { - "id": 6374, + "id": 5606, "properties": { "attached": "true", "rotation": "14", @@ -129539,7 +122793,7 @@ } }, { - "id": 6375, + "id": 5607, "properties": { "attached": "true", "rotation": "14", @@ -129547,7 +122801,7 @@ } }, { - "id": 6376, + "id": 5608, "properties": { "attached": "true", "rotation": "15", @@ -129555,7 +122809,7 @@ } }, { - "id": 6377, + "id": 5609, "properties": { "attached": "true", "rotation": "15", @@ -129563,7 +122817,7 @@ } }, { - "id": 6378, + "id": 5610, "properties": { "attached": "false", "rotation": "0", @@ -129572,7 +122826,7 @@ }, { "default": true, - "id": 6379, + "id": 5611, "properties": { "attached": "false", "rotation": "0", @@ -129580,7 +122834,7 @@ } }, { - "id": 6380, + "id": 5612, "properties": { "attached": "false", "rotation": "1", @@ -129588,7 +122842,7 @@ } }, { - "id": 6381, + "id": 5613, "properties": { "attached": "false", "rotation": "1", @@ -129596,7 +122850,7 @@ } }, { - "id": 6382, + "id": 5614, "properties": { "attached": "false", "rotation": "2", @@ -129604,7 +122858,7 @@ } }, { - "id": 6383, + "id": 5615, "properties": { "attached": "false", "rotation": "2", @@ -129612,7 +122866,7 @@ } }, { - "id": 6384, + "id": 5616, "properties": { "attached": "false", "rotation": "3", @@ -129620,7 +122874,7 @@ } }, { - "id": 6385, + "id": 5617, "properties": { "attached": "false", "rotation": "3", @@ -129628,7 +122882,7 @@ } }, { - "id": 6386, + "id": 5618, "properties": { "attached": "false", "rotation": "4", @@ -129636,7 +122890,7 @@ } }, { - "id": 6387, + "id": 5619, "properties": { "attached": "false", "rotation": "4", @@ -129644,7 +122898,7 @@ } }, { - "id": 6388, + "id": 5620, "properties": { "attached": "false", "rotation": "5", @@ -129652,7 +122906,7 @@ } }, { - "id": 6389, + "id": 5621, "properties": { "attached": "false", "rotation": "5", @@ -129660,7 +122914,7 @@ } }, { - "id": 6390, + "id": 5622, "properties": { "attached": "false", "rotation": "6", @@ -129668,7 +122922,7 @@ } }, { - "id": 6391, + "id": 5623, "properties": { "attached": "false", "rotation": "6", @@ -129676,7 +122930,7 @@ } }, { - "id": 6392, + "id": 5624, "properties": { "attached": "false", "rotation": "7", @@ -129684,7 +122938,7 @@ } }, { - "id": 6393, + "id": 5625, "properties": { "attached": "false", "rotation": "7", @@ -129692,7 +122946,7 @@ } }, { - "id": 6394, + "id": 5626, "properties": { "attached": "false", "rotation": "8", @@ -129700,7 +122954,7 @@ } }, { - "id": 6395, + "id": 5627, "properties": { "attached": "false", "rotation": "8", @@ -129708,7 +122962,7 @@ } }, { - "id": 6396, + "id": 5628, "properties": { "attached": "false", "rotation": "9", @@ -129716,7 +122970,7 @@ } }, { - "id": 6397, + "id": 5629, "properties": { "attached": "false", "rotation": "9", @@ -129724,7 +122978,7 @@ } }, { - "id": 6398, + "id": 5630, "properties": { "attached": "false", "rotation": "10", @@ -129732,7 +122986,7 @@ } }, { - "id": 6399, + "id": 5631, "properties": { "attached": "false", "rotation": "10", @@ -129740,7 +122994,7 @@ } }, { - "id": 6400, + "id": 5632, "properties": { "attached": "false", "rotation": "11", @@ -129748,7 +123002,7 @@ } }, { - "id": 6401, + "id": 5633, "properties": { "attached": "false", "rotation": "11", @@ -129756,7 +123010,7 @@ } }, { - "id": 6402, + "id": 5634, "properties": { "attached": "false", "rotation": "12", @@ -129764,7 +123018,7 @@ } }, { - "id": 6403, + "id": 5635, "properties": { "attached": "false", "rotation": "12", @@ -129772,7 +123026,7 @@ } }, { - "id": 6404, + "id": 5636, "properties": { "attached": "false", "rotation": "13", @@ -129780,7 +123034,7 @@ } }, { - "id": 6405, + "id": 5637, "properties": { "attached": "false", "rotation": "13", @@ -129788,7 +123042,7 @@ } }, { - "id": 6406, + "id": 5638, "properties": { "attached": "false", "rotation": "14", @@ -129796,7 +123050,7 @@ } }, { - "id": 6407, + "id": 5639, "properties": { "attached": "false", "rotation": "14", @@ -129804,7 +123058,7 @@ } }, { - "id": 6408, + "id": 5640, "properties": { "attached": "false", "rotation": "15", @@ -129812,7 +123066,7 @@ } }, { - "id": 6409, + "id": 5641, "properties": { "attached": "false", "rotation": "15", @@ -130134,14 +123388,14 @@ }, "states": [ { - "id": 6676, + "id": 5908, "properties": { "powered": "true" } }, { "default": true, - "id": 6677, + "id": 5909, "properties": { "powered": "false" } @@ -130566,613 +123820,6 @@ } ] }, - "minecraft:mangrove_shelf": { - "definition": { - "type": "minecraft:shelf", - "properties": {} - }, - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ], - "side_chain": [ - "unconnected", - "right", - "center", - "left" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 2847, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2848, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2849, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2850, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2851, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2852, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2853, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2854, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2855, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 2856, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2857, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2858, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2859, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2860, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2861, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2862, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2863, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2864, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2865, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2866, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2867, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2868, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2869, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2870, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2871, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2872, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2873, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2874, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2875, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2876, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2877, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2878, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2879, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2880, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2881, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2882, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2883, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2884, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2885, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2886, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2887, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2888, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2889, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2890, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2891, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2892, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2893, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2894, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2895, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2896, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2897, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2898, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2899, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2900, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2901, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2902, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2903, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2904, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2905, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2906, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2907, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2908, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2909, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2910, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "left", - "waterlogged": "false" - } - } - ] - }, "minecraft:mangrove_sign": { "definition": { "type": "minecraft:standing_sign", @@ -131205,7 +123852,7 @@ }, "states": [ { - "id": 5390, + "id": 4622, "properties": { "rotation": "0", "waterlogged": "true" @@ -131213,217 +123860,217 @@ }, { "default": true, - "id": 5391, + "id": 4623, "properties": { "rotation": "0", "waterlogged": "false" } }, { - "id": 5392, + "id": 4624, "properties": { "rotation": "1", "waterlogged": "true" } }, { - "id": 5393, + "id": 4625, "properties": { "rotation": "1", "waterlogged": "false" } }, { - "id": 5394, + "id": 4626, "properties": { "rotation": "2", "waterlogged": "true" } }, { - "id": 5395, + "id": 4627, "properties": { "rotation": "2", "waterlogged": "false" } }, { - "id": 5396, + "id": 4628, "properties": { "rotation": "3", "waterlogged": "true" } }, { - "id": 5397, + "id": 4629, "properties": { "rotation": "3", "waterlogged": "false" } }, { - "id": 5398, + "id": 4630, "properties": { "rotation": "4", "waterlogged": "true" } }, { - "id": 5399, + "id": 4631, "properties": { "rotation": "4", "waterlogged": "false" } }, { - "id": 5400, + "id": 4632, "properties": { "rotation": "5", "waterlogged": "true" } }, { - "id": 5401, + "id": 4633, "properties": { "rotation": "5", "waterlogged": "false" } }, { - "id": 5402, + "id": 4634, "properties": { "rotation": "6", "waterlogged": "true" } }, { - "id": 5403, + "id": 4635, "properties": { "rotation": "6", "waterlogged": "false" } }, { - "id": 5404, + "id": 4636, "properties": { "rotation": "7", "waterlogged": "true" } }, { - "id": 5405, + "id": 4637, "properties": { "rotation": "7", "waterlogged": "false" } }, { - "id": 5406, + "id": 4638, "properties": { "rotation": "8", "waterlogged": "true" } }, { - "id": 5407, + "id": 4639, "properties": { "rotation": "8", "waterlogged": "false" } }, { - "id": 5408, + "id": 4640, "properties": { "rotation": "9", "waterlogged": "true" } }, { - "id": 5409, + "id": 4641, "properties": { "rotation": "9", "waterlogged": "false" } }, { - "id": 5410, + "id": 4642, "properties": { "rotation": "10", "waterlogged": "true" } }, { - "id": 5411, + "id": 4643, "properties": { "rotation": "10", "waterlogged": "false" } }, { - "id": 5412, + "id": 4644, "properties": { "rotation": "11", "waterlogged": "true" } }, { - "id": 5413, + "id": 4645, "properties": { "rotation": "11", "waterlogged": "false" } }, { - "id": 5414, + "id": 4646, "properties": { "rotation": "12", "waterlogged": "true" } }, { - "id": 5415, + "id": 4647, "properties": { "rotation": "12", "waterlogged": "false" } }, { - "id": 5416, + "id": 4648, "properties": { "rotation": "13", "waterlogged": "true" } }, { - "id": 5417, + "id": 4649, "properties": { "rotation": "13", "waterlogged": "false" } }, { - "id": 5418, + "id": 4650, "properties": { "rotation": "14", "waterlogged": "true" } }, { - "id": 5419, + "id": 4651, "properties": { "rotation": "14", "waterlogged": "false" } }, { - "id": 5420, + "id": 4652, "properties": { "rotation": "15", "waterlogged": "true" } }, { - "id": 5421, + "id": 4653, "properties": { "rotation": "15", "waterlogged": "false" @@ -131449,21 +124096,21 @@ }, "states": [ { - "id": 13176, + "id": 12099, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 13177, + "id": 12100, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 13178, + "id": 12101, "properties": { "type": "bottom", "waterlogged": "true" @@ -131471,21 +124118,21 @@ }, { "default": true, - "id": 13179, + "id": 12102, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 13180, + "id": 12103, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 13181, + "id": 12104, "properties": { "type": "double", "waterlogged": "false" @@ -131526,7 +124173,7 @@ }, "states": [ { - "id": 12090, + "id": 11013, "properties": { "facing": "north", "half": "top", @@ -131535,7 +124182,7 @@ } }, { - "id": 12091, + "id": 11014, "properties": { "facing": "north", "half": "top", @@ -131544,7 +124191,7 @@ } }, { - "id": 12092, + "id": 11015, "properties": { "facing": "north", "half": "top", @@ -131553,7 +124200,7 @@ } }, { - "id": 12093, + "id": 11016, "properties": { "facing": "north", "half": "top", @@ -131562,7 +124209,7 @@ } }, { - "id": 12094, + "id": 11017, "properties": { "facing": "north", "half": "top", @@ -131571,7 +124218,7 @@ } }, { - "id": 12095, + "id": 11018, "properties": { "facing": "north", "half": "top", @@ -131580,7 +124227,7 @@ } }, { - "id": 12096, + "id": 11019, "properties": { "facing": "north", "half": "top", @@ -131589,7 +124236,7 @@ } }, { - "id": 12097, + "id": 11020, "properties": { "facing": "north", "half": "top", @@ -131598,7 +124245,7 @@ } }, { - "id": 12098, + "id": 11021, "properties": { "facing": "north", "half": "top", @@ -131607,7 +124254,7 @@ } }, { - "id": 12099, + "id": 11022, "properties": { "facing": "north", "half": "top", @@ -131616,7 +124263,7 @@ } }, { - "id": 12100, + "id": 11023, "properties": { "facing": "north", "half": "bottom", @@ -131626,7 +124273,7 @@ }, { "default": true, - "id": 12101, + "id": 11024, "properties": { "facing": "north", "half": "bottom", @@ -131635,7 +124282,7 @@ } }, { - "id": 12102, + "id": 11025, "properties": { "facing": "north", "half": "bottom", @@ -131644,7 +124291,7 @@ } }, { - "id": 12103, + "id": 11026, "properties": { "facing": "north", "half": "bottom", @@ -131653,7 +124300,7 @@ } }, { - "id": 12104, + "id": 11027, "properties": { "facing": "north", "half": "bottom", @@ -131662,7 +124309,7 @@ } }, { - "id": 12105, + "id": 11028, "properties": { "facing": "north", "half": "bottom", @@ -131671,7 +124318,7 @@ } }, { - "id": 12106, + "id": 11029, "properties": { "facing": "north", "half": "bottom", @@ -131680,7 +124327,7 @@ } }, { - "id": 12107, + "id": 11030, "properties": { "facing": "north", "half": "bottom", @@ -131689,7 +124336,7 @@ } }, { - "id": 12108, + "id": 11031, "properties": { "facing": "north", "half": "bottom", @@ -131698,7 +124345,7 @@ } }, { - "id": 12109, + "id": 11032, "properties": { "facing": "north", "half": "bottom", @@ -131707,7 +124354,7 @@ } }, { - "id": 12110, + "id": 11033, "properties": { "facing": "south", "half": "top", @@ -131716,7 +124363,7 @@ } }, { - "id": 12111, + "id": 11034, "properties": { "facing": "south", "half": "top", @@ -131725,7 +124372,7 @@ } }, { - "id": 12112, + "id": 11035, "properties": { "facing": "south", "half": "top", @@ -131734,7 +124381,7 @@ } }, { - "id": 12113, + "id": 11036, "properties": { "facing": "south", "half": "top", @@ -131743,7 +124390,7 @@ } }, { - "id": 12114, + "id": 11037, "properties": { "facing": "south", "half": "top", @@ -131752,7 +124399,7 @@ } }, { - "id": 12115, + "id": 11038, "properties": { "facing": "south", "half": "top", @@ -131761,7 +124408,7 @@ } }, { - "id": 12116, + "id": 11039, "properties": { "facing": "south", "half": "top", @@ -131770,7 +124417,7 @@ } }, { - "id": 12117, + "id": 11040, "properties": { "facing": "south", "half": "top", @@ -131779,7 +124426,7 @@ } }, { - "id": 12118, + "id": 11041, "properties": { "facing": "south", "half": "top", @@ -131788,7 +124435,7 @@ } }, { - "id": 12119, + "id": 11042, "properties": { "facing": "south", "half": "top", @@ -131797,7 +124444,7 @@ } }, { - "id": 12120, + "id": 11043, "properties": { "facing": "south", "half": "bottom", @@ -131806,7 +124453,7 @@ } }, { - "id": 12121, + "id": 11044, "properties": { "facing": "south", "half": "bottom", @@ -131815,7 +124462,7 @@ } }, { - "id": 12122, + "id": 11045, "properties": { "facing": "south", "half": "bottom", @@ -131824,7 +124471,7 @@ } }, { - "id": 12123, + "id": 11046, "properties": { "facing": "south", "half": "bottom", @@ -131833,7 +124480,7 @@ } }, { - "id": 12124, + "id": 11047, "properties": { "facing": "south", "half": "bottom", @@ -131842,7 +124489,7 @@ } }, { - "id": 12125, + "id": 11048, "properties": { "facing": "south", "half": "bottom", @@ -131851,7 +124498,7 @@ } }, { - "id": 12126, + "id": 11049, "properties": { "facing": "south", "half": "bottom", @@ -131860,7 +124507,7 @@ } }, { - "id": 12127, + "id": 11050, "properties": { "facing": "south", "half": "bottom", @@ -131869,7 +124516,7 @@ } }, { - "id": 12128, + "id": 11051, "properties": { "facing": "south", "half": "bottom", @@ -131878,7 +124525,7 @@ } }, { - "id": 12129, + "id": 11052, "properties": { "facing": "south", "half": "bottom", @@ -131887,7 +124534,7 @@ } }, { - "id": 12130, + "id": 11053, "properties": { "facing": "west", "half": "top", @@ -131896,7 +124543,7 @@ } }, { - "id": 12131, + "id": 11054, "properties": { "facing": "west", "half": "top", @@ -131905,7 +124552,7 @@ } }, { - "id": 12132, + "id": 11055, "properties": { "facing": "west", "half": "top", @@ -131914,7 +124561,7 @@ } }, { - "id": 12133, + "id": 11056, "properties": { "facing": "west", "half": "top", @@ -131923,7 +124570,7 @@ } }, { - "id": 12134, + "id": 11057, "properties": { "facing": "west", "half": "top", @@ -131932,7 +124579,7 @@ } }, { - "id": 12135, + "id": 11058, "properties": { "facing": "west", "half": "top", @@ -131941,7 +124588,7 @@ } }, { - "id": 12136, + "id": 11059, "properties": { "facing": "west", "half": "top", @@ -131950,7 +124597,7 @@ } }, { - "id": 12137, + "id": 11060, "properties": { "facing": "west", "half": "top", @@ -131959,7 +124606,7 @@ } }, { - "id": 12138, + "id": 11061, "properties": { "facing": "west", "half": "top", @@ -131968,7 +124615,7 @@ } }, { - "id": 12139, + "id": 11062, "properties": { "facing": "west", "half": "top", @@ -131977,7 +124624,7 @@ } }, { - "id": 12140, + "id": 11063, "properties": { "facing": "west", "half": "bottom", @@ -131986,7 +124633,7 @@ } }, { - "id": 12141, + "id": 11064, "properties": { "facing": "west", "half": "bottom", @@ -131995,7 +124642,7 @@ } }, { - "id": 12142, + "id": 11065, "properties": { "facing": "west", "half": "bottom", @@ -132004,7 +124651,7 @@ } }, { - "id": 12143, + "id": 11066, "properties": { "facing": "west", "half": "bottom", @@ -132013,7 +124660,7 @@ } }, { - "id": 12144, + "id": 11067, "properties": { "facing": "west", "half": "bottom", @@ -132022,7 +124669,7 @@ } }, { - "id": 12145, + "id": 11068, "properties": { "facing": "west", "half": "bottom", @@ -132031,7 +124678,7 @@ } }, { - "id": 12146, + "id": 11069, "properties": { "facing": "west", "half": "bottom", @@ -132040,7 +124687,7 @@ } }, { - "id": 12147, + "id": 11070, "properties": { "facing": "west", "half": "bottom", @@ -132049,7 +124696,7 @@ } }, { - "id": 12148, + "id": 11071, "properties": { "facing": "west", "half": "bottom", @@ -132058,7 +124705,7 @@ } }, { - "id": 12149, + "id": 11072, "properties": { "facing": "west", "half": "bottom", @@ -132067,7 +124714,7 @@ } }, { - "id": 12150, + "id": 11073, "properties": { "facing": "east", "half": "top", @@ -132076,7 +124723,7 @@ } }, { - "id": 12151, + "id": 11074, "properties": { "facing": "east", "half": "top", @@ -132085,7 +124732,7 @@ } }, { - "id": 12152, + "id": 11075, "properties": { "facing": "east", "half": "top", @@ -132094,7 +124741,7 @@ } }, { - "id": 12153, + "id": 11076, "properties": { "facing": "east", "half": "top", @@ -132103,7 +124750,7 @@ } }, { - "id": 12154, + "id": 11077, "properties": { "facing": "east", "half": "top", @@ -132112,7 +124759,7 @@ } }, { - "id": 12155, + "id": 11078, "properties": { "facing": "east", "half": "top", @@ -132121,7 +124768,7 @@ } }, { - "id": 12156, + "id": 11079, "properties": { "facing": "east", "half": "top", @@ -132130,7 +124777,7 @@ } }, { - "id": 12157, + "id": 11080, "properties": { "facing": "east", "half": "top", @@ -132139,7 +124786,7 @@ } }, { - "id": 12158, + "id": 11081, "properties": { "facing": "east", "half": "top", @@ -132148,7 +124795,7 @@ } }, { - "id": 12159, + "id": 11082, "properties": { "facing": "east", "half": "top", @@ -132157,7 +124804,7 @@ } }, { - "id": 12160, + "id": 11083, "properties": { "facing": "east", "half": "bottom", @@ -132166,7 +124813,7 @@ } }, { - "id": 12161, + "id": 11084, "properties": { "facing": "east", "half": "bottom", @@ -132175,7 +124822,7 @@ } }, { - "id": 12162, + "id": 11085, "properties": { "facing": "east", "half": "bottom", @@ -132184,7 +124831,7 @@ } }, { - "id": 12163, + "id": 11086, "properties": { "facing": "east", "half": "bottom", @@ -132193,7 +124840,7 @@ } }, { - "id": 12164, + "id": 11087, "properties": { "facing": "east", "half": "bottom", @@ -132202,7 +124849,7 @@ } }, { - "id": 12165, + "id": 11088, "properties": { "facing": "east", "half": "bottom", @@ -132211,7 +124858,7 @@ } }, { - "id": 12166, + "id": 11089, "properties": { "facing": "east", "half": "bottom", @@ -132220,7 +124867,7 @@ } }, { - "id": 12167, + "id": 11090, "properties": { "facing": "east", "half": "bottom", @@ -132229,7 +124876,7 @@ } }, { - "id": 12168, + "id": 11091, "properties": { "facing": "east", "half": "bottom", @@ -132238,7 +124885,7 @@ } }, { - "id": 12169, + "id": 11092, "properties": { "facing": "east", "half": "bottom", @@ -132280,7 +124927,7 @@ }, "states": [ { - "id": 7425, + "id": 6652, "properties": { "facing": "north", "half": "top", @@ -132290,7 +124937,7 @@ } }, { - "id": 7426, + "id": 6653, "properties": { "facing": "north", "half": "top", @@ -132300,7 +124947,7 @@ } }, { - "id": 7427, + "id": 6654, "properties": { "facing": "north", "half": "top", @@ -132310,7 +124957,7 @@ } }, { - "id": 7428, + "id": 6655, "properties": { "facing": "north", "half": "top", @@ -132320,7 +124967,7 @@ } }, { - "id": 7429, + "id": 6656, "properties": { "facing": "north", "half": "top", @@ -132330,7 +124977,7 @@ } }, { - "id": 7430, + "id": 6657, "properties": { "facing": "north", "half": "top", @@ -132340,7 +124987,7 @@ } }, { - "id": 7431, + "id": 6658, "properties": { "facing": "north", "half": "top", @@ -132350,7 +124997,7 @@ } }, { - "id": 7432, + "id": 6659, "properties": { "facing": "north", "half": "top", @@ -132360,7 +125007,7 @@ } }, { - "id": 7433, + "id": 6660, "properties": { "facing": "north", "half": "bottom", @@ -132370,7 +125017,7 @@ } }, { - "id": 7434, + "id": 6661, "properties": { "facing": "north", "half": "bottom", @@ -132380,7 +125027,7 @@ } }, { - "id": 7435, + "id": 6662, "properties": { "facing": "north", "half": "bottom", @@ -132390,7 +125037,7 @@ } }, { - "id": 7436, + "id": 6663, "properties": { "facing": "north", "half": "bottom", @@ -132400,7 +125047,7 @@ } }, { - "id": 7437, + "id": 6664, "properties": { "facing": "north", "half": "bottom", @@ -132410,7 +125057,7 @@ } }, { - "id": 7438, + "id": 6665, "properties": { "facing": "north", "half": "bottom", @@ -132420,7 +125067,7 @@ } }, { - "id": 7439, + "id": 6666, "properties": { "facing": "north", "half": "bottom", @@ -132431,7 +125078,7 @@ }, { "default": true, - "id": 7440, + "id": 6667, "properties": { "facing": "north", "half": "bottom", @@ -132441,7 +125088,7 @@ } }, { - "id": 7441, + "id": 6668, "properties": { "facing": "south", "half": "top", @@ -132451,7 +125098,7 @@ } }, { - "id": 7442, + "id": 6669, "properties": { "facing": "south", "half": "top", @@ -132461,7 +125108,7 @@ } }, { - "id": 7443, + "id": 6670, "properties": { "facing": "south", "half": "top", @@ -132471,7 +125118,7 @@ } }, { - "id": 7444, + "id": 6671, "properties": { "facing": "south", "half": "top", @@ -132481,7 +125128,7 @@ } }, { - "id": 7445, + "id": 6672, "properties": { "facing": "south", "half": "top", @@ -132491,7 +125138,7 @@ } }, { - "id": 7446, + "id": 6673, "properties": { "facing": "south", "half": "top", @@ -132501,7 +125148,7 @@ } }, { - "id": 7447, + "id": 6674, "properties": { "facing": "south", "half": "top", @@ -132511,7 +125158,7 @@ } }, { - "id": 7448, + "id": 6675, "properties": { "facing": "south", "half": "top", @@ -132521,7 +125168,7 @@ } }, { - "id": 7449, + "id": 6676, "properties": { "facing": "south", "half": "bottom", @@ -132531,7 +125178,7 @@ } }, { - "id": 7450, + "id": 6677, "properties": { "facing": "south", "half": "bottom", @@ -132541,7 +125188,7 @@ } }, { - "id": 7451, + "id": 6678, "properties": { "facing": "south", "half": "bottom", @@ -132551,7 +125198,7 @@ } }, { - "id": 7452, + "id": 6679, "properties": { "facing": "south", "half": "bottom", @@ -132561,7 +125208,7 @@ } }, { - "id": 7453, + "id": 6680, "properties": { "facing": "south", "half": "bottom", @@ -132571,7 +125218,7 @@ } }, { - "id": 7454, + "id": 6681, "properties": { "facing": "south", "half": "bottom", @@ -132581,7 +125228,7 @@ } }, { - "id": 7455, + "id": 6682, "properties": { "facing": "south", "half": "bottom", @@ -132591,7 +125238,7 @@ } }, { - "id": 7456, + "id": 6683, "properties": { "facing": "south", "half": "bottom", @@ -132601,7 +125248,7 @@ } }, { - "id": 7457, + "id": 6684, "properties": { "facing": "west", "half": "top", @@ -132611,7 +125258,7 @@ } }, { - "id": 7458, + "id": 6685, "properties": { "facing": "west", "half": "top", @@ -132621,7 +125268,7 @@ } }, { - "id": 7459, + "id": 6686, "properties": { "facing": "west", "half": "top", @@ -132631,7 +125278,7 @@ } }, { - "id": 7460, + "id": 6687, "properties": { "facing": "west", "half": "top", @@ -132641,7 +125288,7 @@ } }, { - "id": 7461, + "id": 6688, "properties": { "facing": "west", "half": "top", @@ -132651,7 +125298,7 @@ } }, { - "id": 7462, + "id": 6689, "properties": { "facing": "west", "half": "top", @@ -132661,7 +125308,7 @@ } }, { - "id": 7463, + "id": 6690, "properties": { "facing": "west", "half": "top", @@ -132671,7 +125318,7 @@ } }, { - "id": 7464, + "id": 6691, "properties": { "facing": "west", "half": "top", @@ -132681,7 +125328,7 @@ } }, { - "id": 7465, + "id": 6692, "properties": { "facing": "west", "half": "bottom", @@ -132691,7 +125338,7 @@ } }, { - "id": 7466, + "id": 6693, "properties": { "facing": "west", "half": "bottom", @@ -132701,7 +125348,7 @@ } }, { - "id": 7467, + "id": 6694, "properties": { "facing": "west", "half": "bottom", @@ -132711,7 +125358,7 @@ } }, { - "id": 7468, + "id": 6695, "properties": { "facing": "west", "half": "bottom", @@ -132721,7 +125368,7 @@ } }, { - "id": 7469, + "id": 6696, "properties": { "facing": "west", "half": "bottom", @@ -132731,7 +125378,7 @@ } }, { - "id": 7470, + "id": 6697, "properties": { "facing": "west", "half": "bottom", @@ -132741,7 +125388,7 @@ } }, { - "id": 7471, + "id": 6698, "properties": { "facing": "west", "half": "bottom", @@ -132751,7 +125398,7 @@ } }, { - "id": 7472, + "id": 6699, "properties": { "facing": "west", "half": "bottom", @@ -132761,7 +125408,7 @@ } }, { - "id": 7473, + "id": 6700, "properties": { "facing": "east", "half": "top", @@ -132771,7 +125418,7 @@ } }, { - "id": 7474, + "id": 6701, "properties": { "facing": "east", "half": "top", @@ -132781,7 +125428,7 @@ } }, { - "id": 7475, + "id": 6702, "properties": { "facing": "east", "half": "top", @@ -132791,7 +125438,7 @@ } }, { - "id": 7476, + "id": 6703, "properties": { "facing": "east", "half": "top", @@ -132801,7 +125448,7 @@ } }, { - "id": 7477, + "id": 6704, "properties": { "facing": "east", "half": "top", @@ -132811,7 +125458,7 @@ } }, { - "id": 7478, + "id": 6705, "properties": { "facing": "east", "half": "top", @@ -132821,7 +125468,7 @@ } }, { - "id": 7479, + "id": 6706, "properties": { "facing": "east", "half": "top", @@ -132831,7 +125478,7 @@ } }, { - "id": 7480, + "id": 6707, "properties": { "facing": "east", "half": "top", @@ -132841,7 +125488,7 @@ } }, { - "id": 7481, + "id": 6708, "properties": { "facing": "east", "half": "bottom", @@ -132851,7 +125498,7 @@ } }, { - "id": 7482, + "id": 6709, "properties": { "facing": "east", "half": "bottom", @@ -132861,7 +125508,7 @@ } }, { - "id": 7483, + "id": 6710, "properties": { "facing": "east", "half": "bottom", @@ -132871,7 +125518,7 @@ } }, { - "id": 7484, + "id": 6711, "properties": { "facing": "east", "half": "bottom", @@ -132881,7 +125528,7 @@ } }, { - "id": 7485, + "id": 6712, "properties": { "facing": "east", "half": "bottom", @@ -132891,7 +125538,7 @@ } }, { - "id": 7486, + "id": 6713, "properties": { "facing": "east", "half": "bottom", @@ -132901,7 +125548,7 @@ } }, { - "id": 7487, + "id": 6714, "properties": { "facing": "east", "half": "bottom", @@ -132911,7 +125558,7 @@ } }, { - "id": 7488, + "id": 6715, "properties": { "facing": "east", "half": "bottom", @@ -132942,7 +125589,7 @@ }, "states": [ { - "id": 6538, + "id": 5770, "properties": { "facing": "north", "waterlogged": "true" @@ -132950,49 +125597,49 @@ }, { "default": true, - "id": 6539, + "id": 5771, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 6540, + "id": 5772, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 6541, + "id": 5773, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 6542, + "id": 5774, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 6543, + "id": 5775, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 6544, + "id": 5776, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 6545, + "id": 5777, "properties": { "facing": "east", "waterlogged": "false" @@ -133020,7 +125667,7 @@ }, "states": [ { - "id": 5690, + "id": 4922, "properties": { "facing": "north", "waterlogged": "true" @@ -133028,49 +125675,49 @@ }, { "default": true, - "id": 5691, + "id": 4923, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 5692, + "id": 4924, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 5693, + "id": 4925, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 5694, + "id": 4926, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 5695, + "id": 4927, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 5696, + "id": 4928, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 5697, + "id": 4929, "properties": { "facing": "east", "waterlogged": "false" @@ -133135,63 +125782,63 @@ }, "states": [ { - "id": 23226, + "id": 22085, "properties": { "facing": "north", "waterlogged": "true" } }, { - "id": 23227, + "id": 22086, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 23228, + "id": 22087, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 23229, + "id": 22088, "properties": { "facing": "east", "waterlogged": "false" } }, { - "id": 23230, + "id": 22089, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 23231, + "id": 22090, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 23232, + "id": 22091, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 23233, + "id": 22092, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 23234, + "id": 22093, "properties": { "facing": "up", "waterlogged": "true" @@ -133199,21 +125846,21 @@ }, { "default": true, - "id": 23235, + "id": 22094, "properties": { "facing": "up", "waterlogged": "false" } }, { - "id": 23236, + "id": 22095, "properties": { "facing": "down", "waterlogged": "true" } }, { - "id": 23237, + "id": 22096, "properties": { "facing": "down", "waterlogged": "false" @@ -133229,7 +125876,7 @@ "states": [ { "default": true, - "id": 8132 + "id": 7055 } ] }, @@ -133256,49 +125903,49 @@ "states": [ { "default": true, - "id": 8149, + "id": 7072, "properties": { "age": "0" } }, { - "id": 8150, + "id": 7073, "properties": { "age": "1" } }, { - "id": 8151, + "id": 7074, "properties": { "age": "2" } }, { - "id": 8152, + "id": 7075, "properties": { "age": "3" } }, { - "id": 8153, + "id": 7076, "properties": { "age": "4" } }, { - "id": 8154, + "id": 7077, "properties": { "age": "5" } }, { - "id": 8155, + "id": 7078, "properties": { "age": "6" } }, { - "id": 8156, + "id": 7079, "properties": { "age": "7" } @@ -133314,7 +125961,7 @@ "states": [ { "default": true, - "id": 27660 + "id": 25903 } ] }, @@ -133326,7 +125973,7 @@ "states": [ { "default": true, - "id": 27611 + "id": 25854 } ] }, @@ -133338,7 +125985,7 @@ "states": [ { "default": true, - "id": 3167 + "id": 2399 } ] }, @@ -133360,21 +126007,21 @@ }, "states": [ { - "id": 16238, + "id": 15129, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 16239, + "id": 15130, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 16240, + "id": 15131, "properties": { "type": "bottom", "waterlogged": "true" @@ -133382,21 +126029,21 @@ }, { "default": true, - "id": 16241, + "id": 15132, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 16242, + "id": 15133, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 16243, + "id": 15134, "properties": { "type": "double", "waterlogged": "false" @@ -133437,7 +126084,7 @@ }, "states": [ { - "id": 15414, + "id": 14305, "properties": { "facing": "north", "half": "top", @@ -133446,7 +126093,7 @@ } }, { - "id": 15415, + "id": 14306, "properties": { "facing": "north", "half": "top", @@ -133455,7 +126102,7 @@ } }, { - "id": 15416, + "id": 14307, "properties": { "facing": "north", "half": "top", @@ -133464,7 +126111,7 @@ } }, { - "id": 15417, + "id": 14308, "properties": { "facing": "north", "half": "top", @@ -133473,7 +126120,7 @@ } }, { - "id": 15418, + "id": 14309, "properties": { "facing": "north", "half": "top", @@ -133482,7 +126129,7 @@ } }, { - "id": 15419, + "id": 14310, "properties": { "facing": "north", "half": "top", @@ -133491,7 +126138,7 @@ } }, { - "id": 15420, + "id": 14311, "properties": { "facing": "north", "half": "top", @@ -133500,7 +126147,7 @@ } }, { - "id": 15421, + "id": 14312, "properties": { "facing": "north", "half": "top", @@ -133509,7 +126156,7 @@ } }, { - "id": 15422, + "id": 14313, "properties": { "facing": "north", "half": "top", @@ -133518,7 +126165,7 @@ } }, { - "id": 15423, + "id": 14314, "properties": { "facing": "north", "half": "top", @@ -133527,7 +126174,7 @@ } }, { - "id": 15424, + "id": 14315, "properties": { "facing": "north", "half": "bottom", @@ -133537,7 +126184,7 @@ }, { "default": true, - "id": 15425, + "id": 14316, "properties": { "facing": "north", "half": "bottom", @@ -133546,7 +126193,7 @@ } }, { - "id": 15426, + "id": 14317, "properties": { "facing": "north", "half": "bottom", @@ -133555,7 +126202,7 @@ } }, { - "id": 15427, + "id": 14318, "properties": { "facing": "north", "half": "bottom", @@ -133564,7 +126211,7 @@ } }, { - "id": 15428, + "id": 14319, "properties": { "facing": "north", "half": "bottom", @@ -133573,7 +126220,7 @@ } }, { - "id": 15429, + "id": 14320, "properties": { "facing": "north", "half": "bottom", @@ -133582,7 +126229,7 @@ } }, { - "id": 15430, + "id": 14321, "properties": { "facing": "north", "half": "bottom", @@ -133591,7 +126238,7 @@ } }, { - "id": 15431, + "id": 14322, "properties": { "facing": "north", "half": "bottom", @@ -133600,7 +126247,7 @@ } }, { - "id": 15432, + "id": 14323, "properties": { "facing": "north", "half": "bottom", @@ -133609,7 +126256,7 @@ } }, { - "id": 15433, + "id": 14324, "properties": { "facing": "north", "half": "bottom", @@ -133618,7 +126265,7 @@ } }, { - "id": 15434, + "id": 14325, "properties": { "facing": "south", "half": "top", @@ -133627,7 +126274,7 @@ } }, { - "id": 15435, + "id": 14326, "properties": { "facing": "south", "half": "top", @@ -133636,7 +126283,7 @@ } }, { - "id": 15436, + "id": 14327, "properties": { "facing": "south", "half": "top", @@ -133645,7 +126292,7 @@ } }, { - "id": 15437, + "id": 14328, "properties": { "facing": "south", "half": "top", @@ -133654,7 +126301,7 @@ } }, { - "id": 15438, + "id": 14329, "properties": { "facing": "south", "half": "top", @@ -133663,7 +126310,7 @@ } }, { - "id": 15439, + "id": 14330, "properties": { "facing": "south", "half": "top", @@ -133672,7 +126319,7 @@ } }, { - "id": 15440, + "id": 14331, "properties": { "facing": "south", "half": "top", @@ -133681,7 +126328,7 @@ } }, { - "id": 15441, + "id": 14332, "properties": { "facing": "south", "half": "top", @@ -133690,7 +126337,7 @@ } }, { - "id": 15442, + "id": 14333, "properties": { "facing": "south", "half": "top", @@ -133699,7 +126346,7 @@ } }, { - "id": 15443, + "id": 14334, "properties": { "facing": "south", "half": "top", @@ -133708,7 +126355,7 @@ } }, { - "id": 15444, + "id": 14335, "properties": { "facing": "south", "half": "bottom", @@ -133717,7 +126364,7 @@ } }, { - "id": 15445, + "id": 14336, "properties": { "facing": "south", "half": "bottom", @@ -133726,7 +126373,7 @@ } }, { - "id": 15446, + "id": 14337, "properties": { "facing": "south", "half": "bottom", @@ -133735,7 +126382,7 @@ } }, { - "id": 15447, + "id": 14338, "properties": { "facing": "south", "half": "bottom", @@ -133744,7 +126391,7 @@ } }, { - "id": 15448, + "id": 14339, "properties": { "facing": "south", "half": "bottom", @@ -133753,7 +126400,7 @@ } }, { - "id": 15449, + "id": 14340, "properties": { "facing": "south", "half": "bottom", @@ -133762,7 +126409,7 @@ } }, { - "id": 15450, + "id": 14341, "properties": { "facing": "south", "half": "bottom", @@ -133771,7 +126418,7 @@ } }, { - "id": 15451, + "id": 14342, "properties": { "facing": "south", "half": "bottom", @@ -133780,7 +126427,7 @@ } }, { - "id": 15452, + "id": 14343, "properties": { "facing": "south", "half": "bottom", @@ -133789,7 +126436,7 @@ } }, { - "id": 15453, + "id": 14344, "properties": { "facing": "south", "half": "bottom", @@ -133798,7 +126445,7 @@ } }, { - "id": 15454, + "id": 14345, "properties": { "facing": "west", "half": "top", @@ -133807,7 +126454,7 @@ } }, { - "id": 15455, + "id": 14346, "properties": { "facing": "west", "half": "top", @@ -133816,7 +126463,7 @@ } }, { - "id": 15456, + "id": 14347, "properties": { "facing": "west", "half": "top", @@ -133825,7 +126472,7 @@ } }, { - "id": 15457, + "id": 14348, "properties": { "facing": "west", "half": "top", @@ -133834,7 +126481,7 @@ } }, { - "id": 15458, + "id": 14349, "properties": { "facing": "west", "half": "top", @@ -133843,7 +126490,7 @@ } }, { - "id": 15459, + "id": 14350, "properties": { "facing": "west", "half": "top", @@ -133852,7 +126499,7 @@ } }, { - "id": 15460, + "id": 14351, "properties": { "facing": "west", "half": "top", @@ -133861,7 +126508,7 @@ } }, { - "id": 15461, + "id": 14352, "properties": { "facing": "west", "half": "top", @@ -133870,7 +126517,7 @@ } }, { - "id": 15462, + "id": 14353, "properties": { "facing": "west", "half": "top", @@ -133879,7 +126526,7 @@ } }, { - "id": 15463, + "id": 14354, "properties": { "facing": "west", "half": "top", @@ -133888,7 +126535,7 @@ } }, { - "id": 15464, + "id": 14355, "properties": { "facing": "west", "half": "bottom", @@ -133897,7 +126544,7 @@ } }, { - "id": 15465, + "id": 14356, "properties": { "facing": "west", "half": "bottom", @@ -133906,7 +126553,7 @@ } }, { - "id": 15466, + "id": 14357, "properties": { "facing": "west", "half": "bottom", @@ -133915,7 +126562,7 @@ } }, { - "id": 15467, + "id": 14358, "properties": { "facing": "west", "half": "bottom", @@ -133924,7 +126571,7 @@ } }, { - "id": 15468, + "id": 14359, "properties": { "facing": "west", "half": "bottom", @@ -133933,7 +126580,7 @@ } }, { - "id": 15469, + "id": 14360, "properties": { "facing": "west", "half": "bottom", @@ -133942,7 +126589,7 @@ } }, { - "id": 15470, + "id": 14361, "properties": { "facing": "west", "half": "bottom", @@ -133951,7 +126598,7 @@ } }, { - "id": 15471, + "id": 14362, "properties": { "facing": "west", "half": "bottom", @@ -133960,7 +126607,7 @@ } }, { - "id": 15472, + "id": 14363, "properties": { "facing": "west", "half": "bottom", @@ -133969,7 +126616,7 @@ } }, { - "id": 15473, + "id": 14364, "properties": { "facing": "west", "half": "bottom", @@ -133978,7 +126625,7 @@ } }, { - "id": 15474, + "id": 14365, "properties": { "facing": "east", "half": "top", @@ -133987,7 +126634,7 @@ } }, { - "id": 15475, + "id": 14366, "properties": { "facing": "east", "half": "top", @@ -133996,7 +126643,7 @@ } }, { - "id": 15476, + "id": 14367, "properties": { "facing": "east", "half": "top", @@ -134005,7 +126652,7 @@ } }, { - "id": 15477, + "id": 14368, "properties": { "facing": "east", "half": "top", @@ -134014,7 +126661,7 @@ } }, { - "id": 15478, + "id": 14369, "properties": { "facing": "east", "half": "top", @@ -134023,7 +126670,7 @@ } }, { - "id": 15479, + "id": 14370, "properties": { "facing": "east", "half": "top", @@ -134032,7 +126679,7 @@ } }, { - "id": 15480, + "id": 14371, "properties": { "facing": "east", "half": "top", @@ -134041,7 +126688,7 @@ } }, { - "id": 15481, + "id": 14372, "properties": { "facing": "east", "half": "top", @@ -134050,7 +126697,7 @@ } }, { - "id": 15482, + "id": 14373, "properties": { "facing": "east", "half": "top", @@ -134059,7 +126706,7 @@ } }, { - "id": 15483, + "id": 14374, "properties": { "facing": "east", "half": "top", @@ -134068,7 +126715,7 @@ } }, { - "id": 15484, + "id": 14375, "properties": { "facing": "east", "half": "bottom", @@ -134077,7 +126724,7 @@ } }, { - "id": 15485, + "id": 14376, "properties": { "facing": "east", "half": "bottom", @@ -134086,7 +126733,7 @@ } }, { - "id": 15486, + "id": 14377, "properties": { "facing": "east", "half": "bottom", @@ -134095,7 +126742,7 @@ } }, { - "id": 15487, + "id": 14378, "properties": { "facing": "east", "half": "bottom", @@ -134104,7 +126751,7 @@ } }, { - "id": 15488, + "id": 14379, "properties": { "facing": "east", "half": "bottom", @@ -134113,7 +126760,7 @@ } }, { - "id": 15489, + "id": 14380, "properties": { "facing": "east", "half": "bottom", @@ -134122,7 +126769,7 @@ } }, { - "id": 15490, + "id": 14381, "properties": { "facing": "east", "half": "bottom", @@ -134131,7 +126778,7 @@ } }, { - "id": 15491, + "id": 14382, "properties": { "facing": "east", "half": "bottom", @@ -134140,7 +126787,7 @@ } }, { - "id": 15492, + "id": 14383, "properties": { "facing": "east", "half": "bottom", @@ -134149,7 +126796,7 @@ } }, { - "id": 15493, + "id": 14384, "properties": { "facing": "east", "half": "bottom", @@ -134196,7 +126843,7 @@ }, "states": [ { - "id": 10104, + "id": 9027, "properties": { "east": "none", "north": "none", @@ -134207,7 +126854,7 @@ } }, { - "id": 10105, + "id": 9028, "properties": { "east": "none", "north": "none", @@ -134218,7 +126865,7 @@ } }, { - "id": 10106, + "id": 9029, "properties": { "east": "none", "north": "none", @@ -134230,7 +126877,7 @@ }, { "default": true, - "id": 10107, + "id": 9030, "properties": { "east": "none", "north": "none", @@ -134241,7 +126888,7 @@ } }, { - "id": 10108, + "id": 9031, "properties": { "east": "none", "north": "none", @@ -134252,7 +126899,7 @@ } }, { - "id": 10109, + "id": 9032, "properties": { "east": "none", "north": "none", @@ -134263,7 +126910,7 @@ } }, { - "id": 10110, + "id": 9033, "properties": { "east": "none", "north": "none", @@ -134274,7 +126921,7 @@ } }, { - "id": 10111, + "id": 9034, "properties": { "east": "none", "north": "none", @@ -134285,7 +126932,7 @@ } }, { - "id": 10112, + "id": 9035, "properties": { "east": "none", "north": "none", @@ -134296,7 +126943,7 @@ } }, { - "id": 10113, + "id": 9036, "properties": { "east": "none", "north": "none", @@ -134307,7 +126954,7 @@ } }, { - "id": 10114, + "id": 9037, "properties": { "east": "none", "north": "none", @@ -134318,7 +126965,7 @@ } }, { - "id": 10115, + "id": 9038, "properties": { "east": "none", "north": "none", @@ -134329,7 +126976,7 @@ } }, { - "id": 10116, + "id": 9039, "properties": { "east": "none", "north": "none", @@ -134340,7 +126987,7 @@ } }, { - "id": 10117, + "id": 9040, "properties": { "east": "none", "north": "none", @@ -134351,7 +126998,7 @@ } }, { - "id": 10118, + "id": 9041, "properties": { "east": "none", "north": "none", @@ -134362,7 +127009,7 @@ } }, { - "id": 10119, + "id": 9042, "properties": { "east": "none", "north": "none", @@ -134373,7 +127020,7 @@ } }, { - "id": 10120, + "id": 9043, "properties": { "east": "none", "north": "none", @@ -134384,7 +127031,7 @@ } }, { - "id": 10121, + "id": 9044, "properties": { "east": "none", "north": "none", @@ -134395,7 +127042,7 @@ } }, { - "id": 10122, + "id": 9045, "properties": { "east": "none", "north": "none", @@ -134406,7 +127053,7 @@ } }, { - "id": 10123, + "id": 9046, "properties": { "east": "none", "north": "none", @@ -134417,7 +127064,7 @@ } }, { - "id": 10124, + "id": 9047, "properties": { "east": "none", "north": "none", @@ -134428,7 +127075,7 @@ } }, { - "id": 10125, + "id": 9048, "properties": { "east": "none", "north": "none", @@ -134439,7 +127086,7 @@ } }, { - "id": 10126, + "id": 9049, "properties": { "east": "none", "north": "none", @@ -134450,7 +127097,7 @@ } }, { - "id": 10127, + "id": 9050, "properties": { "east": "none", "north": "none", @@ -134461,7 +127108,7 @@ } }, { - "id": 10128, + "id": 9051, "properties": { "east": "none", "north": "none", @@ -134472,7 +127119,7 @@ } }, { - "id": 10129, + "id": 9052, "properties": { "east": "none", "north": "none", @@ -134483,7 +127130,7 @@ } }, { - "id": 10130, + "id": 9053, "properties": { "east": "none", "north": "none", @@ -134494,7 +127141,7 @@ } }, { - "id": 10131, + "id": 9054, "properties": { "east": "none", "north": "none", @@ -134505,7 +127152,7 @@ } }, { - "id": 10132, + "id": 9055, "properties": { "east": "none", "north": "none", @@ -134516,7 +127163,7 @@ } }, { - "id": 10133, + "id": 9056, "properties": { "east": "none", "north": "none", @@ -134527,7 +127174,7 @@ } }, { - "id": 10134, + "id": 9057, "properties": { "east": "none", "north": "none", @@ -134538,7 +127185,7 @@ } }, { - "id": 10135, + "id": 9058, "properties": { "east": "none", "north": "none", @@ -134549,7 +127196,7 @@ } }, { - "id": 10136, + "id": 9059, "properties": { "east": "none", "north": "none", @@ -134560,7 +127207,7 @@ } }, { - "id": 10137, + "id": 9060, "properties": { "east": "none", "north": "none", @@ -134571,7 +127218,7 @@ } }, { - "id": 10138, + "id": 9061, "properties": { "east": "none", "north": "none", @@ -134582,7 +127229,7 @@ } }, { - "id": 10139, + "id": 9062, "properties": { "east": "none", "north": "none", @@ -134593,7 +127240,7 @@ } }, { - "id": 10140, + "id": 9063, "properties": { "east": "none", "north": "low", @@ -134604,7 +127251,7 @@ } }, { - "id": 10141, + "id": 9064, "properties": { "east": "none", "north": "low", @@ -134615,7 +127262,7 @@ } }, { - "id": 10142, + "id": 9065, "properties": { "east": "none", "north": "low", @@ -134626,7 +127273,7 @@ } }, { - "id": 10143, + "id": 9066, "properties": { "east": "none", "north": "low", @@ -134637,7 +127284,7 @@ } }, { - "id": 10144, + "id": 9067, "properties": { "east": "none", "north": "low", @@ -134648,7 +127295,7 @@ } }, { - "id": 10145, + "id": 9068, "properties": { "east": "none", "north": "low", @@ -134659,7 +127306,7 @@ } }, { - "id": 10146, + "id": 9069, "properties": { "east": "none", "north": "low", @@ -134670,7 +127317,7 @@ } }, { - "id": 10147, + "id": 9070, "properties": { "east": "none", "north": "low", @@ -134681,7 +127328,7 @@ } }, { - "id": 10148, + "id": 9071, "properties": { "east": "none", "north": "low", @@ -134692,7 +127339,7 @@ } }, { - "id": 10149, + "id": 9072, "properties": { "east": "none", "north": "low", @@ -134703,7 +127350,7 @@ } }, { - "id": 10150, + "id": 9073, "properties": { "east": "none", "north": "low", @@ -134714,7 +127361,7 @@ } }, { - "id": 10151, + "id": 9074, "properties": { "east": "none", "north": "low", @@ -134725,7 +127372,7 @@ } }, { - "id": 10152, + "id": 9075, "properties": { "east": "none", "north": "low", @@ -134736,7 +127383,7 @@ } }, { - "id": 10153, + "id": 9076, "properties": { "east": "none", "north": "low", @@ -134747,7 +127394,7 @@ } }, { - "id": 10154, + "id": 9077, "properties": { "east": "none", "north": "low", @@ -134758,7 +127405,7 @@ } }, { - "id": 10155, + "id": 9078, "properties": { "east": "none", "north": "low", @@ -134769,7 +127416,7 @@ } }, { - "id": 10156, + "id": 9079, "properties": { "east": "none", "north": "low", @@ -134780,7 +127427,7 @@ } }, { - "id": 10157, + "id": 9080, "properties": { "east": "none", "north": "low", @@ -134791,7 +127438,7 @@ } }, { - "id": 10158, + "id": 9081, "properties": { "east": "none", "north": "low", @@ -134802,7 +127449,7 @@ } }, { - "id": 10159, + "id": 9082, "properties": { "east": "none", "north": "low", @@ -134813,7 +127460,7 @@ } }, { - "id": 10160, + "id": 9083, "properties": { "east": "none", "north": "low", @@ -134824,7 +127471,7 @@ } }, { - "id": 10161, + "id": 9084, "properties": { "east": "none", "north": "low", @@ -134835,7 +127482,7 @@ } }, { - "id": 10162, + "id": 9085, "properties": { "east": "none", "north": "low", @@ -134846,7 +127493,7 @@ } }, { - "id": 10163, + "id": 9086, "properties": { "east": "none", "north": "low", @@ -134857,7 +127504,7 @@ } }, { - "id": 10164, + "id": 9087, "properties": { "east": "none", "north": "low", @@ -134868,7 +127515,7 @@ } }, { - "id": 10165, + "id": 9088, "properties": { "east": "none", "north": "low", @@ -134879,7 +127526,7 @@ } }, { - "id": 10166, + "id": 9089, "properties": { "east": "none", "north": "low", @@ -134890,7 +127537,7 @@ } }, { - "id": 10167, + "id": 9090, "properties": { "east": "none", "north": "low", @@ -134901,7 +127548,7 @@ } }, { - "id": 10168, + "id": 9091, "properties": { "east": "none", "north": "low", @@ -134912,7 +127559,7 @@ } }, { - "id": 10169, + "id": 9092, "properties": { "east": "none", "north": "low", @@ -134923,7 +127570,7 @@ } }, { - "id": 10170, + "id": 9093, "properties": { "east": "none", "north": "low", @@ -134934,7 +127581,7 @@ } }, { - "id": 10171, + "id": 9094, "properties": { "east": "none", "north": "low", @@ -134945,7 +127592,7 @@ } }, { - "id": 10172, + "id": 9095, "properties": { "east": "none", "north": "low", @@ -134956,7 +127603,7 @@ } }, { - "id": 10173, + "id": 9096, "properties": { "east": "none", "north": "low", @@ -134967,7 +127614,7 @@ } }, { - "id": 10174, + "id": 9097, "properties": { "east": "none", "north": "low", @@ -134978,7 +127625,7 @@ } }, { - "id": 10175, + "id": 9098, "properties": { "east": "none", "north": "low", @@ -134989,7 +127636,7 @@ } }, { - "id": 10176, + "id": 9099, "properties": { "east": "none", "north": "tall", @@ -135000,7 +127647,7 @@ } }, { - "id": 10177, + "id": 9100, "properties": { "east": "none", "north": "tall", @@ -135011,7 +127658,7 @@ } }, { - "id": 10178, + "id": 9101, "properties": { "east": "none", "north": "tall", @@ -135022,7 +127669,7 @@ } }, { - "id": 10179, + "id": 9102, "properties": { "east": "none", "north": "tall", @@ -135033,7 +127680,7 @@ } }, { - "id": 10180, + "id": 9103, "properties": { "east": "none", "north": "tall", @@ -135044,7 +127691,7 @@ } }, { - "id": 10181, + "id": 9104, "properties": { "east": "none", "north": "tall", @@ -135055,7 +127702,7 @@ } }, { - "id": 10182, + "id": 9105, "properties": { "east": "none", "north": "tall", @@ -135066,7 +127713,7 @@ } }, { - "id": 10183, + "id": 9106, "properties": { "east": "none", "north": "tall", @@ -135077,7 +127724,7 @@ } }, { - "id": 10184, + "id": 9107, "properties": { "east": "none", "north": "tall", @@ -135088,7 +127735,7 @@ } }, { - "id": 10185, + "id": 9108, "properties": { "east": "none", "north": "tall", @@ -135099,7 +127746,7 @@ } }, { - "id": 10186, + "id": 9109, "properties": { "east": "none", "north": "tall", @@ -135110,7 +127757,7 @@ } }, { - "id": 10187, + "id": 9110, "properties": { "east": "none", "north": "tall", @@ -135121,7 +127768,7 @@ } }, { - "id": 10188, + "id": 9111, "properties": { "east": "none", "north": "tall", @@ -135132,7 +127779,7 @@ } }, { - "id": 10189, + "id": 9112, "properties": { "east": "none", "north": "tall", @@ -135143,7 +127790,7 @@ } }, { - "id": 10190, + "id": 9113, "properties": { "east": "none", "north": "tall", @@ -135154,7 +127801,7 @@ } }, { - "id": 10191, + "id": 9114, "properties": { "east": "none", "north": "tall", @@ -135165,7 +127812,7 @@ } }, { - "id": 10192, + "id": 9115, "properties": { "east": "none", "north": "tall", @@ -135176,7 +127823,7 @@ } }, { - "id": 10193, + "id": 9116, "properties": { "east": "none", "north": "tall", @@ -135187,7 +127834,7 @@ } }, { - "id": 10194, + "id": 9117, "properties": { "east": "none", "north": "tall", @@ -135198,7 +127845,7 @@ } }, { - "id": 10195, + "id": 9118, "properties": { "east": "none", "north": "tall", @@ -135209,7 +127856,7 @@ } }, { - "id": 10196, + "id": 9119, "properties": { "east": "none", "north": "tall", @@ -135220,7 +127867,7 @@ } }, { - "id": 10197, + "id": 9120, "properties": { "east": "none", "north": "tall", @@ -135231,7 +127878,7 @@ } }, { - "id": 10198, + "id": 9121, "properties": { "east": "none", "north": "tall", @@ -135242,7 +127889,7 @@ } }, { - "id": 10199, + "id": 9122, "properties": { "east": "none", "north": "tall", @@ -135253,7 +127900,7 @@ } }, { - "id": 10200, + "id": 9123, "properties": { "east": "none", "north": "tall", @@ -135264,7 +127911,7 @@ } }, { - "id": 10201, + "id": 9124, "properties": { "east": "none", "north": "tall", @@ -135275,7 +127922,7 @@ } }, { - "id": 10202, + "id": 9125, "properties": { "east": "none", "north": "tall", @@ -135286,7 +127933,7 @@ } }, { - "id": 10203, + "id": 9126, "properties": { "east": "none", "north": "tall", @@ -135297,7 +127944,7 @@ } }, { - "id": 10204, + "id": 9127, "properties": { "east": "none", "north": "tall", @@ -135308,7 +127955,7 @@ } }, { - "id": 10205, + "id": 9128, "properties": { "east": "none", "north": "tall", @@ -135319,7 +127966,7 @@ } }, { - "id": 10206, + "id": 9129, "properties": { "east": "none", "north": "tall", @@ -135330,7 +127977,7 @@ } }, { - "id": 10207, + "id": 9130, "properties": { "east": "none", "north": "tall", @@ -135341,7 +127988,7 @@ } }, { - "id": 10208, + "id": 9131, "properties": { "east": "none", "north": "tall", @@ -135352,7 +127999,7 @@ } }, { - "id": 10209, + "id": 9132, "properties": { "east": "none", "north": "tall", @@ -135363,7 +128010,7 @@ } }, { - "id": 10210, + "id": 9133, "properties": { "east": "none", "north": "tall", @@ -135374,7 +128021,7 @@ } }, { - "id": 10211, + "id": 9134, "properties": { "east": "none", "north": "tall", @@ -135385,7 +128032,7 @@ } }, { - "id": 10212, + "id": 9135, "properties": { "east": "low", "north": "none", @@ -135396,7 +128043,7 @@ } }, { - "id": 10213, + "id": 9136, "properties": { "east": "low", "north": "none", @@ -135407,7 +128054,7 @@ } }, { - "id": 10214, + "id": 9137, "properties": { "east": "low", "north": "none", @@ -135418,7 +128065,7 @@ } }, { - "id": 10215, + "id": 9138, "properties": { "east": "low", "north": "none", @@ -135429,7 +128076,7 @@ } }, { - "id": 10216, + "id": 9139, "properties": { "east": "low", "north": "none", @@ -135440,7 +128087,7 @@ } }, { - "id": 10217, + "id": 9140, "properties": { "east": "low", "north": "none", @@ -135451,7 +128098,7 @@ } }, { - "id": 10218, + "id": 9141, "properties": { "east": "low", "north": "none", @@ -135462,7 +128109,7 @@ } }, { - "id": 10219, + "id": 9142, "properties": { "east": "low", "north": "none", @@ -135473,7 +128120,7 @@ } }, { - "id": 10220, + "id": 9143, "properties": { "east": "low", "north": "none", @@ -135484,7 +128131,7 @@ } }, { - "id": 10221, + "id": 9144, "properties": { "east": "low", "north": "none", @@ -135495,7 +128142,7 @@ } }, { - "id": 10222, + "id": 9145, "properties": { "east": "low", "north": "none", @@ -135506,7 +128153,7 @@ } }, { - "id": 10223, + "id": 9146, "properties": { "east": "low", "north": "none", @@ -135517,7 +128164,7 @@ } }, { - "id": 10224, + "id": 9147, "properties": { "east": "low", "north": "none", @@ -135528,7 +128175,7 @@ } }, { - "id": 10225, + "id": 9148, "properties": { "east": "low", "north": "none", @@ -135539,7 +128186,7 @@ } }, { - "id": 10226, + "id": 9149, "properties": { "east": "low", "north": "none", @@ -135550,7 +128197,7 @@ } }, { - "id": 10227, + "id": 9150, "properties": { "east": "low", "north": "none", @@ -135561,7 +128208,7 @@ } }, { - "id": 10228, + "id": 9151, "properties": { "east": "low", "north": "none", @@ -135572,7 +128219,7 @@ } }, { - "id": 10229, + "id": 9152, "properties": { "east": "low", "north": "none", @@ -135583,7 +128230,7 @@ } }, { - "id": 10230, + "id": 9153, "properties": { "east": "low", "north": "none", @@ -135594,7 +128241,7 @@ } }, { - "id": 10231, + "id": 9154, "properties": { "east": "low", "north": "none", @@ -135605,7 +128252,7 @@ } }, { - "id": 10232, + "id": 9155, "properties": { "east": "low", "north": "none", @@ -135616,7 +128263,7 @@ } }, { - "id": 10233, + "id": 9156, "properties": { "east": "low", "north": "none", @@ -135627,7 +128274,7 @@ } }, { - "id": 10234, + "id": 9157, "properties": { "east": "low", "north": "none", @@ -135638,7 +128285,7 @@ } }, { - "id": 10235, + "id": 9158, "properties": { "east": "low", "north": "none", @@ -135649,7 +128296,7 @@ } }, { - "id": 10236, + "id": 9159, "properties": { "east": "low", "north": "none", @@ -135660,7 +128307,7 @@ } }, { - "id": 10237, + "id": 9160, "properties": { "east": "low", "north": "none", @@ -135671,7 +128318,7 @@ } }, { - "id": 10238, + "id": 9161, "properties": { "east": "low", "north": "none", @@ -135682,7 +128329,7 @@ } }, { - "id": 10239, + "id": 9162, "properties": { "east": "low", "north": "none", @@ -135693,7 +128340,7 @@ } }, { - "id": 10240, + "id": 9163, "properties": { "east": "low", "north": "none", @@ -135704,7 +128351,7 @@ } }, { - "id": 10241, + "id": 9164, "properties": { "east": "low", "north": "none", @@ -135715,7 +128362,7 @@ } }, { - "id": 10242, + "id": 9165, "properties": { "east": "low", "north": "none", @@ -135726,7 +128373,7 @@ } }, { - "id": 10243, + "id": 9166, "properties": { "east": "low", "north": "none", @@ -135737,7 +128384,7 @@ } }, { - "id": 10244, + "id": 9167, "properties": { "east": "low", "north": "none", @@ -135748,7 +128395,7 @@ } }, { - "id": 10245, + "id": 9168, "properties": { "east": "low", "north": "none", @@ -135759,7 +128406,7 @@ } }, { - "id": 10246, + "id": 9169, "properties": { "east": "low", "north": "none", @@ -135770,7 +128417,7 @@ } }, { - "id": 10247, + "id": 9170, "properties": { "east": "low", "north": "none", @@ -135781,7 +128428,7 @@ } }, { - "id": 10248, + "id": 9171, "properties": { "east": "low", "north": "low", @@ -135792,7 +128439,7 @@ } }, { - "id": 10249, + "id": 9172, "properties": { "east": "low", "north": "low", @@ -135803,7 +128450,7 @@ } }, { - "id": 10250, + "id": 9173, "properties": { "east": "low", "north": "low", @@ -135814,7 +128461,7 @@ } }, { - "id": 10251, + "id": 9174, "properties": { "east": "low", "north": "low", @@ -135825,7 +128472,7 @@ } }, { - "id": 10252, + "id": 9175, "properties": { "east": "low", "north": "low", @@ -135836,7 +128483,7 @@ } }, { - "id": 10253, + "id": 9176, "properties": { "east": "low", "north": "low", @@ -135847,7 +128494,7 @@ } }, { - "id": 10254, + "id": 9177, "properties": { "east": "low", "north": "low", @@ -135858,7 +128505,7 @@ } }, { - "id": 10255, + "id": 9178, "properties": { "east": "low", "north": "low", @@ -135869,7 +128516,7 @@ } }, { - "id": 10256, + "id": 9179, "properties": { "east": "low", "north": "low", @@ -135880,7 +128527,7 @@ } }, { - "id": 10257, + "id": 9180, "properties": { "east": "low", "north": "low", @@ -135891,7 +128538,7 @@ } }, { - "id": 10258, + "id": 9181, "properties": { "east": "low", "north": "low", @@ -135902,7 +128549,7 @@ } }, { - "id": 10259, + "id": 9182, "properties": { "east": "low", "north": "low", @@ -135913,7 +128560,7 @@ } }, { - "id": 10260, + "id": 9183, "properties": { "east": "low", "north": "low", @@ -135924,7 +128571,7 @@ } }, { - "id": 10261, + "id": 9184, "properties": { "east": "low", "north": "low", @@ -135935,7 +128582,7 @@ } }, { - "id": 10262, + "id": 9185, "properties": { "east": "low", "north": "low", @@ -135946,7 +128593,7 @@ } }, { - "id": 10263, + "id": 9186, "properties": { "east": "low", "north": "low", @@ -135957,7 +128604,7 @@ } }, { - "id": 10264, + "id": 9187, "properties": { "east": "low", "north": "low", @@ -135968,7 +128615,7 @@ } }, { - "id": 10265, + "id": 9188, "properties": { "east": "low", "north": "low", @@ -135979,7 +128626,7 @@ } }, { - "id": 10266, + "id": 9189, "properties": { "east": "low", "north": "low", @@ -135990,7 +128637,7 @@ } }, { - "id": 10267, + "id": 9190, "properties": { "east": "low", "north": "low", @@ -136001,7 +128648,7 @@ } }, { - "id": 10268, + "id": 9191, "properties": { "east": "low", "north": "low", @@ -136012,7 +128659,7 @@ } }, { - "id": 10269, + "id": 9192, "properties": { "east": "low", "north": "low", @@ -136023,7 +128670,7 @@ } }, { - "id": 10270, + "id": 9193, "properties": { "east": "low", "north": "low", @@ -136034,7 +128681,7 @@ } }, { - "id": 10271, + "id": 9194, "properties": { "east": "low", "north": "low", @@ -136045,7 +128692,7 @@ } }, { - "id": 10272, + "id": 9195, "properties": { "east": "low", "north": "low", @@ -136056,7 +128703,7 @@ } }, { - "id": 10273, + "id": 9196, "properties": { "east": "low", "north": "low", @@ -136067,7 +128714,7 @@ } }, { - "id": 10274, + "id": 9197, "properties": { "east": "low", "north": "low", @@ -136078,7 +128725,7 @@ } }, { - "id": 10275, + "id": 9198, "properties": { "east": "low", "north": "low", @@ -136089,7 +128736,7 @@ } }, { - "id": 10276, + "id": 9199, "properties": { "east": "low", "north": "low", @@ -136100,7 +128747,7 @@ } }, { - "id": 10277, + "id": 9200, "properties": { "east": "low", "north": "low", @@ -136111,7 +128758,7 @@ } }, { - "id": 10278, + "id": 9201, "properties": { "east": "low", "north": "low", @@ -136122,7 +128769,7 @@ } }, { - "id": 10279, + "id": 9202, "properties": { "east": "low", "north": "low", @@ -136133,7 +128780,7 @@ } }, { - "id": 10280, + "id": 9203, "properties": { "east": "low", "north": "low", @@ -136144,7 +128791,7 @@ } }, { - "id": 10281, + "id": 9204, "properties": { "east": "low", "north": "low", @@ -136155,7 +128802,7 @@ } }, { - "id": 10282, + "id": 9205, "properties": { "east": "low", "north": "low", @@ -136166,7 +128813,7 @@ } }, { - "id": 10283, + "id": 9206, "properties": { "east": "low", "north": "low", @@ -136177,7 +128824,7 @@ } }, { - "id": 10284, + "id": 9207, "properties": { "east": "low", "north": "tall", @@ -136188,7 +128835,7 @@ } }, { - "id": 10285, + "id": 9208, "properties": { "east": "low", "north": "tall", @@ -136199,7 +128846,7 @@ } }, { - "id": 10286, + "id": 9209, "properties": { "east": "low", "north": "tall", @@ -136210,7 +128857,7 @@ } }, { - "id": 10287, + "id": 9210, "properties": { "east": "low", "north": "tall", @@ -136221,7 +128868,7 @@ } }, { - "id": 10288, + "id": 9211, "properties": { "east": "low", "north": "tall", @@ -136232,7 +128879,7 @@ } }, { - "id": 10289, + "id": 9212, "properties": { "east": "low", "north": "tall", @@ -136243,7 +128890,7 @@ } }, { - "id": 10290, + "id": 9213, "properties": { "east": "low", "north": "tall", @@ -136254,7 +128901,7 @@ } }, { - "id": 10291, + "id": 9214, "properties": { "east": "low", "north": "tall", @@ -136265,7 +128912,7 @@ } }, { - "id": 10292, + "id": 9215, "properties": { "east": "low", "north": "tall", @@ -136276,7 +128923,7 @@ } }, { - "id": 10293, + "id": 9216, "properties": { "east": "low", "north": "tall", @@ -136287,7 +128934,7 @@ } }, { - "id": 10294, + "id": 9217, "properties": { "east": "low", "north": "tall", @@ -136298,7 +128945,7 @@ } }, { - "id": 10295, + "id": 9218, "properties": { "east": "low", "north": "tall", @@ -136309,7 +128956,7 @@ } }, { - "id": 10296, + "id": 9219, "properties": { "east": "low", "north": "tall", @@ -136320,7 +128967,7 @@ } }, { - "id": 10297, + "id": 9220, "properties": { "east": "low", "north": "tall", @@ -136331,7 +128978,7 @@ } }, { - "id": 10298, + "id": 9221, "properties": { "east": "low", "north": "tall", @@ -136342,7 +128989,7 @@ } }, { - "id": 10299, + "id": 9222, "properties": { "east": "low", "north": "tall", @@ -136353,7 +129000,7 @@ } }, { - "id": 10300, + "id": 9223, "properties": { "east": "low", "north": "tall", @@ -136364,7 +129011,7 @@ } }, { - "id": 10301, + "id": 9224, "properties": { "east": "low", "north": "tall", @@ -136375,7 +129022,7 @@ } }, { - "id": 10302, + "id": 9225, "properties": { "east": "low", "north": "tall", @@ -136386,7 +129033,7 @@ } }, { - "id": 10303, + "id": 9226, "properties": { "east": "low", "north": "tall", @@ -136397,7 +129044,7 @@ } }, { - "id": 10304, + "id": 9227, "properties": { "east": "low", "north": "tall", @@ -136408,7 +129055,7 @@ } }, { - "id": 10305, + "id": 9228, "properties": { "east": "low", "north": "tall", @@ -136419,7 +129066,7 @@ } }, { - "id": 10306, + "id": 9229, "properties": { "east": "low", "north": "tall", @@ -136430,7 +129077,7 @@ } }, { - "id": 10307, + "id": 9230, "properties": { "east": "low", "north": "tall", @@ -136441,7 +129088,7 @@ } }, { - "id": 10308, + "id": 9231, "properties": { "east": "low", "north": "tall", @@ -136452,7 +129099,7 @@ } }, { - "id": 10309, + "id": 9232, "properties": { "east": "low", "north": "tall", @@ -136463,7 +129110,7 @@ } }, { - "id": 10310, + "id": 9233, "properties": { "east": "low", "north": "tall", @@ -136474,7 +129121,7 @@ } }, { - "id": 10311, + "id": 9234, "properties": { "east": "low", "north": "tall", @@ -136485,7 +129132,7 @@ } }, { - "id": 10312, + "id": 9235, "properties": { "east": "low", "north": "tall", @@ -136496,7 +129143,7 @@ } }, { - "id": 10313, + "id": 9236, "properties": { "east": "low", "north": "tall", @@ -136507,7 +129154,7 @@ } }, { - "id": 10314, + "id": 9237, "properties": { "east": "low", "north": "tall", @@ -136518,7 +129165,7 @@ } }, { - "id": 10315, + "id": 9238, "properties": { "east": "low", "north": "tall", @@ -136529,7 +129176,7 @@ } }, { - "id": 10316, + "id": 9239, "properties": { "east": "low", "north": "tall", @@ -136540,7 +129187,7 @@ } }, { - "id": 10317, + "id": 9240, "properties": { "east": "low", "north": "tall", @@ -136551,7 +129198,7 @@ } }, { - "id": 10318, + "id": 9241, "properties": { "east": "low", "north": "tall", @@ -136562,7 +129209,7 @@ } }, { - "id": 10319, + "id": 9242, "properties": { "east": "low", "north": "tall", @@ -136573,7 +129220,7 @@ } }, { - "id": 10320, + "id": 9243, "properties": { "east": "tall", "north": "none", @@ -136584,7 +129231,7 @@ } }, { - "id": 10321, + "id": 9244, "properties": { "east": "tall", "north": "none", @@ -136595,7 +129242,7 @@ } }, { - "id": 10322, + "id": 9245, "properties": { "east": "tall", "north": "none", @@ -136606,7 +129253,7 @@ } }, { - "id": 10323, + "id": 9246, "properties": { "east": "tall", "north": "none", @@ -136617,7 +129264,7 @@ } }, { - "id": 10324, + "id": 9247, "properties": { "east": "tall", "north": "none", @@ -136628,7 +129275,7 @@ } }, { - "id": 10325, + "id": 9248, "properties": { "east": "tall", "north": "none", @@ -136639,7 +129286,7 @@ } }, { - "id": 10326, + "id": 9249, "properties": { "east": "tall", "north": "none", @@ -136650,7 +129297,7 @@ } }, { - "id": 10327, + "id": 9250, "properties": { "east": "tall", "north": "none", @@ -136661,7 +129308,7 @@ } }, { - "id": 10328, + "id": 9251, "properties": { "east": "tall", "north": "none", @@ -136672,7 +129319,7 @@ } }, { - "id": 10329, + "id": 9252, "properties": { "east": "tall", "north": "none", @@ -136683,7 +129330,7 @@ } }, { - "id": 10330, + "id": 9253, "properties": { "east": "tall", "north": "none", @@ -136694,7 +129341,7 @@ } }, { - "id": 10331, + "id": 9254, "properties": { "east": "tall", "north": "none", @@ -136705,7 +129352,7 @@ } }, { - "id": 10332, + "id": 9255, "properties": { "east": "tall", "north": "none", @@ -136716,7 +129363,7 @@ } }, { - "id": 10333, + "id": 9256, "properties": { "east": "tall", "north": "none", @@ -136727,7 +129374,7 @@ } }, { - "id": 10334, + "id": 9257, "properties": { "east": "tall", "north": "none", @@ -136738,7 +129385,7 @@ } }, { - "id": 10335, + "id": 9258, "properties": { "east": "tall", "north": "none", @@ -136749,7 +129396,7 @@ } }, { - "id": 10336, + "id": 9259, "properties": { "east": "tall", "north": "none", @@ -136760,7 +129407,7 @@ } }, { - "id": 10337, + "id": 9260, "properties": { "east": "tall", "north": "none", @@ -136771,7 +129418,7 @@ } }, { - "id": 10338, + "id": 9261, "properties": { "east": "tall", "north": "none", @@ -136782,7 +129429,7 @@ } }, { - "id": 10339, + "id": 9262, "properties": { "east": "tall", "north": "none", @@ -136793,7 +129440,7 @@ } }, { - "id": 10340, + "id": 9263, "properties": { "east": "tall", "north": "none", @@ -136804,7 +129451,7 @@ } }, { - "id": 10341, + "id": 9264, "properties": { "east": "tall", "north": "none", @@ -136815,7 +129462,7 @@ } }, { - "id": 10342, + "id": 9265, "properties": { "east": "tall", "north": "none", @@ -136826,7 +129473,7 @@ } }, { - "id": 10343, + "id": 9266, "properties": { "east": "tall", "north": "none", @@ -136837,7 +129484,7 @@ } }, { - "id": 10344, + "id": 9267, "properties": { "east": "tall", "north": "none", @@ -136848,7 +129495,7 @@ } }, { - "id": 10345, + "id": 9268, "properties": { "east": "tall", "north": "none", @@ -136859,7 +129506,7 @@ } }, { - "id": 10346, + "id": 9269, "properties": { "east": "tall", "north": "none", @@ -136870,7 +129517,7 @@ } }, { - "id": 10347, + "id": 9270, "properties": { "east": "tall", "north": "none", @@ -136881,7 +129528,7 @@ } }, { - "id": 10348, + "id": 9271, "properties": { "east": "tall", "north": "none", @@ -136892,7 +129539,7 @@ } }, { - "id": 10349, + "id": 9272, "properties": { "east": "tall", "north": "none", @@ -136903,7 +129550,7 @@ } }, { - "id": 10350, + "id": 9273, "properties": { "east": "tall", "north": "none", @@ -136914,7 +129561,7 @@ } }, { - "id": 10351, + "id": 9274, "properties": { "east": "tall", "north": "none", @@ -136925,7 +129572,7 @@ } }, { - "id": 10352, + "id": 9275, "properties": { "east": "tall", "north": "none", @@ -136936,7 +129583,7 @@ } }, { - "id": 10353, + "id": 9276, "properties": { "east": "tall", "north": "none", @@ -136947,7 +129594,7 @@ } }, { - "id": 10354, + "id": 9277, "properties": { "east": "tall", "north": "none", @@ -136958,7 +129605,7 @@ } }, { - "id": 10355, + "id": 9278, "properties": { "east": "tall", "north": "none", @@ -136969,7 +129616,7 @@ } }, { - "id": 10356, + "id": 9279, "properties": { "east": "tall", "north": "low", @@ -136980,7 +129627,7 @@ } }, { - "id": 10357, + "id": 9280, "properties": { "east": "tall", "north": "low", @@ -136991,7 +129638,7 @@ } }, { - "id": 10358, + "id": 9281, "properties": { "east": "tall", "north": "low", @@ -137002,7 +129649,7 @@ } }, { - "id": 10359, + "id": 9282, "properties": { "east": "tall", "north": "low", @@ -137013,7 +129660,7 @@ } }, { - "id": 10360, + "id": 9283, "properties": { "east": "tall", "north": "low", @@ -137024,7 +129671,7 @@ } }, { - "id": 10361, + "id": 9284, "properties": { "east": "tall", "north": "low", @@ -137035,7 +129682,7 @@ } }, { - "id": 10362, + "id": 9285, "properties": { "east": "tall", "north": "low", @@ -137046,7 +129693,7 @@ } }, { - "id": 10363, + "id": 9286, "properties": { "east": "tall", "north": "low", @@ -137057,7 +129704,7 @@ } }, { - "id": 10364, + "id": 9287, "properties": { "east": "tall", "north": "low", @@ -137068,7 +129715,7 @@ } }, { - "id": 10365, + "id": 9288, "properties": { "east": "tall", "north": "low", @@ -137079,7 +129726,7 @@ } }, { - "id": 10366, + "id": 9289, "properties": { "east": "tall", "north": "low", @@ -137090,7 +129737,7 @@ } }, { - "id": 10367, + "id": 9290, "properties": { "east": "tall", "north": "low", @@ -137101,7 +129748,7 @@ } }, { - "id": 10368, + "id": 9291, "properties": { "east": "tall", "north": "low", @@ -137112,7 +129759,7 @@ } }, { - "id": 10369, + "id": 9292, "properties": { "east": "tall", "north": "low", @@ -137123,7 +129770,7 @@ } }, { - "id": 10370, + "id": 9293, "properties": { "east": "tall", "north": "low", @@ -137134,7 +129781,7 @@ } }, { - "id": 10371, + "id": 9294, "properties": { "east": "tall", "north": "low", @@ -137145,7 +129792,7 @@ } }, { - "id": 10372, + "id": 9295, "properties": { "east": "tall", "north": "low", @@ -137156,7 +129803,7 @@ } }, { - "id": 10373, + "id": 9296, "properties": { "east": "tall", "north": "low", @@ -137167,7 +129814,7 @@ } }, { - "id": 10374, + "id": 9297, "properties": { "east": "tall", "north": "low", @@ -137178,7 +129825,7 @@ } }, { - "id": 10375, + "id": 9298, "properties": { "east": "tall", "north": "low", @@ -137189,7 +129836,7 @@ } }, { - "id": 10376, + "id": 9299, "properties": { "east": "tall", "north": "low", @@ -137200,7 +129847,7 @@ } }, { - "id": 10377, + "id": 9300, "properties": { "east": "tall", "north": "low", @@ -137211,7 +129858,7 @@ } }, { - "id": 10378, + "id": 9301, "properties": { "east": "tall", "north": "low", @@ -137222,7 +129869,7 @@ } }, { - "id": 10379, + "id": 9302, "properties": { "east": "tall", "north": "low", @@ -137233,7 +129880,7 @@ } }, { - "id": 10380, + "id": 9303, "properties": { "east": "tall", "north": "low", @@ -137244,7 +129891,7 @@ } }, { - "id": 10381, + "id": 9304, "properties": { "east": "tall", "north": "low", @@ -137255,7 +129902,7 @@ } }, { - "id": 10382, + "id": 9305, "properties": { "east": "tall", "north": "low", @@ -137266,7 +129913,7 @@ } }, { - "id": 10383, + "id": 9306, "properties": { "east": "tall", "north": "low", @@ -137277,7 +129924,7 @@ } }, { - "id": 10384, + "id": 9307, "properties": { "east": "tall", "north": "low", @@ -137288,7 +129935,7 @@ } }, { - "id": 10385, + "id": 9308, "properties": { "east": "tall", "north": "low", @@ -137299,7 +129946,7 @@ } }, { - "id": 10386, + "id": 9309, "properties": { "east": "tall", "north": "low", @@ -137310,7 +129957,7 @@ } }, { - "id": 10387, + "id": 9310, "properties": { "east": "tall", "north": "low", @@ -137321,7 +129968,7 @@ } }, { - "id": 10388, + "id": 9311, "properties": { "east": "tall", "north": "low", @@ -137332,7 +129979,7 @@ } }, { - "id": 10389, + "id": 9312, "properties": { "east": "tall", "north": "low", @@ -137343,7 +129990,7 @@ } }, { - "id": 10390, + "id": 9313, "properties": { "east": "tall", "north": "low", @@ -137354,7 +130001,7 @@ } }, { - "id": 10391, + "id": 9314, "properties": { "east": "tall", "north": "low", @@ -137365,7 +130012,7 @@ } }, { - "id": 10392, + "id": 9315, "properties": { "east": "tall", "north": "tall", @@ -137376,7 +130023,7 @@ } }, { - "id": 10393, + "id": 9316, "properties": { "east": "tall", "north": "tall", @@ -137387,7 +130034,7 @@ } }, { - "id": 10394, + "id": 9317, "properties": { "east": "tall", "north": "tall", @@ -137398,7 +130045,7 @@ } }, { - "id": 10395, + "id": 9318, "properties": { "east": "tall", "north": "tall", @@ -137409,7 +130056,7 @@ } }, { - "id": 10396, + "id": 9319, "properties": { "east": "tall", "north": "tall", @@ -137420,7 +130067,7 @@ } }, { - "id": 10397, + "id": 9320, "properties": { "east": "tall", "north": "tall", @@ -137431,7 +130078,7 @@ } }, { - "id": 10398, + "id": 9321, "properties": { "east": "tall", "north": "tall", @@ -137442,7 +130089,7 @@ } }, { - "id": 10399, + "id": 9322, "properties": { "east": "tall", "north": "tall", @@ -137453,7 +130100,7 @@ } }, { - "id": 10400, + "id": 9323, "properties": { "east": "tall", "north": "tall", @@ -137464,7 +130111,7 @@ } }, { - "id": 10401, + "id": 9324, "properties": { "east": "tall", "north": "tall", @@ -137475,7 +130122,7 @@ } }, { - "id": 10402, + "id": 9325, "properties": { "east": "tall", "north": "tall", @@ -137486,7 +130133,7 @@ } }, { - "id": 10403, + "id": 9326, "properties": { "east": "tall", "north": "tall", @@ -137497,7 +130144,7 @@ } }, { - "id": 10404, + "id": 9327, "properties": { "east": "tall", "north": "tall", @@ -137508,7 +130155,7 @@ } }, { - "id": 10405, + "id": 9328, "properties": { "east": "tall", "north": "tall", @@ -137519,7 +130166,7 @@ } }, { - "id": 10406, + "id": 9329, "properties": { "east": "tall", "north": "tall", @@ -137530,7 +130177,7 @@ } }, { - "id": 10407, + "id": 9330, "properties": { "east": "tall", "north": "tall", @@ -137541,7 +130188,7 @@ } }, { - "id": 10408, + "id": 9331, "properties": { "east": "tall", "north": "tall", @@ -137552,7 +130199,7 @@ } }, { - "id": 10409, + "id": 9332, "properties": { "east": "tall", "north": "tall", @@ -137563,7 +130210,7 @@ } }, { - "id": 10410, + "id": 9333, "properties": { "east": "tall", "north": "tall", @@ -137574,7 +130221,7 @@ } }, { - "id": 10411, + "id": 9334, "properties": { "east": "tall", "north": "tall", @@ -137585,7 +130232,7 @@ } }, { - "id": 10412, + "id": 9335, "properties": { "east": "tall", "north": "tall", @@ -137596,7 +130243,7 @@ } }, { - "id": 10413, + "id": 9336, "properties": { "east": "tall", "north": "tall", @@ -137607,7 +130254,7 @@ } }, { - "id": 10414, + "id": 9337, "properties": { "east": "tall", "north": "tall", @@ -137618,7 +130265,7 @@ } }, { - "id": 10415, + "id": 9338, "properties": { "east": "tall", "north": "tall", @@ -137629,7 +130276,7 @@ } }, { - "id": 10416, + "id": 9339, "properties": { "east": "tall", "north": "tall", @@ -137640,7 +130287,7 @@ } }, { - "id": 10417, + "id": 9340, "properties": { "east": "tall", "north": "tall", @@ -137651,7 +130298,7 @@ } }, { - "id": 10418, + "id": 9341, "properties": { "east": "tall", "north": "tall", @@ -137662,7 +130309,7 @@ } }, { - "id": 10419, + "id": 9342, "properties": { "east": "tall", "north": "tall", @@ -137673,7 +130320,7 @@ } }, { - "id": 10420, + "id": 9343, "properties": { "east": "tall", "north": "tall", @@ -137684,7 +130331,7 @@ } }, { - "id": 10421, + "id": 9344, "properties": { "east": "tall", "north": "tall", @@ -137695,7 +130342,7 @@ } }, { - "id": 10422, + "id": 9345, "properties": { "east": "tall", "north": "tall", @@ -137706,7 +130353,7 @@ } }, { - "id": 10423, + "id": 9346, "properties": { "east": "tall", "north": "tall", @@ -137717,7 +130364,7 @@ } }, { - "id": 10424, + "id": 9347, "properties": { "east": "tall", "north": "tall", @@ -137728,7 +130375,7 @@ } }, { - "id": 10425, + "id": 9348, "properties": { "east": "tall", "north": "tall", @@ -137739,7 +130386,7 @@ } }, { - "id": 10426, + "id": 9349, "properties": { "east": "tall", "north": "tall", @@ -137750,7 +130397,7 @@ } }, { - "id": 10427, + "id": 9350, "properties": { "east": "tall", "north": "tall", @@ -137780,21 +130427,21 @@ }, "states": [ { - "id": 16226, + "id": 15117, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 16227, + "id": 15118, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 16228, + "id": 15119, "properties": { "type": "bottom", "waterlogged": "true" @@ -137802,21 +130449,21 @@ }, { "default": true, - "id": 16229, + "id": 15120, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 16230, + "id": 15121, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 16231, + "id": 15122, "properties": { "type": "double", "waterlogged": "false" @@ -137857,7 +130504,7 @@ }, "states": [ { - "id": 15254, + "id": 14145, "properties": { "facing": "north", "half": "top", @@ -137866,7 +130513,7 @@ } }, { - "id": 15255, + "id": 14146, "properties": { "facing": "north", "half": "top", @@ -137875,7 +130522,7 @@ } }, { - "id": 15256, + "id": 14147, "properties": { "facing": "north", "half": "top", @@ -137884,7 +130531,7 @@ } }, { - "id": 15257, + "id": 14148, "properties": { "facing": "north", "half": "top", @@ -137893,7 +130540,7 @@ } }, { - "id": 15258, + "id": 14149, "properties": { "facing": "north", "half": "top", @@ -137902,7 +130549,7 @@ } }, { - "id": 15259, + "id": 14150, "properties": { "facing": "north", "half": "top", @@ -137911,7 +130558,7 @@ } }, { - "id": 15260, + "id": 14151, "properties": { "facing": "north", "half": "top", @@ -137920,7 +130567,7 @@ } }, { - "id": 15261, + "id": 14152, "properties": { "facing": "north", "half": "top", @@ -137929,7 +130576,7 @@ } }, { - "id": 15262, + "id": 14153, "properties": { "facing": "north", "half": "top", @@ -137938,7 +130585,7 @@ } }, { - "id": 15263, + "id": 14154, "properties": { "facing": "north", "half": "top", @@ -137947,7 +130594,7 @@ } }, { - "id": 15264, + "id": 14155, "properties": { "facing": "north", "half": "bottom", @@ -137957,7 +130604,7 @@ }, { "default": true, - "id": 15265, + "id": 14156, "properties": { "facing": "north", "half": "bottom", @@ -137966,7 +130613,7 @@ } }, { - "id": 15266, + "id": 14157, "properties": { "facing": "north", "half": "bottom", @@ -137975,7 +130622,7 @@ } }, { - "id": 15267, + "id": 14158, "properties": { "facing": "north", "half": "bottom", @@ -137984,7 +130631,7 @@ } }, { - "id": 15268, + "id": 14159, "properties": { "facing": "north", "half": "bottom", @@ -137993,7 +130640,7 @@ } }, { - "id": 15269, + "id": 14160, "properties": { "facing": "north", "half": "bottom", @@ -138002,7 +130649,7 @@ } }, { - "id": 15270, + "id": 14161, "properties": { "facing": "north", "half": "bottom", @@ -138011,7 +130658,7 @@ } }, { - "id": 15271, + "id": 14162, "properties": { "facing": "north", "half": "bottom", @@ -138020,7 +130667,7 @@ } }, { - "id": 15272, + "id": 14163, "properties": { "facing": "north", "half": "bottom", @@ -138029,7 +130676,7 @@ } }, { - "id": 15273, + "id": 14164, "properties": { "facing": "north", "half": "bottom", @@ -138038,7 +130685,7 @@ } }, { - "id": 15274, + "id": 14165, "properties": { "facing": "south", "half": "top", @@ -138047,7 +130694,7 @@ } }, { - "id": 15275, + "id": 14166, "properties": { "facing": "south", "half": "top", @@ -138056,7 +130703,7 @@ } }, { - "id": 15276, + "id": 14167, "properties": { "facing": "south", "half": "top", @@ -138065,7 +130712,7 @@ } }, { - "id": 15277, + "id": 14168, "properties": { "facing": "south", "half": "top", @@ -138074,7 +130721,7 @@ } }, { - "id": 15278, + "id": 14169, "properties": { "facing": "south", "half": "top", @@ -138083,7 +130730,7 @@ } }, { - "id": 15279, + "id": 14170, "properties": { "facing": "south", "half": "top", @@ -138092,7 +130739,7 @@ } }, { - "id": 15280, + "id": 14171, "properties": { "facing": "south", "half": "top", @@ -138101,7 +130748,7 @@ } }, { - "id": 15281, + "id": 14172, "properties": { "facing": "south", "half": "top", @@ -138110,7 +130757,7 @@ } }, { - "id": 15282, + "id": 14173, "properties": { "facing": "south", "half": "top", @@ -138119,7 +130766,7 @@ } }, { - "id": 15283, + "id": 14174, "properties": { "facing": "south", "half": "top", @@ -138128,7 +130775,7 @@ } }, { - "id": 15284, + "id": 14175, "properties": { "facing": "south", "half": "bottom", @@ -138137,7 +130784,7 @@ } }, { - "id": 15285, + "id": 14176, "properties": { "facing": "south", "half": "bottom", @@ -138146,7 +130793,7 @@ } }, { - "id": 15286, + "id": 14177, "properties": { "facing": "south", "half": "bottom", @@ -138155,7 +130802,7 @@ } }, { - "id": 15287, + "id": 14178, "properties": { "facing": "south", "half": "bottom", @@ -138164,7 +130811,7 @@ } }, { - "id": 15288, + "id": 14179, "properties": { "facing": "south", "half": "bottom", @@ -138173,7 +130820,7 @@ } }, { - "id": 15289, + "id": 14180, "properties": { "facing": "south", "half": "bottom", @@ -138182,7 +130829,7 @@ } }, { - "id": 15290, + "id": 14181, "properties": { "facing": "south", "half": "bottom", @@ -138191,7 +130838,7 @@ } }, { - "id": 15291, + "id": 14182, "properties": { "facing": "south", "half": "bottom", @@ -138200,7 +130847,7 @@ } }, { - "id": 15292, + "id": 14183, "properties": { "facing": "south", "half": "bottom", @@ -138209,7 +130856,7 @@ } }, { - "id": 15293, + "id": 14184, "properties": { "facing": "south", "half": "bottom", @@ -138218,7 +130865,7 @@ } }, { - "id": 15294, + "id": 14185, "properties": { "facing": "west", "half": "top", @@ -138227,7 +130874,7 @@ } }, { - "id": 15295, + "id": 14186, "properties": { "facing": "west", "half": "top", @@ -138236,7 +130883,7 @@ } }, { - "id": 15296, + "id": 14187, "properties": { "facing": "west", "half": "top", @@ -138245,7 +130892,7 @@ } }, { - "id": 15297, + "id": 14188, "properties": { "facing": "west", "half": "top", @@ -138254,7 +130901,7 @@ } }, { - "id": 15298, + "id": 14189, "properties": { "facing": "west", "half": "top", @@ -138263,7 +130910,7 @@ } }, { - "id": 15299, + "id": 14190, "properties": { "facing": "west", "half": "top", @@ -138272,7 +130919,7 @@ } }, { - "id": 15300, + "id": 14191, "properties": { "facing": "west", "half": "top", @@ -138281,7 +130928,7 @@ } }, { - "id": 15301, + "id": 14192, "properties": { "facing": "west", "half": "top", @@ -138290,7 +130937,7 @@ } }, { - "id": 15302, + "id": 14193, "properties": { "facing": "west", "half": "top", @@ -138299,7 +130946,7 @@ } }, { - "id": 15303, + "id": 14194, "properties": { "facing": "west", "half": "top", @@ -138308,7 +130955,7 @@ } }, { - "id": 15304, + "id": 14195, "properties": { "facing": "west", "half": "bottom", @@ -138317,7 +130964,7 @@ } }, { - "id": 15305, + "id": 14196, "properties": { "facing": "west", "half": "bottom", @@ -138326,7 +130973,7 @@ } }, { - "id": 15306, + "id": 14197, "properties": { "facing": "west", "half": "bottom", @@ -138335,7 +130982,7 @@ } }, { - "id": 15307, + "id": 14198, "properties": { "facing": "west", "half": "bottom", @@ -138344,7 +130991,7 @@ } }, { - "id": 15308, + "id": 14199, "properties": { "facing": "west", "half": "bottom", @@ -138353,7 +131000,7 @@ } }, { - "id": 15309, + "id": 14200, "properties": { "facing": "west", "half": "bottom", @@ -138362,7 +131009,7 @@ } }, { - "id": 15310, + "id": 14201, "properties": { "facing": "west", "half": "bottom", @@ -138371,7 +131018,7 @@ } }, { - "id": 15311, + "id": 14202, "properties": { "facing": "west", "half": "bottom", @@ -138380,7 +131027,7 @@ } }, { - "id": 15312, + "id": 14203, "properties": { "facing": "west", "half": "bottom", @@ -138389,7 +131036,7 @@ } }, { - "id": 15313, + "id": 14204, "properties": { "facing": "west", "half": "bottom", @@ -138398,7 +131045,7 @@ } }, { - "id": 15314, + "id": 14205, "properties": { "facing": "east", "half": "top", @@ -138407,7 +131054,7 @@ } }, { - "id": 15315, + "id": 14206, "properties": { "facing": "east", "half": "top", @@ -138416,7 +131063,7 @@ } }, { - "id": 15316, + "id": 14207, "properties": { "facing": "east", "half": "top", @@ -138425,7 +131072,7 @@ } }, { - "id": 15317, + "id": 14208, "properties": { "facing": "east", "half": "top", @@ -138434,7 +131081,7 @@ } }, { - "id": 15318, + "id": 14209, "properties": { "facing": "east", "half": "top", @@ -138443,7 +131090,7 @@ } }, { - "id": 15319, + "id": 14210, "properties": { "facing": "east", "half": "top", @@ -138452,7 +131099,7 @@ } }, { - "id": 15320, + "id": 14211, "properties": { "facing": "east", "half": "top", @@ -138461,7 +131108,7 @@ } }, { - "id": 15321, + "id": 14212, "properties": { "facing": "east", "half": "top", @@ -138470,7 +131117,7 @@ } }, { - "id": 15322, + "id": 14213, "properties": { "facing": "east", "half": "top", @@ -138479,7 +131126,7 @@ } }, { - "id": 15323, + "id": 14214, "properties": { "facing": "east", "half": "top", @@ -138488,7 +131135,7 @@ } }, { - "id": 15324, + "id": 14215, "properties": { "facing": "east", "half": "bottom", @@ -138497,7 +131144,7 @@ } }, { - "id": 15325, + "id": 14216, "properties": { "facing": "east", "half": "bottom", @@ -138506,7 +131153,7 @@ } }, { - "id": 15326, + "id": 14217, "properties": { "facing": "east", "half": "bottom", @@ -138515,7 +131162,7 @@ } }, { - "id": 15327, + "id": 14218, "properties": { "facing": "east", "half": "bottom", @@ -138524,7 +131171,7 @@ } }, { - "id": 15328, + "id": 14219, "properties": { "facing": "east", "half": "bottom", @@ -138533,7 +131180,7 @@ } }, { - "id": 15329, + "id": 14220, "properties": { "facing": "east", "half": "bottom", @@ -138542,7 +131189,7 @@ } }, { - "id": 15330, + "id": 14221, "properties": { "facing": "east", "half": "bottom", @@ -138551,7 +131198,7 @@ } }, { - "id": 15331, + "id": 14222, "properties": { "facing": "east", "half": "bottom", @@ -138560,7 +131207,7 @@ } }, { - "id": 15332, + "id": 14223, "properties": { "facing": "east", "half": "bottom", @@ -138569,7 +131216,7 @@ } }, { - "id": 15333, + "id": 14224, "properties": { "facing": "east", "half": "bottom", @@ -138616,7 +131263,7 @@ }, "states": [ { - "id": 17264, + "id": 16155, "properties": { "east": "none", "north": "none", @@ -138627,7 +131274,7 @@ } }, { - "id": 17265, + "id": 16156, "properties": { "east": "none", "north": "none", @@ -138638,7 +131285,7 @@ } }, { - "id": 17266, + "id": 16157, "properties": { "east": "none", "north": "none", @@ -138650,7 +131297,7 @@ }, { "default": true, - "id": 17267, + "id": 16158, "properties": { "east": "none", "north": "none", @@ -138661,7 +131308,7 @@ } }, { - "id": 17268, + "id": 16159, "properties": { "east": "none", "north": "none", @@ -138672,7 +131319,7 @@ } }, { - "id": 17269, + "id": 16160, "properties": { "east": "none", "north": "none", @@ -138683,7 +131330,7 @@ } }, { - "id": 17270, + "id": 16161, "properties": { "east": "none", "north": "none", @@ -138694,7 +131341,7 @@ } }, { - "id": 17271, + "id": 16162, "properties": { "east": "none", "north": "none", @@ -138705,7 +131352,7 @@ } }, { - "id": 17272, + "id": 16163, "properties": { "east": "none", "north": "none", @@ -138716,7 +131363,7 @@ } }, { - "id": 17273, + "id": 16164, "properties": { "east": "none", "north": "none", @@ -138727,7 +131374,7 @@ } }, { - "id": 17274, + "id": 16165, "properties": { "east": "none", "north": "none", @@ -138738,7 +131385,7 @@ } }, { - "id": 17275, + "id": 16166, "properties": { "east": "none", "north": "none", @@ -138749,7 +131396,7 @@ } }, { - "id": 17276, + "id": 16167, "properties": { "east": "none", "north": "none", @@ -138760,7 +131407,7 @@ } }, { - "id": 17277, + "id": 16168, "properties": { "east": "none", "north": "none", @@ -138771,7 +131418,7 @@ } }, { - "id": 17278, + "id": 16169, "properties": { "east": "none", "north": "none", @@ -138782,7 +131429,7 @@ } }, { - "id": 17279, + "id": 16170, "properties": { "east": "none", "north": "none", @@ -138793,7 +131440,7 @@ } }, { - "id": 17280, + "id": 16171, "properties": { "east": "none", "north": "none", @@ -138804,7 +131451,7 @@ } }, { - "id": 17281, + "id": 16172, "properties": { "east": "none", "north": "none", @@ -138815,7 +131462,7 @@ } }, { - "id": 17282, + "id": 16173, "properties": { "east": "none", "north": "none", @@ -138826,7 +131473,7 @@ } }, { - "id": 17283, + "id": 16174, "properties": { "east": "none", "north": "none", @@ -138837,7 +131484,7 @@ } }, { - "id": 17284, + "id": 16175, "properties": { "east": "none", "north": "none", @@ -138848,7 +131495,7 @@ } }, { - "id": 17285, + "id": 16176, "properties": { "east": "none", "north": "none", @@ -138859,7 +131506,7 @@ } }, { - "id": 17286, + "id": 16177, "properties": { "east": "none", "north": "none", @@ -138870,7 +131517,7 @@ } }, { - "id": 17287, + "id": 16178, "properties": { "east": "none", "north": "none", @@ -138881,7 +131528,7 @@ } }, { - "id": 17288, + "id": 16179, "properties": { "east": "none", "north": "none", @@ -138892,7 +131539,7 @@ } }, { - "id": 17289, + "id": 16180, "properties": { "east": "none", "north": "none", @@ -138903,7 +131550,7 @@ } }, { - "id": 17290, + "id": 16181, "properties": { "east": "none", "north": "none", @@ -138914,7 +131561,7 @@ } }, { - "id": 17291, + "id": 16182, "properties": { "east": "none", "north": "none", @@ -138925,7 +131572,7 @@ } }, { - "id": 17292, + "id": 16183, "properties": { "east": "none", "north": "none", @@ -138936,7 +131583,7 @@ } }, { - "id": 17293, + "id": 16184, "properties": { "east": "none", "north": "none", @@ -138947,7 +131594,7 @@ } }, { - "id": 17294, + "id": 16185, "properties": { "east": "none", "north": "none", @@ -138958,7 +131605,7 @@ } }, { - "id": 17295, + "id": 16186, "properties": { "east": "none", "north": "none", @@ -138969,7 +131616,7 @@ } }, { - "id": 17296, + "id": 16187, "properties": { "east": "none", "north": "none", @@ -138980,7 +131627,7 @@ } }, { - "id": 17297, + "id": 16188, "properties": { "east": "none", "north": "none", @@ -138991,7 +131638,7 @@ } }, { - "id": 17298, + "id": 16189, "properties": { "east": "none", "north": "none", @@ -139002,7 +131649,7 @@ } }, { - "id": 17299, + "id": 16190, "properties": { "east": "none", "north": "none", @@ -139013,7 +131660,7 @@ } }, { - "id": 17300, + "id": 16191, "properties": { "east": "none", "north": "low", @@ -139024,7 +131671,7 @@ } }, { - "id": 17301, + "id": 16192, "properties": { "east": "none", "north": "low", @@ -139035,7 +131682,7 @@ } }, { - "id": 17302, + "id": 16193, "properties": { "east": "none", "north": "low", @@ -139046,7 +131693,7 @@ } }, { - "id": 17303, + "id": 16194, "properties": { "east": "none", "north": "low", @@ -139057,7 +131704,7 @@ } }, { - "id": 17304, + "id": 16195, "properties": { "east": "none", "north": "low", @@ -139068,7 +131715,7 @@ } }, { - "id": 17305, + "id": 16196, "properties": { "east": "none", "north": "low", @@ -139079,7 +131726,7 @@ } }, { - "id": 17306, + "id": 16197, "properties": { "east": "none", "north": "low", @@ -139090,7 +131737,7 @@ } }, { - "id": 17307, + "id": 16198, "properties": { "east": "none", "north": "low", @@ -139101,7 +131748,7 @@ } }, { - "id": 17308, + "id": 16199, "properties": { "east": "none", "north": "low", @@ -139112,7 +131759,7 @@ } }, { - "id": 17309, + "id": 16200, "properties": { "east": "none", "north": "low", @@ -139123,7 +131770,7 @@ } }, { - "id": 17310, + "id": 16201, "properties": { "east": "none", "north": "low", @@ -139134,7 +131781,7 @@ } }, { - "id": 17311, + "id": 16202, "properties": { "east": "none", "north": "low", @@ -139145,7 +131792,7 @@ } }, { - "id": 17312, + "id": 16203, "properties": { "east": "none", "north": "low", @@ -139156,7 +131803,7 @@ } }, { - "id": 17313, + "id": 16204, "properties": { "east": "none", "north": "low", @@ -139167,7 +131814,7 @@ } }, { - "id": 17314, + "id": 16205, "properties": { "east": "none", "north": "low", @@ -139178,7 +131825,7 @@ } }, { - "id": 17315, + "id": 16206, "properties": { "east": "none", "north": "low", @@ -139189,7 +131836,7 @@ } }, { - "id": 17316, + "id": 16207, "properties": { "east": "none", "north": "low", @@ -139200,7 +131847,7 @@ } }, { - "id": 17317, + "id": 16208, "properties": { "east": "none", "north": "low", @@ -139211,7 +131858,7 @@ } }, { - "id": 17318, + "id": 16209, "properties": { "east": "none", "north": "low", @@ -139222,7 +131869,7 @@ } }, { - "id": 17319, + "id": 16210, "properties": { "east": "none", "north": "low", @@ -139233,7 +131880,7 @@ } }, { - "id": 17320, + "id": 16211, "properties": { "east": "none", "north": "low", @@ -139244,7 +131891,7 @@ } }, { - "id": 17321, + "id": 16212, "properties": { "east": "none", "north": "low", @@ -139255,7 +131902,7 @@ } }, { - "id": 17322, + "id": 16213, "properties": { "east": "none", "north": "low", @@ -139266,7 +131913,7 @@ } }, { - "id": 17323, + "id": 16214, "properties": { "east": "none", "north": "low", @@ -139277,7 +131924,7 @@ } }, { - "id": 17324, + "id": 16215, "properties": { "east": "none", "north": "low", @@ -139288,7 +131935,7 @@ } }, { - "id": 17325, + "id": 16216, "properties": { "east": "none", "north": "low", @@ -139299,7 +131946,7 @@ } }, { - "id": 17326, + "id": 16217, "properties": { "east": "none", "north": "low", @@ -139310,7 +131957,7 @@ } }, { - "id": 17327, + "id": 16218, "properties": { "east": "none", "north": "low", @@ -139321,7 +131968,7 @@ } }, { - "id": 17328, + "id": 16219, "properties": { "east": "none", "north": "low", @@ -139332,7 +131979,7 @@ } }, { - "id": 17329, + "id": 16220, "properties": { "east": "none", "north": "low", @@ -139343,7 +131990,7 @@ } }, { - "id": 17330, + "id": 16221, "properties": { "east": "none", "north": "low", @@ -139354,7 +132001,7 @@ } }, { - "id": 17331, + "id": 16222, "properties": { "east": "none", "north": "low", @@ -139365,7 +132012,7 @@ } }, { - "id": 17332, + "id": 16223, "properties": { "east": "none", "north": "low", @@ -139376,7 +132023,7 @@ } }, { - "id": 17333, + "id": 16224, "properties": { "east": "none", "north": "low", @@ -139387,7 +132034,7 @@ } }, { - "id": 17334, + "id": 16225, "properties": { "east": "none", "north": "low", @@ -139398,7 +132045,7 @@ } }, { - "id": 17335, + "id": 16226, "properties": { "east": "none", "north": "low", @@ -139409,7 +132056,7 @@ } }, { - "id": 17336, + "id": 16227, "properties": { "east": "none", "north": "tall", @@ -139420,7 +132067,7 @@ } }, { - "id": 17337, + "id": 16228, "properties": { "east": "none", "north": "tall", @@ -139431,7 +132078,7 @@ } }, { - "id": 17338, + "id": 16229, "properties": { "east": "none", "north": "tall", @@ -139442,7 +132089,7 @@ } }, { - "id": 17339, + "id": 16230, "properties": { "east": "none", "north": "tall", @@ -139453,7 +132100,7 @@ } }, { - "id": 17340, + "id": 16231, "properties": { "east": "none", "north": "tall", @@ -139464,7 +132111,7 @@ } }, { - "id": 17341, + "id": 16232, "properties": { "east": "none", "north": "tall", @@ -139475,7 +132122,7 @@ } }, { - "id": 17342, + "id": 16233, "properties": { "east": "none", "north": "tall", @@ -139486,7 +132133,7 @@ } }, { - "id": 17343, + "id": 16234, "properties": { "east": "none", "north": "tall", @@ -139497,7 +132144,7 @@ } }, { - "id": 17344, + "id": 16235, "properties": { "east": "none", "north": "tall", @@ -139508,7 +132155,7 @@ } }, { - "id": 17345, + "id": 16236, "properties": { "east": "none", "north": "tall", @@ -139519,7 +132166,7 @@ } }, { - "id": 17346, + "id": 16237, "properties": { "east": "none", "north": "tall", @@ -139530,7 +132177,7 @@ } }, { - "id": 17347, + "id": 16238, "properties": { "east": "none", "north": "tall", @@ -139541,7 +132188,7 @@ } }, { - "id": 17348, + "id": 16239, "properties": { "east": "none", "north": "tall", @@ -139552,7 +132199,7 @@ } }, { - "id": 17349, + "id": 16240, "properties": { "east": "none", "north": "tall", @@ -139563,7 +132210,7 @@ } }, { - "id": 17350, + "id": 16241, "properties": { "east": "none", "north": "tall", @@ -139574,7 +132221,7 @@ } }, { - "id": 17351, + "id": 16242, "properties": { "east": "none", "north": "tall", @@ -139585,7 +132232,7 @@ } }, { - "id": 17352, + "id": 16243, "properties": { "east": "none", "north": "tall", @@ -139596,7 +132243,7 @@ } }, { - "id": 17353, + "id": 16244, "properties": { "east": "none", "north": "tall", @@ -139607,7 +132254,7 @@ } }, { - "id": 17354, + "id": 16245, "properties": { "east": "none", "north": "tall", @@ -139618,7 +132265,7 @@ } }, { - "id": 17355, + "id": 16246, "properties": { "east": "none", "north": "tall", @@ -139629,7 +132276,7 @@ } }, { - "id": 17356, + "id": 16247, "properties": { "east": "none", "north": "tall", @@ -139640,7 +132287,7 @@ } }, { - "id": 17357, + "id": 16248, "properties": { "east": "none", "north": "tall", @@ -139651,7 +132298,7 @@ } }, { - "id": 17358, + "id": 16249, "properties": { "east": "none", "north": "tall", @@ -139662,7 +132309,7 @@ } }, { - "id": 17359, + "id": 16250, "properties": { "east": "none", "north": "tall", @@ -139673,7 +132320,7 @@ } }, { - "id": 17360, + "id": 16251, "properties": { "east": "none", "north": "tall", @@ -139684,7 +132331,7 @@ } }, { - "id": 17361, + "id": 16252, "properties": { "east": "none", "north": "tall", @@ -139695,7 +132342,7 @@ } }, { - "id": 17362, + "id": 16253, "properties": { "east": "none", "north": "tall", @@ -139706,7 +132353,7 @@ } }, { - "id": 17363, + "id": 16254, "properties": { "east": "none", "north": "tall", @@ -139717,7 +132364,7 @@ } }, { - "id": 17364, + "id": 16255, "properties": { "east": "none", "north": "tall", @@ -139728,7 +132375,7 @@ } }, { - "id": 17365, + "id": 16256, "properties": { "east": "none", "north": "tall", @@ -139739,7 +132386,7 @@ } }, { - "id": 17366, + "id": 16257, "properties": { "east": "none", "north": "tall", @@ -139750,7 +132397,7 @@ } }, { - "id": 17367, + "id": 16258, "properties": { "east": "none", "north": "tall", @@ -139761,7 +132408,7 @@ } }, { - "id": 17368, + "id": 16259, "properties": { "east": "none", "north": "tall", @@ -139772,7 +132419,7 @@ } }, { - "id": 17369, + "id": 16260, "properties": { "east": "none", "north": "tall", @@ -139783,7 +132430,7 @@ } }, { - "id": 17370, + "id": 16261, "properties": { "east": "none", "north": "tall", @@ -139794,7 +132441,7 @@ } }, { - "id": 17371, + "id": 16262, "properties": { "east": "none", "north": "tall", @@ -139805,7 +132452,7 @@ } }, { - "id": 17372, + "id": 16263, "properties": { "east": "low", "north": "none", @@ -139816,7 +132463,7 @@ } }, { - "id": 17373, + "id": 16264, "properties": { "east": "low", "north": "none", @@ -139827,7 +132474,7 @@ } }, { - "id": 17374, + "id": 16265, "properties": { "east": "low", "north": "none", @@ -139838,7 +132485,7 @@ } }, { - "id": 17375, + "id": 16266, "properties": { "east": "low", "north": "none", @@ -139849,7 +132496,7 @@ } }, { - "id": 17376, + "id": 16267, "properties": { "east": "low", "north": "none", @@ -139860,7 +132507,7 @@ } }, { - "id": 17377, + "id": 16268, "properties": { "east": "low", "north": "none", @@ -139871,7 +132518,7 @@ } }, { - "id": 17378, + "id": 16269, "properties": { "east": "low", "north": "none", @@ -139882,7 +132529,7 @@ } }, { - "id": 17379, + "id": 16270, "properties": { "east": "low", "north": "none", @@ -139893,7 +132540,7 @@ } }, { - "id": 17380, + "id": 16271, "properties": { "east": "low", "north": "none", @@ -139904,7 +132551,7 @@ } }, { - "id": 17381, + "id": 16272, "properties": { "east": "low", "north": "none", @@ -139915,7 +132562,7 @@ } }, { - "id": 17382, + "id": 16273, "properties": { "east": "low", "north": "none", @@ -139926,7 +132573,7 @@ } }, { - "id": 17383, + "id": 16274, "properties": { "east": "low", "north": "none", @@ -139937,7 +132584,7 @@ } }, { - "id": 17384, + "id": 16275, "properties": { "east": "low", "north": "none", @@ -139948,7 +132595,7 @@ } }, { - "id": 17385, + "id": 16276, "properties": { "east": "low", "north": "none", @@ -139959,7 +132606,7 @@ } }, { - "id": 17386, + "id": 16277, "properties": { "east": "low", "north": "none", @@ -139970,7 +132617,7 @@ } }, { - "id": 17387, + "id": 16278, "properties": { "east": "low", "north": "none", @@ -139981,7 +132628,7 @@ } }, { - "id": 17388, + "id": 16279, "properties": { "east": "low", "north": "none", @@ -139992,7 +132639,7 @@ } }, { - "id": 17389, + "id": 16280, "properties": { "east": "low", "north": "none", @@ -140003,7 +132650,7 @@ } }, { - "id": 17390, + "id": 16281, "properties": { "east": "low", "north": "none", @@ -140014,7 +132661,7 @@ } }, { - "id": 17391, + "id": 16282, "properties": { "east": "low", "north": "none", @@ -140025,7 +132672,7 @@ } }, { - "id": 17392, + "id": 16283, "properties": { "east": "low", "north": "none", @@ -140036,7 +132683,7 @@ } }, { - "id": 17393, + "id": 16284, "properties": { "east": "low", "north": "none", @@ -140047,7 +132694,7 @@ } }, { - "id": 17394, + "id": 16285, "properties": { "east": "low", "north": "none", @@ -140058,7 +132705,7 @@ } }, { - "id": 17395, + "id": 16286, "properties": { "east": "low", "north": "none", @@ -140069,7 +132716,7 @@ } }, { - "id": 17396, + "id": 16287, "properties": { "east": "low", "north": "none", @@ -140080,7 +132727,7 @@ } }, { - "id": 17397, + "id": 16288, "properties": { "east": "low", "north": "none", @@ -140091,7 +132738,7 @@ } }, { - "id": 17398, + "id": 16289, "properties": { "east": "low", "north": "none", @@ -140102,7 +132749,7 @@ } }, { - "id": 17399, + "id": 16290, "properties": { "east": "low", "north": "none", @@ -140113,7 +132760,7 @@ } }, { - "id": 17400, + "id": 16291, "properties": { "east": "low", "north": "none", @@ -140124,7 +132771,7 @@ } }, { - "id": 17401, + "id": 16292, "properties": { "east": "low", "north": "none", @@ -140135,7 +132782,7 @@ } }, { - "id": 17402, + "id": 16293, "properties": { "east": "low", "north": "none", @@ -140146,7 +132793,7 @@ } }, { - "id": 17403, + "id": 16294, "properties": { "east": "low", "north": "none", @@ -140157,7 +132804,7 @@ } }, { - "id": 17404, + "id": 16295, "properties": { "east": "low", "north": "none", @@ -140168,7 +132815,7 @@ } }, { - "id": 17405, + "id": 16296, "properties": { "east": "low", "north": "none", @@ -140179,7 +132826,7 @@ } }, { - "id": 17406, + "id": 16297, "properties": { "east": "low", "north": "none", @@ -140190,7 +132837,7 @@ } }, { - "id": 17407, + "id": 16298, "properties": { "east": "low", "north": "none", @@ -140201,7 +132848,7 @@ } }, { - "id": 17408, + "id": 16299, "properties": { "east": "low", "north": "low", @@ -140212,7 +132859,7 @@ } }, { - "id": 17409, + "id": 16300, "properties": { "east": "low", "north": "low", @@ -140223,7 +132870,7 @@ } }, { - "id": 17410, + "id": 16301, "properties": { "east": "low", "north": "low", @@ -140234,7 +132881,7 @@ } }, { - "id": 17411, + "id": 16302, "properties": { "east": "low", "north": "low", @@ -140245,7 +132892,7 @@ } }, { - "id": 17412, + "id": 16303, "properties": { "east": "low", "north": "low", @@ -140256,7 +132903,7 @@ } }, { - "id": 17413, + "id": 16304, "properties": { "east": "low", "north": "low", @@ -140267,7 +132914,7 @@ } }, { - "id": 17414, + "id": 16305, "properties": { "east": "low", "north": "low", @@ -140278,7 +132925,7 @@ } }, { - "id": 17415, + "id": 16306, "properties": { "east": "low", "north": "low", @@ -140289,7 +132936,7 @@ } }, { - "id": 17416, + "id": 16307, "properties": { "east": "low", "north": "low", @@ -140300,7 +132947,7 @@ } }, { - "id": 17417, + "id": 16308, "properties": { "east": "low", "north": "low", @@ -140311,7 +132958,7 @@ } }, { - "id": 17418, + "id": 16309, "properties": { "east": "low", "north": "low", @@ -140322,7 +132969,7 @@ } }, { - "id": 17419, + "id": 16310, "properties": { "east": "low", "north": "low", @@ -140333,7 +132980,7 @@ } }, { - "id": 17420, + "id": 16311, "properties": { "east": "low", "north": "low", @@ -140344,7 +132991,7 @@ } }, { - "id": 17421, + "id": 16312, "properties": { "east": "low", "north": "low", @@ -140355,7 +133002,7 @@ } }, { - "id": 17422, + "id": 16313, "properties": { "east": "low", "north": "low", @@ -140366,7 +133013,7 @@ } }, { - "id": 17423, + "id": 16314, "properties": { "east": "low", "north": "low", @@ -140377,7 +133024,7 @@ } }, { - "id": 17424, + "id": 16315, "properties": { "east": "low", "north": "low", @@ -140388,7 +133035,7 @@ } }, { - "id": 17425, + "id": 16316, "properties": { "east": "low", "north": "low", @@ -140399,7 +133046,7 @@ } }, { - "id": 17426, + "id": 16317, "properties": { "east": "low", "north": "low", @@ -140410,7 +133057,7 @@ } }, { - "id": 17427, + "id": 16318, "properties": { "east": "low", "north": "low", @@ -140421,7 +133068,7 @@ } }, { - "id": 17428, + "id": 16319, "properties": { "east": "low", "north": "low", @@ -140432,7 +133079,7 @@ } }, { - "id": 17429, + "id": 16320, "properties": { "east": "low", "north": "low", @@ -140443,7 +133090,7 @@ } }, { - "id": 17430, + "id": 16321, "properties": { "east": "low", "north": "low", @@ -140454,7 +133101,7 @@ } }, { - "id": 17431, + "id": 16322, "properties": { "east": "low", "north": "low", @@ -140465,7 +133112,7 @@ } }, { - "id": 17432, + "id": 16323, "properties": { "east": "low", "north": "low", @@ -140476,7 +133123,7 @@ } }, { - "id": 17433, + "id": 16324, "properties": { "east": "low", "north": "low", @@ -140487,7 +133134,7 @@ } }, { - "id": 17434, + "id": 16325, "properties": { "east": "low", "north": "low", @@ -140498,7 +133145,7 @@ } }, { - "id": 17435, + "id": 16326, "properties": { "east": "low", "north": "low", @@ -140509,7 +133156,7 @@ } }, { - "id": 17436, + "id": 16327, "properties": { "east": "low", "north": "low", @@ -140520,7 +133167,7 @@ } }, { - "id": 17437, + "id": 16328, "properties": { "east": "low", "north": "low", @@ -140531,7 +133178,7 @@ } }, { - "id": 17438, + "id": 16329, "properties": { "east": "low", "north": "low", @@ -140542,7 +133189,7 @@ } }, { - "id": 17439, + "id": 16330, "properties": { "east": "low", "north": "low", @@ -140553,7 +133200,7 @@ } }, { - "id": 17440, + "id": 16331, "properties": { "east": "low", "north": "low", @@ -140564,7 +133211,7 @@ } }, { - "id": 17441, + "id": 16332, "properties": { "east": "low", "north": "low", @@ -140575,7 +133222,7 @@ } }, { - "id": 17442, + "id": 16333, "properties": { "east": "low", "north": "low", @@ -140586,7 +133233,7 @@ } }, { - "id": 17443, + "id": 16334, "properties": { "east": "low", "north": "low", @@ -140597,7 +133244,7 @@ } }, { - "id": 17444, + "id": 16335, "properties": { "east": "low", "north": "tall", @@ -140608,7 +133255,7 @@ } }, { - "id": 17445, + "id": 16336, "properties": { "east": "low", "north": "tall", @@ -140619,7 +133266,7 @@ } }, { - "id": 17446, + "id": 16337, "properties": { "east": "low", "north": "tall", @@ -140630,7 +133277,7 @@ } }, { - "id": 17447, + "id": 16338, "properties": { "east": "low", "north": "tall", @@ -140641,7 +133288,7 @@ } }, { - "id": 17448, + "id": 16339, "properties": { "east": "low", "north": "tall", @@ -140652,7 +133299,7 @@ } }, { - "id": 17449, + "id": 16340, "properties": { "east": "low", "north": "tall", @@ -140663,7 +133310,7 @@ } }, { - "id": 17450, + "id": 16341, "properties": { "east": "low", "north": "tall", @@ -140674,7 +133321,7 @@ } }, { - "id": 17451, + "id": 16342, "properties": { "east": "low", "north": "tall", @@ -140685,7 +133332,7 @@ } }, { - "id": 17452, + "id": 16343, "properties": { "east": "low", "north": "tall", @@ -140696,7 +133343,7 @@ } }, { - "id": 17453, + "id": 16344, "properties": { "east": "low", "north": "tall", @@ -140707,7 +133354,7 @@ } }, { - "id": 17454, + "id": 16345, "properties": { "east": "low", "north": "tall", @@ -140718,7 +133365,7 @@ } }, { - "id": 17455, + "id": 16346, "properties": { "east": "low", "north": "tall", @@ -140729,7 +133376,7 @@ } }, { - "id": 17456, + "id": 16347, "properties": { "east": "low", "north": "tall", @@ -140740,7 +133387,7 @@ } }, { - "id": 17457, + "id": 16348, "properties": { "east": "low", "north": "tall", @@ -140751,7 +133398,7 @@ } }, { - "id": 17458, + "id": 16349, "properties": { "east": "low", "north": "tall", @@ -140762,7 +133409,7 @@ } }, { - "id": 17459, + "id": 16350, "properties": { "east": "low", "north": "tall", @@ -140773,7 +133420,7 @@ } }, { - "id": 17460, + "id": 16351, "properties": { "east": "low", "north": "tall", @@ -140784,7 +133431,7 @@ } }, { - "id": 17461, + "id": 16352, "properties": { "east": "low", "north": "tall", @@ -140795,7 +133442,7 @@ } }, { - "id": 17462, + "id": 16353, "properties": { "east": "low", "north": "tall", @@ -140806,7 +133453,7 @@ } }, { - "id": 17463, + "id": 16354, "properties": { "east": "low", "north": "tall", @@ -140817,7 +133464,7 @@ } }, { - "id": 17464, + "id": 16355, "properties": { "east": "low", "north": "tall", @@ -140828,7 +133475,7 @@ } }, { - "id": 17465, + "id": 16356, "properties": { "east": "low", "north": "tall", @@ -140839,7 +133486,7 @@ } }, { - "id": 17466, + "id": 16357, "properties": { "east": "low", "north": "tall", @@ -140850,7 +133497,7 @@ } }, { - "id": 17467, + "id": 16358, "properties": { "east": "low", "north": "tall", @@ -140861,7 +133508,7 @@ } }, { - "id": 17468, + "id": 16359, "properties": { "east": "low", "north": "tall", @@ -140872,7 +133519,7 @@ } }, { - "id": 17469, + "id": 16360, "properties": { "east": "low", "north": "tall", @@ -140883,7 +133530,7 @@ } }, { - "id": 17470, + "id": 16361, "properties": { "east": "low", "north": "tall", @@ -140894,7 +133541,7 @@ } }, { - "id": 17471, + "id": 16362, "properties": { "east": "low", "north": "tall", @@ -140905,7 +133552,7 @@ } }, { - "id": 17472, + "id": 16363, "properties": { "east": "low", "north": "tall", @@ -140916,7 +133563,7 @@ } }, { - "id": 17473, + "id": 16364, "properties": { "east": "low", "north": "tall", @@ -140927,7 +133574,7 @@ } }, { - "id": 17474, + "id": 16365, "properties": { "east": "low", "north": "tall", @@ -140938,7 +133585,7 @@ } }, { - "id": 17475, + "id": 16366, "properties": { "east": "low", "north": "tall", @@ -140949,7 +133596,7 @@ } }, { - "id": 17476, + "id": 16367, "properties": { "east": "low", "north": "tall", @@ -140960,7 +133607,7 @@ } }, { - "id": 17477, + "id": 16368, "properties": { "east": "low", "north": "tall", @@ -140971,7 +133618,7 @@ } }, { - "id": 17478, + "id": 16369, "properties": { "east": "low", "north": "tall", @@ -140982,7 +133629,7 @@ } }, { - "id": 17479, + "id": 16370, "properties": { "east": "low", "north": "tall", @@ -140993,7 +133640,7 @@ } }, { - "id": 17480, + "id": 16371, "properties": { "east": "tall", "north": "none", @@ -141004,7 +133651,7 @@ } }, { - "id": 17481, + "id": 16372, "properties": { "east": "tall", "north": "none", @@ -141015,7 +133662,7 @@ } }, { - "id": 17482, + "id": 16373, "properties": { "east": "tall", "north": "none", @@ -141026,7 +133673,7 @@ } }, { - "id": 17483, + "id": 16374, "properties": { "east": "tall", "north": "none", @@ -141037,7 +133684,7 @@ } }, { - "id": 17484, + "id": 16375, "properties": { "east": "tall", "north": "none", @@ -141048,7 +133695,7 @@ } }, { - "id": 17485, + "id": 16376, "properties": { "east": "tall", "north": "none", @@ -141059,7 +133706,7 @@ } }, { - "id": 17486, + "id": 16377, "properties": { "east": "tall", "north": "none", @@ -141070,7 +133717,7 @@ } }, { - "id": 17487, + "id": 16378, "properties": { "east": "tall", "north": "none", @@ -141081,7 +133728,7 @@ } }, { - "id": 17488, + "id": 16379, "properties": { "east": "tall", "north": "none", @@ -141092,7 +133739,7 @@ } }, { - "id": 17489, + "id": 16380, "properties": { "east": "tall", "north": "none", @@ -141103,7 +133750,7 @@ } }, { - "id": 17490, + "id": 16381, "properties": { "east": "tall", "north": "none", @@ -141114,7 +133761,7 @@ } }, { - "id": 17491, + "id": 16382, "properties": { "east": "tall", "north": "none", @@ -141125,7 +133772,7 @@ } }, { - "id": 17492, + "id": 16383, "properties": { "east": "tall", "north": "none", @@ -141136,7 +133783,7 @@ } }, { - "id": 17493, + "id": 16384, "properties": { "east": "tall", "north": "none", @@ -141147,7 +133794,7 @@ } }, { - "id": 17494, + "id": 16385, "properties": { "east": "tall", "north": "none", @@ -141158,7 +133805,7 @@ } }, { - "id": 17495, + "id": 16386, "properties": { "east": "tall", "north": "none", @@ -141169,7 +133816,7 @@ } }, { - "id": 17496, + "id": 16387, "properties": { "east": "tall", "north": "none", @@ -141180,7 +133827,7 @@ } }, { - "id": 17497, + "id": 16388, "properties": { "east": "tall", "north": "none", @@ -141191,7 +133838,7 @@ } }, { - "id": 17498, + "id": 16389, "properties": { "east": "tall", "north": "none", @@ -141202,7 +133849,7 @@ } }, { - "id": 17499, + "id": 16390, "properties": { "east": "tall", "north": "none", @@ -141213,7 +133860,7 @@ } }, { - "id": 17500, + "id": 16391, "properties": { "east": "tall", "north": "none", @@ -141224,7 +133871,7 @@ } }, { - "id": 17501, + "id": 16392, "properties": { "east": "tall", "north": "none", @@ -141235,7 +133882,7 @@ } }, { - "id": 17502, + "id": 16393, "properties": { "east": "tall", "north": "none", @@ -141246,7 +133893,7 @@ } }, { - "id": 17503, + "id": 16394, "properties": { "east": "tall", "north": "none", @@ -141257,7 +133904,7 @@ } }, { - "id": 17504, + "id": 16395, "properties": { "east": "tall", "north": "none", @@ -141268,7 +133915,7 @@ } }, { - "id": 17505, + "id": 16396, "properties": { "east": "tall", "north": "none", @@ -141279,7 +133926,7 @@ } }, { - "id": 17506, + "id": 16397, "properties": { "east": "tall", "north": "none", @@ -141290,7 +133937,7 @@ } }, { - "id": 17507, + "id": 16398, "properties": { "east": "tall", "north": "none", @@ -141301,7 +133948,7 @@ } }, { - "id": 17508, + "id": 16399, "properties": { "east": "tall", "north": "none", @@ -141312,7 +133959,7 @@ } }, { - "id": 17509, + "id": 16400, "properties": { "east": "tall", "north": "none", @@ -141323,7 +133970,7 @@ } }, { - "id": 17510, + "id": 16401, "properties": { "east": "tall", "north": "none", @@ -141334,7 +133981,7 @@ } }, { - "id": 17511, + "id": 16402, "properties": { "east": "tall", "north": "none", @@ -141345,7 +133992,7 @@ } }, { - "id": 17512, + "id": 16403, "properties": { "east": "tall", "north": "none", @@ -141356,7 +134003,7 @@ } }, { - "id": 17513, + "id": 16404, "properties": { "east": "tall", "north": "none", @@ -141367,7 +134014,7 @@ } }, { - "id": 17514, + "id": 16405, "properties": { "east": "tall", "north": "none", @@ -141378,7 +134025,7 @@ } }, { - "id": 17515, + "id": 16406, "properties": { "east": "tall", "north": "none", @@ -141389,7 +134036,7 @@ } }, { - "id": 17516, + "id": 16407, "properties": { "east": "tall", "north": "low", @@ -141400,7 +134047,7 @@ } }, { - "id": 17517, + "id": 16408, "properties": { "east": "tall", "north": "low", @@ -141411,7 +134058,7 @@ } }, { - "id": 17518, + "id": 16409, "properties": { "east": "tall", "north": "low", @@ -141422,7 +134069,7 @@ } }, { - "id": 17519, + "id": 16410, "properties": { "east": "tall", "north": "low", @@ -141433,7 +134080,7 @@ } }, { - "id": 17520, + "id": 16411, "properties": { "east": "tall", "north": "low", @@ -141444,7 +134091,7 @@ } }, { - "id": 17521, + "id": 16412, "properties": { "east": "tall", "north": "low", @@ -141455,7 +134102,7 @@ } }, { - "id": 17522, + "id": 16413, "properties": { "east": "tall", "north": "low", @@ -141466,7 +134113,7 @@ } }, { - "id": 17523, + "id": 16414, "properties": { "east": "tall", "north": "low", @@ -141477,7 +134124,7 @@ } }, { - "id": 17524, + "id": 16415, "properties": { "east": "tall", "north": "low", @@ -141488,7 +134135,7 @@ } }, { - "id": 17525, + "id": 16416, "properties": { "east": "tall", "north": "low", @@ -141499,7 +134146,7 @@ } }, { - "id": 17526, + "id": 16417, "properties": { "east": "tall", "north": "low", @@ -141510,7 +134157,7 @@ } }, { - "id": 17527, + "id": 16418, "properties": { "east": "tall", "north": "low", @@ -141521,7 +134168,7 @@ } }, { - "id": 17528, + "id": 16419, "properties": { "east": "tall", "north": "low", @@ -141532,7 +134179,7 @@ } }, { - "id": 17529, + "id": 16420, "properties": { "east": "tall", "north": "low", @@ -141543,7 +134190,7 @@ } }, { - "id": 17530, + "id": 16421, "properties": { "east": "tall", "north": "low", @@ -141554,7 +134201,7 @@ } }, { - "id": 17531, + "id": 16422, "properties": { "east": "tall", "north": "low", @@ -141565,7 +134212,7 @@ } }, { - "id": 17532, + "id": 16423, "properties": { "east": "tall", "north": "low", @@ -141576,7 +134223,7 @@ } }, { - "id": 17533, + "id": 16424, "properties": { "east": "tall", "north": "low", @@ -141587,7 +134234,7 @@ } }, { - "id": 17534, + "id": 16425, "properties": { "east": "tall", "north": "low", @@ -141598,7 +134245,7 @@ } }, { - "id": 17535, + "id": 16426, "properties": { "east": "tall", "north": "low", @@ -141609,7 +134256,7 @@ } }, { - "id": 17536, + "id": 16427, "properties": { "east": "tall", "north": "low", @@ -141620,7 +134267,7 @@ } }, { - "id": 17537, + "id": 16428, "properties": { "east": "tall", "north": "low", @@ -141631,7 +134278,7 @@ } }, { - "id": 17538, + "id": 16429, "properties": { "east": "tall", "north": "low", @@ -141642,7 +134289,7 @@ } }, { - "id": 17539, + "id": 16430, "properties": { "east": "tall", "north": "low", @@ -141653,7 +134300,7 @@ } }, { - "id": 17540, + "id": 16431, "properties": { "east": "tall", "north": "low", @@ -141664,7 +134311,7 @@ } }, { - "id": 17541, + "id": 16432, "properties": { "east": "tall", "north": "low", @@ -141675,7 +134322,7 @@ } }, { - "id": 17542, + "id": 16433, "properties": { "east": "tall", "north": "low", @@ -141686,7 +134333,7 @@ } }, { - "id": 17543, + "id": 16434, "properties": { "east": "tall", "north": "low", @@ -141697,7 +134344,7 @@ } }, { - "id": 17544, + "id": 16435, "properties": { "east": "tall", "north": "low", @@ -141708,7 +134355,7 @@ } }, { - "id": 17545, + "id": 16436, "properties": { "east": "tall", "north": "low", @@ -141719,7 +134366,7 @@ } }, { - "id": 17546, + "id": 16437, "properties": { "east": "tall", "north": "low", @@ -141730,7 +134377,7 @@ } }, { - "id": 17547, + "id": 16438, "properties": { "east": "tall", "north": "low", @@ -141741,7 +134388,7 @@ } }, { - "id": 17548, + "id": 16439, "properties": { "east": "tall", "north": "low", @@ -141752,7 +134399,7 @@ } }, { - "id": 17549, + "id": 16440, "properties": { "east": "tall", "north": "low", @@ -141763,7 +134410,7 @@ } }, { - "id": 17550, + "id": 16441, "properties": { "east": "tall", "north": "low", @@ -141774,7 +134421,7 @@ } }, { - "id": 17551, + "id": 16442, "properties": { "east": "tall", "north": "low", @@ -141785,7 +134432,7 @@ } }, { - "id": 17552, + "id": 16443, "properties": { "east": "tall", "north": "tall", @@ -141796,7 +134443,7 @@ } }, { - "id": 17553, + "id": 16444, "properties": { "east": "tall", "north": "tall", @@ -141807,7 +134454,7 @@ } }, { - "id": 17554, + "id": 16445, "properties": { "east": "tall", "north": "tall", @@ -141818,7 +134465,7 @@ } }, { - "id": 17555, + "id": 16446, "properties": { "east": "tall", "north": "tall", @@ -141829,7 +134476,7 @@ } }, { - "id": 17556, + "id": 16447, "properties": { "east": "tall", "north": "tall", @@ -141840,7 +134487,7 @@ } }, { - "id": 17557, + "id": 16448, "properties": { "east": "tall", "north": "tall", @@ -141851,7 +134498,7 @@ } }, { - "id": 17558, + "id": 16449, "properties": { "east": "tall", "north": "tall", @@ -141862,7 +134509,7 @@ } }, { - "id": 17559, + "id": 16450, "properties": { "east": "tall", "north": "tall", @@ -141873,7 +134520,7 @@ } }, { - "id": 17560, + "id": 16451, "properties": { "east": "tall", "north": "tall", @@ -141884,7 +134531,7 @@ } }, { - "id": 17561, + "id": 16452, "properties": { "east": "tall", "north": "tall", @@ -141895,7 +134542,7 @@ } }, { - "id": 17562, + "id": 16453, "properties": { "east": "tall", "north": "tall", @@ -141906,7 +134553,7 @@ } }, { - "id": 17563, + "id": 16454, "properties": { "east": "tall", "north": "tall", @@ -141917,7 +134564,7 @@ } }, { - "id": 17564, + "id": 16455, "properties": { "east": "tall", "north": "tall", @@ -141928,7 +134575,7 @@ } }, { - "id": 17565, + "id": 16456, "properties": { "east": "tall", "north": "tall", @@ -141939,7 +134586,7 @@ } }, { - "id": 17566, + "id": 16457, "properties": { "east": "tall", "north": "tall", @@ -141950,7 +134597,7 @@ } }, { - "id": 17567, + "id": 16458, "properties": { "east": "tall", "north": "tall", @@ -141961,7 +134608,7 @@ } }, { - "id": 17568, + "id": 16459, "properties": { "east": "tall", "north": "tall", @@ -141972,7 +134619,7 @@ } }, { - "id": 17569, + "id": 16460, "properties": { "east": "tall", "north": "tall", @@ -141983,7 +134630,7 @@ } }, { - "id": 17570, + "id": 16461, "properties": { "east": "tall", "north": "tall", @@ -141994,7 +134641,7 @@ } }, { - "id": 17571, + "id": 16462, "properties": { "east": "tall", "north": "tall", @@ -142005,7 +134652,7 @@ } }, { - "id": 17572, + "id": 16463, "properties": { "east": "tall", "north": "tall", @@ -142016,7 +134663,7 @@ } }, { - "id": 17573, + "id": 16464, "properties": { "east": "tall", "north": "tall", @@ -142027,7 +134674,7 @@ } }, { - "id": 17574, + "id": 16465, "properties": { "east": "tall", "north": "tall", @@ -142038,7 +134685,7 @@ } }, { - "id": 17575, + "id": 16466, "properties": { "east": "tall", "north": "tall", @@ -142049,7 +134696,7 @@ } }, { - "id": 17576, + "id": 16467, "properties": { "east": "tall", "north": "tall", @@ -142060,7 +134707,7 @@ } }, { - "id": 17577, + "id": 16468, "properties": { "east": "tall", "north": "tall", @@ -142071,7 +134718,7 @@ } }, { - "id": 17578, + "id": 16469, "properties": { "east": "tall", "north": "tall", @@ -142082,7 +134729,7 @@ } }, { - "id": 17579, + "id": 16470, "properties": { "east": "tall", "north": "tall", @@ -142093,7 +134740,7 @@ } }, { - "id": 17580, + "id": 16471, "properties": { "east": "tall", "north": "tall", @@ -142104,7 +134751,7 @@ } }, { - "id": 17581, + "id": 16472, "properties": { "east": "tall", "north": "tall", @@ -142115,7 +134762,7 @@ } }, { - "id": 17582, + "id": 16473, "properties": { "east": "tall", "north": "tall", @@ -142126,7 +134773,7 @@ } }, { - "id": 17583, + "id": 16474, "properties": { "east": "tall", "north": "tall", @@ -142137,7 +134784,7 @@ } }, { - "id": 17584, + "id": 16475, "properties": { "east": "tall", "north": "tall", @@ -142148,7 +134795,7 @@ } }, { - "id": 17585, + "id": 16476, "properties": { "east": "tall", "north": "tall", @@ -142159,7 +134806,7 @@ } }, { - "id": 17586, + "id": 16477, "properties": { "east": "tall", "north": "tall", @@ -142170,7 +134817,7 @@ } }, { - "id": 17587, + "id": 16478, "properties": { "east": "tall", "north": "tall", @@ -142190,7 +134837,7 @@ "states": [ { "default": true, - "id": 7554 + "id": 6781 } ] }, @@ -142309,7 +134956,7 @@ "states": [ { "default": true, - "id": 27720 + "id": 25963 } ] }, @@ -142331,21 +134978,21 @@ }, "states": [ { - "id": 13242, + "id": 12165, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 13243, + "id": 12166, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 13244, + "id": 12167, "properties": { "type": "bottom", "waterlogged": "true" @@ -142353,21 +135000,21 @@ }, { "default": true, - "id": 13245, + "id": 12168, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 13246, + "id": 12169, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 13247, + "id": 12170, "properties": { "type": "double", "waterlogged": "false" @@ -142408,7 +135055,7 @@ }, "states": [ { - "id": 8637, + "id": 7560, "properties": { "facing": "north", "half": "top", @@ -142417,7 +135064,7 @@ } }, { - "id": 8638, + "id": 7561, "properties": { "facing": "north", "half": "top", @@ -142426,7 +135073,7 @@ } }, { - "id": 8639, + "id": 7562, "properties": { "facing": "north", "half": "top", @@ -142435,7 +135082,7 @@ } }, { - "id": 8640, + "id": 7563, "properties": { "facing": "north", "half": "top", @@ -142444,7 +135091,7 @@ } }, { - "id": 8641, + "id": 7564, "properties": { "facing": "north", "half": "top", @@ -142453,7 +135100,7 @@ } }, { - "id": 8642, + "id": 7565, "properties": { "facing": "north", "half": "top", @@ -142462,7 +135109,7 @@ } }, { - "id": 8643, + "id": 7566, "properties": { "facing": "north", "half": "top", @@ -142471,7 +135118,7 @@ } }, { - "id": 8644, + "id": 7567, "properties": { "facing": "north", "half": "top", @@ -142480,7 +135127,7 @@ } }, { - "id": 8645, + "id": 7568, "properties": { "facing": "north", "half": "top", @@ -142489,7 +135136,7 @@ } }, { - "id": 8646, + "id": 7569, "properties": { "facing": "north", "half": "top", @@ -142498,7 +135145,7 @@ } }, { - "id": 8647, + "id": 7570, "properties": { "facing": "north", "half": "bottom", @@ -142508,7 +135155,7 @@ }, { "default": true, - "id": 8648, + "id": 7571, "properties": { "facing": "north", "half": "bottom", @@ -142517,7 +135164,7 @@ } }, { - "id": 8649, + "id": 7572, "properties": { "facing": "north", "half": "bottom", @@ -142526,7 +135173,7 @@ } }, { - "id": 8650, + "id": 7573, "properties": { "facing": "north", "half": "bottom", @@ -142535,7 +135182,7 @@ } }, { - "id": 8651, + "id": 7574, "properties": { "facing": "north", "half": "bottom", @@ -142544,7 +135191,7 @@ } }, { - "id": 8652, + "id": 7575, "properties": { "facing": "north", "half": "bottom", @@ -142553,7 +135200,7 @@ } }, { - "id": 8653, + "id": 7576, "properties": { "facing": "north", "half": "bottom", @@ -142562,7 +135209,7 @@ } }, { - "id": 8654, + "id": 7577, "properties": { "facing": "north", "half": "bottom", @@ -142571,7 +135218,7 @@ } }, { - "id": 8655, + "id": 7578, "properties": { "facing": "north", "half": "bottom", @@ -142580,7 +135227,7 @@ } }, { - "id": 8656, + "id": 7579, "properties": { "facing": "north", "half": "bottom", @@ -142589,7 +135236,7 @@ } }, { - "id": 8657, + "id": 7580, "properties": { "facing": "south", "half": "top", @@ -142598,7 +135245,7 @@ } }, { - "id": 8658, + "id": 7581, "properties": { "facing": "south", "half": "top", @@ -142607,7 +135254,7 @@ } }, { - "id": 8659, + "id": 7582, "properties": { "facing": "south", "half": "top", @@ -142616,7 +135263,7 @@ } }, { - "id": 8660, + "id": 7583, "properties": { "facing": "south", "half": "top", @@ -142625,7 +135272,7 @@ } }, { - "id": 8661, + "id": 7584, "properties": { "facing": "south", "half": "top", @@ -142634,7 +135281,7 @@ } }, { - "id": 8662, + "id": 7585, "properties": { "facing": "south", "half": "top", @@ -142643,7 +135290,7 @@ } }, { - "id": 8663, + "id": 7586, "properties": { "facing": "south", "half": "top", @@ -142652,7 +135299,7 @@ } }, { - "id": 8664, + "id": 7587, "properties": { "facing": "south", "half": "top", @@ -142661,7 +135308,7 @@ } }, { - "id": 8665, + "id": 7588, "properties": { "facing": "south", "half": "top", @@ -142670,7 +135317,7 @@ } }, { - "id": 8666, + "id": 7589, "properties": { "facing": "south", "half": "top", @@ -142679,7 +135326,7 @@ } }, { - "id": 8667, + "id": 7590, "properties": { "facing": "south", "half": "bottom", @@ -142688,7 +135335,7 @@ } }, { - "id": 8668, + "id": 7591, "properties": { "facing": "south", "half": "bottom", @@ -142697,7 +135344,7 @@ } }, { - "id": 8669, + "id": 7592, "properties": { "facing": "south", "half": "bottom", @@ -142706,7 +135353,7 @@ } }, { - "id": 8670, + "id": 7593, "properties": { "facing": "south", "half": "bottom", @@ -142715,7 +135362,7 @@ } }, { - "id": 8671, + "id": 7594, "properties": { "facing": "south", "half": "bottom", @@ -142724,7 +135371,7 @@ } }, { - "id": 8672, + "id": 7595, "properties": { "facing": "south", "half": "bottom", @@ -142733,7 +135380,7 @@ } }, { - "id": 8673, + "id": 7596, "properties": { "facing": "south", "half": "bottom", @@ -142742,7 +135389,7 @@ } }, { - "id": 8674, + "id": 7597, "properties": { "facing": "south", "half": "bottom", @@ -142751,7 +135398,7 @@ } }, { - "id": 8675, + "id": 7598, "properties": { "facing": "south", "half": "bottom", @@ -142760,7 +135407,7 @@ } }, { - "id": 8676, + "id": 7599, "properties": { "facing": "south", "half": "bottom", @@ -142769,7 +135416,7 @@ } }, { - "id": 8677, + "id": 7600, "properties": { "facing": "west", "half": "top", @@ -142778,7 +135425,7 @@ } }, { - "id": 8678, + "id": 7601, "properties": { "facing": "west", "half": "top", @@ -142787,7 +135434,7 @@ } }, { - "id": 8679, + "id": 7602, "properties": { "facing": "west", "half": "top", @@ -142796,7 +135443,7 @@ } }, { - "id": 8680, + "id": 7603, "properties": { "facing": "west", "half": "top", @@ -142805,7 +135452,7 @@ } }, { - "id": 8681, + "id": 7604, "properties": { "facing": "west", "half": "top", @@ -142814,7 +135461,7 @@ } }, { - "id": 8682, + "id": 7605, "properties": { "facing": "west", "half": "top", @@ -142823,7 +135470,7 @@ } }, { - "id": 8683, + "id": 7606, "properties": { "facing": "west", "half": "top", @@ -142832,7 +135479,7 @@ } }, { - "id": 8684, + "id": 7607, "properties": { "facing": "west", "half": "top", @@ -142841,7 +135488,7 @@ } }, { - "id": 8685, + "id": 7608, "properties": { "facing": "west", "half": "top", @@ -142850,7 +135497,7 @@ } }, { - "id": 8686, + "id": 7609, "properties": { "facing": "west", "half": "top", @@ -142859,7 +135506,7 @@ } }, { - "id": 8687, + "id": 7610, "properties": { "facing": "west", "half": "bottom", @@ -142868,7 +135515,7 @@ } }, { - "id": 8688, + "id": 7611, "properties": { "facing": "west", "half": "bottom", @@ -142877,7 +135524,7 @@ } }, { - "id": 8689, + "id": 7612, "properties": { "facing": "west", "half": "bottom", @@ -142886,7 +135533,7 @@ } }, { - "id": 8690, + "id": 7613, "properties": { "facing": "west", "half": "bottom", @@ -142895,7 +135542,7 @@ } }, { - "id": 8691, + "id": 7614, "properties": { "facing": "west", "half": "bottom", @@ -142904,7 +135551,7 @@ } }, { - "id": 8692, + "id": 7615, "properties": { "facing": "west", "half": "bottom", @@ -142913,7 +135560,7 @@ } }, { - "id": 8693, + "id": 7616, "properties": { "facing": "west", "half": "bottom", @@ -142922,7 +135569,7 @@ } }, { - "id": 8694, + "id": 7617, "properties": { "facing": "west", "half": "bottom", @@ -142931,7 +135578,7 @@ } }, { - "id": 8695, + "id": 7618, "properties": { "facing": "west", "half": "bottom", @@ -142940,7 +135587,7 @@ } }, { - "id": 8696, + "id": 7619, "properties": { "facing": "west", "half": "bottom", @@ -142949,7 +135596,7 @@ } }, { - "id": 8697, + "id": 7620, "properties": { "facing": "east", "half": "top", @@ -142958,7 +135605,7 @@ } }, { - "id": 8698, + "id": 7621, "properties": { "facing": "east", "half": "top", @@ -142967,7 +135614,7 @@ } }, { - "id": 8699, + "id": 7622, "properties": { "facing": "east", "half": "top", @@ -142976,7 +135623,7 @@ } }, { - "id": 8700, + "id": 7623, "properties": { "facing": "east", "half": "top", @@ -142985,7 +135632,7 @@ } }, { - "id": 8701, + "id": 7624, "properties": { "facing": "east", "half": "top", @@ -142994,7 +135641,7 @@ } }, { - "id": 8702, + "id": 7625, "properties": { "facing": "east", "half": "top", @@ -143003,7 +135650,7 @@ } }, { - "id": 8703, + "id": 7626, "properties": { "facing": "east", "half": "top", @@ -143012,7 +135659,7 @@ } }, { - "id": 8704, + "id": 7627, "properties": { "facing": "east", "half": "top", @@ -143021,7 +135668,7 @@ } }, { - "id": 8705, + "id": 7628, "properties": { "facing": "east", "half": "top", @@ -143030,7 +135677,7 @@ } }, { - "id": 8706, + "id": 7629, "properties": { "facing": "east", "half": "top", @@ -143039,7 +135686,7 @@ } }, { - "id": 8707, + "id": 7630, "properties": { "facing": "east", "half": "bottom", @@ -143048,7 +135695,7 @@ } }, { - "id": 8708, + "id": 7631, "properties": { "facing": "east", "half": "bottom", @@ -143057,7 +135704,7 @@ } }, { - "id": 8709, + "id": 7632, "properties": { "facing": "east", "half": "bottom", @@ -143066,7 +135713,7 @@ } }, { - "id": 8710, + "id": 7633, "properties": { "facing": "east", "half": "bottom", @@ -143075,7 +135722,7 @@ } }, { - "id": 8711, + "id": 7634, "properties": { "facing": "east", "half": "bottom", @@ -143084,7 +135731,7 @@ } }, { - "id": 8712, + "id": 7635, "properties": { "facing": "east", "half": "bottom", @@ -143093,7 +135740,7 @@ } }, { - "id": 8713, + "id": 7636, "properties": { "facing": "east", "half": "bottom", @@ -143102,7 +135749,7 @@ } }, { - "id": 8714, + "id": 7637, "properties": { "facing": "east", "half": "bottom", @@ -143111,7 +135758,7 @@ } }, { - "id": 8715, + "id": 7638, "properties": { "facing": "east", "half": "bottom", @@ -143120,7 +135767,7 @@ } }, { - "id": 8716, + "id": 7639, "properties": { "facing": "east", "half": "bottom", @@ -143167,7 +135814,7 @@ }, "states": [ { - "id": 18236, + "id": 17127, "properties": { "east": "none", "north": "none", @@ -143178,7 +135825,7 @@ } }, { - "id": 18237, + "id": 17128, "properties": { "east": "none", "north": "none", @@ -143189,7 +135836,7 @@ } }, { - "id": 18238, + "id": 17129, "properties": { "east": "none", "north": "none", @@ -143201,7 +135848,7 @@ }, { "default": true, - "id": 18239, + "id": 17130, "properties": { "east": "none", "north": "none", @@ -143212,7 +135859,7 @@ } }, { - "id": 18240, + "id": 17131, "properties": { "east": "none", "north": "none", @@ -143223,7 +135870,7 @@ } }, { - "id": 18241, + "id": 17132, "properties": { "east": "none", "north": "none", @@ -143234,7 +135881,7 @@ } }, { - "id": 18242, + "id": 17133, "properties": { "east": "none", "north": "none", @@ -143245,7 +135892,7 @@ } }, { - "id": 18243, + "id": 17134, "properties": { "east": "none", "north": "none", @@ -143256,7 +135903,7 @@ } }, { - "id": 18244, + "id": 17135, "properties": { "east": "none", "north": "none", @@ -143267,7 +135914,7 @@ } }, { - "id": 18245, + "id": 17136, "properties": { "east": "none", "north": "none", @@ -143278,7 +135925,7 @@ } }, { - "id": 18246, + "id": 17137, "properties": { "east": "none", "north": "none", @@ -143289,7 +135936,7 @@ } }, { - "id": 18247, + "id": 17138, "properties": { "east": "none", "north": "none", @@ -143300,7 +135947,7 @@ } }, { - "id": 18248, + "id": 17139, "properties": { "east": "none", "north": "none", @@ -143311,7 +135958,7 @@ } }, { - "id": 18249, + "id": 17140, "properties": { "east": "none", "north": "none", @@ -143322,7 +135969,7 @@ } }, { - "id": 18250, + "id": 17141, "properties": { "east": "none", "north": "none", @@ -143333,7 +135980,7 @@ } }, { - "id": 18251, + "id": 17142, "properties": { "east": "none", "north": "none", @@ -143344,7 +135991,7 @@ } }, { - "id": 18252, + "id": 17143, "properties": { "east": "none", "north": "none", @@ -143355,7 +136002,7 @@ } }, { - "id": 18253, + "id": 17144, "properties": { "east": "none", "north": "none", @@ -143366,7 +136013,7 @@ } }, { - "id": 18254, + "id": 17145, "properties": { "east": "none", "north": "none", @@ -143377,7 +136024,7 @@ } }, { - "id": 18255, + "id": 17146, "properties": { "east": "none", "north": "none", @@ -143388,7 +136035,7 @@ } }, { - "id": 18256, + "id": 17147, "properties": { "east": "none", "north": "none", @@ -143399,7 +136046,7 @@ } }, { - "id": 18257, + "id": 17148, "properties": { "east": "none", "north": "none", @@ -143410,7 +136057,7 @@ } }, { - "id": 18258, + "id": 17149, "properties": { "east": "none", "north": "none", @@ -143421,7 +136068,7 @@ } }, { - "id": 18259, + "id": 17150, "properties": { "east": "none", "north": "none", @@ -143432,7 +136079,7 @@ } }, { - "id": 18260, + "id": 17151, "properties": { "east": "none", "north": "none", @@ -143443,7 +136090,7 @@ } }, { - "id": 18261, + "id": 17152, "properties": { "east": "none", "north": "none", @@ -143454,7 +136101,7 @@ } }, { - "id": 18262, + "id": 17153, "properties": { "east": "none", "north": "none", @@ -143465,7 +136112,7 @@ } }, { - "id": 18263, + "id": 17154, "properties": { "east": "none", "north": "none", @@ -143476,7 +136123,7 @@ } }, { - "id": 18264, + "id": 17155, "properties": { "east": "none", "north": "none", @@ -143487,7 +136134,7 @@ } }, { - "id": 18265, + "id": 17156, "properties": { "east": "none", "north": "none", @@ -143498,7 +136145,7 @@ } }, { - "id": 18266, + "id": 17157, "properties": { "east": "none", "north": "none", @@ -143509,7 +136156,7 @@ } }, { - "id": 18267, + "id": 17158, "properties": { "east": "none", "north": "none", @@ -143520,7 +136167,7 @@ } }, { - "id": 18268, + "id": 17159, "properties": { "east": "none", "north": "none", @@ -143531,7 +136178,7 @@ } }, { - "id": 18269, + "id": 17160, "properties": { "east": "none", "north": "none", @@ -143542,7 +136189,7 @@ } }, { - "id": 18270, + "id": 17161, "properties": { "east": "none", "north": "none", @@ -143553,7 +136200,7 @@ } }, { - "id": 18271, + "id": 17162, "properties": { "east": "none", "north": "none", @@ -143564,7 +136211,7 @@ } }, { - "id": 18272, + "id": 17163, "properties": { "east": "none", "north": "low", @@ -143575,7 +136222,7 @@ } }, { - "id": 18273, + "id": 17164, "properties": { "east": "none", "north": "low", @@ -143586,7 +136233,7 @@ } }, { - "id": 18274, + "id": 17165, "properties": { "east": "none", "north": "low", @@ -143597,7 +136244,7 @@ } }, { - "id": 18275, + "id": 17166, "properties": { "east": "none", "north": "low", @@ -143608,7 +136255,7 @@ } }, { - "id": 18276, + "id": 17167, "properties": { "east": "none", "north": "low", @@ -143619,7 +136266,7 @@ } }, { - "id": 18277, + "id": 17168, "properties": { "east": "none", "north": "low", @@ -143630,7 +136277,7 @@ } }, { - "id": 18278, + "id": 17169, "properties": { "east": "none", "north": "low", @@ -143641,7 +136288,7 @@ } }, { - "id": 18279, + "id": 17170, "properties": { "east": "none", "north": "low", @@ -143652,7 +136299,7 @@ } }, { - "id": 18280, + "id": 17171, "properties": { "east": "none", "north": "low", @@ -143663,7 +136310,7 @@ } }, { - "id": 18281, + "id": 17172, "properties": { "east": "none", "north": "low", @@ -143674,7 +136321,7 @@ } }, { - "id": 18282, + "id": 17173, "properties": { "east": "none", "north": "low", @@ -143685,7 +136332,7 @@ } }, { - "id": 18283, + "id": 17174, "properties": { "east": "none", "north": "low", @@ -143696,7 +136343,7 @@ } }, { - "id": 18284, + "id": 17175, "properties": { "east": "none", "north": "low", @@ -143707,7 +136354,7 @@ } }, { - "id": 18285, + "id": 17176, "properties": { "east": "none", "north": "low", @@ -143718,7 +136365,7 @@ } }, { - "id": 18286, + "id": 17177, "properties": { "east": "none", "north": "low", @@ -143729,7 +136376,7 @@ } }, { - "id": 18287, + "id": 17178, "properties": { "east": "none", "north": "low", @@ -143740,7 +136387,7 @@ } }, { - "id": 18288, + "id": 17179, "properties": { "east": "none", "north": "low", @@ -143751,7 +136398,7 @@ } }, { - "id": 18289, + "id": 17180, "properties": { "east": "none", "north": "low", @@ -143762,7 +136409,7 @@ } }, { - "id": 18290, + "id": 17181, "properties": { "east": "none", "north": "low", @@ -143773,7 +136420,7 @@ } }, { - "id": 18291, + "id": 17182, "properties": { "east": "none", "north": "low", @@ -143784,7 +136431,7 @@ } }, { - "id": 18292, + "id": 17183, "properties": { "east": "none", "north": "low", @@ -143795,7 +136442,7 @@ } }, { - "id": 18293, + "id": 17184, "properties": { "east": "none", "north": "low", @@ -143806,7 +136453,7 @@ } }, { - "id": 18294, + "id": 17185, "properties": { "east": "none", "north": "low", @@ -143817,7 +136464,7 @@ } }, { - "id": 18295, + "id": 17186, "properties": { "east": "none", "north": "low", @@ -143828,7 +136475,7 @@ } }, { - "id": 18296, + "id": 17187, "properties": { "east": "none", "north": "low", @@ -143839,7 +136486,7 @@ } }, { - "id": 18297, + "id": 17188, "properties": { "east": "none", "north": "low", @@ -143850,7 +136497,7 @@ } }, { - "id": 18298, + "id": 17189, "properties": { "east": "none", "north": "low", @@ -143861,7 +136508,7 @@ } }, { - "id": 18299, + "id": 17190, "properties": { "east": "none", "north": "low", @@ -143872,7 +136519,7 @@ } }, { - "id": 18300, + "id": 17191, "properties": { "east": "none", "north": "low", @@ -143883,7 +136530,7 @@ } }, { - "id": 18301, + "id": 17192, "properties": { "east": "none", "north": "low", @@ -143894,7 +136541,7 @@ } }, { - "id": 18302, + "id": 17193, "properties": { "east": "none", "north": "low", @@ -143905,7 +136552,7 @@ } }, { - "id": 18303, + "id": 17194, "properties": { "east": "none", "north": "low", @@ -143916,7 +136563,7 @@ } }, { - "id": 18304, + "id": 17195, "properties": { "east": "none", "north": "low", @@ -143927,7 +136574,7 @@ } }, { - "id": 18305, + "id": 17196, "properties": { "east": "none", "north": "low", @@ -143938,7 +136585,7 @@ } }, { - "id": 18306, + "id": 17197, "properties": { "east": "none", "north": "low", @@ -143949,7 +136596,7 @@ } }, { - "id": 18307, + "id": 17198, "properties": { "east": "none", "north": "low", @@ -143960,7 +136607,7 @@ } }, { - "id": 18308, + "id": 17199, "properties": { "east": "none", "north": "tall", @@ -143971,7 +136618,7 @@ } }, { - "id": 18309, + "id": 17200, "properties": { "east": "none", "north": "tall", @@ -143982,7 +136629,7 @@ } }, { - "id": 18310, + "id": 17201, "properties": { "east": "none", "north": "tall", @@ -143993,7 +136640,7 @@ } }, { - "id": 18311, + "id": 17202, "properties": { "east": "none", "north": "tall", @@ -144004,7 +136651,7 @@ } }, { - "id": 18312, + "id": 17203, "properties": { "east": "none", "north": "tall", @@ -144015,7 +136662,7 @@ } }, { - "id": 18313, + "id": 17204, "properties": { "east": "none", "north": "tall", @@ -144026,7 +136673,7 @@ } }, { - "id": 18314, + "id": 17205, "properties": { "east": "none", "north": "tall", @@ -144037,7 +136684,7 @@ } }, { - "id": 18315, + "id": 17206, "properties": { "east": "none", "north": "tall", @@ -144048,7 +136695,7 @@ } }, { - "id": 18316, + "id": 17207, "properties": { "east": "none", "north": "tall", @@ -144059,7 +136706,7 @@ } }, { - "id": 18317, + "id": 17208, "properties": { "east": "none", "north": "tall", @@ -144070,7 +136717,7 @@ } }, { - "id": 18318, + "id": 17209, "properties": { "east": "none", "north": "tall", @@ -144081,7 +136728,7 @@ } }, { - "id": 18319, + "id": 17210, "properties": { "east": "none", "north": "tall", @@ -144092,7 +136739,7 @@ } }, { - "id": 18320, + "id": 17211, "properties": { "east": "none", "north": "tall", @@ -144103,7 +136750,7 @@ } }, { - "id": 18321, + "id": 17212, "properties": { "east": "none", "north": "tall", @@ -144114,7 +136761,7 @@ } }, { - "id": 18322, + "id": 17213, "properties": { "east": "none", "north": "tall", @@ -144125,7 +136772,7 @@ } }, { - "id": 18323, + "id": 17214, "properties": { "east": "none", "north": "tall", @@ -144136,7 +136783,7 @@ } }, { - "id": 18324, + "id": 17215, "properties": { "east": "none", "north": "tall", @@ -144147,7 +136794,7 @@ } }, { - "id": 18325, + "id": 17216, "properties": { "east": "none", "north": "tall", @@ -144158,7 +136805,7 @@ } }, { - "id": 18326, + "id": 17217, "properties": { "east": "none", "north": "tall", @@ -144169,7 +136816,7 @@ } }, { - "id": 18327, + "id": 17218, "properties": { "east": "none", "north": "tall", @@ -144180,7 +136827,7 @@ } }, { - "id": 18328, + "id": 17219, "properties": { "east": "none", "north": "tall", @@ -144191,7 +136838,7 @@ } }, { - "id": 18329, + "id": 17220, "properties": { "east": "none", "north": "tall", @@ -144202,7 +136849,7 @@ } }, { - "id": 18330, + "id": 17221, "properties": { "east": "none", "north": "tall", @@ -144213,7 +136860,7 @@ } }, { - "id": 18331, + "id": 17222, "properties": { "east": "none", "north": "tall", @@ -144224,7 +136871,7 @@ } }, { - "id": 18332, + "id": 17223, "properties": { "east": "none", "north": "tall", @@ -144235,7 +136882,7 @@ } }, { - "id": 18333, + "id": 17224, "properties": { "east": "none", "north": "tall", @@ -144246,7 +136893,7 @@ } }, { - "id": 18334, + "id": 17225, "properties": { "east": "none", "north": "tall", @@ -144257,7 +136904,7 @@ } }, { - "id": 18335, + "id": 17226, "properties": { "east": "none", "north": "tall", @@ -144268,7 +136915,7 @@ } }, { - "id": 18336, + "id": 17227, "properties": { "east": "none", "north": "tall", @@ -144279,7 +136926,7 @@ } }, { - "id": 18337, + "id": 17228, "properties": { "east": "none", "north": "tall", @@ -144290,7 +136937,7 @@ } }, { - "id": 18338, + "id": 17229, "properties": { "east": "none", "north": "tall", @@ -144301,7 +136948,7 @@ } }, { - "id": 18339, + "id": 17230, "properties": { "east": "none", "north": "tall", @@ -144312,7 +136959,7 @@ } }, { - "id": 18340, + "id": 17231, "properties": { "east": "none", "north": "tall", @@ -144323,7 +136970,7 @@ } }, { - "id": 18341, + "id": 17232, "properties": { "east": "none", "north": "tall", @@ -144334,7 +136981,7 @@ } }, { - "id": 18342, + "id": 17233, "properties": { "east": "none", "north": "tall", @@ -144345,7 +136992,7 @@ } }, { - "id": 18343, + "id": 17234, "properties": { "east": "none", "north": "tall", @@ -144356,7 +137003,7 @@ } }, { - "id": 18344, + "id": 17235, "properties": { "east": "low", "north": "none", @@ -144367,7 +137014,7 @@ } }, { - "id": 18345, + "id": 17236, "properties": { "east": "low", "north": "none", @@ -144378,7 +137025,7 @@ } }, { - "id": 18346, + "id": 17237, "properties": { "east": "low", "north": "none", @@ -144389,7 +137036,7 @@ } }, { - "id": 18347, + "id": 17238, "properties": { "east": "low", "north": "none", @@ -144400,7 +137047,7 @@ } }, { - "id": 18348, + "id": 17239, "properties": { "east": "low", "north": "none", @@ -144411,7 +137058,7 @@ } }, { - "id": 18349, + "id": 17240, "properties": { "east": "low", "north": "none", @@ -144422,7 +137069,7 @@ } }, { - "id": 18350, + "id": 17241, "properties": { "east": "low", "north": "none", @@ -144433,7 +137080,7 @@ } }, { - "id": 18351, + "id": 17242, "properties": { "east": "low", "north": "none", @@ -144444,7 +137091,7 @@ } }, { - "id": 18352, + "id": 17243, "properties": { "east": "low", "north": "none", @@ -144455,7 +137102,7 @@ } }, { - "id": 18353, + "id": 17244, "properties": { "east": "low", "north": "none", @@ -144466,7 +137113,7 @@ } }, { - "id": 18354, + "id": 17245, "properties": { "east": "low", "north": "none", @@ -144477,7 +137124,7 @@ } }, { - "id": 18355, + "id": 17246, "properties": { "east": "low", "north": "none", @@ -144488,7 +137135,7 @@ } }, { - "id": 18356, + "id": 17247, "properties": { "east": "low", "north": "none", @@ -144499,7 +137146,7 @@ } }, { - "id": 18357, + "id": 17248, "properties": { "east": "low", "north": "none", @@ -144510,7 +137157,7 @@ } }, { - "id": 18358, + "id": 17249, "properties": { "east": "low", "north": "none", @@ -144521,7 +137168,7 @@ } }, { - "id": 18359, + "id": 17250, "properties": { "east": "low", "north": "none", @@ -144532,7 +137179,7 @@ } }, { - "id": 18360, + "id": 17251, "properties": { "east": "low", "north": "none", @@ -144543,7 +137190,7 @@ } }, { - "id": 18361, + "id": 17252, "properties": { "east": "low", "north": "none", @@ -144554,7 +137201,7 @@ } }, { - "id": 18362, + "id": 17253, "properties": { "east": "low", "north": "none", @@ -144565,7 +137212,7 @@ } }, { - "id": 18363, + "id": 17254, "properties": { "east": "low", "north": "none", @@ -144576,7 +137223,7 @@ } }, { - "id": 18364, + "id": 17255, "properties": { "east": "low", "north": "none", @@ -144587,7 +137234,7 @@ } }, { - "id": 18365, + "id": 17256, "properties": { "east": "low", "north": "none", @@ -144598,7 +137245,7 @@ } }, { - "id": 18366, + "id": 17257, "properties": { "east": "low", "north": "none", @@ -144609,7 +137256,7 @@ } }, { - "id": 18367, + "id": 17258, "properties": { "east": "low", "north": "none", @@ -144620,7 +137267,7 @@ } }, { - "id": 18368, + "id": 17259, "properties": { "east": "low", "north": "none", @@ -144631,7 +137278,7 @@ } }, { - "id": 18369, + "id": 17260, "properties": { "east": "low", "north": "none", @@ -144642,7 +137289,7 @@ } }, { - "id": 18370, + "id": 17261, "properties": { "east": "low", "north": "none", @@ -144653,7 +137300,7 @@ } }, { - "id": 18371, + "id": 17262, "properties": { "east": "low", "north": "none", @@ -144664,7 +137311,7 @@ } }, { - "id": 18372, + "id": 17263, "properties": { "east": "low", "north": "none", @@ -144675,7 +137322,7 @@ } }, { - "id": 18373, + "id": 17264, "properties": { "east": "low", "north": "none", @@ -144686,7 +137333,7 @@ } }, { - "id": 18374, + "id": 17265, "properties": { "east": "low", "north": "none", @@ -144697,7 +137344,7 @@ } }, { - "id": 18375, + "id": 17266, "properties": { "east": "low", "north": "none", @@ -144708,7 +137355,7 @@ } }, { - "id": 18376, + "id": 17267, "properties": { "east": "low", "north": "none", @@ -144719,7 +137366,7 @@ } }, { - "id": 18377, + "id": 17268, "properties": { "east": "low", "north": "none", @@ -144730,7 +137377,7 @@ } }, { - "id": 18378, + "id": 17269, "properties": { "east": "low", "north": "none", @@ -144741,7 +137388,7 @@ } }, { - "id": 18379, + "id": 17270, "properties": { "east": "low", "north": "none", @@ -144752,7 +137399,7 @@ } }, { - "id": 18380, + "id": 17271, "properties": { "east": "low", "north": "low", @@ -144763,7 +137410,7 @@ } }, { - "id": 18381, + "id": 17272, "properties": { "east": "low", "north": "low", @@ -144774,7 +137421,7 @@ } }, { - "id": 18382, + "id": 17273, "properties": { "east": "low", "north": "low", @@ -144785,7 +137432,7 @@ } }, { - "id": 18383, + "id": 17274, "properties": { "east": "low", "north": "low", @@ -144796,7 +137443,7 @@ } }, { - "id": 18384, + "id": 17275, "properties": { "east": "low", "north": "low", @@ -144807,7 +137454,7 @@ } }, { - "id": 18385, + "id": 17276, "properties": { "east": "low", "north": "low", @@ -144818,7 +137465,7 @@ } }, { - "id": 18386, + "id": 17277, "properties": { "east": "low", "north": "low", @@ -144829,7 +137476,7 @@ } }, { - "id": 18387, + "id": 17278, "properties": { "east": "low", "north": "low", @@ -144840,7 +137487,7 @@ } }, { - "id": 18388, + "id": 17279, "properties": { "east": "low", "north": "low", @@ -144851,7 +137498,7 @@ } }, { - "id": 18389, + "id": 17280, "properties": { "east": "low", "north": "low", @@ -144862,7 +137509,7 @@ } }, { - "id": 18390, + "id": 17281, "properties": { "east": "low", "north": "low", @@ -144873,7 +137520,7 @@ } }, { - "id": 18391, + "id": 17282, "properties": { "east": "low", "north": "low", @@ -144884,7 +137531,7 @@ } }, { - "id": 18392, + "id": 17283, "properties": { "east": "low", "north": "low", @@ -144895,7 +137542,7 @@ } }, { - "id": 18393, + "id": 17284, "properties": { "east": "low", "north": "low", @@ -144906,7 +137553,7 @@ } }, { - "id": 18394, + "id": 17285, "properties": { "east": "low", "north": "low", @@ -144917,7 +137564,7 @@ } }, { - "id": 18395, + "id": 17286, "properties": { "east": "low", "north": "low", @@ -144928,7 +137575,7 @@ } }, { - "id": 18396, + "id": 17287, "properties": { "east": "low", "north": "low", @@ -144939,7 +137586,7 @@ } }, { - "id": 18397, + "id": 17288, "properties": { "east": "low", "north": "low", @@ -144950,7 +137597,7 @@ } }, { - "id": 18398, + "id": 17289, "properties": { "east": "low", "north": "low", @@ -144961,7 +137608,7 @@ } }, { - "id": 18399, + "id": 17290, "properties": { "east": "low", "north": "low", @@ -144972,7 +137619,7 @@ } }, { - "id": 18400, + "id": 17291, "properties": { "east": "low", "north": "low", @@ -144983,7 +137630,7 @@ } }, { - "id": 18401, + "id": 17292, "properties": { "east": "low", "north": "low", @@ -144994,7 +137641,7 @@ } }, { - "id": 18402, + "id": 17293, "properties": { "east": "low", "north": "low", @@ -145005,7 +137652,7 @@ } }, { - "id": 18403, + "id": 17294, "properties": { "east": "low", "north": "low", @@ -145016,7 +137663,7 @@ } }, { - "id": 18404, + "id": 17295, "properties": { "east": "low", "north": "low", @@ -145027,7 +137674,7 @@ } }, { - "id": 18405, + "id": 17296, "properties": { "east": "low", "north": "low", @@ -145038,7 +137685,7 @@ } }, { - "id": 18406, + "id": 17297, "properties": { "east": "low", "north": "low", @@ -145049,7 +137696,7 @@ } }, { - "id": 18407, + "id": 17298, "properties": { "east": "low", "north": "low", @@ -145060,7 +137707,7 @@ } }, { - "id": 18408, + "id": 17299, "properties": { "east": "low", "north": "low", @@ -145071,7 +137718,7 @@ } }, { - "id": 18409, + "id": 17300, "properties": { "east": "low", "north": "low", @@ -145082,7 +137729,7 @@ } }, { - "id": 18410, + "id": 17301, "properties": { "east": "low", "north": "low", @@ -145093,7 +137740,7 @@ } }, { - "id": 18411, + "id": 17302, "properties": { "east": "low", "north": "low", @@ -145104,7 +137751,7 @@ } }, { - "id": 18412, + "id": 17303, "properties": { "east": "low", "north": "low", @@ -145115,7 +137762,7 @@ } }, { - "id": 18413, + "id": 17304, "properties": { "east": "low", "north": "low", @@ -145126,7 +137773,7 @@ } }, { - "id": 18414, + "id": 17305, "properties": { "east": "low", "north": "low", @@ -145137,7 +137784,7 @@ } }, { - "id": 18415, + "id": 17306, "properties": { "east": "low", "north": "low", @@ -145148,7 +137795,7 @@ } }, { - "id": 18416, + "id": 17307, "properties": { "east": "low", "north": "tall", @@ -145159,7 +137806,7 @@ } }, { - "id": 18417, + "id": 17308, "properties": { "east": "low", "north": "tall", @@ -145170,7 +137817,7 @@ } }, { - "id": 18418, + "id": 17309, "properties": { "east": "low", "north": "tall", @@ -145181,7 +137828,7 @@ } }, { - "id": 18419, + "id": 17310, "properties": { "east": "low", "north": "tall", @@ -145192,7 +137839,7 @@ } }, { - "id": 18420, + "id": 17311, "properties": { "east": "low", "north": "tall", @@ -145203,7 +137850,7 @@ } }, { - "id": 18421, + "id": 17312, "properties": { "east": "low", "north": "tall", @@ -145214,7 +137861,7 @@ } }, { - "id": 18422, + "id": 17313, "properties": { "east": "low", "north": "tall", @@ -145225,7 +137872,7 @@ } }, { - "id": 18423, + "id": 17314, "properties": { "east": "low", "north": "tall", @@ -145236,7 +137883,7 @@ } }, { - "id": 18424, + "id": 17315, "properties": { "east": "low", "north": "tall", @@ -145247,7 +137894,7 @@ } }, { - "id": 18425, + "id": 17316, "properties": { "east": "low", "north": "tall", @@ -145258,7 +137905,7 @@ } }, { - "id": 18426, + "id": 17317, "properties": { "east": "low", "north": "tall", @@ -145269,7 +137916,7 @@ } }, { - "id": 18427, + "id": 17318, "properties": { "east": "low", "north": "tall", @@ -145280,7 +137927,7 @@ } }, { - "id": 18428, + "id": 17319, "properties": { "east": "low", "north": "tall", @@ -145291,7 +137938,7 @@ } }, { - "id": 18429, + "id": 17320, "properties": { "east": "low", "north": "tall", @@ -145302,7 +137949,7 @@ } }, { - "id": 18430, + "id": 17321, "properties": { "east": "low", "north": "tall", @@ -145313,7 +137960,7 @@ } }, { - "id": 18431, + "id": 17322, "properties": { "east": "low", "north": "tall", @@ -145324,7 +137971,7 @@ } }, { - "id": 18432, + "id": 17323, "properties": { "east": "low", "north": "tall", @@ -145335,7 +137982,7 @@ } }, { - "id": 18433, + "id": 17324, "properties": { "east": "low", "north": "tall", @@ -145346,7 +137993,7 @@ } }, { - "id": 18434, + "id": 17325, "properties": { "east": "low", "north": "tall", @@ -145357,7 +138004,7 @@ } }, { - "id": 18435, + "id": 17326, "properties": { "east": "low", "north": "tall", @@ -145368,7 +138015,7 @@ } }, { - "id": 18436, + "id": 17327, "properties": { "east": "low", "north": "tall", @@ -145379,7 +138026,7 @@ } }, { - "id": 18437, + "id": 17328, "properties": { "east": "low", "north": "tall", @@ -145390,7 +138037,7 @@ } }, { - "id": 18438, + "id": 17329, "properties": { "east": "low", "north": "tall", @@ -145401,7 +138048,7 @@ } }, { - "id": 18439, + "id": 17330, "properties": { "east": "low", "north": "tall", @@ -145412,7 +138059,7 @@ } }, { - "id": 18440, + "id": 17331, "properties": { "east": "low", "north": "tall", @@ -145423,7 +138070,7 @@ } }, { - "id": 18441, + "id": 17332, "properties": { "east": "low", "north": "tall", @@ -145434,7 +138081,7 @@ } }, { - "id": 18442, + "id": 17333, "properties": { "east": "low", "north": "tall", @@ -145445,7 +138092,7 @@ } }, { - "id": 18443, + "id": 17334, "properties": { "east": "low", "north": "tall", @@ -145456,7 +138103,7 @@ } }, { - "id": 18444, + "id": 17335, "properties": { "east": "low", "north": "tall", @@ -145467,7 +138114,7 @@ } }, { - "id": 18445, + "id": 17336, "properties": { "east": "low", "north": "tall", @@ -145478,7 +138125,7 @@ } }, { - "id": 18446, + "id": 17337, "properties": { "east": "low", "north": "tall", @@ -145489,7 +138136,7 @@ } }, { - "id": 18447, + "id": 17338, "properties": { "east": "low", "north": "tall", @@ -145500,7 +138147,7 @@ } }, { - "id": 18448, + "id": 17339, "properties": { "east": "low", "north": "tall", @@ -145511,7 +138158,7 @@ } }, { - "id": 18449, + "id": 17340, "properties": { "east": "low", "north": "tall", @@ -145522,7 +138169,7 @@ } }, { - "id": 18450, + "id": 17341, "properties": { "east": "low", "north": "tall", @@ -145533,7 +138180,7 @@ } }, { - "id": 18451, + "id": 17342, "properties": { "east": "low", "north": "tall", @@ -145544,7 +138191,7 @@ } }, { - "id": 18452, + "id": 17343, "properties": { "east": "tall", "north": "none", @@ -145555,7 +138202,7 @@ } }, { - "id": 18453, + "id": 17344, "properties": { "east": "tall", "north": "none", @@ -145566,7 +138213,7 @@ } }, { - "id": 18454, + "id": 17345, "properties": { "east": "tall", "north": "none", @@ -145577,7 +138224,7 @@ } }, { - "id": 18455, + "id": 17346, "properties": { "east": "tall", "north": "none", @@ -145588,7 +138235,7 @@ } }, { - "id": 18456, + "id": 17347, "properties": { "east": "tall", "north": "none", @@ -145599,7 +138246,7 @@ } }, { - "id": 18457, + "id": 17348, "properties": { "east": "tall", "north": "none", @@ -145610,7 +138257,7 @@ } }, { - "id": 18458, + "id": 17349, "properties": { "east": "tall", "north": "none", @@ -145621,7 +138268,7 @@ } }, { - "id": 18459, + "id": 17350, "properties": { "east": "tall", "north": "none", @@ -145632,7 +138279,7 @@ } }, { - "id": 18460, + "id": 17351, "properties": { "east": "tall", "north": "none", @@ -145643,7 +138290,7 @@ } }, { - "id": 18461, + "id": 17352, "properties": { "east": "tall", "north": "none", @@ -145654,7 +138301,7 @@ } }, { - "id": 18462, + "id": 17353, "properties": { "east": "tall", "north": "none", @@ -145665,7 +138312,7 @@ } }, { - "id": 18463, + "id": 17354, "properties": { "east": "tall", "north": "none", @@ -145676,7 +138323,7 @@ } }, { - "id": 18464, + "id": 17355, "properties": { "east": "tall", "north": "none", @@ -145687,7 +138334,7 @@ } }, { - "id": 18465, + "id": 17356, "properties": { "east": "tall", "north": "none", @@ -145698,7 +138345,7 @@ } }, { - "id": 18466, + "id": 17357, "properties": { "east": "tall", "north": "none", @@ -145709,7 +138356,7 @@ } }, { - "id": 18467, + "id": 17358, "properties": { "east": "tall", "north": "none", @@ -145720,7 +138367,7 @@ } }, { - "id": 18468, + "id": 17359, "properties": { "east": "tall", "north": "none", @@ -145731,7 +138378,7 @@ } }, { - "id": 18469, + "id": 17360, "properties": { "east": "tall", "north": "none", @@ -145742,7 +138389,7 @@ } }, { - "id": 18470, + "id": 17361, "properties": { "east": "tall", "north": "none", @@ -145753,7 +138400,7 @@ } }, { - "id": 18471, + "id": 17362, "properties": { "east": "tall", "north": "none", @@ -145764,7 +138411,7 @@ } }, { - "id": 18472, + "id": 17363, "properties": { "east": "tall", "north": "none", @@ -145775,7 +138422,7 @@ } }, { - "id": 18473, + "id": 17364, "properties": { "east": "tall", "north": "none", @@ -145786,7 +138433,7 @@ } }, { - "id": 18474, + "id": 17365, "properties": { "east": "tall", "north": "none", @@ -145797,7 +138444,7 @@ } }, { - "id": 18475, + "id": 17366, "properties": { "east": "tall", "north": "none", @@ -145808,7 +138455,7 @@ } }, { - "id": 18476, + "id": 17367, "properties": { "east": "tall", "north": "none", @@ -145819,7 +138466,7 @@ } }, { - "id": 18477, + "id": 17368, "properties": { "east": "tall", "north": "none", @@ -145830,7 +138477,7 @@ } }, { - "id": 18478, + "id": 17369, "properties": { "east": "tall", "north": "none", @@ -145841,7 +138488,7 @@ } }, { - "id": 18479, + "id": 17370, "properties": { "east": "tall", "north": "none", @@ -145852,7 +138499,7 @@ } }, { - "id": 18480, + "id": 17371, "properties": { "east": "tall", "north": "none", @@ -145863,7 +138510,7 @@ } }, { - "id": 18481, + "id": 17372, "properties": { "east": "tall", "north": "none", @@ -145874,7 +138521,7 @@ } }, { - "id": 18482, + "id": 17373, "properties": { "east": "tall", "north": "none", @@ -145885,7 +138532,7 @@ } }, { - "id": 18483, + "id": 17374, "properties": { "east": "tall", "north": "none", @@ -145896,7 +138543,7 @@ } }, { - "id": 18484, + "id": 17375, "properties": { "east": "tall", "north": "none", @@ -145907,7 +138554,7 @@ } }, { - "id": 18485, + "id": 17376, "properties": { "east": "tall", "north": "none", @@ -145918,7 +138565,7 @@ } }, { - "id": 18486, + "id": 17377, "properties": { "east": "tall", "north": "none", @@ -145929,7 +138576,7 @@ } }, { - "id": 18487, + "id": 17378, "properties": { "east": "tall", "north": "none", @@ -145940,7 +138587,7 @@ } }, { - "id": 18488, + "id": 17379, "properties": { "east": "tall", "north": "low", @@ -145951,7 +138598,7 @@ } }, { - "id": 18489, + "id": 17380, "properties": { "east": "tall", "north": "low", @@ -145962,7 +138609,7 @@ } }, { - "id": 18490, + "id": 17381, "properties": { "east": "tall", "north": "low", @@ -145973,7 +138620,7 @@ } }, { - "id": 18491, + "id": 17382, "properties": { "east": "tall", "north": "low", @@ -145984,7 +138631,7 @@ } }, { - "id": 18492, + "id": 17383, "properties": { "east": "tall", "north": "low", @@ -145995,7 +138642,7 @@ } }, { - "id": 18493, + "id": 17384, "properties": { "east": "tall", "north": "low", @@ -146006,7 +138653,7 @@ } }, { - "id": 18494, + "id": 17385, "properties": { "east": "tall", "north": "low", @@ -146017,7 +138664,7 @@ } }, { - "id": 18495, + "id": 17386, "properties": { "east": "tall", "north": "low", @@ -146028,7 +138675,7 @@ } }, { - "id": 18496, + "id": 17387, "properties": { "east": "tall", "north": "low", @@ -146039,7 +138686,7 @@ } }, { - "id": 18497, + "id": 17388, "properties": { "east": "tall", "north": "low", @@ -146050,7 +138697,7 @@ } }, { - "id": 18498, + "id": 17389, "properties": { "east": "tall", "north": "low", @@ -146061,7 +138708,7 @@ } }, { - "id": 18499, + "id": 17390, "properties": { "east": "tall", "north": "low", @@ -146072,7 +138719,7 @@ } }, { - "id": 18500, + "id": 17391, "properties": { "east": "tall", "north": "low", @@ -146083,7 +138730,7 @@ } }, { - "id": 18501, + "id": 17392, "properties": { "east": "tall", "north": "low", @@ -146094,7 +138741,7 @@ } }, { - "id": 18502, + "id": 17393, "properties": { "east": "tall", "north": "low", @@ -146105,7 +138752,7 @@ } }, { - "id": 18503, + "id": 17394, "properties": { "east": "tall", "north": "low", @@ -146116,7 +138763,7 @@ } }, { - "id": 18504, + "id": 17395, "properties": { "east": "tall", "north": "low", @@ -146127,7 +138774,7 @@ } }, { - "id": 18505, + "id": 17396, "properties": { "east": "tall", "north": "low", @@ -146138,7 +138785,7 @@ } }, { - "id": 18506, + "id": 17397, "properties": { "east": "tall", "north": "low", @@ -146149,7 +138796,7 @@ } }, { - "id": 18507, + "id": 17398, "properties": { "east": "tall", "north": "low", @@ -146160,7 +138807,7 @@ } }, { - "id": 18508, + "id": 17399, "properties": { "east": "tall", "north": "low", @@ -146171,7 +138818,7 @@ } }, { - "id": 18509, + "id": 17400, "properties": { "east": "tall", "north": "low", @@ -146182,7 +138829,7 @@ } }, { - "id": 18510, + "id": 17401, "properties": { "east": "tall", "north": "low", @@ -146193,7 +138840,7 @@ } }, { - "id": 18511, + "id": 17402, "properties": { "east": "tall", "north": "low", @@ -146204,7 +138851,7 @@ } }, { - "id": 18512, + "id": 17403, "properties": { "east": "tall", "north": "low", @@ -146215,7 +138862,7 @@ } }, { - "id": 18513, + "id": 17404, "properties": { "east": "tall", "north": "low", @@ -146226,7 +138873,7 @@ } }, { - "id": 18514, + "id": 17405, "properties": { "east": "tall", "north": "low", @@ -146237,7 +138884,7 @@ } }, { - "id": 18515, + "id": 17406, "properties": { "east": "tall", "north": "low", @@ -146248,7 +138895,7 @@ } }, { - "id": 18516, + "id": 17407, "properties": { "east": "tall", "north": "low", @@ -146259,7 +138906,7 @@ } }, { - "id": 18517, + "id": 17408, "properties": { "east": "tall", "north": "low", @@ -146270,7 +138917,7 @@ } }, { - "id": 18518, + "id": 17409, "properties": { "east": "tall", "north": "low", @@ -146281,7 +138928,7 @@ } }, { - "id": 18519, + "id": 17410, "properties": { "east": "tall", "north": "low", @@ -146292,7 +138939,7 @@ } }, { - "id": 18520, + "id": 17411, "properties": { "east": "tall", "north": "low", @@ -146303,7 +138950,7 @@ } }, { - "id": 18521, + "id": 17412, "properties": { "east": "tall", "north": "low", @@ -146314,7 +138961,7 @@ } }, { - "id": 18522, + "id": 17413, "properties": { "east": "tall", "north": "low", @@ -146325,7 +138972,7 @@ } }, { - "id": 18523, + "id": 17414, "properties": { "east": "tall", "north": "low", @@ -146336,7 +138983,7 @@ } }, { - "id": 18524, + "id": 17415, "properties": { "east": "tall", "north": "tall", @@ -146347,7 +138994,7 @@ } }, { - "id": 18525, + "id": 17416, "properties": { "east": "tall", "north": "tall", @@ -146358,7 +139005,7 @@ } }, { - "id": 18526, + "id": 17417, "properties": { "east": "tall", "north": "tall", @@ -146369,7 +139016,7 @@ } }, { - "id": 18527, + "id": 17418, "properties": { "east": "tall", "north": "tall", @@ -146380,7 +139027,7 @@ } }, { - "id": 18528, + "id": 17419, "properties": { "east": "tall", "north": "tall", @@ -146391,7 +139038,7 @@ } }, { - "id": 18529, + "id": 17420, "properties": { "east": "tall", "north": "tall", @@ -146402,7 +139049,7 @@ } }, { - "id": 18530, + "id": 17421, "properties": { "east": "tall", "north": "tall", @@ -146413,7 +139060,7 @@ } }, { - "id": 18531, + "id": 17422, "properties": { "east": "tall", "north": "tall", @@ -146424,7 +139071,7 @@ } }, { - "id": 18532, + "id": 17423, "properties": { "east": "tall", "north": "tall", @@ -146435,7 +139082,7 @@ } }, { - "id": 18533, + "id": 17424, "properties": { "east": "tall", "north": "tall", @@ -146446,7 +139093,7 @@ } }, { - "id": 18534, + "id": 17425, "properties": { "east": "tall", "north": "tall", @@ -146457,7 +139104,7 @@ } }, { - "id": 18535, + "id": 17426, "properties": { "east": "tall", "north": "tall", @@ -146468,7 +139115,7 @@ } }, { - "id": 18536, + "id": 17427, "properties": { "east": "tall", "north": "tall", @@ -146479,7 +139126,7 @@ } }, { - "id": 18537, + "id": 17428, "properties": { "east": "tall", "north": "tall", @@ -146490,7 +139137,7 @@ } }, { - "id": 18538, + "id": 17429, "properties": { "east": "tall", "north": "tall", @@ -146501,7 +139148,7 @@ } }, { - "id": 18539, + "id": 17430, "properties": { "east": "tall", "north": "tall", @@ -146512,7 +139159,7 @@ } }, { - "id": 18540, + "id": 17431, "properties": { "east": "tall", "north": "tall", @@ -146523,7 +139170,7 @@ } }, { - "id": 18541, + "id": 17432, "properties": { "east": "tall", "north": "tall", @@ -146534,7 +139181,7 @@ } }, { - "id": 18542, + "id": 17433, "properties": { "east": "tall", "north": "tall", @@ -146545,7 +139192,7 @@ } }, { - "id": 18543, + "id": 17434, "properties": { "east": "tall", "north": "tall", @@ -146556,7 +139203,7 @@ } }, { - "id": 18544, + "id": 17435, "properties": { "east": "tall", "north": "tall", @@ -146567,7 +139214,7 @@ } }, { - "id": 18545, + "id": 17436, "properties": { "east": "tall", "north": "tall", @@ -146578,7 +139225,7 @@ } }, { - "id": 18546, + "id": 17437, "properties": { "east": "tall", "north": "tall", @@ -146589,7 +139236,7 @@ } }, { - "id": 18547, + "id": 17438, "properties": { "east": "tall", "north": "tall", @@ -146600,7 +139247,7 @@ } }, { - "id": 18548, + "id": 17439, "properties": { "east": "tall", "north": "tall", @@ -146611,7 +139258,7 @@ } }, { - "id": 18549, + "id": 17440, "properties": { "east": "tall", "north": "tall", @@ -146622,7 +139269,7 @@ } }, { - "id": 18550, + "id": 17441, "properties": { "east": "tall", "north": "tall", @@ -146633,7 +139280,7 @@ } }, { - "id": 18551, + "id": 17442, "properties": { "east": "tall", "north": "tall", @@ -146644,7 +139291,7 @@ } }, { - "id": 18552, + "id": 17443, "properties": { "east": "tall", "north": "tall", @@ -146655,7 +139302,7 @@ } }, { - "id": 18553, + "id": 17444, "properties": { "east": "tall", "north": "tall", @@ -146666,7 +139313,7 @@ } }, { - "id": 18554, + "id": 17445, "properties": { "east": "tall", "north": "tall", @@ -146677,7 +139324,7 @@ } }, { - "id": 18555, + "id": 17446, "properties": { "east": "tall", "north": "tall", @@ -146688,7 +139335,7 @@ } }, { - "id": 18556, + "id": 17447, "properties": { "east": "tall", "north": "tall", @@ -146699,7 +139346,7 @@ } }, { - "id": 18557, + "id": 17448, "properties": { "east": "tall", "north": "tall", @@ -146710,7 +139357,7 @@ } }, { - "id": 18558, + "id": 17449, "properties": { "east": "tall", "north": "tall", @@ -146721,7 +139368,7 @@ } }, { - "id": 18559, + "id": 17450, "properties": { "east": "tall", "north": "tall", @@ -146741,7 +139388,7 @@ "states": [ { "default": true, - "id": 7558 + "id": 6785 } ] }, @@ -146813,7 +139460,7 @@ "states": [ { "default": true, - "id": 7693, + "id": 6920, "properties": { "down": "true", "east": "true", @@ -146824,7 +139471,7 @@ } }, { - "id": 7694, + "id": 6921, "properties": { "down": "true", "east": "true", @@ -146835,7 +139482,7 @@ } }, { - "id": 7695, + "id": 6922, "properties": { "down": "true", "east": "true", @@ -146846,7 +139493,7 @@ } }, { - "id": 7696, + "id": 6923, "properties": { "down": "true", "east": "true", @@ -146857,7 +139504,7 @@ } }, { - "id": 7697, + "id": 6924, "properties": { "down": "true", "east": "true", @@ -146868,7 +139515,7 @@ } }, { - "id": 7698, + "id": 6925, "properties": { "down": "true", "east": "true", @@ -146879,7 +139526,7 @@ } }, { - "id": 7699, + "id": 6926, "properties": { "down": "true", "east": "true", @@ -146890,7 +139537,7 @@ } }, { - "id": 7700, + "id": 6927, "properties": { "down": "true", "east": "true", @@ -146901,7 +139548,7 @@ } }, { - "id": 7701, + "id": 6928, "properties": { "down": "true", "east": "true", @@ -146912,7 +139559,7 @@ } }, { - "id": 7702, + "id": 6929, "properties": { "down": "true", "east": "true", @@ -146923,7 +139570,7 @@ } }, { - "id": 7703, + "id": 6930, "properties": { "down": "true", "east": "true", @@ -146934,7 +139581,7 @@ } }, { - "id": 7704, + "id": 6931, "properties": { "down": "true", "east": "true", @@ -146945,7 +139592,7 @@ } }, { - "id": 7705, + "id": 6932, "properties": { "down": "true", "east": "true", @@ -146956,7 +139603,7 @@ } }, { - "id": 7706, + "id": 6933, "properties": { "down": "true", "east": "true", @@ -146967,7 +139614,7 @@ } }, { - "id": 7707, + "id": 6934, "properties": { "down": "true", "east": "true", @@ -146978,7 +139625,7 @@ } }, { - "id": 7708, + "id": 6935, "properties": { "down": "true", "east": "true", @@ -146989,7 +139636,7 @@ } }, { - "id": 7709, + "id": 6936, "properties": { "down": "true", "east": "false", @@ -147000,7 +139647,7 @@ } }, { - "id": 7710, + "id": 6937, "properties": { "down": "true", "east": "false", @@ -147011,7 +139658,7 @@ } }, { - "id": 7711, + "id": 6938, "properties": { "down": "true", "east": "false", @@ -147022,7 +139669,7 @@ } }, { - "id": 7712, + "id": 6939, "properties": { "down": "true", "east": "false", @@ -147033,7 +139680,7 @@ } }, { - "id": 7713, + "id": 6940, "properties": { "down": "true", "east": "false", @@ -147044,7 +139691,7 @@ } }, { - "id": 7714, + "id": 6941, "properties": { "down": "true", "east": "false", @@ -147055,7 +139702,7 @@ } }, { - "id": 7715, + "id": 6942, "properties": { "down": "true", "east": "false", @@ -147066,7 +139713,7 @@ } }, { - "id": 7716, + "id": 6943, "properties": { "down": "true", "east": "false", @@ -147077,7 +139724,7 @@ } }, { - "id": 7717, + "id": 6944, "properties": { "down": "true", "east": "false", @@ -147088,7 +139735,7 @@ } }, { - "id": 7718, + "id": 6945, "properties": { "down": "true", "east": "false", @@ -147099,7 +139746,7 @@ } }, { - "id": 7719, + "id": 6946, "properties": { "down": "true", "east": "false", @@ -147110,7 +139757,7 @@ } }, { - "id": 7720, + "id": 6947, "properties": { "down": "true", "east": "false", @@ -147121,7 +139768,7 @@ } }, { - "id": 7721, + "id": 6948, "properties": { "down": "true", "east": "false", @@ -147132,7 +139779,7 @@ } }, { - "id": 7722, + "id": 6949, "properties": { "down": "true", "east": "false", @@ -147143,7 +139790,7 @@ } }, { - "id": 7723, + "id": 6950, "properties": { "down": "true", "east": "false", @@ -147154,7 +139801,7 @@ } }, { - "id": 7724, + "id": 6951, "properties": { "down": "true", "east": "false", @@ -147165,7 +139812,7 @@ } }, { - "id": 7725, + "id": 6952, "properties": { "down": "false", "east": "true", @@ -147176,7 +139823,7 @@ } }, { - "id": 7726, + "id": 6953, "properties": { "down": "false", "east": "true", @@ -147187,7 +139834,7 @@ } }, { - "id": 7727, + "id": 6954, "properties": { "down": "false", "east": "true", @@ -147198,7 +139845,7 @@ } }, { - "id": 7728, + "id": 6955, "properties": { "down": "false", "east": "true", @@ -147209,7 +139856,7 @@ } }, { - "id": 7729, + "id": 6956, "properties": { "down": "false", "east": "true", @@ -147220,7 +139867,7 @@ } }, { - "id": 7730, + "id": 6957, "properties": { "down": "false", "east": "true", @@ -147231,7 +139878,7 @@ } }, { - "id": 7731, + "id": 6958, "properties": { "down": "false", "east": "true", @@ -147242,7 +139889,7 @@ } }, { - "id": 7732, + "id": 6959, "properties": { "down": "false", "east": "true", @@ -147253,7 +139900,7 @@ } }, { - "id": 7733, + "id": 6960, "properties": { "down": "false", "east": "true", @@ -147264,7 +139911,7 @@ } }, { - "id": 7734, + "id": 6961, "properties": { "down": "false", "east": "true", @@ -147275,7 +139922,7 @@ } }, { - "id": 7735, + "id": 6962, "properties": { "down": "false", "east": "true", @@ -147286,7 +139933,7 @@ } }, { - "id": 7736, + "id": 6963, "properties": { "down": "false", "east": "true", @@ -147297,7 +139944,7 @@ } }, { - "id": 7737, + "id": 6964, "properties": { "down": "false", "east": "true", @@ -147308,7 +139955,7 @@ } }, { - "id": 7738, + "id": 6965, "properties": { "down": "false", "east": "true", @@ -147319,7 +139966,7 @@ } }, { - "id": 7739, + "id": 6966, "properties": { "down": "false", "east": "true", @@ -147330,7 +139977,7 @@ } }, { - "id": 7740, + "id": 6967, "properties": { "down": "false", "east": "true", @@ -147341,7 +139988,7 @@ } }, { - "id": 7741, + "id": 6968, "properties": { "down": "false", "east": "false", @@ -147352,7 +139999,7 @@ } }, { - "id": 7742, + "id": 6969, "properties": { "down": "false", "east": "false", @@ -147363,7 +140010,7 @@ } }, { - "id": 7743, + "id": 6970, "properties": { "down": "false", "east": "false", @@ -147374,7 +140021,7 @@ } }, { - "id": 7744, + "id": 6971, "properties": { "down": "false", "east": "false", @@ -147385,7 +140032,7 @@ } }, { - "id": 7745, + "id": 6972, "properties": { "down": "false", "east": "false", @@ -147396,7 +140043,7 @@ } }, { - "id": 7746, + "id": 6973, "properties": { "down": "false", "east": "false", @@ -147407,7 +140054,7 @@ } }, { - "id": 7747, + "id": 6974, "properties": { "down": "false", "east": "false", @@ -147418,7 +140065,7 @@ } }, { - "id": 7748, + "id": 6975, "properties": { "down": "false", "east": "false", @@ -147429,7 +140076,7 @@ } }, { - "id": 7749, + "id": 6976, "properties": { "down": "false", "east": "false", @@ -147440,7 +140087,7 @@ } }, { - "id": 7750, + "id": 6977, "properties": { "down": "false", "east": "false", @@ -147451,7 +140098,7 @@ } }, { - "id": 7751, + "id": 6978, "properties": { "down": "false", "east": "false", @@ -147462,7 +140109,7 @@ } }, { - "id": 7752, + "id": 6979, "properties": { "down": "false", "east": "false", @@ -147473,7 +140120,7 @@ } }, { - "id": 7753, + "id": 6980, "properties": { "down": "false", "east": "false", @@ -147484,7 +140131,7 @@ } }, { - "id": 7754, + "id": 6981, "properties": { "down": "false", "east": "false", @@ -147495,7 +140142,7 @@ } }, { - "id": 7755, + "id": 6982, "properties": { "down": "false", "east": "false", @@ -147506,7 +140153,7 @@ } }, { - "id": 7756, + "id": 6983, "properties": { "down": "false", "east": "false", @@ -147531,14 +140178,14 @@ }, "states": [ { - "id": 8717, + "id": 7640, "properties": { "snowy": "true" } }, { "default": true, - "id": 8718, + "id": 7641, "properties": { "snowy": "false" } @@ -147574,7 +140221,7 @@ }, "states": [ { - "id": 9134, + "id": 8057, "properties": { "east": "true", "north": "true", @@ -147584,7 +140231,7 @@ } }, { - "id": 9135, + "id": 8058, "properties": { "east": "true", "north": "true", @@ -147594,7 +140241,7 @@ } }, { - "id": 9136, + "id": 8059, "properties": { "east": "true", "north": "true", @@ -147604,7 +140251,7 @@ } }, { - "id": 9137, + "id": 8060, "properties": { "east": "true", "north": "true", @@ -147614,7 +140261,7 @@ } }, { - "id": 9138, + "id": 8061, "properties": { "east": "true", "north": "true", @@ -147624,7 +140271,7 @@ } }, { - "id": 9139, + "id": 8062, "properties": { "east": "true", "north": "true", @@ -147634,7 +140281,7 @@ } }, { - "id": 9140, + "id": 8063, "properties": { "east": "true", "north": "true", @@ -147644,7 +140291,7 @@ } }, { - "id": 9141, + "id": 8064, "properties": { "east": "true", "north": "true", @@ -147654,7 +140301,7 @@ } }, { - "id": 9142, + "id": 8065, "properties": { "east": "true", "north": "false", @@ -147664,7 +140311,7 @@ } }, { - "id": 9143, + "id": 8066, "properties": { "east": "true", "north": "false", @@ -147674,7 +140321,7 @@ } }, { - "id": 9144, + "id": 8067, "properties": { "east": "true", "north": "false", @@ -147684,7 +140331,7 @@ } }, { - "id": 9145, + "id": 8068, "properties": { "east": "true", "north": "false", @@ -147694,7 +140341,7 @@ } }, { - "id": 9146, + "id": 8069, "properties": { "east": "true", "north": "false", @@ -147704,7 +140351,7 @@ } }, { - "id": 9147, + "id": 8070, "properties": { "east": "true", "north": "false", @@ -147714,7 +140361,7 @@ } }, { - "id": 9148, + "id": 8071, "properties": { "east": "true", "north": "false", @@ -147724,7 +140371,7 @@ } }, { - "id": 9149, + "id": 8072, "properties": { "east": "true", "north": "false", @@ -147734,7 +140381,7 @@ } }, { - "id": 9150, + "id": 8073, "properties": { "east": "false", "north": "true", @@ -147744,7 +140391,7 @@ } }, { - "id": 9151, + "id": 8074, "properties": { "east": "false", "north": "true", @@ -147754,7 +140401,7 @@ } }, { - "id": 9152, + "id": 8075, "properties": { "east": "false", "north": "true", @@ -147764,7 +140411,7 @@ } }, { - "id": 9153, + "id": 8076, "properties": { "east": "false", "north": "true", @@ -147774,7 +140421,7 @@ } }, { - "id": 9154, + "id": 8077, "properties": { "east": "false", "north": "true", @@ -147784,7 +140431,7 @@ } }, { - "id": 9155, + "id": 8078, "properties": { "east": "false", "north": "true", @@ -147794,7 +140441,7 @@ } }, { - "id": 9156, + "id": 8079, "properties": { "east": "false", "north": "true", @@ -147804,7 +140451,7 @@ } }, { - "id": 9157, + "id": 8080, "properties": { "east": "false", "north": "true", @@ -147814,7 +140461,7 @@ } }, { - "id": 9158, + "id": 8081, "properties": { "east": "false", "north": "false", @@ -147824,7 +140471,7 @@ } }, { - "id": 9159, + "id": 8082, "properties": { "east": "false", "north": "false", @@ -147834,7 +140481,7 @@ } }, { - "id": 9160, + "id": 8083, "properties": { "east": "false", "north": "false", @@ -147844,7 +140491,7 @@ } }, { - "id": 9161, + "id": 8084, "properties": { "east": "false", "north": "false", @@ -147854,7 +140501,7 @@ } }, { - "id": 9162, + "id": 8085, "properties": { "east": "false", "north": "false", @@ -147864,7 +140511,7 @@ } }, { - "id": 9163, + "id": 8086, "properties": { "east": "false", "north": "false", @@ -147874,7 +140521,7 @@ } }, { - "id": 9164, + "id": 8087, "properties": { "east": "false", "north": "false", @@ -147885,7 +140532,7 @@ }, { "default": true, - "id": 9165, + "id": 8088, "properties": { "east": "false", "north": "false", @@ -147914,21 +140561,21 @@ }, "states": [ { - "id": 13248, + "id": 12171, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 13249, + "id": 12172, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 13250, + "id": 12173, "properties": { "type": "bottom", "waterlogged": "true" @@ -147936,21 +140583,21 @@ }, { "default": true, - "id": 13251, + "id": 12174, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 13252, + "id": 12175, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 13253, + "id": 12176, "properties": { "type": "double", "waterlogged": "false" @@ -147991,7 +140638,7 @@ }, "states": [ { - "id": 9166, + "id": 8089, "properties": { "facing": "north", "half": "top", @@ -148000,7 +140647,7 @@ } }, { - "id": 9167, + "id": 8090, "properties": { "facing": "north", "half": "top", @@ -148009,7 +140656,7 @@ } }, { - "id": 9168, + "id": 8091, "properties": { "facing": "north", "half": "top", @@ -148018,7 +140665,7 @@ } }, { - "id": 9169, + "id": 8092, "properties": { "facing": "north", "half": "top", @@ -148027,7 +140674,7 @@ } }, { - "id": 9170, + "id": 8093, "properties": { "facing": "north", "half": "top", @@ -148036,7 +140683,7 @@ } }, { - "id": 9171, + "id": 8094, "properties": { "facing": "north", "half": "top", @@ -148045,7 +140692,7 @@ } }, { - "id": 9172, + "id": 8095, "properties": { "facing": "north", "half": "top", @@ -148054,7 +140701,7 @@ } }, { - "id": 9173, + "id": 8096, "properties": { "facing": "north", "half": "top", @@ -148063,7 +140710,7 @@ } }, { - "id": 9174, + "id": 8097, "properties": { "facing": "north", "half": "top", @@ -148072,7 +140719,7 @@ } }, { - "id": 9175, + "id": 8098, "properties": { "facing": "north", "half": "top", @@ -148081,7 +140728,7 @@ } }, { - "id": 9176, + "id": 8099, "properties": { "facing": "north", "half": "bottom", @@ -148091,7 +140738,7 @@ }, { "default": true, - "id": 9177, + "id": 8100, "properties": { "facing": "north", "half": "bottom", @@ -148100,7 +140747,7 @@ } }, { - "id": 9178, + "id": 8101, "properties": { "facing": "north", "half": "bottom", @@ -148109,7 +140756,7 @@ } }, { - "id": 9179, + "id": 8102, "properties": { "facing": "north", "half": "bottom", @@ -148118,7 +140765,7 @@ } }, { - "id": 9180, + "id": 8103, "properties": { "facing": "north", "half": "bottom", @@ -148127,7 +140774,7 @@ } }, { - "id": 9181, + "id": 8104, "properties": { "facing": "north", "half": "bottom", @@ -148136,7 +140783,7 @@ } }, { - "id": 9182, + "id": 8105, "properties": { "facing": "north", "half": "bottom", @@ -148145,7 +140792,7 @@ } }, { - "id": 9183, + "id": 8106, "properties": { "facing": "north", "half": "bottom", @@ -148154,7 +140801,7 @@ } }, { - "id": 9184, + "id": 8107, "properties": { "facing": "north", "half": "bottom", @@ -148163,7 +140810,7 @@ } }, { - "id": 9185, + "id": 8108, "properties": { "facing": "north", "half": "bottom", @@ -148172,7 +140819,7 @@ } }, { - "id": 9186, + "id": 8109, "properties": { "facing": "south", "half": "top", @@ -148181,7 +140828,7 @@ } }, { - "id": 9187, + "id": 8110, "properties": { "facing": "south", "half": "top", @@ -148190,7 +140837,7 @@ } }, { - "id": 9188, + "id": 8111, "properties": { "facing": "south", "half": "top", @@ -148199,7 +140846,7 @@ } }, { - "id": 9189, + "id": 8112, "properties": { "facing": "south", "half": "top", @@ -148208,7 +140855,7 @@ } }, { - "id": 9190, + "id": 8113, "properties": { "facing": "south", "half": "top", @@ -148217,7 +140864,7 @@ } }, { - "id": 9191, + "id": 8114, "properties": { "facing": "south", "half": "top", @@ -148226,7 +140873,7 @@ } }, { - "id": 9192, + "id": 8115, "properties": { "facing": "south", "half": "top", @@ -148235,7 +140882,7 @@ } }, { - "id": 9193, + "id": 8116, "properties": { "facing": "south", "half": "top", @@ -148244,7 +140891,7 @@ } }, { - "id": 9194, + "id": 8117, "properties": { "facing": "south", "half": "top", @@ -148253,7 +140900,7 @@ } }, { - "id": 9195, + "id": 8118, "properties": { "facing": "south", "half": "top", @@ -148262,7 +140909,7 @@ } }, { - "id": 9196, + "id": 8119, "properties": { "facing": "south", "half": "bottom", @@ -148271,7 +140918,7 @@ } }, { - "id": 9197, + "id": 8120, "properties": { "facing": "south", "half": "bottom", @@ -148280,7 +140927,7 @@ } }, { - "id": 9198, + "id": 8121, "properties": { "facing": "south", "half": "bottom", @@ -148289,7 +140936,7 @@ } }, { - "id": 9199, + "id": 8122, "properties": { "facing": "south", "half": "bottom", @@ -148298,7 +140945,7 @@ } }, { - "id": 9200, + "id": 8123, "properties": { "facing": "south", "half": "bottom", @@ -148307,7 +140954,7 @@ } }, { - "id": 9201, + "id": 8124, "properties": { "facing": "south", "half": "bottom", @@ -148316,7 +140963,7 @@ } }, { - "id": 9202, + "id": 8125, "properties": { "facing": "south", "half": "bottom", @@ -148325,7 +140972,7 @@ } }, { - "id": 9203, + "id": 8126, "properties": { "facing": "south", "half": "bottom", @@ -148334,7 +140981,7 @@ } }, { - "id": 9204, + "id": 8127, "properties": { "facing": "south", "half": "bottom", @@ -148343,7 +140990,7 @@ } }, { - "id": 9205, + "id": 8128, "properties": { "facing": "south", "half": "bottom", @@ -148352,7 +140999,7 @@ } }, { - "id": 9206, + "id": 8129, "properties": { "facing": "west", "half": "top", @@ -148361,7 +141008,7 @@ } }, { - "id": 9207, + "id": 8130, "properties": { "facing": "west", "half": "top", @@ -148370,7 +141017,7 @@ } }, { - "id": 9208, + "id": 8131, "properties": { "facing": "west", "half": "top", @@ -148379,7 +141026,7 @@ } }, { - "id": 9209, + "id": 8132, "properties": { "facing": "west", "half": "top", @@ -148388,7 +141035,7 @@ } }, { - "id": 9210, + "id": 8133, "properties": { "facing": "west", "half": "top", @@ -148397,7 +141044,7 @@ } }, { - "id": 9211, + "id": 8134, "properties": { "facing": "west", "half": "top", @@ -148406,7 +141053,7 @@ } }, { - "id": 9212, + "id": 8135, "properties": { "facing": "west", "half": "top", @@ -148415,7 +141062,7 @@ } }, { - "id": 9213, + "id": 8136, "properties": { "facing": "west", "half": "top", @@ -148424,7 +141071,7 @@ } }, { - "id": 9214, + "id": 8137, "properties": { "facing": "west", "half": "top", @@ -148433,7 +141080,7 @@ } }, { - "id": 9215, + "id": 8138, "properties": { "facing": "west", "half": "top", @@ -148442,7 +141089,7 @@ } }, { - "id": 9216, + "id": 8139, "properties": { "facing": "west", "half": "bottom", @@ -148451,7 +141098,7 @@ } }, { - "id": 9217, + "id": 8140, "properties": { "facing": "west", "half": "bottom", @@ -148460,7 +141107,7 @@ } }, { - "id": 9218, + "id": 8141, "properties": { "facing": "west", "half": "bottom", @@ -148469,7 +141116,7 @@ } }, { - "id": 9219, + "id": 8142, "properties": { "facing": "west", "half": "bottom", @@ -148478,7 +141125,7 @@ } }, { - "id": 9220, + "id": 8143, "properties": { "facing": "west", "half": "bottom", @@ -148487,7 +141134,7 @@ } }, { - "id": 9221, + "id": 8144, "properties": { "facing": "west", "half": "bottom", @@ -148496,7 +141143,7 @@ } }, { - "id": 9222, + "id": 8145, "properties": { "facing": "west", "half": "bottom", @@ -148505,7 +141152,7 @@ } }, { - "id": 9223, + "id": 8146, "properties": { "facing": "west", "half": "bottom", @@ -148514,7 +141161,7 @@ } }, { - "id": 9224, + "id": 8147, "properties": { "facing": "west", "half": "bottom", @@ -148523,7 +141170,7 @@ } }, { - "id": 9225, + "id": 8148, "properties": { "facing": "west", "half": "bottom", @@ -148532,7 +141179,7 @@ } }, { - "id": 9226, + "id": 8149, "properties": { "facing": "east", "half": "top", @@ -148541,7 +141188,7 @@ } }, { - "id": 9227, + "id": 8150, "properties": { "facing": "east", "half": "top", @@ -148550,7 +141197,7 @@ } }, { - "id": 9228, + "id": 8151, "properties": { "facing": "east", "half": "top", @@ -148559,7 +141206,7 @@ } }, { - "id": 9229, + "id": 8152, "properties": { "facing": "east", "half": "top", @@ -148568,7 +141215,7 @@ } }, { - "id": 9230, + "id": 8153, "properties": { "facing": "east", "half": "top", @@ -148577,7 +141224,7 @@ } }, { - "id": 9231, + "id": 8154, "properties": { "facing": "east", "half": "top", @@ -148586,7 +141233,7 @@ } }, { - "id": 9232, + "id": 8155, "properties": { "facing": "east", "half": "top", @@ -148595,7 +141242,7 @@ } }, { - "id": 9233, + "id": 8156, "properties": { "facing": "east", "half": "top", @@ -148604,7 +141251,7 @@ } }, { - "id": 9234, + "id": 8157, "properties": { "facing": "east", "half": "top", @@ -148613,7 +141260,7 @@ } }, { - "id": 9235, + "id": 8158, "properties": { "facing": "east", "half": "top", @@ -148622,7 +141269,7 @@ } }, { - "id": 9236, + "id": 8159, "properties": { "facing": "east", "half": "bottom", @@ -148631,7 +141278,7 @@ } }, { - "id": 9237, + "id": 8160, "properties": { "facing": "east", "half": "bottom", @@ -148640,7 +141287,7 @@ } }, { - "id": 9238, + "id": 8161, "properties": { "facing": "east", "half": "bottom", @@ -148649,7 +141296,7 @@ } }, { - "id": 9239, + "id": 8162, "properties": { "facing": "east", "half": "bottom", @@ -148658,7 +141305,7 @@ } }, { - "id": 9240, + "id": 8163, "properties": { "facing": "east", "half": "bottom", @@ -148667,7 +141314,7 @@ } }, { - "id": 9241, + "id": 8164, "properties": { "facing": "east", "half": "bottom", @@ -148676,7 +141323,7 @@ } }, { - "id": 9242, + "id": 8165, "properties": { "facing": "east", "half": "bottom", @@ -148685,7 +141332,7 @@ } }, { - "id": 9243, + "id": 8166, "properties": { "facing": "east", "half": "bottom", @@ -148694,7 +141341,7 @@ } }, { - "id": 9244, + "id": 8167, "properties": { "facing": "east", "half": "bottom", @@ -148703,7 +141350,7 @@ } }, { - "id": 9245, + "id": 8168, "properties": { "facing": "east", "half": "bottom", @@ -148750,7 +141397,7 @@ }, "states": [ { - "id": 18560, + "id": 17451, "properties": { "east": "none", "north": "none", @@ -148761,7 +141408,7 @@ } }, { - "id": 18561, + "id": 17452, "properties": { "east": "none", "north": "none", @@ -148772,7 +141419,7 @@ } }, { - "id": 18562, + "id": 17453, "properties": { "east": "none", "north": "none", @@ -148784,7 +141431,7 @@ }, { "default": true, - "id": 18563, + "id": 17454, "properties": { "east": "none", "north": "none", @@ -148795,7 +141442,7 @@ } }, { - "id": 18564, + "id": 17455, "properties": { "east": "none", "north": "none", @@ -148806,7 +141453,7 @@ } }, { - "id": 18565, + "id": 17456, "properties": { "east": "none", "north": "none", @@ -148817,7 +141464,7 @@ } }, { - "id": 18566, + "id": 17457, "properties": { "east": "none", "north": "none", @@ -148828,7 +141475,7 @@ } }, { - "id": 18567, + "id": 17458, "properties": { "east": "none", "north": "none", @@ -148839,7 +141486,7 @@ } }, { - "id": 18568, + "id": 17459, "properties": { "east": "none", "north": "none", @@ -148850,7 +141497,7 @@ } }, { - "id": 18569, + "id": 17460, "properties": { "east": "none", "north": "none", @@ -148861,7 +141508,7 @@ } }, { - "id": 18570, + "id": 17461, "properties": { "east": "none", "north": "none", @@ -148872,7 +141519,7 @@ } }, { - "id": 18571, + "id": 17462, "properties": { "east": "none", "north": "none", @@ -148883,7 +141530,7 @@ } }, { - "id": 18572, + "id": 17463, "properties": { "east": "none", "north": "none", @@ -148894,7 +141541,7 @@ } }, { - "id": 18573, + "id": 17464, "properties": { "east": "none", "north": "none", @@ -148905,7 +141552,7 @@ } }, { - "id": 18574, + "id": 17465, "properties": { "east": "none", "north": "none", @@ -148916,7 +141563,7 @@ } }, { - "id": 18575, + "id": 17466, "properties": { "east": "none", "north": "none", @@ -148927,7 +141574,7 @@ } }, { - "id": 18576, + "id": 17467, "properties": { "east": "none", "north": "none", @@ -148938,7 +141585,7 @@ } }, { - "id": 18577, + "id": 17468, "properties": { "east": "none", "north": "none", @@ -148949,7 +141596,7 @@ } }, { - "id": 18578, + "id": 17469, "properties": { "east": "none", "north": "none", @@ -148960,7 +141607,7 @@ } }, { - "id": 18579, + "id": 17470, "properties": { "east": "none", "north": "none", @@ -148971,7 +141618,7 @@ } }, { - "id": 18580, + "id": 17471, "properties": { "east": "none", "north": "none", @@ -148982,7 +141629,7 @@ } }, { - "id": 18581, + "id": 17472, "properties": { "east": "none", "north": "none", @@ -148993,7 +141640,7 @@ } }, { - "id": 18582, + "id": 17473, "properties": { "east": "none", "north": "none", @@ -149004,7 +141651,7 @@ } }, { - "id": 18583, + "id": 17474, "properties": { "east": "none", "north": "none", @@ -149015,7 +141662,7 @@ } }, { - "id": 18584, + "id": 17475, "properties": { "east": "none", "north": "none", @@ -149026,7 +141673,7 @@ } }, { - "id": 18585, + "id": 17476, "properties": { "east": "none", "north": "none", @@ -149037,7 +141684,7 @@ } }, { - "id": 18586, + "id": 17477, "properties": { "east": "none", "north": "none", @@ -149048,7 +141695,7 @@ } }, { - "id": 18587, + "id": 17478, "properties": { "east": "none", "north": "none", @@ -149059,7 +141706,7 @@ } }, { - "id": 18588, + "id": 17479, "properties": { "east": "none", "north": "none", @@ -149070,7 +141717,7 @@ } }, { - "id": 18589, + "id": 17480, "properties": { "east": "none", "north": "none", @@ -149081,7 +141728,7 @@ } }, { - "id": 18590, + "id": 17481, "properties": { "east": "none", "north": "none", @@ -149092,7 +141739,7 @@ } }, { - "id": 18591, + "id": 17482, "properties": { "east": "none", "north": "none", @@ -149103,7 +141750,7 @@ } }, { - "id": 18592, + "id": 17483, "properties": { "east": "none", "north": "none", @@ -149114,7 +141761,7 @@ } }, { - "id": 18593, + "id": 17484, "properties": { "east": "none", "north": "none", @@ -149125,7 +141772,7 @@ } }, { - "id": 18594, + "id": 17485, "properties": { "east": "none", "north": "none", @@ -149136,7 +141783,7 @@ } }, { - "id": 18595, + "id": 17486, "properties": { "east": "none", "north": "none", @@ -149147,7 +141794,7 @@ } }, { - "id": 18596, + "id": 17487, "properties": { "east": "none", "north": "low", @@ -149158,7 +141805,7 @@ } }, { - "id": 18597, + "id": 17488, "properties": { "east": "none", "north": "low", @@ -149169,7 +141816,7 @@ } }, { - "id": 18598, + "id": 17489, "properties": { "east": "none", "north": "low", @@ -149180,7 +141827,7 @@ } }, { - "id": 18599, + "id": 17490, "properties": { "east": "none", "north": "low", @@ -149191,7 +141838,7 @@ } }, { - "id": 18600, + "id": 17491, "properties": { "east": "none", "north": "low", @@ -149202,7 +141849,7 @@ } }, { - "id": 18601, + "id": 17492, "properties": { "east": "none", "north": "low", @@ -149213,7 +141860,7 @@ } }, { - "id": 18602, + "id": 17493, "properties": { "east": "none", "north": "low", @@ -149224,7 +141871,7 @@ } }, { - "id": 18603, + "id": 17494, "properties": { "east": "none", "north": "low", @@ -149235,7 +141882,7 @@ } }, { - "id": 18604, + "id": 17495, "properties": { "east": "none", "north": "low", @@ -149246,7 +141893,7 @@ } }, { - "id": 18605, + "id": 17496, "properties": { "east": "none", "north": "low", @@ -149257,7 +141904,7 @@ } }, { - "id": 18606, + "id": 17497, "properties": { "east": "none", "north": "low", @@ -149268,7 +141915,7 @@ } }, { - "id": 18607, + "id": 17498, "properties": { "east": "none", "north": "low", @@ -149279,7 +141926,7 @@ } }, { - "id": 18608, + "id": 17499, "properties": { "east": "none", "north": "low", @@ -149290,7 +141937,7 @@ } }, { - "id": 18609, + "id": 17500, "properties": { "east": "none", "north": "low", @@ -149301,7 +141948,7 @@ } }, { - "id": 18610, + "id": 17501, "properties": { "east": "none", "north": "low", @@ -149312,7 +141959,7 @@ } }, { - "id": 18611, + "id": 17502, "properties": { "east": "none", "north": "low", @@ -149323,7 +141970,7 @@ } }, { - "id": 18612, + "id": 17503, "properties": { "east": "none", "north": "low", @@ -149334,7 +141981,7 @@ } }, { - "id": 18613, + "id": 17504, "properties": { "east": "none", "north": "low", @@ -149345,7 +141992,7 @@ } }, { - "id": 18614, + "id": 17505, "properties": { "east": "none", "north": "low", @@ -149356,7 +142003,7 @@ } }, { - "id": 18615, + "id": 17506, "properties": { "east": "none", "north": "low", @@ -149367,7 +142014,7 @@ } }, { - "id": 18616, + "id": 17507, "properties": { "east": "none", "north": "low", @@ -149378,7 +142025,7 @@ } }, { - "id": 18617, + "id": 17508, "properties": { "east": "none", "north": "low", @@ -149389,7 +142036,7 @@ } }, { - "id": 18618, + "id": 17509, "properties": { "east": "none", "north": "low", @@ -149400,7 +142047,7 @@ } }, { - "id": 18619, + "id": 17510, "properties": { "east": "none", "north": "low", @@ -149411,7 +142058,7 @@ } }, { - "id": 18620, + "id": 17511, "properties": { "east": "none", "north": "low", @@ -149422,7 +142069,7 @@ } }, { - "id": 18621, + "id": 17512, "properties": { "east": "none", "north": "low", @@ -149433,7 +142080,7 @@ } }, { - "id": 18622, + "id": 17513, "properties": { "east": "none", "north": "low", @@ -149444,7 +142091,7 @@ } }, { - "id": 18623, + "id": 17514, "properties": { "east": "none", "north": "low", @@ -149455,7 +142102,7 @@ } }, { - "id": 18624, + "id": 17515, "properties": { "east": "none", "north": "low", @@ -149466,7 +142113,7 @@ } }, { - "id": 18625, + "id": 17516, "properties": { "east": "none", "north": "low", @@ -149477,7 +142124,7 @@ } }, { - "id": 18626, + "id": 17517, "properties": { "east": "none", "north": "low", @@ -149488,7 +142135,7 @@ } }, { - "id": 18627, + "id": 17518, "properties": { "east": "none", "north": "low", @@ -149499,7 +142146,7 @@ } }, { - "id": 18628, + "id": 17519, "properties": { "east": "none", "north": "low", @@ -149510,7 +142157,7 @@ } }, { - "id": 18629, + "id": 17520, "properties": { "east": "none", "north": "low", @@ -149521,7 +142168,7 @@ } }, { - "id": 18630, + "id": 17521, "properties": { "east": "none", "north": "low", @@ -149532,7 +142179,7 @@ } }, { - "id": 18631, + "id": 17522, "properties": { "east": "none", "north": "low", @@ -149543,7 +142190,7 @@ } }, { - "id": 18632, + "id": 17523, "properties": { "east": "none", "north": "tall", @@ -149554,7 +142201,7 @@ } }, { - "id": 18633, + "id": 17524, "properties": { "east": "none", "north": "tall", @@ -149565,7 +142212,7 @@ } }, { - "id": 18634, + "id": 17525, "properties": { "east": "none", "north": "tall", @@ -149576,7 +142223,7 @@ } }, { - "id": 18635, + "id": 17526, "properties": { "east": "none", "north": "tall", @@ -149587,7 +142234,7 @@ } }, { - "id": 18636, + "id": 17527, "properties": { "east": "none", "north": "tall", @@ -149598,7 +142245,7 @@ } }, { - "id": 18637, + "id": 17528, "properties": { "east": "none", "north": "tall", @@ -149609,7 +142256,7 @@ } }, { - "id": 18638, + "id": 17529, "properties": { "east": "none", "north": "tall", @@ -149620,7 +142267,7 @@ } }, { - "id": 18639, + "id": 17530, "properties": { "east": "none", "north": "tall", @@ -149631,7 +142278,7 @@ } }, { - "id": 18640, + "id": 17531, "properties": { "east": "none", "north": "tall", @@ -149642,7 +142289,7 @@ } }, { - "id": 18641, + "id": 17532, "properties": { "east": "none", "north": "tall", @@ -149653,7 +142300,7 @@ } }, { - "id": 18642, + "id": 17533, "properties": { "east": "none", "north": "tall", @@ -149664,7 +142311,7 @@ } }, { - "id": 18643, + "id": 17534, "properties": { "east": "none", "north": "tall", @@ -149675,7 +142322,7 @@ } }, { - "id": 18644, + "id": 17535, "properties": { "east": "none", "north": "tall", @@ -149686,7 +142333,7 @@ } }, { - "id": 18645, + "id": 17536, "properties": { "east": "none", "north": "tall", @@ -149697,7 +142344,7 @@ } }, { - "id": 18646, + "id": 17537, "properties": { "east": "none", "north": "tall", @@ -149708,7 +142355,7 @@ } }, { - "id": 18647, + "id": 17538, "properties": { "east": "none", "north": "tall", @@ -149719,7 +142366,7 @@ } }, { - "id": 18648, + "id": 17539, "properties": { "east": "none", "north": "tall", @@ -149730,7 +142377,7 @@ } }, { - "id": 18649, + "id": 17540, "properties": { "east": "none", "north": "tall", @@ -149741,7 +142388,7 @@ } }, { - "id": 18650, + "id": 17541, "properties": { "east": "none", "north": "tall", @@ -149752,7 +142399,7 @@ } }, { - "id": 18651, + "id": 17542, "properties": { "east": "none", "north": "tall", @@ -149763,7 +142410,7 @@ } }, { - "id": 18652, + "id": 17543, "properties": { "east": "none", "north": "tall", @@ -149774,7 +142421,7 @@ } }, { - "id": 18653, + "id": 17544, "properties": { "east": "none", "north": "tall", @@ -149785,7 +142432,7 @@ } }, { - "id": 18654, + "id": 17545, "properties": { "east": "none", "north": "tall", @@ -149796,7 +142443,7 @@ } }, { - "id": 18655, + "id": 17546, "properties": { "east": "none", "north": "tall", @@ -149807,7 +142454,7 @@ } }, { - "id": 18656, + "id": 17547, "properties": { "east": "none", "north": "tall", @@ -149818,7 +142465,7 @@ } }, { - "id": 18657, + "id": 17548, "properties": { "east": "none", "north": "tall", @@ -149829,7 +142476,7 @@ } }, { - "id": 18658, + "id": 17549, "properties": { "east": "none", "north": "tall", @@ -149840,7 +142487,7 @@ } }, { - "id": 18659, + "id": 17550, "properties": { "east": "none", "north": "tall", @@ -149851,7 +142498,7 @@ } }, { - "id": 18660, + "id": 17551, "properties": { "east": "none", "north": "tall", @@ -149862,7 +142509,7 @@ } }, { - "id": 18661, + "id": 17552, "properties": { "east": "none", "north": "tall", @@ -149873,7 +142520,7 @@ } }, { - "id": 18662, + "id": 17553, "properties": { "east": "none", "north": "tall", @@ -149884,7 +142531,7 @@ } }, { - "id": 18663, + "id": 17554, "properties": { "east": "none", "north": "tall", @@ -149895,7 +142542,7 @@ } }, { - "id": 18664, + "id": 17555, "properties": { "east": "none", "north": "tall", @@ -149906,7 +142553,7 @@ } }, { - "id": 18665, + "id": 17556, "properties": { "east": "none", "north": "tall", @@ -149917,7 +142564,7 @@ } }, { - "id": 18666, + "id": 17557, "properties": { "east": "none", "north": "tall", @@ -149928,7 +142575,7 @@ } }, { - "id": 18667, + "id": 17558, "properties": { "east": "none", "north": "tall", @@ -149939,7 +142586,7 @@ } }, { - "id": 18668, + "id": 17559, "properties": { "east": "low", "north": "none", @@ -149950,7 +142597,7 @@ } }, { - "id": 18669, + "id": 17560, "properties": { "east": "low", "north": "none", @@ -149961,7 +142608,7 @@ } }, { - "id": 18670, + "id": 17561, "properties": { "east": "low", "north": "none", @@ -149972,7 +142619,7 @@ } }, { - "id": 18671, + "id": 17562, "properties": { "east": "low", "north": "none", @@ -149983,7 +142630,7 @@ } }, { - "id": 18672, + "id": 17563, "properties": { "east": "low", "north": "none", @@ -149994,7 +142641,7 @@ } }, { - "id": 18673, + "id": 17564, "properties": { "east": "low", "north": "none", @@ -150005,7 +142652,7 @@ } }, { - "id": 18674, + "id": 17565, "properties": { "east": "low", "north": "none", @@ -150016,7 +142663,7 @@ } }, { - "id": 18675, + "id": 17566, "properties": { "east": "low", "north": "none", @@ -150027,7 +142674,7 @@ } }, { - "id": 18676, + "id": 17567, "properties": { "east": "low", "north": "none", @@ -150038,7 +142685,7 @@ } }, { - "id": 18677, + "id": 17568, "properties": { "east": "low", "north": "none", @@ -150049,7 +142696,7 @@ } }, { - "id": 18678, + "id": 17569, "properties": { "east": "low", "north": "none", @@ -150060,7 +142707,7 @@ } }, { - "id": 18679, + "id": 17570, "properties": { "east": "low", "north": "none", @@ -150071,7 +142718,7 @@ } }, { - "id": 18680, + "id": 17571, "properties": { "east": "low", "north": "none", @@ -150082,7 +142729,7 @@ } }, { - "id": 18681, + "id": 17572, "properties": { "east": "low", "north": "none", @@ -150093,7 +142740,7 @@ } }, { - "id": 18682, + "id": 17573, "properties": { "east": "low", "north": "none", @@ -150104,7 +142751,7 @@ } }, { - "id": 18683, + "id": 17574, "properties": { "east": "low", "north": "none", @@ -150115,7 +142762,7 @@ } }, { - "id": 18684, + "id": 17575, "properties": { "east": "low", "north": "none", @@ -150126,7 +142773,7 @@ } }, { - "id": 18685, + "id": 17576, "properties": { "east": "low", "north": "none", @@ -150137,7 +142784,7 @@ } }, { - "id": 18686, + "id": 17577, "properties": { "east": "low", "north": "none", @@ -150148,7 +142795,7 @@ } }, { - "id": 18687, + "id": 17578, "properties": { "east": "low", "north": "none", @@ -150159,7 +142806,7 @@ } }, { - "id": 18688, + "id": 17579, "properties": { "east": "low", "north": "none", @@ -150170,7 +142817,7 @@ } }, { - "id": 18689, + "id": 17580, "properties": { "east": "low", "north": "none", @@ -150181,7 +142828,7 @@ } }, { - "id": 18690, + "id": 17581, "properties": { "east": "low", "north": "none", @@ -150192,7 +142839,7 @@ } }, { - "id": 18691, + "id": 17582, "properties": { "east": "low", "north": "none", @@ -150203,7 +142850,7 @@ } }, { - "id": 18692, + "id": 17583, "properties": { "east": "low", "north": "none", @@ -150214,7 +142861,7 @@ } }, { - "id": 18693, + "id": 17584, "properties": { "east": "low", "north": "none", @@ -150225,7 +142872,7 @@ } }, { - "id": 18694, + "id": 17585, "properties": { "east": "low", "north": "none", @@ -150236,7 +142883,7 @@ } }, { - "id": 18695, + "id": 17586, "properties": { "east": "low", "north": "none", @@ -150247,7 +142894,7 @@ } }, { - "id": 18696, + "id": 17587, "properties": { "east": "low", "north": "none", @@ -150258,7 +142905,7 @@ } }, { - "id": 18697, + "id": 17588, "properties": { "east": "low", "north": "none", @@ -150269,7 +142916,7 @@ } }, { - "id": 18698, + "id": 17589, "properties": { "east": "low", "north": "none", @@ -150280,7 +142927,7 @@ } }, { - "id": 18699, + "id": 17590, "properties": { "east": "low", "north": "none", @@ -150291,7 +142938,7 @@ } }, { - "id": 18700, + "id": 17591, "properties": { "east": "low", "north": "none", @@ -150302,7 +142949,7 @@ } }, { - "id": 18701, + "id": 17592, "properties": { "east": "low", "north": "none", @@ -150313,7 +142960,7 @@ } }, { - "id": 18702, + "id": 17593, "properties": { "east": "low", "north": "none", @@ -150324,7 +142971,7 @@ } }, { - "id": 18703, + "id": 17594, "properties": { "east": "low", "north": "none", @@ -150335,7 +142982,7 @@ } }, { - "id": 18704, + "id": 17595, "properties": { "east": "low", "north": "low", @@ -150346,7 +142993,7 @@ } }, { - "id": 18705, + "id": 17596, "properties": { "east": "low", "north": "low", @@ -150357,7 +143004,7 @@ } }, { - "id": 18706, + "id": 17597, "properties": { "east": "low", "north": "low", @@ -150368,7 +143015,7 @@ } }, { - "id": 18707, + "id": 17598, "properties": { "east": "low", "north": "low", @@ -150379,7 +143026,7 @@ } }, { - "id": 18708, + "id": 17599, "properties": { "east": "low", "north": "low", @@ -150390,7 +143037,7 @@ } }, { - "id": 18709, + "id": 17600, "properties": { "east": "low", "north": "low", @@ -150401,7 +143048,7 @@ } }, { - "id": 18710, + "id": 17601, "properties": { "east": "low", "north": "low", @@ -150412,7 +143059,7 @@ } }, { - "id": 18711, + "id": 17602, "properties": { "east": "low", "north": "low", @@ -150423,7 +143070,7 @@ } }, { - "id": 18712, + "id": 17603, "properties": { "east": "low", "north": "low", @@ -150434,7 +143081,7 @@ } }, { - "id": 18713, + "id": 17604, "properties": { "east": "low", "north": "low", @@ -150445,7 +143092,7 @@ } }, { - "id": 18714, + "id": 17605, "properties": { "east": "low", "north": "low", @@ -150456,7 +143103,7 @@ } }, { - "id": 18715, + "id": 17606, "properties": { "east": "low", "north": "low", @@ -150467,7 +143114,7 @@ } }, { - "id": 18716, + "id": 17607, "properties": { "east": "low", "north": "low", @@ -150478,7 +143125,7 @@ } }, { - "id": 18717, + "id": 17608, "properties": { "east": "low", "north": "low", @@ -150489,7 +143136,7 @@ } }, { - "id": 18718, + "id": 17609, "properties": { "east": "low", "north": "low", @@ -150500,7 +143147,7 @@ } }, { - "id": 18719, + "id": 17610, "properties": { "east": "low", "north": "low", @@ -150511,7 +143158,7 @@ } }, { - "id": 18720, + "id": 17611, "properties": { "east": "low", "north": "low", @@ -150522,7 +143169,7 @@ } }, { - "id": 18721, + "id": 17612, "properties": { "east": "low", "north": "low", @@ -150533,7 +143180,7 @@ } }, { - "id": 18722, + "id": 17613, "properties": { "east": "low", "north": "low", @@ -150544,7 +143191,7 @@ } }, { - "id": 18723, + "id": 17614, "properties": { "east": "low", "north": "low", @@ -150555,7 +143202,7 @@ } }, { - "id": 18724, + "id": 17615, "properties": { "east": "low", "north": "low", @@ -150566,7 +143213,7 @@ } }, { - "id": 18725, + "id": 17616, "properties": { "east": "low", "north": "low", @@ -150577,7 +143224,7 @@ } }, { - "id": 18726, + "id": 17617, "properties": { "east": "low", "north": "low", @@ -150588,7 +143235,7 @@ } }, { - "id": 18727, + "id": 17618, "properties": { "east": "low", "north": "low", @@ -150599,7 +143246,7 @@ } }, { - "id": 18728, + "id": 17619, "properties": { "east": "low", "north": "low", @@ -150610,7 +143257,7 @@ } }, { - "id": 18729, + "id": 17620, "properties": { "east": "low", "north": "low", @@ -150621,7 +143268,7 @@ } }, { - "id": 18730, + "id": 17621, "properties": { "east": "low", "north": "low", @@ -150632,7 +143279,7 @@ } }, { - "id": 18731, + "id": 17622, "properties": { "east": "low", "north": "low", @@ -150643,7 +143290,7 @@ } }, { - "id": 18732, + "id": 17623, "properties": { "east": "low", "north": "low", @@ -150654,7 +143301,7 @@ } }, { - "id": 18733, + "id": 17624, "properties": { "east": "low", "north": "low", @@ -150665,7 +143312,7 @@ } }, { - "id": 18734, + "id": 17625, "properties": { "east": "low", "north": "low", @@ -150676,7 +143323,7 @@ } }, { - "id": 18735, + "id": 17626, "properties": { "east": "low", "north": "low", @@ -150687,7 +143334,7 @@ } }, { - "id": 18736, + "id": 17627, "properties": { "east": "low", "north": "low", @@ -150698,7 +143345,7 @@ } }, { - "id": 18737, + "id": 17628, "properties": { "east": "low", "north": "low", @@ -150709,7 +143356,7 @@ } }, { - "id": 18738, + "id": 17629, "properties": { "east": "low", "north": "low", @@ -150720,7 +143367,7 @@ } }, { - "id": 18739, + "id": 17630, "properties": { "east": "low", "north": "low", @@ -150731,7 +143378,7 @@ } }, { - "id": 18740, + "id": 17631, "properties": { "east": "low", "north": "tall", @@ -150742,7 +143389,7 @@ } }, { - "id": 18741, + "id": 17632, "properties": { "east": "low", "north": "tall", @@ -150753,7 +143400,7 @@ } }, { - "id": 18742, + "id": 17633, "properties": { "east": "low", "north": "tall", @@ -150764,7 +143411,7 @@ } }, { - "id": 18743, + "id": 17634, "properties": { "east": "low", "north": "tall", @@ -150775,7 +143422,7 @@ } }, { - "id": 18744, + "id": 17635, "properties": { "east": "low", "north": "tall", @@ -150786,7 +143433,7 @@ } }, { - "id": 18745, + "id": 17636, "properties": { "east": "low", "north": "tall", @@ -150797,7 +143444,7 @@ } }, { - "id": 18746, + "id": 17637, "properties": { "east": "low", "north": "tall", @@ -150808,7 +143455,7 @@ } }, { - "id": 18747, + "id": 17638, "properties": { "east": "low", "north": "tall", @@ -150819,7 +143466,7 @@ } }, { - "id": 18748, + "id": 17639, "properties": { "east": "low", "north": "tall", @@ -150830,7 +143477,7 @@ } }, { - "id": 18749, + "id": 17640, "properties": { "east": "low", "north": "tall", @@ -150841,7 +143488,7 @@ } }, { - "id": 18750, + "id": 17641, "properties": { "east": "low", "north": "tall", @@ -150852,7 +143499,7 @@ } }, { - "id": 18751, + "id": 17642, "properties": { "east": "low", "north": "tall", @@ -150863,7 +143510,7 @@ } }, { - "id": 18752, + "id": 17643, "properties": { "east": "low", "north": "tall", @@ -150874,7 +143521,7 @@ } }, { - "id": 18753, + "id": 17644, "properties": { "east": "low", "north": "tall", @@ -150885,7 +143532,7 @@ } }, { - "id": 18754, + "id": 17645, "properties": { "east": "low", "north": "tall", @@ -150896,7 +143543,7 @@ } }, { - "id": 18755, + "id": 17646, "properties": { "east": "low", "north": "tall", @@ -150907,7 +143554,7 @@ } }, { - "id": 18756, + "id": 17647, "properties": { "east": "low", "north": "tall", @@ -150918,7 +143565,7 @@ } }, { - "id": 18757, + "id": 17648, "properties": { "east": "low", "north": "tall", @@ -150929,7 +143576,7 @@ } }, { - "id": 18758, + "id": 17649, "properties": { "east": "low", "north": "tall", @@ -150940,7 +143587,7 @@ } }, { - "id": 18759, + "id": 17650, "properties": { "east": "low", "north": "tall", @@ -150951,7 +143598,7 @@ } }, { - "id": 18760, + "id": 17651, "properties": { "east": "low", "north": "tall", @@ -150962,7 +143609,7 @@ } }, { - "id": 18761, + "id": 17652, "properties": { "east": "low", "north": "tall", @@ -150973,7 +143620,7 @@ } }, { - "id": 18762, + "id": 17653, "properties": { "east": "low", "north": "tall", @@ -150984,7 +143631,7 @@ } }, { - "id": 18763, + "id": 17654, "properties": { "east": "low", "north": "tall", @@ -150995,7 +143642,7 @@ } }, { - "id": 18764, + "id": 17655, "properties": { "east": "low", "north": "tall", @@ -151006,7 +143653,7 @@ } }, { - "id": 18765, + "id": 17656, "properties": { "east": "low", "north": "tall", @@ -151017,7 +143664,7 @@ } }, { - "id": 18766, + "id": 17657, "properties": { "east": "low", "north": "tall", @@ -151028,7 +143675,7 @@ } }, { - "id": 18767, + "id": 17658, "properties": { "east": "low", "north": "tall", @@ -151039,7 +143686,7 @@ } }, { - "id": 18768, + "id": 17659, "properties": { "east": "low", "north": "tall", @@ -151050,7 +143697,7 @@ } }, { - "id": 18769, + "id": 17660, "properties": { "east": "low", "north": "tall", @@ -151061,7 +143708,7 @@ } }, { - "id": 18770, + "id": 17661, "properties": { "east": "low", "north": "tall", @@ -151072,7 +143719,7 @@ } }, { - "id": 18771, + "id": 17662, "properties": { "east": "low", "north": "tall", @@ -151083,7 +143730,7 @@ } }, { - "id": 18772, + "id": 17663, "properties": { "east": "low", "north": "tall", @@ -151094,7 +143741,7 @@ } }, { - "id": 18773, + "id": 17664, "properties": { "east": "low", "north": "tall", @@ -151105,7 +143752,7 @@ } }, { - "id": 18774, + "id": 17665, "properties": { "east": "low", "north": "tall", @@ -151116,7 +143763,7 @@ } }, { - "id": 18775, + "id": 17666, "properties": { "east": "low", "north": "tall", @@ -151127,7 +143774,7 @@ } }, { - "id": 18776, + "id": 17667, "properties": { "east": "tall", "north": "none", @@ -151138,7 +143785,7 @@ } }, { - "id": 18777, + "id": 17668, "properties": { "east": "tall", "north": "none", @@ -151149,7 +143796,7 @@ } }, { - "id": 18778, + "id": 17669, "properties": { "east": "tall", "north": "none", @@ -151160,7 +143807,7 @@ } }, { - "id": 18779, + "id": 17670, "properties": { "east": "tall", "north": "none", @@ -151171,7 +143818,7 @@ } }, { - "id": 18780, + "id": 17671, "properties": { "east": "tall", "north": "none", @@ -151182,7 +143829,7 @@ } }, { - "id": 18781, + "id": 17672, "properties": { "east": "tall", "north": "none", @@ -151193,7 +143840,7 @@ } }, { - "id": 18782, + "id": 17673, "properties": { "east": "tall", "north": "none", @@ -151204,7 +143851,7 @@ } }, { - "id": 18783, + "id": 17674, "properties": { "east": "tall", "north": "none", @@ -151215,7 +143862,7 @@ } }, { - "id": 18784, + "id": 17675, "properties": { "east": "tall", "north": "none", @@ -151226,7 +143873,7 @@ } }, { - "id": 18785, + "id": 17676, "properties": { "east": "tall", "north": "none", @@ -151237,7 +143884,7 @@ } }, { - "id": 18786, + "id": 17677, "properties": { "east": "tall", "north": "none", @@ -151248,7 +143895,7 @@ } }, { - "id": 18787, + "id": 17678, "properties": { "east": "tall", "north": "none", @@ -151259,7 +143906,7 @@ } }, { - "id": 18788, + "id": 17679, "properties": { "east": "tall", "north": "none", @@ -151270,7 +143917,7 @@ } }, { - "id": 18789, + "id": 17680, "properties": { "east": "tall", "north": "none", @@ -151281,7 +143928,7 @@ } }, { - "id": 18790, + "id": 17681, "properties": { "east": "tall", "north": "none", @@ -151292,7 +143939,7 @@ } }, { - "id": 18791, + "id": 17682, "properties": { "east": "tall", "north": "none", @@ -151303,7 +143950,7 @@ } }, { - "id": 18792, + "id": 17683, "properties": { "east": "tall", "north": "none", @@ -151314,7 +143961,7 @@ } }, { - "id": 18793, + "id": 17684, "properties": { "east": "tall", "north": "none", @@ -151325,7 +143972,7 @@ } }, { - "id": 18794, + "id": 17685, "properties": { "east": "tall", "north": "none", @@ -151336,7 +143983,7 @@ } }, { - "id": 18795, + "id": 17686, "properties": { "east": "tall", "north": "none", @@ -151347,7 +143994,7 @@ } }, { - "id": 18796, + "id": 17687, "properties": { "east": "tall", "north": "none", @@ -151358,7 +144005,7 @@ } }, { - "id": 18797, + "id": 17688, "properties": { "east": "tall", "north": "none", @@ -151369,7 +144016,7 @@ } }, { - "id": 18798, + "id": 17689, "properties": { "east": "tall", "north": "none", @@ -151380,7 +144027,7 @@ } }, { - "id": 18799, + "id": 17690, "properties": { "east": "tall", "north": "none", @@ -151391,7 +144038,7 @@ } }, { - "id": 18800, + "id": 17691, "properties": { "east": "tall", "north": "none", @@ -151402,7 +144049,7 @@ } }, { - "id": 18801, + "id": 17692, "properties": { "east": "tall", "north": "none", @@ -151413,7 +144060,7 @@ } }, { - "id": 18802, + "id": 17693, "properties": { "east": "tall", "north": "none", @@ -151424,7 +144071,7 @@ } }, { - "id": 18803, + "id": 17694, "properties": { "east": "tall", "north": "none", @@ -151435,7 +144082,7 @@ } }, { - "id": 18804, + "id": 17695, "properties": { "east": "tall", "north": "none", @@ -151446,7 +144093,7 @@ } }, { - "id": 18805, + "id": 17696, "properties": { "east": "tall", "north": "none", @@ -151457,7 +144104,7 @@ } }, { - "id": 18806, + "id": 17697, "properties": { "east": "tall", "north": "none", @@ -151468,7 +144115,7 @@ } }, { - "id": 18807, + "id": 17698, "properties": { "east": "tall", "north": "none", @@ -151479,7 +144126,7 @@ } }, { - "id": 18808, + "id": 17699, "properties": { "east": "tall", "north": "none", @@ -151490,7 +144137,7 @@ } }, { - "id": 18809, + "id": 17700, "properties": { "east": "tall", "north": "none", @@ -151501,7 +144148,7 @@ } }, { - "id": 18810, + "id": 17701, "properties": { "east": "tall", "north": "none", @@ -151512,7 +144159,7 @@ } }, { - "id": 18811, + "id": 17702, "properties": { "east": "tall", "north": "none", @@ -151523,7 +144170,7 @@ } }, { - "id": 18812, + "id": 17703, "properties": { "east": "tall", "north": "low", @@ -151534,7 +144181,7 @@ } }, { - "id": 18813, + "id": 17704, "properties": { "east": "tall", "north": "low", @@ -151545,7 +144192,7 @@ } }, { - "id": 18814, + "id": 17705, "properties": { "east": "tall", "north": "low", @@ -151556,7 +144203,7 @@ } }, { - "id": 18815, + "id": 17706, "properties": { "east": "tall", "north": "low", @@ -151567,7 +144214,7 @@ } }, { - "id": 18816, + "id": 17707, "properties": { "east": "tall", "north": "low", @@ -151578,7 +144225,7 @@ } }, { - "id": 18817, + "id": 17708, "properties": { "east": "tall", "north": "low", @@ -151589,7 +144236,7 @@ } }, { - "id": 18818, + "id": 17709, "properties": { "east": "tall", "north": "low", @@ -151600,7 +144247,7 @@ } }, { - "id": 18819, + "id": 17710, "properties": { "east": "tall", "north": "low", @@ -151611,7 +144258,7 @@ } }, { - "id": 18820, + "id": 17711, "properties": { "east": "tall", "north": "low", @@ -151622,7 +144269,7 @@ } }, { - "id": 18821, + "id": 17712, "properties": { "east": "tall", "north": "low", @@ -151633,7 +144280,7 @@ } }, { - "id": 18822, + "id": 17713, "properties": { "east": "tall", "north": "low", @@ -151644,7 +144291,7 @@ } }, { - "id": 18823, + "id": 17714, "properties": { "east": "tall", "north": "low", @@ -151655,7 +144302,7 @@ } }, { - "id": 18824, + "id": 17715, "properties": { "east": "tall", "north": "low", @@ -151666,7 +144313,7 @@ } }, { - "id": 18825, + "id": 17716, "properties": { "east": "tall", "north": "low", @@ -151677,7 +144324,7 @@ } }, { - "id": 18826, + "id": 17717, "properties": { "east": "tall", "north": "low", @@ -151688,7 +144335,7 @@ } }, { - "id": 18827, + "id": 17718, "properties": { "east": "tall", "north": "low", @@ -151699,7 +144346,7 @@ } }, { - "id": 18828, + "id": 17719, "properties": { "east": "tall", "north": "low", @@ -151710,7 +144357,7 @@ } }, { - "id": 18829, + "id": 17720, "properties": { "east": "tall", "north": "low", @@ -151721,7 +144368,7 @@ } }, { - "id": 18830, + "id": 17721, "properties": { "east": "tall", "north": "low", @@ -151732,7 +144379,7 @@ } }, { - "id": 18831, + "id": 17722, "properties": { "east": "tall", "north": "low", @@ -151743,7 +144390,7 @@ } }, { - "id": 18832, + "id": 17723, "properties": { "east": "tall", "north": "low", @@ -151754,7 +144401,7 @@ } }, { - "id": 18833, + "id": 17724, "properties": { "east": "tall", "north": "low", @@ -151765,7 +144412,7 @@ } }, { - "id": 18834, + "id": 17725, "properties": { "east": "tall", "north": "low", @@ -151776,7 +144423,7 @@ } }, { - "id": 18835, + "id": 17726, "properties": { "east": "tall", "north": "low", @@ -151787,7 +144434,7 @@ } }, { - "id": 18836, + "id": 17727, "properties": { "east": "tall", "north": "low", @@ -151798,7 +144445,7 @@ } }, { - "id": 18837, + "id": 17728, "properties": { "east": "tall", "north": "low", @@ -151809,7 +144456,7 @@ } }, { - "id": 18838, + "id": 17729, "properties": { "east": "tall", "north": "low", @@ -151820,7 +144467,7 @@ } }, { - "id": 18839, + "id": 17730, "properties": { "east": "tall", "north": "low", @@ -151831,7 +144478,7 @@ } }, { - "id": 18840, + "id": 17731, "properties": { "east": "tall", "north": "low", @@ -151842,7 +144489,7 @@ } }, { - "id": 18841, + "id": 17732, "properties": { "east": "tall", "north": "low", @@ -151853,7 +144500,7 @@ } }, { - "id": 18842, + "id": 17733, "properties": { "east": "tall", "north": "low", @@ -151864,7 +144511,7 @@ } }, { - "id": 18843, + "id": 17734, "properties": { "east": "tall", "north": "low", @@ -151875,7 +144522,7 @@ } }, { - "id": 18844, + "id": 17735, "properties": { "east": "tall", "north": "low", @@ -151886,7 +144533,7 @@ } }, { - "id": 18845, + "id": 17736, "properties": { "east": "tall", "north": "low", @@ -151897,7 +144544,7 @@ } }, { - "id": 18846, + "id": 17737, "properties": { "east": "tall", "north": "low", @@ -151908,7 +144555,7 @@ } }, { - "id": 18847, + "id": 17738, "properties": { "east": "tall", "north": "low", @@ -151919,7 +144566,7 @@ } }, { - "id": 18848, + "id": 17739, "properties": { "east": "tall", "north": "tall", @@ -151930,7 +144577,7 @@ } }, { - "id": 18849, + "id": 17740, "properties": { "east": "tall", "north": "tall", @@ -151941,7 +144588,7 @@ } }, { - "id": 18850, + "id": 17741, "properties": { "east": "tall", "north": "tall", @@ -151952,7 +144599,7 @@ } }, { - "id": 18851, + "id": 17742, "properties": { "east": "tall", "north": "tall", @@ -151963,7 +144610,7 @@ } }, { - "id": 18852, + "id": 17743, "properties": { "east": "tall", "north": "tall", @@ -151974,7 +144621,7 @@ } }, { - "id": 18853, + "id": 17744, "properties": { "east": "tall", "north": "tall", @@ -151985,7 +144632,7 @@ } }, { - "id": 18854, + "id": 17745, "properties": { "east": "tall", "north": "tall", @@ -151996,7 +144643,7 @@ } }, { - "id": 18855, + "id": 17746, "properties": { "east": "tall", "north": "tall", @@ -152007,7 +144654,7 @@ } }, { - "id": 18856, + "id": 17747, "properties": { "east": "tall", "north": "tall", @@ -152018,7 +144665,7 @@ } }, { - "id": 18857, + "id": 17748, "properties": { "east": "tall", "north": "tall", @@ -152029,7 +144676,7 @@ } }, { - "id": 18858, + "id": 17749, "properties": { "east": "tall", "north": "tall", @@ -152040,7 +144687,7 @@ } }, { - "id": 18859, + "id": 17750, "properties": { "east": "tall", "north": "tall", @@ -152051,7 +144698,7 @@ } }, { - "id": 18860, + "id": 17751, "properties": { "east": "tall", "north": "tall", @@ -152062,7 +144709,7 @@ } }, { - "id": 18861, + "id": 17752, "properties": { "east": "tall", "north": "tall", @@ -152073,7 +144720,7 @@ } }, { - "id": 18862, + "id": 17753, "properties": { "east": "tall", "north": "tall", @@ -152084,7 +144731,7 @@ } }, { - "id": 18863, + "id": 17754, "properties": { "east": "tall", "north": "tall", @@ -152095,7 +144742,7 @@ } }, { - "id": 18864, + "id": 17755, "properties": { "east": "tall", "north": "tall", @@ -152106,7 +144753,7 @@ } }, { - "id": 18865, + "id": 17756, "properties": { "east": "tall", "north": "tall", @@ -152117,7 +144764,7 @@ } }, { - "id": 18866, + "id": 17757, "properties": { "east": "tall", "north": "tall", @@ -152128,7 +144775,7 @@ } }, { - "id": 18867, + "id": 17758, "properties": { "east": "tall", "north": "tall", @@ -152139,7 +144786,7 @@ } }, { - "id": 18868, + "id": 17759, "properties": { "east": "tall", "north": "tall", @@ -152150,7 +144797,7 @@ } }, { - "id": 18869, + "id": 17760, "properties": { "east": "tall", "north": "tall", @@ -152161,7 +144808,7 @@ } }, { - "id": 18870, + "id": 17761, "properties": { "east": "tall", "north": "tall", @@ -152172,7 +144819,7 @@ } }, { - "id": 18871, + "id": 17762, "properties": { "east": "tall", "north": "tall", @@ -152183,7 +144830,7 @@ } }, { - "id": 18872, + "id": 17763, "properties": { "east": "tall", "north": "tall", @@ -152194,7 +144841,7 @@ } }, { - "id": 18873, + "id": 17764, "properties": { "east": "tall", "north": "tall", @@ -152205,7 +144852,7 @@ } }, { - "id": 18874, + "id": 17765, "properties": { "east": "tall", "north": "tall", @@ -152216,7 +144863,7 @@ } }, { - "id": 18875, + "id": 17766, "properties": { "east": "tall", "north": "tall", @@ -152227,7 +144874,7 @@ } }, { - "id": 18876, + "id": 17767, "properties": { "east": "tall", "north": "tall", @@ -152238,7 +144885,7 @@ } }, { - "id": 18877, + "id": 17768, "properties": { "east": "tall", "north": "tall", @@ -152249,7 +144896,7 @@ } }, { - "id": 18878, + "id": 17769, "properties": { "east": "tall", "north": "tall", @@ -152260,7 +144907,7 @@ } }, { - "id": 18879, + "id": 17770, "properties": { "east": "tall", "north": "tall", @@ -152271,7 +144918,7 @@ } }, { - "id": 18880, + "id": 17771, "properties": { "east": "tall", "north": "tall", @@ -152282,7 +144929,7 @@ } }, { - "id": 18881, + "id": 17772, "properties": { "east": "tall", "north": "tall", @@ -152293,7 +144940,7 @@ } }, { - "id": 18882, + "id": 17773, "properties": { "east": "tall", "north": "tall", @@ -152304,7 +144951,7 @@ } }, { - "id": 18883, + "id": 17774, "properties": { "east": "tall", "north": "tall", @@ -152324,7 +144971,7 @@ "states": [ { "default": true, - "id": 9133 + "id": 8056 } ] }, @@ -152359,13 +145006,13 @@ "states": [ { "default": true, - "id": 6816, + "id": 6043, "properties": { "axis": "x" } }, { - "id": 6817, + "id": 6044, "properties": { "axis": "z" } @@ -152385,7 +145032,7 @@ "states": [ { "default": true, - "id": 11110 + "id": 10033 } ] }, @@ -152397,7 +145044,7 @@ "states": [ { "default": true, - "id": 20759 + "id": 19618 } ] }, @@ -152417,25 +145064,25 @@ "states": [ { "default": true, - "id": 9246, + "id": 8169, "properties": { "age": "0" } }, { - "id": 9247, + "id": 8170, "properties": { "age": "1" } }, { - "id": 9248, + "id": 8171, "properties": { "age": "2" } }, { - "id": 9249, + "id": 8172, "properties": { "age": "3" } @@ -152450,7 +145097,7 @@ "states": [ { "default": true, - "id": 14644 + "id": 13567 } ] }, @@ -152462,7 +145109,7 @@ "states": [ { "default": true, - "id": 21616 + "id": 20475 } ] }, @@ -152474,7 +145121,7 @@ "states": [ { "default": true, - "id": 6796 + "id": 6028 } ] }, @@ -161771,7 +154418,7 @@ }, "states": [ { - "id": 10473, + "id": 9396, "properties": { "face": "floor", "facing": "north", @@ -161779,7 +154426,7 @@ } }, { - "id": 10474, + "id": 9397, "properties": { "face": "floor", "facing": "north", @@ -161787,7 +154434,7 @@ } }, { - "id": 10475, + "id": 9398, "properties": { "face": "floor", "facing": "south", @@ -161795,7 +154442,7 @@ } }, { - "id": 10476, + "id": 9399, "properties": { "face": "floor", "facing": "south", @@ -161803,7 +154450,7 @@ } }, { - "id": 10477, + "id": 9400, "properties": { "face": "floor", "facing": "west", @@ -161811,7 +154458,7 @@ } }, { - "id": 10478, + "id": 9401, "properties": { "face": "floor", "facing": "west", @@ -161819,7 +154466,7 @@ } }, { - "id": 10479, + "id": 9402, "properties": { "face": "floor", "facing": "east", @@ -161827,7 +154474,7 @@ } }, { - "id": 10480, + "id": 9403, "properties": { "face": "floor", "facing": "east", @@ -161835,7 +154482,7 @@ } }, { - "id": 10481, + "id": 9404, "properties": { "face": "wall", "facing": "north", @@ -161844,7 +154491,7 @@ }, { "default": true, - "id": 10482, + "id": 9405, "properties": { "face": "wall", "facing": "north", @@ -161852,7 +154499,7 @@ } }, { - "id": 10483, + "id": 9406, "properties": { "face": "wall", "facing": "south", @@ -161860,7 +154507,7 @@ } }, { - "id": 10484, + "id": 9407, "properties": { "face": "wall", "facing": "south", @@ -161868,7 +154515,7 @@ } }, { - "id": 10485, + "id": 9408, "properties": { "face": "wall", "facing": "west", @@ -161876,7 +154523,7 @@ } }, { - "id": 10486, + "id": 9409, "properties": { "face": "wall", "facing": "west", @@ -161884,7 +154531,7 @@ } }, { - "id": 10487, + "id": 9410, "properties": { "face": "wall", "facing": "east", @@ -161892,7 +154539,7 @@ } }, { - "id": 10488, + "id": 9411, "properties": { "face": "wall", "facing": "east", @@ -161900,7 +154547,7 @@ } }, { - "id": 10489, + "id": 9412, "properties": { "face": "ceiling", "facing": "north", @@ -161908,7 +154555,7 @@ } }, { - "id": 10490, + "id": 9413, "properties": { "face": "ceiling", "facing": "north", @@ -161916,7 +154563,7 @@ } }, { - "id": 10491, + "id": 9414, "properties": { "face": "ceiling", "facing": "south", @@ -161924,7 +154571,7 @@ } }, { - "id": 10492, + "id": 9415, "properties": { "face": "ceiling", "facing": "south", @@ -161932,7 +154579,7 @@ } }, { - "id": 10493, + "id": 9416, "properties": { "face": "ceiling", "facing": "west", @@ -161940,7 +154587,7 @@ } }, { - "id": 10494, + "id": 9417, "properties": { "face": "ceiling", "facing": "west", @@ -161948,7 +154595,7 @@ } }, { - "id": 10495, + "id": 9418, "properties": { "face": "ceiling", "facing": "east", @@ -161956,7 +154603,7 @@ } }, { - "id": 10496, + "id": 9419, "properties": { "face": "ceiling", "facing": "east", @@ -161997,7 +154644,7 @@ }, "states": [ { - "id": 5454, + "id": 4686, "properties": { "facing": "north", "half": "upper", @@ -162007,7 +154654,7 @@ } }, { - "id": 5455, + "id": 4687, "properties": { "facing": "north", "half": "upper", @@ -162017,7 +154664,7 @@ } }, { - "id": 5456, + "id": 4688, "properties": { "facing": "north", "half": "upper", @@ -162027,7 +154674,7 @@ } }, { - "id": 5457, + "id": 4689, "properties": { "facing": "north", "half": "upper", @@ -162037,7 +154684,7 @@ } }, { - "id": 5458, + "id": 4690, "properties": { "facing": "north", "half": "upper", @@ -162047,7 +154694,7 @@ } }, { - "id": 5459, + "id": 4691, "properties": { "facing": "north", "half": "upper", @@ -162057,7 +154704,7 @@ } }, { - "id": 5460, + "id": 4692, "properties": { "facing": "north", "half": "upper", @@ -162067,7 +154714,7 @@ } }, { - "id": 5461, + "id": 4693, "properties": { "facing": "north", "half": "upper", @@ -162077,7 +154724,7 @@ } }, { - "id": 5462, + "id": 4694, "properties": { "facing": "north", "half": "lower", @@ -162087,7 +154734,7 @@ } }, { - "id": 5463, + "id": 4695, "properties": { "facing": "north", "half": "lower", @@ -162097,7 +154744,7 @@ } }, { - "id": 5464, + "id": 4696, "properties": { "facing": "north", "half": "lower", @@ -162108,7 +154755,7 @@ }, { "default": true, - "id": 5465, + "id": 4697, "properties": { "facing": "north", "half": "lower", @@ -162118,7 +154765,7 @@ } }, { - "id": 5466, + "id": 4698, "properties": { "facing": "north", "half": "lower", @@ -162128,7 +154775,7 @@ } }, { - "id": 5467, + "id": 4699, "properties": { "facing": "north", "half": "lower", @@ -162138,7 +154785,7 @@ } }, { - "id": 5468, + "id": 4700, "properties": { "facing": "north", "half": "lower", @@ -162148,7 +154795,7 @@ } }, { - "id": 5469, + "id": 4701, "properties": { "facing": "north", "half": "lower", @@ -162158,7 +154805,7 @@ } }, { - "id": 5470, + "id": 4702, "properties": { "facing": "south", "half": "upper", @@ -162168,7 +154815,7 @@ } }, { - "id": 5471, + "id": 4703, "properties": { "facing": "south", "half": "upper", @@ -162178,7 +154825,7 @@ } }, { - "id": 5472, + "id": 4704, "properties": { "facing": "south", "half": "upper", @@ -162188,7 +154835,7 @@ } }, { - "id": 5473, + "id": 4705, "properties": { "facing": "south", "half": "upper", @@ -162198,7 +154845,7 @@ } }, { - "id": 5474, + "id": 4706, "properties": { "facing": "south", "half": "upper", @@ -162208,7 +154855,7 @@ } }, { - "id": 5475, + "id": 4707, "properties": { "facing": "south", "half": "upper", @@ -162218,7 +154865,7 @@ } }, { - "id": 5476, + "id": 4708, "properties": { "facing": "south", "half": "upper", @@ -162228,7 +154875,7 @@ } }, { - "id": 5477, + "id": 4709, "properties": { "facing": "south", "half": "upper", @@ -162238,7 +154885,7 @@ } }, { - "id": 5478, + "id": 4710, "properties": { "facing": "south", "half": "lower", @@ -162248,7 +154895,7 @@ } }, { - "id": 5479, + "id": 4711, "properties": { "facing": "south", "half": "lower", @@ -162258,7 +154905,7 @@ } }, { - "id": 5480, + "id": 4712, "properties": { "facing": "south", "half": "lower", @@ -162268,7 +154915,7 @@ } }, { - "id": 5481, + "id": 4713, "properties": { "facing": "south", "half": "lower", @@ -162278,7 +154925,7 @@ } }, { - "id": 5482, + "id": 4714, "properties": { "facing": "south", "half": "lower", @@ -162288,7 +154935,7 @@ } }, { - "id": 5483, + "id": 4715, "properties": { "facing": "south", "half": "lower", @@ -162298,7 +154945,7 @@ } }, { - "id": 5484, + "id": 4716, "properties": { "facing": "south", "half": "lower", @@ -162308,7 +154955,7 @@ } }, { - "id": 5485, + "id": 4717, "properties": { "facing": "south", "half": "lower", @@ -162318,7 +154965,7 @@ } }, { - "id": 5486, + "id": 4718, "properties": { "facing": "west", "half": "upper", @@ -162328,7 +154975,7 @@ } }, { - "id": 5487, + "id": 4719, "properties": { "facing": "west", "half": "upper", @@ -162338,7 +154985,7 @@ } }, { - "id": 5488, + "id": 4720, "properties": { "facing": "west", "half": "upper", @@ -162348,7 +154995,7 @@ } }, { - "id": 5489, + "id": 4721, "properties": { "facing": "west", "half": "upper", @@ -162358,7 +155005,7 @@ } }, { - "id": 5490, + "id": 4722, "properties": { "facing": "west", "half": "upper", @@ -162368,7 +155015,7 @@ } }, { - "id": 5491, + "id": 4723, "properties": { "facing": "west", "half": "upper", @@ -162378,7 +155025,7 @@ } }, { - "id": 5492, + "id": 4724, "properties": { "facing": "west", "half": "upper", @@ -162388,7 +155035,7 @@ } }, { - "id": 5493, + "id": 4725, "properties": { "facing": "west", "half": "upper", @@ -162398,7 +155045,7 @@ } }, { - "id": 5494, + "id": 4726, "properties": { "facing": "west", "half": "lower", @@ -162408,7 +155055,7 @@ } }, { - "id": 5495, + "id": 4727, "properties": { "facing": "west", "half": "lower", @@ -162418,7 +155065,7 @@ } }, { - "id": 5496, + "id": 4728, "properties": { "facing": "west", "half": "lower", @@ -162428,7 +155075,7 @@ } }, { - "id": 5497, + "id": 4729, "properties": { "facing": "west", "half": "lower", @@ -162438,7 +155085,7 @@ } }, { - "id": 5498, + "id": 4730, "properties": { "facing": "west", "half": "lower", @@ -162448,7 +155095,7 @@ } }, { - "id": 5499, + "id": 4731, "properties": { "facing": "west", "half": "lower", @@ -162458,7 +155105,7 @@ } }, { - "id": 5500, + "id": 4732, "properties": { "facing": "west", "half": "lower", @@ -162468,7 +155115,7 @@ } }, { - "id": 5501, + "id": 4733, "properties": { "facing": "west", "half": "lower", @@ -162478,7 +155125,7 @@ } }, { - "id": 5502, + "id": 4734, "properties": { "facing": "east", "half": "upper", @@ -162488,7 +155135,7 @@ } }, { - "id": 5503, + "id": 4735, "properties": { "facing": "east", "half": "upper", @@ -162498,7 +155145,7 @@ } }, { - "id": 5504, + "id": 4736, "properties": { "facing": "east", "half": "upper", @@ -162508,7 +155155,7 @@ } }, { - "id": 5505, + "id": 4737, "properties": { "facing": "east", "half": "upper", @@ -162518,7 +155165,7 @@ } }, { - "id": 5506, + "id": 4738, "properties": { "facing": "east", "half": "upper", @@ -162528,7 +155175,7 @@ } }, { - "id": 5507, + "id": 4739, "properties": { "facing": "east", "half": "upper", @@ -162538,7 +155185,7 @@ } }, { - "id": 5508, + "id": 4740, "properties": { "facing": "east", "half": "upper", @@ -162548,7 +155195,7 @@ } }, { - "id": 5509, + "id": 4741, "properties": { "facing": "east", "half": "upper", @@ -162558,7 +155205,7 @@ } }, { - "id": 5510, + "id": 4742, "properties": { "facing": "east", "half": "lower", @@ -162568,7 +155215,7 @@ } }, { - "id": 5511, + "id": 4743, "properties": { "facing": "east", "half": "lower", @@ -162578,7 +155225,7 @@ } }, { - "id": 5512, + "id": 4744, "properties": { "facing": "east", "half": "lower", @@ -162588,7 +155235,7 @@ } }, { - "id": 5513, + "id": 4745, "properties": { "facing": "east", "half": "lower", @@ -162598,7 +155245,7 @@ } }, { - "id": 5514, + "id": 4746, "properties": { "facing": "east", "half": "lower", @@ -162608,7 +155255,7 @@ } }, { - "id": 5515, + "id": 4747, "properties": { "facing": "east", "half": "lower", @@ -162618,7 +155265,7 @@ } }, { - "id": 5516, + "id": 4748, "properties": { "facing": "east", "half": "lower", @@ -162628,7 +155275,7 @@ } }, { - "id": 5517, + "id": 4749, "properties": { "facing": "east", "half": "lower", @@ -162668,7 +155315,7 @@ }, "states": [ { - "id": 6764, + "id": 5996, "properties": { "east": "true", "north": "true", @@ -162678,7 +155325,7 @@ } }, { - "id": 6765, + "id": 5997, "properties": { "east": "true", "north": "true", @@ -162688,7 +155335,7 @@ } }, { - "id": 6766, + "id": 5998, "properties": { "east": "true", "north": "true", @@ -162698,7 +155345,7 @@ } }, { - "id": 6767, + "id": 5999, "properties": { "east": "true", "north": "true", @@ -162708,7 +155355,7 @@ } }, { - "id": 6768, + "id": 6000, "properties": { "east": "true", "north": "true", @@ -162718,7 +155365,7 @@ } }, { - "id": 6769, + "id": 6001, "properties": { "east": "true", "north": "true", @@ -162728,7 +155375,7 @@ } }, { - "id": 6770, + "id": 6002, "properties": { "east": "true", "north": "true", @@ -162738,7 +155385,7 @@ } }, { - "id": 6771, + "id": 6003, "properties": { "east": "true", "north": "true", @@ -162748,7 +155395,7 @@ } }, { - "id": 6772, + "id": 6004, "properties": { "east": "true", "north": "false", @@ -162758,7 +155405,7 @@ } }, { - "id": 6773, + "id": 6005, "properties": { "east": "true", "north": "false", @@ -162768,7 +155415,7 @@ } }, { - "id": 6774, + "id": 6006, "properties": { "east": "true", "north": "false", @@ -162778,7 +155425,7 @@ } }, { - "id": 6775, + "id": 6007, "properties": { "east": "true", "north": "false", @@ -162788,7 +155435,7 @@ } }, { - "id": 6776, + "id": 6008, "properties": { "east": "true", "north": "false", @@ -162798,7 +155445,7 @@ } }, { - "id": 6777, + "id": 6009, "properties": { "east": "true", "north": "false", @@ -162808,7 +155455,7 @@ } }, { - "id": 6778, + "id": 6010, "properties": { "east": "true", "north": "false", @@ -162818,7 +155465,7 @@ } }, { - "id": 6779, + "id": 6011, "properties": { "east": "true", "north": "false", @@ -162828,7 +155475,7 @@ } }, { - "id": 6780, + "id": 6012, "properties": { "east": "false", "north": "true", @@ -162838,7 +155485,7 @@ } }, { - "id": 6781, + "id": 6013, "properties": { "east": "false", "north": "true", @@ -162848,7 +155495,7 @@ } }, { - "id": 6782, + "id": 6014, "properties": { "east": "false", "north": "true", @@ -162858,7 +155505,7 @@ } }, { - "id": 6783, + "id": 6015, "properties": { "east": "false", "north": "true", @@ -162868,7 +155515,7 @@ } }, { - "id": 6784, + "id": 6016, "properties": { "east": "false", "north": "true", @@ -162878,7 +155525,7 @@ } }, { - "id": 6785, + "id": 6017, "properties": { "east": "false", "north": "true", @@ -162888,7 +155535,7 @@ } }, { - "id": 6786, + "id": 6018, "properties": { "east": "false", "north": "true", @@ -162898,7 +155545,7 @@ } }, { - "id": 6787, + "id": 6019, "properties": { "east": "false", "north": "true", @@ -162908,7 +155555,7 @@ } }, { - "id": 6788, + "id": 6020, "properties": { "east": "false", "north": "false", @@ -162918,7 +155565,7 @@ } }, { - "id": 6789, + "id": 6021, "properties": { "east": "false", "north": "false", @@ -162928,7 +155575,7 @@ } }, { - "id": 6790, + "id": 6022, "properties": { "east": "false", "north": "false", @@ -162938,7 +155585,7 @@ } }, { - "id": 6791, + "id": 6023, "properties": { "east": "false", "north": "false", @@ -162948,7 +155595,7 @@ } }, { - "id": 6792, + "id": 6024, "properties": { "east": "false", "north": "false", @@ -162958,7 +155605,7 @@ } }, { - "id": 6793, + "id": 6025, "properties": { "east": "false", "north": "false", @@ -162968,7 +155615,7 @@ } }, { - "id": 6794, + "id": 6026, "properties": { "east": "false", "north": "false", @@ -162979,7 +155626,7 @@ }, { "default": true, - "id": 6795, + "id": 6027, "properties": { "east": "false", "north": "false", @@ -163018,7 +155665,7 @@ }, "states": [ { - "id": 8445, + "id": 7368, "properties": { "facing": "north", "in_wall": "true", @@ -163027,7 +155674,7 @@ } }, { - "id": 8446, + "id": 7369, "properties": { "facing": "north", "in_wall": "true", @@ -163036,7 +155683,7 @@ } }, { - "id": 8447, + "id": 7370, "properties": { "facing": "north", "in_wall": "true", @@ -163045,7 +155692,7 @@ } }, { - "id": 8448, + "id": 7371, "properties": { "facing": "north", "in_wall": "true", @@ -163054,7 +155701,7 @@ } }, { - "id": 8449, + "id": 7372, "properties": { "facing": "north", "in_wall": "false", @@ -163063,7 +155710,7 @@ } }, { - "id": 8450, + "id": 7373, "properties": { "facing": "north", "in_wall": "false", @@ -163072,7 +155719,7 @@ } }, { - "id": 8451, + "id": 7374, "properties": { "facing": "north", "in_wall": "false", @@ -163082,7 +155729,7 @@ }, { "default": true, - "id": 8452, + "id": 7375, "properties": { "facing": "north", "in_wall": "false", @@ -163091,7 +155738,7 @@ } }, { - "id": 8453, + "id": 7376, "properties": { "facing": "south", "in_wall": "true", @@ -163100,7 +155747,7 @@ } }, { - "id": 8454, + "id": 7377, "properties": { "facing": "south", "in_wall": "true", @@ -163109,7 +155756,7 @@ } }, { - "id": 8455, + "id": 7378, "properties": { "facing": "south", "in_wall": "true", @@ -163118,7 +155765,7 @@ } }, { - "id": 8456, + "id": 7379, "properties": { "facing": "south", "in_wall": "true", @@ -163127,7 +155774,7 @@ } }, { - "id": 8457, + "id": 7380, "properties": { "facing": "south", "in_wall": "false", @@ -163136,7 +155783,7 @@ } }, { - "id": 8458, + "id": 7381, "properties": { "facing": "south", "in_wall": "false", @@ -163145,7 +155792,7 @@ } }, { - "id": 8459, + "id": 7382, "properties": { "facing": "south", "in_wall": "false", @@ -163154,7 +155801,7 @@ } }, { - "id": 8460, + "id": 7383, "properties": { "facing": "south", "in_wall": "false", @@ -163163,7 +155810,7 @@ } }, { - "id": 8461, + "id": 7384, "properties": { "facing": "west", "in_wall": "true", @@ -163172,7 +155819,7 @@ } }, { - "id": 8462, + "id": 7385, "properties": { "facing": "west", "in_wall": "true", @@ -163181,7 +155828,7 @@ } }, { - "id": 8463, + "id": 7386, "properties": { "facing": "west", "in_wall": "true", @@ -163190,7 +155837,7 @@ } }, { - "id": 8464, + "id": 7387, "properties": { "facing": "west", "in_wall": "true", @@ -163199,7 +155846,7 @@ } }, { - "id": 8465, + "id": 7388, "properties": { "facing": "west", "in_wall": "false", @@ -163208,7 +155855,7 @@ } }, { - "id": 8466, + "id": 7389, "properties": { "facing": "west", "in_wall": "false", @@ -163217,7 +155864,7 @@ } }, { - "id": 8467, + "id": 7390, "properties": { "facing": "west", "in_wall": "false", @@ -163226,7 +155873,7 @@ } }, { - "id": 8468, + "id": 7391, "properties": { "facing": "west", "in_wall": "false", @@ -163235,7 +155882,7 @@ } }, { - "id": 8469, + "id": 7392, "properties": { "facing": "east", "in_wall": "true", @@ -163244,7 +155891,7 @@ } }, { - "id": 8470, + "id": 7393, "properties": { "facing": "east", "in_wall": "true", @@ -163253,7 +155900,7 @@ } }, { - "id": 8471, + "id": 7394, "properties": { "facing": "east", "in_wall": "true", @@ -163262,7 +155909,7 @@ } }, { - "id": 8472, + "id": 7395, "properties": { "facing": "east", "in_wall": "true", @@ -163271,7 +155918,7 @@ } }, { - "id": 8473, + "id": 7396, "properties": { "facing": "east", "in_wall": "false", @@ -163280,7 +155927,7 @@ } }, { - "id": 8474, + "id": 7397, "properties": { "facing": "east", "in_wall": "false", @@ -163289,7 +155936,7 @@ } }, { - "id": 8475, + "id": 7398, "properties": { "facing": "east", "in_wall": "false", @@ -163298,7 +155945,7 @@ } }, { - "id": 8476, + "id": 7399, "properties": { "facing": "east", "in_wall": "false", @@ -163344,7 +155991,7 @@ }, "states": [ { - "id": 5706, + "id": 4938, "properties": { "attached": "true", "rotation": "0", @@ -163352,7 +155999,7 @@ } }, { - "id": 5707, + "id": 4939, "properties": { "attached": "true", "rotation": "0", @@ -163360,7 +156007,7 @@ } }, { - "id": 5708, + "id": 4940, "properties": { "attached": "true", "rotation": "1", @@ -163368,7 +156015,7 @@ } }, { - "id": 5709, + "id": 4941, "properties": { "attached": "true", "rotation": "1", @@ -163376,7 +156023,7 @@ } }, { - "id": 5710, + "id": 4942, "properties": { "attached": "true", "rotation": "2", @@ -163384,7 +156031,7 @@ } }, { - "id": 5711, + "id": 4943, "properties": { "attached": "true", "rotation": "2", @@ -163392,7 +156039,7 @@ } }, { - "id": 5712, + "id": 4944, "properties": { "attached": "true", "rotation": "3", @@ -163400,7 +156047,7 @@ } }, { - "id": 5713, + "id": 4945, "properties": { "attached": "true", "rotation": "3", @@ -163408,7 +156055,7 @@ } }, { - "id": 5714, + "id": 4946, "properties": { "attached": "true", "rotation": "4", @@ -163416,7 +156063,7 @@ } }, { - "id": 5715, + "id": 4947, "properties": { "attached": "true", "rotation": "4", @@ -163424,7 +156071,7 @@ } }, { - "id": 5716, + "id": 4948, "properties": { "attached": "true", "rotation": "5", @@ -163432,7 +156079,7 @@ } }, { - "id": 5717, + "id": 4949, "properties": { "attached": "true", "rotation": "5", @@ -163440,7 +156087,7 @@ } }, { - "id": 5718, + "id": 4950, "properties": { "attached": "true", "rotation": "6", @@ -163448,7 +156095,7 @@ } }, { - "id": 5719, + "id": 4951, "properties": { "attached": "true", "rotation": "6", @@ -163456,7 +156103,7 @@ } }, { - "id": 5720, + "id": 4952, "properties": { "attached": "true", "rotation": "7", @@ -163464,7 +156111,7 @@ } }, { - "id": 5721, + "id": 4953, "properties": { "attached": "true", "rotation": "7", @@ -163472,7 +156119,7 @@ } }, { - "id": 5722, + "id": 4954, "properties": { "attached": "true", "rotation": "8", @@ -163480,7 +156127,7 @@ } }, { - "id": 5723, + "id": 4955, "properties": { "attached": "true", "rotation": "8", @@ -163488,7 +156135,7 @@ } }, { - "id": 5724, + "id": 4956, "properties": { "attached": "true", "rotation": "9", @@ -163496,7 +156143,7 @@ } }, { - "id": 5725, + "id": 4957, "properties": { "attached": "true", "rotation": "9", @@ -163504,7 +156151,7 @@ } }, { - "id": 5726, + "id": 4958, "properties": { "attached": "true", "rotation": "10", @@ -163512,7 +156159,7 @@ } }, { - "id": 5727, + "id": 4959, "properties": { "attached": "true", "rotation": "10", @@ -163520,7 +156167,7 @@ } }, { - "id": 5728, + "id": 4960, "properties": { "attached": "true", "rotation": "11", @@ -163528,7 +156175,7 @@ } }, { - "id": 5729, + "id": 4961, "properties": { "attached": "true", "rotation": "11", @@ -163536,7 +156183,7 @@ } }, { - "id": 5730, + "id": 4962, "properties": { "attached": "true", "rotation": "12", @@ -163544,7 +156191,7 @@ } }, { - "id": 5731, + "id": 4963, "properties": { "attached": "true", "rotation": "12", @@ -163552,7 +156199,7 @@ } }, { - "id": 5732, + "id": 4964, "properties": { "attached": "true", "rotation": "13", @@ -163560,7 +156207,7 @@ } }, { - "id": 5733, + "id": 4965, "properties": { "attached": "true", "rotation": "13", @@ -163568,7 +156215,7 @@ } }, { - "id": 5734, + "id": 4966, "properties": { "attached": "true", "rotation": "14", @@ -163576,7 +156223,7 @@ } }, { - "id": 5735, + "id": 4967, "properties": { "attached": "true", "rotation": "14", @@ -163584,7 +156231,7 @@ } }, { - "id": 5736, + "id": 4968, "properties": { "attached": "true", "rotation": "15", @@ -163592,7 +156239,7 @@ } }, { - "id": 5737, + "id": 4969, "properties": { "attached": "true", "rotation": "15", @@ -163600,7 +156247,7 @@ } }, { - "id": 5738, + "id": 4970, "properties": { "attached": "false", "rotation": "0", @@ -163609,7 +156256,7 @@ }, { "default": true, - "id": 5739, + "id": 4971, "properties": { "attached": "false", "rotation": "0", @@ -163617,7 +156264,7 @@ } }, { - "id": 5740, + "id": 4972, "properties": { "attached": "false", "rotation": "1", @@ -163625,7 +156272,7 @@ } }, { - "id": 5741, + "id": 4973, "properties": { "attached": "false", "rotation": "1", @@ -163633,7 +156280,7 @@ } }, { - "id": 5742, + "id": 4974, "properties": { "attached": "false", "rotation": "2", @@ -163641,7 +156288,7 @@ } }, { - "id": 5743, + "id": 4975, "properties": { "attached": "false", "rotation": "2", @@ -163649,7 +156296,7 @@ } }, { - "id": 5744, + "id": 4976, "properties": { "attached": "false", "rotation": "3", @@ -163657,7 +156304,7 @@ } }, { - "id": 5745, + "id": 4977, "properties": { "attached": "false", "rotation": "3", @@ -163665,7 +156312,7 @@ } }, { - "id": 5746, + "id": 4978, "properties": { "attached": "false", "rotation": "4", @@ -163673,7 +156320,7 @@ } }, { - "id": 5747, + "id": 4979, "properties": { "attached": "false", "rotation": "4", @@ -163681,7 +156328,7 @@ } }, { - "id": 5748, + "id": 4980, "properties": { "attached": "false", "rotation": "5", @@ -163689,7 +156336,7 @@ } }, { - "id": 5749, + "id": 4981, "properties": { "attached": "false", "rotation": "5", @@ -163697,7 +156344,7 @@ } }, { - "id": 5750, + "id": 4982, "properties": { "attached": "false", "rotation": "6", @@ -163705,7 +156352,7 @@ } }, { - "id": 5751, + "id": 4983, "properties": { "attached": "false", "rotation": "6", @@ -163713,7 +156360,7 @@ } }, { - "id": 5752, + "id": 4984, "properties": { "attached": "false", "rotation": "7", @@ -163721,7 +156368,7 @@ } }, { - "id": 5753, + "id": 4985, "properties": { "attached": "false", "rotation": "7", @@ -163729,7 +156376,7 @@ } }, { - "id": 5754, + "id": 4986, "properties": { "attached": "false", "rotation": "8", @@ -163737,7 +156384,7 @@ } }, { - "id": 5755, + "id": 4987, "properties": { "attached": "false", "rotation": "8", @@ -163745,7 +156392,7 @@ } }, { - "id": 5756, + "id": 4988, "properties": { "attached": "false", "rotation": "9", @@ -163753,7 +156400,7 @@ } }, { - "id": 5757, + "id": 4989, "properties": { "attached": "false", "rotation": "9", @@ -163761,7 +156408,7 @@ } }, { - "id": 5758, + "id": 4990, "properties": { "attached": "false", "rotation": "10", @@ -163769,7 +156416,7 @@ } }, { - "id": 5759, + "id": 4991, "properties": { "attached": "false", "rotation": "10", @@ -163777,7 +156424,7 @@ } }, { - "id": 5760, + "id": 4992, "properties": { "attached": "false", "rotation": "11", @@ -163785,7 +156432,7 @@ } }, { - "id": 5761, + "id": 4993, "properties": { "attached": "false", "rotation": "11", @@ -163793,7 +156440,7 @@ } }, { - "id": 5762, + "id": 4994, "properties": { "attached": "false", "rotation": "12", @@ -163801,7 +156448,7 @@ } }, { - "id": 5763, + "id": 4995, "properties": { "attached": "false", "rotation": "12", @@ -163809,7 +156456,7 @@ } }, { - "id": 5764, + "id": 4996, "properties": { "attached": "false", "rotation": "13", @@ -163817,7 +156464,7 @@ } }, { - "id": 5765, + "id": 4997, "properties": { "attached": "false", "rotation": "13", @@ -163825,7 +156472,7 @@ } }, { - "id": 5766, + "id": 4998, "properties": { "attached": "false", "rotation": "14", @@ -163833,7 +156480,7 @@ } }, { - "id": 5767, + "id": 4999, "properties": { "attached": "false", "rotation": "14", @@ -163841,7 +156488,7 @@ } }, { - "id": 5768, + "id": 5000, "properties": { "attached": "false", "rotation": "15", @@ -163849,7 +156496,7 @@ } }, { - "id": 5769, + "id": 5001, "properties": { "attached": "false", "rotation": "15", @@ -164171,14 +156818,14 @@ }, "states": [ { - "id": 6660, + "id": 5892, "properties": { "powered": "true" } }, { "default": true, - "id": 6661, + "id": 5893, "properties": { "powered": "false" } @@ -164213,613 +156860,6 @@ } ] }, - "minecraft:oak_shelf": { - "definition": { - "type": "minecraft:shelf", - "properties": {} - }, - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ], - "side_chain": [ - "unconnected", - "right", - "center", - "left" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 2911, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2912, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2913, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2914, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2915, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2916, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2917, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2918, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2919, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 2920, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2921, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2922, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2923, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2924, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2925, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2926, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2927, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2928, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2929, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2930, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2931, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2932, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2933, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2934, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2935, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2936, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2937, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2938, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2939, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2940, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2941, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2942, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2943, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2944, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2945, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2946, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2947, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2948, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2949, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2950, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2951, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2952, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2953, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2954, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2955, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2956, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2957, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2958, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2959, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2960, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2961, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2962, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2963, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2964, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2965, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2966, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2967, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2968, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2969, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2970, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2971, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2972, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2973, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2974, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "left", - "waterlogged": "false" - } - } - ] - }, "minecraft:oak_sign": { "definition": { "type": "minecraft:standing_sign", @@ -164852,7 +156892,7 @@ }, "states": [ { - "id": 5134, + "id": 4366, "properties": { "rotation": "0", "waterlogged": "true" @@ -164860,217 +156900,217 @@ }, { "default": true, - "id": 5135, + "id": 4367, "properties": { "rotation": "0", "waterlogged": "false" } }, { - "id": 5136, + "id": 4368, "properties": { "rotation": "1", "waterlogged": "true" } }, { - "id": 5137, + "id": 4369, "properties": { "rotation": "1", "waterlogged": "false" } }, { - "id": 5138, + "id": 4370, "properties": { "rotation": "2", "waterlogged": "true" } }, { - "id": 5139, + "id": 4371, "properties": { "rotation": "2", "waterlogged": "false" } }, { - "id": 5140, + "id": 4372, "properties": { "rotation": "3", "waterlogged": "true" } }, { - "id": 5141, + "id": 4373, "properties": { "rotation": "3", "waterlogged": "false" } }, { - "id": 5142, + "id": 4374, "properties": { "rotation": "4", "waterlogged": "true" } }, { - "id": 5143, + "id": 4375, "properties": { "rotation": "4", "waterlogged": "false" } }, { - "id": 5144, + "id": 4376, "properties": { "rotation": "5", "waterlogged": "true" } }, { - "id": 5145, + "id": 4377, "properties": { "rotation": "5", "waterlogged": "false" } }, { - "id": 5146, + "id": 4378, "properties": { "rotation": "6", "waterlogged": "true" } }, { - "id": 5147, + "id": 4379, "properties": { "rotation": "6", "waterlogged": "false" } }, { - "id": 5148, + "id": 4380, "properties": { "rotation": "7", "waterlogged": "true" } }, { - "id": 5149, + "id": 4381, "properties": { "rotation": "7", "waterlogged": "false" } }, { - "id": 5150, + "id": 4382, "properties": { "rotation": "8", "waterlogged": "true" } }, { - "id": 5151, + "id": 4383, "properties": { "rotation": "8", "waterlogged": "false" } }, { - "id": 5152, + "id": 4384, "properties": { "rotation": "9", "waterlogged": "true" } }, { - "id": 5153, + "id": 4385, "properties": { "rotation": "9", "waterlogged": "false" } }, { - "id": 5154, + "id": 4386, "properties": { "rotation": "10", "waterlogged": "true" } }, { - "id": 5155, + "id": 4387, "properties": { "rotation": "10", "waterlogged": "false" } }, { - "id": 5156, + "id": 4388, "properties": { "rotation": "11", "waterlogged": "true" } }, { - "id": 5157, + "id": 4389, "properties": { "rotation": "11", "waterlogged": "false" } }, { - "id": 5158, + "id": 4390, "properties": { "rotation": "12", "waterlogged": "true" } }, { - "id": 5159, + "id": 4391, "properties": { "rotation": "12", "waterlogged": "false" } }, { - "id": 5160, + "id": 4392, "properties": { "rotation": "13", "waterlogged": "true" } }, { - "id": 5161, + "id": 4393, "properties": { "rotation": "13", "waterlogged": "false" } }, { - "id": 5162, + "id": 4394, "properties": { "rotation": "14", "waterlogged": "true" } }, { - "id": 5163, + "id": 4395, "properties": { "rotation": "14", "waterlogged": "false" } }, { - "id": 5164, + "id": 4396, "properties": { "rotation": "15", "waterlogged": "true" } }, { - "id": 5165, + "id": 4397, "properties": { "rotation": "15", "waterlogged": "false" @@ -165096,21 +157136,21 @@ }, "states": [ { - "id": 13128, + "id": 12051, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 13129, + "id": 12052, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 13130, + "id": 12053, "properties": { "type": "bottom", "waterlogged": "true" @@ -165118,21 +157158,21 @@ }, { "default": true, - "id": 13131, + "id": 12054, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 13132, + "id": 12055, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 13133, + "id": 12056, "properties": { "type": "double", "waterlogged": "false" @@ -165173,7 +157213,7 @@ }, "states": [ { - "id": 3706, + "id": 2938, "properties": { "facing": "north", "half": "top", @@ -165182,7 +157222,7 @@ } }, { - "id": 3707, + "id": 2939, "properties": { "facing": "north", "half": "top", @@ -165191,7 +157231,7 @@ } }, { - "id": 3708, + "id": 2940, "properties": { "facing": "north", "half": "top", @@ -165200,7 +157240,7 @@ } }, { - "id": 3709, + "id": 2941, "properties": { "facing": "north", "half": "top", @@ -165209,7 +157249,7 @@ } }, { - "id": 3710, + "id": 2942, "properties": { "facing": "north", "half": "top", @@ -165218,7 +157258,7 @@ } }, { - "id": 3711, + "id": 2943, "properties": { "facing": "north", "half": "top", @@ -165227,7 +157267,7 @@ } }, { - "id": 3712, + "id": 2944, "properties": { "facing": "north", "half": "top", @@ -165236,7 +157276,7 @@ } }, { - "id": 3713, + "id": 2945, "properties": { "facing": "north", "half": "top", @@ -165245,7 +157285,7 @@ } }, { - "id": 3714, + "id": 2946, "properties": { "facing": "north", "half": "top", @@ -165254,7 +157294,7 @@ } }, { - "id": 3715, + "id": 2947, "properties": { "facing": "north", "half": "top", @@ -165263,7 +157303,7 @@ } }, { - "id": 3716, + "id": 2948, "properties": { "facing": "north", "half": "bottom", @@ -165273,7 +157313,7 @@ }, { "default": true, - "id": 3717, + "id": 2949, "properties": { "facing": "north", "half": "bottom", @@ -165282,7 +157322,7 @@ } }, { - "id": 3718, + "id": 2950, "properties": { "facing": "north", "half": "bottom", @@ -165291,7 +157331,7 @@ } }, { - "id": 3719, + "id": 2951, "properties": { "facing": "north", "half": "bottom", @@ -165300,7 +157340,7 @@ } }, { - "id": 3720, + "id": 2952, "properties": { "facing": "north", "half": "bottom", @@ -165309,7 +157349,7 @@ } }, { - "id": 3721, + "id": 2953, "properties": { "facing": "north", "half": "bottom", @@ -165318,7 +157358,7 @@ } }, { - "id": 3722, + "id": 2954, "properties": { "facing": "north", "half": "bottom", @@ -165327,7 +157367,7 @@ } }, { - "id": 3723, + "id": 2955, "properties": { "facing": "north", "half": "bottom", @@ -165336,7 +157376,7 @@ } }, { - "id": 3724, + "id": 2956, "properties": { "facing": "north", "half": "bottom", @@ -165345,7 +157385,7 @@ } }, { - "id": 3725, + "id": 2957, "properties": { "facing": "north", "half": "bottom", @@ -165354,7 +157394,7 @@ } }, { - "id": 3726, + "id": 2958, "properties": { "facing": "south", "half": "top", @@ -165363,7 +157403,7 @@ } }, { - "id": 3727, + "id": 2959, "properties": { "facing": "south", "half": "top", @@ -165372,7 +157412,7 @@ } }, { - "id": 3728, + "id": 2960, "properties": { "facing": "south", "half": "top", @@ -165381,7 +157421,7 @@ } }, { - "id": 3729, + "id": 2961, "properties": { "facing": "south", "half": "top", @@ -165390,7 +157430,7 @@ } }, { - "id": 3730, + "id": 2962, "properties": { "facing": "south", "half": "top", @@ -165399,7 +157439,7 @@ } }, { - "id": 3731, + "id": 2963, "properties": { "facing": "south", "half": "top", @@ -165408,7 +157448,7 @@ } }, { - "id": 3732, + "id": 2964, "properties": { "facing": "south", "half": "top", @@ -165417,7 +157457,7 @@ } }, { - "id": 3733, + "id": 2965, "properties": { "facing": "south", "half": "top", @@ -165426,7 +157466,7 @@ } }, { - "id": 3734, + "id": 2966, "properties": { "facing": "south", "half": "top", @@ -165435,7 +157475,7 @@ } }, { - "id": 3735, + "id": 2967, "properties": { "facing": "south", "half": "top", @@ -165444,7 +157484,7 @@ } }, { - "id": 3736, + "id": 2968, "properties": { "facing": "south", "half": "bottom", @@ -165453,7 +157493,7 @@ } }, { - "id": 3737, + "id": 2969, "properties": { "facing": "south", "half": "bottom", @@ -165462,7 +157502,7 @@ } }, { - "id": 3738, + "id": 2970, "properties": { "facing": "south", "half": "bottom", @@ -165471,7 +157511,7 @@ } }, { - "id": 3739, + "id": 2971, "properties": { "facing": "south", "half": "bottom", @@ -165480,7 +157520,7 @@ } }, { - "id": 3740, + "id": 2972, "properties": { "facing": "south", "half": "bottom", @@ -165489,7 +157529,7 @@ } }, { - "id": 3741, + "id": 2973, "properties": { "facing": "south", "half": "bottom", @@ -165498,7 +157538,7 @@ } }, { - "id": 3742, + "id": 2974, "properties": { "facing": "south", "half": "bottom", @@ -165507,7 +157547,7 @@ } }, { - "id": 3743, + "id": 2975, "properties": { "facing": "south", "half": "bottom", @@ -165516,7 +157556,7 @@ } }, { - "id": 3744, + "id": 2976, "properties": { "facing": "south", "half": "bottom", @@ -165525,7 +157565,7 @@ } }, { - "id": 3745, + "id": 2977, "properties": { "facing": "south", "half": "bottom", @@ -165534,7 +157574,7 @@ } }, { - "id": 3746, + "id": 2978, "properties": { "facing": "west", "half": "top", @@ -165543,7 +157583,7 @@ } }, { - "id": 3747, + "id": 2979, "properties": { "facing": "west", "half": "top", @@ -165552,7 +157592,7 @@ } }, { - "id": 3748, + "id": 2980, "properties": { "facing": "west", "half": "top", @@ -165561,7 +157601,7 @@ } }, { - "id": 3749, + "id": 2981, "properties": { "facing": "west", "half": "top", @@ -165570,7 +157610,7 @@ } }, { - "id": 3750, + "id": 2982, "properties": { "facing": "west", "half": "top", @@ -165579,7 +157619,7 @@ } }, { - "id": 3751, + "id": 2983, "properties": { "facing": "west", "half": "top", @@ -165588,7 +157628,7 @@ } }, { - "id": 3752, + "id": 2984, "properties": { "facing": "west", "half": "top", @@ -165597,7 +157637,7 @@ } }, { - "id": 3753, + "id": 2985, "properties": { "facing": "west", "half": "top", @@ -165606,7 +157646,7 @@ } }, { - "id": 3754, + "id": 2986, "properties": { "facing": "west", "half": "top", @@ -165615,7 +157655,7 @@ } }, { - "id": 3755, + "id": 2987, "properties": { "facing": "west", "half": "top", @@ -165624,7 +157664,7 @@ } }, { - "id": 3756, + "id": 2988, "properties": { "facing": "west", "half": "bottom", @@ -165633,7 +157673,7 @@ } }, { - "id": 3757, + "id": 2989, "properties": { "facing": "west", "half": "bottom", @@ -165642,7 +157682,7 @@ } }, { - "id": 3758, + "id": 2990, "properties": { "facing": "west", "half": "bottom", @@ -165651,7 +157691,7 @@ } }, { - "id": 3759, + "id": 2991, "properties": { "facing": "west", "half": "bottom", @@ -165660,7 +157700,7 @@ } }, { - "id": 3760, + "id": 2992, "properties": { "facing": "west", "half": "bottom", @@ -165669,7 +157709,7 @@ } }, { - "id": 3761, + "id": 2993, "properties": { "facing": "west", "half": "bottom", @@ -165678,7 +157718,7 @@ } }, { - "id": 3762, + "id": 2994, "properties": { "facing": "west", "half": "bottom", @@ -165687,7 +157727,7 @@ } }, { - "id": 3763, + "id": 2995, "properties": { "facing": "west", "half": "bottom", @@ -165696,7 +157736,7 @@ } }, { - "id": 3764, + "id": 2996, "properties": { "facing": "west", "half": "bottom", @@ -165705,7 +157745,7 @@ } }, { - "id": 3765, + "id": 2997, "properties": { "facing": "west", "half": "bottom", @@ -165714,7 +157754,7 @@ } }, { - "id": 3766, + "id": 2998, "properties": { "facing": "east", "half": "top", @@ -165723,7 +157763,7 @@ } }, { - "id": 3767, + "id": 2999, "properties": { "facing": "east", "half": "top", @@ -165732,7 +157772,7 @@ } }, { - "id": 3768, + "id": 3000, "properties": { "facing": "east", "half": "top", @@ -165741,7 +157781,7 @@ } }, { - "id": 3769, + "id": 3001, "properties": { "facing": "east", "half": "top", @@ -165750,7 +157790,7 @@ } }, { - "id": 3770, + "id": 3002, "properties": { "facing": "east", "half": "top", @@ -165759,7 +157799,7 @@ } }, { - "id": 3771, + "id": 3003, "properties": { "facing": "east", "half": "top", @@ -165768,7 +157808,7 @@ } }, { - "id": 3772, + "id": 3004, "properties": { "facing": "east", "half": "top", @@ -165777,7 +157817,7 @@ } }, { - "id": 3773, + "id": 3005, "properties": { "facing": "east", "half": "top", @@ -165786,7 +157826,7 @@ } }, { - "id": 3774, + "id": 3006, "properties": { "facing": "east", "half": "top", @@ -165795,7 +157835,7 @@ } }, { - "id": 3775, + "id": 3007, "properties": { "facing": "east", "half": "top", @@ -165804,7 +157844,7 @@ } }, { - "id": 3776, + "id": 3008, "properties": { "facing": "east", "half": "bottom", @@ -165813,7 +157853,7 @@ } }, { - "id": 3777, + "id": 3009, "properties": { "facing": "east", "half": "bottom", @@ -165822,7 +157862,7 @@ } }, { - "id": 3778, + "id": 3010, "properties": { "facing": "east", "half": "bottom", @@ -165831,7 +157871,7 @@ } }, { - "id": 3779, + "id": 3011, "properties": { "facing": "east", "half": "bottom", @@ -165840,7 +157880,7 @@ } }, { - "id": 3780, + "id": 3012, "properties": { "facing": "east", "half": "bottom", @@ -165849,7 +157889,7 @@ } }, { - "id": 3781, + "id": 3013, "properties": { "facing": "east", "half": "bottom", @@ -165858,7 +157898,7 @@ } }, { - "id": 3782, + "id": 3014, "properties": { "facing": "east", "half": "bottom", @@ -165867,7 +157907,7 @@ } }, { - "id": 3783, + "id": 3015, "properties": { "facing": "east", "half": "bottom", @@ -165876,7 +157916,7 @@ } }, { - "id": 3784, + "id": 3016, "properties": { "facing": "east", "half": "bottom", @@ -165885,7 +157925,7 @@ } }, { - "id": 3785, + "id": 3017, "properties": { "facing": "east", "half": "bottom", @@ -165927,7 +157967,7 @@ }, "states": [ { - "id": 6913, + "id": 6140, "properties": { "facing": "north", "half": "top", @@ -165937,7 +157977,7 @@ } }, { - "id": 6914, + "id": 6141, "properties": { "facing": "north", "half": "top", @@ -165947,7 +157987,7 @@ } }, { - "id": 6915, + "id": 6142, "properties": { "facing": "north", "half": "top", @@ -165957,7 +157997,7 @@ } }, { - "id": 6916, + "id": 6143, "properties": { "facing": "north", "half": "top", @@ -165967,7 +158007,7 @@ } }, { - "id": 6917, + "id": 6144, "properties": { "facing": "north", "half": "top", @@ -165977,7 +158017,7 @@ } }, { - "id": 6918, + "id": 6145, "properties": { "facing": "north", "half": "top", @@ -165987,7 +158027,7 @@ } }, { - "id": 6919, + "id": 6146, "properties": { "facing": "north", "half": "top", @@ -165997,7 +158037,7 @@ } }, { - "id": 6920, + "id": 6147, "properties": { "facing": "north", "half": "top", @@ -166007,7 +158047,7 @@ } }, { - "id": 6921, + "id": 6148, "properties": { "facing": "north", "half": "bottom", @@ -166017,7 +158057,7 @@ } }, { - "id": 6922, + "id": 6149, "properties": { "facing": "north", "half": "bottom", @@ -166027,7 +158067,7 @@ } }, { - "id": 6923, + "id": 6150, "properties": { "facing": "north", "half": "bottom", @@ -166037,7 +158077,7 @@ } }, { - "id": 6924, + "id": 6151, "properties": { "facing": "north", "half": "bottom", @@ -166047,7 +158087,7 @@ } }, { - "id": 6925, + "id": 6152, "properties": { "facing": "north", "half": "bottom", @@ -166057,7 +158097,7 @@ } }, { - "id": 6926, + "id": 6153, "properties": { "facing": "north", "half": "bottom", @@ -166067,7 +158107,7 @@ } }, { - "id": 6927, + "id": 6154, "properties": { "facing": "north", "half": "bottom", @@ -166078,7 +158118,7 @@ }, { "default": true, - "id": 6928, + "id": 6155, "properties": { "facing": "north", "half": "bottom", @@ -166088,7 +158128,7 @@ } }, { - "id": 6929, + "id": 6156, "properties": { "facing": "south", "half": "top", @@ -166098,7 +158138,7 @@ } }, { - "id": 6930, + "id": 6157, "properties": { "facing": "south", "half": "top", @@ -166108,7 +158148,7 @@ } }, { - "id": 6931, + "id": 6158, "properties": { "facing": "south", "half": "top", @@ -166118,7 +158158,7 @@ } }, { - "id": 6932, + "id": 6159, "properties": { "facing": "south", "half": "top", @@ -166128,7 +158168,7 @@ } }, { - "id": 6933, + "id": 6160, "properties": { "facing": "south", "half": "top", @@ -166138,7 +158178,7 @@ } }, { - "id": 6934, + "id": 6161, "properties": { "facing": "south", "half": "top", @@ -166148,7 +158188,7 @@ } }, { - "id": 6935, + "id": 6162, "properties": { "facing": "south", "half": "top", @@ -166158,7 +158198,7 @@ } }, { - "id": 6936, + "id": 6163, "properties": { "facing": "south", "half": "top", @@ -166168,7 +158208,7 @@ } }, { - "id": 6937, + "id": 6164, "properties": { "facing": "south", "half": "bottom", @@ -166178,7 +158218,7 @@ } }, { - "id": 6938, + "id": 6165, "properties": { "facing": "south", "half": "bottom", @@ -166188,7 +158228,7 @@ } }, { - "id": 6939, + "id": 6166, "properties": { "facing": "south", "half": "bottom", @@ -166198,7 +158238,7 @@ } }, { - "id": 6940, + "id": 6167, "properties": { "facing": "south", "half": "bottom", @@ -166208,7 +158248,7 @@ } }, { - "id": 6941, + "id": 6168, "properties": { "facing": "south", "half": "bottom", @@ -166218,7 +158258,7 @@ } }, { - "id": 6942, + "id": 6169, "properties": { "facing": "south", "half": "bottom", @@ -166228,7 +158268,7 @@ } }, { - "id": 6943, + "id": 6170, "properties": { "facing": "south", "half": "bottom", @@ -166238,7 +158278,7 @@ } }, { - "id": 6944, + "id": 6171, "properties": { "facing": "south", "half": "bottom", @@ -166248,7 +158288,7 @@ } }, { - "id": 6945, + "id": 6172, "properties": { "facing": "west", "half": "top", @@ -166258,7 +158298,7 @@ } }, { - "id": 6946, + "id": 6173, "properties": { "facing": "west", "half": "top", @@ -166268,7 +158308,7 @@ } }, { - "id": 6947, + "id": 6174, "properties": { "facing": "west", "half": "top", @@ -166278,7 +158318,7 @@ } }, { - "id": 6948, + "id": 6175, "properties": { "facing": "west", "half": "top", @@ -166288,7 +158328,7 @@ } }, { - "id": 6949, + "id": 6176, "properties": { "facing": "west", "half": "top", @@ -166298,7 +158338,7 @@ } }, { - "id": 6950, + "id": 6177, "properties": { "facing": "west", "half": "top", @@ -166308,7 +158348,7 @@ } }, { - "id": 6951, + "id": 6178, "properties": { "facing": "west", "half": "top", @@ -166318,7 +158358,7 @@ } }, { - "id": 6952, + "id": 6179, "properties": { "facing": "west", "half": "top", @@ -166328,7 +158368,7 @@ } }, { - "id": 6953, + "id": 6180, "properties": { "facing": "west", "half": "bottom", @@ -166338,7 +158378,7 @@ } }, { - "id": 6954, + "id": 6181, "properties": { "facing": "west", "half": "bottom", @@ -166348,7 +158388,7 @@ } }, { - "id": 6955, + "id": 6182, "properties": { "facing": "west", "half": "bottom", @@ -166358,7 +158398,7 @@ } }, { - "id": 6956, + "id": 6183, "properties": { "facing": "west", "half": "bottom", @@ -166368,7 +158408,7 @@ } }, { - "id": 6957, + "id": 6184, "properties": { "facing": "west", "half": "bottom", @@ -166378,7 +158418,7 @@ } }, { - "id": 6958, + "id": 6185, "properties": { "facing": "west", "half": "bottom", @@ -166388,7 +158428,7 @@ } }, { - "id": 6959, + "id": 6186, "properties": { "facing": "west", "half": "bottom", @@ -166398,7 +158438,7 @@ } }, { - "id": 6960, + "id": 6187, "properties": { "facing": "west", "half": "bottom", @@ -166408,7 +158448,7 @@ } }, { - "id": 6961, + "id": 6188, "properties": { "facing": "east", "half": "top", @@ -166418,7 +158458,7 @@ } }, { - "id": 6962, + "id": 6189, "properties": { "facing": "east", "half": "top", @@ -166428,7 +158468,7 @@ } }, { - "id": 6963, + "id": 6190, "properties": { "facing": "east", "half": "top", @@ -166438,7 +158478,7 @@ } }, { - "id": 6964, + "id": 6191, "properties": { "facing": "east", "half": "top", @@ -166448,7 +158488,7 @@ } }, { - "id": 6965, + "id": 6192, "properties": { "facing": "east", "half": "top", @@ -166458,7 +158498,7 @@ } }, { - "id": 6966, + "id": 6193, "properties": { "facing": "east", "half": "top", @@ -166468,7 +158508,7 @@ } }, { - "id": 6967, + "id": 6194, "properties": { "facing": "east", "half": "top", @@ -166478,7 +158518,7 @@ } }, { - "id": 6968, + "id": 6195, "properties": { "facing": "east", "half": "top", @@ -166488,7 +158528,7 @@ } }, { - "id": 6969, + "id": 6196, "properties": { "facing": "east", "half": "bottom", @@ -166498,7 +158538,7 @@ } }, { - "id": 6970, + "id": 6197, "properties": { "facing": "east", "half": "bottom", @@ -166508,7 +158548,7 @@ } }, { - "id": 6971, + "id": 6198, "properties": { "facing": "east", "half": "bottom", @@ -166518,7 +158558,7 @@ } }, { - "id": 6972, + "id": 6199, "properties": { "facing": "east", "half": "bottom", @@ -166528,7 +158568,7 @@ } }, { - "id": 6973, + "id": 6200, "properties": { "facing": "east", "half": "bottom", @@ -166538,7 +158578,7 @@ } }, { - "id": 6974, + "id": 6201, "properties": { "facing": "east", "half": "bottom", @@ -166548,7 +158588,7 @@ } }, { - "id": 6975, + "id": 6202, "properties": { "facing": "east", "half": "bottom", @@ -166558,7 +158598,7 @@ } }, { - "id": 6976, + "id": 6203, "properties": { "facing": "east", "half": "bottom", @@ -166589,7 +158629,7 @@ }, "states": [ { - "id": 6474, + "id": 5706, "properties": { "facing": "north", "waterlogged": "true" @@ -166597,49 +158637,49 @@ }, { "default": true, - "id": 6475, + "id": 5707, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 6476, + "id": 5708, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 6477, + "id": 5709, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 6478, + "id": 5710, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 6479, + "id": 5711, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 6480, + "id": 5712, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 6481, + "id": 5713, "properties": { "facing": "east", "waterlogged": "false" @@ -166667,7 +158707,7 @@ }, "states": [ { - "id": 5626, + "id": 4858, "properties": { "facing": "north", "waterlogged": "true" @@ -166675,49 +158715,49 @@ }, { "default": true, - "id": 5627, + "id": 4859, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 5628, + "id": 4860, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 5629, + "id": 4861, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 5630, + "id": 4862, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 5631, + "id": 4863, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 5632, + "id": 4864, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 5633, + "id": 4865, "properties": { "facing": "east", "waterlogged": "false" @@ -166780,35 +158820,35 @@ }, "states": [ { - "id": 14650, + "id": 13573, "properties": { "facing": "north", "powered": "true" } }, { - "id": 14651, + "id": 13574, "properties": { "facing": "north", "powered": "false" } }, { - "id": 14652, + "id": 13575, "properties": { "facing": "east", "powered": "true" } }, { - "id": 14653, + "id": 13576, "properties": { "facing": "east", "powered": "false" } }, { - "id": 14654, + "id": 13577, "properties": { "facing": "south", "powered": "true" @@ -166816,49 +158856,49 @@ }, { "default": true, - "id": 14655, + "id": 13578, "properties": { "facing": "south", "powered": "false" } }, { - "id": 14656, + "id": 13579, "properties": { "facing": "west", "powered": "true" } }, { - "id": 14657, + "id": 13580, "properties": { "facing": "west", "powered": "false" } }, { - "id": 14658, + "id": 13581, "properties": { "facing": "up", "powered": "true" } }, { - "id": 14659, + "id": 13582, "properties": { "facing": "up", "powered": "false" } }, { - "id": 14660, + "id": 13583, "properties": { "facing": "down", "powered": "true" } }, { - "id": 14661, + "id": 13584, "properties": { "facing": "down", "powered": "false" @@ -166874,7 +158914,7 @@ "states": [ { "default": true, - "id": 3168 + "id": 2400 } ] }, @@ -166892,20 +158932,20 @@ }, "states": [ { - "id": 29380, + "id": 27623, "properties": { "axis": "x" } }, { "default": true, - "id": 29381, + "id": 27624, "properties": { "axis": "y" } }, { - "id": 29382, + "id": 27625, "properties": { "axis": "z" } @@ -166921,7 +158961,7 @@ "states": [ { "default": true, - "id": 29666 + "id": 27909 } ] }, @@ -166954,97 +158994,97 @@ "states": [ { "default": true, - "id": 12741, + "id": 11664, "properties": { "rotation": "0" } }, { - "id": 12742, + "id": 11665, "properties": { "rotation": "1" } }, { - "id": 12743, + "id": 11666, "properties": { "rotation": "2" } }, { - "id": 12744, + "id": 11667, "properties": { "rotation": "3" } }, { - "id": 12745, + "id": 11668, "properties": { "rotation": "4" } }, { - "id": 12746, + "id": 11669, "properties": { "rotation": "5" } }, { - "id": 12747, + "id": 11670, "properties": { "rotation": "6" } }, { - "id": 12748, + "id": 11671, "properties": { "rotation": "7" } }, { - "id": 12749, + "id": 11672, "properties": { "rotation": "8" } }, { - "id": 12750, + "id": 11673, "properties": { "rotation": "9" } }, { - "id": 12751, + "id": 11674, "properties": { "rotation": "10" } }, { - "id": 12752, + "id": 11675, "properties": { "rotation": "11" } }, { - "id": 12753, + "id": 11676, "properties": { "rotation": "12" } }, { - "id": 12754, + "id": 11677, "properties": { "rotation": "13" } }, { - "id": 12755, + "id": 11678, "properties": { "rotation": "14" } }, { - "id": 12756, + "id": 11679, "properties": { "rotation": "15" } @@ -167228,7 +159268,7 @@ }, "states": [ { - "id": 22926, + "id": 21785, "properties": { "candles": "1", "lit": "true", @@ -167236,7 +159276,7 @@ } }, { - "id": 22927, + "id": 21786, "properties": { "candles": "1", "lit": "true", @@ -167244,7 +159284,7 @@ } }, { - "id": 22928, + "id": 21787, "properties": { "candles": "1", "lit": "false", @@ -167253,7 +159293,7 @@ }, { "default": true, - "id": 22929, + "id": 21788, "properties": { "candles": "1", "lit": "false", @@ -167261,7 +159301,7 @@ } }, { - "id": 22930, + "id": 21789, "properties": { "candles": "2", "lit": "true", @@ -167269,7 +159309,7 @@ } }, { - "id": 22931, + "id": 21790, "properties": { "candles": "2", "lit": "true", @@ -167277,7 +159317,7 @@ } }, { - "id": 22932, + "id": 21791, "properties": { "candles": "2", "lit": "false", @@ -167285,7 +159325,7 @@ } }, { - "id": 22933, + "id": 21792, "properties": { "candles": "2", "lit": "false", @@ -167293,7 +159333,7 @@ } }, { - "id": 22934, + "id": 21793, "properties": { "candles": "3", "lit": "true", @@ -167301,7 +159341,7 @@ } }, { - "id": 22935, + "id": 21794, "properties": { "candles": "3", "lit": "true", @@ -167309,7 +159349,7 @@ } }, { - "id": 22936, + "id": 21795, "properties": { "candles": "3", "lit": "false", @@ -167317,7 +159357,7 @@ } }, { - "id": 22937, + "id": 21796, "properties": { "candles": "3", "lit": "false", @@ -167325,7 +159365,7 @@ } }, { - "id": 22938, + "id": 21797, "properties": { "candles": "4", "lit": "true", @@ -167333,7 +159373,7 @@ } }, { - "id": 22939, + "id": 21798, "properties": { "candles": "4", "lit": "true", @@ -167341,7 +159381,7 @@ } }, { - "id": 22940, + "id": 21799, "properties": { "candles": "4", "lit": "false", @@ -167349,7 +159389,7 @@ } }, { - "id": 22941, + "id": 21800, "properties": { "candles": "4", "lit": "false", @@ -167372,14 +159412,14 @@ }, "states": [ { - "id": 23170, + "id": 22029, "properties": { "lit": "true" } }, { "default": true, - "id": 23171, + "id": 22030, "properties": { "lit": "false" } @@ -167395,7 +159435,7 @@ "states": [ { "default": true, - "id": 12695 + "id": 11618 } ] }, @@ -167407,7 +159447,7 @@ "states": [ { "default": true, - "id": 14829 + "id": 13752 } ] }, @@ -167420,7 +159460,7 @@ "states": [ { "default": true, - "id": 14845 + "id": 13768 } ] }, @@ -167440,25 +159480,25 @@ "states": [ { "default": true, - "id": 14768, + "id": 13691, "properties": { "facing": "north" } }, { - "id": 14769, + "id": 13692, "properties": { "facing": "south" } }, { - "id": 14770, + "id": 13693, "properties": { "facing": "west" } }, { - "id": 14771, + "id": 13694, "properties": { "facing": "east" } @@ -167483,38 +159523,38 @@ }, "states": [ { - "id": 14674, + "id": 13597, "properties": { "facing": "north" } }, { - "id": 14675, + "id": 13598, "properties": { "facing": "east" } }, { - "id": 14676, + "id": 13599, "properties": { "facing": "south" } }, { - "id": 14677, + "id": 13600, "properties": { "facing": "west" } }, { "default": true, - "id": 14678, + "id": 13601, "properties": { "facing": "up" } }, { - "id": 14679, + "id": 13602, "properties": { "facing": "down" } @@ -167530,7 +159570,7 @@ "states": [ { "default": true, - "id": 6898 + "id": 6125 } ] }, @@ -167564,7 +159604,7 @@ }, "states": [ { - "id": 11290, + "id": 10213, "properties": { "east": "true", "north": "true", @@ -167574,7 +159614,7 @@ } }, { - "id": 11291, + "id": 10214, "properties": { "east": "true", "north": "true", @@ -167584,7 +159624,7 @@ } }, { - "id": 11292, + "id": 10215, "properties": { "east": "true", "north": "true", @@ -167594,7 +159634,7 @@ } }, { - "id": 11293, + "id": 10216, "properties": { "east": "true", "north": "true", @@ -167604,7 +159644,7 @@ } }, { - "id": 11294, + "id": 10217, "properties": { "east": "true", "north": "true", @@ -167614,7 +159654,7 @@ } }, { - "id": 11295, + "id": 10218, "properties": { "east": "true", "north": "true", @@ -167624,7 +159664,7 @@ } }, { - "id": 11296, + "id": 10219, "properties": { "east": "true", "north": "true", @@ -167634,7 +159674,7 @@ } }, { - "id": 11297, + "id": 10220, "properties": { "east": "true", "north": "true", @@ -167644,7 +159684,7 @@ } }, { - "id": 11298, + "id": 10221, "properties": { "east": "true", "north": "false", @@ -167654,7 +159694,7 @@ } }, { - "id": 11299, + "id": 10222, "properties": { "east": "true", "north": "false", @@ -167664,7 +159704,7 @@ } }, { - "id": 11300, + "id": 10223, "properties": { "east": "true", "north": "false", @@ -167674,7 +159714,7 @@ } }, { - "id": 11301, + "id": 10224, "properties": { "east": "true", "north": "false", @@ -167684,7 +159724,7 @@ } }, { - "id": 11302, + "id": 10225, "properties": { "east": "true", "north": "false", @@ -167694,7 +159734,7 @@ } }, { - "id": 11303, + "id": 10226, "properties": { "east": "true", "north": "false", @@ -167704,7 +159744,7 @@ } }, { - "id": 11304, + "id": 10227, "properties": { "east": "true", "north": "false", @@ -167714,7 +159754,7 @@ } }, { - "id": 11305, + "id": 10228, "properties": { "east": "true", "north": "false", @@ -167724,7 +159764,7 @@ } }, { - "id": 11306, + "id": 10229, "properties": { "east": "false", "north": "true", @@ -167734,7 +159774,7 @@ } }, { - "id": 11307, + "id": 10230, "properties": { "east": "false", "north": "true", @@ -167744,7 +159784,7 @@ } }, { - "id": 11308, + "id": 10231, "properties": { "east": "false", "north": "true", @@ -167754,7 +159794,7 @@ } }, { - "id": 11309, + "id": 10232, "properties": { "east": "false", "north": "true", @@ -167764,7 +159804,7 @@ } }, { - "id": 11310, + "id": 10233, "properties": { "east": "false", "north": "true", @@ -167774,7 +159814,7 @@ } }, { - "id": 11311, + "id": 10234, "properties": { "east": "false", "north": "true", @@ -167784,7 +159824,7 @@ } }, { - "id": 11312, + "id": 10235, "properties": { "east": "false", "north": "true", @@ -167794,7 +159834,7 @@ } }, { - "id": 11313, + "id": 10236, "properties": { "east": "false", "north": "true", @@ -167804,7 +159844,7 @@ } }, { - "id": 11314, + "id": 10237, "properties": { "east": "false", "north": "false", @@ -167814,7 +159854,7 @@ } }, { - "id": 11315, + "id": 10238, "properties": { "east": "false", "north": "false", @@ -167824,7 +159864,7 @@ } }, { - "id": 11316, + "id": 10239, "properties": { "east": "false", "north": "false", @@ -167834,7 +159874,7 @@ } }, { - "id": 11317, + "id": 10240, "properties": { "east": "false", "north": "false", @@ -167844,7 +159884,7 @@ } }, { - "id": 11318, + "id": 10241, "properties": { "east": "false", "north": "false", @@ -167854,7 +159894,7 @@ } }, { - "id": 11319, + "id": 10242, "properties": { "east": "false", "north": "false", @@ -167864,7 +159904,7 @@ } }, { - "id": 11320, + "id": 10243, "properties": { "east": "false", "north": "false", @@ -167875,7 +159915,7 @@ }, { "default": true, - "id": 11321, + "id": 10244, "properties": { "east": "false", "north": "false", @@ -167888,13 +159928,13 @@ }, "minecraft:orange_terracotta": { "definition": { - "type": "minecraft:block", + "type": "minecraft:terracotta", "properties": {} }, "states": [ { "default": true, - "id": 11243 + "id": 10166 } ] }, @@ -167933,25 +159973,25 @@ "states": [ { "default": true, - "id": 12985, + "id": 11908, "properties": { "facing": "north" } }, { - "id": 12986, + "id": 11909, "properties": { "facing": "south" } }, { - "id": 12987, + "id": 11910, "properties": { "facing": "west" } }, { - "id": 12988, + "id": 11911, "properties": { "facing": "east" } @@ -167997,7 +160037,7 @@ "states": [ { "default": true, - "id": 25117 + "id": 23976 } ] }, @@ -168010,359 +160050,7 @@ "states": [ { "default": true, - "id": 25110 - } - ] - }, - "minecraft:oxidized_copper_bars": { - "definition": { - "type": "minecraft:weathering_copper_bar", - "properties": {}, - "weathering_state": "oxidized" - }, - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 7885, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7886, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7887, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7888, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7889, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7890, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7891, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7892, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7893, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7894, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7895, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7896, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7897, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7898, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7899, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7900, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7901, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7902, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7903, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7904, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7905, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7906, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7907, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7908, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7909, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7910, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7911, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7912, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7913, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7914, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7915, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "default": true, - "id": 7916, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } + "id": 23969 } ] }, @@ -168384,21 +160072,21 @@ }, "states": [ { - "id": 26873, + "id": 25732, "properties": { "lit": "true", "powered": "true" } }, { - "id": 26874, + "id": 25733, "properties": { "lit": "true", "powered": "false" } }, { - "id": 26875, + "id": 25734, "properties": { "lit": "false", "powered": "true" @@ -168406,7 +160094,7 @@ }, { "default": true, - "id": 26876, + "id": 25735, "properties": { "lit": "false", "powered": "false" @@ -168414,290 +160102,6 @@ } ] }, - "minecraft:oxidized_copper_chain": { - "definition": { - "type": "minecraft:weathering_copper_chain", - "properties": {}, - "weathering_state": "oxidized" - }, - "properties": { - "axis": [ - "x", - "y", - "z" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 8069, - "properties": { - "axis": "x", - "waterlogged": "true" - } - }, - { - "id": 8070, - "properties": { - "axis": "x", - "waterlogged": "false" - } - }, - { - "id": 8071, - "properties": { - "axis": "y", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 8072, - "properties": { - "axis": "y", - "waterlogged": "false" - } - }, - { - "id": 8073, - "properties": { - "axis": "z", - "waterlogged": "true" - } - }, - { - "id": 8074, - "properties": { - "axis": "z", - "waterlogged": "false" - } - } - ] - }, - "minecraft:oxidized_copper_chest": { - "definition": { - "type": "minecraft:weathering_copper_chest", - "close_sound": "minecraft:block.copper_chest_oxidized.close", - "open_sound": "minecraft:block.copper_chest_oxidized.open", - "properties": {}, - "weathering_state": "oxidized" - }, - "properties": { - "type": [ - "single", - "left", - "right" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 26965, - "properties": { - "type": "single", - "facing": "north", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 26966, - "properties": { - "type": "single", - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 26967, - "properties": { - "type": "left", - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 26968, - "properties": { - "type": "left", - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 26969, - "properties": { - "type": "right", - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 26970, - "properties": { - "type": "right", - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 26971, - "properties": { - "type": "single", - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 26972, - "properties": { - "type": "single", - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 26973, - "properties": { - "type": "left", - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 26974, - "properties": { - "type": "left", - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 26975, - "properties": { - "type": "right", - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 26976, - "properties": { - "type": "right", - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 26977, - "properties": { - "type": "single", - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 26978, - "properties": { - "type": "single", - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 26979, - "properties": { - "type": "left", - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 26980, - "properties": { - "type": "left", - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 26981, - "properties": { - "type": "right", - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 26982, - "properties": { - "type": "right", - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 26983, - "properties": { - "type": "single", - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 26984, - "properties": { - "type": "single", - "facing": "east", - "waterlogged": "false" - } - }, - { - "id": 26985, - "properties": { - "type": "left", - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 26986, - "properties": { - "type": "left", - "facing": "east", - "waterlogged": "false" - } - }, - { - "id": 26987, - "properties": { - "type": "right", - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 26988, - "properties": { - "type": "right", - "facing": "east", - "waterlogged": "false" - } - } - ] - }, "minecraft:oxidized_copper_door": { "definition": { "type": "minecraft:weathering_copper_door", @@ -168731,7 +160135,7 @@ }, "states": [ { - "id": 25949, + "id": 24808, "properties": { "facing": "north", "half": "upper", @@ -168741,7 +160145,7 @@ } }, { - "id": 25950, + "id": 24809, "properties": { "facing": "north", "half": "upper", @@ -168751,7 +160155,7 @@ } }, { - "id": 25951, + "id": 24810, "properties": { "facing": "north", "half": "upper", @@ -168761,7 +160165,7 @@ } }, { - "id": 25952, + "id": 24811, "properties": { "facing": "north", "half": "upper", @@ -168771,7 +160175,7 @@ } }, { - "id": 25953, + "id": 24812, "properties": { "facing": "north", "half": "upper", @@ -168781,7 +160185,7 @@ } }, { - "id": 25954, + "id": 24813, "properties": { "facing": "north", "half": "upper", @@ -168791,7 +160195,7 @@ } }, { - "id": 25955, + "id": 24814, "properties": { "facing": "north", "half": "upper", @@ -168801,7 +160205,7 @@ } }, { - "id": 25956, + "id": 24815, "properties": { "facing": "north", "half": "upper", @@ -168811,7 +160215,7 @@ } }, { - "id": 25957, + "id": 24816, "properties": { "facing": "north", "half": "lower", @@ -168821,7 +160225,7 @@ } }, { - "id": 25958, + "id": 24817, "properties": { "facing": "north", "half": "lower", @@ -168831,7 +160235,7 @@ } }, { - "id": 25959, + "id": 24818, "properties": { "facing": "north", "half": "lower", @@ -168842,7 +160246,7 @@ }, { "default": true, - "id": 25960, + "id": 24819, "properties": { "facing": "north", "half": "lower", @@ -168852,7 +160256,7 @@ } }, { - "id": 25961, + "id": 24820, "properties": { "facing": "north", "half": "lower", @@ -168862,7 +160266,7 @@ } }, { - "id": 25962, + "id": 24821, "properties": { "facing": "north", "half": "lower", @@ -168872,7 +160276,7 @@ } }, { - "id": 25963, + "id": 24822, "properties": { "facing": "north", "half": "lower", @@ -168882,7 +160286,7 @@ } }, { - "id": 25964, + "id": 24823, "properties": { "facing": "north", "half": "lower", @@ -168892,7 +160296,7 @@ } }, { - "id": 25965, + "id": 24824, "properties": { "facing": "south", "half": "upper", @@ -168902,7 +160306,7 @@ } }, { - "id": 25966, + "id": 24825, "properties": { "facing": "south", "half": "upper", @@ -168912,7 +160316,7 @@ } }, { - "id": 25967, + "id": 24826, "properties": { "facing": "south", "half": "upper", @@ -168922,7 +160326,7 @@ } }, { - "id": 25968, + "id": 24827, "properties": { "facing": "south", "half": "upper", @@ -168932,7 +160336,7 @@ } }, { - "id": 25969, + "id": 24828, "properties": { "facing": "south", "half": "upper", @@ -168942,7 +160346,7 @@ } }, { - "id": 25970, + "id": 24829, "properties": { "facing": "south", "half": "upper", @@ -168952,7 +160356,7 @@ } }, { - "id": 25971, + "id": 24830, "properties": { "facing": "south", "half": "upper", @@ -168962,7 +160366,7 @@ } }, { - "id": 25972, + "id": 24831, "properties": { "facing": "south", "half": "upper", @@ -168972,7 +160376,7 @@ } }, { - "id": 25973, + "id": 24832, "properties": { "facing": "south", "half": "lower", @@ -168982,7 +160386,7 @@ } }, { - "id": 25974, + "id": 24833, "properties": { "facing": "south", "half": "lower", @@ -168992,7 +160396,7 @@ } }, { - "id": 25975, + "id": 24834, "properties": { "facing": "south", "half": "lower", @@ -169002,7 +160406,7 @@ } }, { - "id": 25976, + "id": 24835, "properties": { "facing": "south", "half": "lower", @@ -169012,7 +160416,7 @@ } }, { - "id": 25977, + "id": 24836, "properties": { "facing": "south", "half": "lower", @@ -169022,7 +160426,7 @@ } }, { - "id": 25978, + "id": 24837, "properties": { "facing": "south", "half": "lower", @@ -169032,7 +160436,7 @@ } }, { - "id": 25979, + "id": 24838, "properties": { "facing": "south", "half": "lower", @@ -169042,7 +160446,7 @@ } }, { - "id": 25980, + "id": 24839, "properties": { "facing": "south", "half": "lower", @@ -169052,7 +160456,7 @@ } }, { - "id": 25981, + "id": 24840, "properties": { "facing": "west", "half": "upper", @@ -169062,7 +160466,7 @@ } }, { - "id": 25982, + "id": 24841, "properties": { "facing": "west", "half": "upper", @@ -169072,7 +160476,7 @@ } }, { - "id": 25983, + "id": 24842, "properties": { "facing": "west", "half": "upper", @@ -169082,7 +160486,7 @@ } }, { - "id": 25984, + "id": 24843, "properties": { "facing": "west", "half": "upper", @@ -169092,7 +160496,7 @@ } }, { - "id": 25985, + "id": 24844, "properties": { "facing": "west", "half": "upper", @@ -169102,7 +160506,7 @@ } }, { - "id": 25986, + "id": 24845, "properties": { "facing": "west", "half": "upper", @@ -169112,7 +160516,7 @@ } }, { - "id": 25987, + "id": 24846, "properties": { "facing": "west", "half": "upper", @@ -169122,7 +160526,7 @@ } }, { - "id": 25988, + "id": 24847, "properties": { "facing": "west", "half": "upper", @@ -169132,7 +160536,7 @@ } }, { - "id": 25989, + "id": 24848, "properties": { "facing": "west", "half": "lower", @@ -169142,7 +160546,7 @@ } }, { - "id": 25990, + "id": 24849, "properties": { "facing": "west", "half": "lower", @@ -169152,7 +160556,7 @@ } }, { - "id": 25991, + "id": 24850, "properties": { "facing": "west", "half": "lower", @@ -169162,7 +160566,7 @@ } }, { - "id": 25992, + "id": 24851, "properties": { "facing": "west", "half": "lower", @@ -169172,7 +160576,7 @@ } }, { - "id": 25993, + "id": 24852, "properties": { "facing": "west", "half": "lower", @@ -169182,7 +160586,7 @@ } }, { - "id": 25994, + "id": 24853, "properties": { "facing": "west", "half": "lower", @@ -169192,7 +160596,7 @@ } }, { - "id": 25995, + "id": 24854, "properties": { "facing": "west", "half": "lower", @@ -169202,7 +160606,7 @@ } }, { - "id": 25996, + "id": 24855, "properties": { "facing": "west", "half": "lower", @@ -169212,7 +160616,7 @@ } }, { - "id": 25997, + "id": 24856, "properties": { "facing": "east", "half": "upper", @@ -169222,7 +160626,7 @@ } }, { - "id": 25998, + "id": 24857, "properties": { "facing": "east", "half": "upper", @@ -169232,7 +160636,7 @@ } }, { - "id": 25999, + "id": 24858, "properties": { "facing": "east", "half": "upper", @@ -169242,7 +160646,7 @@ } }, { - "id": 26000, + "id": 24859, "properties": { "facing": "east", "half": "upper", @@ -169252,7 +160656,7 @@ } }, { - "id": 26001, + "id": 24860, "properties": { "facing": "east", "half": "upper", @@ -169262,7 +160666,7 @@ } }, { - "id": 26002, + "id": 24861, "properties": { "facing": "east", "half": "upper", @@ -169272,7 +160676,7 @@ } }, { - "id": 26003, + "id": 24862, "properties": { "facing": "east", "half": "upper", @@ -169282,7 +160686,7 @@ } }, { - "id": 26004, + "id": 24863, "properties": { "facing": "east", "half": "upper", @@ -169292,7 +160696,7 @@ } }, { - "id": 26005, + "id": 24864, "properties": { "facing": "east", "half": "lower", @@ -169302,7 +160706,7 @@ } }, { - "id": 26006, + "id": 24865, "properties": { "facing": "east", "half": "lower", @@ -169312,7 +160716,7 @@ } }, { - "id": 26007, + "id": 24866, "properties": { "facing": "east", "half": "lower", @@ -169322,7 +160726,7 @@ } }, { - "id": 26008, + "id": 24867, "properties": { "facing": "east", "half": "lower", @@ -169332,7 +160736,7 @@ } }, { - "id": 26009, + "id": 24868, "properties": { "facing": "east", "half": "lower", @@ -169342,7 +160746,7 @@ } }, { - "id": 26010, + "id": 24869, "properties": { "facing": "east", "half": "lower", @@ -169352,7 +160756,7 @@ } }, { - "id": 26011, + "id": 24870, "properties": { "facing": "east", "half": "lower", @@ -169362,7 +160766,7 @@ } }, { - "id": 26012, + "id": 24871, "properties": { "facing": "east", "half": "lower", @@ -169373,25 +160777,60 @@ } ] }, - "minecraft:oxidized_copper_golem_statue": { + "minecraft:oxidized_copper_grate": { "definition": { - "type": "minecraft:weathering_copper_golem_statue", + "type": "minecraft:weathering_copper_grate", + "properties": {}, + "weathering_state": "oxidized" + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 25710, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 25711, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:oxidized_copper_trapdoor": { + "definition": { + "type": "minecraft:weathering_copper_trap_door", + "block_set_type": "copper", "properties": {}, "weathering_state": "oxidized" }, "properties": { - "copper_golem_pose": [ - "standing", - "sitting", - "running", - "star" - ], "facing": [ "north", "south", "west", "east" ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], "waterlogged": [ "true", "false" @@ -169399,575 +160838,208 @@ }, "states": [ { - "id": 27181, + "id": 25320, "properties": { - "copper_golem_pose": "standing", "facing": "north", + "half": "top", + "open": "true", + "powered": "true", "waterlogged": "true" } }, { - "default": true, - "id": 27182, + "id": 25321, "properties": { - "copper_golem_pose": "standing", "facing": "north", + "half": "top", + "open": "true", + "powered": "true", "waterlogged": "false" } }, { - "id": 27183, + "id": 25322, "properties": { - "copper_golem_pose": "standing", - "facing": "south", + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "true" } }, { - "id": 27184, + "id": 25323, "properties": { - "copper_golem_pose": "standing", - "facing": "south", + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { - "id": 27185, + "id": 25324, "properties": { - "copper_golem_pose": "standing", - "facing": "west", + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", "waterlogged": "true" } }, { - "id": 27186, + "id": 25325, "properties": { - "copper_golem_pose": "standing", - "facing": "west", + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", "waterlogged": "false" } }, { - "id": 27187, + "id": 25326, "properties": { - "copper_golem_pose": "standing", - "facing": "east", + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", "waterlogged": "true" } }, { - "id": 27188, + "id": 25327, "properties": { - "copper_golem_pose": "standing", - "facing": "east", + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", "waterlogged": "false" } }, { - "id": 27189, + "id": 25328, "properties": { - "copper_golem_pose": "sitting", "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", "waterlogged": "true" } }, { - "id": 27190, + "id": 25329, "properties": { - "copper_golem_pose": "sitting", "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", "waterlogged": "false" } }, { - "id": 27191, + "id": 25330, "properties": { - "copper_golem_pose": "sitting", - "facing": "south", + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", "waterlogged": "true" } }, { - "id": 27192, + "id": 25331, "properties": { - "copper_golem_pose": "sitting", - "facing": "south", + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { - "id": 27193, + "id": 25332, "properties": { - "copper_golem_pose": "sitting", - "facing": "west", + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", "waterlogged": "true" } }, { - "id": 27194, + "id": 25333, "properties": { - "copper_golem_pose": "sitting", - "facing": "west", + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", "waterlogged": "false" } }, { - "id": 27195, + "id": 25334, "properties": { - "copper_golem_pose": "sitting", - "facing": "east", + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", "waterlogged": "true" } }, { - "id": 27196, + "default": true, + "id": 25335, "properties": { - "copper_golem_pose": "sitting", - "facing": "east", + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", "waterlogged": "false" } }, { - "id": 27197, + "id": 25336, "properties": { - "copper_golem_pose": "running", - "facing": "north", + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", "waterlogged": "true" } }, { - "id": 27198, + "id": 25337, "properties": { - "copper_golem_pose": "running", - "facing": "north", + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", "waterlogged": "false" } }, { - "id": 27199, + "id": 25338, "properties": { - "copper_golem_pose": "running", "facing": "south", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "true" } }, { - "id": 27200, + "id": 25339, "properties": { - "copper_golem_pose": "running", "facing": "south", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { - "id": 27201, - "properties": { - "copper_golem_pose": "running", - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 27202, - "properties": { - "copper_golem_pose": "running", - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 27203, - "properties": { - "copper_golem_pose": "running", - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 27204, - "properties": { - "copper_golem_pose": "running", - "facing": "east", - "waterlogged": "false" - } - }, - { - "id": 27205, - "properties": { - "copper_golem_pose": "star", - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 27206, - "properties": { - "copper_golem_pose": "star", - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 27207, - "properties": { - "copper_golem_pose": "star", - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 27208, - "properties": { - "copper_golem_pose": "star", - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 27209, - "properties": { - "copper_golem_pose": "star", - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 27210, - "properties": { - "copper_golem_pose": "star", - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 27211, - "properties": { - "copper_golem_pose": "star", - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 27212, - "properties": { - "copper_golem_pose": "star", - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:oxidized_copper_grate": { - "definition": { - "type": "minecraft:weathering_copper_grate", - "properties": {}, - "weathering_state": "oxidized" - }, - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 26851, - "properties": { - "waterlogged": "true" - } - }, - { - "default": true, - "id": 26852, - "properties": { - "waterlogged": "false" - } - } - ] - }, - "minecraft:oxidized_copper_lantern": { - "definition": { - "type": "minecraft:weathering_lantern", - "properties": {}, - "weathering_state": "oxidized" - }, - "properties": { - "hanging": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20655, - "properties": { - "hanging": "true", - "waterlogged": "true" - } - }, - { - "id": 20656, - "properties": { - "hanging": "true", - "waterlogged": "false" - } - }, - { - "id": 20657, - "properties": { - "hanging": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 20658, - "properties": { - "hanging": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:oxidized_copper_trapdoor": { - "definition": { - "type": "minecraft:weathering_copper_trap_door", - "block_set_type": "copper", - "properties": {}, - "weathering_state": "oxidized" - }, - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 26461, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 26462, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 26463, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 26464, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 26465, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 26466, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 26467, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 26468, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 26469, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 26470, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 26471, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 26472, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 26473, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 26474, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 26475, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 26476, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 26477, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 26478, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 26479, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 26480, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 26481, + "id": 25340, "properties": { "facing": "south", "half": "top", @@ -169977,7 +161049,7 @@ } }, { - "id": 26482, + "id": 25341, "properties": { "facing": "south", "half": "top", @@ -169987,7 +161059,7 @@ } }, { - "id": 26483, + "id": 25342, "properties": { "facing": "south", "half": "top", @@ -169997,7 +161069,7 @@ } }, { - "id": 26484, + "id": 25343, "properties": { "facing": "south", "half": "top", @@ -170007,7 +161079,7 @@ } }, { - "id": 26485, + "id": 25344, "properties": { "facing": "south", "half": "bottom", @@ -170017,7 +161089,7 @@ } }, { - "id": 26486, + "id": 25345, "properties": { "facing": "south", "half": "bottom", @@ -170027,7 +161099,7 @@ } }, { - "id": 26487, + "id": 25346, "properties": { "facing": "south", "half": "bottom", @@ -170037,7 +161109,7 @@ } }, { - "id": 26488, + "id": 25347, "properties": { "facing": "south", "half": "bottom", @@ -170047,7 +161119,7 @@ } }, { - "id": 26489, + "id": 25348, "properties": { "facing": "south", "half": "bottom", @@ -170057,7 +161129,7 @@ } }, { - "id": 26490, + "id": 25349, "properties": { "facing": "south", "half": "bottom", @@ -170067,7 +161139,7 @@ } }, { - "id": 26491, + "id": 25350, "properties": { "facing": "south", "half": "bottom", @@ -170077,7 +161149,7 @@ } }, { - "id": 26492, + "id": 25351, "properties": { "facing": "south", "half": "bottom", @@ -170087,7 +161159,7 @@ } }, { - "id": 26493, + "id": 25352, "properties": { "facing": "west", "half": "top", @@ -170097,7 +161169,7 @@ } }, { - "id": 26494, + "id": 25353, "properties": { "facing": "west", "half": "top", @@ -170107,7 +161179,7 @@ } }, { - "id": 26495, + "id": 25354, "properties": { "facing": "west", "half": "top", @@ -170117,7 +161189,7 @@ } }, { - "id": 26496, + "id": 25355, "properties": { "facing": "west", "half": "top", @@ -170127,7 +161199,7 @@ } }, { - "id": 26497, + "id": 25356, "properties": { "facing": "west", "half": "top", @@ -170137,7 +161209,7 @@ } }, { - "id": 26498, + "id": 25357, "properties": { "facing": "west", "half": "top", @@ -170147,7 +161219,7 @@ } }, { - "id": 26499, + "id": 25358, "properties": { "facing": "west", "half": "top", @@ -170157,7 +161229,7 @@ } }, { - "id": 26500, + "id": 25359, "properties": { "facing": "west", "half": "top", @@ -170167,7 +161239,7 @@ } }, { - "id": 26501, + "id": 25360, "properties": { "facing": "west", "half": "bottom", @@ -170177,7 +161249,7 @@ } }, { - "id": 26502, + "id": 25361, "properties": { "facing": "west", "half": "bottom", @@ -170187,7 +161259,7 @@ } }, { - "id": 26503, + "id": 25362, "properties": { "facing": "west", "half": "bottom", @@ -170197,7 +161269,7 @@ } }, { - "id": 26504, + "id": 25363, "properties": { "facing": "west", "half": "bottom", @@ -170207,7 +161279,7 @@ } }, { - "id": 26505, + "id": 25364, "properties": { "facing": "west", "half": "bottom", @@ -170217,7 +161289,7 @@ } }, { - "id": 26506, + "id": 25365, "properties": { "facing": "west", "half": "bottom", @@ -170227,7 +161299,7 @@ } }, { - "id": 26507, + "id": 25366, "properties": { "facing": "west", "half": "bottom", @@ -170237,7 +161309,7 @@ } }, { - "id": 26508, + "id": 25367, "properties": { "facing": "west", "half": "bottom", @@ -170247,7 +161319,7 @@ } }, { - "id": 26509, + "id": 25368, "properties": { "facing": "east", "half": "top", @@ -170257,7 +161329,7 @@ } }, { - "id": 26510, + "id": 25369, "properties": { "facing": "east", "half": "top", @@ -170267,7 +161339,7 @@ } }, { - "id": 26511, + "id": 25370, "properties": { "facing": "east", "half": "top", @@ -170277,7 +161349,7 @@ } }, { - "id": 26512, + "id": 25371, "properties": { "facing": "east", "half": "top", @@ -170287,7 +161359,7 @@ } }, { - "id": 26513, + "id": 25372, "properties": { "facing": "east", "half": "top", @@ -170297,7 +161369,7 @@ } }, { - "id": 26514, + "id": 25373, "properties": { "facing": "east", "half": "top", @@ -170307,7 +161379,7 @@ } }, { - "id": 26515, + "id": 25374, "properties": { "facing": "east", "half": "top", @@ -170317,7 +161389,7 @@ } }, { - "id": 26516, + "id": 25375, "properties": { "facing": "east", "half": "top", @@ -170327,7 +161399,7 @@ } }, { - "id": 26517, + "id": 25376, "properties": { "facing": "east", "half": "bottom", @@ -170337,7 +161409,7 @@ } }, { - "id": 26518, + "id": 25377, "properties": { "facing": "east", "half": "bottom", @@ -170347,7 +161419,7 @@ } }, { - "id": 26519, + "id": 25378, "properties": { "facing": "east", "half": "bottom", @@ -170357,7 +161429,7 @@ } }, { - "id": 26520, + "id": 25379, "properties": { "facing": "east", "half": "bottom", @@ -170367,7 +161439,7 @@ } }, { - "id": 26521, + "id": 25380, "properties": { "facing": "east", "half": "bottom", @@ -170377,7 +161449,7 @@ } }, { - "id": 26522, + "id": 25381, "properties": { "facing": "east", "half": "bottom", @@ -170387,7 +161459,7 @@ } }, { - "id": 26523, + "id": 25382, "properties": { "facing": "east", "half": "bottom", @@ -170397,7 +161469,7 @@ } }, { - "id": 26524, + "id": 25383, "properties": { "facing": "east", "half": "bottom", @@ -170417,7 +161489,7 @@ "states": [ { "default": true, - "id": 25113 + "id": 23972 } ] }, @@ -170440,21 +161512,21 @@ }, "states": [ { - "id": 25445, + "id": 24304, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 25446, + "id": 24305, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 25447, + "id": 24306, "properties": { "type": "bottom", "waterlogged": "true" @@ -170462,21 +161534,21 @@ }, { "default": true, - "id": 25448, + "id": 24307, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 25449, + "id": 24308, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 25450, + "id": 24309, "properties": { "type": "double", "waterlogged": "false" @@ -170518,7 +161590,7 @@ }, "states": [ { - "id": 25125, + "id": 23984, "properties": { "facing": "north", "half": "top", @@ -170527,7 +161599,7 @@ } }, { - "id": 25126, + "id": 23985, "properties": { "facing": "north", "half": "top", @@ -170536,7 +161608,7 @@ } }, { - "id": 25127, + "id": 23986, "properties": { "facing": "north", "half": "top", @@ -170545,7 +161617,7 @@ } }, { - "id": 25128, + "id": 23987, "properties": { "facing": "north", "half": "top", @@ -170554,7 +161626,7 @@ } }, { - "id": 25129, + "id": 23988, "properties": { "facing": "north", "half": "top", @@ -170563,7 +161635,7 @@ } }, { - "id": 25130, + "id": 23989, "properties": { "facing": "north", "half": "top", @@ -170572,7 +161644,7 @@ } }, { - "id": 25131, + "id": 23990, "properties": { "facing": "north", "half": "top", @@ -170581,7 +161653,7 @@ } }, { - "id": 25132, + "id": 23991, "properties": { "facing": "north", "half": "top", @@ -170590,7 +161662,7 @@ } }, { - "id": 25133, + "id": 23992, "properties": { "facing": "north", "half": "top", @@ -170599,7 +161671,7 @@ } }, { - "id": 25134, + "id": 23993, "properties": { "facing": "north", "half": "top", @@ -170608,7 +161680,7 @@ } }, { - "id": 25135, + "id": 23994, "properties": { "facing": "north", "half": "bottom", @@ -170618,7 +161690,7 @@ }, { "default": true, - "id": 25136, + "id": 23995, "properties": { "facing": "north", "half": "bottom", @@ -170627,7 +161699,7 @@ } }, { - "id": 25137, + "id": 23996, "properties": { "facing": "north", "half": "bottom", @@ -170636,7 +161708,7 @@ } }, { - "id": 25138, + "id": 23997, "properties": { "facing": "north", "half": "bottom", @@ -170645,7 +161717,7 @@ } }, { - "id": 25139, + "id": 23998, "properties": { "facing": "north", "half": "bottom", @@ -170654,7 +161726,7 @@ } }, { - "id": 25140, + "id": 23999, "properties": { "facing": "north", "half": "bottom", @@ -170663,7 +161735,7 @@ } }, { - "id": 25141, + "id": 24000, "properties": { "facing": "north", "half": "bottom", @@ -170672,7 +161744,7 @@ } }, { - "id": 25142, + "id": 24001, "properties": { "facing": "north", "half": "bottom", @@ -170681,7 +161753,7 @@ } }, { - "id": 25143, + "id": 24002, "properties": { "facing": "north", "half": "bottom", @@ -170690,7 +161762,7 @@ } }, { - "id": 25144, + "id": 24003, "properties": { "facing": "north", "half": "bottom", @@ -170699,7 +161771,7 @@ } }, { - "id": 25145, + "id": 24004, "properties": { "facing": "south", "half": "top", @@ -170708,7 +161780,7 @@ } }, { - "id": 25146, + "id": 24005, "properties": { "facing": "south", "half": "top", @@ -170717,7 +161789,7 @@ } }, { - "id": 25147, + "id": 24006, "properties": { "facing": "south", "half": "top", @@ -170726,7 +161798,7 @@ } }, { - "id": 25148, + "id": 24007, "properties": { "facing": "south", "half": "top", @@ -170735,7 +161807,7 @@ } }, { - "id": 25149, + "id": 24008, "properties": { "facing": "south", "half": "top", @@ -170744,7 +161816,7 @@ } }, { - "id": 25150, + "id": 24009, "properties": { "facing": "south", "half": "top", @@ -170753,7 +161825,7 @@ } }, { - "id": 25151, + "id": 24010, "properties": { "facing": "south", "half": "top", @@ -170762,7 +161834,7 @@ } }, { - "id": 25152, + "id": 24011, "properties": { "facing": "south", "half": "top", @@ -170771,7 +161843,7 @@ } }, { - "id": 25153, + "id": 24012, "properties": { "facing": "south", "half": "top", @@ -170780,7 +161852,7 @@ } }, { - "id": 25154, + "id": 24013, "properties": { "facing": "south", "half": "top", @@ -170789,7 +161861,7 @@ } }, { - "id": 25155, + "id": 24014, "properties": { "facing": "south", "half": "bottom", @@ -170798,7 +161870,7 @@ } }, { - "id": 25156, + "id": 24015, "properties": { "facing": "south", "half": "bottom", @@ -170807,7 +161879,7 @@ } }, { - "id": 25157, + "id": 24016, "properties": { "facing": "south", "half": "bottom", @@ -170816,7 +161888,7 @@ } }, { - "id": 25158, + "id": 24017, "properties": { "facing": "south", "half": "bottom", @@ -170825,7 +161897,7 @@ } }, { - "id": 25159, + "id": 24018, "properties": { "facing": "south", "half": "bottom", @@ -170834,7 +161906,7 @@ } }, { - "id": 25160, + "id": 24019, "properties": { "facing": "south", "half": "bottom", @@ -170843,7 +161915,7 @@ } }, { - "id": 25161, + "id": 24020, "properties": { "facing": "south", "half": "bottom", @@ -170852,7 +161924,7 @@ } }, { - "id": 25162, + "id": 24021, "properties": { "facing": "south", "half": "bottom", @@ -170861,7 +161933,7 @@ } }, { - "id": 25163, + "id": 24022, "properties": { "facing": "south", "half": "bottom", @@ -170870,7 +161942,7 @@ } }, { - "id": 25164, + "id": 24023, "properties": { "facing": "south", "half": "bottom", @@ -170879,7 +161951,7 @@ } }, { - "id": 25165, + "id": 24024, "properties": { "facing": "west", "half": "top", @@ -170888,7 +161960,7 @@ } }, { - "id": 25166, + "id": 24025, "properties": { "facing": "west", "half": "top", @@ -170897,7 +161969,7 @@ } }, { - "id": 25167, + "id": 24026, "properties": { "facing": "west", "half": "top", @@ -170906,7 +161978,7 @@ } }, { - "id": 25168, + "id": 24027, "properties": { "facing": "west", "half": "top", @@ -170915,7 +161987,7 @@ } }, { - "id": 25169, + "id": 24028, "properties": { "facing": "west", "half": "top", @@ -170924,7 +161996,7 @@ } }, { - "id": 25170, + "id": 24029, "properties": { "facing": "west", "half": "top", @@ -170933,7 +162005,7 @@ } }, { - "id": 25171, + "id": 24030, "properties": { "facing": "west", "half": "top", @@ -170942,7 +162014,7 @@ } }, { - "id": 25172, + "id": 24031, "properties": { "facing": "west", "half": "top", @@ -170951,7 +162023,7 @@ } }, { - "id": 25173, + "id": 24032, "properties": { "facing": "west", "half": "top", @@ -170960,7 +162032,7 @@ } }, { - "id": 25174, + "id": 24033, "properties": { "facing": "west", "half": "top", @@ -170969,7 +162041,7 @@ } }, { - "id": 25175, + "id": 24034, "properties": { "facing": "west", "half": "bottom", @@ -170978,7 +162050,7 @@ } }, { - "id": 25176, + "id": 24035, "properties": { "facing": "west", "half": "bottom", @@ -170987,7 +162059,7 @@ } }, { - "id": 25177, + "id": 24036, "properties": { "facing": "west", "half": "bottom", @@ -170996,7 +162068,7 @@ } }, { - "id": 25178, + "id": 24037, "properties": { "facing": "west", "half": "bottom", @@ -171005,7 +162077,7 @@ } }, { - "id": 25179, + "id": 24038, "properties": { "facing": "west", "half": "bottom", @@ -171014,7 +162086,7 @@ } }, { - "id": 25180, + "id": 24039, "properties": { "facing": "west", "half": "bottom", @@ -171023,7 +162095,7 @@ } }, { - "id": 25181, + "id": 24040, "properties": { "facing": "west", "half": "bottom", @@ -171032,7 +162104,7 @@ } }, { - "id": 25182, + "id": 24041, "properties": { "facing": "west", "half": "bottom", @@ -171041,7 +162113,7 @@ } }, { - "id": 25183, + "id": 24042, "properties": { "facing": "west", "half": "bottom", @@ -171050,7 +162122,7 @@ } }, { - "id": 25184, + "id": 24043, "properties": { "facing": "west", "half": "bottom", @@ -171059,7 +162131,7 @@ } }, { - "id": 25185, + "id": 24044, "properties": { "facing": "east", "half": "top", @@ -171068,7 +162140,7 @@ } }, { - "id": 25186, + "id": 24045, "properties": { "facing": "east", "half": "top", @@ -171077,7 +162149,7 @@ } }, { - "id": 25187, + "id": 24046, "properties": { "facing": "east", "half": "top", @@ -171086,7 +162158,7 @@ } }, { - "id": 25188, + "id": 24047, "properties": { "facing": "east", "half": "top", @@ -171095,7 +162167,7 @@ } }, { - "id": 25189, + "id": 24048, "properties": { "facing": "east", "half": "top", @@ -171104,7 +162176,7 @@ } }, { - "id": 25190, + "id": 24049, "properties": { "facing": "east", "half": "top", @@ -171113,7 +162185,7 @@ } }, { - "id": 25191, + "id": 24050, "properties": { "facing": "east", "half": "top", @@ -171122,7 +162194,7 @@ } }, { - "id": 25192, + "id": 24051, "properties": { "facing": "east", "half": "top", @@ -171131,7 +162203,7 @@ } }, { - "id": 25193, + "id": 24052, "properties": { "facing": "east", "half": "top", @@ -171140,7 +162212,7 @@ } }, { - "id": 25194, + "id": 24053, "properties": { "facing": "east", "half": "top", @@ -171149,7 +162221,7 @@ } }, { - "id": 25195, + "id": 24054, "properties": { "facing": "east", "half": "bottom", @@ -171158,7 +162230,7 @@ } }, { - "id": 25196, + "id": 24055, "properties": { "facing": "east", "half": "bottom", @@ -171167,7 +162239,7 @@ } }, { - "id": 25197, + "id": 24056, "properties": { "facing": "east", "half": "bottom", @@ -171176,7 +162248,7 @@ } }, { - "id": 25198, + "id": 24057, "properties": { "facing": "east", "half": "bottom", @@ -171185,7 +162257,7 @@ } }, { - "id": 25199, + "id": 24058, "properties": { "facing": "east", "half": "bottom", @@ -171194,7 +162266,7 @@ } }, { - "id": 25200, + "id": 24059, "properties": { "facing": "east", "half": "bottom", @@ -171203,7 +162275,7 @@ } }, { - "id": 25201, + "id": 24060, "properties": { "facing": "east", "half": "bottom", @@ -171212,7 +162284,7 @@ } }, { - "id": 25202, + "id": 24061, "properties": { "facing": "east", "half": "bottom", @@ -171221,7 +162293,7 @@ } }, { - "id": 25203, + "id": 24062, "properties": { "facing": "east", "half": "bottom", @@ -171230,7 +162302,7 @@ } }, { - "id": 25204, + "id": 24063, "properties": { "facing": "east", "half": "bottom", @@ -171240,226 +162312,6 @@ } ] }, - "minecraft:oxidized_lightning_rod": { - "definition": { - "type": "minecraft:weathering_lightning_rod", - "properties": {}, - "weathering_state": "oxidized" - }, - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ], - "powered": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 27413, - "properties": { - "facing": "north", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 27414, - "properties": { - "facing": "north", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 27415, - "properties": { - "facing": "north", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 27416, - "properties": { - "facing": "north", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 27417, - "properties": { - "facing": "east", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 27418, - "properties": { - "facing": "east", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 27419, - "properties": { - "facing": "east", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 27420, - "properties": { - "facing": "east", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 27421, - "properties": { - "facing": "south", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 27422, - "properties": { - "facing": "south", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 27423, - "properties": { - "facing": "south", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 27424, - "properties": { - "facing": "south", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 27425, - "properties": { - "facing": "west", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 27426, - "properties": { - "facing": "west", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 27427, - "properties": { - "facing": "west", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 27428, - "properties": { - "facing": "west", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 27429, - "properties": { - "facing": "up", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 27430, - "properties": { - "facing": "up", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 27431, - "properties": { - "facing": "up", - "powered": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 27432, - "properties": { - "facing": "up", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 27433, - "properties": { - "facing": "down", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 27434, - "properties": { - "facing": "down", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 27435, - "properties": { - "facing": "down", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 27436, - "properties": { - "facing": "down", - "powered": "false", - "waterlogged": "false" - } - } - ] - }, "minecraft:packed_ice": { "definition": { "type": "minecraft:block", @@ -171468,7 +162320,7 @@ "states": [ { "default": true, - "id": 12712 + "id": 11635 } ] }, @@ -171480,7 +162332,7 @@ "states": [ { "default": true, - "id": 7557 + "id": 6784 } ] }, @@ -171498,13 +162350,13 @@ "states": [ { "default": true, - "id": 29664, + "id": 27907, "properties": { "tip": "true" } }, { - "id": 29665, + "id": 27908, "properties": { "tip": "false" } @@ -171520,7 +162372,7 @@ "states": [ { "default": true, - "id": 29501 + "id": 27744 } ] }, @@ -171558,7 +162410,7 @@ "states": [ { "default": true, - "id": 29502, + "id": 27745, "properties": { "bottom": "true", "east": "none", @@ -171568,7 +162420,7 @@ } }, { - "id": 29503, + "id": 27746, "properties": { "bottom": "true", "east": "none", @@ -171578,7 +162430,7 @@ } }, { - "id": 29504, + "id": 27747, "properties": { "bottom": "true", "east": "none", @@ -171588,7 +162440,7 @@ } }, { - "id": 29505, + "id": 27748, "properties": { "bottom": "true", "east": "none", @@ -171598,7 +162450,7 @@ } }, { - "id": 29506, + "id": 27749, "properties": { "bottom": "true", "east": "none", @@ -171608,7 +162460,7 @@ } }, { - "id": 29507, + "id": 27750, "properties": { "bottom": "true", "east": "none", @@ -171618,7 +162470,7 @@ } }, { - "id": 29508, + "id": 27751, "properties": { "bottom": "true", "east": "none", @@ -171628,7 +162480,7 @@ } }, { - "id": 29509, + "id": 27752, "properties": { "bottom": "true", "east": "none", @@ -171638,7 +162490,7 @@ } }, { - "id": 29510, + "id": 27753, "properties": { "bottom": "true", "east": "none", @@ -171648,7 +162500,7 @@ } }, { - "id": 29511, + "id": 27754, "properties": { "bottom": "true", "east": "none", @@ -171658,7 +162510,7 @@ } }, { - "id": 29512, + "id": 27755, "properties": { "bottom": "true", "east": "none", @@ -171668,7 +162520,7 @@ } }, { - "id": 29513, + "id": 27756, "properties": { "bottom": "true", "east": "none", @@ -171678,7 +162530,7 @@ } }, { - "id": 29514, + "id": 27757, "properties": { "bottom": "true", "east": "none", @@ -171688,7 +162540,7 @@ } }, { - "id": 29515, + "id": 27758, "properties": { "bottom": "true", "east": "none", @@ -171698,7 +162550,7 @@ } }, { - "id": 29516, + "id": 27759, "properties": { "bottom": "true", "east": "none", @@ -171708,7 +162560,7 @@ } }, { - "id": 29517, + "id": 27760, "properties": { "bottom": "true", "east": "none", @@ -171718,7 +162570,7 @@ } }, { - "id": 29518, + "id": 27761, "properties": { "bottom": "true", "east": "none", @@ -171728,7 +162580,7 @@ } }, { - "id": 29519, + "id": 27762, "properties": { "bottom": "true", "east": "none", @@ -171738,7 +162590,7 @@ } }, { - "id": 29520, + "id": 27763, "properties": { "bottom": "true", "east": "none", @@ -171748,7 +162600,7 @@ } }, { - "id": 29521, + "id": 27764, "properties": { "bottom": "true", "east": "none", @@ -171758,7 +162610,7 @@ } }, { - "id": 29522, + "id": 27765, "properties": { "bottom": "true", "east": "none", @@ -171768,7 +162620,7 @@ } }, { - "id": 29523, + "id": 27766, "properties": { "bottom": "true", "east": "none", @@ -171778,7 +162630,7 @@ } }, { - "id": 29524, + "id": 27767, "properties": { "bottom": "true", "east": "none", @@ -171788,7 +162640,7 @@ } }, { - "id": 29525, + "id": 27768, "properties": { "bottom": "true", "east": "none", @@ -171798,7 +162650,7 @@ } }, { - "id": 29526, + "id": 27769, "properties": { "bottom": "true", "east": "none", @@ -171808,7 +162660,7 @@ } }, { - "id": 29527, + "id": 27770, "properties": { "bottom": "true", "east": "none", @@ -171818,7 +162670,7 @@ } }, { - "id": 29528, + "id": 27771, "properties": { "bottom": "true", "east": "none", @@ -171828,7 +162680,7 @@ } }, { - "id": 29529, + "id": 27772, "properties": { "bottom": "true", "east": "low", @@ -171838,7 +162690,7 @@ } }, { - "id": 29530, + "id": 27773, "properties": { "bottom": "true", "east": "low", @@ -171848,7 +162700,7 @@ } }, { - "id": 29531, + "id": 27774, "properties": { "bottom": "true", "east": "low", @@ -171858,7 +162710,7 @@ } }, { - "id": 29532, + "id": 27775, "properties": { "bottom": "true", "east": "low", @@ -171868,7 +162720,7 @@ } }, { - "id": 29533, + "id": 27776, "properties": { "bottom": "true", "east": "low", @@ -171878,7 +162730,7 @@ } }, { - "id": 29534, + "id": 27777, "properties": { "bottom": "true", "east": "low", @@ -171888,7 +162740,7 @@ } }, { - "id": 29535, + "id": 27778, "properties": { "bottom": "true", "east": "low", @@ -171898,7 +162750,7 @@ } }, { - "id": 29536, + "id": 27779, "properties": { "bottom": "true", "east": "low", @@ -171908,7 +162760,7 @@ } }, { - "id": 29537, + "id": 27780, "properties": { "bottom": "true", "east": "low", @@ -171918,7 +162770,7 @@ } }, { - "id": 29538, + "id": 27781, "properties": { "bottom": "true", "east": "low", @@ -171928,7 +162780,7 @@ } }, { - "id": 29539, + "id": 27782, "properties": { "bottom": "true", "east": "low", @@ -171938,7 +162790,7 @@ } }, { - "id": 29540, + "id": 27783, "properties": { "bottom": "true", "east": "low", @@ -171948,7 +162800,7 @@ } }, { - "id": 29541, + "id": 27784, "properties": { "bottom": "true", "east": "low", @@ -171958,7 +162810,7 @@ } }, { - "id": 29542, + "id": 27785, "properties": { "bottom": "true", "east": "low", @@ -171968,7 +162820,7 @@ } }, { - "id": 29543, + "id": 27786, "properties": { "bottom": "true", "east": "low", @@ -171978,7 +162830,7 @@ } }, { - "id": 29544, + "id": 27787, "properties": { "bottom": "true", "east": "low", @@ -171988,7 +162840,7 @@ } }, { - "id": 29545, + "id": 27788, "properties": { "bottom": "true", "east": "low", @@ -171998,7 +162850,7 @@ } }, { - "id": 29546, + "id": 27789, "properties": { "bottom": "true", "east": "low", @@ -172008,7 +162860,7 @@ } }, { - "id": 29547, + "id": 27790, "properties": { "bottom": "true", "east": "low", @@ -172018,7 +162870,7 @@ } }, { - "id": 29548, + "id": 27791, "properties": { "bottom": "true", "east": "low", @@ -172028,7 +162880,7 @@ } }, { - "id": 29549, + "id": 27792, "properties": { "bottom": "true", "east": "low", @@ -172038,7 +162890,7 @@ } }, { - "id": 29550, + "id": 27793, "properties": { "bottom": "true", "east": "low", @@ -172048,7 +162900,7 @@ } }, { - "id": 29551, + "id": 27794, "properties": { "bottom": "true", "east": "low", @@ -172058,7 +162910,7 @@ } }, { - "id": 29552, + "id": 27795, "properties": { "bottom": "true", "east": "low", @@ -172068,7 +162920,7 @@ } }, { - "id": 29553, + "id": 27796, "properties": { "bottom": "true", "east": "low", @@ -172078,7 +162930,7 @@ } }, { - "id": 29554, + "id": 27797, "properties": { "bottom": "true", "east": "low", @@ -172088,7 +162940,7 @@ } }, { - "id": 29555, + "id": 27798, "properties": { "bottom": "true", "east": "low", @@ -172098,7 +162950,7 @@ } }, { - "id": 29556, + "id": 27799, "properties": { "bottom": "true", "east": "tall", @@ -172108,7 +162960,7 @@ } }, { - "id": 29557, + "id": 27800, "properties": { "bottom": "true", "east": "tall", @@ -172118,7 +162970,7 @@ } }, { - "id": 29558, + "id": 27801, "properties": { "bottom": "true", "east": "tall", @@ -172128,7 +162980,7 @@ } }, { - "id": 29559, + "id": 27802, "properties": { "bottom": "true", "east": "tall", @@ -172138,7 +162990,7 @@ } }, { - "id": 29560, + "id": 27803, "properties": { "bottom": "true", "east": "tall", @@ -172148,7 +163000,7 @@ } }, { - "id": 29561, + "id": 27804, "properties": { "bottom": "true", "east": "tall", @@ -172158,7 +163010,7 @@ } }, { - "id": 29562, + "id": 27805, "properties": { "bottom": "true", "east": "tall", @@ -172168,7 +163020,7 @@ } }, { - "id": 29563, + "id": 27806, "properties": { "bottom": "true", "east": "tall", @@ -172178,7 +163030,7 @@ } }, { - "id": 29564, + "id": 27807, "properties": { "bottom": "true", "east": "tall", @@ -172188,7 +163040,7 @@ } }, { - "id": 29565, + "id": 27808, "properties": { "bottom": "true", "east": "tall", @@ -172198,7 +163050,7 @@ } }, { - "id": 29566, + "id": 27809, "properties": { "bottom": "true", "east": "tall", @@ -172208,7 +163060,7 @@ } }, { - "id": 29567, + "id": 27810, "properties": { "bottom": "true", "east": "tall", @@ -172218,7 +163070,7 @@ } }, { - "id": 29568, + "id": 27811, "properties": { "bottom": "true", "east": "tall", @@ -172228,7 +163080,7 @@ } }, { - "id": 29569, + "id": 27812, "properties": { "bottom": "true", "east": "tall", @@ -172238,7 +163090,7 @@ } }, { - "id": 29570, + "id": 27813, "properties": { "bottom": "true", "east": "tall", @@ -172248,7 +163100,7 @@ } }, { - "id": 29571, + "id": 27814, "properties": { "bottom": "true", "east": "tall", @@ -172258,7 +163110,7 @@ } }, { - "id": 29572, + "id": 27815, "properties": { "bottom": "true", "east": "tall", @@ -172268,7 +163120,7 @@ } }, { - "id": 29573, + "id": 27816, "properties": { "bottom": "true", "east": "tall", @@ -172278,7 +163130,7 @@ } }, { - "id": 29574, + "id": 27817, "properties": { "bottom": "true", "east": "tall", @@ -172288,7 +163140,7 @@ } }, { - "id": 29575, + "id": 27818, "properties": { "bottom": "true", "east": "tall", @@ -172298,7 +163150,7 @@ } }, { - "id": 29576, + "id": 27819, "properties": { "bottom": "true", "east": "tall", @@ -172308,7 +163160,7 @@ } }, { - "id": 29577, + "id": 27820, "properties": { "bottom": "true", "east": "tall", @@ -172318,7 +163170,7 @@ } }, { - "id": 29578, + "id": 27821, "properties": { "bottom": "true", "east": "tall", @@ -172328,7 +163180,7 @@ } }, { - "id": 29579, + "id": 27822, "properties": { "bottom": "true", "east": "tall", @@ -172338,7 +163190,7 @@ } }, { - "id": 29580, + "id": 27823, "properties": { "bottom": "true", "east": "tall", @@ -172348,7 +163200,7 @@ } }, { - "id": 29581, + "id": 27824, "properties": { "bottom": "true", "east": "tall", @@ -172358,7 +163210,7 @@ } }, { - "id": 29582, + "id": 27825, "properties": { "bottom": "true", "east": "tall", @@ -172368,7 +163220,7 @@ } }, { - "id": 29583, + "id": 27826, "properties": { "bottom": "false", "east": "none", @@ -172378,7 +163230,7 @@ } }, { - "id": 29584, + "id": 27827, "properties": { "bottom": "false", "east": "none", @@ -172388,7 +163240,7 @@ } }, { - "id": 29585, + "id": 27828, "properties": { "bottom": "false", "east": "none", @@ -172398,7 +163250,7 @@ } }, { - "id": 29586, + "id": 27829, "properties": { "bottom": "false", "east": "none", @@ -172408,7 +163260,7 @@ } }, { - "id": 29587, + "id": 27830, "properties": { "bottom": "false", "east": "none", @@ -172418,7 +163270,7 @@ } }, { - "id": 29588, + "id": 27831, "properties": { "bottom": "false", "east": "none", @@ -172428,7 +163280,7 @@ } }, { - "id": 29589, + "id": 27832, "properties": { "bottom": "false", "east": "none", @@ -172438,7 +163290,7 @@ } }, { - "id": 29590, + "id": 27833, "properties": { "bottom": "false", "east": "none", @@ -172448,7 +163300,7 @@ } }, { - "id": 29591, + "id": 27834, "properties": { "bottom": "false", "east": "none", @@ -172458,7 +163310,7 @@ } }, { - "id": 29592, + "id": 27835, "properties": { "bottom": "false", "east": "none", @@ -172468,7 +163320,7 @@ } }, { - "id": 29593, + "id": 27836, "properties": { "bottom": "false", "east": "none", @@ -172478,7 +163330,7 @@ } }, { - "id": 29594, + "id": 27837, "properties": { "bottom": "false", "east": "none", @@ -172488,7 +163340,7 @@ } }, { - "id": 29595, + "id": 27838, "properties": { "bottom": "false", "east": "none", @@ -172498,7 +163350,7 @@ } }, { - "id": 29596, + "id": 27839, "properties": { "bottom": "false", "east": "none", @@ -172508,7 +163360,7 @@ } }, { - "id": 29597, + "id": 27840, "properties": { "bottom": "false", "east": "none", @@ -172518,7 +163370,7 @@ } }, { - "id": 29598, + "id": 27841, "properties": { "bottom": "false", "east": "none", @@ -172528,7 +163380,7 @@ } }, { - "id": 29599, + "id": 27842, "properties": { "bottom": "false", "east": "none", @@ -172538,7 +163390,7 @@ } }, { - "id": 29600, + "id": 27843, "properties": { "bottom": "false", "east": "none", @@ -172548,7 +163400,7 @@ } }, { - "id": 29601, + "id": 27844, "properties": { "bottom": "false", "east": "none", @@ -172558,7 +163410,7 @@ } }, { - "id": 29602, + "id": 27845, "properties": { "bottom": "false", "east": "none", @@ -172568,7 +163420,7 @@ } }, { - "id": 29603, + "id": 27846, "properties": { "bottom": "false", "east": "none", @@ -172578,7 +163430,7 @@ } }, { - "id": 29604, + "id": 27847, "properties": { "bottom": "false", "east": "none", @@ -172588,7 +163440,7 @@ } }, { - "id": 29605, + "id": 27848, "properties": { "bottom": "false", "east": "none", @@ -172598,7 +163450,7 @@ } }, { - "id": 29606, + "id": 27849, "properties": { "bottom": "false", "east": "none", @@ -172608,7 +163460,7 @@ } }, { - "id": 29607, + "id": 27850, "properties": { "bottom": "false", "east": "none", @@ -172618,7 +163470,7 @@ } }, { - "id": 29608, + "id": 27851, "properties": { "bottom": "false", "east": "none", @@ -172628,7 +163480,7 @@ } }, { - "id": 29609, + "id": 27852, "properties": { "bottom": "false", "east": "none", @@ -172638,7 +163490,7 @@ } }, { - "id": 29610, + "id": 27853, "properties": { "bottom": "false", "east": "low", @@ -172648,7 +163500,7 @@ } }, { - "id": 29611, + "id": 27854, "properties": { "bottom": "false", "east": "low", @@ -172658,7 +163510,7 @@ } }, { - "id": 29612, + "id": 27855, "properties": { "bottom": "false", "east": "low", @@ -172668,7 +163520,7 @@ } }, { - "id": 29613, + "id": 27856, "properties": { "bottom": "false", "east": "low", @@ -172678,7 +163530,7 @@ } }, { - "id": 29614, + "id": 27857, "properties": { "bottom": "false", "east": "low", @@ -172688,7 +163540,7 @@ } }, { - "id": 29615, + "id": 27858, "properties": { "bottom": "false", "east": "low", @@ -172698,7 +163550,7 @@ } }, { - "id": 29616, + "id": 27859, "properties": { "bottom": "false", "east": "low", @@ -172708,7 +163560,7 @@ } }, { - "id": 29617, + "id": 27860, "properties": { "bottom": "false", "east": "low", @@ -172718,7 +163570,7 @@ } }, { - "id": 29618, + "id": 27861, "properties": { "bottom": "false", "east": "low", @@ -172728,7 +163580,7 @@ } }, { - "id": 29619, + "id": 27862, "properties": { "bottom": "false", "east": "low", @@ -172738,7 +163590,7 @@ } }, { - "id": 29620, + "id": 27863, "properties": { "bottom": "false", "east": "low", @@ -172748,7 +163600,7 @@ } }, { - "id": 29621, + "id": 27864, "properties": { "bottom": "false", "east": "low", @@ -172758,7 +163610,7 @@ } }, { - "id": 29622, + "id": 27865, "properties": { "bottom": "false", "east": "low", @@ -172768,7 +163620,7 @@ } }, { - "id": 29623, + "id": 27866, "properties": { "bottom": "false", "east": "low", @@ -172778,7 +163630,7 @@ } }, { - "id": 29624, + "id": 27867, "properties": { "bottom": "false", "east": "low", @@ -172788,7 +163640,7 @@ } }, { - "id": 29625, + "id": 27868, "properties": { "bottom": "false", "east": "low", @@ -172798,7 +163650,7 @@ } }, { - "id": 29626, + "id": 27869, "properties": { "bottom": "false", "east": "low", @@ -172808,7 +163660,7 @@ } }, { - "id": 29627, + "id": 27870, "properties": { "bottom": "false", "east": "low", @@ -172818,7 +163670,7 @@ } }, { - "id": 29628, + "id": 27871, "properties": { "bottom": "false", "east": "low", @@ -172828,7 +163680,7 @@ } }, { - "id": 29629, + "id": 27872, "properties": { "bottom": "false", "east": "low", @@ -172838,7 +163690,7 @@ } }, { - "id": 29630, + "id": 27873, "properties": { "bottom": "false", "east": "low", @@ -172848,7 +163700,7 @@ } }, { - "id": 29631, + "id": 27874, "properties": { "bottom": "false", "east": "low", @@ -172858,7 +163710,7 @@ } }, { - "id": 29632, + "id": 27875, "properties": { "bottom": "false", "east": "low", @@ -172868,7 +163720,7 @@ } }, { - "id": 29633, + "id": 27876, "properties": { "bottom": "false", "east": "low", @@ -172878,7 +163730,7 @@ } }, { - "id": 29634, + "id": 27877, "properties": { "bottom": "false", "east": "low", @@ -172888,7 +163740,7 @@ } }, { - "id": 29635, + "id": 27878, "properties": { "bottom": "false", "east": "low", @@ -172898,7 +163750,7 @@ } }, { - "id": 29636, + "id": 27879, "properties": { "bottom": "false", "east": "low", @@ -172908,7 +163760,7 @@ } }, { - "id": 29637, + "id": 27880, "properties": { "bottom": "false", "east": "tall", @@ -172918,7 +163770,7 @@ } }, { - "id": 29638, + "id": 27881, "properties": { "bottom": "false", "east": "tall", @@ -172928,7 +163780,7 @@ } }, { - "id": 29639, + "id": 27882, "properties": { "bottom": "false", "east": "tall", @@ -172938,7 +163790,7 @@ } }, { - "id": 29640, + "id": 27883, "properties": { "bottom": "false", "east": "tall", @@ -172948,7 +163800,7 @@ } }, { - "id": 29641, + "id": 27884, "properties": { "bottom": "false", "east": "tall", @@ -172958,7 +163810,7 @@ } }, { - "id": 29642, + "id": 27885, "properties": { "bottom": "false", "east": "tall", @@ -172968,7 +163820,7 @@ } }, { - "id": 29643, + "id": 27886, "properties": { "bottom": "false", "east": "tall", @@ -172978,7 +163830,7 @@ } }, { - "id": 29644, + "id": 27887, "properties": { "bottom": "false", "east": "tall", @@ -172988,7 +163840,7 @@ } }, { - "id": 29645, + "id": 27888, "properties": { "bottom": "false", "east": "tall", @@ -172998,7 +163850,7 @@ } }, { - "id": 29646, + "id": 27889, "properties": { "bottom": "false", "east": "tall", @@ -173008,7 +163860,7 @@ } }, { - "id": 29647, + "id": 27890, "properties": { "bottom": "false", "east": "tall", @@ -173018,7 +163870,7 @@ } }, { - "id": 29648, + "id": 27891, "properties": { "bottom": "false", "east": "tall", @@ -173028,7 +163880,7 @@ } }, { - "id": 29649, + "id": 27892, "properties": { "bottom": "false", "east": "tall", @@ -173038,7 +163890,7 @@ } }, { - "id": 29650, + "id": 27893, "properties": { "bottom": "false", "east": "tall", @@ -173048,7 +163900,7 @@ } }, { - "id": 29651, + "id": 27894, "properties": { "bottom": "false", "east": "tall", @@ -173058,7 +163910,7 @@ } }, { - "id": 29652, + "id": 27895, "properties": { "bottom": "false", "east": "tall", @@ -173068,7 +163920,7 @@ } }, { - "id": 29653, + "id": 27896, "properties": { "bottom": "false", "east": "tall", @@ -173078,7 +163930,7 @@ } }, { - "id": 29654, + "id": 27897, "properties": { "bottom": "false", "east": "tall", @@ -173088,7 +163940,7 @@ } }, { - "id": 29655, + "id": 27898, "properties": { "bottom": "false", "east": "tall", @@ -173098,7 +163950,7 @@ } }, { - "id": 29656, + "id": 27899, "properties": { "bottom": "false", "east": "tall", @@ -173108,7 +163960,7 @@ } }, { - "id": 29657, + "id": 27900, "properties": { "bottom": "false", "east": "tall", @@ -173118,7 +163970,7 @@ } }, { - "id": 29658, + "id": 27901, "properties": { "bottom": "false", "east": "tall", @@ -173128,7 +163980,7 @@ } }, { - "id": 29659, + "id": 27902, "properties": { "bottom": "false", "east": "tall", @@ -173138,7 +163990,7 @@ } }, { - "id": 29660, + "id": 27903, "properties": { "bottom": "false", "east": "tall", @@ -173148,7 +164000,7 @@ } }, { - "id": 29661, + "id": 27904, "properties": { "bottom": "false", "east": "tall", @@ -173158,7 +164010,7 @@ } }, { - "id": 29662, + "id": 27905, "properties": { "bottom": "false", "east": "tall", @@ -173168,7 +164020,7 @@ } }, { - "id": 29663, + "id": 27906, "properties": { "bottom": "false", "east": "tall", @@ -173205,7 +164057,7 @@ }, "states": [ { - "id": 10641, + "id": 9564, "properties": { "face": "floor", "facing": "north", @@ -173213,7 +164065,7 @@ } }, { - "id": 10642, + "id": 9565, "properties": { "face": "floor", "facing": "north", @@ -173221,7 +164073,7 @@ } }, { - "id": 10643, + "id": 9566, "properties": { "face": "floor", "facing": "south", @@ -173229,7 +164081,7 @@ } }, { - "id": 10644, + "id": 9567, "properties": { "face": "floor", "facing": "south", @@ -173237,7 +164089,7 @@ } }, { - "id": 10645, + "id": 9568, "properties": { "face": "floor", "facing": "west", @@ -173245,7 +164097,7 @@ } }, { - "id": 10646, + "id": 9569, "properties": { "face": "floor", "facing": "west", @@ -173253,7 +164105,7 @@ } }, { - "id": 10647, + "id": 9570, "properties": { "face": "floor", "facing": "east", @@ -173261,7 +164113,7 @@ } }, { - "id": 10648, + "id": 9571, "properties": { "face": "floor", "facing": "east", @@ -173269,7 +164121,7 @@ } }, { - "id": 10649, + "id": 9572, "properties": { "face": "wall", "facing": "north", @@ -173278,7 +164130,7 @@ }, { "default": true, - "id": 10650, + "id": 9573, "properties": { "face": "wall", "facing": "north", @@ -173286,7 +164138,7 @@ } }, { - "id": 10651, + "id": 9574, "properties": { "face": "wall", "facing": "south", @@ -173294,7 +164146,7 @@ } }, { - "id": 10652, + "id": 9575, "properties": { "face": "wall", "facing": "south", @@ -173302,7 +164154,7 @@ } }, { - "id": 10653, + "id": 9576, "properties": { "face": "wall", "facing": "west", @@ -173310,7 +164162,7 @@ } }, { - "id": 10654, + "id": 9577, "properties": { "face": "wall", "facing": "west", @@ -173318,7 +164170,7 @@ } }, { - "id": 10655, + "id": 9578, "properties": { "face": "wall", "facing": "east", @@ -173326,7 +164178,7 @@ } }, { - "id": 10656, + "id": 9579, "properties": { "face": "wall", "facing": "east", @@ -173334,7 +164186,7 @@ } }, { - "id": 10657, + "id": 9580, "properties": { "face": "ceiling", "facing": "north", @@ -173342,7 +164194,7 @@ } }, { - "id": 10658, + "id": 9581, "properties": { "face": "ceiling", "facing": "north", @@ -173350,7 +164202,7 @@ } }, { - "id": 10659, + "id": 9582, "properties": { "face": "ceiling", "facing": "south", @@ -173358,7 +164210,7 @@ } }, { - "id": 10660, + "id": 9583, "properties": { "face": "ceiling", "facing": "south", @@ -173366,7 +164218,7 @@ } }, { - "id": 10661, + "id": 9584, "properties": { "face": "ceiling", "facing": "west", @@ -173374,7 +164226,7 @@ } }, { - "id": 10662, + "id": 9585, "properties": { "face": "ceiling", "facing": "west", @@ -173382,7 +164234,7 @@ } }, { - "id": 10663, + "id": 9586, "properties": { "face": "ceiling", "facing": "east", @@ -173390,7 +164242,7 @@ } }, { - "id": 10664, + "id": 9587, "properties": { "face": "ceiling", "facing": "east", @@ -173431,7 +164283,7 @@ }, "states": [ { - "id": 14242, + "id": 13165, "properties": { "facing": "north", "half": "upper", @@ -173441,7 +164293,7 @@ } }, { - "id": 14243, + "id": 13166, "properties": { "facing": "north", "half": "upper", @@ -173451,7 +164303,7 @@ } }, { - "id": 14244, + "id": 13167, "properties": { "facing": "north", "half": "upper", @@ -173461,7 +164313,7 @@ } }, { - "id": 14245, + "id": 13168, "properties": { "facing": "north", "half": "upper", @@ -173471,7 +164323,7 @@ } }, { - "id": 14246, + "id": 13169, "properties": { "facing": "north", "half": "upper", @@ -173481,7 +164333,7 @@ } }, { - "id": 14247, + "id": 13170, "properties": { "facing": "north", "half": "upper", @@ -173491,7 +164343,7 @@ } }, { - "id": 14248, + "id": 13171, "properties": { "facing": "north", "half": "upper", @@ -173501,7 +164353,7 @@ } }, { - "id": 14249, + "id": 13172, "properties": { "facing": "north", "half": "upper", @@ -173511,7 +164363,7 @@ } }, { - "id": 14250, + "id": 13173, "properties": { "facing": "north", "half": "lower", @@ -173521,7 +164373,7 @@ } }, { - "id": 14251, + "id": 13174, "properties": { "facing": "north", "half": "lower", @@ -173531,7 +164383,7 @@ } }, { - "id": 14252, + "id": 13175, "properties": { "facing": "north", "half": "lower", @@ -173542,7 +164394,7 @@ }, { "default": true, - "id": 14253, + "id": 13176, "properties": { "facing": "north", "half": "lower", @@ -173552,7 +164404,7 @@ } }, { - "id": 14254, + "id": 13177, "properties": { "facing": "north", "half": "lower", @@ -173562,7 +164414,7 @@ } }, { - "id": 14255, + "id": 13178, "properties": { "facing": "north", "half": "lower", @@ -173572,7 +164424,7 @@ } }, { - "id": 14256, + "id": 13179, "properties": { "facing": "north", "half": "lower", @@ -173582,7 +164434,7 @@ } }, { - "id": 14257, + "id": 13180, "properties": { "facing": "north", "half": "lower", @@ -173592,7 +164444,7 @@ } }, { - "id": 14258, + "id": 13181, "properties": { "facing": "south", "half": "upper", @@ -173602,7 +164454,7 @@ } }, { - "id": 14259, + "id": 13182, "properties": { "facing": "south", "half": "upper", @@ -173612,7 +164464,7 @@ } }, { - "id": 14260, + "id": 13183, "properties": { "facing": "south", "half": "upper", @@ -173622,7 +164474,7 @@ } }, { - "id": 14261, + "id": 13184, "properties": { "facing": "south", "half": "upper", @@ -173632,7 +164484,7 @@ } }, { - "id": 14262, + "id": 13185, "properties": { "facing": "south", "half": "upper", @@ -173642,7 +164494,7 @@ } }, { - "id": 14263, + "id": 13186, "properties": { "facing": "south", "half": "upper", @@ -173652,7 +164504,7 @@ } }, { - "id": 14264, + "id": 13187, "properties": { "facing": "south", "half": "upper", @@ -173662,7 +164514,7 @@ } }, { - "id": 14265, + "id": 13188, "properties": { "facing": "south", "half": "upper", @@ -173672,7 +164524,7 @@ } }, { - "id": 14266, + "id": 13189, "properties": { "facing": "south", "half": "lower", @@ -173682,7 +164534,7 @@ } }, { - "id": 14267, + "id": 13190, "properties": { "facing": "south", "half": "lower", @@ -173692,7 +164544,7 @@ } }, { - "id": 14268, + "id": 13191, "properties": { "facing": "south", "half": "lower", @@ -173702,7 +164554,7 @@ } }, { - "id": 14269, + "id": 13192, "properties": { "facing": "south", "half": "lower", @@ -173712,7 +164564,7 @@ } }, { - "id": 14270, + "id": 13193, "properties": { "facing": "south", "half": "lower", @@ -173722,7 +164574,7 @@ } }, { - "id": 14271, + "id": 13194, "properties": { "facing": "south", "half": "lower", @@ -173732,7 +164584,7 @@ } }, { - "id": 14272, + "id": 13195, "properties": { "facing": "south", "half": "lower", @@ -173742,7 +164594,7 @@ } }, { - "id": 14273, + "id": 13196, "properties": { "facing": "south", "half": "lower", @@ -173752,7 +164604,7 @@ } }, { - "id": 14274, + "id": 13197, "properties": { "facing": "west", "half": "upper", @@ -173762,7 +164614,7 @@ } }, { - "id": 14275, + "id": 13198, "properties": { "facing": "west", "half": "upper", @@ -173772,7 +164624,7 @@ } }, { - "id": 14276, + "id": 13199, "properties": { "facing": "west", "half": "upper", @@ -173782,7 +164634,7 @@ } }, { - "id": 14277, + "id": 13200, "properties": { "facing": "west", "half": "upper", @@ -173792,7 +164644,7 @@ } }, { - "id": 14278, + "id": 13201, "properties": { "facing": "west", "half": "upper", @@ -173802,7 +164654,7 @@ } }, { - "id": 14279, + "id": 13202, "properties": { "facing": "west", "half": "upper", @@ -173812,7 +164664,7 @@ } }, { - "id": 14280, + "id": 13203, "properties": { "facing": "west", "half": "upper", @@ -173822,7 +164674,7 @@ } }, { - "id": 14281, + "id": 13204, "properties": { "facing": "west", "half": "upper", @@ -173832,7 +164684,7 @@ } }, { - "id": 14282, + "id": 13205, "properties": { "facing": "west", "half": "lower", @@ -173842,7 +164694,7 @@ } }, { - "id": 14283, + "id": 13206, "properties": { "facing": "west", "half": "lower", @@ -173852,7 +164704,7 @@ } }, { - "id": 14284, + "id": 13207, "properties": { "facing": "west", "half": "lower", @@ -173862,7 +164714,7 @@ } }, { - "id": 14285, + "id": 13208, "properties": { "facing": "west", "half": "lower", @@ -173872,7 +164724,7 @@ } }, { - "id": 14286, + "id": 13209, "properties": { "facing": "west", "half": "lower", @@ -173882,7 +164734,7 @@ } }, { - "id": 14287, + "id": 13210, "properties": { "facing": "west", "half": "lower", @@ -173892,7 +164744,7 @@ } }, { - "id": 14288, + "id": 13211, "properties": { "facing": "west", "half": "lower", @@ -173902,7 +164754,7 @@ } }, { - "id": 14289, + "id": 13212, "properties": { "facing": "west", "half": "lower", @@ -173912,7 +164764,7 @@ } }, { - "id": 14290, + "id": 13213, "properties": { "facing": "east", "half": "upper", @@ -173922,7 +164774,7 @@ } }, { - "id": 14291, + "id": 13214, "properties": { "facing": "east", "half": "upper", @@ -173932,7 +164784,7 @@ } }, { - "id": 14292, + "id": 13215, "properties": { "facing": "east", "half": "upper", @@ -173942,7 +164794,7 @@ } }, { - "id": 14293, + "id": 13216, "properties": { "facing": "east", "half": "upper", @@ -173952,7 +164804,7 @@ } }, { - "id": 14294, + "id": 13217, "properties": { "facing": "east", "half": "upper", @@ -173962,7 +164814,7 @@ } }, { - "id": 14295, + "id": 13218, "properties": { "facing": "east", "half": "upper", @@ -173972,7 +164824,7 @@ } }, { - "id": 14296, + "id": 13219, "properties": { "facing": "east", "half": "upper", @@ -173982,7 +164834,7 @@ } }, { - "id": 14297, + "id": 13220, "properties": { "facing": "east", "half": "upper", @@ -173992,7 +164844,7 @@ } }, { - "id": 14298, + "id": 13221, "properties": { "facing": "east", "half": "lower", @@ -174002,7 +164854,7 @@ } }, { - "id": 14299, + "id": 13222, "properties": { "facing": "east", "half": "lower", @@ -174012,7 +164864,7 @@ } }, { - "id": 14300, + "id": 13223, "properties": { "facing": "east", "half": "lower", @@ -174022,7 +164874,7 @@ } }, { - "id": 14301, + "id": 13224, "properties": { "facing": "east", "half": "lower", @@ -174032,7 +164884,7 @@ } }, { - "id": 14302, + "id": 13225, "properties": { "facing": "east", "half": "lower", @@ -174042,7 +164894,7 @@ } }, { - "id": 14303, + "id": 13226, "properties": { "facing": "east", "half": "lower", @@ -174052,7 +164904,7 @@ } }, { - "id": 14304, + "id": 13227, "properties": { "facing": "east", "half": "lower", @@ -174062,7 +164914,7 @@ } }, { - "id": 14305, + "id": 13228, "properties": { "facing": "east", "half": "lower", @@ -174102,7 +164954,7 @@ }, "states": [ { - "id": 13762, + "id": 12685, "properties": { "east": "true", "north": "true", @@ -174112,7 +164964,7 @@ } }, { - "id": 13763, + "id": 12686, "properties": { "east": "true", "north": "true", @@ -174122,7 +164974,7 @@ } }, { - "id": 13764, + "id": 12687, "properties": { "east": "true", "north": "true", @@ -174132,7 +164984,7 @@ } }, { - "id": 13765, + "id": 12688, "properties": { "east": "true", "north": "true", @@ -174142,7 +164994,7 @@ } }, { - "id": 13766, + "id": 12689, "properties": { "east": "true", "north": "true", @@ -174152,7 +165004,7 @@ } }, { - "id": 13767, + "id": 12690, "properties": { "east": "true", "north": "true", @@ -174162,7 +165014,7 @@ } }, { - "id": 13768, + "id": 12691, "properties": { "east": "true", "north": "true", @@ -174172,7 +165024,7 @@ } }, { - "id": 13769, + "id": 12692, "properties": { "east": "true", "north": "true", @@ -174182,7 +165034,7 @@ } }, { - "id": 13770, + "id": 12693, "properties": { "east": "true", "north": "false", @@ -174192,7 +165044,7 @@ } }, { - "id": 13771, + "id": 12694, "properties": { "east": "true", "north": "false", @@ -174202,7 +165054,7 @@ } }, { - "id": 13772, + "id": 12695, "properties": { "east": "true", "north": "false", @@ -174212,7 +165064,7 @@ } }, { - "id": 13773, + "id": 12696, "properties": { "east": "true", "north": "false", @@ -174222,7 +165074,7 @@ } }, { - "id": 13774, + "id": 12697, "properties": { "east": "true", "north": "false", @@ -174232,7 +165084,7 @@ } }, { - "id": 13775, + "id": 12698, "properties": { "east": "true", "north": "false", @@ -174242,7 +165094,7 @@ } }, { - "id": 13776, + "id": 12699, "properties": { "east": "true", "north": "false", @@ -174252,7 +165104,7 @@ } }, { - "id": 13777, + "id": 12700, "properties": { "east": "true", "north": "false", @@ -174262,7 +165114,7 @@ } }, { - "id": 13778, + "id": 12701, "properties": { "east": "false", "north": "true", @@ -174272,7 +165124,7 @@ } }, { - "id": 13779, + "id": 12702, "properties": { "east": "false", "north": "true", @@ -174282,7 +165134,7 @@ } }, { - "id": 13780, + "id": 12703, "properties": { "east": "false", "north": "true", @@ -174292,7 +165144,7 @@ } }, { - "id": 13781, + "id": 12704, "properties": { "east": "false", "north": "true", @@ -174302,7 +165154,7 @@ } }, { - "id": 13782, + "id": 12705, "properties": { "east": "false", "north": "true", @@ -174312,7 +165164,7 @@ } }, { - "id": 13783, + "id": 12706, "properties": { "east": "false", "north": "true", @@ -174322,7 +165174,7 @@ } }, { - "id": 13784, + "id": 12707, "properties": { "east": "false", "north": "true", @@ -174332,7 +165184,7 @@ } }, { - "id": 13785, + "id": 12708, "properties": { "east": "false", "north": "true", @@ -174342,7 +165194,7 @@ } }, { - "id": 13786, + "id": 12709, "properties": { "east": "false", "north": "false", @@ -174352,7 +165204,7 @@ } }, { - "id": 13787, + "id": 12710, "properties": { "east": "false", "north": "false", @@ -174362,7 +165214,7 @@ } }, { - "id": 13788, + "id": 12711, "properties": { "east": "false", "north": "false", @@ -174372,7 +165224,7 @@ } }, { - "id": 13789, + "id": 12712, "properties": { "east": "false", "north": "false", @@ -174382,7 +165234,7 @@ } }, { - "id": 13790, + "id": 12713, "properties": { "east": "false", "north": "false", @@ -174392,7 +165244,7 @@ } }, { - "id": 13791, + "id": 12714, "properties": { "east": "false", "north": "false", @@ -174402,7 +165254,7 @@ } }, { - "id": 13792, + "id": 12715, "properties": { "east": "false", "north": "false", @@ -174413,7 +165265,7 @@ }, { "default": true, - "id": 13793, + "id": 12716, "properties": { "east": "false", "north": "false", @@ -174452,7 +165304,7 @@ }, "states": [ { - "id": 13474, + "id": 12397, "properties": { "facing": "north", "in_wall": "true", @@ -174461,7 +165313,7 @@ } }, { - "id": 13475, + "id": 12398, "properties": { "facing": "north", "in_wall": "true", @@ -174470,7 +165322,7 @@ } }, { - "id": 13476, + "id": 12399, "properties": { "facing": "north", "in_wall": "true", @@ -174479,7 +165331,7 @@ } }, { - "id": 13477, + "id": 12400, "properties": { "facing": "north", "in_wall": "true", @@ -174488,7 +165340,7 @@ } }, { - "id": 13478, + "id": 12401, "properties": { "facing": "north", "in_wall": "false", @@ -174497,7 +165349,7 @@ } }, { - "id": 13479, + "id": 12402, "properties": { "facing": "north", "in_wall": "false", @@ -174506,7 +165358,7 @@ } }, { - "id": 13480, + "id": 12403, "properties": { "facing": "north", "in_wall": "false", @@ -174516,7 +165368,7 @@ }, { "default": true, - "id": 13481, + "id": 12404, "properties": { "facing": "north", "in_wall": "false", @@ -174525,7 +165377,7 @@ } }, { - "id": 13482, + "id": 12405, "properties": { "facing": "south", "in_wall": "true", @@ -174534,7 +165386,7 @@ } }, { - "id": 13483, + "id": 12406, "properties": { "facing": "south", "in_wall": "true", @@ -174543,7 +165395,7 @@ } }, { - "id": 13484, + "id": 12407, "properties": { "facing": "south", "in_wall": "true", @@ -174552,7 +165404,7 @@ } }, { - "id": 13485, + "id": 12408, "properties": { "facing": "south", "in_wall": "true", @@ -174561,7 +165413,7 @@ } }, { - "id": 13486, + "id": 12409, "properties": { "facing": "south", "in_wall": "false", @@ -174570,7 +165422,7 @@ } }, { - "id": 13487, + "id": 12410, "properties": { "facing": "south", "in_wall": "false", @@ -174579,7 +165431,7 @@ } }, { - "id": 13488, + "id": 12411, "properties": { "facing": "south", "in_wall": "false", @@ -174588,7 +165440,7 @@ } }, { - "id": 13489, + "id": 12412, "properties": { "facing": "south", "in_wall": "false", @@ -174597,7 +165449,7 @@ } }, { - "id": 13490, + "id": 12413, "properties": { "facing": "west", "in_wall": "true", @@ -174606,7 +165458,7 @@ } }, { - "id": 13491, + "id": 12414, "properties": { "facing": "west", "in_wall": "true", @@ -174615,7 +165467,7 @@ } }, { - "id": 13492, + "id": 12415, "properties": { "facing": "west", "in_wall": "true", @@ -174624,7 +165476,7 @@ } }, { - "id": 13493, + "id": 12416, "properties": { "facing": "west", "in_wall": "true", @@ -174633,7 +165485,7 @@ } }, { - "id": 13494, + "id": 12417, "properties": { "facing": "west", "in_wall": "false", @@ -174642,7 +165494,7 @@ } }, { - "id": 13495, + "id": 12418, "properties": { "facing": "west", "in_wall": "false", @@ -174651,7 +165503,7 @@ } }, { - "id": 13496, + "id": 12419, "properties": { "facing": "west", "in_wall": "false", @@ -174660,7 +165512,7 @@ } }, { - "id": 13497, + "id": 12420, "properties": { "facing": "west", "in_wall": "false", @@ -174669,7 +165521,7 @@ } }, { - "id": 13498, + "id": 12421, "properties": { "facing": "east", "in_wall": "true", @@ -174678,7 +165530,7 @@ } }, { - "id": 13499, + "id": 12422, "properties": { "facing": "east", "in_wall": "true", @@ -174687,7 +165539,7 @@ } }, { - "id": 13500, + "id": 12423, "properties": { "facing": "east", "in_wall": "true", @@ -174696,7 +165548,7 @@ } }, { - "id": 13501, + "id": 12424, "properties": { "facing": "east", "in_wall": "true", @@ -174705,7 +165557,7 @@ } }, { - "id": 13502, + "id": 12425, "properties": { "facing": "east", "in_wall": "false", @@ -174714,7 +165566,7 @@ } }, { - "id": 13503, + "id": 12426, "properties": { "facing": "east", "in_wall": "false", @@ -174723,7 +165575,7 @@ } }, { - "id": 13504, + "id": 12427, "properties": { "facing": "east", "in_wall": "false", @@ -174732,7 +165584,7 @@ } }, { - "id": 13505, + "id": 12428, "properties": { "facing": "east", "in_wall": "false", @@ -174778,7 +165630,7 @@ }, "states": [ { - "id": 6154, + "id": 5386, "properties": { "attached": "true", "rotation": "0", @@ -174786,7 +165638,7 @@ } }, { - "id": 6155, + "id": 5387, "properties": { "attached": "true", "rotation": "0", @@ -174794,7 +165646,7 @@ } }, { - "id": 6156, + "id": 5388, "properties": { "attached": "true", "rotation": "1", @@ -174802,7 +165654,7 @@ } }, { - "id": 6157, + "id": 5389, "properties": { "attached": "true", "rotation": "1", @@ -174810,7 +165662,7 @@ } }, { - "id": 6158, + "id": 5390, "properties": { "attached": "true", "rotation": "2", @@ -174818,7 +165670,7 @@ } }, { - "id": 6159, + "id": 5391, "properties": { "attached": "true", "rotation": "2", @@ -174826,7 +165678,7 @@ } }, { - "id": 6160, + "id": 5392, "properties": { "attached": "true", "rotation": "3", @@ -174834,7 +165686,7 @@ } }, { - "id": 6161, + "id": 5393, "properties": { "attached": "true", "rotation": "3", @@ -174842,7 +165694,7 @@ } }, { - "id": 6162, + "id": 5394, "properties": { "attached": "true", "rotation": "4", @@ -174850,7 +165702,7 @@ } }, { - "id": 6163, + "id": 5395, "properties": { "attached": "true", "rotation": "4", @@ -174858,7 +165710,7 @@ } }, { - "id": 6164, + "id": 5396, "properties": { "attached": "true", "rotation": "5", @@ -174866,7 +165718,7 @@ } }, { - "id": 6165, + "id": 5397, "properties": { "attached": "true", "rotation": "5", @@ -174874,7 +165726,7 @@ } }, { - "id": 6166, + "id": 5398, "properties": { "attached": "true", "rotation": "6", @@ -174882,7 +165734,7 @@ } }, { - "id": 6167, + "id": 5399, "properties": { "attached": "true", "rotation": "6", @@ -174890,7 +165742,7 @@ } }, { - "id": 6168, + "id": 5400, "properties": { "attached": "true", "rotation": "7", @@ -174898,7 +165750,7 @@ } }, { - "id": 6169, + "id": 5401, "properties": { "attached": "true", "rotation": "7", @@ -174906,7 +165758,7 @@ } }, { - "id": 6170, + "id": 5402, "properties": { "attached": "true", "rotation": "8", @@ -174914,7 +165766,7 @@ } }, { - "id": 6171, + "id": 5403, "properties": { "attached": "true", "rotation": "8", @@ -174922,7 +165774,7 @@ } }, { - "id": 6172, + "id": 5404, "properties": { "attached": "true", "rotation": "9", @@ -174930,7 +165782,7 @@ } }, { - "id": 6173, + "id": 5405, "properties": { "attached": "true", "rotation": "9", @@ -174938,7 +165790,7 @@ } }, { - "id": 6174, + "id": 5406, "properties": { "attached": "true", "rotation": "10", @@ -174946,7 +165798,7 @@ } }, { - "id": 6175, + "id": 5407, "properties": { "attached": "true", "rotation": "10", @@ -174954,7 +165806,7 @@ } }, { - "id": 6176, + "id": 5408, "properties": { "attached": "true", "rotation": "11", @@ -174962,7 +165814,7 @@ } }, { - "id": 6177, + "id": 5409, "properties": { "attached": "true", "rotation": "11", @@ -174970,7 +165822,7 @@ } }, { - "id": 6178, + "id": 5410, "properties": { "attached": "true", "rotation": "12", @@ -174978,7 +165830,7 @@ } }, { - "id": 6179, + "id": 5411, "properties": { "attached": "true", "rotation": "12", @@ -174986,7 +165838,7 @@ } }, { - "id": 6180, + "id": 5412, "properties": { "attached": "true", "rotation": "13", @@ -174994,7 +165846,7 @@ } }, { - "id": 6181, + "id": 5413, "properties": { "attached": "true", "rotation": "13", @@ -175002,7 +165854,7 @@ } }, { - "id": 6182, + "id": 5414, "properties": { "attached": "true", "rotation": "14", @@ -175010,7 +165862,7 @@ } }, { - "id": 6183, + "id": 5415, "properties": { "attached": "true", "rotation": "14", @@ -175018,7 +165870,7 @@ } }, { - "id": 6184, + "id": 5416, "properties": { "attached": "true", "rotation": "15", @@ -175026,7 +165878,7 @@ } }, { - "id": 6185, + "id": 5417, "properties": { "attached": "true", "rotation": "15", @@ -175034,7 +165886,7 @@ } }, { - "id": 6186, + "id": 5418, "properties": { "attached": "false", "rotation": "0", @@ -175043,7 +165895,7 @@ }, { "default": true, - "id": 6187, + "id": 5419, "properties": { "attached": "false", "rotation": "0", @@ -175051,7 +165903,7 @@ } }, { - "id": 6188, + "id": 5420, "properties": { "attached": "false", "rotation": "1", @@ -175059,7 +165911,7 @@ } }, { - "id": 6189, + "id": 5421, "properties": { "attached": "false", "rotation": "1", @@ -175067,7 +165919,7 @@ } }, { - "id": 6190, + "id": 5422, "properties": { "attached": "false", "rotation": "2", @@ -175075,7 +165927,7 @@ } }, { - "id": 6191, + "id": 5423, "properties": { "attached": "false", "rotation": "2", @@ -175083,7 +165935,7 @@ } }, { - "id": 6192, + "id": 5424, "properties": { "attached": "false", "rotation": "3", @@ -175091,7 +165943,7 @@ } }, { - "id": 6193, + "id": 5425, "properties": { "attached": "false", "rotation": "3", @@ -175099,7 +165951,7 @@ } }, { - "id": 6194, + "id": 5426, "properties": { "attached": "false", "rotation": "4", @@ -175107,7 +165959,7 @@ } }, { - "id": 6195, + "id": 5427, "properties": { "attached": "false", "rotation": "4", @@ -175115,7 +165967,7 @@ } }, { - "id": 6196, + "id": 5428, "properties": { "attached": "false", "rotation": "5", @@ -175123,7 +165975,7 @@ } }, { - "id": 6197, + "id": 5429, "properties": { "attached": "false", "rotation": "5", @@ -175131,7 +165983,7 @@ } }, { - "id": 6198, + "id": 5430, "properties": { "attached": "false", "rotation": "6", @@ -175139,7 +165991,7 @@ } }, { - "id": 6199, + "id": 5431, "properties": { "attached": "false", "rotation": "6", @@ -175147,7 +165999,7 @@ } }, { - "id": 6200, + "id": 5432, "properties": { "attached": "false", "rotation": "7", @@ -175155,7 +166007,7 @@ } }, { - "id": 6201, + "id": 5433, "properties": { "attached": "false", "rotation": "7", @@ -175163,7 +166015,7 @@ } }, { - "id": 6202, + "id": 5434, "properties": { "attached": "false", "rotation": "8", @@ -175171,7 +166023,7 @@ } }, { - "id": 6203, + "id": 5435, "properties": { "attached": "false", "rotation": "8", @@ -175179,7 +166031,7 @@ } }, { - "id": 6204, + "id": 5436, "properties": { "attached": "false", "rotation": "9", @@ -175187,7 +166039,7 @@ } }, { - "id": 6205, + "id": 5437, "properties": { "attached": "false", "rotation": "9", @@ -175195,7 +166047,7 @@ } }, { - "id": 6206, + "id": 5438, "properties": { "attached": "false", "rotation": "10", @@ -175203,7 +166055,7 @@ } }, { - "id": 6207, + "id": 5439, "properties": { "attached": "false", "rotation": "10", @@ -175211,7 +166063,7 @@ } }, { - "id": 6208, + "id": 5440, "properties": { "attached": "false", "rotation": "11", @@ -175219,7 +166071,7 @@ } }, { - "id": 6209, + "id": 5441, "properties": { "attached": "false", "rotation": "11", @@ -175227,7 +166079,7 @@ } }, { - "id": 6210, + "id": 5442, "properties": { "attached": "false", "rotation": "12", @@ -175235,7 +166087,7 @@ } }, { - "id": 6211, + "id": 5443, "properties": { "attached": "false", "rotation": "12", @@ -175243,7 +166095,7 @@ } }, { - "id": 6212, + "id": 5444, "properties": { "attached": "false", "rotation": "13", @@ -175251,7 +166103,7 @@ } }, { - "id": 6213, + "id": 5445, "properties": { "attached": "false", "rotation": "13", @@ -175259,7 +166111,7 @@ } }, { - "id": 6214, + "id": 5446, "properties": { "attached": "false", "rotation": "14", @@ -175267,7 +166119,7 @@ } }, { - "id": 6215, + "id": 5447, "properties": { "attached": "false", "rotation": "14", @@ -175275,7 +166127,7 @@ } }, { - "id": 6216, + "id": 5448, "properties": { "attached": "false", "rotation": "15", @@ -175283,7 +166135,7 @@ } }, { - "id": 6217, + "id": 5449, "properties": { "attached": "false", "rotation": "15", @@ -175608,14 +166460,14 @@ }, "states": [ { - "id": 6674, + "id": 5906, "properties": { "powered": "true" } }, { "default": true, - "id": 6675, + "id": 5907, "properties": { "powered": "false" } @@ -175650,613 +166502,6 @@ } ] }, - "minecraft:pale_oak_shelf": { - "definition": { - "type": "minecraft:shelf", - "properties": {} - }, - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ], - "side_chain": [ - "unconnected", - "right", - "center", - "left" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 2975, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2976, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2977, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2978, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2979, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2980, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2981, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2982, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2983, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 2984, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2985, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2986, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2987, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2988, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2989, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2990, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2991, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 2992, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 2993, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 2994, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 2995, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 2996, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 2997, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 2998, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 2999, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 3000, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 3001, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 3002, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 3003, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 3004, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 3005, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 3006, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 3007, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 3008, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 3009, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 3010, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 3011, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 3012, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 3013, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 3014, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 3015, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 3016, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 3017, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 3018, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 3019, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 3020, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 3021, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 3022, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 3023, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 3024, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 3025, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 3026, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 3027, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 3028, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 3029, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 3030, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 3031, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 3032, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 3033, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 3034, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 3035, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 3036, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 3037, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 3038, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "left", - "waterlogged": "false" - } - } - ] - }, "minecraft:pale_oak_sign": { "definition": { "type": "minecraft:standing_sign", @@ -176289,7 +166534,7 @@ }, "states": [ { - "id": 5358, + "id": 4590, "properties": { "rotation": "0", "waterlogged": "true" @@ -176297,217 +166542,217 @@ }, { "default": true, - "id": 5359, + "id": 4591, "properties": { "rotation": "0", "waterlogged": "false" } }, { - "id": 5360, + "id": 4592, "properties": { "rotation": "1", "waterlogged": "true" } }, { - "id": 5361, + "id": 4593, "properties": { "rotation": "1", "waterlogged": "false" } }, { - "id": 5362, + "id": 4594, "properties": { "rotation": "2", "waterlogged": "true" } }, { - "id": 5363, + "id": 4595, "properties": { "rotation": "2", "waterlogged": "false" } }, { - "id": 5364, + "id": 4596, "properties": { "rotation": "3", "waterlogged": "true" } }, { - "id": 5365, + "id": 4597, "properties": { "rotation": "3", "waterlogged": "false" } }, { - "id": 5366, + "id": 4598, "properties": { "rotation": "4", "waterlogged": "true" } }, { - "id": 5367, + "id": 4599, "properties": { "rotation": "4", "waterlogged": "false" } }, { - "id": 5368, + "id": 4600, "properties": { "rotation": "5", "waterlogged": "true" } }, { - "id": 5369, + "id": 4601, "properties": { "rotation": "5", "waterlogged": "false" } }, { - "id": 5370, + "id": 4602, "properties": { "rotation": "6", "waterlogged": "true" } }, { - "id": 5371, + "id": 4603, "properties": { "rotation": "6", "waterlogged": "false" } }, { - "id": 5372, + "id": 4604, "properties": { "rotation": "7", "waterlogged": "true" } }, { - "id": 5373, + "id": 4605, "properties": { "rotation": "7", "waterlogged": "false" } }, { - "id": 5374, + "id": 4606, "properties": { "rotation": "8", "waterlogged": "true" } }, { - "id": 5375, + "id": 4607, "properties": { "rotation": "8", "waterlogged": "false" } }, { - "id": 5376, + "id": 4608, "properties": { "rotation": "9", "waterlogged": "true" } }, { - "id": 5377, + "id": 4609, "properties": { "rotation": "9", "waterlogged": "false" } }, { - "id": 5378, + "id": 4610, "properties": { "rotation": "10", "waterlogged": "true" } }, { - "id": 5379, + "id": 4611, "properties": { "rotation": "10", "waterlogged": "false" } }, { - "id": 5380, + "id": 4612, "properties": { "rotation": "11", "waterlogged": "true" } }, { - "id": 5381, + "id": 4613, "properties": { "rotation": "11", "waterlogged": "false" } }, { - "id": 5382, + "id": 4614, "properties": { "rotation": "12", "waterlogged": "true" } }, { - "id": 5383, + "id": 4615, "properties": { "rotation": "12", "waterlogged": "false" } }, { - "id": 5384, + "id": 4616, "properties": { "rotation": "13", "waterlogged": "true" } }, { - "id": 5385, + "id": 4617, "properties": { "rotation": "13", "waterlogged": "false" } }, { - "id": 5386, + "id": 4618, "properties": { "rotation": "14", "waterlogged": "true" } }, { - "id": 5387, + "id": 4619, "properties": { "rotation": "14", "waterlogged": "false" } }, { - "id": 5388, + "id": 4620, "properties": { "rotation": "15", "waterlogged": "true" } }, { - "id": 5389, + "id": 4621, "properties": { "rotation": "15", "waterlogged": "false" @@ -176533,21 +166778,21 @@ }, "states": [ { - "id": 13170, + "id": 12093, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 13171, + "id": 12094, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 13172, + "id": 12095, "properties": { "type": "bottom", "waterlogged": "true" @@ -176555,21 +166800,21 @@ }, { "default": true, - "id": 13173, + "id": 12096, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 13174, + "id": 12097, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 13175, + "id": 12098, "properties": { "type": "double", "waterlogged": "false" @@ -176610,7 +166855,7 @@ }, "states": [ { - "id": 12010, + "id": 10933, "properties": { "facing": "north", "half": "top", @@ -176619,7 +166864,7 @@ } }, { - "id": 12011, + "id": 10934, "properties": { "facing": "north", "half": "top", @@ -176628,7 +166873,7 @@ } }, { - "id": 12012, + "id": 10935, "properties": { "facing": "north", "half": "top", @@ -176637,7 +166882,7 @@ } }, { - "id": 12013, + "id": 10936, "properties": { "facing": "north", "half": "top", @@ -176646,7 +166891,7 @@ } }, { - "id": 12014, + "id": 10937, "properties": { "facing": "north", "half": "top", @@ -176655,7 +166900,7 @@ } }, { - "id": 12015, + "id": 10938, "properties": { "facing": "north", "half": "top", @@ -176664,7 +166909,7 @@ } }, { - "id": 12016, + "id": 10939, "properties": { "facing": "north", "half": "top", @@ -176673,7 +166918,7 @@ } }, { - "id": 12017, + "id": 10940, "properties": { "facing": "north", "half": "top", @@ -176682,7 +166927,7 @@ } }, { - "id": 12018, + "id": 10941, "properties": { "facing": "north", "half": "top", @@ -176691,7 +166936,7 @@ } }, { - "id": 12019, + "id": 10942, "properties": { "facing": "north", "half": "top", @@ -176700,7 +166945,7 @@ } }, { - "id": 12020, + "id": 10943, "properties": { "facing": "north", "half": "bottom", @@ -176710,7 +166955,7 @@ }, { "default": true, - "id": 12021, + "id": 10944, "properties": { "facing": "north", "half": "bottom", @@ -176719,7 +166964,7 @@ } }, { - "id": 12022, + "id": 10945, "properties": { "facing": "north", "half": "bottom", @@ -176728,7 +166973,7 @@ } }, { - "id": 12023, + "id": 10946, "properties": { "facing": "north", "half": "bottom", @@ -176737,7 +166982,7 @@ } }, { - "id": 12024, + "id": 10947, "properties": { "facing": "north", "half": "bottom", @@ -176746,7 +166991,7 @@ } }, { - "id": 12025, + "id": 10948, "properties": { "facing": "north", "half": "bottom", @@ -176755,7 +167000,7 @@ } }, { - "id": 12026, + "id": 10949, "properties": { "facing": "north", "half": "bottom", @@ -176764,7 +167009,7 @@ } }, { - "id": 12027, + "id": 10950, "properties": { "facing": "north", "half": "bottom", @@ -176773,7 +167018,7 @@ } }, { - "id": 12028, + "id": 10951, "properties": { "facing": "north", "half": "bottom", @@ -176782,7 +167027,7 @@ } }, { - "id": 12029, + "id": 10952, "properties": { "facing": "north", "half": "bottom", @@ -176791,7 +167036,7 @@ } }, { - "id": 12030, + "id": 10953, "properties": { "facing": "south", "half": "top", @@ -176800,7 +167045,7 @@ } }, { - "id": 12031, + "id": 10954, "properties": { "facing": "south", "half": "top", @@ -176809,7 +167054,7 @@ } }, { - "id": 12032, + "id": 10955, "properties": { "facing": "south", "half": "top", @@ -176818,7 +167063,7 @@ } }, { - "id": 12033, + "id": 10956, "properties": { "facing": "south", "half": "top", @@ -176827,7 +167072,7 @@ } }, { - "id": 12034, + "id": 10957, "properties": { "facing": "south", "half": "top", @@ -176836,7 +167081,7 @@ } }, { - "id": 12035, + "id": 10958, "properties": { "facing": "south", "half": "top", @@ -176845,7 +167090,7 @@ } }, { - "id": 12036, + "id": 10959, "properties": { "facing": "south", "half": "top", @@ -176854,7 +167099,7 @@ } }, { - "id": 12037, + "id": 10960, "properties": { "facing": "south", "half": "top", @@ -176863,7 +167108,7 @@ } }, { - "id": 12038, + "id": 10961, "properties": { "facing": "south", "half": "top", @@ -176872,7 +167117,7 @@ } }, { - "id": 12039, + "id": 10962, "properties": { "facing": "south", "half": "top", @@ -176881,7 +167126,7 @@ } }, { - "id": 12040, + "id": 10963, "properties": { "facing": "south", "half": "bottom", @@ -176890,7 +167135,7 @@ } }, { - "id": 12041, + "id": 10964, "properties": { "facing": "south", "half": "bottom", @@ -176899,7 +167144,7 @@ } }, { - "id": 12042, + "id": 10965, "properties": { "facing": "south", "half": "bottom", @@ -176908,7 +167153,7 @@ } }, { - "id": 12043, + "id": 10966, "properties": { "facing": "south", "half": "bottom", @@ -176917,7 +167162,7 @@ } }, { - "id": 12044, + "id": 10967, "properties": { "facing": "south", "half": "bottom", @@ -176926,7 +167171,7 @@ } }, { - "id": 12045, + "id": 10968, "properties": { "facing": "south", "half": "bottom", @@ -176935,7 +167180,7 @@ } }, { - "id": 12046, + "id": 10969, "properties": { "facing": "south", "half": "bottom", @@ -176944,7 +167189,7 @@ } }, { - "id": 12047, + "id": 10970, "properties": { "facing": "south", "half": "bottom", @@ -176953,7 +167198,7 @@ } }, { - "id": 12048, + "id": 10971, "properties": { "facing": "south", "half": "bottom", @@ -176962,7 +167207,7 @@ } }, { - "id": 12049, + "id": 10972, "properties": { "facing": "south", "half": "bottom", @@ -176971,7 +167216,7 @@ } }, { - "id": 12050, + "id": 10973, "properties": { "facing": "west", "half": "top", @@ -176980,7 +167225,7 @@ } }, { - "id": 12051, + "id": 10974, "properties": { "facing": "west", "half": "top", @@ -176989,7 +167234,7 @@ } }, { - "id": 12052, + "id": 10975, "properties": { "facing": "west", "half": "top", @@ -176998,7 +167243,7 @@ } }, { - "id": 12053, + "id": 10976, "properties": { "facing": "west", "half": "top", @@ -177007,7 +167252,7 @@ } }, { - "id": 12054, + "id": 10977, "properties": { "facing": "west", "half": "top", @@ -177016,7 +167261,7 @@ } }, { - "id": 12055, + "id": 10978, "properties": { "facing": "west", "half": "top", @@ -177025,7 +167270,7 @@ } }, { - "id": 12056, + "id": 10979, "properties": { "facing": "west", "half": "top", @@ -177034,7 +167279,7 @@ } }, { - "id": 12057, + "id": 10980, "properties": { "facing": "west", "half": "top", @@ -177043,7 +167288,7 @@ } }, { - "id": 12058, + "id": 10981, "properties": { "facing": "west", "half": "top", @@ -177052,7 +167297,7 @@ } }, { - "id": 12059, + "id": 10982, "properties": { "facing": "west", "half": "top", @@ -177061,7 +167306,7 @@ } }, { - "id": 12060, + "id": 10983, "properties": { "facing": "west", "half": "bottom", @@ -177070,7 +167315,7 @@ } }, { - "id": 12061, + "id": 10984, "properties": { "facing": "west", "half": "bottom", @@ -177079,7 +167324,7 @@ } }, { - "id": 12062, + "id": 10985, "properties": { "facing": "west", "half": "bottom", @@ -177088,7 +167333,7 @@ } }, { - "id": 12063, + "id": 10986, "properties": { "facing": "west", "half": "bottom", @@ -177097,7 +167342,7 @@ } }, { - "id": 12064, + "id": 10987, "properties": { "facing": "west", "half": "bottom", @@ -177106,7 +167351,7 @@ } }, { - "id": 12065, + "id": 10988, "properties": { "facing": "west", "half": "bottom", @@ -177115,7 +167360,7 @@ } }, { - "id": 12066, + "id": 10989, "properties": { "facing": "west", "half": "bottom", @@ -177124,7 +167369,7 @@ } }, { - "id": 12067, + "id": 10990, "properties": { "facing": "west", "half": "bottom", @@ -177133,7 +167378,7 @@ } }, { - "id": 12068, + "id": 10991, "properties": { "facing": "west", "half": "bottom", @@ -177142,7 +167387,7 @@ } }, { - "id": 12069, + "id": 10992, "properties": { "facing": "west", "half": "bottom", @@ -177151,7 +167396,7 @@ } }, { - "id": 12070, + "id": 10993, "properties": { "facing": "east", "half": "top", @@ -177160,7 +167405,7 @@ } }, { - "id": 12071, + "id": 10994, "properties": { "facing": "east", "half": "top", @@ -177169,7 +167414,7 @@ } }, { - "id": 12072, + "id": 10995, "properties": { "facing": "east", "half": "top", @@ -177178,7 +167423,7 @@ } }, { - "id": 12073, + "id": 10996, "properties": { "facing": "east", "half": "top", @@ -177187,7 +167432,7 @@ } }, { - "id": 12074, + "id": 10997, "properties": { "facing": "east", "half": "top", @@ -177196,7 +167441,7 @@ } }, { - "id": 12075, + "id": 10998, "properties": { "facing": "east", "half": "top", @@ -177205,7 +167450,7 @@ } }, { - "id": 12076, + "id": 10999, "properties": { "facing": "east", "half": "top", @@ -177214,7 +167459,7 @@ } }, { - "id": 12077, + "id": 11000, "properties": { "facing": "east", "half": "top", @@ -177223,7 +167468,7 @@ } }, { - "id": 12078, + "id": 11001, "properties": { "facing": "east", "half": "top", @@ -177232,7 +167477,7 @@ } }, { - "id": 12079, + "id": 11002, "properties": { "facing": "east", "half": "top", @@ -177241,7 +167486,7 @@ } }, { - "id": 12080, + "id": 11003, "properties": { "facing": "east", "half": "bottom", @@ -177250,7 +167495,7 @@ } }, { - "id": 12081, + "id": 11004, "properties": { "facing": "east", "half": "bottom", @@ -177259,7 +167504,7 @@ } }, { - "id": 12082, + "id": 11005, "properties": { "facing": "east", "half": "bottom", @@ -177268,7 +167513,7 @@ } }, { - "id": 12083, + "id": 11006, "properties": { "facing": "east", "half": "bottom", @@ -177277,7 +167522,7 @@ } }, { - "id": 12084, + "id": 11007, "properties": { "facing": "east", "half": "bottom", @@ -177286,7 +167531,7 @@ } }, { - "id": 12085, + "id": 11008, "properties": { "facing": "east", "half": "bottom", @@ -177295,7 +167540,7 @@ } }, { - "id": 12086, + "id": 11009, "properties": { "facing": "east", "half": "bottom", @@ -177304,7 +167549,7 @@ } }, { - "id": 12087, + "id": 11010, "properties": { "facing": "east", "half": "bottom", @@ -177313,7 +167558,7 @@ } }, { - "id": 12088, + "id": 11011, "properties": { "facing": "east", "half": "bottom", @@ -177322,7 +167567,7 @@ } }, { - "id": 12089, + "id": 11012, "properties": { "facing": "east", "half": "bottom", @@ -177364,7 +167609,7 @@ }, "states": [ { - "id": 7361, + "id": 6588, "properties": { "facing": "north", "half": "top", @@ -177374,7 +167619,7 @@ } }, { - "id": 7362, + "id": 6589, "properties": { "facing": "north", "half": "top", @@ -177384,7 +167629,7 @@ } }, { - "id": 7363, + "id": 6590, "properties": { "facing": "north", "half": "top", @@ -177394,7 +167639,7 @@ } }, { - "id": 7364, + "id": 6591, "properties": { "facing": "north", "half": "top", @@ -177404,7 +167649,7 @@ } }, { - "id": 7365, + "id": 6592, "properties": { "facing": "north", "half": "top", @@ -177414,7 +167659,7 @@ } }, { - "id": 7366, + "id": 6593, "properties": { "facing": "north", "half": "top", @@ -177424,7 +167669,7 @@ } }, { - "id": 7367, + "id": 6594, "properties": { "facing": "north", "half": "top", @@ -177434,7 +167679,7 @@ } }, { - "id": 7368, + "id": 6595, "properties": { "facing": "north", "half": "top", @@ -177444,7 +167689,7 @@ } }, { - "id": 7369, + "id": 6596, "properties": { "facing": "north", "half": "bottom", @@ -177454,7 +167699,7 @@ } }, { - "id": 7370, + "id": 6597, "properties": { "facing": "north", "half": "bottom", @@ -177464,7 +167709,7 @@ } }, { - "id": 7371, + "id": 6598, "properties": { "facing": "north", "half": "bottom", @@ -177474,7 +167719,7 @@ } }, { - "id": 7372, + "id": 6599, "properties": { "facing": "north", "half": "bottom", @@ -177484,7 +167729,7 @@ } }, { - "id": 7373, + "id": 6600, "properties": { "facing": "north", "half": "bottom", @@ -177494,7 +167739,7 @@ } }, { - "id": 7374, + "id": 6601, "properties": { "facing": "north", "half": "bottom", @@ -177504,7 +167749,7 @@ } }, { - "id": 7375, + "id": 6602, "properties": { "facing": "north", "half": "bottom", @@ -177515,7 +167760,7 @@ }, { "default": true, - "id": 7376, + "id": 6603, "properties": { "facing": "north", "half": "bottom", @@ -177525,7 +167770,7 @@ } }, { - "id": 7377, + "id": 6604, "properties": { "facing": "south", "half": "top", @@ -177535,7 +167780,7 @@ } }, { - "id": 7378, + "id": 6605, "properties": { "facing": "south", "half": "top", @@ -177545,7 +167790,7 @@ } }, { - "id": 7379, + "id": 6606, "properties": { "facing": "south", "half": "top", @@ -177555,7 +167800,7 @@ } }, { - "id": 7380, + "id": 6607, "properties": { "facing": "south", "half": "top", @@ -177565,7 +167810,7 @@ } }, { - "id": 7381, + "id": 6608, "properties": { "facing": "south", "half": "top", @@ -177575,7 +167820,7 @@ } }, { - "id": 7382, + "id": 6609, "properties": { "facing": "south", "half": "top", @@ -177585,7 +167830,7 @@ } }, { - "id": 7383, + "id": 6610, "properties": { "facing": "south", "half": "top", @@ -177595,7 +167840,7 @@ } }, { - "id": 7384, + "id": 6611, "properties": { "facing": "south", "half": "top", @@ -177605,7 +167850,7 @@ } }, { - "id": 7385, + "id": 6612, "properties": { "facing": "south", "half": "bottom", @@ -177615,7 +167860,7 @@ } }, { - "id": 7386, + "id": 6613, "properties": { "facing": "south", "half": "bottom", @@ -177625,7 +167870,7 @@ } }, { - "id": 7387, + "id": 6614, "properties": { "facing": "south", "half": "bottom", @@ -177635,7 +167880,7 @@ } }, { - "id": 7388, + "id": 6615, "properties": { "facing": "south", "half": "bottom", @@ -177645,7 +167890,7 @@ } }, { - "id": 7389, + "id": 6616, "properties": { "facing": "south", "half": "bottom", @@ -177655,7 +167900,7 @@ } }, { - "id": 7390, + "id": 6617, "properties": { "facing": "south", "half": "bottom", @@ -177665,7 +167910,7 @@ } }, { - "id": 7391, + "id": 6618, "properties": { "facing": "south", "half": "bottom", @@ -177675,7 +167920,7 @@ } }, { - "id": 7392, + "id": 6619, "properties": { "facing": "south", "half": "bottom", @@ -177685,7 +167930,7 @@ } }, { - "id": 7393, + "id": 6620, "properties": { "facing": "west", "half": "top", @@ -177695,7 +167940,7 @@ } }, { - "id": 7394, + "id": 6621, "properties": { "facing": "west", "half": "top", @@ -177705,7 +167950,7 @@ } }, { - "id": 7395, + "id": 6622, "properties": { "facing": "west", "half": "top", @@ -177715,7 +167960,7 @@ } }, { - "id": 7396, + "id": 6623, "properties": { "facing": "west", "half": "top", @@ -177725,7 +167970,7 @@ } }, { - "id": 7397, + "id": 6624, "properties": { "facing": "west", "half": "top", @@ -177735,7 +167980,7 @@ } }, { - "id": 7398, + "id": 6625, "properties": { "facing": "west", "half": "top", @@ -177745,7 +167990,7 @@ } }, { - "id": 7399, + "id": 6626, "properties": { "facing": "west", "half": "top", @@ -177755,7 +168000,7 @@ } }, { - "id": 7400, + "id": 6627, "properties": { "facing": "west", "half": "top", @@ -177765,7 +168010,7 @@ } }, { - "id": 7401, + "id": 6628, "properties": { "facing": "west", "half": "bottom", @@ -177775,7 +168020,7 @@ } }, { - "id": 7402, + "id": 6629, "properties": { "facing": "west", "half": "bottom", @@ -177785,7 +168030,7 @@ } }, { - "id": 7403, + "id": 6630, "properties": { "facing": "west", "half": "bottom", @@ -177795,7 +168040,7 @@ } }, { - "id": 7404, + "id": 6631, "properties": { "facing": "west", "half": "bottom", @@ -177805,7 +168050,7 @@ } }, { - "id": 7405, + "id": 6632, "properties": { "facing": "west", "half": "bottom", @@ -177815,7 +168060,7 @@ } }, { - "id": 7406, + "id": 6633, "properties": { "facing": "west", "half": "bottom", @@ -177825,7 +168070,7 @@ } }, { - "id": 7407, + "id": 6634, "properties": { "facing": "west", "half": "bottom", @@ -177835,7 +168080,7 @@ } }, { - "id": 7408, + "id": 6635, "properties": { "facing": "west", "half": "bottom", @@ -177845,7 +168090,7 @@ } }, { - "id": 7409, + "id": 6636, "properties": { "facing": "east", "half": "top", @@ -177855,7 +168100,7 @@ } }, { - "id": 7410, + "id": 6637, "properties": { "facing": "east", "half": "top", @@ -177865,7 +168110,7 @@ } }, { - "id": 7411, + "id": 6638, "properties": { "facing": "east", "half": "top", @@ -177875,7 +168120,7 @@ } }, { - "id": 7412, + "id": 6639, "properties": { "facing": "east", "half": "top", @@ -177885,7 +168130,7 @@ } }, { - "id": 7413, + "id": 6640, "properties": { "facing": "east", "half": "top", @@ -177895,7 +168140,7 @@ } }, { - "id": 7414, + "id": 6641, "properties": { "facing": "east", "half": "top", @@ -177905,7 +168150,7 @@ } }, { - "id": 7415, + "id": 6642, "properties": { "facing": "east", "half": "top", @@ -177915,7 +168160,7 @@ } }, { - "id": 7416, + "id": 6643, "properties": { "facing": "east", "half": "top", @@ -177925,7 +168170,7 @@ } }, { - "id": 7417, + "id": 6644, "properties": { "facing": "east", "half": "bottom", @@ -177935,7 +168180,7 @@ } }, { - "id": 7418, + "id": 6645, "properties": { "facing": "east", "half": "bottom", @@ -177945,7 +168190,7 @@ } }, { - "id": 7419, + "id": 6646, "properties": { "facing": "east", "half": "bottom", @@ -177955,7 +168200,7 @@ } }, { - "id": 7420, + "id": 6647, "properties": { "facing": "east", "half": "bottom", @@ -177965,7 +168210,7 @@ } }, { - "id": 7421, + "id": 6648, "properties": { "facing": "east", "half": "bottom", @@ -177975,7 +168220,7 @@ } }, { - "id": 7422, + "id": 6649, "properties": { "facing": "east", "half": "bottom", @@ -177985,7 +168230,7 @@ } }, { - "id": 7423, + "id": 6650, "properties": { "facing": "east", "half": "bottom", @@ -177995,7 +168240,7 @@ } }, { - "id": 7424, + "id": 6651, "properties": { "facing": "east", "half": "bottom", @@ -178026,7 +168271,7 @@ }, "states": [ { - "id": 6530, + "id": 5762, "properties": { "facing": "north", "waterlogged": "true" @@ -178034,49 +168279,49 @@ }, { "default": true, - "id": 6531, + "id": 5763, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 6532, + "id": 5764, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 6533, + "id": 5765, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 6534, + "id": 5766, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 6535, + "id": 5767, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 6536, + "id": 5768, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 6537, + "id": 5769, "properties": { "facing": "east", "waterlogged": "false" @@ -178104,7 +168349,7 @@ }, "states": [ { - "id": 5682, + "id": 4914, "properties": { "facing": "north", "waterlogged": "true" @@ -178112,49 +168357,49 @@ }, { "default": true, - "id": 5683, + "id": 4915, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 5684, + "id": 4916, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 5685, + "id": 4917, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 5686, + "id": 4918, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 5687, + "id": 4919, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 5688, + "id": 4920, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 5689, + "id": 4921, "properties": { "facing": "east", "waterlogged": "false" @@ -178210,20 +168455,20 @@ }, "states": [ { - "id": 29386, + "id": 27629, "properties": { "axis": "x" } }, { "default": true, - "id": 29387, + "id": 27630, "properties": { "axis": "y" } }, { - "id": 29388, + "id": 27631, "properties": { "axis": "z" } @@ -178243,14 +168488,14 @@ }, "states": [ { - "id": 12719, + "id": 11642, "properties": { "half": "upper" } }, { "default": true, - "id": 12720, + "id": 11643, "properties": { "half": "lower" } @@ -178275,21 +168520,21 @@ }, "states": [ { - "id": 13218, + "id": 12141, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 13219, + "id": 12142, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 13220, + "id": 12143, "properties": { "type": "bottom", "waterlogged": "true" @@ -178297,21 +168542,21 @@ }, { "default": true, - "id": 13221, + "id": 12144, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 13222, + "id": 12145, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 13223, + "id": 12146, "properties": { "type": "double", "waterlogged": "false" @@ -178351,112 +168596,112 @@ }, "states": [ { - "id": 10953, + "id": 9876, "properties": { "powered": "true", "rotation": "0" } }, { - "id": 10954, + "id": 9877, "properties": { "powered": "true", "rotation": "1" } }, { - "id": 10955, + "id": 9878, "properties": { "powered": "true", "rotation": "2" } }, { - "id": 10956, + "id": 9879, "properties": { "powered": "true", "rotation": "3" } }, { - "id": 10957, + "id": 9880, "properties": { "powered": "true", "rotation": "4" } }, { - "id": 10958, + "id": 9881, "properties": { "powered": "true", "rotation": "5" } }, { - "id": 10959, + "id": 9882, "properties": { "powered": "true", "rotation": "6" } }, { - "id": 10960, + "id": 9883, "properties": { "powered": "true", "rotation": "7" } }, { - "id": 10961, + "id": 9884, "properties": { "powered": "true", "rotation": "8" } }, { - "id": 10962, + "id": 9885, "properties": { "powered": "true", "rotation": "9" } }, { - "id": 10963, + "id": 9886, "properties": { "powered": "true", "rotation": "10" } }, { - "id": 10964, + "id": 9887, "properties": { "powered": "true", "rotation": "11" } }, { - "id": 10965, + "id": 9888, "properties": { "powered": "true", "rotation": "12" } }, { - "id": 10966, + "id": 9889, "properties": { "powered": "true", "rotation": "13" } }, { - "id": 10967, + "id": 9890, "properties": { "powered": "true", "rotation": "14" } }, { - "id": 10968, + "id": 9891, "properties": { "powered": "true", "rotation": "15" @@ -178464,112 +168709,112 @@ }, { "default": true, - "id": 10969, + "id": 9892, "properties": { "powered": "false", "rotation": "0" } }, { - "id": 10970, + "id": 9893, "properties": { "powered": "false", "rotation": "1" } }, { - "id": 10971, + "id": 9894, "properties": { "powered": "false", "rotation": "2" } }, { - "id": 10972, + "id": 9895, "properties": { "powered": "false", "rotation": "3" } }, { - "id": 10973, + "id": 9896, "properties": { "powered": "false", "rotation": "4" } }, { - "id": 10974, + "id": 9897, "properties": { "powered": "false", "rotation": "5" } }, { - "id": 10975, + "id": 9898, "properties": { "powered": "false", "rotation": "6" } }, { - "id": 10976, + "id": 9899, "properties": { "powered": "false", "rotation": "7" } }, { - "id": 10977, + "id": 9900, "properties": { "powered": "false", "rotation": "8" } }, { - "id": 10978, + "id": 9901, "properties": { "powered": "false", "rotation": "9" } }, { - "id": 10979, + "id": 9902, "properties": { "powered": "false", "rotation": "10" } }, { - "id": 10980, + "id": 9903, "properties": { "powered": "false", "rotation": "11" } }, { - "id": 10981, + "id": 9904, "properties": { "powered": "false", "rotation": "12" } }, { - "id": 10982, + "id": 9905, "properties": { "powered": "false", "rotation": "13" } }, { - "id": 10983, + "id": 9906, "properties": { "powered": "false", "rotation": "14" } }, { - "id": 10984, + "id": 9907, "properties": { "powered": "false", "rotation": "15" @@ -178596,7 +168841,7 @@ }, "states": [ { - "id": 10985, + "id": 9908, "properties": { "facing": "north", "powered": "true" @@ -178604,49 +168849,49 @@ }, { "default": true, - "id": 10986, + "id": 9909, "properties": { "facing": "north", "powered": "false" } }, { - "id": 10987, + "id": 9910, "properties": { "facing": "south", "powered": "true" } }, { - "id": 10988, + "id": 9911, "properties": { "facing": "south", "powered": "false" } }, { - "id": 10989, + "id": 9912, "properties": { "facing": "west", "powered": "true" } }, { - "id": 10990, + "id": 9913, "properties": { "facing": "west", "powered": "false" } }, { - "id": 10991, + "id": 9914, "properties": { "facing": "east", "powered": "true" } }, { - "id": 10992, + "id": 9915, "properties": { "facing": "east", "powered": "false" @@ -178683,97 +168928,97 @@ "states": [ { "default": true, - "id": 12821, + "id": 11744, "properties": { "rotation": "0" } }, { - "id": 12822, + "id": 11745, "properties": { "rotation": "1" } }, { - "id": 12823, + "id": 11746, "properties": { "rotation": "2" } }, { - "id": 12824, + "id": 11747, "properties": { "rotation": "3" } }, { - "id": 12825, + "id": 11748, "properties": { "rotation": "4" } }, { - "id": 12826, + "id": 11749, "properties": { "rotation": "5" } }, { - "id": 12827, + "id": 11750, "properties": { "rotation": "6" } }, { - "id": 12828, + "id": 11751, "properties": { "rotation": "7" } }, { - "id": 12829, + "id": 11752, "properties": { "rotation": "8" } }, { - "id": 12830, + "id": 11753, "properties": { "rotation": "9" } }, { - "id": 12831, + "id": 11754, "properties": { "rotation": "10" } }, { - "id": 12832, + "id": 11755, "properties": { "rotation": "11" } }, { - "id": 12833, + "id": 11756, "properties": { "rotation": "12" } }, { - "id": 12834, + "id": 11757, "properties": { "rotation": "13" } }, { - "id": 12835, + "id": 11758, "properties": { "rotation": "14" } }, { - "id": 12836, + "id": 11759, "properties": { "rotation": "15" } @@ -178957,7 +169202,7 @@ }, "states": [ { - "id": 23006, + "id": 21865, "properties": { "candles": "1", "lit": "true", @@ -178965,7 +169210,7 @@ } }, { - "id": 23007, + "id": 21866, "properties": { "candles": "1", "lit": "true", @@ -178973,7 +169218,7 @@ } }, { - "id": 23008, + "id": 21867, "properties": { "candles": "1", "lit": "false", @@ -178982,7 +169227,7 @@ }, { "default": true, - "id": 23009, + "id": 21868, "properties": { "candles": "1", "lit": "false", @@ -178990,7 +169235,7 @@ } }, { - "id": 23010, + "id": 21869, "properties": { "candles": "2", "lit": "true", @@ -178998,7 +169243,7 @@ } }, { - "id": 23011, + "id": 21870, "properties": { "candles": "2", "lit": "true", @@ -179006,7 +169251,7 @@ } }, { - "id": 23012, + "id": 21871, "properties": { "candles": "2", "lit": "false", @@ -179014,7 +169259,7 @@ } }, { - "id": 23013, + "id": 21872, "properties": { "candles": "2", "lit": "false", @@ -179022,7 +169267,7 @@ } }, { - "id": 23014, + "id": 21873, "properties": { "candles": "3", "lit": "true", @@ -179030,7 +169275,7 @@ } }, { - "id": 23015, + "id": 21874, "properties": { "candles": "3", "lit": "true", @@ -179038,7 +169283,7 @@ } }, { - "id": 23016, + "id": 21875, "properties": { "candles": "3", "lit": "false", @@ -179046,7 +169291,7 @@ } }, { - "id": 23017, + "id": 21876, "properties": { "candles": "3", "lit": "false", @@ -179054,7 +169299,7 @@ } }, { - "id": 23018, + "id": 21877, "properties": { "candles": "4", "lit": "true", @@ -179062,7 +169307,7 @@ } }, { - "id": 23019, + "id": 21878, "properties": { "candles": "4", "lit": "true", @@ -179070,7 +169315,7 @@ } }, { - "id": 23020, + "id": 21879, "properties": { "candles": "4", "lit": "false", @@ -179078,7 +169323,7 @@ } }, { - "id": 23021, + "id": 21880, "properties": { "candles": "4", "lit": "false", @@ -179101,14 +169346,14 @@ }, "states": [ { - "id": 23180, + "id": 22039, "properties": { "lit": "true" } }, { "default": true, - "id": 23181, + "id": 22040, "properties": { "lit": "false" } @@ -179124,7 +169369,7 @@ "states": [ { "default": true, - "id": 12700 + "id": 11623 } ] }, @@ -179136,7 +169381,7 @@ "states": [ { "default": true, - "id": 14834 + "id": 13757 } ] }, @@ -179149,7 +169394,7 @@ "states": [ { "default": true, - "id": 14850 + "id": 13773 } ] }, @@ -179169,25 +169414,25 @@ "states": [ { "default": true, - "id": 14788, + "id": 13711, "properties": { "facing": "north" } }, { - "id": 14789, + "id": 13712, "properties": { "facing": "south" } }, { - "id": 14790, + "id": 13713, "properties": { "facing": "west" } }, { - "id": 14791, + "id": 13714, "properties": { "facing": "east" } @@ -179216,112 +169461,112 @@ "states": [ { "default": true, - "id": 27612, + "id": 25855, "properties": { "facing": "north", "flower_amount": "1" } }, { - "id": 27613, + "id": 25856, "properties": { "facing": "north", "flower_amount": "2" } }, { - "id": 27614, + "id": 25857, "properties": { "facing": "north", "flower_amount": "3" } }, { - "id": 27615, + "id": 25858, "properties": { "facing": "north", "flower_amount": "4" } }, { - "id": 27616, + "id": 25859, "properties": { "facing": "south", "flower_amount": "1" } }, { - "id": 27617, + "id": 25860, "properties": { "facing": "south", "flower_amount": "2" } }, { - "id": 27618, + "id": 25861, "properties": { "facing": "south", "flower_amount": "3" } }, { - "id": 27619, + "id": 25862, "properties": { "facing": "south", "flower_amount": "4" } }, { - "id": 27620, + "id": 25863, "properties": { "facing": "west", "flower_amount": "1" } }, { - "id": 27621, + "id": 25864, "properties": { "facing": "west", "flower_amount": "2" } }, { - "id": 27622, + "id": 25865, "properties": { "facing": "west", "flower_amount": "3" } }, { - "id": 27623, + "id": 25866, "properties": { "facing": "west", "flower_amount": "4" } }, { - "id": 27624, + "id": 25867, "properties": { "facing": "east", "flower_amount": "1" } }, { - "id": 27625, + "id": 25868, "properties": { "facing": "east", "flower_amount": "2" } }, { - "id": 27626, + "id": 25869, "properties": { "facing": "east", "flower_amount": "3" } }, { - "id": 27627, + "id": 25870, "properties": { "facing": "east", "flower_amount": "4" @@ -179347,38 +169592,38 @@ }, "states": [ { - "id": 14704, + "id": 13627, "properties": { "facing": "north" } }, { - "id": 14705, + "id": 13628, "properties": { "facing": "east" } }, { - "id": 14706, + "id": 13629, "properties": { "facing": "south" } }, { - "id": 14707, + "id": 13630, "properties": { "facing": "west" } }, { "default": true, - "id": 14708, + "id": 13631, "properties": { "facing": "up" } }, { - "id": 14709, + "id": 13632, "properties": { "facing": "down" } @@ -179394,7 +169639,7 @@ "states": [ { "default": true, - "id": 6903 + "id": 6130 } ] }, @@ -179428,7 +169673,7 @@ }, "states": [ { - "id": 11450, + "id": 10373, "properties": { "east": "true", "north": "true", @@ -179438,7 +169683,7 @@ } }, { - "id": 11451, + "id": 10374, "properties": { "east": "true", "north": "true", @@ -179448,7 +169693,7 @@ } }, { - "id": 11452, + "id": 10375, "properties": { "east": "true", "north": "true", @@ -179458,7 +169703,7 @@ } }, { - "id": 11453, + "id": 10376, "properties": { "east": "true", "north": "true", @@ -179468,7 +169713,7 @@ } }, { - "id": 11454, + "id": 10377, "properties": { "east": "true", "north": "true", @@ -179478,7 +169723,7 @@ } }, { - "id": 11455, + "id": 10378, "properties": { "east": "true", "north": "true", @@ -179488,7 +169733,7 @@ } }, { - "id": 11456, + "id": 10379, "properties": { "east": "true", "north": "true", @@ -179498,7 +169743,7 @@ } }, { - "id": 11457, + "id": 10380, "properties": { "east": "true", "north": "true", @@ -179508,7 +169753,7 @@ } }, { - "id": 11458, + "id": 10381, "properties": { "east": "true", "north": "false", @@ -179518,7 +169763,7 @@ } }, { - "id": 11459, + "id": 10382, "properties": { "east": "true", "north": "false", @@ -179528,7 +169773,7 @@ } }, { - "id": 11460, + "id": 10383, "properties": { "east": "true", "north": "false", @@ -179538,7 +169783,7 @@ } }, { - "id": 11461, + "id": 10384, "properties": { "east": "true", "north": "false", @@ -179548,7 +169793,7 @@ } }, { - "id": 11462, + "id": 10385, "properties": { "east": "true", "north": "false", @@ -179558,7 +169803,7 @@ } }, { - "id": 11463, + "id": 10386, "properties": { "east": "true", "north": "false", @@ -179568,7 +169813,7 @@ } }, { - "id": 11464, + "id": 10387, "properties": { "east": "true", "north": "false", @@ -179578,7 +169823,7 @@ } }, { - "id": 11465, + "id": 10388, "properties": { "east": "true", "north": "false", @@ -179588,7 +169833,7 @@ } }, { - "id": 11466, + "id": 10389, "properties": { "east": "false", "north": "true", @@ -179598,7 +169843,7 @@ } }, { - "id": 11467, + "id": 10390, "properties": { "east": "false", "north": "true", @@ -179608,7 +169853,7 @@ } }, { - "id": 11468, + "id": 10391, "properties": { "east": "false", "north": "true", @@ -179618,7 +169863,7 @@ } }, { - "id": 11469, + "id": 10392, "properties": { "east": "false", "north": "true", @@ -179628,7 +169873,7 @@ } }, { - "id": 11470, + "id": 10393, "properties": { "east": "false", "north": "true", @@ -179638,7 +169883,7 @@ } }, { - "id": 11471, + "id": 10394, "properties": { "east": "false", "north": "true", @@ -179648,7 +169893,7 @@ } }, { - "id": 11472, + "id": 10395, "properties": { "east": "false", "north": "true", @@ -179658,7 +169903,7 @@ } }, { - "id": 11473, + "id": 10396, "properties": { "east": "false", "north": "true", @@ -179668,7 +169913,7 @@ } }, { - "id": 11474, + "id": 10397, "properties": { "east": "false", "north": "false", @@ -179678,7 +169923,7 @@ } }, { - "id": 11475, + "id": 10398, "properties": { "east": "false", "north": "false", @@ -179688,7 +169933,7 @@ } }, { - "id": 11476, + "id": 10399, "properties": { "east": "false", "north": "false", @@ -179698,7 +169943,7 @@ } }, { - "id": 11477, + "id": 10400, "properties": { "east": "false", "north": "false", @@ -179708,7 +169953,7 @@ } }, { - "id": 11478, + "id": 10401, "properties": { "east": "false", "north": "false", @@ -179718,7 +169963,7 @@ } }, { - "id": 11479, + "id": 10402, "properties": { "east": "false", "north": "false", @@ -179728,7 +169973,7 @@ } }, { - "id": 11480, + "id": 10403, "properties": { "east": "false", "north": "false", @@ -179739,7 +169984,7 @@ }, { "default": true, - "id": 11481, + "id": 10404, "properties": { "east": "false", "north": "false", @@ -179752,13 +169997,13 @@ }, "minecraft:pink_terracotta": { "definition": { - "type": "minecraft:block", + "type": "minecraft:terracotta", "properties": {} }, "states": [ { "default": true, - "id": 11248 + "id": 10171 } ] }, @@ -179797,25 +170042,25 @@ "states": [ { "default": true, - "id": 13005, + "id": 11928, "properties": { "facing": "north" } }, { - "id": 13006, + "id": 11929, "properties": { "facing": "south" } }, { - "id": 13007, + "id": 11930, "properties": { "facing": "west" } }, { - "id": 13008, + "id": 11931, "properties": { "facing": "east" } @@ -180181,7 +170426,7 @@ }, "states": [ { - "id": 14597, + "id": 13520, "properties": { "age": "0", "half": "upper" @@ -180189,63 +170434,63 @@ }, { "default": true, - "id": 14598, + "id": 13521, "properties": { "age": "0", "half": "lower" } }, { - "id": 14599, + "id": 13522, "properties": { "age": "1", "half": "upper" } }, { - "id": 14600, + "id": 13523, "properties": { "age": "1", "half": "lower" } }, { - "id": 14601, + "id": 13524, "properties": { "age": "2", "half": "upper" } }, { - "id": 14602, + "id": 13525, "properties": { "age": "2", "half": "lower" } }, { - "id": 14603, + "id": 13526, "properties": { "age": "3", "half": "upper" } }, { - "id": 14604, + "id": 13527, "properties": { "age": "3", "half": "lower" } }, { - "id": 14605, + "id": 13528, "properties": { "age": "4", "half": "upper" } }, { - "id": 14606, + "id": 13529, "properties": { "age": "4", "half": "lower" @@ -180266,14 +170511,14 @@ }, "states": [ { - "id": 14607, + "id": 13530, "properties": { "half": "upper" } }, { "default": true, - "id": 14608, + "id": 13531, "properties": { "half": "lower" } @@ -180311,112 +170556,112 @@ }, "states": [ { - "id": 10833, + "id": 9756, "properties": { "powered": "true", "rotation": "0" } }, { - "id": 10834, + "id": 9757, "properties": { "powered": "true", "rotation": "1" } }, { - "id": 10835, + "id": 9758, "properties": { "powered": "true", "rotation": "2" } }, { - "id": 10836, + "id": 9759, "properties": { "powered": "true", "rotation": "3" } }, { - "id": 10837, + "id": 9760, "properties": { "powered": "true", "rotation": "4" } }, { - "id": 10838, + "id": 9761, "properties": { "powered": "true", "rotation": "5" } }, { - "id": 10839, + "id": 9762, "properties": { "powered": "true", "rotation": "6" } }, { - "id": 10840, + "id": 9763, "properties": { "powered": "true", "rotation": "7" } }, { - "id": 10841, + "id": 9764, "properties": { "powered": "true", "rotation": "8" } }, { - "id": 10842, + "id": 9765, "properties": { "powered": "true", "rotation": "9" } }, { - "id": 10843, + "id": 9766, "properties": { "powered": "true", "rotation": "10" } }, { - "id": 10844, + "id": 9767, "properties": { "powered": "true", "rotation": "11" } }, { - "id": 10845, + "id": 9768, "properties": { "powered": "true", "rotation": "12" } }, { - "id": 10846, + "id": 9769, "properties": { "powered": "true", "rotation": "13" } }, { - "id": 10847, + "id": 9770, "properties": { "powered": "true", "rotation": "14" } }, { - "id": 10848, + "id": 9771, "properties": { "powered": "true", "rotation": "15" @@ -180424,112 +170669,112 @@ }, { "default": true, - "id": 10849, + "id": 9772, "properties": { "powered": "false", "rotation": "0" } }, { - "id": 10850, + "id": 9773, "properties": { "powered": "false", "rotation": "1" } }, { - "id": 10851, + "id": 9774, "properties": { "powered": "false", "rotation": "2" } }, { - "id": 10852, + "id": 9775, "properties": { "powered": "false", "rotation": "3" } }, { - "id": 10853, + "id": 9776, "properties": { "powered": "false", "rotation": "4" } }, { - "id": 10854, + "id": 9777, "properties": { "powered": "false", "rotation": "5" } }, { - "id": 10855, + "id": 9778, "properties": { "powered": "false", "rotation": "6" } }, { - "id": 10856, + "id": 9779, "properties": { "powered": "false", "rotation": "7" } }, { - "id": 10857, + "id": 9780, "properties": { "powered": "false", "rotation": "8" } }, { - "id": 10858, + "id": 9781, "properties": { "powered": "false", "rotation": "9" } }, { - "id": 10859, + "id": 9782, "properties": { "powered": "false", "rotation": "10" } }, { - "id": 10860, + "id": 9783, "properties": { "powered": "false", "rotation": "11" } }, { - "id": 10861, + "id": 9784, "properties": { "powered": "false", "rotation": "12" } }, { - "id": 10862, + "id": 9785, "properties": { "powered": "false", "rotation": "13" } }, { - "id": 10863, + "id": 9786, "properties": { "powered": "false", "rotation": "14" } }, { - "id": 10864, + "id": 9787, "properties": { "powered": "false", "rotation": "15" @@ -180556,7 +170801,7 @@ }, "states": [ { - "id": 10865, + "id": 9788, "properties": { "facing": "north", "powered": "true" @@ -180564,49 +170809,49 @@ }, { "default": true, - "id": 10866, + "id": 9789, "properties": { "facing": "north", "powered": "false" } }, { - "id": 10867, + "id": 9790, "properties": { "facing": "south", "powered": "true" } }, { - "id": 10868, + "id": 9791, "properties": { "facing": "south", "powered": "false" } }, { - "id": 10869, + "id": 9792, "properties": { "facing": "west", "powered": "true" } }, { - "id": 10870, + "id": 9793, "properties": { "facing": "west", "powered": "false" } }, { - "id": 10871, + "id": 9794, "properties": { "facing": "east", "powered": "true" } }, { - "id": 10872, + "id": 9795, "properties": { "facing": "east", "powered": "false" @@ -180665,7 +170910,7 @@ }, "states": [ { - "id": 27533, + "id": 25776, "properties": { "thickness": "tip_merge", "vertical_direction": "up", @@ -180673,7 +170918,7 @@ } }, { - "id": 27534, + "id": 25777, "properties": { "thickness": "tip_merge", "vertical_direction": "up", @@ -180681,7 +170926,7 @@ } }, { - "id": 27535, + "id": 25778, "properties": { "thickness": "tip_merge", "vertical_direction": "down", @@ -180689,7 +170934,7 @@ } }, { - "id": 27536, + "id": 25779, "properties": { "thickness": "tip_merge", "vertical_direction": "down", @@ -180697,7 +170942,7 @@ } }, { - "id": 27537, + "id": 25780, "properties": { "thickness": "tip", "vertical_direction": "up", @@ -180706,7 +170951,7 @@ }, { "default": true, - "id": 27538, + "id": 25781, "properties": { "thickness": "tip", "vertical_direction": "up", @@ -180714,7 +170959,7 @@ } }, { - "id": 27539, + "id": 25782, "properties": { "thickness": "tip", "vertical_direction": "down", @@ -180722,7 +170967,7 @@ } }, { - "id": 27540, + "id": 25783, "properties": { "thickness": "tip", "vertical_direction": "down", @@ -180730,7 +170975,7 @@ } }, { - "id": 27541, + "id": 25784, "properties": { "thickness": "frustum", "vertical_direction": "up", @@ -180738,7 +170983,7 @@ } }, { - "id": 27542, + "id": 25785, "properties": { "thickness": "frustum", "vertical_direction": "up", @@ -180746,7 +170991,7 @@ } }, { - "id": 27543, + "id": 25786, "properties": { "thickness": "frustum", "vertical_direction": "down", @@ -180754,7 +170999,7 @@ } }, { - "id": 27544, + "id": 25787, "properties": { "thickness": "frustum", "vertical_direction": "down", @@ -180762,7 +171007,7 @@ } }, { - "id": 27545, + "id": 25788, "properties": { "thickness": "middle", "vertical_direction": "up", @@ -180770,7 +171015,7 @@ } }, { - "id": 27546, + "id": 25789, "properties": { "thickness": "middle", "vertical_direction": "up", @@ -180778,7 +171023,7 @@ } }, { - "id": 27547, + "id": 25790, "properties": { "thickness": "middle", "vertical_direction": "down", @@ -180786,7 +171031,7 @@ } }, { - "id": 27548, + "id": 25791, "properties": { "thickness": "middle", "vertical_direction": "down", @@ -180794,7 +171039,7 @@ } }, { - "id": 27549, + "id": 25792, "properties": { "thickness": "base", "vertical_direction": "up", @@ -180802,7 +171047,7 @@ } }, { - "id": 27550, + "id": 25793, "properties": { "thickness": "base", "vertical_direction": "up", @@ -180810,7 +171055,7 @@ } }, { - "id": 27551, + "id": 25794, "properties": { "thickness": "base", "vertical_direction": "down", @@ -180818,7 +171063,7 @@ } }, { - "id": 27552, + "id": 25795, "properties": { "thickness": "base", "vertical_direction": "down", @@ -180857,21 +171102,21 @@ }, "states": [ { - "id": 16280, + "id": 15171, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 16281, + "id": 15172, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 16282, + "id": 15173, "properties": { "type": "bottom", "waterlogged": "true" @@ -180879,21 +171124,21 @@ }, { "default": true, - "id": 16283, + "id": 15174, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 16284, + "id": 15175, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 16285, + "id": 15176, "properties": { "type": "double", "waterlogged": "false" @@ -180934,7 +171179,7 @@ }, "states": [ { - "id": 16054, + "id": 14945, "properties": { "facing": "north", "half": "top", @@ -180943,7 +171188,7 @@ } }, { - "id": 16055, + "id": 14946, "properties": { "facing": "north", "half": "top", @@ -180952,7 +171197,7 @@ } }, { - "id": 16056, + "id": 14947, "properties": { "facing": "north", "half": "top", @@ -180961,7 +171206,7 @@ } }, { - "id": 16057, + "id": 14948, "properties": { "facing": "north", "half": "top", @@ -180970,7 +171215,7 @@ } }, { - "id": 16058, + "id": 14949, "properties": { "facing": "north", "half": "top", @@ -180979,7 +171224,7 @@ } }, { - "id": 16059, + "id": 14950, "properties": { "facing": "north", "half": "top", @@ -180988,7 +171233,7 @@ } }, { - "id": 16060, + "id": 14951, "properties": { "facing": "north", "half": "top", @@ -180997,7 +171242,7 @@ } }, { - "id": 16061, + "id": 14952, "properties": { "facing": "north", "half": "top", @@ -181006,7 +171251,7 @@ } }, { - "id": 16062, + "id": 14953, "properties": { "facing": "north", "half": "top", @@ -181015,7 +171260,7 @@ } }, { - "id": 16063, + "id": 14954, "properties": { "facing": "north", "half": "top", @@ -181024,7 +171269,7 @@ } }, { - "id": 16064, + "id": 14955, "properties": { "facing": "north", "half": "bottom", @@ -181034,7 +171279,7 @@ }, { "default": true, - "id": 16065, + "id": 14956, "properties": { "facing": "north", "half": "bottom", @@ -181043,7 +171288,7 @@ } }, { - "id": 16066, + "id": 14957, "properties": { "facing": "north", "half": "bottom", @@ -181052,7 +171297,7 @@ } }, { - "id": 16067, + "id": 14958, "properties": { "facing": "north", "half": "bottom", @@ -181061,7 +171306,7 @@ } }, { - "id": 16068, + "id": 14959, "properties": { "facing": "north", "half": "bottom", @@ -181070,7 +171315,7 @@ } }, { - "id": 16069, + "id": 14960, "properties": { "facing": "north", "half": "bottom", @@ -181079,7 +171324,7 @@ } }, { - "id": 16070, + "id": 14961, "properties": { "facing": "north", "half": "bottom", @@ -181088,7 +171333,7 @@ } }, { - "id": 16071, + "id": 14962, "properties": { "facing": "north", "half": "bottom", @@ -181097,7 +171342,7 @@ } }, { - "id": 16072, + "id": 14963, "properties": { "facing": "north", "half": "bottom", @@ -181106,7 +171351,7 @@ } }, { - "id": 16073, + "id": 14964, "properties": { "facing": "north", "half": "bottom", @@ -181115,7 +171360,7 @@ } }, { - "id": 16074, + "id": 14965, "properties": { "facing": "south", "half": "top", @@ -181124,7 +171369,7 @@ } }, { - "id": 16075, + "id": 14966, "properties": { "facing": "south", "half": "top", @@ -181133,7 +171378,7 @@ } }, { - "id": 16076, + "id": 14967, "properties": { "facing": "south", "half": "top", @@ -181142,7 +171387,7 @@ } }, { - "id": 16077, + "id": 14968, "properties": { "facing": "south", "half": "top", @@ -181151,7 +171396,7 @@ } }, { - "id": 16078, + "id": 14969, "properties": { "facing": "south", "half": "top", @@ -181160,7 +171405,7 @@ } }, { - "id": 16079, + "id": 14970, "properties": { "facing": "south", "half": "top", @@ -181169,7 +171414,7 @@ } }, { - "id": 16080, + "id": 14971, "properties": { "facing": "south", "half": "top", @@ -181178,7 +171423,7 @@ } }, { - "id": 16081, + "id": 14972, "properties": { "facing": "south", "half": "top", @@ -181187,7 +171432,7 @@ } }, { - "id": 16082, + "id": 14973, "properties": { "facing": "south", "half": "top", @@ -181196,7 +171441,7 @@ } }, { - "id": 16083, + "id": 14974, "properties": { "facing": "south", "half": "top", @@ -181205,7 +171450,7 @@ } }, { - "id": 16084, + "id": 14975, "properties": { "facing": "south", "half": "bottom", @@ -181214,7 +171459,7 @@ } }, { - "id": 16085, + "id": 14976, "properties": { "facing": "south", "half": "bottom", @@ -181223,7 +171468,7 @@ } }, { - "id": 16086, + "id": 14977, "properties": { "facing": "south", "half": "bottom", @@ -181232,7 +171477,7 @@ } }, { - "id": 16087, + "id": 14978, "properties": { "facing": "south", "half": "bottom", @@ -181241,7 +171486,7 @@ } }, { - "id": 16088, + "id": 14979, "properties": { "facing": "south", "half": "bottom", @@ -181250,7 +171495,7 @@ } }, { - "id": 16089, + "id": 14980, "properties": { "facing": "south", "half": "bottom", @@ -181259,7 +171504,7 @@ } }, { - "id": 16090, + "id": 14981, "properties": { "facing": "south", "half": "bottom", @@ -181268,7 +171513,7 @@ } }, { - "id": 16091, + "id": 14982, "properties": { "facing": "south", "half": "bottom", @@ -181277,7 +171522,7 @@ } }, { - "id": 16092, + "id": 14983, "properties": { "facing": "south", "half": "bottom", @@ -181286,7 +171531,7 @@ } }, { - "id": 16093, + "id": 14984, "properties": { "facing": "south", "half": "bottom", @@ -181295,7 +171540,7 @@ } }, { - "id": 16094, + "id": 14985, "properties": { "facing": "west", "half": "top", @@ -181304,7 +171549,7 @@ } }, { - "id": 16095, + "id": 14986, "properties": { "facing": "west", "half": "top", @@ -181313,7 +171558,7 @@ } }, { - "id": 16096, + "id": 14987, "properties": { "facing": "west", "half": "top", @@ -181322,7 +171567,7 @@ } }, { - "id": 16097, + "id": 14988, "properties": { "facing": "west", "half": "top", @@ -181331,7 +171576,7 @@ } }, { - "id": 16098, + "id": 14989, "properties": { "facing": "west", "half": "top", @@ -181340,7 +171585,7 @@ } }, { - "id": 16099, + "id": 14990, "properties": { "facing": "west", "half": "top", @@ -181349,7 +171594,7 @@ } }, { - "id": 16100, + "id": 14991, "properties": { "facing": "west", "half": "top", @@ -181358,7 +171603,7 @@ } }, { - "id": 16101, + "id": 14992, "properties": { "facing": "west", "half": "top", @@ -181367,7 +171612,7 @@ } }, { - "id": 16102, + "id": 14993, "properties": { "facing": "west", "half": "top", @@ -181376,7 +171621,7 @@ } }, { - "id": 16103, + "id": 14994, "properties": { "facing": "west", "half": "top", @@ -181385,7 +171630,7 @@ } }, { - "id": 16104, + "id": 14995, "properties": { "facing": "west", "half": "bottom", @@ -181394,7 +171639,7 @@ } }, { - "id": 16105, + "id": 14996, "properties": { "facing": "west", "half": "bottom", @@ -181403,7 +171648,7 @@ } }, { - "id": 16106, + "id": 14997, "properties": { "facing": "west", "half": "bottom", @@ -181412,7 +171657,7 @@ } }, { - "id": 16107, + "id": 14998, "properties": { "facing": "west", "half": "bottom", @@ -181421,7 +171666,7 @@ } }, { - "id": 16108, + "id": 14999, "properties": { "facing": "west", "half": "bottom", @@ -181430,7 +171675,7 @@ } }, { - "id": 16109, + "id": 15000, "properties": { "facing": "west", "half": "bottom", @@ -181439,7 +171684,7 @@ } }, { - "id": 16110, + "id": 15001, "properties": { "facing": "west", "half": "bottom", @@ -181448,7 +171693,7 @@ } }, { - "id": 16111, + "id": 15002, "properties": { "facing": "west", "half": "bottom", @@ -181457,7 +171702,7 @@ } }, { - "id": 16112, + "id": 15003, "properties": { "facing": "west", "half": "bottom", @@ -181466,7 +171711,7 @@ } }, { - "id": 16113, + "id": 15004, "properties": { "facing": "west", "half": "bottom", @@ -181475,7 +171720,7 @@ } }, { - "id": 16114, + "id": 15005, "properties": { "facing": "east", "half": "top", @@ -181484,7 +171729,7 @@ } }, { - "id": 16115, + "id": 15006, "properties": { "facing": "east", "half": "top", @@ -181493,7 +171738,7 @@ } }, { - "id": 16116, + "id": 15007, "properties": { "facing": "east", "half": "top", @@ -181502,7 +171747,7 @@ } }, { - "id": 16117, + "id": 15008, "properties": { "facing": "east", "half": "top", @@ -181511,7 +171756,7 @@ } }, { - "id": 16118, + "id": 15009, "properties": { "facing": "east", "half": "top", @@ -181520,7 +171765,7 @@ } }, { - "id": 16119, + "id": 15010, "properties": { "facing": "east", "half": "top", @@ -181529,7 +171774,7 @@ } }, { - "id": 16120, + "id": 15011, "properties": { "facing": "east", "half": "top", @@ -181538,7 +171783,7 @@ } }, { - "id": 16121, + "id": 15012, "properties": { "facing": "east", "half": "top", @@ -181547,7 +171792,7 @@ } }, { - "id": 16122, + "id": 15013, "properties": { "facing": "east", "half": "top", @@ -181556,7 +171801,7 @@ } }, { - "id": 16123, + "id": 15014, "properties": { "facing": "east", "half": "top", @@ -181565,7 +171810,7 @@ } }, { - "id": 16124, + "id": 15015, "properties": { "facing": "east", "half": "bottom", @@ -181574,7 +171819,7 @@ } }, { - "id": 16125, + "id": 15016, "properties": { "facing": "east", "half": "bottom", @@ -181583,7 +171828,7 @@ } }, { - "id": 16126, + "id": 15017, "properties": { "facing": "east", "half": "bottom", @@ -181592,7 +171837,7 @@ } }, { - "id": 16127, + "id": 15018, "properties": { "facing": "east", "half": "bottom", @@ -181601,7 +171846,7 @@ } }, { - "id": 16128, + "id": 15019, "properties": { "facing": "east", "half": "bottom", @@ -181610,7 +171855,7 @@ } }, { - "id": 16129, + "id": 15020, "properties": { "facing": "east", "half": "bottom", @@ -181619,7 +171864,7 @@ } }, { - "id": 16130, + "id": 15021, "properties": { "facing": "east", "half": "bottom", @@ -181628,7 +171873,7 @@ } }, { - "id": 16131, + "id": 15022, "properties": { "facing": "east", "half": "bottom", @@ -181637,7 +171882,7 @@ } }, { - "id": 16132, + "id": 15023, "properties": { "facing": "east", "half": "bottom", @@ -181646,7 +171891,7 @@ } }, { - "id": 16133, + "id": 15024, "properties": { "facing": "east", "half": "bottom", @@ -181670,20 +171915,20 @@ }, "states": [ { - "id": 6802, + "id": 6034, "properties": { "axis": "x" } }, { "default": true, - "id": 6803, + "id": 6035, "properties": { "axis": "y" } }, { - "id": 6804, + "id": 6036, "properties": { "axis": "z" } @@ -181698,7 +171943,7 @@ "states": [ { "default": true, - "id": 22040 + "id": 20899 } ] }, @@ -181720,21 +171965,21 @@ }, "states": [ { - "id": 22044, + "id": 20903, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 22045, + "id": 20904, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 22046, + "id": 20905, "properties": { "type": "bottom", "waterlogged": "true" @@ -181742,21 +171987,21 @@ }, { "default": true, - "id": 22047, + "id": 20906, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 22048, + "id": 20907, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 22049, + "id": 20908, "properties": { "type": "double", "waterlogged": "false" @@ -181797,7 +172042,7 @@ }, "states": [ { - "id": 22050, + "id": 20909, "properties": { "facing": "north", "half": "top", @@ -181806,7 +172051,7 @@ } }, { - "id": 22051, + "id": 20910, "properties": { "facing": "north", "half": "top", @@ -181815,7 +172060,7 @@ } }, { - "id": 22052, + "id": 20911, "properties": { "facing": "north", "half": "top", @@ -181824,7 +172069,7 @@ } }, { - "id": 22053, + "id": 20912, "properties": { "facing": "north", "half": "top", @@ -181833,7 +172078,7 @@ } }, { - "id": 22054, + "id": 20913, "properties": { "facing": "north", "half": "top", @@ -181842,7 +172087,7 @@ } }, { - "id": 22055, + "id": 20914, "properties": { "facing": "north", "half": "top", @@ -181851,7 +172096,7 @@ } }, { - "id": 22056, + "id": 20915, "properties": { "facing": "north", "half": "top", @@ -181860,7 +172105,7 @@ } }, { - "id": 22057, + "id": 20916, "properties": { "facing": "north", "half": "top", @@ -181869,7 +172114,7 @@ } }, { - "id": 22058, + "id": 20917, "properties": { "facing": "north", "half": "top", @@ -181878,7 +172123,7 @@ } }, { - "id": 22059, + "id": 20918, "properties": { "facing": "north", "half": "top", @@ -181887,7 +172132,7 @@ } }, { - "id": 22060, + "id": 20919, "properties": { "facing": "north", "half": "bottom", @@ -181897,7 +172142,7 @@ }, { "default": true, - "id": 22061, + "id": 20920, "properties": { "facing": "north", "half": "bottom", @@ -181906,7 +172151,7 @@ } }, { - "id": 22062, + "id": 20921, "properties": { "facing": "north", "half": "bottom", @@ -181915,7 +172160,7 @@ } }, { - "id": 22063, + "id": 20922, "properties": { "facing": "north", "half": "bottom", @@ -181924,7 +172169,7 @@ } }, { - "id": 22064, + "id": 20923, "properties": { "facing": "north", "half": "bottom", @@ -181933,7 +172178,7 @@ } }, { - "id": 22065, + "id": 20924, "properties": { "facing": "north", "half": "bottom", @@ -181942,7 +172187,7 @@ } }, { - "id": 22066, + "id": 20925, "properties": { "facing": "north", "half": "bottom", @@ -181951,7 +172196,7 @@ } }, { - "id": 22067, + "id": 20926, "properties": { "facing": "north", "half": "bottom", @@ -181960,7 +172205,7 @@ } }, { - "id": 22068, + "id": 20927, "properties": { "facing": "north", "half": "bottom", @@ -181969,7 +172214,7 @@ } }, { - "id": 22069, + "id": 20928, "properties": { "facing": "north", "half": "bottom", @@ -181978,7 +172223,7 @@ } }, { - "id": 22070, + "id": 20929, "properties": { "facing": "south", "half": "top", @@ -181987,7 +172232,7 @@ } }, { - "id": 22071, + "id": 20930, "properties": { "facing": "south", "half": "top", @@ -181996,7 +172241,7 @@ } }, { - "id": 22072, + "id": 20931, "properties": { "facing": "south", "half": "top", @@ -182005,7 +172250,7 @@ } }, { - "id": 22073, + "id": 20932, "properties": { "facing": "south", "half": "top", @@ -182014,7 +172259,7 @@ } }, { - "id": 22074, + "id": 20933, "properties": { "facing": "south", "half": "top", @@ -182023,7 +172268,7 @@ } }, { - "id": 22075, + "id": 20934, "properties": { "facing": "south", "half": "top", @@ -182032,7 +172277,7 @@ } }, { - "id": 22076, + "id": 20935, "properties": { "facing": "south", "half": "top", @@ -182041,7 +172286,7 @@ } }, { - "id": 22077, + "id": 20936, "properties": { "facing": "south", "half": "top", @@ -182050,7 +172295,7 @@ } }, { - "id": 22078, + "id": 20937, "properties": { "facing": "south", "half": "top", @@ -182059,7 +172304,7 @@ } }, { - "id": 22079, + "id": 20938, "properties": { "facing": "south", "half": "top", @@ -182068,7 +172313,7 @@ } }, { - "id": 22080, + "id": 20939, "properties": { "facing": "south", "half": "bottom", @@ -182077,7 +172322,7 @@ } }, { - "id": 22081, + "id": 20940, "properties": { "facing": "south", "half": "bottom", @@ -182086,7 +172331,7 @@ } }, { - "id": 22082, + "id": 20941, "properties": { "facing": "south", "half": "bottom", @@ -182095,7 +172340,7 @@ } }, { - "id": 22083, + "id": 20942, "properties": { "facing": "south", "half": "bottom", @@ -182104,7 +172349,7 @@ } }, { - "id": 22084, + "id": 20943, "properties": { "facing": "south", "half": "bottom", @@ -182113,7 +172358,7 @@ } }, { - "id": 22085, + "id": 20944, "properties": { "facing": "south", "half": "bottom", @@ -182122,7 +172367,7 @@ } }, { - "id": 22086, + "id": 20945, "properties": { "facing": "south", "half": "bottom", @@ -182131,7 +172376,7 @@ } }, { - "id": 22087, + "id": 20946, "properties": { "facing": "south", "half": "bottom", @@ -182140,7 +172385,7 @@ } }, { - "id": 22088, + "id": 20947, "properties": { "facing": "south", "half": "bottom", @@ -182149,7 +172394,7 @@ } }, { - "id": 22089, + "id": 20948, "properties": { "facing": "south", "half": "bottom", @@ -182158,7 +172403,7 @@ } }, { - "id": 22090, + "id": 20949, "properties": { "facing": "west", "half": "top", @@ -182167,7 +172412,7 @@ } }, { - "id": 22091, + "id": 20950, "properties": { "facing": "west", "half": "top", @@ -182176,7 +172421,7 @@ } }, { - "id": 22092, + "id": 20951, "properties": { "facing": "west", "half": "top", @@ -182185,7 +172430,7 @@ } }, { - "id": 22093, + "id": 20952, "properties": { "facing": "west", "half": "top", @@ -182194,7 +172439,7 @@ } }, { - "id": 22094, + "id": 20953, "properties": { "facing": "west", "half": "top", @@ -182203,7 +172448,7 @@ } }, { - "id": 22095, + "id": 20954, "properties": { "facing": "west", "half": "top", @@ -182212,7 +172457,7 @@ } }, { - "id": 22096, + "id": 20955, "properties": { "facing": "west", "half": "top", @@ -182221,7 +172466,7 @@ } }, { - "id": 22097, + "id": 20956, "properties": { "facing": "west", "half": "top", @@ -182230,7 +172475,7 @@ } }, { - "id": 22098, + "id": 20957, "properties": { "facing": "west", "half": "top", @@ -182239,7 +172484,7 @@ } }, { - "id": 22099, + "id": 20958, "properties": { "facing": "west", "half": "top", @@ -182248,7 +172493,7 @@ } }, { - "id": 22100, + "id": 20959, "properties": { "facing": "west", "half": "bottom", @@ -182257,7 +172502,7 @@ } }, { - "id": 22101, + "id": 20960, "properties": { "facing": "west", "half": "bottom", @@ -182266,7 +172511,7 @@ } }, { - "id": 22102, + "id": 20961, "properties": { "facing": "west", "half": "bottom", @@ -182275,7 +172520,7 @@ } }, { - "id": 22103, + "id": 20962, "properties": { "facing": "west", "half": "bottom", @@ -182284,7 +172529,7 @@ } }, { - "id": 22104, + "id": 20963, "properties": { "facing": "west", "half": "bottom", @@ -182293,7 +172538,7 @@ } }, { - "id": 22105, + "id": 20964, "properties": { "facing": "west", "half": "bottom", @@ -182302,7 +172547,7 @@ } }, { - "id": 22106, + "id": 20965, "properties": { "facing": "west", "half": "bottom", @@ -182311,7 +172556,7 @@ } }, { - "id": 22107, + "id": 20966, "properties": { "facing": "west", "half": "bottom", @@ -182320,7 +172565,7 @@ } }, { - "id": 22108, + "id": 20967, "properties": { "facing": "west", "half": "bottom", @@ -182329,7 +172574,7 @@ } }, { - "id": 22109, + "id": 20968, "properties": { "facing": "west", "half": "bottom", @@ -182338,7 +172583,7 @@ } }, { - "id": 22110, + "id": 20969, "properties": { "facing": "east", "half": "top", @@ -182347,7 +172592,7 @@ } }, { - "id": 22111, + "id": 20970, "properties": { "facing": "east", "half": "top", @@ -182356,7 +172601,7 @@ } }, { - "id": 22112, + "id": 20971, "properties": { "facing": "east", "half": "top", @@ -182365,7 +172610,7 @@ } }, { - "id": 22113, + "id": 20972, "properties": { "facing": "east", "half": "top", @@ -182374,7 +172619,7 @@ } }, { - "id": 22114, + "id": 20973, "properties": { "facing": "east", "half": "top", @@ -182383,7 +172628,7 @@ } }, { - "id": 22115, + "id": 20974, "properties": { "facing": "east", "half": "top", @@ -182392,7 +172637,7 @@ } }, { - "id": 22116, + "id": 20975, "properties": { "facing": "east", "half": "top", @@ -182401,7 +172646,7 @@ } }, { - "id": 22117, + "id": 20976, "properties": { "facing": "east", "half": "top", @@ -182410,7 +172655,7 @@ } }, { - "id": 22118, + "id": 20977, "properties": { "facing": "east", "half": "top", @@ -182419,7 +172664,7 @@ } }, { - "id": 22119, + "id": 20978, "properties": { "facing": "east", "half": "top", @@ -182428,7 +172673,7 @@ } }, { - "id": 22120, + "id": 20979, "properties": { "facing": "east", "half": "bottom", @@ -182437,7 +172682,7 @@ } }, { - "id": 22121, + "id": 20980, "properties": { "facing": "east", "half": "bottom", @@ -182446,7 +172691,7 @@ } }, { - "id": 22122, + "id": 20981, "properties": { "facing": "east", "half": "bottom", @@ -182455,7 +172700,7 @@ } }, { - "id": 22123, + "id": 20982, "properties": { "facing": "east", "half": "bottom", @@ -182464,7 +172709,7 @@ } }, { - "id": 22124, + "id": 20983, "properties": { "facing": "east", "half": "bottom", @@ -182473,7 +172718,7 @@ } }, { - "id": 22125, + "id": 20984, "properties": { "facing": "east", "half": "bottom", @@ -182482,7 +172727,7 @@ } }, { - "id": 22126, + "id": 20985, "properties": { "facing": "east", "half": "bottom", @@ -182491,7 +172736,7 @@ } }, { - "id": 22127, + "id": 20986, "properties": { "facing": "east", "half": "bottom", @@ -182500,7 +172745,7 @@ } }, { - "id": 22128, + "id": 20987, "properties": { "facing": "east", "half": "bottom", @@ -182509,7 +172754,7 @@ } }, { - "id": 22129, + "id": 20988, "properties": { "facing": "east", "half": "bottom", @@ -182556,7 +172801,7 @@ }, "states": [ { - "id": 22130, + "id": 20989, "properties": { "east": "none", "north": "none", @@ -182567,7 +172812,7 @@ } }, { - "id": 22131, + "id": 20990, "properties": { "east": "none", "north": "none", @@ -182578,7 +172823,7 @@ } }, { - "id": 22132, + "id": 20991, "properties": { "east": "none", "north": "none", @@ -182590,7 +172835,7 @@ }, { "default": true, - "id": 22133, + "id": 20992, "properties": { "east": "none", "north": "none", @@ -182601,7 +172846,7 @@ } }, { - "id": 22134, + "id": 20993, "properties": { "east": "none", "north": "none", @@ -182612,7 +172857,7 @@ } }, { - "id": 22135, + "id": 20994, "properties": { "east": "none", "north": "none", @@ -182623,7 +172868,7 @@ } }, { - "id": 22136, + "id": 20995, "properties": { "east": "none", "north": "none", @@ -182634,7 +172879,7 @@ } }, { - "id": 22137, + "id": 20996, "properties": { "east": "none", "north": "none", @@ -182645,7 +172890,7 @@ } }, { - "id": 22138, + "id": 20997, "properties": { "east": "none", "north": "none", @@ -182656,7 +172901,7 @@ } }, { - "id": 22139, + "id": 20998, "properties": { "east": "none", "north": "none", @@ -182667,7 +172912,7 @@ } }, { - "id": 22140, + "id": 20999, "properties": { "east": "none", "north": "none", @@ -182678,7 +172923,7 @@ } }, { - "id": 22141, + "id": 21000, "properties": { "east": "none", "north": "none", @@ -182689,7 +172934,7 @@ } }, { - "id": 22142, + "id": 21001, "properties": { "east": "none", "north": "none", @@ -182700,7 +172945,7 @@ } }, { - "id": 22143, + "id": 21002, "properties": { "east": "none", "north": "none", @@ -182711,7 +172956,7 @@ } }, { - "id": 22144, + "id": 21003, "properties": { "east": "none", "north": "none", @@ -182722,7 +172967,7 @@ } }, { - "id": 22145, + "id": 21004, "properties": { "east": "none", "north": "none", @@ -182733,7 +172978,7 @@ } }, { - "id": 22146, + "id": 21005, "properties": { "east": "none", "north": "none", @@ -182744,7 +172989,7 @@ } }, { - "id": 22147, + "id": 21006, "properties": { "east": "none", "north": "none", @@ -182755,7 +173000,7 @@ } }, { - "id": 22148, + "id": 21007, "properties": { "east": "none", "north": "none", @@ -182766,7 +173011,7 @@ } }, { - "id": 22149, + "id": 21008, "properties": { "east": "none", "north": "none", @@ -182777,7 +173022,7 @@ } }, { - "id": 22150, + "id": 21009, "properties": { "east": "none", "north": "none", @@ -182788,7 +173033,7 @@ } }, { - "id": 22151, + "id": 21010, "properties": { "east": "none", "north": "none", @@ -182799,7 +173044,7 @@ } }, { - "id": 22152, + "id": 21011, "properties": { "east": "none", "north": "none", @@ -182810,7 +173055,7 @@ } }, { - "id": 22153, + "id": 21012, "properties": { "east": "none", "north": "none", @@ -182821,7 +173066,7 @@ } }, { - "id": 22154, + "id": 21013, "properties": { "east": "none", "north": "none", @@ -182832,7 +173077,7 @@ } }, { - "id": 22155, + "id": 21014, "properties": { "east": "none", "north": "none", @@ -182843,7 +173088,7 @@ } }, { - "id": 22156, + "id": 21015, "properties": { "east": "none", "north": "none", @@ -182854,7 +173099,7 @@ } }, { - "id": 22157, + "id": 21016, "properties": { "east": "none", "north": "none", @@ -182865,7 +173110,7 @@ } }, { - "id": 22158, + "id": 21017, "properties": { "east": "none", "north": "none", @@ -182876,7 +173121,7 @@ } }, { - "id": 22159, + "id": 21018, "properties": { "east": "none", "north": "none", @@ -182887,7 +173132,7 @@ } }, { - "id": 22160, + "id": 21019, "properties": { "east": "none", "north": "none", @@ -182898,7 +173143,7 @@ } }, { - "id": 22161, + "id": 21020, "properties": { "east": "none", "north": "none", @@ -182909,7 +173154,7 @@ } }, { - "id": 22162, + "id": 21021, "properties": { "east": "none", "north": "none", @@ -182920,7 +173165,7 @@ } }, { - "id": 22163, + "id": 21022, "properties": { "east": "none", "north": "none", @@ -182931,7 +173176,7 @@ } }, { - "id": 22164, + "id": 21023, "properties": { "east": "none", "north": "none", @@ -182942,7 +173187,7 @@ } }, { - "id": 22165, + "id": 21024, "properties": { "east": "none", "north": "none", @@ -182953,7 +173198,7 @@ } }, { - "id": 22166, + "id": 21025, "properties": { "east": "none", "north": "low", @@ -182964,7 +173209,7 @@ } }, { - "id": 22167, + "id": 21026, "properties": { "east": "none", "north": "low", @@ -182975,7 +173220,7 @@ } }, { - "id": 22168, + "id": 21027, "properties": { "east": "none", "north": "low", @@ -182986,7 +173231,7 @@ } }, { - "id": 22169, + "id": 21028, "properties": { "east": "none", "north": "low", @@ -182997,7 +173242,7 @@ } }, { - "id": 22170, + "id": 21029, "properties": { "east": "none", "north": "low", @@ -183008,7 +173253,7 @@ } }, { - "id": 22171, + "id": 21030, "properties": { "east": "none", "north": "low", @@ -183019,7 +173264,7 @@ } }, { - "id": 22172, + "id": 21031, "properties": { "east": "none", "north": "low", @@ -183030,7 +173275,7 @@ } }, { - "id": 22173, + "id": 21032, "properties": { "east": "none", "north": "low", @@ -183041,7 +173286,7 @@ } }, { - "id": 22174, + "id": 21033, "properties": { "east": "none", "north": "low", @@ -183052,7 +173297,7 @@ } }, { - "id": 22175, + "id": 21034, "properties": { "east": "none", "north": "low", @@ -183063,7 +173308,7 @@ } }, { - "id": 22176, + "id": 21035, "properties": { "east": "none", "north": "low", @@ -183074,7 +173319,7 @@ } }, { - "id": 22177, + "id": 21036, "properties": { "east": "none", "north": "low", @@ -183085,7 +173330,7 @@ } }, { - "id": 22178, + "id": 21037, "properties": { "east": "none", "north": "low", @@ -183096,7 +173341,7 @@ } }, { - "id": 22179, + "id": 21038, "properties": { "east": "none", "north": "low", @@ -183107,7 +173352,7 @@ } }, { - "id": 22180, + "id": 21039, "properties": { "east": "none", "north": "low", @@ -183118,7 +173363,7 @@ } }, { - "id": 22181, + "id": 21040, "properties": { "east": "none", "north": "low", @@ -183129,7 +173374,7 @@ } }, { - "id": 22182, + "id": 21041, "properties": { "east": "none", "north": "low", @@ -183140,7 +173385,7 @@ } }, { - "id": 22183, + "id": 21042, "properties": { "east": "none", "north": "low", @@ -183151,7 +173396,7 @@ } }, { - "id": 22184, + "id": 21043, "properties": { "east": "none", "north": "low", @@ -183162,7 +173407,7 @@ } }, { - "id": 22185, + "id": 21044, "properties": { "east": "none", "north": "low", @@ -183173,7 +173418,7 @@ } }, { - "id": 22186, + "id": 21045, "properties": { "east": "none", "north": "low", @@ -183184,7 +173429,7 @@ } }, { - "id": 22187, + "id": 21046, "properties": { "east": "none", "north": "low", @@ -183195,7 +173440,7 @@ } }, { - "id": 22188, + "id": 21047, "properties": { "east": "none", "north": "low", @@ -183206,7 +173451,7 @@ } }, { - "id": 22189, + "id": 21048, "properties": { "east": "none", "north": "low", @@ -183217,7 +173462,7 @@ } }, { - "id": 22190, + "id": 21049, "properties": { "east": "none", "north": "low", @@ -183228,7 +173473,7 @@ } }, { - "id": 22191, + "id": 21050, "properties": { "east": "none", "north": "low", @@ -183239,7 +173484,7 @@ } }, { - "id": 22192, + "id": 21051, "properties": { "east": "none", "north": "low", @@ -183250,7 +173495,7 @@ } }, { - "id": 22193, + "id": 21052, "properties": { "east": "none", "north": "low", @@ -183261,7 +173506,7 @@ } }, { - "id": 22194, + "id": 21053, "properties": { "east": "none", "north": "low", @@ -183272,7 +173517,7 @@ } }, { - "id": 22195, + "id": 21054, "properties": { "east": "none", "north": "low", @@ -183283,7 +173528,7 @@ } }, { - "id": 22196, + "id": 21055, "properties": { "east": "none", "north": "low", @@ -183294,7 +173539,7 @@ } }, { - "id": 22197, + "id": 21056, "properties": { "east": "none", "north": "low", @@ -183305,7 +173550,7 @@ } }, { - "id": 22198, + "id": 21057, "properties": { "east": "none", "north": "low", @@ -183316,7 +173561,7 @@ } }, { - "id": 22199, + "id": 21058, "properties": { "east": "none", "north": "low", @@ -183327,7 +173572,7 @@ } }, { - "id": 22200, + "id": 21059, "properties": { "east": "none", "north": "low", @@ -183338,7 +173583,7 @@ } }, { - "id": 22201, + "id": 21060, "properties": { "east": "none", "north": "low", @@ -183349,7 +173594,7 @@ } }, { - "id": 22202, + "id": 21061, "properties": { "east": "none", "north": "tall", @@ -183360,7 +173605,7 @@ } }, { - "id": 22203, + "id": 21062, "properties": { "east": "none", "north": "tall", @@ -183371,7 +173616,7 @@ } }, { - "id": 22204, + "id": 21063, "properties": { "east": "none", "north": "tall", @@ -183382,7 +173627,7 @@ } }, { - "id": 22205, + "id": 21064, "properties": { "east": "none", "north": "tall", @@ -183393,7 +173638,7 @@ } }, { - "id": 22206, + "id": 21065, "properties": { "east": "none", "north": "tall", @@ -183404,7 +173649,7 @@ } }, { - "id": 22207, + "id": 21066, "properties": { "east": "none", "north": "tall", @@ -183415,7 +173660,7 @@ } }, { - "id": 22208, + "id": 21067, "properties": { "east": "none", "north": "tall", @@ -183426,7 +173671,7 @@ } }, { - "id": 22209, + "id": 21068, "properties": { "east": "none", "north": "tall", @@ -183437,7 +173682,7 @@ } }, { - "id": 22210, + "id": 21069, "properties": { "east": "none", "north": "tall", @@ -183448,7 +173693,7 @@ } }, { - "id": 22211, + "id": 21070, "properties": { "east": "none", "north": "tall", @@ -183459,7 +173704,7 @@ } }, { - "id": 22212, + "id": 21071, "properties": { "east": "none", "north": "tall", @@ -183470,7 +173715,7 @@ } }, { - "id": 22213, + "id": 21072, "properties": { "east": "none", "north": "tall", @@ -183481,7 +173726,7 @@ } }, { - "id": 22214, + "id": 21073, "properties": { "east": "none", "north": "tall", @@ -183492,7 +173737,7 @@ } }, { - "id": 22215, + "id": 21074, "properties": { "east": "none", "north": "tall", @@ -183503,7 +173748,7 @@ } }, { - "id": 22216, + "id": 21075, "properties": { "east": "none", "north": "tall", @@ -183514,7 +173759,7 @@ } }, { - "id": 22217, + "id": 21076, "properties": { "east": "none", "north": "tall", @@ -183525,7 +173770,7 @@ } }, { - "id": 22218, + "id": 21077, "properties": { "east": "none", "north": "tall", @@ -183536,7 +173781,7 @@ } }, { - "id": 22219, + "id": 21078, "properties": { "east": "none", "north": "tall", @@ -183547,7 +173792,7 @@ } }, { - "id": 22220, + "id": 21079, "properties": { "east": "none", "north": "tall", @@ -183558,7 +173803,7 @@ } }, { - "id": 22221, + "id": 21080, "properties": { "east": "none", "north": "tall", @@ -183569,7 +173814,7 @@ } }, { - "id": 22222, + "id": 21081, "properties": { "east": "none", "north": "tall", @@ -183580,7 +173825,7 @@ } }, { - "id": 22223, + "id": 21082, "properties": { "east": "none", "north": "tall", @@ -183591,7 +173836,7 @@ } }, { - "id": 22224, + "id": 21083, "properties": { "east": "none", "north": "tall", @@ -183602,7 +173847,7 @@ } }, { - "id": 22225, + "id": 21084, "properties": { "east": "none", "north": "tall", @@ -183613,7 +173858,7 @@ } }, { - "id": 22226, + "id": 21085, "properties": { "east": "none", "north": "tall", @@ -183624,7 +173869,7 @@ } }, { - "id": 22227, + "id": 21086, "properties": { "east": "none", "north": "tall", @@ -183635,7 +173880,7 @@ } }, { - "id": 22228, + "id": 21087, "properties": { "east": "none", "north": "tall", @@ -183646,7 +173891,7 @@ } }, { - "id": 22229, + "id": 21088, "properties": { "east": "none", "north": "tall", @@ -183657,7 +173902,7 @@ } }, { - "id": 22230, + "id": 21089, "properties": { "east": "none", "north": "tall", @@ -183668,7 +173913,7 @@ } }, { - "id": 22231, + "id": 21090, "properties": { "east": "none", "north": "tall", @@ -183679,7 +173924,7 @@ } }, { - "id": 22232, + "id": 21091, "properties": { "east": "none", "north": "tall", @@ -183690,7 +173935,7 @@ } }, { - "id": 22233, + "id": 21092, "properties": { "east": "none", "north": "tall", @@ -183701,7 +173946,7 @@ } }, { - "id": 22234, + "id": 21093, "properties": { "east": "none", "north": "tall", @@ -183712,7 +173957,7 @@ } }, { - "id": 22235, + "id": 21094, "properties": { "east": "none", "north": "tall", @@ -183723,7 +173968,7 @@ } }, { - "id": 22236, + "id": 21095, "properties": { "east": "none", "north": "tall", @@ -183734,7 +173979,7 @@ } }, { - "id": 22237, + "id": 21096, "properties": { "east": "none", "north": "tall", @@ -183745,7 +173990,7 @@ } }, { - "id": 22238, + "id": 21097, "properties": { "east": "low", "north": "none", @@ -183756,7 +174001,7 @@ } }, { - "id": 22239, + "id": 21098, "properties": { "east": "low", "north": "none", @@ -183767,7 +174012,7 @@ } }, { - "id": 22240, + "id": 21099, "properties": { "east": "low", "north": "none", @@ -183778,7 +174023,7 @@ } }, { - "id": 22241, + "id": 21100, "properties": { "east": "low", "north": "none", @@ -183789,7 +174034,7 @@ } }, { - "id": 22242, + "id": 21101, "properties": { "east": "low", "north": "none", @@ -183800,7 +174045,7 @@ } }, { - "id": 22243, + "id": 21102, "properties": { "east": "low", "north": "none", @@ -183811,7 +174056,7 @@ } }, { - "id": 22244, + "id": 21103, "properties": { "east": "low", "north": "none", @@ -183822,7 +174067,7 @@ } }, { - "id": 22245, + "id": 21104, "properties": { "east": "low", "north": "none", @@ -183833,7 +174078,7 @@ } }, { - "id": 22246, + "id": 21105, "properties": { "east": "low", "north": "none", @@ -183844,7 +174089,7 @@ } }, { - "id": 22247, + "id": 21106, "properties": { "east": "low", "north": "none", @@ -183855,7 +174100,7 @@ } }, { - "id": 22248, + "id": 21107, "properties": { "east": "low", "north": "none", @@ -183866,7 +174111,7 @@ } }, { - "id": 22249, + "id": 21108, "properties": { "east": "low", "north": "none", @@ -183877,7 +174122,7 @@ } }, { - "id": 22250, + "id": 21109, "properties": { "east": "low", "north": "none", @@ -183888,7 +174133,7 @@ } }, { - "id": 22251, + "id": 21110, "properties": { "east": "low", "north": "none", @@ -183899,7 +174144,7 @@ } }, { - "id": 22252, + "id": 21111, "properties": { "east": "low", "north": "none", @@ -183910,7 +174155,7 @@ } }, { - "id": 22253, + "id": 21112, "properties": { "east": "low", "north": "none", @@ -183921,7 +174166,7 @@ } }, { - "id": 22254, + "id": 21113, "properties": { "east": "low", "north": "none", @@ -183932,7 +174177,7 @@ } }, { - "id": 22255, + "id": 21114, "properties": { "east": "low", "north": "none", @@ -183943,7 +174188,7 @@ } }, { - "id": 22256, + "id": 21115, "properties": { "east": "low", "north": "none", @@ -183954,7 +174199,7 @@ } }, { - "id": 22257, + "id": 21116, "properties": { "east": "low", "north": "none", @@ -183965,7 +174210,7 @@ } }, { - "id": 22258, + "id": 21117, "properties": { "east": "low", "north": "none", @@ -183976,7 +174221,7 @@ } }, { - "id": 22259, + "id": 21118, "properties": { "east": "low", "north": "none", @@ -183987,7 +174232,7 @@ } }, { - "id": 22260, + "id": 21119, "properties": { "east": "low", "north": "none", @@ -183998,7 +174243,7 @@ } }, { - "id": 22261, + "id": 21120, "properties": { "east": "low", "north": "none", @@ -184009,7 +174254,7 @@ } }, { - "id": 22262, + "id": 21121, "properties": { "east": "low", "north": "none", @@ -184020,7 +174265,7 @@ } }, { - "id": 22263, + "id": 21122, "properties": { "east": "low", "north": "none", @@ -184031,7 +174276,7 @@ } }, { - "id": 22264, + "id": 21123, "properties": { "east": "low", "north": "none", @@ -184042,7 +174287,7 @@ } }, { - "id": 22265, + "id": 21124, "properties": { "east": "low", "north": "none", @@ -184053,7 +174298,7 @@ } }, { - "id": 22266, + "id": 21125, "properties": { "east": "low", "north": "none", @@ -184064,7 +174309,7 @@ } }, { - "id": 22267, + "id": 21126, "properties": { "east": "low", "north": "none", @@ -184075,7 +174320,7 @@ } }, { - "id": 22268, + "id": 21127, "properties": { "east": "low", "north": "none", @@ -184086,7 +174331,7 @@ } }, { - "id": 22269, + "id": 21128, "properties": { "east": "low", "north": "none", @@ -184097,7 +174342,7 @@ } }, { - "id": 22270, + "id": 21129, "properties": { "east": "low", "north": "none", @@ -184108,7 +174353,7 @@ } }, { - "id": 22271, + "id": 21130, "properties": { "east": "low", "north": "none", @@ -184119,7 +174364,7 @@ } }, { - "id": 22272, + "id": 21131, "properties": { "east": "low", "north": "none", @@ -184130,7 +174375,7 @@ } }, { - "id": 22273, + "id": 21132, "properties": { "east": "low", "north": "none", @@ -184141,7 +174386,7 @@ } }, { - "id": 22274, + "id": 21133, "properties": { "east": "low", "north": "low", @@ -184152,7 +174397,7 @@ } }, { - "id": 22275, + "id": 21134, "properties": { "east": "low", "north": "low", @@ -184163,7 +174408,7 @@ } }, { - "id": 22276, + "id": 21135, "properties": { "east": "low", "north": "low", @@ -184174,7 +174419,7 @@ } }, { - "id": 22277, + "id": 21136, "properties": { "east": "low", "north": "low", @@ -184185,7 +174430,7 @@ } }, { - "id": 22278, + "id": 21137, "properties": { "east": "low", "north": "low", @@ -184196,7 +174441,7 @@ } }, { - "id": 22279, + "id": 21138, "properties": { "east": "low", "north": "low", @@ -184207,7 +174452,7 @@ } }, { - "id": 22280, + "id": 21139, "properties": { "east": "low", "north": "low", @@ -184218,7 +174463,7 @@ } }, { - "id": 22281, + "id": 21140, "properties": { "east": "low", "north": "low", @@ -184229,7 +174474,7 @@ } }, { - "id": 22282, + "id": 21141, "properties": { "east": "low", "north": "low", @@ -184240,7 +174485,7 @@ } }, { - "id": 22283, + "id": 21142, "properties": { "east": "low", "north": "low", @@ -184251,7 +174496,7 @@ } }, { - "id": 22284, + "id": 21143, "properties": { "east": "low", "north": "low", @@ -184262,7 +174507,7 @@ } }, { - "id": 22285, + "id": 21144, "properties": { "east": "low", "north": "low", @@ -184273,7 +174518,7 @@ } }, { - "id": 22286, + "id": 21145, "properties": { "east": "low", "north": "low", @@ -184284,7 +174529,7 @@ } }, { - "id": 22287, + "id": 21146, "properties": { "east": "low", "north": "low", @@ -184295,7 +174540,7 @@ } }, { - "id": 22288, + "id": 21147, "properties": { "east": "low", "north": "low", @@ -184306,7 +174551,7 @@ } }, { - "id": 22289, + "id": 21148, "properties": { "east": "low", "north": "low", @@ -184317,7 +174562,7 @@ } }, { - "id": 22290, + "id": 21149, "properties": { "east": "low", "north": "low", @@ -184328,7 +174573,7 @@ } }, { - "id": 22291, + "id": 21150, "properties": { "east": "low", "north": "low", @@ -184339,7 +174584,7 @@ } }, { - "id": 22292, + "id": 21151, "properties": { "east": "low", "north": "low", @@ -184350,7 +174595,7 @@ } }, { - "id": 22293, + "id": 21152, "properties": { "east": "low", "north": "low", @@ -184361,7 +174606,7 @@ } }, { - "id": 22294, + "id": 21153, "properties": { "east": "low", "north": "low", @@ -184372,7 +174617,7 @@ } }, { - "id": 22295, + "id": 21154, "properties": { "east": "low", "north": "low", @@ -184383,7 +174628,7 @@ } }, { - "id": 22296, + "id": 21155, "properties": { "east": "low", "north": "low", @@ -184394,7 +174639,7 @@ } }, { - "id": 22297, + "id": 21156, "properties": { "east": "low", "north": "low", @@ -184405,7 +174650,7 @@ } }, { - "id": 22298, + "id": 21157, "properties": { "east": "low", "north": "low", @@ -184416,7 +174661,7 @@ } }, { - "id": 22299, + "id": 21158, "properties": { "east": "low", "north": "low", @@ -184427,7 +174672,7 @@ } }, { - "id": 22300, + "id": 21159, "properties": { "east": "low", "north": "low", @@ -184438,7 +174683,7 @@ } }, { - "id": 22301, + "id": 21160, "properties": { "east": "low", "north": "low", @@ -184449,7 +174694,7 @@ } }, { - "id": 22302, + "id": 21161, "properties": { "east": "low", "north": "low", @@ -184460,7 +174705,7 @@ } }, { - "id": 22303, + "id": 21162, "properties": { "east": "low", "north": "low", @@ -184471,7 +174716,7 @@ } }, { - "id": 22304, + "id": 21163, "properties": { "east": "low", "north": "low", @@ -184482,7 +174727,7 @@ } }, { - "id": 22305, + "id": 21164, "properties": { "east": "low", "north": "low", @@ -184493,7 +174738,7 @@ } }, { - "id": 22306, + "id": 21165, "properties": { "east": "low", "north": "low", @@ -184504,7 +174749,7 @@ } }, { - "id": 22307, + "id": 21166, "properties": { "east": "low", "north": "low", @@ -184515,7 +174760,7 @@ } }, { - "id": 22308, + "id": 21167, "properties": { "east": "low", "north": "low", @@ -184526,7 +174771,7 @@ } }, { - "id": 22309, + "id": 21168, "properties": { "east": "low", "north": "low", @@ -184537,7 +174782,7 @@ } }, { - "id": 22310, + "id": 21169, "properties": { "east": "low", "north": "tall", @@ -184548,7 +174793,7 @@ } }, { - "id": 22311, + "id": 21170, "properties": { "east": "low", "north": "tall", @@ -184559,7 +174804,7 @@ } }, { - "id": 22312, + "id": 21171, "properties": { "east": "low", "north": "tall", @@ -184570,7 +174815,7 @@ } }, { - "id": 22313, + "id": 21172, "properties": { "east": "low", "north": "tall", @@ -184581,7 +174826,7 @@ } }, { - "id": 22314, + "id": 21173, "properties": { "east": "low", "north": "tall", @@ -184592,7 +174837,7 @@ } }, { - "id": 22315, + "id": 21174, "properties": { "east": "low", "north": "tall", @@ -184603,7 +174848,7 @@ } }, { - "id": 22316, + "id": 21175, "properties": { "east": "low", "north": "tall", @@ -184614,7 +174859,7 @@ } }, { - "id": 22317, + "id": 21176, "properties": { "east": "low", "north": "tall", @@ -184625,7 +174870,7 @@ } }, { - "id": 22318, + "id": 21177, "properties": { "east": "low", "north": "tall", @@ -184636,7 +174881,7 @@ } }, { - "id": 22319, + "id": 21178, "properties": { "east": "low", "north": "tall", @@ -184647,7 +174892,7 @@ } }, { - "id": 22320, + "id": 21179, "properties": { "east": "low", "north": "tall", @@ -184658,7 +174903,7 @@ } }, { - "id": 22321, + "id": 21180, "properties": { "east": "low", "north": "tall", @@ -184669,7 +174914,7 @@ } }, { - "id": 22322, + "id": 21181, "properties": { "east": "low", "north": "tall", @@ -184680,7 +174925,7 @@ } }, { - "id": 22323, + "id": 21182, "properties": { "east": "low", "north": "tall", @@ -184691,7 +174936,7 @@ } }, { - "id": 22324, + "id": 21183, "properties": { "east": "low", "north": "tall", @@ -184702,7 +174947,7 @@ } }, { - "id": 22325, + "id": 21184, "properties": { "east": "low", "north": "tall", @@ -184713,7 +174958,7 @@ } }, { - "id": 22326, + "id": 21185, "properties": { "east": "low", "north": "tall", @@ -184724,7 +174969,7 @@ } }, { - "id": 22327, + "id": 21186, "properties": { "east": "low", "north": "tall", @@ -184735,7 +174980,7 @@ } }, { - "id": 22328, + "id": 21187, "properties": { "east": "low", "north": "tall", @@ -184746,7 +174991,7 @@ } }, { - "id": 22329, + "id": 21188, "properties": { "east": "low", "north": "tall", @@ -184757,7 +175002,7 @@ } }, { - "id": 22330, + "id": 21189, "properties": { "east": "low", "north": "tall", @@ -184768,7 +175013,7 @@ } }, { - "id": 22331, + "id": 21190, "properties": { "east": "low", "north": "tall", @@ -184779,7 +175024,7 @@ } }, { - "id": 22332, + "id": 21191, "properties": { "east": "low", "north": "tall", @@ -184790,7 +175035,7 @@ } }, { - "id": 22333, + "id": 21192, "properties": { "east": "low", "north": "tall", @@ -184801,7 +175046,7 @@ } }, { - "id": 22334, + "id": 21193, "properties": { "east": "low", "north": "tall", @@ -184812,7 +175057,7 @@ } }, { - "id": 22335, + "id": 21194, "properties": { "east": "low", "north": "tall", @@ -184823,7 +175068,7 @@ } }, { - "id": 22336, + "id": 21195, "properties": { "east": "low", "north": "tall", @@ -184834,7 +175079,7 @@ } }, { - "id": 22337, + "id": 21196, "properties": { "east": "low", "north": "tall", @@ -184845,7 +175090,7 @@ } }, { - "id": 22338, + "id": 21197, "properties": { "east": "low", "north": "tall", @@ -184856,7 +175101,7 @@ } }, { - "id": 22339, + "id": 21198, "properties": { "east": "low", "north": "tall", @@ -184867,7 +175112,7 @@ } }, { - "id": 22340, + "id": 21199, "properties": { "east": "low", "north": "tall", @@ -184878,7 +175123,7 @@ } }, { - "id": 22341, + "id": 21200, "properties": { "east": "low", "north": "tall", @@ -184889,7 +175134,7 @@ } }, { - "id": 22342, + "id": 21201, "properties": { "east": "low", "north": "tall", @@ -184900,7 +175145,7 @@ } }, { - "id": 22343, + "id": 21202, "properties": { "east": "low", "north": "tall", @@ -184911,7 +175156,7 @@ } }, { - "id": 22344, + "id": 21203, "properties": { "east": "low", "north": "tall", @@ -184922,7 +175167,7 @@ } }, { - "id": 22345, + "id": 21204, "properties": { "east": "low", "north": "tall", @@ -184933,7 +175178,7 @@ } }, { - "id": 22346, + "id": 21205, "properties": { "east": "tall", "north": "none", @@ -184944,7 +175189,7 @@ } }, { - "id": 22347, + "id": 21206, "properties": { "east": "tall", "north": "none", @@ -184955,7 +175200,7 @@ } }, { - "id": 22348, + "id": 21207, "properties": { "east": "tall", "north": "none", @@ -184966,7 +175211,7 @@ } }, { - "id": 22349, + "id": 21208, "properties": { "east": "tall", "north": "none", @@ -184977,7 +175222,7 @@ } }, { - "id": 22350, + "id": 21209, "properties": { "east": "tall", "north": "none", @@ -184988,7 +175233,7 @@ } }, { - "id": 22351, + "id": 21210, "properties": { "east": "tall", "north": "none", @@ -184999,7 +175244,7 @@ } }, { - "id": 22352, + "id": 21211, "properties": { "east": "tall", "north": "none", @@ -185010,7 +175255,7 @@ } }, { - "id": 22353, + "id": 21212, "properties": { "east": "tall", "north": "none", @@ -185021,7 +175266,7 @@ } }, { - "id": 22354, + "id": 21213, "properties": { "east": "tall", "north": "none", @@ -185032,7 +175277,7 @@ } }, { - "id": 22355, + "id": 21214, "properties": { "east": "tall", "north": "none", @@ -185043,7 +175288,7 @@ } }, { - "id": 22356, + "id": 21215, "properties": { "east": "tall", "north": "none", @@ -185054,7 +175299,7 @@ } }, { - "id": 22357, + "id": 21216, "properties": { "east": "tall", "north": "none", @@ -185065,7 +175310,7 @@ } }, { - "id": 22358, + "id": 21217, "properties": { "east": "tall", "north": "none", @@ -185076,7 +175321,7 @@ } }, { - "id": 22359, + "id": 21218, "properties": { "east": "tall", "north": "none", @@ -185087,7 +175332,7 @@ } }, { - "id": 22360, + "id": 21219, "properties": { "east": "tall", "north": "none", @@ -185098,7 +175343,7 @@ } }, { - "id": 22361, + "id": 21220, "properties": { "east": "tall", "north": "none", @@ -185109,7 +175354,7 @@ } }, { - "id": 22362, + "id": 21221, "properties": { "east": "tall", "north": "none", @@ -185120,7 +175365,7 @@ } }, { - "id": 22363, + "id": 21222, "properties": { "east": "tall", "north": "none", @@ -185131,7 +175376,7 @@ } }, { - "id": 22364, + "id": 21223, "properties": { "east": "tall", "north": "none", @@ -185142,7 +175387,7 @@ } }, { - "id": 22365, + "id": 21224, "properties": { "east": "tall", "north": "none", @@ -185153,7 +175398,7 @@ } }, { - "id": 22366, + "id": 21225, "properties": { "east": "tall", "north": "none", @@ -185164,7 +175409,7 @@ } }, { - "id": 22367, + "id": 21226, "properties": { "east": "tall", "north": "none", @@ -185175,7 +175420,7 @@ } }, { - "id": 22368, + "id": 21227, "properties": { "east": "tall", "north": "none", @@ -185186,7 +175431,7 @@ } }, { - "id": 22369, + "id": 21228, "properties": { "east": "tall", "north": "none", @@ -185197,7 +175442,7 @@ } }, { - "id": 22370, + "id": 21229, "properties": { "east": "tall", "north": "none", @@ -185208,7 +175453,7 @@ } }, { - "id": 22371, + "id": 21230, "properties": { "east": "tall", "north": "none", @@ -185219,7 +175464,7 @@ } }, { - "id": 22372, + "id": 21231, "properties": { "east": "tall", "north": "none", @@ -185230,7 +175475,7 @@ } }, { - "id": 22373, + "id": 21232, "properties": { "east": "tall", "north": "none", @@ -185241,7 +175486,7 @@ } }, { - "id": 22374, + "id": 21233, "properties": { "east": "tall", "north": "none", @@ -185252,7 +175497,7 @@ } }, { - "id": 22375, + "id": 21234, "properties": { "east": "tall", "north": "none", @@ -185263,7 +175508,7 @@ } }, { - "id": 22376, + "id": 21235, "properties": { "east": "tall", "north": "none", @@ -185274,7 +175519,7 @@ } }, { - "id": 22377, + "id": 21236, "properties": { "east": "tall", "north": "none", @@ -185285,7 +175530,7 @@ } }, { - "id": 22378, + "id": 21237, "properties": { "east": "tall", "north": "none", @@ -185296,7 +175541,7 @@ } }, { - "id": 22379, + "id": 21238, "properties": { "east": "tall", "north": "none", @@ -185307,7 +175552,7 @@ } }, { - "id": 22380, + "id": 21239, "properties": { "east": "tall", "north": "none", @@ -185318,7 +175563,7 @@ } }, { - "id": 22381, + "id": 21240, "properties": { "east": "tall", "north": "none", @@ -185329,7 +175574,7 @@ } }, { - "id": 22382, + "id": 21241, "properties": { "east": "tall", "north": "low", @@ -185340,7 +175585,7 @@ } }, { - "id": 22383, + "id": 21242, "properties": { "east": "tall", "north": "low", @@ -185351,7 +175596,7 @@ } }, { - "id": 22384, + "id": 21243, "properties": { "east": "tall", "north": "low", @@ -185362,7 +175607,7 @@ } }, { - "id": 22385, + "id": 21244, "properties": { "east": "tall", "north": "low", @@ -185373,7 +175618,7 @@ } }, { - "id": 22386, + "id": 21245, "properties": { "east": "tall", "north": "low", @@ -185384,7 +175629,7 @@ } }, { - "id": 22387, + "id": 21246, "properties": { "east": "tall", "north": "low", @@ -185395,7 +175640,7 @@ } }, { - "id": 22388, + "id": 21247, "properties": { "east": "tall", "north": "low", @@ -185406,7 +175651,7 @@ } }, { - "id": 22389, + "id": 21248, "properties": { "east": "tall", "north": "low", @@ -185417,7 +175662,7 @@ } }, { - "id": 22390, + "id": 21249, "properties": { "east": "tall", "north": "low", @@ -185428,7 +175673,7 @@ } }, { - "id": 22391, + "id": 21250, "properties": { "east": "tall", "north": "low", @@ -185439,7 +175684,7 @@ } }, { - "id": 22392, + "id": 21251, "properties": { "east": "tall", "north": "low", @@ -185450,7 +175695,7 @@ } }, { - "id": 22393, + "id": 21252, "properties": { "east": "tall", "north": "low", @@ -185461,7 +175706,7 @@ } }, { - "id": 22394, + "id": 21253, "properties": { "east": "tall", "north": "low", @@ -185472,7 +175717,7 @@ } }, { - "id": 22395, + "id": 21254, "properties": { "east": "tall", "north": "low", @@ -185483,7 +175728,7 @@ } }, { - "id": 22396, + "id": 21255, "properties": { "east": "tall", "north": "low", @@ -185494,7 +175739,7 @@ } }, { - "id": 22397, + "id": 21256, "properties": { "east": "tall", "north": "low", @@ -185505,7 +175750,7 @@ } }, { - "id": 22398, + "id": 21257, "properties": { "east": "tall", "north": "low", @@ -185516,7 +175761,7 @@ } }, { - "id": 22399, + "id": 21258, "properties": { "east": "tall", "north": "low", @@ -185527,7 +175772,7 @@ } }, { - "id": 22400, + "id": 21259, "properties": { "east": "tall", "north": "low", @@ -185538,7 +175783,7 @@ } }, { - "id": 22401, + "id": 21260, "properties": { "east": "tall", "north": "low", @@ -185549,7 +175794,7 @@ } }, { - "id": 22402, + "id": 21261, "properties": { "east": "tall", "north": "low", @@ -185560,7 +175805,7 @@ } }, { - "id": 22403, + "id": 21262, "properties": { "east": "tall", "north": "low", @@ -185571,7 +175816,7 @@ } }, { - "id": 22404, + "id": 21263, "properties": { "east": "tall", "north": "low", @@ -185582,7 +175827,7 @@ } }, { - "id": 22405, + "id": 21264, "properties": { "east": "tall", "north": "low", @@ -185593,7 +175838,7 @@ } }, { - "id": 22406, + "id": 21265, "properties": { "east": "tall", "north": "low", @@ -185604,7 +175849,7 @@ } }, { - "id": 22407, + "id": 21266, "properties": { "east": "tall", "north": "low", @@ -185615,7 +175860,7 @@ } }, { - "id": 22408, + "id": 21267, "properties": { "east": "tall", "north": "low", @@ -185626,7 +175871,7 @@ } }, { - "id": 22409, + "id": 21268, "properties": { "east": "tall", "north": "low", @@ -185637,7 +175882,7 @@ } }, { - "id": 22410, + "id": 21269, "properties": { "east": "tall", "north": "low", @@ -185648,7 +175893,7 @@ } }, { - "id": 22411, + "id": 21270, "properties": { "east": "tall", "north": "low", @@ -185659,7 +175904,7 @@ } }, { - "id": 22412, + "id": 21271, "properties": { "east": "tall", "north": "low", @@ -185670,7 +175915,7 @@ } }, { - "id": 22413, + "id": 21272, "properties": { "east": "tall", "north": "low", @@ -185681,7 +175926,7 @@ } }, { - "id": 22414, + "id": 21273, "properties": { "east": "tall", "north": "low", @@ -185692,7 +175937,7 @@ } }, { - "id": 22415, + "id": 21274, "properties": { "east": "tall", "north": "low", @@ -185703,7 +175948,7 @@ } }, { - "id": 22416, + "id": 21275, "properties": { "east": "tall", "north": "low", @@ -185714,7 +175959,7 @@ } }, { - "id": 22417, + "id": 21276, "properties": { "east": "tall", "north": "low", @@ -185725,7 +175970,7 @@ } }, { - "id": 22418, + "id": 21277, "properties": { "east": "tall", "north": "tall", @@ -185736,7 +175981,7 @@ } }, { - "id": 22419, + "id": 21278, "properties": { "east": "tall", "north": "tall", @@ -185747,7 +175992,7 @@ } }, { - "id": 22420, + "id": 21279, "properties": { "east": "tall", "north": "tall", @@ -185758,7 +176003,7 @@ } }, { - "id": 22421, + "id": 21280, "properties": { "east": "tall", "north": "tall", @@ -185769,7 +176014,7 @@ } }, { - "id": 22422, + "id": 21281, "properties": { "east": "tall", "north": "tall", @@ -185780,7 +176025,7 @@ } }, { - "id": 22423, + "id": 21282, "properties": { "east": "tall", "north": "tall", @@ -185791,7 +176036,7 @@ } }, { - "id": 22424, + "id": 21283, "properties": { "east": "tall", "north": "tall", @@ -185802,7 +176047,7 @@ } }, { - "id": 22425, + "id": 21284, "properties": { "east": "tall", "north": "tall", @@ -185813,7 +176058,7 @@ } }, { - "id": 22426, + "id": 21285, "properties": { "east": "tall", "north": "tall", @@ -185824,7 +176069,7 @@ } }, { - "id": 22427, + "id": 21286, "properties": { "east": "tall", "north": "tall", @@ -185835,7 +176080,7 @@ } }, { - "id": 22428, + "id": 21287, "properties": { "east": "tall", "north": "tall", @@ -185846,7 +176091,7 @@ } }, { - "id": 22429, + "id": 21288, "properties": { "east": "tall", "north": "tall", @@ -185857,7 +176102,7 @@ } }, { - "id": 22430, + "id": 21289, "properties": { "east": "tall", "north": "tall", @@ -185868,7 +176113,7 @@ } }, { - "id": 22431, + "id": 21290, "properties": { "east": "tall", "north": "tall", @@ -185879,7 +176124,7 @@ } }, { - "id": 22432, + "id": 21291, "properties": { "east": "tall", "north": "tall", @@ -185890,7 +176135,7 @@ } }, { - "id": 22433, + "id": 21292, "properties": { "east": "tall", "north": "tall", @@ -185901,7 +176146,7 @@ } }, { - "id": 22434, + "id": 21293, "properties": { "east": "tall", "north": "tall", @@ -185912,7 +176157,7 @@ } }, { - "id": 22435, + "id": 21294, "properties": { "east": "tall", "north": "tall", @@ -185923,7 +176168,7 @@ } }, { - "id": 22436, + "id": 21295, "properties": { "east": "tall", "north": "tall", @@ -185934,7 +176179,7 @@ } }, { - "id": 22437, + "id": 21296, "properties": { "east": "tall", "north": "tall", @@ -185945,7 +176190,7 @@ } }, { - "id": 22438, + "id": 21297, "properties": { "east": "tall", "north": "tall", @@ -185956,7 +176201,7 @@ } }, { - "id": 22439, + "id": 21298, "properties": { "east": "tall", "north": "tall", @@ -185967,7 +176212,7 @@ } }, { - "id": 22440, + "id": 21299, "properties": { "east": "tall", "north": "tall", @@ -185978,7 +176223,7 @@ } }, { - "id": 22441, + "id": 21300, "properties": { "east": "tall", "north": "tall", @@ -185989,7 +176234,7 @@ } }, { - "id": 22442, + "id": 21301, "properties": { "east": "tall", "north": "tall", @@ -186000,7 +176245,7 @@ } }, { - "id": 22443, + "id": 21302, "properties": { "east": "tall", "north": "tall", @@ -186011,7 +176256,7 @@ } }, { - "id": 22444, + "id": 21303, "properties": { "east": "tall", "north": "tall", @@ -186022,7 +176267,7 @@ } }, { - "id": 22445, + "id": 21304, "properties": { "east": "tall", "north": "tall", @@ -186033,7 +176278,7 @@ } }, { - "id": 22446, + "id": 21305, "properties": { "east": "tall", "north": "tall", @@ -186044,7 +176289,7 @@ } }, { - "id": 22447, + "id": 21306, "properties": { "east": "tall", "north": "tall", @@ -186055,7 +176300,7 @@ } }, { - "id": 22448, + "id": 21307, "properties": { "east": "tall", "north": "tall", @@ -186066,7 +176311,7 @@ } }, { - "id": 22449, + "id": 21308, "properties": { "east": "tall", "north": "tall", @@ -186077,7 +176322,7 @@ } }, { - "id": 22450, + "id": 21309, "properties": { "east": "tall", "north": "tall", @@ -186088,7 +176333,7 @@ } }, { - "id": 22451, + "id": 21310, "properties": { "east": "tall", "north": "tall", @@ -186099,7 +176344,7 @@ } }, { - "id": 22452, + "id": 21311, "properties": { "east": "tall", "north": "tall", @@ -186110,7 +176355,7 @@ } }, { - "id": 22453, + "id": 21312, "properties": { "east": "tall", "north": "tall", @@ -186130,7 +176375,7 @@ "states": [ { "default": true, - "id": 22041 + "id": 20900 } ] }, @@ -186160,7 +176405,7 @@ }, "states": [ { - "id": 22543, + "id": 21402, "properties": { "face": "floor", "facing": "north", @@ -186168,7 +176413,7 @@ } }, { - "id": 22544, + "id": 21403, "properties": { "face": "floor", "facing": "north", @@ -186176,7 +176421,7 @@ } }, { - "id": 22545, + "id": 21404, "properties": { "face": "floor", "facing": "south", @@ -186184,7 +176429,7 @@ } }, { - "id": 22546, + "id": 21405, "properties": { "face": "floor", "facing": "south", @@ -186192,7 +176437,7 @@ } }, { - "id": 22547, + "id": 21406, "properties": { "face": "floor", "facing": "west", @@ -186200,7 +176445,7 @@ } }, { - "id": 22548, + "id": 21407, "properties": { "face": "floor", "facing": "west", @@ -186208,7 +176453,7 @@ } }, { - "id": 22549, + "id": 21408, "properties": { "face": "floor", "facing": "east", @@ -186216,7 +176461,7 @@ } }, { - "id": 22550, + "id": 21409, "properties": { "face": "floor", "facing": "east", @@ -186224,7 +176469,7 @@ } }, { - "id": 22551, + "id": 21410, "properties": { "face": "wall", "facing": "north", @@ -186233,7 +176478,7 @@ }, { "default": true, - "id": 22552, + "id": 21411, "properties": { "face": "wall", "facing": "north", @@ -186241,7 +176486,7 @@ } }, { - "id": 22553, + "id": 21412, "properties": { "face": "wall", "facing": "south", @@ -186249,7 +176494,7 @@ } }, { - "id": 22554, + "id": 21413, "properties": { "face": "wall", "facing": "south", @@ -186257,7 +176502,7 @@ } }, { - "id": 22555, + "id": 21414, "properties": { "face": "wall", "facing": "west", @@ -186265,7 +176510,7 @@ } }, { - "id": 22556, + "id": 21415, "properties": { "face": "wall", "facing": "west", @@ -186273,7 +176518,7 @@ } }, { - "id": 22557, + "id": 21416, "properties": { "face": "wall", "facing": "east", @@ -186281,7 +176526,7 @@ } }, { - "id": 22558, + "id": 21417, "properties": { "face": "wall", "facing": "east", @@ -186289,7 +176534,7 @@ } }, { - "id": 22559, + "id": 21418, "properties": { "face": "ceiling", "facing": "north", @@ -186297,7 +176542,7 @@ } }, { - "id": 22560, + "id": 21419, "properties": { "face": "ceiling", "facing": "north", @@ -186305,7 +176550,7 @@ } }, { - "id": 22561, + "id": 21420, "properties": { "face": "ceiling", "facing": "south", @@ -186313,7 +176558,7 @@ } }, { - "id": 22562, + "id": 21421, "properties": { "face": "ceiling", "facing": "south", @@ -186321,7 +176566,7 @@ } }, { - "id": 22563, + "id": 21422, "properties": { "face": "ceiling", "facing": "west", @@ -186329,7 +176574,7 @@ } }, { - "id": 22564, + "id": 21423, "properties": { "face": "ceiling", "facing": "west", @@ -186337,7 +176582,7 @@ } }, { - "id": 22565, + "id": 21424, "properties": { "face": "ceiling", "facing": "east", @@ -186345,7 +176590,7 @@ } }, { - "id": 22566, + "id": 21425, "properties": { "face": "ceiling", "facing": "east", @@ -186368,14 +176613,14 @@ }, "states": [ { - "id": 22541, + "id": 21400, "properties": { "powered": "true" } }, { "default": true, - "id": 22542, + "id": 21401, "properties": { "powered": "false" } @@ -186400,21 +176645,21 @@ }, "states": [ { - "id": 22535, + "id": 21394, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 22536, + "id": 21395, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 22537, + "id": 21396, "properties": { "type": "bottom", "waterlogged": "true" @@ -186422,21 +176667,21 @@ }, { "default": true, - "id": 22538, + "id": 21397, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 22539, + "id": 21398, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 22540, + "id": 21399, "properties": { "type": "double", "waterlogged": "false" @@ -186477,7 +176722,7 @@ }, "states": [ { - "id": 22455, + "id": 21314, "properties": { "facing": "north", "half": "top", @@ -186486,7 +176731,7 @@ } }, { - "id": 22456, + "id": 21315, "properties": { "facing": "north", "half": "top", @@ -186495,7 +176740,7 @@ } }, { - "id": 22457, + "id": 21316, "properties": { "facing": "north", "half": "top", @@ -186504,7 +176749,7 @@ } }, { - "id": 22458, + "id": 21317, "properties": { "facing": "north", "half": "top", @@ -186513,7 +176758,7 @@ } }, { - "id": 22459, + "id": 21318, "properties": { "facing": "north", "half": "top", @@ -186522,7 +176767,7 @@ } }, { - "id": 22460, + "id": 21319, "properties": { "facing": "north", "half": "top", @@ -186531,7 +176776,7 @@ } }, { - "id": 22461, + "id": 21320, "properties": { "facing": "north", "half": "top", @@ -186540,7 +176785,7 @@ } }, { - "id": 22462, + "id": 21321, "properties": { "facing": "north", "half": "top", @@ -186549,7 +176794,7 @@ } }, { - "id": 22463, + "id": 21322, "properties": { "facing": "north", "half": "top", @@ -186558,7 +176803,7 @@ } }, { - "id": 22464, + "id": 21323, "properties": { "facing": "north", "half": "top", @@ -186567,7 +176812,7 @@ } }, { - "id": 22465, + "id": 21324, "properties": { "facing": "north", "half": "bottom", @@ -186577,7 +176822,7 @@ }, { "default": true, - "id": 22466, + "id": 21325, "properties": { "facing": "north", "half": "bottom", @@ -186586,7 +176831,7 @@ } }, { - "id": 22467, + "id": 21326, "properties": { "facing": "north", "half": "bottom", @@ -186595,7 +176840,7 @@ } }, { - "id": 22468, + "id": 21327, "properties": { "facing": "north", "half": "bottom", @@ -186604,7 +176849,7 @@ } }, { - "id": 22469, + "id": 21328, "properties": { "facing": "north", "half": "bottom", @@ -186613,7 +176858,7 @@ } }, { - "id": 22470, + "id": 21329, "properties": { "facing": "north", "half": "bottom", @@ -186622,7 +176867,7 @@ } }, { - "id": 22471, + "id": 21330, "properties": { "facing": "north", "half": "bottom", @@ -186631,7 +176876,7 @@ } }, { - "id": 22472, + "id": 21331, "properties": { "facing": "north", "half": "bottom", @@ -186640,7 +176885,7 @@ } }, { - "id": 22473, + "id": 21332, "properties": { "facing": "north", "half": "bottom", @@ -186649,7 +176894,7 @@ } }, { - "id": 22474, + "id": 21333, "properties": { "facing": "north", "half": "bottom", @@ -186658,7 +176903,7 @@ } }, { - "id": 22475, + "id": 21334, "properties": { "facing": "south", "half": "top", @@ -186667,7 +176912,7 @@ } }, { - "id": 22476, + "id": 21335, "properties": { "facing": "south", "half": "top", @@ -186676,7 +176921,7 @@ } }, { - "id": 22477, + "id": 21336, "properties": { "facing": "south", "half": "top", @@ -186685,7 +176930,7 @@ } }, { - "id": 22478, + "id": 21337, "properties": { "facing": "south", "half": "top", @@ -186694,7 +176939,7 @@ } }, { - "id": 22479, + "id": 21338, "properties": { "facing": "south", "half": "top", @@ -186703,7 +176948,7 @@ } }, { - "id": 22480, + "id": 21339, "properties": { "facing": "south", "half": "top", @@ -186712,7 +176957,7 @@ } }, { - "id": 22481, + "id": 21340, "properties": { "facing": "south", "half": "top", @@ -186721,7 +176966,7 @@ } }, { - "id": 22482, + "id": 21341, "properties": { "facing": "south", "half": "top", @@ -186730,7 +176975,7 @@ } }, { - "id": 22483, + "id": 21342, "properties": { "facing": "south", "half": "top", @@ -186739,7 +176984,7 @@ } }, { - "id": 22484, + "id": 21343, "properties": { "facing": "south", "half": "top", @@ -186748,7 +176993,7 @@ } }, { - "id": 22485, + "id": 21344, "properties": { "facing": "south", "half": "bottom", @@ -186757,7 +177002,7 @@ } }, { - "id": 22486, + "id": 21345, "properties": { "facing": "south", "half": "bottom", @@ -186766,7 +177011,7 @@ } }, { - "id": 22487, + "id": 21346, "properties": { "facing": "south", "half": "bottom", @@ -186775,7 +177020,7 @@ } }, { - "id": 22488, + "id": 21347, "properties": { "facing": "south", "half": "bottom", @@ -186784,7 +177029,7 @@ } }, { - "id": 22489, + "id": 21348, "properties": { "facing": "south", "half": "bottom", @@ -186793,7 +177038,7 @@ } }, { - "id": 22490, + "id": 21349, "properties": { "facing": "south", "half": "bottom", @@ -186802,7 +177047,7 @@ } }, { - "id": 22491, + "id": 21350, "properties": { "facing": "south", "half": "bottom", @@ -186811,7 +177056,7 @@ } }, { - "id": 22492, + "id": 21351, "properties": { "facing": "south", "half": "bottom", @@ -186820,7 +177065,7 @@ } }, { - "id": 22493, + "id": 21352, "properties": { "facing": "south", "half": "bottom", @@ -186829,7 +177074,7 @@ } }, { - "id": 22494, + "id": 21353, "properties": { "facing": "south", "half": "bottom", @@ -186838,7 +177083,7 @@ } }, { - "id": 22495, + "id": 21354, "properties": { "facing": "west", "half": "top", @@ -186847,7 +177092,7 @@ } }, { - "id": 22496, + "id": 21355, "properties": { "facing": "west", "half": "top", @@ -186856,7 +177101,7 @@ } }, { - "id": 22497, + "id": 21356, "properties": { "facing": "west", "half": "top", @@ -186865,7 +177110,7 @@ } }, { - "id": 22498, + "id": 21357, "properties": { "facing": "west", "half": "top", @@ -186874,7 +177119,7 @@ } }, { - "id": 22499, + "id": 21358, "properties": { "facing": "west", "half": "top", @@ -186883,7 +177128,7 @@ } }, { - "id": 22500, + "id": 21359, "properties": { "facing": "west", "half": "top", @@ -186892,7 +177137,7 @@ } }, { - "id": 22501, + "id": 21360, "properties": { "facing": "west", "half": "top", @@ -186901,7 +177146,7 @@ } }, { - "id": 22502, + "id": 21361, "properties": { "facing": "west", "half": "top", @@ -186910,7 +177155,7 @@ } }, { - "id": 22503, + "id": 21362, "properties": { "facing": "west", "half": "top", @@ -186919,7 +177164,7 @@ } }, { - "id": 22504, + "id": 21363, "properties": { "facing": "west", "half": "top", @@ -186928,7 +177173,7 @@ } }, { - "id": 22505, + "id": 21364, "properties": { "facing": "west", "half": "bottom", @@ -186937,7 +177182,7 @@ } }, { - "id": 22506, + "id": 21365, "properties": { "facing": "west", "half": "bottom", @@ -186946,7 +177191,7 @@ } }, { - "id": 22507, + "id": 21366, "properties": { "facing": "west", "half": "bottom", @@ -186955,7 +177200,7 @@ } }, { - "id": 22508, + "id": 21367, "properties": { "facing": "west", "half": "bottom", @@ -186964,7 +177209,7 @@ } }, { - "id": 22509, + "id": 21368, "properties": { "facing": "west", "half": "bottom", @@ -186973,7 +177218,7 @@ } }, { - "id": 22510, + "id": 21369, "properties": { "facing": "west", "half": "bottom", @@ -186982,7 +177227,7 @@ } }, { - "id": 22511, + "id": 21370, "properties": { "facing": "west", "half": "bottom", @@ -186991,7 +177236,7 @@ } }, { - "id": 22512, + "id": 21371, "properties": { "facing": "west", "half": "bottom", @@ -187000,7 +177245,7 @@ } }, { - "id": 22513, + "id": 21372, "properties": { "facing": "west", "half": "bottom", @@ -187009,7 +177254,7 @@ } }, { - "id": 22514, + "id": 21373, "properties": { "facing": "west", "half": "bottom", @@ -187018,7 +177263,7 @@ } }, { - "id": 22515, + "id": 21374, "properties": { "facing": "east", "half": "top", @@ -187027,7 +177272,7 @@ } }, { - "id": 22516, + "id": 21375, "properties": { "facing": "east", "half": "top", @@ -187036,7 +177281,7 @@ } }, { - "id": 22517, + "id": 21376, "properties": { "facing": "east", "half": "top", @@ -187045,7 +177290,7 @@ } }, { - "id": 22518, + "id": 21377, "properties": { "facing": "east", "half": "top", @@ -187054,7 +177299,7 @@ } }, { - "id": 22519, + "id": 21378, "properties": { "facing": "east", "half": "top", @@ -187063,7 +177308,7 @@ } }, { - "id": 22520, + "id": 21379, "properties": { "facing": "east", "half": "top", @@ -187072,7 +177317,7 @@ } }, { - "id": 22521, + "id": 21380, "properties": { "facing": "east", "half": "top", @@ -187081,7 +177326,7 @@ } }, { - "id": 22522, + "id": 21381, "properties": { "facing": "east", "half": "top", @@ -187090,7 +177335,7 @@ } }, { - "id": 22523, + "id": 21382, "properties": { "facing": "east", "half": "top", @@ -187099,7 +177344,7 @@ } }, { - "id": 22524, + "id": 21383, "properties": { "facing": "east", "half": "top", @@ -187108,7 +177353,7 @@ } }, { - "id": 22525, + "id": 21384, "properties": { "facing": "east", "half": "bottom", @@ -187117,7 +177362,7 @@ } }, { - "id": 22526, + "id": 21385, "properties": { "facing": "east", "half": "bottom", @@ -187126,7 +177371,7 @@ } }, { - "id": 22527, + "id": 21386, "properties": { "facing": "east", "half": "bottom", @@ -187135,7 +177380,7 @@ } }, { - "id": 22528, + "id": 21387, "properties": { "facing": "east", "half": "bottom", @@ -187144,7 +177389,7 @@ } }, { - "id": 22529, + "id": 21388, "properties": { "facing": "east", "half": "bottom", @@ -187153,7 +177398,7 @@ } }, { - "id": 22530, + "id": 21389, "properties": { "facing": "east", "half": "bottom", @@ -187162,7 +177407,7 @@ } }, { - "id": 22531, + "id": 21390, "properties": { "facing": "east", "half": "bottom", @@ -187171,7 +177416,7 @@ } }, { - "id": 22532, + "id": 21391, "properties": { "facing": "east", "half": "bottom", @@ -187180,7 +177425,7 @@ } }, { - "id": 22533, + "id": 21392, "properties": { "facing": "east", "half": "bottom", @@ -187189,7 +177434,7 @@ } }, { - "id": 22534, + "id": 21393, "properties": { "facing": "east", "half": "bottom", @@ -187236,7 +177481,7 @@ }, "states": [ { - "id": 22567, + "id": 21426, "properties": { "east": "none", "north": "none", @@ -187247,7 +177492,7 @@ } }, { - "id": 22568, + "id": 21427, "properties": { "east": "none", "north": "none", @@ -187258,7 +177503,7 @@ } }, { - "id": 22569, + "id": 21428, "properties": { "east": "none", "north": "none", @@ -187270,7 +177515,7 @@ }, { "default": true, - "id": 22570, + "id": 21429, "properties": { "east": "none", "north": "none", @@ -187281,7 +177526,7 @@ } }, { - "id": 22571, + "id": 21430, "properties": { "east": "none", "north": "none", @@ -187292,7 +177537,7 @@ } }, { - "id": 22572, + "id": 21431, "properties": { "east": "none", "north": "none", @@ -187303,7 +177548,7 @@ } }, { - "id": 22573, + "id": 21432, "properties": { "east": "none", "north": "none", @@ -187314,7 +177559,7 @@ } }, { - "id": 22574, + "id": 21433, "properties": { "east": "none", "north": "none", @@ -187325,7 +177570,7 @@ } }, { - "id": 22575, + "id": 21434, "properties": { "east": "none", "north": "none", @@ -187336,7 +177581,7 @@ } }, { - "id": 22576, + "id": 21435, "properties": { "east": "none", "north": "none", @@ -187347,7 +177592,7 @@ } }, { - "id": 22577, + "id": 21436, "properties": { "east": "none", "north": "none", @@ -187358,7 +177603,7 @@ } }, { - "id": 22578, + "id": 21437, "properties": { "east": "none", "north": "none", @@ -187369,7 +177614,7 @@ } }, { - "id": 22579, + "id": 21438, "properties": { "east": "none", "north": "none", @@ -187380,7 +177625,7 @@ } }, { - "id": 22580, + "id": 21439, "properties": { "east": "none", "north": "none", @@ -187391,7 +177636,7 @@ } }, { - "id": 22581, + "id": 21440, "properties": { "east": "none", "north": "none", @@ -187402,7 +177647,7 @@ } }, { - "id": 22582, + "id": 21441, "properties": { "east": "none", "north": "none", @@ -187413,7 +177658,7 @@ } }, { - "id": 22583, + "id": 21442, "properties": { "east": "none", "north": "none", @@ -187424,7 +177669,7 @@ } }, { - "id": 22584, + "id": 21443, "properties": { "east": "none", "north": "none", @@ -187435,7 +177680,7 @@ } }, { - "id": 22585, + "id": 21444, "properties": { "east": "none", "north": "none", @@ -187446,7 +177691,7 @@ } }, { - "id": 22586, + "id": 21445, "properties": { "east": "none", "north": "none", @@ -187457,7 +177702,7 @@ } }, { - "id": 22587, + "id": 21446, "properties": { "east": "none", "north": "none", @@ -187468,7 +177713,7 @@ } }, { - "id": 22588, + "id": 21447, "properties": { "east": "none", "north": "none", @@ -187479,7 +177724,7 @@ } }, { - "id": 22589, + "id": 21448, "properties": { "east": "none", "north": "none", @@ -187490,7 +177735,7 @@ } }, { - "id": 22590, + "id": 21449, "properties": { "east": "none", "north": "none", @@ -187501,7 +177746,7 @@ } }, { - "id": 22591, + "id": 21450, "properties": { "east": "none", "north": "none", @@ -187512,7 +177757,7 @@ } }, { - "id": 22592, + "id": 21451, "properties": { "east": "none", "north": "none", @@ -187523,7 +177768,7 @@ } }, { - "id": 22593, + "id": 21452, "properties": { "east": "none", "north": "none", @@ -187534,7 +177779,7 @@ } }, { - "id": 22594, + "id": 21453, "properties": { "east": "none", "north": "none", @@ -187545,7 +177790,7 @@ } }, { - "id": 22595, + "id": 21454, "properties": { "east": "none", "north": "none", @@ -187556,7 +177801,7 @@ } }, { - "id": 22596, + "id": 21455, "properties": { "east": "none", "north": "none", @@ -187567,7 +177812,7 @@ } }, { - "id": 22597, + "id": 21456, "properties": { "east": "none", "north": "none", @@ -187578,7 +177823,7 @@ } }, { - "id": 22598, + "id": 21457, "properties": { "east": "none", "north": "none", @@ -187589,7 +177834,7 @@ } }, { - "id": 22599, + "id": 21458, "properties": { "east": "none", "north": "none", @@ -187600,7 +177845,7 @@ } }, { - "id": 22600, + "id": 21459, "properties": { "east": "none", "north": "none", @@ -187611,7 +177856,7 @@ } }, { - "id": 22601, + "id": 21460, "properties": { "east": "none", "north": "none", @@ -187622,7 +177867,7 @@ } }, { - "id": 22602, + "id": 21461, "properties": { "east": "none", "north": "none", @@ -187633,7 +177878,7 @@ } }, { - "id": 22603, + "id": 21462, "properties": { "east": "none", "north": "low", @@ -187644,7 +177889,7 @@ } }, { - "id": 22604, + "id": 21463, "properties": { "east": "none", "north": "low", @@ -187655,7 +177900,7 @@ } }, { - "id": 22605, + "id": 21464, "properties": { "east": "none", "north": "low", @@ -187666,7 +177911,7 @@ } }, { - "id": 22606, + "id": 21465, "properties": { "east": "none", "north": "low", @@ -187677,7 +177922,7 @@ } }, { - "id": 22607, + "id": 21466, "properties": { "east": "none", "north": "low", @@ -187688,7 +177933,7 @@ } }, { - "id": 22608, + "id": 21467, "properties": { "east": "none", "north": "low", @@ -187699,7 +177944,7 @@ } }, { - "id": 22609, + "id": 21468, "properties": { "east": "none", "north": "low", @@ -187710,7 +177955,7 @@ } }, { - "id": 22610, + "id": 21469, "properties": { "east": "none", "north": "low", @@ -187721,7 +177966,7 @@ } }, { - "id": 22611, + "id": 21470, "properties": { "east": "none", "north": "low", @@ -187732,7 +177977,7 @@ } }, { - "id": 22612, + "id": 21471, "properties": { "east": "none", "north": "low", @@ -187743,7 +177988,7 @@ } }, { - "id": 22613, + "id": 21472, "properties": { "east": "none", "north": "low", @@ -187754,7 +177999,7 @@ } }, { - "id": 22614, + "id": 21473, "properties": { "east": "none", "north": "low", @@ -187765,7 +178010,7 @@ } }, { - "id": 22615, + "id": 21474, "properties": { "east": "none", "north": "low", @@ -187776,7 +178021,7 @@ } }, { - "id": 22616, + "id": 21475, "properties": { "east": "none", "north": "low", @@ -187787,7 +178032,7 @@ } }, { - "id": 22617, + "id": 21476, "properties": { "east": "none", "north": "low", @@ -187798,7 +178043,7 @@ } }, { - "id": 22618, + "id": 21477, "properties": { "east": "none", "north": "low", @@ -187809,7 +178054,7 @@ } }, { - "id": 22619, + "id": 21478, "properties": { "east": "none", "north": "low", @@ -187820,7 +178065,7 @@ } }, { - "id": 22620, + "id": 21479, "properties": { "east": "none", "north": "low", @@ -187831,7 +178076,7 @@ } }, { - "id": 22621, + "id": 21480, "properties": { "east": "none", "north": "low", @@ -187842,7 +178087,7 @@ } }, { - "id": 22622, + "id": 21481, "properties": { "east": "none", "north": "low", @@ -187853,7 +178098,7 @@ } }, { - "id": 22623, + "id": 21482, "properties": { "east": "none", "north": "low", @@ -187864,7 +178109,7 @@ } }, { - "id": 22624, + "id": 21483, "properties": { "east": "none", "north": "low", @@ -187875,7 +178120,7 @@ } }, { - "id": 22625, + "id": 21484, "properties": { "east": "none", "north": "low", @@ -187886,7 +178131,7 @@ } }, { - "id": 22626, + "id": 21485, "properties": { "east": "none", "north": "low", @@ -187897,7 +178142,7 @@ } }, { - "id": 22627, + "id": 21486, "properties": { "east": "none", "north": "low", @@ -187908,7 +178153,7 @@ } }, { - "id": 22628, + "id": 21487, "properties": { "east": "none", "north": "low", @@ -187919,7 +178164,7 @@ } }, { - "id": 22629, + "id": 21488, "properties": { "east": "none", "north": "low", @@ -187930,7 +178175,7 @@ } }, { - "id": 22630, + "id": 21489, "properties": { "east": "none", "north": "low", @@ -187941,7 +178186,7 @@ } }, { - "id": 22631, + "id": 21490, "properties": { "east": "none", "north": "low", @@ -187952,7 +178197,7 @@ } }, { - "id": 22632, + "id": 21491, "properties": { "east": "none", "north": "low", @@ -187963,7 +178208,7 @@ } }, { - "id": 22633, + "id": 21492, "properties": { "east": "none", "north": "low", @@ -187974,7 +178219,7 @@ } }, { - "id": 22634, + "id": 21493, "properties": { "east": "none", "north": "low", @@ -187985,7 +178230,7 @@ } }, { - "id": 22635, + "id": 21494, "properties": { "east": "none", "north": "low", @@ -187996,7 +178241,7 @@ } }, { - "id": 22636, + "id": 21495, "properties": { "east": "none", "north": "low", @@ -188007,7 +178252,7 @@ } }, { - "id": 22637, + "id": 21496, "properties": { "east": "none", "north": "low", @@ -188018,7 +178263,7 @@ } }, { - "id": 22638, + "id": 21497, "properties": { "east": "none", "north": "low", @@ -188029,7 +178274,7 @@ } }, { - "id": 22639, + "id": 21498, "properties": { "east": "none", "north": "tall", @@ -188040,7 +178285,7 @@ } }, { - "id": 22640, + "id": 21499, "properties": { "east": "none", "north": "tall", @@ -188051,7 +178296,7 @@ } }, { - "id": 22641, + "id": 21500, "properties": { "east": "none", "north": "tall", @@ -188062,7 +178307,7 @@ } }, { - "id": 22642, + "id": 21501, "properties": { "east": "none", "north": "tall", @@ -188073,7 +178318,7 @@ } }, { - "id": 22643, + "id": 21502, "properties": { "east": "none", "north": "tall", @@ -188084,7 +178329,7 @@ } }, { - "id": 22644, + "id": 21503, "properties": { "east": "none", "north": "tall", @@ -188095,7 +178340,7 @@ } }, { - "id": 22645, + "id": 21504, "properties": { "east": "none", "north": "tall", @@ -188106,7 +178351,7 @@ } }, { - "id": 22646, + "id": 21505, "properties": { "east": "none", "north": "tall", @@ -188117,7 +178362,7 @@ } }, { - "id": 22647, + "id": 21506, "properties": { "east": "none", "north": "tall", @@ -188128,7 +178373,7 @@ } }, { - "id": 22648, + "id": 21507, "properties": { "east": "none", "north": "tall", @@ -188139,7 +178384,7 @@ } }, { - "id": 22649, + "id": 21508, "properties": { "east": "none", "north": "tall", @@ -188150,7 +178395,7 @@ } }, { - "id": 22650, + "id": 21509, "properties": { "east": "none", "north": "tall", @@ -188161,7 +178406,7 @@ } }, { - "id": 22651, + "id": 21510, "properties": { "east": "none", "north": "tall", @@ -188172,7 +178417,7 @@ } }, { - "id": 22652, + "id": 21511, "properties": { "east": "none", "north": "tall", @@ -188183,7 +178428,7 @@ } }, { - "id": 22653, + "id": 21512, "properties": { "east": "none", "north": "tall", @@ -188194,7 +178439,7 @@ } }, { - "id": 22654, + "id": 21513, "properties": { "east": "none", "north": "tall", @@ -188205,7 +178450,7 @@ } }, { - "id": 22655, + "id": 21514, "properties": { "east": "none", "north": "tall", @@ -188216,7 +178461,7 @@ } }, { - "id": 22656, + "id": 21515, "properties": { "east": "none", "north": "tall", @@ -188227,7 +178472,7 @@ } }, { - "id": 22657, + "id": 21516, "properties": { "east": "none", "north": "tall", @@ -188238,7 +178483,7 @@ } }, { - "id": 22658, + "id": 21517, "properties": { "east": "none", "north": "tall", @@ -188249,7 +178494,7 @@ } }, { - "id": 22659, + "id": 21518, "properties": { "east": "none", "north": "tall", @@ -188260,7 +178505,7 @@ } }, { - "id": 22660, + "id": 21519, "properties": { "east": "none", "north": "tall", @@ -188271,7 +178516,7 @@ } }, { - "id": 22661, + "id": 21520, "properties": { "east": "none", "north": "tall", @@ -188282,7 +178527,7 @@ } }, { - "id": 22662, + "id": 21521, "properties": { "east": "none", "north": "tall", @@ -188293,7 +178538,7 @@ } }, { - "id": 22663, + "id": 21522, "properties": { "east": "none", "north": "tall", @@ -188304,7 +178549,7 @@ } }, { - "id": 22664, + "id": 21523, "properties": { "east": "none", "north": "tall", @@ -188315,7 +178560,7 @@ } }, { - "id": 22665, + "id": 21524, "properties": { "east": "none", "north": "tall", @@ -188326,7 +178571,7 @@ } }, { - "id": 22666, + "id": 21525, "properties": { "east": "none", "north": "tall", @@ -188337,7 +178582,7 @@ } }, { - "id": 22667, + "id": 21526, "properties": { "east": "none", "north": "tall", @@ -188348,7 +178593,7 @@ } }, { - "id": 22668, + "id": 21527, "properties": { "east": "none", "north": "tall", @@ -188359,7 +178604,7 @@ } }, { - "id": 22669, + "id": 21528, "properties": { "east": "none", "north": "tall", @@ -188370,7 +178615,7 @@ } }, { - "id": 22670, + "id": 21529, "properties": { "east": "none", "north": "tall", @@ -188381,7 +178626,7 @@ } }, { - "id": 22671, + "id": 21530, "properties": { "east": "none", "north": "tall", @@ -188392,7 +178637,7 @@ } }, { - "id": 22672, + "id": 21531, "properties": { "east": "none", "north": "tall", @@ -188403,7 +178648,7 @@ } }, { - "id": 22673, + "id": 21532, "properties": { "east": "none", "north": "tall", @@ -188414,7 +178659,7 @@ } }, { - "id": 22674, + "id": 21533, "properties": { "east": "none", "north": "tall", @@ -188425,7 +178670,7 @@ } }, { - "id": 22675, + "id": 21534, "properties": { "east": "low", "north": "none", @@ -188436,7 +178681,7 @@ } }, { - "id": 22676, + "id": 21535, "properties": { "east": "low", "north": "none", @@ -188447,7 +178692,7 @@ } }, { - "id": 22677, + "id": 21536, "properties": { "east": "low", "north": "none", @@ -188458,7 +178703,7 @@ } }, { - "id": 22678, + "id": 21537, "properties": { "east": "low", "north": "none", @@ -188469,7 +178714,7 @@ } }, { - "id": 22679, + "id": 21538, "properties": { "east": "low", "north": "none", @@ -188480,7 +178725,7 @@ } }, { - "id": 22680, + "id": 21539, "properties": { "east": "low", "north": "none", @@ -188491,7 +178736,7 @@ } }, { - "id": 22681, + "id": 21540, "properties": { "east": "low", "north": "none", @@ -188502,7 +178747,7 @@ } }, { - "id": 22682, + "id": 21541, "properties": { "east": "low", "north": "none", @@ -188513,7 +178758,7 @@ } }, { - "id": 22683, + "id": 21542, "properties": { "east": "low", "north": "none", @@ -188524,7 +178769,7 @@ } }, { - "id": 22684, + "id": 21543, "properties": { "east": "low", "north": "none", @@ -188535,7 +178780,7 @@ } }, { - "id": 22685, + "id": 21544, "properties": { "east": "low", "north": "none", @@ -188546,7 +178791,7 @@ } }, { - "id": 22686, + "id": 21545, "properties": { "east": "low", "north": "none", @@ -188557,7 +178802,7 @@ } }, { - "id": 22687, + "id": 21546, "properties": { "east": "low", "north": "none", @@ -188568,7 +178813,7 @@ } }, { - "id": 22688, + "id": 21547, "properties": { "east": "low", "north": "none", @@ -188579,7 +178824,7 @@ } }, { - "id": 22689, + "id": 21548, "properties": { "east": "low", "north": "none", @@ -188590,7 +178835,7 @@ } }, { - "id": 22690, + "id": 21549, "properties": { "east": "low", "north": "none", @@ -188601,7 +178846,7 @@ } }, { - "id": 22691, + "id": 21550, "properties": { "east": "low", "north": "none", @@ -188612,7 +178857,7 @@ } }, { - "id": 22692, + "id": 21551, "properties": { "east": "low", "north": "none", @@ -188623,7 +178868,7 @@ } }, { - "id": 22693, + "id": 21552, "properties": { "east": "low", "north": "none", @@ -188634,7 +178879,7 @@ } }, { - "id": 22694, + "id": 21553, "properties": { "east": "low", "north": "none", @@ -188645,7 +178890,7 @@ } }, { - "id": 22695, + "id": 21554, "properties": { "east": "low", "north": "none", @@ -188656,7 +178901,7 @@ } }, { - "id": 22696, + "id": 21555, "properties": { "east": "low", "north": "none", @@ -188667,7 +178912,7 @@ } }, { - "id": 22697, + "id": 21556, "properties": { "east": "low", "north": "none", @@ -188678,7 +178923,7 @@ } }, { - "id": 22698, + "id": 21557, "properties": { "east": "low", "north": "none", @@ -188689,7 +178934,7 @@ } }, { - "id": 22699, + "id": 21558, "properties": { "east": "low", "north": "none", @@ -188700,7 +178945,7 @@ } }, { - "id": 22700, + "id": 21559, "properties": { "east": "low", "north": "none", @@ -188711,7 +178956,7 @@ } }, { - "id": 22701, + "id": 21560, "properties": { "east": "low", "north": "none", @@ -188722,7 +178967,7 @@ } }, { - "id": 22702, + "id": 21561, "properties": { "east": "low", "north": "none", @@ -188733,7 +178978,7 @@ } }, { - "id": 22703, + "id": 21562, "properties": { "east": "low", "north": "none", @@ -188744,7 +178989,7 @@ } }, { - "id": 22704, + "id": 21563, "properties": { "east": "low", "north": "none", @@ -188755,7 +179000,7 @@ } }, { - "id": 22705, + "id": 21564, "properties": { "east": "low", "north": "none", @@ -188766,7 +179011,7 @@ } }, { - "id": 22706, + "id": 21565, "properties": { "east": "low", "north": "none", @@ -188777,7 +179022,7 @@ } }, { - "id": 22707, + "id": 21566, "properties": { "east": "low", "north": "none", @@ -188788,7 +179033,7 @@ } }, { - "id": 22708, + "id": 21567, "properties": { "east": "low", "north": "none", @@ -188799,7 +179044,7 @@ } }, { - "id": 22709, + "id": 21568, "properties": { "east": "low", "north": "none", @@ -188810,7 +179055,7 @@ } }, { - "id": 22710, + "id": 21569, "properties": { "east": "low", "north": "none", @@ -188821,7 +179066,7 @@ } }, { - "id": 22711, + "id": 21570, "properties": { "east": "low", "north": "low", @@ -188832,7 +179077,7 @@ } }, { - "id": 22712, + "id": 21571, "properties": { "east": "low", "north": "low", @@ -188843,7 +179088,7 @@ } }, { - "id": 22713, + "id": 21572, "properties": { "east": "low", "north": "low", @@ -188854,7 +179099,7 @@ } }, { - "id": 22714, + "id": 21573, "properties": { "east": "low", "north": "low", @@ -188865,7 +179110,7 @@ } }, { - "id": 22715, + "id": 21574, "properties": { "east": "low", "north": "low", @@ -188876,7 +179121,7 @@ } }, { - "id": 22716, + "id": 21575, "properties": { "east": "low", "north": "low", @@ -188887,7 +179132,7 @@ } }, { - "id": 22717, + "id": 21576, "properties": { "east": "low", "north": "low", @@ -188898,7 +179143,7 @@ } }, { - "id": 22718, + "id": 21577, "properties": { "east": "low", "north": "low", @@ -188909,7 +179154,7 @@ } }, { - "id": 22719, + "id": 21578, "properties": { "east": "low", "north": "low", @@ -188920,7 +179165,7 @@ } }, { - "id": 22720, + "id": 21579, "properties": { "east": "low", "north": "low", @@ -188931,7 +179176,7 @@ } }, { - "id": 22721, + "id": 21580, "properties": { "east": "low", "north": "low", @@ -188942,7 +179187,7 @@ } }, { - "id": 22722, + "id": 21581, "properties": { "east": "low", "north": "low", @@ -188953,7 +179198,7 @@ } }, { - "id": 22723, + "id": 21582, "properties": { "east": "low", "north": "low", @@ -188964,7 +179209,7 @@ } }, { - "id": 22724, + "id": 21583, "properties": { "east": "low", "north": "low", @@ -188975,7 +179220,7 @@ } }, { - "id": 22725, + "id": 21584, "properties": { "east": "low", "north": "low", @@ -188986,7 +179231,7 @@ } }, { - "id": 22726, + "id": 21585, "properties": { "east": "low", "north": "low", @@ -188997,7 +179242,7 @@ } }, { - "id": 22727, + "id": 21586, "properties": { "east": "low", "north": "low", @@ -189008,7 +179253,7 @@ } }, { - "id": 22728, + "id": 21587, "properties": { "east": "low", "north": "low", @@ -189019,7 +179264,7 @@ } }, { - "id": 22729, + "id": 21588, "properties": { "east": "low", "north": "low", @@ -189030,7 +179275,7 @@ } }, { - "id": 22730, + "id": 21589, "properties": { "east": "low", "north": "low", @@ -189041,7 +179286,7 @@ } }, { - "id": 22731, + "id": 21590, "properties": { "east": "low", "north": "low", @@ -189052,7 +179297,7 @@ } }, { - "id": 22732, + "id": 21591, "properties": { "east": "low", "north": "low", @@ -189063,7 +179308,7 @@ } }, { - "id": 22733, + "id": 21592, "properties": { "east": "low", "north": "low", @@ -189074,7 +179319,7 @@ } }, { - "id": 22734, + "id": 21593, "properties": { "east": "low", "north": "low", @@ -189085,7 +179330,7 @@ } }, { - "id": 22735, + "id": 21594, "properties": { "east": "low", "north": "low", @@ -189096,7 +179341,7 @@ } }, { - "id": 22736, + "id": 21595, "properties": { "east": "low", "north": "low", @@ -189107,7 +179352,7 @@ } }, { - "id": 22737, + "id": 21596, "properties": { "east": "low", "north": "low", @@ -189118,7 +179363,7 @@ } }, { - "id": 22738, + "id": 21597, "properties": { "east": "low", "north": "low", @@ -189129,7 +179374,7 @@ } }, { - "id": 22739, + "id": 21598, "properties": { "east": "low", "north": "low", @@ -189140,7 +179385,7 @@ } }, { - "id": 22740, + "id": 21599, "properties": { "east": "low", "north": "low", @@ -189151,7 +179396,7 @@ } }, { - "id": 22741, + "id": 21600, "properties": { "east": "low", "north": "low", @@ -189162,7 +179407,7 @@ } }, { - "id": 22742, + "id": 21601, "properties": { "east": "low", "north": "low", @@ -189173,7 +179418,7 @@ } }, { - "id": 22743, + "id": 21602, "properties": { "east": "low", "north": "low", @@ -189184,7 +179429,7 @@ } }, { - "id": 22744, + "id": 21603, "properties": { "east": "low", "north": "low", @@ -189195,7 +179440,7 @@ } }, { - "id": 22745, + "id": 21604, "properties": { "east": "low", "north": "low", @@ -189206,7 +179451,7 @@ } }, { - "id": 22746, + "id": 21605, "properties": { "east": "low", "north": "low", @@ -189217,7 +179462,7 @@ } }, { - "id": 22747, + "id": 21606, "properties": { "east": "low", "north": "tall", @@ -189228,7 +179473,7 @@ } }, { - "id": 22748, + "id": 21607, "properties": { "east": "low", "north": "tall", @@ -189239,7 +179484,7 @@ } }, { - "id": 22749, + "id": 21608, "properties": { "east": "low", "north": "tall", @@ -189250,7 +179495,7 @@ } }, { - "id": 22750, + "id": 21609, "properties": { "east": "low", "north": "tall", @@ -189261,7 +179506,7 @@ } }, { - "id": 22751, + "id": 21610, "properties": { "east": "low", "north": "tall", @@ -189272,7 +179517,7 @@ } }, { - "id": 22752, + "id": 21611, "properties": { "east": "low", "north": "tall", @@ -189283,7 +179528,7 @@ } }, { - "id": 22753, + "id": 21612, "properties": { "east": "low", "north": "tall", @@ -189294,7 +179539,7 @@ } }, { - "id": 22754, + "id": 21613, "properties": { "east": "low", "north": "tall", @@ -189305,7 +179550,7 @@ } }, { - "id": 22755, + "id": 21614, "properties": { "east": "low", "north": "tall", @@ -189316,7 +179561,7 @@ } }, { - "id": 22756, + "id": 21615, "properties": { "east": "low", "north": "tall", @@ -189327,7 +179572,7 @@ } }, { - "id": 22757, + "id": 21616, "properties": { "east": "low", "north": "tall", @@ -189338,7 +179583,7 @@ } }, { - "id": 22758, + "id": 21617, "properties": { "east": "low", "north": "tall", @@ -189349,7 +179594,7 @@ } }, { - "id": 22759, + "id": 21618, "properties": { "east": "low", "north": "tall", @@ -189360,7 +179605,7 @@ } }, { - "id": 22760, + "id": 21619, "properties": { "east": "low", "north": "tall", @@ -189371,7 +179616,7 @@ } }, { - "id": 22761, + "id": 21620, "properties": { "east": "low", "north": "tall", @@ -189382,7 +179627,7 @@ } }, { - "id": 22762, + "id": 21621, "properties": { "east": "low", "north": "tall", @@ -189393,7 +179638,7 @@ } }, { - "id": 22763, + "id": 21622, "properties": { "east": "low", "north": "tall", @@ -189404,7 +179649,7 @@ } }, { - "id": 22764, + "id": 21623, "properties": { "east": "low", "north": "tall", @@ -189415,7 +179660,7 @@ } }, { - "id": 22765, + "id": 21624, "properties": { "east": "low", "north": "tall", @@ -189426,7 +179671,7 @@ } }, { - "id": 22766, + "id": 21625, "properties": { "east": "low", "north": "tall", @@ -189437,7 +179682,7 @@ } }, { - "id": 22767, + "id": 21626, "properties": { "east": "low", "north": "tall", @@ -189448,7 +179693,7 @@ } }, { - "id": 22768, + "id": 21627, "properties": { "east": "low", "north": "tall", @@ -189459,7 +179704,7 @@ } }, { - "id": 22769, + "id": 21628, "properties": { "east": "low", "north": "tall", @@ -189470,7 +179715,7 @@ } }, { - "id": 22770, + "id": 21629, "properties": { "east": "low", "north": "tall", @@ -189481,7 +179726,7 @@ } }, { - "id": 22771, + "id": 21630, "properties": { "east": "low", "north": "tall", @@ -189492,7 +179737,7 @@ } }, { - "id": 22772, + "id": 21631, "properties": { "east": "low", "north": "tall", @@ -189503,7 +179748,7 @@ } }, { - "id": 22773, + "id": 21632, "properties": { "east": "low", "north": "tall", @@ -189514,7 +179759,7 @@ } }, { - "id": 22774, + "id": 21633, "properties": { "east": "low", "north": "tall", @@ -189525,7 +179770,7 @@ } }, { - "id": 22775, + "id": 21634, "properties": { "east": "low", "north": "tall", @@ -189536,7 +179781,7 @@ } }, { - "id": 22776, + "id": 21635, "properties": { "east": "low", "north": "tall", @@ -189547,7 +179792,7 @@ } }, { - "id": 22777, + "id": 21636, "properties": { "east": "low", "north": "tall", @@ -189558,7 +179803,7 @@ } }, { - "id": 22778, + "id": 21637, "properties": { "east": "low", "north": "tall", @@ -189569,7 +179814,7 @@ } }, { - "id": 22779, + "id": 21638, "properties": { "east": "low", "north": "tall", @@ -189580,7 +179825,7 @@ } }, { - "id": 22780, + "id": 21639, "properties": { "east": "low", "north": "tall", @@ -189591,7 +179836,7 @@ } }, { - "id": 22781, + "id": 21640, "properties": { "east": "low", "north": "tall", @@ -189602,7 +179847,7 @@ } }, { - "id": 22782, + "id": 21641, "properties": { "east": "low", "north": "tall", @@ -189613,7 +179858,7 @@ } }, { - "id": 22783, + "id": 21642, "properties": { "east": "tall", "north": "none", @@ -189624,7 +179869,7 @@ } }, { - "id": 22784, + "id": 21643, "properties": { "east": "tall", "north": "none", @@ -189635,7 +179880,7 @@ } }, { - "id": 22785, + "id": 21644, "properties": { "east": "tall", "north": "none", @@ -189646,7 +179891,7 @@ } }, { - "id": 22786, + "id": 21645, "properties": { "east": "tall", "north": "none", @@ -189657,7 +179902,7 @@ } }, { - "id": 22787, + "id": 21646, "properties": { "east": "tall", "north": "none", @@ -189668,7 +179913,7 @@ } }, { - "id": 22788, + "id": 21647, "properties": { "east": "tall", "north": "none", @@ -189679,7 +179924,7 @@ } }, { - "id": 22789, + "id": 21648, "properties": { "east": "tall", "north": "none", @@ -189690,7 +179935,7 @@ } }, { - "id": 22790, + "id": 21649, "properties": { "east": "tall", "north": "none", @@ -189701,7 +179946,7 @@ } }, { - "id": 22791, + "id": 21650, "properties": { "east": "tall", "north": "none", @@ -189712,7 +179957,7 @@ } }, { - "id": 22792, + "id": 21651, "properties": { "east": "tall", "north": "none", @@ -189723,7 +179968,7 @@ } }, { - "id": 22793, + "id": 21652, "properties": { "east": "tall", "north": "none", @@ -189734,7 +179979,7 @@ } }, { - "id": 22794, + "id": 21653, "properties": { "east": "tall", "north": "none", @@ -189745,7 +179990,7 @@ } }, { - "id": 22795, + "id": 21654, "properties": { "east": "tall", "north": "none", @@ -189756,7 +180001,7 @@ } }, { - "id": 22796, + "id": 21655, "properties": { "east": "tall", "north": "none", @@ -189767,7 +180012,7 @@ } }, { - "id": 22797, + "id": 21656, "properties": { "east": "tall", "north": "none", @@ -189778,7 +180023,7 @@ } }, { - "id": 22798, + "id": 21657, "properties": { "east": "tall", "north": "none", @@ -189789,7 +180034,7 @@ } }, { - "id": 22799, + "id": 21658, "properties": { "east": "tall", "north": "none", @@ -189800,7 +180045,7 @@ } }, { - "id": 22800, + "id": 21659, "properties": { "east": "tall", "north": "none", @@ -189811,7 +180056,7 @@ } }, { - "id": 22801, + "id": 21660, "properties": { "east": "tall", "north": "none", @@ -189822,7 +180067,7 @@ } }, { - "id": 22802, + "id": 21661, "properties": { "east": "tall", "north": "none", @@ -189833,7 +180078,7 @@ } }, { - "id": 22803, + "id": 21662, "properties": { "east": "tall", "north": "none", @@ -189844,7 +180089,7 @@ } }, { - "id": 22804, + "id": 21663, "properties": { "east": "tall", "north": "none", @@ -189855,7 +180100,7 @@ } }, { - "id": 22805, + "id": 21664, "properties": { "east": "tall", "north": "none", @@ -189866,7 +180111,7 @@ } }, { - "id": 22806, + "id": 21665, "properties": { "east": "tall", "north": "none", @@ -189877,7 +180122,7 @@ } }, { - "id": 22807, + "id": 21666, "properties": { "east": "tall", "north": "none", @@ -189888,7 +180133,7 @@ } }, { - "id": 22808, + "id": 21667, "properties": { "east": "tall", "north": "none", @@ -189899,7 +180144,7 @@ } }, { - "id": 22809, + "id": 21668, "properties": { "east": "tall", "north": "none", @@ -189910,7 +180155,7 @@ } }, { - "id": 22810, + "id": 21669, "properties": { "east": "tall", "north": "none", @@ -189921,7 +180166,7 @@ } }, { - "id": 22811, + "id": 21670, "properties": { "east": "tall", "north": "none", @@ -189932,7 +180177,7 @@ } }, { - "id": 22812, + "id": 21671, "properties": { "east": "tall", "north": "none", @@ -189943,7 +180188,7 @@ } }, { - "id": 22813, + "id": 21672, "properties": { "east": "tall", "north": "none", @@ -189954,7 +180199,7 @@ } }, { - "id": 22814, + "id": 21673, "properties": { "east": "tall", "north": "none", @@ -189965,7 +180210,7 @@ } }, { - "id": 22815, + "id": 21674, "properties": { "east": "tall", "north": "none", @@ -189976,7 +180221,7 @@ } }, { - "id": 22816, + "id": 21675, "properties": { "east": "tall", "north": "none", @@ -189987,7 +180232,7 @@ } }, { - "id": 22817, + "id": 21676, "properties": { "east": "tall", "north": "none", @@ -189998,7 +180243,7 @@ } }, { - "id": 22818, + "id": 21677, "properties": { "east": "tall", "north": "none", @@ -190009,7 +180254,7 @@ } }, { - "id": 22819, + "id": 21678, "properties": { "east": "tall", "north": "low", @@ -190020,7 +180265,7 @@ } }, { - "id": 22820, + "id": 21679, "properties": { "east": "tall", "north": "low", @@ -190031,7 +180276,7 @@ } }, { - "id": 22821, + "id": 21680, "properties": { "east": "tall", "north": "low", @@ -190042,7 +180287,7 @@ } }, { - "id": 22822, + "id": 21681, "properties": { "east": "tall", "north": "low", @@ -190053,7 +180298,7 @@ } }, { - "id": 22823, + "id": 21682, "properties": { "east": "tall", "north": "low", @@ -190064,7 +180309,7 @@ } }, { - "id": 22824, + "id": 21683, "properties": { "east": "tall", "north": "low", @@ -190075,7 +180320,7 @@ } }, { - "id": 22825, + "id": 21684, "properties": { "east": "tall", "north": "low", @@ -190086,7 +180331,7 @@ } }, { - "id": 22826, + "id": 21685, "properties": { "east": "tall", "north": "low", @@ -190097,7 +180342,7 @@ } }, { - "id": 22827, + "id": 21686, "properties": { "east": "tall", "north": "low", @@ -190108,7 +180353,7 @@ } }, { - "id": 22828, + "id": 21687, "properties": { "east": "tall", "north": "low", @@ -190119,7 +180364,7 @@ } }, { - "id": 22829, + "id": 21688, "properties": { "east": "tall", "north": "low", @@ -190130,7 +180375,7 @@ } }, { - "id": 22830, + "id": 21689, "properties": { "east": "tall", "north": "low", @@ -190141,7 +180386,7 @@ } }, { - "id": 22831, + "id": 21690, "properties": { "east": "tall", "north": "low", @@ -190152,7 +180397,7 @@ } }, { - "id": 22832, + "id": 21691, "properties": { "east": "tall", "north": "low", @@ -190163,7 +180408,7 @@ } }, { - "id": 22833, + "id": 21692, "properties": { "east": "tall", "north": "low", @@ -190174,7 +180419,7 @@ } }, { - "id": 22834, + "id": 21693, "properties": { "east": "tall", "north": "low", @@ -190185,7 +180430,7 @@ } }, { - "id": 22835, + "id": 21694, "properties": { "east": "tall", "north": "low", @@ -190196,7 +180441,7 @@ } }, { - "id": 22836, + "id": 21695, "properties": { "east": "tall", "north": "low", @@ -190207,7 +180452,7 @@ } }, { - "id": 22837, + "id": 21696, "properties": { "east": "tall", "north": "low", @@ -190218,7 +180463,7 @@ } }, { - "id": 22838, + "id": 21697, "properties": { "east": "tall", "north": "low", @@ -190229,7 +180474,7 @@ } }, { - "id": 22839, + "id": 21698, "properties": { "east": "tall", "north": "low", @@ -190240,7 +180485,7 @@ } }, { - "id": 22840, + "id": 21699, "properties": { "east": "tall", "north": "low", @@ -190251,7 +180496,7 @@ } }, { - "id": 22841, + "id": 21700, "properties": { "east": "tall", "north": "low", @@ -190262,7 +180507,7 @@ } }, { - "id": 22842, + "id": 21701, "properties": { "east": "tall", "north": "low", @@ -190273,7 +180518,7 @@ } }, { - "id": 22843, + "id": 21702, "properties": { "east": "tall", "north": "low", @@ -190284,7 +180529,7 @@ } }, { - "id": 22844, + "id": 21703, "properties": { "east": "tall", "north": "low", @@ -190295,7 +180540,7 @@ } }, { - "id": 22845, + "id": 21704, "properties": { "east": "tall", "north": "low", @@ -190306,7 +180551,7 @@ } }, { - "id": 22846, + "id": 21705, "properties": { "east": "tall", "north": "low", @@ -190317,7 +180562,7 @@ } }, { - "id": 22847, + "id": 21706, "properties": { "east": "tall", "north": "low", @@ -190328,7 +180573,7 @@ } }, { - "id": 22848, + "id": 21707, "properties": { "east": "tall", "north": "low", @@ -190339,7 +180584,7 @@ } }, { - "id": 22849, + "id": 21708, "properties": { "east": "tall", "north": "low", @@ -190350,7 +180595,7 @@ } }, { - "id": 22850, + "id": 21709, "properties": { "east": "tall", "north": "low", @@ -190361,7 +180606,7 @@ } }, { - "id": 22851, + "id": 21710, "properties": { "east": "tall", "north": "low", @@ -190372,7 +180617,7 @@ } }, { - "id": 22852, + "id": 21711, "properties": { "east": "tall", "north": "low", @@ -190383,7 +180628,7 @@ } }, { - "id": 22853, + "id": 21712, "properties": { "east": "tall", "north": "low", @@ -190394,7 +180639,7 @@ } }, { - "id": 22854, + "id": 21713, "properties": { "east": "tall", "north": "low", @@ -190405,7 +180650,7 @@ } }, { - "id": 22855, + "id": 21714, "properties": { "east": "tall", "north": "tall", @@ -190416,7 +180661,7 @@ } }, { - "id": 22856, + "id": 21715, "properties": { "east": "tall", "north": "tall", @@ -190427,7 +180672,7 @@ } }, { - "id": 22857, + "id": 21716, "properties": { "east": "tall", "north": "tall", @@ -190438,7 +180683,7 @@ } }, { - "id": 22858, + "id": 21717, "properties": { "east": "tall", "north": "tall", @@ -190449,7 +180694,7 @@ } }, { - "id": 22859, + "id": 21718, "properties": { "east": "tall", "north": "tall", @@ -190460,7 +180705,7 @@ } }, { - "id": 22860, + "id": 21719, "properties": { "east": "tall", "north": "tall", @@ -190471,7 +180716,7 @@ } }, { - "id": 22861, + "id": 21720, "properties": { "east": "tall", "north": "tall", @@ -190482,7 +180727,7 @@ } }, { - "id": 22862, + "id": 21721, "properties": { "east": "tall", "north": "tall", @@ -190493,7 +180738,7 @@ } }, { - "id": 22863, + "id": 21722, "properties": { "east": "tall", "north": "tall", @@ -190504,7 +180749,7 @@ } }, { - "id": 22864, + "id": 21723, "properties": { "east": "tall", "north": "tall", @@ -190515,7 +180760,7 @@ } }, { - "id": 22865, + "id": 21724, "properties": { "east": "tall", "north": "tall", @@ -190526,7 +180771,7 @@ } }, { - "id": 22866, + "id": 21725, "properties": { "east": "tall", "north": "tall", @@ -190537,7 +180782,7 @@ } }, { - "id": 22867, + "id": 21726, "properties": { "east": "tall", "north": "tall", @@ -190548,7 +180793,7 @@ } }, { - "id": 22868, + "id": 21727, "properties": { "east": "tall", "north": "tall", @@ -190559,7 +180804,7 @@ } }, { - "id": 22869, + "id": 21728, "properties": { "east": "tall", "north": "tall", @@ -190570,7 +180815,7 @@ } }, { - "id": 22870, + "id": 21729, "properties": { "east": "tall", "north": "tall", @@ -190581,7 +180826,7 @@ } }, { - "id": 22871, + "id": 21730, "properties": { "east": "tall", "north": "tall", @@ -190592,7 +180837,7 @@ } }, { - "id": 22872, + "id": 21731, "properties": { "east": "tall", "north": "tall", @@ -190603,7 +180848,7 @@ } }, { - "id": 22873, + "id": 21732, "properties": { "east": "tall", "north": "tall", @@ -190614,7 +180859,7 @@ } }, { - "id": 22874, + "id": 21733, "properties": { "east": "tall", "north": "tall", @@ -190625,7 +180870,7 @@ } }, { - "id": 22875, + "id": 21734, "properties": { "east": "tall", "north": "tall", @@ -190636,7 +180881,7 @@ } }, { - "id": 22876, + "id": 21735, "properties": { "east": "tall", "north": "tall", @@ -190647,7 +180892,7 @@ } }, { - "id": 22877, + "id": 21736, "properties": { "east": "tall", "north": "tall", @@ -190658,7 +180903,7 @@ } }, { - "id": 22878, + "id": 21737, "properties": { "east": "tall", "north": "tall", @@ -190669,7 +180914,7 @@ } }, { - "id": 22879, + "id": 21738, "properties": { "east": "tall", "north": "tall", @@ -190680,7 +180925,7 @@ } }, { - "id": 22880, + "id": 21739, "properties": { "east": "tall", "north": "tall", @@ -190691,7 +180936,7 @@ } }, { - "id": 22881, + "id": 21740, "properties": { "east": "tall", "north": "tall", @@ -190702,7 +180947,7 @@ } }, { - "id": 22882, + "id": 21741, "properties": { "east": "tall", "north": "tall", @@ -190713,7 +180958,7 @@ } }, { - "id": 22883, + "id": 21742, "properties": { "east": "tall", "north": "tall", @@ -190724,7 +180969,7 @@ } }, { - "id": 22884, + "id": 21743, "properties": { "east": "tall", "north": "tall", @@ -190735,7 +180980,7 @@ } }, { - "id": 22885, + "id": 21744, "properties": { "east": "tall", "north": "tall", @@ -190746,7 +180991,7 @@ } }, { - "id": 22886, + "id": 21745, "properties": { "east": "tall", "north": "tall", @@ -190757,7 +181002,7 @@ } }, { - "id": 22887, + "id": 21746, "properties": { "east": "tall", "north": "tall", @@ -190768,7 +181013,7 @@ } }, { - "id": 22888, + "id": 21747, "properties": { "east": "tall", "north": "tall", @@ -190779,7 +181024,7 @@ } }, { - "id": 22889, + "id": 21748, "properties": { "east": "tall", "north": "tall", @@ -190790,7 +181035,7 @@ } }, { - "id": 22890, + "id": 21749, "properties": { "east": "tall", "north": "tall", @@ -190810,7 +181055,7 @@ "states": [ { "default": true, - "id": 28135 + "id": 26378 } ] }, @@ -190832,21 +181077,21 @@ }, "states": [ { - "id": 28216, + "id": 26459, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 28217, + "id": 26460, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 28218, + "id": 26461, "properties": { "type": "bottom", "waterlogged": "true" @@ -190854,21 +181099,21 @@ }, { "default": true, - "id": 28219, + "id": 26462, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 28220, + "id": 26463, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 28221, + "id": 26464, "properties": { "type": "double", "waterlogged": "false" @@ -190909,7 +181154,7 @@ }, "states": [ { - "id": 28136, + "id": 26379, "properties": { "facing": "north", "half": "top", @@ -190918,7 +181163,7 @@ } }, { - "id": 28137, + "id": 26380, "properties": { "facing": "north", "half": "top", @@ -190927,7 +181172,7 @@ } }, { - "id": 28138, + "id": 26381, "properties": { "facing": "north", "half": "top", @@ -190936,7 +181181,7 @@ } }, { - "id": 28139, + "id": 26382, "properties": { "facing": "north", "half": "top", @@ -190945,7 +181190,7 @@ } }, { - "id": 28140, + "id": 26383, "properties": { "facing": "north", "half": "top", @@ -190954,7 +181199,7 @@ } }, { - "id": 28141, + "id": 26384, "properties": { "facing": "north", "half": "top", @@ -190963,7 +181208,7 @@ } }, { - "id": 28142, + "id": 26385, "properties": { "facing": "north", "half": "top", @@ -190972,7 +181217,7 @@ } }, { - "id": 28143, + "id": 26386, "properties": { "facing": "north", "half": "top", @@ -190981,7 +181226,7 @@ } }, { - "id": 28144, + "id": 26387, "properties": { "facing": "north", "half": "top", @@ -190990,7 +181235,7 @@ } }, { - "id": 28145, + "id": 26388, "properties": { "facing": "north", "half": "top", @@ -190999,7 +181244,7 @@ } }, { - "id": 28146, + "id": 26389, "properties": { "facing": "north", "half": "bottom", @@ -191009,7 +181254,7 @@ }, { "default": true, - "id": 28147, + "id": 26390, "properties": { "facing": "north", "half": "bottom", @@ -191018,7 +181263,7 @@ } }, { - "id": 28148, + "id": 26391, "properties": { "facing": "north", "half": "bottom", @@ -191027,7 +181272,7 @@ } }, { - "id": 28149, + "id": 26392, "properties": { "facing": "north", "half": "bottom", @@ -191036,7 +181281,7 @@ } }, { - "id": 28150, + "id": 26393, "properties": { "facing": "north", "half": "bottom", @@ -191045,7 +181290,7 @@ } }, { - "id": 28151, + "id": 26394, "properties": { "facing": "north", "half": "bottom", @@ -191054,7 +181299,7 @@ } }, { - "id": 28152, + "id": 26395, "properties": { "facing": "north", "half": "bottom", @@ -191063,7 +181308,7 @@ } }, { - "id": 28153, + "id": 26396, "properties": { "facing": "north", "half": "bottom", @@ -191072,7 +181317,7 @@ } }, { - "id": 28154, + "id": 26397, "properties": { "facing": "north", "half": "bottom", @@ -191081,7 +181326,7 @@ } }, { - "id": 28155, + "id": 26398, "properties": { "facing": "north", "half": "bottom", @@ -191090,7 +181335,7 @@ } }, { - "id": 28156, + "id": 26399, "properties": { "facing": "south", "half": "top", @@ -191099,7 +181344,7 @@ } }, { - "id": 28157, + "id": 26400, "properties": { "facing": "south", "half": "top", @@ -191108,7 +181353,7 @@ } }, { - "id": 28158, + "id": 26401, "properties": { "facing": "south", "half": "top", @@ -191117,7 +181362,7 @@ } }, { - "id": 28159, + "id": 26402, "properties": { "facing": "south", "half": "top", @@ -191126,7 +181371,7 @@ } }, { - "id": 28160, + "id": 26403, "properties": { "facing": "south", "half": "top", @@ -191135,7 +181380,7 @@ } }, { - "id": 28161, + "id": 26404, "properties": { "facing": "south", "half": "top", @@ -191144,7 +181389,7 @@ } }, { - "id": 28162, + "id": 26405, "properties": { "facing": "south", "half": "top", @@ -191153,7 +181398,7 @@ } }, { - "id": 28163, + "id": 26406, "properties": { "facing": "south", "half": "top", @@ -191162,7 +181407,7 @@ } }, { - "id": 28164, + "id": 26407, "properties": { "facing": "south", "half": "top", @@ -191171,7 +181416,7 @@ } }, { - "id": 28165, + "id": 26408, "properties": { "facing": "south", "half": "top", @@ -191180,7 +181425,7 @@ } }, { - "id": 28166, + "id": 26409, "properties": { "facing": "south", "half": "bottom", @@ -191189,7 +181434,7 @@ } }, { - "id": 28167, + "id": 26410, "properties": { "facing": "south", "half": "bottom", @@ -191198,7 +181443,7 @@ } }, { - "id": 28168, + "id": 26411, "properties": { "facing": "south", "half": "bottom", @@ -191207,7 +181452,7 @@ } }, { - "id": 28169, + "id": 26412, "properties": { "facing": "south", "half": "bottom", @@ -191216,7 +181461,7 @@ } }, { - "id": 28170, + "id": 26413, "properties": { "facing": "south", "half": "bottom", @@ -191225,7 +181470,7 @@ } }, { - "id": 28171, + "id": 26414, "properties": { "facing": "south", "half": "bottom", @@ -191234,7 +181479,7 @@ } }, { - "id": 28172, + "id": 26415, "properties": { "facing": "south", "half": "bottom", @@ -191243,7 +181488,7 @@ } }, { - "id": 28173, + "id": 26416, "properties": { "facing": "south", "half": "bottom", @@ -191252,7 +181497,7 @@ } }, { - "id": 28174, + "id": 26417, "properties": { "facing": "south", "half": "bottom", @@ -191261,7 +181506,7 @@ } }, { - "id": 28175, + "id": 26418, "properties": { "facing": "south", "half": "bottom", @@ -191270,7 +181515,7 @@ } }, { - "id": 28176, + "id": 26419, "properties": { "facing": "west", "half": "top", @@ -191279,7 +181524,7 @@ } }, { - "id": 28177, + "id": 26420, "properties": { "facing": "west", "half": "top", @@ -191288,7 +181533,7 @@ } }, { - "id": 28178, + "id": 26421, "properties": { "facing": "west", "half": "top", @@ -191297,7 +181542,7 @@ } }, { - "id": 28179, + "id": 26422, "properties": { "facing": "west", "half": "top", @@ -191306,7 +181551,7 @@ } }, { - "id": 28180, + "id": 26423, "properties": { "facing": "west", "half": "top", @@ -191315,7 +181560,7 @@ } }, { - "id": 28181, + "id": 26424, "properties": { "facing": "west", "half": "top", @@ -191324,7 +181569,7 @@ } }, { - "id": 28182, + "id": 26425, "properties": { "facing": "west", "half": "top", @@ -191333,7 +181578,7 @@ } }, { - "id": 28183, + "id": 26426, "properties": { "facing": "west", "half": "top", @@ -191342,7 +181587,7 @@ } }, { - "id": 28184, + "id": 26427, "properties": { "facing": "west", "half": "top", @@ -191351,7 +181596,7 @@ } }, { - "id": 28185, + "id": 26428, "properties": { "facing": "west", "half": "top", @@ -191360,7 +181605,7 @@ } }, { - "id": 28186, + "id": 26429, "properties": { "facing": "west", "half": "bottom", @@ -191369,7 +181614,7 @@ } }, { - "id": 28187, + "id": 26430, "properties": { "facing": "west", "half": "bottom", @@ -191378,7 +181623,7 @@ } }, { - "id": 28188, + "id": 26431, "properties": { "facing": "west", "half": "bottom", @@ -191387,7 +181632,7 @@ } }, { - "id": 28189, + "id": 26432, "properties": { "facing": "west", "half": "bottom", @@ -191396,7 +181641,7 @@ } }, { - "id": 28190, + "id": 26433, "properties": { "facing": "west", "half": "bottom", @@ -191405,7 +181650,7 @@ } }, { - "id": 28191, + "id": 26434, "properties": { "facing": "west", "half": "bottom", @@ -191414,7 +181659,7 @@ } }, { - "id": 28192, + "id": 26435, "properties": { "facing": "west", "half": "bottom", @@ -191423,7 +181668,7 @@ } }, { - "id": 28193, + "id": 26436, "properties": { "facing": "west", "half": "bottom", @@ -191432,7 +181677,7 @@ } }, { - "id": 28194, + "id": 26437, "properties": { "facing": "west", "half": "bottom", @@ -191441,7 +181686,7 @@ } }, { - "id": 28195, + "id": 26438, "properties": { "facing": "west", "half": "bottom", @@ -191450,7 +181695,7 @@ } }, { - "id": 28196, + "id": 26439, "properties": { "facing": "east", "half": "top", @@ -191459,7 +181704,7 @@ } }, { - "id": 28197, + "id": 26440, "properties": { "facing": "east", "half": "top", @@ -191468,7 +181713,7 @@ } }, { - "id": 28198, + "id": 26441, "properties": { "facing": "east", "half": "top", @@ -191477,7 +181722,7 @@ } }, { - "id": 28199, + "id": 26442, "properties": { "facing": "east", "half": "top", @@ -191486,7 +181731,7 @@ } }, { - "id": 28200, + "id": 26443, "properties": { "facing": "east", "half": "top", @@ -191495,7 +181740,7 @@ } }, { - "id": 28201, + "id": 26444, "properties": { "facing": "east", "half": "top", @@ -191504,7 +181749,7 @@ } }, { - "id": 28202, + "id": 26445, "properties": { "facing": "east", "half": "top", @@ -191513,7 +181758,7 @@ } }, { - "id": 28203, + "id": 26446, "properties": { "facing": "east", "half": "top", @@ -191522,7 +181767,7 @@ } }, { - "id": 28204, + "id": 26447, "properties": { "facing": "east", "half": "top", @@ -191531,7 +181776,7 @@ } }, { - "id": 28205, + "id": 26448, "properties": { "facing": "east", "half": "top", @@ -191540,7 +181785,7 @@ } }, { - "id": 28206, + "id": 26449, "properties": { "facing": "east", "half": "bottom", @@ -191549,7 +181794,7 @@ } }, { - "id": 28207, + "id": 26450, "properties": { "facing": "east", "half": "bottom", @@ -191558,7 +181803,7 @@ } }, { - "id": 28208, + "id": 26451, "properties": { "facing": "east", "half": "bottom", @@ -191567,7 +181812,7 @@ } }, { - "id": 28209, + "id": 26452, "properties": { "facing": "east", "half": "bottom", @@ -191576,7 +181821,7 @@ } }, { - "id": 28210, + "id": 26453, "properties": { "facing": "east", "half": "bottom", @@ -191585,7 +181830,7 @@ } }, { - "id": 28211, + "id": 26454, "properties": { "facing": "east", "half": "bottom", @@ -191594,7 +181839,7 @@ } }, { - "id": 28212, + "id": 26455, "properties": { "facing": "east", "half": "bottom", @@ -191603,7 +181848,7 @@ } }, { - "id": 28213, + "id": 26456, "properties": { "facing": "east", "half": "bottom", @@ -191612,7 +181857,7 @@ } }, { - "id": 28214, + "id": 26457, "properties": { "facing": "east", "half": "bottom", @@ -191621,7 +181866,7 @@ } }, { - "id": 28215, + "id": 26458, "properties": { "facing": "east", "half": "bottom", @@ -191668,7 +181913,7 @@ }, "states": [ { - "id": 28222, + "id": 26465, "properties": { "east": "none", "north": "none", @@ -191679,7 +181924,7 @@ } }, { - "id": 28223, + "id": 26466, "properties": { "east": "none", "north": "none", @@ -191690,7 +181935,7 @@ } }, { - "id": 28224, + "id": 26467, "properties": { "east": "none", "north": "none", @@ -191702,7 +181947,7 @@ }, { "default": true, - "id": 28225, + "id": 26468, "properties": { "east": "none", "north": "none", @@ -191713,7 +181958,7 @@ } }, { - "id": 28226, + "id": 26469, "properties": { "east": "none", "north": "none", @@ -191724,7 +181969,7 @@ } }, { - "id": 28227, + "id": 26470, "properties": { "east": "none", "north": "none", @@ -191735,7 +181980,7 @@ } }, { - "id": 28228, + "id": 26471, "properties": { "east": "none", "north": "none", @@ -191746,7 +181991,7 @@ } }, { - "id": 28229, + "id": 26472, "properties": { "east": "none", "north": "none", @@ -191757,7 +182002,7 @@ } }, { - "id": 28230, + "id": 26473, "properties": { "east": "none", "north": "none", @@ -191768,7 +182013,7 @@ } }, { - "id": 28231, + "id": 26474, "properties": { "east": "none", "north": "none", @@ -191779,7 +182024,7 @@ } }, { - "id": 28232, + "id": 26475, "properties": { "east": "none", "north": "none", @@ -191790,7 +182035,7 @@ } }, { - "id": 28233, + "id": 26476, "properties": { "east": "none", "north": "none", @@ -191801,7 +182046,7 @@ } }, { - "id": 28234, + "id": 26477, "properties": { "east": "none", "north": "none", @@ -191812,7 +182057,7 @@ } }, { - "id": 28235, + "id": 26478, "properties": { "east": "none", "north": "none", @@ -191823,7 +182068,7 @@ } }, { - "id": 28236, + "id": 26479, "properties": { "east": "none", "north": "none", @@ -191834,7 +182079,7 @@ } }, { - "id": 28237, + "id": 26480, "properties": { "east": "none", "north": "none", @@ -191845,7 +182090,7 @@ } }, { - "id": 28238, + "id": 26481, "properties": { "east": "none", "north": "none", @@ -191856,7 +182101,7 @@ } }, { - "id": 28239, + "id": 26482, "properties": { "east": "none", "north": "none", @@ -191867,7 +182112,7 @@ } }, { - "id": 28240, + "id": 26483, "properties": { "east": "none", "north": "none", @@ -191878,7 +182123,7 @@ } }, { - "id": 28241, + "id": 26484, "properties": { "east": "none", "north": "none", @@ -191889,7 +182134,7 @@ } }, { - "id": 28242, + "id": 26485, "properties": { "east": "none", "north": "none", @@ -191900,7 +182145,7 @@ } }, { - "id": 28243, + "id": 26486, "properties": { "east": "none", "north": "none", @@ -191911,7 +182156,7 @@ } }, { - "id": 28244, + "id": 26487, "properties": { "east": "none", "north": "none", @@ -191922,7 +182167,7 @@ } }, { - "id": 28245, + "id": 26488, "properties": { "east": "none", "north": "none", @@ -191933,7 +182178,7 @@ } }, { - "id": 28246, + "id": 26489, "properties": { "east": "none", "north": "none", @@ -191944,7 +182189,7 @@ } }, { - "id": 28247, + "id": 26490, "properties": { "east": "none", "north": "none", @@ -191955,7 +182200,7 @@ } }, { - "id": 28248, + "id": 26491, "properties": { "east": "none", "north": "none", @@ -191966,7 +182211,7 @@ } }, { - "id": 28249, + "id": 26492, "properties": { "east": "none", "north": "none", @@ -191977,7 +182222,7 @@ } }, { - "id": 28250, + "id": 26493, "properties": { "east": "none", "north": "none", @@ -191988,7 +182233,7 @@ } }, { - "id": 28251, + "id": 26494, "properties": { "east": "none", "north": "none", @@ -191999,7 +182244,7 @@ } }, { - "id": 28252, + "id": 26495, "properties": { "east": "none", "north": "none", @@ -192010,7 +182255,7 @@ } }, { - "id": 28253, + "id": 26496, "properties": { "east": "none", "north": "none", @@ -192021,7 +182266,7 @@ } }, { - "id": 28254, + "id": 26497, "properties": { "east": "none", "north": "none", @@ -192032,7 +182277,7 @@ } }, { - "id": 28255, + "id": 26498, "properties": { "east": "none", "north": "none", @@ -192043,7 +182288,7 @@ } }, { - "id": 28256, + "id": 26499, "properties": { "east": "none", "north": "none", @@ -192054,7 +182299,7 @@ } }, { - "id": 28257, + "id": 26500, "properties": { "east": "none", "north": "none", @@ -192065,7 +182310,7 @@ } }, { - "id": 28258, + "id": 26501, "properties": { "east": "none", "north": "low", @@ -192076,7 +182321,7 @@ } }, { - "id": 28259, + "id": 26502, "properties": { "east": "none", "north": "low", @@ -192087,7 +182332,7 @@ } }, { - "id": 28260, + "id": 26503, "properties": { "east": "none", "north": "low", @@ -192098,7 +182343,7 @@ } }, { - "id": 28261, + "id": 26504, "properties": { "east": "none", "north": "low", @@ -192109,7 +182354,7 @@ } }, { - "id": 28262, + "id": 26505, "properties": { "east": "none", "north": "low", @@ -192120,7 +182365,7 @@ } }, { - "id": 28263, + "id": 26506, "properties": { "east": "none", "north": "low", @@ -192131,7 +182376,7 @@ } }, { - "id": 28264, + "id": 26507, "properties": { "east": "none", "north": "low", @@ -192142,7 +182387,7 @@ } }, { - "id": 28265, + "id": 26508, "properties": { "east": "none", "north": "low", @@ -192153,7 +182398,7 @@ } }, { - "id": 28266, + "id": 26509, "properties": { "east": "none", "north": "low", @@ -192164,7 +182409,7 @@ } }, { - "id": 28267, + "id": 26510, "properties": { "east": "none", "north": "low", @@ -192175,7 +182420,7 @@ } }, { - "id": 28268, + "id": 26511, "properties": { "east": "none", "north": "low", @@ -192186,7 +182431,7 @@ } }, { - "id": 28269, + "id": 26512, "properties": { "east": "none", "north": "low", @@ -192197,7 +182442,7 @@ } }, { - "id": 28270, + "id": 26513, "properties": { "east": "none", "north": "low", @@ -192208,7 +182453,7 @@ } }, { - "id": 28271, + "id": 26514, "properties": { "east": "none", "north": "low", @@ -192219,7 +182464,7 @@ } }, { - "id": 28272, + "id": 26515, "properties": { "east": "none", "north": "low", @@ -192230,7 +182475,7 @@ } }, { - "id": 28273, + "id": 26516, "properties": { "east": "none", "north": "low", @@ -192241,7 +182486,7 @@ } }, { - "id": 28274, + "id": 26517, "properties": { "east": "none", "north": "low", @@ -192252,7 +182497,7 @@ } }, { - "id": 28275, + "id": 26518, "properties": { "east": "none", "north": "low", @@ -192263,7 +182508,7 @@ } }, { - "id": 28276, + "id": 26519, "properties": { "east": "none", "north": "low", @@ -192274,7 +182519,7 @@ } }, { - "id": 28277, + "id": 26520, "properties": { "east": "none", "north": "low", @@ -192285,7 +182530,7 @@ } }, { - "id": 28278, + "id": 26521, "properties": { "east": "none", "north": "low", @@ -192296,7 +182541,7 @@ } }, { - "id": 28279, + "id": 26522, "properties": { "east": "none", "north": "low", @@ -192307,7 +182552,7 @@ } }, { - "id": 28280, + "id": 26523, "properties": { "east": "none", "north": "low", @@ -192318,7 +182563,7 @@ } }, { - "id": 28281, + "id": 26524, "properties": { "east": "none", "north": "low", @@ -192329,7 +182574,7 @@ } }, { - "id": 28282, + "id": 26525, "properties": { "east": "none", "north": "low", @@ -192340,7 +182585,7 @@ } }, { - "id": 28283, + "id": 26526, "properties": { "east": "none", "north": "low", @@ -192351,7 +182596,7 @@ } }, { - "id": 28284, + "id": 26527, "properties": { "east": "none", "north": "low", @@ -192362,7 +182607,7 @@ } }, { - "id": 28285, + "id": 26528, "properties": { "east": "none", "north": "low", @@ -192373,7 +182618,7 @@ } }, { - "id": 28286, + "id": 26529, "properties": { "east": "none", "north": "low", @@ -192384,7 +182629,7 @@ } }, { - "id": 28287, + "id": 26530, "properties": { "east": "none", "north": "low", @@ -192395,7 +182640,7 @@ } }, { - "id": 28288, + "id": 26531, "properties": { "east": "none", "north": "low", @@ -192406,7 +182651,7 @@ } }, { - "id": 28289, + "id": 26532, "properties": { "east": "none", "north": "low", @@ -192417,7 +182662,7 @@ } }, { - "id": 28290, + "id": 26533, "properties": { "east": "none", "north": "low", @@ -192428,7 +182673,7 @@ } }, { - "id": 28291, + "id": 26534, "properties": { "east": "none", "north": "low", @@ -192439,7 +182684,7 @@ } }, { - "id": 28292, + "id": 26535, "properties": { "east": "none", "north": "low", @@ -192450,7 +182695,7 @@ } }, { - "id": 28293, + "id": 26536, "properties": { "east": "none", "north": "low", @@ -192461,7 +182706,7 @@ } }, { - "id": 28294, + "id": 26537, "properties": { "east": "none", "north": "tall", @@ -192472,7 +182717,7 @@ } }, { - "id": 28295, + "id": 26538, "properties": { "east": "none", "north": "tall", @@ -192483,7 +182728,7 @@ } }, { - "id": 28296, + "id": 26539, "properties": { "east": "none", "north": "tall", @@ -192494,7 +182739,7 @@ } }, { - "id": 28297, + "id": 26540, "properties": { "east": "none", "north": "tall", @@ -192505,7 +182750,7 @@ } }, { - "id": 28298, + "id": 26541, "properties": { "east": "none", "north": "tall", @@ -192516,7 +182761,7 @@ } }, { - "id": 28299, + "id": 26542, "properties": { "east": "none", "north": "tall", @@ -192527,7 +182772,7 @@ } }, { - "id": 28300, + "id": 26543, "properties": { "east": "none", "north": "tall", @@ -192538,7 +182783,7 @@ } }, { - "id": 28301, + "id": 26544, "properties": { "east": "none", "north": "tall", @@ -192549,7 +182794,7 @@ } }, { - "id": 28302, + "id": 26545, "properties": { "east": "none", "north": "tall", @@ -192560,7 +182805,7 @@ } }, { - "id": 28303, + "id": 26546, "properties": { "east": "none", "north": "tall", @@ -192571,7 +182816,7 @@ } }, { - "id": 28304, + "id": 26547, "properties": { "east": "none", "north": "tall", @@ -192582,7 +182827,7 @@ } }, { - "id": 28305, + "id": 26548, "properties": { "east": "none", "north": "tall", @@ -192593,7 +182838,7 @@ } }, { - "id": 28306, + "id": 26549, "properties": { "east": "none", "north": "tall", @@ -192604,7 +182849,7 @@ } }, { - "id": 28307, + "id": 26550, "properties": { "east": "none", "north": "tall", @@ -192615,7 +182860,7 @@ } }, { - "id": 28308, + "id": 26551, "properties": { "east": "none", "north": "tall", @@ -192626,7 +182871,7 @@ } }, { - "id": 28309, + "id": 26552, "properties": { "east": "none", "north": "tall", @@ -192637,7 +182882,7 @@ } }, { - "id": 28310, + "id": 26553, "properties": { "east": "none", "north": "tall", @@ -192648,7 +182893,7 @@ } }, { - "id": 28311, + "id": 26554, "properties": { "east": "none", "north": "tall", @@ -192659,7 +182904,7 @@ } }, { - "id": 28312, + "id": 26555, "properties": { "east": "none", "north": "tall", @@ -192670,7 +182915,7 @@ } }, { - "id": 28313, + "id": 26556, "properties": { "east": "none", "north": "tall", @@ -192681,7 +182926,7 @@ } }, { - "id": 28314, + "id": 26557, "properties": { "east": "none", "north": "tall", @@ -192692,7 +182937,7 @@ } }, { - "id": 28315, + "id": 26558, "properties": { "east": "none", "north": "tall", @@ -192703,7 +182948,7 @@ } }, { - "id": 28316, + "id": 26559, "properties": { "east": "none", "north": "tall", @@ -192714,7 +182959,7 @@ } }, { - "id": 28317, + "id": 26560, "properties": { "east": "none", "north": "tall", @@ -192725,7 +182970,7 @@ } }, { - "id": 28318, + "id": 26561, "properties": { "east": "none", "north": "tall", @@ -192736,7 +182981,7 @@ } }, { - "id": 28319, + "id": 26562, "properties": { "east": "none", "north": "tall", @@ -192747,7 +182992,7 @@ } }, { - "id": 28320, + "id": 26563, "properties": { "east": "none", "north": "tall", @@ -192758,7 +183003,7 @@ } }, { - "id": 28321, + "id": 26564, "properties": { "east": "none", "north": "tall", @@ -192769,7 +183014,7 @@ } }, { - "id": 28322, + "id": 26565, "properties": { "east": "none", "north": "tall", @@ -192780,7 +183025,7 @@ } }, { - "id": 28323, + "id": 26566, "properties": { "east": "none", "north": "tall", @@ -192791,7 +183036,7 @@ } }, { - "id": 28324, + "id": 26567, "properties": { "east": "none", "north": "tall", @@ -192802,7 +183047,7 @@ } }, { - "id": 28325, + "id": 26568, "properties": { "east": "none", "north": "tall", @@ -192813,7 +183058,7 @@ } }, { - "id": 28326, + "id": 26569, "properties": { "east": "none", "north": "tall", @@ -192824,7 +183069,7 @@ } }, { - "id": 28327, + "id": 26570, "properties": { "east": "none", "north": "tall", @@ -192835,7 +183080,7 @@ } }, { - "id": 28328, + "id": 26571, "properties": { "east": "none", "north": "tall", @@ -192846,7 +183091,7 @@ } }, { - "id": 28329, + "id": 26572, "properties": { "east": "none", "north": "tall", @@ -192857,7 +183102,7 @@ } }, { - "id": 28330, + "id": 26573, "properties": { "east": "low", "north": "none", @@ -192868,7 +183113,7 @@ } }, { - "id": 28331, + "id": 26574, "properties": { "east": "low", "north": "none", @@ -192879,7 +183124,7 @@ } }, { - "id": 28332, + "id": 26575, "properties": { "east": "low", "north": "none", @@ -192890,7 +183135,7 @@ } }, { - "id": 28333, + "id": 26576, "properties": { "east": "low", "north": "none", @@ -192901,7 +183146,7 @@ } }, { - "id": 28334, + "id": 26577, "properties": { "east": "low", "north": "none", @@ -192912,7 +183157,7 @@ } }, { - "id": 28335, + "id": 26578, "properties": { "east": "low", "north": "none", @@ -192923,7 +183168,7 @@ } }, { - "id": 28336, + "id": 26579, "properties": { "east": "low", "north": "none", @@ -192934,7 +183179,7 @@ } }, { - "id": 28337, + "id": 26580, "properties": { "east": "low", "north": "none", @@ -192945,7 +183190,7 @@ } }, { - "id": 28338, + "id": 26581, "properties": { "east": "low", "north": "none", @@ -192956,7 +183201,7 @@ } }, { - "id": 28339, + "id": 26582, "properties": { "east": "low", "north": "none", @@ -192967,7 +183212,7 @@ } }, { - "id": 28340, + "id": 26583, "properties": { "east": "low", "north": "none", @@ -192978,7 +183223,7 @@ } }, { - "id": 28341, + "id": 26584, "properties": { "east": "low", "north": "none", @@ -192989,7 +183234,7 @@ } }, { - "id": 28342, + "id": 26585, "properties": { "east": "low", "north": "none", @@ -193000,7 +183245,7 @@ } }, { - "id": 28343, + "id": 26586, "properties": { "east": "low", "north": "none", @@ -193011,7 +183256,7 @@ } }, { - "id": 28344, + "id": 26587, "properties": { "east": "low", "north": "none", @@ -193022,7 +183267,7 @@ } }, { - "id": 28345, + "id": 26588, "properties": { "east": "low", "north": "none", @@ -193033,7 +183278,7 @@ } }, { - "id": 28346, + "id": 26589, "properties": { "east": "low", "north": "none", @@ -193044,7 +183289,7 @@ } }, { - "id": 28347, + "id": 26590, "properties": { "east": "low", "north": "none", @@ -193055,7 +183300,7 @@ } }, { - "id": 28348, + "id": 26591, "properties": { "east": "low", "north": "none", @@ -193066,7 +183311,7 @@ } }, { - "id": 28349, + "id": 26592, "properties": { "east": "low", "north": "none", @@ -193077,7 +183322,7 @@ } }, { - "id": 28350, + "id": 26593, "properties": { "east": "low", "north": "none", @@ -193088,7 +183333,7 @@ } }, { - "id": 28351, + "id": 26594, "properties": { "east": "low", "north": "none", @@ -193099,7 +183344,7 @@ } }, { - "id": 28352, + "id": 26595, "properties": { "east": "low", "north": "none", @@ -193110,7 +183355,7 @@ } }, { - "id": 28353, + "id": 26596, "properties": { "east": "low", "north": "none", @@ -193121,7 +183366,7 @@ } }, { - "id": 28354, + "id": 26597, "properties": { "east": "low", "north": "none", @@ -193132,7 +183377,7 @@ } }, { - "id": 28355, + "id": 26598, "properties": { "east": "low", "north": "none", @@ -193143,7 +183388,7 @@ } }, { - "id": 28356, + "id": 26599, "properties": { "east": "low", "north": "none", @@ -193154,7 +183399,7 @@ } }, { - "id": 28357, + "id": 26600, "properties": { "east": "low", "north": "none", @@ -193165,7 +183410,7 @@ } }, { - "id": 28358, + "id": 26601, "properties": { "east": "low", "north": "none", @@ -193176,7 +183421,7 @@ } }, { - "id": 28359, + "id": 26602, "properties": { "east": "low", "north": "none", @@ -193187,7 +183432,7 @@ } }, { - "id": 28360, + "id": 26603, "properties": { "east": "low", "north": "none", @@ -193198,7 +183443,7 @@ } }, { - "id": 28361, + "id": 26604, "properties": { "east": "low", "north": "none", @@ -193209,7 +183454,7 @@ } }, { - "id": 28362, + "id": 26605, "properties": { "east": "low", "north": "none", @@ -193220,7 +183465,7 @@ } }, { - "id": 28363, + "id": 26606, "properties": { "east": "low", "north": "none", @@ -193231,7 +183476,7 @@ } }, { - "id": 28364, + "id": 26607, "properties": { "east": "low", "north": "none", @@ -193242,7 +183487,7 @@ } }, { - "id": 28365, + "id": 26608, "properties": { "east": "low", "north": "none", @@ -193253,7 +183498,7 @@ } }, { - "id": 28366, + "id": 26609, "properties": { "east": "low", "north": "low", @@ -193264,7 +183509,7 @@ } }, { - "id": 28367, + "id": 26610, "properties": { "east": "low", "north": "low", @@ -193275,7 +183520,7 @@ } }, { - "id": 28368, + "id": 26611, "properties": { "east": "low", "north": "low", @@ -193286,7 +183531,7 @@ } }, { - "id": 28369, + "id": 26612, "properties": { "east": "low", "north": "low", @@ -193297,7 +183542,7 @@ } }, { - "id": 28370, + "id": 26613, "properties": { "east": "low", "north": "low", @@ -193308,7 +183553,7 @@ } }, { - "id": 28371, + "id": 26614, "properties": { "east": "low", "north": "low", @@ -193319,7 +183564,7 @@ } }, { - "id": 28372, + "id": 26615, "properties": { "east": "low", "north": "low", @@ -193330,7 +183575,7 @@ } }, { - "id": 28373, + "id": 26616, "properties": { "east": "low", "north": "low", @@ -193341,7 +183586,7 @@ } }, { - "id": 28374, + "id": 26617, "properties": { "east": "low", "north": "low", @@ -193352,7 +183597,7 @@ } }, { - "id": 28375, + "id": 26618, "properties": { "east": "low", "north": "low", @@ -193363,7 +183608,7 @@ } }, { - "id": 28376, + "id": 26619, "properties": { "east": "low", "north": "low", @@ -193374,7 +183619,7 @@ } }, { - "id": 28377, + "id": 26620, "properties": { "east": "low", "north": "low", @@ -193385,7 +183630,7 @@ } }, { - "id": 28378, + "id": 26621, "properties": { "east": "low", "north": "low", @@ -193396,7 +183641,7 @@ } }, { - "id": 28379, + "id": 26622, "properties": { "east": "low", "north": "low", @@ -193407,7 +183652,7 @@ } }, { - "id": 28380, + "id": 26623, "properties": { "east": "low", "north": "low", @@ -193418,7 +183663,7 @@ } }, { - "id": 28381, + "id": 26624, "properties": { "east": "low", "north": "low", @@ -193429,7 +183674,7 @@ } }, { - "id": 28382, + "id": 26625, "properties": { "east": "low", "north": "low", @@ -193440,7 +183685,7 @@ } }, { - "id": 28383, + "id": 26626, "properties": { "east": "low", "north": "low", @@ -193451,7 +183696,7 @@ } }, { - "id": 28384, + "id": 26627, "properties": { "east": "low", "north": "low", @@ -193462,7 +183707,7 @@ } }, { - "id": 28385, + "id": 26628, "properties": { "east": "low", "north": "low", @@ -193473,7 +183718,7 @@ } }, { - "id": 28386, + "id": 26629, "properties": { "east": "low", "north": "low", @@ -193484,7 +183729,7 @@ } }, { - "id": 28387, + "id": 26630, "properties": { "east": "low", "north": "low", @@ -193495,7 +183740,7 @@ } }, { - "id": 28388, + "id": 26631, "properties": { "east": "low", "north": "low", @@ -193506,7 +183751,7 @@ } }, { - "id": 28389, + "id": 26632, "properties": { "east": "low", "north": "low", @@ -193517,7 +183762,7 @@ } }, { - "id": 28390, + "id": 26633, "properties": { "east": "low", "north": "low", @@ -193528,7 +183773,7 @@ } }, { - "id": 28391, + "id": 26634, "properties": { "east": "low", "north": "low", @@ -193539,7 +183784,7 @@ } }, { - "id": 28392, + "id": 26635, "properties": { "east": "low", "north": "low", @@ -193550,7 +183795,7 @@ } }, { - "id": 28393, + "id": 26636, "properties": { "east": "low", "north": "low", @@ -193561,7 +183806,7 @@ } }, { - "id": 28394, + "id": 26637, "properties": { "east": "low", "north": "low", @@ -193572,7 +183817,7 @@ } }, { - "id": 28395, + "id": 26638, "properties": { "east": "low", "north": "low", @@ -193583,7 +183828,7 @@ } }, { - "id": 28396, + "id": 26639, "properties": { "east": "low", "north": "low", @@ -193594,7 +183839,7 @@ } }, { - "id": 28397, + "id": 26640, "properties": { "east": "low", "north": "low", @@ -193605,7 +183850,7 @@ } }, { - "id": 28398, + "id": 26641, "properties": { "east": "low", "north": "low", @@ -193616,7 +183861,7 @@ } }, { - "id": 28399, + "id": 26642, "properties": { "east": "low", "north": "low", @@ -193627,7 +183872,7 @@ } }, { - "id": 28400, + "id": 26643, "properties": { "east": "low", "north": "low", @@ -193638,7 +183883,7 @@ } }, { - "id": 28401, + "id": 26644, "properties": { "east": "low", "north": "low", @@ -193649,7 +183894,7 @@ } }, { - "id": 28402, + "id": 26645, "properties": { "east": "low", "north": "tall", @@ -193660,7 +183905,7 @@ } }, { - "id": 28403, + "id": 26646, "properties": { "east": "low", "north": "tall", @@ -193671,7 +183916,7 @@ } }, { - "id": 28404, + "id": 26647, "properties": { "east": "low", "north": "tall", @@ -193682,7 +183927,7 @@ } }, { - "id": 28405, + "id": 26648, "properties": { "east": "low", "north": "tall", @@ -193693,7 +183938,7 @@ } }, { - "id": 28406, + "id": 26649, "properties": { "east": "low", "north": "tall", @@ -193704,7 +183949,7 @@ } }, { - "id": 28407, + "id": 26650, "properties": { "east": "low", "north": "tall", @@ -193715,7 +183960,7 @@ } }, { - "id": 28408, + "id": 26651, "properties": { "east": "low", "north": "tall", @@ -193726,7 +183971,7 @@ } }, { - "id": 28409, + "id": 26652, "properties": { "east": "low", "north": "tall", @@ -193737,7 +183982,7 @@ } }, { - "id": 28410, + "id": 26653, "properties": { "east": "low", "north": "tall", @@ -193748,7 +183993,7 @@ } }, { - "id": 28411, + "id": 26654, "properties": { "east": "low", "north": "tall", @@ -193759,7 +184004,7 @@ } }, { - "id": 28412, + "id": 26655, "properties": { "east": "low", "north": "tall", @@ -193770,7 +184015,7 @@ } }, { - "id": 28413, + "id": 26656, "properties": { "east": "low", "north": "tall", @@ -193781,7 +184026,7 @@ } }, { - "id": 28414, + "id": 26657, "properties": { "east": "low", "north": "tall", @@ -193792,7 +184037,7 @@ } }, { - "id": 28415, + "id": 26658, "properties": { "east": "low", "north": "tall", @@ -193803,7 +184048,7 @@ } }, { - "id": 28416, + "id": 26659, "properties": { "east": "low", "north": "tall", @@ -193814,7 +184059,7 @@ } }, { - "id": 28417, + "id": 26660, "properties": { "east": "low", "north": "tall", @@ -193825,7 +184070,7 @@ } }, { - "id": 28418, + "id": 26661, "properties": { "east": "low", "north": "tall", @@ -193836,7 +184081,7 @@ } }, { - "id": 28419, + "id": 26662, "properties": { "east": "low", "north": "tall", @@ -193847,7 +184092,7 @@ } }, { - "id": 28420, + "id": 26663, "properties": { "east": "low", "north": "tall", @@ -193858,7 +184103,7 @@ } }, { - "id": 28421, + "id": 26664, "properties": { "east": "low", "north": "tall", @@ -193869,7 +184114,7 @@ } }, { - "id": 28422, + "id": 26665, "properties": { "east": "low", "north": "tall", @@ -193880,7 +184125,7 @@ } }, { - "id": 28423, + "id": 26666, "properties": { "east": "low", "north": "tall", @@ -193891,7 +184136,7 @@ } }, { - "id": 28424, + "id": 26667, "properties": { "east": "low", "north": "tall", @@ -193902,7 +184147,7 @@ } }, { - "id": 28425, + "id": 26668, "properties": { "east": "low", "north": "tall", @@ -193913,7 +184158,7 @@ } }, { - "id": 28426, + "id": 26669, "properties": { "east": "low", "north": "tall", @@ -193924,7 +184169,7 @@ } }, { - "id": 28427, + "id": 26670, "properties": { "east": "low", "north": "tall", @@ -193935,7 +184180,7 @@ } }, { - "id": 28428, + "id": 26671, "properties": { "east": "low", "north": "tall", @@ -193946,7 +184191,7 @@ } }, { - "id": 28429, + "id": 26672, "properties": { "east": "low", "north": "tall", @@ -193957,7 +184202,7 @@ } }, { - "id": 28430, + "id": 26673, "properties": { "east": "low", "north": "tall", @@ -193968,7 +184213,7 @@ } }, { - "id": 28431, + "id": 26674, "properties": { "east": "low", "north": "tall", @@ -193979,7 +184224,7 @@ } }, { - "id": 28432, + "id": 26675, "properties": { "east": "low", "north": "tall", @@ -193990,7 +184235,7 @@ } }, { - "id": 28433, + "id": 26676, "properties": { "east": "low", "north": "tall", @@ -194001,7 +184246,7 @@ } }, { - "id": 28434, + "id": 26677, "properties": { "east": "low", "north": "tall", @@ -194012,7 +184257,7 @@ } }, { - "id": 28435, + "id": 26678, "properties": { "east": "low", "north": "tall", @@ -194023,7 +184268,7 @@ } }, { - "id": 28436, + "id": 26679, "properties": { "east": "low", "north": "tall", @@ -194034,7 +184279,7 @@ } }, { - "id": 28437, + "id": 26680, "properties": { "east": "low", "north": "tall", @@ -194045,7 +184290,7 @@ } }, { - "id": 28438, + "id": 26681, "properties": { "east": "tall", "north": "none", @@ -194056,7 +184301,7 @@ } }, { - "id": 28439, + "id": 26682, "properties": { "east": "tall", "north": "none", @@ -194067,7 +184312,7 @@ } }, { - "id": 28440, + "id": 26683, "properties": { "east": "tall", "north": "none", @@ -194078,7 +184323,7 @@ } }, { - "id": 28441, + "id": 26684, "properties": { "east": "tall", "north": "none", @@ -194089,7 +184334,7 @@ } }, { - "id": 28442, + "id": 26685, "properties": { "east": "tall", "north": "none", @@ -194100,7 +184345,7 @@ } }, { - "id": 28443, + "id": 26686, "properties": { "east": "tall", "north": "none", @@ -194111,7 +184356,7 @@ } }, { - "id": 28444, + "id": 26687, "properties": { "east": "tall", "north": "none", @@ -194122,7 +184367,7 @@ } }, { - "id": 28445, + "id": 26688, "properties": { "east": "tall", "north": "none", @@ -194133,7 +184378,7 @@ } }, { - "id": 28446, + "id": 26689, "properties": { "east": "tall", "north": "none", @@ -194144,7 +184389,7 @@ } }, { - "id": 28447, + "id": 26690, "properties": { "east": "tall", "north": "none", @@ -194155,7 +184400,7 @@ } }, { - "id": 28448, + "id": 26691, "properties": { "east": "tall", "north": "none", @@ -194166,7 +184411,7 @@ } }, { - "id": 28449, + "id": 26692, "properties": { "east": "tall", "north": "none", @@ -194177,7 +184422,7 @@ } }, { - "id": 28450, + "id": 26693, "properties": { "east": "tall", "north": "none", @@ -194188,7 +184433,7 @@ } }, { - "id": 28451, + "id": 26694, "properties": { "east": "tall", "north": "none", @@ -194199,7 +184444,7 @@ } }, { - "id": 28452, + "id": 26695, "properties": { "east": "tall", "north": "none", @@ -194210,7 +184455,7 @@ } }, { - "id": 28453, + "id": 26696, "properties": { "east": "tall", "north": "none", @@ -194221,7 +184466,7 @@ } }, { - "id": 28454, + "id": 26697, "properties": { "east": "tall", "north": "none", @@ -194232,7 +184477,7 @@ } }, { - "id": 28455, + "id": 26698, "properties": { "east": "tall", "north": "none", @@ -194243,7 +184488,7 @@ } }, { - "id": 28456, + "id": 26699, "properties": { "east": "tall", "north": "none", @@ -194254,7 +184499,7 @@ } }, { - "id": 28457, + "id": 26700, "properties": { "east": "tall", "north": "none", @@ -194265,7 +184510,7 @@ } }, { - "id": 28458, + "id": 26701, "properties": { "east": "tall", "north": "none", @@ -194276,7 +184521,7 @@ } }, { - "id": 28459, + "id": 26702, "properties": { "east": "tall", "north": "none", @@ -194287,7 +184532,7 @@ } }, { - "id": 28460, + "id": 26703, "properties": { "east": "tall", "north": "none", @@ -194298,7 +184543,7 @@ } }, { - "id": 28461, + "id": 26704, "properties": { "east": "tall", "north": "none", @@ -194309,7 +184554,7 @@ } }, { - "id": 28462, + "id": 26705, "properties": { "east": "tall", "north": "none", @@ -194320,7 +184565,7 @@ } }, { - "id": 28463, + "id": 26706, "properties": { "east": "tall", "north": "none", @@ -194331,7 +184576,7 @@ } }, { - "id": 28464, + "id": 26707, "properties": { "east": "tall", "north": "none", @@ -194342,7 +184587,7 @@ } }, { - "id": 28465, + "id": 26708, "properties": { "east": "tall", "north": "none", @@ -194353,7 +184598,7 @@ } }, { - "id": 28466, + "id": 26709, "properties": { "east": "tall", "north": "none", @@ -194364,7 +184609,7 @@ } }, { - "id": 28467, + "id": 26710, "properties": { "east": "tall", "north": "none", @@ -194375,7 +184620,7 @@ } }, { - "id": 28468, + "id": 26711, "properties": { "east": "tall", "north": "none", @@ -194386,7 +184631,7 @@ } }, { - "id": 28469, + "id": 26712, "properties": { "east": "tall", "north": "none", @@ -194397,7 +184642,7 @@ } }, { - "id": 28470, + "id": 26713, "properties": { "east": "tall", "north": "none", @@ -194408,7 +184653,7 @@ } }, { - "id": 28471, + "id": 26714, "properties": { "east": "tall", "north": "none", @@ -194419,7 +184664,7 @@ } }, { - "id": 28472, + "id": 26715, "properties": { "east": "tall", "north": "none", @@ -194430,7 +184675,7 @@ } }, { - "id": 28473, + "id": 26716, "properties": { "east": "tall", "north": "none", @@ -194441,7 +184686,7 @@ } }, { - "id": 28474, + "id": 26717, "properties": { "east": "tall", "north": "low", @@ -194452,7 +184697,7 @@ } }, { - "id": 28475, + "id": 26718, "properties": { "east": "tall", "north": "low", @@ -194463,7 +184708,7 @@ } }, { - "id": 28476, + "id": 26719, "properties": { "east": "tall", "north": "low", @@ -194474,7 +184719,7 @@ } }, { - "id": 28477, + "id": 26720, "properties": { "east": "tall", "north": "low", @@ -194485,7 +184730,7 @@ } }, { - "id": 28478, + "id": 26721, "properties": { "east": "tall", "north": "low", @@ -194496,7 +184741,7 @@ } }, { - "id": 28479, + "id": 26722, "properties": { "east": "tall", "north": "low", @@ -194507,7 +184752,7 @@ } }, { - "id": 28480, + "id": 26723, "properties": { "east": "tall", "north": "low", @@ -194518,7 +184763,7 @@ } }, { - "id": 28481, + "id": 26724, "properties": { "east": "tall", "north": "low", @@ -194529,7 +184774,7 @@ } }, { - "id": 28482, + "id": 26725, "properties": { "east": "tall", "north": "low", @@ -194540,7 +184785,7 @@ } }, { - "id": 28483, + "id": 26726, "properties": { "east": "tall", "north": "low", @@ -194551,7 +184796,7 @@ } }, { - "id": 28484, + "id": 26727, "properties": { "east": "tall", "north": "low", @@ -194562,7 +184807,7 @@ } }, { - "id": 28485, + "id": 26728, "properties": { "east": "tall", "north": "low", @@ -194573,7 +184818,7 @@ } }, { - "id": 28486, + "id": 26729, "properties": { "east": "tall", "north": "low", @@ -194584,7 +184829,7 @@ } }, { - "id": 28487, + "id": 26730, "properties": { "east": "tall", "north": "low", @@ -194595,7 +184840,7 @@ } }, { - "id": 28488, + "id": 26731, "properties": { "east": "tall", "north": "low", @@ -194606,7 +184851,7 @@ } }, { - "id": 28489, + "id": 26732, "properties": { "east": "tall", "north": "low", @@ -194617,7 +184862,7 @@ } }, { - "id": 28490, + "id": 26733, "properties": { "east": "tall", "north": "low", @@ -194628,7 +184873,7 @@ } }, { - "id": 28491, + "id": 26734, "properties": { "east": "tall", "north": "low", @@ -194639,7 +184884,7 @@ } }, { - "id": 28492, + "id": 26735, "properties": { "east": "tall", "north": "low", @@ -194650,7 +184895,7 @@ } }, { - "id": 28493, + "id": 26736, "properties": { "east": "tall", "north": "low", @@ -194661,7 +184906,7 @@ } }, { - "id": 28494, + "id": 26737, "properties": { "east": "tall", "north": "low", @@ -194672,7 +184917,7 @@ } }, { - "id": 28495, + "id": 26738, "properties": { "east": "tall", "north": "low", @@ -194683,7 +184928,7 @@ } }, { - "id": 28496, + "id": 26739, "properties": { "east": "tall", "north": "low", @@ -194694,7 +184939,7 @@ } }, { - "id": 28497, + "id": 26740, "properties": { "east": "tall", "north": "low", @@ -194705,7 +184950,7 @@ } }, { - "id": 28498, + "id": 26741, "properties": { "east": "tall", "north": "low", @@ -194716,7 +184961,7 @@ } }, { - "id": 28499, + "id": 26742, "properties": { "east": "tall", "north": "low", @@ -194727,7 +184972,7 @@ } }, { - "id": 28500, + "id": 26743, "properties": { "east": "tall", "north": "low", @@ -194738,7 +184983,7 @@ } }, { - "id": 28501, + "id": 26744, "properties": { "east": "tall", "north": "low", @@ -194749,7 +184994,7 @@ } }, { - "id": 28502, + "id": 26745, "properties": { "east": "tall", "north": "low", @@ -194760,7 +185005,7 @@ } }, { - "id": 28503, + "id": 26746, "properties": { "east": "tall", "north": "low", @@ -194771,7 +185016,7 @@ } }, { - "id": 28504, + "id": 26747, "properties": { "east": "tall", "north": "low", @@ -194782,7 +185027,7 @@ } }, { - "id": 28505, + "id": 26748, "properties": { "east": "tall", "north": "low", @@ -194793,7 +185038,7 @@ } }, { - "id": 28506, + "id": 26749, "properties": { "east": "tall", "north": "low", @@ -194804,7 +185049,7 @@ } }, { - "id": 28507, + "id": 26750, "properties": { "east": "tall", "north": "low", @@ -194815,7 +185060,7 @@ } }, { - "id": 28508, + "id": 26751, "properties": { "east": "tall", "north": "low", @@ -194826,7 +185071,7 @@ } }, { - "id": 28509, + "id": 26752, "properties": { "east": "tall", "north": "low", @@ -194837,7 +185082,7 @@ } }, { - "id": 28510, + "id": 26753, "properties": { "east": "tall", "north": "tall", @@ -194848,7 +185093,7 @@ } }, { - "id": 28511, + "id": 26754, "properties": { "east": "tall", "north": "tall", @@ -194859,7 +185104,7 @@ } }, { - "id": 28512, + "id": 26755, "properties": { "east": "tall", "north": "tall", @@ -194870,7 +185115,7 @@ } }, { - "id": 28513, + "id": 26756, "properties": { "east": "tall", "north": "tall", @@ -194881,7 +185126,7 @@ } }, { - "id": 28514, + "id": 26757, "properties": { "east": "tall", "north": "tall", @@ -194892,7 +185137,7 @@ } }, { - "id": 28515, + "id": 26758, "properties": { "east": "tall", "north": "tall", @@ -194903,7 +185148,7 @@ } }, { - "id": 28516, + "id": 26759, "properties": { "east": "tall", "north": "tall", @@ -194914,7 +185159,7 @@ } }, { - "id": 28517, + "id": 26760, "properties": { "east": "tall", "north": "tall", @@ -194925,7 +185170,7 @@ } }, { - "id": 28518, + "id": 26761, "properties": { "east": "tall", "north": "tall", @@ -194936,7 +185181,7 @@ } }, { - "id": 28519, + "id": 26762, "properties": { "east": "tall", "north": "tall", @@ -194947,7 +185192,7 @@ } }, { - "id": 28520, + "id": 26763, "properties": { "east": "tall", "north": "tall", @@ -194958,7 +185203,7 @@ } }, { - "id": 28521, + "id": 26764, "properties": { "east": "tall", "north": "tall", @@ -194969,7 +185214,7 @@ } }, { - "id": 28522, + "id": 26765, "properties": { "east": "tall", "north": "tall", @@ -194980,7 +185225,7 @@ } }, { - "id": 28523, + "id": 26766, "properties": { "east": "tall", "north": "tall", @@ -194991,7 +185236,7 @@ } }, { - "id": 28524, + "id": 26767, "properties": { "east": "tall", "north": "tall", @@ -195002,7 +185247,7 @@ } }, { - "id": 28525, + "id": 26768, "properties": { "east": "tall", "north": "tall", @@ -195013,7 +185258,7 @@ } }, { - "id": 28526, + "id": 26769, "properties": { "east": "tall", "north": "tall", @@ -195024,7 +185269,7 @@ } }, { - "id": 28527, + "id": 26770, "properties": { "east": "tall", "north": "tall", @@ -195035,7 +185280,7 @@ } }, { - "id": 28528, + "id": 26771, "properties": { "east": "tall", "north": "tall", @@ -195046,7 +185291,7 @@ } }, { - "id": 28529, + "id": 26772, "properties": { "east": "tall", "north": "tall", @@ -195057,7 +185302,7 @@ } }, { - "id": 28530, + "id": 26773, "properties": { "east": "tall", "north": "tall", @@ -195068,7 +185313,7 @@ } }, { - "id": 28531, + "id": 26774, "properties": { "east": "tall", "north": "tall", @@ -195079,7 +185324,7 @@ } }, { - "id": 28532, + "id": 26775, "properties": { "east": "tall", "north": "tall", @@ -195090,7 +185335,7 @@ } }, { - "id": 28533, + "id": 26776, "properties": { "east": "tall", "north": "tall", @@ -195101,7 +185346,7 @@ } }, { - "id": 28534, + "id": 26777, "properties": { "east": "tall", "north": "tall", @@ -195112,7 +185357,7 @@ } }, { - "id": 28535, + "id": 26778, "properties": { "east": "tall", "north": "tall", @@ -195123,7 +185368,7 @@ } }, { - "id": 28536, + "id": 26779, "properties": { "east": "tall", "north": "tall", @@ -195134,7 +185379,7 @@ } }, { - "id": 28537, + "id": 26780, "properties": { "east": "tall", "north": "tall", @@ -195145,7 +185390,7 @@ } }, { - "id": 28538, + "id": 26781, "properties": { "east": "tall", "north": "tall", @@ -195156,7 +185401,7 @@ } }, { - "id": 28539, + "id": 26782, "properties": { "east": "tall", "north": "tall", @@ -195167,7 +185412,7 @@ } }, { - "id": 28540, + "id": 26783, "properties": { "east": "tall", "north": "tall", @@ -195178,7 +185423,7 @@ } }, { - "id": 28541, + "id": 26784, "properties": { "east": "tall", "north": "tall", @@ -195189,7 +185434,7 @@ } }, { - "id": 28542, + "id": 26785, "properties": { "east": "tall", "north": "tall", @@ -195200,7 +185445,7 @@ } }, { - "id": 28543, + "id": 26786, "properties": { "east": "tall", "north": "tall", @@ -195211,7 +185456,7 @@ } }, { - "id": 28544, + "id": 26787, "properties": { "east": "tall", "north": "tall", @@ -195222,7 +185467,7 @@ } }, { - "id": 28545, + "id": 26788, "properties": { "east": "tall", "north": "tall", @@ -195264,21 +185509,21 @@ }, "states": [ { - "id": 16232, + "id": 15123, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 16233, + "id": 15124, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 16234, + "id": 15125, "properties": { "type": "bottom", "waterlogged": "true" @@ -195286,21 +185531,21 @@ }, { "default": true, - "id": 16235, + "id": 15126, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 16236, + "id": 15127, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 16237, + "id": 15128, "properties": { "type": "double", "waterlogged": "false" @@ -195341,7 +185586,7 @@ }, "states": [ { - "id": 15334, + "id": 14225, "properties": { "facing": "north", "half": "top", @@ -195350,7 +185595,7 @@ } }, { - "id": 15335, + "id": 14226, "properties": { "facing": "north", "half": "top", @@ -195359,7 +185604,7 @@ } }, { - "id": 15336, + "id": 14227, "properties": { "facing": "north", "half": "top", @@ -195368,7 +185613,7 @@ } }, { - "id": 15337, + "id": 14228, "properties": { "facing": "north", "half": "top", @@ -195377,7 +185622,7 @@ } }, { - "id": 15338, + "id": 14229, "properties": { "facing": "north", "half": "top", @@ -195386,7 +185631,7 @@ } }, { - "id": 15339, + "id": 14230, "properties": { "facing": "north", "half": "top", @@ -195395,7 +185640,7 @@ } }, { - "id": 15340, + "id": 14231, "properties": { "facing": "north", "half": "top", @@ -195404,7 +185649,7 @@ } }, { - "id": 15341, + "id": 14232, "properties": { "facing": "north", "half": "top", @@ -195413,7 +185658,7 @@ } }, { - "id": 15342, + "id": 14233, "properties": { "facing": "north", "half": "top", @@ -195422,7 +185667,7 @@ } }, { - "id": 15343, + "id": 14234, "properties": { "facing": "north", "half": "top", @@ -195431,7 +185676,7 @@ } }, { - "id": 15344, + "id": 14235, "properties": { "facing": "north", "half": "bottom", @@ -195441,7 +185686,7 @@ }, { "default": true, - "id": 15345, + "id": 14236, "properties": { "facing": "north", "half": "bottom", @@ -195450,7 +185695,7 @@ } }, { - "id": 15346, + "id": 14237, "properties": { "facing": "north", "half": "bottom", @@ -195459,7 +185704,7 @@ } }, { - "id": 15347, + "id": 14238, "properties": { "facing": "north", "half": "bottom", @@ -195468,7 +185713,7 @@ } }, { - "id": 15348, + "id": 14239, "properties": { "facing": "north", "half": "bottom", @@ -195477,7 +185722,7 @@ } }, { - "id": 15349, + "id": 14240, "properties": { "facing": "north", "half": "bottom", @@ -195486,7 +185731,7 @@ } }, { - "id": 15350, + "id": 14241, "properties": { "facing": "north", "half": "bottom", @@ -195495,7 +185740,7 @@ } }, { - "id": 15351, + "id": 14242, "properties": { "facing": "north", "half": "bottom", @@ -195504,7 +185749,7 @@ } }, { - "id": 15352, + "id": 14243, "properties": { "facing": "north", "half": "bottom", @@ -195513,7 +185758,7 @@ } }, { - "id": 15353, + "id": 14244, "properties": { "facing": "north", "half": "bottom", @@ -195522,7 +185767,7 @@ } }, { - "id": 15354, + "id": 14245, "properties": { "facing": "south", "half": "top", @@ -195531,7 +185776,7 @@ } }, { - "id": 15355, + "id": 14246, "properties": { "facing": "south", "half": "top", @@ -195540,7 +185785,7 @@ } }, { - "id": 15356, + "id": 14247, "properties": { "facing": "south", "half": "top", @@ -195549,7 +185794,7 @@ } }, { - "id": 15357, + "id": 14248, "properties": { "facing": "south", "half": "top", @@ -195558,7 +185803,7 @@ } }, { - "id": 15358, + "id": 14249, "properties": { "facing": "south", "half": "top", @@ -195567,7 +185812,7 @@ } }, { - "id": 15359, + "id": 14250, "properties": { "facing": "south", "half": "top", @@ -195576,7 +185821,7 @@ } }, { - "id": 15360, + "id": 14251, "properties": { "facing": "south", "half": "top", @@ -195585,7 +185830,7 @@ } }, { - "id": 15361, + "id": 14252, "properties": { "facing": "south", "half": "top", @@ -195594,7 +185839,7 @@ } }, { - "id": 15362, + "id": 14253, "properties": { "facing": "south", "half": "top", @@ -195603,7 +185848,7 @@ } }, { - "id": 15363, + "id": 14254, "properties": { "facing": "south", "half": "top", @@ -195612,7 +185857,7 @@ } }, { - "id": 15364, + "id": 14255, "properties": { "facing": "south", "half": "bottom", @@ -195621,7 +185866,7 @@ } }, { - "id": 15365, + "id": 14256, "properties": { "facing": "south", "half": "bottom", @@ -195630,7 +185875,7 @@ } }, { - "id": 15366, + "id": 14257, "properties": { "facing": "south", "half": "bottom", @@ -195639,7 +185884,7 @@ } }, { - "id": 15367, + "id": 14258, "properties": { "facing": "south", "half": "bottom", @@ -195648,7 +185893,7 @@ } }, { - "id": 15368, + "id": 14259, "properties": { "facing": "south", "half": "bottom", @@ -195657,7 +185902,7 @@ } }, { - "id": 15369, + "id": 14260, "properties": { "facing": "south", "half": "bottom", @@ -195666,7 +185911,7 @@ } }, { - "id": 15370, + "id": 14261, "properties": { "facing": "south", "half": "bottom", @@ -195675,7 +185920,7 @@ } }, { - "id": 15371, + "id": 14262, "properties": { "facing": "south", "half": "bottom", @@ -195684,7 +185929,7 @@ } }, { - "id": 15372, + "id": 14263, "properties": { "facing": "south", "half": "bottom", @@ -195693,7 +185938,7 @@ } }, { - "id": 15373, + "id": 14264, "properties": { "facing": "south", "half": "bottom", @@ -195702,7 +185947,7 @@ } }, { - "id": 15374, + "id": 14265, "properties": { "facing": "west", "half": "top", @@ -195711,7 +185956,7 @@ } }, { - "id": 15375, + "id": 14266, "properties": { "facing": "west", "half": "top", @@ -195720,7 +185965,7 @@ } }, { - "id": 15376, + "id": 14267, "properties": { "facing": "west", "half": "top", @@ -195729,7 +185974,7 @@ } }, { - "id": 15377, + "id": 14268, "properties": { "facing": "west", "half": "top", @@ -195738,7 +185983,7 @@ } }, { - "id": 15378, + "id": 14269, "properties": { "facing": "west", "half": "top", @@ -195747,7 +185992,7 @@ } }, { - "id": 15379, + "id": 14270, "properties": { "facing": "west", "half": "top", @@ -195756,7 +186001,7 @@ } }, { - "id": 15380, + "id": 14271, "properties": { "facing": "west", "half": "top", @@ -195765,7 +186010,7 @@ } }, { - "id": 15381, + "id": 14272, "properties": { "facing": "west", "half": "top", @@ -195774,7 +186019,7 @@ } }, { - "id": 15382, + "id": 14273, "properties": { "facing": "west", "half": "top", @@ -195783,7 +186028,7 @@ } }, { - "id": 15383, + "id": 14274, "properties": { "facing": "west", "half": "top", @@ -195792,7 +186037,7 @@ } }, { - "id": 15384, + "id": 14275, "properties": { "facing": "west", "half": "bottom", @@ -195801,7 +186046,7 @@ } }, { - "id": 15385, + "id": 14276, "properties": { "facing": "west", "half": "bottom", @@ -195810,7 +186055,7 @@ } }, { - "id": 15386, + "id": 14277, "properties": { "facing": "west", "half": "bottom", @@ -195819,7 +186064,7 @@ } }, { - "id": 15387, + "id": 14278, "properties": { "facing": "west", "half": "bottom", @@ -195828,7 +186073,7 @@ } }, { - "id": 15388, + "id": 14279, "properties": { "facing": "west", "half": "bottom", @@ -195837,7 +186082,7 @@ } }, { - "id": 15389, + "id": 14280, "properties": { "facing": "west", "half": "bottom", @@ -195846,7 +186091,7 @@ } }, { - "id": 15390, + "id": 14281, "properties": { "facing": "west", "half": "bottom", @@ -195855,7 +186100,7 @@ } }, { - "id": 15391, + "id": 14282, "properties": { "facing": "west", "half": "bottom", @@ -195864,7 +186109,7 @@ } }, { - "id": 15392, + "id": 14283, "properties": { "facing": "west", "half": "bottom", @@ -195873,7 +186118,7 @@ } }, { - "id": 15393, + "id": 14284, "properties": { "facing": "west", "half": "bottom", @@ -195882,7 +186127,7 @@ } }, { - "id": 15394, + "id": 14285, "properties": { "facing": "east", "half": "top", @@ -195891,7 +186136,7 @@ } }, { - "id": 15395, + "id": 14286, "properties": { "facing": "east", "half": "top", @@ -195900,7 +186145,7 @@ } }, { - "id": 15396, + "id": 14287, "properties": { "facing": "east", "half": "top", @@ -195909,7 +186154,7 @@ } }, { - "id": 15397, + "id": 14288, "properties": { "facing": "east", "half": "top", @@ -195918,7 +186163,7 @@ } }, { - "id": 15398, + "id": 14289, "properties": { "facing": "east", "half": "top", @@ -195927,7 +186172,7 @@ } }, { - "id": 15399, + "id": 14290, "properties": { "facing": "east", "half": "top", @@ -195936,7 +186181,7 @@ } }, { - "id": 15400, + "id": 14291, "properties": { "facing": "east", "half": "top", @@ -195945,7 +186190,7 @@ } }, { - "id": 15401, + "id": 14292, "properties": { "facing": "east", "half": "top", @@ -195954,7 +186199,7 @@ } }, { - "id": 15402, + "id": 14293, "properties": { "facing": "east", "half": "top", @@ -195963,7 +186208,7 @@ } }, { - "id": 15403, + "id": 14294, "properties": { "facing": "east", "half": "top", @@ -195972,7 +186217,7 @@ } }, { - "id": 15404, + "id": 14295, "properties": { "facing": "east", "half": "bottom", @@ -195981,7 +186226,7 @@ } }, { - "id": 15405, + "id": 14296, "properties": { "facing": "east", "half": "bottom", @@ -195990,7 +186235,7 @@ } }, { - "id": 15406, + "id": 14297, "properties": { "facing": "east", "half": "bottom", @@ -195999,7 +186244,7 @@ } }, { - "id": 15407, + "id": 14298, "properties": { "facing": "east", "half": "bottom", @@ -196008,7 +186253,7 @@ } }, { - "id": 15408, + "id": 14299, "properties": { "facing": "east", "half": "bottom", @@ -196017,7 +186262,7 @@ } }, { - "id": 15409, + "id": 14300, "properties": { "facing": "east", "half": "bottom", @@ -196026,7 +186271,7 @@ } }, { - "id": 15410, + "id": 14301, "properties": { "facing": "east", "half": "bottom", @@ -196035,7 +186280,7 @@ } }, { - "id": 15411, + "id": 14302, "properties": { "facing": "east", "half": "bottom", @@ -196044,7 +186289,7 @@ } }, { - "id": 15412, + "id": 14303, "properties": { "facing": "east", "half": "bottom", @@ -196053,7 +186298,7 @@ } }, { - "id": 15413, + "id": 14304, "properties": { "facing": "east", "half": "bottom", @@ -196093,21 +186338,21 @@ }, "states": [ { - "id": 16214, + "id": 15105, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 16215, + "id": 15106, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 16216, + "id": 15107, "properties": { "type": "bottom", "waterlogged": "true" @@ -196115,21 +186360,21 @@ }, { "default": true, - "id": 16217, + "id": 15108, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 16218, + "id": 15109, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 16219, + "id": 15110, "properties": { "type": "double", "waterlogged": "false" @@ -196170,7 +186415,7 @@ }, "states": [ { - "id": 15094, + "id": 13985, "properties": { "facing": "north", "half": "top", @@ -196179,7 +186424,7 @@ } }, { - "id": 15095, + "id": 13986, "properties": { "facing": "north", "half": "top", @@ -196188,7 +186433,7 @@ } }, { - "id": 15096, + "id": 13987, "properties": { "facing": "north", "half": "top", @@ -196197,7 +186442,7 @@ } }, { - "id": 15097, + "id": 13988, "properties": { "facing": "north", "half": "top", @@ -196206,7 +186451,7 @@ } }, { - "id": 15098, + "id": 13989, "properties": { "facing": "north", "half": "top", @@ -196215,7 +186460,7 @@ } }, { - "id": 15099, + "id": 13990, "properties": { "facing": "north", "half": "top", @@ -196224,7 +186469,7 @@ } }, { - "id": 15100, + "id": 13991, "properties": { "facing": "north", "half": "top", @@ -196233,7 +186478,7 @@ } }, { - "id": 15101, + "id": 13992, "properties": { "facing": "north", "half": "top", @@ -196242,7 +186487,7 @@ } }, { - "id": 15102, + "id": 13993, "properties": { "facing": "north", "half": "top", @@ -196251,7 +186496,7 @@ } }, { - "id": 15103, + "id": 13994, "properties": { "facing": "north", "half": "top", @@ -196260,7 +186505,7 @@ } }, { - "id": 15104, + "id": 13995, "properties": { "facing": "north", "half": "bottom", @@ -196270,7 +186515,7 @@ }, { "default": true, - "id": 15105, + "id": 13996, "properties": { "facing": "north", "half": "bottom", @@ -196279,7 +186524,7 @@ } }, { - "id": 15106, + "id": 13997, "properties": { "facing": "north", "half": "bottom", @@ -196288,7 +186533,7 @@ } }, { - "id": 15107, + "id": 13998, "properties": { "facing": "north", "half": "bottom", @@ -196297,7 +186542,7 @@ } }, { - "id": 15108, + "id": 13999, "properties": { "facing": "north", "half": "bottom", @@ -196306,7 +186551,7 @@ } }, { - "id": 15109, + "id": 14000, "properties": { "facing": "north", "half": "bottom", @@ -196315,7 +186560,7 @@ } }, { - "id": 15110, + "id": 14001, "properties": { "facing": "north", "half": "bottom", @@ -196324,7 +186569,7 @@ } }, { - "id": 15111, + "id": 14002, "properties": { "facing": "north", "half": "bottom", @@ -196333,7 +186578,7 @@ } }, { - "id": 15112, + "id": 14003, "properties": { "facing": "north", "half": "bottom", @@ -196342,7 +186587,7 @@ } }, { - "id": 15113, + "id": 14004, "properties": { "facing": "north", "half": "bottom", @@ -196351,7 +186596,7 @@ } }, { - "id": 15114, + "id": 14005, "properties": { "facing": "south", "half": "top", @@ -196360,7 +186605,7 @@ } }, { - "id": 15115, + "id": 14006, "properties": { "facing": "south", "half": "top", @@ -196369,7 +186614,7 @@ } }, { - "id": 15116, + "id": 14007, "properties": { "facing": "south", "half": "top", @@ -196378,7 +186623,7 @@ } }, { - "id": 15117, + "id": 14008, "properties": { "facing": "south", "half": "top", @@ -196387,7 +186632,7 @@ } }, { - "id": 15118, + "id": 14009, "properties": { "facing": "south", "half": "top", @@ -196396,7 +186641,7 @@ } }, { - "id": 15119, + "id": 14010, "properties": { "facing": "south", "half": "top", @@ -196405,7 +186650,7 @@ } }, { - "id": 15120, + "id": 14011, "properties": { "facing": "south", "half": "top", @@ -196414,7 +186659,7 @@ } }, { - "id": 15121, + "id": 14012, "properties": { "facing": "south", "half": "top", @@ -196423,7 +186668,7 @@ } }, { - "id": 15122, + "id": 14013, "properties": { "facing": "south", "half": "top", @@ -196432,7 +186677,7 @@ } }, { - "id": 15123, + "id": 14014, "properties": { "facing": "south", "half": "top", @@ -196441,7 +186686,7 @@ } }, { - "id": 15124, + "id": 14015, "properties": { "facing": "south", "half": "bottom", @@ -196450,7 +186695,7 @@ } }, { - "id": 15125, + "id": 14016, "properties": { "facing": "south", "half": "bottom", @@ -196459,7 +186704,7 @@ } }, { - "id": 15126, + "id": 14017, "properties": { "facing": "south", "half": "bottom", @@ -196468,7 +186713,7 @@ } }, { - "id": 15127, + "id": 14018, "properties": { "facing": "south", "half": "bottom", @@ -196477,7 +186722,7 @@ } }, { - "id": 15128, + "id": 14019, "properties": { "facing": "south", "half": "bottom", @@ -196486,7 +186731,7 @@ } }, { - "id": 15129, + "id": 14020, "properties": { "facing": "south", "half": "bottom", @@ -196495,7 +186740,7 @@ } }, { - "id": 15130, + "id": 14021, "properties": { "facing": "south", "half": "bottom", @@ -196504,7 +186749,7 @@ } }, { - "id": 15131, + "id": 14022, "properties": { "facing": "south", "half": "bottom", @@ -196513,7 +186758,7 @@ } }, { - "id": 15132, + "id": 14023, "properties": { "facing": "south", "half": "bottom", @@ -196522,7 +186767,7 @@ } }, { - "id": 15133, + "id": 14024, "properties": { "facing": "south", "half": "bottom", @@ -196531,7 +186776,7 @@ } }, { - "id": 15134, + "id": 14025, "properties": { "facing": "west", "half": "top", @@ -196540,7 +186785,7 @@ } }, { - "id": 15135, + "id": 14026, "properties": { "facing": "west", "half": "top", @@ -196549,7 +186794,7 @@ } }, { - "id": 15136, + "id": 14027, "properties": { "facing": "west", "half": "top", @@ -196558,7 +186803,7 @@ } }, { - "id": 15137, + "id": 14028, "properties": { "facing": "west", "half": "top", @@ -196567,7 +186812,7 @@ } }, { - "id": 15138, + "id": 14029, "properties": { "facing": "west", "half": "top", @@ -196576,7 +186821,7 @@ } }, { - "id": 15139, + "id": 14030, "properties": { "facing": "west", "half": "top", @@ -196585,7 +186830,7 @@ } }, { - "id": 15140, + "id": 14031, "properties": { "facing": "west", "half": "top", @@ -196594,7 +186839,7 @@ } }, { - "id": 15141, + "id": 14032, "properties": { "facing": "west", "half": "top", @@ -196603,7 +186848,7 @@ } }, { - "id": 15142, + "id": 14033, "properties": { "facing": "west", "half": "top", @@ -196612,7 +186857,7 @@ } }, { - "id": 15143, + "id": 14034, "properties": { "facing": "west", "half": "top", @@ -196621,7 +186866,7 @@ } }, { - "id": 15144, + "id": 14035, "properties": { "facing": "west", "half": "bottom", @@ -196630,7 +186875,7 @@ } }, { - "id": 15145, + "id": 14036, "properties": { "facing": "west", "half": "bottom", @@ -196639,7 +186884,7 @@ } }, { - "id": 15146, + "id": 14037, "properties": { "facing": "west", "half": "bottom", @@ -196648,7 +186893,7 @@ } }, { - "id": 15147, + "id": 14038, "properties": { "facing": "west", "half": "bottom", @@ -196657,7 +186902,7 @@ } }, { - "id": 15148, + "id": 14039, "properties": { "facing": "west", "half": "bottom", @@ -196666,7 +186911,7 @@ } }, { - "id": 15149, + "id": 14040, "properties": { "facing": "west", "half": "bottom", @@ -196675,7 +186920,7 @@ } }, { - "id": 15150, + "id": 14041, "properties": { "facing": "west", "half": "bottom", @@ -196684,7 +186929,7 @@ } }, { - "id": 15151, + "id": 14042, "properties": { "facing": "west", "half": "bottom", @@ -196693,7 +186938,7 @@ } }, { - "id": 15152, + "id": 14043, "properties": { "facing": "west", "half": "bottom", @@ -196702,7 +186947,7 @@ } }, { - "id": 15153, + "id": 14044, "properties": { "facing": "west", "half": "bottom", @@ -196711,7 +186956,7 @@ } }, { - "id": 15154, + "id": 14045, "properties": { "facing": "east", "half": "top", @@ -196720,7 +186965,7 @@ } }, { - "id": 15155, + "id": 14046, "properties": { "facing": "east", "half": "top", @@ -196729,7 +186974,7 @@ } }, { - "id": 15156, + "id": 14047, "properties": { "facing": "east", "half": "top", @@ -196738,7 +186983,7 @@ } }, { - "id": 15157, + "id": 14048, "properties": { "facing": "east", "half": "top", @@ -196747,7 +186992,7 @@ } }, { - "id": 15158, + "id": 14049, "properties": { "facing": "east", "half": "top", @@ -196756,7 +187001,7 @@ } }, { - "id": 15159, + "id": 14050, "properties": { "facing": "east", "half": "top", @@ -196765,7 +187010,7 @@ } }, { - "id": 15160, + "id": 14051, "properties": { "facing": "east", "half": "top", @@ -196774,7 +187019,7 @@ } }, { - "id": 15161, + "id": 14052, "properties": { "facing": "east", "half": "top", @@ -196783,7 +187028,7 @@ } }, { - "id": 15162, + "id": 14053, "properties": { "facing": "east", "half": "top", @@ -196792,7 +187037,7 @@ } }, { - "id": 15163, + "id": 14054, "properties": { "facing": "east", "half": "top", @@ -196801,7 +187046,7 @@ } }, { - "id": 15164, + "id": 14055, "properties": { "facing": "east", "half": "bottom", @@ -196810,7 +187055,7 @@ } }, { - "id": 15165, + "id": 14056, "properties": { "facing": "east", "half": "bottom", @@ -196819,7 +187064,7 @@ } }, { - "id": 15166, + "id": 14057, "properties": { "facing": "east", "half": "bottom", @@ -196828,7 +187073,7 @@ } }, { - "id": 15167, + "id": 14058, "properties": { "facing": "east", "half": "bottom", @@ -196837,7 +187082,7 @@ } }, { - "id": 15168, + "id": 14059, "properties": { "facing": "east", "half": "bottom", @@ -196846,7 +187091,7 @@ } }, { - "id": 15169, + "id": 14060, "properties": { "facing": "east", "half": "bottom", @@ -196855,7 +187100,7 @@ } }, { - "id": 15170, + "id": 14061, "properties": { "facing": "east", "half": "bottom", @@ -196864,7 +187109,7 @@ } }, { - "id": 15171, + "id": 14062, "properties": { "facing": "east", "half": "bottom", @@ -196873,7 +187118,7 @@ } }, { - "id": 15172, + "id": 14063, "properties": { "facing": "east", "half": "bottom", @@ -196882,7 +187127,7 @@ } }, { - "id": 15173, + "id": 14064, "properties": { "facing": "east", "half": "bottom", @@ -196900,7 +187145,7 @@ "states": [ { "default": true, - "id": 23661 + "id": 22520 } ] }, @@ -196922,21 +187167,21 @@ }, "states": [ { - "id": 23662, + "id": 22521, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 23663, + "id": 22522, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 23664, + "id": 22523, "properties": { "type": "bottom", "waterlogged": "true" @@ -196944,21 +187189,21 @@ }, { "default": true, - "id": 23665, + "id": 22524, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 23666, + "id": 22525, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 23667, + "id": 22526, "properties": { "type": "double", "waterlogged": "false" @@ -196999,7 +187244,7 @@ }, "states": [ { - "id": 23668, + "id": 22527, "properties": { "facing": "north", "half": "top", @@ -197008,7 +187253,7 @@ } }, { - "id": 23669, + "id": 22528, "properties": { "facing": "north", "half": "top", @@ -197017,7 +187262,7 @@ } }, { - "id": 23670, + "id": 22529, "properties": { "facing": "north", "half": "top", @@ -197026,7 +187271,7 @@ } }, { - "id": 23671, + "id": 22530, "properties": { "facing": "north", "half": "top", @@ -197035,7 +187280,7 @@ } }, { - "id": 23672, + "id": 22531, "properties": { "facing": "north", "half": "top", @@ -197044,7 +187289,7 @@ } }, { - "id": 23673, + "id": 22532, "properties": { "facing": "north", "half": "top", @@ -197053,7 +187298,7 @@ } }, { - "id": 23674, + "id": 22533, "properties": { "facing": "north", "half": "top", @@ -197062,7 +187307,7 @@ } }, { - "id": 23675, + "id": 22534, "properties": { "facing": "north", "half": "top", @@ -197071,7 +187316,7 @@ } }, { - "id": 23676, + "id": 22535, "properties": { "facing": "north", "half": "top", @@ -197080,7 +187325,7 @@ } }, { - "id": 23677, + "id": 22536, "properties": { "facing": "north", "half": "top", @@ -197089,7 +187334,7 @@ } }, { - "id": 23678, + "id": 22537, "properties": { "facing": "north", "half": "bottom", @@ -197099,7 +187344,7 @@ }, { "default": true, - "id": 23679, + "id": 22538, "properties": { "facing": "north", "half": "bottom", @@ -197108,7 +187353,7 @@ } }, { - "id": 23680, + "id": 22539, "properties": { "facing": "north", "half": "bottom", @@ -197117,7 +187362,7 @@ } }, { - "id": 23681, + "id": 22540, "properties": { "facing": "north", "half": "bottom", @@ -197126,7 +187371,7 @@ } }, { - "id": 23682, + "id": 22541, "properties": { "facing": "north", "half": "bottom", @@ -197135,7 +187380,7 @@ } }, { - "id": 23683, + "id": 22542, "properties": { "facing": "north", "half": "bottom", @@ -197144,7 +187389,7 @@ } }, { - "id": 23684, + "id": 22543, "properties": { "facing": "north", "half": "bottom", @@ -197153,7 +187398,7 @@ } }, { - "id": 23685, + "id": 22544, "properties": { "facing": "north", "half": "bottom", @@ -197162,7 +187407,7 @@ } }, { - "id": 23686, + "id": 22545, "properties": { "facing": "north", "half": "bottom", @@ -197171,7 +187416,7 @@ } }, { - "id": 23687, + "id": 22546, "properties": { "facing": "north", "half": "bottom", @@ -197180,7 +187425,7 @@ } }, { - "id": 23688, + "id": 22547, "properties": { "facing": "south", "half": "top", @@ -197189,7 +187434,7 @@ } }, { - "id": 23689, + "id": 22548, "properties": { "facing": "south", "half": "top", @@ -197198,7 +187443,7 @@ } }, { - "id": 23690, + "id": 22549, "properties": { "facing": "south", "half": "top", @@ -197207,7 +187452,7 @@ } }, { - "id": 23691, + "id": 22550, "properties": { "facing": "south", "half": "top", @@ -197216,7 +187461,7 @@ } }, { - "id": 23692, + "id": 22551, "properties": { "facing": "south", "half": "top", @@ -197225,7 +187470,7 @@ } }, { - "id": 23693, + "id": 22552, "properties": { "facing": "south", "half": "top", @@ -197234,7 +187479,7 @@ } }, { - "id": 23694, + "id": 22553, "properties": { "facing": "south", "half": "top", @@ -197243,7 +187488,7 @@ } }, { - "id": 23695, + "id": 22554, "properties": { "facing": "south", "half": "top", @@ -197252,7 +187497,7 @@ } }, { - "id": 23696, + "id": 22555, "properties": { "facing": "south", "half": "top", @@ -197261,7 +187506,7 @@ } }, { - "id": 23697, + "id": 22556, "properties": { "facing": "south", "half": "top", @@ -197270,7 +187515,7 @@ } }, { - "id": 23698, + "id": 22557, "properties": { "facing": "south", "half": "bottom", @@ -197279,7 +187524,7 @@ } }, { - "id": 23699, + "id": 22558, "properties": { "facing": "south", "half": "bottom", @@ -197288,7 +187533,7 @@ } }, { - "id": 23700, + "id": 22559, "properties": { "facing": "south", "half": "bottom", @@ -197297,7 +187542,7 @@ } }, { - "id": 23701, + "id": 22560, "properties": { "facing": "south", "half": "bottom", @@ -197306,7 +187551,7 @@ } }, { - "id": 23702, + "id": 22561, "properties": { "facing": "south", "half": "bottom", @@ -197315,7 +187560,7 @@ } }, { - "id": 23703, + "id": 22562, "properties": { "facing": "south", "half": "bottom", @@ -197324,7 +187569,7 @@ } }, { - "id": 23704, + "id": 22563, "properties": { "facing": "south", "half": "bottom", @@ -197333,7 +187578,7 @@ } }, { - "id": 23705, + "id": 22564, "properties": { "facing": "south", "half": "bottom", @@ -197342,7 +187587,7 @@ } }, { - "id": 23706, + "id": 22565, "properties": { "facing": "south", "half": "bottom", @@ -197351,7 +187596,7 @@ } }, { - "id": 23707, + "id": 22566, "properties": { "facing": "south", "half": "bottom", @@ -197360,7 +187605,7 @@ } }, { - "id": 23708, + "id": 22567, "properties": { "facing": "west", "half": "top", @@ -197369,7 +187614,7 @@ } }, { - "id": 23709, + "id": 22568, "properties": { "facing": "west", "half": "top", @@ -197378,7 +187623,7 @@ } }, { - "id": 23710, + "id": 22569, "properties": { "facing": "west", "half": "top", @@ -197387,7 +187632,7 @@ } }, { - "id": 23711, + "id": 22570, "properties": { "facing": "west", "half": "top", @@ -197396,7 +187641,7 @@ } }, { - "id": 23712, + "id": 22571, "properties": { "facing": "west", "half": "top", @@ -197405,7 +187650,7 @@ } }, { - "id": 23713, + "id": 22572, "properties": { "facing": "west", "half": "top", @@ -197414,7 +187659,7 @@ } }, { - "id": 23714, + "id": 22573, "properties": { "facing": "west", "half": "top", @@ -197423,7 +187668,7 @@ } }, { - "id": 23715, + "id": 22574, "properties": { "facing": "west", "half": "top", @@ -197432,7 +187677,7 @@ } }, { - "id": 23716, + "id": 22575, "properties": { "facing": "west", "half": "top", @@ -197441,7 +187686,7 @@ } }, { - "id": 23717, + "id": 22576, "properties": { "facing": "west", "half": "top", @@ -197450,7 +187695,7 @@ } }, { - "id": 23718, + "id": 22577, "properties": { "facing": "west", "half": "bottom", @@ -197459,7 +187704,7 @@ } }, { - "id": 23719, + "id": 22578, "properties": { "facing": "west", "half": "bottom", @@ -197468,7 +187713,7 @@ } }, { - "id": 23720, + "id": 22579, "properties": { "facing": "west", "half": "bottom", @@ -197477,7 +187722,7 @@ } }, { - "id": 23721, + "id": 22580, "properties": { "facing": "west", "half": "bottom", @@ -197486,7 +187731,7 @@ } }, { - "id": 23722, + "id": 22581, "properties": { "facing": "west", "half": "bottom", @@ -197495,7 +187740,7 @@ } }, { - "id": 23723, + "id": 22582, "properties": { "facing": "west", "half": "bottom", @@ -197504,7 +187749,7 @@ } }, { - "id": 23724, + "id": 22583, "properties": { "facing": "west", "half": "bottom", @@ -197513,7 +187758,7 @@ } }, { - "id": 23725, + "id": 22584, "properties": { "facing": "west", "half": "bottom", @@ -197522,7 +187767,7 @@ } }, { - "id": 23726, + "id": 22585, "properties": { "facing": "west", "half": "bottom", @@ -197531,7 +187776,7 @@ } }, { - "id": 23727, + "id": 22586, "properties": { "facing": "west", "half": "bottom", @@ -197540,7 +187785,7 @@ } }, { - "id": 23728, + "id": 22587, "properties": { "facing": "east", "half": "top", @@ -197549,7 +187794,7 @@ } }, { - "id": 23729, + "id": 22588, "properties": { "facing": "east", "half": "top", @@ -197558,7 +187803,7 @@ } }, { - "id": 23730, + "id": 22589, "properties": { "facing": "east", "half": "top", @@ -197567,7 +187812,7 @@ } }, { - "id": 23731, + "id": 22590, "properties": { "facing": "east", "half": "top", @@ -197576,7 +187821,7 @@ } }, { - "id": 23732, + "id": 22591, "properties": { "facing": "east", "half": "top", @@ -197585,7 +187830,7 @@ } }, { - "id": 23733, + "id": 22592, "properties": { "facing": "east", "half": "top", @@ -197594,7 +187839,7 @@ } }, { - "id": 23734, + "id": 22593, "properties": { "facing": "east", "half": "top", @@ -197603,7 +187848,7 @@ } }, { - "id": 23735, + "id": 22594, "properties": { "facing": "east", "half": "top", @@ -197612,7 +187857,7 @@ } }, { - "id": 23736, + "id": 22595, "properties": { "facing": "east", "half": "top", @@ -197621,7 +187866,7 @@ } }, { - "id": 23737, + "id": 22596, "properties": { "facing": "east", "half": "top", @@ -197630,7 +187875,7 @@ } }, { - "id": 23738, + "id": 22597, "properties": { "facing": "east", "half": "bottom", @@ -197639,7 +187884,7 @@ } }, { - "id": 23739, + "id": 22598, "properties": { "facing": "east", "half": "bottom", @@ -197648,7 +187893,7 @@ } }, { - "id": 23740, + "id": 22599, "properties": { "facing": "east", "half": "bottom", @@ -197657,7 +187902,7 @@ } }, { - "id": 23741, + "id": 22600, "properties": { "facing": "east", "half": "bottom", @@ -197666,7 +187911,7 @@ } }, { - "id": 23742, + "id": 22601, "properties": { "facing": "east", "half": "bottom", @@ -197675,7 +187920,7 @@ } }, { - "id": 23743, + "id": 22602, "properties": { "facing": "east", "half": "bottom", @@ -197684,7 +187929,7 @@ } }, { - "id": 23744, + "id": 22603, "properties": { "facing": "east", "half": "bottom", @@ -197693,7 +187938,7 @@ } }, { - "id": 23745, + "id": 22604, "properties": { "facing": "east", "half": "bottom", @@ -197702,7 +187947,7 @@ } }, { - "id": 23746, + "id": 22605, "properties": { "facing": "east", "half": "bottom", @@ -197711,7 +187956,7 @@ } }, { - "id": 23747, + "id": 22606, "properties": { "facing": "east", "half": "bottom", @@ -197758,7 +188003,7 @@ }, "states": [ { - "id": 23748, + "id": 22607, "properties": { "east": "none", "north": "none", @@ -197769,7 +188014,7 @@ } }, { - "id": 23749, + "id": 22608, "properties": { "east": "none", "north": "none", @@ -197780,7 +188025,7 @@ } }, { - "id": 23750, + "id": 22609, "properties": { "east": "none", "north": "none", @@ -197792,7 +188037,7 @@ }, { "default": true, - "id": 23751, + "id": 22610, "properties": { "east": "none", "north": "none", @@ -197803,7 +188048,7 @@ } }, { - "id": 23752, + "id": 22611, "properties": { "east": "none", "north": "none", @@ -197814,7 +188059,7 @@ } }, { - "id": 23753, + "id": 22612, "properties": { "east": "none", "north": "none", @@ -197825,7 +188070,7 @@ } }, { - "id": 23754, + "id": 22613, "properties": { "east": "none", "north": "none", @@ -197836,7 +188081,7 @@ } }, { - "id": 23755, + "id": 22614, "properties": { "east": "none", "north": "none", @@ -197847,7 +188092,7 @@ } }, { - "id": 23756, + "id": 22615, "properties": { "east": "none", "north": "none", @@ -197858,7 +188103,7 @@ } }, { - "id": 23757, + "id": 22616, "properties": { "east": "none", "north": "none", @@ -197869,7 +188114,7 @@ } }, { - "id": 23758, + "id": 22617, "properties": { "east": "none", "north": "none", @@ -197880,7 +188125,7 @@ } }, { - "id": 23759, + "id": 22618, "properties": { "east": "none", "north": "none", @@ -197891,7 +188136,7 @@ } }, { - "id": 23760, + "id": 22619, "properties": { "east": "none", "north": "none", @@ -197902,7 +188147,7 @@ } }, { - "id": 23761, + "id": 22620, "properties": { "east": "none", "north": "none", @@ -197913,7 +188158,7 @@ } }, { - "id": 23762, + "id": 22621, "properties": { "east": "none", "north": "none", @@ -197924,7 +188169,7 @@ } }, { - "id": 23763, + "id": 22622, "properties": { "east": "none", "north": "none", @@ -197935,7 +188180,7 @@ } }, { - "id": 23764, + "id": 22623, "properties": { "east": "none", "north": "none", @@ -197946,7 +188191,7 @@ } }, { - "id": 23765, + "id": 22624, "properties": { "east": "none", "north": "none", @@ -197957,7 +188202,7 @@ } }, { - "id": 23766, + "id": 22625, "properties": { "east": "none", "north": "none", @@ -197968,7 +188213,7 @@ } }, { - "id": 23767, + "id": 22626, "properties": { "east": "none", "north": "none", @@ -197979,7 +188224,7 @@ } }, { - "id": 23768, + "id": 22627, "properties": { "east": "none", "north": "none", @@ -197990,7 +188235,7 @@ } }, { - "id": 23769, + "id": 22628, "properties": { "east": "none", "north": "none", @@ -198001,7 +188246,7 @@ } }, { - "id": 23770, + "id": 22629, "properties": { "east": "none", "north": "none", @@ -198012,7 +188257,7 @@ } }, { - "id": 23771, + "id": 22630, "properties": { "east": "none", "north": "none", @@ -198023,7 +188268,7 @@ } }, { - "id": 23772, + "id": 22631, "properties": { "east": "none", "north": "none", @@ -198034,7 +188279,7 @@ } }, { - "id": 23773, + "id": 22632, "properties": { "east": "none", "north": "none", @@ -198045,7 +188290,7 @@ } }, { - "id": 23774, + "id": 22633, "properties": { "east": "none", "north": "none", @@ -198056,7 +188301,7 @@ } }, { - "id": 23775, + "id": 22634, "properties": { "east": "none", "north": "none", @@ -198067,7 +188312,7 @@ } }, { - "id": 23776, + "id": 22635, "properties": { "east": "none", "north": "none", @@ -198078,7 +188323,7 @@ } }, { - "id": 23777, + "id": 22636, "properties": { "east": "none", "north": "none", @@ -198089,7 +188334,7 @@ } }, { - "id": 23778, + "id": 22637, "properties": { "east": "none", "north": "none", @@ -198100,7 +188345,7 @@ } }, { - "id": 23779, + "id": 22638, "properties": { "east": "none", "north": "none", @@ -198111,7 +188356,7 @@ } }, { - "id": 23780, + "id": 22639, "properties": { "east": "none", "north": "none", @@ -198122,7 +188367,7 @@ } }, { - "id": 23781, + "id": 22640, "properties": { "east": "none", "north": "none", @@ -198133,7 +188378,7 @@ } }, { - "id": 23782, + "id": 22641, "properties": { "east": "none", "north": "none", @@ -198144,7 +188389,7 @@ } }, { - "id": 23783, + "id": 22642, "properties": { "east": "none", "north": "none", @@ -198155,7 +188400,7 @@ } }, { - "id": 23784, + "id": 22643, "properties": { "east": "none", "north": "low", @@ -198166,7 +188411,7 @@ } }, { - "id": 23785, + "id": 22644, "properties": { "east": "none", "north": "low", @@ -198177,7 +188422,7 @@ } }, { - "id": 23786, + "id": 22645, "properties": { "east": "none", "north": "low", @@ -198188,7 +188433,7 @@ } }, { - "id": 23787, + "id": 22646, "properties": { "east": "none", "north": "low", @@ -198199,7 +188444,7 @@ } }, { - "id": 23788, + "id": 22647, "properties": { "east": "none", "north": "low", @@ -198210,7 +188455,7 @@ } }, { - "id": 23789, + "id": 22648, "properties": { "east": "none", "north": "low", @@ -198221,7 +188466,7 @@ } }, { - "id": 23790, + "id": 22649, "properties": { "east": "none", "north": "low", @@ -198232,7 +188477,7 @@ } }, { - "id": 23791, + "id": 22650, "properties": { "east": "none", "north": "low", @@ -198243,7 +188488,7 @@ } }, { - "id": 23792, + "id": 22651, "properties": { "east": "none", "north": "low", @@ -198254,7 +188499,7 @@ } }, { - "id": 23793, + "id": 22652, "properties": { "east": "none", "north": "low", @@ -198265,7 +188510,7 @@ } }, { - "id": 23794, + "id": 22653, "properties": { "east": "none", "north": "low", @@ -198276,7 +188521,7 @@ } }, { - "id": 23795, + "id": 22654, "properties": { "east": "none", "north": "low", @@ -198287,7 +188532,7 @@ } }, { - "id": 23796, + "id": 22655, "properties": { "east": "none", "north": "low", @@ -198298,7 +188543,7 @@ } }, { - "id": 23797, + "id": 22656, "properties": { "east": "none", "north": "low", @@ -198309,7 +188554,7 @@ } }, { - "id": 23798, + "id": 22657, "properties": { "east": "none", "north": "low", @@ -198320,7 +188565,7 @@ } }, { - "id": 23799, + "id": 22658, "properties": { "east": "none", "north": "low", @@ -198331,7 +188576,7 @@ } }, { - "id": 23800, + "id": 22659, "properties": { "east": "none", "north": "low", @@ -198342,7 +188587,7 @@ } }, { - "id": 23801, + "id": 22660, "properties": { "east": "none", "north": "low", @@ -198353,7 +188598,7 @@ } }, { - "id": 23802, + "id": 22661, "properties": { "east": "none", "north": "low", @@ -198364,7 +188609,7 @@ } }, { - "id": 23803, + "id": 22662, "properties": { "east": "none", "north": "low", @@ -198375,7 +188620,7 @@ } }, { - "id": 23804, + "id": 22663, "properties": { "east": "none", "north": "low", @@ -198386,7 +188631,7 @@ } }, { - "id": 23805, + "id": 22664, "properties": { "east": "none", "north": "low", @@ -198397,7 +188642,7 @@ } }, { - "id": 23806, + "id": 22665, "properties": { "east": "none", "north": "low", @@ -198408,7 +188653,7 @@ } }, { - "id": 23807, + "id": 22666, "properties": { "east": "none", "north": "low", @@ -198419,7 +188664,7 @@ } }, { - "id": 23808, + "id": 22667, "properties": { "east": "none", "north": "low", @@ -198430,7 +188675,7 @@ } }, { - "id": 23809, + "id": 22668, "properties": { "east": "none", "north": "low", @@ -198441,7 +188686,7 @@ } }, { - "id": 23810, + "id": 22669, "properties": { "east": "none", "north": "low", @@ -198452,7 +188697,7 @@ } }, { - "id": 23811, + "id": 22670, "properties": { "east": "none", "north": "low", @@ -198463,7 +188708,7 @@ } }, { - "id": 23812, + "id": 22671, "properties": { "east": "none", "north": "low", @@ -198474,7 +188719,7 @@ } }, { - "id": 23813, + "id": 22672, "properties": { "east": "none", "north": "low", @@ -198485,7 +188730,7 @@ } }, { - "id": 23814, + "id": 22673, "properties": { "east": "none", "north": "low", @@ -198496,7 +188741,7 @@ } }, { - "id": 23815, + "id": 22674, "properties": { "east": "none", "north": "low", @@ -198507,7 +188752,7 @@ } }, { - "id": 23816, + "id": 22675, "properties": { "east": "none", "north": "low", @@ -198518,7 +188763,7 @@ } }, { - "id": 23817, + "id": 22676, "properties": { "east": "none", "north": "low", @@ -198529,7 +188774,7 @@ } }, { - "id": 23818, + "id": 22677, "properties": { "east": "none", "north": "low", @@ -198540,7 +188785,7 @@ } }, { - "id": 23819, + "id": 22678, "properties": { "east": "none", "north": "low", @@ -198551,7 +188796,7 @@ } }, { - "id": 23820, + "id": 22679, "properties": { "east": "none", "north": "tall", @@ -198562,7 +188807,7 @@ } }, { - "id": 23821, + "id": 22680, "properties": { "east": "none", "north": "tall", @@ -198573,7 +188818,7 @@ } }, { - "id": 23822, + "id": 22681, "properties": { "east": "none", "north": "tall", @@ -198584,7 +188829,7 @@ } }, { - "id": 23823, + "id": 22682, "properties": { "east": "none", "north": "tall", @@ -198595,7 +188840,7 @@ } }, { - "id": 23824, + "id": 22683, "properties": { "east": "none", "north": "tall", @@ -198606,7 +188851,7 @@ } }, { - "id": 23825, + "id": 22684, "properties": { "east": "none", "north": "tall", @@ -198617,7 +188862,7 @@ } }, { - "id": 23826, + "id": 22685, "properties": { "east": "none", "north": "tall", @@ -198628,7 +188873,7 @@ } }, { - "id": 23827, + "id": 22686, "properties": { "east": "none", "north": "tall", @@ -198639,7 +188884,7 @@ } }, { - "id": 23828, + "id": 22687, "properties": { "east": "none", "north": "tall", @@ -198650,7 +188895,7 @@ } }, { - "id": 23829, + "id": 22688, "properties": { "east": "none", "north": "tall", @@ -198661,7 +188906,7 @@ } }, { - "id": 23830, + "id": 22689, "properties": { "east": "none", "north": "tall", @@ -198672,7 +188917,7 @@ } }, { - "id": 23831, + "id": 22690, "properties": { "east": "none", "north": "tall", @@ -198683,7 +188928,7 @@ } }, { - "id": 23832, + "id": 22691, "properties": { "east": "none", "north": "tall", @@ -198694,7 +188939,7 @@ } }, { - "id": 23833, + "id": 22692, "properties": { "east": "none", "north": "tall", @@ -198705,7 +188950,7 @@ } }, { - "id": 23834, + "id": 22693, "properties": { "east": "none", "north": "tall", @@ -198716,7 +188961,7 @@ } }, { - "id": 23835, + "id": 22694, "properties": { "east": "none", "north": "tall", @@ -198727,7 +188972,7 @@ } }, { - "id": 23836, + "id": 22695, "properties": { "east": "none", "north": "tall", @@ -198738,7 +188983,7 @@ } }, { - "id": 23837, + "id": 22696, "properties": { "east": "none", "north": "tall", @@ -198749,7 +188994,7 @@ } }, { - "id": 23838, + "id": 22697, "properties": { "east": "none", "north": "tall", @@ -198760,7 +189005,7 @@ } }, { - "id": 23839, + "id": 22698, "properties": { "east": "none", "north": "tall", @@ -198771,7 +189016,7 @@ } }, { - "id": 23840, + "id": 22699, "properties": { "east": "none", "north": "tall", @@ -198782,7 +189027,7 @@ } }, { - "id": 23841, + "id": 22700, "properties": { "east": "none", "north": "tall", @@ -198793,7 +189038,7 @@ } }, { - "id": 23842, + "id": 22701, "properties": { "east": "none", "north": "tall", @@ -198804,7 +189049,7 @@ } }, { - "id": 23843, + "id": 22702, "properties": { "east": "none", "north": "tall", @@ -198815,7 +189060,7 @@ } }, { - "id": 23844, + "id": 22703, "properties": { "east": "none", "north": "tall", @@ -198826,7 +189071,7 @@ } }, { - "id": 23845, + "id": 22704, "properties": { "east": "none", "north": "tall", @@ -198837,7 +189082,7 @@ } }, { - "id": 23846, + "id": 22705, "properties": { "east": "none", "north": "tall", @@ -198848,7 +189093,7 @@ } }, { - "id": 23847, + "id": 22706, "properties": { "east": "none", "north": "tall", @@ -198859,7 +189104,7 @@ } }, { - "id": 23848, + "id": 22707, "properties": { "east": "none", "north": "tall", @@ -198870,7 +189115,7 @@ } }, { - "id": 23849, + "id": 22708, "properties": { "east": "none", "north": "tall", @@ -198881,7 +189126,7 @@ } }, { - "id": 23850, + "id": 22709, "properties": { "east": "none", "north": "tall", @@ -198892,7 +189137,7 @@ } }, { - "id": 23851, + "id": 22710, "properties": { "east": "none", "north": "tall", @@ -198903,7 +189148,7 @@ } }, { - "id": 23852, + "id": 22711, "properties": { "east": "none", "north": "tall", @@ -198914,7 +189159,7 @@ } }, { - "id": 23853, + "id": 22712, "properties": { "east": "none", "north": "tall", @@ -198925,7 +189170,7 @@ } }, { - "id": 23854, + "id": 22713, "properties": { "east": "none", "north": "tall", @@ -198936,7 +189181,7 @@ } }, { - "id": 23855, + "id": 22714, "properties": { "east": "none", "north": "tall", @@ -198947,7 +189192,7 @@ } }, { - "id": 23856, + "id": 22715, "properties": { "east": "low", "north": "none", @@ -198958,7 +189203,7 @@ } }, { - "id": 23857, + "id": 22716, "properties": { "east": "low", "north": "none", @@ -198969,7 +189214,7 @@ } }, { - "id": 23858, + "id": 22717, "properties": { "east": "low", "north": "none", @@ -198980,7 +189225,7 @@ } }, { - "id": 23859, + "id": 22718, "properties": { "east": "low", "north": "none", @@ -198991,7 +189236,7 @@ } }, { - "id": 23860, + "id": 22719, "properties": { "east": "low", "north": "none", @@ -199002,7 +189247,7 @@ } }, { - "id": 23861, + "id": 22720, "properties": { "east": "low", "north": "none", @@ -199013,7 +189258,7 @@ } }, { - "id": 23862, + "id": 22721, "properties": { "east": "low", "north": "none", @@ -199024,7 +189269,7 @@ } }, { - "id": 23863, + "id": 22722, "properties": { "east": "low", "north": "none", @@ -199035,7 +189280,7 @@ } }, { - "id": 23864, + "id": 22723, "properties": { "east": "low", "north": "none", @@ -199046,7 +189291,7 @@ } }, { - "id": 23865, + "id": 22724, "properties": { "east": "low", "north": "none", @@ -199057,7 +189302,7 @@ } }, { - "id": 23866, + "id": 22725, "properties": { "east": "low", "north": "none", @@ -199068,7 +189313,7 @@ } }, { - "id": 23867, + "id": 22726, "properties": { "east": "low", "north": "none", @@ -199079,7 +189324,7 @@ } }, { - "id": 23868, + "id": 22727, "properties": { "east": "low", "north": "none", @@ -199090,7 +189335,7 @@ } }, { - "id": 23869, + "id": 22728, "properties": { "east": "low", "north": "none", @@ -199101,7 +189346,7 @@ } }, { - "id": 23870, + "id": 22729, "properties": { "east": "low", "north": "none", @@ -199112,7 +189357,7 @@ } }, { - "id": 23871, + "id": 22730, "properties": { "east": "low", "north": "none", @@ -199123,7 +189368,7 @@ } }, { - "id": 23872, + "id": 22731, "properties": { "east": "low", "north": "none", @@ -199134,7 +189379,7 @@ } }, { - "id": 23873, + "id": 22732, "properties": { "east": "low", "north": "none", @@ -199145,7 +189390,7 @@ } }, { - "id": 23874, + "id": 22733, "properties": { "east": "low", "north": "none", @@ -199156,7 +189401,7 @@ } }, { - "id": 23875, + "id": 22734, "properties": { "east": "low", "north": "none", @@ -199167,7 +189412,7 @@ } }, { - "id": 23876, + "id": 22735, "properties": { "east": "low", "north": "none", @@ -199178,7 +189423,7 @@ } }, { - "id": 23877, + "id": 22736, "properties": { "east": "low", "north": "none", @@ -199189,7 +189434,7 @@ } }, { - "id": 23878, + "id": 22737, "properties": { "east": "low", "north": "none", @@ -199200,7 +189445,7 @@ } }, { - "id": 23879, + "id": 22738, "properties": { "east": "low", "north": "none", @@ -199211,7 +189456,7 @@ } }, { - "id": 23880, + "id": 22739, "properties": { "east": "low", "north": "none", @@ -199222,7 +189467,7 @@ } }, { - "id": 23881, + "id": 22740, "properties": { "east": "low", "north": "none", @@ -199233,7 +189478,7 @@ } }, { - "id": 23882, + "id": 22741, "properties": { "east": "low", "north": "none", @@ -199244,7 +189489,7 @@ } }, { - "id": 23883, + "id": 22742, "properties": { "east": "low", "north": "none", @@ -199255,7 +189500,7 @@ } }, { - "id": 23884, + "id": 22743, "properties": { "east": "low", "north": "none", @@ -199266,7 +189511,7 @@ } }, { - "id": 23885, + "id": 22744, "properties": { "east": "low", "north": "none", @@ -199277,7 +189522,7 @@ } }, { - "id": 23886, + "id": 22745, "properties": { "east": "low", "north": "none", @@ -199288,7 +189533,7 @@ } }, { - "id": 23887, + "id": 22746, "properties": { "east": "low", "north": "none", @@ -199299,7 +189544,7 @@ } }, { - "id": 23888, + "id": 22747, "properties": { "east": "low", "north": "none", @@ -199310,7 +189555,7 @@ } }, { - "id": 23889, + "id": 22748, "properties": { "east": "low", "north": "none", @@ -199321,7 +189566,7 @@ } }, { - "id": 23890, + "id": 22749, "properties": { "east": "low", "north": "none", @@ -199332,7 +189577,7 @@ } }, { - "id": 23891, + "id": 22750, "properties": { "east": "low", "north": "none", @@ -199343,7 +189588,7 @@ } }, { - "id": 23892, + "id": 22751, "properties": { "east": "low", "north": "low", @@ -199354,7 +189599,7 @@ } }, { - "id": 23893, + "id": 22752, "properties": { "east": "low", "north": "low", @@ -199365,7 +189610,7 @@ } }, { - "id": 23894, + "id": 22753, "properties": { "east": "low", "north": "low", @@ -199376,7 +189621,7 @@ } }, { - "id": 23895, + "id": 22754, "properties": { "east": "low", "north": "low", @@ -199387,7 +189632,7 @@ } }, { - "id": 23896, + "id": 22755, "properties": { "east": "low", "north": "low", @@ -199398,7 +189643,7 @@ } }, { - "id": 23897, + "id": 22756, "properties": { "east": "low", "north": "low", @@ -199409,7 +189654,7 @@ } }, { - "id": 23898, + "id": 22757, "properties": { "east": "low", "north": "low", @@ -199420,7 +189665,7 @@ } }, { - "id": 23899, + "id": 22758, "properties": { "east": "low", "north": "low", @@ -199431,7 +189676,7 @@ } }, { - "id": 23900, + "id": 22759, "properties": { "east": "low", "north": "low", @@ -199442,7 +189687,7 @@ } }, { - "id": 23901, + "id": 22760, "properties": { "east": "low", "north": "low", @@ -199453,7 +189698,7 @@ } }, { - "id": 23902, + "id": 22761, "properties": { "east": "low", "north": "low", @@ -199464,7 +189709,7 @@ } }, { - "id": 23903, + "id": 22762, "properties": { "east": "low", "north": "low", @@ -199475,7 +189720,7 @@ } }, { - "id": 23904, + "id": 22763, "properties": { "east": "low", "north": "low", @@ -199486,7 +189731,7 @@ } }, { - "id": 23905, + "id": 22764, "properties": { "east": "low", "north": "low", @@ -199497,7 +189742,7 @@ } }, { - "id": 23906, + "id": 22765, "properties": { "east": "low", "north": "low", @@ -199508,7 +189753,7 @@ } }, { - "id": 23907, + "id": 22766, "properties": { "east": "low", "north": "low", @@ -199519,7 +189764,7 @@ } }, { - "id": 23908, + "id": 22767, "properties": { "east": "low", "north": "low", @@ -199530,7 +189775,7 @@ } }, { - "id": 23909, + "id": 22768, "properties": { "east": "low", "north": "low", @@ -199541,7 +189786,7 @@ } }, { - "id": 23910, + "id": 22769, "properties": { "east": "low", "north": "low", @@ -199552,7 +189797,7 @@ } }, { - "id": 23911, + "id": 22770, "properties": { "east": "low", "north": "low", @@ -199563,7 +189808,7 @@ } }, { - "id": 23912, + "id": 22771, "properties": { "east": "low", "north": "low", @@ -199574,7 +189819,7 @@ } }, { - "id": 23913, + "id": 22772, "properties": { "east": "low", "north": "low", @@ -199585,7 +189830,7 @@ } }, { - "id": 23914, + "id": 22773, "properties": { "east": "low", "north": "low", @@ -199596,7 +189841,7 @@ } }, { - "id": 23915, + "id": 22774, "properties": { "east": "low", "north": "low", @@ -199607,7 +189852,7 @@ } }, { - "id": 23916, + "id": 22775, "properties": { "east": "low", "north": "low", @@ -199618,7 +189863,7 @@ } }, { - "id": 23917, + "id": 22776, "properties": { "east": "low", "north": "low", @@ -199629,7 +189874,7 @@ } }, { - "id": 23918, + "id": 22777, "properties": { "east": "low", "north": "low", @@ -199640,7 +189885,7 @@ } }, { - "id": 23919, + "id": 22778, "properties": { "east": "low", "north": "low", @@ -199651,7 +189896,7 @@ } }, { - "id": 23920, + "id": 22779, "properties": { "east": "low", "north": "low", @@ -199662,7 +189907,7 @@ } }, { - "id": 23921, + "id": 22780, "properties": { "east": "low", "north": "low", @@ -199673,7 +189918,7 @@ } }, { - "id": 23922, + "id": 22781, "properties": { "east": "low", "north": "low", @@ -199684,7 +189929,7 @@ } }, { - "id": 23923, + "id": 22782, "properties": { "east": "low", "north": "low", @@ -199695,7 +189940,7 @@ } }, { - "id": 23924, + "id": 22783, "properties": { "east": "low", "north": "low", @@ -199706,7 +189951,7 @@ } }, { - "id": 23925, + "id": 22784, "properties": { "east": "low", "north": "low", @@ -199717,7 +189962,7 @@ } }, { - "id": 23926, + "id": 22785, "properties": { "east": "low", "north": "low", @@ -199728,7 +189973,7 @@ } }, { - "id": 23927, + "id": 22786, "properties": { "east": "low", "north": "low", @@ -199739,7 +189984,7 @@ } }, { - "id": 23928, + "id": 22787, "properties": { "east": "low", "north": "tall", @@ -199750,7 +189995,7 @@ } }, { - "id": 23929, + "id": 22788, "properties": { "east": "low", "north": "tall", @@ -199761,7 +190006,7 @@ } }, { - "id": 23930, + "id": 22789, "properties": { "east": "low", "north": "tall", @@ -199772,7 +190017,7 @@ } }, { - "id": 23931, + "id": 22790, "properties": { "east": "low", "north": "tall", @@ -199783,7 +190028,7 @@ } }, { - "id": 23932, + "id": 22791, "properties": { "east": "low", "north": "tall", @@ -199794,7 +190039,7 @@ } }, { - "id": 23933, + "id": 22792, "properties": { "east": "low", "north": "tall", @@ -199805,7 +190050,7 @@ } }, { - "id": 23934, + "id": 22793, "properties": { "east": "low", "north": "tall", @@ -199816,7 +190061,7 @@ } }, { - "id": 23935, + "id": 22794, "properties": { "east": "low", "north": "tall", @@ -199827,7 +190072,7 @@ } }, { - "id": 23936, + "id": 22795, "properties": { "east": "low", "north": "tall", @@ -199838,7 +190083,7 @@ } }, { - "id": 23937, + "id": 22796, "properties": { "east": "low", "north": "tall", @@ -199849,7 +190094,7 @@ } }, { - "id": 23938, + "id": 22797, "properties": { "east": "low", "north": "tall", @@ -199860,7 +190105,7 @@ } }, { - "id": 23939, + "id": 22798, "properties": { "east": "low", "north": "tall", @@ -199871,7 +190116,7 @@ } }, { - "id": 23940, + "id": 22799, "properties": { "east": "low", "north": "tall", @@ -199882,7 +190127,7 @@ } }, { - "id": 23941, + "id": 22800, "properties": { "east": "low", "north": "tall", @@ -199893,7 +190138,7 @@ } }, { - "id": 23942, + "id": 22801, "properties": { "east": "low", "north": "tall", @@ -199904,7 +190149,7 @@ } }, { - "id": 23943, + "id": 22802, "properties": { "east": "low", "north": "tall", @@ -199915,7 +190160,7 @@ } }, { - "id": 23944, + "id": 22803, "properties": { "east": "low", "north": "tall", @@ -199926,7 +190171,7 @@ } }, { - "id": 23945, + "id": 22804, "properties": { "east": "low", "north": "tall", @@ -199937,7 +190182,7 @@ } }, { - "id": 23946, + "id": 22805, "properties": { "east": "low", "north": "tall", @@ -199948,7 +190193,7 @@ } }, { - "id": 23947, + "id": 22806, "properties": { "east": "low", "north": "tall", @@ -199959,7 +190204,7 @@ } }, { - "id": 23948, + "id": 22807, "properties": { "east": "low", "north": "tall", @@ -199970,7 +190215,7 @@ } }, { - "id": 23949, + "id": 22808, "properties": { "east": "low", "north": "tall", @@ -199981,7 +190226,7 @@ } }, { - "id": 23950, + "id": 22809, "properties": { "east": "low", "north": "tall", @@ -199992,7 +190237,7 @@ } }, { - "id": 23951, + "id": 22810, "properties": { "east": "low", "north": "tall", @@ -200003,7 +190248,7 @@ } }, { - "id": 23952, + "id": 22811, "properties": { "east": "low", "north": "tall", @@ -200014,7 +190259,7 @@ } }, { - "id": 23953, + "id": 22812, "properties": { "east": "low", "north": "tall", @@ -200025,7 +190270,7 @@ } }, { - "id": 23954, + "id": 22813, "properties": { "east": "low", "north": "tall", @@ -200036,7 +190281,7 @@ } }, { - "id": 23955, + "id": 22814, "properties": { "east": "low", "north": "tall", @@ -200047,7 +190292,7 @@ } }, { - "id": 23956, + "id": 22815, "properties": { "east": "low", "north": "tall", @@ -200058,7 +190303,7 @@ } }, { - "id": 23957, + "id": 22816, "properties": { "east": "low", "north": "tall", @@ -200069,7 +190314,7 @@ } }, { - "id": 23958, + "id": 22817, "properties": { "east": "low", "north": "tall", @@ -200080,7 +190325,7 @@ } }, { - "id": 23959, + "id": 22818, "properties": { "east": "low", "north": "tall", @@ -200091,7 +190336,7 @@ } }, { - "id": 23960, + "id": 22819, "properties": { "east": "low", "north": "tall", @@ -200102,7 +190347,7 @@ } }, { - "id": 23961, + "id": 22820, "properties": { "east": "low", "north": "tall", @@ -200113,7 +190358,7 @@ } }, { - "id": 23962, + "id": 22821, "properties": { "east": "low", "north": "tall", @@ -200124,7 +190369,7 @@ } }, { - "id": 23963, + "id": 22822, "properties": { "east": "low", "north": "tall", @@ -200135,7 +190380,7 @@ } }, { - "id": 23964, + "id": 22823, "properties": { "east": "tall", "north": "none", @@ -200146,7 +190391,7 @@ } }, { - "id": 23965, + "id": 22824, "properties": { "east": "tall", "north": "none", @@ -200157,7 +190402,7 @@ } }, { - "id": 23966, + "id": 22825, "properties": { "east": "tall", "north": "none", @@ -200168,7 +190413,7 @@ } }, { - "id": 23967, + "id": 22826, "properties": { "east": "tall", "north": "none", @@ -200179,7 +190424,7 @@ } }, { - "id": 23968, + "id": 22827, "properties": { "east": "tall", "north": "none", @@ -200190,7 +190435,7 @@ } }, { - "id": 23969, + "id": 22828, "properties": { "east": "tall", "north": "none", @@ -200201,7 +190446,7 @@ } }, { - "id": 23970, + "id": 22829, "properties": { "east": "tall", "north": "none", @@ -200212,7 +190457,7 @@ } }, { - "id": 23971, + "id": 22830, "properties": { "east": "tall", "north": "none", @@ -200223,7 +190468,7 @@ } }, { - "id": 23972, + "id": 22831, "properties": { "east": "tall", "north": "none", @@ -200234,7 +190479,7 @@ } }, { - "id": 23973, + "id": 22832, "properties": { "east": "tall", "north": "none", @@ -200245,7 +190490,7 @@ } }, { - "id": 23974, + "id": 22833, "properties": { "east": "tall", "north": "none", @@ -200256,7 +190501,7 @@ } }, { - "id": 23975, + "id": 22834, "properties": { "east": "tall", "north": "none", @@ -200267,7 +190512,7 @@ } }, { - "id": 23976, + "id": 22835, "properties": { "east": "tall", "north": "none", @@ -200278,7 +190523,7 @@ } }, { - "id": 23977, + "id": 22836, "properties": { "east": "tall", "north": "none", @@ -200289,7 +190534,7 @@ } }, { - "id": 23978, + "id": 22837, "properties": { "east": "tall", "north": "none", @@ -200300,7 +190545,7 @@ } }, { - "id": 23979, + "id": 22838, "properties": { "east": "tall", "north": "none", @@ -200311,7 +190556,7 @@ } }, { - "id": 23980, + "id": 22839, "properties": { "east": "tall", "north": "none", @@ -200322,7 +190567,7 @@ } }, { - "id": 23981, + "id": 22840, "properties": { "east": "tall", "north": "none", @@ -200333,7 +190578,7 @@ } }, { - "id": 23982, + "id": 22841, "properties": { "east": "tall", "north": "none", @@ -200344,7 +190589,7 @@ } }, { - "id": 23983, + "id": 22842, "properties": { "east": "tall", "north": "none", @@ -200355,7 +190600,7 @@ } }, { - "id": 23984, + "id": 22843, "properties": { "east": "tall", "north": "none", @@ -200366,7 +190611,7 @@ } }, { - "id": 23985, + "id": 22844, "properties": { "east": "tall", "north": "none", @@ -200377,7 +190622,7 @@ } }, { - "id": 23986, + "id": 22845, "properties": { "east": "tall", "north": "none", @@ -200388,7 +190633,7 @@ } }, { - "id": 23987, + "id": 22846, "properties": { "east": "tall", "north": "none", @@ -200399,7 +190644,7 @@ } }, { - "id": 23988, + "id": 22847, "properties": { "east": "tall", "north": "none", @@ -200410,7 +190655,7 @@ } }, { - "id": 23989, + "id": 22848, "properties": { "east": "tall", "north": "none", @@ -200421,7 +190666,7 @@ } }, { - "id": 23990, + "id": 22849, "properties": { "east": "tall", "north": "none", @@ -200432,7 +190677,7 @@ } }, { - "id": 23991, + "id": 22850, "properties": { "east": "tall", "north": "none", @@ -200443,7 +190688,7 @@ } }, { - "id": 23992, + "id": 22851, "properties": { "east": "tall", "north": "none", @@ -200454,7 +190699,7 @@ } }, { - "id": 23993, + "id": 22852, "properties": { "east": "tall", "north": "none", @@ -200465,7 +190710,7 @@ } }, { - "id": 23994, + "id": 22853, "properties": { "east": "tall", "north": "none", @@ -200476,7 +190721,7 @@ } }, { - "id": 23995, + "id": 22854, "properties": { "east": "tall", "north": "none", @@ -200487,7 +190732,7 @@ } }, { - "id": 23996, + "id": 22855, "properties": { "east": "tall", "north": "none", @@ -200498,7 +190743,7 @@ } }, { - "id": 23997, + "id": 22856, "properties": { "east": "tall", "north": "none", @@ -200509,7 +190754,7 @@ } }, { - "id": 23998, + "id": 22857, "properties": { "east": "tall", "north": "none", @@ -200520,7 +190765,7 @@ } }, { - "id": 23999, + "id": 22858, "properties": { "east": "tall", "north": "none", @@ -200531,7 +190776,7 @@ } }, { - "id": 24000, + "id": 22859, "properties": { "east": "tall", "north": "low", @@ -200542,7 +190787,7 @@ } }, { - "id": 24001, + "id": 22860, "properties": { "east": "tall", "north": "low", @@ -200553,7 +190798,7 @@ } }, { - "id": 24002, + "id": 22861, "properties": { "east": "tall", "north": "low", @@ -200564,7 +190809,7 @@ } }, { - "id": 24003, + "id": 22862, "properties": { "east": "tall", "north": "low", @@ -200575,7 +190820,7 @@ } }, { - "id": 24004, + "id": 22863, "properties": { "east": "tall", "north": "low", @@ -200586,7 +190831,7 @@ } }, { - "id": 24005, + "id": 22864, "properties": { "east": "tall", "north": "low", @@ -200597,7 +190842,7 @@ } }, { - "id": 24006, + "id": 22865, "properties": { "east": "tall", "north": "low", @@ -200608,7 +190853,7 @@ } }, { - "id": 24007, + "id": 22866, "properties": { "east": "tall", "north": "low", @@ -200619,7 +190864,7 @@ } }, { - "id": 24008, + "id": 22867, "properties": { "east": "tall", "north": "low", @@ -200630,7 +190875,7 @@ } }, { - "id": 24009, + "id": 22868, "properties": { "east": "tall", "north": "low", @@ -200641,7 +190886,7 @@ } }, { - "id": 24010, + "id": 22869, "properties": { "east": "tall", "north": "low", @@ -200652,7 +190897,7 @@ } }, { - "id": 24011, + "id": 22870, "properties": { "east": "tall", "north": "low", @@ -200663,7 +190908,7 @@ } }, { - "id": 24012, + "id": 22871, "properties": { "east": "tall", "north": "low", @@ -200674,7 +190919,7 @@ } }, { - "id": 24013, + "id": 22872, "properties": { "east": "tall", "north": "low", @@ -200685,7 +190930,7 @@ } }, { - "id": 24014, + "id": 22873, "properties": { "east": "tall", "north": "low", @@ -200696,7 +190941,7 @@ } }, { - "id": 24015, + "id": 22874, "properties": { "east": "tall", "north": "low", @@ -200707,7 +190952,7 @@ } }, { - "id": 24016, + "id": 22875, "properties": { "east": "tall", "north": "low", @@ -200718,7 +190963,7 @@ } }, { - "id": 24017, + "id": 22876, "properties": { "east": "tall", "north": "low", @@ -200729,7 +190974,7 @@ } }, { - "id": 24018, + "id": 22877, "properties": { "east": "tall", "north": "low", @@ -200740,7 +190985,7 @@ } }, { - "id": 24019, + "id": 22878, "properties": { "east": "tall", "north": "low", @@ -200751,7 +190996,7 @@ } }, { - "id": 24020, + "id": 22879, "properties": { "east": "tall", "north": "low", @@ -200762,7 +191007,7 @@ } }, { - "id": 24021, + "id": 22880, "properties": { "east": "tall", "north": "low", @@ -200773,7 +191018,7 @@ } }, { - "id": 24022, + "id": 22881, "properties": { "east": "tall", "north": "low", @@ -200784,7 +191029,7 @@ } }, { - "id": 24023, + "id": 22882, "properties": { "east": "tall", "north": "low", @@ -200795,7 +191040,7 @@ } }, { - "id": 24024, + "id": 22883, "properties": { "east": "tall", "north": "low", @@ -200806,7 +191051,7 @@ } }, { - "id": 24025, + "id": 22884, "properties": { "east": "tall", "north": "low", @@ -200817,7 +191062,7 @@ } }, { - "id": 24026, + "id": 22885, "properties": { "east": "tall", "north": "low", @@ -200828,7 +191073,7 @@ } }, { - "id": 24027, + "id": 22886, "properties": { "east": "tall", "north": "low", @@ -200839,7 +191084,7 @@ } }, { - "id": 24028, + "id": 22887, "properties": { "east": "tall", "north": "low", @@ -200850,7 +191095,7 @@ } }, { - "id": 24029, + "id": 22888, "properties": { "east": "tall", "north": "low", @@ -200861,7 +191106,7 @@ } }, { - "id": 24030, + "id": 22889, "properties": { "east": "tall", "north": "low", @@ -200872,7 +191117,7 @@ } }, { - "id": 24031, + "id": 22890, "properties": { "east": "tall", "north": "low", @@ -200883,7 +191128,7 @@ } }, { - "id": 24032, + "id": 22891, "properties": { "east": "tall", "north": "low", @@ -200894,7 +191139,7 @@ } }, { - "id": 24033, + "id": 22892, "properties": { "east": "tall", "north": "low", @@ -200905,7 +191150,7 @@ } }, { - "id": 24034, + "id": 22893, "properties": { "east": "tall", "north": "low", @@ -200916,7 +191161,7 @@ } }, { - "id": 24035, + "id": 22894, "properties": { "east": "tall", "north": "low", @@ -200927,7 +191172,7 @@ } }, { - "id": 24036, + "id": 22895, "properties": { "east": "tall", "north": "tall", @@ -200938,7 +191183,7 @@ } }, { - "id": 24037, + "id": 22896, "properties": { "east": "tall", "north": "tall", @@ -200949,7 +191194,7 @@ } }, { - "id": 24038, + "id": 22897, "properties": { "east": "tall", "north": "tall", @@ -200960,7 +191205,7 @@ } }, { - "id": 24039, + "id": 22898, "properties": { "east": "tall", "north": "tall", @@ -200971,7 +191216,7 @@ } }, { - "id": 24040, + "id": 22899, "properties": { "east": "tall", "north": "tall", @@ -200982,7 +191227,7 @@ } }, { - "id": 24041, + "id": 22900, "properties": { "east": "tall", "north": "tall", @@ -200993,7 +191238,7 @@ } }, { - "id": 24042, + "id": 22901, "properties": { "east": "tall", "north": "tall", @@ -201004,7 +191249,7 @@ } }, { - "id": 24043, + "id": 22902, "properties": { "east": "tall", "north": "tall", @@ -201015,7 +191260,7 @@ } }, { - "id": 24044, + "id": 22903, "properties": { "east": "tall", "north": "tall", @@ -201026,7 +191271,7 @@ } }, { - "id": 24045, + "id": 22904, "properties": { "east": "tall", "north": "tall", @@ -201037,7 +191282,7 @@ } }, { - "id": 24046, + "id": 22905, "properties": { "east": "tall", "north": "tall", @@ -201048,7 +191293,7 @@ } }, { - "id": 24047, + "id": 22906, "properties": { "east": "tall", "north": "tall", @@ -201059,7 +191304,7 @@ } }, { - "id": 24048, + "id": 22907, "properties": { "east": "tall", "north": "tall", @@ -201070,7 +191315,7 @@ } }, { - "id": 24049, + "id": 22908, "properties": { "east": "tall", "north": "tall", @@ -201081,7 +191326,7 @@ } }, { - "id": 24050, + "id": 22909, "properties": { "east": "tall", "north": "tall", @@ -201092,7 +191337,7 @@ } }, { - "id": 24051, + "id": 22910, "properties": { "east": "tall", "north": "tall", @@ -201103,7 +191348,7 @@ } }, { - "id": 24052, + "id": 22911, "properties": { "east": "tall", "north": "tall", @@ -201114,7 +191359,7 @@ } }, { - "id": 24053, + "id": 22912, "properties": { "east": "tall", "north": "tall", @@ -201125,7 +191370,7 @@ } }, { - "id": 24054, + "id": 22913, "properties": { "east": "tall", "north": "tall", @@ -201136,7 +191381,7 @@ } }, { - "id": 24055, + "id": 22914, "properties": { "east": "tall", "north": "tall", @@ -201147,7 +191392,7 @@ } }, { - "id": 24056, + "id": 22915, "properties": { "east": "tall", "north": "tall", @@ -201158,7 +191403,7 @@ } }, { - "id": 24057, + "id": 22916, "properties": { "east": "tall", "north": "tall", @@ -201169,7 +191414,7 @@ } }, { - "id": 24058, + "id": 22917, "properties": { "east": "tall", "north": "tall", @@ -201180,7 +191425,7 @@ } }, { - "id": 24059, + "id": 22918, "properties": { "east": "tall", "north": "tall", @@ -201191,7 +191436,7 @@ } }, { - "id": 24060, + "id": 22919, "properties": { "east": "tall", "north": "tall", @@ -201202,7 +191447,7 @@ } }, { - "id": 24061, + "id": 22920, "properties": { "east": "tall", "north": "tall", @@ -201213,7 +191458,7 @@ } }, { - "id": 24062, + "id": 22921, "properties": { "east": "tall", "north": "tall", @@ -201224,7 +191469,7 @@ } }, { - "id": 24063, + "id": 22922, "properties": { "east": "tall", "north": "tall", @@ -201235,7 +191480,7 @@ } }, { - "id": 24064, + "id": 22923, "properties": { "east": "tall", "north": "tall", @@ -201246,7 +191491,7 @@ } }, { - "id": 24065, + "id": 22924, "properties": { "east": "tall", "north": "tall", @@ -201257,7 +191502,7 @@ } }, { - "id": 24066, + "id": 22925, "properties": { "east": "tall", "north": "tall", @@ -201268,7 +191513,7 @@ } }, { - "id": 24067, + "id": 22926, "properties": { "east": "tall", "north": "tall", @@ -201279,7 +191524,7 @@ } }, { - "id": 24068, + "id": 22927, "properties": { "east": "tall", "north": "tall", @@ -201290,7 +191535,7 @@ } }, { - "id": 24069, + "id": 22928, "properties": { "east": "tall", "north": "tall", @@ -201301,7 +191546,7 @@ } }, { - "id": 24070, + "id": 22929, "properties": { "east": "tall", "north": "tall", @@ -201312,7 +191557,7 @@ } }, { - "id": 24071, + "id": 22930, "properties": { "east": "tall", "north": "tall", @@ -201362,49 +191607,49 @@ "states": [ { "default": true, - "id": 10465, + "id": 9388, "properties": { "age": "0" } }, { - "id": 10466, + "id": 9389, "properties": { "age": "1" } }, { - "id": 10467, + "id": 9390, "properties": { "age": "2" } }, { - "id": 10468, + "id": 9391, "properties": { "age": "3" } }, { - "id": 10469, + "id": 9392, "properties": { "age": "4" } }, { - "id": 10470, + "id": 9393, "properties": { "age": "5" } }, { - "id": 10471, + "id": 9394, "properties": { "age": "6" } }, { - "id": 10472, + "id": 9395, "properties": { "age": "7" } @@ -201420,7 +191665,7 @@ "states": [ { "default": true, - "id": 10434 + "id": 9357 } ] }, @@ -201433,7 +191678,7 @@ "states": [ { "default": true, - "id": 10443 + "id": 9366 } ] }, @@ -201446,7 +191691,7 @@ "states": [ { "default": true, - "id": 29378 + "id": 27621 } ] }, @@ -201459,7 +191704,7 @@ "states": [ { "default": true, - "id": 10444 + "id": 9367 } ] }, @@ -201472,7 +191717,7 @@ "states": [ { "default": true, - "id": 15089 + "id": 13980 } ] }, @@ -201485,7 +191730,7 @@ "states": [ { "default": true, - "id": 10432 + "id": 9355 } ] }, @@ -201498,7 +191743,7 @@ "states": [ { "default": true, - "id": 10442 + "id": 9365 } ] }, @@ -201511,7 +191756,7 @@ "states": [ { "default": true, - "id": 10454 + "id": 9377 } ] }, @@ -201524,7 +191769,7 @@ "states": [ { "default": true, - "id": 10456 + "id": 9379 } ] }, @@ -201537,7 +191782,7 @@ "states": [ { "default": true, - "id": 10435 + "id": 9358 } ] }, @@ -201550,7 +191795,7 @@ "states": [ { "default": true, - "id": 29669 + "id": 27912 } ] }, @@ -201563,7 +191808,7 @@ "states": [ { "default": true, - "id": 10450 + "id": 9373 } ] }, @@ -201576,7 +191821,7 @@ "states": [ { "default": true, - "id": 21624 + "id": 20483 } ] }, @@ -201589,7 +191834,7 @@ "states": [ { "default": true, - "id": 21626 + "id": 20485 } ] }, @@ -201602,7 +191847,7 @@ "states": [ { "default": true, - "id": 10440 + "id": 9363 } ] }, @@ -201615,7 +191860,7 @@ "states": [ { "default": true, - "id": 10436 + "id": 9359 } ] }, @@ -201628,7 +191873,7 @@ "states": [ { "default": true, - "id": 10455 + "id": 9378 } ] }, @@ -201641,7 +191886,7 @@ "states": [ { "default": true, - "id": 10439 + "id": 9362 } ] }, @@ -201654,7 +191899,7 @@ "states": [ { "default": true, - "id": 29379 + "id": 27622 } ] }, @@ -201667,7 +191912,7 @@ "states": [ { "default": true, - "id": 10433 + "id": 9356 } ] }, @@ -201680,7 +191925,7 @@ "states": [ { "default": true, - "id": 10451 + "id": 9374 } ] }, @@ -201693,7 +191938,7 @@ "states": [ { "default": true, - "id": 10438 + "id": 9361 } ] }, @@ -201706,7 +191951,7 @@ "states": [ { "default": true, - "id": 10430 + "id": 9353 } ] }, @@ -201719,7 +191964,7 @@ "states": [ { "default": true, - "id": 29668 + "id": 27911 } ] }, @@ -201732,7 +191977,7 @@ "states": [ { "default": true, - "id": 10446 + "id": 9369 } ] }, @@ -201745,7 +191990,7 @@ "states": [ { "default": true, - "id": 10449 + "id": 9372 } ] }, @@ -201758,7 +192003,7 @@ "states": [ { "default": true, - "id": 10437 + "id": 9360 } ] }, @@ -201771,7 +192016,7 @@ "states": [ { "default": true, - "id": 10448 + "id": 9371 } ] }, @@ -201784,7 +192029,7 @@ "states": [ { "default": true, - "id": 10441 + "id": 9364 } ] }, @@ -201797,7 +192042,7 @@ "states": [ { "default": true, - "id": 10453 + "id": 9376 } ] }, @@ -201810,7 +192055,7 @@ "states": [ { "default": true, - "id": 10445 + "id": 9368 } ] }, @@ -201823,7 +192068,7 @@ "states": [ { "default": true, - "id": 10431 + "id": 9354 } ] }, @@ -201836,7 +192081,7 @@ "states": [ { "default": true, - "id": 10429 + "id": 9352 } ] }, @@ -201849,7 +192094,7 @@ "states": [ { "default": true, - "id": 21625 + "id": 20484 } ] }, @@ -201862,7 +192107,7 @@ "states": [ { "default": true, - "id": 21627 + "id": 20486 } ] }, @@ -201875,7 +192120,7 @@ "states": [ { "default": true, - "id": 10447 + "id": 9370 } ] }, @@ -201888,7 +192133,7 @@ "states": [ { "default": true, - "id": 10452 + "id": 9375 } ] }, @@ -201900,7 +192145,7 @@ "states": [ { "default": true, - "id": 24487 + "id": 23346 } ] }, @@ -201921,19 +192166,19 @@ "states": [ { "default": true, - "id": 9264, + "id": 8187, "properties": { "level": "1" } }, { - "id": 9265, + "id": 8188, "properties": { "level": "2" } }, { - "id": 9266, + "id": 8189, "properties": { "level": "3" } @@ -202167,7 +192412,7 @@ "states": [ { "default": true, - "id": 12429 + "id": 11352 } ] }, @@ -202189,21 +192434,21 @@ }, "states": [ { - "id": 12678, + "id": 11601, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 12679, + "id": 11602, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 12680, + "id": 11603, "properties": { "type": "bottom", "waterlogged": "true" @@ -202211,21 +192456,21 @@ }, { "default": true, - "id": 12681, + "id": 11604, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 12682, + "id": 11605, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 12683, + "id": 11606, "properties": { "type": "double", "waterlogged": "false" @@ -202266,7 +192511,7 @@ }, "states": [ { - "id": 12512, + "id": 11435, "properties": { "facing": "north", "half": "top", @@ -202275,7 +192520,7 @@ } }, { - "id": 12513, + "id": 11436, "properties": { "facing": "north", "half": "top", @@ -202284,7 +192529,7 @@ } }, { - "id": 12514, + "id": 11437, "properties": { "facing": "north", "half": "top", @@ -202293,7 +192538,7 @@ } }, { - "id": 12515, + "id": 11438, "properties": { "facing": "north", "half": "top", @@ -202302,7 +192547,7 @@ } }, { - "id": 12516, + "id": 11439, "properties": { "facing": "north", "half": "top", @@ -202311,7 +192556,7 @@ } }, { - "id": 12517, + "id": 11440, "properties": { "facing": "north", "half": "top", @@ -202320,7 +192565,7 @@ } }, { - "id": 12518, + "id": 11441, "properties": { "facing": "north", "half": "top", @@ -202329,7 +192574,7 @@ } }, { - "id": 12519, + "id": 11442, "properties": { "facing": "north", "half": "top", @@ -202338,7 +192583,7 @@ } }, { - "id": 12520, + "id": 11443, "properties": { "facing": "north", "half": "top", @@ -202347,7 +192592,7 @@ } }, { - "id": 12521, + "id": 11444, "properties": { "facing": "north", "half": "top", @@ -202356,7 +192601,7 @@ } }, { - "id": 12522, + "id": 11445, "properties": { "facing": "north", "half": "bottom", @@ -202366,7 +192611,7 @@ }, { "default": true, - "id": 12523, + "id": 11446, "properties": { "facing": "north", "half": "bottom", @@ -202375,7 +192620,7 @@ } }, { - "id": 12524, + "id": 11447, "properties": { "facing": "north", "half": "bottom", @@ -202384,7 +192629,7 @@ } }, { - "id": 12525, + "id": 11448, "properties": { "facing": "north", "half": "bottom", @@ -202393,7 +192638,7 @@ } }, { - "id": 12526, + "id": 11449, "properties": { "facing": "north", "half": "bottom", @@ -202402,7 +192647,7 @@ } }, { - "id": 12527, + "id": 11450, "properties": { "facing": "north", "half": "bottom", @@ -202411,7 +192656,7 @@ } }, { - "id": 12528, + "id": 11451, "properties": { "facing": "north", "half": "bottom", @@ -202420,7 +192665,7 @@ } }, { - "id": 12529, + "id": 11452, "properties": { "facing": "north", "half": "bottom", @@ -202429,7 +192674,7 @@ } }, { - "id": 12530, + "id": 11453, "properties": { "facing": "north", "half": "bottom", @@ -202438,7 +192683,7 @@ } }, { - "id": 12531, + "id": 11454, "properties": { "facing": "north", "half": "bottom", @@ -202447,7 +192692,7 @@ } }, { - "id": 12532, + "id": 11455, "properties": { "facing": "south", "half": "top", @@ -202456,7 +192701,7 @@ } }, { - "id": 12533, + "id": 11456, "properties": { "facing": "south", "half": "top", @@ -202465,7 +192710,7 @@ } }, { - "id": 12534, + "id": 11457, "properties": { "facing": "south", "half": "top", @@ -202474,7 +192719,7 @@ } }, { - "id": 12535, + "id": 11458, "properties": { "facing": "south", "half": "top", @@ -202483,7 +192728,7 @@ } }, { - "id": 12536, + "id": 11459, "properties": { "facing": "south", "half": "top", @@ -202492,7 +192737,7 @@ } }, { - "id": 12537, + "id": 11460, "properties": { "facing": "south", "half": "top", @@ -202501,7 +192746,7 @@ } }, { - "id": 12538, + "id": 11461, "properties": { "facing": "south", "half": "top", @@ -202510,7 +192755,7 @@ } }, { - "id": 12539, + "id": 11462, "properties": { "facing": "south", "half": "top", @@ -202519,7 +192764,7 @@ } }, { - "id": 12540, + "id": 11463, "properties": { "facing": "south", "half": "top", @@ -202528,7 +192773,7 @@ } }, { - "id": 12541, + "id": 11464, "properties": { "facing": "south", "half": "top", @@ -202537,7 +192782,7 @@ } }, { - "id": 12542, + "id": 11465, "properties": { "facing": "south", "half": "bottom", @@ -202546,7 +192791,7 @@ } }, { - "id": 12543, + "id": 11466, "properties": { "facing": "south", "half": "bottom", @@ -202555,7 +192800,7 @@ } }, { - "id": 12544, + "id": 11467, "properties": { "facing": "south", "half": "bottom", @@ -202564,7 +192809,7 @@ } }, { - "id": 12545, + "id": 11468, "properties": { "facing": "south", "half": "bottom", @@ -202573,7 +192818,7 @@ } }, { - "id": 12546, + "id": 11469, "properties": { "facing": "south", "half": "bottom", @@ -202582,7 +192827,7 @@ } }, { - "id": 12547, + "id": 11470, "properties": { "facing": "south", "half": "bottom", @@ -202591,7 +192836,7 @@ } }, { - "id": 12548, + "id": 11471, "properties": { "facing": "south", "half": "bottom", @@ -202600,7 +192845,7 @@ } }, { - "id": 12549, + "id": 11472, "properties": { "facing": "south", "half": "bottom", @@ -202609,7 +192854,7 @@ } }, { - "id": 12550, + "id": 11473, "properties": { "facing": "south", "half": "bottom", @@ -202618,7 +192863,7 @@ } }, { - "id": 12551, + "id": 11474, "properties": { "facing": "south", "half": "bottom", @@ -202627,7 +192872,7 @@ } }, { - "id": 12552, + "id": 11475, "properties": { "facing": "west", "half": "top", @@ -202636,7 +192881,7 @@ } }, { - "id": 12553, + "id": 11476, "properties": { "facing": "west", "half": "top", @@ -202645,7 +192890,7 @@ } }, { - "id": 12554, + "id": 11477, "properties": { "facing": "west", "half": "top", @@ -202654,7 +192899,7 @@ } }, { - "id": 12555, + "id": 11478, "properties": { "facing": "west", "half": "top", @@ -202663,7 +192908,7 @@ } }, { - "id": 12556, + "id": 11479, "properties": { "facing": "west", "half": "top", @@ -202672,7 +192917,7 @@ } }, { - "id": 12557, + "id": 11480, "properties": { "facing": "west", "half": "top", @@ -202681,7 +192926,7 @@ } }, { - "id": 12558, + "id": 11481, "properties": { "facing": "west", "half": "top", @@ -202690,7 +192935,7 @@ } }, { - "id": 12559, + "id": 11482, "properties": { "facing": "west", "half": "top", @@ -202699,7 +192944,7 @@ } }, { - "id": 12560, + "id": 11483, "properties": { "facing": "west", "half": "top", @@ -202708,7 +192953,7 @@ } }, { - "id": 12561, + "id": 11484, "properties": { "facing": "west", "half": "top", @@ -202717,7 +192962,7 @@ } }, { - "id": 12562, + "id": 11485, "properties": { "facing": "west", "half": "bottom", @@ -202726,7 +192971,7 @@ } }, { - "id": 12563, + "id": 11486, "properties": { "facing": "west", "half": "bottom", @@ -202735,7 +192980,7 @@ } }, { - "id": 12564, + "id": 11487, "properties": { "facing": "west", "half": "bottom", @@ -202744,7 +192989,7 @@ } }, { - "id": 12565, + "id": 11488, "properties": { "facing": "west", "half": "bottom", @@ -202753,7 +192998,7 @@ } }, { - "id": 12566, + "id": 11489, "properties": { "facing": "west", "half": "bottom", @@ -202762,7 +193007,7 @@ } }, { - "id": 12567, + "id": 11490, "properties": { "facing": "west", "half": "bottom", @@ -202771,7 +193016,7 @@ } }, { - "id": 12568, + "id": 11491, "properties": { "facing": "west", "half": "bottom", @@ -202780,7 +193025,7 @@ } }, { - "id": 12569, + "id": 11492, "properties": { "facing": "west", "half": "bottom", @@ -202789,7 +193034,7 @@ } }, { - "id": 12570, + "id": 11493, "properties": { "facing": "west", "half": "bottom", @@ -202798,7 +193043,7 @@ } }, { - "id": 12571, + "id": 11494, "properties": { "facing": "west", "half": "bottom", @@ -202807,7 +193052,7 @@ } }, { - "id": 12572, + "id": 11495, "properties": { "facing": "east", "half": "top", @@ -202816,7 +193061,7 @@ } }, { - "id": 12573, + "id": 11496, "properties": { "facing": "east", "half": "top", @@ -202825,7 +193070,7 @@ } }, { - "id": 12574, + "id": 11497, "properties": { "facing": "east", "half": "top", @@ -202834,7 +193079,7 @@ } }, { - "id": 12575, + "id": 11498, "properties": { "facing": "east", "half": "top", @@ -202843,7 +193088,7 @@ } }, { - "id": 12576, + "id": 11499, "properties": { "facing": "east", "half": "top", @@ -202852,7 +193097,7 @@ } }, { - "id": 12577, + "id": 11500, "properties": { "facing": "east", "half": "top", @@ -202861,7 +193106,7 @@ } }, { - "id": 12578, + "id": 11501, "properties": { "facing": "east", "half": "top", @@ -202870,7 +193115,7 @@ } }, { - "id": 12579, + "id": 11502, "properties": { "facing": "east", "half": "top", @@ -202879,7 +193124,7 @@ } }, { - "id": 12580, + "id": 11503, "properties": { "facing": "east", "half": "top", @@ -202888,7 +193133,7 @@ } }, { - "id": 12581, + "id": 11504, "properties": { "facing": "east", "half": "top", @@ -202897,7 +193142,7 @@ } }, { - "id": 12582, + "id": 11505, "properties": { "facing": "east", "half": "bottom", @@ -202906,7 +193151,7 @@ } }, { - "id": 12583, + "id": 11506, "properties": { "facing": "east", "half": "bottom", @@ -202915,7 +193160,7 @@ } }, { - "id": 12584, + "id": 11507, "properties": { "facing": "east", "half": "bottom", @@ -202924,7 +193169,7 @@ } }, { - "id": 12585, + "id": 11508, "properties": { "facing": "east", "half": "bottom", @@ -202933,7 +193178,7 @@ } }, { - "id": 12586, + "id": 11509, "properties": { "facing": "east", "half": "bottom", @@ -202942,7 +193187,7 @@ } }, { - "id": 12587, + "id": 11510, "properties": { "facing": "east", "half": "bottom", @@ -202951,7 +193196,7 @@ } }, { - "id": 12588, + "id": 11511, "properties": { "facing": "east", "half": "bottom", @@ -202960,7 +193205,7 @@ } }, { - "id": 12589, + "id": 11512, "properties": { "facing": "east", "half": "bottom", @@ -202969,7 +193214,7 @@ } }, { - "id": 12590, + "id": 11513, "properties": { "facing": "east", "half": "bottom", @@ -202978,7 +193223,7 @@ } }, { - "id": 12591, + "id": 11514, "properties": { "facing": "east", "half": "bottom", @@ -202996,7 +193241,7 @@ "states": [ { "default": true, - "id": 12430 + "id": 11353 } ] }, @@ -203018,21 +193263,21 @@ }, "states": [ { - "id": 12672, + "id": 11595, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 12673, + "id": 11596, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 12674, + "id": 11597, "properties": { "type": "bottom", "waterlogged": "true" @@ -203040,21 +193285,21 @@ }, { "default": true, - "id": 12675, + "id": 11598, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 12676, + "id": 11599, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 12677, + "id": 11600, "properties": { "type": "double", "waterlogged": "false" @@ -203095,7 +193340,7 @@ }, "states": [ { - "id": 12432, + "id": 11355, "properties": { "facing": "north", "half": "top", @@ -203104,7 +193349,7 @@ } }, { - "id": 12433, + "id": 11356, "properties": { "facing": "north", "half": "top", @@ -203113,7 +193358,7 @@ } }, { - "id": 12434, + "id": 11357, "properties": { "facing": "north", "half": "top", @@ -203122,7 +193367,7 @@ } }, { - "id": 12435, + "id": 11358, "properties": { "facing": "north", "half": "top", @@ -203131,7 +193376,7 @@ } }, { - "id": 12436, + "id": 11359, "properties": { "facing": "north", "half": "top", @@ -203140,7 +193385,7 @@ } }, { - "id": 12437, + "id": 11360, "properties": { "facing": "north", "half": "top", @@ -203149,7 +193394,7 @@ } }, { - "id": 12438, + "id": 11361, "properties": { "facing": "north", "half": "top", @@ -203158,7 +193403,7 @@ } }, { - "id": 12439, + "id": 11362, "properties": { "facing": "north", "half": "top", @@ -203167,7 +193412,7 @@ } }, { - "id": 12440, + "id": 11363, "properties": { "facing": "north", "half": "top", @@ -203176,7 +193421,7 @@ } }, { - "id": 12441, + "id": 11364, "properties": { "facing": "north", "half": "top", @@ -203185,7 +193430,7 @@ } }, { - "id": 12442, + "id": 11365, "properties": { "facing": "north", "half": "bottom", @@ -203195,7 +193440,7 @@ }, { "default": true, - "id": 12443, + "id": 11366, "properties": { "facing": "north", "half": "bottom", @@ -203204,7 +193449,7 @@ } }, { - "id": 12444, + "id": 11367, "properties": { "facing": "north", "half": "bottom", @@ -203213,7 +193458,7 @@ } }, { - "id": 12445, + "id": 11368, "properties": { "facing": "north", "half": "bottom", @@ -203222,7 +193467,7 @@ } }, { - "id": 12446, + "id": 11369, "properties": { "facing": "north", "half": "bottom", @@ -203231,7 +193476,7 @@ } }, { - "id": 12447, + "id": 11370, "properties": { "facing": "north", "half": "bottom", @@ -203240,7 +193485,7 @@ } }, { - "id": 12448, + "id": 11371, "properties": { "facing": "north", "half": "bottom", @@ -203249,7 +193494,7 @@ } }, { - "id": 12449, + "id": 11372, "properties": { "facing": "north", "half": "bottom", @@ -203258,7 +193503,7 @@ } }, { - "id": 12450, + "id": 11373, "properties": { "facing": "north", "half": "bottom", @@ -203267,7 +193512,7 @@ } }, { - "id": 12451, + "id": 11374, "properties": { "facing": "north", "half": "bottom", @@ -203276,7 +193521,7 @@ } }, { - "id": 12452, + "id": 11375, "properties": { "facing": "south", "half": "top", @@ -203285,7 +193530,7 @@ } }, { - "id": 12453, + "id": 11376, "properties": { "facing": "south", "half": "top", @@ -203294,7 +193539,7 @@ } }, { - "id": 12454, + "id": 11377, "properties": { "facing": "south", "half": "top", @@ -203303,7 +193548,7 @@ } }, { - "id": 12455, + "id": 11378, "properties": { "facing": "south", "half": "top", @@ -203312,7 +193557,7 @@ } }, { - "id": 12456, + "id": 11379, "properties": { "facing": "south", "half": "top", @@ -203321,7 +193566,7 @@ } }, { - "id": 12457, + "id": 11380, "properties": { "facing": "south", "half": "top", @@ -203330,7 +193575,7 @@ } }, { - "id": 12458, + "id": 11381, "properties": { "facing": "south", "half": "top", @@ -203339,7 +193584,7 @@ } }, { - "id": 12459, + "id": 11382, "properties": { "facing": "south", "half": "top", @@ -203348,7 +193593,7 @@ } }, { - "id": 12460, + "id": 11383, "properties": { "facing": "south", "half": "top", @@ -203357,7 +193602,7 @@ } }, { - "id": 12461, + "id": 11384, "properties": { "facing": "south", "half": "top", @@ -203366,7 +193611,7 @@ } }, { - "id": 12462, + "id": 11385, "properties": { "facing": "south", "half": "bottom", @@ -203375,7 +193620,7 @@ } }, { - "id": 12463, + "id": 11386, "properties": { "facing": "south", "half": "bottom", @@ -203384,7 +193629,7 @@ } }, { - "id": 12464, + "id": 11387, "properties": { "facing": "south", "half": "bottom", @@ -203393,7 +193638,7 @@ } }, { - "id": 12465, + "id": 11388, "properties": { "facing": "south", "half": "bottom", @@ -203402,7 +193647,7 @@ } }, { - "id": 12466, + "id": 11389, "properties": { "facing": "south", "half": "bottom", @@ -203411,7 +193656,7 @@ } }, { - "id": 12467, + "id": 11390, "properties": { "facing": "south", "half": "bottom", @@ -203420,7 +193665,7 @@ } }, { - "id": 12468, + "id": 11391, "properties": { "facing": "south", "half": "bottom", @@ -203429,7 +193674,7 @@ } }, { - "id": 12469, + "id": 11392, "properties": { "facing": "south", "half": "bottom", @@ -203438,7 +193683,7 @@ } }, { - "id": 12470, + "id": 11393, "properties": { "facing": "south", "half": "bottom", @@ -203447,7 +193692,7 @@ } }, { - "id": 12471, + "id": 11394, "properties": { "facing": "south", "half": "bottom", @@ -203456,7 +193701,7 @@ } }, { - "id": 12472, + "id": 11395, "properties": { "facing": "west", "half": "top", @@ -203465,7 +193710,7 @@ } }, { - "id": 12473, + "id": 11396, "properties": { "facing": "west", "half": "top", @@ -203474,7 +193719,7 @@ } }, { - "id": 12474, + "id": 11397, "properties": { "facing": "west", "half": "top", @@ -203483,7 +193728,7 @@ } }, { - "id": 12475, + "id": 11398, "properties": { "facing": "west", "half": "top", @@ -203492,7 +193737,7 @@ } }, { - "id": 12476, + "id": 11399, "properties": { "facing": "west", "half": "top", @@ -203501,7 +193746,7 @@ } }, { - "id": 12477, + "id": 11400, "properties": { "facing": "west", "half": "top", @@ -203510,7 +193755,7 @@ } }, { - "id": 12478, + "id": 11401, "properties": { "facing": "west", "half": "top", @@ -203519,7 +193764,7 @@ } }, { - "id": 12479, + "id": 11402, "properties": { "facing": "west", "half": "top", @@ -203528,7 +193773,7 @@ } }, { - "id": 12480, + "id": 11403, "properties": { "facing": "west", "half": "top", @@ -203537,7 +193782,7 @@ } }, { - "id": 12481, + "id": 11404, "properties": { "facing": "west", "half": "top", @@ -203546,7 +193791,7 @@ } }, { - "id": 12482, + "id": 11405, "properties": { "facing": "west", "half": "bottom", @@ -203555,7 +193800,7 @@ } }, { - "id": 12483, + "id": 11406, "properties": { "facing": "west", "half": "bottom", @@ -203564,7 +193809,7 @@ } }, { - "id": 12484, + "id": 11407, "properties": { "facing": "west", "half": "bottom", @@ -203573,7 +193818,7 @@ } }, { - "id": 12485, + "id": 11408, "properties": { "facing": "west", "half": "bottom", @@ -203582,7 +193827,7 @@ } }, { - "id": 12486, + "id": 11409, "properties": { "facing": "west", "half": "bottom", @@ -203591,7 +193836,7 @@ } }, { - "id": 12487, + "id": 11410, "properties": { "facing": "west", "half": "bottom", @@ -203600,7 +193845,7 @@ } }, { - "id": 12488, + "id": 11411, "properties": { "facing": "west", "half": "bottom", @@ -203609,7 +193854,7 @@ } }, { - "id": 12489, + "id": 11412, "properties": { "facing": "west", "half": "bottom", @@ -203618,7 +193863,7 @@ } }, { - "id": 12490, + "id": 11413, "properties": { "facing": "west", "half": "bottom", @@ -203627,7 +193872,7 @@ } }, { - "id": 12491, + "id": 11414, "properties": { "facing": "west", "half": "bottom", @@ -203636,7 +193881,7 @@ } }, { - "id": 12492, + "id": 11415, "properties": { "facing": "east", "half": "top", @@ -203645,7 +193890,7 @@ } }, { - "id": 12493, + "id": 11416, "properties": { "facing": "east", "half": "top", @@ -203654,7 +193899,7 @@ } }, { - "id": 12494, + "id": 11417, "properties": { "facing": "east", "half": "top", @@ -203663,7 +193908,7 @@ } }, { - "id": 12495, + "id": 11418, "properties": { "facing": "east", "half": "top", @@ -203672,7 +193917,7 @@ } }, { - "id": 12496, + "id": 11419, "properties": { "facing": "east", "half": "top", @@ -203681,7 +193926,7 @@ } }, { - "id": 12497, + "id": 11420, "properties": { "facing": "east", "half": "top", @@ -203690,7 +193935,7 @@ } }, { - "id": 12498, + "id": 11421, "properties": { "facing": "east", "half": "top", @@ -203699,7 +193944,7 @@ } }, { - "id": 12499, + "id": 11422, "properties": { "facing": "east", "half": "top", @@ -203708,7 +193953,7 @@ } }, { - "id": 12500, + "id": 11423, "properties": { "facing": "east", "half": "top", @@ -203717,7 +193962,7 @@ } }, { - "id": 12501, + "id": 11424, "properties": { "facing": "east", "half": "top", @@ -203726,7 +193971,7 @@ } }, { - "id": 12502, + "id": 11425, "properties": { "facing": "east", "half": "bottom", @@ -203735,7 +193980,7 @@ } }, { - "id": 12503, + "id": 11426, "properties": { "facing": "east", "half": "bottom", @@ -203744,7 +193989,7 @@ } }, { - "id": 12504, + "id": 11427, "properties": { "facing": "east", "half": "bottom", @@ -203753,7 +193998,7 @@ } }, { - "id": 12505, + "id": 11428, "properties": { "facing": "east", "half": "bottom", @@ -203762,7 +194007,7 @@ } }, { - "id": 12506, + "id": 11429, "properties": { "facing": "east", "half": "bottom", @@ -203771,7 +194016,7 @@ } }, { - "id": 12507, + "id": 11430, "properties": { "facing": "east", "half": "bottom", @@ -203780,7 +194025,7 @@ } }, { - "id": 12508, + "id": 11431, "properties": { "facing": "east", "half": "bottom", @@ -203789,7 +194034,7 @@ } }, { - "id": 12509, + "id": 11432, "properties": { "facing": "east", "half": "bottom", @@ -203798,7 +194043,7 @@ } }, { - "id": 12510, + "id": 11433, "properties": { "facing": "east", "half": "bottom", @@ -203807,7 +194052,7 @@ } }, { - "id": 12511, + "id": 11434, "properties": { "facing": "east", "half": "bottom", @@ -203854,7 +194099,7 @@ }, "states": [ { - "id": 16616, + "id": 15507, "properties": { "east": "none", "north": "none", @@ -203865,7 +194110,7 @@ } }, { - "id": 16617, + "id": 15508, "properties": { "east": "none", "north": "none", @@ -203876,7 +194121,7 @@ } }, { - "id": 16618, + "id": 15509, "properties": { "east": "none", "north": "none", @@ -203888,7 +194133,7 @@ }, { "default": true, - "id": 16619, + "id": 15510, "properties": { "east": "none", "north": "none", @@ -203899,7 +194144,7 @@ } }, { - "id": 16620, + "id": 15511, "properties": { "east": "none", "north": "none", @@ -203910,7 +194155,7 @@ } }, { - "id": 16621, + "id": 15512, "properties": { "east": "none", "north": "none", @@ -203921,7 +194166,7 @@ } }, { - "id": 16622, + "id": 15513, "properties": { "east": "none", "north": "none", @@ -203932,7 +194177,7 @@ } }, { - "id": 16623, + "id": 15514, "properties": { "east": "none", "north": "none", @@ -203943,7 +194188,7 @@ } }, { - "id": 16624, + "id": 15515, "properties": { "east": "none", "north": "none", @@ -203954,7 +194199,7 @@ } }, { - "id": 16625, + "id": 15516, "properties": { "east": "none", "north": "none", @@ -203965,7 +194210,7 @@ } }, { - "id": 16626, + "id": 15517, "properties": { "east": "none", "north": "none", @@ -203976,7 +194221,7 @@ } }, { - "id": 16627, + "id": 15518, "properties": { "east": "none", "north": "none", @@ -203987,7 +194232,7 @@ } }, { - "id": 16628, + "id": 15519, "properties": { "east": "none", "north": "none", @@ -203998,7 +194243,7 @@ } }, { - "id": 16629, + "id": 15520, "properties": { "east": "none", "north": "none", @@ -204009,7 +194254,7 @@ } }, { - "id": 16630, + "id": 15521, "properties": { "east": "none", "north": "none", @@ -204020,7 +194265,7 @@ } }, { - "id": 16631, + "id": 15522, "properties": { "east": "none", "north": "none", @@ -204031,7 +194276,7 @@ } }, { - "id": 16632, + "id": 15523, "properties": { "east": "none", "north": "none", @@ -204042,7 +194287,7 @@ } }, { - "id": 16633, + "id": 15524, "properties": { "east": "none", "north": "none", @@ -204053,7 +194298,7 @@ } }, { - "id": 16634, + "id": 15525, "properties": { "east": "none", "north": "none", @@ -204064,7 +194309,7 @@ } }, { - "id": 16635, + "id": 15526, "properties": { "east": "none", "north": "none", @@ -204075,7 +194320,7 @@ } }, { - "id": 16636, + "id": 15527, "properties": { "east": "none", "north": "none", @@ -204086,7 +194331,7 @@ } }, { - "id": 16637, + "id": 15528, "properties": { "east": "none", "north": "none", @@ -204097,7 +194342,7 @@ } }, { - "id": 16638, + "id": 15529, "properties": { "east": "none", "north": "none", @@ -204108,7 +194353,7 @@ } }, { - "id": 16639, + "id": 15530, "properties": { "east": "none", "north": "none", @@ -204119,7 +194364,7 @@ } }, { - "id": 16640, + "id": 15531, "properties": { "east": "none", "north": "none", @@ -204130,7 +194375,7 @@ } }, { - "id": 16641, + "id": 15532, "properties": { "east": "none", "north": "none", @@ -204141,7 +194386,7 @@ } }, { - "id": 16642, + "id": 15533, "properties": { "east": "none", "north": "none", @@ -204152,7 +194397,7 @@ } }, { - "id": 16643, + "id": 15534, "properties": { "east": "none", "north": "none", @@ -204163,7 +194408,7 @@ } }, { - "id": 16644, + "id": 15535, "properties": { "east": "none", "north": "none", @@ -204174,7 +194419,7 @@ } }, { - "id": 16645, + "id": 15536, "properties": { "east": "none", "north": "none", @@ -204185,7 +194430,7 @@ } }, { - "id": 16646, + "id": 15537, "properties": { "east": "none", "north": "none", @@ -204196,7 +194441,7 @@ } }, { - "id": 16647, + "id": 15538, "properties": { "east": "none", "north": "none", @@ -204207,7 +194452,7 @@ } }, { - "id": 16648, + "id": 15539, "properties": { "east": "none", "north": "none", @@ -204218,7 +194463,7 @@ } }, { - "id": 16649, + "id": 15540, "properties": { "east": "none", "north": "none", @@ -204229,7 +194474,7 @@ } }, { - "id": 16650, + "id": 15541, "properties": { "east": "none", "north": "none", @@ -204240,7 +194485,7 @@ } }, { - "id": 16651, + "id": 15542, "properties": { "east": "none", "north": "none", @@ -204251,7 +194496,7 @@ } }, { - "id": 16652, + "id": 15543, "properties": { "east": "none", "north": "low", @@ -204262,7 +194507,7 @@ } }, { - "id": 16653, + "id": 15544, "properties": { "east": "none", "north": "low", @@ -204273,7 +194518,7 @@ } }, { - "id": 16654, + "id": 15545, "properties": { "east": "none", "north": "low", @@ -204284,7 +194529,7 @@ } }, { - "id": 16655, + "id": 15546, "properties": { "east": "none", "north": "low", @@ -204295,7 +194540,7 @@ } }, { - "id": 16656, + "id": 15547, "properties": { "east": "none", "north": "low", @@ -204306,7 +194551,7 @@ } }, { - "id": 16657, + "id": 15548, "properties": { "east": "none", "north": "low", @@ -204317,7 +194562,7 @@ } }, { - "id": 16658, + "id": 15549, "properties": { "east": "none", "north": "low", @@ -204328,7 +194573,7 @@ } }, { - "id": 16659, + "id": 15550, "properties": { "east": "none", "north": "low", @@ -204339,7 +194584,7 @@ } }, { - "id": 16660, + "id": 15551, "properties": { "east": "none", "north": "low", @@ -204350,7 +194595,7 @@ } }, { - "id": 16661, + "id": 15552, "properties": { "east": "none", "north": "low", @@ -204361,7 +194606,7 @@ } }, { - "id": 16662, + "id": 15553, "properties": { "east": "none", "north": "low", @@ -204372,7 +194617,7 @@ } }, { - "id": 16663, + "id": 15554, "properties": { "east": "none", "north": "low", @@ -204383,7 +194628,7 @@ } }, { - "id": 16664, + "id": 15555, "properties": { "east": "none", "north": "low", @@ -204394,7 +194639,7 @@ } }, { - "id": 16665, + "id": 15556, "properties": { "east": "none", "north": "low", @@ -204405,7 +194650,7 @@ } }, { - "id": 16666, + "id": 15557, "properties": { "east": "none", "north": "low", @@ -204416,7 +194661,7 @@ } }, { - "id": 16667, + "id": 15558, "properties": { "east": "none", "north": "low", @@ -204427,7 +194672,7 @@ } }, { - "id": 16668, + "id": 15559, "properties": { "east": "none", "north": "low", @@ -204438,7 +194683,7 @@ } }, { - "id": 16669, + "id": 15560, "properties": { "east": "none", "north": "low", @@ -204449,7 +194694,7 @@ } }, { - "id": 16670, + "id": 15561, "properties": { "east": "none", "north": "low", @@ -204460,7 +194705,7 @@ } }, { - "id": 16671, + "id": 15562, "properties": { "east": "none", "north": "low", @@ -204471,7 +194716,7 @@ } }, { - "id": 16672, + "id": 15563, "properties": { "east": "none", "north": "low", @@ -204482,7 +194727,7 @@ } }, { - "id": 16673, + "id": 15564, "properties": { "east": "none", "north": "low", @@ -204493,7 +194738,7 @@ } }, { - "id": 16674, + "id": 15565, "properties": { "east": "none", "north": "low", @@ -204504,7 +194749,7 @@ } }, { - "id": 16675, + "id": 15566, "properties": { "east": "none", "north": "low", @@ -204515,7 +194760,7 @@ } }, { - "id": 16676, + "id": 15567, "properties": { "east": "none", "north": "low", @@ -204526,7 +194771,7 @@ } }, { - "id": 16677, + "id": 15568, "properties": { "east": "none", "north": "low", @@ -204537,7 +194782,7 @@ } }, { - "id": 16678, + "id": 15569, "properties": { "east": "none", "north": "low", @@ -204548,7 +194793,7 @@ } }, { - "id": 16679, + "id": 15570, "properties": { "east": "none", "north": "low", @@ -204559,7 +194804,7 @@ } }, { - "id": 16680, + "id": 15571, "properties": { "east": "none", "north": "low", @@ -204570,7 +194815,7 @@ } }, { - "id": 16681, + "id": 15572, "properties": { "east": "none", "north": "low", @@ -204581,7 +194826,7 @@ } }, { - "id": 16682, + "id": 15573, "properties": { "east": "none", "north": "low", @@ -204592,7 +194837,7 @@ } }, { - "id": 16683, + "id": 15574, "properties": { "east": "none", "north": "low", @@ -204603,7 +194848,7 @@ } }, { - "id": 16684, + "id": 15575, "properties": { "east": "none", "north": "low", @@ -204614,7 +194859,7 @@ } }, { - "id": 16685, + "id": 15576, "properties": { "east": "none", "north": "low", @@ -204625,7 +194870,7 @@ } }, { - "id": 16686, + "id": 15577, "properties": { "east": "none", "north": "low", @@ -204636,7 +194881,7 @@ } }, { - "id": 16687, + "id": 15578, "properties": { "east": "none", "north": "low", @@ -204647,7 +194892,7 @@ } }, { - "id": 16688, + "id": 15579, "properties": { "east": "none", "north": "tall", @@ -204658,7 +194903,7 @@ } }, { - "id": 16689, + "id": 15580, "properties": { "east": "none", "north": "tall", @@ -204669,7 +194914,7 @@ } }, { - "id": 16690, + "id": 15581, "properties": { "east": "none", "north": "tall", @@ -204680,7 +194925,7 @@ } }, { - "id": 16691, + "id": 15582, "properties": { "east": "none", "north": "tall", @@ -204691,7 +194936,7 @@ } }, { - "id": 16692, + "id": 15583, "properties": { "east": "none", "north": "tall", @@ -204702,7 +194947,7 @@ } }, { - "id": 16693, + "id": 15584, "properties": { "east": "none", "north": "tall", @@ -204713,7 +194958,7 @@ } }, { - "id": 16694, + "id": 15585, "properties": { "east": "none", "north": "tall", @@ -204724,7 +194969,7 @@ } }, { - "id": 16695, + "id": 15586, "properties": { "east": "none", "north": "tall", @@ -204735,7 +194980,7 @@ } }, { - "id": 16696, + "id": 15587, "properties": { "east": "none", "north": "tall", @@ -204746,7 +194991,7 @@ } }, { - "id": 16697, + "id": 15588, "properties": { "east": "none", "north": "tall", @@ -204757,7 +195002,7 @@ } }, { - "id": 16698, + "id": 15589, "properties": { "east": "none", "north": "tall", @@ -204768,7 +195013,7 @@ } }, { - "id": 16699, + "id": 15590, "properties": { "east": "none", "north": "tall", @@ -204779,7 +195024,7 @@ } }, { - "id": 16700, + "id": 15591, "properties": { "east": "none", "north": "tall", @@ -204790,7 +195035,7 @@ } }, { - "id": 16701, + "id": 15592, "properties": { "east": "none", "north": "tall", @@ -204801,7 +195046,7 @@ } }, { - "id": 16702, + "id": 15593, "properties": { "east": "none", "north": "tall", @@ -204812,7 +195057,7 @@ } }, { - "id": 16703, + "id": 15594, "properties": { "east": "none", "north": "tall", @@ -204823,7 +195068,7 @@ } }, { - "id": 16704, + "id": 15595, "properties": { "east": "none", "north": "tall", @@ -204834,7 +195079,7 @@ } }, { - "id": 16705, + "id": 15596, "properties": { "east": "none", "north": "tall", @@ -204845,7 +195090,7 @@ } }, { - "id": 16706, + "id": 15597, "properties": { "east": "none", "north": "tall", @@ -204856,7 +195101,7 @@ } }, { - "id": 16707, + "id": 15598, "properties": { "east": "none", "north": "tall", @@ -204867,7 +195112,7 @@ } }, { - "id": 16708, + "id": 15599, "properties": { "east": "none", "north": "tall", @@ -204878,7 +195123,7 @@ } }, { - "id": 16709, + "id": 15600, "properties": { "east": "none", "north": "tall", @@ -204889,7 +195134,7 @@ } }, { - "id": 16710, + "id": 15601, "properties": { "east": "none", "north": "tall", @@ -204900,7 +195145,7 @@ } }, { - "id": 16711, + "id": 15602, "properties": { "east": "none", "north": "tall", @@ -204911,7 +195156,7 @@ } }, { - "id": 16712, + "id": 15603, "properties": { "east": "none", "north": "tall", @@ -204922,7 +195167,7 @@ } }, { - "id": 16713, + "id": 15604, "properties": { "east": "none", "north": "tall", @@ -204933,7 +195178,7 @@ } }, { - "id": 16714, + "id": 15605, "properties": { "east": "none", "north": "tall", @@ -204944,7 +195189,7 @@ } }, { - "id": 16715, + "id": 15606, "properties": { "east": "none", "north": "tall", @@ -204955,7 +195200,7 @@ } }, { - "id": 16716, + "id": 15607, "properties": { "east": "none", "north": "tall", @@ -204966,7 +195211,7 @@ } }, { - "id": 16717, + "id": 15608, "properties": { "east": "none", "north": "tall", @@ -204977,7 +195222,7 @@ } }, { - "id": 16718, + "id": 15609, "properties": { "east": "none", "north": "tall", @@ -204988,7 +195233,7 @@ } }, { - "id": 16719, + "id": 15610, "properties": { "east": "none", "north": "tall", @@ -204999,7 +195244,7 @@ } }, { - "id": 16720, + "id": 15611, "properties": { "east": "none", "north": "tall", @@ -205010,7 +195255,7 @@ } }, { - "id": 16721, + "id": 15612, "properties": { "east": "none", "north": "tall", @@ -205021,7 +195266,7 @@ } }, { - "id": 16722, + "id": 15613, "properties": { "east": "none", "north": "tall", @@ -205032,7 +195277,7 @@ } }, { - "id": 16723, + "id": 15614, "properties": { "east": "none", "north": "tall", @@ -205043,7 +195288,7 @@ } }, { - "id": 16724, + "id": 15615, "properties": { "east": "low", "north": "none", @@ -205054,7 +195299,7 @@ } }, { - "id": 16725, + "id": 15616, "properties": { "east": "low", "north": "none", @@ -205065,7 +195310,7 @@ } }, { - "id": 16726, + "id": 15617, "properties": { "east": "low", "north": "none", @@ -205076,7 +195321,7 @@ } }, { - "id": 16727, + "id": 15618, "properties": { "east": "low", "north": "none", @@ -205087,7 +195332,7 @@ } }, { - "id": 16728, + "id": 15619, "properties": { "east": "low", "north": "none", @@ -205098,7 +195343,7 @@ } }, { - "id": 16729, + "id": 15620, "properties": { "east": "low", "north": "none", @@ -205109,7 +195354,7 @@ } }, { - "id": 16730, + "id": 15621, "properties": { "east": "low", "north": "none", @@ -205120,7 +195365,7 @@ } }, { - "id": 16731, + "id": 15622, "properties": { "east": "low", "north": "none", @@ -205131,7 +195376,7 @@ } }, { - "id": 16732, + "id": 15623, "properties": { "east": "low", "north": "none", @@ -205142,7 +195387,7 @@ } }, { - "id": 16733, + "id": 15624, "properties": { "east": "low", "north": "none", @@ -205153,7 +195398,7 @@ } }, { - "id": 16734, + "id": 15625, "properties": { "east": "low", "north": "none", @@ -205164,7 +195409,7 @@ } }, { - "id": 16735, + "id": 15626, "properties": { "east": "low", "north": "none", @@ -205175,7 +195420,7 @@ } }, { - "id": 16736, + "id": 15627, "properties": { "east": "low", "north": "none", @@ -205186,7 +195431,7 @@ } }, { - "id": 16737, + "id": 15628, "properties": { "east": "low", "north": "none", @@ -205197,7 +195442,7 @@ } }, { - "id": 16738, + "id": 15629, "properties": { "east": "low", "north": "none", @@ -205208,7 +195453,7 @@ } }, { - "id": 16739, + "id": 15630, "properties": { "east": "low", "north": "none", @@ -205219,7 +195464,7 @@ } }, { - "id": 16740, + "id": 15631, "properties": { "east": "low", "north": "none", @@ -205230,7 +195475,7 @@ } }, { - "id": 16741, + "id": 15632, "properties": { "east": "low", "north": "none", @@ -205241,7 +195486,7 @@ } }, { - "id": 16742, + "id": 15633, "properties": { "east": "low", "north": "none", @@ -205252,7 +195497,7 @@ } }, { - "id": 16743, + "id": 15634, "properties": { "east": "low", "north": "none", @@ -205263,7 +195508,7 @@ } }, { - "id": 16744, + "id": 15635, "properties": { "east": "low", "north": "none", @@ -205274,7 +195519,7 @@ } }, { - "id": 16745, + "id": 15636, "properties": { "east": "low", "north": "none", @@ -205285,7 +195530,7 @@ } }, { - "id": 16746, + "id": 15637, "properties": { "east": "low", "north": "none", @@ -205296,7 +195541,7 @@ } }, { - "id": 16747, + "id": 15638, "properties": { "east": "low", "north": "none", @@ -205307,7 +195552,7 @@ } }, { - "id": 16748, + "id": 15639, "properties": { "east": "low", "north": "none", @@ -205318,7 +195563,7 @@ } }, { - "id": 16749, + "id": 15640, "properties": { "east": "low", "north": "none", @@ -205329,7 +195574,7 @@ } }, { - "id": 16750, + "id": 15641, "properties": { "east": "low", "north": "none", @@ -205340,7 +195585,7 @@ } }, { - "id": 16751, + "id": 15642, "properties": { "east": "low", "north": "none", @@ -205351,7 +195596,7 @@ } }, { - "id": 16752, + "id": 15643, "properties": { "east": "low", "north": "none", @@ -205362,7 +195607,7 @@ } }, { - "id": 16753, + "id": 15644, "properties": { "east": "low", "north": "none", @@ -205373,7 +195618,7 @@ } }, { - "id": 16754, + "id": 15645, "properties": { "east": "low", "north": "none", @@ -205384,7 +195629,7 @@ } }, { - "id": 16755, + "id": 15646, "properties": { "east": "low", "north": "none", @@ -205395,7 +195640,7 @@ } }, { - "id": 16756, + "id": 15647, "properties": { "east": "low", "north": "none", @@ -205406,7 +195651,7 @@ } }, { - "id": 16757, + "id": 15648, "properties": { "east": "low", "north": "none", @@ -205417,7 +195662,7 @@ } }, { - "id": 16758, + "id": 15649, "properties": { "east": "low", "north": "none", @@ -205428,7 +195673,7 @@ } }, { - "id": 16759, + "id": 15650, "properties": { "east": "low", "north": "none", @@ -205439,7 +195684,7 @@ } }, { - "id": 16760, + "id": 15651, "properties": { "east": "low", "north": "low", @@ -205450,7 +195695,7 @@ } }, { - "id": 16761, + "id": 15652, "properties": { "east": "low", "north": "low", @@ -205461,7 +195706,7 @@ } }, { - "id": 16762, + "id": 15653, "properties": { "east": "low", "north": "low", @@ -205472,7 +195717,7 @@ } }, { - "id": 16763, + "id": 15654, "properties": { "east": "low", "north": "low", @@ -205483,7 +195728,7 @@ } }, { - "id": 16764, + "id": 15655, "properties": { "east": "low", "north": "low", @@ -205494,7 +195739,7 @@ } }, { - "id": 16765, + "id": 15656, "properties": { "east": "low", "north": "low", @@ -205505,7 +195750,7 @@ } }, { - "id": 16766, + "id": 15657, "properties": { "east": "low", "north": "low", @@ -205516,7 +195761,7 @@ } }, { - "id": 16767, + "id": 15658, "properties": { "east": "low", "north": "low", @@ -205527,7 +195772,7 @@ } }, { - "id": 16768, + "id": 15659, "properties": { "east": "low", "north": "low", @@ -205538,7 +195783,7 @@ } }, { - "id": 16769, + "id": 15660, "properties": { "east": "low", "north": "low", @@ -205549,7 +195794,7 @@ } }, { - "id": 16770, + "id": 15661, "properties": { "east": "low", "north": "low", @@ -205560,7 +195805,7 @@ } }, { - "id": 16771, + "id": 15662, "properties": { "east": "low", "north": "low", @@ -205571,7 +195816,7 @@ } }, { - "id": 16772, + "id": 15663, "properties": { "east": "low", "north": "low", @@ -205582,7 +195827,7 @@ } }, { - "id": 16773, + "id": 15664, "properties": { "east": "low", "north": "low", @@ -205593,7 +195838,7 @@ } }, { - "id": 16774, + "id": 15665, "properties": { "east": "low", "north": "low", @@ -205604,7 +195849,7 @@ } }, { - "id": 16775, + "id": 15666, "properties": { "east": "low", "north": "low", @@ -205615,7 +195860,7 @@ } }, { - "id": 16776, + "id": 15667, "properties": { "east": "low", "north": "low", @@ -205626,7 +195871,7 @@ } }, { - "id": 16777, + "id": 15668, "properties": { "east": "low", "north": "low", @@ -205637,7 +195882,7 @@ } }, { - "id": 16778, + "id": 15669, "properties": { "east": "low", "north": "low", @@ -205648,7 +195893,7 @@ } }, { - "id": 16779, + "id": 15670, "properties": { "east": "low", "north": "low", @@ -205659,7 +195904,7 @@ } }, { - "id": 16780, + "id": 15671, "properties": { "east": "low", "north": "low", @@ -205670,7 +195915,7 @@ } }, { - "id": 16781, + "id": 15672, "properties": { "east": "low", "north": "low", @@ -205681,7 +195926,7 @@ } }, { - "id": 16782, + "id": 15673, "properties": { "east": "low", "north": "low", @@ -205692,7 +195937,7 @@ } }, { - "id": 16783, + "id": 15674, "properties": { "east": "low", "north": "low", @@ -205703,7 +195948,7 @@ } }, { - "id": 16784, + "id": 15675, "properties": { "east": "low", "north": "low", @@ -205714,7 +195959,7 @@ } }, { - "id": 16785, + "id": 15676, "properties": { "east": "low", "north": "low", @@ -205725,7 +195970,7 @@ } }, { - "id": 16786, + "id": 15677, "properties": { "east": "low", "north": "low", @@ -205736,7 +195981,7 @@ } }, { - "id": 16787, + "id": 15678, "properties": { "east": "low", "north": "low", @@ -205747,7 +195992,7 @@ } }, { - "id": 16788, + "id": 15679, "properties": { "east": "low", "north": "low", @@ -205758,7 +196003,7 @@ } }, { - "id": 16789, + "id": 15680, "properties": { "east": "low", "north": "low", @@ -205769,7 +196014,7 @@ } }, { - "id": 16790, + "id": 15681, "properties": { "east": "low", "north": "low", @@ -205780,7 +196025,7 @@ } }, { - "id": 16791, + "id": 15682, "properties": { "east": "low", "north": "low", @@ -205791,7 +196036,7 @@ } }, { - "id": 16792, + "id": 15683, "properties": { "east": "low", "north": "low", @@ -205802,7 +196047,7 @@ } }, { - "id": 16793, + "id": 15684, "properties": { "east": "low", "north": "low", @@ -205813,7 +196058,7 @@ } }, { - "id": 16794, + "id": 15685, "properties": { "east": "low", "north": "low", @@ -205824,7 +196069,7 @@ } }, { - "id": 16795, + "id": 15686, "properties": { "east": "low", "north": "low", @@ -205835,7 +196080,7 @@ } }, { - "id": 16796, + "id": 15687, "properties": { "east": "low", "north": "tall", @@ -205846,7 +196091,7 @@ } }, { - "id": 16797, + "id": 15688, "properties": { "east": "low", "north": "tall", @@ -205857,7 +196102,7 @@ } }, { - "id": 16798, + "id": 15689, "properties": { "east": "low", "north": "tall", @@ -205868,7 +196113,7 @@ } }, { - "id": 16799, + "id": 15690, "properties": { "east": "low", "north": "tall", @@ -205879,7 +196124,7 @@ } }, { - "id": 16800, + "id": 15691, "properties": { "east": "low", "north": "tall", @@ -205890,7 +196135,7 @@ } }, { - "id": 16801, + "id": 15692, "properties": { "east": "low", "north": "tall", @@ -205901,7 +196146,7 @@ } }, { - "id": 16802, + "id": 15693, "properties": { "east": "low", "north": "tall", @@ -205912,7 +196157,7 @@ } }, { - "id": 16803, + "id": 15694, "properties": { "east": "low", "north": "tall", @@ -205923,7 +196168,7 @@ } }, { - "id": 16804, + "id": 15695, "properties": { "east": "low", "north": "tall", @@ -205934,7 +196179,7 @@ } }, { - "id": 16805, + "id": 15696, "properties": { "east": "low", "north": "tall", @@ -205945,7 +196190,7 @@ } }, { - "id": 16806, + "id": 15697, "properties": { "east": "low", "north": "tall", @@ -205956,7 +196201,7 @@ } }, { - "id": 16807, + "id": 15698, "properties": { "east": "low", "north": "tall", @@ -205967,7 +196212,7 @@ } }, { - "id": 16808, + "id": 15699, "properties": { "east": "low", "north": "tall", @@ -205978,7 +196223,7 @@ } }, { - "id": 16809, + "id": 15700, "properties": { "east": "low", "north": "tall", @@ -205989,7 +196234,7 @@ } }, { - "id": 16810, + "id": 15701, "properties": { "east": "low", "north": "tall", @@ -206000,7 +196245,7 @@ } }, { - "id": 16811, + "id": 15702, "properties": { "east": "low", "north": "tall", @@ -206011,7 +196256,7 @@ } }, { - "id": 16812, + "id": 15703, "properties": { "east": "low", "north": "tall", @@ -206022,7 +196267,7 @@ } }, { - "id": 16813, + "id": 15704, "properties": { "east": "low", "north": "tall", @@ -206033,7 +196278,7 @@ } }, { - "id": 16814, + "id": 15705, "properties": { "east": "low", "north": "tall", @@ -206044,7 +196289,7 @@ } }, { - "id": 16815, + "id": 15706, "properties": { "east": "low", "north": "tall", @@ -206055,7 +196300,7 @@ } }, { - "id": 16816, + "id": 15707, "properties": { "east": "low", "north": "tall", @@ -206066,7 +196311,7 @@ } }, { - "id": 16817, + "id": 15708, "properties": { "east": "low", "north": "tall", @@ -206077,7 +196322,7 @@ } }, { - "id": 16818, + "id": 15709, "properties": { "east": "low", "north": "tall", @@ -206088,7 +196333,7 @@ } }, { - "id": 16819, + "id": 15710, "properties": { "east": "low", "north": "tall", @@ -206099,7 +196344,7 @@ } }, { - "id": 16820, + "id": 15711, "properties": { "east": "low", "north": "tall", @@ -206110,7 +196355,7 @@ } }, { - "id": 16821, + "id": 15712, "properties": { "east": "low", "north": "tall", @@ -206121,7 +196366,7 @@ } }, { - "id": 16822, + "id": 15713, "properties": { "east": "low", "north": "tall", @@ -206132,7 +196377,7 @@ } }, { - "id": 16823, + "id": 15714, "properties": { "east": "low", "north": "tall", @@ -206143,7 +196388,7 @@ } }, { - "id": 16824, + "id": 15715, "properties": { "east": "low", "north": "tall", @@ -206154,7 +196399,7 @@ } }, { - "id": 16825, + "id": 15716, "properties": { "east": "low", "north": "tall", @@ -206165,7 +196410,7 @@ } }, { - "id": 16826, + "id": 15717, "properties": { "east": "low", "north": "tall", @@ -206176,7 +196421,7 @@ } }, { - "id": 16827, + "id": 15718, "properties": { "east": "low", "north": "tall", @@ -206187,7 +196432,7 @@ } }, { - "id": 16828, + "id": 15719, "properties": { "east": "low", "north": "tall", @@ -206198,7 +196443,7 @@ } }, { - "id": 16829, + "id": 15720, "properties": { "east": "low", "north": "tall", @@ -206209,7 +196454,7 @@ } }, { - "id": 16830, + "id": 15721, "properties": { "east": "low", "north": "tall", @@ -206220,7 +196465,7 @@ } }, { - "id": 16831, + "id": 15722, "properties": { "east": "low", "north": "tall", @@ -206231,7 +196476,7 @@ } }, { - "id": 16832, + "id": 15723, "properties": { "east": "tall", "north": "none", @@ -206242,7 +196487,7 @@ } }, { - "id": 16833, + "id": 15724, "properties": { "east": "tall", "north": "none", @@ -206253,7 +196498,7 @@ } }, { - "id": 16834, + "id": 15725, "properties": { "east": "tall", "north": "none", @@ -206264,7 +196509,7 @@ } }, { - "id": 16835, + "id": 15726, "properties": { "east": "tall", "north": "none", @@ -206275,7 +196520,7 @@ } }, { - "id": 16836, + "id": 15727, "properties": { "east": "tall", "north": "none", @@ -206286,7 +196531,7 @@ } }, { - "id": 16837, + "id": 15728, "properties": { "east": "tall", "north": "none", @@ -206297,7 +196542,7 @@ } }, { - "id": 16838, + "id": 15729, "properties": { "east": "tall", "north": "none", @@ -206308,7 +196553,7 @@ } }, { - "id": 16839, + "id": 15730, "properties": { "east": "tall", "north": "none", @@ -206319,7 +196564,7 @@ } }, { - "id": 16840, + "id": 15731, "properties": { "east": "tall", "north": "none", @@ -206330,7 +196575,7 @@ } }, { - "id": 16841, + "id": 15732, "properties": { "east": "tall", "north": "none", @@ -206341,7 +196586,7 @@ } }, { - "id": 16842, + "id": 15733, "properties": { "east": "tall", "north": "none", @@ -206352,7 +196597,7 @@ } }, { - "id": 16843, + "id": 15734, "properties": { "east": "tall", "north": "none", @@ -206363,7 +196608,7 @@ } }, { - "id": 16844, + "id": 15735, "properties": { "east": "tall", "north": "none", @@ -206374,7 +196619,7 @@ } }, { - "id": 16845, + "id": 15736, "properties": { "east": "tall", "north": "none", @@ -206385,7 +196630,7 @@ } }, { - "id": 16846, + "id": 15737, "properties": { "east": "tall", "north": "none", @@ -206396,7 +196641,7 @@ } }, { - "id": 16847, + "id": 15738, "properties": { "east": "tall", "north": "none", @@ -206407,7 +196652,7 @@ } }, { - "id": 16848, + "id": 15739, "properties": { "east": "tall", "north": "none", @@ -206418,7 +196663,7 @@ } }, { - "id": 16849, + "id": 15740, "properties": { "east": "tall", "north": "none", @@ -206429,7 +196674,7 @@ } }, { - "id": 16850, + "id": 15741, "properties": { "east": "tall", "north": "none", @@ -206440,7 +196685,7 @@ } }, { - "id": 16851, + "id": 15742, "properties": { "east": "tall", "north": "none", @@ -206451,7 +196696,7 @@ } }, { - "id": 16852, + "id": 15743, "properties": { "east": "tall", "north": "none", @@ -206462,7 +196707,7 @@ } }, { - "id": 16853, + "id": 15744, "properties": { "east": "tall", "north": "none", @@ -206473,7 +196718,7 @@ } }, { - "id": 16854, + "id": 15745, "properties": { "east": "tall", "north": "none", @@ -206484,7 +196729,7 @@ } }, { - "id": 16855, + "id": 15746, "properties": { "east": "tall", "north": "none", @@ -206495,7 +196740,7 @@ } }, { - "id": 16856, + "id": 15747, "properties": { "east": "tall", "north": "none", @@ -206506,7 +196751,7 @@ } }, { - "id": 16857, + "id": 15748, "properties": { "east": "tall", "north": "none", @@ -206517,7 +196762,7 @@ } }, { - "id": 16858, + "id": 15749, "properties": { "east": "tall", "north": "none", @@ -206528,7 +196773,7 @@ } }, { - "id": 16859, + "id": 15750, "properties": { "east": "tall", "north": "none", @@ -206539,7 +196784,7 @@ } }, { - "id": 16860, + "id": 15751, "properties": { "east": "tall", "north": "none", @@ -206550,7 +196795,7 @@ } }, { - "id": 16861, + "id": 15752, "properties": { "east": "tall", "north": "none", @@ -206561,7 +196806,7 @@ } }, { - "id": 16862, + "id": 15753, "properties": { "east": "tall", "north": "none", @@ -206572,7 +196817,7 @@ } }, { - "id": 16863, + "id": 15754, "properties": { "east": "tall", "north": "none", @@ -206583,7 +196828,7 @@ } }, { - "id": 16864, + "id": 15755, "properties": { "east": "tall", "north": "none", @@ -206594,7 +196839,7 @@ } }, { - "id": 16865, + "id": 15756, "properties": { "east": "tall", "north": "none", @@ -206605,7 +196850,7 @@ } }, { - "id": 16866, + "id": 15757, "properties": { "east": "tall", "north": "none", @@ -206616,7 +196861,7 @@ } }, { - "id": 16867, + "id": 15758, "properties": { "east": "tall", "north": "none", @@ -206627,7 +196872,7 @@ } }, { - "id": 16868, + "id": 15759, "properties": { "east": "tall", "north": "low", @@ -206638,7 +196883,7 @@ } }, { - "id": 16869, + "id": 15760, "properties": { "east": "tall", "north": "low", @@ -206649,7 +196894,7 @@ } }, { - "id": 16870, + "id": 15761, "properties": { "east": "tall", "north": "low", @@ -206660,7 +196905,7 @@ } }, { - "id": 16871, + "id": 15762, "properties": { "east": "tall", "north": "low", @@ -206671,7 +196916,7 @@ } }, { - "id": 16872, + "id": 15763, "properties": { "east": "tall", "north": "low", @@ -206682,7 +196927,7 @@ } }, { - "id": 16873, + "id": 15764, "properties": { "east": "tall", "north": "low", @@ -206693,7 +196938,7 @@ } }, { - "id": 16874, + "id": 15765, "properties": { "east": "tall", "north": "low", @@ -206704,7 +196949,7 @@ } }, { - "id": 16875, + "id": 15766, "properties": { "east": "tall", "north": "low", @@ -206715,7 +196960,7 @@ } }, { - "id": 16876, + "id": 15767, "properties": { "east": "tall", "north": "low", @@ -206726,7 +196971,7 @@ } }, { - "id": 16877, + "id": 15768, "properties": { "east": "tall", "north": "low", @@ -206737,7 +196982,7 @@ } }, { - "id": 16878, + "id": 15769, "properties": { "east": "tall", "north": "low", @@ -206748,7 +196993,7 @@ } }, { - "id": 16879, + "id": 15770, "properties": { "east": "tall", "north": "low", @@ -206759,7 +197004,7 @@ } }, { - "id": 16880, + "id": 15771, "properties": { "east": "tall", "north": "low", @@ -206770,7 +197015,7 @@ } }, { - "id": 16881, + "id": 15772, "properties": { "east": "tall", "north": "low", @@ -206781,7 +197026,7 @@ } }, { - "id": 16882, + "id": 15773, "properties": { "east": "tall", "north": "low", @@ -206792,7 +197037,7 @@ } }, { - "id": 16883, + "id": 15774, "properties": { "east": "tall", "north": "low", @@ -206803,7 +197048,7 @@ } }, { - "id": 16884, + "id": 15775, "properties": { "east": "tall", "north": "low", @@ -206814,7 +197059,7 @@ } }, { - "id": 16885, + "id": 15776, "properties": { "east": "tall", "north": "low", @@ -206825,7 +197070,7 @@ } }, { - "id": 16886, + "id": 15777, "properties": { "east": "tall", "north": "low", @@ -206836,7 +197081,7 @@ } }, { - "id": 16887, + "id": 15778, "properties": { "east": "tall", "north": "low", @@ -206847,7 +197092,7 @@ } }, { - "id": 16888, + "id": 15779, "properties": { "east": "tall", "north": "low", @@ -206858,7 +197103,7 @@ } }, { - "id": 16889, + "id": 15780, "properties": { "east": "tall", "north": "low", @@ -206869,7 +197114,7 @@ } }, { - "id": 16890, + "id": 15781, "properties": { "east": "tall", "north": "low", @@ -206880,7 +197125,7 @@ } }, { - "id": 16891, + "id": 15782, "properties": { "east": "tall", "north": "low", @@ -206891,7 +197136,7 @@ } }, { - "id": 16892, + "id": 15783, "properties": { "east": "tall", "north": "low", @@ -206902,7 +197147,7 @@ } }, { - "id": 16893, + "id": 15784, "properties": { "east": "tall", "north": "low", @@ -206913,7 +197158,7 @@ } }, { - "id": 16894, + "id": 15785, "properties": { "east": "tall", "north": "low", @@ -206924,7 +197169,7 @@ } }, { - "id": 16895, + "id": 15786, "properties": { "east": "tall", "north": "low", @@ -206935,7 +197180,7 @@ } }, { - "id": 16896, + "id": 15787, "properties": { "east": "tall", "north": "low", @@ -206946,7 +197191,7 @@ } }, { - "id": 16897, + "id": 15788, "properties": { "east": "tall", "north": "low", @@ -206957,7 +197202,7 @@ } }, { - "id": 16898, + "id": 15789, "properties": { "east": "tall", "north": "low", @@ -206968,7 +197213,7 @@ } }, { - "id": 16899, + "id": 15790, "properties": { "east": "tall", "north": "low", @@ -206979,7 +197224,7 @@ } }, { - "id": 16900, + "id": 15791, "properties": { "east": "tall", "north": "low", @@ -206990,7 +197235,7 @@ } }, { - "id": 16901, + "id": 15792, "properties": { "east": "tall", "north": "low", @@ -207001,7 +197246,7 @@ } }, { - "id": 16902, + "id": 15793, "properties": { "east": "tall", "north": "low", @@ -207012,7 +197257,7 @@ } }, { - "id": 16903, + "id": 15794, "properties": { "east": "tall", "north": "low", @@ -207023,7 +197268,7 @@ } }, { - "id": 16904, + "id": 15795, "properties": { "east": "tall", "north": "tall", @@ -207034,7 +197279,7 @@ } }, { - "id": 16905, + "id": 15796, "properties": { "east": "tall", "north": "tall", @@ -207045,7 +197290,7 @@ } }, { - "id": 16906, + "id": 15797, "properties": { "east": "tall", "north": "tall", @@ -207056,7 +197301,7 @@ } }, { - "id": 16907, + "id": 15798, "properties": { "east": "tall", "north": "tall", @@ -207067,7 +197312,7 @@ } }, { - "id": 16908, + "id": 15799, "properties": { "east": "tall", "north": "tall", @@ -207078,7 +197323,7 @@ } }, { - "id": 16909, + "id": 15800, "properties": { "east": "tall", "north": "tall", @@ -207089,7 +197334,7 @@ } }, { - "id": 16910, + "id": 15801, "properties": { "east": "tall", "north": "tall", @@ -207100,7 +197345,7 @@ } }, { - "id": 16911, + "id": 15802, "properties": { "east": "tall", "north": "tall", @@ -207111,7 +197356,7 @@ } }, { - "id": 16912, + "id": 15803, "properties": { "east": "tall", "north": "tall", @@ -207122,7 +197367,7 @@ } }, { - "id": 16913, + "id": 15804, "properties": { "east": "tall", "north": "tall", @@ -207133,7 +197378,7 @@ } }, { - "id": 16914, + "id": 15805, "properties": { "east": "tall", "north": "tall", @@ -207144,7 +197389,7 @@ } }, { - "id": 16915, + "id": 15806, "properties": { "east": "tall", "north": "tall", @@ -207155,7 +197400,7 @@ } }, { - "id": 16916, + "id": 15807, "properties": { "east": "tall", "north": "tall", @@ -207166,7 +197411,7 @@ } }, { - "id": 16917, + "id": 15808, "properties": { "east": "tall", "north": "tall", @@ -207177,7 +197422,7 @@ } }, { - "id": 16918, + "id": 15809, "properties": { "east": "tall", "north": "tall", @@ -207188,7 +197433,7 @@ } }, { - "id": 16919, + "id": 15810, "properties": { "east": "tall", "north": "tall", @@ -207199,7 +197444,7 @@ } }, { - "id": 16920, + "id": 15811, "properties": { "east": "tall", "north": "tall", @@ -207210,7 +197455,7 @@ } }, { - "id": 16921, + "id": 15812, "properties": { "east": "tall", "north": "tall", @@ -207221,7 +197466,7 @@ } }, { - "id": 16922, + "id": 15813, "properties": { "east": "tall", "north": "tall", @@ -207232,7 +197477,7 @@ } }, { - "id": 16923, + "id": 15814, "properties": { "east": "tall", "north": "tall", @@ -207243,7 +197488,7 @@ } }, { - "id": 16924, + "id": 15815, "properties": { "east": "tall", "north": "tall", @@ -207254,7 +197499,7 @@ } }, { - "id": 16925, + "id": 15816, "properties": { "east": "tall", "north": "tall", @@ -207265,7 +197510,7 @@ } }, { - "id": 16926, + "id": 15817, "properties": { "east": "tall", "north": "tall", @@ -207276,7 +197521,7 @@ } }, { - "id": 16927, + "id": 15818, "properties": { "east": "tall", "north": "tall", @@ -207287,7 +197532,7 @@ } }, { - "id": 16928, + "id": 15819, "properties": { "east": "tall", "north": "tall", @@ -207298,7 +197543,7 @@ } }, { - "id": 16929, + "id": 15820, "properties": { "east": "tall", "north": "tall", @@ -207309,7 +197554,7 @@ } }, { - "id": 16930, + "id": 15821, "properties": { "east": "tall", "north": "tall", @@ -207320,7 +197565,7 @@ } }, { - "id": 16931, + "id": 15822, "properties": { "east": "tall", "north": "tall", @@ -207331,7 +197576,7 @@ } }, { - "id": 16932, + "id": 15823, "properties": { "east": "tall", "north": "tall", @@ -207342,7 +197587,7 @@ } }, { - "id": 16933, + "id": 15824, "properties": { "east": "tall", "north": "tall", @@ -207353,7 +197598,7 @@ } }, { - "id": 16934, + "id": 15825, "properties": { "east": "tall", "north": "tall", @@ -207364,7 +197609,7 @@ } }, { - "id": 16935, + "id": 15826, "properties": { "east": "tall", "north": "tall", @@ -207375,7 +197620,7 @@ } }, { - "id": 16936, + "id": 15827, "properties": { "east": "tall", "north": "tall", @@ -207386,7 +197631,7 @@ } }, { - "id": 16937, + "id": 15828, "properties": { "east": "tall", "north": "tall", @@ -207397,7 +197642,7 @@ } }, { - "id": 16938, + "id": 15829, "properties": { "east": "tall", "north": "tall", @@ -207408,7 +197653,7 @@ } }, { - "id": 16939, + "id": 15830, "properties": { "east": "tall", "north": "tall", @@ -207428,7 +197673,7 @@ "states": [ { "default": true, - "id": 8131 + "id": 7054 } ] }, @@ -207455,49 +197700,49 @@ "states": [ { "default": true, - "id": 8141, + "id": 7064, "properties": { "age": "0" } }, { - "id": 8142, + "id": 7065, "properties": { "age": "1" } }, { - "id": 8143, + "id": 7066, "properties": { "age": "2" } }, { - "id": 8144, + "id": 7067, "properties": { "age": "3" } }, { - "id": 8145, + "id": 7068, "properties": { "age": "4" } }, { - "id": 8146, + "id": 7069, "properties": { "age": "5" } }, { - "id": 8147, + "id": 7070, "properties": { "age": "6" } }, { - "id": 8148, + "id": 7071, "properties": { "age": "7" } @@ -207533,97 +197778,97 @@ "states": [ { "default": true, - "id": 12885, + "id": 11808, "properties": { "rotation": "0" } }, { - "id": 12886, + "id": 11809, "properties": { "rotation": "1" } }, { - "id": 12887, + "id": 11810, "properties": { "rotation": "2" } }, { - "id": 12888, + "id": 11811, "properties": { "rotation": "3" } }, { - "id": 12889, + "id": 11812, "properties": { "rotation": "4" } }, { - "id": 12890, + "id": 11813, "properties": { "rotation": "5" } }, { - "id": 12891, + "id": 11814, "properties": { "rotation": "6" } }, { - "id": 12892, + "id": 11815, "properties": { "rotation": "7" } }, { - "id": 12893, + "id": 11816, "properties": { "rotation": "8" } }, { - "id": 12894, + "id": 11817, "properties": { "rotation": "9" } }, { - "id": 12895, + "id": 11818, "properties": { "rotation": "10" } }, { - "id": 12896, + "id": 11819, "properties": { "rotation": "11" } }, { - "id": 12897, + "id": 11820, "properties": { "rotation": "12" } }, { - "id": 12898, + "id": 11821, "properties": { "rotation": "13" } }, { - "id": 12899, + "id": 11822, "properties": { "rotation": "14" } }, { - "id": 12900, + "id": 11823, "properties": { "rotation": "15" } @@ -207807,7 +198052,7 @@ }, "states": [ { - "id": 23070, + "id": 21929, "properties": { "candles": "1", "lit": "true", @@ -207815,7 +198060,7 @@ } }, { - "id": 23071, + "id": 21930, "properties": { "candles": "1", "lit": "true", @@ -207823,7 +198068,7 @@ } }, { - "id": 23072, + "id": 21931, "properties": { "candles": "1", "lit": "false", @@ -207832,7 +198077,7 @@ }, { "default": true, - "id": 23073, + "id": 21932, "properties": { "candles": "1", "lit": "false", @@ -207840,7 +198085,7 @@ } }, { - "id": 23074, + "id": 21933, "properties": { "candles": "2", "lit": "true", @@ -207848,7 +198093,7 @@ } }, { - "id": 23075, + "id": 21934, "properties": { "candles": "2", "lit": "true", @@ -207856,7 +198101,7 @@ } }, { - "id": 23076, + "id": 21935, "properties": { "candles": "2", "lit": "false", @@ -207864,7 +198109,7 @@ } }, { - "id": 23077, + "id": 21936, "properties": { "candles": "2", "lit": "false", @@ -207872,7 +198117,7 @@ } }, { - "id": 23078, + "id": 21937, "properties": { "candles": "3", "lit": "true", @@ -207880,7 +198125,7 @@ } }, { - "id": 23079, + "id": 21938, "properties": { "candles": "3", "lit": "true", @@ -207888,7 +198133,7 @@ } }, { - "id": 23080, + "id": 21939, "properties": { "candles": "3", "lit": "false", @@ -207896,7 +198141,7 @@ } }, { - "id": 23081, + "id": 21940, "properties": { "candles": "3", "lit": "false", @@ -207904,7 +198149,7 @@ } }, { - "id": 23082, + "id": 21941, "properties": { "candles": "4", "lit": "true", @@ -207912,7 +198157,7 @@ } }, { - "id": 23083, + "id": 21942, "properties": { "candles": "4", "lit": "true", @@ -207920,7 +198165,7 @@ } }, { - "id": 23084, + "id": 21943, "properties": { "candles": "4", "lit": "false", @@ -207928,7 +198173,7 @@ } }, { - "id": 23085, + "id": 21944, "properties": { "candles": "4", "lit": "false", @@ -207951,14 +198196,14 @@ }, "states": [ { - "id": 23188, + "id": 22047, "properties": { "lit": "true" } }, { "default": true, - "id": 23189, + "id": 22048, "properties": { "lit": "false" } @@ -207974,7 +198219,7 @@ "states": [ { "default": true, - "id": 12704 + "id": 11627 } ] }, @@ -207986,7 +198231,7 @@ "states": [ { "default": true, - "id": 14838 + "id": 13761 } ] }, @@ -207999,7 +198244,7 @@ "states": [ { "default": true, - "id": 14854 + "id": 13777 } ] }, @@ -208019,25 +198264,25 @@ "states": [ { "default": true, - "id": 14804, + "id": 13727, "properties": { "facing": "north" } }, { - "id": 14805, + "id": 13728, "properties": { "facing": "south" } }, { - "id": 14806, + "id": 13729, "properties": { "facing": "west" } }, { - "id": 14807, + "id": 13730, "properties": { "facing": "east" } @@ -208062,38 +198307,38 @@ }, "states": [ { - "id": 14728, + "id": 13651, "properties": { "facing": "north" } }, { - "id": 14729, + "id": 13652, "properties": { "facing": "east" } }, { - "id": 14730, + "id": 13653, "properties": { "facing": "south" } }, { - "id": 14731, + "id": 13654, "properties": { "facing": "west" } }, { "default": true, - "id": 14732, + "id": 13655, "properties": { "facing": "up" } }, { - "id": 14733, + "id": 13656, "properties": { "facing": "down" } @@ -208109,7 +198354,7 @@ "states": [ { "default": true, - "id": 6907 + "id": 6134 } ] }, @@ -208143,7 +198388,7 @@ }, "states": [ { - "id": 11578, + "id": 10501, "properties": { "east": "true", "north": "true", @@ -208153,7 +198398,7 @@ } }, { - "id": 11579, + "id": 10502, "properties": { "east": "true", "north": "true", @@ -208163,7 +198408,7 @@ } }, { - "id": 11580, + "id": 10503, "properties": { "east": "true", "north": "true", @@ -208173,7 +198418,7 @@ } }, { - "id": 11581, + "id": 10504, "properties": { "east": "true", "north": "true", @@ -208183,7 +198428,7 @@ } }, { - "id": 11582, + "id": 10505, "properties": { "east": "true", "north": "true", @@ -208193,7 +198438,7 @@ } }, { - "id": 11583, + "id": 10506, "properties": { "east": "true", "north": "true", @@ -208203,7 +198448,7 @@ } }, { - "id": 11584, + "id": 10507, "properties": { "east": "true", "north": "true", @@ -208213,7 +198458,7 @@ } }, { - "id": 11585, + "id": 10508, "properties": { "east": "true", "north": "true", @@ -208223,7 +198468,7 @@ } }, { - "id": 11586, + "id": 10509, "properties": { "east": "true", "north": "false", @@ -208233,7 +198478,7 @@ } }, { - "id": 11587, + "id": 10510, "properties": { "east": "true", "north": "false", @@ -208243,7 +198488,7 @@ } }, { - "id": 11588, + "id": 10511, "properties": { "east": "true", "north": "false", @@ -208253,7 +198498,7 @@ } }, { - "id": 11589, + "id": 10512, "properties": { "east": "true", "north": "false", @@ -208263,7 +198508,7 @@ } }, { - "id": 11590, + "id": 10513, "properties": { "east": "true", "north": "false", @@ -208273,7 +198518,7 @@ } }, { - "id": 11591, + "id": 10514, "properties": { "east": "true", "north": "false", @@ -208283,7 +198528,7 @@ } }, { - "id": 11592, + "id": 10515, "properties": { "east": "true", "north": "false", @@ -208293,7 +198538,7 @@ } }, { - "id": 11593, + "id": 10516, "properties": { "east": "true", "north": "false", @@ -208303,7 +198548,7 @@ } }, { - "id": 11594, + "id": 10517, "properties": { "east": "false", "north": "true", @@ -208313,7 +198558,7 @@ } }, { - "id": 11595, + "id": 10518, "properties": { "east": "false", "north": "true", @@ -208323,7 +198568,7 @@ } }, { - "id": 11596, + "id": 10519, "properties": { "east": "false", "north": "true", @@ -208333,7 +198578,7 @@ } }, { - "id": 11597, + "id": 10520, "properties": { "east": "false", "north": "true", @@ -208343,7 +198588,7 @@ } }, { - "id": 11598, + "id": 10521, "properties": { "east": "false", "north": "true", @@ -208353,7 +198598,7 @@ } }, { - "id": 11599, + "id": 10522, "properties": { "east": "false", "north": "true", @@ -208363,7 +198608,7 @@ } }, { - "id": 11600, + "id": 10523, "properties": { "east": "false", "north": "true", @@ -208373,7 +198618,7 @@ } }, { - "id": 11601, + "id": 10524, "properties": { "east": "false", "north": "true", @@ -208383,7 +198628,7 @@ } }, { - "id": 11602, + "id": 10525, "properties": { "east": "false", "north": "false", @@ -208393,7 +198638,7 @@ } }, { - "id": 11603, + "id": 10526, "properties": { "east": "false", "north": "false", @@ -208403,7 +198648,7 @@ } }, { - "id": 11604, + "id": 10527, "properties": { "east": "false", "north": "false", @@ -208413,7 +198658,7 @@ } }, { - "id": 11605, + "id": 10528, "properties": { "east": "false", "north": "false", @@ -208423,7 +198668,7 @@ } }, { - "id": 11606, + "id": 10529, "properties": { "east": "false", "north": "false", @@ -208433,7 +198678,7 @@ } }, { - "id": 11607, + "id": 10530, "properties": { "east": "false", "north": "false", @@ -208443,7 +198688,7 @@ } }, { - "id": 11608, + "id": 10531, "properties": { "east": "false", "north": "false", @@ -208454,7 +198699,7 @@ }, { "default": true, - "id": 11609, + "id": 10532, "properties": { "east": "false", "north": "false", @@ -208467,13 +198712,13 @@ }, "minecraft:purple_terracotta": { "definition": { - "type": "minecraft:block", + "type": "minecraft:terracotta", "properties": {} }, "states": [ { "default": true, - "id": 11252 + "id": 10175 } ] }, @@ -208494,25 +198739,25 @@ "states": [ { "default": true, - "id": 13021, + "id": 11944, "properties": { "facing": "north" } }, { - "id": 13022, + "id": 11945, "properties": { "facing": "south" } }, { - "id": 13023, + "id": 11946, "properties": { "facing": "west" } }, { - "id": 13024, + "id": 11947, "properties": { "facing": "east" } @@ -208539,7 +198784,7 @@ "states": [ { "default": true, - "id": 14510 + "id": 13433 } ] }, @@ -208557,20 +198802,20 @@ }, "states": [ { - "id": 14511, + "id": 13434, "properties": { "axis": "x" } }, { "default": true, - "id": 14512, + "id": 13435, "properties": { "axis": "y" } }, { - "id": 14513, + "id": 13436, "properties": { "axis": "z" } @@ -208595,21 +198840,21 @@ }, "states": [ { - "id": 13272, + "id": 12195, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 13273, + "id": 12196, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 13274, + "id": 12197, "properties": { "type": "bottom", "waterlogged": "true" @@ -208617,21 +198862,21 @@ }, { "default": true, - "id": 13275, + "id": 12198, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 13276, + "id": 12199, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 13277, + "id": 12200, "properties": { "type": "double", "waterlogged": "false" @@ -208672,7 +198917,7 @@ }, "states": [ { - "id": 14514, + "id": 13437, "properties": { "facing": "north", "half": "top", @@ -208681,7 +198926,7 @@ } }, { - "id": 14515, + "id": 13438, "properties": { "facing": "north", "half": "top", @@ -208690,7 +198935,7 @@ } }, { - "id": 14516, + "id": 13439, "properties": { "facing": "north", "half": "top", @@ -208699,7 +198944,7 @@ } }, { - "id": 14517, + "id": 13440, "properties": { "facing": "north", "half": "top", @@ -208708,7 +198953,7 @@ } }, { - "id": 14518, + "id": 13441, "properties": { "facing": "north", "half": "top", @@ -208717,7 +198962,7 @@ } }, { - "id": 14519, + "id": 13442, "properties": { "facing": "north", "half": "top", @@ -208726,7 +198971,7 @@ } }, { - "id": 14520, + "id": 13443, "properties": { "facing": "north", "half": "top", @@ -208735,7 +198980,7 @@ } }, { - "id": 14521, + "id": 13444, "properties": { "facing": "north", "half": "top", @@ -208744,7 +198989,7 @@ } }, { - "id": 14522, + "id": 13445, "properties": { "facing": "north", "half": "top", @@ -208753,7 +198998,7 @@ } }, { - "id": 14523, + "id": 13446, "properties": { "facing": "north", "half": "top", @@ -208762,7 +199007,7 @@ } }, { - "id": 14524, + "id": 13447, "properties": { "facing": "north", "half": "bottom", @@ -208772,7 +199017,7 @@ }, { "default": true, - "id": 14525, + "id": 13448, "properties": { "facing": "north", "half": "bottom", @@ -208781,7 +199026,7 @@ } }, { - "id": 14526, + "id": 13449, "properties": { "facing": "north", "half": "bottom", @@ -208790,7 +199035,7 @@ } }, { - "id": 14527, + "id": 13450, "properties": { "facing": "north", "half": "bottom", @@ -208799,7 +199044,7 @@ } }, { - "id": 14528, + "id": 13451, "properties": { "facing": "north", "half": "bottom", @@ -208808,7 +199053,7 @@ } }, { - "id": 14529, + "id": 13452, "properties": { "facing": "north", "half": "bottom", @@ -208817,7 +199062,7 @@ } }, { - "id": 14530, + "id": 13453, "properties": { "facing": "north", "half": "bottom", @@ -208826,7 +199071,7 @@ } }, { - "id": 14531, + "id": 13454, "properties": { "facing": "north", "half": "bottom", @@ -208835,7 +199080,7 @@ } }, { - "id": 14532, + "id": 13455, "properties": { "facing": "north", "half": "bottom", @@ -208844,7 +199089,7 @@ } }, { - "id": 14533, + "id": 13456, "properties": { "facing": "north", "half": "bottom", @@ -208853,7 +199098,7 @@ } }, { - "id": 14534, + "id": 13457, "properties": { "facing": "south", "half": "top", @@ -208862,7 +199107,7 @@ } }, { - "id": 14535, + "id": 13458, "properties": { "facing": "south", "half": "top", @@ -208871,7 +199116,7 @@ } }, { - "id": 14536, + "id": 13459, "properties": { "facing": "south", "half": "top", @@ -208880,7 +199125,7 @@ } }, { - "id": 14537, + "id": 13460, "properties": { "facing": "south", "half": "top", @@ -208889,7 +199134,7 @@ } }, { - "id": 14538, + "id": 13461, "properties": { "facing": "south", "half": "top", @@ -208898,7 +199143,7 @@ } }, { - "id": 14539, + "id": 13462, "properties": { "facing": "south", "half": "top", @@ -208907,7 +199152,7 @@ } }, { - "id": 14540, + "id": 13463, "properties": { "facing": "south", "half": "top", @@ -208916,7 +199161,7 @@ } }, { - "id": 14541, + "id": 13464, "properties": { "facing": "south", "half": "top", @@ -208925,7 +199170,7 @@ } }, { - "id": 14542, + "id": 13465, "properties": { "facing": "south", "half": "top", @@ -208934,7 +199179,7 @@ } }, { - "id": 14543, + "id": 13466, "properties": { "facing": "south", "half": "top", @@ -208943,7 +199188,7 @@ } }, { - "id": 14544, + "id": 13467, "properties": { "facing": "south", "half": "bottom", @@ -208952,7 +199197,7 @@ } }, { - "id": 14545, + "id": 13468, "properties": { "facing": "south", "half": "bottom", @@ -208961,7 +199206,7 @@ } }, { - "id": 14546, + "id": 13469, "properties": { "facing": "south", "half": "bottom", @@ -208970,7 +199215,7 @@ } }, { - "id": 14547, + "id": 13470, "properties": { "facing": "south", "half": "bottom", @@ -208979,7 +199224,7 @@ } }, { - "id": 14548, + "id": 13471, "properties": { "facing": "south", "half": "bottom", @@ -208988,7 +199233,7 @@ } }, { - "id": 14549, + "id": 13472, "properties": { "facing": "south", "half": "bottom", @@ -208997,7 +199242,7 @@ } }, { - "id": 14550, + "id": 13473, "properties": { "facing": "south", "half": "bottom", @@ -209006,7 +199251,7 @@ } }, { - "id": 14551, + "id": 13474, "properties": { "facing": "south", "half": "bottom", @@ -209015,7 +199260,7 @@ } }, { - "id": 14552, + "id": 13475, "properties": { "facing": "south", "half": "bottom", @@ -209024,7 +199269,7 @@ } }, { - "id": 14553, + "id": 13476, "properties": { "facing": "south", "half": "bottom", @@ -209033,7 +199278,7 @@ } }, { - "id": 14554, + "id": 13477, "properties": { "facing": "west", "half": "top", @@ -209042,7 +199287,7 @@ } }, { - "id": 14555, + "id": 13478, "properties": { "facing": "west", "half": "top", @@ -209051,7 +199296,7 @@ } }, { - "id": 14556, + "id": 13479, "properties": { "facing": "west", "half": "top", @@ -209060,7 +199305,7 @@ } }, { - "id": 14557, + "id": 13480, "properties": { "facing": "west", "half": "top", @@ -209069,7 +199314,7 @@ } }, { - "id": 14558, + "id": 13481, "properties": { "facing": "west", "half": "top", @@ -209078,7 +199323,7 @@ } }, { - "id": 14559, + "id": 13482, "properties": { "facing": "west", "half": "top", @@ -209087,7 +199332,7 @@ } }, { - "id": 14560, + "id": 13483, "properties": { "facing": "west", "half": "top", @@ -209096,7 +199341,7 @@ } }, { - "id": 14561, + "id": 13484, "properties": { "facing": "west", "half": "top", @@ -209105,7 +199350,7 @@ } }, { - "id": 14562, + "id": 13485, "properties": { "facing": "west", "half": "top", @@ -209114,7 +199359,7 @@ } }, { - "id": 14563, + "id": 13486, "properties": { "facing": "west", "half": "top", @@ -209123,7 +199368,7 @@ } }, { - "id": 14564, + "id": 13487, "properties": { "facing": "west", "half": "bottom", @@ -209132,7 +199377,7 @@ } }, { - "id": 14565, + "id": 13488, "properties": { "facing": "west", "half": "bottom", @@ -209141,7 +199386,7 @@ } }, { - "id": 14566, + "id": 13489, "properties": { "facing": "west", "half": "bottom", @@ -209150,7 +199395,7 @@ } }, { - "id": 14567, + "id": 13490, "properties": { "facing": "west", "half": "bottom", @@ -209159,7 +199404,7 @@ } }, { - "id": 14568, + "id": 13491, "properties": { "facing": "west", "half": "bottom", @@ -209168,7 +199413,7 @@ } }, { - "id": 14569, + "id": 13492, "properties": { "facing": "west", "half": "bottom", @@ -209177,7 +199422,7 @@ } }, { - "id": 14570, + "id": 13493, "properties": { "facing": "west", "half": "bottom", @@ -209186,7 +199431,7 @@ } }, { - "id": 14571, + "id": 13494, "properties": { "facing": "west", "half": "bottom", @@ -209195,7 +199440,7 @@ } }, { - "id": 14572, + "id": 13495, "properties": { "facing": "west", "half": "bottom", @@ -209204,7 +199449,7 @@ } }, { - "id": 14573, + "id": 13496, "properties": { "facing": "west", "half": "bottom", @@ -209213,7 +199458,7 @@ } }, { - "id": 14574, + "id": 13497, "properties": { "facing": "east", "half": "top", @@ -209222,7 +199467,7 @@ } }, { - "id": 14575, + "id": 13498, "properties": { "facing": "east", "half": "top", @@ -209231,7 +199476,7 @@ } }, { - "id": 14576, + "id": 13499, "properties": { "facing": "east", "half": "top", @@ -209240,7 +199485,7 @@ } }, { - "id": 14577, + "id": 13500, "properties": { "facing": "east", "half": "top", @@ -209249,7 +199494,7 @@ } }, { - "id": 14578, + "id": 13501, "properties": { "facing": "east", "half": "top", @@ -209258,7 +199503,7 @@ } }, { - "id": 14579, + "id": 13502, "properties": { "facing": "east", "half": "top", @@ -209267,7 +199512,7 @@ } }, { - "id": 14580, + "id": 13503, "properties": { "facing": "east", "half": "top", @@ -209276,7 +199521,7 @@ } }, { - "id": 14581, + "id": 13504, "properties": { "facing": "east", "half": "top", @@ -209285,7 +199530,7 @@ } }, { - "id": 14582, + "id": 13505, "properties": { "facing": "east", "half": "top", @@ -209294,7 +199539,7 @@ } }, { - "id": 14583, + "id": 13506, "properties": { "facing": "east", "half": "top", @@ -209303,7 +199548,7 @@ } }, { - "id": 14584, + "id": 13507, "properties": { "facing": "east", "half": "bottom", @@ -209312,7 +199557,7 @@ } }, { - "id": 14585, + "id": 13508, "properties": { "facing": "east", "half": "bottom", @@ -209321,7 +199566,7 @@ } }, { - "id": 14586, + "id": 13509, "properties": { "facing": "east", "half": "bottom", @@ -209330,7 +199575,7 @@ } }, { - "id": 14587, + "id": 13510, "properties": { "facing": "east", "half": "bottom", @@ -209339,7 +199584,7 @@ } }, { - "id": 14588, + "id": 13511, "properties": { "facing": "east", "half": "bottom", @@ -209348,7 +199593,7 @@ } }, { - "id": 14589, + "id": 13512, "properties": { "facing": "east", "half": "bottom", @@ -209357,7 +199602,7 @@ } }, { - "id": 14590, + "id": 13513, "properties": { "facing": "east", "half": "bottom", @@ -209366,7 +199611,7 @@ } }, { - "id": 14591, + "id": 13514, "properties": { "facing": "east", "half": "bottom", @@ -209375,7 +199620,7 @@ } }, { - "id": 14592, + "id": 13515, "properties": { "facing": "east", "half": "bottom", @@ -209384,7 +199629,7 @@ } }, { - "id": 14593, + "id": 13516, "properties": { "facing": "east", "half": "bottom", @@ -209402,7 +199647,7 @@ "states": [ { "default": true, - "id": 11121 + "id": 10044 } ] }, @@ -209414,7 +199659,7 @@ "states": [ { "default": true, - "id": 22893 + "id": 21752 } ] }, @@ -209432,20 +199677,20 @@ }, "states": [ { - "id": 11123, + "id": 10046, "properties": { "axis": "x" } }, { "default": true, - "id": 11124, + "id": 10047, "properties": { "axis": "y" } }, { - "id": 11125, + "id": 10048, "properties": { "axis": "z" } @@ -209470,21 +199715,21 @@ }, "states": [ { - "id": 13254, + "id": 12177, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 13255, + "id": 12178, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 13256, + "id": 12179, "properties": { "type": "bottom", "waterlogged": "true" @@ -209492,21 +199737,21 @@ }, { "default": true, - "id": 13257, + "id": 12180, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 13258, + "id": 12181, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 13259, + "id": 12182, "properties": { "type": "double", "waterlogged": "false" @@ -209547,7 +199792,7 @@ }, "states": [ { - "id": 11126, + "id": 10049, "properties": { "facing": "north", "half": "top", @@ -209556,7 +199801,7 @@ } }, { - "id": 11127, + "id": 10050, "properties": { "facing": "north", "half": "top", @@ -209565,7 +199810,7 @@ } }, { - "id": 11128, + "id": 10051, "properties": { "facing": "north", "half": "top", @@ -209574,7 +199819,7 @@ } }, { - "id": 11129, + "id": 10052, "properties": { "facing": "north", "half": "top", @@ -209583,7 +199828,7 @@ } }, { - "id": 11130, + "id": 10053, "properties": { "facing": "north", "half": "top", @@ -209592,7 +199837,7 @@ } }, { - "id": 11131, + "id": 10054, "properties": { "facing": "north", "half": "top", @@ -209601,7 +199846,7 @@ } }, { - "id": 11132, + "id": 10055, "properties": { "facing": "north", "half": "top", @@ -209610,7 +199855,7 @@ } }, { - "id": 11133, + "id": 10056, "properties": { "facing": "north", "half": "top", @@ -209619,7 +199864,7 @@ } }, { - "id": 11134, + "id": 10057, "properties": { "facing": "north", "half": "top", @@ -209628,7 +199873,7 @@ } }, { - "id": 11135, + "id": 10058, "properties": { "facing": "north", "half": "top", @@ -209637,7 +199882,7 @@ } }, { - "id": 11136, + "id": 10059, "properties": { "facing": "north", "half": "bottom", @@ -209647,7 +199892,7 @@ }, { "default": true, - "id": 11137, + "id": 10060, "properties": { "facing": "north", "half": "bottom", @@ -209656,7 +199901,7 @@ } }, { - "id": 11138, + "id": 10061, "properties": { "facing": "north", "half": "bottom", @@ -209665,7 +199910,7 @@ } }, { - "id": 11139, + "id": 10062, "properties": { "facing": "north", "half": "bottom", @@ -209674,7 +199919,7 @@ } }, { - "id": 11140, + "id": 10063, "properties": { "facing": "north", "half": "bottom", @@ -209683,7 +199928,7 @@ } }, { - "id": 11141, + "id": 10064, "properties": { "facing": "north", "half": "bottom", @@ -209692,7 +199937,7 @@ } }, { - "id": 11142, + "id": 10065, "properties": { "facing": "north", "half": "bottom", @@ -209701,7 +199946,7 @@ } }, { - "id": 11143, + "id": 10066, "properties": { "facing": "north", "half": "bottom", @@ -209710,7 +199955,7 @@ } }, { - "id": 11144, + "id": 10067, "properties": { "facing": "north", "half": "bottom", @@ -209719,7 +199964,7 @@ } }, { - "id": 11145, + "id": 10068, "properties": { "facing": "north", "half": "bottom", @@ -209728,7 +199973,7 @@ } }, { - "id": 11146, + "id": 10069, "properties": { "facing": "south", "half": "top", @@ -209737,7 +199982,7 @@ } }, { - "id": 11147, + "id": 10070, "properties": { "facing": "south", "half": "top", @@ -209746,7 +199991,7 @@ } }, { - "id": 11148, + "id": 10071, "properties": { "facing": "south", "half": "top", @@ -209755,7 +200000,7 @@ } }, { - "id": 11149, + "id": 10072, "properties": { "facing": "south", "half": "top", @@ -209764,7 +200009,7 @@ } }, { - "id": 11150, + "id": 10073, "properties": { "facing": "south", "half": "top", @@ -209773,7 +200018,7 @@ } }, { - "id": 11151, + "id": 10074, "properties": { "facing": "south", "half": "top", @@ -209782,7 +200027,7 @@ } }, { - "id": 11152, + "id": 10075, "properties": { "facing": "south", "half": "top", @@ -209791,7 +200036,7 @@ } }, { - "id": 11153, + "id": 10076, "properties": { "facing": "south", "half": "top", @@ -209800,7 +200045,7 @@ } }, { - "id": 11154, + "id": 10077, "properties": { "facing": "south", "half": "top", @@ -209809,7 +200054,7 @@ } }, { - "id": 11155, + "id": 10078, "properties": { "facing": "south", "half": "top", @@ -209818,7 +200063,7 @@ } }, { - "id": 11156, + "id": 10079, "properties": { "facing": "south", "half": "bottom", @@ -209827,7 +200072,7 @@ } }, { - "id": 11157, + "id": 10080, "properties": { "facing": "south", "half": "bottom", @@ -209836,7 +200081,7 @@ } }, { - "id": 11158, + "id": 10081, "properties": { "facing": "south", "half": "bottom", @@ -209845,7 +200090,7 @@ } }, { - "id": 11159, + "id": 10082, "properties": { "facing": "south", "half": "bottom", @@ -209854,7 +200099,7 @@ } }, { - "id": 11160, + "id": 10083, "properties": { "facing": "south", "half": "bottom", @@ -209863,7 +200108,7 @@ } }, { - "id": 11161, + "id": 10084, "properties": { "facing": "south", "half": "bottom", @@ -209872,7 +200117,7 @@ } }, { - "id": 11162, + "id": 10085, "properties": { "facing": "south", "half": "bottom", @@ -209881,7 +200126,7 @@ } }, { - "id": 11163, + "id": 10086, "properties": { "facing": "south", "half": "bottom", @@ -209890,7 +200135,7 @@ } }, { - "id": 11164, + "id": 10087, "properties": { "facing": "south", "half": "bottom", @@ -209899,7 +200144,7 @@ } }, { - "id": 11165, + "id": 10088, "properties": { "facing": "south", "half": "bottom", @@ -209908,7 +200153,7 @@ } }, { - "id": 11166, + "id": 10089, "properties": { "facing": "west", "half": "top", @@ -209917,7 +200162,7 @@ } }, { - "id": 11167, + "id": 10090, "properties": { "facing": "west", "half": "top", @@ -209926,7 +200171,7 @@ } }, { - "id": 11168, + "id": 10091, "properties": { "facing": "west", "half": "top", @@ -209935,7 +200180,7 @@ } }, { - "id": 11169, + "id": 10092, "properties": { "facing": "west", "half": "top", @@ -209944,7 +200189,7 @@ } }, { - "id": 11170, + "id": 10093, "properties": { "facing": "west", "half": "top", @@ -209953,7 +200198,7 @@ } }, { - "id": 11171, + "id": 10094, "properties": { "facing": "west", "half": "top", @@ -209962,7 +200207,7 @@ } }, { - "id": 11172, + "id": 10095, "properties": { "facing": "west", "half": "top", @@ -209971,7 +200216,7 @@ } }, { - "id": 11173, + "id": 10096, "properties": { "facing": "west", "half": "top", @@ -209980,7 +200225,7 @@ } }, { - "id": 11174, + "id": 10097, "properties": { "facing": "west", "half": "top", @@ -209989,7 +200234,7 @@ } }, { - "id": 11175, + "id": 10098, "properties": { "facing": "west", "half": "top", @@ -209998,7 +200243,7 @@ } }, { - "id": 11176, + "id": 10099, "properties": { "facing": "west", "half": "bottom", @@ -210007,7 +200252,7 @@ } }, { - "id": 11177, + "id": 10100, "properties": { "facing": "west", "half": "bottom", @@ -210016,7 +200261,7 @@ } }, { - "id": 11178, + "id": 10101, "properties": { "facing": "west", "half": "bottom", @@ -210025,7 +200270,7 @@ } }, { - "id": 11179, + "id": 10102, "properties": { "facing": "west", "half": "bottom", @@ -210034,7 +200279,7 @@ } }, { - "id": 11180, + "id": 10103, "properties": { "facing": "west", "half": "bottom", @@ -210043,7 +200288,7 @@ } }, { - "id": 11181, + "id": 10104, "properties": { "facing": "west", "half": "bottom", @@ -210052,7 +200297,7 @@ } }, { - "id": 11182, + "id": 10105, "properties": { "facing": "west", "half": "bottom", @@ -210061,7 +200306,7 @@ } }, { - "id": 11183, + "id": 10106, "properties": { "facing": "west", "half": "bottom", @@ -210070,7 +200315,7 @@ } }, { - "id": 11184, + "id": 10107, "properties": { "facing": "west", "half": "bottom", @@ -210079,7 +200324,7 @@ } }, { - "id": 11185, + "id": 10108, "properties": { "facing": "west", "half": "bottom", @@ -210088,7 +200333,7 @@ } }, { - "id": 11186, + "id": 10109, "properties": { "facing": "east", "half": "top", @@ -210097,7 +200342,7 @@ } }, { - "id": 11187, + "id": 10110, "properties": { "facing": "east", "half": "top", @@ -210106,7 +200351,7 @@ } }, { - "id": 11188, + "id": 10111, "properties": { "facing": "east", "half": "top", @@ -210115,7 +200360,7 @@ } }, { - "id": 11189, + "id": 10112, "properties": { "facing": "east", "half": "top", @@ -210124,7 +200369,7 @@ } }, { - "id": 11190, + "id": 10113, "properties": { "facing": "east", "half": "top", @@ -210133,7 +200378,7 @@ } }, { - "id": 11191, + "id": 10114, "properties": { "facing": "east", "half": "top", @@ -210142,7 +200387,7 @@ } }, { - "id": 11192, + "id": 10115, "properties": { "facing": "east", "half": "top", @@ -210151,7 +200396,7 @@ } }, { - "id": 11193, + "id": 10116, "properties": { "facing": "east", "half": "top", @@ -210160,7 +200405,7 @@ } }, { - "id": 11194, + "id": 10117, "properties": { "facing": "east", "half": "top", @@ -210169,7 +200414,7 @@ } }, { - "id": 11195, + "id": 10118, "properties": { "facing": "east", "half": "top", @@ -210178,7 +200423,7 @@ } }, { - "id": 11196, + "id": 10119, "properties": { "facing": "east", "half": "bottom", @@ -210187,7 +200432,7 @@ } }, { - "id": 11197, + "id": 10120, "properties": { "facing": "east", "half": "bottom", @@ -210196,7 +200441,7 @@ } }, { - "id": 11198, + "id": 10121, "properties": { "facing": "east", "half": "bottom", @@ -210205,7 +200450,7 @@ } }, { - "id": 11199, + "id": 10122, "properties": { "facing": "east", "half": "bottom", @@ -210214,7 +200459,7 @@ } }, { - "id": 11200, + "id": 10123, "properties": { "facing": "east", "half": "bottom", @@ -210223,7 +200468,7 @@ } }, { - "id": 11201, + "id": 10124, "properties": { "facing": "east", "half": "bottom", @@ -210232,7 +200477,7 @@ } }, { - "id": 11202, + "id": 10125, "properties": { "facing": "east", "half": "bottom", @@ -210241,7 +200486,7 @@ } }, { - "id": 11203, + "id": 10126, "properties": { "facing": "east", "half": "bottom", @@ -210250,7 +200495,7 @@ } }, { - "id": 11204, + "id": 10127, "properties": { "facing": "east", "half": "bottom", @@ -210259,7 +200504,7 @@ } }, { - "id": 11205, + "id": 10128, "properties": { "facing": "east", "half": "bottom", @@ -210294,7 +200539,7 @@ }, "states": [ { - "id": 5526, + "id": 4758, "properties": { "shape": "north_south", "waterlogged": "true" @@ -210302,133 +200547,133 @@ }, { "default": true, - "id": 5527, + "id": 4759, "properties": { "shape": "north_south", "waterlogged": "false" } }, { - "id": 5528, + "id": 4760, "properties": { "shape": "east_west", "waterlogged": "true" } }, { - "id": 5529, + "id": 4761, "properties": { "shape": "east_west", "waterlogged": "false" } }, { - "id": 5530, + "id": 4762, "properties": { "shape": "ascending_east", "waterlogged": "true" } }, { - "id": 5531, + "id": 4763, "properties": { "shape": "ascending_east", "waterlogged": "false" } }, { - "id": 5532, + "id": 4764, "properties": { "shape": "ascending_west", "waterlogged": "true" } }, { - "id": 5533, + "id": 4765, "properties": { "shape": "ascending_west", "waterlogged": "false" } }, { - "id": 5534, + "id": 4766, "properties": { "shape": "ascending_north", "waterlogged": "true" } }, { - "id": 5535, + "id": 4767, "properties": { "shape": "ascending_north", "waterlogged": "false" } }, { - "id": 5536, + "id": 4768, "properties": { "shape": "ascending_south", "waterlogged": "true" } }, { - "id": 5537, + "id": 4769, "properties": { "shape": "ascending_south", "waterlogged": "false" } }, { - "id": 5538, + "id": 4770, "properties": { "shape": "south_east", "waterlogged": "true" } }, { - "id": 5539, + "id": 4771, "properties": { "shape": "south_east", "waterlogged": "false" } }, { - "id": 5540, + "id": 4772, "properties": { "shape": "south_west", "waterlogged": "true" } }, { - "id": 5541, + "id": 4773, "properties": { "shape": "south_west", "waterlogged": "false" } }, { - "id": 5542, + "id": 4774, "properties": { "shape": "north_west", "waterlogged": "true" } }, { - "id": 5543, + "id": 4775, "properties": { "shape": "north_west", "waterlogged": "false" } }, { - "id": 5544, + "id": 4776, "properties": { "shape": "north_east", "waterlogged": "true" } }, { - "id": 5545, + "id": 4777, "properties": { "shape": "north_east", "waterlogged": "false" @@ -210444,7 +200689,7 @@ "states": [ { "default": true, - "id": 29376 + "id": 27619 } ] }, @@ -210456,7 +200701,7 @@ "states": [ { "default": true, - "id": 29377 + "id": 27620 } ] }, @@ -210468,7 +200713,7 @@ "states": [ { "default": true, - "id": 29375 + "id": 27618 } ] }, @@ -210501,97 +200746,97 @@ "states": [ { "default": true, - "id": 12949, + "id": 11872, "properties": { "rotation": "0" } }, { - "id": 12950, + "id": 11873, "properties": { "rotation": "1" } }, { - "id": 12951, + "id": 11874, "properties": { "rotation": "2" } }, { - "id": 12952, + "id": 11875, "properties": { "rotation": "3" } }, { - "id": 12953, + "id": 11876, "properties": { "rotation": "4" } }, { - "id": 12954, + "id": 11877, "properties": { "rotation": "5" } }, { - "id": 12955, + "id": 11878, "properties": { "rotation": "6" } }, { - "id": 12956, + "id": 11879, "properties": { "rotation": "7" } }, { - "id": 12957, + "id": 11880, "properties": { "rotation": "8" } }, { - "id": 12958, + "id": 11881, "properties": { "rotation": "9" } }, { - "id": 12959, + "id": 11882, "properties": { "rotation": "10" } }, { - "id": 12960, + "id": 11883, "properties": { "rotation": "11" } }, { - "id": 12961, + "id": 11884, "properties": { "rotation": "12" } }, { - "id": 12962, + "id": 11885, "properties": { "rotation": "13" } }, { - "id": 12963, + "id": 11886, "properties": { "rotation": "14" } }, { - "id": 12964, + "id": 11887, "properties": { "rotation": "15" } @@ -210775,7 +201020,7 @@ }, "states": [ { - "id": 23134, + "id": 21993, "properties": { "candles": "1", "lit": "true", @@ -210783,7 +201028,7 @@ } }, { - "id": 23135, + "id": 21994, "properties": { "candles": "1", "lit": "true", @@ -210791,7 +201036,7 @@ } }, { - "id": 23136, + "id": 21995, "properties": { "candles": "1", "lit": "false", @@ -210800,7 +201045,7 @@ }, { "default": true, - "id": 23137, + "id": 21996, "properties": { "candles": "1", "lit": "false", @@ -210808,7 +201053,7 @@ } }, { - "id": 23138, + "id": 21997, "properties": { "candles": "2", "lit": "true", @@ -210816,7 +201061,7 @@ } }, { - "id": 23139, + "id": 21998, "properties": { "candles": "2", "lit": "true", @@ -210824,7 +201069,7 @@ } }, { - "id": 23140, + "id": 21999, "properties": { "candles": "2", "lit": "false", @@ -210832,7 +201077,7 @@ } }, { - "id": 23141, + "id": 22000, "properties": { "candles": "2", "lit": "false", @@ -210840,7 +201085,7 @@ } }, { - "id": 23142, + "id": 22001, "properties": { "candles": "3", "lit": "true", @@ -210848,7 +201093,7 @@ } }, { - "id": 23143, + "id": 22002, "properties": { "candles": "3", "lit": "true", @@ -210856,7 +201101,7 @@ } }, { - "id": 23144, + "id": 22003, "properties": { "candles": "3", "lit": "false", @@ -210864,7 +201109,7 @@ } }, { - "id": 23145, + "id": 22004, "properties": { "candles": "3", "lit": "false", @@ -210872,7 +201117,7 @@ } }, { - "id": 23146, + "id": 22005, "properties": { "candles": "4", "lit": "true", @@ -210880,7 +201125,7 @@ } }, { - "id": 23147, + "id": 22006, "properties": { "candles": "4", "lit": "true", @@ -210888,7 +201133,7 @@ } }, { - "id": 23148, + "id": 22007, "properties": { "candles": "4", "lit": "false", @@ -210896,7 +201141,7 @@ } }, { - "id": 23149, + "id": 22008, "properties": { "candles": "4", "lit": "false", @@ -210919,14 +201164,14 @@ }, "states": [ { - "id": 23196, + "id": 22055, "properties": { "lit": "true" } }, { "default": true, - "id": 23197, + "id": 22056, "properties": { "lit": "false" } @@ -210942,7 +201187,7 @@ "states": [ { "default": true, - "id": 12708 + "id": 11631 } ] }, @@ -210954,7 +201199,7 @@ "states": [ { "default": true, - "id": 14842 + "id": 13765 } ] }, @@ -210967,7 +201212,7 @@ "states": [ { "default": true, - "id": 14858 + "id": 13781 } ] }, @@ -210987,25 +201232,25 @@ "states": [ { "default": true, - "id": 14820, + "id": 13743, "properties": { "facing": "north" } }, { - "id": 14821, + "id": 13744, "properties": { "facing": "south" } }, { - "id": 14822, + "id": 13745, "properties": { "facing": "west" } }, { - "id": 14823, + "id": 13746, "properties": { "facing": "east" } @@ -211059,7 +201304,7 @@ "states": [ { "default": true, - "id": 7629, + "id": 6856, "properties": { "down": "true", "east": "true", @@ -211070,7 +201315,7 @@ } }, { - "id": 7630, + "id": 6857, "properties": { "down": "true", "east": "true", @@ -211081,7 +201326,7 @@ } }, { - "id": 7631, + "id": 6858, "properties": { "down": "true", "east": "true", @@ -211092,7 +201337,7 @@ } }, { - "id": 7632, + "id": 6859, "properties": { "down": "true", "east": "true", @@ -211103,7 +201348,7 @@ } }, { - "id": 7633, + "id": 6860, "properties": { "down": "true", "east": "true", @@ -211114,7 +201359,7 @@ } }, { - "id": 7634, + "id": 6861, "properties": { "down": "true", "east": "true", @@ -211125,7 +201370,7 @@ } }, { - "id": 7635, + "id": 6862, "properties": { "down": "true", "east": "true", @@ -211136,7 +201381,7 @@ } }, { - "id": 7636, + "id": 6863, "properties": { "down": "true", "east": "true", @@ -211147,7 +201392,7 @@ } }, { - "id": 7637, + "id": 6864, "properties": { "down": "true", "east": "true", @@ -211158,7 +201403,7 @@ } }, { - "id": 7638, + "id": 6865, "properties": { "down": "true", "east": "true", @@ -211169,7 +201414,7 @@ } }, { - "id": 7639, + "id": 6866, "properties": { "down": "true", "east": "true", @@ -211180,7 +201425,7 @@ } }, { - "id": 7640, + "id": 6867, "properties": { "down": "true", "east": "true", @@ -211191,7 +201436,7 @@ } }, { - "id": 7641, + "id": 6868, "properties": { "down": "true", "east": "true", @@ -211202,7 +201447,7 @@ } }, { - "id": 7642, + "id": 6869, "properties": { "down": "true", "east": "true", @@ -211213,7 +201458,7 @@ } }, { - "id": 7643, + "id": 6870, "properties": { "down": "true", "east": "true", @@ -211224,7 +201469,7 @@ } }, { - "id": 7644, + "id": 6871, "properties": { "down": "true", "east": "true", @@ -211235,7 +201480,7 @@ } }, { - "id": 7645, + "id": 6872, "properties": { "down": "true", "east": "false", @@ -211246,7 +201491,7 @@ } }, { - "id": 7646, + "id": 6873, "properties": { "down": "true", "east": "false", @@ -211257,7 +201502,7 @@ } }, { - "id": 7647, + "id": 6874, "properties": { "down": "true", "east": "false", @@ -211268,7 +201513,7 @@ } }, { - "id": 7648, + "id": 6875, "properties": { "down": "true", "east": "false", @@ -211279,7 +201524,7 @@ } }, { - "id": 7649, + "id": 6876, "properties": { "down": "true", "east": "false", @@ -211290,7 +201535,7 @@ } }, { - "id": 7650, + "id": 6877, "properties": { "down": "true", "east": "false", @@ -211301,7 +201546,7 @@ } }, { - "id": 7651, + "id": 6878, "properties": { "down": "true", "east": "false", @@ -211312,7 +201557,7 @@ } }, { - "id": 7652, + "id": 6879, "properties": { "down": "true", "east": "false", @@ -211323,7 +201568,7 @@ } }, { - "id": 7653, + "id": 6880, "properties": { "down": "true", "east": "false", @@ -211334,7 +201579,7 @@ } }, { - "id": 7654, + "id": 6881, "properties": { "down": "true", "east": "false", @@ -211345,7 +201590,7 @@ } }, { - "id": 7655, + "id": 6882, "properties": { "down": "true", "east": "false", @@ -211356,7 +201601,7 @@ } }, { - "id": 7656, + "id": 6883, "properties": { "down": "true", "east": "false", @@ -211367,7 +201612,7 @@ } }, { - "id": 7657, + "id": 6884, "properties": { "down": "true", "east": "false", @@ -211378,7 +201623,7 @@ } }, { - "id": 7658, + "id": 6885, "properties": { "down": "true", "east": "false", @@ -211389,7 +201634,7 @@ } }, { - "id": 7659, + "id": 6886, "properties": { "down": "true", "east": "false", @@ -211400,7 +201645,7 @@ } }, { - "id": 7660, + "id": 6887, "properties": { "down": "true", "east": "false", @@ -211411,7 +201656,7 @@ } }, { - "id": 7661, + "id": 6888, "properties": { "down": "false", "east": "true", @@ -211422,7 +201667,7 @@ } }, { - "id": 7662, + "id": 6889, "properties": { "down": "false", "east": "true", @@ -211433,7 +201678,7 @@ } }, { - "id": 7663, + "id": 6890, "properties": { "down": "false", "east": "true", @@ -211444,7 +201689,7 @@ } }, { - "id": 7664, + "id": 6891, "properties": { "down": "false", "east": "true", @@ -211455,7 +201700,7 @@ } }, { - "id": 7665, + "id": 6892, "properties": { "down": "false", "east": "true", @@ -211466,7 +201711,7 @@ } }, { - "id": 7666, + "id": 6893, "properties": { "down": "false", "east": "true", @@ -211477,7 +201722,7 @@ } }, { - "id": 7667, + "id": 6894, "properties": { "down": "false", "east": "true", @@ -211488,7 +201733,7 @@ } }, { - "id": 7668, + "id": 6895, "properties": { "down": "false", "east": "true", @@ -211499,7 +201744,7 @@ } }, { - "id": 7669, + "id": 6896, "properties": { "down": "false", "east": "true", @@ -211510,7 +201755,7 @@ } }, { - "id": 7670, + "id": 6897, "properties": { "down": "false", "east": "true", @@ -211521,7 +201766,7 @@ } }, { - "id": 7671, + "id": 6898, "properties": { "down": "false", "east": "true", @@ -211532,7 +201777,7 @@ } }, { - "id": 7672, + "id": 6899, "properties": { "down": "false", "east": "true", @@ -211543,7 +201788,7 @@ } }, { - "id": 7673, + "id": 6900, "properties": { "down": "false", "east": "true", @@ -211554,7 +201799,7 @@ } }, { - "id": 7674, + "id": 6901, "properties": { "down": "false", "east": "true", @@ -211565,7 +201810,7 @@ } }, { - "id": 7675, + "id": 6902, "properties": { "down": "false", "east": "true", @@ -211576,7 +201821,7 @@ } }, { - "id": 7676, + "id": 6903, "properties": { "down": "false", "east": "true", @@ -211587,7 +201832,7 @@ } }, { - "id": 7677, + "id": 6904, "properties": { "down": "false", "east": "false", @@ -211598,7 +201843,7 @@ } }, { - "id": 7678, + "id": 6905, "properties": { "down": "false", "east": "false", @@ -211609,7 +201854,7 @@ } }, { - "id": 7679, + "id": 6906, "properties": { "down": "false", "east": "false", @@ -211620,7 +201865,7 @@ } }, { - "id": 7680, + "id": 6907, "properties": { "down": "false", "east": "false", @@ -211631,7 +201876,7 @@ } }, { - "id": 7681, + "id": 6908, "properties": { "down": "false", "east": "false", @@ -211642,7 +201887,7 @@ } }, { - "id": 7682, + "id": 6909, "properties": { "down": "false", "east": "false", @@ -211653,7 +201898,7 @@ } }, { - "id": 7683, + "id": 6910, "properties": { "down": "false", "east": "false", @@ -211664,7 +201909,7 @@ } }, { - "id": 7684, + "id": 6911, "properties": { "down": "false", "east": "false", @@ -211675,7 +201920,7 @@ } }, { - "id": 7685, + "id": 6912, "properties": { "down": "false", "east": "false", @@ -211686,7 +201931,7 @@ } }, { - "id": 7686, + "id": 6913, "properties": { "down": "false", "east": "false", @@ -211697,7 +201942,7 @@ } }, { - "id": 7687, + "id": 6914, "properties": { "down": "false", "east": "false", @@ -211708,7 +201953,7 @@ } }, { - "id": 7688, + "id": 6915, "properties": { "down": "false", "east": "false", @@ -211719,7 +201964,7 @@ } }, { - "id": 7689, + "id": 6916, "properties": { "down": "false", "east": "false", @@ -211730,7 +201975,7 @@ } }, { - "id": 7690, + "id": 6917, "properties": { "down": "false", "east": "false", @@ -211741,7 +201986,7 @@ } }, { - "id": 7691, + "id": 6918, "properties": { "down": "false", "east": "false", @@ -211752,7 +201997,7 @@ } }, { - "id": 7692, + "id": 6919, "properties": { "down": "false", "east": "false", @@ -211782,21 +202027,21 @@ }, "states": [ { - "id": 16274, + "id": 15165, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 16275, + "id": 15166, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 16276, + "id": 15167, "properties": { "type": "bottom", "waterlogged": "true" @@ -211804,21 +202049,21 @@ }, { "default": true, - "id": 16277, + "id": 15168, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 16278, + "id": 15169, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 16279, + "id": 15170, "properties": { "type": "double", "waterlogged": "false" @@ -211859,7 +202104,7 @@ }, "states": [ { - "id": 15974, + "id": 14865, "properties": { "facing": "north", "half": "top", @@ -211868,7 +202113,7 @@ } }, { - "id": 15975, + "id": 14866, "properties": { "facing": "north", "half": "top", @@ -211877,7 +202122,7 @@ } }, { - "id": 15976, + "id": 14867, "properties": { "facing": "north", "half": "top", @@ -211886,7 +202131,7 @@ } }, { - "id": 15977, + "id": 14868, "properties": { "facing": "north", "half": "top", @@ -211895,7 +202140,7 @@ } }, { - "id": 15978, + "id": 14869, "properties": { "facing": "north", "half": "top", @@ -211904,7 +202149,7 @@ } }, { - "id": 15979, + "id": 14870, "properties": { "facing": "north", "half": "top", @@ -211913,7 +202158,7 @@ } }, { - "id": 15980, + "id": 14871, "properties": { "facing": "north", "half": "top", @@ -211922,7 +202167,7 @@ } }, { - "id": 15981, + "id": 14872, "properties": { "facing": "north", "half": "top", @@ -211931,7 +202176,7 @@ } }, { - "id": 15982, + "id": 14873, "properties": { "facing": "north", "half": "top", @@ -211940,7 +202185,7 @@ } }, { - "id": 15983, + "id": 14874, "properties": { "facing": "north", "half": "top", @@ -211949,7 +202194,7 @@ } }, { - "id": 15984, + "id": 14875, "properties": { "facing": "north", "half": "bottom", @@ -211959,7 +202204,7 @@ }, { "default": true, - "id": 15985, + "id": 14876, "properties": { "facing": "north", "half": "bottom", @@ -211968,7 +202213,7 @@ } }, { - "id": 15986, + "id": 14877, "properties": { "facing": "north", "half": "bottom", @@ -211977,7 +202222,7 @@ } }, { - "id": 15987, + "id": 14878, "properties": { "facing": "north", "half": "bottom", @@ -211986,7 +202231,7 @@ } }, { - "id": 15988, + "id": 14879, "properties": { "facing": "north", "half": "bottom", @@ -211995,7 +202240,7 @@ } }, { - "id": 15989, + "id": 14880, "properties": { "facing": "north", "half": "bottom", @@ -212004,7 +202249,7 @@ } }, { - "id": 15990, + "id": 14881, "properties": { "facing": "north", "half": "bottom", @@ -212013,7 +202258,7 @@ } }, { - "id": 15991, + "id": 14882, "properties": { "facing": "north", "half": "bottom", @@ -212022,7 +202267,7 @@ } }, { - "id": 15992, + "id": 14883, "properties": { "facing": "north", "half": "bottom", @@ -212031,7 +202276,7 @@ } }, { - "id": 15993, + "id": 14884, "properties": { "facing": "north", "half": "bottom", @@ -212040,7 +202285,7 @@ } }, { - "id": 15994, + "id": 14885, "properties": { "facing": "south", "half": "top", @@ -212049,7 +202294,7 @@ } }, { - "id": 15995, + "id": 14886, "properties": { "facing": "south", "half": "top", @@ -212058,7 +202303,7 @@ } }, { - "id": 15996, + "id": 14887, "properties": { "facing": "south", "half": "top", @@ -212067,7 +202312,7 @@ } }, { - "id": 15997, + "id": 14888, "properties": { "facing": "south", "half": "top", @@ -212076,7 +202321,7 @@ } }, { - "id": 15998, + "id": 14889, "properties": { "facing": "south", "half": "top", @@ -212085,7 +202330,7 @@ } }, { - "id": 15999, + "id": 14890, "properties": { "facing": "south", "half": "top", @@ -212094,7 +202339,7 @@ } }, { - "id": 16000, + "id": 14891, "properties": { "facing": "south", "half": "top", @@ -212103,7 +202348,7 @@ } }, { - "id": 16001, + "id": 14892, "properties": { "facing": "south", "half": "top", @@ -212112,7 +202357,7 @@ } }, { - "id": 16002, + "id": 14893, "properties": { "facing": "south", "half": "top", @@ -212121,7 +202366,7 @@ } }, { - "id": 16003, + "id": 14894, "properties": { "facing": "south", "half": "top", @@ -212130,7 +202375,7 @@ } }, { - "id": 16004, + "id": 14895, "properties": { "facing": "south", "half": "bottom", @@ -212139,7 +202384,7 @@ } }, { - "id": 16005, + "id": 14896, "properties": { "facing": "south", "half": "bottom", @@ -212148,7 +202393,7 @@ } }, { - "id": 16006, + "id": 14897, "properties": { "facing": "south", "half": "bottom", @@ -212157,7 +202402,7 @@ } }, { - "id": 16007, + "id": 14898, "properties": { "facing": "south", "half": "bottom", @@ -212166,7 +202411,7 @@ } }, { - "id": 16008, + "id": 14899, "properties": { "facing": "south", "half": "bottom", @@ -212175,7 +202420,7 @@ } }, { - "id": 16009, + "id": 14900, "properties": { "facing": "south", "half": "bottom", @@ -212184,7 +202429,7 @@ } }, { - "id": 16010, + "id": 14901, "properties": { "facing": "south", "half": "bottom", @@ -212193,7 +202438,7 @@ } }, { - "id": 16011, + "id": 14902, "properties": { "facing": "south", "half": "bottom", @@ -212202,7 +202447,7 @@ } }, { - "id": 16012, + "id": 14903, "properties": { "facing": "south", "half": "bottom", @@ -212211,7 +202456,7 @@ } }, { - "id": 16013, + "id": 14904, "properties": { "facing": "south", "half": "bottom", @@ -212220,7 +202465,7 @@ } }, { - "id": 16014, + "id": 14905, "properties": { "facing": "west", "half": "top", @@ -212229,7 +202474,7 @@ } }, { - "id": 16015, + "id": 14906, "properties": { "facing": "west", "half": "top", @@ -212238,7 +202483,7 @@ } }, { - "id": 16016, + "id": 14907, "properties": { "facing": "west", "half": "top", @@ -212247,7 +202492,7 @@ } }, { - "id": 16017, + "id": 14908, "properties": { "facing": "west", "half": "top", @@ -212256,7 +202501,7 @@ } }, { - "id": 16018, + "id": 14909, "properties": { "facing": "west", "half": "top", @@ -212265,7 +202510,7 @@ } }, { - "id": 16019, + "id": 14910, "properties": { "facing": "west", "half": "top", @@ -212274,7 +202519,7 @@ } }, { - "id": 16020, + "id": 14911, "properties": { "facing": "west", "half": "top", @@ -212283,7 +202528,7 @@ } }, { - "id": 16021, + "id": 14912, "properties": { "facing": "west", "half": "top", @@ -212292,7 +202537,7 @@ } }, { - "id": 16022, + "id": 14913, "properties": { "facing": "west", "half": "top", @@ -212301,7 +202546,7 @@ } }, { - "id": 16023, + "id": 14914, "properties": { "facing": "west", "half": "top", @@ -212310,7 +202555,7 @@ } }, { - "id": 16024, + "id": 14915, "properties": { "facing": "west", "half": "bottom", @@ -212319,7 +202564,7 @@ } }, { - "id": 16025, + "id": 14916, "properties": { "facing": "west", "half": "bottom", @@ -212328,7 +202573,7 @@ } }, { - "id": 16026, + "id": 14917, "properties": { "facing": "west", "half": "bottom", @@ -212337,7 +202582,7 @@ } }, { - "id": 16027, + "id": 14918, "properties": { "facing": "west", "half": "bottom", @@ -212346,7 +202591,7 @@ } }, { - "id": 16028, + "id": 14919, "properties": { "facing": "west", "half": "bottom", @@ -212355,7 +202600,7 @@ } }, { - "id": 16029, + "id": 14920, "properties": { "facing": "west", "half": "bottom", @@ -212364,7 +202609,7 @@ } }, { - "id": 16030, + "id": 14921, "properties": { "facing": "west", "half": "bottom", @@ -212373,7 +202618,7 @@ } }, { - "id": 16031, + "id": 14922, "properties": { "facing": "west", "half": "bottom", @@ -212382,7 +202627,7 @@ } }, { - "id": 16032, + "id": 14923, "properties": { "facing": "west", "half": "bottom", @@ -212391,7 +202636,7 @@ } }, { - "id": 16033, + "id": 14924, "properties": { "facing": "west", "half": "bottom", @@ -212400,7 +202645,7 @@ } }, { - "id": 16034, + "id": 14925, "properties": { "facing": "east", "half": "top", @@ -212409,7 +202654,7 @@ } }, { - "id": 16035, + "id": 14926, "properties": { "facing": "east", "half": "top", @@ -212418,7 +202663,7 @@ } }, { - "id": 16036, + "id": 14927, "properties": { "facing": "east", "half": "top", @@ -212427,7 +202672,7 @@ } }, { - "id": 16037, + "id": 14928, "properties": { "facing": "east", "half": "top", @@ -212436,7 +202681,7 @@ } }, { - "id": 16038, + "id": 14929, "properties": { "facing": "east", "half": "top", @@ -212445,7 +202690,7 @@ } }, { - "id": 16039, + "id": 14930, "properties": { "facing": "east", "half": "top", @@ -212454,7 +202699,7 @@ } }, { - "id": 16040, + "id": 14931, "properties": { "facing": "east", "half": "top", @@ -212463,7 +202708,7 @@ } }, { - "id": 16041, + "id": 14932, "properties": { "facing": "east", "half": "top", @@ -212472,7 +202717,7 @@ } }, { - "id": 16042, + "id": 14933, "properties": { "facing": "east", "half": "top", @@ -212481,7 +202726,7 @@ } }, { - "id": 16043, + "id": 14934, "properties": { "facing": "east", "half": "top", @@ -212490,7 +202735,7 @@ } }, { - "id": 16044, + "id": 14935, "properties": { "facing": "east", "half": "bottom", @@ -212499,7 +202744,7 @@ } }, { - "id": 16045, + "id": 14936, "properties": { "facing": "east", "half": "bottom", @@ -212508,7 +202753,7 @@ } }, { - "id": 16046, + "id": 14937, "properties": { "facing": "east", "half": "bottom", @@ -212517,7 +202762,7 @@ } }, { - "id": 16047, + "id": 14938, "properties": { "facing": "east", "half": "bottom", @@ -212526,7 +202771,7 @@ } }, { - "id": 16048, + "id": 14939, "properties": { "facing": "east", "half": "bottom", @@ -212535,7 +202780,7 @@ } }, { - "id": 16049, + "id": 14940, "properties": { "facing": "east", "half": "bottom", @@ -212544,7 +202789,7 @@ } }, { - "id": 16050, + "id": 14941, "properties": { "facing": "east", "half": "bottom", @@ -212553,7 +202798,7 @@ } }, { - "id": 16051, + "id": 14942, "properties": { "facing": "east", "half": "bottom", @@ -212562,7 +202807,7 @@ } }, { - "id": 16052, + "id": 14943, "properties": { "facing": "east", "half": "bottom", @@ -212571,7 +202816,7 @@ } }, { - "id": 16053, + "id": 14944, "properties": { "facing": "east", "half": "bottom", @@ -212618,7 +202863,7 @@ }, "states": [ { - "id": 19208, + "id": 18099, "properties": { "east": "none", "north": "none", @@ -212629,7 +202874,7 @@ } }, { - "id": 19209, + "id": 18100, "properties": { "east": "none", "north": "none", @@ -212640,7 +202885,7 @@ } }, { - "id": 19210, + "id": 18101, "properties": { "east": "none", "north": "none", @@ -212652,7 +202897,7 @@ }, { "default": true, - "id": 19211, + "id": 18102, "properties": { "east": "none", "north": "none", @@ -212663,7 +202908,7 @@ } }, { - "id": 19212, + "id": 18103, "properties": { "east": "none", "north": "none", @@ -212674,7 +202919,7 @@ } }, { - "id": 19213, + "id": 18104, "properties": { "east": "none", "north": "none", @@ -212685,7 +202930,7 @@ } }, { - "id": 19214, + "id": 18105, "properties": { "east": "none", "north": "none", @@ -212696,7 +202941,7 @@ } }, { - "id": 19215, + "id": 18106, "properties": { "east": "none", "north": "none", @@ -212707,7 +202952,7 @@ } }, { - "id": 19216, + "id": 18107, "properties": { "east": "none", "north": "none", @@ -212718,7 +202963,7 @@ } }, { - "id": 19217, + "id": 18108, "properties": { "east": "none", "north": "none", @@ -212729,7 +202974,7 @@ } }, { - "id": 19218, + "id": 18109, "properties": { "east": "none", "north": "none", @@ -212740,7 +202985,7 @@ } }, { - "id": 19219, + "id": 18110, "properties": { "east": "none", "north": "none", @@ -212751,7 +202996,7 @@ } }, { - "id": 19220, + "id": 18111, "properties": { "east": "none", "north": "none", @@ -212762,7 +203007,7 @@ } }, { - "id": 19221, + "id": 18112, "properties": { "east": "none", "north": "none", @@ -212773,7 +203018,7 @@ } }, { - "id": 19222, + "id": 18113, "properties": { "east": "none", "north": "none", @@ -212784,7 +203029,7 @@ } }, { - "id": 19223, + "id": 18114, "properties": { "east": "none", "north": "none", @@ -212795,7 +203040,7 @@ } }, { - "id": 19224, + "id": 18115, "properties": { "east": "none", "north": "none", @@ -212806,7 +203051,7 @@ } }, { - "id": 19225, + "id": 18116, "properties": { "east": "none", "north": "none", @@ -212817,7 +203062,7 @@ } }, { - "id": 19226, + "id": 18117, "properties": { "east": "none", "north": "none", @@ -212828,7 +203073,7 @@ } }, { - "id": 19227, + "id": 18118, "properties": { "east": "none", "north": "none", @@ -212839,7 +203084,7 @@ } }, { - "id": 19228, + "id": 18119, "properties": { "east": "none", "north": "none", @@ -212850,7 +203095,7 @@ } }, { - "id": 19229, + "id": 18120, "properties": { "east": "none", "north": "none", @@ -212861,7 +203106,7 @@ } }, { - "id": 19230, + "id": 18121, "properties": { "east": "none", "north": "none", @@ -212872,7 +203117,7 @@ } }, { - "id": 19231, + "id": 18122, "properties": { "east": "none", "north": "none", @@ -212883,7 +203128,7 @@ } }, { - "id": 19232, + "id": 18123, "properties": { "east": "none", "north": "none", @@ -212894,7 +203139,7 @@ } }, { - "id": 19233, + "id": 18124, "properties": { "east": "none", "north": "none", @@ -212905,7 +203150,7 @@ } }, { - "id": 19234, + "id": 18125, "properties": { "east": "none", "north": "none", @@ -212916,7 +203161,7 @@ } }, { - "id": 19235, + "id": 18126, "properties": { "east": "none", "north": "none", @@ -212927,7 +203172,7 @@ } }, { - "id": 19236, + "id": 18127, "properties": { "east": "none", "north": "none", @@ -212938,7 +203183,7 @@ } }, { - "id": 19237, + "id": 18128, "properties": { "east": "none", "north": "none", @@ -212949,7 +203194,7 @@ } }, { - "id": 19238, + "id": 18129, "properties": { "east": "none", "north": "none", @@ -212960,7 +203205,7 @@ } }, { - "id": 19239, + "id": 18130, "properties": { "east": "none", "north": "none", @@ -212971,7 +203216,7 @@ } }, { - "id": 19240, + "id": 18131, "properties": { "east": "none", "north": "none", @@ -212982,7 +203227,7 @@ } }, { - "id": 19241, + "id": 18132, "properties": { "east": "none", "north": "none", @@ -212993,7 +203238,7 @@ } }, { - "id": 19242, + "id": 18133, "properties": { "east": "none", "north": "none", @@ -213004,7 +203249,7 @@ } }, { - "id": 19243, + "id": 18134, "properties": { "east": "none", "north": "none", @@ -213015,7 +203260,7 @@ } }, { - "id": 19244, + "id": 18135, "properties": { "east": "none", "north": "low", @@ -213026,7 +203271,7 @@ } }, { - "id": 19245, + "id": 18136, "properties": { "east": "none", "north": "low", @@ -213037,7 +203282,7 @@ } }, { - "id": 19246, + "id": 18137, "properties": { "east": "none", "north": "low", @@ -213048,7 +203293,7 @@ } }, { - "id": 19247, + "id": 18138, "properties": { "east": "none", "north": "low", @@ -213059,7 +203304,7 @@ } }, { - "id": 19248, + "id": 18139, "properties": { "east": "none", "north": "low", @@ -213070,7 +203315,7 @@ } }, { - "id": 19249, + "id": 18140, "properties": { "east": "none", "north": "low", @@ -213081,7 +203326,7 @@ } }, { - "id": 19250, + "id": 18141, "properties": { "east": "none", "north": "low", @@ -213092,7 +203337,7 @@ } }, { - "id": 19251, + "id": 18142, "properties": { "east": "none", "north": "low", @@ -213103,7 +203348,7 @@ } }, { - "id": 19252, + "id": 18143, "properties": { "east": "none", "north": "low", @@ -213114,7 +203359,7 @@ } }, { - "id": 19253, + "id": 18144, "properties": { "east": "none", "north": "low", @@ -213125,7 +203370,7 @@ } }, { - "id": 19254, + "id": 18145, "properties": { "east": "none", "north": "low", @@ -213136,7 +203381,7 @@ } }, { - "id": 19255, + "id": 18146, "properties": { "east": "none", "north": "low", @@ -213147,7 +203392,7 @@ } }, { - "id": 19256, + "id": 18147, "properties": { "east": "none", "north": "low", @@ -213158,7 +203403,7 @@ } }, { - "id": 19257, + "id": 18148, "properties": { "east": "none", "north": "low", @@ -213169,7 +203414,7 @@ } }, { - "id": 19258, + "id": 18149, "properties": { "east": "none", "north": "low", @@ -213180,7 +203425,7 @@ } }, { - "id": 19259, + "id": 18150, "properties": { "east": "none", "north": "low", @@ -213191,7 +203436,7 @@ } }, { - "id": 19260, + "id": 18151, "properties": { "east": "none", "north": "low", @@ -213202,7 +203447,7 @@ } }, { - "id": 19261, + "id": 18152, "properties": { "east": "none", "north": "low", @@ -213213,7 +203458,7 @@ } }, { - "id": 19262, + "id": 18153, "properties": { "east": "none", "north": "low", @@ -213224,7 +203469,7 @@ } }, { - "id": 19263, + "id": 18154, "properties": { "east": "none", "north": "low", @@ -213235,7 +203480,7 @@ } }, { - "id": 19264, + "id": 18155, "properties": { "east": "none", "north": "low", @@ -213246,7 +203491,7 @@ } }, { - "id": 19265, + "id": 18156, "properties": { "east": "none", "north": "low", @@ -213257,7 +203502,7 @@ } }, { - "id": 19266, + "id": 18157, "properties": { "east": "none", "north": "low", @@ -213268,7 +203513,7 @@ } }, { - "id": 19267, + "id": 18158, "properties": { "east": "none", "north": "low", @@ -213279,7 +203524,7 @@ } }, { - "id": 19268, + "id": 18159, "properties": { "east": "none", "north": "low", @@ -213290,7 +203535,7 @@ } }, { - "id": 19269, + "id": 18160, "properties": { "east": "none", "north": "low", @@ -213301,7 +203546,7 @@ } }, { - "id": 19270, + "id": 18161, "properties": { "east": "none", "north": "low", @@ -213312,7 +203557,7 @@ } }, { - "id": 19271, + "id": 18162, "properties": { "east": "none", "north": "low", @@ -213323,7 +203568,7 @@ } }, { - "id": 19272, + "id": 18163, "properties": { "east": "none", "north": "low", @@ -213334,7 +203579,7 @@ } }, { - "id": 19273, + "id": 18164, "properties": { "east": "none", "north": "low", @@ -213345,7 +203590,7 @@ } }, { - "id": 19274, + "id": 18165, "properties": { "east": "none", "north": "low", @@ -213356,7 +203601,7 @@ } }, { - "id": 19275, + "id": 18166, "properties": { "east": "none", "north": "low", @@ -213367,7 +203612,7 @@ } }, { - "id": 19276, + "id": 18167, "properties": { "east": "none", "north": "low", @@ -213378,7 +203623,7 @@ } }, { - "id": 19277, + "id": 18168, "properties": { "east": "none", "north": "low", @@ -213389,7 +203634,7 @@ } }, { - "id": 19278, + "id": 18169, "properties": { "east": "none", "north": "low", @@ -213400,7 +203645,7 @@ } }, { - "id": 19279, + "id": 18170, "properties": { "east": "none", "north": "low", @@ -213411,7 +203656,7 @@ } }, { - "id": 19280, + "id": 18171, "properties": { "east": "none", "north": "tall", @@ -213422,7 +203667,7 @@ } }, { - "id": 19281, + "id": 18172, "properties": { "east": "none", "north": "tall", @@ -213433,7 +203678,7 @@ } }, { - "id": 19282, + "id": 18173, "properties": { "east": "none", "north": "tall", @@ -213444,7 +203689,7 @@ } }, { - "id": 19283, + "id": 18174, "properties": { "east": "none", "north": "tall", @@ -213455,7 +203700,7 @@ } }, { - "id": 19284, + "id": 18175, "properties": { "east": "none", "north": "tall", @@ -213466,7 +203711,7 @@ } }, { - "id": 19285, + "id": 18176, "properties": { "east": "none", "north": "tall", @@ -213477,7 +203722,7 @@ } }, { - "id": 19286, + "id": 18177, "properties": { "east": "none", "north": "tall", @@ -213488,7 +203733,7 @@ } }, { - "id": 19287, + "id": 18178, "properties": { "east": "none", "north": "tall", @@ -213499,7 +203744,7 @@ } }, { - "id": 19288, + "id": 18179, "properties": { "east": "none", "north": "tall", @@ -213510,7 +203755,7 @@ } }, { - "id": 19289, + "id": 18180, "properties": { "east": "none", "north": "tall", @@ -213521,7 +203766,7 @@ } }, { - "id": 19290, + "id": 18181, "properties": { "east": "none", "north": "tall", @@ -213532,7 +203777,7 @@ } }, { - "id": 19291, + "id": 18182, "properties": { "east": "none", "north": "tall", @@ -213543,7 +203788,7 @@ } }, { - "id": 19292, + "id": 18183, "properties": { "east": "none", "north": "tall", @@ -213554,7 +203799,7 @@ } }, { - "id": 19293, + "id": 18184, "properties": { "east": "none", "north": "tall", @@ -213565,7 +203810,7 @@ } }, { - "id": 19294, + "id": 18185, "properties": { "east": "none", "north": "tall", @@ -213576,7 +203821,7 @@ } }, { - "id": 19295, + "id": 18186, "properties": { "east": "none", "north": "tall", @@ -213587,7 +203832,7 @@ } }, { - "id": 19296, + "id": 18187, "properties": { "east": "none", "north": "tall", @@ -213598,7 +203843,7 @@ } }, { - "id": 19297, + "id": 18188, "properties": { "east": "none", "north": "tall", @@ -213609,7 +203854,7 @@ } }, { - "id": 19298, + "id": 18189, "properties": { "east": "none", "north": "tall", @@ -213620,7 +203865,7 @@ } }, { - "id": 19299, + "id": 18190, "properties": { "east": "none", "north": "tall", @@ -213631,7 +203876,7 @@ } }, { - "id": 19300, + "id": 18191, "properties": { "east": "none", "north": "tall", @@ -213642,7 +203887,7 @@ } }, { - "id": 19301, + "id": 18192, "properties": { "east": "none", "north": "tall", @@ -213653,7 +203898,7 @@ } }, { - "id": 19302, + "id": 18193, "properties": { "east": "none", "north": "tall", @@ -213664,7 +203909,7 @@ } }, { - "id": 19303, + "id": 18194, "properties": { "east": "none", "north": "tall", @@ -213675,7 +203920,7 @@ } }, { - "id": 19304, + "id": 18195, "properties": { "east": "none", "north": "tall", @@ -213686,7 +203931,7 @@ } }, { - "id": 19305, + "id": 18196, "properties": { "east": "none", "north": "tall", @@ -213697,7 +203942,7 @@ } }, { - "id": 19306, + "id": 18197, "properties": { "east": "none", "north": "tall", @@ -213708,7 +203953,7 @@ } }, { - "id": 19307, + "id": 18198, "properties": { "east": "none", "north": "tall", @@ -213719,7 +203964,7 @@ } }, { - "id": 19308, + "id": 18199, "properties": { "east": "none", "north": "tall", @@ -213730,7 +203975,7 @@ } }, { - "id": 19309, + "id": 18200, "properties": { "east": "none", "north": "tall", @@ -213741,7 +203986,7 @@ } }, { - "id": 19310, + "id": 18201, "properties": { "east": "none", "north": "tall", @@ -213752,7 +203997,7 @@ } }, { - "id": 19311, + "id": 18202, "properties": { "east": "none", "north": "tall", @@ -213763,7 +204008,7 @@ } }, { - "id": 19312, + "id": 18203, "properties": { "east": "none", "north": "tall", @@ -213774,7 +204019,7 @@ } }, { - "id": 19313, + "id": 18204, "properties": { "east": "none", "north": "tall", @@ -213785,7 +204030,7 @@ } }, { - "id": 19314, + "id": 18205, "properties": { "east": "none", "north": "tall", @@ -213796,7 +204041,7 @@ } }, { - "id": 19315, + "id": 18206, "properties": { "east": "none", "north": "tall", @@ -213807,7 +204052,7 @@ } }, { - "id": 19316, + "id": 18207, "properties": { "east": "low", "north": "none", @@ -213818,7 +204063,7 @@ } }, { - "id": 19317, + "id": 18208, "properties": { "east": "low", "north": "none", @@ -213829,7 +204074,7 @@ } }, { - "id": 19318, + "id": 18209, "properties": { "east": "low", "north": "none", @@ -213840,7 +204085,7 @@ } }, { - "id": 19319, + "id": 18210, "properties": { "east": "low", "north": "none", @@ -213851,7 +204096,7 @@ } }, { - "id": 19320, + "id": 18211, "properties": { "east": "low", "north": "none", @@ -213862,7 +204107,7 @@ } }, { - "id": 19321, + "id": 18212, "properties": { "east": "low", "north": "none", @@ -213873,7 +204118,7 @@ } }, { - "id": 19322, + "id": 18213, "properties": { "east": "low", "north": "none", @@ -213884,7 +204129,7 @@ } }, { - "id": 19323, + "id": 18214, "properties": { "east": "low", "north": "none", @@ -213895,7 +204140,7 @@ } }, { - "id": 19324, + "id": 18215, "properties": { "east": "low", "north": "none", @@ -213906,7 +204151,7 @@ } }, { - "id": 19325, + "id": 18216, "properties": { "east": "low", "north": "none", @@ -213917,7 +204162,7 @@ } }, { - "id": 19326, + "id": 18217, "properties": { "east": "low", "north": "none", @@ -213928,7 +204173,7 @@ } }, { - "id": 19327, + "id": 18218, "properties": { "east": "low", "north": "none", @@ -213939,7 +204184,7 @@ } }, { - "id": 19328, + "id": 18219, "properties": { "east": "low", "north": "none", @@ -213950,7 +204195,7 @@ } }, { - "id": 19329, + "id": 18220, "properties": { "east": "low", "north": "none", @@ -213961,7 +204206,7 @@ } }, { - "id": 19330, + "id": 18221, "properties": { "east": "low", "north": "none", @@ -213972,7 +204217,7 @@ } }, { - "id": 19331, + "id": 18222, "properties": { "east": "low", "north": "none", @@ -213983,7 +204228,7 @@ } }, { - "id": 19332, + "id": 18223, "properties": { "east": "low", "north": "none", @@ -213994,7 +204239,7 @@ } }, { - "id": 19333, + "id": 18224, "properties": { "east": "low", "north": "none", @@ -214005,7 +204250,7 @@ } }, { - "id": 19334, + "id": 18225, "properties": { "east": "low", "north": "none", @@ -214016,7 +204261,7 @@ } }, { - "id": 19335, + "id": 18226, "properties": { "east": "low", "north": "none", @@ -214027,7 +204272,7 @@ } }, { - "id": 19336, + "id": 18227, "properties": { "east": "low", "north": "none", @@ -214038,7 +204283,7 @@ } }, { - "id": 19337, + "id": 18228, "properties": { "east": "low", "north": "none", @@ -214049,7 +204294,7 @@ } }, { - "id": 19338, + "id": 18229, "properties": { "east": "low", "north": "none", @@ -214060,7 +204305,7 @@ } }, { - "id": 19339, + "id": 18230, "properties": { "east": "low", "north": "none", @@ -214071,7 +204316,7 @@ } }, { - "id": 19340, + "id": 18231, "properties": { "east": "low", "north": "none", @@ -214082,7 +204327,7 @@ } }, { - "id": 19341, + "id": 18232, "properties": { "east": "low", "north": "none", @@ -214093,7 +204338,7 @@ } }, { - "id": 19342, + "id": 18233, "properties": { "east": "low", "north": "none", @@ -214104,7 +204349,7 @@ } }, { - "id": 19343, + "id": 18234, "properties": { "east": "low", "north": "none", @@ -214115,7 +204360,7 @@ } }, { - "id": 19344, + "id": 18235, "properties": { "east": "low", "north": "none", @@ -214126,7 +204371,7 @@ } }, { - "id": 19345, + "id": 18236, "properties": { "east": "low", "north": "none", @@ -214137,7 +204382,7 @@ } }, { - "id": 19346, + "id": 18237, "properties": { "east": "low", "north": "none", @@ -214148,7 +204393,7 @@ } }, { - "id": 19347, + "id": 18238, "properties": { "east": "low", "north": "none", @@ -214159,7 +204404,7 @@ } }, { - "id": 19348, + "id": 18239, "properties": { "east": "low", "north": "none", @@ -214170,7 +204415,7 @@ } }, { - "id": 19349, + "id": 18240, "properties": { "east": "low", "north": "none", @@ -214181,7 +204426,7 @@ } }, { - "id": 19350, + "id": 18241, "properties": { "east": "low", "north": "none", @@ -214192,7 +204437,7 @@ } }, { - "id": 19351, + "id": 18242, "properties": { "east": "low", "north": "none", @@ -214203,7 +204448,7 @@ } }, { - "id": 19352, + "id": 18243, "properties": { "east": "low", "north": "low", @@ -214214,7 +204459,7 @@ } }, { - "id": 19353, + "id": 18244, "properties": { "east": "low", "north": "low", @@ -214225,7 +204470,7 @@ } }, { - "id": 19354, + "id": 18245, "properties": { "east": "low", "north": "low", @@ -214236,7 +204481,7 @@ } }, { - "id": 19355, + "id": 18246, "properties": { "east": "low", "north": "low", @@ -214247,7 +204492,7 @@ } }, { - "id": 19356, + "id": 18247, "properties": { "east": "low", "north": "low", @@ -214258,7 +204503,7 @@ } }, { - "id": 19357, + "id": 18248, "properties": { "east": "low", "north": "low", @@ -214269,7 +204514,7 @@ } }, { - "id": 19358, + "id": 18249, "properties": { "east": "low", "north": "low", @@ -214280,7 +204525,7 @@ } }, { - "id": 19359, + "id": 18250, "properties": { "east": "low", "north": "low", @@ -214291,7 +204536,7 @@ } }, { - "id": 19360, + "id": 18251, "properties": { "east": "low", "north": "low", @@ -214302,7 +204547,7 @@ } }, { - "id": 19361, + "id": 18252, "properties": { "east": "low", "north": "low", @@ -214313,7 +204558,7 @@ } }, { - "id": 19362, + "id": 18253, "properties": { "east": "low", "north": "low", @@ -214324,7 +204569,7 @@ } }, { - "id": 19363, + "id": 18254, "properties": { "east": "low", "north": "low", @@ -214335,7 +204580,7 @@ } }, { - "id": 19364, + "id": 18255, "properties": { "east": "low", "north": "low", @@ -214346,7 +204591,7 @@ } }, { - "id": 19365, + "id": 18256, "properties": { "east": "low", "north": "low", @@ -214357,7 +204602,7 @@ } }, { - "id": 19366, + "id": 18257, "properties": { "east": "low", "north": "low", @@ -214368,7 +204613,7 @@ } }, { - "id": 19367, + "id": 18258, "properties": { "east": "low", "north": "low", @@ -214379,7 +204624,7 @@ } }, { - "id": 19368, + "id": 18259, "properties": { "east": "low", "north": "low", @@ -214390,7 +204635,7 @@ } }, { - "id": 19369, + "id": 18260, "properties": { "east": "low", "north": "low", @@ -214401,7 +204646,7 @@ } }, { - "id": 19370, + "id": 18261, "properties": { "east": "low", "north": "low", @@ -214412,7 +204657,7 @@ } }, { - "id": 19371, + "id": 18262, "properties": { "east": "low", "north": "low", @@ -214423,7 +204668,7 @@ } }, { - "id": 19372, + "id": 18263, "properties": { "east": "low", "north": "low", @@ -214434,7 +204679,7 @@ } }, { - "id": 19373, + "id": 18264, "properties": { "east": "low", "north": "low", @@ -214445,7 +204690,7 @@ } }, { - "id": 19374, + "id": 18265, "properties": { "east": "low", "north": "low", @@ -214456,7 +204701,7 @@ } }, { - "id": 19375, + "id": 18266, "properties": { "east": "low", "north": "low", @@ -214467,7 +204712,7 @@ } }, { - "id": 19376, + "id": 18267, "properties": { "east": "low", "north": "low", @@ -214478,7 +204723,7 @@ } }, { - "id": 19377, + "id": 18268, "properties": { "east": "low", "north": "low", @@ -214489,7 +204734,7 @@ } }, { - "id": 19378, + "id": 18269, "properties": { "east": "low", "north": "low", @@ -214500,7 +204745,7 @@ } }, { - "id": 19379, + "id": 18270, "properties": { "east": "low", "north": "low", @@ -214511,7 +204756,7 @@ } }, { - "id": 19380, + "id": 18271, "properties": { "east": "low", "north": "low", @@ -214522,7 +204767,7 @@ } }, { - "id": 19381, + "id": 18272, "properties": { "east": "low", "north": "low", @@ -214533,7 +204778,7 @@ } }, { - "id": 19382, + "id": 18273, "properties": { "east": "low", "north": "low", @@ -214544,7 +204789,7 @@ } }, { - "id": 19383, + "id": 18274, "properties": { "east": "low", "north": "low", @@ -214555,7 +204800,7 @@ } }, { - "id": 19384, + "id": 18275, "properties": { "east": "low", "north": "low", @@ -214566,7 +204811,7 @@ } }, { - "id": 19385, + "id": 18276, "properties": { "east": "low", "north": "low", @@ -214577,7 +204822,7 @@ } }, { - "id": 19386, + "id": 18277, "properties": { "east": "low", "north": "low", @@ -214588,7 +204833,7 @@ } }, { - "id": 19387, + "id": 18278, "properties": { "east": "low", "north": "low", @@ -214599,7 +204844,7 @@ } }, { - "id": 19388, + "id": 18279, "properties": { "east": "low", "north": "tall", @@ -214610,7 +204855,7 @@ } }, { - "id": 19389, + "id": 18280, "properties": { "east": "low", "north": "tall", @@ -214621,7 +204866,7 @@ } }, { - "id": 19390, + "id": 18281, "properties": { "east": "low", "north": "tall", @@ -214632,7 +204877,7 @@ } }, { - "id": 19391, + "id": 18282, "properties": { "east": "low", "north": "tall", @@ -214643,7 +204888,7 @@ } }, { - "id": 19392, + "id": 18283, "properties": { "east": "low", "north": "tall", @@ -214654,7 +204899,7 @@ } }, { - "id": 19393, + "id": 18284, "properties": { "east": "low", "north": "tall", @@ -214665,7 +204910,7 @@ } }, { - "id": 19394, + "id": 18285, "properties": { "east": "low", "north": "tall", @@ -214676,7 +204921,7 @@ } }, { - "id": 19395, + "id": 18286, "properties": { "east": "low", "north": "tall", @@ -214687,7 +204932,7 @@ } }, { - "id": 19396, + "id": 18287, "properties": { "east": "low", "north": "tall", @@ -214698,7 +204943,7 @@ } }, { - "id": 19397, + "id": 18288, "properties": { "east": "low", "north": "tall", @@ -214709,7 +204954,7 @@ } }, { - "id": 19398, + "id": 18289, "properties": { "east": "low", "north": "tall", @@ -214720,7 +204965,7 @@ } }, { - "id": 19399, + "id": 18290, "properties": { "east": "low", "north": "tall", @@ -214731,7 +204976,7 @@ } }, { - "id": 19400, + "id": 18291, "properties": { "east": "low", "north": "tall", @@ -214742,7 +204987,7 @@ } }, { - "id": 19401, + "id": 18292, "properties": { "east": "low", "north": "tall", @@ -214753,7 +204998,7 @@ } }, { - "id": 19402, + "id": 18293, "properties": { "east": "low", "north": "tall", @@ -214764,7 +205009,7 @@ } }, { - "id": 19403, + "id": 18294, "properties": { "east": "low", "north": "tall", @@ -214775,7 +205020,7 @@ } }, { - "id": 19404, + "id": 18295, "properties": { "east": "low", "north": "tall", @@ -214786,7 +205031,7 @@ } }, { - "id": 19405, + "id": 18296, "properties": { "east": "low", "north": "tall", @@ -214797,7 +205042,7 @@ } }, { - "id": 19406, + "id": 18297, "properties": { "east": "low", "north": "tall", @@ -214808,7 +205053,7 @@ } }, { - "id": 19407, + "id": 18298, "properties": { "east": "low", "north": "tall", @@ -214819,7 +205064,7 @@ } }, { - "id": 19408, + "id": 18299, "properties": { "east": "low", "north": "tall", @@ -214830,7 +205075,7 @@ } }, { - "id": 19409, + "id": 18300, "properties": { "east": "low", "north": "tall", @@ -214841,7 +205086,7 @@ } }, { - "id": 19410, + "id": 18301, "properties": { "east": "low", "north": "tall", @@ -214852,7 +205097,7 @@ } }, { - "id": 19411, + "id": 18302, "properties": { "east": "low", "north": "tall", @@ -214863,7 +205108,7 @@ } }, { - "id": 19412, + "id": 18303, "properties": { "east": "low", "north": "tall", @@ -214874,7 +205119,7 @@ } }, { - "id": 19413, + "id": 18304, "properties": { "east": "low", "north": "tall", @@ -214885,7 +205130,7 @@ } }, { - "id": 19414, + "id": 18305, "properties": { "east": "low", "north": "tall", @@ -214896,7 +205141,7 @@ } }, { - "id": 19415, + "id": 18306, "properties": { "east": "low", "north": "tall", @@ -214907,7 +205152,7 @@ } }, { - "id": 19416, + "id": 18307, "properties": { "east": "low", "north": "tall", @@ -214918,7 +205163,7 @@ } }, { - "id": 19417, + "id": 18308, "properties": { "east": "low", "north": "tall", @@ -214929,7 +205174,7 @@ } }, { - "id": 19418, + "id": 18309, "properties": { "east": "low", "north": "tall", @@ -214940,7 +205185,7 @@ } }, { - "id": 19419, + "id": 18310, "properties": { "east": "low", "north": "tall", @@ -214951,7 +205196,7 @@ } }, { - "id": 19420, + "id": 18311, "properties": { "east": "low", "north": "tall", @@ -214962,7 +205207,7 @@ } }, { - "id": 19421, + "id": 18312, "properties": { "east": "low", "north": "tall", @@ -214973,7 +205218,7 @@ } }, { - "id": 19422, + "id": 18313, "properties": { "east": "low", "north": "tall", @@ -214984,7 +205229,7 @@ } }, { - "id": 19423, + "id": 18314, "properties": { "east": "low", "north": "tall", @@ -214995,7 +205240,7 @@ } }, { - "id": 19424, + "id": 18315, "properties": { "east": "tall", "north": "none", @@ -215006,7 +205251,7 @@ } }, { - "id": 19425, + "id": 18316, "properties": { "east": "tall", "north": "none", @@ -215017,7 +205262,7 @@ } }, { - "id": 19426, + "id": 18317, "properties": { "east": "tall", "north": "none", @@ -215028,7 +205273,7 @@ } }, { - "id": 19427, + "id": 18318, "properties": { "east": "tall", "north": "none", @@ -215039,7 +205284,7 @@ } }, { - "id": 19428, + "id": 18319, "properties": { "east": "tall", "north": "none", @@ -215050,7 +205295,7 @@ } }, { - "id": 19429, + "id": 18320, "properties": { "east": "tall", "north": "none", @@ -215061,7 +205306,7 @@ } }, { - "id": 19430, + "id": 18321, "properties": { "east": "tall", "north": "none", @@ -215072,7 +205317,7 @@ } }, { - "id": 19431, + "id": 18322, "properties": { "east": "tall", "north": "none", @@ -215083,7 +205328,7 @@ } }, { - "id": 19432, + "id": 18323, "properties": { "east": "tall", "north": "none", @@ -215094,7 +205339,7 @@ } }, { - "id": 19433, + "id": 18324, "properties": { "east": "tall", "north": "none", @@ -215105,7 +205350,7 @@ } }, { - "id": 19434, + "id": 18325, "properties": { "east": "tall", "north": "none", @@ -215116,7 +205361,7 @@ } }, { - "id": 19435, + "id": 18326, "properties": { "east": "tall", "north": "none", @@ -215127,7 +205372,7 @@ } }, { - "id": 19436, + "id": 18327, "properties": { "east": "tall", "north": "none", @@ -215138,7 +205383,7 @@ } }, { - "id": 19437, + "id": 18328, "properties": { "east": "tall", "north": "none", @@ -215149,7 +205394,7 @@ } }, { - "id": 19438, + "id": 18329, "properties": { "east": "tall", "north": "none", @@ -215160,7 +205405,7 @@ } }, { - "id": 19439, + "id": 18330, "properties": { "east": "tall", "north": "none", @@ -215171,7 +205416,7 @@ } }, { - "id": 19440, + "id": 18331, "properties": { "east": "tall", "north": "none", @@ -215182,7 +205427,7 @@ } }, { - "id": 19441, + "id": 18332, "properties": { "east": "tall", "north": "none", @@ -215193,7 +205438,7 @@ } }, { - "id": 19442, + "id": 18333, "properties": { "east": "tall", "north": "none", @@ -215204,7 +205449,7 @@ } }, { - "id": 19443, + "id": 18334, "properties": { "east": "tall", "north": "none", @@ -215215,7 +205460,7 @@ } }, { - "id": 19444, + "id": 18335, "properties": { "east": "tall", "north": "none", @@ -215226,7 +205471,7 @@ } }, { - "id": 19445, + "id": 18336, "properties": { "east": "tall", "north": "none", @@ -215237,7 +205482,7 @@ } }, { - "id": 19446, + "id": 18337, "properties": { "east": "tall", "north": "none", @@ -215248,7 +205493,7 @@ } }, { - "id": 19447, + "id": 18338, "properties": { "east": "tall", "north": "none", @@ -215259,7 +205504,7 @@ } }, { - "id": 19448, + "id": 18339, "properties": { "east": "tall", "north": "none", @@ -215270,7 +205515,7 @@ } }, { - "id": 19449, + "id": 18340, "properties": { "east": "tall", "north": "none", @@ -215281,7 +205526,7 @@ } }, { - "id": 19450, + "id": 18341, "properties": { "east": "tall", "north": "none", @@ -215292,7 +205537,7 @@ } }, { - "id": 19451, + "id": 18342, "properties": { "east": "tall", "north": "none", @@ -215303,7 +205548,7 @@ } }, { - "id": 19452, + "id": 18343, "properties": { "east": "tall", "north": "none", @@ -215314,7 +205559,7 @@ } }, { - "id": 19453, + "id": 18344, "properties": { "east": "tall", "north": "none", @@ -215325,7 +205570,7 @@ } }, { - "id": 19454, + "id": 18345, "properties": { "east": "tall", "north": "none", @@ -215336,7 +205581,7 @@ } }, { - "id": 19455, + "id": 18346, "properties": { "east": "tall", "north": "none", @@ -215347,7 +205592,7 @@ } }, { - "id": 19456, + "id": 18347, "properties": { "east": "tall", "north": "none", @@ -215358,7 +205603,7 @@ } }, { - "id": 19457, + "id": 18348, "properties": { "east": "tall", "north": "none", @@ -215369,7 +205614,7 @@ } }, { - "id": 19458, + "id": 18349, "properties": { "east": "tall", "north": "none", @@ -215380,7 +205625,7 @@ } }, { - "id": 19459, + "id": 18350, "properties": { "east": "tall", "north": "none", @@ -215391,7 +205636,7 @@ } }, { - "id": 19460, + "id": 18351, "properties": { "east": "tall", "north": "low", @@ -215402,7 +205647,7 @@ } }, { - "id": 19461, + "id": 18352, "properties": { "east": "tall", "north": "low", @@ -215413,7 +205658,7 @@ } }, { - "id": 19462, + "id": 18353, "properties": { "east": "tall", "north": "low", @@ -215424,7 +205669,7 @@ } }, { - "id": 19463, + "id": 18354, "properties": { "east": "tall", "north": "low", @@ -215435,7 +205680,7 @@ } }, { - "id": 19464, + "id": 18355, "properties": { "east": "tall", "north": "low", @@ -215446,7 +205691,7 @@ } }, { - "id": 19465, + "id": 18356, "properties": { "east": "tall", "north": "low", @@ -215457,7 +205702,7 @@ } }, { - "id": 19466, + "id": 18357, "properties": { "east": "tall", "north": "low", @@ -215468,7 +205713,7 @@ } }, { - "id": 19467, + "id": 18358, "properties": { "east": "tall", "north": "low", @@ -215479,7 +205724,7 @@ } }, { - "id": 19468, + "id": 18359, "properties": { "east": "tall", "north": "low", @@ -215490,7 +205735,7 @@ } }, { - "id": 19469, + "id": 18360, "properties": { "east": "tall", "north": "low", @@ -215501,7 +205746,7 @@ } }, { - "id": 19470, + "id": 18361, "properties": { "east": "tall", "north": "low", @@ -215512,7 +205757,7 @@ } }, { - "id": 19471, + "id": 18362, "properties": { "east": "tall", "north": "low", @@ -215523,7 +205768,7 @@ } }, { - "id": 19472, + "id": 18363, "properties": { "east": "tall", "north": "low", @@ -215534,7 +205779,7 @@ } }, { - "id": 19473, + "id": 18364, "properties": { "east": "tall", "north": "low", @@ -215545,7 +205790,7 @@ } }, { - "id": 19474, + "id": 18365, "properties": { "east": "tall", "north": "low", @@ -215556,7 +205801,7 @@ } }, { - "id": 19475, + "id": 18366, "properties": { "east": "tall", "north": "low", @@ -215567,7 +205812,7 @@ } }, { - "id": 19476, + "id": 18367, "properties": { "east": "tall", "north": "low", @@ -215578,7 +205823,7 @@ } }, { - "id": 19477, + "id": 18368, "properties": { "east": "tall", "north": "low", @@ -215589,7 +205834,7 @@ } }, { - "id": 19478, + "id": 18369, "properties": { "east": "tall", "north": "low", @@ -215600,7 +205845,7 @@ } }, { - "id": 19479, + "id": 18370, "properties": { "east": "tall", "north": "low", @@ -215611,7 +205856,7 @@ } }, { - "id": 19480, + "id": 18371, "properties": { "east": "tall", "north": "low", @@ -215622,7 +205867,7 @@ } }, { - "id": 19481, + "id": 18372, "properties": { "east": "tall", "north": "low", @@ -215633,7 +205878,7 @@ } }, { - "id": 19482, + "id": 18373, "properties": { "east": "tall", "north": "low", @@ -215644,7 +205889,7 @@ } }, { - "id": 19483, + "id": 18374, "properties": { "east": "tall", "north": "low", @@ -215655,7 +205900,7 @@ } }, { - "id": 19484, + "id": 18375, "properties": { "east": "tall", "north": "low", @@ -215666,7 +205911,7 @@ } }, { - "id": 19485, + "id": 18376, "properties": { "east": "tall", "north": "low", @@ -215677,7 +205922,7 @@ } }, { - "id": 19486, + "id": 18377, "properties": { "east": "tall", "north": "low", @@ -215688,7 +205933,7 @@ } }, { - "id": 19487, + "id": 18378, "properties": { "east": "tall", "north": "low", @@ -215699,7 +205944,7 @@ } }, { - "id": 19488, + "id": 18379, "properties": { "east": "tall", "north": "low", @@ -215710,7 +205955,7 @@ } }, { - "id": 19489, + "id": 18380, "properties": { "east": "tall", "north": "low", @@ -215721,7 +205966,7 @@ } }, { - "id": 19490, + "id": 18381, "properties": { "east": "tall", "north": "low", @@ -215732,7 +205977,7 @@ } }, { - "id": 19491, + "id": 18382, "properties": { "east": "tall", "north": "low", @@ -215743,7 +205988,7 @@ } }, { - "id": 19492, + "id": 18383, "properties": { "east": "tall", "north": "low", @@ -215754,7 +205999,7 @@ } }, { - "id": 19493, + "id": 18384, "properties": { "east": "tall", "north": "low", @@ -215765,7 +206010,7 @@ } }, { - "id": 19494, + "id": 18385, "properties": { "east": "tall", "north": "low", @@ -215776,7 +206021,7 @@ } }, { - "id": 19495, + "id": 18386, "properties": { "east": "tall", "north": "low", @@ -215787,7 +206032,7 @@ } }, { - "id": 19496, + "id": 18387, "properties": { "east": "tall", "north": "tall", @@ -215798,7 +206043,7 @@ } }, { - "id": 19497, + "id": 18388, "properties": { "east": "tall", "north": "tall", @@ -215809,7 +206054,7 @@ } }, { - "id": 19498, + "id": 18389, "properties": { "east": "tall", "north": "tall", @@ -215820,7 +206065,7 @@ } }, { - "id": 19499, + "id": 18390, "properties": { "east": "tall", "north": "tall", @@ -215831,7 +206076,7 @@ } }, { - "id": 19500, + "id": 18391, "properties": { "east": "tall", "north": "tall", @@ -215842,7 +206087,7 @@ } }, { - "id": 19501, + "id": 18392, "properties": { "east": "tall", "north": "tall", @@ -215853,7 +206098,7 @@ } }, { - "id": 19502, + "id": 18393, "properties": { "east": "tall", "north": "tall", @@ -215864,7 +206109,7 @@ } }, { - "id": 19503, + "id": 18394, "properties": { "east": "tall", "north": "tall", @@ -215875,7 +206120,7 @@ } }, { - "id": 19504, + "id": 18395, "properties": { "east": "tall", "north": "tall", @@ -215886,7 +206131,7 @@ } }, { - "id": 19505, + "id": 18396, "properties": { "east": "tall", "north": "tall", @@ -215897,7 +206142,7 @@ } }, { - "id": 19506, + "id": 18397, "properties": { "east": "tall", "north": "tall", @@ -215908,7 +206153,7 @@ } }, { - "id": 19507, + "id": 18398, "properties": { "east": "tall", "north": "tall", @@ -215919,7 +206164,7 @@ } }, { - "id": 19508, + "id": 18399, "properties": { "east": "tall", "north": "tall", @@ -215930,7 +206175,7 @@ } }, { - "id": 19509, + "id": 18400, "properties": { "east": "tall", "north": "tall", @@ -215941,7 +206186,7 @@ } }, { - "id": 19510, + "id": 18401, "properties": { "east": "tall", "north": "tall", @@ -215952,7 +206197,7 @@ } }, { - "id": 19511, + "id": 18402, "properties": { "east": "tall", "north": "tall", @@ -215963,7 +206208,7 @@ } }, { - "id": 19512, + "id": 18403, "properties": { "east": "tall", "north": "tall", @@ -215974,7 +206219,7 @@ } }, { - "id": 19513, + "id": 18404, "properties": { "east": "tall", "north": "tall", @@ -215985,7 +206230,7 @@ } }, { - "id": 19514, + "id": 18405, "properties": { "east": "tall", "north": "tall", @@ -215996,7 +206241,7 @@ } }, { - "id": 19515, + "id": 18406, "properties": { "east": "tall", "north": "tall", @@ -216007,7 +206252,7 @@ } }, { - "id": 19516, + "id": 18407, "properties": { "east": "tall", "north": "tall", @@ -216018,7 +206263,7 @@ } }, { - "id": 19517, + "id": 18408, "properties": { "east": "tall", "north": "tall", @@ -216029,7 +206274,7 @@ } }, { - "id": 19518, + "id": 18409, "properties": { "east": "tall", "north": "tall", @@ -216040,7 +206285,7 @@ } }, { - "id": 19519, + "id": 18410, "properties": { "east": "tall", "north": "tall", @@ -216051,7 +206296,7 @@ } }, { - "id": 19520, + "id": 18411, "properties": { "east": "tall", "north": "tall", @@ -216062,7 +206307,7 @@ } }, { - "id": 19521, + "id": 18412, "properties": { "east": "tall", "north": "tall", @@ -216073,7 +206318,7 @@ } }, { - "id": 19522, + "id": 18413, "properties": { "east": "tall", "north": "tall", @@ -216084,7 +206329,7 @@ } }, { - "id": 19523, + "id": 18414, "properties": { "east": "tall", "north": "tall", @@ -216095,7 +206340,7 @@ } }, { - "id": 19524, + "id": 18415, "properties": { "east": "tall", "north": "tall", @@ -216106,7 +206351,7 @@ } }, { - "id": 19525, + "id": 18416, "properties": { "east": "tall", "north": "tall", @@ -216117,7 +206362,7 @@ } }, { - "id": 19526, + "id": 18417, "properties": { "east": "tall", "north": "tall", @@ -216128,7 +206373,7 @@ } }, { - "id": 19527, + "id": 18418, "properties": { "east": "tall", "north": "tall", @@ -216139,7 +206384,7 @@ } }, { - "id": 19528, + "id": 18419, "properties": { "east": "tall", "north": "tall", @@ -216150,7 +206395,7 @@ } }, { - "id": 19529, + "id": 18420, "properties": { "east": "tall", "north": "tall", @@ -216161,7 +206406,7 @@ } }, { - "id": 19530, + "id": 18421, "properties": { "east": "tall", "north": "tall", @@ -216172,7 +206417,7 @@ } }, { - "id": 19531, + "id": 18422, "properties": { "east": "tall", "north": "tall", @@ -216192,7 +206437,7 @@ "states": [ { "default": true, - "id": 14645 + "id": 13568 } ] }, @@ -216217,7 +206462,7 @@ "states": [ { "default": true, - "id": 13045 + "id": 11968 } ] }, @@ -216239,21 +206484,21 @@ }, "states": [ { - "id": 13260, + "id": 12183, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 13261, + "id": 12184, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 13262, + "id": 12185, "properties": { "type": "bottom", "waterlogged": "true" @@ -216261,21 +206506,21 @@ }, { "default": true, - "id": 13263, + "id": 12186, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 13264, + "id": 12187, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 13265, + "id": 12188, "properties": { "type": "double", "waterlogged": "false" @@ -216316,7 +206561,7 @@ }, "states": [ { - "id": 13048, + "id": 11971, "properties": { "facing": "north", "half": "top", @@ -216325,7 +206570,7 @@ } }, { - "id": 13049, + "id": 11972, "properties": { "facing": "north", "half": "top", @@ -216334,7 +206579,7 @@ } }, { - "id": 13050, + "id": 11973, "properties": { "facing": "north", "half": "top", @@ -216343,7 +206588,7 @@ } }, { - "id": 13051, + "id": 11974, "properties": { "facing": "north", "half": "top", @@ -216352,7 +206597,7 @@ } }, { - "id": 13052, + "id": 11975, "properties": { "facing": "north", "half": "top", @@ -216361,7 +206606,7 @@ } }, { - "id": 13053, + "id": 11976, "properties": { "facing": "north", "half": "top", @@ -216370,7 +206615,7 @@ } }, { - "id": 13054, + "id": 11977, "properties": { "facing": "north", "half": "top", @@ -216379,7 +206624,7 @@ } }, { - "id": 13055, + "id": 11978, "properties": { "facing": "north", "half": "top", @@ -216388,7 +206633,7 @@ } }, { - "id": 13056, + "id": 11979, "properties": { "facing": "north", "half": "top", @@ -216397,7 +206642,7 @@ } }, { - "id": 13057, + "id": 11980, "properties": { "facing": "north", "half": "top", @@ -216406,7 +206651,7 @@ } }, { - "id": 13058, + "id": 11981, "properties": { "facing": "north", "half": "bottom", @@ -216416,7 +206661,7 @@ }, { "default": true, - "id": 13059, + "id": 11982, "properties": { "facing": "north", "half": "bottom", @@ -216425,7 +206670,7 @@ } }, { - "id": 13060, + "id": 11983, "properties": { "facing": "north", "half": "bottom", @@ -216434,7 +206679,7 @@ } }, { - "id": 13061, + "id": 11984, "properties": { "facing": "north", "half": "bottom", @@ -216443,7 +206688,7 @@ } }, { - "id": 13062, + "id": 11985, "properties": { "facing": "north", "half": "bottom", @@ -216452,7 +206697,7 @@ } }, { - "id": 13063, + "id": 11986, "properties": { "facing": "north", "half": "bottom", @@ -216461,7 +206706,7 @@ } }, { - "id": 13064, + "id": 11987, "properties": { "facing": "north", "half": "bottom", @@ -216470,7 +206715,7 @@ } }, { - "id": 13065, + "id": 11988, "properties": { "facing": "north", "half": "bottom", @@ -216479,7 +206724,7 @@ } }, { - "id": 13066, + "id": 11989, "properties": { "facing": "north", "half": "bottom", @@ -216488,7 +206733,7 @@ } }, { - "id": 13067, + "id": 11990, "properties": { "facing": "north", "half": "bottom", @@ -216497,7 +206742,7 @@ } }, { - "id": 13068, + "id": 11991, "properties": { "facing": "south", "half": "top", @@ -216506,7 +206751,7 @@ } }, { - "id": 13069, + "id": 11992, "properties": { "facing": "south", "half": "top", @@ -216515,7 +206760,7 @@ } }, { - "id": 13070, + "id": 11993, "properties": { "facing": "south", "half": "top", @@ -216524,7 +206769,7 @@ } }, { - "id": 13071, + "id": 11994, "properties": { "facing": "south", "half": "top", @@ -216533,7 +206778,7 @@ } }, { - "id": 13072, + "id": 11995, "properties": { "facing": "south", "half": "top", @@ -216542,7 +206787,7 @@ } }, { - "id": 13073, + "id": 11996, "properties": { "facing": "south", "half": "top", @@ -216551,7 +206796,7 @@ } }, { - "id": 13074, + "id": 11997, "properties": { "facing": "south", "half": "top", @@ -216560,7 +206805,7 @@ } }, { - "id": 13075, + "id": 11998, "properties": { "facing": "south", "half": "top", @@ -216569,7 +206814,7 @@ } }, { - "id": 13076, + "id": 11999, "properties": { "facing": "south", "half": "top", @@ -216578,7 +206823,7 @@ } }, { - "id": 13077, + "id": 12000, "properties": { "facing": "south", "half": "top", @@ -216587,7 +206832,7 @@ } }, { - "id": 13078, + "id": 12001, "properties": { "facing": "south", "half": "bottom", @@ -216596,7 +206841,7 @@ } }, { - "id": 13079, + "id": 12002, "properties": { "facing": "south", "half": "bottom", @@ -216605,7 +206850,7 @@ } }, { - "id": 13080, + "id": 12003, "properties": { "facing": "south", "half": "bottom", @@ -216614,7 +206859,7 @@ } }, { - "id": 13081, + "id": 12004, "properties": { "facing": "south", "half": "bottom", @@ -216623,7 +206868,7 @@ } }, { - "id": 13082, + "id": 12005, "properties": { "facing": "south", "half": "bottom", @@ -216632,7 +206877,7 @@ } }, { - "id": 13083, + "id": 12006, "properties": { "facing": "south", "half": "bottom", @@ -216641,7 +206886,7 @@ } }, { - "id": 13084, + "id": 12007, "properties": { "facing": "south", "half": "bottom", @@ -216650,7 +206895,7 @@ } }, { - "id": 13085, + "id": 12008, "properties": { "facing": "south", "half": "bottom", @@ -216659,7 +206904,7 @@ } }, { - "id": 13086, + "id": 12009, "properties": { "facing": "south", "half": "bottom", @@ -216668,7 +206913,7 @@ } }, { - "id": 13087, + "id": 12010, "properties": { "facing": "south", "half": "bottom", @@ -216677,7 +206922,7 @@ } }, { - "id": 13088, + "id": 12011, "properties": { "facing": "west", "half": "top", @@ -216686,7 +206931,7 @@ } }, { - "id": 13089, + "id": 12012, "properties": { "facing": "west", "half": "top", @@ -216695,7 +206940,7 @@ } }, { - "id": 13090, + "id": 12013, "properties": { "facing": "west", "half": "top", @@ -216704,7 +206949,7 @@ } }, { - "id": 13091, + "id": 12014, "properties": { "facing": "west", "half": "top", @@ -216713,7 +206958,7 @@ } }, { - "id": 13092, + "id": 12015, "properties": { "facing": "west", "half": "top", @@ -216722,7 +206967,7 @@ } }, { - "id": 13093, + "id": 12016, "properties": { "facing": "west", "half": "top", @@ -216731,7 +206976,7 @@ } }, { - "id": 13094, + "id": 12017, "properties": { "facing": "west", "half": "top", @@ -216740,7 +206985,7 @@ } }, { - "id": 13095, + "id": 12018, "properties": { "facing": "west", "half": "top", @@ -216749,7 +206994,7 @@ } }, { - "id": 13096, + "id": 12019, "properties": { "facing": "west", "half": "top", @@ -216758,7 +207003,7 @@ } }, { - "id": 13097, + "id": 12020, "properties": { "facing": "west", "half": "top", @@ -216767,7 +207012,7 @@ } }, { - "id": 13098, + "id": 12021, "properties": { "facing": "west", "half": "bottom", @@ -216776,7 +207021,7 @@ } }, { - "id": 13099, + "id": 12022, "properties": { "facing": "west", "half": "bottom", @@ -216785,7 +207030,7 @@ } }, { - "id": 13100, + "id": 12023, "properties": { "facing": "west", "half": "bottom", @@ -216794,7 +207039,7 @@ } }, { - "id": 13101, + "id": 12024, "properties": { "facing": "west", "half": "bottom", @@ -216803,7 +207048,7 @@ } }, { - "id": 13102, + "id": 12025, "properties": { "facing": "west", "half": "bottom", @@ -216812,7 +207057,7 @@ } }, { - "id": 13103, + "id": 12026, "properties": { "facing": "west", "half": "bottom", @@ -216821,7 +207066,7 @@ } }, { - "id": 13104, + "id": 12027, "properties": { "facing": "west", "half": "bottom", @@ -216830,7 +207075,7 @@ } }, { - "id": 13105, + "id": 12028, "properties": { "facing": "west", "half": "bottom", @@ -216839,7 +207084,7 @@ } }, { - "id": 13106, + "id": 12029, "properties": { "facing": "west", "half": "bottom", @@ -216848,7 +207093,7 @@ } }, { - "id": 13107, + "id": 12030, "properties": { "facing": "west", "half": "bottom", @@ -216857,7 +207102,7 @@ } }, { - "id": 13108, + "id": 12031, "properties": { "facing": "east", "half": "top", @@ -216866,7 +207111,7 @@ } }, { - "id": 13109, + "id": 12032, "properties": { "facing": "east", "half": "top", @@ -216875,7 +207120,7 @@ } }, { - "id": 13110, + "id": 12033, "properties": { "facing": "east", "half": "top", @@ -216884,7 +207129,7 @@ } }, { - "id": 13111, + "id": 12034, "properties": { "facing": "east", "half": "top", @@ -216893,7 +207138,7 @@ } }, { - "id": 13112, + "id": 12035, "properties": { "facing": "east", "half": "top", @@ -216902,7 +207147,7 @@ } }, { - "id": 13113, + "id": 12036, "properties": { "facing": "east", "half": "top", @@ -216911,7 +207156,7 @@ } }, { - "id": 13114, + "id": 12037, "properties": { "facing": "east", "half": "top", @@ -216920,7 +207165,7 @@ } }, { - "id": 13115, + "id": 12038, "properties": { "facing": "east", "half": "top", @@ -216929,7 +207174,7 @@ } }, { - "id": 13116, + "id": 12039, "properties": { "facing": "east", "half": "top", @@ -216938,7 +207183,7 @@ } }, { - "id": 13117, + "id": 12040, "properties": { "facing": "east", "half": "top", @@ -216947,7 +207192,7 @@ } }, { - "id": 13118, + "id": 12041, "properties": { "facing": "east", "half": "bottom", @@ -216956,7 +207201,7 @@ } }, { - "id": 13119, + "id": 12042, "properties": { "facing": "east", "half": "bottom", @@ -216965,7 +207210,7 @@ } }, { - "id": 13120, + "id": 12043, "properties": { "facing": "east", "half": "bottom", @@ -216974,7 +207219,7 @@ } }, { - "id": 13121, + "id": 12044, "properties": { "facing": "east", "half": "bottom", @@ -216983,7 +207228,7 @@ } }, { - "id": 13122, + "id": 12045, "properties": { "facing": "east", "half": "bottom", @@ -216992,7 +207237,7 @@ } }, { - "id": 13123, + "id": 12046, "properties": { "facing": "east", "half": "bottom", @@ -217001,7 +207246,7 @@ } }, { - "id": 13124, + "id": 12047, "properties": { "facing": "east", "half": "bottom", @@ -217010,7 +207255,7 @@ } }, { - "id": 13125, + "id": 12048, "properties": { "facing": "east", "half": "bottom", @@ -217019,7 +207264,7 @@ } }, { - "id": 13126, + "id": 12049, "properties": { "facing": "east", "half": "bottom", @@ -217028,7 +207273,7 @@ } }, { - "id": 13127, + "id": 12050, "properties": { "facing": "east", "half": "bottom", @@ -217075,7 +207320,7 @@ }, "states": [ { - "id": 16940, + "id": 15831, "properties": { "east": "none", "north": "none", @@ -217086,7 +207331,7 @@ } }, { - "id": 16941, + "id": 15832, "properties": { "east": "none", "north": "none", @@ -217097,7 +207342,7 @@ } }, { - "id": 16942, + "id": 15833, "properties": { "east": "none", "north": "none", @@ -217109,7 +207354,7 @@ }, { "default": true, - "id": 16943, + "id": 15834, "properties": { "east": "none", "north": "none", @@ -217120,7 +207365,7 @@ } }, { - "id": 16944, + "id": 15835, "properties": { "east": "none", "north": "none", @@ -217131,7 +207376,7 @@ } }, { - "id": 16945, + "id": 15836, "properties": { "east": "none", "north": "none", @@ -217142,7 +207387,7 @@ } }, { - "id": 16946, + "id": 15837, "properties": { "east": "none", "north": "none", @@ -217153,7 +207398,7 @@ } }, { - "id": 16947, + "id": 15838, "properties": { "east": "none", "north": "none", @@ -217164,7 +207409,7 @@ } }, { - "id": 16948, + "id": 15839, "properties": { "east": "none", "north": "none", @@ -217175,7 +207420,7 @@ } }, { - "id": 16949, + "id": 15840, "properties": { "east": "none", "north": "none", @@ -217186,7 +207431,7 @@ } }, { - "id": 16950, + "id": 15841, "properties": { "east": "none", "north": "none", @@ -217197,7 +207442,7 @@ } }, { - "id": 16951, + "id": 15842, "properties": { "east": "none", "north": "none", @@ -217208,7 +207453,7 @@ } }, { - "id": 16952, + "id": 15843, "properties": { "east": "none", "north": "none", @@ -217219,7 +207464,7 @@ } }, { - "id": 16953, + "id": 15844, "properties": { "east": "none", "north": "none", @@ -217230,7 +207475,7 @@ } }, { - "id": 16954, + "id": 15845, "properties": { "east": "none", "north": "none", @@ -217241,7 +207486,7 @@ } }, { - "id": 16955, + "id": 15846, "properties": { "east": "none", "north": "none", @@ -217252,7 +207497,7 @@ } }, { - "id": 16956, + "id": 15847, "properties": { "east": "none", "north": "none", @@ -217263,7 +207508,7 @@ } }, { - "id": 16957, + "id": 15848, "properties": { "east": "none", "north": "none", @@ -217274,7 +207519,7 @@ } }, { - "id": 16958, + "id": 15849, "properties": { "east": "none", "north": "none", @@ -217285,7 +207530,7 @@ } }, { - "id": 16959, + "id": 15850, "properties": { "east": "none", "north": "none", @@ -217296,7 +207541,7 @@ } }, { - "id": 16960, + "id": 15851, "properties": { "east": "none", "north": "none", @@ -217307,7 +207552,7 @@ } }, { - "id": 16961, + "id": 15852, "properties": { "east": "none", "north": "none", @@ -217318,7 +207563,7 @@ } }, { - "id": 16962, + "id": 15853, "properties": { "east": "none", "north": "none", @@ -217329,7 +207574,7 @@ } }, { - "id": 16963, + "id": 15854, "properties": { "east": "none", "north": "none", @@ -217340,7 +207585,7 @@ } }, { - "id": 16964, + "id": 15855, "properties": { "east": "none", "north": "none", @@ -217351,7 +207596,7 @@ } }, { - "id": 16965, + "id": 15856, "properties": { "east": "none", "north": "none", @@ -217362,7 +207607,7 @@ } }, { - "id": 16966, + "id": 15857, "properties": { "east": "none", "north": "none", @@ -217373,7 +207618,7 @@ } }, { - "id": 16967, + "id": 15858, "properties": { "east": "none", "north": "none", @@ -217384,7 +207629,7 @@ } }, { - "id": 16968, + "id": 15859, "properties": { "east": "none", "north": "none", @@ -217395,7 +207640,7 @@ } }, { - "id": 16969, + "id": 15860, "properties": { "east": "none", "north": "none", @@ -217406,7 +207651,7 @@ } }, { - "id": 16970, + "id": 15861, "properties": { "east": "none", "north": "none", @@ -217417,7 +207662,7 @@ } }, { - "id": 16971, + "id": 15862, "properties": { "east": "none", "north": "none", @@ -217428,7 +207673,7 @@ } }, { - "id": 16972, + "id": 15863, "properties": { "east": "none", "north": "none", @@ -217439,7 +207684,7 @@ } }, { - "id": 16973, + "id": 15864, "properties": { "east": "none", "north": "none", @@ -217450,7 +207695,7 @@ } }, { - "id": 16974, + "id": 15865, "properties": { "east": "none", "north": "none", @@ -217461,7 +207706,7 @@ } }, { - "id": 16975, + "id": 15866, "properties": { "east": "none", "north": "none", @@ -217472,7 +207717,7 @@ } }, { - "id": 16976, + "id": 15867, "properties": { "east": "none", "north": "low", @@ -217483,7 +207728,7 @@ } }, { - "id": 16977, + "id": 15868, "properties": { "east": "none", "north": "low", @@ -217494,7 +207739,7 @@ } }, { - "id": 16978, + "id": 15869, "properties": { "east": "none", "north": "low", @@ -217505,7 +207750,7 @@ } }, { - "id": 16979, + "id": 15870, "properties": { "east": "none", "north": "low", @@ -217516,7 +207761,7 @@ } }, { - "id": 16980, + "id": 15871, "properties": { "east": "none", "north": "low", @@ -217527,7 +207772,7 @@ } }, { - "id": 16981, + "id": 15872, "properties": { "east": "none", "north": "low", @@ -217538,7 +207783,7 @@ } }, { - "id": 16982, + "id": 15873, "properties": { "east": "none", "north": "low", @@ -217549,7 +207794,7 @@ } }, { - "id": 16983, + "id": 15874, "properties": { "east": "none", "north": "low", @@ -217560,7 +207805,7 @@ } }, { - "id": 16984, + "id": 15875, "properties": { "east": "none", "north": "low", @@ -217571,7 +207816,7 @@ } }, { - "id": 16985, + "id": 15876, "properties": { "east": "none", "north": "low", @@ -217582,7 +207827,7 @@ } }, { - "id": 16986, + "id": 15877, "properties": { "east": "none", "north": "low", @@ -217593,7 +207838,7 @@ } }, { - "id": 16987, + "id": 15878, "properties": { "east": "none", "north": "low", @@ -217604,7 +207849,7 @@ } }, { - "id": 16988, + "id": 15879, "properties": { "east": "none", "north": "low", @@ -217615,7 +207860,7 @@ } }, { - "id": 16989, + "id": 15880, "properties": { "east": "none", "north": "low", @@ -217626,7 +207871,7 @@ } }, { - "id": 16990, + "id": 15881, "properties": { "east": "none", "north": "low", @@ -217637,7 +207882,7 @@ } }, { - "id": 16991, + "id": 15882, "properties": { "east": "none", "north": "low", @@ -217648,7 +207893,7 @@ } }, { - "id": 16992, + "id": 15883, "properties": { "east": "none", "north": "low", @@ -217659,7 +207904,7 @@ } }, { - "id": 16993, + "id": 15884, "properties": { "east": "none", "north": "low", @@ -217670,7 +207915,7 @@ } }, { - "id": 16994, + "id": 15885, "properties": { "east": "none", "north": "low", @@ -217681,7 +207926,7 @@ } }, { - "id": 16995, + "id": 15886, "properties": { "east": "none", "north": "low", @@ -217692,7 +207937,7 @@ } }, { - "id": 16996, + "id": 15887, "properties": { "east": "none", "north": "low", @@ -217703,7 +207948,7 @@ } }, { - "id": 16997, + "id": 15888, "properties": { "east": "none", "north": "low", @@ -217714,7 +207959,7 @@ } }, { - "id": 16998, + "id": 15889, "properties": { "east": "none", "north": "low", @@ -217725,7 +207970,7 @@ } }, { - "id": 16999, + "id": 15890, "properties": { "east": "none", "north": "low", @@ -217736,7 +207981,7 @@ } }, { - "id": 17000, + "id": 15891, "properties": { "east": "none", "north": "low", @@ -217747,7 +207992,7 @@ } }, { - "id": 17001, + "id": 15892, "properties": { "east": "none", "north": "low", @@ -217758,7 +208003,7 @@ } }, { - "id": 17002, + "id": 15893, "properties": { "east": "none", "north": "low", @@ -217769,7 +208014,7 @@ } }, { - "id": 17003, + "id": 15894, "properties": { "east": "none", "north": "low", @@ -217780,7 +208025,7 @@ } }, { - "id": 17004, + "id": 15895, "properties": { "east": "none", "north": "low", @@ -217791,7 +208036,7 @@ } }, { - "id": 17005, + "id": 15896, "properties": { "east": "none", "north": "low", @@ -217802,7 +208047,7 @@ } }, { - "id": 17006, + "id": 15897, "properties": { "east": "none", "north": "low", @@ -217813,7 +208058,7 @@ } }, { - "id": 17007, + "id": 15898, "properties": { "east": "none", "north": "low", @@ -217824,7 +208069,7 @@ } }, { - "id": 17008, + "id": 15899, "properties": { "east": "none", "north": "low", @@ -217835,7 +208080,7 @@ } }, { - "id": 17009, + "id": 15900, "properties": { "east": "none", "north": "low", @@ -217846,7 +208091,7 @@ } }, { - "id": 17010, + "id": 15901, "properties": { "east": "none", "north": "low", @@ -217857,7 +208102,7 @@ } }, { - "id": 17011, + "id": 15902, "properties": { "east": "none", "north": "low", @@ -217868,7 +208113,7 @@ } }, { - "id": 17012, + "id": 15903, "properties": { "east": "none", "north": "tall", @@ -217879,7 +208124,7 @@ } }, { - "id": 17013, + "id": 15904, "properties": { "east": "none", "north": "tall", @@ -217890,7 +208135,7 @@ } }, { - "id": 17014, + "id": 15905, "properties": { "east": "none", "north": "tall", @@ -217901,7 +208146,7 @@ } }, { - "id": 17015, + "id": 15906, "properties": { "east": "none", "north": "tall", @@ -217912,7 +208157,7 @@ } }, { - "id": 17016, + "id": 15907, "properties": { "east": "none", "north": "tall", @@ -217923,7 +208168,7 @@ } }, { - "id": 17017, + "id": 15908, "properties": { "east": "none", "north": "tall", @@ -217934,7 +208179,7 @@ } }, { - "id": 17018, + "id": 15909, "properties": { "east": "none", "north": "tall", @@ -217945,7 +208190,7 @@ } }, { - "id": 17019, + "id": 15910, "properties": { "east": "none", "north": "tall", @@ -217956,7 +208201,7 @@ } }, { - "id": 17020, + "id": 15911, "properties": { "east": "none", "north": "tall", @@ -217967,7 +208212,7 @@ } }, { - "id": 17021, + "id": 15912, "properties": { "east": "none", "north": "tall", @@ -217978,7 +208223,7 @@ } }, { - "id": 17022, + "id": 15913, "properties": { "east": "none", "north": "tall", @@ -217989,7 +208234,7 @@ } }, { - "id": 17023, + "id": 15914, "properties": { "east": "none", "north": "tall", @@ -218000,7 +208245,7 @@ } }, { - "id": 17024, + "id": 15915, "properties": { "east": "none", "north": "tall", @@ -218011,7 +208256,7 @@ } }, { - "id": 17025, + "id": 15916, "properties": { "east": "none", "north": "tall", @@ -218022,7 +208267,7 @@ } }, { - "id": 17026, + "id": 15917, "properties": { "east": "none", "north": "tall", @@ -218033,7 +208278,7 @@ } }, { - "id": 17027, + "id": 15918, "properties": { "east": "none", "north": "tall", @@ -218044,7 +208289,7 @@ } }, { - "id": 17028, + "id": 15919, "properties": { "east": "none", "north": "tall", @@ -218055,7 +208300,7 @@ } }, { - "id": 17029, + "id": 15920, "properties": { "east": "none", "north": "tall", @@ -218066,7 +208311,7 @@ } }, { - "id": 17030, + "id": 15921, "properties": { "east": "none", "north": "tall", @@ -218077,7 +208322,7 @@ } }, { - "id": 17031, + "id": 15922, "properties": { "east": "none", "north": "tall", @@ -218088,7 +208333,7 @@ } }, { - "id": 17032, + "id": 15923, "properties": { "east": "none", "north": "tall", @@ -218099,7 +208344,7 @@ } }, { - "id": 17033, + "id": 15924, "properties": { "east": "none", "north": "tall", @@ -218110,7 +208355,7 @@ } }, { - "id": 17034, + "id": 15925, "properties": { "east": "none", "north": "tall", @@ -218121,7 +208366,7 @@ } }, { - "id": 17035, + "id": 15926, "properties": { "east": "none", "north": "tall", @@ -218132,7 +208377,7 @@ } }, { - "id": 17036, + "id": 15927, "properties": { "east": "none", "north": "tall", @@ -218143,7 +208388,7 @@ } }, { - "id": 17037, + "id": 15928, "properties": { "east": "none", "north": "tall", @@ -218154,7 +208399,7 @@ } }, { - "id": 17038, + "id": 15929, "properties": { "east": "none", "north": "tall", @@ -218165,7 +208410,7 @@ } }, { - "id": 17039, + "id": 15930, "properties": { "east": "none", "north": "tall", @@ -218176,7 +208421,7 @@ } }, { - "id": 17040, + "id": 15931, "properties": { "east": "none", "north": "tall", @@ -218187,7 +208432,7 @@ } }, { - "id": 17041, + "id": 15932, "properties": { "east": "none", "north": "tall", @@ -218198,7 +208443,7 @@ } }, { - "id": 17042, + "id": 15933, "properties": { "east": "none", "north": "tall", @@ -218209,7 +208454,7 @@ } }, { - "id": 17043, + "id": 15934, "properties": { "east": "none", "north": "tall", @@ -218220,7 +208465,7 @@ } }, { - "id": 17044, + "id": 15935, "properties": { "east": "none", "north": "tall", @@ -218231,7 +208476,7 @@ } }, { - "id": 17045, + "id": 15936, "properties": { "east": "none", "north": "tall", @@ -218242,7 +208487,7 @@ } }, { - "id": 17046, + "id": 15937, "properties": { "east": "none", "north": "tall", @@ -218253,7 +208498,7 @@ } }, { - "id": 17047, + "id": 15938, "properties": { "east": "none", "north": "tall", @@ -218264,7 +208509,7 @@ } }, { - "id": 17048, + "id": 15939, "properties": { "east": "low", "north": "none", @@ -218275,7 +208520,7 @@ } }, { - "id": 17049, + "id": 15940, "properties": { "east": "low", "north": "none", @@ -218286,7 +208531,7 @@ } }, { - "id": 17050, + "id": 15941, "properties": { "east": "low", "north": "none", @@ -218297,7 +208542,7 @@ } }, { - "id": 17051, + "id": 15942, "properties": { "east": "low", "north": "none", @@ -218308,7 +208553,7 @@ } }, { - "id": 17052, + "id": 15943, "properties": { "east": "low", "north": "none", @@ -218319,7 +208564,7 @@ } }, { - "id": 17053, + "id": 15944, "properties": { "east": "low", "north": "none", @@ -218330,7 +208575,7 @@ } }, { - "id": 17054, + "id": 15945, "properties": { "east": "low", "north": "none", @@ -218341,7 +208586,7 @@ } }, { - "id": 17055, + "id": 15946, "properties": { "east": "low", "north": "none", @@ -218352,7 +208597,7 @@ } }, { - "id": 17056, + "id": 15947, "properties": { "east": "low", "north": "none", @@ -218363,7 +208608,7 @@ } }, { - "id": 17057, + "id": 15948, "properties": { "east": "low", "north": "none", @@ -218374,7 +208619,7 @@ } }, { - "id": 17058, + "id": 15949, "properties": { "east": "low", "north": "none", @@ -218385,7 +208630,7 @@ } }, { - "id": 17059, + "id": 15950, "properties": { "east": "low", "north": "none", @@ -218396,7 +208641,7 @@ } }, { - "id": 17060, + "id": 15951, "properties": { "east": "low", "north": "none", @@ -218407,7 +208652,7 @@ } }, { - "id": 17061, + "id": 15952, "properties": { "east": "low", "north": "none", @@ -218418,7 +208663,7 @@ } }, { - "id": 17062, + "id": 15953, "properties": { "east": "low", "north": "none", @@ -218429,7 +208674,7 @@ } }, { - "id": 17063, + "id": 15954, "properties": { "east": "low", "north": "none", @@ -218440,7 +208685,7 @@ } }, { - "id": 17064, + "id": 15955, "properties": { "east": "low", "north": "none", @@ -218451,7 +208696,7 @@ } }, { - "id": 17065, + "id": 15956, "properties": { "east": "low", "north": "none", @@ -218462,7 +208707,7 @@ } }, { - "id": 17066, + "id": 15957, "properties": { "east": "low", "north": "none", @@ -218473,7 +208718,7 @@ } }, { - "id": 17067, + "id": 15958, "properties": { "east": "low", "north": "none", @@ -218484,7 +208729,7 @@ } }, { - "id": 17068, + "id": 15959, "properties": { "east": "low", "north": "none", @@ -218495,7 +208740,7 @@ } }, { - "id": 17069, + "id": 15960, "properties": { "east": "low", "north": "none", @@ -218506,7 +208751,7 @@ } }, { - "id": 17070, + "id": 15961, "properties": { "east": "low", "north": "none", @@ -218517,7 +208762,7 @@ } }, { - "id": 17071, + "id": 15962, "properties": { "east": "low", "north": "none", @@ -218528,7 +208773,7 @@ } }, { - "id": 17072, + "id": 15963, "properties": { "east": "low", "north": "none", @@ -218539,7 +208784,7 @@ } }, { - "id": 17073, + "id": 15964, "properties": { "east": "low", "north": "none", @@ -218550,7 +208795,7 @@ } }, { - "id": 17074, + "id": 15965, "properties": { "east": "low", "north": "none", @@ -218561,7 +208806,7 @@ } }, { - "id": 17075, + "id": 15966, "properties": { "east": "low", "north": "none", @@ -218572,7 +208817,7 @@ } }, { - "id": 17076, + "id": 15967, "properties": { "east": "low", "north": "none", @@ -218583,7 +208828,7 @@ } }, { - "id": 17077, + "id": 15968, "properties": { "east": "low", "north": "none", @@ -218594,7 +208839,7 @@ } }, { - "id": 17078, + "id": 15969, "properties": { "east": "low", "north": "none", @@ -218605,7 +208850,7 @@ } }, { - "id": 17079, + "id": 15970, "properties": { "east": "low", "north": "none", @@ -218616,7 +208861,7 @@ } }, { - "id": 17080, + "id": 15971, "properties": { "east": "low", "north": "none", @@ -218627,7 +208872,7 @@ } }, { - "id": 17081, + "id": 15972, "properties": { "east": "low", "north": "none", @@ -218638,7 +208883,7 @@ } }, { - "id": 17082, + "id": 15973, "properties": { "east": "low", "north": "none", @@ -218649,7 +208894,7 @@ } }, { - "id": 17083, + "id": 15974, "properties": { "east": "low", "north": "none", @@ -218660,7 +208905,7 @@ } }, { - "id": 17084, + "id": 15975, "properties": { "east": "low", "north": "low", @@ -218671,7 +208916,7 @@ } }, { - "id": 17085, + "id": 15976, "properties": { "east": "low", "north": "low", @@ -218682,7 +208927,7 @@ } }, { - "id": 17086, + "id": 15977, "properties": { "east": "low", "north": "low", @@ -218693,7 +208938,7 @@ } }, { - "id": 17087, + "id": 15978, "properties": { "east": "low", "north": "low", @@ -218704,7 +208949,7 @@ } }, { - "id": 17088, + "id": 15979, "properties": { "east": "low", "north": "low", @@ -218715,7 +208960,7 @@ } }, { - "id": 17089, + "id": 15980, "properties": { "east": "low", "north": "low", @@ -218726,7 +208971,7 @@ } }, { - "id": 17090, + "id": 15981, "properties": { "east": "low", "north": "low", @@ -218737,7 +208982,7 @@ } }, { - "id": 17091, + "id": 15982, "properties": { "east": "low", "north": "low", @@ -218748,7 +208993,7 @@ } }, { - "id": 17092, + "id": 15983, "properties": { "east": "low", "north": "low", @@ -218759,7 +209004,7 @@ } }, { - "id": 17093, + "id": 15984, "properties": { "east": "low", "north": "low", @@ -218770,7 +209015,7 @@ } }, { - "id": 17094, + "id": 15985, "properties": { "east": "low", "north": "low", @@ -218781,7 +209026,7 @@ } }, { - "id": 17095, + "id": 15986, "properties": { "east": "low", "north": "low", @@ -218792,7 +209037,7 @@ } }, { - "id": 17096, + "id": 15987, "properties": { "east": "low", "north": "low", @@ -218803,7 +209048,7 @@ } }, { - "id": 17097, + "id": 15988, "properties": { "east": "low", "north": "low", @@ -218814,7 +209059,7 @@ } }, { - "id": 17098, + "id": 15989, "properties": { "east": "low", "north": "low", @@ -218825,7 +209070,7 @@ } }, { - "id": 17099, + "id": 15990, "properties": { "east": "low", "north": "low", @@ -218836,7 +209081,7 @@ } }, { - "id": 17100, + "id": 15991, "properties": { "east": "low", "north": "low", @@ -218847,7 +209092,7 @@ } }, { - "id": 17101, + "id": 15992, "properties": { "east": "low", "north": "low", @@ -218858,7 +209103,7 @@ } }, { - "id": 17102, + "id": 15993, "properties": { "east": "low", "north": "low", @@ -218869,7 +209114,7 @@ } }, { - "id": 17103, + "id": 15994, "properties": { "east": "low", "north": "low", @@ -218880,7 +209125,7 @@ } }, { - "id": 17104, + "id": 15995, "properties": { "east": "low", "north": "low", @@ -218891,7 +209136,7 @@ } }, { - "id": 17105, + "id": 15996, "properties": { "east": "low", "north": "low", @@ -218902,7 +209147,7 @@ } }, { - "id": 17106, + "id": 15997, "properties": { "east": "low", "north": "low", @@ -218913,7 +209158,7 @@ } }, { - "id": 17107, + "id": 15998, "properties": { "east": "low", "north": "low", @@ -218924,7 +209169,7 @@ } }, { - "id": 17108, + "id": 15999, "properties": { "east": "low", "north": "low", @@ -218935,7 +209180,7 @@ } }, { - "id": 17109, + "id": 16000, "properties": { "east": "low", "north": "low", @@ -218946,7 +209191,7 @@ } }, { - "id": 17110, + "id": 16001, "properties": { "east": "low", "north": "low", @@ -218957,7 +209202,7 @@ } }, { - "id": 17111, + "id": 16002, "properties": { "east": "low", "north": "low", @@ -218968,7 +209213,7 @@ } }, { - "id": 17112, + "id": 16003, "properties": { "east": "low", "north": "low", @@ -218979,7 +209224,7 @@ } }, { - "id": 17113, + "id": 16004, "properties": { "east": "low", "north": "low", @@ -218990,7 +209235,7 @@ } }, { - "id": 17114, + "id": 16005, "properties": { "east": "low", "north": "low", @@ -219001,7 +209246,7 @@ } }, { - "id": 17115, + "id": 16006, "properties": { "east": "low", "north": "low", @@ -219012,7 +209257,7 @@ } }, { - "id": 17116, + "id": 16007, "properties": { "east": "low", "north": "low", @@ -219023,7 +209268,7 @@ } }, { - "id": 17117, + "id": 16008, "properties": { "east": "low", "north": "low", @@ -219034,7 +209279,7 @@ } }, { - "id": 17118, + "id": 16009, "properties": { "east": "low", "north": "low", @@ -219045,7 +209290,7 @@ } }, { - "id": 17119, + "id": 16010, "properties": { "east": "low", "north": "low", @@ -219056,7 +209301,7 @@ } }, { - "id": 17120, + "id": 16011, "properties": { "east": "low", "north": "tall", @@ -219067,7 +209312,7 @@ } }, { - "id": 17121, + "id": 16012, "properties": { "east": "low", "north": "tall", @@ -219078,7 +209323,7 @@ } }, { - "id": 17122, + "id": 16013, "properties": { "east": "low", "north": "tall", @@ -219089,7 +209334,7 @@ } }, { - "id": 17123, + "id": 16014, "properties": { "east": "low", "north": "tall", @@ -219100,7 +209345,7 @@ } }, { - "id": 17124, + "id": 16015, "properties": { "east": "low", "north": "tall", @@ -219111,7 +209356,7 @@ } }, { - "id": 17125, + "id": 16016, "properties": { "east": "low", "north": "tall", @@ -219122,7 +209367,7 @@ } }, { - "id": 17126, + "id": 16017, "properties": { "east": "low", "north": "tall", @@ -219133,7 +209378,7 @@ } }, { - "id": 17127, + "id": 16018, "properties": { "east": "low", "north": "tall", @@ -219144,7 +209389,7 @@ } }, { - "id": 17128, + "id": 16019, "properties": { "east": "low", "north": "tall", @@ -219155,7 +209400,7 @@ } }, { - "id": 17129, + "id": 16020, "properties": { "east": "low", "north": "tall", @@ -219166,7 +209411,7 @@ } }, { - "id": 17130, + "id": 16021, "properties": { "east": "low", "north": "tall", @@ -219177,7 +209422,7 @@ } }, { - "id": 17131, + "id": 16022, "properties": { "east": "low", "north": "tall", @@ -219188,7 +209433,7 @@ } }, { - "id": 17132, + "id": 16023, "properties": { "east": "low", "north": "tall", @@ -219199,7 +209444,7 @@ } }, { - "id": 17133, + "id": 16024, "properties": { "east": "low", "north": "tall", @@ -219210,7 +209455,7 @@ } }, { - "id": 17134, + "id": 16025, "properties": { "east": "low", "north": "tall", @@ -219221,7 +209466,7 @@ } }, { - "id": 17135, + "id": 16026, "properties": { "east": "low", "north": "tall", @@ -219232,7 +209477,7 @@ } }, { - "id": 17136, + "id": 16027, "properties": { "east": "low", "north": "tall", @@ -219243,7 +209488,7 @@ } }, { - "id": 17137, + "id": 16028, "properties": { "east": "low", "north": "tall", @@ -219254,7 +209499,7 @@ } }, { - "id": 17138, + "id": 16029, "properties": { "east": "low", "north": "tall", @@ -219265,7 +209510,7 @@ } }, { - "id": 17139, + "id": 16030, "properties": { "east": "low", "north": "tall", @@ -219276,7 +209521,7 @@ } }, { - "id": 17140, + "id": 16031, "properties": { "east": "low", "north": "tall", @@ -219287,7 +209532,7 @@ } }, { - "id": 17141, + "id": 16032, "properties": { "east": "low", "north": "tall", @@ -219298,7 +209543,7 @@ } }, { - "id": 17142, + "id": 16033, "properties": { "east": "low", "north": "tall", @@ -219309,7 +209554,7 @@ } }, { - "id": 17143, + "id": 16034, "properties": { "east": "low", "north": "tall", @@ -219320,7 +209565,7 @@ } }, { - "id": 17144, + "id": 16035, "properties": { "east": "low", "north": "tall", @@ -219331,7 +209576,7 @@ } }, { - "id": 17145, + "id": 16036, "properties": { "east": "low", "north": "tall", @@ -219342,7 +209587,7 @@ } }, { - "id": 17146, + "id": 16037, "properties": { "east": "low", "north": "tall", @@ -219353,7 +209598,7 @@ } }, { - "id": 17147, + "id": 16038, "properties": { "east": "low", "north": "tall", @@ -219364,7 +209609,7 @@ } }, { - "id": 17148, + "id": 16039, "properties": { "east": "low", "north": "tall", @@ -219375,7 +209620,7 @@ } }, { - "id": 17149, + "id": 16040, "properties": { "east": "low", "north": "tall", @@ -219386,7 +209631,7 @@ } }, { - "id": 17150, + "id": 16041, "properties": { "east": "low", "north": "tall", @@ -219397,7 +209642,7 @@ } }, { - "id": 17151, + "id": 16042, "properties": { "east": "low", "north": "tall", @@ -219408,7 +209653,7 @@ } }, { - "id": 17152, + "id": 16043, "properties": { "east": "low", "north": "tall", @@ -219419,7 +209664,7 @@ } }, { - "id": 17153, + "id": 16044, "properties": { "east": "low", "north": "tall", @@ -219430,7 +209675,7 @@ } }, { - "id": 17154, + "id": 16045, "properties": { "east": "low", "north": "tall", @@ -219441,7 +209686,7 @@ } }, { - "id": 17155, + "id": 16046, "properties": { "east": "low", "north": "tall", @@ -219452,7 +209697,7 @@ } }, { - "id": 17156, + "id": 16047, "properties": { "east": "tall", "north": "none", @@ -219463,7 +209708,7 @@ } }, { - "id": 17157, + "id": 16048, "properties": { "east": "tall", "north": "none", @@ -219474,7 +209719,7 @@ } }, { - "id": 17158, + "id": 16049, "properties": { "east": "tall", "north": "none", @@ -219485,7 +209730,7 @@ } }, { - "id": 17159, + "id": 16050, "properties": { "east": "tall", "north": "none", @@ -219496,7 +209741,7 @@ } }, { - "id": 17160, + "id": 16051, "properties": { "east": "tall", "north": "none", @@ -219507,7 +209752,7 @@ } }, { - "id": 17161, + "id": 16052, "properties": { "east": "tall", "north": "none", @@ -219518,7 +209763,7 @@ } }, { - "id": 17162, + "id": 16053, "properties": { "east": "tall", "north": "none", @@ -219529,7 +209774,7 @@ } }, { - "id": 17163, + "id": 16054, "properties": { "east": "tall", "north": "none", @@ -219540,7 +209785,7 @@ } }, { - "id": 17164, + "id": 16055, "properties": { "east": "tall", "north": "none", @@ -219551,7 +209796,7 @@ } }, { - "id": 17165, + "id": 16056, "properties": { "east": "tall", "north": "none", @@ -219562,7 +209807,7 @@ } }, { - "id": 17166, + "id": 16057, "properties": { "east": "tall", "north": "none", @@ -219573,7 +209818,7 @@ } }, { - "id": 17167, + "id": 16058, "properties": { "east": "tall", "north": "none", @@ -219584,7 +209829,7 @@ } }, { - "id": 17168, + "id": 16059, "properties": { "east": "tall", "north": "none", @@ -219595,7 +209840,7 @@ } }, { - "id": 17169, + "id": 16060, "properties": { "east": "tall", "north": "none", @@ -219606,7 +209851,7 @@ } }, { - "id": 17170, + "id": 16061, "properties": { "east": "tall", "north": "none", @@ -219617,7 +209862,7 @@ } }, { - "id": 17171, + "id": 16062, "properties": { "east": "tall", "north": "none", @@ -219628,7 +209873,7 @@ } }, { - "id": 17172, + "id": 16063, "properties": { "east": "tall", "north": "none", @@ -219639,7 +209884,7 @@ } }, { - "id": 17173, + "id": 16064, "properties": { "east": "tall", "north": "none", @@ -219650,7 +209895,7 @@ } }, { - "id": 17174, + "id": 16065, "properties": { "east": "tall", "north": "none", @@ -219661,7 +209906,7 @@ } }, { - "id": 17175, + "id": 16066, "properties": { "east": "tall", "north": "none", @@ -219672,7 +209917,7 @@ } }, { - "id": 17176, + "id": 16067, "properties": { "east": "tall", "north": "none", @@ -219683,7 +209928,7 @@ } }, { - "id": 17177, + "id": 16068, "properties": { "east": "tall", "north": "none", @@ -219694,7 +209939,7 @@ } }, { - "id": 17178, + "id": 16069, "properties": { "east": "tall", "north": "none", @@ -219705,7 +209950,7 @@ } }, { - "id": 17179, + "id": 16070, "properties": { "east": "tall", "north": "none", @@ -219716,7 +209961,7 @@ } }, { - "id": 17180, + "id": 16071, "properties": { "east": "tall", "north": "none", @@ -219727,7 +209972,7 @@ } }, { - "id": 17181, + "id": 16072, "properties": { "east": "tall", "north": "none", @@ -219738,7 +209983,7 @@ } }, { - "id": 17182, + "id": 16073, "properties": { "east": "tall", "north": "none", @@ -219749,7 +209994,7 @@ } }, { - "id": 17183, + "id": 16074, "properties": { "east": "tall", "north": "none", @@ -219760,7 +210005,7 @@ } }, { - "id": 17184, + "id": 16075, "properties": { "east": "tall", "north": "none", @@ -219771,7 +210016,7 @@ } }, { - "id": 17185, + "id": 16076, "properties": { "east": "tall", "north": "none", @@ -219782,7 +210027,7 @@ } }, { - "id": 17186, + "id": 16077, "properties": { "east": "tall", "north": "none", @@ -219793,7 +210038,7 @@ } }, { - "id": 17187, + "id": 16078, "properties": { "east": "tall", "north": "none", @@ -219804,7 +210049,7 @@ } }, { - "id": 17188, + "id": 16079, "properties": { "east": "tall", "north": "none", @@ -219815,7 +210060,7 @@ } }, { - "id": 17189, + "id": 16080, "properties": { "east": "tall", "north": "none", @@ -219826,7 +210071,7 @@ } }, { - "id": 17190, + "id": 16081, "properties": { "east": "tall", "north": "none", @@ -219837,7 +210082,7 @@ } }, { - "id": 17191, + "id": 16082, "properties": { "east": "tall", "north": "none", @@ -219848,7 +210093,7 @@ } }, { - "id": 17192, + "id": 16083, "properties": { "east": "tall", "north": "low", @@ -219859,7 +210104,7 @@ } }, { - "id": 17193, + "id": 16084, "properties": { "east": "tall", "north": "low", @@ -219870,7 +210115,7 @@ } }, { - "id": 17194, + "id": 16085, "properties": { "east": "tall", "north": "low", @@ -219881,7 +210126,7 @@ } }, { - "id": 17195, + "id": 16086, "properties": { "east": "tall", "north": "low", @@ -219892,7 +210137,7 @@ } }, { - "id": 17196, + "id": 16087, "properties": { "east": "tall", "north": "low", @@ -219903,7 +210148,7 @@ } }, { - "id": 17197, + "id": 16088, "properties": { "east": "tall", "north": "low", @@ -219914,7 +210159,7 @@ } }, { - "id": 17198, + "id": 16089, "properties": { "east": "tall", "north": "low", @@ -219925,7 +210170,7 @@ } }, { - "id": 17199, + "id": 16090, "properties": { "east": "tall", "north": "low", @@ -219936,7 +210181,7 @@ } }, { - "id": 17200, + "id": 16091, "properties": { "east": "tall", "north": "low", @@ -219947,7 +210192,7 @@ } }, { - "id": 17201, + "id": 16092, "properties": { "east": "tall", "north": "low", @@ -219958,7 +210203,7 @@ } }, { - "id": 17202, + "id": 16093, "properties": { "east": "tall", "north": "low", @@ -219969,7 +210214,7 @@ } }, { - "id": 17203, + "id": 16094, "properties": { "east": "tall", "north": "low", @@ -219980,7 +210225,7 @@ } }, { - "id": 17204, + "id": 16095, "properties": { "east": "tall", "north": "low", @@ -219991,7 +210236,7 @@ } }, { - "id": 17205, + "id": 16096, "properties": { "east": "tall", "north": "low", @@ -220002,7 +210247,7 @@ } }, { - "id": 17206, + "id": 16097, "properties": { "east": "tall", "north": "low", @@ -220013,7 +210258,7 @@ } }, { - "id": 17207, + "id": 16098, "properties": { "east": "tall", "north": "low", @@ -220024,7 +210269,7 @@ } }, { - "id": 17208, + "id": 16099, "properties": { "east": "tall", "north": "low", @@ -220035,7 +210280,7 @@ } }, { - "id": 17209, + "id": 16100, "properties": { "east": "tall", "north": "low", @@ -220046,7 +210291,7 @@ } }, { - "id": 17210, + "id": 16101, "properties": { "east": "tall", "north": "low", @@ -220057,7 +210302,7 @@ } }, { - "id": 17211, + "id": 16102, "properties": { "east": "tall", "north": "low", @@ -220068,7 +210313,7 @@ } }, { - "id": 17212, + "id": 16103, "properties": { "east": "tall", "north": "low", @@ -220079,7 +210324,7 @@ } }, { - "id": 17213, + "id": 16104, "properties": { "east": "tall", "north": "low", @@ -220090,7 +210335,7 @@ } }, { - "id": 17214, + "id": 16105, "properties": { "east": "tall", "north": "low", @@ -220101,7 +210346,7 @@ } }, { - "id": 17215, + "id": 16106, "properties": { "east": "tall", "north": "low", @@ -220112,7 +210357,7 @@ } }, { - "id": 17216, + "id": 16107, "properties": { "east": "tall", "north": "low", @@ -220123,7 +210368,7 @@ } }, { - "id": 17217, + "id": 16108, "properties": { "east": "tall", "north": "low", @@ -220134,7 +210379,7 @@ } }, { - "id": 17218, + "id": 16109, "properties": { "east": "tall", "north": "low", @@ -220145,7 +210390,7 @@ } }, { - "id": 17219, + "id": 16110, "properties": { "east": "tall", "north": "low", @@ -220156,7 +210401,7 @@ } }, { - "id": 17220, + "id": 16111, "properties": { "east": "tall", "north": "low", @@ -220167,7 +210412,7 @@ } }, { - "id": 17221, + "id": 16112, "properties": { "east": "tall", "north": "low", @@ -220178,7 +210423,7 @@ } }, { - "id": 17222, + "id": 16113, "properties": { "east": "tall", "north": "low", @@ -220189,7 +210434,7 @@ } }, { - "id": 17223, + "id": 16114, "properties": { "east": "tall", "north": "low", @@ -220200,7 +210445,7 @@ } }, { - "id": 17224, + "id": 16115, "properties": { "east": "tall", "north": "low", @@ -220211,7 +210456,7 @@ } }, { - "id": 17225, + "id": 16116, "properties": { "east": "tall", "north": "low", @@ -220222,7 +210467,7 @@ } }, { - "id": 17226, + "id": 16117, "properties": { "east": "tall", "north": "low", @@ -220233,7 +210478,7 @@ } }, { - "id": 17227, + "id": 16118, "properties": { "east": "tall", "north": "low", @@ -220244,7 +210489,7 @@ } }, { - "id": 17228, + "id": 16119, "properties": { "east": "tall", "north": "tall", @@ -220255,7 +210500,7 @@ } }, { - "id": 17229, + "id": 16120, "properties": { "east": "tall", "north": "tall", @@ -220266,7 +210511,7 @@ } }, { - "id": 17230, + "id": 16121, "properties": { "east": "tall", "north": "tall", @@ -220277,7 +210522,7 @@ } }, { - "id": 17231, + "id": 16122, "properties": { "east": "tall", "north": "tall", @@ -220288,7 +210533,7 @@ } }, { - "id": 17232, + "id": 16123, "properties": { "east": "tall", "north": "tall", @@ -220299,7 +210544,7 @@ } }, { - "id": 17233, + "id": 16124, "properties": { "east": "tall", "north": "tall", @@ -220310,7 +210555,7 @@ } }, { - "id": 17234, + "id": 16125, "properties": { "east": "tall", "north": "tall", @@ -220321,7 +210566,7 @@ } }, { - "id": 17235, + "id": 16126, "properties": { "east": "tall", "north": "tall", @@ -220332,7 +210577,7 @@ } }, { - "id": 17236, + "id": 16127, "properties": { "east": "tall", "north": "tall", @@ -220343,7 +210588,7 @@ } }, { - "id": 17237, + "id": 16128, "properties": { "east": "tall", "north": "tall", @@ -220354,7 +210599,7 @@ } }, { - "id": 17238, + "id": 16129, "properties": { "east": "tall", "north": "tall", @@ -220365,7 +210610,7 @@ } }, { - "id": 17239, + "id": 16130, "properties": { "east": "tall", "north": "tall", @@ -220376,7 +210621,7 @@ } }, { - "id": 17240, + "id": 16131, "properties": { "east": "tall", "north": "tall", @@ -220387,7 +210632,7 @@ } }, { - "id": 17241, + "id": 16132, "properties": { "east": "tall", "north": "tall", @@ -220398,7 +210643,7 @@ } }, { - "id": 17242, + "id": 16133, "properties": { "east": "tall", "north": "tall", @@ -220409,7 +210654,7 @@ } }, { - "id": 17243, + "id": 16134, "properties": { "east": "tall", "north": "tall", @@ -220420,7 +210665,7 @@ } }, { - "id": 17244, + "id": 16135, "properties": { "east": "tall", "north": "tall", @@ -220431,7 +210676,7 @@ } }, { - "id": 17245, + "id": 16136, "properties": { "east": "tall", "north": "tall", @@ -220442,7 +210687,7 @@ } }, { - "id": 17246, + "id": 16137, "properties": { "east": "tall", "north": "tall", @@ -220453,7 +210698,7 @@ } }, { - "id": 17247, + "id": 16138, "properties": { "east": "tall", "north": "tall", @@ -220464,7 +210709,7 @@ } }, { - "id": 17248, + "id": 16139, "properties": { "east": "tall", "north": "tall", @@ -220475,7 +210720,7 @@ } }, { - "id": 17249, + "id": 16140, "properties": { "east": "tall", "north": "tall", @@ -220486,7 +210731,7 @@ } }, { - "id": 17250, + "id": 16141, "properties": { "east": "tall", "north": "tall", @@ -220497,7 +210742,7 @@ } }, { - "id": 17251, + "id": 16142, "properties": { "east": "tall", "north": "tall", @@ -220508,7 +210753,7 @@ } }, { - "id": 17252, + "id": 16143, "properties": { "east": "tall", "north": "tall", @@ -220519,7 +210764,7 @@ } }, { - "id": 17253, + "id": 16144, "properties": { "east": "tall", "north": "tall", @@ -220530,7 +210775,7 @@ } }, { - "id": 17254, + "id": 16145, "properties": { "east": "tall", "north": "tall", @@ -220541,7 +210786,7 @@ } }, { - "id": 17255, + "id": 16146, "properties": { "east": "tall", "north": "tall", @@ -220552,7 +210797,7 @@ } }, { - "id": 17256, + "id": 16147, "properties": { "east": "tall", "north": "tall", @@ -220563,7 +210808,7 @@ } }, { - "id": 17257, + "id": 16148, "properties": { "east": "tall", "north": "tall", @@ -220574,7 +210819,7 @@ } }, { - "id": 17258, + "id": 16149, "properties": { "east": "tall", "north": "tall", @@ -220585,7 +210830,7 @@ } }, { - "id": 17259, + "id": 16150, "properties": { "east": "tall", "north": "tall", @@ -220596,7 +210841,7 @@ } }, { - "id": 17260, + "id": 16151, "properties": { "east": "tall", "north": "tall", @@ -220607,7 +210852,7 @@ } }, { - "id": 17261, + "id": 16152, "properties": { "east": "tall", "north": "tall", @@ -220618,7 +210863,7 @@ } }, { - "id": 17262, + "id": 16153, "properties": { "east": "tall", "north": "tall", @@ -220629,7 +210874,7 @@ } }, { - "id": 17263, + "id": 16154, "properties": { "east": "tall", "north": "tall", @@ -220659,38 +210904,38 @@ }, "states": [ { - "id": 14752, + "id": 13675, "properties": { "facing": "north" } }, { - "id": 14753, + "id": 13676, "properties": { "facing": "east" } }, { - "id": 14754, + "id": 13677, "properties": { "facing": "south" } }, { - "id": 14755, + "id": 13678, "properties": { "facing": "west" } }, { "default": true, - "id": 14756, + "id": 13679, "properties": { "facing": "up" } }, { - "id": 14757, + "id": 13680, "properties": { "facing": "down" } @@ -220706,7 +210951,7 @@ "states": [ { "default": true, - "id": 6911 + "id": 6138 } ] }, @@ -220740,7 +210985,7 @@ }, "states": [ { - "id": 11706, + "id": 10629, "properties": { "east": "true", "north": "true", @@ -220750,7 +210995,7 @@ } }, { - "id": 11707, + "id": 10630, "properties": { "east": "true", "north": "true", @@ -220760,7 +211005,7 @@ } }, { - "id": 11708, + "id": 10631, "properties": { "east": "true", "north": "true", @@ -220770,7 +211015,7 @@ } }, { - "id": 11709, + "id": 10632, "properties": { "east": "true", "north": "true", @@ -220780,7 +211025,7 @@ } }, { - "id": 11710, + "id": 10633, "properties": { "east": "true", "north": "true", @@ -220790,7 +211035,7 @@ } }, { - "id": 11711, + "id": 10634, "properties": { "east": "true", "north": "true", @@ -220800,7 +211045,7 @@ } }, { - "id": 11712, + "id": 10635, "properties": { "east": "true", "north": "true", @@ -220810,7 +211055,7 @@ } }, { - "id": 11713, + "id": 10636, "properties": { "east": "true", "north": "true", @@ -220820,7 +211065,7 @@ } }, { - "id": 11714, + "id": 10637, "properties": { "east": "true", "north": "false", @@ -220830,7 +211075,7 @@ } }, { - "id": 11715, + "id": 10638, "properties": { "east": "true", "north": "false", @@ -220840,7 +211085,7 @@ } }, { - "id": 11716, + "id": 10639, "properties": { "east": "true", "north": "false", @@ -220850,7 +211095,7 @@ } }, { - "id": 11717, + "id": 10640, "properties": { "east": "true", "north": "false", @@ -220860,7 +211105,7 @@ } }, { - "id": 11718, + "id": 10641, "properties": { "east": "true", "north": "false", @@ -220870,7 +211115,7 @@ } }, { - "id": 11719, + "id": 10642, "properties": { "east": "true", "north": "false", @@ -220880,7 +211125,7 @@ } }, { - "id": 11720, + "id": 10643, "properties": { "east": "true", "north": "false", @@ -220890,7 +211135,7 @@ } }, { - "id": 11721, + "id": 10644, "properties": { "east": "true", "north": "false", @@ -220900,7 +211145,7 @@ } }, { - "id": 11722, + "id": 10645, "properties": { "east": "false", "north": "true", @@ -220910,7 +211155,7 @@ } }, { - "id": 11723, + "id": 10646, "properties": { "east": "false", "north": "true", @@ -220920,7 +211165,7 @@ } }, { - "id": 11724, + "id": 10647, "properties": { "east": "false", "north": "true", @@ -220930,7 +211175,7 @@ } }, { - "id": 11725, + "id": 10648, "properties": { "east": "false", "north": "true", @@ -220940,7 +211185,7 @@ } }, { - "id": 11726, + "id": 10649, "properties": { "east": "false", "north": "true", @@ -220950,7 +211195,7 @@ } }, { - "id": 11727, + "id": 10650, "properties": { "east": "false", "north": "true", @@ -220960,7 +211205,7 @@ } }, { - "id": 11728, + "id": 10651, "properties": { "east": "false", "north": "true", @@ -220970,7 +211215,7 @@ } }, { - "id": 11729, + "id": 10652, "properties": { "east": "false", "north": "true", @@ -220980,7 +211225,7 @@ } }, { - "id": 11730, + "id": 10653, "properties": { "east": "false", "north": "false", @@ -220990,7 +211235,7 @@ } }, { - "id": 11731, + "id": 10654, "properties": { "east": "false", "north": "false", @@ -221000,7 +211245,7 @@ } }, { - "id": 11732, + "id": 10655, "properties": { "east": "false", "north": "false", @@ -221010,7 +211255,7 @@ } }, { - "id": 11733, + "id": 10656, "properties": { "east": "false", "north": "false", @@ -221020,7 +211265,7 @@ } }, { - "id": 11734, + "id": 10657, "properties": { "east": "false", "north": "false", @@ -221030,7 +211275,7 @@ } }, { - "id": 11735, + "id": 10658, "properties": { "east": "false", "north": "false", @@ -221040,7 +211285,7 @@ } }, { - "id": 11736, + "id": 10659, "properties": { "east": "false", "north": "false", @@ -221051,7 +211296,7 @@ }, { "default": true, - "id": 11737, + "id": 10660, "properties": { "east": "false", "north": "false", @@ -221064,13 +211309,13 @@ }, "minecraft:red_terracotta": { "definition": { - "type": "minecraft:block", + "type": "minecraft:terracotta", "properties": {} }, "states": [ { "default": true, - "id": 11256 + "id": 10179 } ] }, @@ -221109,25 +211354,25 @@ "states": [ { "default": true, - "id": 13037, + "id": 11960, "properties": { "facing": "north" } }, { - "id": 13038, + "id": 11961, "properties": { "facing": "south" } }, { - "id": 13039, + "id": 11962, "properties": { "facing": "west" } }, { - "id": 13040, + "id": 11963, "properties": { "facing": "east" } @@ -221154,7 +211399,7 @@ "states": [ { "default": true, - "id": 11109 + "id": 10032 } ] }, @@ -221171,14 +211416,14 @@ }, "states": [ { - "id": 9278, + "id": 8201, "properties": { "lit": "true" } }, { "default": true, - "id": 9279, + "id": 8202, "properties": { "lit": "false" } @@ -221198,14 +211443,14 @@ }, "states": [ { - "id": 6680, + "id": 5912, "properties": { "lit": "true" } }, { "default": true, - "id": 6681, + "id": 5913, "properties": { "lit": "false" } @@ -221226,13 +211471,13 @@ "states": [ { "default": true, - "id": 6684, + "id": 5916, "properties": { "lit": "true" } }, { - "id": 6685, + "id": 5917, "properties": { "lit": "false" } @@ -221259,56 +211504,56 @@ "states": [ { "default": true, - "id": 6686, + "id": 5918, "properties": { "facing": "north", "lit": "true" } }, { - "id": 6687, + "id": 5919, "properties": { "facing": "north", "lit": "false" } }, { - "id": 6688, + "id": 5920, "properties": { "facing": "south", "lit": "true" } }, { - "id": 6689, + "id": 5921, "properties": { "facing": "south", "lit": "false" } }, { - "id": 6690, + "id": 5922, "properties": { "facing": "west", "lit": "true" } }, { - "id": 6691, + "id": 5923, "properties": { "facing": "west", "lit": "false" } }, { - "id": 6692, + "id": 5924, "properties": { "facing": "east", "lit": "true" } }, { - "id": 6693, + "id": 5925, "properties": { "facing": "east", "lit": "false" @@ -221363,7 +211608,7 @@ }, "states": [ { - "id": 3810, + "id": 3042, "properties": { "east": "up", "north": "up", @@ -221373,7 +211618,7 @@ } }, { - "id": 3811, + "id": 3043, "properties": { "east": "up", "north": "up", @@ -221383,7 +211628,7 @@ } }, { - "id": 3812, + "id": 3044, "properties": { "east": "up", "north": "up", @@ -221393,7 +211638,7 @@ } }, { - "id": 3813, + "id": 3045, "properties": { "east": "up", "north": "up", @@ -221403,7 +211648,7 @@ } }, { - "id": 3814, + "id": 3046, "properties": { "east": "up", "north": "up", @@ -221413,7 +211658,7 @@ } }, { - "id": 3815, + "id": 3047, "properties": { "east": "up", "north": "up", @@ -221423,7 +211668,7 @@ } }, { - "id": 3816, + "id": 3048, "properties": { "east": "up", "north": "up", @@ -221433,7 +211678,7 @@ } }, { - "id": 3817, + "id": 3049, "properties": { "east": "up", "north": "up", @@ -221443,7 +211688,7 @@ } }, { - "id": 3818, + "id": 3050, "properties": { "east": "up", "north": "up", @@ -221453,7 +211698,7 @@ } }, { - "id": 3819, + "id": 3051, "properties": { "east": "up", "north": "up", @@ -221463,7 +211708,7 @@ } }, { - "id": 3820, + "id": 3052, "properties": { "east": "up", "north": "up", @@ -221473,7 +211718,7 @@ } }, { - "id": 3821, + "id": 3053, "properties": { "east": "up", "north": "up", @@ -221483,7 +211728,7 @@ } }, { - "id": 3822, + "id": 3054, "properties": { "east": "up", "north": "up", @@ -221493,7 +211738,7 @@ } }, { - "id": 3823, + "id": 3055, "properties": { "east": "up", "north": "up", @@ -221503,7 +211748,7 @@ } }, { - "id": 3824, + "id": 3056, "properties": { "east": "up", "north": "up", @@ -221513,7 +211758,7 @@ } }, { - "id": 3825, + "id": 3057, "properties": { "east": "up", "north": "up", @@ -221523,7 +211768,7 @@ } }, { - "id": 3826, + "id": 3058, "properties": { "east": "up", "north": "up", @@ -221533,7 +211778,7 @@ } }, { - "id": 3827, + "id": 3059, "properties": { "east": "up", "north": "up", @@ -221543,7 +211788,7 @@ } }, { - "id": 3828, + "id": 3060, "properties": { "east": "up", "north": "up", @@ -221553,7 +211798,7 @@ } }, { - "id": 3829, + "id": 3061, "properties": { "east": "up", "north": "up", @@ -221563,7 +211808,7 @@ } }, { - "id": 3830, + "id": 3062, "properties": { "east": "up", "north": "up", @@ -221573,7 +211818,7 @@ } }, { - "id": 3831, + "id": 3063, "properties": { "east": "up", "north": "up", @@ -221583,7 +211828,7 @@ } }, { - "id": 3832, + "id": 3064, "properties": { "east": "up", "north": "up", @@ -221593,7 +211838,7 @@ } }, { - "id": 3833, + "id": 3065, "properties": { "east": "up", "north": "up", @@ -221603,7 +211848,7 @@ } }, { - "id": 3834, + "id": 3066, "properties": { "east": "up", "north": "up", @@ -221613,7 +211858,7 @@ } }, { - "id": 3835, + "id": 3067, "properties": { "east": "up", "north": "up", @@ -221623,7 +211868,7 @@ } }, { - "id": 3836, + "id": 3068, "properties": { "east": "up", "north": "up", @@ -221633,7 +211878,7 @@ } }, { - "id": 3837, + "id": 3069, "properties": { "east": "up", "north": "up", @@ -221643,7 +211888,7 @@ } }, { - "id": 3838, + "id": 3070, "properties": { "east": "up", "north": "up", @@ -221653,7 +211898,7 @@ } }, { - "id": 3839, + "id": 3071, "properties": { "east": "up", "north": "up", @@ -221663,7 +211908,7 @@ } }, { - "id": 3840, + "id": 3072, "properties": { "east": "up", "north": "up", @@ -221673,7 +211918,7 @@ } }, { - "id": 3841, + "id": 3073, "properties": { "east": "up", "north": "up", @@ -221683,7 +211928,7 @@ } }, { - "id": 3842, + "id": 3074, "properties": { "east": "up", "north": "up", @@ -221693,7 +211938,7 @@ } }, { - "id": 3843, + "id": 3075, "properties": { "east": "up", "north": "up", @@ -221703,7 +211948,7 @@ } }, { - "id": 3844, + "id": 3076, "properties": { "east": "up", "north": "up", @@ -221713,7 +211958,7 @@ } }, { - "id": 3845, + "id": 3077, "properties": { "east": "up", "north": "up", @@ -221723,7 +211968,7 @@ } }, { - "id": 3846, + "id": 3078, "properties": { "east": "up", "north": "up", @@ -221733,7 +211978,7 @@ } }, { - "id": 3847, + "id": 3079, "properties": { "east": "up", "north": "up", @@ -221743,7 +211988,7 @@ } }, { - "id": 3848, + "id": 3080, "properties": { "east": "up", "north": "up", @@ -221753,7 +211998,7 @@ } }, { - "id": 3849, + "id": 3081, "properties": { "east": "up", "north": "up", @@ -221763,7 +212008,7 @@ } }, { - "id": 3850, + "id": 3082, "properties": { "east": "up", "north": "up", @@ -221773,7 +212018,7 @@ } }, { - "id": 3851, + "id": 3083, "properties": { "east": "up", "north": "up", @@ -221783,7 +212028,7 @@ } }, { - "id": 3852, + "id": 3084, "properties": { "east": "up", "north": "up", @@ -221793,7 +212038,7 @@ } }, { - "id": 3853, + "id": 3085, "properties": { "east": "up", "north": "up", @@ -221803,7 +212048,7 @@ } }, { - "id": 3854, + "id": 3086, "properties": { "east": "up", "north": "up", @@ -221813,7 +212058,7 @@ } }, { - "id": 3855, + "id": 3087, "properties": { "east": "up", "north": "up", @@ -221823,7 +212068,7 @@ } }, { - "id": 3856, + "id": 3088, "properties": { "east": "up", "north": "up", @@ -221833,7 +212078,7 @@ } }, { - "id": 3857, + "id": 3089, "properties": { "east": "up", "north": "up", @@ -221843,7 +212088,7 @@ } }, { - "id": 3858, + "id": 3090, "properties": { "east": "up", "north": "up", @@ -221853,7 +212098,7 @@ } }, { - "id": 3859, + "id": 3091, "properties": { "east": "up", "north": "up", @@ -221863,7 +212108,7 @@ } }, { - "id": 3860, + "id": 3092, "properties": { "east": "up", "north": "up", @@ -221873,7 +212118,7 @@ } }, { - "id": 3861, + "id": 3093, "properties": { "east": "up", "north": "up", @@ -221883,7 +212128,7 @@ } }, { - "id": 3862, + "id": 3094, "properties": { "east": "up", "north": "up", @@ -221893,7 +212138,7 @@ } }, { - "id": 3863, + "id": 3095, "properties": { "east": "up", "north": "up", @@ -221903,7 +212148,7 @@ } }, { - "id": 3864, + "id": 3096, "properties": { "east": "up", "north": "up", @@ -221913,7 +212158,7 @@ } }, { - "id": 3865, + "id": 3097, "properties": { "east": "up", "north": "up", @@ -221923,7 +212168,7 @@ } }, { - "id": 3866, + "id": 3098, "properties": { "east": "up", "north": "up", @@ -221933,7 +212178,7 @@ } }, { - "id": 3867, + "id": 3099, "properties": { "east": "up", "north": "up", @@ -221943,7 +212188,7 @@ } }, { - "id": 3868, + "id": 3100, "properties": { "east": "up", "north": "up", @@ -221953,7 +212198,7 @@ } }, { - "id": 3869, + "id": 3101, "properties": { "east": "up", "north": "up", @@ -221963,7 +212208,7 @@ } }, { - "id": 3870, + "id": 3102, "properties": { "east": "up", "north": "up", @@ -221973,7 +212218,7 @@ } }, { - "id": 3871, + "id": 3103, "properties": { "east": "up", "north": "up", @@ -221983,7 +212228,7 @@ } }, { - "id": 3872, + "id": 3104, "properties": { "east": "up", "north": "up", @@ -221993,7 +212238,7 @@ } }, { - "id": 3873, + "id": 3105, "properties": { "east": "up", "north": "up", @@ -222003,7 +212248,7 @@ } }, { - "id": 3874, + "id": 3106, "properties": { "east": "up", "north": "up", @@ -222013,7 +212258,7 @@ } }, { - "id": 3875, + "id": 3107, "properties": { "east": "up", "north": "up", @@ -222023,7 +212268,7 @@ } }, { - "id": 3876, + "id": 3108, "properties": { "east": "up", "north": "up", @@ -222033,7 +212278,7 @@ } }, { - "id": 3877, + "id": 3109, "properties": { "east": "up", "north": "up", @@ -222043,7 +212288,7 @@ } }, { - "id": 3878, + "id": 3110, "properties": { "east": "up", "north": "up", @@ -222053,7 +212298,7 @@ } }, { - "id": 3879, + "id": 3111, "properties": { "east": "up", "north": "up", @@ -222063,7 +212308,7 @@ } }, { - "id": 3880, + "id": 3112, "properties": { "east": "up", "north": "up", @@ -222073,7 +212318,7 @@ } }, { - "id": 3881, + "id": 3113, "properties": { "east": "up", "north": "up", @@ -222083,7 +212328,7 @@ } }, { - "id": 3882, + "id": 3114, "properties": { "east": "up", "north": "up", @@ -222093,7 +212338,7 @@ } }, { - "id": 3883, + "id": 3115, "properties": { "east": "up", "north": "up", @@ -222103,7 +212348,7 @@ } }, { - "id": 3884, + "id": 3116, "properties": { "east": "up", "north": "up", @@ -222113,7 +212358,7 @@ } }, { - "id": 3885, + "id": 3117, "properties": { "east": "up", "north": "up", @@ -222123,7 +212368,7 @@ } }, { - "id": 3886, + "id": 3118, "properties": { "east": "up", "north": "up", @@ -222133,7 +212378,7 @@ } }, { - "id": 3887, + "id": 3119, "properties": { "east": "up", "north": "up", @@ -222143,7 +212388,7 @@ } }, { - "id": 3888, + "id": 3120, "properties": { "east": "up", "north": "up", @@ -222153,7 +212398,7 @@ } }, { - "id": 3889, + "id": 3121, "properties": { "east": "up", "north": "up", @@ -222163,7 +212408,7 @@ } }, { - "id": 3890, + "id": 3122, "properties": { "east": "up", "north": "up", @@ -222173,7 +212418,7 @@ } }, { - "id": 3891, + "id": 3123, "properties": { "east": "up", "north": "up", @@ -222183,7 +212428,7 @@ } }, { - "id": 3892, + "id": 3124, "properties": { "east": "up", "north": "up", @@ -222193,7 +212438,7 @@ } }, { - "id": 3893, + "id": 3125, "properties": { "east": "up", "north": "up", @@ -222203,7 +212448,7 @@ } }, { - "id": 3894, + "id": 3126, "properties": { "east": "up", "north": "up", @@ -222213,7 +212458,7 @@ } }, { - "id": 3895, + "id": 3127, "properties": { "east": "up", "north": "up", @@ -222223,7 +212468,7 @@ } }, { - "id": 3896, + "id": 3128, "properties": { "east": "up", "north": "up", @@ -222233,7 +212478,7 @@ } }, { - "id": 3897, + "id": 3129, "properties": { "east": "up", "north": "up", @@ -222243,7 +212488,7 @@ } }, { - "id": 3898, + "id": 3130, "properties": { "east": "up", "north": "up", @@ -222253,7 +212498,7 @@ } }, { - "id": 3899, + "id": 3131, "properties": { "east": "up", "north": "up", @@ -222263,7 +212508,7 @@ } }, { - "id": 3900, + "id": 3132, "properties": { "east": "up", "north": "up", @@ -222273,7 +212518,7 @@ } }, { - "id": 3901, + "id": 3133, "properties": { "east": "up", "north": "up", @@ -222283,7 +212528,7 @@ } }, { - "id": 3902, + "id": 3134, "properties": { "east": "up", "north": "up", @@ -222293,7 +212538,7 @@ } }, { - "id": 3903, + "id": 3135, "properties": { "east": "up", "north": "up", @@ -222303,7 +212548,7 @@ } }, { - "id": 3904, + "id": 3136, "properties": { "east": "up", "north": "up", @@ -222313,7 +212558,7 @@ } }, { - "id": 3905, + "id": 3137, "properties": { "east": "up", "north": "up", @@ -222323,7 +212568,7 @@ } }, { - "id": 3906, + "id": 3138, "properties": { "east": "up", "north": "up", @@ -222333,7 +212578,7 @@ } }, { - "id": 3907, + "id": 3139, "properties": { "east": "up", "north": "up", @@ -222343,7 +212588,7 @@ } }, { - "id": 3908, + "id": 3140, "properties": { "east": "up", "north": "up", @@ -222353,7 +212598,7 @@ } }, { - "id": 3909, + "id": 3141, "properties": { "east": "up", "north": "up", @@ -222363,7 +212608,7 @@ } }, { - "id": 3910, + "id": 3142, "properties": { "east": "up", "north": "up", @@ -222373,7 +212618,7 @@ } }, { - "id": 3911, + "id": 3143, "properties": { "east": "up", "north": "up", @@ -222383,7 +212628,7 @@ } }, { - "id": 3912, + "id": 3144, "properties": { "east": "up", "north": "up", @@ -222393,7 +212638,7 @@ } }, { - "id": 3913, + "id": 3145, "properties": { "east": "up", "north": "up", @@ -222403,7 +212648,7 @@ } }, { - "id": 3914, + "id": 3146, "properties": { "east": "up", "north": "up", @@ -222413,7 +212658,7 @@ } }, { - "id": 3915, + "id": 3147, "properties": { "east": "up", "north": "up", @@ -222423,7 +212668,7 @@ } }, { - "id": 3916, + "id": 3148, "properties": { "east": "up", "north": "up", @@ -222433,7 +212678,7 @@ } }, { - "id": 3917, + "id": 3149, "properties": { "east": "up", "north": "up", @@ -222443,7 +212688,7 @@ } }, { - "id": 3918, + "id": 3150, "properties": { "east": "up", "north": "up", @@ -222453,7 +212698,7 @@ } }, { - "id": 3919, + "id": 3151, "properties": { "east": "up", "north": "up", @@ -222463,7 +212708,7 @@ } }, { - "id": 3920, + "id": 3152, "properties": { "east": "up", "north": "up", @@ -222473,7 +212718,7 @@ } }, { - "id": 3921, + "id": 3153, "properties": { "east": "up", "north": "up", @@ -222483,7 +212728,7 @@ } }, { - "id": 3922, + "id": 3154, "properties": { "east": "up", "north": "up", @@ -222493,7 +212738,7 @@ } }, { - "id": 3923, + "id": 3155, "properties": { "east": "up", "north": "up", @@ -222503,7 +212748,7 @@ } }, { - "id": 3924, + "id": 3156, "properties": { "east": "up", "north": "up", @@ -222513,7 +212758,7 @@ } }, { - "id": 3925, + "id": 3157, "properties": { "east": "up", "north": "up", @@ -222523,7 +212768,7 @@ } }, { - "id": 3926, + "id": 3158, "properties": { "east": "up", "north": "up", @@ -222533,7 +212778,7 @@ } }, { - "id": 3927, + "id": 3159, "properties": { "east": "up", "north": "up", @@ -222543,7 +212788,7 @@ } }, { - "id": 3928, + "id": 3160, "properties": { "east": "up", "north": "up", @@ -222553,7 +212798,7 @@ } }, { - "id": 3929, + "id": 3161, "properties": { "east": "up", "north": "up", @@ -222563,7 +212808,7 @@ } }, { - "id": 3930, + "id": 3162, "properties": { "east": "up", "north": "up", @@ -222573,7 +212818,7 @@ } }, { - "id": 3931, + "id": 3163, "properties": { "east": "up", "north": "up", @@ -222583,7 +212828,7 @@ } }, { - "id": 3932, + "id": 3164, "properties": { "east": "up", "north": "up", @@ -222593,7 +212838,7 @@ } }, { - "id": 3933, + "id": 3165, "properties": { "east": "up", "north": "up", @@ -222603,7 +212848,7 @@ } }, { - "id": 3934, + "id": 3166, "properties": { "east": "up", "north": "up", @@ -222613,7 +212858,7 @@ } }, { - "id": 3935, + "id": 3167, "properties": { "east": "up", "north": "up", @@ -222623,7 +212868,7 @@ } }, { - "id": 3936, + "id": 3168, "properties": { "east": "up", "north": "up", @@ -222633,7 +212878,7 @@ } }, { - "id": 3937, + "id": 3169, "properties": { "east": "up", "north": "up", @@ -222643,7 +212888,7 @@ } }, { - "id": 3938, + "id": 3170, "properties": { "east": "up", "north": "up", @@ -222653,7 +212898,7 @@ } }, { - "id": 3939, + "id": 3171, "properties": { "east": "up", "north": "up", @@ -222663,7 +212908,7 @@ } }, { - "id": 3940, + "id": 3172, "properties": { "east": "up", "north": "up", @@ -222673,7 +212918,7 @@ } }, { - "id": 3941, + "id": 3173, "properties": { "east": "up", "north": "up", @@ -222683,7 +212928,7 @@ } }, { - "id": 3942, + "id": 3174, "properties": { "east": "up", "north": "up", @@ -222693,7 +212938,7 @@ } }, { - "id": 3943, + "id": 3175, "properties": { "east": "up", "north": "up", @@ -222703,7 +212948,7 @@ } }, { - "id": 3944, + "id": 3176, "properties": { "east": "up", "north": "up", @@ -222713,7 +212958,7 @@ } }, { - "id": 3945, + "id": 3177, "properties": { "east": "up", "north": "up", @@ -222723,7 +212968,7 @@ } }, { - "id": 3946, + "id": 3178, "properties": { "east": "up", "north": "up", @@ -222733,7 +212978,7 @@ } }, { - "id": 3947, + "id": 3179, "properties": { "east": "up", "north": "up", @@ -222743,7 +212988,7 @@ } }, { - "id": 3948, + "id": 3180, "properties": { "east": "up", "north": "up", @@ -222753,7 +212998,7 @@ } }, { - "id": 3949, + "id": 3181, "properties": { "east": "up", "north": "up", @@ -222763,7 +213008,7 @@ } }, { - "id": 3950, + "id": 3182, "properties": { "east": "up", "north": "up", @@ -222773,7 +213018,7 @@ } }, { - "id": 3951, + "id": 3183, "properties": { "east": "up", "north": "up", @@ -222783,7 +213028,7 @@ } }, { - "id": 3952, + "id": 3184, "properties": { "east": "up", "north": "up", @@ -222793,7 +213038,7 @@ } }, { - "id": 3953, + "id": 3185, "properties": { "east": "up", "north": "up", @@ -222803,7 +213048,7 @@ } }, { - "id": 3954, + "id": 3186, "properties": { "east": "up", "north": "side", @@ -222813,7 +213058,7 @@ } }, { - "id": 3955, + "id": 3187, "properties": { "east": "up", "north": "side", @@ -222823,7 +213068,7 @@ } }, { - "id": 3956, + "id": 3188, "properties": { "east": "up", "north": "side", @@ -222833,7 +213078,7 @@ } }, { - "id": 3957, + "id": 3189, "properties": { "east": "up", "north": "side", @@ -222843,7 +213088,7 @@ } }, { - "id": 3958, + "id": 3190, "properties": { "east": "up", "north": "side", @@ -222853,7 +213098,7 @@ } }, { - "id": 3959, + "id": 3191, "properties": { "east": "up", "north": "side", @@ -222863,7 +213108,7 @@ } }, { - "id": 3960, + "id": 3192, "properties": { "east": "up", "north": "side", @@ -222873,7 +213118,7 @@ } }, { - "id": 3961, + "id": 3193, "properties": { "east": "up", "north": "side", @@ -222883,7 +213128,7 @@ } }, { - "id": 3962, + "id": 3194, "properties": { "east": "up", "north": "side", @@ -222893,7 +213138,7 @@ } }, { - "id": 3963, + "id": 3195, "properties": { "east": "up", "north": "side", @@ -222903,7 +213148,7 @@ } }, { - "id": 3964, + "id": 3196, "properties": { "east": "up", "north": "side", @@ -222913,7 +213158,7 @@ } }, { - "id": 3965, + "id": 3197, "properties": { "east": "up", "north": "side", @@ -222923,7 +213168,7 @@ } }, { - "id": 3966, + "id": 3198, "properties": { "east": "up", "north": "side", @@ -222933,7 +213178,7 @@ } }, { - "id": 3967, + "id": 3199, "properties": { "east": "up", "north": "side", @@ -222943,7 +213188,7 @@ } }, { - "id": 3968, + "id": 3200, "properties": { "east": "up", "north": "side", @@ -222953,7 +213198,7 @@ } }, { - "id": 3969, + "id": 3201, "properties": { "east": "up", "north": "side", @@ -222963,7 +213208,7 @@ } }, { - "id": 3970, + "id": 3202, "properties": { "east": "up", "north": "side", @@ -222973,7 +213218,7 @@ } }, { - "id": 3971, + "id": 3203, "properties": { "east": "up", "north": "side", @@ -222983,7 +213228,7 @@ } }, { - "id": 3972, + "id": 3204, "properties": { "east": "up", "north": "side", @@ -222993,7 +213238,7 @@ } }, { - "id": 3973, + "id": 3205, "properties": { "east": "up", "north": "side", @@ -223003,7 +213248,7 @@ } }, { - "id": 3974, + "id": 3206, "properties": { "east": "up", "north": "side", @@ -223013,7 +213258,7 @@ } }, { - "id": 3975, + "id": 3207, "properties": { "east": "up", "north": "side", @@ -223023,7 +213268,7 @@ } }, { - "id": 3976, + "id": 3208, "properties": { "east": "up", "north": "side", @@ -223033,7 +213278,7 @@ } }, { - "id": 3977, + "id": 3209, "properties": { "east": "up", "north": "side", @@ -223043,7 +213288,7 @@ } }, { - "id": 3978, + "id": 3210, "properties": { "east": "up", "north": "side", @@ -223053,7 +213298,7 @@ } }, { - "id": 3979, + "id": 3211, "properties": { "east": "up", "north": "side", @@ -223063,7 +213308,7 @@ } }, { - "id": 3980, + "id": 3212, "properties": { "east": "up", "north": "side", @@ -223073,7 +213318,7 @@ } }, { - "id": 3981, + "id": 3213, "properties": { "east": "up", "north": "side", @@ -223083,7 +213328,7 @@ } }, { - "id": 3982, + "id": 3214, "properties": { "east": "up", "north": "side", @@ -223093,7 +213338,7 @@ } }, { - "id": 3983, + "id": 3215, "properties": { "east": "up", "north": "side", @@ -223103,7 +213348,7 @@ } }, { - "id": 3984, + "id": 3216, "properties": { "east": "up", "north": "side", @@ -223113,7 +213358,7 @@ } }, { - "id": 3985, + "id": 3217, "properties": { "east": "up", "north": "side", @@ -223123,7 +213368,7 @@ } }, { - "id": 3986, + "id": 3218, "properties": { "east": "up", "north": "side", @@ -223133,7 +213378,7 @@ } }, { - "id": 3987, + "id": 3219, "properties": { "east": "up", "north": "side", @@ -223143,7 +213388,7 @@ } }, { - "id": 3988, + "id": 3220, "properties": { "east": "up", "north": "side", @@ -223153,7 +213398,7 @@ } }, { - "id": 3989, + "id": 3221, "properties": { "east": "up", "north": "side", @@ -223163,7 +213408,7 @@ } }, { - "id": 3990, + "id": 3222, "properties": { "east": "up", "north": "side", @@ -223173,7 +213418,7 @@ } }, { - "id": 3991, + "id": 3223, "properties": { "east": "up", "north": "side", @@ -223183,7 +213428,7 @@ } }, { - "id": 3992, + "id": 3224, "properties": { "east": "up", "north": "side", @@ -223193,7 +213438,7 @@ } }, { - "id": 3993, + "id": 3225, "properties": { "east": "up", "north": "side", @@ -223203,7 +213448,7 @@ } }, { - "id": 3994, + "id": 3226, "properties": { "east": "up", "north": "side", @@ -223213,7 +213458,7 @@ } }, { - "id": 3995, + "id": 3227, "properties": { "east": "up", "north": "side", @@ -223223,7 +213468,7 @@ } }, { - "id": 3996, + "id": 3228, "properties": { "east": "up", "north": "side", @@ -223233,7 +213478,7 @@ } }, { - "id": 3997, + "id": 3229, "properties": { "east": "up", "north": "side", @@ -223243,7 +213488,7 @@ } }, { - "id": 3998, + "id": 3230, "properties": { "east": "up", "north": "side", @@ -223253,7 +213498,7 @@ } }, { - "id": 3999, + "id": 3231, "properties": { "east": "up", "north": "side", @@ -223263,7 +213508,7 @@ } }, { - "id": 4000, + "id": 3232, "properties": { "east": "up", "north": "side", @@ -223273,7 +213518,7 @@ } }, { - "id": 4001, + "id": 3233, "properties": { "east": "up", "north": "side", @@ -223283,7 +213528,7 @@ } }, { - "id": 4002, + "id": 3234, "properties": { "east": "up", "north": "side", @@ -223293,7 +213538,7 @@ } }, { - "id": 4003, + "id": 3235, "properties": { "east": "up", "north": "side", @@ -223303,7 +213548,7 @@ } }, { - "id": 4004, + "id": 3236, "properties": { "east": "up", "north": "side", @@ -223313,7 +213558,7 @@ } }, { - "id": 4005, + "id": 3237, "properties": { "east": "up", "north": "side", @@ -223323,7 +213568,7 @@ } }, { - "id": 4006, + "id": 3238, "properties": { "east": "up", "north": "side", @@ -223333,7 +213578,7 @@ } }, { - "id": 4007, + "id": 3239, "properties": { "east": "up", "north": "side", @@ -223343,7 +213588,7 @@ } }, { - "id": 4008, + "id": 3240, "properties": { "east": "up", "north": "side", @@ -223353,7 +213598,7 @@ } }, { - "id": 4009, + "id": 3241, "properties": { "east": "up", "north": "side", @@ -223363,7 +213608,7 @@ } }, { - "id": 4010, + "id": 3242, "properties": { "east": "up", "north": "side", @@ -223373,7 +213618,7 @@ } }, { - "id": 4011, + "id": 3243, "properties": { "east": "up", "north": "side", @@ -223383,7 +213628,7 @@ } }, { - "id": 4012, + "id": 3244, "properties": { "east": "up", "north": "side", @@ -223393,7 +213638,7 @@ } }, { - "id": 4013, + "id": 3245, "properties": { "east": "up", "north": "side", @@ -223403,7 +213648,7 @@ } }, { - "id": 4014, + "id": 3246, "properties": { "east": "up", "north": "side", @@ -223413,7 +213658,7 @@ } }, { - "id": 4015, + "id": 3247, "properties": { "east": "up", "north": "side", @@ -223423,7 +213668,7 @@ } }, { - "id": 4016, + "id": 3248, "properties": { "east": "up", "north": "side", @@ -223433,7 +213678,7 @@ } }, { - "id": 4017, + "id": 3249, "properties": { "east": "up", "north": "side", @@ -223443,7 +213688,7 @@ } }, { - "id": 4018, + "id": 3250, "properties": { "east": "up", "north": "side", @@ -223453,7 +213698,7 @@ } }, { - "id": 4019, + "id": 3251, "properties": { "east": "up", "north": "side", @@ -223463,7 +213708,7 @@ } }, { - "id": 4020, + "id": 3252, "properties": { "east": "up", "north": "side", @@ -223473,7 +213718,7 @@ } }, { - "id": 4021, + "id": 3253, "properties": { "east": "up", "north": "side", @@ -223483,7 +213728,7 @@ } }, { - "id": 4022, + "id": 3254, "properties": { "east": "up", "north": "side", @@ -223493,7 +213738,7 @@ } }, { - "id": 4023, + "id": 3255, "properties": { "east": "up", "north": "side", @@ -223503,7 +213748,7 @@ } }, { - "id": 4024, + "id": 3256, "properties": { "east": "up", "north": "side", @@ -223513,7 +213758,7 @@ } }, { - "id": 4025, + "id": 3257, "properties": { "east": "up", "north": "side", @@ -223523,7 +213768,7 @@ } }, { - "id": 4026, + "id": 3258, "properties": { "east": "up", "north": "side", @@ -223533,7 +213778,7 @@ } }, { - "id": 4027, + "id": 3259, "properties": { "east": "up", "north": "side", @@ -223543,7 +213788,7 @@ } }, { - "id": 4028, + "id": 3260, "properties": { "east": "up", "north": "side", @@ -223553,7 +213798,7 @@ } }, { - "id": 4029, + "id": 3261, "properties": { "east": "up", "north": "side", @@ -223563,7 +213808,7 @@ } }, { - "id": 4030, + "id": 3262, "properties": { "east": "up", "north": "side", @@ -223573,7 +213818,7 @@ } }, { - "id": 4031, + "id": 3263, "properties": { "east": "up", "north": "side", @@ -223583,7 +213828,7 @@ } }, { - "id": 4032, + "id": 3264, "properties": { "east": "up", "north": "side", @@ -223593,7 +213838,7 @@ } }, { - "id": 4033, + "id": 3265, "properties": { "east": "up", "north": "side", @@ -223603,7 +213848,7 @@ } }, { - "id": 4034, + "id": 3266, "properties": { "east": "up", "north": "side", @@ -223613,7 +213858,7 @@ } }, { - "id": 4035, + "id": 3267, "properties": { "east": "up", "north": "side", @@ -223623,7 +213868,7 @@ } }, { - "id": 4036, + "id": 3268, "properties": { "east": "up", "north": "side", @@ -223633,7 +213878,7 @@ } }, { - "id": 4037, + "id": 3269, "properties": { "east": "up", "north": "side", @@ -223643,7 +213888,7 @@ } }, { - "id": 4038, + "id": 3270, "properties": { "east": "up", "north": "side", @@ -223653,7 +213898,7 @@ } }, { - "id": 4039, + "id": 3271, "properties": { "east": "up", "north": "side", @@ -223663,7 +213908,7 @@ } }, { - "id": 4040, + "id": 3272, "properties": { "east": "up", "north": "side", @@ -223673,7 +213918,7 @@ } }, { - "id": 4041, + "id": 3273, "properties": { "east": "up", "north": "side", @@ -223683,7 +213928,7 @@ } }, { - "id": 4042, + "id": 3274, "properties": { "east": "up", "north": "side", @@ -223693,7 +213938,7 @@ } }, { - "id": 4043, + "id": 3275, "properties": { "east": "up", "north": "side", @@ -223703,7 +213948,7 @@ } }, { - "id": 4044, + "id": 3276, "properties": { "east": "up", "north": "side", @@ -223713,7 +213958,7 @@ } }, { - "id": 4045, + "id": 3277, "properties": { "east": "up", "north": "side", @@ -223723,7 +213968,7 @@ } }, { - "id": 4046, + "id": 3278, "properties": { "east": "up", "north": "side", @@ -223733,7 +213978,7 @@ } }, { - "id": 4047, + "id": 3279, "properties": { "east": "up", "north": "side", @@ -223743,7 +213988,7 @@ } }, { - "id": 4048, + "id": 3280, "properties": { "east": "up", "north": "side", @@ -223753,7 +213998,7 @@ } }, { - "id": 4049, + "id": 3281, "properties": { "east": "up", "north": "side", @@ -223763,7 +214008,7 @@ } }, { - "id": 4050, + "id": 3282, "properties": { "east": "up", "north": "side", @@ -223773,7 +214018,7 @@ } }, { - "id": 4051, + "id": 3283, "properties": { "east": "up", "north": "side", @@ -223783,7 +214028,7 @@ } }, { - "id": 4052, + "id": 3284, "properties": { "east": "up", "north": "side", @@ -223793,7 +214038,7 @@ } }, { - "id": 4053, + "id": 3285, "properties": { "east": "up", "north": "side", @@ -223803,7 +214048,7 @@ } }, { - "id": 4054, + "id": 3286, "properties": { "east": "up", "north": "side", @@ -223813,7 +214058,7 @@ } }, { - "id": 4055, + "id": 3287, "properties": { "east": "up", "north": "side", @@ -223823,7 +214068,7 @@ } }, { - "id": 4056, + "id": 3288, "properties": { "east": "up", "north": "side", @@ -223833,7 +214078,7 @@ } }, { - "id": 4057, + "id": 3289, "properties": { "east": "up", "north": "side", @@ -223843,7 +214088,7 @@ } }, { - "id": 4058, + "id": 3290, "properties": { "east": "up", "north": "side", @@ -223853,7 +214098,7 @@ } }, { - "id": 4059, + "id": 3291, "properties": { "east": "up", "north": "side", @@ -223863,7 +214108,7 @@ } }, { - "id": 4060, + "id": 3292, "properties": { "east": "up", "north": "side", @@ -223873,7 +214118,7 @@ } }, { - "id": 4061, + "id": 3293, "properties": { "east": "up", "north": "side", @@ -223883,7 +214128,7 @@ } }, { - "id": 4062, + "id": 3294, "properties": { "east": "up", "north": "side", @@ -223893,7 +214138,7 @@ } }, { - "id": 4063, + "id": 3295, "properties": { "east": "up", "north": "side", @@ -223903,7 +214148,7 @@ } }, { - "id": 4064, + "id": 3296, "properties": { "east": "up", "north": "side", @@ -223913,7 +214158,7 @@ } }, { - "id": 4065, + "id": 3297, "properties": { "east": "up", "north": "side", @@ -223923,7 +214168,7 @@ } }, { - "id": 4066, + "id": 3298, "properties": { "east": "up", "north": "side", @@ -223933,7 +214178,7 @@ } }, { - "id": 4067, + "id": 3299, "properties": { "east": "up", "north": "side", @@ -223943,7 +214188,7 @@ } }, { - "id": 4068, + "id": 3300, "properties": { "east": "up", "north": "side", @@ -223953,7 +214198,7 @@ } }, { - "id": 4069, + "id": 3301, "properties": { "east": "up", "north": "side", @@ -223963,7 +214208,7 @@ } }, { - "id": 4070, + "id": 3302, "properties": { "east": "up", "north": "side", @@ -223973,7 +214218,7 @@ } }, { - "id": 4071, + "id": 3303, "properties": { "east": "up", "north": "side", @@ -223983,7 +214228,7 @@ } }, { - "id": 4072, + "id": 3304, "properties": { "east": "up", "north": "side", @@ -223993,7 +214238,7 @@ } }, { - "id": 4073, + "id": 3305, "properties": { "east": "up", "north": "side", @@ -224003,7 +214248,7 @@ } }, { - "id": 4074, + "id": 3306, "properties": { "east": "up", "north": "side", @@ -224013,7 +214258,7 @@ } }, { - "id": 4075, + "id": 3307, "properties": { "east": "up", "north": "side", @@ -224023,7 +214268,7 @@ } }, { - "id": 4076, + "id": 3308, "properties": { "east": "up", "north": "side", @@ -224033,7 +214278,7 @@ } }, { - "id": 4077, + "id": 3309, "properties": { "east": "up", "north": "side", @@ -224043,7 +214288,7 @@ } }, { - "id": 4078, + "id": 3310, "properties": { "east": "up", "north": "side", @@ -224053,7 +214298,7 @@ } }, { - "id": 4079, + "id": 3311, "properties": { "east": "up", "north": "side", @@ -224063,7 +214308,7 @@ } }, { - "id": 4080, + "id": 3312, "properties": { "east": "up", "north": "side", @@ -224073,7 +214318,7 @@ } }, { - "id": 4081, + "id": 3313, "properties": { "east": "up", "north": "side", @@ -224083,7 +214328,7 @@ } }, { - "id": 4082, + "id": 3314, "properties": { "east": "up", "north": "side", @@ -224093,7 +214338,7 @@ } }, { - "id": 4083, + "id": 3315, "properties": { "east": "up", "north": "side", @@ -224103,7 +214348,7 @@ } }, { - "id": 4084, + "id": 3316, "properties": { "east": "up", "north": "side", @@ -224113,7 +214358,7 @@ } }, { - "id": 4085, + "id": 3317, "properties": { "east": "up", "north": "side", @@ -224123,7 +214368,7 @@ } }, { - "id": 4086, + "id": 3318, "properties": { "east": "up", "north": "side", @@ -224133,7 +214378,7 @@ } }, { - "id": 4087, + "id": 3319, "properties": { "east": "up", "north": "side", @@ -224143,7 +214388,7 @@ } }, { - "id": 4088, + "id": 3320, "properties": { "east": "up", "north": "side", @@ -224153,7 +214398,7 @@ } }, { - "id": 4089, + "id": 3321, "properties": { "east": "up", "north": "side", @@ -224163,7 +214408,7 @@ } }, { - "id": 4090, + "id": 3322, "properties": { "east": "up", "north": "side", @@ -224173,7 +214418,7 @@ } }, { - "id": 4091, + "id": 3323, "properties": { "east": "up", "north": "side", @@ -224183,7 +214428,7 @@ } }, { - "id": 4092, + "id": 3324, "properties": { "east": "up", "north": "side", @@ -224193,7 +214438,7 @@ } }, { - "id": 4093, + "id": 3325, "properties": { "east": "up", "north": "side", @@ -224203,7 +214448,7 @@ } }, { - "id": 4094, + "id": 3326, "properties": { "east": "up", "north": "side", @@ -224213,7 +214458,7 @@ } }, { - "id": 4095, + "id": 3327, "properties": { "east": "up", "north": "side", @@ -224223,7 +214468,7 @@ } }, { - "id": 4096, + "id": 3328, "properties": { "east": "up", "north": "side", @@ -224233,7 +214478,7 @@ } }, { - "id": 4097, + "id": 3329, "properties": { "east": "up", "north": "side", @@ -224243,7 +214488,7 @@ } }, { - "id": 4098, + "id": 3330, "properties": { "east": "up", "north": "none", @@ -224253,7 +214498,7 @@ } }, { - "id": 4099, + "id": 3331, "properties": { "east": "up", "north": "none", @@ -224263,7 +214508,7 @@ } }, { - "id": 4100, + "id": 3332, "properties": { "east": "up", "north": "none", @@ -224273,7 +214518,7 @@ } }, { - "id": 4101, + "id": 3333, "properties": { "east": "up", "north": "none", @@ -224283,7 +214528,7 @@ } }, { - "id": 4102, + "id": 3334, "properties": { "east": "up", "north": "none", @@ -224293,7 +214538,7 @@ } }, { - "id": 4103, + "id": 3335, "properties": { "east": "up", "north": "none", @@ -224303,7 +214548,7 @@ } }, { - "id": 4104, + "id": 3336, "properties": { "east": "up", "north": "none", @@ -224313,7 +214558,7 @@ } }, { - "id": 4105, + "id": 3337, "properties": { "east": "up", "north": "none", @@ -224323,7 +214568,7 @@ } }, { - "id": 4106, + "id": 3338, "properties": { "east": "up", "north": "none", @@ -224333,7 +214578,7 @@ } }, { - "id": 4107, + "id": 3339, "properties": { "east": "up", "north": "none", @@ -224343,7 +214588,7 @@ } }, { - "id": 4108, + "id": 3340, "properties": { "east": "up", "north": "none", @@ -224353,7 +214598,7 @@ } }, { - "id": 4109, + "id": 3341, "properties": { "east": "up", "north": "none", @@ -224363,7 +214608,7 @@ } }, { - "id": 4110, + "id": 3342, "properties": { "east": "up", "north": "none", @@ -224373,7 +214618,7 @@ } }, { - "id": 4111, + "id": 3343, "properties": { "east": "up", "north": "none", @@ -224383,7 +214628,7 @@ } }, { - "id": 4112, + "id": 3344, "properties": { "east": "up", "north": "none", @@ -224393,7 +214638,7 @@ } }, { - "id": 4113, + "id": 3345, "properties": { "east": "up", "north": "none", @@ -224403,7 +214648,7 @@ } }, { - "id": 4114, + "id": 3346, "properties": { "east": "up", "north": "none", @@ -224413,7 +214658,7 @@ } }, { - "id": 4115, + "id": 3347, "properties": { "east": "up", "north": "none", @@ -224423,7 +214668,7 @@ } }, { - "id": 4116, + "id": 3348, "properties": { "east": "up", "north": "none", @@ -224433,7 +214678,7 @@ } }, { - "id": 4117, + "id": 3349, "properties": { "east": "up", "north": "none", @@ -224443,7 +214688,7 @@ } }, { - "id": 4118, + "id": 3350, "properties": { "east": "up", "north": "none", @@ -224453,7 +214698,7 @@ } }, { - "id": 4119, + "id": 3351, "properties": { "east": "up", "north": "none", @@ -224463,7 +214708,7 @@ } }, { - "id": 4120, + "id": 3352, "properties": { "east": "up", "north": "none", @@ -224473,7 +214718,7 @@ } }, { - "id": 4121, + "id": 3353, "properties": { "east": "up", "north": "none", @@ -224483,7 +214728,7 @@ } }, { - "id": 4122, + "id": 3354, "properties": { "east": "up", "north": "none", @@ -224493,7 +214738,7 @@ } }, { - "id": 4123, + "id": 3355, "properties": { "east": "up", "north": "none", @@ -224503,7 +214748,7 @@ } }, { - "id": 4124, + "id": 3356, "properties": { "east": "up", "north": "none", @@ -224513,7 +214758,7 @@ } }, { - "id": 4125, + "id": 3357, "properties": { "east": "up", "north": "none", @@ -224523,7 +214768,7 @@ } }, { - "id": 4126, + "id": 3358, "properties": { "east": "up", "north": "none", @@ -224533,7 +214778,7 @@ } }, { - "id": 4127, + "id": 3359, "properties": { "east": "up", "north": "none", @@ -224543,7 +214788,7 @@ } }, { - "id": 4128, + "id": 3360, "properties": { "east": "up", "north": "none", @@ -224553,7 +214798,7 @@ } }, { - "id": 4129, + "id": 3361, "properties": { "east": "up", "north": "none", @@ -224563,7 +214808,7 @@ } }, { - "id": 4130, + "id": 3362, "properties": { "east": "up", "north": "none", @@ -224573,7 +214818,7 @@ } }, { - "id": 4131, + "id": 3363, "properties": { "east": "up", "north": "none", @@ -224583,7 +214828,7 @@ } }, { - "id": 4132, + "id": 3364, "properties": { "east": "up", "north": "none", @@ -224593,7 +214838,7 @@ } }, { - "id": 4133, + "id": 3365, "properties": { "east": "up", "north": "none", @@ -224603,7 +214848,7 @@ } }, { - "id": 4134, + "id": 3366, "properties": { "east": "up", "north": "none", @@ -224613,7 +214858,7 @@ } }, { - "id": 4135, + "id": 3367, "properties": { "east": "up", "north": "none", @@ -224623,7 +214868,7 @@ } }, { - "id": 4136, + "id": 3368, "properties": { "east": "up", "north": "none", @@ -224633,7 +214878,7 @@ } }, { - "id": 4137, + "id": 3369, "properties": { "east": "up", "north": "none", @@ -224643,7 +214888,7 @@ } }, { - "id": 4138, + "id": 3370, "properties": { "east": "up", "north": "none", @@ -224653,7 +214898,7 @@ } }, { - "id": 4139, + "id": 3371, "properties": { "east": "up", "north": "none", @@ -224663,7 +214908,7 @@ } }, { - "id": 4140, + "id": 3372, "properties": { "east": "up", "north": "none", @@ -224673,7 +214918,7 @@ } }, { - "id": 4141, + "id": 3373, "properties": { "east": "up", "north": "none", @@ -224683,7 +214928,7 @@ } }, { - "id": 4142, + "id": 3374, "properties": { "east": "up", "north": "none", @@ -224693,7 +214938,7 @@ } }, { - "id": 4143, + "id": 3375, "properties": { "east": "up", "north": "none", @@ -224703,7 +214948,7 @@ } }, { - "id": 4144, + "id": 3376, "properties": { "east": "up", "north": "none", @@ -224713,7 +214958,7 @@ } }, { - "id": 4145, + "id": 3377, "properties": { "east": "up", "north": "none", @@ -224723,7 +214968,7 @@ } }, { - "id": 4146, + "id": 3378, "properties": { "east": "up", "north": "none", @@ -224733,7 +214978,7 @@ } }, { - "id": 4147, + "id": 3379, "properties": { "east": "up", "north": "none", @@ -224743,7 +214988,7 @@ } }, { - "id": 4148, + "id": 3380, "properties": { "east": "up", "north": "none", @@ -224753,7 +214998,7 @@ } }, { - "id": 4149, + "id": 3381, "properties": { "east": "up", "north": "none", @@ -224763,7 +215008,7 @@ } }, { - "id": 4150, + "id": 3382, "properties": { "east": "up", "north": "none", @@ -224773,7 +215018,7 @@ } }, { - "id": 4151, + "id": 3383, "properties": { "east": "up", "north": "none", @@ -224783,7 +215028,7 @@ } }, { - "id": 4152, + "id": 3384, "properties": { "east": "up", "north": "none", @@ -224793,7 +215038,7 @@ } }, { - "id": 4153, + "id": 3385, "properties": { "east": "up", "north": "none", @@ -224803,7 +215048,7 @@ } }, { - "id": 4154, + "id": 3386, "properties": { "east": "up", "north": "none", @@ -224813,7 +215058,7 @@ } }, { - "id": 4155, + "id": 3387, "properties": { "east": "up", "north": "none", @@ -224823,7 +215068,7 @@ } }, { - "id": 4156, + "id": 3388, "properties": { "east": "up", "north": "none", @@ -224833,7 +215078,7 @@ } }, { - "id": 4157, + "id": 3389, "properties": { "east": "up", "north": "none", @@ -224843,7 +215088,7 @@ } }, { - "id": 4158, + "id": 3390, "properties": { "east": "up", "north": "none", @@ -224853,7 +215098,7 @@ } }, { - "id": 4159, + "id": 3391, "properties": { "east": "up", "north": "none", @@ -224863,7 +215108,7 @@ } }, { - "id": 4160, + "id": 3392, "properties": { "east": "up", "north": "none", @@ -224873,7 +215118,7 @@ } }, { - "id": 4161, + "id": 3393, "properties": { "east": "up", "north": "none", @@ -224883,7 +215128,7 @@ } }, { - "id": 4162, + "id": 3394, "properties": { "east": "up", "north": "none", @@ -224893,7 +215138,7 @@ } }, { - "id": 4163, + "id": 3395, "properties": { "east": "up", "north": "none", @@ -224903,7 +215148,7 @@ } }, { - "id": 4164, + "id": 3396, "properties": { "east": "up", "north": "none", @@ -224913,7 +215158,7 @@ } }, { - "id": 4165, + "id": 3397, "properties": { "east": "up", "north": "none", @@ -224923,7 +215168,7 @@ } }, { - "id": 4166, + "id": 3398, "properties": { "east": "up", "north": "none", @@ -224933,7 +215178,7 @@ } }, { - "id": 4167, + "id": 3399, "properties": { "east": "up", "north": "none", @@ -224943,7 +215188,7 @@ } }, { - "id": 4168, + "id": 3400, "properties": { "east": "up", "north": "none", @@ -224953,7 +215198,7 @@ } }, { - "id": 4169, + "id": 3401, "properties": { "east": "up", "north": "none", @@ -224963,7 +215208,7 @@ } }, { - "id": 4170, + "id": 3402, "properties": { "east": "up", "north": "none", @@ -224973,7 +215218,7 @@ } }, { - "id": 4171, + "id": 3403, "properties": { "east": "up", "north": "none", @@ -224983,7 +215228,7 @@ } }, { - "id": 4172, + "id": 3404, "properties": { "east": "up", "north": "none", @@ -224993,7 +215238,7 @@ } }, { - "id": 4173, + "id": 3405, "properties": { "east": "up", "north": "none", @@ -225003,7 +215248,7 @@ } }, { - "id": 4174, + "id": 3406, "properties": { "east": "up", "north": "none", @@ -225013,7 +215258,7 @@ } }, { - "id": 4175, + "id": 3407, "properties": { "east": "up", "north": "none", @@ -225023,7 +215268,7 @@ } }, { - "id": 4176, + "id": 3408, "properties": { "east": "up", "north": "none", @@ -225033,7 +215278,7 @@ } }, { - "id": 4177, + "id": 3409, "properties": { "east": "up", "north": "none", @@ -225043,7 +215288,7 @@ } }, { - "id": 4178, + "id": 3410, "properties": { "east": "up", "north": "none", @@ -225053,7 +215298,7 @@ } }, { - "id": 4179, + "id": 3411, "properties": { "east": "up", "north": "none", @@ -225063,7 +215308,7 @@ } }, { - "id": 4180, + "id": 3412, "properties": { "east": "up", "north": "none", @@ -225073,7 +215318,7 @@ } }, { - "id": 4181, + "id": 3413, "properties": { "east": "up", "north": "none", @@ -225083,7 +215328,7 @@ } }, { - "id": 4182, + "id": 3414, "properties": { "east": "up", "north": "none", @@ -225093,7 +215338,7 @@ } }, { - "id": 4183, + "id": 3415, "properties": { "east": "up", "north": "none", @@ -225103,7 +215348,7 @@ } }, { - "id": 4184, + "id": 3416, "properties": { "east": "up", "north": "none", @@ -225113,7 +215358,7 @@ } }, { - "id": 4185, + "id": 3417, "properties": { "east": "up", "north": "none", @@ -225123,7 +215368,7 @@ } }, { - "id": 4186, + "id": 3418, "properties": { "east": "up", "north": "none", @@ -225133,7 +215378,7 @@ } }, { - "id": 4187, + "id": 3419, "properties": { "east": "up", "north": "none", @@ -225143,7 +215388,7 @@ } }, { - "id": 4188, + "id": 3420, "properties": { "east": "up", "north": "none", @@ -225153,7 +215398,7 @@ } }, { - "id": 4189, + "id": 3421, "properties": { "east": "up", "north": "none", @@ -225163,7 +215408,7 @@ } }, { - "id": 4190, + "id": 3422, "properties": { "east": "up", "north": "none", @@ -225173,7 +215418,7 @@ } }, { - "id": 4191, + "id": 3423, "properties": { "east": "up", "north": "none", @@ -225183,7 +215428,7 @@ } }, { - "id": 4192, + "id": 3424, "properties": { "east": "up", "north": "none", @@ -225193,7 +215438,7 @@ } }, { - "id": 4193, + "id": 3425, "properties": { "east": "up", "north": "none", @@ -225203,7 +215448,7 @@ } }, { - "id": 4194, + "id": 3426, "properties": { "east": "up", "north": "none", @@ -225213,7 +215458,7 @@ } }, { - "id": 4195, + "id": 3427, "properties": { "east": "up", "north": "none", @@ -225223,7 +215468,7 @@ } }, { - "id": 4196, + "id": 3428, "properties": { "east": "up", "north": "none", @@ -225233,7 +215478,7 @@ } }, { - "id": 4197, + "id": 3429, "properties": { "east": "up", "north": "none", @@ -225243,7 +215488,7 @@ } }, { - "id": 4198, + "id": 3430, "properties": { "east": "up", "north": "none", @@ -225253,7 +215498,7 @@ } }, { - "id": 4199, + "id": 3431, "properties": { "east": "up", "north": "none", @@ -225263,7 +215508,7 @@ } }, { - "id": 4200, + "id": 3432, "properties": { "east": "up", "north": "none", @@ -225273,7 +215518,7 @@ } }, { - "id": 4201, + "id": 3433, "properties": { "east": "up", "north": "none", @@ -225283,7 +215528,7 @@ } }, { - "id": 4202, + "id": 3434, "properties": { "east": "up", "north": "none", @@ -225293,7 +215538,7 @@ } }, { - "id": 4203, + "id": 3435, "properties": { "east": "up", "north": "none", @@ -225303,7 +215548,7 @@ } }, { - "id": 4204, + "id": 3436, "properties": { "east": "up", "north": "none", @@ -225313,7 +215558,7 @@ } }, { - "id": 4205, + "id": 3437, "properties": { "east": "up", "north": "none", @@ -225323,7 +215568,7 @@ } }, { - "id": 4206, + "id": 3438, "properties": { "east": "up", "north": "none", @@ -225333,7 +215578,7 @@ } }, { - "id": 4207, + "id": 3439, "properties": { "east": "up", "north": "none", @@ -225343,7 +215588,7 @@ } }, { - "id": 4208, + "id": 3440, "properties": { "east": "up", "north": "none", @@ -225353,7 +215598,7 @@ } }, { - "id": 4209, + "id": 3441, "properties": { "east": "up", "north": "none", @@ -225363,7 +215608,7 @@ } }, { - "id": 4210, + "id": 3442, "properties": { "east": "up", "north": "none", @@ -225373,7 +215618,7 @@ } }, { - "id": 4211, + "id": 3443, "properties": { "east": "up", "north": "none", @@ -225383,7 +215628,7 @@ } }, { - "id": 4212, + "id": 3444, "properties": { "east": "up", "north": "none", @@ -225393,7 +215638,7 @@ } }, { - "id": 4213, + "id": 3445, "properties": { "east": "up", "north": "none", @@ -225403,7 +215648,7 @@ } }, { - "id": 4214, + "id": 3446, "properties": { "east": "up", "north": "none", @@ -225413,7 +215658,7 @@ } }, { - "id": 4215, + "id": 3447, "properties": { "east": "up", "north": "none", @@ -225423,7 +215668,7 @@ } }, { - "id": 4216, + "id": 3448, "properties": { "east": "up", "north": "none", @@ -225433,7 +215678,7 @@ } }, { - "id": 4217, + "id": 3449, "properties": { "east": "up", "north": "none", @@ -225443,7 +215688,7 @@ } }, { - "id": 4218, + "id": 3450, "properties": { "east": "up", "north": "none", @@ -225453,7 +215698,7 @@ } }, { - "id": 4219, + "id": 3451, "properties": { "east": "up", "north": "none", @@ -225463,7 +215708,7 @@ } }, { - "id": 4220, + "id": 3452, "properties": { "east": "up", "north": "none", @@ -225473,7 +215718,7 @@ } }, { - "id": 4221, + "id": 3453, "properties": { "east": "up", "north": "none", @@ -225483,7 +215728,7 @@ } }, { - "id": 4222, + "id": 3454, "properties": { "east": "up", "north": "none", @@ -225493,7 +215738,7 @@ } }, { - "id": 4223, + "id": 3455, "properties": { "east": "up", "north": "none", @@ -225503,7 +215748,7 @@ } }, { - "id": 4224, + "id": 3456, "properties": { "east": "up", "north": "none", @@ -225513,7 +215758,7 @@ } }, { - "id": 4225, + "id": 3457, "properties": { "east": "up", "north": "none", @@ -225523,7 +215768,7 @@ } }, { - "id": 4226, + "id": 3458, "properties": { "east": "up", "north": "none", @@ -225533,7 +215778,7 @@ } }, { - "id": 4227, + "id": 3459, "properties": { "east": "up", "north": "none", @@ -225543,7 +215788,7 @@ } }, { - "id": 4228, + "id": 3460, "properties": { "east": "up", "north": "none", @@ -225553,7 +215798,7 @@ } }, { - "id": 4229, + "id": 3461, "properties": { "east": "up", "north": "none", @@ -225563,7 +215808,7 @@ } }, { - "id": 4230, + "id": 3462, "properties": { "east": "up", "north": "none", @@ -225573,7 +215818,7 @@ } }, { - "id": 4231, + "id": 3463, "properties": { "east": "up", "north": "none", @@ -225583,7 +215828,7 @@ } }, { - "id": 4232, + "id": 3464, "properties": { "east": "up", "north": "none", @@ -225593,7 +215838,7 @@ } }, { - "id": 4233, + "id": 3465, "properties": { "east": "up", "north": "none", @@ -225603,7 +215848,7 @@ } }, { - "id": 4234, + "id": 3466, "properties": { "east": "up", "north": "none", @@ -225613,7 +215858,7 @@ } }, { - "id": 4235, + "id": 3467, "properties": { "east": "up", "north": "none", @@ -225623,7 +215868,7 @@ } }, { - "id": 4236, + "id": 3468, "properties": { "east": "up", "north": "none", @@ -225633,7 +215878,7 @@ } }, { - "id": 4237, + "id": 3469, "properties": { "east": "up", "north": "none", @@ -225643,7 +215888,7 @@ } }, { - "id": 4238, + "id": 3470, "properties": { "east": "up", "north": "none", @@ -225653,7 +215898,7 @@ } }, { - "id": 4239, + "id": 3471, "properties": { "east": "up", "north": "none", @@ -225663,7 +215908,7 @@ } }, { - "id": 4240, + "id": 3472, "properties": { "east": "up", "north": "none", @@ -225673,7 +215918,7 @@ } }, { - "id": 4241, + "id": 3473, "properties": { "east": "up", "north": "none", @@ -225683,7 +215928,7 @@ } }, { - "id": 4242, + "id": 3474, "properties": { "east": "side", "north": "up", @@ -225693,7 +215938,7 @@ } }, { - "id": 4243, + "id": 3475, "properties": { "east": "side", "north": "up", @@ -225703,7 +215948,7 @@ } }, { - "id": 4244, + "id": 3476, "properties": { "east": "side", "north": "up", @@ -225713,7 +215958,7 @@ } }, { - "id": 4245, + "id": 3477, "properties": { "east": "side", "north": "up", @@ -225723,7 +215968,7 @@ } }, { - "id": 4246, + "id": 3478, "properties": { "east": "side", "north": "up", @@ -225733,7 +215978,7 @@ } }, { - "id": 4247, + "id": 3479, "properties": { "east": "side", "north": "up", @@ -225743,7 +215988,7 @@ } }, { - "id": 4248, + "id": 3480, "properties": { "east": "side", "north": "up", @@ -225753,7 +215998,7 @@ } }, { - "id": 4249, + "id": 3481, "properties": { "east": "side", "north": "up", @@ -225763,7 +216008,7 @@ } }, { - "id": 4250, + "id": 3482, "properties": { "east": "side", "north": "up", @@ -225773,7 +216018,7 @@ } }, { - "id": 4251, + "id": 3483, "properties": { "east": "side", "north": "up", @@ -225783,7 +216028,7 @@ } }, { - "id": 4252, + "id": 3484, "properties": { "east": "side", "north": "up", @@ -225793,7 +216038,7 @@ } }, { - "id": 4253, + "id": 3485, "properties": { "east": "side", "north": "up", @@ -225803,7 +216048,7 @@ } }, { - "id": 4254, + "id": 3486, "properties": { "east": "side", "north": "up", @@ -225813,7 +216058,7 @@ } }, { - "id": 4255, + "id": 3487, "properties": { "east": "side", "north": "up", @@ -225823,7 +216068,7 @@ } }, { - "id": 4256, + "id": 3488, "properties": { "east": "side", "north": "up", @@ -225833,7 +216078,7 @@ } }, { - "id": 4257, + "id": 3489, "properties": { "east": "side", "north": "up", @@ -225843,7 +216088,7 @@ } }, { - "id": 4258, + "id": 3490, "properties": { "east": "side", "north": "up", @@ -225853,7 +216098,7 @@ } }, { - "id": 4259, + "id": 3491, "properties": { "east": "side", "north": "up", @@ -225863,7 +216108,7 @@ } }, { - "id": 4260, + "id": 3492, "properties": { "east": "side", "north": "up", @@ -225873,7 +216118,7 @@ } }, { - "id": 4261, + "id": 3493, "properties": { "east": "side", "north": "up", @@ -225883,7 +216128,7 @@ } }, { - "id": 4262, + "id": 3494, "properties": { "east": "side", "north": "up", @@ -225893,7 +216138,7 @@ } }, { - "id": 4263, + "id": 3495, "properties": { "east": "side", "north": "up", @@ -225903,7 +216148,7 @@ } }, { - "id": 4264, + "id": 3496, "properties": { "east": "side", "north": "up", @@ -225913,7 +216158,7 @@ } }, { - "id": 4265, + "id": 3497, "properties": { "east": "side", "north": "up", @@ -225923,7 +216168,7 @@ } }, { - "id": 4266, + "id": 3498, "properties": { "east": "side", "north": "up", @@ -225933,7 +216178,7 @@ } }, { - "id": 4267, + "id": 3499, "properties": { "east": "side", "north": "up", @@ -225943,7 +216188,7 @@ } }, { - "id": 4268, + "id": 3500, "properties": { "east": "side", "north": "up", @@ -225953,7 +216198,7 @@ } }, { - "id": 4269, + "id": 3501, "properties": { "east": "side", "north": "up", @@ -225963,7 +216208,7 @@ } }, { - "id": 4270, + "id": 3502, "properties": { "east": "side", "north": "up", @@ -225973,7 +216218,7 @@ } }, { - "id": 4271, + "id": 3503, "properties": { "east": "side", "north": "up", @@ -225983,7 +216228,7 @@ } }, { - "id": 4272, + "id": 3504, "properties": { "east": "side", "north": "up", @@ -225993,7 +216238,7 @@ } }, { - "id": 4273, + "id": 3505, "properties": { "east": "side", "north": "up", @@ -226003,7 +216248,7 @@ } }, { - "id": 4274, + "id": 3506, "properties": { "east": "side", "north": "up", @@ -226013,7 +216258,7 @@ } }, { - "id": 4275, + "id": 3507, "properties": { "east": "side", "north": "up", @@ -226023,7 +216268,7 @@ } }, { - "id": 4276, + "id": 3508, "properties": { "east": "side", "north": "up", @@ -226033,7 +216278,7 @@ } }, { - "id": 4277, + "id": 3509, "properties": { "east": "side", "north": "up", @@ -226043,7 +216288,7 @@ } }, { - "id": 4278, + "id": 3510, "properties": { "east": "side", "north": "up", @@ -226053,7 +216298,7 @@ } }, { - "id": 4279, + "id": 3511, "properties": { "east": "side", "north": "up", @@ -226063,7 +216308,7 @@ } }, { - "id": 4280, + "id": 3512, "properties": { "east": "side", "north": "up", @@ -226073,7 +216318,7 @@ } }, { - "id": 4281, + "id": 3513, "properties": { "east": "side", "north": "up", @@ -226083,7 +216328,7 @@ } }, { - "id": 4282, + "id": 3514, "properties": { "east": "side", "north": "up", @@ -226093,7 +216338,7 @@ } }, { - "id": 4283, + "id": 3515, "properties": { "east": "side", "north": "up", @@ -226103,7 +216348,7 @@ } }, { - "id": 4284, + "id": 3516, "properties": { "east": "side", "north": "up", @@ -226113,7 +216358,7 @@ } }, { - "id": 4285, + "id": 3517, "properties": { "east": "side", "north": "up", @@ -226123,7 +216368,7 @@ } }, { - "id": 4286, + "id": 3518, "properties": { "east": "side", "north": "up", @@ -226133,7 +216378,7 @@ } }, { - "id": 4287, + "id": 3519, "properties": { "east": "side", "north": "up", @@ -226143,7 +216388,7 @@ } }, { - "id": 4288, + "id": 3520, "properties": { "east": "side", "north": "up", @@ -226153,7 +216398,7 @@ } }, { - "id": 4289, + "id": 3521, "properties": { "east": "side", "north": "up", @@ -226163,7 +216408,7 @@ } }, { - "id": 4290, + "id": 3522, "properties": { "east": "side", "north": "up", @@ -226173,7 +216418,7 @@ } }, { - "id": 4291, + "id": 3523, "properties": { "east": "side", "north": "up", @@ -226183,7 +216428,7 @@ } }, { - "id": 4292, + "id": 3524, "properties": { "east": "side", "north": "up", @@ -226193,7 +216438,7 @@ } }, { - "id": 4293, + "id": 3525, "properties": { "east": "side", "north": "up", @@ -226203,7 +216448,7 @@ } }, { - "id": 4294, + "id": 3526, "properties": { "east": "side", "north": "up", @@ -226213,7 +216458,7 @@ } }, { - "id": 4295, + "id": 3527, "properties": { "east": "side", "north": "up", @@ -226223,7 +216468,7 @@ } }, { - "id": 4296, + "id": 3528, "properties": { "east": "side", "north": "up", @@ -226233,7 +216478,7 @@ } }, { - "id": 4297, + "id": 3529, "properties": { "east": "side", "north": "up", @@ -226243,7 +216488,7 @@ } }, { - "id": 4298, + "id": 3530, "properties": { "east": "side", "north": "up", @@ -226253,7 +216498,7 @@ } }, { - "id": 4299, + "id": 3531, "properties": { "east": "side", "north": "up", @@ -226263,7 +216508,7 @@ } }, { - "id": 4300, + "id": 3532, "properties": { "east": "side", "north": "up", @@ -226273,7 +216518,7 @@ } }, { - "id": 4301, + "id": 3533, "properties": { "east": "side", "north": "up", @@ -226283,7 +216528,7 @@ } }, { - "id": 4302, + "id": 3534, "properties": { "east": "side", "north": "up", @@ -226293,7 +216538,7 @@ } }, { - "id": 4303, + "id": 3535, "properties": { "east": "side", "north": "up", @@ -226303,7 +216548,7 @@ } }, { - "id": 4304, + "id": 3536, "properties": { "east": "side", "north": "up", @@ -226313,7 +216558,7 @@ } }, { - "id": 4305, + "id": 3537, "properties": { "east": "side", "north": "up", @@ -226323,7 +216568,7 @@ } }, { - "id": 4306, + "id": 3538, "properties": { "east": "side", "north": "up", @@ -226333,7 +216578,7 @@ } }, { - "id": 4307, + "id": 3539, "properties": { "east": "side", "north": "up", @@ -226343,7 +216588,7 @@ } }, { - "id": 4308, + "id": 3540, "properties": { "east": "side", "north": "up", @@ -226353,7 +216598,7 @@ } }, { - "id": 4309, + "id": 3541, "properties": { "east": "side", "north": "up", @@ -226363,7 +216608,7 @@ } }, { - "id": 4310, + "id": 3542, "properties": { "east": "side", "north": "up", @@ -226373,7 +216618,7 @@ } }, { - "id": 4311, + "id": 3543, "properties": { "east": "side", "north": "up", @@ -226383,7 +216628,7 @@ } }, { - "id": 4312, + "id": 3544, "properties": { "east": "side", "north": "up", @@ -226393,7 +216638,7 @@ } }, { - "id": 4313, + "id": 3545, "properties": { "east": "side", "north": "up", @@ -226403,7 +216648,7 @@ } }, { - "id": 4314, + "id": 3546, "properties": { "east": "side", "north": "up", @@ -226413,7 +216658,7 @@ } }, { - "id": 4315, + "id": 3547, "properties": { "east": "side", "north": "up", @@ -226423,7 +216668,7 @@ } }, { - "id": 4316, + "id": 3548, "properties": { "east": "side", "north": "up", @@ -226433,7 +216678,7 @@ } }, { - "id": 4317, + "id": 3549, "properties": { "east": "side", "north": "up", @@ -226443,7 +216688,7 @@ } }, { - "id": 4318, + "id": 3550, "properties": { "east": "side", "north": "up", @@ -226453,7 +216698,7 @@ } }, { - "id": 4319, + "id": 3551, "properties": { "east": "side", "north": "up", @@ -226463,7 +216708,7 @@ } }, { - "id": 4320, + "id": 3552, "properties": { "east": "side", "north": "up", @@ -226473,7 +216718,7 @@ } }, { - "id": 4321, + "id": 3553, "properties": { "east": "side", "north": "up", @@ -226483,7 +216728,7 @@ } }, { - "id": 4322, + "id": 3554, "properties": { "east": "side", "north": "up", @@ -226493,7 +216738,7 @@ } }, { - "id": 4323, + "id": 3555, "properties": { "east": "side", "north": "up", @@ -226503,7 +216748,7 @@ } }, { - "id": 4324, + "id": 3556, "properties": { "east": "side", "north": "up", @@ -226513,7 +216758,7 @@ } }, { - "id": 4325, + "id": 3557, "properties": { "east": "side", "north": "up", @@ -226523,7 +216768,7 @@ } }, { - "id": 4326, + "id": 3558, "properties": { "east": "side", "north": "up", @@ -226533,7 +216778,7 @@ } }, { - "id": 4327, + "id": 3559, "properties": { "east": "side", "north": "up", @@ -226543,7 +216788,7 @@ } }, { - "id": 4328, + "id": 3560, "properties": { "east": "side", "north": "up", @@ -226553,7 +216798,7 @@ } }, { - "id": 4329, + "id": 3561, "properties": { "east": "side", "north": "up", @@ -226563,7 +216808,7 @@ } }, { - "id": 4330, + "id": 3562, "properties": { "east": "side", "north": "up", @@ -226573,7 +216818,7 @@ } }, { - "id": 4331, + "id": 3563, "properties": { "east": "side", "north": "up", @@ -226583,7 +216828,7 @@ } }, { - "id": 4332, + "id": 3564, "properties": { "east": "side", "north": "up", @@ -226593,7 +216838,7 @@ } }, { - "id": 4333, + "id": 3565, "properties": { "east": "side", "north": "up", @@ -226603,7 +216848,7 @@ } }, { - "id": 4334, + "id": 3566, "properties": { "east": "side", "north": "up", @@ -226613,7 +216858,7 @@ } }, { - "id": 4335, + "id": 3567, "properties": { "east": "side", "north": "up", @@ -226623,7 +216868,7 @@ } }, { - "id": 4336, + "id": 3568, "properties": { "east": "side", "north": "up", @@ -226633,7 +216878,7 @@ } }, { - "id": 4337, + "id": 3569, "properties": { "east": "side", "north": "up", @@ -226643,7 +216888,7 @@ } }, { - "id": 4338, + "id": 3570, "properties": { "east": "side", "north": "up", @@ -226653,7 +216898,7 @@ } }, { - "id": 4339, + "id": 3571, "properties": { "east": "side", "north": "up", @@ -226663,7 +216908,7 @@ } }, { - "id": 4340, + "id": 3572, "properties": { "east": "side", "north": "up", @@ -226673,7 +216918,7 @@ } }, { - "id": 4341, + "id": 3573, "properties": { "east": "side", "north": "up", @@ -226683,7 +216928,7 @@ } }, { - "id": 4342, + "id": 3574, "properties": { "east": "side", "north": "up", @@ -226693,7 +216938,7 @@ } }, { - "id": 4343, + "id": 3575, "properties": { "east": "side", "north": "up", @@ -226703,7 +216948,7 @@ } }, { - "id": 4344, + "id": 3576, "properties": { "east": "side", "north": "up", @@ -226713,7 +216958,7 @@ } }, { - "id": 4345, + "id": 3577, "properties": { "east": "side", "north": "up", @@ -226723,7 +216968,7 @@ } }, { - "id": 4346, + "id": 3578, "properties": { "east": "side", "north": "up", @@ -226733,7 +216978,7 @@ } }, { - "id": 4347, + "id": 3579, "properties": { "east": "side", "north": "up", @@ -226743,7 +216988,7 @@ } }, { - "id": 4348, + "id": 3580, "properties": { "east": "side", "north": "up", @@ -226753,7 +216998,7 @@ } }, { - "id": 4349, + "id": 3581, "properties": { "east": "side", "north": "up", @@ -226763,7 +217008,7 @@ } }, { - "id": 4350, + "id": 3582, "properties": { "east": "side", "north": "up", @@ -226773,7 +217018,7 @@ } }, { - "id": 4351, + "id": 3583, "properties": { "east": "side", "north": "up", @@ -226783,7 +217028,7 @@ } }, { - "id": 4352, + "id": 3584, "properties": { "east": "side", "north": "up", @@ -226793,7 +217038,7 @@ } }, { - "id": 4353, + "id": 3585, "properties": { "east": "side", "north": "up", @@ -226803,7 +217048,7 @@ } }, { - "id": 4354, + "id": 3586, "properties": { "east": "side", "north": "up", @@ -226813,7 +217058,7 @@ } }, { - "id": 4355, + "id": 3587, "properties": { "east": "side", "north": "up", @@ -226823,7 +217068,7 @@ } }, { - "id": 4356, + "id": 3588, "properties": { "east": "side", "north": "up", @@ -226833,7 +217078,7 @@ } }, { - "id": 4357, + "id": 3589, "properties": { "east": "side", "north": "up", @@ -226843,7 +217088,7 @@ } }, { - "id": 4358, + "id": 3590, "properties": { "east": "side", "north": "up", @@ -226853,7 +217098,7 @@ } }, { - "id": 4359, + "id": 3591, "properties": { "east": "side", "north": "up", @@ -226863,7 +217108,7 @@ } }, { - "id": 4360, + "id": 3592, "properties": { "east": "side", "north": "up", @@ -226873,7 +217118,7 @@ } }, { - "id": 4361, + "id": 3593, "properties": { "east": "side", "north": "up", @@ -226883,7 +217128,7 @@ } }, { - "id": 4362, + "id": 3594, "properties": { "east": "side", "north": "up", @@ -226893,7 +217138,7 @@ } }, { - "id": 4363, + "id": 3595, "properties": { "east": "side", "north": "up", @@ -226903,7 +217148,7 @@ } }, { - "id": 4364, + "id": 3596, "properties": { "east": "side", "north": "up", @@ -226913,7 +217158,7 @@ } }, { - "id": 4365, + "id": 3597, "properties": { "east": "side", "north": "up", @@ -226923,7 +217168,7 @@ } }, { - "id": 4366, + "id": 3598, "properties": { "east": "side", "north": "up", @@ -226933,7 +217178,7 @@ } }, { - "id": 4367, + "id": 3599, "properties": { "east": "side", "north": "up", @@ -226943,7 +217188,7 @@ } }, { - "id": 4368, + "id": 3600, "properties": { "east": "side", "north": "up", @@ -226953,7 +217198,7 @@ } }, { - "id": 4369, + "id": 3601, "properties": { "east": "side", "north": "up", @@ -226963,7 +217208,7 @@ } }, { - "id": 4370, + "id": 3602, "properties": { "east": "side", "north": "up", @@ -226973,7 +217218,7 @@ } }, { - "id": 4371, + "id": 3603, "properties": { "east": "side", "north": "up", @@ -226983,7 +217228,7 @@ } }, { - "id": 4372, + "id": 3604, "properties": { "east": "side", "north": "up", @@ -226993,7 +217238,7 @@ } }, { - "id": 4373, + "id": 3605, "properties": { "east": "side", "north": "up", @@ -227003,7 +217248,7 @@ } }, { - "id": 4374, + "id": 3606, "properties": { "east": "side", "north": "up", @@ -227013,7 +217258,7 @@ } }, { - "id": 4375, + "id": 3607, "properties": { "east": "side", "north": "up", @@ -227023,7 +217268,7 @@ } }, { - "id": 4376, + "id": 3608, "properties": { "east": "side", "north": "up", @@ -227033,7 +217278,7 @@ } }, { - "id": 4377, + "id": 3609, "properties": { "east": "side", "north": "up", @@ -227043,7 +217288,7 @@ } }, { - "id": 4378, + "id": 3610, "properties": { "east": "side", "north": "up", @@ -227053,7 +217298,7 @@ } }, { - "id": 4379, + "id": 3611, "properties": { "east": "side", "north": "up", @@ -227063,7 +217308,7 @@ } }, { - "id": 4380, + "id": 3612, "properties": { "east": "side", "north": "up", @@ -227073,7 +217318,7 @@ } }, { - "id": 4381, + "id": 3613, "properties": { "east": "side", "north": "up", @@ -227083,7 +217328,7 @@ } }, { - "id": 4382, + "id": 3614, "properties": { "east": "side", "north": "up", @@ -227093,7 +217338,7 @@ } }, { - "id": 4383, + "id": 3615, "properties": { "east": "side", "north": "up", @@ -227103,7 +217348,7 @@ } }, { - "id": 4384, + "id": 3616, "properties": { "east": "side", "north": "up", @@ -227113,7 +217358,7 @@ } }, { - "id": 4385, + "id": 3617, "properties": { "east": "side", "north": "up", @@ -227123,7 +217368,7 @@ } }, { - "id": 4386, + "id": 3618, "properties": { "east": "side", "north": "side", @@ -227133,7 +217378,7 @@ } }, { - "id": 4387, + "id": 3619, "properties": { "east": "side", "north": "side", @@ -227143,7 +217388,7 @@ } }, { - "id": 4388, + "id": 3620, "properties": { "east": "side", "north": "side", @@ -227153,7 +217398,7 @@ } }, { - "id": 4389, + "id": 3621, "properties": { "east": "side", "north": "side", @@ -227163,7 +217408,7 @@ } }, { - "id": 4390, + "id": 3622, "properties": { "east": "side", "north": "side", @@ -227173,7 +217418,7 @@ } }, { - "id": 4391, + "id": 3623, "properties": { "east": "side", "north": "side", @@ -227183,7 +217428,7 @@ } }, { - "id": 4392, + "id": 3624, "properties": { "east": "side", "north": "side", @@ -227193,7 +217438,7 @@ } }, { - "id": 4393, + "id": 3625, "properties": { "east": "side", "north": "side", @@ -227203,7 +217448,7 @@ } }, { - "id": 4394, + "id": 3626, "properties": { "east": "side", "north": "side", @@ -227213,7 +217458,7 @@ } }, { - "id": 4395, + "id": 3627, "properties": { "east": "side", "north": "side", @@ -227223,7 +217468,7 @@ } }, { - "id": 4396, + "id": 3628, "properties": { "east": "side", "north": "side", @@ -227233,7 +217478,7 @@ } }, { - "id": 4397, + "id": 3629, "properties": { "east": "side", "north": "side", @@ -227243,7 +217488,7 @@ } }, { - "id": 4398, + "id": 3630, "properties": { "east": "side", "north": "side", @@ -227253,7 +217498,7 @@ } }, { - "id": 4399, + "id": 3631, "properties": { "east": "side", "north": "side", @@ -227263,7 +217508,7 @@ } }, { - "id": 4400, + "id": 3632, "properties": { "east": "side", "north": "side", @@ -227273,7 +217518,7 @@ } }, { - "id": 4401, + "id": 3633, "properties": { "east": "side", "north": "side", @@ -227283,7 +217528,7 @@ } }, { - "id": 4402, + "id": 3634, "properties": { "east": "side", "north": "side", @@ -227293,7 +217538,7 @@ } }, { - "id": 4403, + "id": 3635, "properties": { "east": "side", "north": "side", @@ -227303,7 +217548,7 @@ } }, { - "id": 4404, + "id": 3636, "properties": { "east": "side", "north": "side", @@ -227313,7 +217558,7 @@ } }, { - "id": 4405, + "id": 3637, "properties": { "east": "side", "north": "side", @@ -227323,7 +217568,7 @@ } }, { - "id": 4406, + "id": 3638, "properties": { "east": "side", "north": "side", @@ -227333,7 +217578,7 @@ } }, { - "id": 4407, + "id": 3639, "properties": { "east": "side", "north": "side", @@ -227343,7 +217588,7 @@ } }, { - "id": 4408, + "id": 3640, "properties": { "east": "side", "north": "side", @@ -227353,7 +217598,7 @@ } }, { - "id": 4409, + "id": 3641, "properties": { "east": "side", "north": "side", @@ -227363,7 +217608,7 @@ } }, { - "id": 4410, + "id": 3642, "properties": { "east": "side", "north": "side", @@ -227373,7 +217618,7 @@ } }, { - "id": 4411, + "id": 3643, "properties": { "east": "side", "north": "side", @@ -227383,7 +217628,7 @@ } }, { - "id": 4412, + "id": 3644, "properties": { "east": "side", "north": "side", @@ -227393,7 +217638,7 @@ } }, { - "id": 4413, + "id": 3645, "properties": { "east": "side", "north": "side", @@ -227403,7 +217648,7 @@ } }, { - "id": 4414, + "id": 3646, "properties": { "east": "side", "north": "side", @@ -227413,7 +217658,7 @@ } }, { - "id": 4415, + "id": 3647, "properties": { "east": "side", "north": "side", @@ -227423,7 +217668,7 @@ } }, { - "id": 4416, + "id": 3648, "properties": { "east": "side", "north": "side", @@ -227433,7 +217678,7 @@ } }, { - "id": 4417, + "id": 3649, "properties": { "east": "side", "north": "side", @@ -227443,7 +217688,7 @@ } }, { - "id": 4418, + "id": 3650, "properties": { "east": "side", "north": "side", @@ -227453,7 +217698,7 @@ } }, { - "id": 4419, + "id": 3651, "properties": { "east": "side", "north": "side", @@ -227463,7 +217708,7 @@ } }, { - "id": 4420, + "id": 3652, "properties": { "east": "side", "north": "side", @@ -227473,7 +217718,7 @@ } }, { - "id": 4421, + "id": 3653, "properties": { "east": "side", "north": "side", @@ -227483,7 +217728,7 @@ } }, { - "id": 4422, + "id": 3654, "properties": { "east": "side", "north": "side", @@ -227493,7 +217738,7 @@ } }, { - "id": 4423, + "id": 3655, "properties": { "east": "side", "north": "side", @@ -227503,7 +217748,7 @@ } }, { - "id": 4424, + "id": 3656, "properties": { "east": "side", "north": "side", @@ -227513,7 +217758,7 @@ } }, { - "id": 4425, + "id": 3657, "properties": { "east": "side", "north": "side", @@ -227523,7 +217768,7 @@ } }, { - "id": 4426, + "id": 3658, "properties": { "east": "side", "north": "side", @@ -227533,7 +217778,7 @@ } }, { - "id": 4427, + "id": 3659, "properties": { "east": "side", "north": "side", @@ -227543,7 +217788,7 @@ } }, { - "id": 4428, + "id": 3660, "properties": { "east": "side", "north": "side", @@ -227553,7 +217798,7 @@ } }, { - "id": 4429, + "id": 3661, "properties": { "east": "side", "north": "side", @@ -227563,7 +217808,7 @@ } }, { - "id": 4430, + "id": 3662, "properties": { "east": "side", "north": "side", @@ -227573,7 +217818,7 @@ } }, { - "id": 4431, + "id": 3663, "properties": { "east": "side", "north": "side", @@ -227583,7 +217828,7 @@ } }, { - "id": 4432, + "id": 3664, "properties": { "east": "side", "north": "side", @@ -227593,7 +217838,7 @@ } }, { - "id": 4433, + "id": 3665, "properties": { "east": "side", "north": "side", @@ -227603,7 +217848,7 @@ } }, { - "id": 4434, + "id": 3666, "properties": { "east": "side", "north": "side", @@ -227613,7 +217858,7 @@ } }, { - "id": 4435, + "id": 3667, "properties": { "east": "side", "north": "side", @@ -227623,7 +217868,7 @@ } }, { - "id": 4436, + "id": 3668, "properties": { "east": "side", "north": "side", @@ -227633,7 +217878,7 @@ } }, { - "id": 4437, + "id": 3669, "properties": { "east": "side", "north": "side", @@ -227643,7 +217888,7 @@ } }, { - "id": 4438, + "id": 3670, "properties": { "east": "side", "north": "side", @@ -227653,7 +217898,7 @@ } }, { - "id": 4439, + "id": 3671, "properties": { "east": "side", "north": "side", @@ -227663,7 +217908,7 @@ } }, { - "id": 4440, + "id": 3672, "properties": { "east": "side", "north": "side", @@ -227673,7 +217918,7 @@ } }, { - "id": 4441, + "id": 3673, "properties": { "east": "side", "north": "side", @@ -227683,7 +217928,7 @@ } }, { - "id": 4442, + "id": 3674, "properties": { "east": "side", "north": "side", @@ -227693,7 +217938,7 @@ } }, { - "id": 4443, + "id": 3675, "properties": { "east": "side", "north": "side", @@ -227703,7 +217948,7 @@ } }, { - "id": 4444, + "id": 3676, "properties": { "east": "side", "north": "side", @@ -227713,7 +217958,7 @@ } }, { - "id": 4445, + "id": 3677, "properties": { "east": "side", "north": "side", @@ -227723,7 +217968,7 @@ } }, { - "id": 4446, + "id": 3678, "properties": { "east": "side", "north": "side", @@ -227733,7 +217978,7 @@ } }, { - "id": 4447, + "id": 3679, "properties": { "east": "side", "north": "side", @@ -227743,7 +217988,7 @@ } }, { - "id": 4448, + "id": 3680, "properties": { "east": "side", "north": "side", @@ -227753,7 +217998,7 @@ } }, { - "id": 4449, + "id": 3681, "properties": { "east": "side", "north": "side", @@ -227763,7 +218008,7 @@ } }, { - "id": 4450, + "id": 3682, "properties": { "east": "side", "north": "side", @@ -227773,7 +218018,7 @@ } }, { - "id": 4451, + "id": 3683, "properties": { "east": "side", "north": "side", @@ -227783,7 +218028,7 @@ } }, { - "id": 4452, + "id": 3684, "properties": { "east": "side", "north": "side", @@ -227793,7 +218038,7 @@ } }, { - "id": 4453, + "id": 3685, "properties": { "east": "side", "north": "side", @@ -227803,7 +218048,7 @@ } }, { - "id": 4454, + "id": 3686, "properties": { "east": "side", "north": "side", @@ -227813,7 +218058,7 @@ } }, { - "id": 4455, + "id": 3687, "properties": { "east": "side", "north": "side", @@ -227823,7 +218068,7 @@ } }, { - "id": 4456, + "id": 3688, "properties": { "east": "side", "north": "side", @@ -227833,7 +218078,7 @@ } }, { - "id": 4457, + "id": 3689, "properties": { "east": "side", "north": "side", @@ -227843,7 +218088,7 @@ } }, { - "id": 4458, + "id": 3690, "properties": { "east": "side", "north": "side", @@ -227853,7 +218098,7 @@ } }, { - "id": 4459, + "id": 3691, "properties": { "east": "side", "north": "side", @@ -227863,7 +218108,7 @@ } }, { - "id": 4460, + "id": 3692, "properties": { "east": "side", "north": "side", @@ -227873,7 +218118,7 @@ } }, { - "id": 4461, + "id": 3693, "properties": { "east": "side", "north": "side", @@ -227883,7 +218128,7 @@ } }, { - "id": 4462, + "id": 3694, "properties": { "east": "side", "north": "side", @@ -227893,7 +218138,7 @@ } }, { - "id": 4463, + "id": 3695, "properties": { "east": "side", "north": "side", @@ -227903,7 +218148,7 @@ } }, { - "id": 4464, + "id": 3696, "properties": { "east": "side", "north": "side", @@ -227913,7 +218158,7 @@ } }, { - "id": 4465, + "id": 3697, "properties": { "east": "side", "north": "side", @@ -227923,7 +218168,7 @@ } }, { - "id": 4466, + "id": 3698, "properties": { "east": "side", "north": "side", @@ -227933,7 +218178,7 @@ } }, { - "id": 4467, + "id": 3699, "properties": { "east": "side", "north": "side", @@ -227943,7 +218188,7 @@ } }, { - "id": 4468, + "id": 3700, "properties": { "east": "side", "north": "side", @@ -227953,7 +218198,7 @@ } }, { - "id": 4469, + "id": 3701, "properties": { "east": "side", "north": "side", @@ -227963,7 +218208,7 @@ } }, { - "id": 4470, + "id": 3702, "properties": { "east": "side", "north": "side", @@ -227973,7 +218218,7 @@ } }, { - "id": 4471, + "id": 3703, "properties": { "east": "side", "north": "side", @@ -227983,7 +218228,7 @@ } }, { - "id": 4472, + "id": 3704, "properties": { "east": "side", "north": "side", @@ -227993,7 +218238,7 @@ } }, { - "id": 4473, + "id": 3705, "properties": { "east": "side", "north": "side", @@ -228003,7 +218248,7 @@ } }, { - "id": 4474, + "id": 3706, "properties": { "east": "side", "north": "side", @@ -228013,7 +218258,7 @@ } }, { - "id": 4475, + "id": 3707, "properties": { "east": "side", "north": "side", @@ -228023,7 +218268,7 @@ } }, { - "id": 4476, + "id": 3708, "properties": { "east": "side", "north": "side", @@ -228033,7 +218278,7 @@ } }, { - "id": 4477, + "id": 3709, "properties": { "east": "side", "north": "side", @@ -228043,7 +218288,7 @@ } }, { - "id": 4478, + "id": 3710, "properties": { "east": "side", "north": "side", @@ -228053,7 +218298,7 @@ } }, { - "id": 4479, + "id": 3711, "properties": { "east": "side", "north": "side", @@ -228063,7 +218308,7 @@ } }, { - "id": 4480, + "id": 3712, "properties": { "east": "side", "north": "side", @@ -228073,7 +218318,7 @@ } }, { - "id": 4481, + "id": 3713, "properties": { "east": "side", "north": "side", @@ -228083,7 +218328,7 @@ } }, { - "id": 4482, + "id": 3714, "properties": { "east": "side", "north": "side", @@ -228093,7 +218338,7 @@ } }, { - "id": 4483, + "id": 3715, "properties": { "east": "side", "north": "side", @@ -228103,7 +218348,7 @@ } }, { - "id": 4484, + "id": 3716, "properties": { "east": "side", "north": "side", @@ -228113,7 +218358,7 @@ } }, { - "id": 4485, + "id": 3717, "properties": { "east": "side", "north": "side", @@ -228123,7 +218368,7 @@ } }, { - "id": 4486, + "id": 3718, "properties": { "east": "side", "north": "side", @@ -228133,7 +218378,7 @@ } }, { - "id": 4487, + "id": 3719, "properties": { "east": "side", "north": "side", @@ -228143,7 +218388,7 @@ } }, { - "id": 4488, + "id": 3720, "properties": { "east": "side", "north": "side", @@ -228153,7 +218398,7 @@ } }, { - "id": 4489, + "id": 3721, "properties": { "east": "side", "north": "side", @@ -228163,7 +218408,7 @@ } }, { - "id": 4490, + "id": 3722, "properties": { "east": "side", "north": "side", @@ -228173,7 +218418,7 @@ } }, { - "id": 4491, + "id": 3723, "properties": { "east": "side", "north": "side", @@ -228183,7 +218428,7 @@ } }, { - "id": 4492, + "id": 3724, "properties": { "east": "side", "north": "side", @@ -228193,7 +218438,7 @@ } }, { - "id": 4493, + "id": 3725, "properties": { "east": "side", "north": "side", @@ -228203,7 +218448,7 @@ } }, { - "id": 4494, + "id": 3726, "properties": { "east": "side", "north": "side", @@ -228213,7 +218458,7 @@ } }, { - "id": 4495, + "id": 3727, "properties": { "east": "side", "north": "side", @@ -228223,7 +218468,7 @@ } }, { - "id": 4496, + "id": 3728, "properties": { "east": "side", "north": "side", @@ -228233,7 +218478,7 @@ } }, { - "id": 4497, + "id": 3729, "properties": { "east": "side", "north": "side", @@ -228243,7 +218488,7 @@ } }, { - "id": 4498, + "id": 3730, "properties": { "east": "side", "north": "side", @@ -228253,7 +218498,7 @@ } }, { - "id": 4499, + "id": 3731, "properties": { "east": "side", "north": "side", @@ -228263,7 +218508,7 @@ } }, { - "id": 4500, + "id": 3732, "properties": { "east": "side", "north": "side", @@ -228273,7 +218518,7 @@ } }, { - "id": 4501, + "id": 3733, "properties": { "east": "side", "north": "side", @@ -228283,7 +218528,7 @@ } }, { - "id": 4502, + "id": 3734, "properties": { "east": "side", "north": "side", @@ -228293,7 +218538,7 @@ } }, { - "id": 4503, + "id": 3735, "properties": { "east": "side", "north": "side", @@ -228303,7 +218548,7 @@ } }, { - "id": 4504, + "id": 3736, "properties": { "east": "side", "north": "side", @@ -228313,7 +218558,7 @@ } }, { - "id": 4505, + "id": 3737, "properties": { "east": "side", "north": "side", @@ -228323,7 +218568,7 @@ } }, { - "id": 4506, + "id": 3738, "properties": { "east": "side", "north": "side", @@ -228333,7 +218578,7 @@ } }, { - "id": 4507, + "id": 3739, "properties": { "east": "side", "north": "side", @@ -228343,7 +218588,7 @@ } }, { - "id": 4508, + "id": 3740, "properties": { "east": "side", "north": "side", @@ -228353,7 +218598,7 @@ } }, { - "id": 4509, + "id": 3741, "properties": { "east": "side", "north": "side", @@ -228363,7 +218608,7 @@ } }, { - "id": 4510, + "id": 3742, "properties": { "east": "side", "north": "side", @@ -228373,7 +218618,7 @@ } }, { - "id": 4511, + "id": 3743, "properties": { "east": "side", "north": "side", @@ -228383,7 +218628,7 @@ } }, { - "id": 4512, + "id": 3744, "properties": { "east": "side", "north": "side", @@ -228393,7 +218638,7 @@ } }, { - "id": 4513, + "id": 3745, "properties": { "east": "side", "north": "side", @@ -228403,7 +218648,7 @@ } }, { - "id": 4514, + "id": 3746, "properties": { "east": "side", "north": "side", @@ -228413,7 +218658,7 @@ } }, { - "id": 4515, + "id": 3747, "properties": { "east": "side", "north": "side", @@ -228423,7 +218668,7 @@ } }, { - "id": 4516, + "id": 3748, "properties": { "east": "side", "north": "side", @@ -228433,7 +218678,7 @@ } }, { - "id": 4517, + "id": 3749, "properties": { "east": "side", "north": "side", @@ -228443,7 +218688,7 @@ } }, { - "id": 4518, + "id": 3750, "properties": { "east": "side", "north": "side", @@ -228453,7 +218698,7 @@ } }, { - "id": 4519, + "id": 3751, "properties": { "east": "side", "north": "side", @@ -228463,7 +218708,7 @@ } }, { - "id": 4520, + "id": 3752, "properties": { "east": "side", "north": "side", @@ -228473,7 +218718,7 @@ } }, { - "id": 4521, + "id": 3753, "properties": { "east": "side", "north": "side", @@ -228483,7 +218728,7 @@ } }, { - "id": 4522, + "id": 3754, "properties": { "east": "side", "north": "side", @@ -228493,7 +218738,7 @@ } }, { - "id": 4523, + "id": 3755, "properties": { "east": "side", "north": "side", @@ -228503,7 +218748,7 @@ } }, { - "id": 4524, + "id": 3756, "properties": { "east": "side", "north": "side", @@ -228513,7 +218758,7 @@ } }, { - "id": 4525, + "id": 3757, "properties": { "east": "side", "north": "side", @@ -228523,7 +218768,7 @@ } }, { - "id": 4526, + "id": 3758, "properties": { "east": "side", "north": "side", @@ -228533,7 +218778,7 @@ } }, { - "id": 4527, + "id": 3759, "properties": { "east": "side", "north": "side", @@ -228543,7 +218788,7 @@ } }, { - "id": 4528, + "id": 3760, "properties": { "east": "side", "north": "side", @@ -228553,7 +218798,7 @@ } }, { - "id": 4529, + "id": 3761, "properties": { "east": "side", "north": "side", @@ -228563,7 +218808,7 @@ } }, { - "id": 4530, + "id": 3762, "properties": { "east": "side", "north": "none", @@ -228573,7 +218818,7 @@ } }, { - "id": 4531, + "id": 3763, "properties": { "east": "side", "north": "none", @@ -228583,7 +218828,7 @@ } }, { - "id": 4532, + "id": 3764, "properties": { "east": "side", "north": "none", @@ -228593,7 +218838,7 @@ } }, { - "id": 4533, + "id": 3765, "properties": { "east": "side", "north": "none", @@ -228603,7 +218848,7 @@ } }, { - "id": 4534, + "id": 3766, "properties": { "east": "side", "north": "none", @@ -228613,7 +218858,7 @@ } }, { - "id": 4535, + "id": 3767, "properties": { "east": "side", "north": "none", @@ -228623,7 +218868,7 @@ } }, { - "id": 4536, + "id": 3768, "properties": { "east": "side", "north": "none", @@ -228633,7 +218878,7 @@ } }, { - "id": 4537, + "id": 3769, "properties": { "east": "side", "north": "none", @@ -228643,7 +218888,7 @@ } }, { - "id": 4538, + "id": 3770, "properties": { "east": "side", "north": "none", @@ -228653,7 +218898,7 @@ } }, { - "id": 4539, + "id": 3771, "properties": { "east": "side", "north": "none", @@ -228663,7 +218908,7 @@ } }, { - "id": 4540, + "id": 3772, "properties": { "east": "side", "north": "none", @@ -228673,7 +218918,7 @@ } }, { - "id": 4541, + "id": 3773, "properties": { "east": "side", "north": "none", @@ -228683,7 +218928,7 @@ } }, { - "id": 4542, + "id": 3774, "properties": { "east": "side", "north": "none", @@ -228693,7 +218938,7 @@ } }, { - "id": 4543, + "id": 3775, "properties": { "east": "side", "north": "none", @@ -228703,7 +218948,7 @@ } }, { - "id": 4544, + "id": 3776, "properties": { "east": "side", "north": "none", @@ -228713,7 +218958,7 @@ } }, { - "id": 4545, + "id": 3777, "properties": { "east": "side", "north": "none", @@ -228723,7 +218968,7 @@ } }, { - "id": 4546, + "id": 3778, "properties": { "east": "side", "north": "none", @@ -228733,7 +218978,7 @@ } }, { - "id": 4547, + "id": 3779, "properties": { "east": "side", "north": "none", @@ -228743,7 +218988,7 @@ } }, { - "id": 4548, + "id": 3780, "properties": { "east": "side", "north": "none", @@ -228753,7 +218998,7 @@ } }, { - "id": 4549, + "id": 3781, "properties": { "east": "side", "north": "none", @@ -228763,7 +219008,7 @@ } }, { - "id": 4550, + "id": 3782, "properties": { "east": "side", "north": "none", @@ -228773,7 +219018,7 @@ } }, { - "id": 4551, + "id": 3783, "properties": { "east": "side", "north": "none", @@ -228783,7 +219028,7 @@ } }, { - "id": 4552, + "id": 3784, "properties": { "east": "side", "north": "none", @@ -228793,7 +219038,7 @@ } }, { - "id": 4553, + "id": 3785, "properties": { "east": "side", "north": "none", @@ -228803,7 +219048,7 @@ } }, { - "id": 4554, + "id": 3786, "properties": { "east": "side", "north": "none", @@ -228813,7 +219058,7 @@ } }, { - "id": 4555, + "id": 3787, "properties": { "east": "side", "north": "none", @@ -228823,7 +219068,7 @@ } }, { - "id": 4556, + "id": 3788, "properties": { "east": "side", "north": "none", @@ -228833,7 +219078,7 @@ } }, { - "id": 4557, + "id": 3789, "properties": { "east": "side", "north": "none", @@ -228843,7 +219088,7 @@ } }, { - "id": 4558, + "id": 3790, "properties": { "east": "side", "north": "none", @@ -228853,7 +219098,7 @@ } }, { - "id": 4559, + "id": 3791, "properties": { "east": "side", "north": "none", @@ -228863,7 +219108,7 @@ } }, { - "id": 4560, + "id": 3792, "properties": { "east": "side", "north": "none", @@ -228873,7 +219118,7 @@ } }, { - "id": 4561, + "id": 3793, "properties": { "east": "side", "north": "none", @@ -228883,7 +219128,7 @@ } }, { - "id": 4562, + "id": 3794, "properties": { "east": "side", "north": "none", @@ -228893,7 +219138,7 @@ } }, { - "id": 4563, + "id": 3795, "properties": { "east": "side", "north": "none", @@ -228903,7 +219148,7 @@ } }, { - "id": 4564, + "id": 3796, "properties": { "east": "side", "north": "none", @@ -228913,7 +219158,7 @@ } }, { - "id": 4565, + "id": 3797, "properties": { "east": "side", "north": "none", @@ -228923,7 +219168,7 @@ } }, { - "id": 4566, + "id": 3798, "properties": { "east": "side", "north": "none", @@ -228933,7 +219178,7 @@ } }, { - "id": 4567, + "id": 3799, "properties": { "east": "side", "north": "none", @@ -228943,7 +219188,7 @@ } }, { - "id": 4568, + "id": 3800, "properties": { "east": "side", "north": "none", @@ -228953,7 +219198,7 @@ } }, { - "id": 4569, + "id": 3801, "properties": { "east": "side", "north": "none", @@ -228963,7 +219208,7 @@ } }, { - "id": 4570, + "id": 3802, "properties": { "east": "side", "north": "none", @@ -228973,7 +219218,7 @@ } }, { - "id": 4571, + "id": 3803, "properties": { "east": "side", "north": "none", @@ -228983,7 +219228,7 @@ } }, { - "id": 4572, + "id": 3804, "properties": { "east": "side", "north": "none", @@ -228993,7 +219238,7 @@ } }, { - "id": 4573, + "id": 3805, "properties": { "east": "side", "north": "none", @@ -229003,7 +219248,7 @@ } }, { - "id": 4574, + "id": 3806, "properties": { "east": "side", "north": "none", @@ -229013,7 +219258,7 @@ } }, { - "id": 4575, + "id": 3807, "properties": { "east": "side", "north": "none", @@ -229023,7 +219268,7 @@ } }, { - "id": 4576, + "id": 3808, "properties": { "east": "side", "north": "none", @@ -229033,7 +219278,7 @@ } }, { - "id": 4577, + "id": 3809, "properties": { "east": "side", "north": "none", @@ -229043,7 +219288,7 @@ } }, { - "id": 4578, + "id": 3810, "properties": { "east": "side", "north": "none", @@ -229053,7 +219298,7 @@ } }, { - "id": 4579, + "id": 3811, "properties": { "east": "side", "north": "none", @@ -229063,7 +219308,7 @@ } }, { - "id": 4580, + "id": 3812, "properties": { "east": "side", "north": "none", @@ -229073,7 +219318,7 @@ } }, { - "id": 4581, + "id": 3813, "properties": { "east": "side", "north": "none", @@ -229083,7 +219328,7 @@ } }, { - "id": 4582, + "id": 3814, "properties": { "east": "side", "north": "none", @@ -229093,7 +219338,7 @@ } }, { - "id": 4583, + "id": 3815, "properties": { "east": "side", "north": "none", @@ -229103,7 +219348,7 @@ } }, { - "id": 4584, + "id": 3816, "properties": { "east": "side", "north": "none", @@ -229113,7 +219358,7 @@ } }, { - "id": 4585, + "id": 3817, "properties": { "east": "side", "north": "none", @@ -229123,7 +219368,7 @@ } }, { - "id": 4586, + "id": 3818, "properties": { "east": "side", "north": "none", @@ -229133,7 +219378,7 @@ } }, { - "id": 4587, + "id": 3819, "properties": { "east": "side", "north": "none", @@ -229143,7 +219388,7 @@ } }, { - "id": 4588, + "id": 3820, "properties": { "east": "side", "north": "none", @@ -229153,7 +219398,7 @@ } }, { - "id": 4589, + "id": 3821, "properties": { "east": "side", "north": "none", @@ -229163,7 +219408,7 @@ } }, { - "id": 4590, + "id": 3822, "properties": { "east": "side", "north": "none", @@ -229173,7 +219418,7 @@ } }, { - "id": 4591, + "id": 3823, "properties": { "east": "side", "north": "none", @@ -229183,7 +219428,7 @@ } }, { - "id": 4592, + "id": 3824, "properties": { "east": "side", "north": "none", @@ -229193,7 +219438,7 @@ } }, { - "id": 4593, + "id": 3825, "properties": { "east": "side", "north": "none", @@ -229203,7 +219448,7 @@ } }, { - "id": 4594, + "id": 3826, "properties": { "east": "side", "north": "none", @@ -229213,7 +219458,7 @@ } }, { - "id": 4595, + "id": 3827, "properties": { "east": "side", "north": "none", @@ -229223,7 +219468,7 @@ } }, { - "id": 4596, + "id": 3828, "properties": { "east": "side", "north": "none", @@ -229233,7 +219478,7 @@ } }, { - "id": 4597, + "id": 3829, "properties": { "east": "side", "north": "none", @@ -229243,7 +219488,7 @@ } }, { - "id": 4598, + "id": 3830, "properties": { "east": "side", "north": "none", @@ -229253,7 +219498,7 @@ } }, { - "id": 4599, + "id": 3831, "properties": { "east": "side", "north": "none", @@ -229263,7 +219508,7 @@ } }, { - "id": 4600, + "id": 3832, "properties": { "east": "side", "north": "none", @@ -229273,7 +219518,7 @@ } }, { - "id": 4601, + "id": 3833, "properties": { "east": "side", "north": "none", @@ -229283,7 +219528,7 @@ } }, { - "id": 4602, + "id": 3834, "properties": { "east": "side", "north": "none", @@ -229293,7 +219538,7 @@ } }, { - "id": 4603, + "id": 3835, "properties": { "east": "side", "north": "none", @@ -229303,7 +219548,7 @@ } }, { - "id": 4604, + "id": 3836, "properties": { "east": "side", "north": "none", @@ -229313,7 +219558,7 @@ } }, { - "id": 4605, + "id": 3837, "properties": { "east": "side", "north": "none", @@ -229323,7 +219568,7 @@ } }, { - "id": 4606, + "id": 3838, "properties": { "east": "side", "north": "none", @@ -229333,7 +219578,7 @@ } }, { - "id": 4607, + "id": 3839, "properties": { "east": "side", "north": "none", @@ -229343,7 +219588,7 @@ } }, { - "id": 4608, + "id": 3840, "properties": { "east": "side", "north": "none", @@ -229353,7 +219598,7 @@ } }, { - "id": 4609, + "id": 3841, "properties": { "east": "side", "north": "none", @@ -229363,7 +219608,7 @@ } }, { - "id": 4610, + "id": 3842, "properties": { "east": "side", "north": "none", @@ -229373,7 +219618,7 @@ } }, { - "id": 4611, + "id": 3843, "properties": { "east": "side", "north": "none", @@ -229383,7 +219628,7 @@ } }, { - "id": 4612, + "id": 3844, "properties": { "east": "side", "north": "none", @@ -229393,7 +219638,7 @@ } }, { - "id": 4613, + "id": 3845, "properties": { "east": "side", "north": "none", @@ -229403,7 +219648,7 @@ } }, { - "id": 4614, + "id": 3846, "properties": { "east": "side", "north": "none", @@ -229413,7 +219658,7 @@ } }, { - "id": 4615, + "id": 3847, "properties": { "east": "side", "north": "none", @@ -229423,7 +219668,7 @@ } }, { - "id": 4616, + "id": 3848, "properties": { "east": "side", "north": "none", @@ -229433,7 +219678,7 @@ } }, { - "id": 4617, + "id": 3849, "properties": { "east": "side", "north": "none", @@ -229443,7 +219688,7 @@ } }, { - "id": 4618, + "id": 3850, "properties": { "east": "side", "north": "none", @@ -229453,7 +219698,7 @@ } }, { - "id": 4619, + "id": 3851, "properties": { "east": "side", "north": "none", @@ -229463,7 +219708,7 @@ } }, { - "id": 4620, + "id": 3852, "properties": { "east": "side", "north": "none", @@ -229473,7 +219718,7 @@ } }, { - "id": 4621, + "id": 3853, "properties": { "east": "side", "north": "none", @@ -229483,7 +219728,7 @@ } }, { - "id": 4622, + "id": 3854, "properties": { "east": "side", "north": "none", @@ -229493,7 +219738,7 @@ } }, { - "id": 4623, + "id": 3855, "properties": { "east": "side", "north": "none", @@ -229503,7 +219748,7 @@ } }, { - "id": 4624, + "id": 3856, "properties": { "east": "side", "north": "none", @@ -229513,7 +219758,7 @@ } }, { - "id": 4625, + "id": 3857, "properties": { "east": "side", "north": "none", @@ -229523,7 +219768,7 @@ } }, { - "id": 4626, + "id": 3858, "properties": { "east": "side", "north": "none", @@ -229533,7 +219778,7 @@ } }, { - "id": 4627, + "id": 3859, "properties": { "east": "side", "north": "none", @@ -229543,7 +219788,7 @@ } }, { - "id": 4628, + "id": 3860, "properties": { "east": "side", "north": "none", @@ -229553,7 +219798,7 @@ } }, { - "id": 4629, + "id": 3861, "properties": { "east": "side", "north": "none", @@ -229563,7 +219808,7 @@ } }, { - "id": 4630, + "id": 3862, "properties": { "east": "side", "north": "none", @@ -229573,7 +219818,7 @@ } }, { - "id": 4631, + "id": 3863, "properties": { "east": "side", "north": "none", @@ -229583,7 +219828,7 @@ } }, { - "id": 4632, + "id": 3864, "properties": { "east": "side", "north": "none", @@ -229593,7 +219838,7 @@ } }, { - "id": 4633, + "id": 3865, "properties": { "east": "side", "north": "none", @@ -229603,7 +219848,7 @@ } }, { - "id": 4634, + "id": 3866, "properties": { "east": "side", "north": "none", @@ -229613,7 +219858,7 @@ } }, { - "id": 4635, + "id": 3867, "properties": { "east": "side", "north": "none", @@ -229623,7 +219868,7 @@ } }, { - "id": 4636, + "id": 3868, "properties": { "east": "side", "north": "none", @@ -229633,7 +219878,7 @@ } }, { - "id": 4637, + "id": 3869, "properties": { "east": "side", "north": "none", @@ -229643,7 +219888,7 @@ } }, { - "id": 4638, + "id": 3870, "properties": { "east": "side", "north": "none", @@ -229653,7 +219898,7 @@ } }, { - "id": 4639, + "id": 3871, "properties": { "east": "side", "north": "none", @@ -229663,7 +219908,7 @@ } }, { - "id": 4640, + "id": 3872, "properties": { "east": "side", "north": "none", @@ -229673,7 +219918,7 @@ } }, { - "id": 4641, + "id": 3873, "properties": { "east": "side", "north": "none", @@ -229683,7 +219928,7 @@ } }, { - "id": 4642, + "id": 3874, "properties": { "east": "side", "north": "none", @@ -229693,7 +219938,7 @@ } }, { - "id": 4643, + "id": 3875, "properties": { "east": "side", "north": "none", @@ -229703,7 +219948,7 @@ } }, { - "id": 4644, + "id": 3876, "properties": { "east": "side", "north": "none", @@ -229713,7 +219958,7 @@ } }, { - "id": 4645, + "id": 3877, "properties": { "east": "side", "north": "none", @@ -229723,7 +219968,7 @@ } }, { - "id": 4646, + "id": 3878, "properties": { "east": "side", "north": "none", @@ -229733,7 +219978,7 @@ } }, { - "id": 4647, + "id": 3879, "properties": { "east": "side", "north": "none", @@ -229743,7 +219988,7 @@ } }, { - "id": 4648, + "id": 3880, "properties": { "east": "side", "north": "none", @@ -229753,7 +219998,7 @@ } }, { - "id": 4649, + "id": 3881, "properties": { "east": "side", "north": "none", @@ -229763,7 +220008,7 @@ } }, { - "id": 4650, + "id": 3882, "properties": { "east": "side", "north": "none", @@ -229773,7 +220018,7 @@ } }, { - "id": 4651, + "id": 3883, "properties": { "east": "side", "north": "none", @@ -229783,7 +220028,7 @@ } }, { - "id": 4652, + "id": 3884, "properties": { "east": "side", "north": "none", @@ -229793,7 +220038,7 @@ } }, { - "id": 4653, + "id": 3885, "properties": { "east": "side", "north": "none", @@ -229803,7 +220048,7 @@ } }, { - "id": 4654, + "id": 3886, "properties": { "east": "side", "north": "none", @@ -229813,7 +220058,7 @@ } }, { - "id": 4655, + "id": 3887, "properties": { "east": "side", "north": "none", @@ -229823,7 +220068,7 @@ } }, { - "id": 4656, + "id": 3888, "properties": { "east": "side", "north": "none", @@ -229833,7 +220078,7 @@ } }, { - "id": 4657, + "id": 3889, "properties": { "east": "side", "north": "none", @@ -229843,7 +220088,7 @@ } }, { - "id": 4658, + "id": 3890, "properties": { "east": "side", "north": "none", @@ -229853,7 +220098,7 @@ } }, { - "id": 4659, + "id": 3891, "properties": { "east": "side", "north": "none", @@ -229863,7 +220108,7 @@ } }, { - "id": 4660, + "id": 3892, "properties": { "east": "side", "north": "none", @@ -229873,7 +220118,7 @@ } }, { - "id": 4661, + "id": 3893, "properties": { "east": "side", "north": "none", @@ -229883,7 +220128,7 @@ } }, { - "id": 4662, + "id": 3894, "properties": { "east": "side", "north": "none", @@ -229893,7 +220138,7 @@ } }, { - "id": 4663, + "id": 3895, "properties": { "east": "side", "north": "none", @@ -229903,7 +220148,7 @@ } }, { - "id": 4664, + "id": 3896, "properties": { "east": "side", "north": "none", @@ -229913,7 +220158,7 @@ } }, { - "id": 4665, + "id": 3897, "properties": { "east": "side", "north": "none", @@ -229923,7 +220168,7 @@ } }, { - "id": 4666, + "id": 3898, "properties": { "east": "side", "north": "none", @@ -229933,7 +220178,7 @@ } }, { - "id": 4667, + "id": 3899, "properties": { "east": "side", "north": "none", @@ -229943,7 +220188,7 @@ } }, { - "id": 4668, + "id": 3900, "properties": { "east": "side", "north": "none", @@ -229953,7 +220198,7 @@ } }, { - "id": 4669, + "id": 3901, "properties": { "east": "side", "north": "none", @@ -229963,7 +220208,7 @@ } }, { - "id": 4670, + "id": 3902, "properties": { "east": "side", "north": "none", @@ -229973,7 +220218,7 @@ } }, { - "id": 4671, + "id": 3903, "properties": { "east": "side", "north": "none", @@ -229983,7 +220228,7 @@ } }, { - "id": 4672, + "id": 3904, "properties": { "east": "side", "north": "none", @@ -229993,7 +220238,7 @@ } }, { - "id": 4673, + "id": 3905, "properties": { "east": "side", "north": "none", @@ -230003,7 +220248,7 @@ } }, { - "id": 4674, + "id": 3906, "properties": { "east": "none", "north": "up", @@ -230013,7 +220258,7 @@ } }, { - "id": 4675, + "id": 3907, "properties": { "east": "none", "north": "up", @@ -230023,7 +220268,7 @@ } }, { - "id": 4676, + "id": 3908, "properties": { "east": "none", "north": "up", @@ -230033,7 +220278,7 @@ } }, { - "id": 4677, + "id": 3909, "properties": { "east": "none", "north": "up", @@ -230043,7 +220288,7 @@ } }, { - "id": 4678, + "id": 3910, "properties": { "east": "none", "north": "up", @@ -230053,7 +220298,7 @@ } }, { - "id": 4679, + "id": 3911, "properties": { "east": "none", "north": "up", @@ -230063,7 +220308,7 @@ } }, { - "id": 4680, + "id": 3912, "properties": { "east": "none", "north": "up", @@ -230073,7 +220318,7 @@ } }, { - "id": 4681, + "id": 3913, "properties": { "east": "none", "north": "up", @@ -230083,7 +220328,7 @@ } }, { - "id": 4682, + "id": 3914, "properties": { "east": "none", "north": "up", @@ -230093,7 +220338,7 @@ } }, { - "id": 4683, + "id": 3915, "properties": { "east": "none", "north": "up", @@ -230103,7 +220348,7 @@ } }, { - "id": 4684, + "id": 3916, "properties": { "east": "none", "north": "up", @@ -230113,7 +220358,7 @@ } }, { - "id": 4685, + "id": 3917, "properties": { "east": "none", "north": "up", @@ -230123,7 +220368,7 @@ } }, { - "id": 4686, + "id": 3918, "properties": { "east": "none", "north": "up", @@ -230133,7 +220378,7 @@ } }, { - "id": 4687, + "id": 3919, "properties": { "east": "none", "north": "up", @@ -230143,7 +220388,7 @@ } }, { - "id": 4688, + "id": 3920, "properties": { "east": "none", "north": "up", @@ -230153,7 +220398,7 @@ } }, { - "id": 4689, + "id": 3921, "properties": { "east": "none", "north": "up", @@ -230163,7 +220408,7 @@ } }, { - "id": 4690, + "id": 3922, "properties": { "east": "none", "north": "up", @@ -230173,7 +220418,7 @@ } }, { - "id": 4691, + "id": 3923, "properties": { "east": "none", "north": "up", @@ -230183,7 +220428,7 @@ } }, { - "id": 4692, + "id": 3924, "properties": { "east": "none", "north": "up", @@ -230193,7 +220438,7 @@ } }, { - "id": 4693, + "id": 3925, "properties": { "east": "none", "north": "up", @@ -230203,7 +220448,7 @@ } }, { - "id": 4694, + "id": 3926, "properties": { "east": "none", "north": "up", @@ -230213,7 +220458,7 @@ } }, { - "id": 4695, + "id": 3927, "properties": { "east": "none", "north": "up", @@ -230223,7 +220468,7 @@ } }, { - "id": 4696, + "id": 3928, "properties": { "east": "none", "north": "up", @@ -230233,7 +220478,7 @@ } }, { - "id": 4697, + "id": 3929, "properties": { "east": "none", "north": "up", @@ -230243,7 +220488,7 @@ } }, { - "id": 4698, + "id": 3930, "properties": { "east": "none", "north": "up", @@ -230253,7 +220498,7 @@ } }, { - "id": 4699, + "id": 3931, "properties": { "east": "none", "north": "up", @@ -230263,7 +220508,7 @@ } }, { - "id": 4700, + "id": 3932, "properties": { "east": "none", "north": "up", @@ -230273,7 +220518,7 @@ } }, { - "id": 4701, + "id": 3933, "properties": { "east": "none", "north": "up", @@ -230283,7 +220528,7 @@ } }, { - "id": 4702, + "id": 3934, "properties": { "east": "none", "north": "up", @@ -230293,7 +220538,7 @@ } }, { - "id": 4703, + "id": 3935, "properties": { "east": "none", "north": "up", @@ -230303,7 +220548,7 @@ } }, { - "id": 4704, + "id": 3936, "properties": { "east": "none", "north": "up", @@ -230313,7 +220558,7 @@ } }, { - "id": 4705, + "id": 3937, "properties": { "east": "none", "north": "up", @@ -230323,7 +220568,7 @@ } }, { - "id": 4706, + "id": 3938, "properties": { "east": "none", "north": "up", @@ -230333,7 +220578,7 @@ } }, { - "id": 4707, + "id": 3939, "properties": { "east": "none", "north": "up", @@ -230343,7 +220588,7 @@ } }, { - "id": 4708, + "id": 3940, "properties": { "east": "none", "north": "up", @@ -230353,7 +220598,7 @@ } }, { - "id": 4709, + "id": 3941, "properties": { "east": "none", "north": "up", @@ -230363,7 +220608,7 @@ } }, { - "id": 4710, + "id": 3942, "properties": { "east": "none", "north": "up", @@ -230373,7 +220618,7 @@ } }, { - "id": 4711, + "id": 3943, "properties": { "east": "none", "north": "up", @@ -230383,7 +220628,7 @@ } }, { - "id": 4712, + "id": 3944, "properties": { "east": "none", "north": "up", @@ -230393,7 +220638,7 @@ } }, { - "id": 4713, + "id": 3945, "properties": { "east": "none", "north": "up", @@ -230403,7 +220648,7 @@ } }, { - "id": 4714, + "id": 3946, "properties": { "east": "none", "north": "up", @@ -230413,7 +220658,7 @@ } }, { - "id": 4715, + "id": 3947, "properties": { "east": "none", "north": "up", @@ -230423,7 +220668,7 @@ } }, { - "id": 4716, + "id": 3948, "properties": { "east": "none", "north": "up", @@ -230433,7 +220678,7 @@ } }, { - "id": 4717, + "id": 3949, "properties": { "east": "none", "north": "up", @@ -230443,7 +220688,7 @@ } }, { - "id": 4718, + "id": 3950, "properties": { "east": "none", "north": "up", @@ -230453,7 +220698,7 @@ } }, { - "id": 4719, + "id": 3951, "properties": { "east": "none", "north": "up", @@ -230463,7 +220708,7 @@ } }, { - "id": 4720, + "id": 3952, "properties": { "east": "none", "north": "up", @@ -230473,7 +220718,7 @@ } }, { - "id": 4721, + "id": 3953, "properties": { "east": "none", "north": "up", @@ -230483,7 +220728,7 @@ } }, { - "id": 4722, + "id": 3954, "properties": { "east": "none", "north": "up", @@ -230493,7 +220738,7 @@ } }, { - "id": 4723, + "id": 3955, "properties": { "east": "none", "north": "up", @@ -230503,7 +220748,7 @@ } }, { - "id": 4724, + "id": 3956, "properties": { "east": "none", "north": "up", @@ -230513,7 +220758,7 @@ } }, { - "id": 4725, + "id": 3957, "properties": { "east": "none", "north": "up", @@ -230523,7 +220768,7 @@ } }, { - "id": 4726, + "id": 3958, "properties": { "east": "none", "north": "up", @@ -230533,7 +220778,7 @@ } }, { - "id": 4727, + "id": 3959, "properties": { "east": "none", "north": "up", @@ -230543,7 +220788,7 @@ } }, { - "id": 4728, + "id": 3960, "properties": { "east": "none", "north": "up", @@ -230553,7 +220798,7 @@ } }, { - "id": 4729, + "id": 3961, "properties": { "east": "none", "north": "up", @@ -230563,7 +220808,7 @@ } }, { - "id": 4730, + "id": 3962, "properties": { "east": "none", "north": "up", @@ -230573,7 +220818,7 @@ } }, { - "id": 4731, + "id": 3963, "properties": { "east": "none", "north": "up", @@ -230583,7 +220828,7 @@ } }, { - "id": 4732, + "id": 3964, "properties": { "east": "none", "north": "up", @@ -230593,7 +220838,7 @@ } }, { - "id": 4733, + "id": 3965, "properties": { "east": "none", "north": "up", @@ -230603,7 +220848,7 @@ } }, { - "id": 4734, + "id": 3966, "properties": { "east": "none", "north": "up", @@ -230613,7 +220858,7 @@ } }, { - "id": 4735, + "id": 3967, "properties": { "east": "none", "north": "up", @@ -230623,7 +220868,7 @@ } }, { - "id": 4736, + "id": 3968, "properties": { "east": "none", "north": "up", @@ -230633,7 +220878,7 @@ } }, { - "id": 4737, + "id": 3969, "properties": { "east": "none", "north": "up", @@ -230643,7 +220888,7 @@ } }, { - "id": 4738, + "id": 3970, "properties": { "east": "none", "north": "up", @@ -230653,7 +220898,7 @@ } }, { - "id": 4739, + "id": 3971, "properties": { "east": "none", "north": "up", @@ -230663,7 +220908,7 @@ } }, { - "id": 4740, + "id": 3972, "properties": { "east": "none", "north": "up", @@ -230673,7 +220918,7 @@ } }, { - "id": 4741, + "id": 3973, "properties": { "east": "none", "north": "up", @@ -230683,7 +220928,7 @@ } }, { - "id": 4742, + "id": 3974, "properties": { "east": "none", "north": "up", @@ -230693,7 +220938,7 @@ } }, { - "id": 4743, + "id": 3975, "properties": { "east": "none", "north": "up", @@ -230703,7 +220948,7 @@ } }, { - "id": 4744, + "id": 3976, "properties": { "east": "none", "north": "up", @@ -230713,7 +220958,7 @@ } }, { - "id": 4745, + "id": 3977, "properties": { "east": "none", "north": "up", @@ -230723,7 +220968,7 @@ } }, { - "id": 4746, + "id": 3978, "properties": { "east": "none", "north": "up", @@ -230733,7 +220978,7 @@ } }, { - "id": 4747, + "id": 3979, "properties": { "east": "none", "north": "up", @@ -230743,7 +220988,7 @@ } }, { - "id": 4748, + "id": 3980, "properties": { "east": "none", "north": "up", @@ -230753,7 +220998,7 @@ } }, { - "id": 4749, + "id": 3981, "properties": { "east": "none", "north": "up", @@ -230763,7 +221008,7 @@ } }, { - "id": 4750, + "id": 3982, "properties": { "east": "none", "north": "up", @@ -230773,7 +221018,7 @@ } }, { - "id": 4751, + "id": 3983, "properties": { "east": "none", "north": "up", @@ -230783,7 +221028,7 @@ } }, { - "id": 4752, + "id": 3984, "properties": { "east": "none", "north": "up", @@ -230793,7 +221038,7 @@ } }, { - "id": 4753, + "id": 3985, "properties": { "east": "none", "north": "up", @@ -230803,7 +221048,7 @@ } }, { - "id": 4754, + "id": 3986, "properties": { "east": "none", "north": "up", @@ -230813,7 +221058,7 @@ } }, { - "id": 4755, + "id": 3987, "properties": { "east": "none", "north": "up", @@ -230823,7 +221068,7 @@ } }, { - "id": 4756, + "id": 3988, "properties": { "east": "none", "north": "up", @@ -230833,7 +221078,7 @@ } }, { - "id": 4757, + "id": 3989, "properties": { "east": "none", "north": "up", @@ -230843,7 +221088,7 @@ } }, { - "id": 4758, + "id": 3990, "properties": { "east": "none", "north": "up", @@ -230853,7 +221098,7 @@ } }, { - "id": 4759, + "id": 3991, "properties": { "east": "none", "north": "up", @@ -230863,7 +221108,7 @@ } }, { - "id": 4760, + "id": 3992, "properties": { "east": "none", "north": "up", @@ -230873,7 +221118,7 @@ } }, { - "id": 4761, + "id": 3993, "properties": { "east": "none", "north": "up", @@ -230883,7 +221128,7 @@ } }, { - "id": 4762, + "id": 3994, "properties": { "east": "none", "north": "up", @@ -230893,7 +221138,7 @@ } }, { - "id": 4763, + "id": 3995, "properties": { "east": "none", "north": "up", @@ -230903,7 +221148,7 @@ } }, { - "id": 4764, + "id": 3996, "properties": { "east": "none", "north": "up", @@ -230913,7 +221158,7 @@ } }, { - "id": 4765, + "id": 3997, "properties": { "east": "none", "north": "up", @@ -230923,7 +221168,7 @@ } }, { - "id": 4766, + "id": 3998, "properties": { "east": "none", "north": "up", @@ -230933,7 +221178,7 @@ } }, { - "id": 4767, + "id": 3999, "properties": { "east": "none", "north": "up", @@ -230943,7 +221188,7 @@ } }, { - "id": 4768, + "id": 4000, "properties": { "east": "none", "north": "up", @@ -230953,7 +221198,7 @@ } }, { - "id": 4769, + "id": 4001, "properties": { "east": "none", "north": "up", @@ -230963,7 +221208,7 @@ } }, { - "id": 4770, + "id": 4002, "properties": { "east": "none", "north": "up", @@ -230973,7 +221218,7 @@ } }, { - "id": 4771, + "id": 4003, "properties": { "east": "none", "north": "up", @@ -230983,7 +221228,7 @@ } }, { - "id": 4772, + "id": 4004, "properties": { "east": "none", "north": "up", @@ -230993,7 +221238,7 @@ } }, { - "id": 4773, + "id": 4005, "properties": { "east": "none", "north": "up", @@ -231003,7 +221248,7 @@ } }, { - "id": 4774, + "id": 4006, "properties": { "east": "none", "north": "up", @@ -231013,7 +221258,7 @@ } }, { - "id": 4775, + "id": 4007, "properties": { "east": "none", "north": "up", @@ -231023,7 +221268,7 @@ } }, { - "id": 4776, + "id": 4008, "properties": { "east": "none", "north": "up", @@ -231033,7 +221278,7 @@ } }, { - "id": 4777, + "id": 4009, "properties": { "east": "none", "north": "up", @@ -231043,7 +221288,7 @@ } }, { - "id": 4778, + "id": 4010, "properties": { "east": "none", "north": "up", @@ -231053,7 +221298,7 @@ } }, { - "id": 4779, + "id": 4011, "properties": { "east": "none", "north": "up", @@ -231063,7 +221308,7 @@ } }, { - "id": 4780, + "id": 4012, "properties": { "east": "none", "north": "up", @@ -231073,7 +221318,7 @@ } }, { - "id": 4781, + "id": 4013, "properties": { "east": "none", "north": "up", @@ -231083,7 +221328,7 @@ } }, { - "id": 4782, + "id": 4014, "properties": { "east": "none", "north": "up", @@ -231093,7 +221338,7 @@ } }, { - "id": 4783, + "id": 4015, "properties": { "east": "none", "north": "up", @@ -231103,7 +221348,7 @@ } }, { - "id": 4784, + "id": 4016, "properties": { "east": "none", "north": "up", @@ -231113,7 +221358,7 @@ } }, { - "id": 4785, + "id": 4017, "properties": { "east": "none", "north": "up", @@ -231123,7 +221368,7 @@ } }, { - "id": 4786, + "id": 4018, "properties": { "east": "none", "north": "up", @@ -231133,7 +221378,7 @@ } }, { - "id": 4787, + "id": 4019, "properties": { "east": "none", "north": "up", @@ -231143,7 +221388,7 @@ } }, { - "id": 4788, + "id": 4020, "properties": { "east": "none", "north": "up", @@ -231153,7 +221398,7 @@ } }, { - "id": 4789, + "id": 4021, "properties": { "east": "none", "north": "up", @@ -231163,7 +221408,7 @@ } }, { - "id": 4790, + "id": 4022, "properties": { "east": "none", "north": "up", @@ -231173,7 +221418,7 @@ } }, { - "id": 4791, + "id": 4023, "properties": { "east": "none", "north": "up", @@ -231183,7 +221428,7 @@ } }, { - "id": 4792, + "id": 4024, "properties": { "east": "none", "north": "up", @@ -231193,7 +221438,7 @@ } }, { - "id": 4793, + "id": 4025, "properties": { "east": "none", "north": "up", @@ -231203,7 +221448,7 @@ } }, { - "id": 4794, + "id": 4026, "properties": { "east": "none", "north": "up", @@ -231213,7 +221458,7 @@ } }, { - "id": 4795, + "id": 4027, "properties": { "east": "none", "north": "up", @@ -231223,7 +221468,7 @@ } }, { - "id": 4796, + "id": 4028, "properties": { "east": "none", "north": "up", @@ -231233,7 +221478,7 @@ } }, { - "id": 4797, + "id": 4029, "properties": { "east": "none", "north": "up", @@ -231243,7 +221488,7 @@ } }, { - "id": 4798, + "id": 4030, "properties": { "east": "none", "north": "up", @@ -231253,7 +221498,7 @@ } }, { - "id": 4799, + "id": 4031, "properties": { "east": "none", "north": "up", @@ -231263,7 +221508,7 @@ } }, { - "id": 4800, + "id": 4032, "properties": { "east": "none", "north": "up", @@ -231273,7 +221518,7 @@ } }, { - "id": 4801, + "id": 4033, "properties": { "east": "none", "north": "up", @@ -231283,7 +221528,7 @@ } }, { - "id": 4802, + "id": 4034, "properties": { "east": "none", "north": "up", @@ -231293,7 +221538,7 @@ } }, { - "id": 4803, + "id": 4035, "properties": { "east": "none", "north": "up", @@ -231303,7 +221548,7 @@ } }, { - "id": 4804, + "id": 4036, "properties": { "east": "none", "north": "up", @@ -231313,7 +221558,7 @@ } }, { - "id": 4805, + "id": 4037, "properties": { "east": "none", "north": "up", @@ -231323,7 +221568,7 @@ } }, { - "id": 4806, + "id": 4038, "properties": { "east": "none", "north": "up", @@ -231333,7 +221578,7 @@ } }, { - "id": 4807, + "id": 4039, "properties": { "east": "none", "north": "up", @@ -231343,7 +221588,7 @@ } }, { - "id": 4808, + "id": 4040, "properties": { "east": "none", "north": "up", @@ -231353,7 +221598,7 @@ } }, { - "id": 4809, + "id": 4041, "properties": { "east": "none", "north": "up", @@ -231363,7 +221608,7 @@ } }, { - "id": 4810, + "id": 4042, "properties": { "east": "none", "north": "up", @@ -231373,7 +221618,7 @@ } }, { - "id": 4811, + "id": 4043, "properties": { "east": "none", "north": "up", @@ -231383,7 +221628,7 @@ } }, { - "id": 4812, + "id": 4044, "properties": { "east": "none", "north": "up", @@ -231393,7 +221638,7 @@ } }, { - "id": 4813, + "id": 4045, "properties": { "east": "none", "north": "up", @@ -231403,7 +221648,7 @@ } }, { - "id": 4814, + "id": 4046, "properties": { "east": "none", "north": "up", @@ -231413,7 +221658,7 @@ } }, { - "id": 4815, + "id": 4047, "properties": { "east": "none", "north": "up", @@ -231423,7 +221668,7 @@ } }, { - "id": 4816, + "id": 4048, "properties": { "east": "none", "north": "up", @@ -231433,7 +221678,7 @@ } }, { - "id": 4817, + "id": 4049, "properties": { "east": "none", "north": "up", @@ -231443,7 +221688,7 @@ } }, { - "id": 4818, + "id": 4050, "properties": { "east": "none", "north": "side", @@ -231453,7 +221698,7 @@ } }, { - "id": 4819, + "id": 4051, "properties": { "east": "none", "north": "side", @@ -231463,7 +221708,7 @@ } }, { - "id": 4820, + "id": 4052, "properties": { "east": "none", "north": "side", @@ -231473,7 +221718,7 @@ } }, { - "id": 4821, + "id": 4053, "properties": { "east": "none", "north": "side", @@ -231483,7 +221728,7 @@ } }, { - "id": 4822, + "id": 4054, "properties": { "east": "none", "north": "side", @@ -231493,7 +221738,7 @@ } }, { - "id": 4823, + "id": 4055, "properties": { "east": "none", "north": "side", @@ -231503,7 +221748,7 @@ } }, { - "id": 4824, + "id": 4056, "properties": { "east": "none", "north": "side", @@ -231513,7 +221758,7 @@ } }, { - "id": 4825, + "id": 4057, "properties": { "east": "none", "north": "side", @@ -231523,7 +221768,7 @@ } }, { - "id": 4826, + "id": 4058, "properties": { "east": "none", "north": "side", @@ -231533,7 +221778,7 @@ } }, { - "id": 4827, + "id": 4059, "properties": { "east": "none", "north": "side", @@ -231543,7 +221788,7 @@ } }, { - "id": 4828, + "id": 4060, "properties": { "east": "none", "north": "side", @@ -231553,7 +221798,7 @@ } }, { - "id": 4829, + "id": 4061, "properties": { "east": "none", "north": "side", @@ -231563,7 +221808,7 @@ } }, { - "id": 4830, + "id": 4062, "properties": { "east": "none", "north": "side", @@ -231573,7 +221818,7 @@ } }, { - "id": 4831, + "id": 4063, "properties": { "east": "none", "north": "side", @@ -231583,7 +221828,7 @@ } }, { - "id": 4832, + "id": 4064, "properties": { "east": "none", "north": "side", @@ -231593,7 +221838,7 @@ } }, { - "id": 4833, + "id": 4065, "properties": { "east": "none", "north": "side", @@ -231603,7 +221848,7 @@ } }, { - "id": 4834, + "id": 4066, "properties": { "east": "none", "north": "side", @@ -231613,7 +221858,7 @@ } }, { - "id": 4835, + "id": 4067, "properties": { "east": "none", "north": "side", @@ -231623,7 +221868,7 @@ } }, { - "id": 4836, + "id": 4068, "properties": { "east": "none", "north": "side", @@ -231633,7 +221878,7 @@ } }, { - "id": 4837, + "id": 4069, "properties": { "east": "none", "north": "side", @@ -231643,7 +221888,7 @@ } }, { - "id": 4838, + "id": 4070, "properties": { "east": "none", "north": "side", @@ -231653,7 +221898,7 @@ } }, { - "id": 4839, + "id": 4071, "properties": { "east": "none", "north": "side", @@ -231663,7 +221908,7 @@ } }, { - "id": 4840, + "id": 4072, "properties": { "east": "none", "north": "side", @@ -231673,7 +221918,7 @@ } }, { - "id": 4841, + "id": 4073, "properties": { "east": "none", "north": "side", @@ -231683,7 +221928,7 @@ } }, { - "id": 4842, + "id": 4074, "properties": { "east": "none", "north": "side", @@ -231693,7 +221938,7 @@ } }, { - "id": 4843, + "id": 4075, "properties": { "east": "none", "north": "side", @@ -231703,7 +221948,7 @@ } }, { - "id": 4844, + "id": 4076, "properties": { "east": "none", "north": "side", @@ -231713,7 +221958,7 @@ } }, { - "id": 4845, + "id": 4077, "properties": { "east": "none", "north": "side", @@ -231723,7 +221968,7 @@ } }, { - "id": 4846, + "id": 4078, "properties": { "east": "none", "north": "side", @@ -231733,7 +221978,7 @@ } }, { - "id": 4847, + "id": 4079, "properties": { "east": "none", "north": "side", @@ -231743,7 +221988,7 @@ } }, { - "id": 4848, + "id": 4080, "properties": { "east": "none", "north": "side", @@ -231753,7 +221998,7 @@ } }, { - "id": 4849, + "id": 4081, "properties": { "east": "none", "north": "side", @@ -231763,7 +222008,7 @@ } }, { - "id": 4850, + "id": 4082, "properties": { "east": "none", "north": "side", @@ -231773,7 +222018,7 @@ } }, { - "id": 4851, + "id": 4083, "properties": { "east": "none", "north": "side", @@ -231783,7 +222028,7 @@ } }, { - "id": 4852, + "id": 4084, "properties": { "east": "none", "north": "side", @@ -231793,7 +222038,7 @@ } }, { - "id": 4853, + "id": 4085, "properties": { "east": "none", "north": "side", @@ -231803,7 +222048,7 @@ } }, { - "id": 4854, + "id": 4086, "properties": { "east": "none", "north": "side", @@ -231813,7 +222058,7 @@ } }, { - "id": 4855, + "id": 4087, "properties": { "east": "none", "north": "side", @@ -231823,7 +222068,7 @@ } }, { - "id": 4856, + "id": 4088, "properties": { "east": "none", "north": "side", @@ -231833,7 +222078,7 @@ } }, { - "id": 4857, + "id": 4089, "properties": { "east": "none", "north": "side", @@ -231843,7 +222088,7 @@ } }, { - "id": 4858, + "id": 4090, "properties": { "east": "none", "north": "side", @@ -231853,7 +222098,7 @@ } }, { - "id": 4859, + "id": 4091, "properties": { "east": "none", "north": "side", @@ -231863,7 +222108,7 @@ } }, { - "id": 4860, + "id": 4092, "properties": { "east": "none", "north": "side", @@ -231873,7 +222118,7 @@ } }, { - "id": 4861, + "id": 4093, "properties": { "east": "none", "north": "side", @@ -231883,7 +222128,7 @@ } }, { - "id": 4862, + "id": 4094, "properties": { "east": "none", "north": "side", @@ -231893,7 +222138,7 @@ } }, { - "id": 4863, + "id": 4095, "properties": { "east": "none", "north": "side", @@ -231903,7 +222148,7 @@ } }, { - "id": 4864, + "id": 4096, "properties": { "east": "none", "north": "side", @@ -231913,7 +222158,7 @@ } }, { - "id": 4865, + "id": 4097, "properties": { "east": "none", "north": "side", @@ -231923,7 +222168,7 @@ } }, { - "id": 4866, + "id": 4098, "properties": { "east": "none", "north": "side", @@ -231933,7 +222178,7 @@ } }, { - "id": 4867, + "id": 4099, "properties": { "east": "none", "north": "side", @@ -231943,7 +222188,7 @@ } }, { - "id": 4868, + "id": 4100, "properties": { "east": "none", "north": "side", @@ -231953,7 +222198,7 @@ } }, { - "id": 4869, + "id": 4101, "properties": { "east": "none", "north": "side", @@ -231963,7 +222208,7 @@ } }, { - "id": 4870, + "id": 4102, "properties": { "east": "none", "north": "side", @@ -231973,7 +222218,7 @@ } }, { - "id": 4871, + "id": 4103, "properties": { "east": "none", "north": "side", @@ -231983,7 +222228,7 @@ } }, { - "id": 4872, + "id": 4104, "properties": { "east": "none", "north": "side", @@ -231993,7 +222238,7 @@ } }, { - "id": 4873, + "id": 4105, "properties": { "east": "none", "north": "side", @@ -232003,7 +222248,7 @@ } }, { - "id": 4874, + "id": 4106, "properties": { "east": "none", "north": "side", @@ -232013,7 +222258,7 @@ } }, { - "id": 4875, + "id": 4107, "properties": { "east": "none", "north": "side", @@ -232023,7 +222268,7 @@ } }, { - "id": 4876, + "id": 4108, "properties": { "east": "none", "north": "side", @@ -232033,7 +222278,7 @@ } }, { - "id": 4877, + "id": 4109, "properties": { "east": "none", "north": "side", @@ -232043,7 +222288,7 @@ } }, { - "id": 4878, + "id": 4110, "properties": { "east": "none", "north": "side", @@ -232053,7 +222298,7 @@ } }, { - "id": 4879, + "id": 4111, "properties": { "east": "none", "north": "side", @@ -232063,7 +222308,7 @@ } }, { - "id": 4880, + "id": 4112, "properties": { "east": "none", "north": "side", @@ -232073,7 +222318,7 @@ } }, { - "id": 4881, + "id": 4113, "properties": { "east": "none", "north": "side", @@ -232083,7 +222328,7 @@ } }, { - "id": 4882, + "id": 4114, "properties": { "east": "none", "north": "side", @@ -232093,7 +222338,7 @@ } }, { - "id": 4883, + "id": 4115, "properties": { "east": "none", "north": "side", @@ -232103,7 +222348,7 @@ } }, { - "id": 4884, + "id": 4116, "properties": { "east": "none", "north": "side", @@ -232113,7 +222358,7 @@ } }, { - "id": 4885, + "id": 4117, "properties": { "east": "none", "north": "side", @@ -232123,7 +222368,7 @@ } }, { - "id": 4886, + "id": 4118, "properties": { "east": "none", "north": "side", @@ -232133,7 +222378,7 @@ } }, { - "id": 4887, + "id": 4119, "properties": { "east": "none", "north": "side", @@ -232143,7 +222388,7 @@ } }, { - "id": 4888, + "id": 4120, "properties": { "east": "none", "north": "side", @@ -232153,7 +222398,7 @@ } }, { - "id": 4889, + "id": 4121, "properties": { "east": "none", "north": "side", @@ -232163,7 +222408,7 @@ } }, { - "id": 4890, + "id": 4122, "properties": { "east": "none", "north": "side", @@ -232173,7 +222418,7 @@ } }, { - "id": 4891, + "id": 4123, "properties": { "east": "none", "north": "side", @@ -232183,7 +222428,7 @@ } }, { - "id": 4892, + "id": 4124, "properties": { "east": "none", "north": "side", @@ -232193,7 +222438,7 @@ } }, { - "id": 4893, + "id": 4125, "properties": { "east": "none", "north": "side", @@ -232203,7 +222448,7 @@ } }, { - "id": 4894, + "id": 4126, "properties": { "east": "none", "north": "side", @@ -232213,7 +222458,7 @@ } }, { - "id": 4895, + "id": 4127, "properties": { "east": "none", "north": "side", @@ -232223,7 +222468,7 @@ } }, { - "id": 4896, + "id": 4128, "properties": { "east": "none", "north": "side", @@ -232233,7 +222478,7 @@ } }, { - "id": 4897, + "id": 4129, "properties": { "east": "none", "north": "side", @@ -232243,7 +222488,7 @@ } }, { - "id": 4898, + "id": 4130, "properties": { "east": "none", "north": "side", @@ -232253,7 +222498,7 @@ } }, { - "id": 4899, + "id": 4131, "properties": { "east": "none", "north": "side", @@ -232263,7 +222508,7 @@ } }, { - "id": 4900, + "id": 4132, "properties": { "east": "none", "north": "side", @@ -232273,7 +222518,7 @@ } }, { - "id": 4901, + "id": 4133, "properties": { "east": "none", "north": "side", @@ -232283,7 +222528,7 @@ } }, { - "id": 4902, + "id": 4134, "properties": { "east": "none", "north": "side", @@ -232293,7 +222538,7 @@ } }, { - "id": 4903, + "id": 4135, "properties": { "east": "none", "north": "side", @@ -232303,7 +222548,7 @@ } }, { - "id": 4904, + "id": 4136, "properties": { "east": "none", "north": "side", @@ -232313,7 +222558,7 @@ } }, { - "id": 4905, + "id": 4137, "properties": { "east": "none", "north": "side", @@ -232323,7 +222568,7 @@ } }, { - "id": 4906, + "id": 4138, "properties": { "east": "none", "north": "side", @@ -232333,7 +222578,7 @@ } }, { - "id": 4907, + "id": 4139, "properties": { "east": "none", "north": "side", @@ -232343,7 +222588,7 @@ } }, { - "id": 4908, + "id": 4140, "properties": { "east": "none", "north": "side", @@ -232353,7 +222598,7 @@ } }, { - "id": 4909, + "id": 4141, "properties": { "east": "none", "north": "side", @@ -232363,7 +222608,7 @@ } }, { - "id": 4910, + "id": 4142, "properties": { "east": "none", "north": "side", @@ -232373,7 +222618,7 @@ } }, { - "id": 4911, + "id": 4143, "properties": { "east": "none", "north": "side", @@ -232383,7 +222628,7 @@ } }, { - "id": 4912, + "id": 4144, "properties": { "east": "none", "north": "side", @@ -232393,7 +222638,7 @@ } }, { - "id": 4913, + "id": 4145, "properties": { "east": "none", "north": "side", @@ -232403,7 +222648,7 @@ } }, { - "id": 4914, + "id": 4146, "properties": { "east": "none", "north": "side", @@ -232413,7 +222658,7 @@ } }, { - "id": 4915, + "id": 4147, "properties": { "east": "none", "north": "side", @@ -232423,7 +222668,7 @@ } }, { - "id": 4916, + "id": 4148, "properties": { "east": "none", "north": "side", @@ -232433,7 +222678,7 @@ } }, { - "id": 4917, + "id": 4149, "properties": { "east": "none", "north": "side", @@ -232443,7 +222688,7 @@ } }, { - "id": 4918, + "id": 4150, "properties": { "east": "none", "north": "side", @@ -232453,7 +222698,7 @@ } }, { - "id": 4919, + "id": 4151, "properties": { "east": "none", "north": "side", @@ -232463,7 +222708,7 @@ } }, { - "id": 4920, + "id": 4152, "properties": { "east": "none", "north": "side", @@ -232473,7 +222718,7 @@ } }, { - "id": 4921, + "id": 4153, "properties": { "east": "none", "north": "side", @@ -232483,7 +222728,7 @@ } }, { - "id": 4922, + "id": 4154, "properties": { "east": "none", "north": "side", @@ -232493,7 +222738,7 @@ } }, { - "id": 4923, + "id": 4155, "properties": { "east": "none", "north": "side", @@ -232503,7 +222748,7 @@ } }, { - "id": 4924, + "id": 4156, "properties": { "east": "none", "north": "side", @@ -232513,7 +222758,7 @@ } }, { - "id": 4925, + "id": 4157, "properties": { "east": "none", "north": "side", @@ -232523,7 +222768,7 @@ } }, { - "id": 4926, + "id": 4158, "properties": { "east": "none", "north": "side", @@ -232533,7 +222778,7 @@ } }, { - "id": 4927, + "id": 4159, "properties": { "east": "none", "north": "side", @@ -232543,7 +222788,7 @@ } }, { - "id": 4928, + "id": 4160, "properties": { "east": "none", "north": "side", @@ -232553,7 +222798,7 @@ } }, { - "id": 4929, + "id": 4161, "properties": { "east": "none", "north": "side", @@ -232563,7 +222808,7 @@ } }, { - "id": 4930, + "id": 4162, "properties": { "east": "none", "north": "side", @@ -232573,7 +222818,7 @@ } }, { - "id": 4931, + "id": 4163, "properties": { "east": "none", "north": "side", @@ -232583,7 +222828,7 @@ } }, { - "id": 4932, + "id": 4164, "properties": { "east": "none", "north": "side", @@ -232593,7 +222838,7 @@ } }, { - "id": 4933, + "id": 4165, "properties": { "east": "none", "north": "side", @@ -232603,7 +222848,7 @@ } }, { - "id": 4934, + "id": 4166, "properties": { "east": "none", "north": "side", @@ -232613,7 +222858,7 @@ } }, { - "id": 4935, + "id": 4167, "properties": { "east": "none", "north": "side", @@ -232623,7 +222868,7 @@ } }, { - "id": 4936, + "id": 4168, "properties": { "east": "none", "north": "side", @@ -232633,7 +222878,7 @@ } }, { - "id": 4937, + "id": 4169, "properties": { "east": "none", "north": "side", @@ -232643,7 +222888,7 @@ } }, { - "id": 4938, + "id": 4170, "properties": { "east": "none", "north": "side", @@ -232653,7 +222898,7 @@ } }, { - "id": 4939, + "id": 4171, "properties": { "east": "none", "north": "side", @@ -232663,7 +222908,7 @@ } }, { - "id": 4940, + "id": 4172, "properties": { "east": "none", "north": "side", @@ -232673,7 +222918,7 @@ } }, { - "id": 4941, + "id": 4173, "properties": { "east": "none", "north": "side", @@ -232683,7 +222928,7 @@ } }, { - "id": 4942, + "id": 4174, "properties": { "east": "none", "north": "side", @@ -232693,7 +222938,7 @@ } }, { - "id": 4943, + "id": 4175, "properties": { "east": "none", "north": "side", @@ -232703,7 +222948,7 @@ } }, { - "id": 4944, + "id": 4176, "properties": { "east": "none", "north": "side", @@ -232713,7 +222958,7 @@ } }, { - "id": 4945, + "id": 4177, "properties": { "east": "none", "north": "side", @@ -232723,7 +222968,7 @@ } }, { - "id": 4946, + "id": 4178, "properties": { "east": "none", "north": "side", @@ -232733,7 +222978,7 @@ } }, { - "id": 4947, + "id": 4179, "properties": { "east": "none", "north": "side", @@ -232743,7 +222988,7 @@ } }, { - "id": 4948, + "id": 4180, "properties": { "east": "none", "north": "side", @@ -232753,7 +222998,7 @@ } }, { - "id": 4949, + "id": 4181, "properties": { "east": "none", "north": "side", @@ -232763,7 +223008,7 @@ } }, { - "id": 4950, + "id": 4182, "properties": { "east": "none", "north": "side", @@ -232773,7 +223018,7 @@ } }, { - "id": 4951, + "id": 4183, "properties": { "east": "none", "north": "side", @@ -232783,7 +223028,7 @@ } }, { - "id": 4952, + "id": 4184, "properties": { "east": "none", "north": "side", @@ -232793,7 +223038,7 @@ } }, { - "id": 4953, + "id": 4185, "properties": { "east": "none", "north": "side", @@ -232803,7 +223048,7 @@ } }, { - "id": 4954, + "id": 4186, "properties": { "east": "none", "north": "side", @@ -232813,7 +223058,7 @@ } }, { - "id": 4955, + "id": 4187, "properties": { "east": "none", "north": "side", @@ -232823,7 +223068,7 @@ } }, { - "id": 4956, + "id": 4188, "properties": { "east": "none", "north": "side", @@ -232833,7 +223078,7 @@ } }, { - "id": 4957, + "id": 4189, "properties": { "east": "none", "north": "side", @@ -232843,7 +223088,7 @@ } }, { - "id": 4958, + "id": 4190, "properties": { "east": "none", "north": "side", @@ -232853,7 +223098,7 @@ } }, { - "id": 4959, + "id": 4191, "properties": { "east": "none", "north": "side", @@ -232863,7 +223108,7 @@ } }, { - "id": 4960, + "id": 4192, "properties": { "east": "none", "north": "side", @@ -232873,7 +223118,7 @@ } }, { - "id": 4961, + "id": 4193, "properties": { "east": "none", "north": "side", @@ -232883,7 +223128,7 @@ } }, { - "id": 4962, + "id": 4194, "properties": { "east": "none", "north": "none", @@ -232893,7 +223138,7 @@ } }, { - "id": 4963, + "id": 4195, "properties": { "east": "none", "north": "none", @@ -232903,7 +223148,7 @@ } }, { - "id": 4964, + "id": 4196, "properties": { "east": "none", "north": "none", @@ -232913,7 +223158,7 @@ } }, { - "id": 4965, + "id": 4197, "properties": { "east": "none", "north": "none", @@ -232923,7 +223168,7 @@ } }, { - "id": 4966, + "id": 4198, "properties": { "east": "none", "north": "none", @@ -232933,7 +223178,7 @@ } }, { - "id": 4967, + "id": 4199, "properties": { "east": "none", "north": "none", @@ -232943,7 +223188,7 @@ } }, { - "id": 4968, + "id": 4200, "properties": { "east": "none", "north": "none", @@ -232953,7 +223198,7 @@ } }, { - "id": 4969, + "id": 4201, "properties": { "east": "none", "north": "none", @@ -232964,7 +223209,7 @@ }, { "default": true, - "id": 4970, + "id": 4202, "properties": { "east": "none", "north": "none", @@ -232974,7 +223219,7 @@ } }, { - "id": 4971, + "id": 4203, "properties": { "east": "none", "north": "none", @@ -232984,7 +223229,7 @@ } }, { - "id": 4972, + "id": 4204, "properties": { "east": "none", "north": "none", @@ -232994,7 +223239,7 @@ } }, { - "id": 4973, + "id": 4205, "properties": { "east": "none", "north": "none", @@ -233004,7 +223249,7 @@ } }, { - "id": 4974, + "id": 4206, "properties": { "east": "none", "north": "none", @@ -233014,7 +223259,7 @@ } }, { - "id": 4975, + "id": 4207, "properties": { "east": "none", "north": "none", @@ -233024,7 +223269,7 @@ } }, { - "id": 4976, + "id": 4208, "properties": { "east": "none", "north": "none", @@ -233034,7 +223279,7 @@ } }, { - "id": 4977, + "id": 4209, "properties": { "east": "none", "north": "none", @@ -233044,7 +223289,7 @@ } }, { - "id": 4978, + "id": 4210, "properties": { "east": "none", "north": "none", @@ -233054,7 +223299,7 @@ } }, { - "id": 4979, + "id": 4211, "properties": { "east": "none", "north": "none", @@ -233064,7 +223309,7 @@ } }, { - "id": 4980, + "id": 4212, "properties": { "east": "none", "north": "none", @@ -233074,7 +223319,7 @@ } }, { - "id": 4981, + "id": 4213, "properties": { "east": "none", "north": "none", @@ -233084,7 +223329,7 @@ } }, { - "id": 4982, + "id": 4214, "properties": { "east": "none", "north": "none", @@ -233094,7 +223339,7 @@ } }, { - "id": 4983, + "id": 4215, "properties": { "east": "none", "north": "none", @@ -233104,7 +223349,7 @@ } }, { - "id": 4984, + "id": 4216, "properties": { "east": "none", "north": "none", @@ -233114,7 +223359,7 @@ } }, { - "id": 4985, + "id": 4217, "properties": { "east": "none", "north": "none", @@ -233124,7 +223369,7 @@ } }, { - "id": 4986, + "id": 4218, "properties": { "east": "none", "north": "none", @@ -233134,7 +223379,7 @@ } }, { - "id": 4987, + "id": 4219, "properties": { "east": "none", "north": "none", @@ -233144,7 +223389,7 @@ } }, { - "id": 4988, + "id": 4220, "properties": { "east": "none", "north": "none", @@ -233154,7 +223399,7 @@ } }, { - "id": 4989, + "id": 4221, "properties": { "east": "none", "north": "none", @@ -233164,7 +223409,7 @@ } }, { - "id": 4990, + "id": 4222, "properties": { "east": "none", "north": "none", @@ -233174,7 +223419,7 @@ } }, { - "id": 4991, + "id": 4223, "properties": { "east": "none", "north": "none", @@ -233184,7 +223429,7 @@ } }, { - "id": 4992, + "id": 4224, "properties": { "east": "none", "north": "none", @@ -233194,7 +223439,7 @@ } }, { - "id": 4993, + "id": 4225, "properties": { "east": "none", "north": "none", @@ -233204,7 +223449,7 @@ } }, { - "id": 4994, + "id": 4226, "properties": { "east": "none", "north": "none", @@ -233214,7 +223459,7 @@ } }, { - "id": 4995, + "id": 4227, "properties": { "east": "none", "north": "none", @@ -233224,7 +223469,7 @@ } }, { - "id": 4996, + "id": 4228, "properties": { "east": "none", "north": "none", @@ -233234,7 +223479,7 @@ } }, { - "id": 4997, + "id": 4229, "properties": { "east": "none", "north": "none", @@ -233244,7 +223489,7 @@ } }, { - "id": 4998, + "id": 4230, "properties": { "east": "none", "north": "none", @@ -233254,7 +223499,7 @@ } }, { - "id": 4999, + "id": 4231, "properties": { "east": "none", "north": "none", @@ -233264,7 +223509,7 @@ } }, { - "id": 5000, + "id": 4232, "properties": { "east": "none", "north": "none", @@ -233274,7 +223519,7 @@ } }, { - "id": 5001, + "id": 4233, "properties": { "east": "none", "north": "none", @@ -233284,7 +223529,7 @@ } }, { - "id": 5002, + "id": 4234, "properties": { "east": "none", "north": "none", @@ -233294,7 +223539,7 @@ } }, { - "id": 5003, + "id": 4235, "properties": { "east": "none", "north": "none", @@ -233304,7 +223549,7 @@ } }, { - "id": 5004, + "id": 4236, "properties": { "east": "none", "north": "none", @@ -233314,7 +223559,7 @@ } }, { - "id": 5005, + "id": 4237, "properties": { "east": "none", "north": "none", @@ -233324,7 +223569,7 @@ } }, { - "id": 5006, + "id": 4238, "properties": { "east": "none", "north": "none", @@ -233334,7 +223579,7 @@ } }, { - "id": 5007, + "id": 4239, "properties": { "east": "none", "north": "none", @@ -233344,7 +223589,7 @@ } }, { - "id": 5008, + "id": 4240, "properties": { "east": "none", "north": "none", @@ -233354,7 +223599,7 @@ } }, { - "id": 5009, + "id": 4241, "properties": { "east": "none", "north": "none", @@ -233364,7 +223609,7 @@ } }, { - "id": 5010, + "id": 4242, "properties": { "east": "none", "north": "none", @@ -233374,7 +223619,7 @@ } }, { - "id": 5011, + "id": 4243, "properties": { "east": "none", "north": "none", @@ -233384,7 +223629,7 @@ } }, { - "id": 5012, + "id": 4244, "properties": { "east": "none", "north": "none", @@ -233394,7 +223639,7 @@ } }, { - "id": 5013, + "id": 4245, "properties": { "east": "none", "north": "none", @@ -233404,7 +223649,7 @@ } }, { - "id": 5014, + "id": 4246, "properties": { "east": "none", "north": "none", @@ -233414,7 +223659,7 @@ } }, { - "id": 5015, + "id": 4247, "properties": { "east": "none", "north": "none", @@ -233424,7 +223669,7 @@ } }, { - "id": 5016, + "id": 4248, "properties": { "east": "none", "north": "none", @@ -233434,7 +223679,7 @@ } }, { - "id": 5017, + "id": 4249, "properties": { "east": "none", "north": "none", @@ -233444,7 +223689,7 @@ } }, { - "id": 5018, + "id": 4250, "properties": { "east": "none", "north": "none", @@ -233454,7 +223699,7 @@ } }, { - "id": 5019, + "id": 4251, "properties": { "east": "none", "north": "none", @@ -233464,7 +223709,7 @@ } }, { - "id": 5020, + "id": 4252, "properties": { "east": "none", "north": "none", @@ -233474,7 +223719,7 @@ } }, { - "id": 5021, + "id": 4253, "properties": { "east": "none", "north": "none", @@ -233484,7 +223729,7 @@ } }, { - "id": 5022, + "id": 4254, "properties": { "east": "none", "north": "none", @@ -233494,7 +223739,7 @@ } }, { - "id": 5023, + "id": 4255, "properties": { "east": "none", "north": "none", @@ -233504,7 +223749,7 @@ } }, { - "id": 5024, + "id": 4256, "properties": { "east": "none", "north": "none", @@ -233514,7 +223759,7 @@ } }, { - "id": 5025, + "id": 4257, "properties": { "east": "none", "north": "none", @@ -233524,7 +223769,7 @@ } }, { - "id": 5026, + "id": 4258, "properties": { "east": "none", "north": "none", @@ -233534,7 +223779,7 @@ } }, { - "id": 5027, + "id": 4259, "properties": { "east": "none", "north": "none", @@ -233544,7 +223789,7 @@ } }, { - "id": 5028, + "id": 4260, "properties": { "east": "none", "north": "none", @@ -233554,7 +223799,7 @@ } }, { - "id": 5029, + "id": 4261, "properties": { "east": "none", "north": "none", @@ -233564,7 +223809,7 @@ } }, { - "id": 5030, + "id": 4262, "properties": { "east": "none", "north": "none", @@ -233574,7 +223819,7 @@ } }, { - "id": 5031, + "id": 4263, "properties": { "east": "none", "north": "none", @@ -233584,7 +223829,7 @@ } }, { - "id": 5032, + "id": 4264, "properties": { "east": "none", "north": "none", @@ -233594,7 +223839,7 @@ } }, { - "id": 5033, + "id": 4265, "properties": { "east": "none", "north": "none", @@ -233604,7 +223849,7 @@ } }, { - "id": 5034, + "id": 4266, "properties": { "east": "none", "north": "none", @@ -233614,7 +223859,7 @@ } }, { - "id": 5035, + "id": 4267, "properties": { "east": "none", "north": "none", @@ -233624,7 +223869,7 @@ } }, { - "id": 5036, + "id": 4268, "properties": { "east": "none", "north": "none", @@ -233634,7 +223879,7 @@ } }, { - "id": 5037, + "id": 4269, "properties": { "east": "none", "north": "none", @@ -233644,7 +223889,7 @@ } }, { - "id": 5038, + "id": 4270, "properties": { "east": "none", "north": "none", @@ -233654,7 +223899,7 @@ } }, { - "id": 5039, + "id": 4271, "properties": { "east": "none", "north": "none", @@ -233664,7 +223909,7 @@ } }, { - "id": 5040, + "id": 4272, "properties": { "east": "none", "north": "none", @@ -233674,7 +223919,7 @@ } }, { - "id": 5041, + "id": 4273, "properties": { "east": "none", "north": "none", @@ -233684,7 +223929,7 @@ } }, { - "id": 5042, + "id": 4274, "properties": { "east": "none", "north": "none", @@ -233694,7 +223939,7 @@ } }, { - "id": 5043, + "id": 4275, "properties": { "east": "none", "north": "none", @@ -233704,7 +223949,7 @@ } }, { - "id": 5044, + "id": 4276, "properties": { "east": "none", "north": "none", @@ -233714,7 +223959,7 @@ } }, { - "id": 5045, + "id": 4277, "properties": { "east": "none", "north": "none", @@ -233724,7 +223969,7 @@ } }, { - "id": 5046, + "id": 4278, "properties": { "east": "none", "north": "none", @@ -233734,7 +223979,7 @@ } }, { - "id": 5047, + "id": 4279, "properties": { "east": "none", "north": "none", @@ -233744,7 +223989,7 @@ } }, { - "id": 5048, + "id": 4280, "properties": { "east": "none", "north": "none", @@ -233754,7 +223999,7 @@ } }, { - "id": 5049, + "id": 4281, "properties": { "east": "none", "north": "none", @@ -233764,7 +224009,7 @@ } }, { - "id": 5050, + "id": 4282, "properties": { "east": "none", "north": "none", @@ -233774,7 +224019,7 @@ } }, { - "id": 5051, + "id": 4283, "properties": { "east": "none", "north": "none", @@ -233784,7 +224029,7 @@ } }, { - "id": 5052, + "id": 4284, "properties": { "east": "none", "north": "none", @@ -233794,7 +224039,7 @@ } }, { - "id": 5053, + "id": 4285, "properties": { "east": "none", "north": "none", @@ -233804,7 +224049,7 @@ } }, { - "id": 5054, + "id": 4286, "properties": { "east": "none", "north": "none", @@ -233814,7 +224059,7 @@ } }, { - "id": 5055, + "id": 4287, "properties": { "east": "none", "north": "none", @@ -233824,7 +224069,7 @@ } }, { - "id": 5056, + "id": 4288, "properties": { "east": "none", "north": "none", @@ -233834,7 +224079,7 @@ } }, { - "id": 5057, + "id": 4289, "properties": { "east": "none", "north": "none", @@ -233844,7 +224089,7 @@ } }, { - "id": 5058, + "id": 4290, "properties": { "east": "none", "north": "none", @@ -233854,7 +224099,7 @@ } }, { - "id": 5059, + "id": 4291, "properties": { "east": "none", "north": "none", @@ -233864,7 +224109,7 @@ } }, { - "id": 5060, + "id": 4292, "properties": { "east": "none", "north": "none", @@ -233874,7 +224119,7 @@ } }, { - "id": 5061, + "id": 4293, "properties": { "east": "none", "north": "none", @@ -233884,7 +224129,7 @@ } }, { - "id": 5062, + "id": 4294, "properties": { "east": "none", "north": "none", @@ -233894,7 +224139,7 @@ } }, { - "id": 5063, + "id": 4295, "properties": { "east": "none", "north": "none", @@ -233904,7 +224149,7 @@ } }, { - "id": 5064, + "id": 4296, "properties": { "east": "none", "north": "none", @@ -233914,7 +224159,7 @@ } }, { - "id": 5065, + "id": 4297, "properties": { "east": "none", "north": "none", @@ -233924,7 +224169,7 @@ } }, { - "id": 5066, + "id": 4298, "properties": { "east": "none", "north": "none", @@ -233934,7 +224179,7 @@ } }, { - "id": 5067, + "id": 4299, "properties": { "east": "none", "north": "none", @@ -233944,7 +224189,7 @@ } }, { - "id": 5068, + "id": 4300, "properties": { "east": "none", "north": "none", @@ -233954,7 +224199,7 @@ } }, { - "id": 5069, + "id": 4301, "properties": { "east": "none", "north": "none", @@ -233964,7 +224209,7 @@ } }, { - "id": 5070, + "id": 4302, "properties": { "east": "none", "north": "none", @@ -233974,7 +224219,7 @@ } }, { - "id": 5071, + "id": 4303, "properties": { "east": "none", "north": "none", @@ -233984,7 +224229,7 @@ } }, { - "id": 5072, + "id": 4304, "properties": { "east": "none", "north": "none", @@ -233994,7 +224239,7 @@ } }, { - "id": 5073, + "id": 4305, "properties": { "east": "none", "north": "none", @@ -234004,7 +224249,7 @@ } }, { - "id": 5074, + "id": 4306, "properties": { "east": "none", "north": "none", @@ -234014,7 +224259,7 @@ } }, { - "id": 5075, + "id": 4307, "properties": { "east": "none", "north": "none", @@ -234024,7 +224269,7 @@ } }, { - "id": 5076, + "id": 4308, "properties": { "east": "none", "north": "none", @@ -234034,7 +224279,7 @@ } }, { - "id": 5077, + "id": 4309, "properties": { "east": "none", "north": "none", @@ -234044,7 +224289,7 @@ } }, { - "id": 5078, + "id": 4310, "properties": { "east": "none", "north": "none", @@ -234054,7 +224299,7 @@ } }, { - "id": 5079, + "id": 4311, "properties": { "east": "none", "north": "none", @@ -234064,7 +224309,7 @@ } }, { - "id": 5080, + "id": 4312, "properties": { "east": "none", "north": "none", @@ -234074,7 +224319,7 @@ } }, { - "id": 5081, + "id": 4313, "properties": { "east": "none", "north": "none", @@ -234084,7 +224329,7 @@ } }, { - "id": 5082, + "id": 4314, "properties": { "east": "none", "north": "none", @@ -234094,7 +224339,7 @@ } }, { - "id": 5083, + "id": 4315, "properties": { "east": "none", "north": "none", @@ -234104,7 +224349,7 @@ } }, { - "id": 5084, + "id": 4316, "properties": { "east": "none", "north": "none", @@ -234114,7 +224359,7 @@ } }, { - "id": 5085, + "id": 4317, "properties": { "east": "none", "north": "none", @@ -234124,7 +224369,7 @@ } }, { - "id": 5086, + "id": 4318, "properties": { "east": "none", "north": "none", @@ -234134,7 +224379,7 @@ } }, { - "id": 5087, + "id": 4319, "properties": { "east": "none", "north": "none", @@ -234144,7 +224389,7 @@ } }, { - "id": 5088, + "id": 4320, "properties": { "east": "none", "north": "none", @@ -234154,7 +224399,7 @@ } }, { - "id": 5089, + "id": 4321, "properties": { "east": "none", "north": "none", @@ -234164,7 +224409,7 @@ } }, { - "id": 5090, + "id": 4322, "properties": { "east": "none", "north": "none", @@ -234174,7 +224419,7 @@ } }, { - "id": 5091, + "id": 4323, "properties": { "east": "none", "north": "none", @@ -234184,7 +224429,7 @@ } }, { - "id": 5092, + "id": 4324, "properties": { "east": "none", "north": "none", @@ -234194,7 +224439,7 @@ } }, { - "id": 5093, + "id": 4325, "properties": { "east": "none", "north": "none", @@ -234204,7 +224449,7 @@ } }, { - "id": 5094, + "id": 4326, "properties": { "east": "none", "north": "none", @@ -234214,7 +224459,7 @@ } }, { - "id": 5095, + "id": 4327, "properties": { "east": "none", "north": "none", @@ -234224,7 +224469,7 @@ } }, { - "id": 5096, + "id": 4328, "properties": { "east": "none", "north": "none", @@ -234234,7 +224479,7 @@ } }, { - "id": 5097, + "id": 4329, "properties": { "east": "none", "north": "none", @@ -234244,7 +224489,7 @@ } }, { - "id": 5098, + "id": 4330, "properties": { "east": "none", "north": "none", @@ -234254,7 +224499,7 @@ } }, { - "id": 5099, + "id": 4331, "properties": { "east": "none", "north": "none", @@ -234264,7 +224509,7 @@ } }, { - "id": 5100, + "id": 4332, "properties": { "east": "none", "north": "none", @@ -234274,7 +224519,7 @@ } }, { - "id": 5101, + "id": 4333, "properties": { "east": "none", "north": "none", @@ -234284,7 +224529,7 @@ } }, { - "id": 5102, + "id": 4334, "properties": { "east": "none", "north": "none", @@ -234294,7 +224539,7 @@ } }, { - "id": 5103, + "id": 4335, "properties": { "east": "none", "north": "none", @@ -234304,7 +224549,7 @@ } }, { - "id": 5104, + "id": 4336, "properties": { "east": "none", "north": "none", @@ -234314,7 +224559,7 @@ } }, { - "id": 5105, + "id": 4337, "properties": { "east": "none", "north": "none", @@ -234333,7 +224578,7 @@ "states": [ { "default": true, - "id": 29390 + "id": 27633 } ] }, @@ -234366,7 +224611,7 @@ }, "states": [ { - "id": 6833, + "id": 6060, "properties": { "delay": "1", "facing": "north", @@ -234375,7 +224620,7 @@ } }, { - "id": 6834, + "id": 6061, "properties": { "delay": "1", "facing": "north", @@ -234384,7 +224629,7 @@ } }, { - "id": 6835, + "id": 6062, "properties": { "delay": "1", "facing": "north", @@ -234394,7 +224639,7 @@ }, { "default": true, - "id": 6836, + "id": 6063, "properties": { "delay": "1", "facing": "north", @@ -234403,7 +224648,7 @@ } }, { - "id": 6837, + "id": 6064, "properties": { "delay": "1", "facing": "south", @@ -234412,7 +224657,7 @@ } }, { - "id": 6838, + "id": 6065, "properties": { "delay": "1", "facing": "south", @@ -234421,7 +224666,7 @@ } }, { - "id": 6839, + "id": 6066, "properties": { "delay": "1", "facing": "south", @@ -234430,7 +224675,7 @@ } }, { - "id": 6840, + "id": 6067, "properties": { "delay": "1", "facing": "south", @@ -234439,7 +224684,7 @@ } }, { - "id": 6841, + "id": 6068, "properties": { "delay": "1", "facing": "west", @@ -234448,7 +224693,7 @@ } }, { - "id": 6842, + "id": 6069, "properties": { "delay": "1", "facing": "west", @@ -234457,7 +224702,7 @@ } }, { - "id": 6843, + "id": 6070, "properties": { "delay": "1", "facing": "west", @@ -234466,7 +224711,7 @@ } }, { - "id": 6844, + "id": 6071, "properties": { "delay": "1", "facing": "west", @@ -234475,7 +224720,7 @@ } }, { - "id": 6845, + "id": 6072, "properties": { "delay": "1", "facing": "east", @@ -234484,7 +224729,7 @@ } }, { - "id": 6846, + "id": 6073, "properties": { "delay": "1", "facing": "east", @@ -234493,7 +224738,7 @@ } }, { - "id": 6847, + "id": 6074, "properties": { "delay": "1", "facing": "east", @@ -234502,7 +224747,7 @@ } }, { - "id": 6848, + "id": 6075, "properties": { "delay": "1", "facing": "east", @@ -234511,7 +224756,7 @@ } }, { - "id": 6849, + "id": 6076, "properties": { "delay": "2", "facing": "north", @@ -234520,7 +224765,7 @@ } }, { - "id": 6850, + "id": 6077, "properties": { "delay": "2", "facing": "north", @@ -234529,7 +224774,7 @@ } }, { - "id": 6851, + "id": 6078, "properties": { "delay": "2", "facing": "north", @@ -234538,7 +224783,7 @@ } }, { - "id": 6852, + "id": 6079, "properties": { "delay": "2", "facing": "north", @@ -234547,7 +224792,7 @@ } }, { - "id": 6853, + "id": 6080, "properties": { "delay": "2", "facing": "south", @@ -234556,7 +224801,7 @@ } }, { - "id": 6854, + "id": 6081, "properties": { "delay": "2", "facing": "south", @@ -234565,7 +224810,7 @@ } }, { - "id": 6855, + "id": 6082, "properties": { "delay": "2", "facing": "south", @@ -234574,7 +224819,7 @@ } }, { - "id": 6856, + "id": 6083, "properties": { "delay": "2", "facing": "south", @@ -234583,7 +224828,7 @@ } }, { - "id": 6857, + "id": 6084, "properties": { "delay": "2", "facing": "west", @@ -234592,7 +224837,7 @@ } }, { - "id": 6858, + "id": 6085, "properties": { "delay": "2", "facing": "west", @@ -234601,7 +224846,7 @@ } }, { - "id": 6859, + "id": 6086, "properties": { "delay": "2", "facing": "west", @@ -234610,7 +224855,7 @@ } }, { - "id": 6860, + "id": 6087, "properties": { "delay": "2", "facing": "west", @@ -234619,7 +224864,7 @@ } }, { - "id": 6861, + "id": 6088, "properties": { "delay": "2", "facing": "east", @@ -234628,7 +224873,7 @@ } }, { - "id": 6862, + "id": 6089, "properties": { "delay": "2", "facing": "east", @@ -234637,7 +224882,7 @@ } }, { - "id": 6863, + "id": 6090, "properties": { "delay": "2", "facing": "east", @@ -234646,7 +224891,7 @@ } }, { - "id": 6864, + "id": 6091, "properties": { "delay": "2", "facing": "east", @@ -234655,7 +224900,7 @@ } }, { - "id": 6865, + "id": 6092, "properties": { "delay": "3", "facing": "north", @@ -234664,7 +224909,7 @@ } }, { - "id": 6866, + "id": 6093, "properties": { "delay": "3", "facing": "north", @@ -234673,7 +224918,7 @@ } }, { - "id": 6867, + "id": 6094, "properties": { "delay": "3", "facing": "north", @@ -234682,7 +224927,7 @@ } }, { - "id": 6868, + "id": 6095, "properties": { "delay": "3", "facing": "north", @@ -234691,7 +224936,7 @@ } }, { - "id": 6869, + "id": 6096, "properties": { "delay": "3", "facing": "south", @@ -234700,7 +224945,7 @@ } }, { - "id": 6870, + "id": 6097, "properties": { "delay": "3", "facing": "south", @@ -234709,7 +224954,7 @@ } }, { - "id": 6871, + "id": 6098, "properties": { "delay": "3", "facing": "south", @@ -234718,7 +224963,7 @@ } }, { - "id": 6872, + "id": 6099, "properties": { "delay": "3", "facing": "south", @@ -234727,7 +224972,7 @@ } }, { - "id": 6873, + "id": 6100, "properties": { "delay": "3", "facing": "west", @@ -234736,7 +224981,7 @@ } }, { - "id": 6874, + "id": 6101, "properties": { "delay": "3", "facing": "west", @@ -234745,7 +224990,7 @@ } }, { - "id": 6875, + "id": 6102, "properties": { "delay": "3", "facing": "west", @@ -234754,7 +224999,7 @@ } }, { - "id": 6876, + "id": 6103, "properties": { "delay": "3", "facing": "west", @@ -234763,7 +225008,7 @@ } }, { - "id": 6877, + "id": 6104, "properties": { "delay": "3", "facing": "east", @@ -234772,7 +225017,7 @@ } }, { - "id": 6878, + "id": 6105, "properties": { "delay": "3", "facing": "east", @@ -234781,7 +225026,7 @@ } }, { - "id": 6879, + "id": 6106, "properties": { "delay": "3", "facing": "east", @@ -234790,7 +225035,7 @@ } }, { - "id": 6880, + "id": 6107, "properties": { "delay": "3", "facing": "east", @@ -234799,7 +225044,7 @@ } }, { - "id": 6881, + "id": 6108, "properties": { "delay": "4", "facing": "north", @@ -234808,7 +225053,7 @@ } }, { - "id": 6882, + "id": 6109, "properties": { "delay": "4", "facing": "north", @@ -234817,7 +225062,7 @@ } }, { - "id": 6883, + "id": 6110, "properties": { "delay": "4", "facing": "north", @@ -234826,7 +225071,7 @@ } }, { - "id": 6884, + "id": 6111, "properties": { "delay": "4", "facing": "north", @@ -234835,7 +225080,7 @@ } }, { - "id": 6885, + "id": 6112, "properties": { "delay": "4", "facing": "south", @@ -234844,7 +225089,7 @@ } }, { - "id": 6886, + "id": 6113, "properties": { "delay": "4", "facing": "south", @@ -234853,7 +225098,7 @@ } }, { - "id": 6887, + "id": 6114, "properties": { "delay": "4", "facing": "south", @@ -234862,7 +225107,7 @@ } }, { - "id": 6888, + "id": 6115, "properties": { "delay": "4", "facing": "south", @@ -234871,7 +225116,7 @@ } }, { - "id": 6889, + "id": 6116, "properties": { "delay": "4", "facing": "west", @@ -234880,7 +225125,7 @@ } }, { - "id": 6890, + "id": 6117, "properties": { "delay": "4", "facing": "west", @@ -234889,7 +225134,7 @@ } }, { - "id": 6891, + "id": 6118, "properties": { "delay": "4", "facing": "west", @@ -234898,7 +225143,7 @@ } }, { - "id": 6892, + "id": 6119, "properties": { "delay": "4", "facing": "west", @@ -234907,7 +225152,7 @@ } }, { - "id": 6893, + "id": 6120, "properties": { "delay": "4", "facing": "east", @@ -234916,7 +225161,7 @@ } }, { - "id": 6894, + "id": 6121, "properties": { "delay": "4", "facing": "east", @@ -234925,7 +225170,7 @@ } }, { - "id": 6895, + "id": 6122, "properties": { "delay": "4", "facing": "east", @@ -234934,7 +225179,7 @@ } }, { - "id": 6896, + "id": 6123, "properties": { "delay": "4", "facing": "east", @@ -234966,42 +225211,42 @@ }, "states": [ { - "id": 14615, + "id": 13538, "properties": { "conditional": "true", "facing": "north" } }, { - "id": 14616, + "id": 13539, "properties": { "conditional": "true", "facing": "east" } }, { - "id": 14617, + "id": 13540, "properties": { "conditional": "true", "facing": "south" } }, { - "id": 14618, + "id": 13541, "properties": { "conditional": "true", "facing": "west" } }, { - "id": 14619, + "id": 13542, "properties": { "conditional": "true", "facing": "up" } }, { - "id": 14620, + "id": 13543, "properties": { "conditional": "true", "facing": "down" @@ -235009,42 +225254,42 @@ }, { "default": true, - "id": 14621, + "id": 13544, "properties": { "conditional": "false", "facing": "north" } }, { - "id": 14622, + "id": 13545, "properties": { "conditional": "false", "facing": "east" } }, { - "id": 14623, + "id": 13546, "properties": { "conditional": "false", "facing": "south" } }, { - "id": 14624, + "id": 13547, "properties": { "conditional": "false", "facing": "west" } }, { - "id": 14625, + "id": 13548, "properties": { "conditional": "false", "facing": "up" } }, { - "id": 14626, + "id": 13549, "properties": { "conditional": "false", "facing": "down" @@ -235060,7 +225305,7 @@ "states": [ { "default": true, - "id": 8720 + "id": 7643 } ] }, @@ -235082,21 +225327,21 @@ }, "states": [ { - "id": 8802, + "id": 7725, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 8803, + "id": 7726, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 8804, + "id": 7727, "properties": { "type": "bottom", "waterlogged": "true" @@ -235104,21 +225349,21 @@ }, { "default": true, - "id": 8805, + "id": 7728, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 8806, + "id": 7729, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 8807, + "id": 7730, "properties": { "type": "double", "waterlogged": "false" @@ -235159,7 +225404,7 @@ }, "states": [ { - "id": 8722, + "id": 7645, "properties": { "facing": "north", "half": "top", @@ -235168,7 +225413,7 @@ } }, { - "id": 8723, + "id": 7646, "properties": { "facing": "north", "half": "top", @@ -235177,7 +225422,7 @@ } }, { - "id": 8724, + "id": 7647, "properties": { "facing": "north", "half": "top", @@ -235186,7 +225431,7 @@ } }, { - "id": 8725, + "id": 7648, "properties": { "facing": "north", "half": "top", @@ -235195,7 +225440,7 @@ } }, { - "id": 8726, + "id": 7649, "properties": { "facing": "north", "half": "top", @@ -235204,7 +225449,7 @@ } }, { - "id": 8727, + "id": 7650, "properties": { "facing": "north", "half": "top", @@ -235213,7 +225458,7 @@ } }, { - "id": 8728, + "id": 7651, "properties": { "facing": "north", "half": "top", @@ -235222,7 +225467,7 @@ } }, { - "id": 8729, + "id": 7652, "properties": { "facing": "north", "half": "top", @@ -235231,7 +225476,7 @@ } }, { - "id": 8730, + "id": 7653, "properties": { "facing": "north", "half": "top", @@ -235240,7 +225485,7 @@ } }, { - "id": 8731, + "id": 7654, "properties": { "facing": "north", "half": "top", @@ -235249,7 +225494,7 @@ } }, { - "id": 8732, + "id": 7655, "properties": { "facing": "north", "half": "bottom", @@ -235259,7 +225504,7 @@ }, { "default": true, - "id": 8733, + "id": 7656, "properties": { "facing": "north", "half": "bottom", @@ -235268,7 +225513,7 @@ } }, { - "id": 8734, + "id": 7657, "properties": { "facing": "north", "half": "bottom", @@ -235277,7 +225522,7 @@ } }, { - "id": 8735, + "id": 7658, "properties": { "facing": "north", "half": "bottom", @@ -235286,7 +225531,7 @@ } }, { - "id": 8736, + "id": 7659, "properties": { "facing": "north", "half": "bottom", @@ -235295,7 +225540,7 @@ } }, { - "id": 8737, + "id": 7660, "properties": { "facing": "north", "half": "bottom", @@ -235304,7 +225549,7 @@ } }, { - "id": 8738, + "id": 7661, "properties": { "facing": "north", "half": "bottom", @@ -235313,7 +225558,7 @@ } }, { - "id": 8739, + "id": 7662, "properties": { "facing": "north", "half": "bottom", @@ -235322,7 +225567,7 @@ } }, { - "id": 8740, + "id": 7663, "properties": { "facing": "north", "half": "bottom", @@ -235331,7 +225576,7 @@ } }, { - "id": 8741, + "id": 7664, "properties": { "facing": "north", "half": "bottom", @@ -235340,7 +225585,7 @@ } }, { - "id": 8742, + "id": 7665, "properties": { "facing": "south", "half": "top", @@ -235349,7 +225594,7 @@ } }, { - "id": 8743, + "id": 7666, "properties": { "facing": "south", "half": "top", @@ -235358,7 +225603,7 @@ } }, { - "id": 8744, + "id": 7667, "properties": { "facing": "south", "half": "top", @@ -235367,7 +225612,7 @@ } }, { - "id": 8745, + "id": 7668, "properties": { "facing": "south", "half": "top", @@ -235376,7 +225621,7 @@ } }, { - "id": 8746, + "id": 7669, "properties": { "facing": "south", "half": "top", @@ -235385,7 +225630,7 @@ } }, { - "id": 8747, + "id": 7670, "properties": { "facing": "south", "half": "top", @@ -235394,7 +225639,7 @@ } }, { - "id": 8748, + "id": 7671, "properties": { "facing": "south", "half": "top", @@ -235403,7 +225648,7 @@ } }, { - "id": 8749, + "id": 7672, "properties": { "facing": "south", "half": "top", @@ -235412,7 +225657,7 @@ } }, { - "id": 8750, + "id": 7673, "properties": { "facing": "south", "half": "top", @@ -235421,7 +225666,7 @@ } }, { - "id": 8751, + "id": 7674, "properties": { "facing": "south", "half": "top", @@ -235430,7 +225675,7 @@ } }, { - "id": 8752, + "id": 7675, "properties": { "facing": "south", "half": "bottom", @@ -235439,7 +225684,7 @@ } }, { - "id": 8753, + "id": 7676, "properties": { "facing": "south", "half": "bottom", @@ -235448,7 +225693,7 @@ } }, { - "id": 8754, + "id": 7677, "properties": { "facing": "south", "half": "bottom", @@ -235457,7 +225702,7 @@ } }, { - "id": 8755, + "id": 7678, "properties": { "facing": "south", "half": "bottom", @@ -235466,7 +225711,7 @@ } }, { - "id": 8756, + "id": 7679, "properties": { "facing": "south", "half": "bottom", @@ -235475,7 +225720,7 @@ } }, { - "id": 8757, + "id": 7680, "properties": { "facing": "south", "half": "bottom", @@ -235484,7 +225729,7 @@ } }, { - "id": 8758, + "id": 7681, "properties": { "facing": "south", "half": "bottom", @@ -235493,7 +225738,7 @@ } }, { - "id": 8759, + "id": 7682, "properties": { "facing": "south", "half": "bottom", @@ -235502,7 +225747,7 @@ } }, { - "id": 8760, + "id": 7683, "properties": { "facing": "south", "half": "bottom", @@ -235511,7 +225756,7 @@ } }, { - "id": 8761, + "id": 7684, "properties": { "facing": "south", "half": "bottom", @@ -235520,7 +225765,7 @@ } }, { - "id": 8762, + "id": 7685, "properties": { "facing": "west", "half": "top", @@ -235529,7 +225774,7 @@ } }, { - "id": 8763, + "id": 7686, "properties": { "facing": "west", "half": "top", @@ -235538,7 +225783,7 @@ } }, { - "id": 8764, + "id": 7687, "properties": { "facing": "west", "half": "top", @@ -235547,7 +225792,7 @@ } }, { - "id": 8765, + "id": 7688, "properties": { "facing": "west", "half": "top", @@ -235556,7 +225801,7 @@ } }, { - "id": 8766, + "id": 7689, "properties": { "facing": "west", "half": "top", @@ -235565,7 +225810,7 @@ } }, { - "id": 8767, + "id": 7690, "properties": { "facing": "west", "half": "top", @@ -235574,7 +225819,7 @@ } }, { - "id": 8768, + "id": 7691, "properties": { "facing": "west", "half": "top", @@ -235583,7 +225828,7 @@ } }, { - "id": 8769, + "id": 7692, "properties": { "facing": "west", "half": "top", @@ -235592,7 +225837,7 @@ } }, { - "id": 8770, + "id": 7693, "properties": { "facing": "west", "half": "top", @@ -235601,7 +225846,7 @@ } }, { - "id": 8771, + "id": 7694, "properties": { "facing": "west", "half": "top", @@ -235610,7 +225855,7 @@ } }, { - "id": 8772, + "id": 7695, "properties": { "facing": "west", "half": "bottom", @@ -235619,7 +225864,7 @@ } }, { - "id": 8773, + "id": 7696, "properties": { "facing": "west", "half": "bottom", @@ -235628,7 +225873,7 @@ } }, { - "id": 8774, + "id": 7697, "properties": { "facing": "west", "half": "bottom", @@ -235637,7 +225882,7 @@ } }, { - "id": 8775, + "id": 7698, "properties": { "facing": "west", "half": "bottom", @@ -235646,7 +225891,7 @@ } }, { - "id": 8776, + "id": 7699, "properties": { "facing": "west", "half": "bottom", @@ -235655,7 +225900,7 @@ } }, { - "id": 8777, + "id": 7700, "properties": { "facing": "west", "half": "bottom", @@ -235664,7 +225909,7 @@ } }, { - "id": 8778, + "id": 7701, "properties": { "facing": "west", "half": "bottom", @@ -235673,7 +225918,7 @@ } }, { - "id": 8779, + "id": 7702, "properties": { "facing": "west", "half": "bottom", @@ -235682,7 +225927,7 @@ } }, { - "id": 8780, + "id": 7703, "properties": { "facing": "west", "half": "bottom", @@ -235691,7 +225936,7 @@ } }, { - "id": 8781, + "id": 7704, "properties": { "facing": "west", "half": "bottom", @@ -235700,7 +225945,7 @@ } }, { - "id": 8782, + "id": 7705, "properties": { "facing": "east", "half": "top", @@ -235709,7 +225954,7 @@ } }, { - "id": 8783, + "id": 7706, "properties": { "facing": "east", "half": "top", @@ -235718,7 +225963,7 @@ } }, { - "id": 8784, + "id": 7707, "properties": { "facing": "east", "half": "top", @@ -235727,7 +225972,7 @@ } }, { - "id": 8785, + "id": 7708, "properties": { "facing": "east", "half": "top", @@ -235736,7 +225981,7 @@ } }, { - "id": 8786, + "id": 7709, "properties": { "facing": "east", "half": "top", @@ -235745,7 +225990,7 @@ } }, { - "id": 8787, + "id": 7710, "properties": { "facing": "east", "half": "top", @@ -235754,7 +225999,7 @@ } }, { - "id": 8788, + "id": 7711, "properties": { "facing": "east", "half": "top", @@ -235763,7 +226008,7 @@ } }, { - "id": 8789, + "id": 7712, "properties": { "facing": "east", "half": "top", @@ -235772,7 +226017,7 @@ } }, { - "id": 8790, + "id": 7713, "properties": { "facing": "east", "half": "top", @@ -235781,7 +226026,7 @@ } }, { - "id": 8791, + "id": 7714, "properties": { "facing": "east", "half": "top", @@ -235790,7 +226035,7 @@ } }, { - "id": 8792, + "id": 7715, "properties": { "facing": "east", "half": "bottom", @@ -235799,7 +226044,7 @@ } }, { - "id": 8793, + "id": 7716, "properties": { "facing": "east", "half": "bottom", @@ -235808,7 +226053,7 @@ } }, { - "id": 8794, + "id": 7717, "properties": { "facing": "east", "half": "bottom", @@ -235817,7 +226062,7 @@ } }, { - "id": 8795, + "id": 7718, "properties": { "facing": "east", "half": "bottom", @@ -235826,7 +226071,7 @@ } }, { - "id": 8796, + "id": 7719, "properties": { "facing": "east", "half": "bottom", @@ -235835,7 +226080,7 @@ } }, { - "id": 8797, + "id": 7720, "properties": { "facing": "east", "half": "bottom", @@ -235844,7 +226089,7 @@ } }, { - "id": 8798, + "id": 7721, "properties": { "facing": "east", "half": "bottom", @@ -235853,7 +226098,7 @@ } }, { - "id": 8799, + "id": 7722, "properties": { "facing": "east", "half": "bottom", @@ -235862,7 +226107,7 @@ } }, { - "id": 8800, + "id": 7723, "properties": { "facing": "east", "half": "bottom", @@ -235871,7 +226116,7 @@ } }, { - "id": 8801, + "id": 7724, "properties": { "facing": "east", "half": "bottom", @@ -235918,7 +226163,7 @@ }, "states": [ { - "id": 8808, + "id": 7731, "properties": { "east": "none", "north": "none", @@ -235929,7 +226174,7 @@ } }, { - "id": 8809, + "id": 7732, "properties": { "east": "none", "north": "none", @@ -235940,7 +226185,7 @@ } }, { - "id": 8810, + "id": 7733, "properties": { "east": "none", "north": "none", @@ -235952,7 +226197,7 @@ }, { "default": true, - "id": 8811, + "id": 7734, "properties": { "east": "none", "north": "none", @@ -235963,7 +226208,7 @@ } }, { - "id": 8812, + "id": 7735, "properties": { "east": "none", "north": "none", @@ -235974,7 +226219,7 @@ } }, { - "id": 8813, + "id": 7736, "properties": { "east": "none", "north": "none", @@ -235985,7 +226230,7 @@ } }, { - "id": 8814, + "id": 7737, "properties": { "east": "none", "north": "none", @@ -235996,7 +226241,7 @@ } }, { - "id": 8815, + "id": 7738, "properties": { "east": "none", "north": "none", @@ -236007,7 +226252,7 @@ } }, { - "id": 8816, + "id": 7739, "properties": { "east": "none", "north": "none", @@ -236018,7 +226263,7 @@ } }, { - "id": 8817, + "id": 7740, "properties": { "east": "none", "north": "none", @@ -236029,7 +226274,7 @@ } }, { - "id": 8818, + "id": 7741, "properties": { "east": "none", "north": "none", @@ -236040,7 +226285,7 @@ } }, { - "id": 8819, + "id": 7742, "properties": { "east": "none", "north": "none", @@ -236051,7 +226296,7 @@ } }, { - "id": 8820, + "id": 7743, "properties": { "east": "none", "north": "none", @@ -236062,7 +226307,7 @@ } }, { - "id": 8821, + "id": 7744, "properties": { "east": "none", "north": "none", @@ -236073,7 +226318,7 @@ } }, { - "id": 8822, + "id": 7745, "properties": { "east": "none", "north": "none", @@ -236084,7 +226329,7 @@ } }, { - "id": 8823, + "id": 7746, "properties": { "east": "none", "north": "none", @@ -236095,7 +226340,7 @@ } }, { - "id": 8824, + "id": 7747, "properties": { "east": "none", "north": "none", @@ -236106,7 +226351,7 @@ } }, { - "id": 8825, + "id": 7748, "properties": { "east": "none", "north": "none", @@ -236117,7 +226362,7 @@ } }, { - "id": 8826, + "id": 7749, "properties": { "east": "none", "north": "none", @@ -236128,7 +226373,7 @@ } }, { - "id": 8827, + "id": 7750, "properties": { "east": "none", "north": "none", @@ -236139,7 +226384,7 @@ } }, { - "id": 8828, + "id": 7751, "properties": { "east": "none", "north": "none", @@ -236150,7 +226395,7 @@ } }, { - "id": 8829, + "id": 7752, "properties": { "east": "none", "north": "none", @@ -236161,7 +226406,7 @@ } }, { - "id": 8830, + "id": 7753, "properties": { "east": "none", "north": "none", @@ -236172,7 +226417,7 @@ } }, { - "id": 8831, + "id": 7754, "properties": { "east": "none", "north": "none", @@ -236183,7 +226428,7 @@ } }, { - "id": 8832, + "id": 7755, "properties": { "east": "none", "north": "none", @@ -236194,7 +226439,7 @@ } }, { - "id": 8833, + "id": 7756, "properties": { "east": "none", "north": "none", @@ -236205,7 +226450,7 @@ } }, { - "id": 8834, + "id": 7757, "properties": { "east": "none", "north": "none", @@ -236216,7 +226461,7 @@ } }, { - "id": 8835, + "id": 7758, "properties": { "east": "none", "north": "none", @@ -236227,7 +226472,7 @@ } }, { - "id": 8836, + "id": 7759, "properties": { "east": "none", "north": "none", @@ -236238,7 +226483,7 @@ } }, { - "id": 8837, + "id": 7760, "properties": { "east": "none", "north": "none", @@ -236249,7 +226494,7 @@ } }, { - "id": 8838, + "id": 7761, "properties": { "east": "none", "north": "none", @@ -236260,7 +226505,7 @@ } }, { - "id": 8839, + "id": 7762, "properties": { "east": "none", "north": "none", @@ -236271,7 +226516,7 @@ } }, { - "id": 8840, + "id": 7763, "properties": { "east": "none", "north": "none", @@ -236282,7 +226527,7 @@ } }, { - "id": 8841, + "id": 7764, "properties": { "east": "none", "north": "none", @@ -236293,7 +226538,7 @@ } }, { - "id": 8842, + "id": 7765, "properties": { "east": "none", "north": "none", @@ -236304,7 +226549,7 @@ } }, { - "id": 8843, + "id": 7766, "properties": { "east": "none", "north": "none", @@ -236315,7 +226560,7 @@ } }, { - "id": 8844, + "id": 7767, "properties": { "east": "none", "north": "low", @@ -236326,7 +226571,7 @@ } }, { - "id": 8845, + "id": 7768, "properties": { "east": "none", "north": "low", @@ -236337,7 +226582,7 @@ } }, { - "id": 8846, + "id": 7769, "properties": { "east": "none", "north": "low", @@ -236348,7 +226593,7 @@ } }, { - "id": 8847, + "id": 7770, "properties": { "east": "none", "north": "low", @@ -236359,7 +226604,7 @@ } }, { - "id": 8848, + "id": 7771, "properties": { "east": "none", "north": "low", @@ -236370,7 +226615,7 @@ } }, { - "id": 8849, + "id": 7772, "properties": { "east": "none", "north": "low", @@ -236381,7 +226626,7 @@ } }, { - "id": 8850, + "id": 7773, "properties": { "east": "none", "north": "low", @@ -236392,7 +226637,7 @@ } }, { - "id": 8851, + "id": 7774, "properties": { "east": "none", "north": "low", @@ -236403,7 +226648,7 @@ } }, { - "id": 8852, + "id": 7775, "properties": { "east": "none", "north": "low", @@ -236414,7 +226659,7 @@ } }, { - "id": 8853, + "id": 7776, "properties": { "east": "none", "north": "low", @@ -236425,7 +226670,7 @@ } }, { - "id": 8854, + "id": 7777, "properties": { "east": "none", "north": "low", @@ -236436,7 +226681,7 @@ } }, { - "id": 8855, + "id": 7778, "properties": { "east": "none", "north": "low", @@ -236447,7 +226692,7 @@ } }, { - "id": 8856, + "id": 7779, "properties": { "east": "none", "north": "low", @@ -236458,7 +226703,7 @@ } }, { - "id": 8857, + "id": 7780, "properties": { "east": "none", "north": "low", @@ -236469,7 +226714,7 @@ } }, { - "id": 8858, + "id": 7781, "properties": { "east": "none", "north": "low", @@ -236480,7 +226725,7 @@ } }, { - "id": 8859, + "id": 7782, "properties": { "east": "none", "north": "low", @@ -236491,7 +226736,7 @@ } }, { - "id": 8860, + "id": 7783, "properties": { "east": "none", "north": "low", @@ -236502,7 +226747,7 @@ } }, { - "id": 8861, + "id": 7784, "properties": { "east": "none", "north": "low", @@ -236513,7 +226758,7 @@ } }, { - "id": 8862, + "id": 7785, "properties": { "east": "none", "north": "low", @@ -236524,7 +226769,7 @@ } }, { - "id": 8863, + "id": 7786, "properties": { "east": "none", "north": "low", @@ -236535,7 +226780,7 @@ } }, { - "id": 8864, + "id": 7787, "properties": { "east": "none", "north": "low", @@ -236546,7 +226791,7 @@ } }, { - "id": 8865, + "id": 7788, "properties": { "east": "none", "north": "low", @@ -236557,7 +226802,7 @@ } }, { - "id": 8866, + "id": 7789, "properties": { "east": "none", "north": "low", @@ -236568,7 +226813,7 @@ } }, { - "id": 8867, + "id": 7790, "properties": { "east": "none", "north": "low", @@ -236579,7 +226824,7 @@ } }, { - "id": 8868, + "id": 7791, "properties": { "east": "none", "north": "low", @@ -236590,7 +226835,7 @@ } }, { - "id": 8869, + "id": 7792, "properties": { "east": "none", "north": "low", @@ -236601,7 +226846,7 @@ } }, { - "id": 8870, + "id": 7793, "properties": { "east": "none", "north": "low", @@ -236612,7 +226857,7 @@ } }, { - "id": 8871, + "id": 7794, "properties": { "east": "none", "north": "low", @@ -236623,7 +226868,7 @@ } }, { - "id": 8872, + "id": 7795, "properties": { "east": "none", "north": "low", @@ -236634,7 +226879,7 @@ } }, { - "id": 8873, + "id": 7796, "properties": { "east": "none", "north": "low", @@ -236645,7 +226890,7 @@ } }, { - "id": 8874, + "id": 7797, "properties": { "east": "none", "north": "low", @@ -236656,7 +226901,7 @@ } }, { - "id": 8875, + "id": 7798, "properties": { "east": "none", "north": "low", @@ -236667,7 +226912,7 @@ } }, { - "id": 8876, + "id": 7799, "properties": { "east": "none", "north": "low", @@ -236678,7 +226923,7 @@ } }, { - "id": 8877, + "id": 7800, "properties": { "east": "none", "north": "low", @@ -236689,7 +226934,7 @@ } }, { - "id": 8878, + "id": 7801, "properties": { "east": "none", "north": "low", @@ -236700,7 +226945,7 @@ } }, { - "id": 8879, + "id": 7802, "properties": { "east": "none", "north": "low", @@ -236711,7 +226956,7 @@ } }, { - "id": 8880, + "id": 7803, "properties": { "east": "none", "north": "tall", @@ -236722,7 +226967,7 @@ } }, { - "id": 8881, + "id": 7804, "properties": { "east": "none", "north": "tall", @@ -236733,7 +226978,7 @@ } }, { - "id": 8882, + "id": 7805, "properties": { "east": "none", "north": "tall", @@ -236744,7 +226989,7 @@ } }, { - "id": 8883, + "id": 7806, "properties": { "east": "none", "north": "tall", @@ -236755,7 +227000,7 @@ } }, { - "id": 8884, + "id": 7807, "properties": { "east": "none", "north": "tall", @@ -236766,7 +227011,7 @@ } }, { - "id": 8885, + "id": 7808, "properties": { "east": "none", "north": "tall", @@ -236777,7 +227022,7 @@ } }, { - "id": 8886, + "id": 7809, "properties": { "east": "none", "north": "tall", @@ -236788,7 +227033,7 @@ } }, { - "id": 8887, + "id": 7810, "properties": { "east": "none", "north": "tall", @@ -236799,7 +227044,7 @@ } }, { - "id": 8888, + "id": 7811, "properties": { "east": "none", "north": "tall", @@ -236810,7 +227055,7 @@ } }, { - "id": 8889, + "id": 7812, "properties": { "east": "none", "north": "tall", @@ -236821,7 +227066,7 @@ } }, { - "id": 8890, + "id": 7813, "properties": { "east": "none", "north": "tall", @@ -236832,7 +227077,7 @@ } }, { - "id": 8891, + "id": 7814, "properties": { "east": "none", "north": "tall", @@ -236843,7 +227088,7 @@ } }, { - "id": 8892, + "id": 7815, "properties": { "east": "none", "north": "tall", @@ -236854,7 +227099,7 @@ } }, { - "id": 8893, + "id": 7816, "properties": { "east": "none", "north": "tall", @@ -236865,7 +227110,7 @@ } }, { - "id": 8894, + "id": 7817, "properties": { "east": "none", "north": "tall", @@ -236876,7 +227121,7 @@ } }, { - "id": 8895, + "id": 7818, "properties": { "east": "none", "north": "tall", @@ -236887,7 +227132,7 @@ } }, { - "id": 8896, + "id": 7819, "properties": { "east": "none", "north": "tall", @@ -236898,7 +227143,7 @@ } }, { - "id": 8897, + "id": 7820, "properties": { "east": "none", "north": "tall", @@ -236909,7 +227154,7 @@ } }, { - "id": 8898, + "id": 7821, "properties": { "east": "none", "north": "tall", @@ -236920,7 +227165,7 @@ } }, { - "id": 8899, + "id": 7822, "properties": { "east": "none", "north": "tall", @@ -236931,7 +227176,7 @@ } }, { - "id": 8900, + "id": 7823, "properties": { "east": "none", "north": "tall", @@ -236942,7 +227187,7 @@ } }, { - "id": 8901, + "id": 7824, "properties": { "east": "none", "north": "tall", @@ -236953,7 +227198,7 @@ } }, { - "id": 8902, + "id": 7825, "properties": { "east": "none", "north": "tall", @@ -236964,7 +227209,7 @@ } }, { - "id": 8903, + "id": 7826, "properties": { "east": "none", "north": "tall", @@ -236975,7 +227220,7 @@ } }, { - "id": 8904, + "id": 7827, "properties": { "east": "none", "north": "tall", @@ -236986,7 +227231,7 @@ } }, { - "id": 8905, + "id": 7828, "properties": { "east": "none", "north": "tall", @@ -236997,7 +227242,7 @@ } }, { - "id": 8906, + "id": 7829, "properties": { "east": "none", "north": "tall", @@ -237008,7 +227253,7 @@ } }, { - "id": 8907, + "id": 7830, "properties": { "east": "none", "north": "tall", @@ -237019,7 +227264,7 @@ } }, { - "id": 8908, + "id": 7831, "properties": { "east": "none", "north": "tall", @@ -237030,7 +227275,7 @@ } }, { - "id": 8909, + "id": 7832, "properties": { "east": "none", "north": "tall", @@ -237041,7 +227286,7 @@ } }, { - "id": 8910, + "id": 7833, "properties": { "east": "none", "north": "tall", @@ -237052,7 +227297,7 @@ } }, { - "id": 8911, + "id": 7834, "properties": { "east": "none", "north": "tall", @@ -237063,7 +227308,7 @@ } }, { - "id": 8912, + "id": 7835, "properties": { "east": "none", "north": "tall", @@ -237074,7 +227319,7 @@ } }, { - "id": 8913, + "id": 7836, "properties": { "east": "none", "north": "tall", @@ -237085,7 +227330,7 @@ } }, { - "id": 8914, + "id": 7837, "properties": { "east": "none", "north": "tall", @@ -237096,7 +227341,7 @@ } }, { - "id": 8915, + "id": 7838, "properties": { "east": "none", "north": "tall", @@ -237107,7 +227352,7 @@ } }, { - "id": 8916, + "id": 7839, "properties": { "east": "low", "north": "none", @@ -237118,7 +227363,7 @@ } }, { - "id": 8917, + "id": 7840, "properties": { "east": "low", "north": "none", @@ -237129,7 +227374,7 @@ } }, { - "id": 8918, + "id": 7841, "properties": { "east": "low", "north": "none", @@ -237140,7 +227385,7 @@ } }, { - "id": 8919, + "id": 7842, "properties": { "east": "low", "north": "none", @@ -237151,7 +227396,7 @@ } }, { - "id": 8920, + "id": 7843, "properties": { "east": "low", "north": "none", @@ -237162,7 +227407,7 @@ } }, { - "id": 8921, + "id": 7844, "properties": { "east": "low", "north": "none", @@ -237173,7 +227418,7 @@ } }, { - "id": 8922, + "id": 7845, "properties": { "east": "low", "north": "none", @@ -237184,7 +227429,7 @@ } }, { - "id": 8923, + "id": 7846, "properties": { "east": "low", "north": "none", @@ -237195,7 +227440,7 @@ } }, { - "id": 8924, + "id": 7847, "properties": { "east": "low", "north": "none", @@ -237206,7 +227451,7 @@ } }, { - "id": 8925, + "id": 7848, "properties": { "east": "low", "north": "none", @@ -237217,7 +227462,7 @@ } }, { - "id": 8926, + "id": 7849, "properties": { "east": "low", "north": "none", @@ -237228,7 +227473,7 @@ } }, { - "id": 8927, + "id": 7850, "properties": { "east": "low", "north": "none", @@ -237239,7 +227484,7 @@ } }, { - "id": 8928, + "id": 7851, "properties": { "east": "low", "north": "none", @@ -237250,7 +227495,7 @@ } }, { - "id": 8929, + "id": 7852, "properties": { "east": "low", "north": "none", @@ -237261,7 +227506,7 @@ } }, { - "id": 8930, + "id": 7853, "properties": { "east": "low", "north": "none", @@ -237272,7 +227517,7 @@ } }, { - "id": 8931, + "id": 7854, "properties": { "east": "low", "north": "none", @@ -237283,7 +227528,7 @@ } }, { - "id": 8932, + "id": 7855, "properties": { "east": "low", "north": "none", @@ -237294,7 +227539,7 @@ } }, { - "id": 8933, + "id": 7856, "properties": { "east": "low", "north": "none", @@ -237305,7 +227550,7 @@ } }, { - "id": 8934, + "id": 7857, "properties": { "east": "low", "north": "none", @@ -237316,7 +227561,7 @@ } }, { - "id": 8935, + "id": 7858, "properties": { "east": "low", "north": "none", @@ -237327,7 +227572,7 @@ } }, { - "id": 8936, + "id": 7859, "properties": { "east": "low", "north": "none", @@ -237338,7 +227583,7 @@ } }, { - "id": 8937, + "id": 7860, "properties": { "east": "low", "north": "none", @@ -237349,7 +227594,7 @@ } }, { - "id": 8938, + "id": 7861, "properties": { "east": "low", "north": "none", @@ -237360,7 +227605,7 @@ } }, { - "id": 8939, + "id": 7862, "properties": { "east": "low", "north": "none", @@ -237371,7 +227616,7 @@ } }, { - "id": 8940, + "id": 7863, "properties": { "east": "low", "north": "none", @@ -237382,7 +227627,7 @@ } }, { - "id": 8941, + "id": 7864, "properties": { "east": "low", "north": "none", @@ -237393,7 +227638,7 @@ } }, { - "id": 8942, + "id": 7865, "properties": { "east": "low", "north": "none", @@ -237404,7 +227649,7 @@ } }, { - "id": 8943, + "id": 7866, "properties": { "east": "low", "north": "none", @@ -237415,7 +227660,7 @@ } }, { - "id": 8944, + "id": 7867, "properties": { "east": "low", "north": "none", @@ -237426,7 +227671,7 @@ } }, { - "id": 8945, + "id": 7868, "properties": { "east": "low", "north": "none", @@ -237437,7 +227682,7 @@ } }, { - "id": 8946, + "id": 7869, "properties": { "east": "low", "north": "none", @@ -237448,7 +227693,7 @@ } }, { - "id": 8947, + "id": 7870, "properties": { "east": "low", "north": "none", @@ -237459,7 +227704,7 @@ } }, { - "id": 8948, + "id": 7871, "properties": { "east": "low", "north": "none", @@ -237470,7 +227715,7 @@ } }, { - "id": 8949, + "id": 7872, "properties": { "east": "low", "north": "none", @@ -237481,7 +227726,7 @@ } }, { - "id": 8950, + "id": 7873, "properties": { "east": "low", "north": "none", @@ -237492,7 +227737,7 @@ } }, { - "id": 8951, + "id": 7874, "properties": { "east": "low", "north": "none", @@ -237503,7 +227748,7 @@ } }, { - "id": 8952, + "id": 7875, "properties": { "east": "low", "north": "low", @@ -237514,7 +227759,7 @@ } }, { - "id": 8953, + "id": 7876, "properties": { "east": "low", "north": "low", @@ -237525,7 +227770,7 @@ } }, { - "id": 8954, + "id": 7877, "properties": { "east": "low", "north": "low", @@ -237536,7 +227781,7 @@ } }, { - "id": 8955, + "id": 7878, "properties": { "east": "low", "north": "low", @@ -237547,7 +227792,7 @@ } }, { - "id": 8956, + "id": 7879, "properties": { "east": "low", "north": "low", @@ -237558,7 +227803,7 @@ } }, { - "id": 8957, + "id": 7880, "properties": { "east": "low", "north": "low", @@ -237569,7 +227814,7 @@ } }, { - "id": 8958, + "id": 7881, "properties": { "east": "low", "north": "low", @@ -237580,7 +227825,7 @@ } }, { - "id": 8959, + "id": 7882, "properties": { "east": "low", "north": "low", @@ -237591,7 +227836,7 @@ } }, { - "id": 8960, + "id": 7883, "properties": { "east": "low", "north": "low", @@ -237602,7 +227847,7 @@ } }, { - "id": 8961, + "id": 7884, "properties": { "east": "low", "north": "low", @@ -237613,7 +227858,7 @@ } }, { - "id": 8962, + "id": 7885, "properties": { "east": "low", "north": "low", @@ -237624,7 +227869,7 @@ } }, { - "id": 8963, + "id": 7886, "properties": { "east": "low", "north": "low", @@ -237635,7 +227880,7 @@ } }, { - "id": 8964, + "id": 7887, "properties": { "east": "low", "north": "low", @@ -237646,7 +227891,7 @@ } }, { - "id": 8965, + "id": 7888, "properties": { "east": "low", "north": "low", @@ -237657,7 +227902,7 @@ } }, { - "id": 8966, + "id": 7889, "properties": { "east": "low", "north": "low", @@ -237668,7 +227913,7 @@ } }, { - "id": 8967, + "id": 7890, "properties": { "east": "low", "north": "low", @@ -237679,7 +227924,7 @@ } }, { - "id": 8968, + "id": 7891, "properties": { "east": "low", "north": "low", @@ -237690,7 +227935,7 @@ } }, { - "id": 8969, + "id": 7892, "properties": { "east": "low", "north": "low", @@ -237701,7 +227946,7 @@ } }, { - "id": 8970, + "id": 7893, "properties": { "east": "low", "north": "low", @@ -237712,7 +227957,7 @@ } }, { - "id": 8971, + "id": 7894, "properties": { "east": "low", "north": "low", @@ -237723,7 +227968,7 @@ } }, { - "id": 8972, + "id": 7895, "properties": { "east": "low", "north": "low", @@ -237734,7 +227979,7 @@ } }, { - "id": 8973, + "id": 7896, "properties": { "east": "low", "north": "low", @@ -237745,7 +227990,7 @@ } }, { - "id": 8974, + "id": 7897, "properties": { "east": "low", "north": "low", @@ -237756,7 +228001,7 @@ } }, { - "id": 8975, + "id": 7898, "properties": { "east": "low", "north": "low", @@ -237767,7 +228012,7 @@ } }, { - "id": 8976, + "id": 7899, "properties": { "east": "low", "north": "low", @@ -237778,7 +228023,7 @@ } }, { - "id": 8977, + "id": 7900, "properties": { "east": "low", "north": "low", @@ -237789,7 +228034,7 @@ } }, { - "id": 8978, + "id": 7901, "properties": { "east": "low", "north": "low", @@ -237800,7 +228045,7 @@ } }, { - "id": 8979, + "id": 7902, "properties": { "east": "low", "north": "low", @@ -237811,7 +228056,7 @@ } }, { - "id": 8980, + "id": 7903, "properties": { "east": "low", "north": "low", @@ -237822,7 +228067,7 @@ } }, { - "id": 8981, + "id": 7904, "properties": { "east": "low", "north": "low", @@ -237833,7 +228078,7 @@ } }, { - "id": 8982, + "id": 7905, "properties": { "east": "low", "north": "low", @@ -237844,7 +228089,7 @@ } }, { - "id": 8983, + "id": 7906, "properties": { "east": "low", "north": "low", @@ -237855,7 +228100,7 @@ } }, { - "id": 8984, + "id": 7907, "properties": { "east": "low", "north": "low", @@ -237866,7 +228111,7 @@ } }, { - "id": 8985, + "id": 7908, "properties": { "east": "low", "north": "low", @@ -237877,7 +228122,7 @@ } }, { - "id": 8986, + "id": 7909, "properties": { "east": "low", "north": "low", @@ -237888,7 +228133,7 @@ } }, { - "id": 8987, + "id": 7910, "properties": { "east": "low", "north": "low", @@ -237899,7 +228144,7 @@ } }, { - "id": 8988, + "id": 7911, "properties": { "east": "low", "north": "tall", @@ -237910,7 +228155,7 @@ } }, { - "id": 8989, + "id": 7912, "properties": { "east": "low", "north": "tall", @@ -237921,7 +228166,7 @@ } }, { - "id": 8990, + "id": 7913, "properties": { "east": "low", "north": "tall", @@ -237932,7 +228177,7 @@ } }, { - "id": 8991, + "id": 7914, "properties": { "east": "low", "north": "tall", @@ -237943,7 +228188,7 @@ } }, { - "id": 8992, + "id": 7915, "properties": { "east": "low", "north": "tall", @@ -237954,7 +228199,7 @@ } }, { - "id": 8993, + "id": 7916, "properties": { "east": "low", "north": "tall", @@ -237965,7 +228210,7 @@ } }, { - "id": 8994, + "id": 7917, "properties": { "east": "low", "north": "tall", @@ -237976,7 +228221,7 @@ } }, { - "id": 8995, + "id": 7918, "properties": { "east": "low", "north": "tall", @@ -237987,7 +228232,7 @@ } }, { - "id": 8996, + "id": 7919, "properties": { "east": "low", "north": "tall", @@ -237998,7 +228243,7 @@ } }, { - "id": 8997, + "id": 7920, "properties": { "east": "low", "north": "tall", @@ -238009,7 +228254,7 @@ } }, { - "id": 8998, + "id": 7921, "properties": { "east": "low", "north": "tall", @@ -238020,7 +228265,7 @@ } }, { - "id": 8999, + "id": 7922, "properties": { "east": "low", "north": "tall", @@ -238031,7 +228276,7 @@ } }, { - "id": 9000, + "id": 7923, "properties": { "east": "low", "north": "tall", @@ -238042,7 +228287,7 @@ } }, { - "id": 9001, + "id": 7924, "properties": { "east": "low", "north": "tall", @@ -238053,7 +228298,7 @@ } }, { - "id": 9002, + "id": 7925, "properties": { "east": "low", "north": "tall", @@ -238064,7 +228309,7 @@ } }, { - "id": 9003, + "id": 7926, "properties": { "east": "low", "north": "tall", @@ -238075,7 +228320,7 @@ } }, { - "id": 9004, + "id": 7927, "properties": { "east": "low", "north": "tall", @@ -238086,7 +228331,7 @@ } }, { - "id": 9005, + "id": 7928, "properties": { "east": "low", "north": "tall", @@ -238097,7 +228342,7 @@ } }, { - "id": 9006, + "id": 7929, "properties": { "east": "low", "north": "tall", @@ -238108,7 +228353,7 @@ } }, { - "id": 9007, + "id": 7930, "properties": { "east": "low", "north": "tall", @@ -238119,7 +228364,7 @@ } }, { - "id": 9008, + "id": 7931, "properties": { "east": "low", "north": "tall", @@ -238130,7 +228375,7 @@ } }, { - "id": 9009, + "id": 7932, "properties": { "east": "low", "north": "tall", @@ -238141,7 +228386,7 @@ } }, { - "id": 9010, + "id": 7933, "properties": { "east": "low", "north": "tall", @@ -238152,7 +228397,7 @@ } }, { - "id": 9011, + "id": 7934, "properties": { "east": "low", "north": "tall", @@ -238163,7 +228408,7 @@ } }, { - "id": 9012, + "id": 7935, "properties": { "east": "low", "north": "tall", @@ -238174,7 +228419,7 @@ } }, { - "id": 9013, + "id": 7936, "properties": { "east": "low", "north": "tall", @@ -238185,7 +228430,7 @@ } }, { - "id": 9014, + "id": 7937, "properties": { "east": "low", "north": "tall", @@ -238196,7 +228441,7 @@ } }, { - "id": 9015, + "id": 7938, "properties": { "east": "low", "north": "tall", @@ -238207,7 +228452,7 @@ } }, { - "id": 9016, + "id": 7939, "properties": { "east": "low", "north": "tall", @@ -238218,7 +228463,7 @@ } }, { - "id": 9017, + "id": 7940, "properties": { "east": "low", "north": "tall", @@ -238229,7 +228474,7 @@ } }, { - "id": 9018, + "id": 7941, "properties": { "east": "low", "north": "tall", @@ -238240,7 +228485,7 @@ } }, { - "id": 9019, + "id": 7942, "properties": { "east": "low", "north": "tall", @@ -238251,7 +228496,7 @@ } }, { - "id": 9020, + "id": 7943, "properties": { "east": "low", "north": "tall", @@ -238262,7 +228507,7 @@ } }, { - "id": 9021, + "id": 7944, "properties": { "east": "low", "north": "tall", @@ -238273,7 +228518,7 @@ } }, { - "id": 9022, + "id": 7945, "properties": { "east": "low", "north": "tall", @@ -238284,7 +228529,7 @@ } }, { - "id": 9023, + "id": 7946, "properties": { "east": "low", "north": "tall", @@ -238295,7 +228540,7 @@ } }, { - "id": 9024, + "id": 7947, "properties": { "east": "tall", "north": "none", @@ -238306,7 +228551,7 @@ } }, { - "id": 9025, + "id": 7948, "properties": { "east": "tall", "north": "none", @@ -238317,7 +228562,7 @@ } }, { - "id": 9026, + "id": 7949, "properties": { "east": "tall", "north": "none", @@ -238328,7 +228573,7 @@ } }, { - "id": 9027, + "id": 7950, "properties": { "east": "tall", "north": "none", @@ -238339,7 +228584,7 @@ } }, { - "id": 9028, + "id": 7951, "properties": { "east": "tall", "north": "none", @@ -238350,7 +228595,7 @@ } }, { - "id": 9029, + "id": 7952, "properties": { "east": "tall", "north": "none", @@ -238361,7 +228606,7 @@ } }, { - "id": 9030, + "id": 7953, "properties": { "east": "tall", "north": "none", @@ -238372,7 +228617,7 @@ } }, { - "id": 9031, + "id": 7954, "properties": { "east": "tall", "north": "none", @@ -238383,7 +228628,7 @@ } }, { - "id": 9032, + "id": 7955, "properties": { "east": "tall", "north": "none", @@ -238394,7 +228639,7 @@ } }, { - "id": 9033, + "id": 7956, "properties": { "east": "tall", "north": "none", @@ -238405,7 +228650,7 @@ } }, { - "id": 9034, + "id": 7957, "properties": { "east": "tall", "north": "none", @@ -238416,7 +228661,7 @@ } }, { - "id": 9035, + "id": 7958, "properties": { "east": "tall", "north": "none", @@ -238427,7 +228672,7 @@ } }, { - "id": 9036, + "id": 7959, "properties": { "east": "tall", "north": "none", @@ -238438,7 +228683,7 @@ } }, { - "id": 9037, + "id": 7960, "properties": { "east": "tall", "north": "none", @@ -238449,7 +228694,7 @@ } }, { - "id": 9038, + "id": 7961, "properties": { "east": "tall", "north": "none", @@ -238460,7 +228705,7 @@ } }, { - "id": 9039, + "id": 7962, "properties": { "east": "tall", "north": "none", @@ -238471,7 +228716,7 @@ } }, { - "id": 9040, + "id": 7963, "properties": { "east": "tall", "north": "none", @@ -238482,7 +228727,7 @@ } }, { - "id": 9041, + "id": 7964, "properties": { "east": "tall", "north": "none", @@ -238493,7 +228738,7 @@ } }, { - "id": 9042, + "id": 7965, "properties": { "east": "tall", "north": "none", @@ -238504,7 +228749,7 @@ } }, { - "id": 9043, + "id": 7966, "properties": { "east": "tall", "north": "none", @@ -238515,7 +228760,7 @@ } }, { - "id": 9044, + "id": 7967, "properties": { "east": "tall", "north": "none", @@ -238526,7 +228771,7 @@ } }, { - "id": 9045, + "id": 7968, "properties": { "east": "tall", "north": "none", @@ -238537,7 +228782,7 @@ } }, { - "id": 9046, + "id": 7969, "properties": { "east": "tall", "north": "none", @@ -238548,7 +228793,7 @@ } }, { - "id": 9047, + "id": 7970, "properties": { "east": "tall", "north": "none", @@ -238559,7 +228804,7 @@ } }, { - "id": 9048, + "id": 7971, "properties": { "east": "tall", "north": "none", @@ -238570,7 +228815,7 @@ } }, { - "id": 9049, + "id": 7972, "properties": { "east": "tall", "north": "none", @@ -238581,7 +228826,7 @@ } }, { - "id": 9050, + "id": 7973, "properties": { "east": "tall", "north": "none", @@ -238592,7 +228837,7 @@ } }, { - "id": 9051, + "id": 7974, "properties": { "east": "tall", "north": "none", @@ -238603,7 +228848,7 @@ } }, { - "id": 9052, + "id": 7975, "properties": { "east": "tall", "north": "none", @@ -238614,7 +228859,7 @@ } }, { - "id": 9053, + "id": 7976, "properties": { "east": "tall", "north": "none", @@ -238625,7 +228870,7 @@ } }, { - "id": 9054, + "id": 7977, "properties": { "east": "tall", "north": "none", @@ -238636,7 +228881,7 @@ } }, { - "id": 9055, + "id": 7978, "properties": { "east": "tall", "north": "none", @@ -238647,7 +228892,7 @@ } }, { - "id": 9056, + "id": 7979, "properties": { "east": "tall", "north": "none", @@ -238658,7 +228903,7 @@ } }, { - "id": 9057, + "id": 7980, "properties": { "east": "tall", "north": "none", @@ -238669,7 +228914,7 @@ } }, { - "id": 9058, + "id": 7981, "properties": { "east": "tall", "north": "none", @@ -238680,7 +228925,7 @@ } }, { - "id": 9059, + "id": 7982, "properties": { "east": "tall", "north": "none", @@ -238691,7 +228936,7 @@ } }, { - "id": 9060, + "id": 7983, "properties": { "east": "tall", "north": "low", @@ -238702,7 +228947,7 @@ } }, { - "id": 9061, + "id": 7984, "properties": { "east": "tall", "north": "low", @@ -238713,7 +228958,7 @@ } }, { - "id": 9062, + "id": 7985, "properties": { "east": "tall", "north": "low", @@ -238724,7 +228969,7 @@ } }, { - "id": 9063, + "id": 7986, "properties": { "east": "tall", "north": "low", @@ -238735,7 +228980,7 @@ } }, { - "id": 9064, + "id": 7987, "properties": { "east": "tall", "north": "low", @@ -238746,7 +228991,7 @@ } }, { - "id": 9065, + "id": 7988, "properties": { "east": "tall", "north": "low", @@ -238757,7 +229002,7 @@ } }, { - "id": 9066, + "id": 7989, "properties": { "east": "tall", "north": "low", @@ -238768,7 +229013,7 @@ } }, { - "id": 9067, + "id": 7990, "properties": { "east": "tall", "north": "low", @@ -238779,7 +229024,7 @@ } }, { - "id": 9068, + "id": 7991, "properties": { "east": "tall", "north": "low", @@ -238790,7 +229035,7 @@ } }, { - "id": 9069, + "id": 7992, "properties": { "east": "tall", "north": "low", @@ -238801,7 +229046,7 @@ } }, { - "id": 9070, + "id": 7993, "properties": { "east": "tall", "north": "low", @@ -238812,7 +229057,7 @@ } }, { - "id": 9071, + "id": 7994, "properties": { "east": "tall", "north": "low", @@ -238823,7 +229068,7 @@ } }, { - "id": 9072, + "id": 7995, "properties": { "east": "tall", "north": "low", @@ -238834,7 +229079,7 @@ } }, { - "id": 9073, + "id": 7996, "properties": { "east": "tall", "north": "low", @@ -238845,7 +229090,7 @@ } }, { - "id": 9074, + "id": 7997, "properties": { "east": "tall", "north": "low", @@ -238856,7 +229101,7 @@ } }, { - "id": 9075, + "id": 7998, "properties": { "east": "tall", "north": "low", @@ -238867,7 +229112,7 @@ } }, { - "id": 9076, + "id": 7999, "properties": { "east": "tall", "north": "low", @@ -238878,7 +229123,7 @@ } }, { - "id": 9077, + "id": 8000, "properties": { "east": "tall", "north": "low", @@ -238889,7 +229134,7 @@ } }, { - "id": 9078, + "id": 8001, "properties": { "east": "tall", "north": "low", @@ -238900,7 +229145,7 @@ } }, { - "id": 9079, + "id": 8002, "properties": { "east": "tall", "north": "low", @@ -238911,7 +229156,7 @@ } }, { - "id": 9080, + "id": 8003, "properties": { "east": "tall", "north": "low", @@ -238922,7 +229167,7 @@ } }, { - "id": 9081, + "id": 8004, "properties": { "east": "tall", "north": "low", @@ -238933,7 +229178,7 @@ } }, { - "id": 9082, + "id": 8005, "properties": { "east": "tall", "north": "low", @@ -238944,7 +229189,7 @@ } }, { - "id": 9083, + "id": 8006, "properties": { "east": "tall", "north": "low", @@ -238955,7 +229200,7 @@ } }, { - "id": 9084, + "id": 8007, "properties": { "east": "tall", "north": "low", @@ -238966,7 +229211,7 @@ } }, { - "id": 9085, + "id": 8008, "properties": { "east": "tall", "north": "low", @@ -238977,7 +229222,7 @@ } }, { - "id": 9086, + "id": 8009, "properties": { "east": "tall", "north": "low", @@ -238988,7 +229233,7 @@ } }, { - "id": 9087, + "id": 8010, "properties": { "east": "tall", "north": "low", @@ -238999,7 +229244,7 @@ } }, { - "id": 9088, + "id": 8011, "properties": { "east": "tall", "north": "low", @@ -239010,7 +229255,7 @@ } }, { - "id": 9089, + "id": 8012, "properties": { "east": "tall", "north": "low", @@ -239021,7 +229266,7 @@ } }, { - "id": 9090, + "id": 8013, "properties": { "east": "tall", "north": "low", @@ -239032,7 +229277,7 @@ } }, { - "id": 9091, + "id": 8014, "properties": { "east": "tall", "north": "low", @@ -239043,7 +229288,7 @@ } }, { - "id": 9092, + "id": 8015, "properties": { "east": "tall", "north": "low", @@ -239054,7 +229299,7 @@ } }, { - "id": 9093, + "id": 8016, "properties": { "east": "tall", "north": "low", @@ -239065,7 +229310,7 @@ } }, { - "id": 9094, + "id": 8017, "properties": { "east": "tall", "north": "low", @@ -239076,7 +229321,7 @@ } }, { - "id": 9095, + "id": 8018, "properties": { "east": "tall", "north": "low", @@ -239087,7 +229332,7 @@ } }, { - "id": 9096, + "id": 8019, "properties": { "east": "tall", "north": "tall", @@ -239098,7 +229343,7 @@ } }, { - "id": 9097, + "id": 8020, "properties": { "east": "tall", "north": "tall", @@ -239109,7 +229354,7 @@ } }, { - "id": 9098, + "id": 8021, "properties": { "east": "tall", "north": "tall", @@ -239120,7 +229365,7 @@ } }, { - "id": 9099, + "id": 8022, "properties": { "east": "tall", "north": "tall", @@ -239131,7 +229376,7 @@ } }, { - "id": 9100, + "id": 8023, "properties": { "east": "tall", "north": "tall", @@ -239142,7 +229387,7 @@ } }, { - "id": 9101, + "id": 8024, "properties": { "east": "tall", "north": "tall", @@ -239153,7 +229398,7 @@ } }, { - "id": 9102, + "id": 8025, "properties": { "east": "tall", "north": "tall", @@ -239164,7 +229409,7 @@ } }, { - "id": 9103, + "id": 8026, "properties": { "east": "tall", "north": "tall", @@ -239175,7 +229420,7 @@ } }, { - "id": 9104, + "id": 8027, "properties": { "east": "tall", "north": "tall", @@ -239186,7 +229431,7 @@ } }, { - "id": 9105, + "id": 8028, "properties": { "east": "tall", "north": "tall", @@ -239197,7 +229442,7 @@ } }, { - "id": 9106, + "id": 8029, "properties": { "east": "tall", "north": "tall", @@ -239208,7 +229453,7 @@ } }, { - "id": 9107, + "id": 8030, "properties": { "east": "tall", "north": "tall", @@ -239219,7 +229464,7 @@ } }, { - "id": 9108, + "id": 8031, "properties": { "east": "tall", "north": "tall", @@ -239230,7 +229475,7 @@ } }, { - "id": 9109, + "id": 8032, "properties": { "east": "tall", "north": "tall", @@ -239241,7 +229486,7 @@ } }, { - "id": 9110, + "id": 8033, "properties": { "east": "tall", "north": "tall", @@ -239252,7 +229497,7 @@ } }, { - "id": 9111, + "id": 8034, "properties": { "east": "tall", "north": "tall", @@ -239263,7 +229508,7 @@ } }, { - "id": 9112, + "id": 8035, "properties": { "east": "tall", "north": "tall", @@ -239274,7 +229519,7 @@ } }, { - "id": 9113, + "id": 8036, "properties": { "east": "tall", "north": "tall", @@ -239285,7 +229530,7 @@ } }, { - "id": 9114, + "id": 8037, "properties": { "east": "tall", "north": "tall", @@ -239296,7 +229541,7 @@ } }, { - "id": 9115, + "id": 8038, "properties": { "east": "tall", "north": "tall", @@ -239307,7 +229552,7 @@ } }, { - "id": 9116, + "id": 8039, "properties": { "east": "tall", "north": "tall", @@ -239318,7 +229563,7 @@ } }, { - "id": 9117, + "id": 8040, "properties": { "east": "tall", "north": "tall", @@ -239329,7 +229574,7 @@ } }, { - "id": 9118, + "id": 8041, "properties": { "east": "tall", "north": "tall", @@ -239340,7 +229585,7 @@ } }, { - "id": 9119, + "id": 8042, "properties": { "east": "tall", "north": "tall", @@ -239351,7 +229596,7 @@ } }, { - "id": 9120, + "id": 8043, "properties": { "east": "tall", "north": "tall", @@ -239362,7 +229607,7 @@ } }, { - "id": 9121, + "id": 8044, "properties": { "east": "tall", "north": "tall", @@ -239373,7 +229618,7 @@ } }, { - "id": 9122, + "id": 8045, "properties": { "east": "tall", "north": "tall", @@ -239384,7 +229629,7 @@ } }, { - "id": 9123, + "id": 8046, "properties": { "east": "tall", "north": "tall", @@ -239395,7 +229640,7 @@ } }, { - "id": 9124, + "id": 8047, "properties": { "east": "tall", "north": "tall", @@ -239406,7 +229651,7 @@ } }, { - "id": 9125, + "id": 8048, "properties": { "east": "tall", "north": "tall", @@ -239417,7 +229662,7 @@ } }, { - "id": 9126, + "id": 8049, "properties": { "east": "tall", "north": "tall", @@ -239428,7 +229673,7 @@ } }, { - "id": 9127, + "id": 8050, "properties": { "east": "tall", "north": "tall", @@ -239439,7 +229684,7 @@ } }, { - "id": 9128, + "id": 8051, "properties": { "east": "tall", "north": "tall", @@ -239450,7 +229695,7 @@ } }, { - "id": 9129, + "id": 8052, "properties": { "east": "tall", "north": "tall", @@ -239461,7 +229706,7 @@ } }, { - "id": 9130, + "id": 8053, "properties": { "east": "tall", "north": "tall", @@ -239472,7 +229717,7 @@ } }, { - "id": 9131, + "id": 8054, "properties": { "east": "tall", "north": "tall", @@ -239492,7 +229737,7 @@ "states": [ { "default": true, - "id": 8721 + "id": 7644 } ] }, @@ -239533,7 +229778,7 @@ }, "states": [ { - "id": 8317, + "id": 7240, "properties": { "down": "true", "east": "true", @@ -239545,7 +229790,7 @@ } }, { - "id": 8318, + "id": 7241, "properties": { "down": "true", "east": "true", @@ -239557,7 +229802,7 @@ } }, { - "id": 8319, + "id": 7242, "properties": { "down": "true", "east": "true", @@ -239569,7 +229814,7 @@ } }, { - "id": 8320, + "id": 7243, "properties": { "down": "true", "east": "true", @@ -239581,7 +229826,7 @@ } }, { - "id": 8321, + "id": 7244, "properties": { "down": "true", "east": "true", @@ -239593,7 +229838,7 @@ } }, { - "id": 8322, + "id": 7245, "properties": { "down": "true", "east": "true", @@ -239605,7 +229850,7 @@ } }, { - "id": 8323, + "id": 7246, "properties": { "down": "true", "east": "true", @@ -239617,7 +229862,7 @@ } }, { - "id": 8324, + "id": 7247, "properties": { "down": "true", "east": "true", @@ -239629,7 +229874,7 @@ } }, { - "id": 8325, + "id": 7248, "properties": { "down": "true", "east": "true", @@ -239641,7 +229886,7 @@ } }, { - "id": 8326, + "id": 7249, "properties": { "down": "true", "east": "true", @@ -239653,7 +229898,7 @@ } }, { - "id": 8327, + "id": 7250, "properties": { "down": "true", "east": "true", @@ -239665,7 +229910,7 @@ } }, { - "id": 8328, + "id": 7251, "properties": { "down": "true", "east": "true", @@ -239677,7 +229922,7 @@ } }, { - "id": 8329, + "id": 7252, "properties": { "down": "true", "east": "true", @@ -239689,7 +229934,7 @@ } }, { - "id": 8330, + "id": 7253, "properties": { "down": "true", "east": "true", @@ -239701,7 +229946,7 @@ } }, { - "id": 8331, + "id": 7254, "properties": { "down": "true", "east": "true", @@ -239713,7 +229958,7 @@ } }, { - "id": 8332, + "id": 7255, "properties": { "down": "true", "east": "true", @@ -239725,7 +229970,7 @@ } }, { - "id": 8333, + "id": 7256, "properties": { "down": "true", "east": "true", @@ -239737,7 +229982,7 @@ } }, { - "id": 8334, + "id": 7257, "properties": { "down": "true", "east": "true", @@ -239749,7 +229994,7 @@ } }, { - "id": 8335, + "id": 7258, "properties": { "down": "true", "east": "true", @@ -239761,7 +230006,7 @@ } }, { - "id": 8336, + "id": 7259, "properties": { "down": "true", "east": "true", @@ -239773,7 +230018,7 @@ } }, { - "id": 8337, + "id": 7260, "properties": { "down": "true", "east": "true", @@ -239785,7 +230030,7 @@ } }, { - "id": 8338, + "id": 7261, "properties": { "down": "true", "east": "true", @@ -239797,7 +230042,7 @@ } }, { - "id": 8339, + "id": 7262, "properties": { "down": "true", "east": "true", @@ -239809,7 +230054,7 @@ } }, { - "id": 8340, + "id": 7263, "properties": { "down": "true", "east": "true", @@ -239821,7 +230066,7 @@ } }, { - "id": 8341, + "id": 7264, "properties": { "down": "true", "east": "true", @@ -239833,7 +230078,7 @@ } }, { - "id": 8342, + "id": 7265, "properties": { "down": "true", "east": "true", @@ -239845,7 +230090,7 @@ } }, { - "id": 8343, + "id": 7266, "properties": { "down": "true", "east": "true", @@ -239857,7 +230102,7 @@ } }, { - "id": 8344, + "id": 7267, "properties": { "down": "true", "east": "true", @@ -239869,7 +230114,7 @@ } }, { - "id": 8345, + "id": 7268, "properties": { "down": "true", "east": "true", @@ -239881,7 +230126,7 @@ } }, { - "id": 8346, + "id": 7269, "properties": { "down": "true", "east": "true", @@ -239893,7 +230138,7 @@ } }, { - "id": 8347, + "id": 7270, "properties": { "down": "true", "east": "true", @@ -239905,7 +230150,7 @@ } }, { - "id": 8348, + "id": 7271, "properties": { "down": "true", "east": "true", @@ -239917,7 +230162,7 @@ } }, { - "id": 8349, + "id": 7272, "properties": { "down": "true", "east": "false", @@ -239929,7 +230174,7 @@ } }, { - "id": 8350, + "id": 7273, "properties": { "down": "true", "east": "false", @@ -239941,7 +230186,7 @@ } }, { - "id": 8351, + "id": 7274, "properties": { "down": "true", "east": "false", @@ -239953,7 +230198,7 @@ } }, { - "id": 8352, + "id": 7275, "properties": { "down": "true", "east": "false", @@ -239965,7 +230210,7 @@ } }, { - "id": 8353, + "id": 7276, "properties": { "down": "true", "east": "false", @@ -239977,7 +230222,7 @@ } }, { - "id": 8354, + "id": 7277, "properties": { "down": "true", "east": "false", @@ -239989,7 +230234,7 @@ } }, { - "id": 8355, + "id": 7278, "properties": { "down": "true", "east": "false", @@ -240001,7 +230246,7 @@ } }, { - "id": 8356, + "id": 7279, "properties": { "down": "true", "east": "false", @@ -240013,7 +230258,7 @@ } }, { - "id": 8357, + "id": 7280, "properties": { "down": "true", "east": "false", @@ -240025,7 +230270,7 @@ } }, { - "id": 8358, + "id": 7281, "properties": { "down": "true", "east": "false", @@ -240037,7 +230282,7 @@ } }, { - "id": 8359, + "id": 7282, "properties": { "down": "true", "east": "false", @@ -240049,7 +230294,7 @@ } }, { - "id": 8360, + "id": 7283, "properties": { "down": "true", "east": "false", @@ -240061,7 +230306,7 @@ } }, { - "id": 8361, + "id": 7284, "properties": { "down": "true", "east": "false", @@ -240073,7 +230318,7 @@ } }, { - "id": 8362, + "id": 7285, "properties": { "down": "true", "east": "false", @@ -240085,7 +230330,7 @@ } }, { - "id": 8363, + "id": 7286, "properties": { "down": "true", "east": "false", @@ -240097,7 +230342,7 @@ } }, { - "id": 8364, + "id": 7287, "properties": { "down": "true", "east": "false", @@ -240109,7 +230354,7 @@ } }, { - "id": 8365, + "id": 7288, "properties": { "down": "true", "east": "false", @@ -240121,7 +230366,7 @@ } }, { - "id": 8366, + "id": 7289, "properties": { "down": "true", "east": "false", @@ -240133,7 +230378,7 @@ } }, { - "id": 8367, + "id": 7290, "properties": { "down": "true", "east": "false", @@ -240145,7 +230390,7 @@ } }, { - "id": 8368, + "id": 7291, "properties": { "down": "true", "east": "false", @@ -240157,7 +230402,7 @@ } }, { - "id": 8369, + "id": 7292, "properties": { "down": "true", "east": "false", @@ -240169,7 +230414,7 @@ } }, { - "id": 8370, + "id": 7293, "properties": { "down": "true", "east": "false", @@ -240181,7 +230426,7 @@ } }, { - "id": 8371, + "id": 7294, "properties": { "down": "true", "east": "false", @@ -240193,7 +230438,7 @@ } }, { - "id": 8372, + "id": 7295, "properties": { "down": "true", "east": "false", @@ -240205,7 +230450,7 @@ } }, { - "id": 8373, + "id": 7296, "properties": { "down": "true", "east": "false", @@ -240217,7 +230462,7 @@ } }, { - "id": 8374, + "id": 7297, "properties": { "down": "true", "east": "false", @@ -240229,7 +230474,7 @@ } }, { - "id": 8375, + "id": 7298, "properties": { "down": "true", "east": "false", @@ -240241,7 +230486,7 @@ } }, { - "id": 8376, + "id": 7299, "properties": { "down": "true", "east": "false", @@ -240253,7 +230498,7 @@ } }, { - "id": 8377, + "id": 7300, "properties": { "down": "true", "east": "false", @@ -240265,7 +230510,7 @@ } }, { - "id": 8378, + "id": 7301, "properties": { "down": "true", "east": "false", @@ -240277,7 +230522,7 @@ } }, { - "id": 8379, + "id": 7302, "properties": { "down": "true", "east": "false", @@ -240289,7 +230534,7 @@ } }, { - "id": 8380, + "id": 7303, "properties": { "down": "true", "east": "false", @@ -240301,7 +230546,7 @@ } }, { - "id": 8381, + "id": 7304, "properties": { "down": "false", "east": "true", @@ -240313,7 +230558,7 @@ } }, { - "id": 8382, + "id": 7305, "properties": { "down": "false", "east": "true", @@ -240325,7 +230570,7 @@ } }, { - "id": 8383, + "id": 7306, "properties": { "down": "false", "east": "true", @@ -240337,7 +230582,7 @@ } }, { - "id": 8384, + "id": 7307, "properties": { "down": "false", "east": "true", @@ -240349,7 +230594,7 @@ } }, { - "id": 8385, + "id": 7308, "properties": { "down": "false", "east": "true", @@ -240361,7 +230606,7 @@ } }, { - "id": 8386, + "id": 7309, "properties": { "down": "false", "east": "true", @@ -240373,7 +230618,7 @@ } }, { - "id": 8387, + "id": 7310, "properties": { "down": "false", "east": "true", @@ -240385,7 +230630,7 @@ } }, { - "id": 8388, + "id": 7311, "properties": { "down": "false", "east": "true", @@ -240397,7 +230642,7 @@ } }, { - "id": 8389, + "id": 7312, "properties": { "down": "false", "east": "true", @@ -240409,7 +230654,7 @@ } }, { - "id": 8390, + "id": 7313, "properties": { "down": "false", "east": "true", @@ -240421,7 +230666,7 @@ } }, { - "id": 8391, + "id": 7314, "properties": { "down": "false", "east": "true", @@ -240433,7 +230678,7 @@ } }, { - "id": 8392, + "id": 7315, "properties": { "down": "false", "east": "true", @@ -240445,7 +230690,7 @@ } }, { - "id": 8393, + "id": 7316, "properties": { "down": "false", "east": "true", @@ -240457,7 +230702,7 @@ } }, { - "id": 8394, + "id": 7317, "properties": { "down": "false", "east": "true", @@ -240469,7 +230714,7 @@ } }, { - "id": 8395, + "id": 7318, "properties": { "down": "false", "east": "true", @@ -240481,7 +230726,7 @@ } }, { - "id": 8396, + "id": 7319, "properties": { "down": "false", "east": "true", @@ -240493,7 +230738,7 @@ } }, { - "id": 8397, + "id": 7320, "properties": { "down": "false", "east": "true", @@ -240505,7 +230750,7 @@ } }, { - "id": 8398, + "id": 7321, "properties": { "down": "false", "east": "true", @@ -240517,7 +230762,7 @@ } }, { - "id": 8399, + "id": 7322, "properties": { "down": "false", "east": "true", @@ -240529,7 +230774,7 @@ } }, { - "id": 8400, + "id": 7323, "properties": { "down": "false", "east": "true", @@ -240541,7 +230786,7 @@ } }, { - "id": 8401, + "id": 7324, "properties": { "down": "false", "east": "true", @@ -240553,7 +230798,7 @@ } }, { - "id": 8402, + "id": 7325, "properties": { "down": "false", "east": "true", @@ -240565,7 +230810,7 @@ } }, { - "id": 8403, + "id": 7326, "properties": { "down": "false", "east": "true", @@ -240577,7 +230822,7 @@ } }, { - "id": 8404, + "id": 7327, "properties": { "down": "false", "east": "true", @@ -240589,7 +230834,7 @@ } }, { - "id": 8405, + "id": 7328, "properties": { "down": "false", "east": "true", @@ -240601,7 +230846,7 @@ } }, { - "id": 8406, + "id": 7329, "properties": { "down": "false", "east": "true", @@ -240613,7 +230858,7 @@ } }, { - "id": 8407, + "id": 7330, "properties": { "down": "false", "east": "true", @@ -240625,7 +230870,7 @@ } }, { - "id": 8408, + "id": 7331, "properties": { "down": "false", "east": "true", @@ -240637,7 +230882,7 @@ } }, { - "id": 8409, + "id": 7332, "properties": { "down": "false", "east": "true", @@ -240649,7 +230894,7 @@ } }, { - "id": 8410, + "id": 7333, "properties": { "down": "false", "east": "true", @@ -240661,7 +230906,7 @@ } }, { - "id": 8411, + "id": 7334, "properties": { "down": "false", "east": "true", @@ -240673,7 +230918,7 @@ } }, { - "id": 8412, + "id": 7335, "properties": { "down": "false", "east": "true", @@ -240685,7 +230930,7 @@ } }, { - "id": 8413, + "id": 7336, "properties": { "down": "false", "east": "false", @@ -240697,7 +230942,7 @@ } }, { - "id": 8414, + "id": 7337, "properties": { "down": "false", "east": "false", @@ -240709,7 +230954,7 @@ } }, { - "id": 8415, + "id": 7338, "properties": { "down": "false", "east": "false", @@ -240721,7 +230966,7 @@ } }, { - "id": 8416, + "id": 7339, "properties": { "down": "false", "east": "false", @@ -240733,7 +230978,7 @@ } }, { - "id": 8417, + "id": 7340, "properties": { "down": "false", "east": "false", @@ -240745,7 +230990,7 @@ } }, { - "id": 8418, + "id": 7341, "properties": { "down": "false", "east": "false", @@ -240757,7 +231002,7 @@ } }, { - "id": 8419, + "id": 7342, "properties": { "down": "false", "east": "false", @@ -240769,7 +231014,7 @@ } }, { - "id": 8420, + "id": 7343, "properties": { "down": "false", "east": "false", @@ -240781,7 +231026,7 @@ } }, { - "id": 8421, + "id": 7344, "properties": { "down": "false", "east": "false", @@ -240793,7 +231038,7 @@ } }, { - "id": 8422, + "id": 7345, "properties": { "down": "false", "east": "false", @@ -240805,7 +231050,7 @@ } }, { - "id": 8423, + "id": 7346, "properties": { "down": "false", "east": "false", @@ -240817,7 +231062,7 @@ } }, { - "id": 8424, + "id": 7347, "properties": { "down": "false", "east": "false", @@ -240829,7 +231074,7 @@ } }, { - "id": 8425, + "id": 7348, "properties": { "down": "false", "east": "false", @@ -240841,7 +231086,7 @@ } }, { - "id": 8426, + "id": 7349, "properties": { "down": "false", "east": "false", @@ -240853,7 +231098,7 @@ } }, { - "id": 8427, + "id": 7350, "properties": { "down": "false", "east": "false", @@ -240865,7 +231110,7 @@ } }, { - "id": 8428, + "id": 7351, "properties": { "down": "false", "east": "false", @@ -240877,7 +231122,7 @@ } }, { - "id": 8429, + "id": 7352, "properties": { "down": "false", "east": "false", @@ -240889,7 +231134,7 @@ } }, { - "id": 8430, + "id": 7353, "properties": { "down": "false", "east": "false", @@ -240901,7 +231146,7 @@ } }, { - "id": 8431, + "id": 7354, "properties": { "down": "false", "east": "false", @@ -240913,7 +231158,7 @@ } }, { - "id": 8432, + "id": 7355, "properties": { "down": "false", "east": "false", @@ -240925,7 +231170,7 @@ } }, { - "id": 8433, + "id": 7356, "properties": { "down": "false", "east": "false", @@ -240937,7 +231182,7 @@ } }, { - "id": 8434, + "id": 7357, "properties": { "down": "false", "east": "false", @@ -240949,7 +231194,7 @@ } }, { - "id": 8435, + "id": 7358, "properties": { "down": "false", "east": "false", @@ -240961,7 +231206,7 @@ } }, { - "id": 8436, + "id": 7359, "properties": { "down": "false", "east": "false", @@ -240973,7 +231218,7 @@ } }, { - "id": 8437, + "id": 7360, "properties": { "down": "false", "east": "false", @@ -240985,7 +231230,7 @@ } }, { - "id": 8438, + "id": 7361, "properties": { "down": "false", "east": "false", @@ -240997,7 +231242,7 @@ } }, { - "id": 8439, + "id": 7362, "properties": { "down": "false", "east": "false", @@ -241009,7 +231254,7 @@ } }, { - "id": 8440, + "id": 7363, "properties": { "down": "false", "east": "false", @@ -241021,7 +231266,7 @@ } }, { - "id": 8441, + "id": 7364, "properties": { "down": "false", "east": "false", @@ -241033,7 +231278,7 @@ } }, { - "id": 8442, + "id": 7365, "properties": { "down": "false", "east": "false", @@ -241045,7 +231290,7 @@ } }, { - "id": 8443, + "id": 7366, "properties": { "down": "false", "east": "false", @@ -241058,7 +231303,7 @@ }, { "default": true, - "id": 8444, + "id": 7367, "properties": { "down": "false", "east": "false", @@ -241088,31 +231333,31 @@ "states": [ { "default": true, - "id": 21619, + "id": 20478, "properties": { "charges": "0" } }, { - "id": 21620, + "id": 20479, "properties": { "charges": "1" } }, { - "id": 21621, + "id": 20480, "properties": { "charges": "2" } }, { - "id": 21622, + "id": 20481, "properties": { "charges": "3" } }, { - "id": 21623, + "id": 20482, "properties": { "charges": "4" } @@ -241127,7 +231372,7 @@ "states": [ { "default": true, - "id": 27719 + "id": 25962 } ] }, @@ -241144,14 +231389,14 @@ }, "states": [ { - "id": 12717, + "id": 11640, "properties": { "half": "upper" } }, { "default": true, - "id": 12718, + "id": 11641, "properties": { "half": "lower" } @@ -241201,21 +231446,21 @@ }, "states": [ { - "id": 13206, + "id": 12129, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 13207, + "id": 12130, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 13208, + "id": 12131, "properties": { "type": "bottom", "waterlogged": "true" @@ -241223,21 +231468,21 @@ }, { "default": true, - "id": 13209, + "id": 12132, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 13210, + "id": 12133, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 13211, + "id": 12134, "properties": { "type": "double", "waterlogged": "false" @@ -241278,7 +231523,7 @@ }, "states": [ { - "id": 9292, + "id": 8215, "properties": { "facing": "north", "half": "top", @@ -241287,7 +231532,7 @@ } }, { - "id": 9293, + "id": 8216, "properties": { "facing": "north", "half": "top", @@ -241296,7 +231541,7 @@ } }, { - "id": 9294, + "id": 8217, "properties": { "facing": "north", "half": "top", @@ -241305,7 +231550,7 @@ } }, { - "id": 9295, + "id": 8218, "properties": { "facing": "north", "half": "top", @@ -241314,7 +231559,7 @@ } }, { - "id": 9296, + "id": 8219, "properties": { "facing": "north", "half": "top", @@ -241323,7 +231568,7 @@ } }, { - "id": 9297, + "id": 8220, "properties": { "facing": "north", "half": "top", @@ -241332,7 +231577,7 @@ } }, { - "id": 9298, + "id": 8221, "properties": { "facing": "north", "half": "top", @@ -241341,7 +231586,7 @@ } }, { - "id": 9299, + "id": 8222, "properties": { "facing": "north", "half": "top", @@ -241350,7 +231595,7 @@ } }, { - "id": 9300, + "id": 8223, "properties": { "facing": "north", "half": "top", @@ -241359,7 +231604,7 @@ } }, { - "id": 9301, + "id": 8224, "properties": { "facing": "north", "half": "top", @@ -241368,7 +231613,7 @@ } }, { - "id": 9302, + "id": 8225, "properties": { "facing": "north", "half": "bottom", @@ -241378,7 +231623,7 @@ }, { "default": true, - "id": 9303, + "id": 8226, "properties": { "facing": "north", "half": "bottom", @@ -241387,7 +231632,7 @@ } }, { - "id": 9304, + "id": 8227, "properties": { "facing": "north", "half": "bottom", @@ -241396,7 +231641,7 @@ } }, { - "id": 9305, + "id": 8228, "properties": { "facing": "north", "half": "bottom", @@ -241405,7 +231650,7 @@ } }, { - "id": 9306, + "id": 8229, "properties": { "facing": "north", "half": "bottom", @@ -241414,7 +231659,7 @@ } }, { - "id": 9307, + "id": 8230, "properties": { "facing": "north", "half": "bottom", @@ -241423,7 +231668,7 @@ } }, { - "id": 9308, + "id": 8231, "properties": { "facing": "north", "half": "bottom", @@ -241432,7 +231677,7 @@ } }, { - "id": 9309, + "id": 8232, "properties": { "facing": "north", "half": "bottom", @@ -241441,7 +231686,7 @@ } }, { - "id": 9310, + "id": 8233, "properties": { "facing": "north", "half": "bottom", @@ -241450,7 +231695,7 @@ } }, { - "id": 9311, + "id": 8234, "properties": { "facing": "north", "half": "bottom", @@ -241459,7 +231704,7 @@ } }, { - "id": 9312, + "id": 8235, "properties": { "facing": "south", "half": "top", @@ -241468,7 +231713,7 @@ } }, { - "id": 9313, + "id": 8236, "properties": { "facing": "south", "half": "top", @@ -241477,7 +231722,7 @@ } }, { - "id": 9314, + "id": 8237, "properties": { "facing": "south", "half": "top", @@ -241486,7 +231731,7 @@ } }, { - "id": 9315, + "id": 8238, "properties": { "facing": "south", "half": "top", @@ -241495,7 +231740,7 @@ } }, { - "id": 9316, + "id": 8239, "properties": { "facing": "south", "half": "top", @@ -241504,7 +231749,7 @@ } }, { - "id": 9317, + "id": 8240, "properties": { "facing": "south", "half": "top", @@ -241513,7 +231758,7 @@ } }, { - "id": 9318, + "id": 8241, "properties": { "facing": "south", "half": "top", @@ -241522,7 +231767,7 @@ } }, { - "id": 9319, + "id": 8242, "properties": { "facing": "south", "half": "top", @@ -241531,7 +231776,7 @@ } }, { - "id": 9320, + "id": 8243, "properties": { "facing": "south", "half": "top", @@ -241540,7 +231785,7 @@ } }, { - "id": 9321, + "id": 8244, "properties": { "facing": "south", "half": "top", @@ -241549,7 +231794,7 @@ } }, { - "id": 9322, + "id": 8245, "properties": { "facing": "south", "half": "bottom", @@ -241558,7 +231803,7 @@ } }, { - "id": 9323, + "id": 8246, "properties": { "facing": "south", "half": "bottom", @@ -241567,7 +231812,7 @@ } }, { - "id": 9324, + "id": 8247, "properties": { "facing": "south", "half": "bottom", @@ -241576,7 +231821,7 @@ } }, { - "id": 9325, + "id": 8248, "properties": { "facing": "south", "half": "bottom", @@ -241585,7 +231830,7 @@ } }, { - "id": 9326, + "id": 8249, "properties": { "facing": "south", "half": "bottom", @@ -241594,7 +231839,7 @@ } }, { - "id": 9327, + "id": 8250, "properties": { "facing": "south", "half": "bottom", @@ -241603,7 +231848,7 @@ } }, { - "id": 9328, + "id": 8251, "properties": { "facing": "south", "half": "bottom", @@ -241612,7 +231857,7 @@ } }, { - "id": 9329, + "id": 8252, "properties": { "facing": "south", "half": "bottom", @@ -241621,7 +231866,7 @@ } }, { - "id": 9330, + "id": 8253, "properties": { "facing": "south", "half": "bottom", @@ -241630,7 +231875,7 @@ } }, { - "id": 9331, + "id": 8254, "properties": { "facing": "south", "half": "bottom", @@ -241639,7 +231884,7 @@ } }, { - "id": 9332, + "id": 8255, "properties": { "facing": "west", "half": "top", @@ -241648,7 +231893,7 @@ } }, { - "id": 9333, + "id": 8256, "properties": { "facing": "west", "half": "top", @@ -241657,7 +231902,7 @@ } }, { - "id": 9334, + "id": 8257, "properties": { "facing": "west", "half": "top", @@ -241666,7 +231911,7 @@ } }, { - "id": 9335, + "id": 8258, "properties": { "facing": "west", "half": "top", @@ -241675,7 +231920,7 @@ } }, { - "id": 9336, + "id": 8259, "properties": { "facing": "west", "half": "top", @@ -241684,7 +231929,7 @@ } }, { - "id": 9337, + "id": 8260, "properties": { "facing": "west", "half": "top", @@ -241693,7 +231938,7 @@ } }, { - "id": 9338, + "id": 8261, "properties": { "facing": "west", "half": "top", @@ -241702,7 +231947,7 @@ } }, { - "id": 9339, + "id": 8262, "properties": { "facing": "west", "half": "top", @@ -241711,7 +231956,7 @@ } }, { - "id": 9340, + "id": 8263, "properties": { "facing": "west", "half": "top", @@ -241720,7 +231965,7 @@ } }, { - "id": 9341, + "id": 8264, "properties": { "facing": "west", "half": "top", @@ -241729,7 +231974,7 @@ } }, { - "id": 9342, + "id": 8265, "properties": { "facing": "west", "half": "bottom", @@ -241738,7 +231983,7 @@ } }, { - "id": 9343, + "id": 8266, "properties": { "facing": "west", "half": "bottom", @@ -241747,7 +231992,7 @@ } }, { - "id": 9344, + "id": 8267, "properties": { "facing": "west", "half": "bottom", @@ -241756,7 +232001,7 @@ } }, { - "id": 9345, + "id": 8268, "properties": { "facing": "west", "half": "bottom", @@ -241765,7 +232010,7 @@ } }, { - "id": 9346, + "id": 8269, "properties": { "facing": "west", "half": "bottom", @@ -241774,7 +232019,7 @@ } }, { - "id": 9347, + "id": 8270, "properties": { "facing": "west", "half": "bottom", @@ -241783,7 +232028,7 @@ } }, { - "id": 9348, + "id": 8271, "properties": { "facing": "west", "half": "bottom", @@ -241792,7 +232037,7 @@ } }, { - "id": 9349, + "id": 8272, "properties": { "facing": "west", "half": "bottom", @@ -241801,7 +232046,7 @@ } }, { - "id": 9350, + "id": 8273, "properties": { "facing": "west", "half": "bottom", @@ -241810,7 +232055,7 @@ } }, { - "id": 9351, + "id": 8274, "properties": { "facing": "west", "half": "bottom", @@ -241819,7 +232064,7 @@ } }, { - "id": 9352, + "id": 8275, "properties": { "facing": "east", "half": "top", @@ -241828,7 +232073,7 @@ } }, { - "id": 9353, + "id": 8276, "properties": { "facing": "east", "half": "top", @@ -241837,7 +232082,7 @@ } }, { - "id": 9354, + "id": 8277, "properties": { "facing": "east", "half": "top", @@ -241846,7 +232091,7 @@ } }, { - "id": 9355, + "id": 8278, "properties": { "facing": "east", "half": "top", @@ -241855,7 +232100,7 @@ } }, { - "id": 9356, + "id": 8279, "properties": { "facing": "east", "half": "top", @@ -241864,7 +232109,7 @@ } }, { - "id": 9357, + "id": 8280, "properties": { "facing": "east", "half": "top", @@ -241873,7 +232118,7 @@ } }, { - "id": 9358, + "id": 8281, "properties": { "facing": "east", "half": "top", @@ -241882,7 +232127,7 @@ } }, { - "id": 9359, + "id": 8282, "properties": { "facing": "east", "half": "top", @@ -241891,7 +232136,7 @@ } }, { - "id": 9360, + "id": 8283, "properties": { "facing": "east", "half": "top", @@ -241900,7 +232145,7 @@ } }, { - "id": 9361, + "id": 8284, "properties": { "facing": "east", "half": "top", @@ -241909,7 +232154,7 @@ } }, { - "id": 9362, + "id": 8285, "properties": { "facing": "east", "half": "bottom", @@ -241918,7 +232163,7 @@ } }, { - "id": 9363, + "id": 8286, "properties": { "facing": "east", "half": "bottom", @@ -241927,7 +232172,7 @@ } }, { - "id": 9364, + "id": 8287, "properties": { "facing": "east", "half": "bottom", @@ -241936,7 +232181,7 @@ } }, { - "id": 9365, + "id": 8288, "properties": { "facing": "east", "half": "bottom", @@ -241945,7 +232190,7 @@ } }, { - "id": 9366, + "id": 8289, "properties": { "facing": "east", "half": "bottom", @@ -241954,7 +232199,7 @@ } }, { - "id": 9367, + "id": 8290, "properties": { "facing": "east", "half": "bottom", @@ -241963,7 +232208,7 @@ } }, { - "id": 9368, + "id": 8291, "properties": { "facing": "east", "half": "bottom", @@ -241972,7 +232217,7 @@ } }, { - "id": 9369, + "id": 8292, "properties": { "facing": "east", "half": "bottom", @@ -241981,7 +232226,7 @@ } }, { - "id": 9370, + "id": 8293, "properties": { "facing": "east", "half": "bottom", @@ -241990,7 +232235,7 @@ } }, { - "id": 9371, + "id": 8294, "properties": { "facing": "east", "half": "bottom", @@ -242037,7 +232282,7 @@ }, "states": [ { - "id": 19532, + "id": 18423, "properties": { "east": "none", "north": "none", @@ -242048,7 +232293,7 @@ } }, { - "id": 19533, + "id": 18424, "properties": { "east": "none", "north": "none", @@ -242059,7 +232304,7 @@ } }, { - "id": 19534, + "id": 18425, "properties": { "east": "none", "north": "none", @@ -242071,7 +232316,7 @@ }, { "default": true, - "id": 19535, + "id": 18426, "properties": { "east": "none", "north": "none", @@ -242082,7 +232327,7 @@ } }, { - "id": 19536, + "id": 18427, "properties": { "east": "none", "north": "none", @@ -242093,7 +232338,7 @@ } }, { - "id": 19537, + "id": 18428, "properties": { "east": "none", "north": "none", @@ -242104,7 +232349,7 @@ } }, { - "id": 19538, + "id": 18429, "properties": { "east": "none", "north": "none", @@ -242115,7 +232360,7 @@ } }, { - "id": 19539, + "id": 18430, "properties": { "east": "none", "north": "none", @@ -242126,7 +232371,7 @@ } }, { - "id": 19540, + "id": 18431, "properties": { "east": "none", "north": "none", @@ -242137,7 +232382,7 @@ } }, { - "id": 19541, + "id": 18432, "properties": { "east": "none", "north": "none", @@ -242148,7 +232393,7 @@ } }, { - "id": 19542, + "id": 18433, "properties": { "east": "none", "north": "none", @@ -242159,7 +232404,7 @@ } }, { - "id": 19543, + "id": 18434, "properties": { "east": "none", "north": "none", @@ -242170,7 +232415,7 @@ } }, { - "id": 19544, + "id": 18435, "properties": { "east": "none", "north": "none", @@ -242181,7 +232426,7 @@ } }, { - "id": 19545, + "id": 18436, "properties": { "east": "none", "north": "none", @@ -242192,7 +232437,7 @@ } }, { - "id": 19546, + "id": 18437, "properties": { "east": "none", "north": "none", @@ -242203,7 +232448,7 @@ } }, { - "id": 19547, + "id": 18438, "properties": { "east": "none", "north": "none", @@ -242214,7 +232459,7 @@ } }, { - "id": 19548, + "id": 18439, "properties": { "east": "none", "north": "none", @@ -242225,7 +232470,7 @@ } }, { - "id": 19549, + "id": 18440, "properties": { "east": "none", "north": "none", @@ -242236,7 +232481,7 @@ } }, { - "id": 19550, + "id": 18441, "properties": { "east": "none", "north": "none", @@ -242247,7 +232492,7 @@ } }, { - "id": 19551, + "id": 18442, "properties": { "east": "none", "north": "none", @@ -242258,7 +232503,7 @@ } }, { - "id": 19552, + "id": 18443, "properties": { "east": "none", "north": "none", @@ -242269,7 +232514,7 @@ } }, { - "id": 19553, + "id": 18444, "properties": { "east": "none", "north": "none", @@ -242280,7 +232525,7 @@ } }, { - "id": 19554, + "id": 18445, "properties": { "east": "none", "north": "none", @@ -242291,7 +232536,7 @@ } }, { - "id": 19555, + "id": 18446, "properties": { "east": "none", "north": "none", @@ -242302,7 +232547,7 @@ } }, { - "id": 19556, + "id": 18447, "properties": { "east": "none", "north": "none", @@ -242313,7 +232558,7 @@ } }, { - "id": 19557, + "id": 18448, "properties": { "east": "none", "north": "none", @@ -242324,7 +232569,7 @@ } }, { - "id": 19558, + "id": 18449, "properties": { "east": "none", "north": "none", @@ -242335,7 +232580,7 @@ } }, { - "id": 19559, + "id": 18450, "properties": { "east": "none", "north": "none", @@ -242346,7 +232591,7 @@ } }, { - "id": 19560, + "id": 18451, "properties": { "east": "none", "north": "none", @@ -242357,7 +232602,7 @@ } }, { - "id": 19561, + "id": 18452, "properties": { "east": "none", "north": "none", @@ -242368,7 +232613,7 @@ } }, { - "id": 19562, + "id": 18453, "properties": { "east": "none", "north": "none", @@ -242379,7 +232624,7 @@ } }, { - "id": 19563, + "id": 18454, "properties": { "east": "none", "north": "none", @@ -242390,7 +232635,7 @@ } }, { - "id": 19564, + "id": 18455, "properties": { "east": "none", "north": "none", @@ -242401,7 +232646,7 @@ } }, { - "id": 19565, + "id": 18456, "properties": { "east": "none", "north": "none", @@ -242412,7 +232657,7 @@ } }, { - "id": 19566, + "id": 18457, "properties": { "east": "none", "north": "none", @@ -242423,7 +232668,7 @@ } }, { - "id": 19567, + "id": 18458, "properties": { "east": "none", "north": "none", @@ -242434,7 +232679,7 @@ } }, { - "id": 19568, + "id": 18459, "properties": { "east": "none", "north": "low", @@ -242445,7 +232690,7 @@ } }, { - "id": 19569, + "id": 18460, "properties": { "east": "none", "north": "low", @@ -242456,7 +232701,7 @@ } }, { - "id": 19570, + "id": 18461, "properties": { "east": "none", "north": "low", @@ -242467,7 +232712,7 @@ } }, { - "id": 19571, + "id": 18462, "properties": { "east": "none", "north": "low", @@ -242478,7 +232723,7 @@ } }, { - "id": 19572, + "id": 18463, "properties": { "east": "none", "north": "low", @@ -242489,7 +232734,7 @@ } }, { - "id": 19573, + "id": 18464, "properties": { "east": "none", "north": "low", @@ -242500,7 +232745,7 @@ } }, { - "id": 19574, + "id": 18465, "properties": { "east": "none", "north": "low", @@ -242511,7 +232756,7 @@ } }, { - "id": 19575, + "id": 18466, "properties": { "east": "none", "north": "low", @@ -242522,7 +232767,7 @@ } }, { - "id": 19576, + "id": 18467, "properties": { "east": "none", "north": "low", @@ -242533,7 +232778,7 @@ } }, { - "id": 19577, + "id": 18468, "properties": { "east": "none", "north": "low", @@ -242544,7 +232789,7 @@ } }, { - "id": 19578, + "id": 18469, "properties": { "east": "none", "north": "low", @@ -242555,7 +232800,7 @@ } }, { - "id": 19579, + "id": 18470, "properties": { "east": "none", "north": "low", @@ -242566,7 +232811,7 @@ } }, { - "id": 19580, + "id": 18471, "properties": { "east": "none", "north": "low", @@ -242577,7 +232822,7 @@ } }, { - "id": 19581, + "id": 18472, "properties": { "east": "none", "north": "low", @@ -242588,7 +232833,7 @@ } }, { - "id": 19582, + "id": 18473, "properties": { "east": "none", "north": "low", @@ -242599,7 +232844,7 @@ } }, { - "id": 19583, + "id": 18474, "properties": { "east": "none", "north": "low", @@ -242610,7 +232855,7 @@ } }, { - "id": 19584, + "id": 18475, "properties": { "east": "none", "north": "low", @@ -242621,7 +232866,7 @@ } }, { - "id": 19585, + "id": 18476, "properties": { "east": "none", "north": "low", @@ -242632,7 +232877,7 @@ } }, { - "id": 19586, + "id": 18477, "properties": { "east": "none", "north": "low", @@ -242643,7 +232888,7 @@ } }, { - "id": 19587, + "id": 18478, "properties": { "east": "none", "north": "low", @@ -242654,7 +232899,7 @@ } }, { - "id": 19588, + "id": 18479, "properties": { "east": "none", "north": "low", @@ -242665,7 +232910,7 @@ } }, { - "id": 19589, + "id": 18480, "properties": { "east": "none", "north": "low", @@ -242676,7 +232921,7 @@ } }, { - "id": 19590, + "id": 18481, "properties": { "east": "none", "north": "low", @@ -242687,7 +232932,7 @@ } }, { - "id": 19591, + "id": 18482, "properties": { "east": "none", "north": "low", @@ -242698,7 +232943,7 @@ } }, { - "id": 19592, + "id": 18483, "properties": { "east": "none", "north": "low", @@ -242709,7 +232954,7 @@ } }, { - "id": 19593, + "id": 18484, "properties": { "east": "none", "north": "low", @@ -242720,7 +232965,7 @@ } }, { - "id": 19594, + "id": 18485, "properties": { "east": "none", "north": "low", @@ -242731,7 +232976,7 @@ } }, { - "id": 19595, + "id": 18486, "properties": { "east": "none", "north": "low", @@ -242742,7 +232987,7 @@ } }, { - "id": 19596, + "id": 18487, "properties": { "east": "none", "north": "low", @@ -242753,7 +232998,7 @@ } }, { - "id": 19597, + "id": 18488, "properties": { "east": "none", "north": "low", @@ -242764,7 +233009,7 @@ } }, { - "id": 19598, + "id": 18489, "properties": { "east": "none", "north": "low", @@ -242775,7 +233020,7 @@ } }, { - "id": 19599, + "id": 18490, "properties": { "east": "none", "north": "low", @@ -242786,7 +233031,7 @@ } }, { - "id": 19600, + "id": 18491, "properties": { "east": "none", "north": "low", @@ -242797,7 +233042,7 @@ } }, { - "id": 19601, + "id": 18492, "properties": { "east": "none", "north": "low", @@ -242808,7 +233053,7 @@ } }, { - "id": 19602, + "id": 18493, "properties": { "east": "none", "north": "low", @@ -242819,7 +233064,7 @@ } }, { - "id": 19603, + "id": 18494, "properties": { "east": "none", "north": "low", @@ -242830,7 +233075,7 @@ } }, { - "id": 19604, + "id": 18495, "properties": { "east": "none", "north": "tall", @@ -242841,7 +233086,7 @@ } }, { - "id": 19605, + "id": 18496, "properties": { "east": "none", "north": "tall", @@ -242852,7 +233097,7 @@ } }, { - "id": 19606, + "id": 18497, "properties": { "east": "none", "north": "tall", @@ -242863,7 +233108,7 @@ } }, { - "id": 19607, + "id": 18498, "properties": { "east": "none", "north": "tall", @@ -242874,7 +233119,7 @@ } }, { - "id": 19608, + "id": 18499, "properties": { "east": "none", "north": "tall", @@ -242885,7 +233130,7 @@ } }, { - "id": 19609, + "id": 18500, "properties": { "east": "none", "north": "tall", @@ -242896,7 +233141,7 @@ } }, { - "id": 19610, + "id": 18501, "properties": { "east": "none", "north": "tall", @@ -242907,7 +233152,7 @@ } }, { - "id": 19611, + "id": 18502, "properties": { "east": "none", "north": "tall", @@ -242918,7 +233163,7 @@ } }, { - "id": 19612, + "id": 18503, "properties": { "east": "none", "north": "tall", @@ -242929,7 +233174,7 @@ } }, { - "id": 19613, + "id": 18504, "properties": { "east": "none", "north": "tall", @@ -242940,7 +233185,7 @@ } }, { - "id": 19614, + "id": 18505, "properties": { "east": "none", "north": "tall", @@ -242951,7 +233196,7 @@ } }, { - "id": 19615, + "id": 18506, "properties": { "east": "none", "north": "tall", @@ -242962,7 +233207,7 @@ } }, { - "id": 19616, + "id": 18507, "properties": { "east": "none", "north": "tall", @@ -242973,7 +233218,7 @@ } }, { - "id": 19617, + "id": 18508, "properties": { "east": "none", "north": "tall", @@ -242984,7 +233229,7 @@ } }, { - "id": 19618, + "id": 18509, "properties": { "east": "none", "north": "tall", @@ -242995,7 +233240,7 @@ } }, { - "id": 19619, + "id": 18510, "properties": { "east": "none", "north": "tall", @@ -243006,7 +233251,7 @@ } }, { - "id": 19620, + "id": 18511, "properties": { "east": "none", "north": "tall", @@ -243017,7 +233262,7 @@ } }, { - "id": 19621, + "id": 18512, "properties": { "east": "none", "north": "tall", @@ -243028,7 +233273,7 @@ } }, { - "id": 19622, + "id": 18513, "properties": { "east": "none", "north": "tall", @@ -243039,7 +233284,7 @@ } }, { - "id": 19623, + "id": 18514, "properties": { "east": "none", "north": "tall", @@ -243050,7 +233295,7 @@ } }, { - "id": 19624, + "id": 18515, "properties": { "east": "none", "north": "tall", @@ -243061,7 +233306,7 @@ } }, { - "id": 19625, + "id": 18516, "properties": { "east": "none", "north": "tall", @@ -243072,7 +233317,7 @@ } }, { - "id": 19626, + "id": 18517, "properties": { "east": "none", "north": "tall", @@ -243083,7 +233328,7 @@ } }, { - "id": 19627, + "id": 18518, "properties": { "east": "none", "north": "tall", @@ -243094,7 +233339,7 @@ } }, { - "id": 19628, + "id": 18519, "properties": { "east": "none", "north": "tall", @@ -243105,7 +233350,7 @@ } }, { - "id": 19629, + "id": 18520, "properties": { "east": "none", "north": "tall", @@ -243116,7 +233361,7 @@ } }, { - "id": 19630, + "id": 18521, "properties": { "east": "none", "north": "tall", @@ -243127,7 +233372,7 @@ } }, { - "id": 19631, + "id": 18522, "properties": { "east": "none", "north": "tall", @@ -243138,7 +233383,7 @@ } }, { - "id": 19632, + "id": 18523, "properties": { "east": "none", "north": "tall", @@ -243149,7 +233394,7 @@ } }, { - "id": 19633, + "id": 18524, "properties": { "east": "none", "north": "tall", @@ -243160,7 +233405,7 @@ } }, { - "id": 19634, + "id": 18525, "properties": { "east": "none", "north": "tall", @@ -243171,7 +233416,7 @@ } }, { - "id": 19635, + "id": 18526, "properties": { "east": "none", "north": "tall", @@ -243182,7 +233427,7 @@ } }, { - "id": 19636, + "id": 18527, "properties": { "east": "none", "north": "tall", @@ -243193,7 +233438,7 @@ } }, { - "id": 19637, + "id": 18528, "properties": { "east": "none", "north": "tall", @@ -243204,7 +233449,7 @@ } }, { - "id": 19638, + "id": 18529, "properties": { "east": "none", "north": "tall", @@ -243215,7 +233460,7 @@ } }, { - "id": 19639, + "id": 18530, "properties": { "east": "none", "north": "tall", @@ -243226,7 +233471,7 @@ } }, { - "id": 19640, + "id": 18531, "properties": { "east": "low", "north": "none", @@ -243237,7 +233482,7 @@ } }, { - "id": 19641, + "id": 18532, "properties": { "east": "low", "north": "none", @@ -243248,7 +233493,7 @@ } }, { - "id": 19642, + "id": 18533, "properties": { "east": "low", "north": "none", @@ -243259,7 +233504,7 @@ } }, { - "id": 19643, + "id": 18534, "properties": { "east": "low", "north": "none", @@ -243270,7 +233515,7 @@ } }, { - "id": 19644, + "id": 18535, "properties": { "east": "low", "north": "none", @@ -243281,7 +233526,7 @@ } }, { - "id": 19645, + "id": 18536, "properties": { "east": "low", "north": "none", @@ -243292,7 +233537,7 @@ } }, { - "id": 19646, + "id": 18537, "properties": { "east": "low", "north": "none", @@ -243303,7 +233548,7 @@ } }, { - "id": 19647, + "id": 18538, "properties": { "east": "low", "north": "none", @@ -243314,7 +233559,7 @@ } }, { - "id": 19648, + "id": 18539, "properties": { "east": "low", "north": "none", @@ -243325,7 +233570,7 @@ } }, { - "id": 19649, + "id": 18540, "properties": { "east": "low", "north": "none", @@ -243336,7 +233581,7 @@ } }, { - "id": 19650, + "id": 18541, "properties": { "east": "low", "north": "none", @@ -243347,7 +233592,7 @@ } }, { - "id": 19651, + "id": 18542, "properties": { "east": "low", "north": "none", @@ -243358,7 +233603,7 @@ } }, { - "id": 19652, + "id": 18543, "properties": { "east": "low", "north": "none", @@ -243369,7 +233614,7 @@ } }, { - "id": 19653, + "id": 18544, "properties": { "east": "low", "north": "none", @@ -243380,7 +233625,7 @@ } }, { - "id": 19654, + "id": 18545, "properties": { "east": "low", "north": "none", @@ -243391,7 +233636,7 @@ } }, { - "id": 19655, + "id": 18546, "properties": { "east": "low", "north": "none", @@ -243402,7 +233647,7 @@ } }, { - "id": 19656, + "id": 18547, "properties": { "east": "low", "north": "none", @@ -243413,7 +233658,7 @@ } }, { - "id": 19657, + "id": 18548, "properties": { "east": "low", "north": "none", @@ -243424,7 +233669,7 @@ } }, { - "id": 19658, + "id": 18549, "properties": { "east": "low", "north": "none", @@ -243435,7 +233680,7 @@ } }, { - "id": 19659, + "id": 18550, "properties": { "east": "low", "north": "none", @@ -243446,7 +233691,7 @@ } }, { - "id": 19660, + "id": 18551, "properties": { "east": "low", "north": "none", @@ -243457,7 +233702,7 @@ } }, { - "id": 19661, + "id": 18552, "properties": { "east": "low", "north": "none", @@ -243468,7 +233713,7 @@ } }, { - "id": 19662, + "id": 18553, "properties": { "east": "low", "north": "none", @@ -243479,7 +233724,7 @@ } }, { - "id": 19663, + "id": 18554, "properties": { "east": "low", "north": "none", @@ -243490,7 +233735,7 @@ } }, { - "id": 19664, + "id": 18555, "properties": { "east": "low", "north": "none", @@ -243501,7 +233746,7 @@ } }, { - "id": 19665, + "id": 18556, "properties": { "east": "low", "north": "none", @@ -243512,7 +233757,7 @@ } }, { - "id": 19666, + "id": 18557, "properties": { "east": "low", "north": "none", @@ -243523,7 +233768,7 @@ } }, { - "id": 19667, + "id": 18558, "properties": { "east": "low", "north": "none", @@ -243534,7 +233779,7 @@ } }, { - "id": 19668, + "id": 18559, "properties": { "east": "low", "north": "none", @@ -243545,7 +233790,7 @@ } }, { - "id": 19669, + "id": 18560, "properties": { "east": "low", "north": "none", @@ -243556,7 +233801,7 @@ } }, { - "id": 19670, + "id": 18561, "properties": { "east": "low", "north": "none", @@ -243567,7 +233812,7 @@ } }, { - "id": 19671, + "id": 18562, "properties": { "east": "low", "north": "none", @@ -243578,7 +233823,7 @@ } }, { - "id": 19672, + "id": 18563, "properties": { "east": "low", "north": "none", @@ -243589,7 +233834,7 @@ } }, { - "id": 19673, + "id": 18564, "properties": { "east": "low", "north": "none", @@ -243600,7 +233845,7 @@ } }, { - "id": 19674, + "id": 18565, "properties": { "east": "low", "north": "none", @@ -243611,7 +233856,7 @@ } }, { - "id": 19675, + "id": 18566, "properties": { "east": "low", "north": "none", @@ -243622,7 +233867,7 @@ } }, { - "id": 19676, + "id": 18567, "properties": { "east": "low", "north": "low", @@ -243633,7 +233878,7 @@ } }, { - "id": 19677, + "id": 18568, "properties": { "east": "low", "north": "low", @@ -243644,7 +233889,7 @@ } }, { - "id": 19678, + "id": 18569, "properties": { "east": "low", "north": "low", @@ -243655,7 +233900,7 @@ } }, { - "id": 19679, + "id": 18570, "properties": { "east": "low", "north": "low", @@ -243666,7 +233911,7 @@ } }, { - "id": 19680, + "id": 18571, "properties": { "east": "low", "north": "low", @@ -243677,7 +233922,7 @@ } }, { - "id": 19681, + "id": 18572, "properties": { "east": "low", "north": "low", @@ -243688,7 +233933,7 @@ } }, { - "id": 19682, + "id": 18573, "properties": { "east": "low", "north": "low", @@ -243699,7 +233944,7 @@ } }, { - "id": 19683, + "id": 18574, "properties": { "east": "low", "north": "low", @@ -243710,7 +233955,7 @@ } }, { - "id": 19684, + "id": 18575, "properties": { "east": "low", "north": "low", @@ -243721,7 +233966,7 @@ } }, { - "id": 19685, + "id": 18576, "properties": { "east": "low", "north": "low", @@ -243732,7 +233977,7 @@ } }, { - "id": 19686, + "id": 18577, "properties": { "east": "low", "north": "low", @@ -243743,7 +233988,7 @@ } }, { - "id": 19687, + "id": 18578, "properties": { "east": "low", "north": "low", @@ -243754,7 +233999,7 @@ } }, { - "id": 19688, + "id": 18579, "properties": { "east": "low", "north": "low", @@ -243765,7 +234010,7 @@ } }, { - "id": 19689, + "id": 18580, "properties": { "east": "low", "north": "low", @@ -243776,7 +234021,7 @@ } }, { - "id": 19690, + "id": 18581, "properties": { "east": "low", "north": "low", @@ -243787,7 +234032,7 @@ } }, { - "id": 19691, + "id": 18582, "properties": { "east": "low", "north": "low", @@ -243798,7 +234043,7 @@ } }, { - "id": 19692, + "id": 18583, "properties": { "east": "low", "north": "low", @@ -243809,7 +234054,7 @@ } }, { - "id": 19693, + "id": 18584, "properties": { "east": "low", "north": "low", @@ -243820,7 +234065,7 @@ } }, { - "id": 19694, + "id": 18585, "properties": { "east": "low", "north": "low", @@ -243831,7 +234076,7 @@ } }, { - "id": 19695, + "id": 18586, "properties": { "east": "low", "north": "low", @@ -243842,7 +234087,7 @@ } }, { - "id": 19696, + "id": 18587, "properties": { "east": "low", "north": "low", @@ -243853,7 +234098,7 @@ } }, { - "id": 19697, + "id": 18588, "properties": { "east": "low", "north": "low", @@ -243864,7 +234109,7 @@ } }, { - "id": 19698, + "id": 18589, "properties": { "east": "low", "north": "low", @@ -243875,7 +234120,7 @@ } }, { - "id": 19699, + "id": 18590, "properties": { "east": "low", "north": "low", @@ -243886,7 +234131,7 @@ } }, { - "id": 19700, + "id": 18591, "properties": { "east": "low", "north": "low", @@ -243897,7 +234142,7 @@ } }, { - "id": 19701, + "id": 18592, "properties": { "east": "low", "north": "low", @@ -243908,7 +234153,7 @@ } }, { - "id": 19702, + "id": 18593, "properties": { "east": "low", "north": "low", @@ -243919,7 +234164,7 @@ } }, { - "id": 19703, + "id": 18594, "properties": { "east": "low", "north": "low", @@ -243930,7 +234175,7 @@ } }, { - "id": 19704, + "id": 18595, "properties": { "east": "low", "north": "low", @@ -243941,7 +234186,7 @@ } }, { - "id": 19705, + "id": 18596, "properties": { "east": "low", "north": "low", @@ -243952,7 +234197,7 @@ } }, { - "id": 19706, + "id": 18597, "properties": { "east": "low", "north": "low", @@ -243963,7 +234208,7 @@ } }, { - "id": 19707, + "id": 18598, "properties": { "east": "low", "north": "low", @@ -243974,7 +234219,7 @@ } }, { - "id": 19708, + "id": 18599, "properties": { "east": "low", "north": "low", @@ -243985,7 +234230,7 @@ } }, { - "id": 19709, + "id": 18600, "properties": { "east": "low", "north": "low", @@ -243996,7 +234241,7 @@ } }, { - "id": 19710, + "id": 18601, "properties": { "east": "low", "north": "low", @@ -244007,7 +234252,7 @@ } }, { - "id": 19711, + "id": 18602, "properties": { "east": "low", "north": "low", @@ -244018,7 +234263,7 @@ } }, { - "id": 19712, + "id": 18603, "properties": { "east": "low", "north": "tall", @@ -244029,7 +234274,7 @@ } }, { - "id": 19713, + "id": 18604, "properties": { "east": "low", "north": "tall", @@ -244040,7 +234285,7 @@ } }, { - "id": 19714, + "id": 18605, "properties": { "east": "low", "north": "tall", @@ -244051,7 +234296,7 @@ } }, { - "id": 19715, + "id": 18606, "properties": { "east": "low", "north": "tall", @@ -244062,7 +234307,7 @@ } }, { - "id": 19716, + "id": 18607, "properties": { "east": "low", "north": "tall", @@ -244073,7 +234318,7 @@ } }, { - "id": 19717, + "id": 18608, "properties": { "east": "low", "north": "tall", @@ -244084,7 +234329,7 @@ } }, { - "id": 19718, + "id": 18609, "properties": { "east": "low", "north": "tall", @@ -244095,7 +234340,7 @@ } }, { - "id": 19719, + "id": 18610, "properties": { "east": "low", "north": "tall", @@ -244106,7 +234351,7 @@ } }, { - "id": 19720, + "id": 18611, "properties": { "east": "low", "north": "tall", @@ -244117,7 +234362,7 @@ } }, { - "id": 19721, + "id": 18612, "properties": { "east": "low", "north": "tall", @@ -244128,7 +234373,7 @@ } }, { - "id": 19722, + "id": 18613, "properties": { "east": "low", "north": "tall", @@ -244139,7 +234384,7 @@ } }, { - "id": 19723, + "id": 18614, "properties": { "east": "low", "north": "tall", @@ -244150,7 +234395,7 @@ } }, { - "id": 19724, + "id": 18615, "properties": { "east": "low", "north": "tall", @@ -244161,7 +234406,7 @@ } }, { - "id": 19725, + "id": 18616, "properties": { "east": "low", "north": "tall", @@ -244172,7 +234417,7 @@ } }, { - "id": 19726, + "id": 18617, "properties": { "east": "low", "north": "tall", @@ -244183,7 +234428,7 @@ } }, { - "id": 19727, + "id": 18618, "properties": { "east": "low", "north": "tall", @@ -244194,7 +234439,7 @@ } }, { - "id": 19728, + "id": 18619, "properties": { "east": "low", "north": "tall", @@ -244205,7 +234450,7 @@ } }, { - "id": 19729, + "id": 18620, "properties": { "east": "low", "north": "tall", @@ -244216,7 +234461,7 @@ } }, { - "id": 19730, + "id": 18621, "properties": { "east": "low", "north": "tall", @@ -244227,7 +234472,7 @@ } }, { - "id": 19731, + "id": 18622, "properties": { "east": "low", "north": "tall", @@ -244238,7 +234483,7 @@ } }, { - "id": 19732, + "id": 18623, "properties": { "east": "low", "north": "tall", @@ -244249,7 +234494,7 @@ } }, { - "id": 19733, + "id": 18624, "properties": { "east": "low", "north": "tall", @@ -244260,7 +234505,7 @@ } }, { - "id": 19734, + "id": 18625, "properties": { "east": "low", "north": "tall", @@ -244271,7 +234516,7 @@ } }, { - "id": 19735, + "id": 18626, "properties": { "east": "low", "north": "tall", @@ -244282,7 +234527,7 @@ } }, { - "id": 19736, + "id": 18627, "properties": { "east": "low", "north": "tall", @@ -244293,7 +234538,7 @@ } }, { - "id": 19737, + "id": 18628, "properties": { "east": "low", "north": "tall", @@ -244304,7 +234549,7 @@ } }, { - "id": 19738, + "id": 18629, "properties": { "east": "low", "north": "tall", @@ -244315,7 +234560,7 @@ } }, { - "id": 19739, + "id": 18630, "properties": { "east": "low", "north": "tall", @@ -244326,7 +234571,7 @@ } }, { - "id": 19740, + "id": 18631, "properties": { "east": "low", "north": "tall", @@ -244337,7 +234582,7 @@ } }, { - "id": 19741, + "id": 18632, "properties": { "east": "low", "north": "tall", @@ -244348,7 +234593,7 @@ } }, { - "id": 19742, + "id": 18633, "properties": { "east": "low", "north": "tall", @@ -244359,7 +234604,7 @@ } }, { - "id": 19743, + "id": 18634, "properties": { "east": "low", "north": "tall", @@ -244370,7 +234615,7 @@ } }, { - "id": 19744, + "id": 18635, "properties": { "east": "low", "north": "tall", @@ -244381,7 +234626,7 @@ } }, { - "id": 19745, + "id": 18636, "properties": { "east": "low", "north": "tall", @@ -244392,7 +234637,7 @@ } }, { - "id": 19746, + "id": 18637, "properties": { "east": "low", "north": "tall", @@ -244403,7 +234648,7 @@ } }, { - "id": 19747, + "id": 18638, "properties": { "east": "low", "north": "tall", @@ -244414,7 +234659,7 @@ } }, { - "id": 19748, + "id": 18639, "properties": { "east": "tall", "north": "none", @@ -244425,7 +234670,7 @@ } }, { - "id": 19749, + "id": 18640, "properties": { "east": "tall", "north": "none", @@ -244436,7 +234681,7 @@ } }, { - "id": 19750, + "id": 18641, "properties": { "east": "tall", "north": "none", @@ -244447,7 +234692,7 @@ } }, { - "id": 19751, + "id": 18642, "properties": { "east": "tall", "north": "none", @@ -244458,7 +234703,7 @@ } }, { - "id": 19752, + "id": 18643, "properties": { "east": "tall", "north": "none", @@ -244469,7 +234714,7 @@ } }, { - "id": 19753, + "id": 18644, "properties": { "east": "tall", "north": "none", @@ -244480,7 +234725,7 @@ } }, { - "id": 19754, + "id": 18645, "properties": { "east": "tall", "north": "none", @@ -244491,7 +234736,7 @@ } }, { - "id": 19755, + "id": 18646, "properties": { "east": "tall", "north": "none", @@ -244502,7 +234747,7 @@ } }, { - "id": 19756, + "id": 18647, "properties": { "east": "tall", "north": "none", @@ -244513,7 +234758,7 @@ } }, { - "id": 19757, + "id": 18648, "properties": { "east": "tall", "north": "none", @@ -244524,7 +234769,7 @@ } }, { - "id": 19758, + "id": 18649, "properties": { "east": "tall", "north": "none", @@ -244535,7 +234780,7 @@ } }, { - "id": 19759, + "id": 18650, "properties": { "east": "tall", "north": "none", @@ -244546,7 +234791,7 @@ } }, { - "id": 19760, + "id": 18651, "properties": { "east": "tall", "north": "none", @@ -244557,7 +234802,7 @@ } }, { - "id": 19761, + "id": 18652, "properties": { "east": "tall", "north": "none", @@ -244568,7 +234813,7 @@ } }, { - "id": 19762, + "id": 18653, "properties": { "east": "tall", "north": "none", @@ -244579,7 +234824,7 @@ } }, { - "id": 19763, + "id": 18654, "properties": { "east": "tall", "north": "none", @@ -244590,7 +234835,7 @@ } }, { - "id": 19764, + "id": 18655, "properties": { "east": "tall", "north": "none", @@ -244601,7 +234846,7 @@ } }, { - "id": 19765, + "id": 18656, "properties": { "east": "tall", "north": "none", @@ -244612,7 +234857,7 @@ } }, { - "id": 19766, + "id": 18657, "properties": { "east": "tall", "north": "none", @@ -244623,7 +234868,7 @@ } }, { - "id": 19767, + "id": 18658, "properties": { "east": "tall", "north": "none", @@ -244634,7 +234879,7 @@ } }, { - "id": 19768, + "id": 18659, "properties": { "east": "tall", "north": "none", @@ -244645,7 +234890,7 @@ } }, { - "id": 19769, + "id": 18660, "properties": { "east": "tall", "north": "none", @@ -244656,7 +234901,7 @@ } }, { - "id": 19770, + "id": 18661, "properties": { "east": "tall", "north": "none", @@ -244667,7 +234912,7 @@ } }, { - "id": 19771, + "id": 18662, "properties": { "east": "tall", "north": "none", @@ -244678,7 +234923,7 @@ } }, { - "id": 19772, + "id": 18663, "properties": { "east": "tall", "north": "none", @@ -244689,7 +234934,7 @@ } }, { - "id": 19773, + "id": 18664, "properties": { "east": "tall", "north": "none", @@ -244700,7 +234945,7 @@ } }, { - "id": 19774, + "id": 18665, "properties": { "east": "tall", "north": "none", @@ -244711,7 +234956,7 @@ } }, { - "id": 19775, + "id": 18666, "properties": { "east": "tall", "north": "none", @@ -244722,7 +234967,7 @@ } }, { - "id": 19776, + "id": 18667, "properties": { "east": "tall", "north": "none", @@ -244733,7 +234978,7 @@ } }, { - "id": 19777, + "id": 18668, "properties": { "east": "tall", "north": "none", @@ -244744,7 +234989,7 @@ } }, { - "id": 19778, + "id": 18669, "properties": { "east": "tall", "north": "none", @@ -244755,7 +235000,7 @@ } }, { - "id": 19779, + "id": 18670, "properties": { "east": "tall", "north": "none", @@ -244766,7 +235011,7 @@ } }, { - "id": 19780, + "id": 18671, "properties": { "east": "tall", "north": "none", @@ -244777,7 +235022,7 @@ } }, { - "id": 19781, + "id": 18672, "properties": { "east": "tall", "north": "none", @@ -244788,7 +235033,7 @@ } }, { - "id": 19782, + "id": 18673, "properties": { "east": "tall", "north": "none", @@ -244799,7 +235044,7 @@ } }, { - "id": 19783, + "id": 18674, "properties": { "east": "tall", "north": "none", @@ -244810,7 +235055,7 @@ } }, { - "id": 19784, + "id": 18675, "properties": { "east": "tall", "north": "low", @@ -244821,7 +235066,7 @@ } }, { - "id": 19785, + "id": 18676, "properties": { "east": "tall", "north": "low", @@ -244832,7 +235077,7 @@ } }, { - "id": 19786, + "id": 18677, "properties": { "east": "tall", "north": "low", @@ -244843,7 +235088,7 @@ } }, { - "id": 19787, + "id": 18678, "properties": { "east": "tall", "north": "low", @@ -244854,7 +235099,7 @@ } }, { - "id": 19788, + "id": 18679, "properties": { "east": "tall", "north": "low", @@ -244865,7 +235110,7 @@ } }, { - "id": 19789, + "id": 18680, "properties": { "east": "tall", "north": "low", @@ -244876,7 +235121,7 @@ } }, { - "id": 19790, + "id": 18681, "properties": { "east": "tall", "north": "low", @@ -244887,7 +235132,7 @@ } }, { - "id": 19791, + "id": 18682, "properties": { "east": "tall", "north": "low", @@ -244898,7 +235143,7 @@ } }, { - "id": 19792, + "id": 18683, "properties": { "east": "tall", "north": "low", @@ -244909,7 +235154,7 @@ } }, { - "id": 19793, + "id": 18684, "properties": { "east": "tall", "north": "low", @@ -244920,7 +235165,7 @@ } }, { - "id": 19794, + "id": 18685, "properties": { "east": "tall", "north": "low", @@ -244931,7 +235176,7 @@ } }, { - "id": 19795, + "id": 18686, "properties": { "east": "tall", "north": "low", @@ -244942,7 +235187,7 @@ } }, { - "id": 19796, + "id": 18687, "properties": { "east": "tall", "north": "low", @@ -244953,7 +235198,7 @@ } }, { - "id": 19797, + "id": 18688, "properties": { "east": "tall", "north": "low", @@ -244964,7 +235209,7 @@ } }, { - "id": 19798, + "id": 18689, "properties": { "east": "tall", "north": "low", @@ -244975,7 +235220,7 @@ } }, { - "id": 19799, + "id": 18690, "properties": { "east": "tall", "north": "low", @@ -244986,7 +235231,7 @@ } }, { - "id": 19800, + "id": 18691, "properties": { "east": "tall", "north": "low", @@ -244997,7 +235242,7 @@ } }, { - "id": 19801, + "id": 18692, "properties": { "east": "tall", "north": "low", @@ -245008,7 +235253,7 @@ } }, { - "id": 19802, + "id": 18693, "properties": { "east": "tall", "north": "low", @@ -245019,7 +235264,7 @@ } }, { - "id": 19803, + "id": 18694, "properties": { "east": "tall", "north": "low", @@ -245030,7 +235275,7 @@ } }, { - "id": 19804, + "id": 18695, "properties": { "east": "tall", "north": "low", @@ -245041,7 +235286,7 @@ } }, { - "id": 19805, + "id": 18696, "properties": { "east": "tall", "north": "low", @@ -245052,7 +235297,7 @@ } }, { - "id": 19806, + "id": 18697, "properties": { "east": "tall", "north": "low", @@ -245063,7 +235308,7 @@ } }, { - "id": 19807, + "id": 18698, "properties": { "east": "tall", "north": "low", @@ -245074,7 +235319,7 @@ } }, { - "id": 19808, + "id": 18699, "properties": { "east": "tall", "north": "low", @@ -245085,7 +235330,7 @@ } }, { - "id": 19809, + "id": 18700, "properties": { "east": "tall", "north": "low", @@ -245096,7 +235341,7 @@ } }, { - "id": 19810, + "id": 18701, "properties": { "east": "tall", "north": "low", @@ -245107,7 +235352,7 @@ } }, { - "id": 19811, + "id": 18702, "properties": { "east": "tall", "north": "low", @@ -245118,7 +235363,7 @@ } }, { - "id": 19812, + "id": 18703, "properties": { "east": "tall", "north": "low", @@ -245129,7 +235374,7 @@ } }, { - "id": 19813, + "id": 18704, "properties": { "east": "tall", "north": "low", @@ -245140,7 +235385,7 @@ } }, { - "id": 19814, + "id": 18705, "properties": { "east": "tall", "north": "low", @@ -245151,7 +235396,7 @@ } }, { - "id": 19815, + "id": 18706, "properties": { "east": "tall", "north": "low", @@ -245162,7 +235407,7 @@ } }, { - "id": 19816, + "id": 18707, "properties": { "east": "tall", "north": "low", @@ -245173,7 +235418,7 @@ } }, { - "id": 19817, + "id": 18708, "properties": { "east": "tall", "north": "low", @@ -245184,7 +235429,7 @@ } }, { - "id": 19818, + "id": 18709, "properties": { "east": "tall", "north": "low", @@ -245195,7 +235440,7 @@ } }, { - "id": 19819, + "id": 18710, "properties": { "east": "tall", "north": "low", @@ -245206,7 +235451,7 @@ } }, { - "id": 19820, + "id": 18711, "properties": { "east": "tall", "north": "tall", @@ -245217,7 +235462,7 @@ } }, { - "id": 19821, + "id": 18712, "properties": { "east": "tall", "north": "tall", @@ -245228,7 +235473,7 @@ } }, { - "id": 19822, + "id": 18713, "properties": { "east": "tall", "north": "tall", @@ -245239,7 +235484,7 @@ } }, { - "id": 19823, + "id": 18714, "properties": { "east": "tall", "north": "tall", @@ -245250,7 +235495,7 @@ } }, { - "id": 19824, + "id": 18715, "properties": { "east": "tall", "north": "tall", @@ -245261,7 +235506,7 @@ } }, { - "id": 19825, + "id": 18716, "properties": { "east": "tall", "north": "tall", @@ -245272,7 +235517,7 @@ } }, { - "id": 19826, + "id": 18717, "properties": { "east": "tall", "north": "tall", @@ -245283,7 +235528,7 @@ } }, { - "id": 19827, + "id": 18718, "properties": { "east": "tall", "north": "tall", @@ -245294,7 +235539,7 @@ } }, { - "id": 19828, + "id": 18719, "properties": { "east": "tall", "north": "tall", @@ -245305,7 +235550,7 @@ } }, { - "id": 19829, + "id": 18720, "properties": { "east": "tall", "north": "tall", @@ -245316,7 +235561,7 @@ } }, { - "id": 19830, + "id": 18721, "properties": { "east": "tall", "north": "tall", @@ -245327,7 +235572,7 @@ } }, { - "id": 19831, + "id": 18722, "properties": { "east": "tall", "north": "tall", @@ -245338,7 +235583,7 @@ } }, { - "id": 19832, + "id": 18723, "properties": { "east": "tall", "north": "tall", @@ -245349,7 +235594,7 @@ } }, { - "id": 19833, + "id": 18724, "properties": { "east": "tall", "north": "tall", @@ -245360,7 +235605,7 @@ } }, { - "id": 19834, + "id": 18725, "properties": { "east": "tall", "north": "tall", @@ -245371,7 +235616,7 @@ } }, { - "id": 19835, + "id": 18726, "properties": { "east": "tall", "north": "tall", @@ -245382,7 +235627,7 @@ } }, { - "id": 19836, + "id": 18727, "properties": { "east": "tall", "north": "tall", @@ -245393,7 +235638,7 @@ } }, { - "id": 19837, + "id": 18728, "properties": { "east": "tall", "north": "tall", @@ -245404,7 +235649,7 @@ } }, { - "id": 19838, + "id": 18729, "properties": { "east": "tall", "north": "tall", @@ -245415,7 +235660,7 @@ } }, { - "id": 19839, + "id": 18730, "properties": { "east": "tall", "north": "tall", @@ -245426,7 +235671,7 @@ } }, { - "id": 19840, + "id": 18731, "properties": { "east": "tall", "north": "tall", @@ -245437,7 +235682,7 @@ } }, { - "id": 19841, + "id": 18732, "properties": { "east": "tall", "north": "tall", @@ -245448,7 +235693,7 @@ } }, { - "id": 19842, + "id": 18733, "properties": { "east": "tall", "north": "tall", @@ -245459,7 +235704,7 @@ } }, { - "id": 19843, + "id": 18734, "properties": { "east": "tall", "north": "tall", @@ -245470,7 +235715,7 @@ } }, { - "id": 19844, + "id": 18735, "properties": { "east": "tall", "north": "tall", @@ -245481,7 +235726,7 @@ } }, { - "id": 19845, + "id": 18736, "properties": { "east": "tall", "north": "tall", @@ -245492,7 +235737,7 @@ } }, { - "id": 19846, + "id": 18737, "properties": { "east": "tall", "north": "tall", @@ -245503,7 +235748,7 @@ } }, { - "id": 19847, + "id": 18738, "properties": { "east": "tall", "north": "tall", @@ -245514,7 +235759,7 @@ } }, { - "id": 19848, + "id": 18739, "properties": { "east": "tall", "north": "tall", @@ -245525,7 +235770,7 @@ } }, { - "id": 19849, + "id": 18740, "properties": { "east": "tall", "north": "tall", @@ -245536,7 +235781,7 @@ } }, { - "id": 19850, + "id": 18741, "properties": { "east": "tall", "north": "tall", @@ -245547,7 +235792,7 @@ } }, { - "id": 19851, + "id": 18742, "properties": { "east": "tall", "north": "tall", @@ -245558,7 +235803,7 @@ } }, { - "id": 19852, + "id": 18743, "properties": { "east": "tall", "north": "tall", @@ -245569,7 +235814,7 @@ } }, { - "id": 19853, + "id": 18744, "properties": { "east": "tall", "north": "tall", @@ -245580,7 +235825,7 @@ } }, { - "id": 19854, + "id": 18745, "properties": { "east": "tall", "north": "tall", @@ -245591,7 +235836,7 @@ } }, { - "id": 19855, + "id": 18746, "properties": { "east": "tall", "north": "tall", @@ -245630,7 +235875,7 @@ }, "states": [ { - "id": 20504, + "id": 19395, "properties": { "bottom": "true", "distance": "0", @@ -245638,7 +235883,7 @@ } }, { - "id": 20505, + "id": 19396, "properties": { "bottom": "true", "distance": "0", @@ -245646,7 +235891,7 @@ } }, { - "id": 20506, + "id": 19397, "properties": { "bottom": "true", "distance": "1", @@ -245654,7 +235899,7 @@ } }, { - "id": 20507, + "id": 19398, "properties": { "bottom": "true", "distance": "1", @@ -245662,7 +235907,7 @@ } }, { - "id": 20508, + "id": 19399, "properties": { "bottom": "true", "distance": "2", @@ -245670,7 +235915,7 @@ } }, { - "id": 20509, + "id": 19400, "properties": { "bottom": "true", "distance": "2", @@ -245678,7 +235923,7 @@ } }, { - "id": 20510, + "id": 19401, "properties": { "bottom": "true", "distance": "3", @@ -245686,7 +235931,7 @@ } }, { - "id": 20511, + "id": 19402, "properties": { "bottom": "true", "distance": "3", @@ -245694,7 +235939,7 @@ } }, { - "id": 20512, + "id": 19403, "properties": { "bottom": "true", "distance": "4", @@ -245702,7 +235947,7 @@ } }, { - "id": 20513, + "id": 19404, "properties": { "bottom": "true", "distance": "4", @@ -245710,7 +235955,7 @@ } }, { - "id": 20514, + "id": 19405, "properties": { "bottom": "true", "distance": "5", @@ -245718,7 +235963,7 @@ } }, { - "id": 20515, + "id": 19406, "properties": { "bottom": "true", "distance": "5", @@ -245726,7 +235971,7 @@ } }, { - "id": 20516, + "id": 19407, "properties": { "bottom": "true", "distance": "6", @@ -245734,7 +235979,7 @@ } }, { - "id": 20517, + "id": 19408, "properties": { "bottom": "true", "distance": "6", @@ -245742,7 +235987,7 @@ } }, { - "id": 20518, + "id": 19409, "properties": { "bottom": "true", "distance": "7", @@ -245750,7 +235995,7 @@ } }, { - "id": 20519, + "id": 19410, "properties": { "bottom": "true", "distance": "7", @@ -245758,7 +236003,7 @@ } }, { - "id": 20520, + "id": 19411, "properties": { "bottom": "false", "distance": "0", @@ -245766,7 +236011,7 @@ } }, { - "id": 20521, + "id": 19412, "properties": { "bottom": "false", "distance": "0", @@ -245774,7 +236019,7 @@ } }, { - "id": 20522, + "id": 19413, "properties": { "bottom": "false", "distance": "1", @@ -245782,7 +236027,7 @@ } }, { - "id": 20523, + "id": 19414, "properties": { "bottom": "false", "distance": "1", @@ -245790,7 +236035,7 @@ } }, { - "id": 20524, + "id": 19415, "properties": { "bottom": "false", "distance": "2", @@ -245798,7 +236043,7 @@ } }, { - "id": 20525, + "id": 19416, "properties": { "bottom": "false", "distance": "2", @@ -245806,7 +236051,7 @@ } }, { - "id": 20526, + "id": 19417, "properties": { "bottom": "false", "distance": "3", @@ -245814,7 +236059,7 @@ } }, { - "id": 20527, + "id": 19418, "properties": { "bottom": "false", "distance": "3", @@ -245822,7 +236067,7 @@ } }, { - "id": 20528, + "id": 19419, "properties": { "bottom": "false", "distance": "4", @@ -245830,7 +236075,7 @@ } }, { - "id": 20529, + "id": 19420, "properties": { "bottom": "false", "distance": "4", @@ -245838,7 +236083,7 @@ } }, { - "id": 20530, + "id": 19421, "properties": { "bottom": "false", "distance": "5", @@ -245846,7 +236091,7 @@ } }, { - "id": 20531, + "id": 19422, "properties": { "bottom": "false", "distance": "5", @@ -245854,7 +236099,7 @@ } }, { - "id": 20532, + "id": 19423, "properties": { "bottom": "false", "distance": "6", @@ -245862,7 +236107,7 @@ } }, { - "id": 20533, + "id": 19424, "properties": { "bottom": "false", "distance": "6", @@ -245870,7 +236115,7 @@ } }, { - "id": 20534, + "id": 19425, "properties": { "bottom": "false", "distance": "7", @@ -245879,7 +236124,7 @@ }, { "default": true, - "id": 20535, + "id": 19426, "properties": { "bottom": "false", "distance": "7", @@ -245896,7 +236141,7 @@ "states": [ { "default": true, - "id": 24968 + "id": 23827 } ] }, @@ -245913,14 +236158,14 @@ }, "states": [ { - "id": 25097, + "id": 23956, "properties": { "bloom": "true" } }, { "default": true, - "id": 25098, + "id": 23957, "properties": { "bloom": "false" } @@ -245963,7 +236208,7 @@ }, "states": [ { - "id": 24488, + "id": 23347, "properties": { "power": "0", "sculk_sensor_phase": "inactive", @@ -245972,7 +236217,7 @@ }, { "default": true, - "id": 24489, + "id": 23348, "properties": { "power": "0", "sculk_sensor_phase": "inactive", @@ -245980,7 +236225,7 @@ } }, { - "id": 24490, + "id": 23349, "properties": { "power": "0", "sculk_sensor_phase": "active", @@ -245988,7 +236233,7 @@ } }, { - "id": 24491, + "id": 23350, "properties": { "power": "0", "sculk_sensor_phase": "active", @@ -245996,7 +236241,7 @@ } }, { - "id": 24492, + "id": 23351, "properties": { "power": "0", "sculk_sensor_phase": "cooldown", @@ -246004,7 +236249,7 @@ } }, { - "id": 24493, + "id": 23352, "properties": { "power": "0", "sculk_sensor_phase": "cooldown", @@ -246012,7 +236257,7 @@ } }, { - "id": 24494, + "id": 23353, "properties": { "power": "1", "sculk_sensor_phase": "inactive", @@ -246020,7 +236265,7 @@ } }, { - "id": 24495, + "id": 23354, "properties": { "power": "1", "sculk_sensor_phase": "inactive", @@ -246028,7 +236273,7 @@ } }, { - "id": 24496, + "id": 23355, "properties": { "power": "1", "sculk_sensor_phase": "active", @@ -246036,7 +236281,7 @@ } }, { - "id": 24497, + "id": 23356, "properties": { "power": "1", "sculk_sensor_phase": "active", @@ -246044,7 +236289,7 @@ } }, { - "id": 24498, + "id": 23357, "properties": { "power": "1", "sculk_sensor_phase": "cooldown", @@ -246052,7 +236297,7 @@ } }, { - "id": 24499, + "id": 23358, "properties": { "power": "1", "sculk_sensor_phase": "cooldown", @@ -246060,7 +236305,7 @@ } }, { - "id": 24500, + "id": 23359, "properties": { "power": "2", "sculk_sensor_phase": "inactive", @@ -246068,7 +236313,7 @@ } }, { - "id": 24501, + "id": 23360, "properties": { "power": "2", "sculk_sensor_phase": "inactive", @@ -246076,7 +236321,7 @@ } }, { - "id": 24502, + "id": 23361, "properties": { "power": "2", "sculk_sensor_phase": "active", @@ -246084,7 +236329,7 @@ } }, { - "id": 24503, + "id": 23362, "properties": { "power": "2", "sculk_sensor_phase": "active", @@ -246092,7 +236337,7 @@ } }, { - "id": 24504, + "id": 23363, "properties": { "power": "2", "sculk_sensor_phase": "cooldown", @@ -246100,7 +236345,7 @@ } }, { - "id": 24505, + "id": 23364, "properties": { "power": "2", "sculk_sensor_phase": "cooldown", @@ -246108,7 +236353,7 @@ } }, { - "id": 24506, + "id": 23365, "properties": { "power": "3", "sculk_sensor_phase": "inactive", @@ -246116,7 +236361,7 @@ } }, { - "id": 24507, + "id": 23366, "properties": { "power": "3", "sculk_sensor_phase": "inactive", @@ -246124,7 +236369,7 @@ } }, { - "id": 24508, + "id": 23367, "properties": { "power": "3", "sculk_sensor_phase": "active", @@ -246132,7 +236377,7 @@ } }, { - "id": 24509, + "id": 23368, "properties": { "power": "3", "sculk_sensor_phase": "active", @@ -246140,7 +236385,7 @@ } }, { - "id": 24510, + "id": 23369, "properties": { "power": "3", "sculk_sensor_phase": "cooldown", @@ -246148,7 +236393,7 @@ } }, { - "id": 24511, + "id": 23370, "properties": { "power": "3", "sculk_sensor_phase": "cooldown", @@ -246156,7 +236401,7 @@ } }, { - "id": 24512, + "id": 23371, "properties": { "power": "4", "sculk_sensor_phase": "inactive", @@ -246164,7 +236409,7 @@ } }, { - "id": 24513, + "id": 23372, "properties": { "power": "4", "sculk_sensor_phase": "inactive", @@ -246172,7 +236417,7 @@ } }, { - "id": 24514, + "id": 23373, "properties": { "power": "4", "sculk_sensor_phase": "active", @@ -246180,7 +236425,7 @@ } }, { - "id": 24515, + "id": 23374, "properties": { "power": "4", "sculk_sensor_phase": "active", @@ -246188,7 +236433,7 @@ } }, { - "id": 24516, + "id": 23375, "properties": { "power": "4", "sculk_sensor_phase": "cooldown", @@ -246196,7 +236441,7 @@ } }, { - "id": 24517, + "id": 23376, "properties": { "power": "4", "sculk_sensor_phase": "cooldown", @@ -246204,7 +236449,7 @@ } }, { - "id": 24518, + "id": 23377, "properties": { "power": "5", "sculk_sensor_phase": "inactive", @@ -246212,7 +236457,7 @@ } }, { - "id": 24519, + "id": 23378, "properties": { "power": "5", "sculk_sensor_phase": "inactive", @@ -246220,7 +236465,7 @@ } }, { - "id": 24520, + "id": 23379, "properties": { "power": "5", "sculk_sensor_phase": "active", @@ -246228,7 +236473,7 @@ } }, { - "id": 24521, + "id": 23380, "properties": { "power": "5", "sculk_sensor_phase": "active", @@ -246236,7 +236481,7 @@ } }, { - "id": 24522, + "id": 23381, "properties": { "power": "5", "sculk_sensor_phase": "cooldown", @@ -246244,7 +236489,7 @@ } }, { - "id": 24523, + "id": 23382, "properties": { "power": "5", "sculk_sensor_phase": "cooldown", @@ -246252,7 +236497,7 @@ } }, { - "id": 24524, + "id": 23383, "properties": { "power": "6", "sculk_sensor_phase": "inactive", @@ -246260,7 +236505,7 @@ } }, { - "id": 24525, + "id": 23384, "properties": { "power": "6", "sculk_sensor_phase": "inactive", @@ -246268,7 +236513,7 @@ } }, { - "id": 24526, + "id": 23385, "properties": { "power": "6", "sculk_sensor_phase": "active", @@ -246276,7 +236521,7 @@ } }, { - "id": 24527, + "id": 23386, "properties": { "power": "6", "sculk_sensor_phase": "active", @@ -246284,7 +236529,7 @@ } }, { - "id": 24528, + "id": 23387, "properties": { "power": "6", "sculk_sensor_phase": "cooldown", @@ -246292,7 +236537,7 @@ } }, { - "id": 24529, + "id": 23388, "properties": { "power": "6", "sculk_sensor_phase": "cooldown", @@ -246300,7 +236545,7 @@ } }, { - "id": 24530, + "id": 23389, "properties": { "power": "7", "sculk_sensor_phase": "inactive", @@ -246308,7 +236553,7 @@ } }, { - "id": 24531, + "id": 23390, "properties": { "power": "7", "sculk_sensor_phase": "inactive", @@ -246316,7 +236561,7 @@ } }, { - "id": 24532, + "id": 23391, "properties": { "power": "7", "sculk_sensor_phase": "active", @@ -246324,7 +236569,7 @@ } }, { - "id": 24533, + "id": 23392, "properties": { "power": "7", "sculk_sensor_phase": "active", @@ -246332,7 +236577,7 @@ } }, { - "id": 24534, + "id": 23393, "properties": { "power": "7", "sculk_sensor_phase": "cooldown", @@ -246340,7 +236585,7 @@ } }, { - "id": 24535, + "id": 23394, "properties": { "power": "7", "sculk_sensor_phase": "cooldown", @@ -246348,7 +236593,7 @@ } }, { - "id": 24536, + "id": 23395, "properties": { "power": "8", "sculk_sensor_phase": "inactive", @@ -246356,7 +236601,7 @@ } }, { - "id": 24537, + "id": 23396, "properties": { "power": "8", "sculk_sensor_phase": "inactive", @@ -246364,7 +236609,7 @@ } }, { - "id": 24538, + "id": 23397, "properties": { "power": "8", "sculk_sensor_phase": "active", @@ -246372,7 +236617,7 @@ } }, { - "id": 24539, + "id": 23398, "properties": { "power": "8", "sculk_sensor_phase": "active", @@ -246380,7 +236625,7 @@ } }, { - "id": 24540, + "id": 23399, "properties": { "power": "8", "sculk_sensor_phase": "cooldown", @@ -246388,7 +236633,7 @@ } }, { - "id": 24541, + "id": 23400, "properties": { "power": "8", "sculk_sensor_phase": "cooldown", @@ -246396,7 +236641,7 @@ } }, { - "id": 24542, + "id": 23401, "properties": { "power": "9", "sculk_sensor_phase": "inactive", @@ -246404,7 +236649,7 @@ } }, { - "id": 24543, + "id": 23402, "properties": { "power": "9", "sculk_sensor_phase": "inactive", @@ -246412,7 +236657,7 @@ } }, { - "id": 24544, + "id": 23403, "properties": { "power": "9", "sculk_sensor_phase": "active", @@ -246420,7 +236665,7 @@ } }, { - "id": 24545, + "id": 23404, "properties": { "power": "9", "sculk_sensor_phase": "active", @@ -246428,7 +236673,7 @@ } }, { - "id": 24546, + "id": 23405, "properties": { "power": "9", "sculk_sensor_phase": "cooldown", @@ -246436,7 +236681,7 @@ } }, { - "id": 24547, + "id": 23406, "properties": { "power": "9", "sculk_sensor_phase": "cooldown", @@ -246444,7 +236689,7 @@ } }, { - "id": 24548, + "id": 23407, "properties": { "power": "10", "sculk_sensor_phase": "inactive", @@ -246452,7 +236697,7 @@ } }, { - "id": 24549, + "id": 23408, "properties": { "power": "10", "sculk_sensor_phase": "inactive", @@ -246460,7 +236705,7 @@ } }, { - "id": 24550, + "id": 23409, "properties": { "power": "10", "sculk_sensor_phase": "active", @@ -246468,7 +236713,7 @@ } }, { - "id": 24551, + "id": 23410, "properties": { "power": "10", "sculk_sensor_phase": "active", @@ -246476,7 +236721,7 @@ } }, { - "id": 24552, + "id": 23411, "properties": { "power": "10", "sculk_sensor_phase": "cooldown", @@ -246484,7 +236729,7 @@ } }, { - "id": 24553, + "id": 23412, "properties": { "power": "10", "sculk_sensor_phase": "cooldown", @@ -246492,7 +236737,7 @@ } }, { - "id": 24554, + "id": 23413, "properties": { "power": "11", "sculk_sensor_phase": "inactive", @@ -246500,7 +236745,7 @@ } }, { - "id": 24555, + "id": 23414, "properties": { "power": "11", "sculk_sensor_phase": "inactive", @@ -246508,7 +236753,7 @@ } }, { - "id": 24556, + "id": 23415, "properties": { "power": "11", "sculk_sensor_phase": "active", @@ -246516,7 +236761,7 @@ } }, { - "id": 24557, + "id": 23416, "properties": { "power": "11", "sculk_sensor_phase": "active", @@ -246524,7 +236769,7 @@ } }, { - "id": 24558, + "id": 23417, "properties": { "power": "11", "sculk_sensor_phase": "cooldown", @@ -246532,7 +236777,7 @@ } }, { - "id": 24559, + "id": 23418, "properties": { "power": "11", "sculk_sensor_phase": "cooldown", @@ -246540,7 +236785,7 @@ } }, { - "id": 24560, + "id": 23419, "properties": { "power": "12", "sculk_sensor_phase": "inactive", @@ -246548,7 +236793,7 @@ } }, { - "id": 24561, + "id": 23420, "properties": { "power": "12", "sculk_sensor_phase": "inactive", @@ -246556,7 +236801,7 @@ } }, { - "id": 24562, + "id": 23421, "properties": { "power": "12", "sculk_sensor_phase": "active", @@ -246564,7 +236809,7 @@ } }, { - "id": 24563, + "id": 23422, "properties": { "power": "12", "sculk_sensor_phase": "active", @@ -246572,7 +236817,7 @@ } }, { - "id": 24564, + "id": 23423, "properties": { "power": "12", "sculk_sensor_phase": "cooldown", @@ -246580,7 +236825,7 @@ } }, { - "id": 24565, + "id": 23424, "properties": { "power": "12", "sculk_sensor_phase": "cooldown", @@ -246588,7 +236833,7 @@ } }, { - "id": 24566, + "id": 23425, "properties": { "power": "13", "sculk_sensor_phase": "inactive", @@ -246596,7 +236841,7 @@ } }, { - "id": 24567, + "id": 23426, "properties": { "power": "13", "sculk_sensor_phase": "inactive", @@ -246604,7 +236849,7 @@ } }, { - "id": 24568, + "id": 23427, "properties": { "power": "13", "sculk_sensor_phase": "active", @@ -246612,7 +236857,7 @@ } }, { - "id": 24569, + "id": 23428, "properties": { "power": "13", "sculk_sensor_phase": "active", @@ -246620,7 +236865,7 @@ } }, { - "id": 24570, + "id": 23429, "properties": { "power": "13", "sculk_sensor_phase": "cooldown", @@ -246628,7 +236873,7 @@ } }, { - "id": 24571, + "id": 23430, "properties": { "power": "13", "sculk_sensor_phase": "cooldown", @@ -246636,7 +236881,7 @@ } }, { - "id": 24572, + "id": 23431, "properties": { "power": "14", "sculk_sensor_phase": "inactive", @@ -246644,7 +236889,7 @@ } }, { - "id": 24573, + "id": 23432, "properties": { "power": "14", "sculk_sensor_phase": "inactive", @@ -246652,7 +236897,7 @@ } }, { - "id": 24574, + "id": 23433, "properties": { "power": "14", "sculk_sensor_phase": "active", @@ -246660,7 +236905,7 @@ } }, { - "id": 24575, + "id": 23434, "properties": { "power": "14", "sculk_sensor_phase": "active", @@ -246668,7 +236913,7 @@ } }, { - "id": 24576, + "id": 23435, "properties": { "power": "14", "sculk_sensor_phase": "cooldown", @@ -246676,7 +236921,7 @@ } }, { - "id": 24577, + "id": 23436, "properties": { "power": "14", "sculk_sensor_phase": "cooldown", @@ -246684,7 +236929,7 @@ } }, { - "id": 24578, + "id": 23437, "properties": { "power": "15", "sculk_sensor_phase": "inactive", @@ -246692,7 +236937,7 @@ } }, { - "id": 24579, + "id": 23438, "properties": { "power": "15", "sculk_sensor_phase": "inactive", @@ -246700,7 +236945,7 @@ } }, { - "id": 24580, + "id": 23439, "properties": { "power": "15", "sculk_sensor_phase": "active", @@ -246708,7 +236953,7 @@ } }, { - "id": 24581, + "id": 23440, "properties": { "power": "15", "sculk_sensor_phase": "active", @@ -246716,7 +236961,7 @@ } }, { - "id": 24582, + "id": 23441, "properties": { "power": "15", "sculk_sensor_phase": "cooldown", @@ -246724,7 +236969,7 @@ } }, { - "id": 24583, + "id": 23442, "properties": { "power": "15", "sculk_sensor_phase": "cooldown", @@ -246754,7 +236999,7 @@ }, "states": [ { - "id": 25099, + "id": 23958, "properties": { "can_summon": "true", "shrieking": "true", @@ -246762,7 +237007,7 @@ } }, { - "id": 25100, + "id": 23959, "properties": { "can_summon": "true", "shrieking": "true", @@ -246770,7 +237015,7 @@ } }, { - "id": 25101, + "id": 23960, "properties": { "can_summon": "true", "shrieking": "false", @@ -246778,7 +237023,7 @@ } }, { - "id": 25102, + "id": 23961, "properties": { "can_summon": "true", "shrieking": "false", @@ -246786,7 +237031,7 @@ } }, { - "id": 25103, + "id": 23962, "properties": { "can_summon": "false", "shrieking": "true", @@ -246794,7 +237039,7 @@ } }, { - "id": 25104, + "id": 23963, "properties": { "can_summon": "false", "shrieking": "true", @@ -246802,7 +237047,7 @@ } }, { - "id": 25105, + "id": 23964, "properties": { "can_summon": "false", "shrieking": "false", @@ -246811,7 +237056,7 @@ }, { "default": true, - "id": 25106, + "id": 23965, "properties": { "can_summon": "false", "shrieking": "false", @@ -246857,7 +237102,7 @@ }, "states": [ { - "id": 24969, + "id": 23828, "properties": { "down": "true", "east": "true", @@ -246869,7 +237114,7 @@ } }, { - "id": 24970, + "id": 23829, "properties": { "down": "true", "east": "true", @@ -246881,7 +237126,7 @@ } }, { - "id": 24971, + "id": 23830, "properties": { "down": "true", "east": "true", @@ -246893,7 +237138,7 @@ } }, { - "id": 24972, + "id": 23831, "properties": { "down": "true", "east": "true", @@ -246905,7 +237150,7 @@ } }, { - "id": 24973, + "id": 23832, "properties": { "down": "true", "east": "true", @@ -246917,7 +237162,7 @@ } }, { - "id": 24974, + "id": 23833, "properties": { "down": "true", "east": "true", @@ -246929,7 +237174,7 @@ } }, { - "id": 24975, + "id": 23834, "properties": { "down": "true", "east": "true", @@ -246941,7 +237186,7 @@ } }, { - "id": 24976, + "id": 23835, "properties": { "down": "true", "east": "true", @@ -246953,7 +237198,7 @@ } }, { - "id": 24977, + "id": 23836, "properties": { "down": "true", "east": "true", @@ -246965,7 +237210,7 @@ } }, { - "id": 24978, + "id": 23837, "properties": { "down": "true", "east": "true", @@ -246977,7 +237222,7 @@ } }, { - "id": 24979, + "id": 23838, "properties": { "down": "true", "east": "true", @@ -246989,7 +237234,7 @@ } }, { - "id": 24980, + "id": 23839, "properties": { "down": "true", "east": "true", @@ -247001,7 +237246,7 @@ } }, { - "id": 24981, + "id": 23840, "properties": { "down": "true", "east": "true", @@ -247013,7 +237258,7 @@ } }, { - "id": 24982, + "id": 23841, "properties": { "down": "true", "east": "true", @@ -247025,7 +237270,7 @@ } }, { - "id": 24983, + "id": 23842, "properties": { "down": "true", "east": "true", @@ -247037,7 +237282,7 @@ } }, { - "id": 24984, + "id": 23843, "properties": { "down": "true", "east": "true", @@ -247049,7 +237294,7 @@ } }, { - "id": 24985, + "id": 23844, "properties": { "down": "true", "east": "true", @@ -247061,7 +237306,7 @@ } }, { - "id": 24986, + "id": 23845, "properties": { "down": "true", "east": "true", @@ -247073,7 +237318,7 @@ } }, { - "id": 24987, + "id": 23846, "properties": { "down": "true", "east": "true", @@ -247085,7 +237330,7 @@ } }, { - "id": 24988, + "id": 23847, "properties": { "down": "true", "east": "true", @@ -247097,7 +237342,7 @@ } }, { - "id": 24989, + "id": 23848, "properties": { "down": "true", "east": "true", @@ -247109,7 +237354,7 @@ } }, { - "id": 24990, + "id": 23849, "properties": { "down": "true", "east": "true", @@ -247121,7 +237366,7 @@ } }, { - "id": 24991, + "id": 23850, "properties": { "down": "true", "east": "true", @@ -247133,7 +237378,7 @@ } }, { - "id": 24992, + "id": 23851, "properties": { "down": "true", "east": "true", @@ -247145,7 +237390,7 @@ } }, { - "id": 24993, + "id": 23852, "properties": { "down": "true", "east": "true", @@ -247157,7 +237402,7 @@ } }, { - "id": 24994, + "id": 23853, "properties": { "down": "true", "east": "true", @@ -247169,7 +237414,7 @@ } }, { - "id": 24995, + "id": 23854, "properties": { "down": "true", "east": "true", @@ -247181,7 +237426,7 @@ } }, { - "id": 24996, + "id": 23855, "properties": { "down": "true", "east": "true", @@ -247193,7 +237438,7 @@ } }, { - "id": 24997, + "id": 23856, "properties": { "down": "true", "east": "true", @@ -247205,7 +237450,7 @@ } }, { - "id": 24998, + "id": 23857, "properties": { "down": "true", "east": "true", @@ -247217,7 +237462,7 @@ } }, { - "id": 24999, + "id": 23858, "properties": { "down": "true", "east": "true", @@ -247229,7 +237474,7 @@ } }, { - "id": 25000, + "id": 23859, "properties": { "down": "true", "east": "true", @@ -247241,7 +237486,7 @@ } }, { - "id": 25001, + "id": 23860, "properties": { "down": "true", "east": "false", @@ -247253,7 +237498,7 @@ } }, { - "id": 25002, + "id": 23861, "properties": { "down": "true", "east": "false", @@ -247265,7 +237510,7 @@ } }, { - "id": 25003, + "id": 23862, "properties": { "down": "true", "east": "false", @@ -247277,7 +237522,7 @@ } }, { - "id": 25004, + "id": 23863, "properties": { "down": "true", "east": "false", @@ -247289,7 +237534,7 @@ } }, { - "id": 25005, + "id": 23864, "properties": { "down": "true", "east": "false", @@ -247301,7 +237546,7 @@ } }, { - "id": 25006, + "id": 23865, "properties": { "down": "true", "east": "false", @@ -247313,7 +237558,7 @@ } }, { - "id": 25007, + "id": 23866, "properties": { "down": "true", "east": "false", @@ -247325,7 +237570,7 @@ } }, { - "id": 25008, + "id": 23867, "properties": { "down": "true", "east": "false", @@ -247337,7 +237582,7 @@ } }, { - "id": 25009, + "id": 23868, "properties": { "down": "true", "east": "false", @@ -247349,7 +237594,7 @@ } }, { - "id": 25010, + "id": 23869, "properties": { "down": "true", "east": "false", @@ -247361,7 +237606,7 @@ } }, { - "id": 25011, + "id": 23870, "properties": { "down": "true", "east": "false", @@ -247373,7 +237618,7 @@ } }, { - "id": 25012, + "id": 23871, "properties": { "down": "true", "east": "false", @@ -247385,7 +237630,7 @@ } }, { - "id": 25013, + "id": 23872, "properties": { "down": "true", "east": "false", @@ -247397,7 +237642,7 @@ } }, { - "id": 25014, + "id": 23873, "properties": { "down": "true", "east": "false", @@ -247409,7 +237654,7 @@ } }, { - "id": 25015, + "id": 23874, "properties": { "down": "true", "east": "false", @@ -247421,7 +237666,7 @@ } }, { - "id": 25016, + "id": 23875, "properties": { "down": "true", "east": "false", @@ -247433,7 +237678,7 @@ } }, { - "id": 25017, + "id": 23876, "properties": { "down": "true", "east": "false", @@ -247445,7 +237690,7 @@ } }, { - "id": 25018, + "id": 23877, "properties": { "down": "true", "east": "false", @@ -247457,7 +237702,7 @@ } }, { - "id": 25019, + "id": 23878, "properties": { "down": "true", "east": "false", @@ -247469,7 +237714,7 @@ } }, { - "id": 25020, + "id": 23879, "properties": { "down": "true", "east": "false", @@ -247481,7 +237726,7 @@ } }, { - "id": 25021, + "id": 23880, "properties": { "down": "true", "east": "false", @@ -247493,7 +237738,7 @@ } }, { - "id": 25022, + "id": 23881, "properties": { "down": "true", "east": "false", @@ -247505,7 +237750,7 @@ } }, { - "id": 25023, + "id": 23882, "properties": { "down": "true", "east": "false", @@ -247517,7 +237762,7 @@ } }, { - "id": 25024, + "id": 23883, "properties": { "down": "true", "east": "false", @@ -247529,7 +237774,7 @@ } }, { - "id": 25025, + "id": 23884, "properties": { "down": "true", "east": "false", @@ -247541,7 +237786,7 @@ } }, { - "id": 25026, + "id": 23885, "properties": { "down": "true", "east": "false", @@ -247553,7 +237798,7 @@ } }, { - "id": 25027, + "id": 23886, "properties": { "down": "true", "east": "false", @@ -247565,7 +237810,7 @@ } }, { - "id": 25028, + "id": 23887, "properties": { "down": "true", "east": "false", @@ -247577,7 +237822,7 @@ } }, { - "id": 25029, + "id": 23888, "properties": { "down": "true", "east": "false", @@ -247589,7 +237834,7 @@ } }, { - "id": 25030, + "id": 23889, "properties": { "down": "true", "east": "false", @@ -247601,7 +237846,7 @@ } }, { - "id": 25031, + "id": 23890, "properties": { "down": "true", "east": "false", @@ -247613,7 +237858,7 @@ } }, { - "id": 25032, + "id": 23891, "properties": { "down": "true", "east": "false", @@ -247625,7 +237870,7 @@ } }, { - "id": 25033, + "id": 23892, "properties": { "down": "false", "east": "true", @@ -247637,7 +237882,7 @@ } }, { - "id": 25034, + "id": 23893, "properties": { "down": "false", "east": "true", @@ -247649,7 +237894,7 @@ } }, { - "id": 25035, + "id": 23894, "properties": { "down": "false", "east": "true", @@ -247661,7 +237906,7 @@ } }, { - "id": 25036, + "id": 23895, "properties": { "down": "false", "east": "true", @@ -247673,7 +237918,7 @@ } }, { - "id": 25037, + "id": 23896, "properties": { "down": "false", "east": "true", @@ -247685,7 +237930,7 @@ } }, { - "id": 25038, + "id": 23897, "properties": { "down": "false", "east": "true", @@ -247697,7 +237942,7 @@ } }, { - "id": 25039, + "id": 23898, "properties": { "down": "false", "east": "true", @@ -247709,7 +237954,7 @@ } }, { - "id": 25040, + "id": 23899, "properties": { "down": "false", "east": "true", @@ -247721,7 +237966,7 @@ } }, { - "id": 25041, + "id": 23900, "properties": { "down": "false", "east": "true", @@ -247733,7 +237978,7 @@ } }, { - "id": 25042, + "id": 23901, "properties": { "down": "false", "east": "true", @@ -247745,7 +237990,7 @@ } }, { - "id": 25043, + "id": 23902, "properties": { "down": "false", "east": "true", @@ -247757,7 +238002,7 @@ } }, { - "id": 25044, + "id": 23903, "properties": { "down": "false", "east": "true", @@ -247769,7 +238014,7 @@ } }, { - "id": 25045, + "id": 23904, "properties": { "down": "false", "east": "true", @@ -247781,7 +238026,7 @@ } }, { - "id": 25046, + "id": 23905, "properties": { "down": "false", "east": "true", @@ -247793,7 +238038,7 @@ } }, { - "id": 25047, + "id": 23906, "properties": { "down": "false", "east": "true", @@ -247805,7 +238050,7 @@ } }, { - "id": 25048, + "id": 23907, "properties": { "down": "false", "east": "true", @@ -247817,7 +238062,7 @@ } }, { - "id": 25049, + "id": 23908, "properties": { "down": "false", "east": "true", @@ -247829,7 +238074,7 @@ } }, { - "id": 25050, + "id": 23909, "properties": { "down": "false", "east": "true", @@ -247841,7 +238086,7 @@ } }, { - "id": 25051, + "id": 23910, "properties": { "down": "false", "east": "true", @@ -247853,7 +238098,7 @@ } }, { - "id": 25052, + "id": 23911, "properties": { "down": "false", "east": "true", @@ -247865,7 +238110,7 @@ } }, { - "id": 25053, + "id": 23912, "properties": { "down": "false", "east": "true", @@ -247877,7 +238122,7 @@ } }, { - "id": 25054, + "id": 23913, "properties": { "down": "false", "east": "true", @@ -247889,7 +238134,7 @@ } }, { - "id": 25055, + "id": 23914, "properties": { "down": "false", "east": "true", @@ -247901,7 +238146,7 @@ } }, { - "id": 25056, + "id": 23915, "properties": { "down": "false", "east": "true", @@ -247913,7 +238158,7 @@ } }, { - "id": 25057, + "id": 23916, "properties": { "down": "false", "east": "true", @@ -247925,7 +238170,7 @@ } }, { - "id": 25058, + "id": 23917, "properties": { "down": "false", "east": "true", @@ -247937,7 +238182,7 @@ } }, { - "id": 25059, + "id": 23918, "properties": { "down": "false", "east": "true", @@ -247949,7 +238194,7 @@ } }, { - "id": 25060, + "id": 23919, "properties": { "down": "false", "east": "true", @@ -247961,7 +238206,7 @@ } }, { - "id": 25061, + "id": 23920, "properties": { "down": "false", "east": "true", @@ -247973,7 +238218,7 @@ } }, { - "id": 25062, + "id": 23921, "properties": { "down": "false", "east": "true", @@ -247985,7 +238230,7 @@ } }, { - "id": 25063, + "id": 23922, "properties": { "down": "false", "east": "true", @@ -247997,7 +238242,7 @@ } }, { - "id": 25064, + "id": 23923, "properties": { "down": "false", "east": "true", @@ -248009,7 +238254,7 @@ } }, { - "id": 25065, + "id": 23924, "properties": { "down": "false", "east": "false", @@ -248021,7 +238266,7 @@ } }, { - "id": 25066, + "id": 23925, "properties": { "down": "false", "east": "false", @@ -248033,7 +238278,7 @@ } }, { - "id": 25067, + "id": 23926, "properties": { "down": "false", "east": "false", @@ -248045,7 +238290,7 @@ } }, { - "id": 25068, + "id": 23927, "properties": { "down": "false", "east": "false", @@ -248057,7 +238302,7 @@ } }, { - "id": 25069, + "id": 23928, "properties": { "down": "false", "east": "false", @@ -248069,7 +238314,7 @@ } }, { - "id": 25070, + "id": 23929, "properties": { "down": "false", "east": "false", @@ -248081,7 +238326,7 @@ } }, { - "id": 25071, + "id": 23930, "properties": { "down": "false", "east": "false", @@ -248093,7 +238338,7 @@ } }, { - "id": 25072, + "id": 23931, "properties": { "down": "false", "east": "false", @@ -248105,7 +238350,7 @@ } }, { - "id": 25073, + "id": 23932, "properties": { "down": "false", "east": "false", @@ -248117,7 +238362,7 @@ } }, { - "id": 25074, + "id": 23933, "properties": { "down": "false", "east": "false", @@ -248129,7 +238374,7 @@ } }, { - "id": 25075, + "id": 23934, "properties": { "down": "false", "east": "false", @@ -248141,7 +238386,7 @@ } }, { - "id": 25076, + "id": 23935, "properties": { "down": "false", "east": "false", @@ -248153,7 +238398,7 @@ } }, { - "id": 25077, + "id": 23936, "properties": { "down": "false", "east": "false", @@ -248165,7 +238410,7 @@ } }, { - "id": 25078, + "id": 23937, "properties": { "down": "false", "east": "false", @@ -248177,7 +238422,7 @@ } }, { - "id": 25079, + "id": 23938, "properties": { "down": "false", "east": "false", @@ -248189,7 +238434,7 @@ } }, { - "id": 25080, + "id": 23939, "properties": { "down": "false", "east": "false", @@ -248201,7 +238446,7 @@ } }, { - "id": 25081, + "id": 23940, "properties": { "down": "false", "east": "false", @@ -248213,7 +238458,7 @@ } }, { - "id": 25082, + "id": 23941, "properties": { "down": "false", "east": "false", @@ -248225,7 +238470,7 @@ } }, { - "id": 25083, + "id": 23942, "properties": { "down": "false", "east": "false", @@ -248237,7 +238482,7 @@ } }, { - "id": 25084, + "id": 23943, "properties": { "down": "false", "east": "false", @@ -248249,7 +238494,7 @@ } }, { - "id": 25085, + "id": 23944, "properties": { "down": "false", "east": "false", @@ -248261,7 +238506,7 @@ } }, { - "id": 25086, + "id": 23945, "properties": { "down": "false", "east": "false", @@ -248273,7 +238518,7 @@ } }, { - "id": 25087, + "id": 23946, "properties": { "down": "false", "east": "false", @@ -248285,7 +238530,7 @@ } }, { - "id": 25088, + "id": 23947, "properties": { "down": "false", "east": "false", @@ -248297,7 +238542,7 @@ } }, { - "id": 25089, + "id": 23948, "properties": { "down": "false", "east": "false", @@ -248309,7 +238554,7 @@ } }, { - "id": 25090, + "id": 23949, "properties": { "down": "false", "east": "false", @@ -248321,7 +238566,7 @@ } }, { - "id": 25091, + "id": 23950, "properties": { "down": "false", "east": "false", @@ -248333,7 +238578,7 @@ } }, { - "id": 25092, + "id": 23951, "properties": { "down": "false", "east": "false", @@ -248345,7 +238590,7 @@ } }, { - "id": 25093, + "id": 23952, "properties": { "down": "false", "east": "false", @@ -248357,7 +238602,7 @@ } }, { - "id": 25094, + "id": 23953, "properties": { "down": "false", "east": "false", @@ -248369,7 +238614,7 @@ } }, { - "id": 25095, + "id": 23954, "properties": { "down": "false", "east": "false", @@ -248382,7 +238627,7 @@ }, { "default": true, - "id": 25096, + "id": 23955, "properties": { "down": "false", "east": "false", @@ -248403,7 +238648,7 @@ "states": [ { "default": true, - "id": 12690 + "id": 11613 } ] }, @@ -248427,56 +238672,56 @@ "states": [ { "default": true, - "id": 15065, + "id": 13956, "properties": { "pickles": "1", "waterlogged": "true" } }, { - "id": 15066, + "id": 13957, "properties": { "pickles": "1", "waterlogged": "false" } }, { - "id": 15067, + "id": 13958, "properties": { "pickles": "2", "waterlogged": "true" } }, { - "id": 15068, + "id": 13959, "properties": { "pickles": "2", "waterlogged": "false" } }, { - "id": 15069, + "id": 13960, "properties": { "pickles": "3", "waterlogged": "true" } }, { - "id": 15070, + "id": 13961, "properties": { "pickles": "3", "waterlogged": "false" } }, { - "id": 15071, + "id": 13962, "properties": { "pickles": "4", "waterlogged": "true" } }, { - "id": 15072, + "id": 13963, "properties": { "pickles": "4", "waterlogged": "false" @@ -248528,7 +238773,7 @@ "states": [ { "default": true, - "id": 20774 + "id": 19633 } ] }, @@ -248549,38 +238794,38 @@ }, "states": [ { - "id": 14662, + "id": 13585, "properties": { "facing": "north" } }, { - "id": 14663, + "id": 13586, "properties": { "facing": "east" } }, { - "id": 14664, + "id": 13587, "properties": { "facing": "south" } }, { - "id": 14665, + "id": 13588, "properties": { "facing": "west" } }, { "default": true, - "id": 14666, + "id": 13589, "properties": { "facing": "up" } }, { - "id": 14667, + "id": 13590, "properties": { "facing": "down" } @@ -248619,112 +238864,112 @@ }, "states": [ { - "id": 10713, + "id": 9636, "properties": { "powered": "true", "rotation": "0" } }, { - "id": 10714, + "id": 9637, "properties": { "powered": "true", "rotation": "1" } }, { - "id": 10715, + "id": 9638, "properties": { "powered": "true", "rotation": "2" } }, { - "id": 10716, + "id": 9639, "properties": { "powered": "true", "rotation": "3" } }, { - "id": 10717, + "id": 9640, "properties": { "powered": "true", "rotation": "4" } }, { - "id": 10718, + "id": 9641, "properties": { "powered": "true", "rotation": "5" } }, { - "id": 10719, + "id": 9642, "properties": { "powered": "true", "rotation": "6" } }, { - "id": 10720, + "id": 9643, "properties": { "powered": "true", "rotation": "7" } }, { - "id": 10721, + "id": 9644, "properties": { "powered": "true", "rotation": "8" } }, { - "id": 10722, + "id": 9645, "properties": { "powered": "true", "rotation": "9" } }, { - "id": 10723, + "id": 9646, "properties": { "powered": "true", "rotation": "10" } }, { - "id": 10724, + "id": 9647, "properties": { "powered": "true", "rotation": "11" } }, { - "id": 10725, + "id": 9648, "properties": { "powered": "true", "rotation": "12" } }, { - "id": 10726, + "id": 9649, "properties": { "powered": "true", "rotation": "13" } }, { - "id": 10727, + "id": 9650, "properties": { "powered": "true", "rotation": "14" } }, { - "id": 10728, + "id": 9651, "properties": { "powered": "true", "rotation": "15" @@ -248732,112 +238977,112 @@ }, { "default": true, - "id": 10729, + "id": 9652, "properties": { "powered": "false", "rotation": "0" } }, { - "id": 10730, + "id": 9653, "properties": { "powered": "false", "rotation": "1" } }, { - "id": 10731, + "id": 9654, "properties": { "powered": "false", "rotation": "2" } }, { - "id": 10732, + "id": 9655, "properties": { "powered": "false", "rotation": "3" } }, { - "id": 10733, + "id": 9656, "properties": { "powered": "false", "rotation": "4" } }, { - "id": 10734, + "id": 9657, "properties": { "powered": "false", "rotation": "5" } }, { - "id": 10735, + "id": 9658, "properties": { "powered": "false", "rotation": "6" } }, { - "id": 10736, + "id": 9659, "properties": { "powered": "false", "rotation": "7" } }, { - "id": 10737, + "id": 9660, "properties": { "powered": "false", "rotation": "8" } }, { - "id": 10738, + "id": 9661, "properties": { "powered": "false", "rotation": "9" } }, { - "id": 10739, + "id": 9662, "properties": { "powered": "false", "rotation": "10" } }, { - "id": 10740, + "id": 9663, "properties": { "powered": "false", "rotation": "11" } }, { - "id": 10741, + "id": 9664, "properties": { "powered": "false", "rotation": "12" } }, { - "id": 10742, + "id": 9665, "properties": { "powered": "false", "rotation": "13" } }, { - "id": 10743, + "id": 9666, "properties": { "powered": "false", "rotation": "14" } }, { - "id": 10744, + "id": 9667, "properties": { "powered": "false", "rotation": "15" @@ -248865,7 +239110,7 @@ }, "states": [ { - "id": 10745, + "id": 9668, "properties": { "facing": "north", "powered": "true" @@ -248873,49 +239118,49 @@ }, { "default": true, - "id": 10746, + "id": 9669, "properties": { "facing": "north", "powered": "false" } }, { - "id": 10747, + "id": 9670, "properties": { "facing": "south", "powered": "true" } }, { - "id": 10748, + "id": 9671, "properties": { "facing": "south", "powered": "false" } }, { - "id": 10749, + "id": 9672, "properties": { "facing": "west", "powered": "true" } }, { - "id": 10750, + "id": 9673, "properties": { "facing": "west", "powered": "false" } }, { - "id": 10751, + "id": 9674, "properties": { "facing": "east", "powered": "true" } }, { - "id": 10752, + "id": 9675, "properties": { "facing": "east", "powered": "false" @@ -248931,7 +239176,7 @@ "states": [ { "default": true, - "id": 12330 + "id": 11253 } ] }, @@ -248958,63 +239203,63 @@ }, "states": [ { - "id": 23238, + "id": 22097, "properties": { "facing": "north", "waterlogged": "true" } }, { - "id": 23239, + "id": 22098, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 23240, + "id": 22099, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 23241, + "id": 22100, "properties": { "facing": "east", "waterlogged": "false" } }, { - "id": 23242, + "id": 22101, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 23243, + "id": 22102, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 23244, + "id": 22103, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 23245, + "id": 22104, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 23246, + "id": 22105, "properties": { "facing": "up", "waterlogged": "true" @@ -249022,21 +239267,21 @@ }, { "default": true, - "id": 23247, + "id": 22106, "properties": { "facing": "up", "waterlogged": "false" } }, { - "id": 23248, + "id": 22107, "properties": { "facing": "down", "waterlogged": "true" } }, { - "id": 23249, + "id": 22108, "properties": { "facing": "down", "waterlogged": "false" @@ -249067,7 +239312,7 @@ }, "states": [ { - "id": 27701, + "id": 25944, "properties": { "facing": "north", "half": "upper", @@ -249075,7 +239320,7 @@ } }, { - "id": 27702, + "id": 25945, "properties": { "facing": "north", "half": "upper", @@ -249083,7 +239328,7 @@ } }, { - "id": 27703, + "id": 25946, "properties": { "facing": "north", "half": "lower", @@ -249092,7 +239337,7 @@ }, { "default": true, - "id": 27704, + "id": 25947, "properties": { "facing": "north", "half": "lower", @@ -249100,7 +239345,7 @@ } }, { - "id": 27705, + "id": 25948, "properties": { "facing": "south", "half": "upper", @@ -249108,7 +239353,7 @@ } }, { - "id": 27706, + "id": 25949, "properties": { "facing": "south", "half": "upper", @@ -249116,7 +239361,7 @@ } }, { - "id": 27707, + "id": 25950, "properties": { "facing": "south", "half": "lower", @@ -249124,7 +239369,7 @@ } }, { - "id": 27708, + "id": 25951, "properties": { "facing": "south", "half": "lower", @@ -249132,7 +239377,7 @@ } }, { - "id": 27709, + "id": 25952, "properties": { "facing": "west", "half": "upper", @@ -249140,7 +239385,7 @@ } }, { - "id": 27710, + "id": 25953, "properties": { "facing": "west", "half": "upper", @@ -249148,7 +239393,7 @@ } }, { - "id": 27711, + "id": 25954, "properties": { "facing": "west", "half": "lower", @@ -249156,7 +239401,7 @@ } }, { - "id": 27712, + "id": 25955, "properties": { "facing": "west", "half": "lower", @@ -249164,7 +239409,7 @@ } }, { - "id": 27713, + "id": 25956, "properties": { "facing": "east", "half": "upper", @@ -249172,7 +239417,7 @@ } }, { - "id": 27714, + "id": 25957, "properties": { "facing": "east", "half": "upper", @@ -249180,7 +239425,7 @@ } }, { - "id": 27715, + "id": 25958, "properties": { "facing": "east", "half": "lower", @@ -249188,7 +239433,7 @@ } }, { - "id": 27716, + "id": 25959, "properties": { "facing": "east", "half": "lower", @@ -249205,7 +239450,7 @@ "states": [ { "default": true, - "id": 20598 + "id": 19489 } ] }, @@ -249228,7 +239473,7 @@ }, "states": [ { - "id": 20552, + "id": 19443, "properties": { "facing": "north", "lit": "true" @@ -249236,49 +239481,49 @@ }, { "default": true, - "id": 20553, + "id": 19444, "properties": { "facing": "north", "lit": "false" } }, { - "id": 20554, + "id": 19445, "properties": { "facing": "south", "lit": "true" } }, { - "id": 20555, + "id": 19446, "properties": { "facing": "south", "lit": "false" } }, { - "id": 20556, + "id": 19447, "properties": { "facing": "west", "lit": "true" } }, { - "id": 20557, + "id": 19448, "properties": { "facing": "west", "lit": "false" } }, { - "id": 20558, + "id": 19449, "properties": { "facing": "east", "lit": "true" } }, { - "id": 20559, + "id": 19450, "properties": { "facing": "east", "lit": "false" @@ -249294,7 +239539,7 @@ "states": [ { "default": true, - "id": 29374 + "id": 27617 } ] }, @@ -249306,7 +239551,7 @@ "states": [ { "default": true, - "id": 13280 + "id": 12203 } ] }, @@ -249328,21 +239573,21 @@ }, "states": [ { - "id": 16256, + "id": 15147, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 16257, + "id": 15148, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 16258, + "id": 15149, "properties": { "type": "bottom", "waterlogged": "true" @@ -249350,21 +239595,21 @@ }, { "default": true, - "id": 16259, + "id": 15150, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 16260, + "id": 15151, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 16261, + "id": 15152, "properties": { "type": "double", "waterlogged": "false" @@ -249405,7 +239650,7 @@ }, "states": [ { - "id": 15734, + "id": 14625, "properties": { "facing": "north", "half": "top", @@ -249414,7 +239659,7 @@ } }, { - "id": 15735, + "id": 14626, "properties": { "facing": "north", "half": "top", @@ -249423,7 +239668,7 @@ } }, { - "id": 15736, + "id": 14627, "properties": { "facing": "north", "half": "top", @@ -249432,7 +239677,7 @@ } }, { - "id": 15737, + "id": 14628, "properties": { "facing": "north", "half": "top", @@ -249441,7 +239686,7 @@ } }, { - "id": 15738, + "id": 14629, "properties": { "facing": "north", "half": "top", @@ -249450,7 +239695,7 @@ } }, { - "id": 15739, + "id": 14630, "properties": { "facing": "north", "half": "top", @@ -249459,7 +239704,7 @@ } }, { - "id": 15740, + "id": 14631, "properties": { "facing": "north", "half": "top", @@ -249468,7 +239713,7 @@ } }, { - "id": 15741, + "id": 14632, "properties": { "facing": "north", "half": "top", @@ -249477,7 +239722,7 @@ } }, { - "id": 15742, + "id": 14633, "properties": { "facing": "north", "half": "top", @@ -249486,7 +239731,7 @@ } }, { - "id": 15743, + "id": 14634, "properties": { "facing": "north", "half": "top", @@ -249495,7 +239740,7 @@ } }, { - "id": 15744, + "id": 14635, "properties": { "facing": "north", "half": "bottom", @@ -249505,7 +239750,7 @@ }, { "default": true, - "id": 15745, + "id": 14636, "properties": { "facing": "north", "half": "bottom", @@ -249514,7 +239759,7 @@ } }, { - "id": 15746, + "id": 14637, "properties": { "facing": "north", "half": "bottom", @@ -249523,7 +239768,7 @@ } }, { - "id": 15747, + "id": 14638, "properties": { "facing": "north", "half": "bottom", @@ -249532,7 +239777,7 @@ } }, { - "id": 15748, + "id": 14639, "properties": { "facing": "north", "half": "bottom", @@ -249541,7 +239786,7 @@ } }, { - "id": 15749, + "id": 14640, "properties": { "facing": "north", "half": "bottom", @@ -249550,7 +239795,7 @@ } }, { - "id": 15750, + "id": 14641, "properties": { "facing": "north", "half": "bottom", @@ -249559,7 +239804,7 @@ } }, { - "id": 15751, + "id": 14642, "properties": { "facing": "north", "half": "bottom", @@ -249568,7 +239813,7 @@ } }, { - "id": 15752, + "id": 14643, "properties": { "facing": "north", "half": "bottom", @@ -249577,7 +239822,7 @@ } }, { - "id": 15753, + "id": 14644, "properties": { "facing": "north", "half": "bottom", @@ -249586,7 +239831,7 @@ } }, { - "id": 15754, + "id": 14645, "properties": { "facing": "south", "half": "top", @@ -249595,7 +239840,7 @@ } }, { - "id": 15755, + "id": 14646, "properties": { "facing": "south", "half": "top", @@ -249604,7 +239849,7 @@ } }, { - "id": 15756, + "id": 14647, "properties": { "facing": "south", "half": "top", @@ -249613,7 +239858,7 @@ } }, { - "id": 15757, + "id": 14648, "properties": { "facing": "south", "half": "top", @@ -249622,7 +239867,7 @@ } }, { - "id": 15758, + "id": 14649, "properties": { "facing": "south", "half": "top", @@ -249631,7 +239876,7 @@ } }, { - "id": 15759, + "id": 14650, "properties": { "facing": "south", "half": "top", @@ -249640,7 +239885,7 @@ } }, { - "id": 15760, + "id": 14651, "properties": { "facing": "south", "half": "top", @@ -249649,7 +239894,7 @@ } }, { - "id": 15761, + "id": 14652, "properties": { "facing": "south", "half": "top", @@ -249658,7 +239903,7 @@ } }, { - "id": 15762, + "id": 14653, "properties": { "facing": "south", "half": "top", @@ -249667,7 +239912,7 @@ } }, { - "id": 15763, + "id": 14654, "properties": { "facing": "south", "half": "top", @@ -249676,7 +239921,7 @@ } }, { - "id": 15764, + "id": 14655, "properties": { "facing": "south", "half": "bottom", @@ -249685,7 +239930,7 @@ } }, { - "id": 15765, + "id": 14656, "properties": { "facing": "south", "half": "bottom", @@ -249694,7 +239939,7 @@ } }, { - "id": 15766, + "id": 14657, "properties": { "facing": "south", "half": "bottom", @@ -249703,7 +239948,7 @@ } }, { - "id": 15767, + "id": 14658, "properties": { "facing": "south", "half": "bottom", @@ -249712,7 +239957,7 @@ } }, { - "id": 15768, + "id": 14659, "properties": { "facing": "south", "half": "bottom", @@ -249721,7 +239966,7 @@ } }, { - "id": 15769, + "id": 14660, "properties": { "facing": "south", "half": "bottom", @@ -249730,7 +239975,7 @@ } }, { - "id": 15770, + "id": 14661, "properties": { "facing": "south", "half": "bottom", @@ -249739,7 +239984,7 @@ } }, { - "id": 15771, + "id": 14662, "properties": { "facing": "south", "half": "bottom", @@ -249748,7 +239993,7 @@ } }, { - "id": 15772, + "id": 14663, "properties": { "facing": "south", "half": "bottom", @@ -249757,7 +240002,7 @@ } }, { - "id": 15773, + "id": 14664, "properties": { "facing": "south", "half": "bottom", @@ -249766,7 +240011,7 @@ } }, { - "id": 15774, + "id": 14665, "properties": { "facing": "west", "half": "top", @@ -249775,7 +240020,7 @@ } }, { - "id": 15775, + "id": 14666, "properties": { "facing": "west", "half": "top", @@ -249784,7 +240029,7 @@ } }, { - "id": 15776, + "id": 14667, "properties": { "facing": "west", "half": "top", @@ -249793,7 +240038,7 @@ } }, { - "id": 15777, + "id": 14668, "properties": { "facing": "west", "half": "top", @@ -249802,7 +240047,7 @@ } }, { - "id": 15778, + "id": 14669, "properties": { "facing": "west", "half": "top", @@ -249811,7 +240056,7 @@ } }, { - "id": 15779, + "id": 14670, "properties": { "facing": "west", "half": "top", @@ -249820,7 +240065,7 @@ } }, { - "id": 15780, + "id": 14671, "properties": { "facing": "west", "half": "top", @@ -249829,7 +240074,7 @@ } }, { - "id": 15781, + "id": 14672, "properties": { "facing": "west", "half": "top", @@ -249838,7 +240083,7 @@ } }, { - "id": 15782, + "id": 14673, "properties": { "facing": "west", "half": "top", @@ -249847,7 +240092,7 @@ } }, { - "id": 15783, + "id": 14674, "properties": { "facing": "west", "half": "top", @@ -249856,7 +240101,7 @@ } }, { - "id": 15784, + "id": 14675, "properties": { "facing": "west", "half": "bottom", @@ -249865,7 +240110,7 @@ } }, { - "id": 15785, + "id": 14676, "properties": { "facing": "west", "half": "bottom", @@ -249874,7 +240119,7 @@ } }, { - "id": 15786, + "id": 14677, "properties": { "facing": "west", "half": "bottom", @@ -249883,7 +240128,7 @@ } }, { - "id": 15787, + "id": 14678, "properties": { "facing": "west", "half": "bottom", @@ -249892,7 +240137,7 @@ } }, { - "id": 15788, + "id": 14679, "properties": { "facing": "west", "half": "bottom", @@ -249901,7 +240146,7 @@ } }, { - "id": 15789, + "id": 14680, "properties": { "facing": "west", "half": "bottom", @@ -249910,7 +240155,7 @@ } }, { - "id": 15790, + "id": 14681, "properties": { "facing": "west", "half": "bottom", @@ -249919,7 +240164,7 @@ } }, { - "id": 15791, + "id": 14682, "properties": { "facing": "west", "half": "bottom", @@ -249928,7 +240173,7 @@ } }, { - "id": 15792, + "id": 14683, "properties": { "facing": "west", "half": "bottom", @@ -249937,7 +240182,7 @@ } }, { - "id": 15793, + "id": 14684, "properties": { "facing": "west", "half": "bottom", @@ -249946,7 +240191,7 @@ } }, { - "id": 15794, + "id": 14685, "properties": { "facing": "east", "half": "top", @@ -249955,7 +240200,7 @@ } }, { - "id": 15795, + "id": 14686, "properties": { "facing": "east", "half": "top", @@ -249964,7 +240209,7 @@ } }, { - "id": 15796, + "id": 14687, "properties": { "facing": "east", "half": "top", @@ -249973,7 +240218,7 @@ } }, { - "id": 15797, + "id": 14688, "properties": { "facing": "east", "half": "top", @@ -249982,7 +240227,7 @@ } }, { - "id": 15798, + "id": 14689, "properties": { "facing": "east", "half": "top", @@ -249991,7 +240236,7 @@ } }, { - "id": 15799, + "id": 14690, "properties": { "facing": "east", "half": "top", @@ -250000,7 +240245,7 @@ } }, { - "id": 15800, + "id": 14691, "properties": { "facing": "east", "half": "top", @@ -250009,7 +240254,7 @@ } }, { - "id": 15801, + "id": 14692, "properties": { "facing": "east", "half": "top", @@ -250018,7 +240263,7 @@ } }, { - "id": 15802, + "id": 14693, "properties": { "facing": "east", "half": "top", @@ -250027,7 +240272,7 @@ } }, { - "id": 15803, + "id": 14694, "properties": { "facing": "east", "half": "top", @@ -250036,7 +240281,7 @@ } }, { - "id": 15804, + "id": 14695, "properties": { "facing": "east", "half": "bottom", @@ -250045,7 +240290,7 @@ } }, { - "id": 15805, + "id": 14696, "properties": { "facing": "east", "half": "bottom", @@ -250054,7 +240299,7 @@ } }, { - "id": 15806, + "id": 14697, "properties": { "facing": "east", "half": "bottom", @@ -250063,7 +240308,7 @@ } }, { - "id": 15807, + "id": 14698, "properties": { "facing": "east", "half": "bottom", @@ -250072,7 +240317,7 @@ } }, { - "id": 15808, + "id": 14699, "properties": { "facing": "east", "half": "bottom", @@ -250081,7 +240326,7 @@ } }, { - "id": 15809, + "id": 14700, "properties": { "facing": "east", "half": "bottom", @@ -250090,7 +240335,7 @@ } }, { - "id": 15810, + "id": 14701, "properties": { "facing": "east", "half": "bottom", @@ -250099,7 +240344,7 @@ } }, { - "id": 15811, + "id": 14702, "properties": { "facing": "east", "half": "bottom", @@ -250108,7 +240353,7 @@ } }, { - "id": 15812, + "id": 14703, "properties": { "facing": "east", "half": "bottom", @@ -250117,7 +240362,7 @@ } }, { - "id": 15813, + "id": 14704, "properties": { "facing": "east", "half": "bottom", @@ -250135,7 +240380,7 @@ "states": [ { "default": true, - "id": 13281 + "id": 12204 } ] }, @@ -250157,21 +240402,21 @@ }, "states": [ { - "id": 16220, + "id": 15111, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 16221, + "id": 15112, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 16222, + "id": 15113, "properties": { "type": "bottom", "waterlogged": "true" @@ -250179,21 +240424,21 @@ }, { "default": true, - "id": 16223, + "id": 15114, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 16224, + "id": 15115, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 16225, + "id": 15116, "properties": { "type": "double", "waterlogged": "false" @@ -250234,7 +240479,7 @@ }, "states": [ { - "id": 15174, + "id": 14065, "properties": { "facing": "north", "half": "top", @@ -250243,7 +240488,7 @@ } }, { - "id": 15175, + "id": 14066, "properties": { "facing": "north", "half": "top", @@ -250252,7 +240497,7 @@ } }, { - "id": 15176, + "id": 14067, "properties": { "facing": "north", "half": "top", @@ -250261,7 +240506,7 @@ } }, { - "id": 15177, + "id": 14068, "properties": { "facing": "north", "half": "top", @@ -250270,7 +240515,7 @@ } }, { - "id": 15178, + "id": 14069, "properties": { "facing": "north", "half": "top", @@ -250279,7 +240524,7 @@ } }, { - "id": 15179, + "id": 14070, "properties": { "facing": "north", "half": "top", @@ -250288,7 +240533,7 @@ } }, { - "id": 15180, + "id": 14071, "properties": { "facing": "north", "half": "top", @@ -250297,7 +240542,7 @@ } }, { - "id": 15181, + "id": 14072, "properties": { "facing": "north", "half": "top", @@ -250306,7 +240551,7 @@ } }, { - "id": 15182, + "id": 14073, "properties": { "facing": "north", "half": "top", @@ -250315,7 +240560,7 @@ } }, { - "id": 15183, + "id": 14074, "properties": { "facing": "north", "half": "top", @@ -250324,7 +240569,7 @@ } }, { - "id": 15184, + "id": 14075, "properties": { "facing": "north", "half": "bottom", @@ -250334,7 +240579,7 @@ }, { "default": true, - "id": 15185, + "id": 14076, "properties": { "facing": "north", "half": "bottom", @@ -250343,7 +240588,7 @@ } }, { - "id": 15186, + "id": 14077, "properties": { "facing": "north", "half": "bottom", @@ -250352,7 +240597,7 @@ } }, { - "id": 15187, + "id": 14078, "properties": { "facing": "north", "half": "bottom", @@ -250361,7 +240606,7 @@ } }, { - "id": 15188, + "id": 14079, "properties": { "facing": "north", "half": "bottom", @@ -250370,7 +240615,7 @@ } }, { - "id": 15189, + "id": 14080, "properties": { "facing": "north", "half": "bottom", @@ -250379,7 +240624,7 @@ } }, { - "id": 15190, + "id": 14081, "properties": { "facing": "north", "half": "bottom", @@ -250388,7 +240633,7 @@ } }, { - "id": 15191, + "id": 14082, "properties": { "facing": "north", "half": "bottom", @@ -250397,7 +240642,7 @@ } }, { - "id": 15192, + "id": 14083, "properties": { "facing": "north", "half": "bottom", @@ -250406,7 +240651,7 @@ } }, { - "id": 15193, + "id": 14084, "properties": { "facing": "north", "half": "bottom", @@ -250415,7 +240660,7 @@ } }, { - "id": 15194, + "id": 14085, "properties": { "facing": "south", "half": "top", @@ -250424,7 +240669,7 @@ } }, { - "id": 15195, + "id": 14086, "properties": { "facing": "south", "half": "top", @@ -250433,7 +240678,7 @@ } }, { - "id": 15196, + "id": 14087, "properties": { "facing": "south", "half": "top", @@ -250442,7 +240687,7 @@ } }, { - "id": 15197, + "id": 14088, "properties": { "facing": "south", "half": "top", @@ -250451,7 +240696,7 @@ } }, { - "id": 15198, + "id": 14089, "properties": { "facing": "south", "half": "top", @@ -250460,7 +240705,7 @@ } }, { - "id": 15199, + "id": 14090, "properties": { "facing": "south", "half": "top", @@ -250469,7 +240714,7 @@ } }, { - "id": 15200, + "id": 14091, "properties": { "facing": "south", "half": "top", @@ -250478,7 +240723,7 @@ } }, { - "id": 15201, + "id": 14092, "properties": { "facing": "south", "half": "top", @@ -250487,7 +240732,7 @@ } }, { - "id": 15202, + "id": 14093, "properties": { "facing": "south", "half": "top", @@ -250496,7 +240741,7 @@ } }, { - "id": 15203, + "id": 14094, "properties": { "facing": "south", "half": "top", @@ -250505,7 +240750,7 @@ } }, { - "id": 15204, + "id": 14095, "properties": { "facing": "south", "half": "bottom", @@ -250514,7 +240759,7 @@ } }, { - "id": 15205, + "id": 14096, "properties": { "facing": "south", "half": "bottom", @@ -250523,7 +240768,7 @@ } }, { - "id": 15206, + "id": 14097, "properties": { "facing": "south", "half": "bottom", @@ -250532,7 +240777,7 @@ } }, { - "id": 15207, + "id": 14098, "properties": { "facing": "south", "half": "bottom", @@ -250541,7 +240786,7 @@ } }, { - "id": 15208, + "id": 14099, "properties": { "facing": "south", "half": "bottom", @@ -250550,7 +240795,7 @@ } }, { - "id": 15209, + "id": 14100, "properties": { "facing": "south", "half": "bottom", @@ -250559,7 +240804,7 @@ } }, { - "id": 15210, + "id": 14101, "properties": { "facing": "south", "half": "bottom", @@ -250568,7 +240813,7 @@ } }, { - "id": 15211, + "id": 14102, "properties": { "facing": "south", "half": "bottom", @@ -250577,7 +240822,7 @@ } }, { - "id": 15212, + "id": 14103, "properties": { "facing": "south", "half": "bottom", @@ -250586,7 +240831,7 @@ } }, { - "id": 15213, + "id": 14104, "properties": { "facing": "south", "half": "bottom", @@ -250595,7 +240840,7 @@ } }, { - "id": 15214, + "id": 14105, "properties": { "facing": "west", "half": "top", @@ -250604,7 +240849,7 @@ } }, { - "id": 15215, + "id": 14106, "properties": { "facing": "west", "half": "top", @@ -250613,7 +240858,7 @@ } }, { - "id": 15216, + "id": 14107, "properties": { "facing": "west", "half": "top", @@ -250622,7 +240867,7 @@ } }, { - "id": 15217, + "id": 14108, "properties": { "facing": "west", "half": "top", @@ -250631,7 +240876,7 @@ } }, { - "id": 15218, + "id": 14109, "properties": { "facing": "west", "half": "top", @@ -250640,7 +240885,7 @@ } }, { - "id": 15219, + "id": 14110, "properties": { "facing": "west", "half": "top", @@ -250649,7 +240894,7 @@ } }, { - "id": 15220, + "id": 14111, "properties": { "facing": "west", "half": "top", @@ -250658,7 +240903,7 @@ } }, { - "id": 15221, + "id": 14112, "properties": { "facing": "west", "half": "top", @@ -250667,7 +240912,7 @@ } }, { - "id": 15222, + "id": 14113, "properties": { "facing": "west", "half": "top", @@ -250676,7 +240921,7 @@ } }, { - "id": 15223, + "id": 14114, "properties": { "facing": "west", "half": "top", @@ -250685,7 +240930,7 @@ } }, { - "id": 15224, + "id": 14115, "properties": { "facing": "west", "half": "bottom", @@ -250694,7 +240939,7 @@ } }, { - "id": 15225, + "id": 14116, "properties": { "facing": "west", "half": "bottom", @@ -250703,7 +240948,7 @@ } }, { - "id": 15226, + "id": 14117, "properties": { "facing": "west", "half": "bottom", @@ -250712,7 +240957,7 @@ } }, { - "id": 15227, + "id": 14118, "properties": { "facing": "west", "half": "bottom", @@ -250721,7 +240966,7 @@ } }, { - "id": 15228, + "id": 14119, "properties": { "facing": "west", "half": "bottom", @@ -250730,7 +240975,7 @@ } }, { - "id": 15229, + "id": 14120, "properties": { "facing": "west", "half": "bottom", @@ -250739,7 +240984,7 @@ } }, { - "id": 15230, + "id": 14121, "properties": { "facing": "west", "half": "bottom", @@ -250748,7 +240993,7 @@ } }, { - "id": 15231, + "id": 14122, "properties": { "facing": "west", "half": "bottom", @@ -250757,7 +241002,7 @@ } }, { - "id": 15232, + "id": 14123, "properties": { "facing": "west", "half": "bottom", @@ -250766,7 +241011,7 @@ } }, { - "id": 15233, + "id": 14124, "properties": { "facing": "west", "half": "bottom", @@ -250775,7 +241020,7 @@ } }, { - "id": 15234, + "id": 14125, "properties": { "facing": "east", "half": "top", @@ -250784,7 +241029,7 @@ } }, { - "id": 15235, + "id": 14126, "properties": { "facing": "east", "half": "top", @@ -250793,7 +241038,7 @@ } }, { - "id": 15236, + "id": 14127, "properties": { "facing": "east", "half": "top", @@ -250802,7 +241047,7 @@ } }, { - "id": 15237, + "id": 14128, "properties": { "facing": "east", "half": "top", @@ -250811,7 +241056,7 @@ } }, { - "id": 15238, + "id": 14129, "properties": { "facing": "east", "half": "top", @@ -250820,7 +241065,7 @@ } }, { - "id": 15239, + "id": 14130, "properties": { "facing": "east", "half": "top", @@ -250829,7 +241074,7 @@ } }, { - "id": 15240, + "id": 14131, "properties": { "facing": "east", "half": "top", @@ -250838,7 +241083,7 @@ } }, { - "id": 15241, + "id": 14132, "properties": { "facing": "east", "half": "top", @@ -250847,7 +241092,7 @@ } }, { - "id": 15242, + "id": 14133, "properties": { "facing": "east", "half": "top", @@ -250856,7 +241101,7 @@ } }, { - "id": 15243, + "id": 14134, "properties": { "facing": "east", "half": "top", @@ -250865,7 +241110,7 @@ } }, { - "id": 15244, + "id": 14135, "properties": { "facing": "east", "half": "bottom", @@ -250874,7 +241119,7 @@ } }, { - "id": 15245, + "id": 14136, "properties": { "facing": "east", "half": "bottom", @@ -250883,7 +241128,7 @@ } }, { - "id": 15246, + "id": 14137, "properties": { "facing": "east", "half": "bottom", @@ -250892,7 +241137,7 @@ } }, { - "id": 15247, + "id": 14138, "properties": { "facing": "east", "half": "bottom", @@ -250901,7 +241146,7 @@ } }, { - "id": 15248, + "id": 14139, "properties": { "facing": "east", "half": "bottom", @@ -250910,7 +241155,7 @@ } }, { - "id": 15249, + "id": 14140, "properties": { "facing": "east", "half": "bottom", @@ -250919,7 +241164,7 @@ } }, { - "id": 15250, + "id": 14141, "properties": { "facing": "east", "half": "bottom", @@ -250928,7 +241173,7 @@ } }, { - "id": 15251, + "id": 14142, "properties": { "facing": "east", "half": "bottom", @@ -250937,7 +241182,7 @@ } }, { - "id": 15252, + "id": 14143, "properties": { "facing": "east", "half": "bottom", @@ -250946,7 +241191,7 @@ } }, { - "id": 15253, + "id": 14144, "properties": { "facing": "east", "half": "bottom", @@ -250964,7 +241209,7 @@ "states": [ { "default": true, - "id": 13279 + "id": 12202 } ] }, @@ -250986,21 +241231,21 @@ }, "states": [ { - "id": 16250, + "id": 15141, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 16251, + "id": 15142, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 16252, + "id": 15143, "properties": { "type": "bottom", "waterlogged": "true" @@ -251008,21 +241253,21 @@ }, { "default": true, - "id": 16253, + "id": 15144, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 16254, + "id": 15145, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 16255, + "id": 15146, "properties": { "type": "double", "waterlogged": "false" @@ -251063,7 +241308,7 @@ }, "states": [ { - "id": 15654, + "id": 14545, "properties": { "facing": "north", "half": "top", @@ -251072,7 +241317,7 @@ } }, { - "id": 15655, + "id": 14546, "properties": { "facing": "north", "half": "top", @@ -251081,7 +241326,7 @@ } }, { - "id": 15656, + "id": 14547, "properties": { "facing": "north", "half": "top", @@ -251090,7 +241335,7 @@ } }, { - "id": 15657, + "id": 14548, "properties": { "facing": "north", "half": "top", @@ -251099,7 +241344,7 @@ } }, { - "id": 15658, + "id": 14549, "properties": { "facing": "north", "half": "top", @@ -251108,7 +241353,7 @@ } }, { - "id": 15659, + "id": 14550, "properties": { "facing": "north", "half": "top", @@ -251117,7 +241362,7 @@ } }, { - "id": 15660, + "id": 14551, "properties": { "facing": "north", "half": "top", @@ -251126,7 +241371,7 @@ } }, { - "id": 15661, + "id": 14552, "properties": { "facing": "north", "half": "top", @@ -251135,7 +241380,7 @@ } }, { - "id": 15662, + "id": 14553, "properties": { "facing": "north", "half": "top", @@ -251144,7 +241389,7 @@ } }, { - "id": 15663, + "id": 14554, "properties": { "facing": "north", "half": "top", @@ -251153,7 +241398,7 @@ } }, { - "id": 15664, + "id": 14555, "properties": { "facing": "north", "half": "bottom", @@ -251163,7 +241408,7 @@ }, { "default": true, - "id": 15665, + "id": 14556, "properties": { "facing": "north", "half": "bottom", @@ -251172,7 +241417,7 @@ } }, { - "id": 15666, + "id": 14557, "properties": { "facing": "north", "half": "bottom", @@ -251181,7 +241426,7 @@ } }, { - "id": 15667, + "id": 14558, "properties": { "facing": "north", "half": "bottom", @@ -251190,7 +241435,7 @@ } }, { - "id": 15668, + "id": 14559, "properties": { "facing": "north", "half": "bottom", @@ -251199,7 +241444,7 @@ } }, { - "id": 15669, + "id": 14560, "properties": { "facing": "north", "half": "bottom", @@ -251208,7 +241453,7 @@ } }, { - "id": 15670, + "id": 14561, "properties": { "facing": "north", "half": "bottom", @@ -251217,7 +241462,7 @@ } }, { - "id": 15671, + "id": 14562, "properties": { "facing": "north", "half": "bottom", @@ -251226,7 +241471,7 @@ } }, { - "id": 15672, + "id": 14563, "properties": { "facing": "north", "half": "bottom", @@ -251235,7 +241480,7 @@ } }, { - "id": 15673, + "id": 14564, "properties": { "facing": "north", "half": "bottom", @@ -251244,7 +241489,7 @@ } }, { - "id": 15674, + "id": 14565, "properties": { "facing": "south", "half": "top", @@ -251253,7 +241498,7 @@ } }, { - "id": 15675, + "id": 14566, "properties": { "facing": "south", "half": "top", @@ -251262,7 +241507,7 @@ } }, { - "id": 15676, + "id": 14567, "properties": { "facing": "south", "half": "top", @@ -251271,7 +241516,7 @@ } }, { - "id": 15677, + "id": 14568, "properties": { "facing": "south", "half": "top", @@ -251280,7 +241525,7 @@ } }, { - "id": 15678, + "id": 14569, "properties": { "facing": "south", "half": "top", @@ -251289,7 +241534,7 @@ } }, { - "id": 15679, + "id": 14570, "properties": { "facing": "south", "half": "top", @@ -251298,7 +241543,7 @@ } }, { - "id": 15680, + "id": 14571, "properties": { "facing": "south", "half": "top", @@ -251307,7 +241552,7 @@ } }, { - "id": 15681, + "id": 14572, "properties": { "facing": "south", "half": "top", @@ -251316,7 +241561,7 @@ } }, { - "id": 15682, + "id": 14573, "properties": { "facing": "south", "half": "top", @@ -251325,7 +241570,7 @@ } }, { - "id": 15683, + "id": 14574, "properties": { "facing": "south", "half": "top", @@ -251334,7 +241579,7 @@ } }, { - "id": 15684, + "id": 14575, "properties": { "facing": "south", "half": "bottom", @@ -251343,7 +241588,7 @@ } }, { - "id": 15685, + "id": 14576, "properties": { "facing": "south", "half": "bottom", @@ -251352,7 +241597,7 @@ } }, { - "id": 15686, + "id": 14577, "properties": { "facing": "south", "half": "bottom", @@ -251361,7 +241606,7 @@ } }, { - "id": 15687, + "id": 14578, "properties": { "facing": "south", "half": "bottom", @@ -251370,7 +241615,7 @@ } }, { - "id": 15688, + "id": 14579, "properties": { "facing": "south", "half": "bottom", @@ -251379,7 +241624,7 @@ } }, { - "id": 15689, + "id": 14580, "properties": { "facing": "south", "half": "bottom", @@ -251388,7 +241633,7 @@ } }, { - "id": 15690, + "id": 14581, "properties": { "facing": "south", "half": "bottom", @@ -251397,7 +241642,7 @@ } }, { - "id": 15691, + "id": 14582, "properties": { "facing": "south", "half": "bottom", @@ -251406,7 +241651,7 @@ } }, { - "id": 15692, + "id": 14583, "properties": { "facing": "south", "half": "bottom", @@ -251415,7 +241660,7 @@ } }, { - "id": 15693, + "id": 14584, "properties": { "facing": "south", "half": "bottom", @@ -251424,7 +241669,7 @@ } }, { - "id": 15694, + "id": 14585, "properties": { "facing": "west", "half": "top", @@ -251433,7 +241678,7 @@ } }, { - "id": 15695, + "id": 14586, "properties": { "facing": "west", "half": "top", @@ -251442,7 +241687,7 @@ } }, { - "id": 15696, + "id": 14587, "properties": { "facing": "west", "half": "top", @@ -251451,7 +241696,7 @@ } }, { - "id": 15697, + "id": 14588, "properties": { "facing": "west", "half": "top", @@ -251460,7 +241705,7 @@ } }, { - "id": 15698, + "id": 14589, "properties": { "facing": "west", "half": "top", @@ -251469,7 +241714,7 @@ } }, { - "id": 15699, + "id": 14590, "properties": { "facing": "west", "half": "top", @@ -251478,7 +241723,7 @@ } }, { - "id": 15700, + "id": 14591, "properties": { "facing": "west", "half": "top", @@ -251487,7 +241732,7 @@ } }, { - "id": 15701, + "id": 14592, "properties": { "facing": "west", "half": "top", @@ -251496,7 +241741,7 @@ } }, { - "id": 15702, + "id": 14593, "properties": { "facing": "west", "half": "top", @@ -251505,7 +241750,7 @@ } }, { - "id": 15703, + "id": 14594, "properties": { "facing": "west", "half": "top", @@ -251514,7 +241759,7 @@ } }, { - "id": 15704, + "id": 14595, "properties": { "facing": "west", "half": "bottom", @@ -251523,7 +241768,7 @@ } }, { - "id": 15705, + "id": 14596, "properties": { "facing": "west", "half": "bottom", @@ -251532,7 +241777,7 @@ } }, { - "id": 15706, + "id": 14597, "properties": { "facing": "west", "half": "bottom", @@ -251541,7 +241786,7 @@ } }, { - "id": 15707, + "id": 14598, "properties": { "facing": "west", "half": "bottom", @@ -251550,7 +241795,7 @@ } }, { - "id": 15708, + "id": 14599, "properties": { "facing": "west", "half": "bottom", @@ -251559,7 +241804,7 @@ } }, { - "id": 15709, + "id": 14600, "properties": { "facing": "west", "half": "bottom", @@ -251568,7 +241813,7 @@ } }, { - "id": 15710, + "id": 14601, "properties": { "facing": "west", "half": "bottom", @@ -251577,7 +241822,7 @@ } }, { - "id": 15711, + "id": 14602, "properties": { "facing": "west", "half": "bottom", @@ -251586,7 +241831,7 @@ } }, { - "id": 15712, + "id": 14603, "properties": { "facing": "west", "half": "bottom", @@ -251595,7 +241840,7 @@ } }, { - "id": 15713, + "id": 14604, "properties": { "facing": "west", "half": "bottom", @@ -251604,7 +241849,7 @@ } }, { - "id": 15714, + "id": 14605, "properties": { "facing": "east", "half": "top", @@ -251613,7 +241858,7 @@ } }, { - "id": 15715, + "id": 14606, "properties": { "facing": "east", "half": "top", @@ -251622,7 +241867,7 @@ } }, { - "id": 15716, + "id": 14607, "properties": { "facing": "east", "half": "top", @@ -251631,7 +241876,7 @@ } }, { - "id": 15717, + "id": 14608, "properties": { "facing": "east", "half": "top", @@ -251640,7 +241885,7 @@ } }, { - "id": 15718, + "id": 14609, "properties": { "facing": "east", "half": "top", @@ -251649,7 +241894,7 @@ } }, { - "id": 15719, + "id": 14610, "properties": { "facing": "east", "half": "top", @@ -251658,7 +241903,7 @@ } }, { - "id": 15720, + "id": 14611, "properties": { "facing": "east", "half": "top", @@ -251667,7 +241912,7 @@ } }, { - "id": 15721, + "id": 14612, "properties": { "facing": "east", "half": "top", @@ -251676,7 +241921,7 @@ } }, { - "id": 15722, + "id": 14613, "properties": { "facing": "east", "half": "top", @@ -251685,7 +241930,7 @@ } }, { - "id": 15723, + "id": 14614, "properties": { "facing": "east", "half": "top", @@ -251694,7 +241939,7 @@ } }, { - "id": 15724, + "id": 14615, "properties": { "facing": "east", "half": "bottom", @@ -251703,7 +241948,7 @@ } }, { - "id": 15725, + "id": 14616, "properties": { "facing": "east", "half": "bottom", @@ -251712,7 +241957,7 @@ } }, { - "id": 15726, + "id": 14617, "properties": { "facing": "east", "half": "bottom", @@ -251721,7 +241966,7 @@ } }, { - "id": 15727, + "id": 14618, "properties": { "facing": "east", "half": "bottom", @@ -251730,7 +241975,7 @@ } }, { - "id": 15728, + "id": 14619, "properties": { "facing": "east", "half": "bottom", @@ -251739,7 +241984,7 @@ } }, { - "id": 15729, + "id": 14620, "properties": { "facing": "east", "half": "bottom", @@ -251748,7 +241993,7 @@ } }, { - "id": 15730, + "id": 14621, "properties": { "facing": "east", "half": "bottom", @@ -251757,7 +242002,7 @@ } }, { - "id": 15731, + "id": 14622, "properties": { "facing": "east", "half": "bottom", @@ -251766,7 +242011,7 @@ } }, { - "id": 15732, + "id": 14623, "properties": { "facing": "east", "half": "bottom", @@ -251775,7 +242020,7 @@ } }, { - "id": 15733, + "id": 14624, "properties": { "facing": "east", "half": "bottom", @@ -251793,7 +242038,7 @@ "states": [ { "default": true, - "id": 13278 + "id": 12201 } ] }, @@ -251815,21 +242060,21 @@ }, "states": [ { - "id": 13200, + "id": 12123, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 13201, + "id": 12124, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 13202, + "id": 12125, "properties": { "type": "bottom", "waterlogged": "true" @@ -251837,21 +242082,21 @@ }, { "default": true, - "id": 13203, + "id": 12126, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 13204, + "id": 12127, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 13205, + "id": 12128, "properties": { "type": "double", "waterlogged": "false" @@ -251874,19 +242119,19 @@ "states": [ { "default": true, - "id": 14900, + "id": 13823, "properties": { "hatch": "0" } }, { - "id": 14901, + "id": 13824, "properties": { "hatch": "1" } }, { - "id": 14902, + "id": 13825, "properties": { "hatch": "2" } @@ -251913,49 +242158,49 @@ "states": [ { "default": true, - "id": 6718, + "id": 5950, "properties": { "layers": "1" } }, { - "id": 6719, + "id": 5951, "properties": { "layers": "2" } }, { - "id": 6720, + "id": 5952, "properties": { "layers": "3" } }, { - "id": 6721, + "id": 5953, "properties": { "layers": "4" } }, { - "id": 6722, + "id": 5954, "properties": { "layers": "5" } }, { - "id": 6723, + "id": 5955, "properties": { "layers": "6" } }, { - "id": 6724, + "id": 5956, "properties": { "layers": "7" } }, { - "id": 6725, + "id": 5957, "properties": { "layers": "8" } @@ -251970,7 +242215,7 @@ "states": [ { "default": true, - "id": 6727 + "id": 5959 } ] }, @@ -252003,7 +242248,7 @@ }, "states": [ { - "id": 20707, + "id": 19566, "properties": { "facing": "north", "lit": "true", @@ -252012,7 +242257,7 @@ } }, { - "id": 20708, + "id": 19567, "properties": { "facing": "north", "lit": "true", @@ -252021,7 +242266,7 @@ } }, { - "id": 20709, + "id": 19568, "properties": { "facing": "north", "lit": "true", @@ -252031,7 +242276,7 @@ }, { "default": true, - "id": 20710, + "id": 19569, "properties": { "facing": "north", "lit": "true", @@ -252040,7 +242285,7 @@ } }, { - "id": 20711, + "id": 19570, "properties": { "facing": "north", "lit": "false", @@ -252049,7 +242294,7 @@ } }, { - "id": 20712, + "id": 19571, "properties": { "facing": "north", "lit": "false", @@ -252058,7 +242303,7 @@ } }, { - "id": 20713, + "id": 19572, "properties": { "facing": "north", "lit": "false", @@ -252067,7 +242312,7 @@ } }, { - "id": 20714, + "id": 19573, "properties": { "facing": "north", "lit": "false", @@ -252076,7 +242321,7 @@ } }, { - "id": 20715, + "id": 19574, "properties": { "facing": "south", "lit": "true", @@ -252085,7 +242330,7 @@ } }, { - "id": 20716, + "id": 19575, "properties": { "facing": "south", "lit": "true", @@ -252094,7 +242339,7 @@ } }, { - "id": 20717, + "id": 19576, "properties": { "facing": "south", "lit": "true", @@ -252103,7 +242348,7 @@ } }, { - "id": 20718, + "id": 19577, "properties": { "facing": "south", "lit": "true", @@ -252112,7 +242357,7 @@ } }, { - "id": 20719, + "id": 19578, "properties": { "facing": "south", "lit": "false", @@ -252121,7 +242366,7 @@ } }, { - "id": 20720, + "id": 19579, "properties": { "facing": "south", "lit": "false", @@ -252130,7 +242375,7 @@ } }, { - "id": 20721, + "id": 19580, "properties": { "facing": "south", "lit": "false", @@ -252139,7 +242384,7 @@ } }, { - "id": 20722, + "id": 19581, "properties": { "facing": "south", "lit": "false", @@ -252148,7 +242393,7 @@ } }, { - "id": 20723, + "id": 19582, "properties": { "facing": "west", "lit": "true", @@ -252157,7 +242402,7 @@ } }, { - "id": 20724, + "id": 19583, "properties": { "facing": "west", "lit": "true", @@ -252166,7 +242411,7 @@ } }, { - "id": 20725, + "id": 19584, "properties": { "facing": "west", "lit": "true", @@ -252175,7 +242420,7 @@ } }, { - "id": 20726, + "id": 19585, "properties": { "facing": "west", "lit": "true", @@ -252184,7 +242429,7 @@ } }, { - "id": 20727, + "id": 19586, "properties": { "facing": "west", "lit": "false", @@ -252193,7 +242438,7 @@ } }, { - "id": 20728, + "id": 19587, "properties": { "facing": "west", "lit": "false", @@ -252202,7 +242447,7 @@ } }, { - "id": 20729, + "id": 19588, "properties": { "facing": "west", "lit": "false", @@ -252211,7 +242456,7 @@ } }, { - "id": 20730, + "id": 19589, "properties": { "facing": "west", "lit": "false", @@ -252220,7 +242465,7 @@ } }, { - "id": 20731, + "id": 19590, "properties": { "facing": "east", "lit": "true", @@ -252229,7 +242474,7 @@ } }, { - "id": 20732, + "id": 19591, "properties": { "facing": "east", "lit": "true", @@ -252238,7 +242483,7 @@ } }, { - "id": 20733, + "id": 19592, "properties": { "facing": "east", "lit": "true", @@ -252247,7 +242492,7 @@ } }, { - "id": 20734, + "id": 19593, "properties": { "facing": "east", "lit": "true", @@ -252256,7 +242501,7 @@ } }, { - "id": 20735, + "id": 19594, "properties": { "facing": "east", "lit": "false", @@ -252265,7 +242510,7 @@ } }, { - "id": 20736, + "id": 19595, "properties": { "facing": "east", "lit": "false", @@ -252274,7 +242519,7 @@ } }, { - "id": 20737, + "id": 19596, "properties": { "facing": "east", "lit": "false", @@ -252283,7 +242528,7 @@ } }, { - "id": 20738, + "id": 19597, "properties": { "facing": "east", "lit": "false", @@ -252301,7 +242546,7 @@ "states": [ { "default": true, - "id": 3686 + "id": 2918 } ] }, @@ -252322,21 +242567,21 @@ }, "states": [ { - "id": 20639, + "id": 19530, "properties": { "hanging": "true", "waterlogged": "true" } }, { - "id": 20640, + "id": 19531, "properties": { "hanging": "true", "waterlogged": "false" } }, { - "id": 20641, + "id": 19532, "properties": { "hanging": "false", "waterlogged": "true" @@ -252344,7 +242589,7 @@ }, { "default": true, - "id": 20642, + "id": 19533, "properties": { "hanging": "false", "waterlogged": "false" @@ -252360,7 +242605,7 @@ "states": [ { "default": true, - "id": 6797 + "id": 6029 } ] }, @@ -252372,7 +242617,7 @@ "states": [ { "default": true, - "id": 6798 + "id": 6030 } ] }, @@ -252385,7 +242630,7 @@ "states": [ { "default": true, - "id": 6805 + "id": 6037 } ] }, @@ -252406,25 +242651,25 @@ "states": [ { "default": true, - "id": 6806, + "id": 6038, "properties": { "facing": "north" } }, { - "id": 6807, + "id": 6039, "properties": { "facing": "south" } }, { - "id": 6808, + "id": 6040, "properties": { "facing": "west" } }, { - "id": 6809, + "id": 6041, "properties": { "facing": "east" } @@ -252439,7 +242684,7 @@ "states": [ { "default": true, - "id": 3687 + "id": 2919 } ] }, @@ -252463,7 +242708,7 @@ "states": [ { "default": true, - "id": 27608 + "id": 25851 } ] }, @@ -252493,7 +242738,7 @@ }, "states": [ { - "id": 10497, + "id": 9420, "properties": { "face": "floor", "facing": "north", @@ -252501,7 +242746,7 @@ } }, { - "id": 10498, + "id": 9421, "properties": { "face": "floor", "facing": "north", @@ -252509,7 +242754,7 @@ } }, { - "id": 10499, + "id": 9422, "properties": { "face": "floor", "facing": "south", @@ -252517,7 +242762,7 @@ } }, { - "id": 10500, + "id": 9423, "properties": { "face": "floor", "facing": "south", @@ -252525,7 +242770,7 @@ } }, { - "id": 10501, + "id": 9424, "properties": { "face": "floor", "facing": "west", @@ -252533,7 +242778,7 @@ } }, { - "id": 10502, + "id": 9425, "properties": { "face": "floor", "facing": "west", @@ -252541,7 +242786,7 @@ } }, { - "id": 10503, + "id": 9426, "properties": { "face": "floor", "facing": "east", @@ -252549,7 +242794,7 @@ } }, { - "id": 10504, + "id": 9427, "properties": { "face": "floor", "facing": "east", @@ -252557,7 +242802,7 @@ } }, { - "id": 10505, + "id": 9428, "properties": { "face": "wall", "facing": "north", @@ -252566,7 +242811,7 @@ }, { "default": true, - "id": 10506, + "id": 9429, "properties": { "face": "wall", "facing": "north", @@ -252574,7 +242819,7 @@ } }, { - "id": 10507, + "id": 9430, "properties": { "face": "wall", "facing": "south", @@ -252582,7 +242827,7 @@ } }, { - "id": 10508, + "id": 9431, "properties": { "face": "wall", "facing": "south", @@ -252590,7 +242835,7 @@ } }, { - "id": 10509, + "id": 9432, "properties": { "face": "wall", "facing": "west", @@ -252598,7 +242843,7 @@ } }, { - "id": 10510, + "id": 9433, "properties": { "face": "wall", "facing": "west", @@ -252606,7 +242851,7 @@ } }, { - "id": 10511, + "id": 9434, "properties": { "face": "wall", "facing": "east", @@ -252614,7 +242859,7 @@ } }, { - "id": 10512, + "id": 9435, "properties": { "face": "wall", "facing": "east", @@ -252622,7 +242867,7 @@ } }, { - "id": 10513, + "id": 9436, "properties": { "face": "ceiling", "facing": "north", @@ -252630,7 +242875,7 @@ } }, { - "id": 10514, + "id": 9437, "properties": { "face": "ceiling", "facing": "north", @@ -252638,7 +242883,7 @@ } }, { - "id": 10515, + "id": 9438, "properties": { "face": "ceiling", "facing": "south", @@ -252646,7 +242891,7 @@ } }, { - "id": 10516, + "id": 9439, "properties": { "face": "ceiling", "facing": "south", @@ -252654,7 +242899,7 @@ } }, { - "id": 10517, + "id": 9440, "properties": { "face": "ceiling", "facing": "west", @@ -252662,7 +242907,7 @@ } }, { - "id": 10518, + "id": 9441, "properties": { "face": "ceiling", "facing": "west", @@ -252670,7 +242915,7 @@ } }, { - "id": 10519, + "id": 9442, "properties": { "face": "ceiling", "facing": "east", @@ -252678,7 +242923,7 @@ } }, { - "id": 10520, + "id": 9443, "properties": { "face": "ceiling", "facing": "east", @@ -252719,7 +242964,7 @@ }, "states": [ { - "id": 13858, + "id": 12781, "properties": { "facing": "north", "half": "upper", @@ -252729,7 +242974,7 @@ } }, { - "id": 13859, + "id": 12782, "properties": { "facing": "north", "half": "upper", @@ -252739,7 +242984,7 @@ } }, { - "id": 13860, + "id": 12783, "properties": { "facing": "north", "half": "upper", @@ -252749,7 +242994,7 @@ } }, { - "id": 13861, + "id": 12784, "properties": { "facing": "north", "half": "upper", @@ -252759,7 +243004,7 @@ } }, { - "id": 13862, + "id": 12785, "properties": { "facing": "north", "half": "upper", @@ -252769,7 +243014,7 @@ } }, { - "id": 13863, + "id": 12786, "properties": { "facing": "north", "half": "upper", @@ -252779,7 +243024,7 @@ } }, { - "id": 13864, + "id": 12787, "properties": { "facing": "north", "half": "upper", @@ -252789,7 +243034,7 @@ } }, { - "id": 13865, + "id": 12788, "properties": { "facing": "north", "half": "upper", @@ -252799,7 +243044,7 @@ } }, { - "id": 13866, + "id": 12789, "properties": { "facing": "north", "half": "lower", @@ -252809,7 +243054,7 @@ } }, { - "id": 13867, + "id": 12790, "properties": { "facing": "north", "half": "lower", @@ -252819,7 +243064,7 @@ } }, { - "id": 13868, + "id": 12791, "properties": { "facing": "north", "half": "lower", @@ -252830,7 +243075,7 @@ }, { "default": true, - "id": 13869, + "id": 12792, "properties": { "facing": "north", "half": "lower", @@ -252840,7 +243085,7 @@ } }, { - "id": 13870, + "id": 12793, "properties": { "facing": "north", "half": "lower", @@ -252850,7 +243095,7 @@ } }, { - "id": 13871, + "id": 12794, "properties": { "facing": "north", "half": "lower", @@ -252860,7 +243105,7 @@ } }, { - "id": 13872, + "id": 12795, "properties": { "facing": "north", "half": "lower", @@ -252870,7 +243115,7 @@ } }, { - "id": 13873, + "id": 12796, "properties": { "facing": "north", "half": "lower", @@ -252880,7 +243125,7 @@ } }, { - "id": 13874, + "id": 12797, "properties": { "facing": "south", "half": "upper", @@ -252890,7 +243135,7 @@ } }, { - "id": 13875, + "id": 12798, "properties": { "facing": "south", "half": "upper", @@ -252900,7 +243145,7 @@ } }, { - "id": 13876, + "id": 12799, "properties": { "facing": "south", "half": "upper", @@ -252910,7 +243155,7 @@ } }, { - "id": 13877, + "id": 12800, "properties": { "facing": "south", "half": "upper", @@ -252920,7 +243165,7 @@ } }, { - "id": 13878, + "id": 12801, "properties": { "facing": "south", "half": "upper", @@ -252930,7 +243175,7 @@ } }, { - "id": 13879, + "id": 12802, "properties": { "facing": "south", "half": "upper", @@ -252940,7 +243185,7 @@ } }, { - "id": 13880, + "id": 12803, "properties": { "facing": "south", "half": "upper", @@ -252950,7 +243195,7 @@ } }, { - "id": 13881, + "id": 12804, "properties": { "facing": "south", "half": "upper", @@ -252960,7 +243205,7 @@ } }, { - "id": 13882, + "id": 12805, "properties": { "facing": "south", "half": "lower", @@ -252970,7 +243215,7 @@ } }, { - "id": 13883, + "id": 12806, "properties": { "facing": "south", "half": "lower", @@ -252980,7 +243225,7 @@ } }, { - "id": 13884, + "id": 12807, "properties": { "facing": "south", "half": "lower", @@ -252990,7 +243235,7 @@ } }, { - "id": 13885, + "id": 12808, "properties": { "facing": "south", "half": "lower", @@ -253000,7 +243245,7 @@ } }, { - "id": 13886, + "id": 12809, "properties": { "facing": "south", "half": "lower", @@ -253010,7 +243255,7 @@ } }, { - "id": 13887, + "id": 12810, "properties": { "facing": "south", "half": "lower", @@ -253020,7 +243265,7 @@ } }, { - "id": 13888, + "id": 12811, "properties": { "facing": "south", "half": "lower", @@ -253030,7 +243275,7 @@ } }, { - "id": 13889, + "id": 12812, "properties": { "facing": "south", "half": "lower", @@ -253040,7 +243285,7 @@ } }, { - "id": 13890, + "id": 12813, "properties": { "facing": "west", "half": "upper", @@ -253050,7 +243295,7 @@ } }, { - "id": 13891, + "id": 12814, "properties": { "facing": "west", "half": "upper", @@ -253060,7 +243305,7 @@ } }, { - "id": 13892, + "id": 12815, "properties": { "facing": "west", "half": "upper", @@ -253070,7 +243315,7 @@ } }, { - "id": 13893, + "id": 12816, "properties": { "facing": "west", "half": "upper", @@ -253080,7 +243325,7 @@ } }, { - "id": 13894, + "id": 12817, "properties": { "facing": "west", "half": "upper", @@ -253090,7 +243335,7 @@ } }, { - "id": 13895, + "id": 12818, "properties": { "facing": "west", "half": "upper", @@ -253100,7 +243345,7 @@ } }, { - "id": 13896, + "id": 12819, "properties": { "facing": "west", "half": "upper", @@ -253110,7 +243355,7 @@ } }, { - "id": 13897, + "id": 12820, "properties": { "facing": "west", "half": "upper", @@ -253120,7 +243365,7 @@ } }, { - "id": 13898, + "id": 12821, "properties": { "facing": "west", "half": "lower", @@ -253130,7 +243375,7 @@ } }, { - "id": 13899, + "id": 12822, "properties": { "facing": "west", "half": "lower", @@ -253140,7 +243385,7 @@ } }, { - "id": 13900, + "id": 12823, "properties": { "facing": "west", "half": "lower", @@ -253150,7 +243395,7 @@ } }, { - "id": 13901, + "id": 12824, "properties": { "facing": "west", "half": "lower", @@ -253160,7 +243405,7 @@ } }, { - "id": 13902, + "id": 12825, "properties": { "facing": "west", "half": "lower", @@ -253170,7 +243415,7 @@ } }, { - "id": 13903, + "id": 12826, "properties": { "facing": "west", "half": "lower", @@ -253180,7 +243425,7 @@ } }, { - "id": 13904, + "id": 12827, "properties": { "facing": "west", "half": "lower", @@ -253190,7 +243435,7 @@ } }, { - "id": 13905, + "id": 12828, "properties": { "facing": "west", "half": "lower", @@ -253200,7 +243445,7 @@ } }, { - "id": 13906, + "id": 12829, "properties": { "facing": "east", "half": "upper", @@ -253210,7 +243455,7 @@ } }, { - "id": 13907, + "id": 12830, "properties": { "facing": "east", "half": "upper", @@ -253220,7 +243465,7 @@ } }, { - "id": 13908, + "id": 12831, "properties": { "facing": "east", "half": "upper", @@ -253230,7 +243475,7 @@ } }, { - "id": 13909, + "id": 12832, "properties": { "facing": "east", "half": "upper", @@ -253240,7 +243485,7 @@ } }, { - "id": 13910, + "id": 12833, "properties": { "facing": "east", "half": "upper", @@ -253250,7 +243495,7 @@ } }, { - "id": 13911, + "id": 12834, "properties": { "facing": "east", "half": "upper", @@ -253260,7 +243505,7 @@ } }, { - "id": 13912, + "id": 12835, "properties": { "facing": "east", "half": "upper", @@ -253270,7 +243515,7 @@ } }, { - "id": 13913, + "id": 12836, "properties": { "facing": "east", "half": "upper", @@ -253280,7 +243525,7 @@ } }, { - "id": 13914, + "id": 12837, "properties": { "facing": "east", "half": "lower", @@ -253290,7 +243535,7 @@ } }, { - "id": 13915, + "id": 12838, "properties": { "facing": "east", "half": "lower", @@ -253300,7 +243545,7 @@ } }, { - "id": 13916, + "id": 12839, "properties": { "facing": "east", "half": "lower", @@ -253310,7 +243555,7 @@ } }, { - "id": 13917, + "id": 12840, "properties": { "facing": "east", "half": "lower", @@ -253320,7 +243565,7 @@ } }, { - "id": 13918, + "id": 12841, "properties": { "facing": "east", "half": "lower", @@ -253330,7 +243575,7 @@ } }, { - "id": 13919, + "id": 12842, "properties": { "facing": "east", "half": "lower", @@ -253340,7 +243585,7 @@ } }, { - "id": 13920, + "id": 12843, "properties": { "facing": "east", "half": "lower", @@ -253350,7 +243595,7 @@ } }, { - "id": 13921, + "id": 12844, "properties": { "facing": "east", "half": "lower", @@ -253390,7 +243635,7 @@ }, "states": [ { - "id": 13570, + "id": 12493, "properties": { "east": "true", "north": "true", @@ -253400,7 +243645,7 @@ } }, { - "id": 13571, + "id": 12494, "properties": { "east": "true", "north": "true", @@ -253410,7 +243655,7 @@ } }, { - "id": 13572, + "id": 12495, "properties": { "east": "true", "north": "true", @@ -253420,7 +243665,7 @@ } }, { - "id": 13573, + "id": 12496, "properties": { "east": "true", "north": "true", @@ -253430,7 +243675,7 @@ } }, { - "id": 13574, + "id": 12497, "properties": { "east": "true", "north": "true", @@ -253440,7 +243685,7 @@ } }, { - "id": 13575, + "id": 12498, "properties": { "east": "true", "north": "true", @@ -253450,7 +243695,7 @@ } }, { - "id": 13576, + "id": 12499, "properties": { "east": "true", "north": "true", @@ -253460,7 +243705,7 @@ } }, { - "id": 13577, + "id": 12500, "properties": { "east": "true", "north": "true", @@ -253470,7 +243715,7 @@ } }, { - "id": 13578, + "id": 12501, "properties": { "east": "true", "north": "false", @@ -253480,7 +243725,7 @@ } }, { - "id": 13579, + "id": 12502, "properties": { "east": "true", "north": "false", @@ -253490,7 +243735,7 @@ } }, { - "id": 13580, + "id": 12503, "properties": { "east": "true", "north": "false", @@ -253500,7 +243745,7 @@ } }, { - "id": 13581, + "id": 12504, "properties": { "east": "true", "north": "false", @@ -253510,7 +243755,7 @@ } }, { - "id": 13582, + "id": 12505, "properties": { "east": "true", "north": "false", @@ -253520,7 +243765,7 @@ } }, { - "id": 13583, + "id": 12506, "properties": { "east": "true", "north": "false", @@ -253530,7 +243775,7 @@ } }, { - "id": 13584, + "id": 12507, "properties": { "east": "true", "north": "false", @@ -253540,7 +243785,7 @@ } }, { - "id": 13585, + "id": 12508, "properties": { "east": "true", "north": "false", @@ -253550,7 +243795,7 @@ } }, { - "id": 13586, + "id": 12509, "properties": { "east": "false", "north": "true", @@ -253560,7 +243805,7 @@ } }, { - "id": 13587, + "id": 12510, "properties": { "east": "false", "north": "true", @@ -253570,7 +243815,7 @@ } }, { - "id": 13588, + "id": 12511, "properties": { "east": "false", "north": "true", @@ -253580,7 +243825,7 @@ } }, { - "id": 13589, + "id": 12512, "properties": { "east": "false", "north": "true", @@ -253590,7 +243835,7 @@ } }, { - "id": 13590, + "id": 12513, "properties": { "east": "false", "north": "true", @@ -253600,7 +243845,7 @@ } }, { - "id": 13591, + "id": 12514, "properties": { "east": "false", "north": "true", @@ -253610,7 +243855,7 @@ } }, { - "id": 13592, + "id": 12515, "properties": { "east": "false", "north": "true", @@ -253620,7 +243865,7 @@ } }, { - "id": 13593, + "id": 12516, "properties": { "east": "false", "north": "true", @@ -253630,7 +243875,7 @@ } }, { - "id": 13594, + "id": 12517, "properties": { "east": "false", "north": "false", @@ -253640,7 +243885,7 @@ } }, { - "id": 13595, + "id": 12518, "properties": { "east": "false", "north": "false", @@ -253650,7 +243895,7 @@ } }, { - "id": 13596, + "id": 12519, "properties": { "east": "false", "north": "false", @@ -253660,7 +243905,7 @@ } }, { - "id": 13597, + "id": 12520, "properties": { "east": "false", "north": "false", @@ -253670,7 +243915,7 @@ } }, { - "id": 13598, + "id": 12521, "properties": { "east": "false", "north": "false", @@ -253680,7 +243925,7 @@ } }, { - "id": 13599, + "id": 12522, "properties": { "east": "false", "north": "false", @@ -253690,7 +243935,7 @@ } }, { - "id": 13600, + "id": 12523, "properties": { "east": "false", "north": "false", @@ -253701,7 +243946,7 @@ }, { "default": true, - "id": 13601, + "id": 12524, "properties": { "east": "false", "north": "false", @@ -253740,7 +243985,7 @@ }, "states": [ { - "id": 13282, + "id": 12205, "properties": { "facing": "north", "in_wall": "true", @@ -253749,7 +243994,7 @@ } }, { - "id": 13283, + "id": 12206, "properties": { "facing": "north", "in_wall": "true", @@ -253758,7 +244003,7 @@ } }, { - "id": 13284, + "id": 12207, "properties": { "facing": "north", "in_wall": "true", @@ -253767,7 +244012,7 @@ } }, { - "id": 13285, + "id": 12208, "properties": { "facing": "north", "in_wall": "true", @@ -253776,7 +244021,7 @@ } }, { - "id": 13286, + "id": 12209, "properties": { "facing": "north", "in_wall": "false", @@ -253785,7 +244030,7 @@ } }, { - "id": 13287, + "id": 12210, "properties": { "facing": "north", "in_wall": "false", @@ -253794,7 +244039,7 @@ } }, { - "id": 13288, + "id": 12211, "properties": { "facing": "north", "in_wall": "false", @@ -253804,7 +244049,7 @@ }, { "default": true, - "id": 13289, + "id": 12212, "properties": { "facing": "north", "in_wall": "false", @@ -253813,7 +244058,7 @@ } }, { - "id": 13290, + "id": 12213, "properties": { "facing": "south", "in_wall": "true", @@ -253822,7 +244067,7 @@ } }, { - "id": 13291, + "id": 12214, "properties": { "facing": "south", "in_wall": "true", @@ -253831,7 +244076,7 @@ } }, { - "id": 13292, + "id": 12215, "properties": { "facing": "south", "in_wall": "true", @@ -253840,7 +244085,7 @@ } }, { - "id": 13293, + "id": 12216, "properties": { "facing": "south", "in_wall": "true", @@ -253849,7 +244094,7 @@ } }, { - "id": 13294, + "id": 12217, "properties": { "facing": "south", "in_wall": "false", @@ -253858,7 +244103,7 @@ } }, { - "id": 13295, + "id": 12218, "properties": { "facing": "south", "in_wall": "false", @@ -253867,7 +244112,7 @@ } }, { - "id": 13296, + "id": 12219, "properties": { "facing": "south", "in_wall": "false", @@ -253876,7 +244121,7 @@ } }, { - "id": 13297, + "id": 12220, "properties": { "facing": "south", "in_wall": "false", @@ -253885,7 +244130,7 @@ } }, { - "id": 13298, + "id": 12221, "properties": { "facing": "west", "in_wall": "true", @@ -253894,7 +244139,7 @@ } }, { - "id": 13299, + "id": 12222, "properties": { "facing": "west", "in_wall": "true", @@ -253903,7 +244148,7 @@ } }, { - "id": 13300, + "id": 12223, "properties": { "facing": "west", "in_wall": "true", @@ -253912,7 +244157,7 @@ } }, { - "id": 13301, + "id": 12224, "properties": { "facing": "west", "in_wall": "true", @@ -253921,7 +244166,7 @@ } }, { - "id": 13302, + "id": 12225, "properties": { "facing": "west", "in_wall": "false", @@ -253930,7 +244175,7 @@ } }, { - "id": 13303, + "id": 12226, "properties": { "facing": "west", "in_wall": "false", @@ -253939,7 +244184,7 @@ } }, { - "id": 13304, + "id": 12227, "properties": { "facing": "west", "in_wall": "false", @@ -253948,7 +244193,7 @@ } }, { - "id": 13305, + "id": 12228, "properties": { "facing": "west", "in_wall": "false", @@ -253957,7 +244202,7 @@ } }, { - "id": 13306, + "id": 12229, "properties": { "facing": "east", "in_wall": "true", @@ -253966,7 +244211,7 @@ } }, { - "id": 13307, + "id": 12230, "properties": { "facing": "east", "in_wall": "true", @@ -253975,7 +244220,7 @@ } }, { - "id": 13308, + "id": 12231, "properties": { "facing": "east", "in_wall": "true", @@ -253984,7 +244229,7 @@ } }, { - "id": 13309, + "id": 12232, "properties": { "facing": "east", "in_wall": "true", @@ -253993,7 +244238,7 @@ } }, { - "id": 13310, + "id": 12233, "properties": { "facing": "east", "in_wall": "false", @@ -254002,7 +244247,7 @@ } }, { - "id": 13311, + "id": 12234, "properties": { "facing": "east", "in_wall": "false", @@ -254011,7 +244256,7 @@ } }, { - "id": 13312, + "id": 12235, "properties": { "facing": "east", "in_wall": "false", @@ -254020,7 +244265,7 @@ } }, { - "id": 13313, + "id": 12236, "properties": { "facing": "east", "in_wall": "false", @@ -254066,7 +244311,7 @@ }, "states": [ { - "id": 5770, + "id": 5002, "properties": { "attached": "true", "rotation": "0", @@ -254074,7 +244319,7 @@ } }, { - "id": 5771, + "id": 5003, "properties": { "attached": "true", "rotation": "0", @@ -254082,7 +244327,7 @@ } }, { - "id": 5772, + "id": 5004, "properties": { "attached": "true", "rotation": "1", @@ -254090,7 +244335,7 @@ } }, { - "id": 5773, + "id": 5005, "properties": { "attached": "true", "rotation": "1", @@ -254098,7 +244343,7 @@ } }, { - "id": 5774, + "id": 5006, "properties": { "attached": "true", "rotation": "2", @@ -254106,7 +244351,7 @@ } }, { - "id": 5775, + "id": 5007, "properties": { "attached": "true", "rotation": "2", @@ -254114,7 +244359,7 @@ } }, { - "id": 5776, + "id": 5008, "properties": { "attached": "true", "rotation": "3", @@ -254122,7 +244367,7 @@ } }, { - "id": 5777, + "id": 5009, "properties": { "attached": "true", "rotation": "3", @@ -254130,7 +244375,7 @@ } }, { - "id": 5778, + "id": 5010, "properties": { "attached": "true", "rotation": "4", @@ -254138,7 +244383,7 @@ } }, { - "id": 5779, + "id": 5011, "properties": { "attached": "true", "rotation": "4", @@ -254146,7 +244391,7 @@ } }, { - "id": 5780, + "id": 5012, "properties": { "attached": "true", "rotation": "5", @@ -254154,7 +244399,7 @@ } }, { - "id": 5781, + "id": 5013, "properties": { "attached": "true", "rotation": "5", @@ -254162,7 +244407,7 @@ } }, { - "id": 5782, + "id": 5014, "properties": { "attached": "true", "rotation": "6", @@ -254170,7 +244415,7 @@ } }, { - "id": 5783, + "id": 5015, "properties": { "attached": "true", "rotation": "6", @@ -254178,7 +244423,7 @@ } }, { - "id": 5784, + "id": 5016, "properties": { "attached": "true", "rotation": "7", @@ -254186,7 +244431,7 @@ } }, { - "id": 5785, + "id": 5017, "properties": { "attached": "true", "rotation": "7", @@ -254194,7 +244439,7 @@ } }, { - "id": 5786, + "id": 5018, "properties": { "attached": "true", "rotation": "8", @@ -254202,7 +244447,7 @@ } }, { - "id": 5787, + "id": 5019, "properties": { "attached": "true", "rotation": "8", @@ -254210,7 +244455,7 @@ } }, { - "id": 5788, + "id": 5020, "properties": { "attached": "true", "rotation": "9", @@ -254218,7 +244463,7 @@ } }, { - "id": 5789, + "id": 5021, "properties": { "attached": "true", "rotation": "9", @@ -254226,7 +244471,7 @@ } }, { - "id": 5790, + "id": 5022, "properties": { "attached": "true", "rotation": "10", @@ -254234,7 +244479,7 @@ } }, { - "id": 5791, + "id": 5023, "properties": { "attached": "true", "rotation": "10", @@ -254242,7 +244487,7 @@ } }, { - "id": 5792, + "id": 5024, "properties": { "attached": "true", "rotation": "11", @@ -254250,7 +244495,7 @@ } }, { - "id": 5793, + "id": 5025, "properties": { "attached": "true", "rotation": "11", @@ -254258,7 +244503,7 @@ } }, { - "id": 5794, + "id": 5026, "properties": { "attached": "true", "rotation": "12", @@ -254266,7 +244511,7 @@ } }, { - "id": 5795, + "id": 5027, "properties": { "attached": "true", "rotation": "12", @@ -254274,7 +244519,7 @@ } }, { - "id": 5796, + "id": 5028, "properties": { "attached": "true", "rotation": "13", @@ -254282,7 +244527,7 @@ } }, { - "id": 5797, + "id": 5029, "properties": { "attached": "true", "rotation": "13", @@ -254290,7 +244535,7 @@ } }, { - "id": 5798, + "id": 5030, "properties": { "attached": "true", "rotation": "14", @@ -254298,7 +244543,7 @@ } }, { - "id": 5799, + "id": 5031, "properties": { "attached": "true", "rotation": "14", @@ -254306,7 +244551,7 @@ } }, { - "id": 5800, + "id": 5032, "properties": { "attached": "true", "rotation": "15", @@ -254314,7 +244559,7 @@ } }, { - "id": 5801, + "id": 5033, "properties": { "attached": "true", "rotation": "15", @@ -254322,7 +244567,7 @@ } }, { - "id": 5802, + "id": 5034, "properties": { "attached": "false", "rotation": "0", @@ -254331,7 +244576,7 @@ }, { "default": true, - "id": 5803, + "id": 5035, "properties": { "attached": "false", "rotation": "0", @@ -254339,7 +244584,7 @@ } }, { - "id": 5804, + "id": 5036, "properties": { "attached": "false", "rotation": "1", @@ -254347,7 +244592,7 @@ } }, { - "id": 5805, + "id": 5037, "properties": { "attached": "false", "rotation": "1", @@ -254355,7 +244600,7 @@ } }, { - "id": 5806, + "id": 5038, "properties": { "attached": "false", "rotation": "2", @@ -254363,7 +244608,7 @@ } }, { - "id": 5807, + "id": 5039, "properties": { "attached": "false", "rotation": "2", @@ -254371,7 +244616,7 @@ } }, { - "id": 5808, + "id": 5040, "properties": { "attached": "false", "rotation": "3", @@ -254379,7 +244624,7 @@ } }, { - "id": 5809, + "id": 5041, "properties": { "attached": "false", "rotation": "3", @@ -254387,7 +244632,7 @@ } }, { - "id": 5810, + "id": 5042, "properties": { "attached": "false", "rotation": "4", @@ -254395,7 +244640,7 @@ } }, { - "id": 5811, + "id": 5043, "properties": { "attached": "false", "rotation": "4", @@ -254403,7 +244648,7 @@ } }, { - "id": 5812, + "id": 5044, "properties": { "attached": "false", "rotation": "5", @@ -254411,7 +244656,7 @@ } }, { - "id": 5813, + "id": 5045, "properties": { "attached": "false", "rotation": "5", @@ -254419,7 +244664,7 @@ } }, { - "id": 5814, + "id": 5046, "properties": { "attached": "false", "rotation": "6", @@ -254427,7 +244672,7 @@ } }, { - "id": 5815, + "id": 5047, "properties": { "attached": "false", "rotation": "6", @@ -254435,7 +244680,7 @@ } }, { - "id": 5816, + "id": 5048, "properties": { "attached": "false", "rotation": "7", @@ -254443,7 +244688,7 @@ } }, { - "id": 5817, + "id": 5049, "properties": { "attached": "false", "rotation": "7", @@ -254451,7 +244696,7 @@ } }, { - "id": 5818, + "id": 5050, "properties": { "attached": "false", "rotation": "8", @@ -254459,7 +244704,7 @@ } }, { - "id": 5819, + "id": 5051, "properties": { "attached": "false", "rotation": "8", @@ -254467,7 +244712,7 @@ } }, { - "id": 5820, + "id": 5052, "properties": { "attached": "false", "rotation": "9", @@ -254475,7 +244720,7 @@ } }, { - "id": 5821, + "id": 5053, "properties": { "attached": "false", "rotation": "9", @@ -254483,7 +244728,7 @@ } }, { - "id": 5822, + "id": 5054, "properties": { "attached": "false", "rotation": "10", @@ -254491,7 +244736,7 @@ } }, { - "id": 5823, + "id": 5055, "properties": { "attached": "false", "rotation": "10", @@ -254499,7 +244744,7 @@ } }, { - "id": 5824, + "id": 5056, "properties": { "attached": "false", "rotation": "11", @@ -254507,7 +244752,7 @@ } }, { - "id": 5825, + "id": 5057, "properties": { "attached": "false", "rotation": "11", @@ -254515,7 +244760,7 @@ } }, { - "id": 5826, + "id": 5058, "properties": { "attached": "false", "rotation": "12", @@ -254523,7 +244768,7 @@ } }, { - "id": 5827, + "id": 5059, "properties": { "attached": "false", "rotation": "12", @@ -254531,7 +244776,7 @@ } }, { - "id": 5828, + "id": 5060, "properties": { "attached": "false", "rotation": "13", @@ -254539,7 +244784,7 @@ } }, { - "id": 5829, + "id": 5061, "properties": { "attached": "false", "rotation": "13", @@ -254547,7 +244792,7 @@ } }, { - "id": 5830, + "id": 5062, "properties": { "attached": "false", "rotation": "14", @@ -254555,7 +244800,7 @@ } }, { - "id": 5831, + "id": 5063, "properties": { "attached": "false", "rotation": "14", @@ -254563,7 +244808,7 @@ } }, { - "id": 5832, + "id": 5064, "properties": { "attached": "false", "rotation": "15", @@ -254571,7 +244816,7 @@ } }, { - "id": 5833, + "id": 5065, "properties": { "attached": "false", "rotation": "15", @@ -254893,14 +245138,14 @@ }, "states": [ { - "id": 6662, + "id": 5894, "properties": { "powered": "true" } }, { "default": true, - "id": 6663, + "id": 5895, "properties": { "powered": "false" } @@ -254935,613 +245180,6 @@ } ] }, - "minecraft:spruce_shelf": { - "definition": { - "type": "minecraft:shelf", - "properties": {} - }, - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ], - "side_chain": [ - "unconnected", - "right", - "center", - "left" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 3039, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 3040, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 3041, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 3042, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 3043, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 3044, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 3045, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 3046, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 3047, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 3048, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 3049, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 3050, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 3051, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 3052, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 3053, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 3054, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 3055, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 3056, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 3057, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 3058, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 3059, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 3060, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 3061, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 3062, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 3063, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 3064, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 3065, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 3066, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 3067, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 3068, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 3069, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 3070, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 3071, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 3072, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 3073, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 3074, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 3075, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 3076, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 3077, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 3078, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 3079, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 3080, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 3081, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 3082, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 3083, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 3084, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 3085, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 3086, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 3087, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 3088, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 3089, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 3090, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 3091, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 3092, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 3093, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 3094, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 3095, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 3096, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 3097, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 3098, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 3099, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 3100, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 3101, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 3102, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "left", - "waterlogged": "false" - } - } - ] - }, "minecraft:spruce_sign": { "definition": { "type": "minecraft:standing_sign", @@ -255574,7 +245212,7 @@ }, "states": [ { - "id": 5166, + "id": 4398, "properties": { "rotation": "0", "waterlogged": "true" @@ -255582,217 +245220,217 @@ }, { "default": true, - "id": 5167, + "id": 4399, "properties": { "rotation": "0", "waterlogged": "false" } }, { - "id": 5168, + "id": 4400, "properties": { "rotation": "1", "waterlogged": "true" } }, { - "id": 5169, + "id": 4401, "properties": { "rotation": "1", "waterlogged": "false" } }, { - "id": 5170, + "id": 4402, "properties": { "rotation": "2", "waterlogged": "true" } }, { - "id": 5171, + "id": 4403, "properties": { "rotation": "2", "waterlogged": "false" } }, { - "id": 5172, + "id": 4404, "properties": { "rotation": "3", "waterlogged": "true" } }, { - "id": 5173, + "id": 4405, "properties": { "rotation": "3", "waterlogged": "false" } }, { - "id": 5174, + "id": 4406, "properties": { "rotation": "4", "waterlogged": "true" } }, { - "id": 5175, + "id": 4407, "properties": { "rotation": "4", "waterlogged": "false" } }, { - "id": 5176, + "id": 4408, "properties": { "rotation": "5", "waterlogged": "true" } }, { - "id": 5177, + "id": 4409, "properties": { "rotation": "5", "waterlogged": "false" } }, { - "id": 5178, + "id": 4410, "properties": { "rotation": "6", "waterlogged": "true" } }, { - "id": 5179, + "id": 4411, "properties": { "rotation": "6", "waterlogged": "false" } }, { - "id": 5180, + "id": 4412, "properties": { "rotation": "7", "waterlogged": "true" } }, { - "id": 5181, + "id": 4413, "properties": { "rotation": "7", "waterlogged": "false" } }, { - "id": 5182, + "id": 4414, "properties": { "rotation": "8", "waterlogged": "true" } }, { - "id": 5183, + "id": 4415, "properties": { "rotation": "8", "waterlogged": "false" } }, { - "id": 5184, + "id": 4416, "properties": { "rotation": "9", "waterlogged": "true" } }, { - "id": 5185, + "id": 4417, "properties": { "rotation": "9", "waterlogged": "false" } }, { - "id": 5186, + "id": 4418, "properties": { "rotation": "10", "waterlogged": "true" } }, { - "id": 5187, + "id": 4419, "properties": { "rotation": "10", "waterlogged": "false" } }, { - "id": 5188, + "id": 4420, "properties": { "rotation": "11", "waterlogged": "true" } }, { - "id": 5189, + "id": 4421, "properties": { "rotation": "11", "waterlogged": "false" } }, { - "id": 5190, + "id": 4422, "properties": { "rotation": "12", "waterlogged": "true" } }, { - "id": 5191, + "id": 4423, "properties": { "rotation": "12", "waterlogged": "false" } }, { - "id": 5192, + "id": 4424, "properties": { "rotation": "13", "waterlogged": "true" } }, { - "id": 5193, + "id": 4425, "properties": { "rotation": "13", "waterlogged": "false" } }, { - "id": 5194, + "id": 4426, "properties": { "rotation": "14", "waterlogged": "true" } }, { - "id": 5195, + "id": 4427, "properties": { "rotation": "14", "waterlogged": "false" } }, { - "id": 5196, + "id": 4428, "properties": { "rotation": "15", "waterlogged": "true" } }, { - "id": 5197, + "id": 4429, "properties": { "rotation": "15", "waterlogged": "false" @@ -255818,21 +245456,21 @@ }, "states": [ { - "id": 13134, + "id": 12057, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 13135, + "id": 12058, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 13136, + "id": 12059, "properties": { "type": "bottom", "waterlogged": "true" @@ -255840,21 +245478,21 @@ }, { "default": true, - "id": 13137, + "id": 12060, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 13138, + "id": 12061, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 13139, + "id": 12062, "properties": { "type": "double", "waterlogged": "false" @@ -255895,7 +245533,7 @@ }, "states": [ { - "id": 9527, + "id": 8450, "properties": { "facing": "north", "half": "top", @@ -255904,7 +245542,7 @@ } }, { - "id": 9528, + "id": 8451, "properties": { "facing": "north", "half": "top", @@ -255913,7 +245551,7 @@ } }, { - "id": 9529, + "id": 8452, "properties": { "facing": "north", "half": "top", @@ -255922,7 +245560,7 @@ } }, { - "id": 9530, + "id": 8453, "properties": { "facing": "north", "half": "top", @@ -255931,7 +245569,7 @@ } }, { - "id": 9531, + "id": 8454, "properties": { "facing": "north", "half": "top", @@ -255940,7 +245578,7 @@ } }, { - "id": 9532, + "id": 8455, "properties": { "facing": "north", "half": "top", @@ -255949,7 +245587,7 @@ } }, { - "id": 9533, + "id": 8456, "properties": { "facing": "north", "half": "top", @@ -255958,7 +245596,7 @@ } }, { - "id": 9534, + "id": 8457, "properties": { "facing": "north", "half": "top", @@ -255967,7 +245605,7 @@ } }, { - "id": 9535, + "id": 8458, "properties": { "facing": "north", "half": "top", @@ -255976,7 +245614,7 @@ } }, { - "id": 9536, + "id": 8459, "properties": { "facing": "north", "half": "top", @@ -255985,7 +245623,7 @@ } }, { - "id": 9537, + "id": 8460, "properties": { "facing": "north", "half": "bottom", @@ -255995,7 +245633,7 @@ }, { "default": true, - "id": 9538, + "id": 8461, "properties": { "facing": "north", "half": "bottom", @@ -256004,7 +245642,7 @@ } }, { - "id": 9539, + "id": 8462, "properties": { "facing": "north", "half": "bottom", @@ -256013,7 +245651,7 @@ } }, { - "id": 9540, + "id": 8463, "properties": { "facing": "north", "half": "bottom", @@ -256022,7 +245660,7 @@ } }, { - "id": 9541, + "id": 8464, "properties": { "facing": "north", "half": "bottom", @@ -256031,7 +245669,7 @@ } }, { - "id": 9542, + "id": 8465, "properties": { "facing": "north", "half": "bottom", @@ -256040,7 +245678,7 @@ } }, { - "id": 9543, + "id": 8466, "properties": { "facing": "north", "half": "bottom", @@ -256049,7 +245687,7 @@ } }, { - "id": 9544, + "id": 8467, "properties": { "facing": "north", "half": "bottom", @@ -256058,7 +245696,7 @@ } }, { - "id": 9545, + "id": 8468, "properties": { "facing": "north", "half": "bottom", @@ -256067,7 +245705,7 @@ } }, { - "id": 9546, + "id": 8469, "properties": { "facing": "north", "half": "bottom", @@ -256076,7 +245714,7 @@ } }, { - "id": 9547, + "id": 8470, "properties": { "facing": "south", "half": "top", @@ -256085,7 +245723,7 @@ } }, { - "id": 9548, + "id": 8471, "properties": { "facing": "south", "half": "top", @@ -256094,7 +245732,7 @@ } }, { - "id": 9549, + "id": 8472, "properties": { "facing": "south", "half": "top", @@ -256103,7 +245741,7 @@ } }, { - "id": 9550, + "id": 8473, "properties": { "facing": "south", "half": "top", @@ -256112,7 +245750,7 @@ } }, { - "id": 9551, + "id": 8474, "properties": { "facing": "south", "half": "top", @@ -256121,7 +245759,7 @@ } }, { - "id": 9552, + "id": 8475, "properties": { "facing": "south", "half": "top", @@ -256130,7 +245768,7 @@ } }, { - "id": 9553, + "id": 8476, "properties": { "facing": "south", "half": "top", @@ -256139,7 +245777,7 @@ } }, { - "id": 9554, + "id": 8477, "properties": { "facing": "south", "half": "top", @@ -256148,7 +245786,7 @@ } }, { - "id": 9555, + "id": 8478, "properties": { "facing": "south", "half": "top", @@ -256157,7 +245795,7 @@ } }, { - "id": 9556, + "id": 8479, "properties": { "facing": "south", "half": "top", @@ -256166,7 +245804,7 @@ } }, { - "id": 9557, + "id": 8480, "properties": { "facing": "south", "half": "bottom", @@ -256175,7 +245813,7 @@ } }, { - "id": 9558, + "id": 8481, "properties": { "facing": "south", "half": "bottom", @@ -256184,7 +245822,7 @@ } }, { - "id": 9559, + "id": 8482, "properties": { "facing": "south", "half": "bottom", @@ -256193,7 +245831,7 @@ } }, { - "id": 9560, + "id": 8483, "properties": { "facing": "south", "half": "bottom", @@ -256202,7 +245840,7 @@ } }, { - "id": 9561, + "id": 8484, "properties": { "facing": "south", "half": "bottom", @@ -256211,7 +245849,7 @@ } }, { - "id": 9562, + "id": 8485, "properties": { "facing": "south", "half": "bottom", @@ -256220,7 +245858,7 @@ } }, { - "id": 9563, + "id": 8486, "properties": { "facing": "south", "half": "bottom", @@ -256229,7 +245867,7 @@ } }, { - "id": 9564, + "id": 8487, "properties": { "facing": "south", "half": "bottom", @@ -256238,7 +245876,7 @@ } }, { - "id": 9565, + "id": 8488, "properties": { "facing": "south", "half": "bottom", @@ -256247,7 +245885,7 @@ } }, { - "id": 9566, + "id": 8489, "properties": { "facing": "south", "half": "bottom", @@ -256256,7 +245894,7 @@ } }, { - "id": 9567, + "id": 8490, "properties": { "facing": "west", "half": "top", @@ -256265,7 +245903,7 @@ } }, { - "id": 9568, + "id": 8491, "properties": { "facing": "west", "half": "top", @@ -256274,7 +245912,7 @@ } }, { - "id": 9569, + "id": 8492, "properties": { "facing": "west", "half": "top", @@ -256283,7 +245921,7 @@ } }, { - "id": 9570, + "id": 8493, "properties": { "facing": "west", "half": "top", @@ -256292,7 +245930,7 @@ } }, { - "id": 9571, + "id": 8494, "properties": { "facing": "west", "half": "top", @@ -256301,7 +245939,7 @@ } }, { - "id": 9572, + "id": 8495, "properties": { "facing": "west", "half": "top", @@ -256310,7 +245948,7 @@ } }, { - "id": 9573, + "id": 8496, "properties": { "facing": "west", "half": "top", @@ -256319,7 +245957,7 @@ } }, { - "id": 9574, + "id": 8497, "properties": { "facing": "west", "half": "top", @@ -256328,7 +245966,7 @@ } }, { - "id": 9575, + "id": 8498, "properties": { "facing": "west", "half": "top", @@ -256337,7 +245975,7 @@ } }, { - "id": 9576, + "id": 8499, "properties": { "facing": "west", "half": "top", @@ -256346,7 +245984,7 @@ } }, { - "id": 9577, + "id": 8500, "properties": { "facing": "west", "half": "bottom", @@ -256355,7 +245993,7 @@ } }, { - "id": 9578, + "id": 8501, "properties": { "facing": "west", "half": "bottom", @@ -256364,7 +246002,7 @@ } }, { - "id": 9579, + "id": 8502, "properties": { "facing": "west", "half": "bottom", @@ -256373,7 +246011,7 @@ } }, { - "id": 9580, + "id": 8503, "properties": { "facing": "west", "half": "bottom", @@ -256382,7 +246020,7 @@ } }, { - "id": 9581, + "id": 8504, "properties": { "facing": "west", "half": "bottom", @@ -256391,7 +246029,7 @@ } }, { - "id": 9582, + "id": 8505, "properties": { "facing": "west", "half": "bottom", @@ -256400,7 +246038,7 @@ } }, { - "id": 9583, + "id": 8506, "properties": { "facing": "west", "half": "bottom", @@ -256409,7 +246047,7 @@ } }, { - "id": 9584, + "id": 8507, "properties": { "facing": "west", "half": "bottom", @@ -256418,7 +246056,7 @@ } }, { - "id": 9585, + "id": 8508, "properties": { "facing": "west", "half": "bottom", @@ -256427,7 +246065,7 @@ } }, { - "id": 9586, + "id": 8509, "properties": { "facing": "west", "half": "bottom", @@ -256436,7 +246074,7 @@ } }, { - "id": 9587, + "id": 8510, "properties": { "facing": "east", "half": "top", @@ -256445,7 +246083,7 @@ } }, { - "id": 9588, + "id": 8511, "properties": { "facing": "east", "half": "top", @@ -256454,7 +246092,7 @@ } }, { - "id": 9589, + "id": 8512, "properties": { "facing": "east", "half": "top", @@ -256463,7 +246101,7 @@ } }, { - "id": 9590, + "id": 8513, "properties": { "facing": "east", "half": "top", @@ -256472,7 +246110,7 @@ } }, { - "id": 9591, + "id": 8514, "properties": { "facing": "east", "half": "top", @@ -256481,7 +246119,7 @@ } }, { - "id": 9592, + "id": 8515, "properties": { "facing": "east", "half": "top", @@ -256490,7 +246128,7 @@ } }, { - "id": 9593, + "id": 8516, "properties": { "facing": "east", "half": "top", @@ -256499,7 +246137,7 @@ } }, { - "id": 9594, + "id": 8517, "properties": { "facing": "east", "half": "top", @@ -256508,7 +246146,7 @@ } }, { - "id": 9595, + "id": 8518, "properties": { "facing": "east", "half": "top", @@ -256517,7 +246155,7 @@ } }, { - "id": 9596, + "id": 8519, "properties": { "facing": "east", "half": "top", @@ -256526,7 +246164,7 @@ } }, { - "id": 9597, + "id": 8520, "properties": { "facing": "east", "half": "bottom", @@ -256535,7 +246173,7 @@ } }, { - "id": 9598, + "id": 8521, "properties": { "facing": "east", "half": "bottom", @@ -256544,7 +246182,7 @@ } }, { - "id": 9599, + "id": 8522, "properties": { "facing": "east", "half": "bottom", @@ -256553,7 +246191,7 @@ } }, { - "id": 9600, + "id": 8523, "properties": { "facing": "east", "half": "bottom", @@ -256562,7 +246200,7 @@ } }, { - "id": 9601, + "id": 8524, "properties": { "facing": "east", "half": "bottom", @@ -256571,7 +246209,7 @@ } }, { - "id": 9602, + "id": 8525, "properties": { "facing": "east", "half": "bottom", @@ -256580,7 +246218,7 @@ } }, { - "id": 9603, + "id": 8526, "properties": { "facing": "east", "half": "bottom", @@ -256589,7 +246227,7 @@ } }, { - "id": 9604, + "id": 8527, "properties": { "facing": "east", "half": "bottom", @@ -256598,7 +246236,7 @@ } }, { - "id": 9605, + "id": 8528, "properties": { "facing": "east", "half": "bottom", @@ -256607,7 +246245,7 @@ } }, { - "id": 9606, + "id": 8529, "properties": { "facing": "east", "half": "bottom", @@ -256649,7 +246287,7 @@ }, "states": [ { - "id": 6977, + "id": 6204, "properties": { "facing": "north", "half": "top", @@ -256659,7 +246297,7 @@ } }, { - "id": 6978, + "id": 6205, "properties": { "facing": "north", "half": "top", @@ -256669,7 +246307,7 @@ } }, { - "id": 6979, + "id": 6206, "properties": { "facing": "north", "half": "top", @@ -256679,7 +246317,7 @@ } }, { - "id": 6980, + "id": 6207, "properties": { "facing": "north", "half": "top", @@ -256689,7 +246327,7 @@ } }, { - "id": 6981, + "id": 6208, "properties": { "facing": "north", "half": "top", @@ -256699,7 +246337,7 @@ } }, { - "id": 6982, + "id": 6209, "properties": { "facing": "north", "half": "top", @@ -256709,7 +246347,7 @@ } }, { - "id": 6983, + "id": 6210, "properties": { "facing": "north", "half": "top", @@ -256719,7 +246357,7 @@ } }, { - "id": 6984, + "id": 6211, "properties": { "facing": "north", "half": "top", @@ -256729,7 +246367,7 @@ } }, { - "id": 6985, + "id": 6212, "properties": { "facing": "north", "half": "bottom", @@ -256739,7 +246377,7 @@ } }, { - "id": 6986, + "id": 6213, "properties": { "facing": "north", "half": "bottom", @@ -256749,7 +246387,7 @@ } }, { - "id": 6987, + "id": 6214, "properties": { "facing": "north", "half": "bottom", @@ -256759,7 +246397,7 @@ } }, { - "id": 6988, + "id": 6215, "properties": { "facing": "north", "half": "bottom", @@ -256769,7 +246407,7 @@ } }, { - "id": 6989, + "id": 6216, "properties": { "facing": "north", "half": "bottom", @@ -256779,7 +246417,7 @@ } }, { - "id": 6990, + "id": 6217, "properties": { "facing": "north", "half": "bottom", @@ -256789,7 +246427,7 @@ } }, { - "id": 6991, + "id": 6218, "properties": { "facing": "north", "half": "bottom", @@ -256800,7 +246438,7 @@ }, { "default": true, - "id": 6992, + "id": 6219, "properties": { "facing": "north", "half": "bottom", @@ -256810,7 +246448,7 @@ } }, { - "id": 6993, + "id": 6220, "properties": { "facing": "south", "half": "top", @@ -256820,7 +246458,7 @@ } }, { - "id": 6994, + "id": 6221, "properties": { "facing": "south", "half": "top", @@ -256830,7 +246468,7 @@ } }, { - "id": 6995, + "id": 6222, "properties": { "facing": "south", "half": "top", @@ -256840,7 +246478,7 @@ } }, { - "id": 6996, + "id": 6223, "properties": { "facing": "south", "half": "top", @@ -256850,7 +246488,7 @@ } }, { - "id": 6997, + "id": 6224, "properties": { "facing": "south", "half": "top", @@ -256860,7 +246498,7 @@ } }, { - "id": 6998, + "id": 6225, "properties": { "facing": "south", "half": "top", @@ -256870,7 +246508,7 @@ } }, { - "id": 6999, + "id": 6226, "properties": { "facing": "south", "half": "top", @@ -256880,7 +246518,7 @@ } }, { - "id": 7000, + "id": 6227, "properties": { "facing": "south", "half": "top", @@ -256890,7 +246528,7 @@ } }, { - "id": 7001, + "id": 6228, "properties": { "facing": "south", "half": "bottom", @@ -256900,7 +246538,7 @@ } }, { - "id": 7002, + "id": 6229, "properties": { "facing": "south", "half": "bottom", @@ -256910,7 +246548,7 @@ } }, { - "id": 7003, + "id": 6230, "properties": { "facing": "south", "half": "bottom", @@ -256920,7 +246558,7 @@ } }, { - "id": 7004, + "id": 6231, "properties": { "facing": "south", "half": "bottom", @@ -256930,7 +246568,7 @@ } }, { - "id": 7005, + "id": 6232, "properties": { "facing": "south", "half": "bottom", @@ -256940,7 +246578,7 @@ } }, { - "id": 7006, + "id": 6233, "properties": { "facing": "south", "half": "bottom", @@ -256950,7 +246588,7 @@ } }, { - "id": 7007, + "id": 6234, "properties": { "facing": "south", "half": "bottom", @@ -256960,7 +246598,7 @@ } }, { - "id": 7008, + "id": 6235, "properties": { "facing": "south", "half": "bottom", @@ -256970,7 +246608,7 @@ } }, { - "id": 7009, + "id": 6236, "properties": { "facing": "west", "half": "top", @@ -256980,7 +246618,7 @@ } }, { - "id": 7010, + "id": 6237, "properties": { "facing": "west", "half": "top", @@ -256990,7 +246628,7 @@ } }, { - "id": 7011, + "id": 6238, "properties": { "facing": "west", "half": "top", @@ -257000,7 +246638,7 @@ } }, { - "id": 7012, + "id": 6239, "properties": { "facing": "west", "half": "top", @@ -257010,7 +246648,7 @@ } }, { - "id": 7013, + "id": 6240, "properties": { "facing": "west", "half": "top", @@ -257020,7 +246658,7 @@ } }, { - "id": 7014, + "id": 6241, "properties": { "facing": "west", "half": "top", @@ -257030,7 +246668,7 @@ } }, { - "id": 7015, + "id": 6242, "properties": { "facing": "west", "half": "top", @@ -257040,7 +246678,7 @@ } }, { - "id": 7016, + "id": 6243, "properties": { "facing": "west", "half": "top", @@ -257050,7 +246688,7 @@ } }, { - "id": 7017, + "id": 6244, "properties": { "facing": "west", "half": "bottom", @@ -257060,7 +246698,7 @@ } }, { - "id": 7018, + "id": 6245, "properties": { "facing": "west", "half": "bottom", @@ -257070,7 +246708,7 @@ } }, { - "id": 7019, + "id": 6246, "properties": { "facing": "west", "half": "bottom", @@ -257080,7 +246718,7 @@ } }, { - "id": 7020, + "id": 6247, "properties": { "facing": "west", "half": "bottom", @@ -257090,7 +246728,7 @@ } }, { - "id": 7021, + "id": 6248, "properties": { "facing": "west", "half": "bottom", @@ -257100,7 +246738,7 @@ } }, { - "id": 7022, + "id": 6249, "properties": { "facing": "west", "half": "bottom", @@ -257110,7 +246748,7 @@ } }, { - "id": 7023, + "id": 6250, "properties": { "facing": "west", "half": "bottom", @@ -257120,7 +246758,7 @@ } }, { - "id": 7024, + "id": 6251, "properties": { "facing": "west", "half": "bottom", @@ -257130,7 +246768,7 @@ } }, { - "id": 7025, + "id": 6252, "properties": { "facing": "east", "half": "top", @@ -257140,7 +246778,7 @@ } }, { - "id": 7026, + "id": 6253, "properties": { "facing": "east", "half": "top", @@ -257150,7 +246788,7 @@ } }, { - "id": 7027, + "id": 6254, "properties": { "facing": "east", "half": "top", @@ -257160,7 +246798,7 @@ } }, { - "id": 7028, + "id": 6255, "properties": { "facing": "east", "half": "top", @@ -257170,7 +246808,7 @@ } }, { - "id": 7029, + "id": 6256, "properties": { "facing": "east", "half": "top", @@ -257180,7 +246818,7 @@ } }, { - "id": 7030, + "id": 6257, "properties": { "facing": "east", "half": "top", @@ -257190,7 +246828,7 @@ } }, { - "id": 7031, + "id": 6258, "properties": { "facing": "east", "half": "top", @@ -257200,7 +246838,7 @@ } }, { - "id": 7032, + "id": 6259, "properties": { "facing": "east", "half": "top", @@ -257210,7 +246848,7 @@ } }, { - "id": 7033, + "id": 6260, "properties": { "facing": "east", "half": "bottom", @@ -257220,7 +246858,7 @@ } }, { - "id": 7034, + "id": 6261, "properties": { "facing": "east", "half": "bottom", @@ -257230,7 +246868,7 @@ } }, { - "id": 7035, + "id": 6262, "properties": { "facing": "east", "half": "bottom", @@ -257240,7 +246878,7 @@ } }, { - "id": 7036, + "id": 6263, "properties": { "facing": "east", "half": "bottom", @@ -257250,7 +246888,7 @@ } }, { - "id": 7037, + "id": 6264, "properties": { "facing": "east", "half": "bottom", @@ -257260,7 +246898,7 @@ } }, { - "id": 7038, + "id": 6265, "properties": { "facing": "east", "half": "bottom", @@ -257270,7 +246908,7 @@ } }, { - "id": 7039, + "id": 6266, "properties": { "facing": "east", "half": "bottom", @@ -257280,7 +246918,7 @@ } }, { - "id": 7040, + "id": 6267, "properties": { "facing": "east", "half": "bottom", @@ -257311,7 +246949,7 @@ }, "states": [ { - "id": 6482, + "id": 5714, "properties": { "facing": "north", "waterlogged": "true" @@ -257319,49 +246957,49 @@ }, { "default": true, - "id": 6483, + "id": 5715, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 6484, + "id": 5716, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 6485, + "id": 5717, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 6486, + "id": 5718, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 6487, + "id": 5719, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 6488, + "id": 5720, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 6489, + "id": 5721, "properties": { "facing": "east", "waterlogged": "false" @@ -257389,7 +247027,7 @@ }, "states": [ { - "id": 5634, + "id": 4866, "properties": { "facing": "north", "waterlogged": "true" @@ -257397,49 +247035,49 @@ }, { "default": true, - "id": 5635, + "id": 4867, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 5636, + "id": 4868, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 5637, + "id": 4869, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 5638, + "id": 4870, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 5639, + "id": 4871, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 5640, + "id": 4872, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 5641, + "id": 4873, "properties": { "facing": "east", "waterlogged": "false" @@ -257619,21 +247257,21 @@ }, "states": [ { - "id": 13236, + "id": 12159, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 13237, + "id": 12160, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 13238, + "id": 12161, "properties": { "type": "bottom", "waterlogged": "true" @@ -257641,21 +247279,21 @@ }, { "default": true, - "id": 13239, + "id": 12162, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 13240, + "id": 12163, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 13241, + "id": 12164, "properties": { "type": "double", "waterlogged": "false" @@ -257696,7 +247334,7 @@ }, "states": [ { - "id": 8557, + "id": 7480, "properties": { "facing": "north", "half": "top", @@ -257705,7 +247343,7 @@ } }, { - "id": 8558, + "id": 7481, "properties": { "facing": "north", "half": "top", @@ -257714,7 +247352,7 @@ } }, { - "id": 8559, + "id": 7482, "properties": { "facing": "north", "half": "top", @@ -257723,7 +247361,7 @@ } }, { - "id": 8560, + "id": 7483, "properties": { "facing": "north", "half": "top", @@ -257732,7 +247370,7 @@ } }, { - "id": 8561, + "id": 7484, "properties": { "facing": "north", "half": "top", @@ -257741,7 +247379,7 @@ } }, { - "id": 8562, + "id": 7485, "properties": { "facing": "north", "half": "top", @@ -257750,7 +247388,7 @@ } }, { - "id": 8563, + "id": 7486, "properties": { "facing": "north", "half": "top", @@ -257759,7 +247397,7 @@ } }, { - "id": 8564, + "id": 7487, "properties": { "facing": "north", "half": "top", @@ -257768,7 +247406,7 @@ } }, { - "id": 8565, + "id": 7488, "properties": { "facing": "north", "half": "top", @@ -257777,7 +247415,7 @@ } }, { - "id": 8566, + "id": 7489, "properties": { "facing": "north", "half": "top", @@ -257786,7 +247424,7 @@ } }, { - "id": 8567, + "id": 7490, "properties": { "facing": "north", "half": "bottom", @@ -257796,7 +247434,7 @@ }, { "default": true, - "id": 8568, + "id": 7491, "properties": { "facing": "north", "half": "bottom", @@ -257805,7 +247443,7 @@ } }, { - "id": 8569, + "id": 7492, "properties": { "facing": "north", "half": "bottom", @@ -257814,7 +247452,7 @@ } }, { - "id": 8570, + "id": 7493, "properties": { "facing": "north", "half": "bottom", @@ -257823,7 +247461,7 @@ } }, { - "id": 8571, + "id": 7494, "properties": { "facing": "north", "half": "bottom", @@ -257832,7 +247470,7 @@ } }, { - "id": 8572, + "id": 7495, "properties": { "facing": "north", "half": "bottom", @@ -257841,7 +247479,7 @@ } }, { - "id": 8573, + "id": 7496, "properties": { "facing": "north", "half": "bottom", @@ -257850,7 +247488,7 @@ } }, { - "id": 8574, + "id": 7497, "properties": { "facing": "north", "half": "bottom", @@ -257859,7 +247497,7 @@ } }, { - "id": 8575, + "id": 7498, "properties": { "facing": "north", "half": "bottom", @@ -257868,7 +247506,7 @@ } }, { - "id": 8576, + "id": 7499, "properties": { "facing": "north", "half": "bottom", @@ -257877,7 +247515,7 @@ } }, { - "id": 8577, + "id": 7500, "properties": { "facing": "south", "half": "top", @@ -257886,7 +247524,7 @@ } }, { - "id": 8578, + "id": 7501, "properties": { "facing": "south", "half": "top", @@ -257895,7 +247533,7 @@ } }, { - "id": 8579, + "id": 7502, "properties": { "facing": "south", "half": "top", @@ -257904,7 +247542,7 @@ } }, { - "id": 8580, + "id": 7503, "properties": { "facing": "south", "half": "top", @@ -257913,7 +247551,7 @@ } }, { - "id": 8581, + "id": 7504, "properties": { "facing": "south", "half": "top", @@ -257922,7 +247560,7 @@ } }, { - "id": 8582, + "id": 7505, "properties": { "facing": "south", "half": "top", @@ -257931,7 +247569,7 @@ } }, { - "id": 8583, + "id": 7506, "properties": { "facing": "south", "half": "top", @@ -257940,7 +247578,7 @@ } }, { - "id": 8584, + "id": 7507, "properties": { "facing": "south", "half": "top", @@ -257949,7 +247587,7 @@ } }, { - "id": 8585, + "id": 7508, "properties": { "facing": "south", "half": "top", @@ -257958,7 +247596,7 @@ } }, { - "id": 8586, + "id": 7509, "properties": { "facing": "south", "half": "top", @@ -257967,7 +247605,7 @@ } }, { - "id": 8587, + "id": 7510, "properties": { "facing": "south", "half": "bottom", @@ -257976,7 +247614,7 @@ } }, { - "id": 8588, + "id": 7511, "properties": { "facing": "south", "half": "bottom", @@ -257985,7 +247623,7 @@ } }, { - "id": 8589, + "id": 7512, "properties": { "facing": "south", "half": "bottom", @@ -257994,7 +247632,7 @@ } }, { - "id": 8590, + "id": 7513, "properties": { "facing": "south", "half": "bottom", @@ -258003,7 +247641,7 @@ } }, { - "id": 8591, + "id": 7514, "properties": { "facing": "south", "half": "bottom", @@ -258012,7 +247650,7 @@ } }, { - "id": 8592, + "id": 7515, "properties": { "facing": "south", "half": "bottom", @@ -258021,7 +247659,7 @@ } }, { - "id": 8593, + "id": 7516, "properties": { "facing": "south", "half": "bottom", @@ -258030,7 +247668,7 @@ } }, { - "id": 8594, + "id": 7517, "properties": { "facing": "south", "half": "bottom", @@ -258039,7 +247677,7 @@ } }, { - "id": 8595, + "id": 7518, "properties": { "facing": "south", "half": "bottom", @@ -258048,7 +247686,7 @@ } }, { - "id": 8596, + "id": 7519, "properties": { "facing": "south", "half": "bottom", @@ -258057,7 +247695,7 @@ } }, { - "id": 8597, + "id": 7520, "properties": { "facing": "west", "half": "top", @@ -258066,7 +247704,7 @@ } }, { - "id": 8598, + "id": 7521, "properties": { "facing": "west", "half": "top", @@ -258075,7 +247713,7 @@ } }, { - "id": 8599, + "id": 7522, "properties": { "facing": "west", "half": "top", @@ -258084,7 +247722,7 @@ } }, { - "id": 8600, + "id": 7523, "properties": { "facing": "west", "half": "top", @@ -258093,7 +247731,7 @@ } }, { - "id": 8601, + "id": 7524, "properties": { "facing": "west", "half": "top", @@ -258102,7 +247740,7 @@ } }, { - "id": 8602, + "id": 7525, "properties": { "facing": "west", "half": "top", @@ -258111,7 +247749,7 @@ } }, { - "id": 8603, + "id": 7526, "properties": { "facing": "west", "half": "top", @@ -258120,7 +247758,7 @@ } }, { - "id": 8604, + "id": 7527, "properties": { "facing": "west", "half": "top", @@ -258129,7 +247767,7 @@ } }, { - "id": 8605, + "id": 7528, "properties": { "facing": "west", "half": "top", @@ -258138,7 +247776,7 @@ } }, { - "id": 8606, + "id": 7529, "properties": { "facing": "west", "half": "top", @@ -258147,7 +247785,7 @@ } }, { - "id": 8607, + "id": 7530, "properties": { "facing": "west", "half": "bottom", @@ -258156,7 +247794,7 @@ } }, { - "id": 8608, + "id": 7531, "properties": { "facing": "west", "half": "bottom", @@ -258165,7 +247803,7 @@ } }, { - "id": 8609, + "id": 7532, "properties": { "facing": "west", "half": "bottom", @@ -258174,7 +247812,7 @@ } }, { - "id": 8610, + "id": 7533, "properties": { "facing": "west", "half": "bottom", @@ -258183,7 +247821,7 @@ } }, { - "id": 8611, + "id": 7534, "properties": { "facing": "west", "half": "bottom", @@ -258192,7 +247830,7 @@ } }, { - "id": 8612, + "id": 7535, "properties": { "facing": "west", "half": "bottom", @@ -258201,7 +247839,7 @@ } }, { - "id": 8613, + "id": 7536, "properties": { "facing": "west", "half": "bottom", @@ -258210,7 +247848,7 @@ } }, { - "id": 8614, + "id": 7537, "properties": { "facing": "west", "half": "bottom", @@ -258219,7 +247857,7 @@ } }, { - "id": 8615, + "id": 7538, "properties": { "facing": "west", "half": "bottom", @@ -258228,7 +247866,7 @@ } }, { - "id": 8616, + "id": 7539, "properties": { "facing": "west", "half": "bottom", @@ -258237,7 +247875,7 @@ } }, { - "id": 8617, + "id": 7540, "properties": { "facing": "east", "half": "top", @@ -258246,7 +247884,7 @@ } }, { - "id": 8618, + "id": 7541, "properties": { "facing": "east", "half": "top", @@ -258255,7 +247893,7 @@ } }, { - "id": 8619, + "id": 7542, "properties": { "facing": "east", "half": "top", @@ -258264,7 +247902,7 @@ } }, { - "id": 8620, + "id": 7543, "properties": { "facing": "east", "half": "top", @@ -258273,7 +247911,7 @@ } }, { - "id": 8621, + "id": 7544, "properties": { "facing": "east", "half": "top", @@ -258282,7 +247920,7 @@ } }, { - "id": 8622, + "id": 7545, "properties": { "facing": "east", "half": "top", @@ -258291,7 +247929,7 @@ } }, { - "id": 8623, + "id": 7546, "properties": { "facing": "east", "half": "top", @@ -258300,7 +247938,7 @@ } }, { - "id": 8624, + "id": 7547, "properties": { "facing": "east", "half": "top", @@ -258309,7 +247947,7 @@ } }, { - "id": 8625, + "id": 7548, "properties": { "facing": "east", "half": "top", @@ -258318,7 +247956,7 @@ } }, { - "id": 8626, + "id": 7549, "properties": { "facing": "east", "half": "top", @@ -258327,7 +247965,7 @@ } }, { - "id": 8627, + "id": 7550, "properties": { "facing": "east", "half": "bottom", @@ -258336,7 +247974,7 @@ } }, { - "id": 8628, + "id": 7551, "properties": { "facing": "east", "half": "bottom", @@ -258345,7 +247983,7 @@ } }, { - "id": 8629, + "id": 7552, "properties": { "facing": "east", "half": "bottom", @@ -258354,7 +247992,7 @@ } }, { - "id": 8630, + "id": 7553, "properties": { "facing": "east", "half": "bottom", @@ -258363,7 +248001,7 @@ } }, { - "id": 8631, + "id": 7554, "properties": { "facing": "east", "half": "bottom", @@ -258372,7 +248010,7 @@ } }, { - "id": 8632, + "id": 7555, "properties": { "facing": "east", "half": "bottom", @@ -258381,7 +248019,7 @@ } }, { - "id": 8633, + "id": 7556, "properties": { "facing": "east", "half": "bottom", @@ -258390,7 +248028,7 @@ } }, { - "id": 8634, + "id": 7557, "properties": { "facing": "east", "half": "bottom", @@ -258399,7 +248037,7 @@ } }, { - "id": 8635, + "id": 7558, "properties": { "facing": "east", "half": "bottom", @@ -258408,7 +248046,7 @@ } }, { - "id": 8636, + "id": 7559, "properties": { "facing": "east", "half": "bottom", @@ -258455,7 +248093,7 @@ }, "states": [ { - "id": 17912, + "id": 16803, "properties": { "east": "none", "north": "none", @@ -258466,7 +248104,7 @@ } }, { - "id": 17913, + "id": 16804, "properties": { "east": "none", "north": "none", @@ -258477,7 +248115,7 @@ } }, { - "id": 17914, + "id": 16805, "properties": { "east": "none", "north": "none", @@ -258489,7 +248127,7 @@ }, { "default": true, - "id": 17915, + "id": 16806, "properties": { "east": "none", "north": "none", @@ -258500,7 +248138,7 @@ } }, { - "id": 17916, + "id": 16807, "properties": { "east": "none", "north": "none", @@ -258511,7 +248149,7 @@ } }, { - "id": 17917, + "id": 16808, "properties": { "east": "none", "north": "none", @@ -258522,7 +248160,7 @@ } }, { - "id": 17918, + "id": 16809, "properties": { "east": "none", "north": "none", @@ -258533,7 +248171,7 @@ } }, { - "id": 17919, + "id": 16810, "properties": { "east": "none", "north": "none", @@ -258544,7 +248182,7 @@ } }, { - "id": 17920, + "id": 16811, "properties": { "east": "none", "north": "none", @@ -258555,7 +248193,7 @@ } }, { - "id": 17921, + "id": 16812, "properties": { "east": "none", "north": "none", @@ -258566,7 +248204,7 @@ } }, { - "id": 17922, + "id": 16813, "properties": { "east": "none", "north": "none", @@ -258577,7 +248215,7 @@ } }, { - "id": 17923, + "id": 16814, "properties": { "east": "none", "north": "none", @@ -258588,7 +248226,7 @@ } }, { - "id": 17924, + "id": 16815, "properties": { "east": "none", "north": "none", @@ -258599,7 +248237,7 @@ } }, { - "id": 17925, + "id": 16816, "properties": { "east": "none", "north": "none", @@ -258610,7 +248248,7 @@ } }, { - "id": 17926, + "id": 16817, "properties": { "east": "none", "north": "none", @@ -258621,7 +248259,7 @@ } }, { - "id": 17927, + "id": 16818, "properties": { "east": "none", "north": "none", @@ -258632,7 +248270,7 @@ } }, { - "id": 17928, + "id": 16819, "properties": { "east": "none", "north": "none", @@ -258643,7 +248281,7 @@ } }, { - "id": 17929, + "id": 16820, "properties": { "east": "none", "north": "none", @@ -258654,7 +248292,7 @@ } }, { - "id": 17930, + "id": 16821, "properties": { "east": "none", "north": "none", @@ -258665,7 +248303,7 @@ } }, { - "id": 17931, + "id": 16822, "properties": { "east": "none", "north": "none", @@ -258676,7 +248314,7 @@ } }, { - "id": 17932, + "id": 16823, "properties": { "east": "none", "north": "none", @@ -258687,7 +248325,7 @@ } }, { - "id": 17933, + "id": 16824, "properties": { "east": "none", "north": "none", @@ -258698,7 +248336,7 @@ } }, { - "id": 17934, + "id": 16825, "properties": { "east": "none", "north": "none", @@ -258709,7 +248347,7 @@ } }, { - "id": 17935, + "id": 16826, "properties": { "east": "none", "north": "none", @@ -258720,7 +248358,7 @@ } }, { - "id": 17936, + "id": 16827, "properties": { "east": "none", "north": "none", @@ -258731,7 +248369,7 @@ } }, { - "id": 17937, + "id": 16828, "properties": { "east": "none", "north": "none", @@ -258742,7 +248380,7 @@ } }, { - "id": 17938, + "id": 16829, "properties": { "east": "none", "north": "none", @@ -258753,7 +248391,7 @@ } }, { - "id": 17939, + "id": 16830, "properties": { "east": "none", "north": "none", @@ -258764,7 +248402,7 @@ } }, { - "id": 17940, + "id": 16831, "properties": { "east": "none", "north": "none", @@ -258775,7 +248413,7 @@ } }, { - "id": 17941, + "id": 16832, "properties": { "east": "none", "north": "none", @@ -258786,7 +248424,7 @@ } }, { - "id": 17942, + "id": 16833, "properties": { "east": "none", "north": "none", @@ -258797,7 +248435,7 @@ } }, { - "id": 17943, + "id": 16834, "properties": { "east": "none", "north": "none", @@ -258808,7 +248446,7 @@ } }, { - "id": 17944, + "id": 16835, "properties": { "east": "none", "north": "none", @@ -258819,7 +248457,7 @@ } }, { - "id": 17945, + "id": 16836, "properties": { "east": "none", "north": "none", @@ -258830,7 +248468,7 @@ } }, { - "id": 17946, + "id": 16837, "properties": { "east": "none", "north": "none", @@ -258841,7 +248479,7 @@ } }, { - "id": 17947, + "id": 16838, "properties": { "east": "none", "north": "none", @@ -258852,7 +248490,7 @@ } }, { - "id": 17948, + "id": 16839, "properties": { "east": "none", "north": "low", @@ -258863,7 +248501,7 @@ } }, { - "id": 17949, + "id": 16840, "properties": { "east": "none", "north": "low", @@ -258874,7 +248512,7 @@ } }, { - "id": 17950, + "id": 16841, "properties": { "east": "none", "north": "low", @@ -258885,7 +248523,7 @@ } }, { - "id": 17951, + "id": 16842, "properties": { "east": "none", "north": "low", @@ -258896,7 +248534,7 @@ } }, { - "id": 17952, + "id": 16843, "properties": { "east": "none", "north": "low", @@ -258907,7 +248545,7 @@ } }, { - "id": 17953, + "id": 16844, "properties": { "east": "none", "north": "low", @@ -258918,7 +248556,7 @@ } }, { - "id": 17954, + "id": 16845, "properties": { "east": "none", "north": "low", @@ -258929,7 +248567,7 @@ } }, { - "id": 17955, + "id": 16846, "properties": { "east": "none", "north": "low", @@ -258940,7 +248578,7 @@ } }, { - "id": 17956, + "id": 16847, "properties": { "east": "none", "north": "low", @@ -258951,7 +248589,7 @@ } }, { - "id": 17957, + "id": 16848, "properties": { "east": "none", "north": "low", @@ -258962,7 +248600,7 @@ } }, { - "id": 17958, + "id": 16849, "properties": { "east": "none", "north": "low", @@ -258973,7 +248611,7 @@ } }, { - "id": 17959, + "id": 16850, "properties": { "east": "none", "north": "low", @@ -258984,7 +248622,7 @@ } }, { - "id": 17960, + "id": 16851, "properties": { "east": "none", "north": "low", @@ -258995,7 +248633,7 @@ } }, { - "id": 17961, + "id": 16852, "properties": { "east": "none", "north": "low", @@ -259006,7 +248644,7 @@ } }, { - "id": 17962, + "id": 16853, "properties": { "east": "none", "north": "low", @@ -259017,7 +248655,7 @@ } }, { - "id": 17963, + "id": 16854, "properties": { "east": "none", "north": "low", @@ -259028,7 +248666,7 @@ } }, { - "id": 17964, + "id": 16855, "properties": { "east": "none", "north": "low", @@ -259039,7 +248677,7 @@ } }, { - "id": 17965, + "id": 16856, "properties": { "east": "none", "north": "low", @@ -259050,7 +248688,7 @@ } }, { - "id": 17966, + "id": 16857, "properties": { "east": "none", "north": "low", @@ -259061,7 +248699,7 @@ } }, { - "id": 17967, + "id": 16858, "properties": { "east": "none", "north": "low", @@ -259072,7 +248710,7 @@ } }, { - "id": 17968, + "id": 16859, "properties": { "east": "none", "north": "low", @@ -259083,7 +248721,7 @@ } }, { - "id": 17969, + "id": 16860, "properties": { "east": "none", "north": "low", @@ -259094,7 +248732,7 @@ } }, { - "id": 17970, + "id": 16861, "properties": { "east": "none", "north": "low", @@ -259105,7 +248743,7 @@ } }, { - "id": 17971, + "id": 16862, "properties": { "east": "none", "north": "low", @@ -259116,7 +248754,7 @@ } }, { - "id": 17972, + "id": 16863, "properties": { "east": "none", "north": "low", @@ -259127,7 +248765,7 @@ } }, { - "id": 17973, + "id": 16864, "properties": { "east": "none", "north": "low", @@ -259138,7 +248776,7 @@ } }, { - "id": 17974, + "id": 16865, "properties": { "east": "none", "north": "low", @@ -259149,7 +248787,7 @@ } }, { - "id": 17975, + "id": 16866, "properties": { "east": "none", "north": "low", @@ -259160,7 +248798,7 @@ } }, { - "id": 17976, + "id": 16867, "properties": { "east": "none", "north": "low", @@ -259171,7 +248809,7 @@ } }, { - "id": 17977, + "id": 16868, "properties": { "east": "none", "north": "low", @@ -259182,7 +248820,7 @@ } }, { - "id": 17978, + "id": 16869, "properties": { "east": "none", "north": "low", @@ -259193,7 +248831,7 @@ } }, { - "id": 17979, + "id": 16870, "properties": { "east": "none", "north": "low", @@ -259204,7 +248842,7 @@ } }, { - "id": 17980, + "id": 16871, "properties": { "east": "none", "north": "low", @@ -259215,7 +248853,7 @@ } }, { - "id": 17981, + "id": 16872, "properties": { "east": "none", "north": "low", @@ -259226,7 +248864,7 @@ } }, { - "id": 17982, + "id": 16873, "properties": { "east": "none", "north": "low", @@ -259237,7 +248875,7 @@ } }, { - "id": 17983, + "id": 16874, "properties": { "east": "none", "north": "low", @@ -259248,7 +248886,7 @@ } }, { - "id": 17984, + "id": 16875, "properties": { "east": "none", "north": "tall", @@ -259259,7 +248897,7 @@ } }, { - "id": 17985, + "id": 16876, "properties": { "east": "none", "north": "tall", @@ -259270,7 +248908,7 @@ } }, { - "id": 17986, + "id": 16877, "properties": { "east": "none", "north": "tall", @@ -259281,7 +248919,7 @@ } }, { - "id": 17987, + "id": 16878, "properties": { "east": "none", "north": "tall", @@ -259292,7 +248930,7 @@ } }, { - "id": 17988, + "id": 16879, "properties": { "east": "none", "north": "tall", @@ -259303,7 +248941,7 @@ } }, { - "id": 17989, + "id": 16880, "properties": { "east": "none", "north": "tall", @@ -259314,7 +248952,7 @@ } }, { - "id": 17990, + "id": 16881, "properties": { "east": "none", "north": "tall", @@ -259325,7 +248963,7 @@ } }, { - "id": 17991, + "id": 16882, "properties": { "east": "none", "north": "tall", @@ -259336,7 +248974,7 @@ } }, { - "id": 17992, + "id": 16883, "properties": { "east": "none", "north": "tall", @@ -259347,7 +248985,7 @@ } }, { - "id": 17993, + "id": 16884, "properties": { "east": "none", "north": "tall", @@ -259358,7 +248996,7 @@ } }, { - "id": 17994, + "id": 16885, "properties": { "east": "none", "north": "tall", @@ -259369,7 +249007,7 @@ } }, { - "id": 17995, + "id": 16886, "properties": { "east": "none", "north": "tall", @@ -259380,7 +249018,7 @@ } }, { - "id": 17996, + "id": 16887, "properties": { "east": "none", "north": "tall", @@ -259391,7 +249029,7 @@ } }, { - "id": 17997, + "id": 16888, "properties": { "east": "none", "north": "tall", @@ -259402,7 +249040,7 @@ } }, { - "id": 17998, + "id": 16889, "properties": { "east": "none", "north": "tall", @@ -259413,7 +249051,7 @@ } }, { - "id": 17999, + "id": 16890, "properties": { "east": "none", "north": "tall", @@ -259424,7 +249062,7 @@ } }, { - "id": 18000, + "id": 16891, "properties": { "east": "none", "north": "tall", @@ -259435,7 +249073,7 @@ } }, { - "id": 18001, + "id": 16892, "properties": { "east": "none", "north": "tall", @@ -259446,7 +249084,7 @@ } }, { - "id": 18002, + "id": 16893, "properties": { "east": "none", "north": "tall", @@ -259457,7 +249095,7 @@ } }, { - "id": 18003, + "id": 16894, "properties": { "east": "none", "north": "tall", @@ -259468,7 +249106,7 @@ } }, { - "id": 18004, + "id": 16895, "properties": { "east": "none", "north": "tall", @@ -259479,7 +249117,7 @@ } }, { - "id": 18005, + "id": 16896, "properties": { "east": "none", "north": "tall", @@ -259490,7 +249128,7 @@ } }, { - "id": 18006, + "id": 16897, "properties": { "east": "none", "north": "tall", @@ -259501,7 +249139,7 @@ } }, { - "id": 18007, + "id": 16898, "properties": { "east": "none", "north": "tall", @@ -259512,7 +249150,7 @@ } }, { - "id": 18008, + "id": 16899, "properties": { "east": "none", "north": "tall", @@ -259523,7 +249161,7 @@ } }, { - "id": 18009, + "id": 16900, "properties": { "east": "none", "north": "tall", @@ -259534,7 +249172,7 @@ } }, { - "id": 18010, + "id": 16901, "properties": { "east": "none", "north": "tall", @@ -259545,7 +249183,7 @@ } }, { - "id": 18011, + "id": 16902, "properties": { "east": "none", "north": "tall", @@ -259556,7 +249194,7 @@ } }, { - "id": 18012, + "id": 16903, "properties": { "east": "none", "north": "tall", @@ -259567,7 +249205,7 @@ } }, { - "id": 18013, + "id": 16904, "properties": { "east": "none", "north": "tall", @@ -259578,7 +249216,7 @@ } }, { - "id": 18014, + "id": 16905, "properties": { "east": "none", "north": "tall", @@ -259589,7 +249227,7 @@ } }, { - "id": 18015, + "id": 16906, "properties": { "east": "none", "north": "tall", @@ -259600,7 +249238,7 @@ } }, { - "id": 18016, + "id": 16907, "properties": { "east": "none", "north": "tall", @@ -259611,7 +249249,7 @@ } }, { - "id": 18017, + "id": 16908, "properties": { "east": "none", "north": "tall", @@ -259622,7 +249260,7 @@ } }, { - "id": 18018, + "id": 16909, "properties": { "east": "none", "north": "tall", @@ -259633,7 +249271,7 @@ } }, { - "id": 18019, + "id": 16910, "properties": { "east": "none", "north": "tall", @@ -259644,7 +249282,7 @@ } }, { - "id": 18020, + "id": 16911, "properties": { "east": "low", "north": "none", @@ -259655,7 +249293,7 @@ } }, { - "id": 18021, + "id": 16912, "properties": { "east": "low", "north": "none", @@ -259666,7 +249304,7 @@ } }, { - "id": 18022, + "id": 16913, "properties": { "east": "low", "north": "none", @@ -259677,7 +249315,7 @@ } }, { - "id": 18023, + "id": 16914, "properties": { "east": "low", "north": "none", @@ -259688,7 +249326,7 @@ } }, { - "id": 18024, + "id": 16915, "properties": { "east": "low", "north": "none", @@ -259699,7 +249337,7 @@ } }, { - "id": 18025, + "id": 16916, "properties": { "east": "low", "north": "none", @@ -259710,7 +249348,7 @@ } }, { - "id": 18026, + "id": 16917, "properties": { "east": "low", "north": "none", @@ -259721,7 +249359,7 @@ } }, { - "id": 18027, + "id": 16918, "properties": { "east": "low", "north": "none", @@ -259732,7 +249370,7 @@ } }, { - "id": 18028, + "id": 16919, "properties": { "east": "low", "north": "none", @@ -259743,7 +249381,7 @@ } }, { - "id": 18029, + "id": 16920, "properties": { "east": "low", "north": "none", @@ -259754,7 +249392,7 @@ } }, { - "id": 18030, + "id": 16921, "properties": { "east": "low", "north": "none", @@ -259765,7 +249403,7 @@ } }, { - "id": 18031, + "id": 16922, "properties": { "east": "low", "north": "none", @@ -259776,7 +249414,7 @@ } }, { - "id": 18032, + "id": 16923, "properties": { "east": "low", "north": "none", @@ -259787,7 +249425,7 @@ } }, { - "id": 18033, + "id": 16924, "properties": { "east": "low", "north": "none", @@ -259798,7 +249436,7 @@ } }, { - "id": 18034, + "id": 16925, "properties": { "east": "low", "north": "none", @@ -259809,7 +249447,7 @@ } }, { - "id": 18035, + "id": 16926, "properties": { "east": "low", "north": "none", @@ -259820,7 +249458,7 @@ } }, { - "id": 18036, + "id": 16927, "properties": { "east": "low", "north": "none", @@ -259831,7 +249469,7 @@ } }, { - "id": 18037, + "id": 16928, "properties": { "east": "low", "north": "none", @@ -259842,7 +249480,7 @@ } }, { - "id": 18038, + "id": 16929, "properties": { "east": "low", "north": "none", @@ -259853,7 +249491,7 @@ } }, { - "id": 18039, + "id": 16930, "properties": { "east": "low", "north": "none", @@ -259864,7 +249502,7 @@ } }, { - "id": 18040, + "id": 16931, "properties": { "east": "low", "north": "none", @@ -259875,7 +249513,7 @@ } }, { - "id": 18041, + "id": 16932, "properties": { "east": "low", "north": "none", @@ -259886,7 +249524,7 @@ } }, { - "id": 18042, + "id": 16933, "properties": { "east": "low", "north": "none", @@ -259897,7 +249535,7 @@ } }, { - "id": 18043, + "id": 16934, "properties": { "east": "low", "north": "none", @@ -259908,7 +249546,7 @@ } }, { - "id": 18044, + "id": 16935, "properties": { "east": "low", "north": "none", @@ -259919,7 +249557,7 @@ } }, { - "id": 18045, + "id": 16936, "properties": { "east": "low", "north": "none", @@ -259930,7 +249568,7 @@ } }, { - "id": 18046, + "id": 16937, "properties": { "east": "low", "north": "none", @@ -259941,7 +249579,7 @@ } }, { - "id": 18047, + "id": 16938, "properties": { "east": "low", "north": "none", @@ -259952,7 +249590,7 @@ } }, { - "id": 18048, + "id": 16939, "properties": { "east": "low", "north": "none", @@ -259963,7 +249601,7 @@ } }, { - "id": 18049, + "id": 16940, "properties": { "east": "low", "north": "none", @@ -259974,7 +249612,7 @@ } }, { - "id": 18050, + "id": 16941, "properties": { "east": "low", "north": "none", @@ -259985,7 +249623,7 @@ } }, { - "id": 18051, + "id": 16942, "properties": { "east": "low", "north": "none", @@ -259996,7 +249634,7 @@ } }, { - "id": 18052, + "id": 16943, "properties": { "east": "low", "north": "none", @@ -260007,7 +249645,7 @@ } }, { - "id": 18053, + "id": 16944, "properties": { "east": "low", "north": "none", @@ -260018,7 +249656,7 @@ } }, { - "id": 18054, + "id": 16945, "properties": { "east": "low", "north": "none", @@ -260029,7 +249667,7 @@ } }, { - "id": 18055, + "id": 16946, "properties": { "east": "low", "north": "none", @@ -260040,7 +249678,7 @@ } }, { - "id": 18056, + "id": 16947, "properties": { "east": "low", "north": "low", @@ -260051,7 +249689,7 @@ } }, { - "id": 18057, + "id": 16948, "properties": { "east": "low", "north": "low", @@ -260062,7 +249700,7 @@ } }, { - "id": 18058, + "id": 16949, "properties": { "east": "low", "north": "low", @@ -260073,7 +249711,7 @@ } }, { - "id": 18059, + "id": 16950, "properties": { "east": "low", "north": "low", @@ -260084,7 +249722,7 @@ } }, { - "id": 18060, + "id": 16951, "properties": { "east": "low", "north": "low", @@ -260095,7 +249733,7 @@ } }, { - "id": 18061, + "id": 16952, "properties": { "east": "low", "north": "low", @@ -260106,7 +249744,7 @@ } }, { - "id": 18062, + "id": 16953, "properties": { "east": "low", "north": "low", @@ -260117,7 +249755,7 @@ } }, { - "id": 18063, + "id": 16954, "properties": { "east": "low", "north": "low", @@ -260128,7 +249766,7 @@ } }, { - "id": 18064, + "id": 16955, "properties": { "east": "low", "north": "low", @@ -260139,7 +249777,7 @@ } }, { - "id": 18065, + "id": 16956, "properties": { "east": "low", "north": "low", @@ -260150,7 +249788,7 @@ } }, { - "id": 18066, + "id": 16957, "properties": { "east": "low", "north": "low", @@ -260161,7 +249799,7 @@ } }, { - "id": 18067, + "id": 16958, "properties": { "east": "low", "north": "low", @@ -260172,7 +249810,7 @@ } }, { - "id": 18068, + "id": 16959, "properties": { "east": "low", "north": "low", @@ -260183,7 +249821,7 @@ } }, { - "id": 18069, + "id": 16960, "properties": { "east": "low", "north": "low", @@ -260194,7 +249832,7 @@ } }, { - "id": 18070, + "id": 16961, "properties": { "east": "low", "north": "low", @@ -260205,7 +249843,7 @@ } }, { - "id": 18071, + "id": 16962, "properties": { "east": "low", "north": "low", @@ -260216,7 +249854,7 @@ } }, { - "id": 18072, + "id": 16963, "properties": { "east": "low", "north": "low", @@ -260227,7 +249865,7 @@ } }, { - "id": 18073, + "id": 16964, "properties": { "east": "low", "north": "low", @@ -260238,7 +249876,7 @@ } }, { - "id": 18074, + "id": 16965, "properties": { "east": "low", "north": "low", @@ -260249,7 +249887,7 @@ } }, { - "id": 18075, + "id": 16966, "properties": { "east": "low", "north": "low", @@ -260260,7 +249898,7 @@ } }, { - "id": 18076, + "id": 16967, "properties": { "east": "low", "north": "low", @@ -260271,7 +249909,7 @@ } }, { - "id": 18077, + "id": 16968, "properties": { "east": "low", "north": "low", @@ -260282,7 +249920,7 @@ } }, { - "id": 18078, + "id": 16969, "properties": { "east": "low", "north": "low", @@ -260293,7 +249931,7 @@ } }, { - "id": 18079, + "id": 16970, "properties": { "east": "low", "north": "low", @@ -260304,7 +249942,7 @@ } }, { - "id": 18080, + "id": 16971, "properties": { "east": "low", "north": "low", @@ -260315,7 +249953,7 @@ } }, { - "id": 18081, + "id": 16972, "properties": { "east": "low", "north": "low", @@ -260326,7 +249964,7 @@ } }, { - "id": 18082, + "id": 16973, "properties": { "east": "low", "north": "low", @@ -260337,7 +249975,7 @@ } }, { - "id": 18083, + "id": 16974, "properties": { "east": "low", "north": "low", @@ -260348,7 +249986,7 @@ } }, { - "id": 18084, + "id": 16975, "properties": { "east": "low", "north": "low", @@ -260359,7 +249997,7 @@ } }, { - "id": 18085, + "id": 16976, "properties": { "east": "low", "north": "low", @@ -260370,7 +250008,7 @@ } }, { - "id": 18086, + "id": 16977, "properties": { "east": "low", "north": "low", @@ -260381,7 +250019,7 @@ } }, { - "id": 18087, + "id": 16978, "properties": { "east": "low", "north": "low", @@ -260392,7 +250030,7 @@ } }, { - "id": 18088, + "id": 16979, "properties": { "east": "low", "north": "low", @@ -260403,7 +250041,7 @@ } }, { - "id": 18089, + "id": 16980, "properties": { "east": "low", "north": "low", @@ -260414,7 +250052,7 @@ } }, { - "id": 18090, + "id": 16981, "properties": { "east": "low", "north": "low", @@ -260425,7 +250063,7 @@ } }, { - "id": 18091, + "id": 16982, "properties": { "east": "low", "north": "low", @@ -260436,7 +250074,7 @@ } }, { - "id": 18092, + "id": 16983, "properties": { "east": "low", "north": "tall", @@ -260447,7 +250085,7 @@ } }, { - "id": 18093, + "id": 16984, "properties": { "east": "low", "north": "tall", @@ -260458,7 +250096,7 @@ } }, { - "id": 18094, + "id": 16985, "properties": { "east": "low", "north": "tall", @@ -260469,7 +250107,7 @@ } }, { - "id": 18095, + "id": 16986, "properties": { "east": "low", "north": "tall", @@ -260480,7 +250118,7 @@ } }, { - "id": 18096, + "id": 16987, "properties": { "east": "low", "north": "tall", @@ -260491,7 +250129,7 @@ } }, { - "id": 18097, + "id": 16988, "properties": { "east": "low", "north": "tall", @@ -260502,7 +250140,7 @@ } }, { - "id": 18098, + "id": 16989, "properties": { "east": "low", "north": "tall", @@ -260513,7 +250151,7 @@ } }, { - "id": 18099, + "id": 16990, "properties": { "east": "low", "north": "tall", @@ -260524,7 +250162,7 @@ } }, { - "id": 18100, + "id": 16991, "properties": { "east": "low", "north": "tall", @@ -260535,7 +250173,7 @@ } }, { - "id": 18101, + "id": 16992, "properties": { "east": "low", "north": "tall", @@ -260546,7 +250184,7 @@ } }, { - "id": 18102, + "id": 16993, "properties": { "east": "low", "north": "tall", @@ -260557,7 +250195,7 @@ } }, { - "id": 18103, + "id": 16994, "properties": { "east": "low", "north": "tall", @@ -260568,7 +250206,7 @@ } }, { - "id": 18104, + "id": 16995, "properties": { "east": "low", "north": "tall", @@ -260579,7 +250217,7 @@ } }, { - "id": 18105, + "id": 16996, "properties": { "east": "low", "north": "tall", @@ -260590,7 +250228,7 @@ } }, { - "id": 18106, + "id": 16997, "properties": { "east": "low", "north": "tall", @@ -260601,7 +250239,7 @@ } }, { - "id": 18107, + "id": 16998, "properties": { "east": "low", "north": "tall", @@ -260612,7 +250250,7 @@ } }, { - "id": 18108, + "id": 16999, "properties": { "east": "low", "north": "tall", @@ -260623,7 +250261,7 @@ } }, { - "id": 18109, + "id": 17000, "properties": { "east": "low", "north": "tall", @@ -260634,7 +250272,7 @@ } }, { - "id": 18110, + "id": 17001, "properties": { "east": "low", "north": "tall", @@ -260645,7 +250283,7 @@ } }, { - "id": 18111, + "id": 17002, "properties": { "east": "low", "north": "tall", @@ -260656,7 +250294,7 @@ } }, { - "id": 18112, + "id": 17003, "properties": { "east": "low", "north": "tall", @@ -260667,7 +250305,7 @@ } }, { - "id": 18113, + "id": 17004, "properties": { "east": "low", "north": "tall", @@ -260678,7 +250316,7 @@ } }, { - "id": 18114, + "id": 17005, "properties": { "east": "low", "north": "tall", @@ -260689,7 +250327,7 @@ } }, { - "id": 18115, + "id": 17006, "properties": { "east": "low", "north": "tall", @@ -260700,7 +250338,7 @@ } }, { - "id": 18116, + "id": 17007, "properties": { "east": "low", "north": "tall", @@ -260711,7 +250349,7 @@ } }, { - "id": 18117, + "id": 17008, "properties": { "east": "low", "north": "tall", @@ -260722,7 +250360,7 @@ } }, { - "id": 18118, + "id": 17009, "properties": { "east": "low", "north": "tall", @@ -260733,7 +250371,7 @@ } }, { - "id": 18119, + "id": 17010, "properties": { "east": "low", "north": "tall", @@ -260744,7 +250382,7 @@ } }, { - "id": 18120, + "id": 17011, "properties": { "east": "low", "north": "tall", @@ -260755,7 +250393,7 @@ } }, { - "id": 18121, + "id": 17012, "properties": { "east": "low", "north": "tall", @@ -260766,7 +250404,7 @@ } }, { - "id": 18122, + "id": 17013, "properties": { "east": "low", "north": "tall", @@ -260777,7 +250415,7 @@ } }, { - "id": 18123, + "id": 17014, "properties": { "east": "low", "north": "tall", @@ -260788,7 +250426,7 @@ } }, { - "id": 18124, + "id": 17015, "properties": { "east": "low", "north": "tall", @@ -260799,7 +250437,7 @@ } }, { - "id": 18125, + "id": 17016, "properties": { "east": "low", "north": "tall", @@ -260810,7 +250448,7 @@ } }, { - "id": 18126, + "id": 17017, "properties": { "east": "low", "north": "tall", @@ -260821,7 +250459,7 @@ } }, { - "id": 18127, + "id": 17018, "properties": { "east": "low", "north": "tall", @@ -260832,7 +250470,7 @@ } }, { - "id": 18128, + "id": 17019, "properties": { "east": "tall", "north": "none", @@ -260843,7 +250481,7 @@ } }, { - "id": 18129, + "id": 17020, "properties": { "east": "tall", "north": "none", @@ -260854,7 +250492,7 @@ } }, { - "id": 18130, + "id": 17021, "properties": { "east": "tall", "north": "none", @@ -260865,7 +250503,7 @@ } }, { - "id": 18131, + "id": 17022, "properties": { "east": "tall", "north": "none", @@ -260876,7 +250514,7 @@ } }, { - "id": 18132, + "id": 17023, "properties": { "east": "tall", "north": "none", @@ -260887,7 +250525,7 @@ } }, { - "id": 18133, + "id": 17024, "properties": { "east": "tall", "north": "none", @@ -260898,7 +250536,7 @@ } }, { - "id": 18134, + "id": 17025, "properties": { "east": "tall", "north": "none", @@ -260909,7 +250547,7 @@ } }, { - "id": 18135, + "id": 17026, "properties": { "east": "tall", "north": "none", @@ -260920,7 +250558,7 @@ } }, { - "id": 18136, + "id": 17027, "properties": { "east": "tall", "north": "none", @@ -260931,7 +250569,7 @@ } }, { - "id": 18137, + "id": 17028, "properties": { "east": "tall", "north": "none", @@ -260942,7 +250580,7 @@ } }, { - "id": 18138, + "id": 17029, "properties": { "east": "tall", "north": "none", @@ -260953,7 +250591,7 @@ } }, { - "id": 18139, + "id": 17030, "properties": { "east": "tall", "north": "none", @@ -260964,7 +250602,7 @@ } }, { - "id": 18140, + "id": 17031, "properties": { "east": "tall", "north": "none", @@ -260975,7 +250613,7 @@ } }, { - "id": 18141, + "id": 17032, "properties": { "east": "tall", "north": "none", @@ -260986,7 +250624,7 @@ } }, { - "id": 18142, + "id": 17033, "properties": { "east": "tall", "north": "none", @@ -260997,7 +250635,7 @@ } }, { - "id": 18143, + "id": 17034, "properties": { "east": "tall", "north": "none", @@ -261008,7 +250646,7 @@ } }, { - "id": 18144, + "id": 17035, "properties": { "east": "tall", "north": "none", @@ -261019,7 +250657,7 @@ } }, { - "id": 18145, + "id": 17036, "properties": { "east": "tall", "north": "none", @@ -261030,7 +250668,7 @@ } }, { - "id": 18146, + "id": 17037, "properties": { "east": "tall", "north": "none", @@ -261041,7 +250679,7 @@ } }, { - "id": 18147, + "id": 17038, "properties": { "east": "tall", "north": "none", @@ -261052,7 +250690,7 @@ } }, { - "id": 18148, + "id": 17039, "properties": { "east": "tall", "north": "none", @@ -261063,7 +250701,7 @@ } }, { - "id": 18149, + "id": 17040, "properties": { "east": "tall", "north": "none", @@ -261074,7 +250712,7 @@ } }, { - "id": 18150, + "id": 17041, "properties": { "east": "tall", "north": "none", @@ -261085,7 +250723,7 @@ } }, { - "id": 18151, + "id": 17042, "properties": { "east": "tall", "north": "none", @@ -261096,7 +250734,7 @@ } }, { - "id": 18152, + "id": 17043, "properties": { "east": "tall", "north": "none", @@ -261107,7 +250745,7 @@ } }, { - "id": 18153, + "id": 17044, "properties": { "east": "tall", "north": "none", @@ -261118,7 +250756,7 @@ } }, { - "id": 18154, + "id": 17045, "properties": { "east": "tall", "north": "none", @@ -261129,7 +250767,7 @@ } }, { - "id": 18155, + "id": 17046, "properties": { "east": "tall", "north": "none", @@ -261140,7 +250778,7 @@ } }, { - "id": 18156, + "id": 17047, "properties": { "east": "tall", "north": "none", @@ -261151,7 +250789,7 @@ } }, { - "id": 18157, + "id": 17048, "properties": { "east": "tall", "north": "none", @@ -261162,7 +250800,7 @@ } }, { - "id": 18158, + "id": 17049, "properties": { "east": "tall", "north": "none", @@ -261173,7 +250811,7 @@ } }, { - "id": 18159, + "id": 17050, "properties": { "east": "tall", "north": "none", @@ -261184,7 +250822,7 @@ } }, { - "id": 18160, + "id": 17051, "properties": { "east": "tall", "north": "none", @@ -261195,7 +250833,7 @@ } }, { - "id": 18161, + "id": 17052, "properties": { "east": "tall", "north": "none", @@ -261206,7 +250844,7 @@ } }, { - "id": 18162, + "id": 17053, "properties": { "east": "tall", "north": "none", @@ -261217,7 +250855,7 @@ } }, { - "id": 18163, + "id": 17054, "properties": { "east": "tall", "north": "none", @@ -261228,7 +250866,7 @@ } }, { - "id": 18164, + "id": 17055, "properties": { "east": "tall", "north": "low", @@ -261239,7 +250877,7 @@ } }, { - "id": 18165, + "id": 17056, "properties": { "east": "tall", "north": "low", @@ -261250,7 +250888,7 @@ } }, { - "id": 18166, + "id": 17057, "properties": { "east": "tall", "north": "low", @@ -261261,7 +250899,7 @@ } }, { - "id": 18167, + "id": 17058, "properties": { "east": "tall", "north": "low", @@ -261272,7 +250910,7 @@ } }, { - "id": 18168, + "id": 17059, "properties": { "east": "tall", "north": "low", @@ -261283,7 +250921,7 @@ } }, { - "id": 18169, + "id": 17060, "properties": { "east": "tall", "north": "low", @@ -261294,7 +250932,7 @@ } }, { - "id": 18170, + "id": 17061, "properties": { "east": "tall", "north": "low", @@ -261305,7 +250943,7 @@ } }, { - "id": 18171, + "id": 17062, "properties": { "east": "tall", "north": "low", @@ -261316,7 +250954,7 @@ } }, { - "id": 18172, + "id": 17063, "properties": { "east": "tall", "north": "low", @@ -261327,7 +250965,7 @@ } }, { - "id": 18173, + "id": 17064, "properties": { "east": "tall", "north": "low", @@ -261338,7 +250976,7 @@ } }, { - "id": 18174, + "id": 17065, "properties": { "east": "tall", "north": "low", @@ -261349,7 +250987,7 @@ } }, { - "id": 18175, + "id": 17066, "properties": { "east": "tall", "north": "low", @@ -261360,7 +250998,7 @@ } }, { - "id": 18176, + "id": 17067, "properties": { "east": "tall", "north": "low", @@ -261371,7 +251009,7 @@ } }, { - "id": 18177, + "id": 17068, "properties": { "east": "tall", "north": "low", @@ -261382,7 +251020,7 @@ } }, { - "id": 18178, + "id": 17069, "properties": { "east": "tall", "north": "low", @@ -261393,7 +251031,7 @@ } }, { - "id": 18179, + "id": 17070, "properties": { "east": "tall", "north": "low", @@ -261404,7 +251042,7 @@ } }, { - "id": 18180, + "id": 17071, "properties": { "east": "tall", "north": "low", @@ -261415,7 +251053,7 @@ } }, { - "id": 18181, + "id": 17072, "properties": { "east": "tall", "north": "low", @@ -261426,7 +251064,7 @@ } }, { - "id": 18182, + "id": 17073, "properties": { "east": "tall", "north": "low", @@ -261437,7 +251075,7 @@ } }, { - "id": 18183, + "id": 17074, "properties": { "east": "tall", "north": "low", @@ -261448,7 +251086,7 @@ } }, { - "id": 18184, + "id": 17075, "properties": { "east": "tall", "north": "low", @@ -261459,7 +251097,7 @@ } }, { - "id": 18185, + "id": 17076, "properties": { "east": "tall", "north": "low", @@ -261470,7 +251108,7 @@ } }, { - "id": 18186, + "id": 17077, "properties": { "east": "tall", "north": "low", @@ -261481,7 +251119,7 @@ } }, { - "id": 18187, + "id": 17078, "properties": { "east": "tall", "north": "low", @@ -261492,7 +251130,7 @@ } }, { - "id": 18188, + "id": 17079, "properties": { "east": "tall", "north": "low", @@ -261503,7 +251141,7 @@ } }, { - "id": 18189, + "id": 17080, "properties": { "east": "tall", "north": "low", @@ -261514,7 +251152,7 @@ } }, { - "id": 18190, + "id": 17081, "properties": { "east": "tall", "north": "low", @@ -261525,7 +251163,7 @@ } }, { - "id": 18191, + "id": 17082, "properties": { "east": "tall", "north": "low", @@ -261536,7 +251174,7 @@ } }, { - "id": 18192, + "id": 17083, "properties": { "east": "tall", "north": "low", @@ -261547,7 +251185,7 @@ } }, { - "id": 18193, + "id": 17084, "properties": { "east": "tall", "north": "low", @@ -261558,7 +251196,7 @@ } }, { - "id": 18194, + "id": 17085, "properties": { "east": "tall", "north": "low", @@ -261569,7 +251207,7 @@ } }, { - "id": 18195, + "id": 17086, "properties": { "east": "tall", "north": "low", @@ -261580,7 +251218,7 @@ } }, { - "id": 18196, + "id": 17087, "properties": { "east": "tall", "north": "low", @@ -261591,7 +251229,7 @@ } }, { - "id": 18197, + "id": 17088, "properties": { "east": "tall", "north": "low", @@ -261602,7 +251240,7 @@ } }, { - "id": 18198, + "id": 17089, "properties": { "east": "tall", "north": "low", @@ -261613,7 +251251,7 @@ } }, { - "id": 18199, + "id": 17090, "properties": { "east": "tall", "north": "low", @@ -261624,7 +251262,7 @@ } }, { - "id": 18200, + "id": 17091, "properties": { "east": "tall", "north": "tall", @@ -261635,7 +251273,7 @@ } }, { - "id": 18201, + "id": 17092, "properties": { "east": "tall", "north": "tall", @@ -261646,7 +251284,7 @@ } }, { - "id": 18202, + "id": 17093, "properties": { "east": "tall", "north": "tall", @@ -261657,7 +251295,7 @@ } }, { - "id": 18203, + "id": 17094, "properties": { "east": "tall", "north": "tall", @@ -261668,7 +251306,7 @@ } }, { - "id": 18204, + "id": 17095, "properties": { "east": "tall", "north": "tall", @@ -261679,7 +251317,7 @@ } }, { - "id": 18205, + "id": 17096, "properties": { "east": "tall", "north": "tall", @@ -261690,7 +251328,7 @@ } }, { - "id": 18206, + "id": 17097, "properties": { "east": "tall", "north": "tall", @@ -261701,7 +251339,7 @@ } }, { - "id": 18207, + "id": 17098, "properties": { "east": "tall", "north": "tall", @@ -261712,7 +251350,7 @@ } }, { - "id": 18208, + "id": 17099, "properties": { "east": "tall", "north": "tall", @@ -261723,7 +251361,7 @@ } }, { - "id": 18209, + "id": 17100, "properties": { "east": "tall", "north": "tall", @@ -261734,7 +251372,7 @@ } }, { - "id": 18210, + "id": 17101, "properties": { "east": "tall", "north": "tall", @@ -261745,7 +251383,7 @@ } }, { - "id": 18211, + "id": 17102, "properties": { "east": "tall", "north": "tall", @@ -261756,7 +251394,7 @@ } }, { - "id": 18212, + "id": 17103, "properties": { "east": "tall", "north": "tall", @@ -261767,7 +251405,7 @@ } }, { - "id": 18213, + "id": 17104, "properties": { "east": "tall", "north": "tall", @@ -261778,7 +251416,7 @@ } }, { - "id": 18214, + "id": 17105, "properties": { "east": "tall", "north": "tall", @@ -261789,7 +251427,7 @@ } }, { - "id": 18215, + "id": 17106, "properties": { "east": "tall", "north": "tall", @@ -261800,7 +251438,7 @@ } }, { - "id": 18216, + "id": 17107, "properties": { "east": "tall", "north": "tall", @@ -261811,7 +251449,7 @@ } }, { - "id": 18217, + "id": 17108, "properties": { "east": "tall", "north": "tall", @@ -261822,7 +251460,7 @@ } }, { - "id": 18218, + "id": 17109, "properties": { "east": "tall", "north": "tall", @@ -261833,7 +251471,7 @@ } }, { - "id": 18219, + "id": 17110, "properties": { "east": "tall", "north": "tall", @@ -261844,7 +251482,7 @@ } }, { - "id": 18220, + "id": 17111, "properties": { "east": "tall", "north": "tall", @@ -261855,7 +251493,7 @@ } }, { - "id": 18221, + "id": 17112, "properties": { "east": "tall", "north": "tall", @@ -261866,7 +251504,7 @@ } }, { - "id": 18222, + "id": 17113, "properties": { "east": "tall", "north": "tall", @@ -261877,7 +251515,7 @@ } }, { - "id": 18223, + "id": 17114, "properties": { "east": "tall", "north": "tall", @@ -261888,7 +251526,7 @@ } }, { - "id": 18224, + "id": 17115, "properties": { "east": "tall", "north": "tall", @@ -261899,7 +251537,7 @@ } }, { - "id": 18225, + "id": 17116, "properties": { "east": "tall", "north": "tall", @@ -261910,7 +251548,7 @@ } }, { - "id": 18226, + "id": 17117, "properties": { "east": "tall", "north": "tall", @@ -261921,7 +251559,7 @@ } }, { - "id": 18227, + "id": 17118, "properties": { "east": "tall", "north": "tall", @@ -261932,7 +251570,7 @@ } }, { - "id": 18228, + "id": 17119, "properties": { "east": "tall", "north": "tall", @@ -261943,7 +251581,7 @@ } }, { - "id": 18229, + "id": 17120, "properties": { "east": "tall", "north": "tall", @@ -261954,7 +251592,7 @@ } }, { - "id": 18230, + "id": 17121, "properties": { "east": "tall", "north": "tall", @@ -261965,7 +251603,7 @@ } }, { - "id": 18231, + "id": 17122, "properties": { "east": "tall", "north": "tall", @@ -261976,7 +251614,7 @@ } }, { - "id": 18232, + "id": 17123, "properties": { "east": "tall", "north": "tall", @@ -261987,7 +251625,7 @@ } }, { - "id": 18233, + "id": 17124, "properties": { "east": "tall", "north": "tall", @@ -261998,7 +251636,7 @@ } }, { - "id": 18234, + "id": 17125, "properties": { "east": "tall", "north": "tall", @@ -262009,7 +251647,7 @@ } }, { - "id": 18235, + "id": 17126, "properties": { "east": "tall", "north": "tall", @@ -262029,7 +251667,7 @@ "states": [ { "default": true, - "id": 7553 + "id": 6780 } ] }, @@ -262059,7 +251697,7 @@ }, "states": [ { - "id": 6694, + "id": 5926, "properties": { "face": "floor", "facing": "north", @@ -262067,7 +251705,7 @@ } }, { - "id": 6695, + "id": 5927, "properties": { "face": "floor", "facing": "north", @@ -262075,7 +251713,7 @@ } }, { - "id": 6696, + "id": 5928, "properties": { "face": "floor", "facing": "south", @@ -262083,7 +251721,7 @@ } }, { - "id": 6697, + "id": 5929, "properties": { "face": "floor", "facing": "south", @@ -262091,7 +251729,7 @@ } }, { - "id": 6698, + "id": 5930, "properties": { "face": "floor", "facing": "west", @@ -262099,7 +251737,7 @@ } }, { - "id": 6699, + "id": 5931, "properties": { "face": "floor", "facing": "west", @@ -262107,7 +251745,7 @@ } }, { - "id": 6700, + "id": 5932, "properties": { "face": "floor", "facing": "east", @@ -262115,7 +251753,7 @@ } }, { - "id": 6701, + "id": 5933, "properties": { "face": "floor", "facing": "east", @@ -262123,7 +251761,7 @@ } }, { - "id": 6702, + "id": 5934, "properties": { "face": "wall", "facing": "north", @@ -262132,7 +251770,7 @@ }, { "default": true, - "id": 6703, + "id": 5935, "properties": { "face": "wall", "facing": "north", @@ -262140,7 +251778,7 @@ } }, { - "id": 6704, + "id": 5936, "properties": { "face": "wall", "facing": "south", @@ -262148,7 +251786,7 @@ } }, { - "id": 6705, + "id": 5937, "properties": { "face": "wall", "facing": "south", @@ -262156,7 +251794,7 @@ } }, { - "id": 6706, + "id": 5938, "properties": { "face": "wall", "facing": "west", @@ -262164,7 +251802,7 @@ } }, { - "id": 6707, + "id": 5939, "properties": { "face": "wall", "facing": "west", @@ -262172,7 +251810,7 @@ } }, { - "id": 6708, + "id": 5940, "properties": { "face": "wall", "facing": "east", @@ -262180,7 +251818,7 @@ } }, { - "id": 6709, + "id": 5941, "properties": { "face": "wall", "facing": "east", @@ -262188,7 +251826,7 @@ } }, { - "id": 6710, + "id": 5942, "properties": { "face": "ceiling", "facing": "north", @@ -262196,7 +251834,7 @@ } }, { - "id": 6711, + "id": 5943, "properties": { "face": "ceiling", "facing": "north", @@ -262204,7 +251842,7 @@ } }, { - "id": 6712, + "id": 5944, "properties": { "face": "ceiling", "facing": "south", @@ -262212,7 +251850,7 @@ } }, { - "id": 6713, + "id": 5945, "properties": { "face": "ceiling", "facing": "south", @@ -262220,7 +251858,7 @@ } }, { - "id": 6714, + "id": 5946, "properties": { "face": "ceiling", "facing": "west", @@ -262228,7 +251866,7 @@ } }, { - "id": 6715, + "id": 5947, "properties": { "face": "ceiling", "facing": "west", @@ -262236,7 +251874,7 @@ } }, { - "id": 6716, + "id": 5948, "properties": { "face": "ceiling", "facing": "east", @@ -262244,7 +251882,7 @@ } }, { - "id": 6717, + "id": 5949, "properties": { "face": "ceiling", "facing": "east", @@ -262267,14 +251905,14 @@ }, "states": [ { - "id": 6594, + "id": 5826, "properties": { "powered": "true" } }, { "default": true, - "id": 6595, + "id": 5827, "properties": { "powered": "false" } @@ -262299,21 +251937,21 @@ }, "states": [ { - "id": 13194, + "id": 12117, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 13195, + "id": 12118, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 13196, + "id": 12119, "properties": { "type": "bottom", "waterlogged": "true" @@ -262321,21 +251959,21 @@ }, { "default": true, - "id": 13197, + "id": 12120, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 13198, + "id": 12121, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 13199, + "id": 12122, "properties": { "type": "double", "waterlogged": "false" @@ -262376,7 +252014,7 @@ }, "states": [ { - "id": 15574, + "id": 14465, "properties": { "facing": "north", "half": "top", @@ -262385,7 +252023,7 @@ } }, { - "id": 15575, + "id": 14466, "properties": { "facing": "north", "half": "top", @@ -262394,7 +252032,7 @@ } }, { - "id": 15576, + "id": 14467, "properties": { "facing": "north", "half": "top", @@ -262403,7 +252041,7 @@ } }, { - "id": 15577, + "id": 14468, "properties": { "facing": "north", "half": "top", @@ -262412,7 +252050,7 @@ } }, { - "id": 15578, + "id": 14469, "properties": { "facing": "north", "half": "top", @@ -262421,7 +252059,7 @@ } }, { - "id": 15579, + "id": 14470, "properties": { "facing": "north", "half": "top", @@ -262430,7 +252068,7 @@ } }, { - "id": 15580, + "id": 14471, "properties": { "facing": "north", "half": "top", @@ -262439,7 +252077,7 @@ } }, { - "id": 15581, + "id": 14472, "properties": { "facing": "north", "half": "top", @@ -262448,7 +252086,7 @@ } }, { - "id": 15582, + "id": 14473, "properties": { "facing": "north", "half": "top", @@ -262457,7 +252095,7 @@ } }, { - "id": 15583, + "id": 14474, "properties": { "facing": "north", "half": "top", @@ -262466,7 +252104,7 @@ } }, { - "id": 15584, + "id": 14475, "properties": { "facing": "north", "half": "bottom", @@ -262476,7 +252114,7 @@ }, { "default": true, - "id": 15585, + "id": 14476, "properties": { "facing": "north", "half": "bottom", @@ -262485,7 +252123,7 @@ } }, { - "id": 15586, + "id": 14477, "properties": { "facing": "north", "half": "bottom", @@ -262494,7 +252132,7 @@ } }, { - "id": 15587, + "id": 14478, "properties": { "facing": "north", "half": "bottom", @@ -262503,7 +252141,7 @@ } }, { - "id": 15588, + "id": 14479, "properties": { "facing": "north", "half": "bottom", @@ -262512,7 +252150,7 @@ } }, { - "id": 15589, + "id": 14480, "properties": { "facing": "north", "half": "bottom", @@ -262521,7 +252159,7 @@ } }, { - "id": 15590, + "id": 14481, "properties": { "facing": "north", "half": "bottom", @@ -262530,7 +252168,7 @@ } }, { - "id": 15591, + "id": 14482, "properties": { "facing": "north", "half": "bottom", @@ -262539,7 +252177,7 @@ } }, { - "id": 15592, + "id": 14483, "properties": { "facing": "north", "half": "bottom", @@ -262548,7 +252186,7 @@ } }, { - "id": 15593, + "id": 14484, "properties": { "facing": "north", "half": "bottom", @@ -262557,7 +252195,7 @@ } }, { - "id": 15594, + "id": 14485, "properties": { "facing": "south", "half": "top", @@ -262566,7 +252204,7 @@ } }, { - "id": 15595, + "id": 14486, "properties": { "facing": "south", "half": "top", @@ -262575,7 +252213,7 @@ } }, { - "id": 15596, + "id": 14487, "properties": { "facing": "south", "half": "top", @@ -262584,7 +252222,7 @@ } }, { - "id": 15597, + "id": 14488, "properties": { "facing": "south", "half": "top", @@ -262593,7 +252231,7 @@ } }, { - "id": 15598, + "id": 14489, "properties": { "facing": "south", "half": "top", @@ -262602,7 +252240,7 @@ } }, { - "id": 15599, + "id": 14490, "properties": { "facing": "south", "half": "top", @@ -262611,7 +252249,7 @@ } }, { - "id": 15600, + "id": 14491, "properties": { "facing": "south", "half": "top", @@ -262620,7 +252258,7 @@ } }, { - "id": 15601, + "id": 14492, "properties": { "facing": "south", "half": "top", @@ -262629,7 +252267,7 @@ } }, { - "id": 15602, + "id": 14493, "properties": { "facing": "south", "half": "top", @@ -262638,7 +252276,7 @@ } }, { - "id": 15603, + "id": 14494, "properties": { "facing": "south", "half": "top", @@ -262647,7 +252285,7 @@ } }, { - "id": 15604, + "id": 14495, "properties": { "facing": "south", "half": "bottom", @@ -262656,7 +252294,7 @@ } }, { - "id": 15605, + "id": 14496, "properties": { "facing": "south", "half": "bottom", @@ -262665,7 +252303,7 @@ } }, { - "id": 15606, + "id": 14497, "properties": { "facing": "south", "half": "bottom", @@ -262674,7 +252312,7 @@ } }, { - "id": 15607, + "id": 14498, "properties": { "facing": "south", "half": "bottom", @@ -262683,7 +252321,7 @@ } }, { - "id": 15608, + "id": 14499, "properties": { "facing": "south", "half": "bottom", @@ -262692,7 +252330,7 @@ } }, { - "id": 15609, + "id": 14500, "properties": { "facing": "south", "half": "bottom", @@ -262701,7 +252339,7 @@ } }, { - "id": 15610, + "id": 14501, "properties": { "facing": "south", "half": "bottom", @@ -262710,7 +252348,7 @@ } }, { - "id": 15611, + "id": 14502, "properties": { "facing": "south", "half": "bottom", @@ -262719,7 +252357,7 @@ } }, { - "id": 15612, + "id": 14503, "properties": { "facing": "south", "half": "bottom", @@ -262728,7 +252366,7 @@ } }, { - "id": 15613, + "id": 14504, "properties": { "facing": "south", "half": "bottom", @@ -262737,7 +252375,7 @@ } }, { - "id": 15614, + "id": 14505, "properties": { "facing": "west", "half": "top", @@ -262746,7 +252384,7 @@ } }, { - "id": 15615, + "id": 14506, "properties": { "facing": "west", "half": "top", @@ -262755,7 +252393,7 @@ } }, { - "id": 15616, + "id": 14507, "properties": { "facing": "west", "half": "top", @@ -262764,7 +252402,7 @@ } }, { - "id": 15617, + "id": 14508, "properties": { "facing": "west", "half": "top", @@ -262773,7 +252411,7 @@ } }, { - "id": 15618, + "id": 14509, "properties": { "facing": "west", "half": "top", @@ -262782,7 +252420,7 @@ } }, { - "id": 15619, + "id": 14510, "properties": { "facing": "west", "half": "top", @@ -262791,7 +252429,7 @@ } }, { - "id": 15620, + "id": 14511, "properties": { "facing": "west", "half": "top", @@ -262800,7 +252438,7 @@ } }, { - "id": 15621, + "id": 14512, "properties": { "facing": "west", "half": "top", @@ -262809,7 +252447,7 @@ } }, { - "id": 15622, + "id": 14513, "properties": { "facing": "west", "half": "top", @@ -262818,7 +252456,7 @@ } }, { - "id": 15623, + "id": 14514, "properties": { "facing": "west", "half": "top", @@ -262827,7 +252465,7 @@ } }, { - "id": 15624, + "id": 14515, "properties": { "facing": "west", "half": "bottom", @@ -262836,7 +252474,7 @@ } }, { - "id": 15625, + "id": 14516, "properties": { "facing": "west", "half": "bottom", @@ -262845,7 +252483,7 @@ } }, { - "id": 15626, + "id": 14517, "properties": { "facing": "west", "half": "bottom", @@ -262854,7 +252492,7 @@ } }, { - "id": 15627, + "id": 14518, "properties": { "facing": "west", "half": "bottom", @@ -262863,7 +252501,7 @@ } }, { - "id": 15628, + "id": 14519, "properties": { "facing": "west", "half": "bottom", @@ -262872,7 +252510,7 @@ } }, { - "id": 15629, + "id": 14520, "properties": { "facing": "west", "half": "bottom", @@ -262881,7 +252519,7 @@ } }, { - "id": 15630, + "id": 14521, "properties": { "facing": "west", "half": "bottom", @@ -262890,7 +252528,7 @@ } }, { - "id": 15631, + "id": 14522, "properties": { "facing": "west", "half": "bottom", @@ -262899,7 +252537,7 @@ } }, { - "id": 15632, + "id": 14523, "properties": { "facing": "west", "half": "bottom", @@ -262908,7 +252546,7 @@ } }, { - "id": 15633, + "id": 14524, "properties": { "facing": "west", "half": "bottom", @@ -262917,7 +252555,7 @@ } }, { - "id": 15634, + "id": 14525, "properties": { "facing": "east", "half": "top", @@ -262926,7 +252564,7 @@ } }, { - "id": 15635, + "id": 14526, "properties": { "facing": "east", "half": "top", @@ -262935,7 +252573,7 @@ } }, { - "id": 15636, + "id": 14527, "properties": { "facing": "east", "half": "top", @@ -262944,7 +252582,7 @@ } }, { - "id": 15637, + "id": 14528, "properties": { "facing": "east", "half": "top", @@ -262953,7 +252591,7 @@ } }, { - "id": 15638, + "id": 14529, "properties": { "facing": "east", "half": "top", @@ -262962,7 +252600,7 @@ } }, { - "id": 15639, + "id": 14530, "properties": { "facing": "east", "half": "top", @@ -262971,7 +252609,7 @@ } }, { - "id": 15640, + "id": 14531, "properties": { "facing": "east", "half": "top", @@ -262980,7 +252618,7 @@ } }, { - "id": 15641, + "id": 14532, "properties": { "facing": "east", "half": "top", @@ -262989,7 +252627,7 @@ } }, { - "id": 15642, + "id": 14533, "properties": { "facing": "east", "half": "top", @@ -262998,7 +252636,7 @@ } }, { - "id": 15643, + "id": 14534, "properties": { "facing": "east", "half": "top", @@ -263007,7 +252645,7 @@ } }, { - "id": 15644, + "id": 14535, "properties": { "facing": "east", "half": "bottom", @@ -263016,7 +252654,7 @@ } }, { - "id": 15645, + "id": 14536, "properties": { "facing": "east", "half": "bottom", @@ -263025,7 +252663,7 @@ } }, { - "id": 15646, + "id": 14537, "properties": { "facing": "east", "half": "bottom", @@ -263034,7 +252672,7 @@ } }, { - "id": 15647, + "id": 14538, "properties": { "facing": "east", "half": "bottom", @@ -263043,7 +252681,7 @@ } }, { - "id": 15648, + "id": 14539, "properties": { "facing": "east", "half": "bottom", @@ -263052,7 +252690,7 @@ } }, { - "id": 15649, + "id": 14540, "properties": { "facing": "east", "half": "bottom", @@ -263061,7 +252699,7 @@ } }, { - "id": 15650, + "id": 14541, "properties": { "facing": "east", "half": "bottom", @@ -263070,7 +252708,7 @@ } }, { - "id": 15651, + "id": 14542, "properties": { "facing": "east", "half": "bottom", @@ -263079,7 +252717,7 @@ } }, { - "id": 15652, + "id": 14543, "properties": { "facing": "east", "half": "bottom", @@ -263088,7 +252726,7 @@ } }, { - "id": 15653, + "id": 14544, "properties": { "facing": "east", "half": "bottom", @@ -263114,25 +252752,25 @@ "states": [ { "default": true, - "id": 20599, + "id": 19490, "properties": { "facing": "north" } }, { - "id": 20600, + "id": 19491, "properties": { "facing": "south" } }, { - "id": 20601, + "id": 19492, "properties": { "facing": "west" } }, { - "id": 20602, + "id": 19493, "properties": { "facing": "east" } @@ -263391,20 +253029,20 @@ }, "states": [ { - "id": 20769, + "id": 19628, "properties": { "axis": "x" } }, { "default": true, - "id": 20770, + "id": 19629, "properties": { "axis": "y" } }, { - "id": 20771, + "id": 19630, "properties": { "axis": "z" } @@ -263425,20 +253063,20 @@ }, "states": [ { - "id": 20763, + "id": 19622, "properties": { "axis": "x" } }, { "default": true, - "id": 20764, + "id": 19623, "properties": { "axis": "y" } }, { - "id": 20765, + "id": 19624, "properties": { "axis": "z" } @@ -263867,20 +253505,20 @@ }, "states": [ { - "id": 20752, + "id": 19611, "properties": { "axis": "x" } }, { "default": true, - "id": 20753, + "id": 19612, "properties": { "axis": "y" } }, { - "id": 20754, + "id": 19613, "properties": { "axis": "z" } @@ -263901,20 +253539,20 @@ }, "states": [ { - "id": 20746, + "id": 19605, "properties": { "axis": "x" } }, { "default": true, - "id": 20747, + "id": 19606, "properties": { "axis": "y" } }, { - "id": 20748, + "id": 19607, "properties": { "axis": "z" } @@ -263936,26 +253574,26 @@ }, "states": [ { - "id": 21520, + "id": 20379, "properties": { "mode": "save" } }, { "default": true, - "id": 21521, + "id": 20380, "properties": { "mode": "load" } }, { - "id": 21522, + "id": 20381, "properties": { "mode": "corner" } }, { - "id": 21523, + "id": 20382, "properties": { "mode": "data" } @@ -263970,7 +253608,7 @@ "states": [ { "default": true, - "id": 14649 + "id": 13572 } ] }, @@ -264002,97 +253640,97 @@ "states": [ { "default": true, - "id": 6746, + "id": 5978, "properties": { "age": "0" } }, { - "id": 6747, + "id": 5979, "properties": { "age": "1" } }, { - "id": 6748, + "id": 5980, "properties": { "age": "2" } }, { - "id": 6749, + "id": 5981, "properties": { "age": "3" } }, { - "id": 6750, + "id": 5982, "properties": { "age": "4" } }, { - "id": 6751, + "id": 5983, "properties": { "age": "5" } }, { - "id": 6752, + "id": 5984, "properties": { "age": "6" } }, { - "id": 6753, + "id": 5985, "properties": { "age": "7" } }, { - "id": 6754, + "id": 5986, "properties": { "age": "8" } }, { - "id": 6755, + "id": 5987, "properties": { "age": "9" } }, { - "id": 6756, + "id": 5988, "properties": { "age": "10" } }, { - "id": 6757, + "id": 5989, "properties": { "age": "11" } }, { - "id": 6758, + "id": 5990, "properties": { "age": "12" } }, { - "id": 6759, + "id": 5991, "properties": { "age": "13" } }, { - "id": 6760, + "id": 5992, "properties": { "age": "14" } }, { - "id": 6761, + "id": 5993, "properties": { "age": "15" } @@ -264112,14 +253750,14 @@ }, "states": [ { - "id": 12713, + "id": 11636, "properties": { "half": "upper" } }, { "default": true, - "id": 12714, + "id": 11637, "properties": { "half": "lower" } @@ -264230,25 +253868,25 @@ "states": [ { "default": true, - "id": 20739, + "id": 19598, "properties": { "age": "0" } }, { - "id": 20740, + "id": 19599, "properties": { "age": "1" } }, { - "id": 20741, + "id": 19600, "properties": { "age": "2" } }, { - "id": 20742, + "id": 19601, "properties": { "age": "3" } @@ -264280,14 +253918,14 @@ }, "states": [ { - "id": 12721, + "id": 11644, "properties": { "half": "upper" } }, { "default": true, - "id": 12722, + "id": 11645, "properties": { "half": "lower" } @@ -264349,97 +253987,97 @@ "states": [ { "default": true, - "id": 21550, + "id": 20409, "properties": { "power": "0" } }, { - "id": 21551, + "id": 20410, "properties": { "power": "1" } }, { - "id": 21552, + "id": 20411, "properties": { "power": "2" } }, { - "id": 21553, + "id": 20412, "properties": { "power": "3" } }, { - "id": 21554, + "id": 20413, "properties": { "power": "4" } }, { - "id": 21555, + "id": 20414, "properties": { "power": "5" } }, { - "id": 21556, + "id": 20415, "properties": { "power": "6" } }, { - "id": 21557, + "id": 20416, "properties": { "power": "7" } }, { - "id": 21558, + "id": 20417, "properties": { "power": "8" } }, { - "id": 21559, + "id": 20418, "properties": { "power": "9" } }, { - "id": 21560, + "id": 20419, "properties": { "power": "10" } }, { - "id": 21561, + "id": 20420, "properties": { "power": "11" } }, { - "id": 21562, + "id": 20421, "properties": { "power": "12" } }, { - "id": 21563, + "id": 20422, "properties": { "power": "13" } }, { - "id": 21564, + "id": 20423, "properties": { "power": "14" } }, { - "id": 21565, + "id": 20424, "properties": { "power": "15" } @@ -264448,13 +254086,13 @@ }, "minecraft:terracotta": { "definition": { - "type": "minecraft:block", + "type": "minecraft:terracotta", "properties": {} }, "states": [ { "default": true, - "id": 12710 + "id": 11633 } ] }, @@ -264474,25 +254112,25 @@ "states": [ { "default": true, - "id": 21536, + "id": 20395, "properties": { "mode": "start" } }, { - "id": 21537, + "id": 20396, "properties": { "mode": "log" } }, { - "id": 21538, + "id": 20397, "properties": { "mode": "fail" } }, { - "id": 21539, + "id": 20398, "properties": { "mode": "accept" } @@ -264507,7 +254145,7 @@ "states": [ { "default": true, - "id": 21540 + "id": 20399 } ] }, @@ -264519,7 +254157,7 @@ "states": [ { "default": true, - "id": 24486 + "id": 23345 } ] }, @@ -264559,7 +254197,7 @@ "states": [ { "default": true, - "id": 3169 + "id": 2401 } ] }, @@ -264595,13 +254233,13 @@ "states": [ { "default": true, - "id": 14595, + "id": 13518, "properties": { "age": "0" } }, { - "id": 14596, + "id": 13519, "properties": { "age": "1" } @@ -264632,7 +254270,7 @@ }, "states": [ { - "id": 11005, + "id": 9928, "properties": { "type": "single", "facing": "north", @@ -264641,7 +254279,7 @@ }, { "default": true, - "id": 11006, + "id": 9929, "properties": { "type": "single", "facing": "north", @@ -264649,7 +254287,7 @@ } }, { - "id": 11007, + "id": 9930, "properties": { "type": "left", "facing": "north", @@ -264657,7 +254295,7 @@ } }, { - "id": 11008, + "id": 9931, "properties": { "type": "left", "facing": "north", @@ -264665,7 +254303,7 @@ } }, { - "id": 11009, + "id": 9932, "properties": { "type": "right", "facing": "north", @@ -264673,7 +254311,7 @@ } }, { - "id": 11010, + "id": 9933, "properties": { "type": "right", "facing": "north", @@ -264681,7 +254319,7 @@ } }, { - "id": 11011, + "id": 9934, "properties": { "type": "single", "facing": "south", @@ -264689,7 +254327,7 @@ } }, { - "id": 11012, + "id": 9935, "properties": { "type": "single", "facing": "south", @@ -264697,7 +254335,7 @@ } }, { - "id": 11013, + "id": 9936, "properties": { "type": "left", "facing": "south", @@ -264705,7 +254343,7 @@ } }, { - "id": 11014, + "id": 9937, "properties": { "type": "left", "facing": "south", @@ -264713,7 +254351,7 @@ } }, { - "id": 11015, + "id": 9938, "properties": { "type": "right", "facing": "south", @@ -264721,7 +254359,7 @@ } }, { - "id": 11016, + "id": 9939, "properties": { "type": "right", "facing": "south", @@ -264729,7 +254367,7 @@ } }, { - "id": 11017, + "id": 9940, "properties": { "type": "single", "facing": "west", @@ -264737,7 +254375,7 @@ } }, { - "id": 11018, + "id": 9941, "properties": { "type": "single", "facing": "west", @@ -264745,7 +254383,7 @@ } }, { - "id": 11019, + "id": 9942, "properties": { "type": "left", "facing": "west", @@ -264753,7 +254391,7 @@ } }, { - "id": 11020, + "id": 9943, "properties": { "type": "left", "facing": "west", @@ -264761,7 +254399,7 @@ } }, { - "id": 11021, + "id": 9944, "properties": { "type": "right", "facing": "west", @@ -264769,7 +254407,7 @@ } }, { - "id": 11022, + "id": 9945, "properties": { "type": "right", "facing": "west", @@ -264777,7 +254415,7 @@ } }, { - "id": 11023, + "id": 9946, "properties": { "type": "single", "facing": "east", @@ -264785,7 +254423,7 @@ } }, { - "id": 11024, + "id": 9947, "properties": { "type": "single", "facing": "east", @@ -264793,7 +254431,7 @@ } }, { - "id": 11025, + "id": 9948, "properties": { "type": "left", "facing": "east", @@ -264801,7 +254439,7 @@ } }, { - "id": 11026, + "id": 9949, "properties": { "type": "left", "facing": "east", @@ -264809,7 +254447,7 @@ } }, { - "id": 11027, + "id": 9950, "properties": { "type": "right", "facing": "east", @@ -264817,7 +254455,7 @@ } }, { - "id": 11028, + "id": 9951, "properties": { "type": "right", "facing": "east", @@ -264847,42 +254485,42 @@ }, "states": [ { - "id": 29455, + "id": 27698, "properties": { "ominous": "true", "trial_spawner_state": "inactive" } }, { - "id": 29456, + "id": 27699, "properties": { "ominous": "true", "trial_spawner_state": "waiting_for_players" } }, { - "id": 29457, + "id": 27700, "properties": { "ominous": "true", "trial_spawner_state": "active" } }, { - "id": 29458, + "id": 27701, "properties": { "ominous": "true", "trial_spawner_state": "waiting_for_reward_ejection" } }, { - "id": 29459, + "id": 27702, "properties": { "ominous": "true", "trial_spawner_state": "ejecting_reward" } }, { - "id": 29460, + "id": 27703, "properties": { "ominous": "true", "trial_spawner_state": "cooldown" @@ -264890,42 +254528,42 @@ }, { "default": true, - "id": 29461, + "id": 27704, "properties": { "ominous": "false", "trial_spawner_state": "inactive" } }, { - "id": 29462, + "id": 27705, "properties": { "ominous": "false", "trial_spawner_state": "waiting_for_players" } }, { - "id": 29463, + "id": 27706, "properties": { "ominous": "false", "trial_spawner_state": "active" } }, { - "id": 29464, + "id": 27707, "properties": { "ominous": "false", "trial_spawner_state": "waiting_for_reward_ejection" } }, { - "id": 29465, + "id": 27708, "properties": { "ominous": "false", "trial_spawner_state": "ejecting_reward" } }, { - "id": 29466, + "id": 27709, "properties": { "ominous": "false", "trial_spawner_state": "cooldown" @@ -264971,7 +254609,7 @@ }, "states": [ { - "id": 9398, + "id": 8321, "properties": { "attached": "true", "disarmed": "true", @@ -264983,7 +254621,7 @@ } }, { - "id": 9399, + "id": 8322, "properties": { "attached": "true", "disarmed": "true", @@ -264995,7 +254633,7 @@ } }, { - "id": 9400, + "id": 8323, "properties": { "attached": "true", "disarmed": "true", @@ -265007,7 +254645,7 @@ } }, { - "id": 9401, + "id": 8324, "properties": { "attached": "true", "disarmed": "true", @@ -265019,7 +254657,7 @@ } }, { - "id": 9402, + "id": 8325, "properties": { "attached": "true", "disarmed": "true", @@ -265031,7 +254669,7 @@ } }, { - "id": 9403, + "id": 8326, "properties": { "attached": "true", "disarmed": "true", @@ -265043,7 +254681,7 @@ } }, { - "id": 9404, + "id": 8327, "properties": { "attached": "true", "disarmed": "true", @@ -265055,7 +254693,7 @@ } }, { - "id": 9405, + "id": 8328, "properties": { "attached": "true", "disarmed": "true", @@ -265067,7 +254705,7 @@ } }, { - "id": 9406, + "id": 8329, "properties": { "attached": "true", "disarmed": "true", @@ -265079,7 +254717,7 @@ } }, { - "id": 9407, + "id": 8330, "properties": { "attached": "true", "disarmed": "true", @@ -265091,7 +254729,7 @@ } }, { - "id": 9408, + "id": 8331, "properties": { "attached": "true", "disarmed": "true", @@ -265103,7 +254741,7 @@ } }, { - "id": 9409, + "id": 8332, "properties": { "attached": "true", "disarmed": "true", @@ -265115,7 +254753,7 @@ } }, { - "id": 9410, + "id": 8333, "properties": { "attached": "true", "disarmed": "true", @@ -265127,7 +254765,7 @@ } }, { - "id": 9411, + "id": 8334, "properties": { "attached": "true", "disarmed": "true", @@ -265139,7 +254777,7 @@ } }, { - "id": 9412, + "id": 8335, "properties": { "attached": "true", "disarmed": "true", @@ -265151,7 +254789,7 @@ } }, { - "id": 9413, + "id": 8336, "properties": { "attached": "true", "disarmed": "true", @@ -265163,7 +254801,7 @@ } }, { - "id": 9414, + "id": 8337, "properties": { "attached": "true", "disarmed": "true", @@ -265175,7 +254813,7 @@ } }, { - "id": 9415, + "id": 8338, "properties": { "attached": "true", "disarmed": "true", @@ -265187,7 +254825,7 @@ } }, { - "id": 9416, + "id": 8339, "properties": { "attached": "true", "disarmed": "true", @@ -265199,7 +254837,7 @@ } }, { - "id": 9417, + "id": 8340, "properties": { "attached": "true", "disarmed": "true", @@ -265211,7 +254849,7 @@ } }, { - "id": 9418, + "id": 8341, "properties": { "attached": "true", "disarmed": "true", @@ -265223,7 +254861,7 @@ } }, { - "id": 9419, + "id": 8342, "properties": { "attached": "true", "disarmed": "true", @@ -265235,7 +254873,7 @@ } }, { - "id": 9420, + "id": 8343, "properties": { "attached": "true", "disarmed": "true", @@ -265247,7 +254885,7 @@ } }, { - "id": 9421, + "id": 8344, "properties": { "attached": "true", "disarmed": "true", @@ -265259,7 +254897,7 @@ } }, { - "id": 9422, + "id": 8345, "properties": { "attached": "true", "disarmed": "true", @@ -265271,7 +254909,7 @@ } }, { - "id": 9423, + "id": 8346, "properties": { "attached": "true", "disarmed": "true", @@ -265283,7 +254921,7 @@ } }, { - "id": 9424, + "id": 8347, "properties": { "attached": "true", "disarmed": "true", @@ -265295,7 +254933,7 @@ } }, { - "id": 9425, + "id": 8348, "properties": { "attached": "true", "disarmed": "true", @@ -265307,7 +254945,7 @@ } }, { - "id": 9426, + "id": 8349, "properties": { "attached": "true", "disarmed": "true", @@ -265319,7 +254957,7 @@ } }, { - "id": 9427, + "id": 8350, "properties": { "attached": "true", "disarmed": "true", @@ -265331,7 +254969,7 @@ } }, { - "id": 9428, + "id": 8351, "properties": { "attached": "true", "disarmed": "true", @@ -265343,7 +254981,7 @@ } }, { - "id": 9429, + "id": 8352, "properties": { "attached": "true", "disarmed": "true", @@ -265355,7 +254993,7 @@ } }, { - "id": 9430, + "id": 8353, "properties": { "attached": "true", "disarmed": "false", @@ -265367,7 +255005,7 @@ } }, { - "id": 9431, + "id": 8354, "properties": { "attached": "true", "disarmed": "false", @@ -265379,7 +255017,7 @@ } }, { - "id": 9432, + "id": 8355, "properties": { "attached": "true", "disarmed": "false", @@ -265391,7 +255029,7 @@ } }, { - "id": 9433, + "id": 8356, "properties": { "attached": "true", "disarmed": "false", @@ -265403,7 +255041,7 @@ } }, { - "id": 9434, + "id": 8357, "properties": { "attached": "true", "disarmed": "false", @@ -265415,7 +255053,7 @@ } }, { - "id": 9435, + "id": 8358, "properties": { "attached": "true", "disarmed": "false", @@ -265427,7 +255065,7 @@ } }, { - "id": 9436, + "id": 8359, "properties": { "attached": "true", "disarmed": "false", @@ -265439,7 +255077,7 @@ } }, { - "id": 9437, + "id": 8360, "properties": { "attached": "true", "disarmed": "false", @@ -265451,7 +255089,7 @@ } }, { - "id": 9438, + "id": 8361, "properties": { "attached": "true", "disarmed": "false", @@ -265463,7 +255101,7 @@ } }, { - "id": 9439, + "id": 8362, "properties": { "attached": "true", "disarmed": "false", @@ -265475,7 +255113,7 @@ } }, { - "id": 9440, + "id": 8363, "properties": { "attached": "true", "disarmed": "false", @@ -265487,7 +255125,7 @@ } }, { - "id": 9441, + "id": 8364, "properties": { "attached": "true", "disarmed": "false", @@ -265499,7 +255137,7 @@ } }, { - "id": 9442, + "id": 8365, "properties": { "attached": "true", "disarmed": "false", @@ -265511,7 +255149,7 @@ } }, { - "id": 9443, + "id": 8366, "properties": { "attached": "true", "disarmed": "false", @@ -265523,7 +255161,7 @@ } }, { - "id": 9444, + "id": 8367, "properties": { "attached": "true", "disarmed": "false", @@ -265535,7 +255173,7 @@ } }, { - "id": 9445, + "id": 8368, "properties": { "attached": "true", "disarmed": "false", @@ -265547,7 +255185,7 @@ } }, { - "id": 9446, + "id": 8369, "properties": { "attached": "true", "disarmed": "false", @@ -265559,7 +255197,7 @@ } }, { - "id": 9447, + "id": 8370, "properties": { "attached": "true", "disarmed": "false", @@ -265571,7 +255209,7 @@ } }, { - "id": 9448, + "id": 8371, "properties": { "attached": "true", "disarmed": "false", @@ -265583,7 +255221,7 @@ } }, { - "id": 9449, + "id": 8372, "properties": { "attached": "true", "disarmed": "false", @@ -265595,7 +255233,7 @@ } }, { - "id": 9450, + "id": 8373, "properties": { "attached": "true", "disarmed": "false", @@ -265607,7 +255245,7 @@ } }, { - "id": 9451, + "id": 8374, "properties": { "attached": "true", "disarmed": "false", @@ -265619,7 +255257,7 @@ } }, { - "id": 9452, + "id": 8375, "properties": { "attached": "true", "disarmed": "false", @@ -265631,7 +255269,7 @@ } }, { - "id": 9453, + "id": 8376, "properties": { "attached": "true", "disarmed": "false", @@ -265643,7 +255281,7 @@ } }, { - "id": 9454, + "id": 8377, "properties": { "attached": "true", "disarmed": "false", @@ -265655,7 +255293,7 @@ } }, { - "id": 9455, + "id": 8378, "properties": { "attached": "true", "disarmed": "false", @@ -265667,7 +255305,7 @@ } }, { - "id": 9456, + "id": 8379, "properties": { "attached": "true", "disarmed": "false", @@ -265679,7 +255317,7 @@ } }, { - "id": 9457, + "id": 8380, "properties": { "attached": "true", "disarmed": "false", @@ -265691,7 +255329,7 @@ } }, { - "id": 9458, + "id": 8381, "properties": { "attached": "true", "disarmed": "false", @@ -265703,7 +255341,7 @@ } }, { - "id": 9459, + "id": 8382, "properties": { "attached": "true", "disarmed": "false", @@ -265715,7 +255353,7 @@ } }, { - "id": 9460, + "id": 8383, "properties": { "attached": "true", "disarmed": "false", @@ -265727,7 +255365,7 @@ } }, { - "id": 9461, + "id": 8384, "properties": { "attached": "true", "disarmed": "false", @@ -265739,7 +255377,7 @@ } }, { - "id": 9462, + "id": 8385, "properties": { "attached": "false", "disarmed": "true", @@ -265751,7 +255389,7 @@ } }, { - "id": 9463, + "id": 8386, "properties": { "attached": "false", "disarmed": "true", @@ -265763,7 +255401,7 @@ } }, { - "id": 9464, + "id": 8387, "properties": { "attached": "false", "disarmed": "true", @@ -265775,7 +255413,7 @@ } }, { - "id": 9465, + "id": 8388, "properties": { "attached": "false", "disarmed": "true", @@ -265787,7 +255425,7 @@ } }, { - "id": 9466, + "id": 8389, "properties": { "attached": "false", "disarmed": "true", @@ -265799,7 +255437,7 @@ } }, { - "id": 9467, + "id": 8390, "properties": { "attached": "false", "disarmed": "true", @@ -265811,7 +255449,7 @@ } }, { - "id": 9468, + "id": 8391, "properties": { "attached": "false", "disarmed": "true", @@ -265823,7 +255461,7 @@ } }, { - "id": 9469, + "id": 8392, "properties": { "attached": "false", "disarmed": "true", @@ -265835,7 +255473,7 @@ } }, { - "id": 9470, + "id": 8393, "properties": { "attached": "false", "disarmed": "true", @@ -265847,7 +255485,7 @@ } }, { - "id": 9471, + "id": 8394, "properties": { "attached": "false", "disarmed": "true", @@ -265859,7 +255497,7 @@ } }, { - "id": 9472, + "id": 8395, "properties": { "attached": "false", "disarmed": "true", @@ -265871,7 +255509,7 @@ } }, { - "id": 9473, + "id": 8396, "properties": { "attached": "false", "disarmed": "true", @@ -265883,7 +255521,7 @@ } }, { - "id": 9474, + "id": 8397, "properties": { "attached": "false", "disarmed": "true", @@ -265895,7 +255533,7 @@ } }, { - "id": 9475, + "id": 8398, "properties": { "attached": "false", "disarmed": "true", @@ -265907,7 +255545,7 @@ } }, { - "id": 9476, + "id": 8399, "properties": { "attached": "false", "disarmed": "true", @@ -265919,7 +255557,7 @@ } }, { - "id": 9477, + "id": 8400, "properties": { "attached": "false", "disarmed": "true", @@ -265931,7 +255569,7 @@ } }, { - "id": 9478, + "id": 8401, "properties": { "attached": "false", "disarmed": "true", @@ -265943,7 +255581,7 @@ } }, { - "id": 9479, + "id": 8402, "properties": { "attached": "false", "disarmed": "true", @@ -265955,7 +255593,7 @@ } }, { - "id": 9480, + "id": 8403, "properties": { "attached": "false", "disarmed": "true", @@ -265967,7 +255605,7 @@ } }, { - "id": 9481, + "id": 8404, "properties": { "attached": "false", "disarmed": "true", @@ -265979,7 +255617,7 @@ } }, { - "id": 9482, + "id": 8405, "properties": { "attached": "false", "disarmed": "true", @@ -265991,7 +255629,7 @@ } }, { - "id": 9483, + "id": 8406, "properties": { "attached": "false", "disarmed": "true", @@ -266003,7 +255641,7 @@ } }, { - "id": 9484, + "id": 8407, "properties": { "attached": "false", "disarmed": "true", @@ -266015,7 +255653,7 @@ } }, { - "id": 9485, + "id": 8408, "properties": { "attached": "false", "disarmed": "true", @@ -266027,7 +255665,7 @@ } }, { - "id": 9486, + "id": 8409, "properties": { "attached": "false", "disarmed": "true", @@ -266039,7 +255677,7 @@ } }, { - "id": 9487, + "id": 8410, "properties": { "attached": "false", "disarmed": "true", @@ -266051,7 +255689,7 @@ } }, { - "id": 9488, + "id": 8411, "properties": { "attached": "false", "disarmed": "true", @@ -266063,7 +255701,7 @@ } }, { - "id": 9489, + "id": 8412, "properties": { "attached": "false", "disarmed": "true", @@ -266075,7 +255713,7 @@ } }, { - "id": 9490, + "id": 8413, "properties": { "attached": "false", "disarmed": "true", @@ -266087,7 +255725,7 @@ } }, { - "id": 9491, + "id": 8414, "properties": { "attached": "false", "disarmed": "true", @@ -266099,7 +255737,7 @@ } }, { - "id": 9492, + "id": 8415, "properties": { "attached": "false", "disarmed": "true", @@ -266111,7 +255749,7 @@ } }, { - "id": 9493, + "id": 8416, "properties": { "attached": "false", "disarmed": "true", @@ -266123,7 +255761,7 @@ } }, { - "id": 9494, + "id": 8417, "properties": { "attached": "false", "disarmed": "false", @@ -266135,7 +255773,7 @@ } }, { - "id": 9495, + "id": 8418, "properties": { "attached": "false", "disarmed": "false", @@ -266147,7 +255785,7 @@ } }, { - "id": 9496, + "id": 8419, "properties": { "attached": "false", "disarmed": "false", @@ -266159,7 +255797,7 @@ } }, { - "id": 9497, + "id": 8420, "properties": { "attached": "false", "disarmed": "false", @@ -266171,7 +255809,7 @@ } }, { - "id": 9498, + "id": 8421, "properties": { "attached": "false", "disarmed": "false", @@ -266183,7 +255821,7 @@ } }, { - "id": 9499, + "id": 8422, "properties": { "attached": "false", "disarmed": "false", @@ -266195,7 +255833,7 @@ } }, { - "id": 9500, + "id": 8423, "properties": { "attached": "false", "disarmed": "false", @@ -266207,7 +255845,7 @@ } }, { - "id": 9501, + "id": 8424, "properties": { "attached": "false", "disarmed": "false", @@ -266219,7 +255857,7 @@ } }, { - "id": 9502, + "id": 8425, "properties": { "attached": "false", "disarmed": "false", @@ -266231,7 +255869,7 @@ } }, { - "id": 9503, + "id": 8426, "properties": { "attached": "false", "disarmed": "false", @@ -266243,7 +255881,7 @@ } }, { - "id": 9504, + "id": 8427, "properties": { "attached": "false", "disarmed": "false", @@ -266255,7 +255893,7 @@ } }, { - "id": 9505, + "id": 8428, "properties": { "attached": "false", "disarmed": "false", @@ -266267,7 +255905,7 @@ } }, { - "id": 9506, + "id": 8429, "properties": { "attached": "false", "disarmed": "false", @@ -266279,7 +255917,7 @@ } }, { - "id": 9507, + "id": 8430, "properties": { "attached": "false", "disarmed": "false", @@ -266291,7 +255929,7 @@ } }, { - "id": 9508, + "id": 8431, "properties": { "attached": "false", "disarmed": "false", @@ -266303,7 +255941,7 @@ } }, { - "id": 9509, + "id": 8432, "properties": { "attached": "false", "disarmed": "false", @@ -266315,7 +255953,7 @@ } }, { - "id": 9510, + "id": 8433, "properties": { "attached": "false", "disarmed": "false", @@ -266327,7 +255965,7 @@ } }, { - "id": 9511, + "id": 8434, "properties": { "attached": "false", "disarmed": "false", @@ -266339,7 +255977,7 @@ } }, { - "id": 9512, + "id": 8435, "properties": { "attached": "false", "disarmed": "false", @@ -266351,7 +255989,7 @@ } }, { - "id": 9513, + "id": 8436, "properties": { "attached": "false", "disarmed": "false", @@ -266363,7 +256001,7 @@ } }, { - "id": 9514, + "id": 8437, "properties": { "attached": "false", "disarmed": "false", @@ -266375,7 +256013,7 @@ } }, { - "id": 9515, + "id": 8438, "properties": { "attached": "false", "disarmed": "false", @@ -266387,7 +256025,7 @@ } }, { - "id": 9516, + "id": 8439, "properties": { "attached": "false", "disarmed": "false", @@ -266399,7 +256037,7 @@ } }, { - "id": 9517, + "id": 8440, "properties": { "attached": "false", "disarmed": "false", @@ -266411,7 +256049,7 @@ } }, { - "id": 9518, + "id": 8441, "properties": { "attached": "false", "disarmed": "false", @@ -266423,7 +256061,7 @@ } }, { - "id": 9519, + "id": 8442, "properties": { "attached": "false", "disarmed": "false", @@ -266435,7 +256073,7 @@ } }, { - "id": 9520, + "id": 8443, "properties": { "attached": "false", "disarmed": "false", @@ -266447,7 +256085,7 @@ } }, { - "id": 9521, + "id": 8444, "properties": { "attached": "false", "disarmed": "false", @@ -266459,7 +256097,7 @@ } }, { - "id": 9522, + "id": 8445, "properties": { "attached": "false", "disarmed": "false", @@ -266471,7 +256109,7 @@ } }, { - "id": 9523, + "id": 8446, "properties": { "attached": "false", "disarmed": "false", @@ -266483,7 +256121,7 @@ } }, { - "id": 9524, + "id": 8447, "properties": { "attached": "false", "disarmed": "false", @@ -266496,7 +256134,7 @@ }, { "default": true, - "id": 9525, + "id": 8448, "properties": { "attached": "false", "disarmed": "false", @@ -266532,7 +256170,7 @@ }, "states": [ { - "id": 9382, + "id": 8305, "properties": { "attached": "true", "facing": "north", @@ -266540,7 +256178,7 @@ } }, { - "id": 9383, + "id": 8306, "properties": { "attached": "true", "facing": "north", @@ -266548,7 +256186,7 @@ } }, { - "id": 9384, + "id": 8307, "properties": { "attached": "true", "facing": "south", @@ -266556,7 +256194,7 @@ } }, { - "id": 9385, + "id": 8308, "properties": { "attached": "true", "facing": "south", @@ -266564,7 +256202,7 @@ } }, { - "id": 9386, + "id": 8309, "properties": { "attached": "true", "facing": "west", @@ -266572,7 +256210,7 @@ } }, { - "id": 9387, + "id": 8310, "properties": { "attached": "true", "facing": "west", @@ -266580,7 +256218,7 @@ } }, { - "id": 9388, + "id": 8311, "properties": { "attached": "true", "facing": "east", @@ -266588,7 +256226,7 @@ } }, { - "id": 9389, + "id": 8312, "properties": { "attached": "true", "facing": "east", @@ -266596,7 +256234,7 @@ } }, { - "id": 9390, + "id": 8313, "properties": { "attached": "false", "facing": "north", @@ -266605,7 +256243,7 @@ }, { "default": true, - "id": 9391, + "id": 8314, "properties": { "attached": "false", "facing": "north", @@ -266613,7 +256251,7 @@ } }, { - "id": 9392, + "id": 8315, "properties": { "attached": "false", "facing": "south", @@ -266621,7 +256259,7 @@ } }, { - "id": 9393, + "id": 8316, "properties": { "attached": "false", "facing": "south", @@ -266629,7 +256267,7 @@ } }, { - "id": 9394, + "id": 8317, "properties": { "attached": "false", "facing": "west", @@ -266637,7 +256275,7 @@ } }, { - "id": 9395, + "id": 8318, "properties": { "attached": "false", "facing": "west", @@ -266645,7 +256283,7 @@ } }, { - "id": 9396, + "id": 8319, "properties": { "attached": "false", "facing": "east", @@ -266653,7 +256291,7 @@ } }, { - "id": 9397, + "id": 8320, "properties": { "attached": "false", "facing": "east", @@ -266677,13 +256315,13 @@ "states": [ { "default": true, - "id": 14955, + "id": 13846, "properties": { "waterlogged": "true" } }, { - "id": 14956, + "id": 13847, "properties": { "waterlogged": "false" } @@ -266699,7 +256337,7 @@ "states": [ { "default": true, - "id": 14940 + "id": 13831 } ] }, @@ -266718,13 +256356,13 @@ "states": [ { "default": true, - "id": 14975, + "id": 13866, "properties": { "waterlogged": "true" } }, { - "id": 14976, + "id": 13867, "properties": { "waterlogged": "false" } @@ -266752,56 +256390,56 @@ "states": [ { "default": true, - "id": 15025, + "id": 13916, "properties": { "facing": "north", "waterlogged": "true" } }, { - "id": 15026, + "id": 13917, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 15027, + "id": 13918, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 15028, + "id": 13919, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 15029, + "id": 13920, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 15030, + "id": 13921, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 15031, + "id": 13922, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 15032, + "id": 13923, "properties": { "facing": "east", "waterlogged": "false" @@ -266817,7 +256455,7 @@ "states": [ { "default": true, - "id": 23250 + "id": 22109 } ] }, @@ -266839,21 +256477,21 @@ }, "states": [ { - "id": 24074, + "id": 22933, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 24075, + "id": 22934, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 24076, + "id": 22935, "properties": { "type": "bottom", "waterlogged": "true" @@ -266861,21 +256499,21 @@ }, { "default": true, - "id": 24077, + "id": 22936, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 24078, + "id": 22937, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 24079, + "id": 22938, "properties": { "type": "double", "waterlogged": "false" @@ -266916,7 +256554,7 @@ }, "states": [ { - "id": 24080, + "id": 22939, "properties": { "facing": "north", "half": "top", @@ -266925,7 +256563,7 @@ } }, { - "id": 24081, + "id": 22940, "properties": { "facing": "north", "half": "top", @@ -266934,7 +256572,7 @@ } }, { - "id": 24082, + "id": 22941, "properties": { "facing": "north", "half": "top", @@ -266943,7 +256581,7 @@ } }, { - "id": 24083, + "id": 22942, "properties": { "facing": "north", "half": "top", @@ -266952,7 +256590,7 @@ } }, { - "id": 24084, + "id": 22943, "properties": { "facing": "north", "half": "top", @@ -266961,7 +256599,7 @@ } }, { - "id": 24085, + "id": 22944, "properties": { "facing": "north", "half": "top", @@ -266970,7 +256608,7 @@ } }, { - "id": 24086, + "id": 22945, "properties": { "facing": "north", "half": "top", @@ -266979,7 +256617,7 @@ } }, { - "id": 24087, + "id": 22946, "properties": { "facing": "north", "half": "top", @@ -266988,7 +256626,7 @@ } }, { - "id": 24088, + "id": 22947, "properties": { "facing": "north", "half": "top", @@ -266997,7 +256635,7 @@ } }, { - "id": 24089, + "id": 22948, "properties": { "facing": "north", "half": "top", @@ -267006,7 +256644,7 @@ } }, { - "id": 24090, + "id": 22949, "properties": { "facing": "north", "half": "bottom", @@ -267016,7 +256654,7 @@ }, { "default": true, - "id": 24091, + "id": 22950, "properties": { "facing": "north", "half": "bottom", @@ -267025,7 +256663,7 @@ } }, { - "id": 24092, + "id": 22951, "properties": { "facing": "north", "half": "bottom", @@ -267034,7 +256672,7 @@ } }, { - "id": 24093, + "id": 22952, "properties": { "facing": "north", "half": "bottom", @@ -267043,7 +256681,7 @@ } }, { - "id": 24094, + "id": 22953, "properties": { "facing": "north", "half": "bottom", @@ -267052,7 +256690,7 @@ } }, { - "id": 24095, + "id": 22954, "properties": { "facing": "north", "half": "bottom", @@ -267061,7 +256699,7 @@ } }, { - "id": 24096, + "id": 22955, "properties": { "facing": "north", "half": "bottom", @@ -267070,7 +256708,7 @@ } }, { - "id": 24097, + "id": 22956, "properties": { "facing": "north", "half": "bottom", @@ -267079,7 +256717,7 @@ } }, { - "id": 24098, + "id": 22957, "properties": { "facing": "north", "half": "bottom", @@ -267088,7 +256726,7 @@ } }, { - "id": 24099, + "id": 22958, "properties": { "facing": "north", "half": "bottom", @@ -267097,7 +256735,7 @@ } }, { - "id": 24100, + "id": 22959, "properties": { "facing": "south", "half": "top", @@ -267106,7 +256744,7 @@ } }, { - "id": 24101, + "id": 22960, "properties": { "facing": "south", "half": "top", @@ -267115,7 +256753,7 @@ } }, { - "id": 24102, + "id": 22961, "properties": { "facing": "south", "half": "top", @@ -267124,7 +256762,7 @@ } }, { - "id": 24103, + "id": 22962, "properties": { "facing": "south", "half": "top", @@ -267133,7 +256771,7 @@ } }, { - "id": 24104, + "id": 22963, "properties": { "facing": "south", "half": "top", @@ -267142,7 +256780,7 @@ } }, { - "id": 24105, + "id": 22964, "properties": { "facing": "south", "half": "top", @@ -267151,7 +256789,7 @@ } }, { - "id": 24106, + "id": 22965, "properties": { "facing": "south", "half": "top", @@ -267160,7 +256798,7 @@ } }, { - "id": 24107, + "id": 22966, "properties": { "facing": "south", "half": "top", @@ -267169,7 +256807,7 @@ } }, { - "id": 24108, + "id": 22967, "properties": { "facing": "south", "half": "top", @@ -267178,7 +256816,7 @@ } }, { - "id": 24109, + "id": 22968, "properties": { "facing": "south", "half": "top", @@ -267187,7 +256825,7 @@ } }, { - "id": 24110, + "id": 22969, "properties": { "facing": "south", "half": "bottom", @@ -267196,7 +256834,7 @@ } }, { - "id": 24111, + "id": 22970, "properties": { "facing": "south", "half": "bottom", @@ -267205,7 +256843,7 @@ } }, { - "id": 24112, + "id": 22971, "properties": { "facing": "south", "half": "bottom", @@ -267214,7 +256852,7 @@ } }, { - "id": 24113, + "id": 22972, "properties": { "facing": "south", "half": "bottom", @@ -267223,7 +256861,7 @@ } }, { - "id": 24114, + "id": 22973, "properties": { "facing": "south", "half": "bottom", @@ -267232,7 +256870,7 @@ } }, { - "id": 24115, + "id": 22974, "properties": { "facing": "south", "half": "bottom", @@ -267241,7 +256879,7 @@ } }, { - "id": 24116, + "id": 22975, "properties": { "facing": "south", "half": "bottom", @@ -267250,7 +256888,7 @@ } }, { - "id": 24117, + "id": 22976, "properties": { "facing": "south", "half": "bottom", @@ -267259,7 +256897,7 @@ } }, { - "id": 24118, + "id": 22977, "properties": { "facing": "south", "half": "bottom", @@ -267268,7 +256906,7 @@ } }, { - "id": 24119, + "id": 22978, "properties": { "facing": "south", "half": "bottom", @@ -267277,7 +256915,7 @@ } }, { - "id": 24120, + "id": 22979, "properties": { "facing": "west", "half": "top", @@ -267286,7 +256924,7 @@ } }, { - "id": 24121, + "id": 22980, "properties": { "facing": "west", "half": "top", @@ -267295,7 +256933,7 @@ } }, { - "id": 24122, + "id": 22981, "properties": { "facing": "west", "half": "top", @@ -267304,7 +256942,7 @@ } }, { - "id": 24123, + "id": 22982, "properties": { "facing": "west", "half": "top", @@ -267313,7 +256951,7 @@ } }, { - "id": 24124, + "id": 22983, "properties": { "facing": "west", "half": "top", @@ -267322,7 +256960,7 @@ } }, { - "id": 24125, + "id": 22984, "properties": { "facing": "west", "half": "top", @@ -267331,7 +256969,7 @@ } }, { - "id": 24126, + "id": 22985, "properties": { "facing": "west", "half": "top", @@ -267340,7 +256978,7 @@ } }, { - "id": 24127, + "id": 22986, "properties": { "facing": "west", "half": "top", @@ -267349,7 +256987,7 @@ } }, { - "id": 24128, + "id": 22987, "properties": { "facing": "west", "half": "top", @@ -267358,7 +256996,7 @@ } }, { - "id": 24129, + "id": 22988, "properties": { "facing": "west", "half": "top", @@ -267367,7 +257005,7 @@ } }, { - "id": 24130, + "id": 22989, "properties": { "facing": "west", "half": "bottom", @@ -267376,7 +257014,7 @@ } }, { - "id": 24131, + "id": 22990, "properties": { "facing": "west", "half": "bottom", @@ -267385,7 +257023,7 @@ } }, { - "id": 24132, + "id": 22991, "properties": { "facing": "west", "half": "bottom", @@ -267394,7 +257032,7 @@ } }, { - "id": 24133, + "id": 22992, "properties": { "facing": "west", "half": "bottom", @@ -267403,7 +257041,7 @@ } }, { - "id": 24134, + "id": 22993, "properties": { "facing": "west", "half": "bottom", @@ -267412,7 +257050,7 @@ } }, { - "id": 24135, + "id": 22994, "properties": { "facing": "west", "half": "bottom", @@ -267421,7 +257059,7 @@ } }, { - "id": 24136, + "id": 22995, "properties": { "facing": "west", "half": "bottom", @@ -267430,7 +257068,7 @@ } }, { - "id": 24137, + "id": 22996, "properties": { "facing": "west", "half": "bottom", @@ -267439,7 +257077,7 @@ } }, { - "id": 24138, + "id": 22997, "properties": { "facing": "west", "half": "bottom", @@ -267448,7 +257086,7 @@ } }, { - "id": 24139, + "id": 22998, "properties": { "facing": "west", "half": "bottom", @@ -267457,7 +257095,7 @@ } }, { - "id": 24140, + "id": 22999, "properties": { "facing": "east", "half": "top", @@ -267466,7 +257104,7 @@ } }, { - "id": 24141, + "id": 23000, "properties": { "facing": "east", "half": "top", @@ -267475,7 +257113,7 @@ } }, { - "id": 24142, + "id": 23001, "properties": { "facing": "east", "half": "top", @@ -267484,7 +257122,7 @@ } }, { - "id": 24143, + "id": 23002, "properties": { "facing": "east", "half": "top", @@ -267493,7 +257131,7 @@ } }, { - "id": 24144, + "id": 23003, "properties": { "facing": "east", "half": "top", @@ -267502,7 +257140,7 @@ } }, { - "id": 24145, + "id": 23004, "properties": { "facing": "east", "half": "top", @@ -267511,7 +257149,7 @@ } }, { - "id": 24146, + "id": 23005, "properties": { "facing": "east", "half": "top", @@ -267520,7 +257158,7 @@ } }, { - "id": 24147, + "id": 23006, "properties": { "facing": "east", "half": "top", @@ -267529,7 +257167,7 @@ } }, { - "id": 24148, + "id": 23007, "properties": { "facing": "east", "half": "top", @@ -267538,7 +257176,7 @@ } }, { - "id": 24149, + "id": 23008, "properties": { "facing": "east", "half": "top", @@ -267547,7 +257185,7 @@ } }, { - "id": 24150, + "id": 23009, "properties": { "facing": "east", "half": "bottom", @@ -267556,7 +257194,7 @@ } }, { - "id": 24151, + "id": 23010, "properties": { "facing": "east", "half": "bottom", @@ -267565,7 +257203,7 @@ } }, { - "id": 24152, + "id": 23011, "properties": { "facing": "east", "half": "bottom", @@ -267574,7 +257212,7 @@ } }, { - "id": 24153, + "id": 23012, "properties": { "facing": "east", "half": "bottom", @@ -267583,7 +257221,7 @@ } }, { - "id": 24154, + "id": 23013, "properties": { "facing": "east", "half": "bottom", @@ -267592,7 +257230,7 @@ } }, { - "id": 24155, + "id": 23014, "properties": { "facing": "east", "half": "bottom", @@ -267601,7 +257239,7 @@ } }, { - "id": 24156, + "id": 23015, "properties": { "facing": "east", "half": "bottom", @@ -267610,7 +257248,7 @@ } }, { - "id": 24157, + "id": 23016, "properties": { "facing": "east", "half": "bottom", @@ -267619,7 +257257,7 @@ } }, { - "id": 24158, + "id": 23017, "properties": { "facing": "east", "half": "bottom", @@ -267628,7 +257266,7 @@ } }, { - "id": 24159, + "id": 23018, "properties": { "facing": "east", "half": "bottom", @@ -267675,7 +257313,7 @@ }, "states": [ { - "id": 24160, + "id": 23019, "properties": { "east": "none", "north": "none", @@ -267686,7 +257324,7 @@ } }, { - "id": 24161, + "id": 23020, "properties": { "east": "none", "north": "none", @@ -267697,7 +257335,7 @@ } }, { - "id": 24162, + "id": 23021, "properties": { "east": "none", "north": "none", @@ -267709,7 +257347,7 @@ }, { "default": true, - "id": 24163, + "id": 23022, "properties": { "east": "none", "north": "none", @@ -267720,7 +257358,7 @@ } }, { - "id": 24164, + "id": 23023, "properties": { "east": "none", "north": "none", @@ -267731,7 +257369,7 @@ } }, { - "id": 24165, + "id": 23024, "properties": { "east": "none", "north": "none", @@ -267742,7 +257380,7 @@ } }, { - "id": 24166, + "id": 23025, "properties": { "east": "none", "north": "none", @@ -267753,7 +257391,7 @@ } }, { - "id": 24167, + "id": 23026, "properties": { "east": "none", "north": "none", @@ -267764,7 +257402,7 @@ } }, { - "id": 24168, + "id": 23027, "properties": { "east": "none", "north": "none", @@ -267775,7 +257413,7 @@ } }, { - "id": 24169, + "id": 23028, "properties": { "east": "none", "north": "none", @@ -267786,7 +257424,7 @@ } }, { - "id": 24170, + "id": 23029, "properties": { "east": "none", "north": "none", @@ -267797,7 +257435,7 @@ } }, { - "id": 24171, + "id": 23030, "properties": { "east": "none", "north": "none", @@ -267808,7 +257446,7 @@ } }, { - "id": 24172, + "id": 23031, "properties": { "east": "none", "north": "none", @@ -267819,7 +257457,7 @@ } }, { - "id": 24173, + "id": 23032, "properties": { "east": "none", "north": "none", @@ -267830,7 +257468,7 @@ } }, { - "id": 24174, + "id": 23033, "properties": { "east": "none", "north": "none", @@ -267841,7 +257479,7 @@ } }, { - "id": 24175, + "id": 23034, "properties": { "east": "none", "north": "none", @@ -267852,7 +257490,7 @@ } }, { - "id": 24176, + "id": 23035, "properties": { "east": "none", "north": "none", @@ -267863,7 +257501,7 @@ } }, { - "id": 24177, + "id": 23036, "properties": { "east": "none", "north": "none", @@ -267874,7 +257512,7 @@ } }, { - "id": 24178, + "id": 23037, "properties": { "east": "none", "north": "none", @@ -267885,7 +257523,7 @@ } }, { - "id": 24179, + "id": 23038, "properties": { "east": "none", "north": "none", @@ -267896,7 +257534,7 @@ } }, { - "id": 24180, + "id": 23039, "properties": { "east": "none", "north": "none", @@ -267907,7 +257545,7 @@ } }, { - "id": 24181, + "id": 23040, "properties": { "east": "none", "north": "none", @@ -267918,7 +257556,7 @@ } }, { - "id": 24182, + "id": 23041, "properties": { "east": "none", "north": "none", @@ -267929,7 +257567,7 @@ } }, { - "id": 24183, + "id": 23042, "properties": { "east": "none", "north": "none", @@ -267940,7 +257578,7 @@ } }, { - "id": 24184, + "id": 23043, "properties": { "east": "none", "north": "none", @@ -267951,7 +257589,7 @@ } }, { - "id": 24185, + "id": 23044, "properties": { "east": "none", "north": "none", @@ -267962,7 +257600,7 @@ } }, { - "id": 24186, + "id": 23045, "properties": { "east": "none", "north": "none", @@ -267973,7 +257611,7 @@ } }, { - "id": 24187, + "id": 23046, "properties": { "east": "none", "north": "none", @@ -267984,7 +257622,7 @@ } }, { - "id": 24188, + "id": 23047, "properties": { "east": "none", "north": "none", @@ -267995,7 +257633,7 @@ } }, { - "id": 24189, + "id": 23048, "properties": { "east": "none", "north": "none", @@ -268006,7 +257644,7 @@ } }, { - "id": 24190, + "id": 23049, "properties": { "east": "none", "north": "none", @@ -268017,7 +257655,7 @@ } }, { - "id": 24191, + "id": 23050, "properties": { "east": "none", "north": "none", @@ -268028,7 +257666,7 @@ } }, { - "id": 24192, + "id": 23051, "properties": { "east": "none", "north": "none", @@ -268039,7 +257677,7 @@ } }, { - "id": 24193, + "id": 23052, "properties": { "east": "none", "north": "none", @@ -268050,7 +257688,7 @@ } }, { - "id": 24194, + "id": 23053, "properties": { "east": "none", "north": "none", @@ -268061,7 +257699,7 @@ } }, { - "id": 24195, + "id": 23054, "properties": { "east": "none", "north": "none", @@ -268072,7 +257710,7 @@ } }, { - "id": 24196, + "id": 23055, "properties": { "east": "none", "north": "low", @@ -268083,7 +257721,7 @@ } }, { - "id": 24197, + "id": 23056, "properties": { "east": "none", "north": "low", @@ -268094,7 +257732,7 @@ } }, { - "id": 24198, + "id": 23057, "properties": { "east": "none", "north": "low", @@ -268105,7 +257743,7 @@ } }, { - "id": 24199, + "id": 23058, "properties": { "east": "none", "north": "low", @@ -268116,7 +257754,7 @@ } }, { - "id": 24200, + "id": 23059, "properties": { "east": "none", "north": "low", @@ -268127,7 +257765,7 @@ } }, { - "id": 24201, + "id": 23060, "properties": { "east": "none", "north": "low", @@ -268138,7 +257776,7 @@ } }, { - "id": 24202, + "id": 23061, "properties": { "east": "none", "north": "low", @@ -268149,7 +257787,7 @@ } }, { - "id": 24203, + "id": 23062, "properties": { "east": "none", "north": "low", @@ -268160,7 +257798,7 @@ } }, { - "id": 24204, + "id": 23063, "properties": { "east": "none", "north": "low", @@ -268171,7 +257809,7 @@ } }, { - "id": 24205, + "id": 23064, "properties": { "east": "none", "north": "low", @@ -268182,7 +257820,7 @@ } }, { - "id": 24206, + "id": 23065, "properties": { "east": "none", "north": "low", @@ -268193,7 +257831,7 @@ } }, { - "id": 24207, + "id": 23066, "properties": { "east": "none", "north": "low", @@ -268204,7 +257842,7 @@ } }, { - "id": 24208, + "id": 23067, "properties": { "east": "none", "north": "low", @@ -268215,7 +257853,7 @@ } }, { - "id": 24209, + "id": 23068, "properties": { "east": "none", "north": "low", @@ -268226,7 +257864,7 @@ } }, { - "id": 24210, + "id": 23069, "properties": { "east": "none", "north": "low", @@ -268237,7 +257875,7 @@ } }, { - "id": 24211, + "id": 23070, "properties": { "east": "none", "north": "low", @@ -268248,7 +257886,7 @@ } }, { - "id": 24212, + "id": 23071, "properties": { "east": "none", "north": "low", @@ -268259,7 +257897,7 @@ } }, { - "id": 24213, + "id": 23072, "properties": { "east": "none", "north": "low", @@ -268270,7 +257908,7 @@ } }, { - "id": 24214, + "id": 23073, "properties": { "east": "none", "north": "low", @@ -268281,7 +257919,7 @@ } }, { - "id": 24215, + "id": 23074, "properties": { "east": "none", "north": "low", @@ -268292,7 +257930,7 @@ } }, { - "id": 24216, + "id": 23075, "properties": { "east": "none", "north": "low", @@ -268303,7 +257941,7 @@ } }, { - "id": 24217, + "id": 23076, "properties": { "east": "none", "north": "low", @@ -268314,7 +257952,7 @@ } }, { - "id": 24218, + "id": 23077, "properties": { "east": "none", "north": "low", @@ -268325,7 +257963,7 @@ } }, { - "id": 24219, + "id": 23078, "properties": { "east": "none", "north": "low", @@ -268336,7 +257974,7 @@ } }, { - "id": 24220, + "id": 23079, "properties": { "east": "none", "north": "low", @@ -268347,7 +257985,7 @@ } }, { - "id": 24221, + "id": 23080, "properties": { "east": "none", "north": "low", @@ -268358,7 +257996,7 @@ } }, { - "id": 24222, + "id": 23081, "properties": { "east": "none", "north": "low", @@ -268369,7 +258007,7 @@ } }, { - "id": 24223, + "id": 23082, "properties": { "east": "none", "north": "low", @@ -268380,7 +258018,7 @@ } }, { - "id": 24224, + "id": 23083, "properties": { "east": "none", "north": "low", @@ -268391,7 +258029,7 @@ } }, { - "id": 24225, + "id": 23084, "properties": { "east": "none", "north": "low", @@ -268402,7 +258040,7 @@ } }, { - "id": 24226, + "id": 23085, "properties": { "east": "none", "north": "low", @@ -268413,7 +258051,7 @@ } }, { - "id": 24227, + "id": 23086, "properties": { "east": "none", "north": "low", @@ -268424,7 +258062,7 @@ } }, { - "id": 24228, + "id": 23087, "properties": { "east": "none", "north": "low", @@ -268435,7 +258073,7 @@ } }, { - "id": 24229, + "id": 23088, "properties": { "east": "none", "north": "low", @@ -268446,7 +258084,7 @@ } }, { - "id": 24230, + "id": 23089, "properties": { "east": "none", "north": "low", @@ -268457,7 +258095,7 @@ } }, { - "id": 24231, + "id": 23090, "properties": { "east": "none", "north": "low", @@ -268468,7 +258106,7 @@ } }, { - "id": 24232, + "id": 23091, "properties": { "east": "none", "north": "tall", @@ -268479,7 +258117,7 @@ } }, { - "id": 24233, + "id": 23092, "properties": { "east": "none", "north": "tall", @@ -268490,7 +258128,7 @@ } }, { - "id": 24234, + "id": 23093, "properties": { "east": "none", "north": "tall", @@ -268501,7 +258139,7 @@ } }, { - "id": 24235, + "id": 23094, "properties": { "east": "none", "north": "tall", @@ -268512,7 +258150,7 @@ } }, { - "id": 24236, + "id": 23095, "properties": { "east": "none", "north": "tall", @@ -268523,7 +258161,7 @@ } }, { - "id": 24237, + "id": 23096, "properties": { "east": "none", "north": "tall", @@ -268534,7 +258172,7 @@ } }, { - "id": 24238, + "id": 23097, "properties": { "east": "none", "north": "tall", @@ -268545,7 +258183,7 @@ } }, { - "id": 24239, + "id": 23098, "properties": { "east": "none", "north": "tall", @@ -268556,7 +258194,7 @@ } }, { - "id": 24240, + "id": 23099, "properties": { "east": "none", "north": "tall", @@ -268567,7 +258205,7 @@ } }, { - "id": 24241, + "id": 23100, "properties": { "east": "none", "north": "tall", @@ -268578,7 +258216,7 @@ } }, { - "id": 24242, + "id": 23101, "properties": { "east": "none", "north": "tall", @@ -268589,7 +258227,7 @@ } }, { - "id": 24243, + "id": 23102, "properties": { "east": "none", "north": "tall", @@ -268600,7 +258238,7 @@ } }, { - "id": 24244, + "id": 23103, "properties": { "east": "none", "north": "tall", @@ -268611,7 +258249,7 @@ } }, { - "id": 24245, + "id": 23104, "properties": { "east": "none", "north": "tall", @@ -268622,7 +258260,7 @@ } }, { - "id": 24246, + "id": 23105, "properties": { "east": "none", "north": "tall", @@ -268633,7 +258271,7 @@ } }, { - "id": 24247, + "id": 23106, "properties": { "east": "none", "north": "tall", @@ -268644,7 +258282,7 @@ } }, { - "id": 24248, + "id": 23107, "properties": { "east": "none", "north": "tall", @@ -268655,7 +258293,7 @@ } }, { - "id": 24249, + "id": 23108, "properties": { "east": "none", "north": "tall", @@ -268666,7 +258304,7 @@ } }, { - "id": 24250, + "id": 23109, "properties": { "east": "none", "north": "tall", @@ -268677,7 +258315,7 @@ } }, { - "id": 24251, + "id": 23110, "properties": { "east": "none", "north": "tall", @@ -268688,7 +258326,7 @@ } }, { - "id": 24252, + "id": 23111, "properties": { "east": "none", "north": "tall", @@ -268699,7 +258337,7 @@ } }, { - "id": 24253, + "id": 23112, "properties": { "east": "none", "north": "tall", @@ -268710,7 +258348,7 @@ } }, { - "id": 24254, + "id": 23113, "properties": { "east": "none", "north": "tall", @@ -268721,7 +258359,7 @@ } }, { - "id": 24255, + "id": 23114, "properties": { "east": "none", "north": "tall", @@ -268732,7 +258370,7 @@ } }, { - "id": 24256, + "id": 23115, "properties": { "east": "none", "north": "tall", @@ -268743,7 +258381,7 @@ } }, { - "id": 24257, + "id": 23116, "properties": { "east": "none", "north": "tall", @@ -268754,7 +258392,7 @@ } }, { - "id": 24258, + "id": 23117, "properties": { "east": "none", "north": "tall", @@ -268765,7 +258403,7 @@ } }, { - "id": 24259, + "id": 23118, "properties": { "east": "none", "north": "tall", @@ -268776,7 +258414,7 @@ } }, { - "id": 24260, + "id": 23119, "properties": { "east": "none", "north": "tall", @@ -268787,7 +258425,7 @@ } }, { - "id": 24261, + "id": 23120, "properties": { "east": "none", "north": "tall", @@ -268798,7 +258436,7 @@ } }, { - "id": 24262, + "id": 23121, "properties": { "east": "none", "north": "tall", @@ -268809,7 +258447,7 @@ } }, { - "id": 24263, + "id": 23122, "properties": { "east": "none", "north": "tall", @@ -268820,7 +258458,7 @@ } }, { - "id": 24264, + "id": 23123, "properties": { "east": "none", "north": "tall", @@ -268831,7 +258469,7 @@ } }, { - "id": 24265, + "id": 23124, "properties": { "east": "none", "north": "tall", @@ -268842,7 +258480,7 @@ } }, { - "id": 24266, + "id": 23125, "properties": { "east": "none", "north": "tall", @@ -268853,7 +258491,7 @@ } }, { - "id": 24267, + "id": 23126, "properties": { "east": "none", "north": "tall", @@ -268864,7 +258502,7 @@ } }, { - "id": 24268, + "id": 23127, "properties": { "east": "low", "north": "none", @@ -268875,7 +258513,7 @@ } }, { - "id": 24269, + "id": 23128, "properties": { "east": "low", "north": "none", @@ -268886,7 +258524,7 @@ } }, { - "id": 24270, + "id": 23129, "properties": { "east": "low", "north": "none", @@ -268897,7 +258535,7 @@ } }, { - "id": 24271, + "id": 23130, "properties": { "east": "low", "north": "none", @@ -268908,7 +258546,7 @@ } }, { - "id": 24272, + "id": 23131, "properties": { "east": "low", "north": "none", @@ -268919,7 +258557,7 @@ } }, { - "id": 24273, + "id": 23132, "properties": { "east": "low", "north": "none", @@ -268930,7 +258568,7 @@ } }, { - "id": 24274, + "id": 23133, "properties": { "east": "low", "north": "none", @@ -268941,7 +258579,7 @@ } }, { - "id": 24275, + "id": 23134, "properties": { "east": "low", "north": "none", @@ -268952,7 +258590,7 @@ } }, { - "id": 24276, + "id": 23135, "properties": { "east": "low", "north": "none", @@ -268963,7 +258601,7 @@ } }, { - "id": 24277, + "id": 23136, "properties": { "east": "low", "north": "none", @@ -268974,7 +258612,7 @@ } }, { - "id": 24278, + "id": 23137, "properties": { "east": "low", "north": "none", @@ -268985,7 +258623,7 @@ } }, { - "id": 24279, + "id": 23138, "properties": { "east": "low", "north": "none", @@ -268996,7 +258634,7 @@ } }, { - "id": 24280, + "id": 23139, "properties": { "east": "low", "north": "none", @@ -269007,7 +258645,7 @@ } }, { - "id": 24281, + "id": 23140, "properties": { "east": "low", "north": "none", @@ -269018,7 +258656,7 @@ } }, { - "id": 24282, + "id": 23141, "properties": { "east": "low", "north": "none", @@ -269029,7 +258667,7 @@ } }, { - "id": 24283, + "id": 23142, "properties": { "east": "low", "north": "none", @@ -269040,7 +258678,7 @@ } }, { - "id": 24284, + "id": 23143, "properties": { "east": "low", "north": "none", @@ -269051,7 +258689,7 @@ } }, { - "id": 24285, + "id": 23144, "properties": { "east": "low", "north": "none", @@ -269062,7 +258700,7 @@ } }, { - "id": 24286, + "id": 23145, "properties": { "east": "low", "north": "none", @@ -269073,7 +258711,7 @@ } }, { - "id": 24287, + "id": 23146, "properties": { "east": "low", "north": "none", @@ -269084,7 +258722,7 @@ } }, { - "id": 24288, + "id": 23147, "properties": { "east": "low", "north": "none", @@ -269095,7 +258733,7 @@ } }, { - "id": 24289, + "id": 23148, "properties": { "east": "low", "north": "none", @@ -269106,7 +258744,7 @@ } }, { - "id": 24290, + "id": 23149, "properties": { "east": "low", "north": "none", @@ -269117,7 +258755,7 @@ } }, { - "id": 24291, + "id": 23150, "properties": { "east": "low", "north": "none", @@ -269128,7 +258766,7 @@ } }, { - "id": 24292, + "id": 23151, "properties": { "east": "low", "north": "none", @@ -269139,7 +258777,7 @@ } }, { - "id": 24293, + "id": 23152, "properties": { "east": "low", "north": "none", @@ -269150,7 +258788,7 @@ } }, { - "id": 24294, + "id": 23153, "properties": { "east": "low", "north": "none", @@ -269161,7 +258799,7 @@ } }, { - "id": 24295, + "id": 23154, "properties": { "east": "low", "north": "none", @@ -269172,7 +258810,7 @@ } }, { - "id": 24296, + "id": 23155, "properties": { "east": "low", "north": "none", @@ -269183,7 +258821,7 @@ } }, { - "id": 24297, + "id": 23156, "properties": { "east": "low", "north": "none", @@ -269194,7 +258832,7 @@ } }, { - "id": 24298, + "id": 23157, "properties": { "east": "low", "north": "none", @@ -269205,7 +258843,7 @@ } }, { - "id": 24299, + "id": 23158, "properties": { "east": "low", "north": "none", @@ -269216,7 +258854,7 @@ } }, { - "id": 24300, + "id": 23159, "properties": { "east": "low", "north": "none", @@ -269227,7 +258865,7 @@ } }, { - "id": 24301, + "id": 23160, "properties": { "east": "low", "north": "none", @@ -269238,7 +258876,7 @@ } }, { - "id": 24302, + "id": 23161, "properties": { "east": "low", "north": "none", @@ -269249,7 +258887,7 @@ } }, { - "id": 24303, + "id": 23162, "properties": { "east": "low", "north": "none", @@ -269260,7 +258898,7 @@ } }, { - "id": 24304, + "id": 23163, "properties": { "east": "low", "north": "low", @@ -269271,7 +258909,7 @@ } }, { - "id": 24305, + "id": 23164, "properties": { "east": "low", "north": "low", @@ -269282,7 +258920,7 @@ } }, { - "id": 24306, + "id": 23165, "properties": { "east": "low", "north": "low", @@ -269293,7 +258931,7 @@ } }, { - "id": 24307, + "id": 23166, "properties": { "east": "low", "north": "low", @@ -269304,7 +258942,7 @@ } }, { - "id": 24308, + "id": 23167, "properties": { "east": "low", "north": "low", @@ -269315,7 +258953,7 @@ } }, { - "id": 24309, + "id": 23168, "properties": { "east": "low", "north": "low", @@ -269326,7 +258964,7 @@ } }, { - "id": 24310, + "id": 23169, "properties": { "east": "low", "north": "low", @@ -269337,7 +258975,7 @@ } }, { - "id": 24311, + "id": 23170, "properties": { "east": "low", "north": "low", @@ -269348,7 +258986,7 @@ } }, { - "id": 24312, + "id": 23171, "properties": { "east": "low", "north": "low", @@ -269359,7 +258997,7 @@ } }, { - "id": 24313, + "id": 23172, "properties": { "east": "low", "north": "low", @@ -269370,7 +259008,7 @@ } }, { - "id": 24314, + "id": 23173, "properties": { "east": "low", "north": "low", @@ -269381,7 +259019,7 @@ } }, { - "id": 24315, + "id": 23174, "properties": { "east": "low", "north": "low", @@ -269392,7 +259030,7 @@ } }, { - "id": 24316, + "id": 23175, "properties": { "east": "low", "north": "low", @@ -269403,7 +259041,7 @@ } }, { - "id": 24317, + "id": 23176, "properties": { "east": "low", "north": "low", @@ -269414,7 +259052,7 @@ } }, { - "id": 24318, + "id": 23177, "properties": { "east": "low", "north": "low", @@ -269425,7 +259063,7 @@ } }, { - "id": 24319, + "id": 23178, "properties": { "east": "low", "north": "low", @@ -269436,7 +259074,7 @@ } }, { - "id": 24320, + "id": 23179, "properties": { "east": "low", "north": "low", @@ -269447,7 +259085,7 @@ } }, { - "id": 24321, + "id": 23180, "properties": { "east": "low", "north": "low", @@ -269458,7 +259096,7 @@ } }, { - "id": 24322, + "id": 23181, "properties": { "east": "low", "north": "low", @@ -269469,7 +259107,7 @@ } }, { - "id": 24323, + "id": 23182, "properties": { "east": "low", "north": "low", @@ -269480,7 +259118,7 @@ } }, { - "id": 24324, + "id": 23183, "properties": { "east": "low", "north": "low", @@ -269491,7 +259129,7 @@ } }, { - "id": 24325, + "id": 23184, "properties": { "east": "low", "north": "low", @@ -269502,7 +259140,7 @@ } }, { - "id": 24326, + "id": 23185, "properties": { "east": "low", "north": "low", @@ -269513,7 +259151,7 @@ } }, { - "id": 24327, + "id": 23186, "properties": { "east": "low", "north": "low", @@ -269524,7 +259162,7 @@ } }, { - "id": 24328, + "id": 23187, "properties": { "east": "low", "north": "low", @@ -269535,7 +259173,7 @@ } }, { - "id": 24329, + "id": 23188, "properties": { "east": "low", "north": "low", @@ -269546,7 +259184,7 @@ } }, { - "id": 24330, + "id": 23189, "properties": { "east": "low", "north": "low", @@ -269557,7 +259195,7 @@ } }, { - "id": 24331, + "id": 23190, "properties": { "east": "low", "north": "low", @@ -269568,7 +259206,7 @@ } }, { - "id": 24332, + "id": 23191, "properties": { "east": "low", "north": "low", @@ -269579,7 +259217,7 @@ } }, { - "id": 24333, + "id": 23192, "properties": { "east": "low", "north": "low", @@ -269590,7 +259228,7 @@ } }, { - "id": 24334, + "id": 23193, "properties": { "east": "low", "north": "low", @@ -269601,7 +259239,7 @@ } }, { - "id": 24335, + "id": 23194, "properties": { "east": "low", "north": "low", @@ -269612,7 +259250,7 @@ } }, { - "id": 24336, + "id": 23195, "properties": { "east": "low", "north": "low", @@ -269623,7 +259261,7 @@ } }, { - "id": 24337, + "id": 23196, "properties": { "east": "low", "north": "low", @@ -269634,7 +259272,7 @@ } }, { - "id": 24338, + "id": 23197, "properties": { "east": "low", "north": "low", @@ -269645,7 +259283,7 @@ } }, { - "id": 24339, + "id": 23198, "properties": { "east": "low", "north": "low", @@ -269656,7 +259294,7 @@ } }, { - "id": 24340, + "id": 23199, "properties": { "east": "low", "north": "tall", @@ -269667,7 +259305,7 @@ } }, { - "id": 24341, + "id": 23200, "properties": { "east": "low", "north": "tall", @@ -269678,7 +259316,7 @@ } }, { - "id": 24342, + "id": 23201, "properties": { "east": "low", "north": "tall", @@ -269689,7 +259327,7 @@ } }, { - "id": 24343, + "id": 23202, "properties": { "east": "low", "north": "tall", @@ -269700,7 +259338,7 @@ } }, { - "id": 24344, + "id": 23203, "properties": { "east": "low", "north": "tall", @@ -269711,7 +259349,7 @@ } }, { - "id": 24345, + "id": 23204, "properties": { "east": "low", "north": "tall", @@ -269722,7 +259360,7 @@ } }, { - "id": 24346, + "id": 23205, "properties": { "east": "low", "north": "tall", @@ -269733,7 +259371,7 @@ } }, { - "id": 24347, + "id": 23206, "properties": { "east": "low", "north": "tall", @@ -269744,7 +259382,7 @@ } }, { - "id": 24348, + "id": 23207, "properties": { "east": "low", "north": "tall", @@ -269755,7 +259393,7 @@ } }, { - "id": 24349, + "id": 23208, "properties": { "east": "low", "north": "tall", @@ -269766,7 +259404,7 @@ } }, { - "id": 24350, + "id": 23209, "properties": { "east": "low", "north": "tall", @@ -269777,7 +259415,7 @@ } }, { - "id": 24351, + "id": 23210, "properties": { "east": "low", "north": "tall", @@ -269788,7 +259426,7 @@ } }, { - "id": 24352, + "id": 23211, "properties": { "east": "low", "north": "tall", @@ -269799,7 +259437,7 @@ } }, { - "id": 24353, + "id": 23212, "properties": { "east": "low", "north": "tall", @@ -269810,7 +259448,7 @@ } }, { - "id": 24354, + "id": 23213, "properties": { "east": "low", "north": "tall", @@ -269821,7 +259459,7 @@ } }, { - "id": 24355, + "id": 23214, "properties": { "east": "low", "north": "tall", @@ -269832,7 +259470,7 @@ } }, { - "id": 24356, + "id": 23215, "properties": { "east": "low", "north": "tall", @@ -269843,7 +259481,7 @@ } }, { - "id": 24357, + "id": 23216, "properties": { "east": "low", "north": "tall", @@ -269854,7 +259492,7 @@ } }, { - "id": 24358, + "id": 23217, "properties": { "east": "low", "north": "tall", @@ -269865,7 +259503,7 @@ } }, { - "id": 24359, + "id": 23218, "properties": { "east": "low", "north": "tall", @@ -269876,7 +259514,7 @@ } }, { - "id": 24360, + "id": 23219, "properties": { "east": "low", "north": "tall", @@ -269887,7 +259525,7 @@ } }, { - "id": 24361, + "id": 23220, "properties": { "east": "low", "north": "tall", @@ -269898,7 +259536,7 @@ } }, { - "id": 24362, + "id": 23221, "properties": { "east": "low", "north": "tall", @@ -269909,7 +259547,7 @@ } }, { - "id": 24363, + "id": 23222, "properties": { "east": "low", "north": "tall", @@ -269920,7 +259558,7 @@ } }, { - "id": 24364, + "id": 23223, "properties": { "east": "low", "north": "tall", @@ -269931,7 +259569,7 @@ } }, { - "id": 24365, + "id": 23224, "properties": { "east": "low", "north": "tall", @@ -269942,7 +259580,7 @@ } }, { - "id": 24366, + "id": 23225, "properties": { "east": "low", "north": "tall", @@ -269953,7 +259591,7 @@ } }, { - "id": 24367, + "id": 23226, "properties": { "east": "low", "north": "tall", @@ -269964,7 +259602,7 @@ } }, { - "id": 24368, + "id": 23227, "properties": { "east": "low", "north": "tall", @@ -269975,7 +259613,7 @@ } }, { - "id": 24369, + "id": 23228, "properties": { "east": "low", "north": "tall", @@ -269986,7 +259624,7 @@ } }, { - "id": 24370, + "id": 23229, "properties": { "east": "low", "north": "tall", @@ -269997,7 +259635,7 @@ } }, { - "id": 24371, + "id": 23230, "properties": { "east": "low", "north": "tall", @@ -270008,7 +259646,7 @@ } }, { - "id": 24372, + "id": 23231, "properties": { "east": "low", "north": "tall", @@ -270019,7 +259657,7 @@ } }, { - "id": 24373, + "id": 23232, "properties": { "east": "low", "north": "tall", @@ -270030,7 +259668,7 @@ } }, { - "id": 24374, + "id": 23233, "properties": { "east": "low", "north": "tall", @@ -270041,7 +259679,7 @@ } }, { - "id": 24375, + "id": 23234, "properties": { "east": "low", "north": "tall", @@ -270052,7 +259690,7 @@ } }, { - "id": 24376, + "id": 23235, "properties": { "east": "tall", "north": "none", @@ -270063,7 +259701,7 @@ } }, { - "id": 24377, + "id": 23236, "properties": { "east": "tall", "north": "none", @@ -270074,7 +259712,7 @@ } }, { - "id": 24378, + "id": 23237, "properties": { "east": "tall", "north": "none", @@ -270085,7 +259723,7 @@ } }, { - "id": 24379, + "id": 23238, "properties": { "east": "tall", "north": "none", @@ -270096,7 +259734,7 @@ } }, { - "id": 24380, + "id": 23239, "properties": { "east": "tall", "north": "none", @@ -270107,7 +259745,7 @@ } }, { - "id": 24381, + "id": 23240, "properties": { "east": "tall", "north": "none", @@ -270118,7 +259756,7 @@ } }, { - "id": 24382, + "id": 23241, "properties": { "east": "tall", "north": "none", @@ -270129,7 +259767,7 @@ } }, { - "id": 24383, + "id": 23242, "properties": { "east": "tall", "north": "none", @@ -270140,7 +259778,7 @@ } }, { - "id": 24384, + "id": 23243, "properties": { "east": "tall", "north": "none", @@ -270151,7 +259789,7 @@ } }, { - "id": 24385, + "id": 23244, "properties": { "east": "tall", "north": "none", @@ -270162,7 +259800,7 @@ } }, { - "id": 24386, + "id": 23245, "properties": { "east": "tall", "north": "none", @@ -270173,7 +259811,7 @@ } }, { - "id": 24387, + "id": 23246, "properties": { "east": "tall", "north": "none", @@ -270184,7 +259822,7 @@ } }, { - "id": 24388, + "id": 23247, "properties": { "east": "tall", "north": "none", @@ -270195,7 +259833,7 @@ } }, { - "id": 24389, + "id": 23248, "properties": { "east": "tall", "north": "none", @@ -270206,7 +259844,7 @@ } }, { - "id": 24390, + "id": 23249, "properties": { "east": "tall", "north": "none", @@ -270217,7 +259855,7 @@ } }, { - "id": 24391, + "id": 23250, "properties": { "east": "tall", "north": "none", @@ -270228,7 +259866,7 @@ } }, { - "id": 24392, + "id": 23251, "properties": { "east": "tall", "north": "none", @@ -270239,7 +259877,7 @@ } }, { - "id": 24393, + "id": 23252, "properties": { "east": "tall", "north": "none", @@ -270250,7 +259888,7 @@ } }, { - "id": 24394, + "id": 23253, "properties": { "east": "tall", "north": "none", @@ -270261,7 +259899,7 @@ } }, { - "id": 24395, + "id": 23254, "properties": { "east": "tall", "north": "none", @@ -270272,7 +259910,7 @@ } }, { - "id": 24396, + "id": 23255, "properties": { "east": "tall", "north": "none", @@ -270283,7 +259921,7 @@ } }, { - "id": 24397, + "id": 23256, "properties": { "east": "tall", "north": "none", @@ -270294,7 +259932,7 @@ } }, { - "id": 24398, + "id": 23257, "properties": { "east": "tall", "north": "none", @@ -270305,7 +259943,7 @@ } }, { - "id": 24399, + "id": 23258, "properties": { "east": "tall", "north": "none", @@ -270316,7 +259954,7 @@ } }, { - "id": 24400, + "id": 23259, "properties": { "east": "tall", "north": "none", @@ -270327,7 +259965,7 @@ } }, { - "id": 24401, + "id": 23260, "properties": { "east": "tall", "north": "none", @@ -270338,7 +259976,7 @@ } }, { - "id": 24402, + "id": 23261, "properties": { "east": "tall", "north": "none", @@ -270349,7 +259987,7 @@ } }, { - "id": 24403, + "id": 23262, "properties": { "east": "tall", "north": "none", @@ -270360,7 +259998,7 @@ } }, { - "id": 24404, + "id": 23263, "properties": { "east": "tall", "north": "none", @@ -270371,7 +260009,7 @@ } }, { - "id": 24405, + "id": 23264, "properties": { "east": "tall", "north": "none", @@ -270382,7 +260020,7 @@ } }, { - "id": 24406, + "id": 23265, "properties": { "east": "tall", "north": "none", @@ -270393,7 +260031,7 @@ } }, { - "id": 24407, + "id": 23266, "properties": { "east": "tall", "north": "none", @@ -270404,7 +260042,7 @@ } }, { - "id": 24408, + "id": 23267, "properties": { "east": "tall", "north": "none", @@ -270415,7 +260053,7 @@ } }, { - "id": 24409, + "id": 23268, "properties": { "east": "tall", "north": "none", @@ -270426,7 +260064,7 @@ } }, { - "id": 24410, + "id": 23269, "properties": { "east": "tall", "north": "none", @@ -270437,7 +260075,7 @@ } }, { - "id": 24411, + "id": 23270, "properties": { "east": "tall", "north": "none", @@ -270448,7 +260086,7 @@ } }, { - "id": 24412, + "id": 23271, "properties": { "east": "tall", "north": "low", @@ -270459,7 +260097,7 @@ } }, { - "id": 24413, + "id": 23272, "properties": { "east": "tall", "north": "low", @@ -270470,7 +260108,7 @@ } }, { - "id": 24414, + "id": 23273, "properties": { "east": "tall", "north": "low", @@ -270481,7 +260119,7 @@ } }, { - "id": 24415, + "id": 23274, "properties": { "east": "tall", "north": "low", @@ -270492,7 +260130,7 @@ } }, { - "id": 24416, + "id": 23275, "properties": { "east": "tall", "north": "low", @@ -270503,7 +260141,7 @@ } }, { - "id": 24417, + "id": 23276, "properties": { "east": "tall", "north": "low", @@ -270514,7 +260152,7 @@ } }, { - "id": 24418, + "id": 23277, "properties": { "east": "tall", "north": "low", @@ -270525,7 +260163,7 @@ } }, { - "id": 24419, + "id": 23278, "properties": { "east": "tall", "north": "low", @@ -270536,7 +260174,7 @@ } }, { - "id": 24420, + "id": 23279, "properties": { "east": "tall", "north": "low", @@ -270547,7 +260185,7 @@ } }, { - "id": 24421, + "id": 23280, "properties": { "east": "tall", "north": "low", @@ -270558,7 +260196,7 @@ } }, { - "id": 24422, + "id": 23281, "properties": { "east": "tall", "north": "low", @@ -270569,7 +260207,7 @@ } }, { - "id": 24423, + "id": 23282, "properties": { "east": "tall", "north": "low", @@ -270580,7 +260218,7 @@ } }, { - "id": 24424, + "id": 23283, "properties": { "east": "tall", "north": "low", @@ -270591,7 +260229,7 @@ } }, { - "id": 24425, + "id": 23284, "properties": { "east": "tall", "north": "low", @@ -270602,7 +260240,7 @@ } }, { - "id": 24426, + "id": 23285, "properties": { "east": "tall", "north": "low", @@ -270613,7 +260251,7 @@ } }, { - "id": 24427, + "id": 23286, "properties": { "east": "tall", "north": "low", @@ -270624,7 +260262,7 @@ } }, { - "id": 24428, + "id": 23287, "properties": { "east": "tall", "north": "low", @@ -270635,7 +260273,7 @@ } }, { - "id": 24429, + "id": 23288, "properties": { "east": "tall", "north": "low", @@ -270646,7 +260284,7 @@ } }, { - "id": 24430, + "id": 23289, "properties": { "east": "tall", "north": "low", @@ -270657,7 +260295,7 @@ } }, { - "id": 24431, + "id": 23290, "properties": { "east": "tall", "north": "low", @@ -270668,7 +260306,7 @@ } }, { - "id": 24432, + "id": 23291, "properties": { "east": "tall", "north": "low", @@ -270679,7 +260317,7 @@ } }, { - "id": 24433, + "id": 23292, "properties": { "east": "tall", "north": "low", @@ -270690,7 +260328,7 @@ } }, { - "id": 24434, + "id": 23293, "properties": { "east": "tall", "north": "low", @@ -270701,7 +260339,7 @@ } }, { - "id": 24435, + "id": 23294, "properties": { "east": "tall", "north": "low", @@ -270712,7 +260350,7 @@ } }, { - "id": 24436, + "id": 23295, "properties": { "east": "tall", "north": "low", @@ -270723,7 +260361,7 @@ } }, { - "id": 24437, + "id": 23296, "properties": { "east": "tall", "north": "low", @@ -270734,7 +260372,7 @@ } }, { - "id": 24438, + "id": 23297, "properties": { "east": "tall", "north": "low", @@ -270745,7 +260383,7 @@ } }, { - "id": 24439, + "id": 23298, "properties": { "east": "tall", "north": "low", @@ -270756,7 +260394,7 @@ } }, { - "id": 24440, + "id": 23299, "properties": { "east": "tall", "north": "low", @@ -270767,7 +260405,7 @@ } }, { - "id": 24441, + "id": 23300, "properties": { "east": "tall", "north": "low", @@ -270778,7 +260416,7 @@ } }, { - "id": 24442, + "id": 23301, "properties": { "east": "tall", "north": "low", @@ -270789,7 +260427,7 @@ } }, { - "id": 24443, + "id": 23302, "properties": { "east": "tall", "north": "low", @@ -270800,7 +260438,7 @@ } }, { - "id": 24444, + "id": 23303, "properties": { "east": "tall", "north": "low", @@ -270811,7 +260449,7 @@ } }, { - "id": 24445, + "id": 23304, "properties": { "east": "tall", "north": "low", @@ -270822,7 +260460,7 @@ } }, { - "id": 24446, + "id": 23305, "properties": { "east": "tall", "north": "low", @@ -270833,7 +260471,7 @@ } }, { - "id": 24447, + "id": 23306, "properties": { "east": "tall", "north": "low", @@ -270844,7 +260482,7 @@ } }, { - "id": 24448, + "id": 23307, "properties": { "east": "tall", "north": "tall", @@ -270855,7 +260493,7 @@ } }, { - "id": 24449, + "id": 23308, "properties": { "east": "tall", "north": "tall", @@ -270866,7 +260504,7 @@ } }, { - "id": 24450, + "id": 23309, "properties": { "east": "tall", "north": "tall", @@ -270877,7 +260515,7 @@ } }, { - "id": 24451, + "id": 23310, "properties": { "east": "tall", "north": "tall", @@ -270888,7 +260526,7 @@ } }, { - "id": 24452, + "id": 23311, "properties": { "east": "tall", "north": "tall", @@ -270899,7 +260537,7 @@ } }, { - "id": 24453, + "id": 23312, "properties": { "east": "tall", "north": "tall", @@ -270910,7 +260548,7 @@ } }, { - "id": 24454, + "id": 23313, "properties": { "east": "tall", "north": "tall", @@ -270921,7 +260559,7 @@ } }, { - "id": 24455, + "id": 23314, "properties": { "east": "tall", "north": "tall", @@ -270932,7 +260570,7 @@ } }, { - "id": 24456, + "id": 23315, "properties": { "east": "tall", "north": "tall", @@ -270943,7 +260581,7 @@ } }, { - "id": 24457, + "id": 23316, "properties": { "east": "tall", "north": "tall", @@ -270954,7 +260592,7 @@ } }, { - "id": 24458, + "id": 23317, "properties": { "east": "tall", "north": "tall", @@ -270965,7 +260603,7 @@ } }, { - "id": 24459, + "id": 23318, "properties": { "east": "tall", "north": "tall", @@ -270976,7 +260614,7 @@ } }, { - "id": 24460, + "id": 23319, "properties": { "east": "tall", "north": "tall", @@ -270987,7 +260625,7 @@ } }, { - "id": 24461, + "id": 23320, "properties": { "east": "tall", "north": "tall", @@ -270998,7 +260636,7 @@ } }, { - "id": 24462, + "id": 23321, "properties": { "east": "tall", "north": "tall", @@ -271009,7 +260647,7 @@ } }, { - "id": 24463, + "id": 23322, "properties": { "east": "tall", "north": "tall", @@ -271020,7 +260658,7 @@ } }, { - "id": 24464, + "id": 23323, "properties": { "east": "tall", "north": "tall", @@ -271031,7 +260669,7 @@ } }, { - "id": 24465, + "id": 23324, "properties": { "east": "tall", "north": "tall", @@ -271042,7 +260680,7 @@ } }, { - "id": 24466, + "id": 23325, "properties": { "east": "tall", "north": "tall", @@ -271053,7 +260691,7 @@ } }, { - "id": 24467, + "id": 23326, "properties": { "east": "tall", "north": "tall", @@ -271064,7 +260702,7 @@ } }, { - "id": 24468, + "id": 23327, "properties": { "east": "tall", "north": "tall", @@ -271075,7 +260713,7 @@ } }, { - "id": 24469, + "id": 23328, "properties": { "east": "tall", "north": "tall", @@ -271086,7 +260724,7 @@ } }, { - "id": 24470, + "id": 23329, "properties": { "east": "tall", "north": "tall", @@ -271097,7 +260735,7 @@ } }, { - "id": 24471, + "id": 23330, "properties": { "east": "tall", "north": "tall", @@ -271108,7 +260746,7 @@ } }, { - "id": 24472, + "id": 23331, "properties": { "east": "tall", "north": "tall", @@ -271119,7 +260757,7 @@ } }, { - "id": 24473, + "id": 23332, "properties": { "east": "tall", "north": "tall", @@ -271130,7 +260768,7 @@ } }, { - "id": 24474, + "id": 23333, "properties": { "east": "tall", "north": "tall", @@ -271141,7 +260779,7 @@ } }, { - "id": 24475, + "id": 23334, "properties": { "east": "tall", "north": "tall", @@ -271152,7 +260790,7 @@ } }, { - "id": 24476, + "id": 23335, "properties": { "east": "tall", "north": "tall", @@ -271163,7 +260801,7 @@ } }, { - "id": 24477, + "id": 23336, "properties": { "east": "tall", "north": "tall", @@ -271174,7 +260812,7 @@ } }, { - "id": 24478, + "id": 23337, "properties": { "east": "tall", "north": "tall", @@ -271185,7 +260823,7 @@ } }, { - "id": 24479, + "id": 23338, "properties": { "east": "tall", "north": "tall", @@ -271196,7 +260834,7 @@ } }, { - "id": 24480, + "id": 23339, "properties": { "east": "tall", "north": "tall", @@ -271207,7 +260845,7 @@ } }, { - "id": 24481, + "id": 23340, "properties": { "east": "tall", "north": "tall", @@ -271218,7 +260856,7 @@ } }, { - "id": 24482, + "id": 23341, "properties": { "east": "tall", "north": "tall", @@ -271229,7 +260867,7 @@ } }, { - "id": 24483, + "id": 23342, "properties": { "east": "tall", "north": "tall", @@ -271249,7 +260887,7 @@ "states": [ { "default": true, - "id": 24073 + "id": 22932 } ] }, @@ -271271,21 +260909,21 @@ }, "states": [ { - "id": 23251, + "id": 22110, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 23252, + "id": 22111, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 23253, + "id": 22112, "properties": { "type": "bottom", "waterlogged": "true" @@ -271293,21 +260931,21 @@ }, { "default": true, - "id": 23254, + "id": 22113, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 23255, + "id": 22114, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 23256, + "id": 22115, "properties": { "type": "double", "waterlogged": "false" @@ -271348,7 +260986,7 @@ }, "states": [ { - "id": 23257, + "id": 22116, "properties": { "facing": "north", "half": "top", @@ -271357,7 +260995,7 @@ } }, { - "id": 23258, + "id": 22117, "properties": { "facing": "north", "half": "top", @@ -271366,7 +261004,7 @@ } }, { - "id": 23259, + "id": 22118, "properties": { "facing": "north", "half": "top", @@ -271375,7 +261013,7 @@ } }, { - "id": 23260, + "id": 22119, "properties": { "facing": "north", "half": "top", @@ -271384,7 +261022,7 @@ } }, { - "id": 23261, + "id": 22120, "properties": { "facing": "north", "half": "top", @@ -271393,7 +261031,7 @@ } }, { - "id": 23262, + "id": 22121, "properties": { "facing": "north", "half": "top", @@ -271402,7 +261040,7 @@ } }, { - "id": 23263, + "id": 22122, "properties": { "facing": "north", "half": "top", @@ -271411,7 +261049,7 @@ } }, { - "id": 23264, + "id": 22123, "properties": { "facing": "north", "half": "top", @@ -271420,7 +261058,7 @@ } }, { - "id": 23265, + "id": 22124, "properties": { "facing": "north", "half": "top", @@ -271429,7 +261067,7 @@ } }, { - "id": 23266, + "id": 22125, "properties": { "facing": "north", "half": "top", @@ -271438,7 +261076,7 @@ } }, { - "id": 23267, + "id": 22126, "properties": { "facing": "north", "half": "bottom", @@ -271448,7 +261086,7 @@ }, { "default": true, - "id": 23268, + "id": 22127, "properties": { "facing": "north", "half": "bottom", @@ -271457,7 +261095,7 @@ } }, { - "id": 23269, + "id": 22128, "properties": { "facing": "north", "half": "bottom", @@ -271466,7 +261104,7 @@ } }, { - "id": 23270, + "id": 22129, "properties": { "facing": "north", "half": "bottom", @@ -271475,7 +261113,7 @@ } }, { - "id": 23271, + "id": 22130, "properties": { "facing": "north", "half": "bottom", @@ -271484,7 +261122,7 @@ } }, { - "id": 23272, + "id": 22131, "properties": { "facing": "north", "half": "bottom", @@ -271493,7 +261131,7 @@ } }, { - "id": 23273, + "id": 22132, "properties": { "facing": "north", "half": "bottom", @@ -271502,7 +261140,7 @@ } }, { - "id": 23274, + "id": 22133, "properties": { "facing": "north", "half": "bottom", @@ -271511,7 +261149,7 @@ } }, { - "id": 23275, + "id": 22134, "properties": { "facing": "north", "half": "bottom", @@ -271520,7 +261158,7 @@ } }, { - "id": 23276, + "id": 22135, "properties": { "facing": "north", "half": "bottom", @@ -271529,7 +261167,7 @@ } }, { - "id": 23277, + "id": 22136, "properties": { "facing": "south", "half": "top", @@ -271538,7 +261176,7 @@ } }, { - "id": 23278, + "id": 22137, "properties": { "facing": "south", "half": "top", @@ -271547,7 +261185,7 @@ } }, { - "id": 23279, + "id": 22138, "properties": { "facing": "south", "half": "top", @@ -271556,7 +261194,7 @@ } }, { - "id": 23280, + "id": 22139, "properties": { "facing": "south", "half": "top", @@ -271565,7 +261203,7 @@ } }, { - "id": 23281, + "id": 22140, "properties": { "facing": "south", "half": "top", @@ -271574,7 +261212,7 @@ } }, { - "id": 23282, + "id": 22141, "properties": { "facing": "south", "half": "top", @@ -271583,7 +261221,7 @@ } }, { - "id": 23283, + "id": 22142, "properties": { "facing": "south", "half": "top", @@ -271592,7 +261230,7 @@ } }, { - "id": 23284, + "id": 22143, "properties": { "facing": "south", "half": "top", @@ -271601,7 +261239,7 @@ } }, { - "id": 23285, + "id": 22144, "properties": { "facing": "south", "half": "top", @@ -271610,7 +261248,7 @@ } }, { - "id": 23286, + "id": 22145, "properties": { "facing": "south", "half": "top", @@ -271619,7 +261257,7 @@ } }, { - "id": 23287, + "id": 22146, "properties": { "facing": "south", "half": "bottom", @@ -271628,7 +261266,7 @@ } }, { - "id": 23288, + "id": 22147, "properties": { "facing": "south", "half": "bottom", @@ -271637,7 +261275,7 @@ } }, { - "id": 23289, + "id": 22148, "properties": { "facing": "south", "half": "bottom", @@ -271646,7 +261284,7 @@ } }, { - "id": 23290, + "id": 22149, "properties": { "facing": "south", "half": "bottom", @@ -271655,7 +261293,7 @@ } }, { - "id": 23291, + "id": 22150, "properties": { "facing": "south", "half": "bottom", @@ -271664,7 +261302,7 @@ } }, { - "id": 23292, + "id": 22151, "properties": { "facing": "south", "half": "bottom", @@ -271673,7 +261311,7 @@ } }, { - "id": 23293, + "id": 22152, "properties": { "facing": "south", "half": "bottom", @@ -271682,7 +261320,7 @@ } }, { - "id": 23294, + "id": 22153, "properties": { "facing": "south", "half": "bottom", @@ -271691,7 +261329,7 @@ } }, { - "id": 23295, + "id": 22154, "properties": { "facing": "south", "half": "bottom", @@ -271700,7 +261338,7 @@ } }, { - "id": 23296, + "id": 22155, "properties": { "facing": "south", "half": "bottom", @@ -271709,7 +261347,7 @@ } }, { - "id": 23297, + "id": 22156, "properties": { "facing": "west", "half": "top", @@ -271718,7 +261356,7 @@ } }, { - "id": 23298, + "id": 22157, "properties": { "facing": "west", "half": "top", @@ -271727,7 +261365,7 @@ } }, { - "id": 23299, + "id": 22158, "properties": { "facing": "west", "half": "top", @@ -271736,7 +261374,7 @@ } }, { - "id": 23300, + "id": 22159, "properties": { "facing": "west", "half": "top", @@ -271745,7 +261383,7 @@ } }, { - "id": 23301, + "id": 22160, "properties": { "facing": "west", "half": "top", @@ -271754,7 +261392,7 @@ } }, { - "id": 23302, + "id": 22161, "properties": { "facing": "west", "half": "top", @@ -271763,7 +261401,7 @@ } }, { - "id": 23303, + "id": 22162, "properties": { "facing": "west", "half": "top", @@ -271772,7 +261410,7 @@ } }, { - "id": 23304, + "id": 22163, "properties": { "facing": "west", "half": "top", @@ -271781,7 +261419,7 @@ } }, { - "id": 23305, + "id": 22164, "properties": { "facing": "west", "half": "top", @@ -271790,7 +261428,7 @@ } }, { - "id": 23306, + "id": 22165, "properties": { "facing": "west", "half": "top", @@ -271799,7 +261437,7 @@ } }, { - "id": 23307, + "id": 22166, "properties": { "facing": "west", "half": "bottom", @@ -271808,7 +261446,7 @@ } }, { - "id": 23308, + "id": 22167, "properties": { "facing": "west", "half": "bottom", @@ -271817,7 +261455,7 @@ } }, { - "id": 23309, + "id": 22168, "properties": { "facing": "west", "half": "bottom", @@ -271826,7 +261464,7 @@ } }, { - "id": 23310, + "id": 22169, "properties": { "facing": "west", "half": "bottom", @@ -271835,7 +261473,7 @@ } }, { - "id": 23311, + "id": 22170, "properties": { "facing": "west", "half": "bottom", @@ -271844,7 +261482,7 @@ } }, { - "id": 23312, + "id": 22171, "properties": { "facing": "west", "half": "bottom", @@ -271853,7 +261491,7 @@ } }, { - "id": 23313, + "id": 22172, "properties": { "facing": "west", "half": "bottom", @@ -271862,7 +261500,7 @@ } }, { - "id": 23314, + "id": 22173, "properties": { "facing": "west", "half": "bottom", @@ -271871,7 +261509,7 @@ } }, { - "id": 23315, + "id": 22174, "properties": { "facing": "west", "half": "bottom", @@ -271880,7 +261518,7 @@ } }, { - "id": 23316, + "id": 22175, "properties": { "facing": "west", "half": "bottom", @@ -271889,7 +261527,7 @@ } }, { - "id": 23317, + "id": 22176, "properties": { "facing": "east", "half": "top", @@ -271898,7 +261536,7 @@ } }, { - "id": 23318, + "id": 22177, "properties": { "facing": "east", "half": "top", @@ -271907,7 +261545,7 @@ } }, { - "id": 23319, + "id": 22178, "properties": { "facing": "east", "half": "top", @@ -271916,7 +261554,7 @@ } }, { - "id": 23320, + "id": 22179, "properties": { "facing": "east", "half": "top", @@ -271925,7 +261563,7 @@ } }, { - "id": 23321, + "id": 22180, "properties": { "facing": "east", "half": "top", @@ -271934,7 +261572,7 @@ } }, { - "id": 23322, + "id": 22181, "properties": { "facing": "east", "half": "top", @@ -271943,7 +261581,7 @@ } }, { - "id": 23323, + "id": 22182, "properties": { "facing": "east", "half": "top", @@ -271952,7 +261590,7 @@ } }, { - "id": 23324, + "id": 22183, "properties": { "facing": "east", "half": "top", @@ -271961,7 +261599,7 @@ } }, { - "id": 23325, + "id": 22184, "properties": { "facing": "east", "half": "top", @@ -271970,7 +261608,7 @@ } }, { - "id": 23326, + "id": 22185, "properties": { "facing": "east", "half": "top", @@ -271979,7 +261617,7 @@ } }, { - "id": 23327, + "id": 22186, "properties": { "facing": "east", "half": "bottom", @@ -271988,7 +261626,7 @@ } }, { - "id": 23328, + "id": 22187, "properties": { "facing": "east", "half": "bottom", @@ -271997,7 +261635,7 @@ } }, { - "id": 23329, + "id": 22188, "properties": { "facing": "east", "half": "bottom", @@ -272006,7 +261644,7 @@ } }, { - "id": 23330, + "id": 22189, "properties": { "facing": "east", "half": "bottom", @@ -272015,7 +261653,7 @@ } }, { - "id": 23331, + "id": 22190, "properties": { "facing": "east", "half": "bottom", @@ -272024,7 +261662,7 @@ } }, { - "id": 23332, + "id": 22191, "properties": { "facing": "east", "half": "bottom", @@ -272033,7 +261671,7 @@ } }, { - "id": 23333, + "id": 22192, "properties": { "facing": "east", "half": "bottom", @@ -272042,7 +261680,7 @@ } }, { - "id": 23334, + "id": 22193, "properties": { "facing": "east", "half": "bottom", @@ -272051,7 +261689,7 @@ } }, { - "id": 23335, + "id": 22194, "properties": { "facing": "east", "half": "bottom", @@ -272060,7 +261698,7 @@ } }, { - "id": 23336, + "id": 22195, "properties": { "facing": "east", "half": "bottom", @@ -272107,7 +261745,7 @@ }, "states": [ { - "id": 23337, + "id": 22196, "properties": { "east": "none", "north": "none", @@ -272118,7 +261756,7 @@ } }, { - "id": 23338, + "id": 22197, "properties": { "east": "none", "north": "none", @@ -272129,7 +261767,7 @@ } }, { - "id": 23339, + "id": 22198, "properties": { "east": "none", "north": "none", @@ -272141,7 +261779,7 @@ }, { "default": true, - "id": 23340, + "id": 22199, "properties": { "east": "none", "north": "none", @@ -272152,7 +261790,7 @@ } }, { - "id": 23341, + "id": 22200, "properties": { "east": "none", "north": "none", @@ -272163,7 +261801,7 @@ } }, { - "id": 23342, + "id": 22201, "properties": { "east": "none", "north": "none", @@ -272174,7 +261812,7 @@ } }, { - "id": 23343, + "id": 22202, "properties": { "east": "none", "north": "none", @@ -272185,7 +261823,7 @@ } }, { - "id": 23344, + "id": 22203, "properties": { "east": "none", "north": "none", @@ -272196,7 +261834,7 @@ } }, { - "id": 23345, + "id": 22204, "properties": { "east": "none", "north": "none", @@ -272207,7 +261845,7 @@ } }, { - "id": 23346, + "id": 22205, "properties": { "east": "none", "north": "none", @@ -272218,7 +261856,7 @@ } }, { - "id": 23347, + "id": 22206, "properties": { "east": "none", "north": "none", @@ -272229,7 +261867,7 @@ } }, { - "id": 23348, + "id": 22207, "properties": { "east": "none", "north": "none", @@ -272240,7 +261878,7 @@ } }, { - "id": 23349, + "id": 22208, "properties": { "east": "none", "north": "none", @@ -272251,7 +261889,7 @@ } }, { - "id": 23350, + "id": 22209, "properties": { "east": "none", "north": "none", @@ -272262,7 +261900,7 @@ } }, { - "id": 23351, + "id": 22210, "properties": { "east": "none", "north": "none", @@ -272273,7 +261911,7 @@ } }, { - "id": 23352, + "id": 22211, "properties": { "east": "none", "north": "none", @@ -272284,7 +261922,7 @@ } }, { - "id": 23353, + "id": 22212, "properties": { "east": "none", "north": "none", @@ -272295,7 +261933,7 @@ } }, { - "id": 23354, + "id": 22213, "properties": { "east": "none", "north": "none", @@ -272306,7 +261944,7 @@ } }, { - "id": 23355, + "id": 22214, "properties": { "east": "none", "north": "none", @@ -272317,7 +261955,7 @@ } }, { - "id": 23356, + "id": 22215, "properties": { "east": "none", "north": "none", @@ -272328,7 +261966,7 @@ } }, { - "id": 23357, + "id": 22216, "properties": { "east": "none", "north": "none", @@ -272339,7 +261977,7 @@ } }, { - "id": 23358, + "id": 22217, "properties": { "east": "none", "north": "none", @@ -272350,7 +261988,7 @@ } }, { - "id": 23359, + "id": 22218, "properties": { "east": "none", "north": "none", @@ -272361,7 +261999,7 @@ } }, { - "id": 23360, + "id": 22219, "properties": { "east": "none", "north": "none", @@ -272372,7 +262010,7 @@ } }, { - "id": 23361, + "id": 22220, "properties": { "east": "none", "north": "none", @@ -272383,7 +262021,7 @@ } }, { - "id": 23362, + "id": 22221, "properties": { "east": "none", "north": "none", @@ -272394,7 +262032,7 @@ } }, { - "id": 23363, + "id": 22222, "properties": { "east": "none", "north": "none", @@ -272405,7 +262043,7 @@ } }, { - "id": 23364, + "id": 22223, "properties": { "east": "none", "north": "none", @@ -272416,7 +262054,7 @@ } }, { - "id": 23365, + "id": 22224, "properties": { "east": "none", "north": "none", @@ -272427,7 +262065,7 @@ } }, { - "id": 23366, + "id": 22225, "properties": { "east": "none", "north": "none", @@ -272438,7 +262076,7 @@ } }, { - "id": 23367, + "id": 22226, "properties": { "east": "none", "north": "none", @@ -272449,7 +262087,7 @@ } }, { - "id": 23368, + "id": 22227, "properties": { "east": "none", "north": "none", @@ -272460,7 +262098,7 @@ } }, { - "id": 23369, + "id": 22228, "properties": { "east": "none", "north": "none", @@ -272471,7 +262109,7 @@ } }, { - "id": 23370, + "id": 22229, "properties": { "east": "none", "north": "none", @@ -272482,7 +262120,7 @@ } }, { - "id": 23371, + "id": 22230, "properties": { "east": "none", "north": "none", @@ -272493,7 +262131,7 @@ } }, { - "id": 23372, + "id": 22231, "properties": { "east": "none", "north": "none", @@ -272504,7 +262142,7 @@ } }, { - "id": 23373, + "id": 22232, "properties": { "east": "none", "north": "low", @@ -272515,7 +262153,7 @@ } }, { - "id": 23374, + "id": 22233, "properties": { "east": "none", "north": "low", @@ -272526,7 +262164,7 @@ } }, { - "id": 23375, + "id": 22234, "properties": { "east": "none", "north": "low", @@ -272537,7 +262175,7 @@ } }, { - "id": 23376, + "id": 22235, "properties": { "east": "none", "north": "low", @@ -272548,7 +262186,7 @@ } }, { - "id": 23377, + "id": 22236, "properties": { "east": "none", "north": "low", @@ -272559,7 +262197,7 @@ } }, { - "id": 23378, + "id": 22237, "properties": { "east": "none", "north": "low", @@ -272570,7 +262208,7 @@ } }, { - "id": 23379, + "id": 22238, "properties": { "east": "none", "north": "low", @@ -272581,7 +262219,7 @@ } }, { - "id": 23380, + "id": 22239, "properties": { "east": "none", "north": "low", @@ -272592,7 +262230,7 @@ } }, { - "id": 23381, + "id": 22240, "properties": { "east": "none", "north": "low", @@ -272603,7 +262241,7 @@ } }, { - "id": 23382, + "id": 22241, "properties": { "east": "none", "north": "low", @@ -272614,7 +262252,7 @@ } }, { - "id": 23383, + "id": 22242, "properties": { "east": "none", "north": "low", @@ -272625,7 +262263,7 @@ } }, { - "id": 23384, + "id": 22243, "properties": { "east": "none", "north": "low", @@ -272636,7 +262274,7 @@ } }, { - "id": 23385, + "id": 22244, "properties": { "east": "none", "north": "low", @@ -272647,7 +262285,7 @@ } }, { - "id": 23386, + "id": 22245, "properties": { "east": "none", "north": "low", @@ -272658,7 +262296,7 @@ } }, { - "id": 23387, + "id": 22246, "properties": { "east": "none", "north": "low", @@ -272669,7 +262307,7 @@ } }, { - "id": 23388, + "id": 22247, "properties": { "east": "none", "north": "low", @@ -272680,7 +262318,7 @@ } }, { - "id": 23389, + "id": 22248, "properties": { "east": "none", "north": "low", @@ -272691,7 +262329,7 @@ } }, { - "id": 23390, + "id": 22249, "properties": { "east": "none", "north": "low", @@ -272702,7 +262340,7 @@ } }, { - "id": 23391, + "id": 22250, "properties": { "east": "none", "north": "low", @@ -272713,7 +262351,7 @@ } }, { - "id": 23392, + "id": 22251, "properties": { "east": "none", "north": "low", @@ -272724,7 +262362,7 @@ } }, { - "id": 23393, + "id": 22252, "properties": { "east": "none", "north": "low", @@ -272735,7 +262373,7 @@ } }, { - "id": 23394, + "id": 22253, "properties": { "east": "none", "north": "low", @@ -272746,7 +262384,7 @@ } }, { - "id": 23395, + "id": 22254, "properties": { "east": "none", "north": "low", @@ -272757,7 +262395,7 @@ } }, { - "id": 23396, + "id": 22255, "properties": { "east": "none", "north": "low", @@ -272768,7 +262406,7 @@ } }, { - "id": 23397, + "id": 22256, "properties": { "east": "none", "north": "low", @@ -272779,7 +262417,7 @@ } }, { - "id": 23398, + "id": 22257, "properties": { "east": "none", "north": "low", @@ -272790,7 +262428,7 @@ } }, { - "id": 23399, + "id": 22258, "properties": { "east": "none", "north": "low", @@ -272801,7 +262439,7 @@ } }, { - "id": 23400, + "id": 22259, "properties": { "east": "none", "north": "low", @@ -272812,7 +262450,7 @@ } }, { - "id": 23401, + "id": 22260, "properties": { "east": "none", "north": "low", @@ -272823,7 +262461,7 @@ } }, { - "id": 23402, + "id": 22261, "properties": { "east": "none", "north": "low", @@ -272834,7 +262472,7 @@ } }, { - "id": 23403, + "id": 22262, "properties": { "east": "none", "north": "low", @@ -272845,7 +262483,7 @@ } }, { - "id": 23404, + "id": 22263, "properties": { "east": "none", "north": "low", @@ -272856,7 +262494,7 @@ } }, { - "id": 23405, + "id": 22264, "properties": { "east": "none", "north": "low", @@ -272867,7 +262505,7 @@ } }, { - "id": 23406, + "id": 22265, "properties": { "east": "none", "north": "low", @@ -272878,7 +262516,7 @@ } }, { - "id": 23407, + "id": 22266, "properties": { "east": "none", "north": "low", @@ -272889,7 +262527,7 @@ } }, { - "id": 23408, + "id": 22267, "properties": { "east": "none", "north": "low", @@ -272900,7 +262538,7 @@ } }, { - "id": 23409, + "id": 22268, "properties": { "east": "none", "north": "tall", @@ -272911,7 +262549,7 @@ } }, { - "id": 23410, + "id": 22269, "properties": { "east": "none", "north": "tall", @@ -272922,7 +262560,7 @@ } }, { - "id": 23411, + "id": 22270, "properties": { "east": "none", "north": "tall", @@ -272933,7 +262571,7 @@ } }, { - "id": 23412, + "id": 22271, "properties": { "east": "none", "north": "tall", @@ -272944,7 +262582,7 @@ } }, { - "id": 23413, + "id": 22272, "properties": { "east": "none", "north": "tall", @@ -272955,7 +262593,7 @@ } }, { - "id": 23414, + "id": 22273, "properties": { "east": "none", "north": "tall", @@ -272966,7 +262604,7 @@ } }, { - "id": 23415, + "id": 22274, "properties": { "east": "none", "north": "tall", @@ -272977,7 +262615,7 @@ } }, { - "id": 23416, + "id": 22275, "properties": { "east": "none", "north": "tall", @@ -272988,7 +262626,7 @@ } }, { - "id": 23417, + "id": 22276, "properties": { "east": "none", "north": "tall", @@ -272999,7 +262637,7 @@ } }, { - "id": 23418, + "id": 22277, "properties": { "east": "none", "north": "tall", @@ -273010,7 +262648,7 @@ } }, { - "id": 23419, + "id": 22278, "properties": { "east": "none", "north": "tall", @@ -273021,7 +262659,7 @@ } }, { - "id": 23420, + "id": 22279, "properties": { "east": "none", "north": "tall", @@ -273032,7 +262670,7 @@ } }, { - "id": 23421, + "id": 22280, "properties": { "east": "none", "north": "tall", @@ -273043,7 +262681,7 @@ } }, { - "id": 23422, + "id": 22281, "properties": { "east": "none", "north": "tall", @@ -273054,7 +262692,7 @@ } }, { - "id": 23423, + "id": 22282, "properties": { "east": "none", "north": "tall", @@ -273065,7 +262703,7 @@ } }, { - "id": 23424, + "id": 22283, "properties": { "east": "none", "north": "tall", @@ -273076,7 +262714,7 @@ } }, { - "id": 23425, + "id": 22284, "properties": { "east": "none", "north": "tall", @@ -273087,7 +262725,7 @@ } }, { - "id": 23426, + "id": 22285, "properties": { "east": "none", "north": "tall", @@ -273098,7 +262736,7 @@ } }, { - "id": 23427, + "id": 22286, "properties": { "east": "none", "north": "tall", @@ -273109,7 +262747,7 @@ } }, { - "id": 23428, + "id": 22287, "properties": { "east": "none", "north": "tall", @@ -273120,7 +262758,7 @@ } }, { - "id": 23429, + "id": 22288, "properties": { "east": "none", "north": "tall", @@ -273131,7 +262769,7 @@ } }, { - "id": 23430, + "id": 22289, "properties": { "east": "none", "north": "tall", @@ -273142,7 +262780,7 @@ } }, { - "id": 23431, + "id": 22290, "properties": { "east": "none", "north": "tall", @@ -273153,7 +262791,7 @@ } }, { - "id": 23432, + "id": 22291, "properties": { "east": "none", "north": "tall", @@ -273164,7 +262802,7 @@ } }, { - "id": 23433, + "id": 22292, "properties": { "east": "none", "north": "tall", @@ -273175,7 +262813,7 @@ } }, { - "id": 23434, + "id": 22293, "properties": { "east": "none", "north": "tall", @@ -273186,7 +262824,7 @@ } }, { - "id": 23435, + "id": 22294, "properties": { "east": "none", "north": "tall", @@ -273197,7 +262835,7 @@ } }, { - "id": 23436, + "id": 22295, "properties": { "east": "none", "north": "tall", @@ -273208,7 +262846,7 @@ } }, { - "id": 23437, + "id": 22296, "properties": { "east": "none", "north": "tall", @@ -273219,7 +262857,7 @@ } }, { - "id": 23438, + "id": 22297, "properties": { "east": "none", "north": "tall", @@ -273230,7 +262868,7 @@ } }, { - "id": 23439, + "id": 22298, "properties": { "east": "none", "north": "tall", @@ -273241,7 +262879,7 @@ } }, { - "id": 23440, + "id": 22299, "properties": { "east": "none", "north": "tall", @@ -273252,7 +262890,7 @@ } }, { - "id": 23441, + "id": 22300, "properties": { "east": "none", "north": "tall", @@ -273263,7 +262901,7 @@ } }, { - "id": 23442, + "id": 22301, "properties": { "east": "none", "north": "tall", @@ -273274,7 +262912,7 @@ } }, { - "id": 23443, + "id": 22302, "properties": { "east": "none", "north": "tall", @@ -273285,7 +262923,7 @@ } }, { - "id": 23444, + "id": 22303, "properties": { "east": "none", "north": "tall", @@ -273296,7 +262934,7 @@ } }, { - "id": 23445, + "id": 22304, "properties": { "east": "low", "north": "none", @@ -273307,7 +262945,7 @@ } }, { - "id": 23446, + "id": 22305, "properties": { "east": "low", "north": "none", @@ -273318,7 +262956,7 @@ } }, { - "id": 23447, + "id": 22306, "properties": { "east": "low", "north": "none", @@ -273329,7 +262967,7 @@ } }, { - "id": 23448, + "id": 22307, "properties": { "east": "low", "north": "none", @@ -273340,7 +262978,7 @@ } }, { - "id": 23449, + "id": 22308, "properties": { "east": "low", "north": "none", @@ -273351,7 +262989,7 @@ } }, { - "id": 23450, + "id": 22309, "properties": { "east": "low", "north": "none", @@ -273362,7 +263000,7 @@ } }, { - "id": 23451, + "id": 22310, "properties": { "east": "low", "north": "none", @@ -273373,7 +263011,7 @@ } }, { - "id": 23452, + "id": 22311, "properties": { "east": "low", "north": "none", @@ -273384,7 +263022,7 @@ } }, { - "id": 23453, + "id": 22312, "properties": { "east": "low", "north": "none", @@ -273395,7 +263033,7 @@ } }, { - "id": 23454, + "id": 22313, "properties": { "east": "low", "north": "none", @@ -273406,7 +263044,7 @@ } }, { - "id": 23455, + "id": 22314, "properties": { "east": "low", "north": "none", @@ -273417,7 +263055,7 @@ } }, { - "id": 23456, + "id": 22315, "properties": { "east": "low", "north": "none", @@ -273428,7 +263066,7 @@ } }, { - "id": 23457, + "id": 22316, "properties": { "east": "low", "north": "none", @@ -273439,7 +263077,7 @@ } }, { - "id": 23458, + "id": 22317, "properties": { "east": "low", "north": "none", @@ -273450,7 +263088,7 @@ } }, { - "id": 23459, + "id": 22318, "properties": { "east": "low", "north": "none", @@ -273461,7 +263099,7 @@ } }, { - "id": 23460, + "id": 22319, "properties": { "east": "low", "north": "none", @@ -273472,7 +263110,7 @@ } }, { - "id": 23461, + "id": 22320, "properties": { "east": "low", "north": "none", @@ -273483,7 +263121,7 @@ } }, { - "id": 23462, + "id": 22321, "properties": { "east": "low", "north": "none", @@ -273494,7 +263132,7 @@ } }, { - "id": 23463, + "id": 22322, "properties": { "east": "low", "north": "none", @@ -273505,7 +263143,7 @@ } }, { - "id": 23464, + "id": 22323, "properties": { "east": "low", "north": "none", @@ -273516,7 +263154,7 @@ } }, { - "id": 23465, + "id": 22324, "properties": { "east": "low", "north": "none", @@ -273527,7 +263165,7 @@ } }, { - "id": 23466, + "id": 22325, "properties": { "east": "low", "north": "none", @@ -273538,7 +263176,7 @@ } }, { - "id": 23467, + "id": 22326, "properties": { "east": "low", "north": "none", @@ -273549,7 +263187,7 @@ } }, { - "id": 23468, + "id": 22327, "properties": { "east": "low", "north": "none", @@ -273560,7 +263198,7 @@ } }, { - "id": 23469, + "id": 22328, "properties": { "east": "low", "north": "none", @@ -273571,7 +263209,7 @@ } }, { - "id": 23470, + "id": 22329, "properties": { "east": "low", "north": "none", @@ -273582,7 +263220,7 @@ } }, { - "id": 23471, + "id": 22330, "properties": { "east": "low", "north": "none", @@ -273593,7 +263231,7 @@ } }, { - "id": 23472, + "id": 22331, "properties": { "east": "low", "north": "none", @@ -273604,7 +263242,7 @@ } }, { - "id": 23473, + "id": 22332, "properties": { "east": "low", "north": "none", @@ -273615,7 +263253,7 @@ } }, { - "id": 23474, + "id": 22333, "properties": { "east": "low", "north": "none", @@ -273626,7 +263264,7 @@ } }, { - "id": 23475, + "id": 22334, "properties": { "east": "low", "north": "none", @@ -273637,7 +263275,7 @@ } }, { - "id": 23476, + "id": 22335, "properties": { "east": "low", "north": "none", @@ -273648,7 +263286,7 @@ } }, { - "id": 23477, + "id": 22336, "properties": { "east": "low", "north": "none", @@ -273659,7 +263297,7 @@ } }, { - "id": 23478, + "id": 22337, "properties": { "east": "low", "north": "none", @@ -273670,7 +263308,7 @@ } }, { - "id": 23479, + "id": 22338, "properties": { "east": "low", "north": "none", @@ -273681,7 +263319,7 @@ } }, { - "id": 23480, + "id": 22339, "properties": { "east": "low", "north": "none", @@ -273692,7 +263330,7 @@ } }, { - "id": 23481, + "id": 22340, "properties": { "east": "low", "north": "low", @@ -273703,7 +263341,7 @@ } }, { - "id": 23482, + "id": 22341, "properties": { "east": "low", "north": "low", @@ -273714,7 +263352,7 @@ } }, { - "id": 23483, + "id": 22342, "properties": { "east": "low", "north": "low", @@ -273725,7 +263363,7 @@ } }, { - "id": 23484, + "id": 22343, "properties": { "east": "low", "north": "low", @@ -273736,7 +263374,7 @@ } }, { - "id": 23485, + "id": 22344, "properties": { "east": "low", "north": "low", @@ -273747,7 +263385,7 @@ } }, { - "id": 23486, + "id": 22345, "properties": { "east": "low", "north": "low", @@ -273758,7 +263396,7 @@ } }, { - "id": 23487, + "id": 22346, "properties": { "east": "low", "north": "low", @@ -273769,7 +263407,7 @@ } }, { - "id": 23488, + "id": 22347, "properties": { "east": "low", "north": "low", @@ -273780,7 +263418,7 @@ } }, { - "id": 23489, + "id": 22348, "properties": { "east": "low", "north": "low", @@ -273791,7 +263429,7 @@ } }, { - "id": 23490, + "id": 22349, "properties": { "east": "low", "north": "low", @@ -273802,7 +263440,7 @@ } }, { - "id": 23491, + "id": 22350, "properties": { "east": "low", "north": "low", @@ -273813,7 +263451,7 @@ } }, { - "id": 23492, + "id": 22351, "properties": { "east": "low", "north": "low", @@ -273824,7 +263462,7 @@ } }, { - "id": 23493, + "id": 22352, "properties": { "east": "low", "north": "low", @@ -273835,7 +263473,7 @@ } }, { - "id": 23494, + "id": 22353, "properties": { "east": "low", "north": "low", @@ -273846,7 +263484,7 @@ } }, { - "id": 23495, + "id": 22354, "properties": { "east": "low", "north": "low", @@ -273857,7 +263495,7 @@ } }, { - "id": 23496, + "id": 22355, "properties": { "east": "low", "north": "low", @@ -273868,7 +263506,7 @@ } }, { - "id": 23497, + "id": 22356, "properties": { "east": "low", "north": "low", @@ -273879,7 +263517,7 @@ } }, { - "id": 23498, + "id": 22357, "properties": { "east": "low", "north": "low", @@ -273890,7 +263528,7 @@ } }, { - "id": 23499, + "id": 22358, "properties": { "east": "low", "north": "low", @@ -273901,7 +263539,7 @@ } }, { - "id": 23500, + "id": 22359, "properties": { "east": "low", "north": "low", @@ -273912,7 +263550,7 @@ } }, { - "id": 23501, + "id": 22360, "properties": { "east": "low", "north": "low", @@ -273923,7 +263561,7 @@ } }, { - "id": 23502, + "id": 22361, "properties": { "east": "low", "north": "low", @@ -273934,7 +263572,7 @@ } }, { - "id": 23503, + "id": 22362, "properties": { "east": "low", "north": "low", @@ -273945,7 +263583,7 @@ } }, { - "id": 23504, + "id": 22363, "properties": { "east": "low", "north": "low", @@ -273956,7 +263594,7 @@ } }, { - "id": 23505, + "id": 22364, "properties": { "east": "low", "north": "low", @@ -273967,7 +263605,7 @@ } }, { - "id": 23506, + "id": 22365, "properties": { "east": "low", "north": "low", @@ -273978,7 +263616,7 @@ } }, { - "id": 23507, + "id": 22366, "properties": { "east": "low", "north": "low", @@ -273989,7 +263627,7 @@ } }, { - "id": 23508, + "id": 22367, "properties": { "east": "low", "north": "low", @@ -274000,7 +263638,7 @@ } }, { - "id": 23509, + "id": 22368, "properties": { "east": "low", "north": "low", @@ -274011,7 +263649,7 @@ } }, { - "id": 23510, + "id": 22369, "properties": { "east": "low", "north": "low", @@ -274022,7 +263660,7 @@ } }, { - "id": 23511, + "id": 22370, "properties": { "east": "low", "north": "low", @@ -274033,7 +263671,7 @@ } }, { - "id": 23512, + "id": 22371, "properties": { "east": "low", "north": "low", @@ -274044,7 +263682,7 @@ } }, { - "id": 23513, + "id": 22372, "properties": { "east": "low", "north": "low", @@ -274055,7 +263693,7 @@ } }, { - "id": 23514, + "id": 22373, "properties": { "east": "low", "north": "low", @@ -274066,7 +263704,7 @@ } }, { - "id": 23515, + "id": 22374, "properties": { "east": "low", "north": "low", @@ -274077,7 +263715,7 @@ } }, { - "id": 23516, + "id": 22375, "properties": { "east": "low", "north": "low", @@ -274088,7 +263726,7 @@ } }, { - "id": 23517, + "id": 22376, "properties": { "east": "low", "north": "tall", @@ -274099,7 +263737,7 @@ } }, { - "id": 23518, + "id": 22377, "properties": { "east": "low", "north": "tall", @@ -274110,7 +263748,7 @@ } }, { - "id": 23519, + "id": 22378, "properties": { "east": "low", "north": "tall", @@ -274121,7 +263759,7 @@ } }, { - "id": 23520, + "id": 22379, "properties": { "east": "low", "north": "tall", @@ -274132,7 +263770,7 @@ } }, { - "id": 23521, + "id": 22380, "properties": { "east": "low", "north": "tall", @@ -274143,7 +263781,7 @@ } }, { - "id": 23522, + "id": 22381, "properties": { "east": "low", "north": "tall", @@ -274154,7 +263792,7 @@ } }, { - "id": 23523, + "id": 22382, "properties": { "east": "low", "north": "tall", @@ -274165,7 +263803,7 @@ } }, { - "id": 23524, + "id": 22383, "properties": { "east": "low", "north": "tall", @@ -274176,7 +263814,7 @@ } }, { - "id": 23525, + "id": 22384, "properties": { "east": "low", "north": "tall", @@ -274187,7 +263825,7 @@ } }, { - "id": 23526, + "id": 22385, "properties": { "east": "low", "north": "tall", @@ -274198,7 +263836,7 @@ } }, { - "id": 23527, + "id": 22386, "properties": { "east": "low", "north": "tall", @@ -274209,7 +263847,7 @@ } }, { - "id": 23528, + "id": 22387, "properties": { "east": "low", "north": "tall", @@ -274220,7 +263858,7 @@ } }, { - "id": 23529, + "id": 22388, "properties": { "east": "low", "north": "tall", @@ -274231,7 +263869,7 @@ } }, { - "id": 23530, + "id": 22389, "properties": { "east": "low", "north": "tall", @@ -274242,7 +263880,7 @@ } }, { - "id": 23531, + "id": 22390, "properties": { "east": "low", "north": "tall", @@ -274253,7 +263891,7 @@ } }, { - "id": 23532, + "id": 22391, "properties": { "east": "low", "north": "tall", @@ -274264,7 +263902,7 @@ } }, { - "id": 23533, + "id": 22392, "properties": { "east": "low", "north": "tall", @@ -274275,7 +263913,7 @@ } }, { - "id": 23534, + "id": 22393, "properties": { "east": "low", "north": "tall", @@ -274286,7 +263924,7 @@ } }, { - "id": 23535, + "id": 22394, "properties": { "east": "low", "north": "tall", @@ -274297,7 +263935,7 @@ } }, { - "id": 23536, + "id": 22395, "properties": { "east": "low", "north": "tall", @@ -274308,7 +263946,7 @@ } }, { - "id": 23537, + "id": 22396, "properties": { "east": "low", "north": "tall", @@ -274319,7 +263957,7 @@ } }, { - "id": 23538, + "id": 22397, "properties": { "east": "low", "north": "tall", @@ -274330,7 +263968,7 @@ } }, { - "id": 23539, + "id": 22398, "properties": { "east": "low", "north": "tall", @@ -274341,7 +263979,7 @@ } }, { - "id": 23540, + "id": 22399, "properties": { "east": "low", "north": "tall", @@ -274352,7 +263990,7 @@ } }, { - "id": 23541, + "id": 22400, "properties": { "east": "low", "north": "tall", @@ -274363,7 +264001,7 @@ } }, { - "id": 23542, + "id": 22401, "properties": { "east": "low", "north": "tall", @@ -274374,7 +264012,7 @@ } }, { - "id": 23543, + "id": 22402, "properties": { "east": "low", "north": "tall", @@ -274385,7 +264023,7 @@ } }, { - "id": 23544, + "id": 22403, "properties": { "east": "low", "north": "tall", @@ -274396,7 +264034,7 @@ } }, { - "id": 23545, + "id": 22404, "properties": { "east": "low", "north": "tall", @@ -274407,7 +264045,7 @@ } }, { - "id": 23546, + "id": 22405, "properties": { "east": "low", "north": "tall", @@ -274418,7 +264056,7 @@ } }, { - "id": 23547, + "id": 22406, "properties": { "east": "low", "north": "tall", @@ -274429,7 +264067,7 @@ } }, { - "id": 23548, + "id": 22407, "properties": { "east": "low", "north": "tall", @@ -274440,7 +264078,7 @@ } }, { - "id": 23549, + "id": 22408, "properties": { "east": "low", "north": "tall", @@ -274451,7 +264089,7 @@ } }, { - "id": 23550, + "id": 22409, "properties": { "east": "low", "north": "tall", @@ -274462,7 +264100,7 @@ } }, { - "id": 23551, + "id": 22410, "properties": { "east": "low", "north": "tall", @@ -274473,7 +264111,7 @@ } }, { - "id": 23552, + "id": 22411, "properties": { "east": "low", "north": "tall", @@ -274484,7 +264122,7 @@ } }, { - "id": 23553, + "id": 22412, "properties": { "east": "tall", "north": "none", @@ -274495,7 +264133,7 @@ } }, { - "id": 23554, + "id": 22413, "properties": { "east": "tall", "north": "none", @@ -274506,7 +264144,7 @@ } }, { - "id": 23555, + "id": 22414, "properties": { "east": "tall", "north": "none", @@ -274517,7 +264155,7 @@ } }, { - "id": 23556, + "id": 22415, "properties": { "east": "tall", "north": "none", @@ -274528,7 +264166,7 @@ } }, { - "id": 23557, + "id": 22416, "properties": { "east": "tall", "north": "none", @@ -274539,7 +264177,7 @@ } }, { - "id": 23558, + "id": 22417, "properties": { "east": "tall", "north": "none", @@ -274550,7 +264188,7 @@ } }, { - "id": 23559, + "id": 22418, "properties": { "east": "tall", "north": "none", @@ -274561,7 +264199,7 @@ } }, { - "id": 23560, + "id": 22419, "properties": { "east": "tall", "north": "none", @@ -274572,7 +264210,7 @@ } }, { - "id": 23561, + "id": 22420, "properties": { "east": "tall", "north": "none", @@ -274583,7 +264221,7 @@ } }, { - "id": 23562, + "id": 22421, "properties": { "east": "tall", "north": "none", @@ -274594,7 +264232,7 @@ } }, { - "id": 23563, + "id": 22422, "properties": { "east": "tall", "north": "none", @@ -274605,7 +264243,7 @@ } }, { - "id": 23564, + "id": 22423, "properties": { "east": "tall", "north": "none", @@ -274616,7 +264254,7 @@ } }, { - "id": 23565, + "id": 22424, "properties": { "east": "tall", "north": "none", @@ -274627,7 +264265,7 @@ } }, { - "id": 23566, + "id": 22425, "properties": { "east": "tall", "north": "none", @@ -274638,7 +264276,7 @@ } }, { - "id": 23567, + "id": 22426, "properties": { "east": "tall", "north": "none", @@ -274649,7 +264287,7 @@ } }, { - "id": 23568, + "id": 22427, "properties": { "east": "tall", "north": "none", @@ -274660,7 +264298,7 @@ } }, { - "id": 23569, + "id": 22428, "properties": { "east": "tall", "north": "none", @@ -274671,7 +264309,7 @@ } }, { - "id": 23570, + "id": 22429, "properties": { "east": "tall", "north": "none", @@ -274682,7 +264320,7 @@ } }, { - "id": 23571, + "id": 22430, "properties": { "east": "tall", "north": "none", @@ -274693,7 +264331,7 @@ } }, { - "id": 23572, + "id": 22431, "properties": { "east": "tall", "north": "none", @@ -274704,7 +264342,7 @@ } }, { - "id": 23573, + "id": 22432, "properties": { "east": "tall", "north": "none", @@ -274715,7 +264353,7 @@ } }, { - "id": 23574, + "id": 22433, "properties": { "east": "tall", "north": "none", @@ -274726,7 +264364,7 @@ } }, { - "id": 23575, + "id": 22434, "properties": { "east": "tall", "north": "none", @@ -274737,7 +264375,7 @@ } }, { - "id": 23576, + "id": 22435, "properties": { "east": "tall", "north": "none", @@ -274748,7 +264386,7 @@ } }, { - "id": 23577, + "id": 22436, "properties": { "east": "tall", "north": "none", @@ -274759,7 +264397,7 @@ } }, { - "id": 23578, + "id": 22437, "properties": { "east": "tall", "north": "none", @@ -274770,7 +264408,7 @@ } }, { - "id": 23579, + "id": 22438, "properties": { "east": "tall", "north": "none", @@ -274781,7 +264419,7 @@ } }, { - "id": 23580, + "id": 22439, "properties": { "east": "tall", "north": "none", @@ -274792,7 +264430,7 @@ } }, { - "id": 23581, + "id": 22440, "properties": { "east": "tall", "north": "none", @@ -274803,7 +264441,7 @@ } }, { - "id": 23582, + "id": 22441, "properties": { "east": "tall", "north": "none", @@ -274814,7 +264452,7 @@ } }, { - "id": 23583, + "id": 22442, "properties": { "east": "tall", "north": "none", @@ -274825,7 +264463,7 @@ } }, { - "id": 23584, + "id": 22443, "properties": { "east": "tall", "north": "none", @@ -274836,7 +264474,7 @@ } }, { - "id": 23585, + "id": 22444, "properties": { "east": "tall", "north": "none", @@ -274847,7 +264485,7 @@ } }, { - "id": 23586, + "id": 22445, "properties": { "east": "tall", "north": "none", @@ -274858,7 +264496,7 @@ } }, { - "id": 23587, + "id": 22446, "properties": { "east": "tall", "north": "none", @@ -274869,7 +264507,7 @@ } }, { - "id": 23588, + "id": 22447, "properties": { "east": "tall", "north": "none", @@ -274880,7 +264518,7 @@ } }, { - "id": 23589, + "id": 22448, "properties": { "east": "tall", "north": "low", @@ -274891,7 +264529,7 @@ } }, { - "id": 23590, + "id": 22449, "properties": { "east": "tall", "north": "low", @@ -274902,7 +264540,7 @@ } }, { - "id": 23591, + "id": 22450, "properties": { "east": "tall", "north": "low", @@ -274913,7 +264551,7 @@ } }, { - "id": 23592, + "id": 22451, "properties": { "east": "tall", "north": "low", @@ -274924,7 +264562,7 @@ } }, { - "id": 23593, + "id": 22452, "properties": { "east": "tall", "north": "low", @@ -274935,7 +264573,7 @@ } }, { - "id": 23594, + "id": 22453, "properties": { "east": "tall", "north": "low", @@ -274946,7 +264584,7 @@ } }, { - "id": 23595, + "id": 22454, "properties": { "east": "tall", "north": "low", @@ -274957,7 +264595,7 @@ } }, { - "id": 23596, + "id": 22455, "properties": { "east": "tall", "north": "low", @@ -274968,7 +264606,7 @@ } }, { - "id": 23597, + "id": 22456, "properties": { "east": "tall", "north": "low", @@ -274979,7 +264617,7 @@ } }, { - "id": 23598, + "id": 22457, "properties": { "east": "tall", "north": "low", @@ -274990,7 +264628,7 @@ } }, { - "id": 23599, + "id": 22458, "properties": { "east": "tall", "north": "low", @@ -275001,7 +264639,7 @@ } }, { - "id": 23600, + "id": 22459, "properties": { "east": "tall", "north": "low", @@ -275012,7 +264650,7 @@ } }, { - "id": 23601, + "id": 22460, "properties": { "east": "tall", "north": "low", @@ -275023,7 +264661,7 @@ } }, { - "id": 23602, + "id": 22461, "properties": { "east": "tall", "north": "low", @@ -275034,7 +264672,7 @@ } }, { - "id": 23603, + "id": 22462, "properties": { "east": "tall", "north": "low", @@ -275045,7 +264683,7 @@ } }, { - "id": 23604, + "id": 22463, "properties": { "east": "tall", "north": "low", @@ -275056,7 +264694,7 @@ } }, { - "id": 23605, + "id": 22464, "properties": { "east": "tall", "north": "low", @@ -275067,7 +264705,7 @@ } }, { - "id": 23606, + "id": 22465, "properties": { "east": "tall", "north": "low", @@ -275078,7 +264716,7 @@ } }, { - "id": 23607, + "id": 22466, "properties": { "east": "tall", "north": "low", @@ -275089,7 +264727,7 @@ } }, { - "id": 23608, + "id": 22467, "properties": { "east": "tall", "north": "low", @@ -275100,7 +264738,7 @@ } }, { - "id": 23609, + "id": 22468, "properties": { "east": "tall", "north": "low", @@ -275111,7 +264749,7 @@ } }, { - "id": 23610, + "id": 22469, "properties": { "east": "tall", "north": "low", @@ -275122,7 +264760,7 @@ } }, { - "id": 23611, + "id": 22470, "properties": { "east": "tall", "north": "low", @@ -275133,7 +264771,7 @@ } }, { - "id": 23612, + "id": 22471, "properties": { "east": "tall", "north": "low", @@ -275144,7 +264782,7 @@ } }, { - "id": 23613, + "id": 22472, "properties": { "east": "tall", "north": "low", @@ -275155,7 +264793,7 @@ } }, { - "id": 23614, + "id": 22473, "properties": { "east": "tall", "north": "low", @@ -275166,7 +264804,7 @@ } }, { - "id": 23615, + "id": 22474, "properties": { "east": "tall", "north": "low", @@ -275177,7 +264815,7 @@ } }, { - "id": 23616, + "id": 22475, "properties": { "east": "tall", "north": "low", @@ -275188,7 +264826,7 @@ } }, { - "id": 23617, + "id": 22476, "properties": { "east": "tall", "north": "low", @@ -275199,7 +264837,7 @@ } }, { - "id": 23618, + "id": 22477, "properties": { "east": "tall", "north": "low", @@ -275210,7 +264848,7 @@ } }, { - "id": 23619, + "id": 22478, "properties": { "east": "tall", "north": "low", @@ -275221,7 +264859,7 @@ } }, { - "id": 23620, + "id": 22479, "properties": { "east": "tall", "north": "low", @@ -275232,7 +264870,7 @@ } }, { - "id": 23621, + "id": 22480, "properties": { "east": "tall", "north": "low", @@ -275243,7 +264881,7 @@ } }, { - "id": 23622, + "id": 22481, "properties": { "east": "tall", "north": "low", @@ -275254,7 +264892,7 @@ } }, { - "id": 23623, + "id": 22482, "properties": { "east": "tall", "north": "low", @@ -275265,7 +264903,7 @@ } }, { - "id": 23624, + "id": 22483, "properties": { "east": "tall", "north": "low", @@ -275276,7 +264914,7 @@ } }, { - "id": 23625, + "id": 22484, "properties": { "east": "tall", "north": "tall", @@ -275287,7 +264925,7 @@ } }, { - "id": 23626, + "id": 22485, "properties": { "east": "tall", "north": "tall", @@ -275298,7 +264936,7 @@ } }, { - "id": 23627, + "id": 22486, "properties": { "east": "tall", "north": "tall", @@ -275309,7 +264947,7 @@ } }, { - "id": 23628, + "id": 22487, "properties": { "east": "tall", "north": "tall", @@ -275320,7 +264958,7 @@ } }, { - "id": 23629, + "id": 22488, "properties": { "east": "tall", "north": "tall", @@ -275331,7 +264969,7 @@ } }, { - "id": 23630, + "id": 22489, "properties": { "east": "tall", "north": "tall", @@ -275342,7 +264980,7 @@ } }, { - "id": 23631, + "id": 22490, "properties": { "east": "tall", "north": "tall", @@ -275353,7 +264991,7 @@ } }, { - "id": 23632, + "id": 22491, "properties": { "east": "tall", "north": "tall", @@ -275364,7 +265002,7 @@ } }, { - "id": 23633, + "id": 22492, "properties": { "east": "tall", "north": "tall", @@ -275375,7 +265013,7 @@ } }, { - "id": 23634, + "id": 22493, "properties": { "east": "tall", "north": "tall", @@ -275386,7 +265024,7 @@ } }, { - "id": 23635, + "id": 22494, "properties": { "east": "tall", "north": "tall", @@ -275397,7 +265035,7 @@ } }, { - "id": 23636, + "id": 22495, "properties": { "east": "tall", "north": "tall", @@ -275408,7 +265046,7 @@ } }, { - "id": 23637, + "id": 22496, "properties": { "east": "tall", "north": "tall", @@ -275419,7 +265057,7 @@ } }, { - "id": 23638, + "id": 22497, "properties": { "east": "tall", "north": "tall", @@ -275430,7 +265068,7 @@ } }, { - "id": 23639, + "id": 22498, "properties": { "east": "tall", "north": "tall", @@ -275441,7 +265079,7 @@ } }, { - "id": 23640, + "id": 22499, "properties": { "east": "tall", "north": "tall", @@ -275452,7 +265090,7 @@ } }, { - "id": 23641, + "id": 22500, "properties": { "east": "tall", "north": "tall", @@ -275463,7 +265101,7 @@ } }, { - "id": 23642, + "id": 22501, "properties": { "east": "tall", "north": "tall", @@ -275474,7 +265112,7 @@ } }, { - "id": 23643, + "id": 22502, "properties": { "east": "tall", "north": "tall", @@ -275485,7 +265123,7 @@ } }, { - "id": 23644, + "id": 22503, "properties": { "east": "tall", "north": "tall", @@ -275496,7 +265134,7 @@ } }, { - "id": 23645, + "id": 22504, "properties": { "east": "tall", "north": "tall", @@ -275507,7 +265145,7 @@ } }, { - "id": 23646, + "id": 22505, "properties": { "east": "tall", "north": "tall", @@ -275518,7 +265156,7 @@ } }, { - "id": 23647, + "id": 22506, "properties": { "east": "tall", "north": "tall", @@ -275529,7 +265167,7 @@ } }, { - "id": 23648, + "id": 22507, "properties": { "east": "tall", "north": "tall", @@ -275540,7 +265178,7 @@ } }, { - "id": 23649, + "id": 22508, "properties": { "east": "tall", "north": "tall", @@ -275551,7 +265189,7 @@ } }, { - "id": 23650, + "id": 22509, "properties": { "east": "tall", "north": "tall", @@ -275562,7 +265200,7 @@ } }, { - "id": 23651, + "id": 22510, "properties": { "east": "tall", "north": "tall", @@ -275573,7 +265211,7 @@ } }, { - "id": 23652, + "id": 22511, "properties": { "east": "tall", "north": "tall", @@ -275584,7 +265222,7 @@ } }, { - "id": 23653, + "id": 22512, "properties": { "east": "tall", "north": "tall", @@ -275595,7 +265233,7 @@ } }, { - "id": 23654, + "id": 22513, "properties": { "east": "tall", "north": "tall", @@ -275606,7 +265244,7 @@ } }, { - "id": 23655, + "id": 22514, "properties": { "east": "tall", "north": "tall", @@ -275617,7 +265255,7 @@ } }, { - "id": 23656, + "id": 22515, "properties": { "east": "tall", "north": "tall", @@ -275628,7 +265266,7 @@ } }, { - "id": 23657, + "id": 22516, "properties": { "east": "tall", "north": "tall", @@ -275639,7 +265277,7 @@ } }, { - "id": 23658, + "id": 22517, "properties": { "east": "tall", "north": "tall", @@ -275650,7 +265288,7 @@ } }, { - "id": 23659, + "id": 22518, "properties": { "east": "tall", "north": "tall", @@ -275661,7 +265299,7 @@ } }, { - "id": 23660, + "id": 22519, "properties": { "east": "tall", "north": "tall", @@ -275694,84 +265332,84 @@ "states": [ { "default": true, - "id": 14888, + "id": 13811, "properties": { "eggs": "1", "hatch": "0" } }, { - "id": 14889, + "id": 13812, "properties": { "eggs": "1", "hatch": "1" } }, { - "id": 14890, + "id": 13813, "properties": { "eggs": "1", "hatch": "2" } }, { - "id": 14891, + "id": 13814, "properties": { "eggs": "2", "hatch": "0" } }, { - "id": 14892, + "id": 13815, "properties": { "eggs": "2", "hatch": "1" } }, { - "id": 14893, + "id": 13816, "properties": { "eggs": "2", "hatch": "2" } }, { - "id": 14894, + "id": 13817, "properties": { "eggs": "3", "hatch": "0" } }, { - "id": 14895, + "id": 13818, "properties": { "eggs": "3", "hatch": "1" } }, { - "id": 14896, + "id": 13819, "properties": { "eggs": "3", "hatch": "2" } }, { - "id": 14897, + "id": 13820, "properties": { "eggs": "4", "hatch": "0" } }, { - "id": 14898, + "id": 13821, "properties": { "eggs": "4", "hatch": "1" } }, { - "id": 14899, + "id": 13822, "properties": { "eggs": "4", "hatch": "2" @@ -275817,157 +265455,157 @@ "states": [ { "default": true, - "id": 20802, + "id": 19661, "properties": { "age": "0" } }, { - "id": 20803, + "id": 19662, "properties": { "age": "1" } }, { - "id": 20804, + "id": 19663, "properties": { "age": "2" } }, { - "id": 20805, + "id": 19664, "properties": { "age": "3" } }, { - "id": 20806, + "id": 19665, "properties": { "age": "4" } }, { - "id": 20807, + "id": 19666, "properties": { "age": "5" } }, { - "id": 20808, + "id": 19667, "properties": { "age": "6" } }, { - "id": 20809, + "id": 19668, "properties": { "age": "7" } }, { - "id": 20810, + "id": 19669, "properties": { "age": "8" } }, { - "id": 20811, + "id": 19670, "properties": { "age": "9" } }, { - "id": 20812, + "id": 19671, "properties": { "age": "10" } }, { - "id": 20813, + "id": 19672, "properties": { "age": "11" } }, { - "id": 20814, + "id": 19673, "properties": { "age": "12" } }, { - "id": 20815, + "id": 19674, "properties": { "age": "13" } }, { - "id": 20816, + "id": 19675, "properties": { "age": "14" } }, { - "id": 20817, + "id": 19676, "properties": { "age": "15" } }, { - "id": 20818, + "id": 19677, "properties": { "age": "16" } }, { - "id": 20819, + "id": 19678, "properties": { "age": "17" } }, { - "id": 20820, + "id": 19679, "properties": { "age": "18" } }, { - "id": 20821, + "id": 19680, "properties": { "age": "19" } }, { - "id": 20822, + "id": 19681, "properties": { "age": "20" } }, { - "id": 20823, + "id": 19682, "properties": { "age": "21" } }, { - "id": 20824, + "id": 19683, "properties": { "age": "22" } }, { - "id": 20825, + "id": 19684, "properties": { "age": "23" } }, { - "id": 20826, + "id": 19685, "properties": { "age": "24" } }, { - "id": 20827, + "id": 19686, "properties": { "age": "25" } @@ -275982,7 +265620,7 @@ "states": [ { "default": true, - "id": 20828 + "id": 19687 } ] }, @@ -276011,7 +265649,7 @@ }, "states": [ { - "id": 29467, + "id": 27710, "properties": { "facing": "north", "ominous": "true", @@ -276019,7 +265657,7 @@ } }, { - "id": 29468, + "id": 27711, "properties": { "facing": "north", "ominous": "true", @@ -276027,7 +265665,7 @@ } }, { - "id": 29469, + "id": 27712, "properties": { "facing": "north", "ominous": "true", @@ -276035,7 +265673,7 @@ } }, { - "id": 29470, + "id": 27713, "properties": { "facing": "north", "ominous": "true", @@ -276044,7 +265682,7 @@ }, { "default": true, - "id": 29471, + "id": 27714, "properties": { "facing": "north", "ominous": "false", @@ -276052,7 +265690,7 @@ } }, { - "id": 29472, + "id": 27715, "properties": { "facing": "north", "ominous": "false", @@ -276060,7 +265698,7 @@ } }, { - "id": 29473, + "id": 27716, "properties": { "facing": "north", "ominous": "false", @@ -276068,7 +265706,7 @@ } }, { - "id": 29474, + "id": 27717, "properties": { "facing": "north", "ominous": "false", @@ -276076,7 +265714,7 @@ } }, { - "id": 29475, + "id": 27718, "properties": { "facing": "south", "ominous": "true", @@ -276084,7 +265722,7 @@ } }, { - "id": 29476, + "id": 27719, "properties": { "facing": "south", "ominous": "true", @@ -276092,7 +265730,7 @@ } }, { - "id": 29477, + "id": 27720, "properties": { "facing": "south", "ominous": "true", @@ -276100,7 +265738,7 @@ } }, { - "id": 29478, + "id": 27721, "properties": { "facing": "south", "ominous": "true", @@ -276108,7 +265746,7 @@ } }, { - "id": 29479, + "id": 27722, "properties": { "facing": "south", "ominous": "false", @@ -276116,7 +265754,7 @@ } }, { - "id": 29480, + "id": 27723, "properties": { "facing": "south", "ominous": "false", @@ -276124,7 +265762,7 @@ } }, { - "id": 29481, + "id": 27724, "properties": { "facing": "south", "ominous": "false", @@ -276132,7 +265770,7 @@ } }, { - "id": 29482, + "id": 27725, "properties": { "facing": "south", "ominous": "false", @@ -276140,7 +265778,7 @@ } }, { - "id": 29483, + "id": 27726, "properties": { "facing": "west", "ominous": "true", @@ -276148,7 +265786,7 @@ } }, { - "id": 29484, + "id": 27727, "properties": { "facing": "west", "ominous": "true", @@ -276156,7 +265794,7 @@ } }, { - "id": 29485, + "id": 27728, "properties": { "facing": "west", "ominous": "true", @@ -276164,7 +265802,7 @@ } }, { - "id": 29486, + "id": 27729, "properties": { "facing": "west", "ominous": "true", @@ -276172,7 +265810,7 @@ } }, { - "id": 29487, + "id": 27730, "properties": { "facing": "west", "ominous": "false", @@ -276180,7 +265818,7 @@ } }, { - "id": 29488, + "id": 27731, "properties": { "facing": "west", "ominous": "false", @@ -276188,7 +265826,7 @@ } }, { - "id": 29489, + "id": 27732, "properties": { "facing": "west", "ominous": "false", @@ -276196,7 +265834,7 @@ } }, { - "id": 29490, + "id": 27733, "properties": { "facing": "west", "ominous": "false", @@ -276204,7 +265842,7 @@ } }, { - "id": 29491, + "id": 27734, "properties": { "facing": "east", "ominous": "true", @@ -276212,7 +265850,7 @@ } }, { - "id": 29492, + "id": 27735, "properties": { "facing": "east", "ominous": "true", @@ -276220,7 +265858,7 @@ } }, { - "id": 29493, + "id": 27736, "properties": { "facing": "east", "ominous": "true", @@ -276228,7 +265866,7 @@ } }, { - "id": 29494, + "id": 27737, "properties": { "facing": "east", "ominous": "true", @@ -276236,7 +265874,7 @@ } }, { - "id": 29495, + "id": 27738, "properties": { "facing": "east", "ominous": "false", @@ -276244,7 +265882,7 @@ } }, { - "id": 29496, + "id": 27739, "properties": { "facing": "east", "ominous": "false", @@ -276252,7 +265890,7 @@ } }, { - "id": 29497, + "id": 27740, "properties": { "facing": "east", "ominous": "false", @@ -276260,7 +265898,7 @@ } }, { - "id": 29498, + "id": 27741, "properties": { "facing": "east", "ominous": "false", @@ -276283,20 +265921,20 @@ }, "states": [ { - "id": 29383, + "id": 27626, "properties": { "axis": "x" } }, { "default": true, - "id": 29384, + "id": 27627, "properties": { "axis": "y" } }, { - "id": 29385, + "id": 27628, "properties": { "axis": "z" } @@ -276332,7 +265970,7 @@ }, "states": [ { - "id": 8157, + "id": 7080, "properties": { "east": "true", "north": "true", @@ -276342,7 +265980,7 @@ } }, { - "id": 8158, + "id": 7081, "properties": { "east": "true", "north": "true", @@ -276352,7 +265990,7 @@ } }, { - "id": 8159, + "id": 7082, "properties": { "east": "true", "north": "true", @@ -276362,7 +266000,7 @@ } }, { - "id": 8160, + "id": 7083, "properties": { "east": "true", "north": "true", @@ -276372,7 +266010,7 @@ } }, { - "id": 8161, + "id": 7084, "properties": { "east": "true", "north": "true", @@ -276382,7 +266020,7 @@ } }, { - "id": 8162, + "id": 7085, "properties": { "east": "true", "north": "true", @@ -276392,7 +266030,7 @@ } }, { - "id": 8163, + "id": 7086, "properties": { "east": "true", "north": "true", @@ -276402,7 +266040,7 @@ } }, { - "id": 8164, + "id": 7087, "properties": { "east": "true", "north": "true", @@ -276412,7 +266050,7 @@ } }, { - "id": 8165, + "id": 7088, "properties": { "east": "true", "north": "false", @@ -276422,7 +266060,7 @@ } }, { - "id": 8166, + "id": 7089, "properties": { "east": "true", "north": "false", @@ -276432,7 +266070,7 @@ } }, { - "id": 8167, + "id": 7090, "properties": { "east": "true", "north": "false", @@ -276442,7 +266080,7 @@ } }, { - "id": 8168, + "id": 7091, "properties": { "east": "true", "north": "false", @@ -276452,7 +266090,7 @@ } }, { - "id": 8169, + "id": 7092, "properties": { "east": "true", "north": "false", @@ -276462,7 +266100,7 @@ } }, { - "id": 8170, + "id": 7093, "properties": { "east": "true", "north": "false", @@ -276472,7 +266110,7 @@ } }, { - "id": 8171, + "id": 7094, "properties": { "east": "true", "north": "false", @@ -276482,7 +266120,7 @@ } }, { - "id": 8172, + "id": 7095, "properties": { "east": "true", "north": "false", @@ -276492,7 +266130,7 @@ } }, { - "id": 8173, + "id": 7096, "properties": { "east": "false", "north": "true", @@ -276502,7 +266140,7 @@ } }, { - "id": 8174, + "id": 7097, "properties": { "east": "false", "north": "true", @@ -276512,7 +266150,7 @@ } }, { - "id": 8175, + "id": 7098, "properties": { "east": "false", "north": "true", @@ -276522,7 +266160,7 @@ } }, { - "id": 8176, + "id": 7099, "properties": { "east": "false", "north": "true", @@ -276532,7 +266170,7 @@ } }, { - "id": 8177, + "id": 7100, "properties": { "east": "false", "north": "true", @@ -276542,7 +266180,7 @@ } }, { - "id": 8178, + "id": 7101, "properties": { "east": "false", "north": "true", @@ -276552,7 +266190,7 @@ } }, { - "id": 8179, + "id": 7102, "properties": { "east": "false", "north": "true", @@ -276562,7 +266200,7 @@ } }, { - "id": 8180, + "id": 7103, "properties": { "east": "false", "north": "true", @@ -276572,7 +266210,7 @@ } }, { - "id": 8181, + "id": 7104, "properties": { "east": "false", "north": "false", @@ -276582,7 +266220,7 @@ } }, { - "id": 8182, + "id": 7105, "properties": { "east": "false", "north": "false", @@ -276592,7 +266230,7 @@ } }, { - "id": 8183, + "id": 7106, "properties": { "east": "false", "north": "false", @@ -276602,7 +266240,7 @@ } }, { - "id": 8184, + "id": 7107, "properties": { "east": "false", "north": "false", @@ -276612,7 +266250,7 @@ } }, { - "id": 8185, + "id": 7108, "properties": { "east": "false", "north": "false", @@ -276622,7 +266260,7 @@ } }, { - "id": 8186, + "id": 7109, "properties": { "east": "false", "north": "false", @@ -276632,7 +266270,7 @@ } }, { - "id": 8187, + "id": 7110, "properties": { "east": "false", "north": "false", @@ -276643,7 +266281,7 @@ }, { "default": true, - "id": 8188, + "id": 7111, "properties": { "east": "false", "north": "false", @@ -276662,7 +266300,7 @@ "states": [ { "default": true, - "id": 15090 + "id": 13981 } ] }, @@ -276683,25 +266321,25 @@ "states": [ { "default": true, - "id": 3170, + "id": 2402, "properties": { "facing": "north" } }, { - "id": 3171, + "id": 2403, "properties": { "facing": "south" } }, { - "id": 3172, + "id": 2404, "properties": { "facing": "west" } }, { - "id": 3173, + "id": 2405, "properties": { "facing": "east" } @@ -276734,7 +266372,7 @@ }, "states": [ { - "id": 21288, + "id": 20147, "properties": { "face": "floor", "facing": "north", @@ -276742,7 +266380,7 @@ } }, { - "id": 21289, + "id": 20148, "properties": { "face": "floor", "facing": "north", @@ -276750,7 +266388,7 @@ } }, { - "id": 21290, + "id": 20149, "properties": { "face": "floor", "facing": "south", @@ -276758,7 +266396,7 @@ } }, { - "id": 21291, + "id": 20150, "properties": { "face": "floor", "facing": "south", @@ -276766,7 +266404,7 @@ } }, { - "id": 21292, + "id": 20151, "properties": { "face": "floor", "facing": "west", @@ -276774,7 +266412,7 @@ } }, { - "id": 21293, + "id": 20152, "properties": { "face": "floor", "facing": "west", @@ -276782,7 +266420,7 @@ } }, { - "id": 21294, + "id": 20153, "properties": { "face": "floor", "facing": "east", @@ -276790,7 +266428,7 @@ } }, { - "id": 21295, + "id": 20154, "properties": { "face": "floor", "facing": "east", @@ -276798,7 +266436,7 @@ } }, { - "id": 21296, + "id": 20155, "properties": { "face": "wall", "facing": "north", @@ -276807,7 +266445,7 @@ }, { "default": true, - "id": 21297, + "id": 20156, "properties": { "face": "wall", "facing": "north", @@ -276815,7 +266453,7 @@ } }, { - "id": 21298, + "id": 20157, "properties": { "face": "wall", "facing": "south", @@ -276823,7 +266461,7 @@ } }, { - "id": 21299, + "id": 20158, "properties": { "face": "wall", "facing": "south", @@ -276831,7 +266469,7 @@ } }, { - "id": 21300, + "id": 20159, "properties": { "face": "wall", "facing": "west", @@ -276839,7 +266477,7 @@ } }, { - "id": 21301, + "id": 20160, "properties": { "face": "wall", "facing": "west", @@ -276847,7 +266485,7 @@ } }, { - "id": 21302, + "id": 20161, "properties": { "face": "wall", "facing": "east", @@ -276855,7 +266493,7 @@ } }, { - "id": 21303, + "id": 20162, "properties": { "face": "wall", "facing": "east", @@ -276863,7 +266501,7 @@ } }, { - "id": 21304, + "id": 20163, "properties": { "face": "ceiling", "facing": "north", @@ -276871,7 +266509,7 @@ } }, { - "id": 21305, + "id": 20164, "properties": { "face": "ceiling", "facing": "north", @@ -276879,7 +266517,7 @@ } }, { - "id": 21306, + "id": 20165, "properties": { "face": "ceiling", "facing": "south", @@ -276887,7 +266525,7 @@ } }, { - "id": 21307, + "id": 20166, "properties": { "face": "ceiling", "facing": "south", @@ -276895,7 +266533,7 @@ } }, { - "id": 21308, + "id": 20167, "properties": { "face": "ceiling", "facing": "west", @@ -276903,7 +266541,7 @@ } }, { - "id": 21309, + "id": 20168, "properties": { "face": "ceiling", "facing": "west", @@ -276911,7 +266549,7 @@ } }, { - "id": 21310, + "id": 20169, "properties": { "face": "ceiling", "facing": "east", @@ -276919,7 +266557,7 @@ } }, { - "id": 21311, + "id": 20170, "properties": { "face": "ceiling", "facing": "east", @@ -276960,7 +266598,7 @@ }, "states": [ { - "id": 21376, + "id": 20235, "properties": { "facing": "north", "half": "upper", @@ -276970,7 +266608,7 @@ } }, { - "id": 21377, + "id": 20236, "properties": { "facing": "north", "half": "upper", @@ -276980,7 +266618,7 @@ } }, { - "id": 21378, + "id": 20237, "properties": { "facing": "north", "half": "upper", @@ -276990,7 +266628,7 @@ } }, { - "id": 21379, + "id": 20238, "properties": { "facing": "north", "half": "upper", @@ -277000,7 +266638,7 @@ } }, { - "id": 21380, + "id": 20239, "properties": { "facing": "north", "half": "upper", @@ -277010,7 +266648,7 @@ } }, { - "id": 21381, + "id": 20240, "properties": { "facing": "north", "half": "upper", @@ -277020,7 +266658,7 @@ } }, { - "id": 21382, + "id": 20241, "properties": { "facing": "north", "half": "upper", @@ -277030,7 +266668,7 @@ } }, { - "id": 21383, + "id": 20242, "properties": { "facing": "north", "half": "upper", @@ -277040,7 +266678,7 @@ } }, { - "id": 21384, + "id": 20243, "properties": { "facing": "north", "half": "lower", @@ -277050,7 +266688,7 @@ } }, { - "id": 21385, + "id": 20244, "properties": { "facing": "north", "half": "lower", @@ -277060,7 +266698,7 @@ } }, { - "id": 21386, + "id": 20245, "properties": { "facing": "north", "half": "lower", @@ -277071,7 +266709,7 @@ }, { "default": true, - "id": 21387, + "id": 20246, "properties": { "facing": "north", "half": "lower", @@ -277081,7 +266719,7 @@ } }, { - "id": 21388, + "id": 20247, "properties": { "facing": "north", "half": "lower", @@ -277091,7 +266729,7 @@ } }, { - "id": 21389, + "id": 20248, "properties": { "facing": "north", "half": "lower", @@ -277101,7 +266739,7 @@ } }, { - "id": 21390, + "id": 20249, "properties": { "facing": "north", "half": "lower", @@ -277111,7 +266749,7 @@ } }, { - "id": 21391, + "id": 20250, "properties": { "facing": "north", "half": "lower", @@ -277121,7 +266759,7 @@ } }, { - "id": 21392, + "id": 20251, "properties": { "facing": "south", "half": "upper", @@ -277131,7 +266769,7 @@ } }, { - "id": 21393, + "id": 20252, "properties": { "facing": "south", "half": "upper", @@ -277141,7 +266779,7 @@ } }, { - "id": 21394, + "id": 20253, "properties": { "facing": "south", "half": "upper", @@ -277151,7 +266789,7 @@ } }, { - "id": 21395, + "id": 20254, "properties": { "facing": "south", "half": "upper", @@ -277161,7 +266799,7 @@ } }, { - "id": 21396, + "id": 20255, "properties": { "facing": "south", "half": "upper", @@ -277171,7 +266809,7 @@ } }, { - "id": 21397, + "id": 20256, "properties": { "facing": "south", "half": "upper", @@ -277181,7 +266819,7 @@ } }, { - "id": 21398, + "id": 20257, "properties": { "facing": "south", "half": "upper", @@ -277191,7 +266829,7 @@ } }, { - "id": 21399, + "id": 20258, "properties": { "facing": "south", "half": "upper", @@ -277201,7 +266839,7 @@ } }, { - "id": 21400, + "id": 20259, "properties": { "facing": "south", "half": "lower", @@ -277211,7 +266849,7 @@ } }, { - "id": 21401, + "id": 20260, "properties": { "facing": "south", "half": "lower", @@ -277221,7 +266859,7 @@ } }, { - "id": 21402, + "id": 20261, "properties": { "facing": "south", "half": "lower", @@ -277231,7 +266869,7 @@ } }, { - "id": 21403, + "id": 20262, "properties": { "facing": "south", "half": "lower", @@ -277241,7 +266879,7 @@ } }, { - "id": 21404, + "id": 20263, "properties": { "facing": "south", "half": "lower", @@ -277251,7 +266889,7 @@ } }, { - "id": 21405, + "id": 20264, "properties": { "facing": "south", "half": "lower", @@ -277261,7 +266899,7 @@ } }, { - "id": 21406, + "id": 20265, "properties": { "facing": "south", "half": "lower", @@ -277271,7 +266909,7 @@ } }, { - "id": 21407, + "id": 20266, "properties": { "facing": "south", "half": "lower", @@ -277281,7 +266919,7 @@ } }, { - "id": 21408, + "id": 20267, "properties": { "facing": "west", "half": "upper", @@ -277291,7 +266929,7 @@ } }, { - "id": 21409, + "id": 20268, "properties": { "facing": "west", "half": "upper", @@ -277301,7 +266939,7 @@ } }, { - "id": 21410, + "id": 20269, "properties": { "facing": "west", "half": "upper", @@ -277311,7 +266949,7 @@ } }, { - "id": 21411, + "id": 20270, "properties": { "facing": "west", "half": "upper", @@ -277321,7 +266959,7 @@ } }, { - "id": 21412, + "id": 20271, "properties": { "facing": "west", "half": "upper", @@ -277331,7 +266969,7 @@ } }, { - "id": 21413, + "id": 20272, "properties": { "facing": "west", "half": "upper", @@ -277341,7 +266979,7 @@ } }, { - "id": 21414, + "id": 20273, "properties": { "facing": "west", "half": "upper", @@ -277351,7 +266989,7 @@ } }, { - "id": 21415, + "id": 20274, "properties": { "facing": "west", "half": "upper", @@ -277361,7 +266999,7 @@ } }, { - "id": 21416, + "id": 20275, "properties": { "facing": "west", "half": "lower", @@ -277371,7 +267009,7 @@ } }, { - "id": 21417, + "id": 20276, "properties": { "facing": "west", "half": "lower", @@ -277381,7 +267019,7 @@ } }, { - "id": 21418, + "id": 20277, "properties": { "facing": "west", "half": "lower", @@ -277391,7 +267029,7 @@ } }, { - "id": 21419, + "id": 20278, "properties": { "facing": "west", "half": "lower", @@ -277401,7 +267039,7 @@ } }, { - "id": 21420, + "id": 20279, "properties": { "facing": "west", "half": "lower", @@ -277411,7 +267049,7 @@ } }, { - "id": 21421, + "id": 20280, "properties": { "facing": "west", "half": "lower", @@ -277421,7 +267059,7 @@ } }, { - "id": 21422, + "id": 20281, "properties": { "facing": "west", "half": "lower", @@ -277431,7 +267069,7 @@ } }, { - "id": 21423, + "id": 20282, "properties": { "facing": "west", "half": "lower", @@ -277441,7 +267079,7 @@ } }, { - "id": 21424, + "id": 20283, "properties": { "facing": "east", "half": "upper", @@ -277451,7 +267089,7 @@ } }, { - "id": 21425, + "id": 20284, "properties": { "facing": "east", "half": "upper", @@ -277461,7 +267099,7 @@ } }, { - "id": 21426, + "id": 20285, "properties": { "facing": "east", "half": "upper", @@ -277471,7 +267109,7 @@ } }, { - "id": 21427, + "id": 20286, "properties": { "facing": "east", "half": "upper", @@ -277481,7 +267119,7 @@ } }, { - "id": 21428, + "id": 20287, "properties": { "facing": "east", "half": "upper", @@ -277491,7 +267129,7 @@ } }, { - "id": 21429, + "id": 20288, "properties": { "facing": "east", "half": "upper", @@ -277501,7 +267139,7 @@ } }, { - "id": 21430, + "id": 20289, "properties": { "facing": "east", "half": "upper", @@ -277511,7 +267149,7 @@ } }, { - "id": 21431, + "id": 20290, "properties": { "facing": "east", "half": "upper", @@ -277521,7 +267159,7 @@ } }, { - "id": 21432, + "id": 20291, "properties": { "facing": "east", "half": "lower", @@ -277531,7 +267169,7 @@ } }, { - "id": 21433, + "id": 20292, "properties": { "facing": "east", "half": "lower", @@ -277541,7 +267179,7 @@ } }, { - "id": 21434, + "id": 20293, "properties": { "facing": "east", "half": "lower", @@ -277551,7 +267189,7 @@ } }, { - "id": 21435, + "id": 20294, "properties": { "facing": "east", "half": "lower", @@ -277561,7 +267199,7 @@ } }, { - "id": 21436, + "id": 20295, "properties": { "facing": "east", "half": "lower", @@ -277571,7 +267209,7 @@ } }, { - "id": 21437, + "id": 20296, "properties": { "facing": "east", "half": "lower", @@ -277581,7 +267219,7 @@ } }, { - "id": 21438, + "id": 20297, "properties": { "facing": "east", "half": "lower", @@ -277591,7 +267229,7 @@ } }, { - "id": 21439, + "id": 20298, "properties": { "facing": "east", "half": "lower", @@ -277631,7 +267269,7 @@ }, "states": [ { - "id": 20880, + "id": 19739, "properties": { "east": "true", "north": "true", @@ -277641,7 +267279,7 @@ } }, { - "id": 20881, + "id": 19740, "properties": { "east": "true", "north": "true", @@ -277651,7 +267289,7 @@ } }, { - "id": 20882, + "id": 19741, "properties": { "east": "true", "north": "true", @@ -277661,7 +267299,7 @@ } }, { - "id": 20883, + "id": 19742, "properties": { "east": "true", "north": "true", @@ -277671,7 +267309,7 @@ } }, { - "id": 20884, + "id": 19743, "properties": { "east": "true", "north": "true", @@ -277681,7 +267319,7 @@ } }, { - "id": 20885, + "id": 19744, "properties": { "east": "true", "north": "true", @@ -277691,7 +267329,7 @@ } }, { - "id": 20886, + "id": 19745, "properties": { "east": "true", "north": "true", @@ -277701,7 +267339,7 @@ } }, { - "id": 20887, + "id": 19746, "properties": { "east": "true", "north": "true", @@ -277711,7 +267349,7 @@ } }, { - "id": 20888, + "id": 19747, "properties": { "east": "true", "north": "false", @@ -277721,7 +267359,7 @@ } }, { - "id": 20889, + "id": 19748, "properties": { "east": "true", "north": "false", @@ -277731,7 +267369,7 @@ } }, { - "id": 20890, + "id": 19749, "properties": { "east": "true", "north": "false", @@ -277741,7 +267379,7 @@ } }, { - "id": 20891, + "id": 19750, "properties": { "east": "true", "north": "false", @@ -277751,7 +267389,7 @@ } }, { - "id": 20892, + "id": 19751, "properties": { "east": "true", "north": "false", @@ -277761,7 +267399,7 @@ } }, { - "id": 20893, + "id": 19752, "properties": { "east": "true", "north": "false", @@ -277771,7 +267409,7 @@ } }, { - "id": 20894, + "id": 19753, "properties": { "east": "true", "north": "false", @@ -277781,7 +267419,7 @@ } }, { - "id": 20895, + "id": 19754, "properties": { "east": "true", "north": "false", @@ -277791,7 +267429,7 @@ } }, { - "id": 20896, + "id": 19755, "properties": { "east": "false", "north": "true", @@ -277801,7 +267439,7 @@ } }, { - "id": 20897, + "id": 19756, "properties": { "east": "false", "north": "true", @@ -277811,7 +267449,7 @@ } }, { - "id": 20898, + "id": 19757, "properties": { "east": "false", "north": "true", @@ -277821,7 +267459,7 @@ } }, { - "id": 20899, + "id": 19758, "properties": { "east": "false", "north": "true", @@ -277831,7 +267469,7 @@ } }, { - "id": 20900, + "id": 19759, "properties": { "east": "false", "north": "true", @@ -277841,7 +267479,7 @@ } }, { - "id": 20901, + "id": 19760, "properties": { "east": "false", "north": "true", @@ -277851,7 +267489,7 @@ } }, { - "id": 20902, + "id": 19761, "properties": { "east": "false", "north": "true", @@ -277861,7 +267499,7 @@ } }, { - "id": 20903, + "id": 19762, "properties": { "east": "false", "north": "true", @@ -277871,7 +267509,7 @@ } }, { - "id": 20904, + "id": 19763, "properties": { "east": "false", "north": "false", @@ -277881,7 +267519,7 @@ } }, { - "id": 20905, + "id": 19764, "properties": { "east": "false", "north": "false", @@ -277891,7 +267529,7 @@ } }, { - "id": 20906, + "id": 19765, "properties": { "east": "false", "north": "false", @@ -277901,7 +267539,7 @@ } }, { - "id": 20907, + "id": 19766, "properties": { "east": "false", "north": "false", @@ -277911,7 +267549,7 @@ } }, { - "id": 20908, + "id": 19767, "properties": { "east": "false", "north": "false", @@ -277921,7 +267559,7 @@ } }, { - "id": 20909, + "id": 19768, "properties": { "east": "false", "north": "false", @@ -277931,7 +267569,7 @@ } }, { - "id": 20910, + "id": 19769, "properties": { "east": "false", "north": "false", @@ -277942,7 +267580,7 @@ }, { "default": true, - "id": 20911, + "id": 19770, "properties": { "east": "false", "north": "false", @@ -277981,7 +267619,7 @@ }, "states": [ { - "id": 21072, + "id": 19931, "properties": { "facing": "north", "in_wall": "true", @@ -277990,7 +267628,7 @@ } }, { - "id": 21073, + "id": 19932, "properties": { "facing": "north", "in_wall": "true", @@ -277999,7 +267637,7 @@ } }, { - "id": 21074, + "id": 19933, "properties": { "facing": "north", "in_wall": "true", @@ -278008,7 +267646,7 @@ } }, { - "id": 21075, + "id": 19934, "properties": { "facing": "north", "in_wall": "true", @@ -278017,7 +267655,7 @@ } }, { - "id": 21076, + "id": 19935, "properties": { "facing": "north", "in_wall": "false", @@ -278026,7 +267664,7 @@ } }, { - "id": 21077, + "id": 19936, "properties": { "facing": "north", "in_wall": "false", @@ -278035,7 +267673,7 @@ } }, { - "id": 21078, + "id": 19937, "properties": { "facing": "north", "in_wall": "false", @@ -278045,7 +267683,7 @@ }, { "default": true, - "id": 21079, + "id": 19938, "properties": { "facing": "north", "in_wall": "false", @@ -278054,7 +267692,7 @@ } }, { - "id": 21080, + "id": 19939, "properties": { "facing": "south", "in_wall": "true", @@ -278063,7 +267701,7 @@ } }, { - "id": 21081, + "id": 19940, "properties": { "facing": "south", "in_wall": "true", @@ -278072,7 +267710,7 @@ } }, { - "id": 21082, + "id": 19941, "properties": { "facing": "south", "in_wall": "true", @@ -278081,7 +267719,7 @@ } }, { - "id": 21083, + "id": 19942, "properties": { "facing": "south", "in_wall": "true", @@ -278090,7 +267728,7 @@ } }, { - "id": 21084, + "id": 19943, "properties": { "facing": "south", "in_wall": "false", @@ -278099,7 +267737,7 @@ } }, { - "id": 21085, + "id": 19944, "properties": { "facing": "south", "in_wall": "false", @@ -278108,7 +267746,7 @@ } }, { - "id": 21086, + "id": 19945, "properties": { "facing": "south", "in_wall": "false", @@ -278117,7 +267755,7 @@ } }, { - "id": 21087, + "id": 19946, "properties": { "facing": "south", "in_wall": "false", @@ -278126,7 +267764,7 @@ } }, { - "id": 21088, + "id": 19947, "properties": { "facing": "west", "in_wall": "true", @@ -278135,7 +267773,7 @@ } }, { - "id": 21089, + "id": 19948, "properties": { "facing": "west", "in_wall": "true", @@ -278144,7 +267782,7 @@ } }, { - "id": 21090, + "id": 19949, "properties": { "facing": "west", "in_wall": "true", @@ -278153,7 +267791,7 @@ } }, { - "id": 21091, + "id": 19950, "properties": { "facing": "west", "in_wall": "true", @@ -278162,7 +267800,7 @@ } }, { - "id": 21092, + "id": 19951, "properties": { "facing": "west", "in_wall": "false", @@ -278171,7 +267809,7 @@ } }, { - "id": 21093, + "id": 19952, "properties": { "facing": "west", "in_wall": "false", @@ -278180,7 +267818,7 @@ } }, { - "id": 21094, + "id": 19953, "properties": { "facing": "west", "in_wall": "false", @@ -278189,7 +267827,7 @@ } }, { - "id": 21095, + "id": 19954, "properties": { "facing": "west", "in_wall": "false", @@ -278198,7 +267836,7 @@ } }, { - "id": 21096, + "id": 19955, "properties": { "facing": "east", "in_wall": "true", @@ -278207,7 +267845,7 @@ } }, { - "id": 21097, + "id": 19956, "properties": { "facing": "east", "in_wall": "true", @@ -278216,7 +267854,7 @@ } }, { - "id": 21098, + "id": 19957, "properties": { "facing": "east", "in_wall": "true", @@ -278225,7 +267863,7 @@ } }, { - "id": 21099, + "id": 19958, "properties": { "facing": "east", "in_wall": "true", @@ -278234,7 +267872,7 @@ } }, { - "id": 21100, + "id": 19959, "properties": { "facing": "east", "in_wall": "false", @@ -278243,7 +267881,7 @@ } }, { - "id": 21101, + "id": 19960, "properties": { "facing": "east", "in_wall": "false", @@ -278252,7 +267890,7 @@ } }, { - "id": 21102, + "id": 19961, "properties": { "facing": "east", "in_wall": "false", @@ -278261,7 +267899,7 @@ } }, { - "id": 21103, + "id": 19962, "properties": { "facing": "east", "in_wall": "false", @@ -278281,7 +267919,7 @@ "states": [ { "default": true, - "id": 20756 + "id": 19615 } ] }, @@ -278321,7 +267959,7 @@ }, "states": [ { - "id": 6282, + "id": 5514, "properties": { "attached": "true", "rotation": "0", @@ -278329,7 +267967,7 @@ } }, { - "id": 6283, + "id": 5515, "properties": { "attached": "true", "rotation": "0", @@ -278337,7 +267975,7 @@ } }, { - "id": 6284, + "id": 5516, "properties": { "attached": "true", "rotation": "1", @@ -278345,7 +267983,7 @@ } }, { - "id": 6285, + "id": 5517, "properties": { "attached": "true", "rotation": "1", @@ -278353,7 +267991,7 @@ } }, { - "id": 6286, + "id": 5518, "properties": { "attached": "true", "rotation": "2", @@ -278361,7 +267999,7 @@ } }, { - "id": 6287, + "id": 5519, "properties": { "attached": "true", "rotation": "2", @@ -278369,7 +268007,7 @@ } }, { - "id": 6288, + "id": 5520, "properties": { "attached": "true", "rotation": "3", @@ -278377,7 +268015,7 @@ } }, { - "id": 6289, + "id": 5521, "properties": { "attached": "true", "rotation": "3", @@ -278385,7 +268023,7 @@ } }, { - "id": 6290, + "id": 5522, "properties": { "attached": "true", "rotation": "4", @@ -278393,7 +268031,7 @@ } }, { - "id": 6291, + "id": 5523, "properties": { "attached": "true", "rotation": "4", @@ -278401,7 +268039,7 @@ } }, { - "id": 6292, + "id": 5524, "properties": { "attached": "true", "rotation": "5", @@ -278409,7 +268047,7 @@ } }, { - "id": 6293, + "id": 5525, "properties": { "attached": "true", "rotation": "5", @@ -278417,7 +268055,7 @@ } }, { - "id": 6294, + "id": 5526, "properties": { "attached": "true", "rotation": "6", @@ -278425,7 +268063,7 @@ } }, { - "id": 6295, + "id": 5527, "properties": { "attached": "true", "rotation": "6", @@ -278433,7 +268071,7 @@ } }, { - "id": 6296, + "id": 5528, "properties": { "attached": "true", "rotation": "7", @@ -278441,7 +268079,7 @@ } }, { - "id": 6297, + "id": 5529, "properties": { "attached": "true", "rotation": "7", @@ -278449,7 +268087,7 @@ } }, { - "id": 6298, + "id": 5530, "properties": { "attached": "true", "rotation": "8", @@ -278457,7 +268095,7 @@ } }, { - "id": 6299, + "id": 5531, "properties": { "attached": "true", "rotation": "8", @@ -278465,7 +268103,7 @@ } }, { - "id": 6300, + "id": 5532, "properties": { "attached": "true", "rotation": "9", @@ -278473,7 +268111,7 @@ } }, { - "id": 6301, + "id": 5533, "properties": { "attached": "true", "rotation": "9", @@ -278481,7 +268119,7 @@ } }, { - "id": 6302, + "id": 5534, "properties": { "attached": "true", "rotation": "10", @@ -278489,7 +268127,7 @@ } }, { - "id": 6303, + "id": 5535, "properties": { "attached": "true", "rotation": "10", @@ -278497,7 +268135,7 @@ } }, { - "id": 6304, + "id": 5536, "properties": { "attached": "true", "rotation": "11", @@ -278505,7 +268143,7 @@ } }, { - "id": 6305, + "id": 5537, "properties": { "attached": "true", "rotation": "11", @@ -278513,7 +268151,7 @@ } }, { - "id": 6306, + "id": 5538, "properties": { "attached": "true", "rotation": "12", @@ -278521,7 +268159,7 @@ } }, { - "id": 6307, + "id": 5539, "properties": { "attached": "true", "rotation": "12", @@ -278529,7 +268167,7 @@ } }, { - "id": 6308, + "id": 5540, "properties": { "attached": "true", "rotation": "13", @@ -278537,7 +268175,7 @@ } }, { - "id": 6309, + "id": 5541, "properties": { "attached": "true", "rotation": "13", @@ -278545,7 +268183,7 @@ } }, { - "id": 6310, + "id": 5542, "properties": { "attached": "true", "rotation": "14", @@ -278553,7 +268191,7 @@ } }, { - "id": 6311, + "id": 5543, "properties": { "attached": "true", "rotation": "14", @@ -278561,7 +268199,7 @@ } }, { - "id": 6312, + "id": 5544, "properties": { "attached": "true", "rotation": "15", @@ -278569,7 +268207,7 @@ } }, { - "id": 6313, + "id": 5545, "properties": { "attached": "true", "rotation": "15", @@ -278577,7 +268215,7 @@ } }, { - "id": 6314, + "id": 5546, "properties": { "attached": "false", "rotation": "0", @@ -278586,7 +268224,7 @@ }, { "default": true, - "id": 6315, + "id": 5547, "properties": { "attached": "false", "rotation": "0", @@ -278594,7 +268232,7 @@ } }, { - "id": 6316, + "id": 5548, "properties": { "attached": "false", "rotation": "1", @@ -278602,7 +268240,7 @@ } }, { - "id": 6317, + "id": 5549, "properties": { "attached": "false", "rotation": "1", @@ -278610,7 +268248,7 @@ } }, { - "id": 6318, + "id": 5550, "properties": { "attached": "false", "rotation": "2", @@ -278618,7 +268256,7 @@ } }, { - "id": 6319, + "id": 5551, "properties": { "attached": "false", "rotation": "2", @@ -278626,7 +268264,7 @@ } }, { - "id": 6320, + "id": 5552, "properties": { "attached": "false", "rotation": "3", @@ -278634,7 +268272,7 @@ } }, { - "id": 6321, + "id": 5553, "properties": { "attached": "false", "rotation": "3", @@ -278642,7 +268280,7 @@ } }, { - "id": 6322, + "id": 5554, "properties": { "attached": "false", "rotation": "4", @@ -278650,7 +268288,7 @@ } }, { - "id": 6323, + "id": 5555, "properties": { "attached": "false", "rotation": "4", @@ -278658,7 +268296,7 @@ } }, { - "id": 6324, + "id": 5556, "properties": { "attached": "false", "rotation": "5", @@ -278666,7 +268304,7 @@ } }, { - "id": 6325, + "id": 5557, "properties": { "attached": "false", "rotation": "5", @@ -278674,7 +268312,7 @@ } }, { - "id": 6326, + "id": 5558, "properties": { "attached": "false", "rotation": "6", @@ -278682,7 +268320,7 @@ } }, { - "id": 6327, + "id": 5559, "properties": { "attached": "false", "rotation": "6", @@ -278690,7 +268328,7 @@ } }, { - "id": 6328, + "id": 5560, "properties": { "attached": "false", "rotation": "7", @@ -278698,7 +268336,7 @@ } }, { - "id": 6329, + "id": 5561, "properties": { "attached": "false", "rotation": "7", @@ -278706,7 +268344,7 @@ } }, { - "id": 6330, + "id": 5562, "properties": { "attached": "false", "rotation": "8", @@ -278714,7 +268352,7 @@ } }, { - "id": 6331, + "id": 5563, "properties": { "attached": "false", "rotation": "8", @@ -278722,7 +268360,7 @@ } }, { - "id": 6332, + "id": 5564, "properties": { "attached": "false", "rotation": "9", @@ -278730,7 +268368,7 @@ } }, { - "id": 6333, + "id": 5565, "properties": { "attached": "false", "rotation": "9", @@ -278738,7 +268376,7 @@ } }, { - "id": 6334, + "id": 5566, "properties": { "attached": "false", "rotation": "10", @@ -278746,7 +268384,7 @@ } }, { - "id": 6335, + "id": 5567, "properties": { "attached": "false", "rotation": "10", @@ -278754,7 +268392,7 @@ } }, { - "id": 6336, + "id": 5568, "properties": { "attached": "false", "rotation": "11", @@ -278762,7 +268400,7 @@ } }, { - "id": 6337, + "id": 5569, "properties": { "attached": "false", "rotation": "11", @@ -278770,7 +268408,7 @@ } }, { - "id": 6338, + "id": 5570, "properties": { "attached": "false", "rotation": "12", @@ -278778,7 +268416,7 @@ } }, { - "id": 6339, + "id": 5571, "properties": { "attached": "false", "rotation": "12", @@ -278786,7 +268424,7 @@ } }, { - "id": 6340, + "id": 5572, "properties": { "attached": "false", "rotation": "13", @@ -278794,7 +268432,7 @@ } }, { - "id": 6341, + "id": 5573, "properties": { "attached": "false", "rotation": "13", @@ -278802,7 +268440,7 @@ } }, { - "id": 6342, + "id": 5574, "properties": { "attached": "false", "rotation": "14", @@ -278810,7 +268448,7 @@ } }, { - "id": 6343, + "id": 5575, "properties": { "attached": "false", "rotation": "14", @@ -278818,7 +268456,7 @@ } }, { - "id": 6344, + "id": 5576, "properties": { "attached": "false", "rotation": "15", @@ -278826,7 +268464,7 @@ } }, { - "id": 6345, + "id": 5577, "properties": { "attached": "false", "rotation": "15", @@ -278849,20 +268487,20 @@ }, "states": [ { - "id": 20749, + "id": 19608, "properties": { "axis": "x" } }, { "default": true, - "id": 20750, + "id": 19609, "properties": { "axis": "y" } }, { - "id": 20751, + "id": 19610, "properties": { "axis": "z" } @@ -278877,7 +268515,7 @@ "states": [ { "default": true, - "id": 20755 + "id": 19614 } ] }, @@ -278889,7 +268527,7 @@ "states": [ { "default": true, - "id": 20831 + "id": 19690 } ] }, @@ -278907,14 +268545,14 @@ }, "states": [ { - "id": 20846, + "id": 19705, "properties": { "powered": "true" } }, { "default": true, - "id": 20847, + "id": 19706, "properties": { "powered": "false" } @@ -278929,614 +268567,7 @@ "states": [ { "default": true, - "id": 20758 - } - ] - }, - "minecraft:warped_shelf": { - "definition": { - "type": "minecraft:shelf", - "properties": {} - }, - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ], - "side_chain": [ - "unconnected", - "right", - "center", - "left" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 3103, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 3104, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 3105, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 3106, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 3107, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 3108, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 3109, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 3110, - "properties": { - "facing": "north", - "powered": "true", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 3111, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 3112, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 3113, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 3114, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 3115, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 3116, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 3117, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 3118, - "properties": { - "facing": "north", - "powered": "false", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 3119, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 3120, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 3121, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 3122, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 3123, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 3124, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 3125, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 3126, - "properties": { - "facing": "south", - "powered": "true", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 3127, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 3128, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 3129, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 3130, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 3131, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 3132, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 3133, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 3134, - "properties": { - "facing": "south", - "powered": "false", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 3135, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 3136, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 3137, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 3138, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 3139, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 3140, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 3141, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 3142, - "properties": { - "facing": "west", - "powered": "true", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 3143, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 3144, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 3145, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 3146, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 3147, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 3148, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 3149, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 3150, - "properties": { - "facing": "west", - "powered": "false", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 3151, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 3152, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 3153, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 3154, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 3155, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 3156, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 3157, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 3158, - "properties": { - "facing": "east", - "powered": "true", - "side_chain": "left", - "waterlogged": "false" - } - }, - { - "id": 3159, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "true" - } - }, - { - "id": 3160, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "unconnected", - "waterlogged": "false" - } - }, - { - "id": 3161, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "right", - "waterlogged": "true" - } - }, - { - "id": 3162, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "right", - "waterlogged": "false" - } - }, - { - "id": 3163, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "center", - "waterlogged": "true" - } - }, - { - "id": 3164, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "center", - "waterlogged": "false" - } - }, - { - "id": 3165, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "left", - "waterlogged": "true" - } - }, - { - "id": 3166, - "properties": { - "facing": "east", - "powered": "false", - "side_chain": "left", - "waterlogged": "false" - } + "id": 19617 } ] }, @@ -279572,7 +268603,7 @@ }, "states": [ { - "id": 21472, + "id": 20331, "properties": { "rotation": "0", "waterlogged": "true" @@ -279580,217 +268611,217 @@ }, { "default": true, - "id": 21473, + "id": 20332, "properties": { "rotation": "0", "waterlogged": "false" } }, { - "id": 21474, + "id": 20333, "properties": { "rotation": "1", "waterlogged": "true" } }, { - "id": 21475, + "id": 20334, "properties": { "rotation": "1", "waterlogged": "false" } }, { - "id": 21476, + "id": 20335, "properties": { "rotation": "2", "waterlogged": "true" } }, { - "id": 21477, + "id": 20336, "properties": { "rotation": "2", "waterlogged": "false" } }, { - "id": 21478, + "id": 20337, "properties": { "rotation": "3", "waterlogged": "true" } }, { - "id": 21479, + "id": 20338, "properties": { "rotation": "3", "waterlogged": "false" } }, { - "id": 21480, + "id": 20339, "properties": { "rotation": "4", "waterlogged": "true" } }, { - "id": 21481, + "id": 20340, "properties": { "rotation": "4", "waterlogged": "false" } }, { - "id": 21482, + "id": 20341, "properties": { "rotation": "5", "waterlogged": "true" } }, { - "id": 21483, + "id": 20342, "properties": { "rotation": "5", "waterlogged": "false" } }, { - "id": 21484, + "id": 20343, "properties": { "rotation": "6", "waterlogged": "true" } }, { - "id": 21485, + "id": 20344, "properties": { "rotation": "6", "waterlogged": "false" } }, { - "id": 21486, + "id": 20345, "properties": { "rotation": "7", "waterlogged": "true" } }, { - "id": 21487, + "id": 20346, "properties": { "rotation": "7", "waterlogged": "false" } }, { - "id": 21488, + "id": 20347, "properties": { "rotation": "8", "waterlogged": "true" } }, { - "id": 21489, + "id": 20348, "properties": { "rotation": "8", "waterlogged": "false" } }, { - "id": 21490, + "id": 20349, "properties": { "rotation": "9", "waterlogged": "true" } }, { - "id": 21491, + "id": 20350, "properties": { "rotation": "9", "waterlogged": "false" } }, { - "id": 21492, + "id": 20351, "properties": { "rotation": "10", "waterlogged": "true" } }, { - "id": 21493, + "id": 20352, "properties": { "rotation": "10", "waterlogged": "false" } }, { - "id": 21494, + "id": 20353, "properties": { "rotation": "11", "waterlogged": "true" } }, { - "id": 21495, + "id": 20354, "properties": { "rotation": "11", "waterlogged": "false" } }, { - "id": 21496, + "id": 20355, "properties": { "rotation": "12", "waterlogged": "true" } }, { - "id": 21497, + "id": 20356, "properties": { "rotation": "12", "waterlogged": "false" } }, { - "id": 21498, + "id": 20357, "properties": { "rotation": "13", "waterlogged": "true" } }, { - "id": 21499, + "id": 20358, "properties": { "rotation": "13", "waterlogged": "false" } }, { - "id": 21500, + "id": 20359, "properties": { "rotation": "14", "waterlogged": "true" } }, { - "id": 21501, + "id": 20360, "properties": { "rotation": "14", "waterlogged": "false" } }, { - "id": 21502, + "id": 20361, "properties": { "rotation": "15", "waterlogged": "true" } }, { - "id": 21503, + "id": 20362, "properties": { "rotation": "15", "waterlogged": "false" @@ -279816,21 +268847,21 @@ }, "states": [ { - "id": 20838, + "id": 19697, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 20839, + "id": 19698, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 20840, + "id": 19699, "properties": { "type": "bottom", "waterlogged": "true" @@ -279838,21 +268869,21 @@ }, { "default": true, - "id": 20841, + "id": 19700, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 20842, + "id": 19701, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 20843, + "id": 19702, "properties": { "type": "double", "waterlogged": "false" @@ -279893,7 +268924,7 @@ }, "states": [ { - "id": 21184, + "id": 20043, "properties": { "facing": "north", "half": "top", @@ -279902,7 +268933,7 @@ } }, { - "id": 21185, + "id": 20044, "properties": { "facing": "north", "half": "top", @@ -279911,7 +268942,7 @@ } }, { - "id": 21186, + "id": 20045, "properties": { "facing": "north", "half": "top", @@ -279920,7 +268951,7 @@ } }, { - "id": 21187, + "id": 20046, "properties": { "facing": "north", "half": "top", @@ -279929,7 +268960,7 @@ } }, { - "id": 21188, + "id": 20047, "properties": { "facing": "north", "half": "top", @@ -279938,7 +268969,7 @@ } }, { - "id": 21189, + "id": 20048, "properties": { "facing": "north", "half": "top", @@ -279947,7 +268978,7 @@ } }, { - "id": 21190, + "id": 20049, "properties": { "facing": "north", "half": "top", @@ -279956,7 +268987,7 @@ } }, { - "id": 21191, + "id": 20050, "properties": { "facing": "north", "half": "top", @@ -279965,7 +268996,7 @@ } }, { - "id": 21192, + "id": 20051, "properties": { "facing": "north", "half": "top", @@ -279974,7 +269005,7 @@ } }, { - "id": 21193, + "id": 20052, "properties": { "facing": "north", "half": "top", @@ -279983,7 +269014,7 @@ } }, { - "id": 21194, + "id": 20053, "properties": { "facing": "north", "half": "bottom", @@ -279993,7 +269024,7 @@ }, { "default": true, - "id": 21195, + "id": 20054, "properties": { "facing": "north", "half": "bottom", @@ -280002,7 +269033,7 @@ } }, { - "id": 21196, + "id": 20055, "properties": { "facing": "north", "half": "bottom", @@ -280011,7 +269042,7 @@ } }, { - "id": 21197, + "id": 20056, "properties": { "facing": "north", "half": "bottom", @@ -280020,7 +269051,7 @@ } }, { - "id": 21198, + "id": 20057, "properties": { "facing": "north", "half": "bottom", @@ -280029,7 +269060,7 @@ } }, { - "id": 21199, + "id": 20058, "properties": { "facing": "north", "half": "bottom", @@ -280038,7 +269069,7 @@ } }, { - "id": 21200, + "id": 20059, "properties": { "facing": "north", "half": "bottom", @@ -280047,7 +269078,7 @@ } }, { - "id": 21201, + "id": 20060, "properties": { "facing": "north", "half": "bottom", @@ -280056,7 +269087,7 @@ } }, { - "id": 21202, + "id": 20061, "properties": { "facing": "north", "half": "bottom", @@ -280065,7 +269096,7 @@ } }, { - "id": 21203, + "id": 20062, "properties": { "facing": "north", "half": "bottom", @@ -280074,7 +269105,7 @@ } }, { - "id": 21204, + "id": 20063, "properties": { "facing": "south", "half": "top", @@ -280083,7 +269114,7 @@ } }, { - "id": 21205, + "id": 20064, "properties": { "facing": "south", "half": "top", @@ -280092,7 +269123,7 @@ } }, { - "id": 21206, + "id": 20065, "properties": { "facing": "south", "half": "top", @@ -280101,7 +269132,7 @@ } }, { - "id": 21207, + "id": 20066, "properties": { "facing": "south", "half": "top", @@ -280110,7 +269141,7 @@ } }, { - "id": 21208, + "id": 20067, "properties": { "facing": "south", "half": "top", @@ -280119,7 +269150,7 @@ } }, { - "id": 21209, + "id": 20068, "properties": { "facing": "south", "half": "top", @@ -280128,7 +269159,7 @@ } }, { - "id": 21210, + "id": 20069, "properties": { "facing": "south", "half": "top", @@ -280137,7 +269168,7 @@ } }, { - "id": 21211, + "id": 20070, "properties": { "facing": "south", "half": "top", @@ -280146,7 +269177,7 @@ } }, { - "id": 21212, + "id": 20071, "properties": { "facing": "south", "half": "top", @@ -280155,7 +269186,7 @@ } }, { - "id": 21213, + "id": 20072, "properties": { "facing": "south", "half": "top", @@ -280164,7 +269195,7 @@ } }, { - "id": 21214, + "id": 20073, "properties": { "facing": "south", "half": "bottom", @@ -280173,7 +269204,7 @@ } }, { - "id": 21215, + "id": 20074, "properties": { "facing": "south", "half": "bottom", @@ -280182,7 +269213,7 @@ } }, { - "id": 21216, + "id": 20075, "properties": { "facing": "south", "half": "bottom", @@ -280191,7 +269222,7 @@ } }, { - "id": 21217, + "id": 20076, "properties": { "facing": "south", "half": "bottom", @@ -280200,7 +269231,7 @@ } }, { - "id": 21218, + "id": 20077, "properties": { "facing": "south", "half": "bottom", @@ -280209,7 +269240,7 @@ } }, { - "id": 21219, + "id": 20078, "properties": { "facing": "south", "half": "bottom", @@ -280218,7 +269249,7 @@ } }, { - "id": 21220, + "id": 20079, "properties": { "facing": "south", "half": "bottom", @@ -280227,7 +269258,7 @@ } }, { - "id": 21221, + "id": 20080, "properties": { "facing": "south", "half": "bottom", @@ -280236,7 +269267,7 @@ } }, { - "id": 21222, + "id": 20081, "properties": { "facing": "south", "half": "bottom", @@ -280245,7 +269276,7 @@ } }, { - "id": 21223, + "id": 20082, "properties": { "facing": "south", "half": "bottom", @@ -280254,7 +269285,7 @@ } }, { - "id": 21224, + "id": 20083, "properties": { "facing": "west", "half": "top", @@ -280263,7 +269294,7 @@ } }, { - "id": 21225, + "id": 20084, "properties": { "facing": "west", "half": "top", @@ -280272,7 +269303,7 @@ } }, { - "id": 21226, + "id": 20085, "properties": { "facing": "west", "half": "top", @@ -280281,7 +269312,7 @@ } }, { - "id": 21227, + "id": 20086, "properties": { "facing": "west", "half": "top", @@ -280290,7 +269321,7 @@ } }, { - "id": 21228, + "id": 20087, "properties": { "facing": "west", "half": "top", @@ -280299,7 +269330,7 @@ } }, { - "id": 21229, + "id": 20088, "properties": { "facing": "west", "half": "top", @@ -280308,7 +269339,7 @@ } }, { - "id": 21230, + "id": 20089, "properties": { "facing": "west", "half": "top", @@ -280317,7 +269348,7 @@ } }, { - "id": 21231, + "id": 20090, "properties": { "facing": "west", "half": "top", @@ -280326,7 +269357,7 @@ } }, { - "id": 21232, + "id": 20091, "properties": { "facing": "west", "half": "top", @@ -280335,7 +269366,7 @@ } }, { - "id": 21233, + "id": 20092, "properties": { "facing": "west", "half": "top", @@ -280344,7 +269375,7 @@ } }, { - "id": 21234, + "id": 20093, "properties": { "facing": "west", "half": "bottom", @@ -280353,7 +269384,7 @@ } }, { - "id": 21235, + "id": 20094, "properties": { "facing": "west", "half": "bottom", @@ -280362,7 +269393,7 @@ } }, { - "id": 21236, + "id": 20095, "properties": { "facing": "west", "half": "bottom", @@ -280371,7 +269402,7 @@ } }, { - "id": 21237, + "id": 20096, "properties": { "facing": "west", "half": "bottom", @@ -280380,7 +269411,7 @@ } }, { - "id": 21238, + "id": 20097, "properties": { "facing": "west", "half": "bottom", @@ -280389,7 +269420,7 @@ } }, { - "id": 21239, + "id": 20098, "properties": { "facing": "west", "half": "bottom", @@ -280398,7 +269429,7 @@ } }, { - "id": 21240, + "id": 20099, "properties": { "facing": "west", "half": "bottom", @@ -280407,7 +269438,7 @@ } }, { - "id": 21241, + "id": 20100, "properties": { "facing": "west", "half": "bottom", @@ -280416,7 +269447,7 @@ } }, { - "id": 21242, + "id": 20101, "properties": { "facing": "west", "half": "bottom", @@ -280425,7 +269456,7 @@ } }, { - "id": 21243, + "id": 20102, "properties": { "facing": "west", "half": "bottom", @@ -280434,7 +269465,7 @@ } }, { - "id": 21244, + "id": 20103, "properties": { "facing": "east", "half": "top", @@ -280443,7 +269474,7 @@ } }, { - "id": 21245, + "id": 20104, "properties": { "facing": "east", "half": "top", @@ -280452,7 +269483,7 @@ } }, { - "id": 21246, + "id": 20105, "properties": { "facing": "east", "half": "top", @@ -280461,7 +269492,7 @@ } }, { - "id": 21247, + "id": 20106, "properties": { "facing": "east", "half": "top", @@ -280470,7 +269501,7 @@ } }, { - "id": 21248, + "id": 20107, "properties": { "facing": "east", "half": "top", @@ -280479,7 +269510,7 @@ } }, { - "id": 21249, + "id": 20108, "properties": { "facing": "east", "half": "top", @@ -280488,7 +269519,7 @@ } }, { - "id": 21250, + "id": 20109, "properties": { "facing": "east", "half": "top", @@ -280497,7 +269528,7 @@ } }, { - "id": 21251, + "id": 20110, "properties": { "facing": "east", "half": "top", @@ -280506,7 +269537,7 @@ } }, { - "id": 21252, + "id": 20111, "properties": { "facing": "east", "half": "top", @@ -280515,7 +269546,7 @@ } }, { - "id": 21253, + "id": 20112, "properties": { "facing": "east", "half": "top", @@ -280524,7 +269555,7 @@ } }, { - "id": 21254, + "id": 20113, "properties": { "facing": "east", "half": "bottom", @@ -280533,7 +269564,7 @@ } }, { - "id": 21255, + "id": 20114, "properties": { "facing": "east", "half": "bottom", @@ -280542,7 +269573,7 @@ } }, { - "id": 21256, + "id": 20115, "properties": { "facing": "east", "half": "bottom", @@ -280551,7 +269582,7 @@ } }, { - "id": 21257, + "id": 20116, "properties": { "facing": "east", "half": "bottom", @@ -280560,7 +269591,7 @@ } }, { - "id": 21258, + "id": 20117, "properties": { "facing": "east", "half": "bottom", @@ -280569,7 +269600,7 @@ } }, { - "id": 21259, + "id": 20118, "properties": { "facing": "east", "half": "bottom", @@ -280578,7 +269609,7 @@ } }, { - "id": 21260, + "id": 20119, "properties": { "facing": "east", "half": "bottom", @@ -280587,7 +269618,7 @@ } }, { - "id": 21261, + "id": 20120, "properties": { "facing": "east", "half": "bottom", @@ -280596,7 +269627,7 @@ } }, { - "id": 21262, + "id": 20121, "properties": { "facing": "east", "half": "bottom", @@ -280605,7 +269636,7 @@ } }, { - "id": 21263, + "id": 20122, "properties": { "facing": "east", "half": "bottom", @@ -280629,20 +269660,20 @@ }, "states": [ { - "id": 20743, + "id": 19602, "properties": { "axis": "x" } }, { "default": true, - "id": 20744, + "id": 19603, "properties": { "axis": "y" } }, { - "id": 20745, + "id": 19604, "properties": { "axis": "z" } @@ -280681,7 +269712,7 @@ }, "states": [ { - "id": 20976, + "id": 19835, "properties": { "facing": "north", "half": "top", @@ -280691,7 +269722,7 @@ } }, { - "id": 20977, + "id": 19836, "properties": { "facing": "north", "half": "top", @@ -280701,7 +269732,7 @@ } }, { - "id": 20978, + "id": 19837, "properties": { "facing": "north", "half": "top", @@ -280711,7 +269742,7 @@ } }, { - "id": 20979, + "id": 19838, "properties": { "facing": "north", "half": "top", @@ -280721,7 +269752,7 @@ } }, { - "id": 20980, + "id": 19839, "properties": { "facing": "north", "half": "top", @@ -280731,7 +269762,7 @@ } }, { - "id": 20981, + "id": 19840, "properties": { "facing": "north", "half": "top", @@ -280741,7 +269772,7 @@ } }, { - "id": 20982, + "id": 19841, "properties": { "facing": "north", "half": "top", @@ -280751,7 +269782,7 @@ } }, { - "id": 20983, + "id": 19842, "properties": { "facing": "north", "half": "top", @@ -280761,7 +269792,7 @@ } }, { - "id": 20984, + "id": 19843, "properties": { "facing": "north", "half": "bottom", @@ -280771,7 +269802,7 @@ } }, { - "id": 20985, + "id": 19844, "properties": { "facing": "north", "half": "bottom", @@ -280781,7 +269812,7 @@ } }, { - "id": 20986, + "id": 19845, "properties": { "facing": "north", "half": "bottom", @@ -280791,7 +269822,7 @@ } }, { - "id": 20987, + "id": 19846, "properties": { "facing": "north", "half": "bottom", @@ -280801,7 +269832,7 @@ } }, { - "id": 20988, + "id": 19847, "properties": { "facing": "north", "half": "bottom", @@ -280811,7 +269842,7 @@ } }, { - "id": 20989, + "id": 19848, "properties": { "facing": "north", "half": "bottom", @@ -280821,7 +269852,7 @@ } }, { - "id": 20990, + "id": 19849, "properties": { "facing": "north", "half": "bottom", @@ -280832,7 +269863,7 @@ }, { "default": true, - "id": 20991, + "id": 19850, "properties": { "facing": "north", "half": "bottom", @@ -280842,7 +269873,7 @@ } }, { - "id": 20992, + "id": 19851, "properties": { "facing": "south", "half": "top", @@ -280852,7 +269883,7 @@ } }, { - "id": 20993, + "id": 19852, "properties": { "facing": "south", "half": "top", @@ -280862,7 +269893,7 @@ } }, { - "id": 20994, + "id": 19853, "properties": { "facing": "south", "half": "top", @@ -280872,7 +269903,7 @@ } }, { - "id": 20995, + "id": 19854, "properties": { "facing": "south", "half": "top", @@ -280882,7 +269913,7 @@ } }, { - "id": 20996, + "id": 19855, "properties": { "facing": "south", "half": "top", @@ -280892,7 +269923,7 @@ } }, { - "id": 20997, + "id": 19856, "properties": { "facing": "south", "half": "top", @@ -280902,7 +269933,7 @@ } }, { - "id": 20998, + "id": 19857, "properties": { "facing": "south", "half": "top", @@ -280912,7 +269943,7 @@ } }, { - "id": 20999, + "id": 19858, "properties": { "facing": "south", "half": "top", @@ -280922,7 +269953,7 @@ } }, { - "id": 21000, + "id": 19859, "properties": { "facing": "south", "half": "bottom", @@ -280932,7 +269963,7 @@ } }, { - "id": 21001, + "id": 19860, "properties": { "facing": "south", "half": "bottom", @@ -280942,7 +269973,7 @@ } }, { - "id": 21002, + "id": 19861, "properties": { "facing": "south", "half": "bottom", @@ -280952,7 +269983,7 @@ } }, { - "id": 21003, + "id": 19862, "properties": { "facing": "south", "half": "bottom", @@ -280962,7 +269993,7 @@ } }, { - "id": 21004, + "id": 19863, "properties": { "facing": "south", "half": "bottom", @@ -280972,7 +270003,7 @@ } }, { - "id": 21005, + "id": 19864, "properties": { "facing": "south", "half": "bottom", @@ -280982,7 +270013,7 @@ } }, { - "id": 21006, + "id": 19865, "properties": { "facing": "south", "half": "bottom", @@ -280992,7 +270023,7 @@ } }, { - "id": 21007, + "id": 19866, "properties": { "facing": "south", "half": "bottom", @@ -281002,7 +270033,7 @@ } }, { - "id": 21008, + "id": 19867, "properties": { "facing": "west", "half": "top", @@ -281012,7 +270043,7 @@ } }, { - "id": 21009, + "id": 19868, "properties": { "facing": "west", "half": "top", @@ -281022,7 +270053,7 @@ } }, { - "id": 21010, + "id": 19869, "properties": { "facing": "west", "half": "top", @@ -281032,7 +270063,7 @@ } }, { - "id": 21011, + "id": 19870, "properties": { "facing": "west", "half": "top", @@ -281042,7 +270073,7 @@ } }, { - "id": 21012, + "id": 19871, "properties": { "facing": "west", "half": "top", @@ -281052,7 +270083,7 @@ } }, { - "id": 21013, + "id": 19872, "properties": { "facing": "west", "half": "top", @@ -281062,7 +270093,7 @@ } }, { - "id": 21014, + "id": 19873, "properties": { "facing": "west", "half": "top", @@ -281072,7 +270103,7 @@ } }, { - "id": 21015, + "id": 19874, "properties": { "facing": "west", "half": "top", @@ -281082,7 +270113,7 @@ } }, { - "id": 21016, + "id": 19875, "properties": { "facing": "west", "half": "bottom", @@ -281092,7 +270123,7 @@ } }, { - "id": 21017, + "id": 19876, "properties": { "facing": "west", "half": "bottom", @@ -281102,7 +270133,7 @@ } }, { - "id": 21018, + "id": 19877, "properties": { "facing": "west", "half": "bottom", @@ -281112,7 +270143,7 @@ } }, { - "id": 21019, + "id": 19878, "properties": { "facing": "west", "half": "bottom", @@ -281122,7 +270153,7 @@ } }, { - "id": 21020, + "id": 19879, "properties": { "facing": "west", "half": "bottom", @@ -281132,7 +270163,7 @@ } }, { - "id": 21021, + "id": 19880, "properties": { "facing": "west", "half": "bottom", @@ -281142,7 +270173,7 @@ } }, { - "id": 21022, + "id": 19881, "properties": { "facing": "west", "half": "bottom", @@ -281152,7 +270183,7 @@ } }, { - "id": 21023, + "id": 19882, "properties": { "facing": "west", "half": "bottom", @@ -281162,7 +270193,7 @@ } }, { - "id": 21024, + "id": 19883, "properties": { "facing": "east", "half": "top", @@ -281172,7 +270203,7 @@ } }, { - "id": 21025, + "id": 19884, "properties": { "facing": "east", "half": "top", @@ -281182,7 +270213,7 @@ } }, { - "id": 21026, + "id": 19885, "properties": { "facing": "east", "half": "top", @@ -281192,7 +270223,7 @@ } }, { - "id": 21027, + "id": 19886, "properties": { "facing": "east", "half": "top", @@ -281202,7 +270233,7 @@ } }, { - "id": 21028, + "id": 19887, "properties": { "facing": "east", "half": "top", @@ -281212,7 +270243,7 @@ } }, { - "id": 21029, + "id": 19888, "properties": { "facing": "east", "half": "top", @@ -281222,7 +270253,7 @@ } }, { - "id": 21030, + "id": 19889, "properties": { "facing": "east", "half": "top", @@ -281232,7 +270263,7 @@ } }, { - "id": 21031, + "id": 19890, "properties": { "facing": "east", "half": "top", @@ -281242,7 +270273,7 @@ } }, { - "id": 21032, + "id": 19891, "properties": { "facing": "east", "half": "bottom", @@ -281252,7 +270283,7 @@ } }, { - "id": 21033, + "id": 19892, "properties": { "facing": "east", "half": "bottom", @@ -281262,7 +270293,7 @@ } }, { - "id": 21034, + "id": 19893, "properties": { "facing": "east", "half": "bottom", @@ -281272,7 +270303,7 @@ } }, { - "id": 21035, + "id": 19894, "properties": { "facing": "east", "half": "bottom", @@ -281282,7 +270313,7 @@ } }, { - "id": 21036, + "id": 19895, "properties": { "facing": "east", "half": "bottom", @@ -281292,7 +270323,7 @@ } }, { - "id": 21037, + "id": 19896, "properties": { "facing": "east", "half": "bottom", @@ -281302,7 +270333,7 @@ } }, { - "id": 21038, + "id": 19897, "properties": { "facing": "east", "half": "bottom", @@ -281312,7 +270343,7 @@ } }, { - "id": 21039, + "id": 19898, "properties": { "facing": "east", "half": "bottom", @@ -281343,7 +270374,7 @@ }, "states": [ { - "id": 6554, + "id": 5786, "properties": { "facing": "north", "waterlogged": "true" @@ -281351,49 +270382,49 @@ }, { "default": true, - "id": 6555, + "id": 5787, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 6556, + "id": 5788, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 6557, + "id": 5789, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 6558, + "id": 5790, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 6559, + "id": 5791, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 6560, + "id": 5792, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 6561, + "id": 5793, "properties": { "facing": "east", "waterlogged": "false" @@ -281421,7 +270452,7 @@ }, "states": [ { - "id": 21512, + "id": 20371, "properties": { "facing": "north", "waterlogged": "true" @@ -281429,49 +270460,49 @@ }, { "default": true, - "id": 21513, + "id": 20372, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 21514, + "id": 20373, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 21515, + "id": 20374, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 21516, + "id": 20375, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 21517, + "id": 20376, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 21518, + "id": 20377, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 21519, + "id": 20378, "properties": { "facing": "east", "waterlogged": "false" @@ -281487,7 +270518,7 @@ "states": [ { "default": true, - "id": 20757 + "id": 19616 } ] }, @@ -281634,19 +270665,19 @@ "states": [ { "default": true, - "id": 9260, + "id": 8183, "properties": { "level": "1" } }, { - "id": 9261, + "id": 8184, "properties": { "level": "2" } }, { - "id": 9262, + "id": 8185, "properties": { "level": "3" } @@ -281661,358 +270692,7 @@ "states": [ { "default": true, - "id": 25124 - } - ] - }, - "minecraft:waxed_copper_bars": { - "definition": { - "type": "minecraft:iron_bars", - "properties": {} - }, - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 7917, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7918, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7919, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7920, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7921, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7922, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7923, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7924, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7925, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7926, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7927, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7928, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7929, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7930, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7931, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7932, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7933, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7934, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7935, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7936, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7937, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7938, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7939, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7940, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7941, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7942, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7943, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7944, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7945, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7946, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7947, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "default": true, - "id": 7948, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } + "id": 23983 } ] }, @@ -282024,7 +270704,7 @@ "states": [ { "default": true, - "id": 25469 + "id": 24328 } ] }, @@ -282045,21 +270725,21 @@ }, "states": [ { - "id": 26877, + "id": 25736, "properties": { "lit": "true", "powered": "true" } }, { - "id": 26878, + "id": 25737, "properties": { "lit": "true", "powered": "false" } }, { - "id": 26879, + "id": 25738, "properties": { "lit": "false", "powered": "true" @@ -282067,7 +270747,7 @@ }, { "default": true, - "id": 26880, + "id": 25739, "properties": { "lit": "false", "powered": "false" @@ -282075,289 +270755,6 @@ } ] }, - "minecraft:waxed_copper_chain": { - "definition": { - "type": "minecraft:chain", - "properties": {} - }, - "properties": { - "axis": [ - "x", - "y", - "z" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 8075, - "properties": { - "axis": "x", - "waterlogged": "true" - } - }, - { - "id": 8076, - "properties": { - "axis": "x", - "waterlogged": "false" - } - }, - { - "id": 8077, - "properties": { - "axis": "y", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 8078, - "properties": { - "axis": "y", - "waterlogged": "false" - } - }, - { - "id": 8079, - "properties": { - "axis": "z", - "waterlogged": "true" - } - }, - { - "id": 8080, - "properties": { - "axis": "z", - "waterlogged": "false" - } - } - ] - }, - "minecraft:waxed_copper_chest": { - "definition": { - "type": "minecraft:copper_chest", - "close_sound": "minecraft:block.copper_chest.close", - "open_sound": "minecraft:block.copper_chest.open", - "properties": {}, - "weathering_state": "unaffected" - }, - "properties": { - "type": [ - "single", - "left", - "right" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 26989, - "properties": { - "type": "single", - "facing": "north", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 26990, - "properties": { - "type": "single", - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 26991, - "properties": { - "type": "left", - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 26992, - "properties": { - "type": "left", - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 26993, - "properties": { - "type": "right", - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 26994, - "properties": { - "type": "right", - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 26995, - "properties": { - "type": "single", - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 26996, - "properties": { - "type": "single", - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 26997, - "properties": { - "type": "left", - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 26998, - "properties": { - "type": "left", - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 26999, - "properties": { - "type": "right", - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 27000, - "properties": { - "type": "right", - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 27001, - "properties": { - "type": "single", - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 27002, - "properties": { - "type": "single", - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 27003, - "properties": { - "type": "left", - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 27004, - "properties": { - "type": "left", - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 27005, - "properties": { - "type": "right", - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 27006, - "properties": { - "type": "right", - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 27007, - "properties": { - "type": "single", - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 27008, - "properties": { - "type": "single", - "facing": "east", - "waterlogged": "false" - } - }, - { - "id": 27009, - "properties": { - "type": "left", - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 27010, - "properties": { - "type": "left", - "facing": "east", - "waterlogged": "false" - } - }, - { - "id": 27011, - "properties": { - "type": "right", - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 27012, - "properties": { - "type": "right", - "facing": "east", - "waterlogged": "false" - } - } - ] - }, "minecraft:waxed_copper_door": { "definition": { "type": "minecraft:door", @@ -282390,7 +270787,7 @@ }, "states": [ { - "id": 26077, + "id": 24936, "properties": { "facing": "north", "half": "upper", @@ -282400,7 +270797,7 @@ } }, { - "id": 26078, + "id": 24937, "properties": { "facing": "north", "half": "upper", @@ -282410,7 +270807,7 @@ } }, { - "id": 26079, + "id": 24938, "properties": { "facing": "north", "half": "upper", @@ -282420,7 +270817,7 @@ } }, { - "id": 26080, + "id": 24939, "properties": { "facing": "north", "half": "upper", @@ -282430,7 +270827,7 @@ } }, { - "id": 26081, + "id": 24940, "properties": { "facing": "north", "half": "upper", @@ -282440,7 +270837,7 @@ } }, { - "id": 26082, + "id": 24941, "properties": { "facing": "north", "half": "upper", @@ -282450,7 +270847,7 @@ } }, { - "id": 26083, + "id": 24942, "properties": { "facing": "north", "half": "upper", @@ -282460,7 +270857,7 @@ } }, { - "id": 26084, + "id": 24943, "properties": { "facing": "north", "half": "upper", @@ -282470,7 +270867,7 @@ } }, { - "id": 26085, + "id": 24944, "properties": { "facing": "north", "half": "lower", @@ -282480,7 +270877,7 @@ } }, { - "id": 26086, + "id": 24945, "properties": { "facing": "north", "half": "lower", @@ -282490,7 +270887,7 @@ } }, { - "id": 26087, + "id": 24946, "properties": { "facing": "north", "half": "lower", @@ -282501,7 +270898,7 @@ }, { "default": true, - "id": 26088, + "id": 24947, "properties": { "facing": "north", "half": "lower", @@ -282511,7 +270908,7 @@ } }, { - "id": 26089, + "id": 24948, "properties": { "facing": "north", "half": "lower", @@ -282521,7 +270918,7 @@ } }, { - "id": 26090, + "id": 24949, "properties": { "facing": "north", "half": "lower", @@ -282531,7 +270928,7 @@ } }, { - "id": 26091, + "id": 24950, "properties": { "facing": "north", "half": "lower", @@ -282541,7 +270938,7 @@ } }, { - "id": 26092, + "id": 24951, "properties": { "facing": "north", "half": "lower", @@ -282551,7 +270948,7 @@ } }, { - "id": 26093, + "id": 24952, "properties": { "facing": "south", "half": "upper", @@ -282561,7 +270958,7 @@ } }, { - "id": 26094, + "id": 24953, "properties": { "facing": "south", "half": "upper", @@ -282571,7 +270968,7 @@ } }, { - "id": 26095, + "id": 24954, "properties": { "facing": "south", "half": "upper", @@ -282581,7 +270978,7 @@ } }, { - "id": 26096, + "id": 24955, "properties": { "facing": "south", "half": "upper", @@ -282591,7 +270988,7 @@ } }, { - "id": 26097, + "id": 24956, "properties": { "facing": "south", "half": "upper", @@ -282601,7 +270998,7 @@ } }, { - "id": 26098, + "id": 24957, "properties": { "facing": "south", "half": "upper", @@ -282611,7 +271008,7 @@ } }, { - "id": 26099, + "id": 24958, "properties": { "facing": "south", "half": "upper", @@ -282621,7 +271018,7 @@ } }, { - "id": 26100, + "id": 24959, "properties": { "facing": "south", "half": "upper", @@ -282631,7 +271028,7 @@ } }, { - "id": 26101, + "id": 24960, "properties": { "facing": "south", "half": "lower", @@ -282641,7 +271038,7 @@ } }, { - "id": 26102, + "id": 24961, "properties": { "facing": "south", "half": "lower", @@ -282651,7 +271048,7 @@ } }, { - "id": 26103, + "id": 24962, "properties": { "facing": "south", "half": "lower", @@ -282661,7 +271058,7 @@ } }, { - "id": 26104, + "id": 24963, "properties": { "facing": "south", "half": "lower", @@ -282671,7 +271068,7 @@ } }, { - "id": 26105, + "id": 24964, "properties": { "facing": "south", "half": "lower", @@ -282681,7 +271078,7 @@ } }, { - "id": 26106, + "id": 24965, "properties": { "facing": "south", "half": "lower", @@ -282691,7 +271088,7 @@ } }, { - "id": 26107, + "id": 24966, "properties": { "facing": "south", "half": "lower", @@ -282701,7 +271098,7 @@ } }, { - "id": 26108, + "id": 24967, "properties": { "facing": "south", "half": "lower", @@ -282711,7 +271108,7 @@ } }, { - "id": 26109, + "id": 24968, "properties": { "facing": "west", "half": "upper", @@ -282721,7 +271118,7 @@ } }, { - "id": 26110, + "id": 24969, "properties": { "facing": "west", "half": "upper", @@ -282731,7 +271128,7 @@ } }, { - "id": 26111, + "id": 24970, "properties": { "facing": "west", "half": "upper", @@ -282741,7 +271138,7 @@ } }, { - "id": 26112, + "id": 24971, "properties": { "facing": "west", "half": "upper", @@ -282751,7 +271148,7 @@ } }, { - "id": 26113, + "id": 24972, "properties": { "facing": "west", "half": "upper", @@ -282761,7 +271158,7 @@ } }, { - "id": 26114, + "id": 24973, "properties": { "facing": "west", "half": "upper", @@ -282771,7 +271168,7 @@ } }, { - "id": 26115, + "id": 24974, "properties": { "facing": "west", "half": "upper", @@ -282781,7 +271178,7 @@ } }, { - "id": 26116, + "id": 24975, "properties": { "facing": "west", "half": "upper", @@ -282791,7 +271188,7 @@ } }, { - "id": 26117, + "id": 24976, "properties": { "facing": "west", "half": "lower", @@ -282801,7 +271198,7 @@ } }, { - "id": 26118, + "id": 24977, "properties": { "facing": "west", "half": "lower", @@ -282811,7 +271208,7 @@ } }, { - "id": 26119, + "id": 24978, "properties": { "facing": "west", "half": "lower", @@ -282821,7 +271218,7 @@ } }, { - "id": 26120, + "id": 24979, "properties": { "facing": "west", "half": "lower", @@ -282831,7 +271228,7 @@ } }, { - "id": 26121, + "id": 24980, "properties": { "facing": "west", "half": "lower", @@ -282841,7 +271238,7 @@ } }, { - "id": 26122, + "id": 24981, "properties": { "facing": "west", "half": "lower", @@ -282851,7 +271248,7 @@ } }, { - "id": 26123, + "id": 24982, "properties": { "facing": "west", "half": "lower", @@ -282861,7 +271258,7 @@ } }, { - "id": 26124, + "id": 24983, "properties": { "facing": "west", "half": "lower", @@ -282871,7 +271268,7 @@ } }, { - "id": 26125, + "id": 24984, "properties": { "facing": "east", "half": "upper", @@ -282881,7 +271278,7 @@ } }, { - "id": 26126, + "id": 24985, "properties": { "facing": "east", "half": "upper", @@ -282891,7 +271288,7 @@ } }, { - "id": 26127, + "id": 24986, "properties": { "facing": "east", "half": "upper", @@ -282901,7 +271298,7 @@ } }, { - "id": 26128, + "id": 24987, "properties": { "facing": "east", "half": "upper", @@ -282911,7 +271308,7 @@ } }, { - "id": 26129, + "id": 24988, "properties": { "facing": "east", "half": "upper", @@ -282921,7 +271318,7 @@ } }, { - "id": 26130, + "id": 24989, "properties": { "facing": "east", "half": "upper", @@ -282931,7 +271328,7 @@ } }, { - "id": 26131, + "id": 24990, "properties": { "facing": "east", "half": "upper", @@ -282941,7 +271338,7 @@ } }, { - "id": 26132, + "id": 24991, "properties": { "facing": "east", "half": "upper", @@ -282951,7 +271348,7 @@ } }, { - "id": 26133, + "id": 24992, "properties": { "facing": "east", "half": "lower", @@ -282961,7 +271358,7 @@ } }, { - "id": 26134, + "id": 24993, "properties": { "facing": "east", "half": "lower", @@ -282971,7 +271368,7 @@ } }, { - "id": 26135, + "id": 24994, "properties": { "facing": "east", "half": "lower", @@ -282981,7 +271378,7 @@ } }, { - "id": 26136, + "id": 24995, "properties": { "facing": "east", "half": "lower", @@ -282991,7 +271388,7 @@ } }, { - "id": 26137, + "id": 24996, "properties": { "facing": "east", "half": "lower", @@ -283001,7 +271398,7 @@ } }, { - "id": 26138, + "id": 24997, "properties": { "facing": "east", "half": "lower", @@ -283011,7 +271408,7 @@ } }, { - "id": 26139, + "id": 24998, "properties": { "facing": "east", "half": "lower", @@ -283021,7 +271418,7 @@ } }, { - "id": 26140, + "id": 24999, "properties": { "facing": "east", "half": "lower", @@ -283032,25 +271429,58 @@ } ] }, - "minecraft:waxed_copper_golem_statue": { + "minecraft:waxed_copper_grate": { "definition": { - "type": "minecraft:copper_golem_statue", - "properties": {}, - "weathering_state": "unaffected" + "type": "minecraft:waterlogged_transparent", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 25712, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 25713, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_copper_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "copper", + "properties": {} }, "properties": { - "copper_golem_pose": [ - "standing", - "sitting", - "running", - "star" - ], "facing": [ "north", "south", "west", "east" ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], "waterlogged": [ "true", "false" @@ -283058,652 +271488,288 @@ }, "states": [ { - "id": 27213, + "id": 25448, "properties": { - "copper_golem_pose": "standing", "facing": "north", + "half": "top", + "open": "true", + "powered": "true", "waterlogged": "true" } }, { - "default": true, - "id": 27214, + "id": 25449, "properties": { - "copper_golem_pose": "standing", "facing": "north", + "half": "top", + "open": "true", + "powered": "true", "waterlogged": "false" } }, { - "id": 27215, + "id": 25450, "properties": { - "copper_golem_pose": "standing", - "facing": "south", + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "true" } }, { - "id": 27216, + "id": 25451, "properties": { - "copper_golem_pose": "standing", - "facing": "south", + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { - "id": 27217, + "id": 25452, "properties": { - "copper_golem_pose": "standing", - "facing": "west", + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", "waterlogged": "true" } }, { - "id": 27218, + "id": 25453, "properties": { - "copper_golem_pose": "standing", - "facing": "west", + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", "waterlogged": "false" } }, { - "id": 27219, + "id": 25454, "properties": { - "copper_golem_pose": "standing", - "facing": "east", + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", "waterlogged": "true" } }, { - "id": 27220, + "id": 25455, "properties": { - "copper_golem_pose": "standing", - "facing": "east", + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", "waterlogged": "false" } }, { - "id": 27221, + "id": 25456, "properties": { - "copper_golem_pose": "sitting", "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", "waterlogged": "true" } }, { - "id": 27222, + "id": 25457, "properties": { - "copper_golem_pose": "sitting", "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", "waterlogged": "false" } }, { - "id": 27223, + "id": 25458, "properties": { - "copper_golem_pose": "sitting", - "facing": "south", + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", "waterlogged": "true" } }, { - "id": 27224, + "id": 25459, "properties": { - "copper_golem_pose": "sitting", - "facing": "south", + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { - "id": 27225, + "id": 25460, "properties": { - "copper_golem_pose": "sitting", - "facing": "west", + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", "waterlogged": "true" } }, { - "id": 27226, + "id": 25461, "properties": { - "copper_golem_pose": "sitting", - "facing": "west", + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", "waterlogged": "false" } }, { - "id": 27227, + "id": 25462, "properties": { - "copper_golem_pose": "sitting", - "facing": "east", + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", "waterlogged": "true" } }, { - "id": 27228, + "default": true, + "id": 25463, "properties": { - "copper_golem_pose": "sitting", - "facing": "east", + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", "waterlogged": "false" } }, { - "id": 27229, + "id": 25464, "properties": { - "copper_golem_pose": "running", - "facing": "north", + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", "waterlogged": "true" } }, { - "id": 27230, + "id": 25465, "properties": { - "copper_golem_pose": "running", - "facing": "north", + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", "waterlogged": "false" } }, { - "id": 27231, + "id": 25466, "properties": { - "copper_golem_pose": "running", "facing": "south", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "true" } }, { - "id": 27232, + "id": 25467, "properties": { - "copper_golem_pose": "running", "facing": "south", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { - "id": 27233, + "id": 25468, "properties": { - "copper_golem_pose": "running", - "facing": "west", + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", "waterlogged": "true" } }, { - "id": 27234, + "id": 25469, "properties": { - "copper_golem_pose": "running", - "facing": "west", + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", "waterlogged": "false" } }, { - "id": 27235, + "id": 25470, "properties": { - "copper_golem_pose": "running", - "facing": "east", + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", "waterlogged": "true" } }, { - "id": 27236, + "id": 25471, "properties": { - "copper_golem_pose": "running", - "facing": "east", + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", "waterlogged": "false" } }, { - "id": 27237, + "id": 25472, "properties": { - "copper_golem_pose": "star", - "facing": "north", + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", "waterlogged": "true" } }, { - "id": 27238, + "id": 25473, "properties": { - "copper_golem_pose": "star", - "facing": "north", + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", "waterlogged": "false" } }, { - "id": 27239, + "id": 25474, "properties": { - "copper_golem_pose": "star", "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", "waterlogged": "true" } }, { - "id": 27240, + "id": 25475, "properties": { - "copper_golem_pose": "star", "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { - "id": 27241, - "properties": { - "copper_golem_pose": "star", - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 27242, - "properties": { - "copper_golem_pose": "star", - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 27243, - "properties": { - "copper_golem_pose": "star", - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 27244, - "properties": { - "copper_golem_pose": "star", - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:waxed_copper_grate": { - "definition": { - "type": "minecraft:waterlogged_transparent", - "properties": {} - }, - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 26853, - "properties": { - "waterlogged": "true" - } - }, - { - "default": true, - "id": 26854, - "properties": { - "waterlogged": "false" - } - } - ] - }, - "minecraft:waxed_copper_lantern": { - "definition": { - "type": "minecraft:lantern", - "properties": {} - }, - "properties": { - "hanging": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20659, - "properties": { - "hanging": "true", - "waterlogged": "true" - } - }, - { - "id": 20660, - "properties": { - "hanging": "true", - "waterlogged": "false" - } - }, - { - "id": 20661, - "properties": { - "hanging": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 20662, - "properties": { - "hanging": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:waxed_copper_trapdoor": { - "definition": { - "type": "minecraft:trapdoor", - "block_set_type": "copper", - "properties": {} - }, - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 26589, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 26590, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 26591, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 26592, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 26593, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 26594, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 26595, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 26596, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 26597, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 26598, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 26599, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 26600, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 26601, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 26602, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 26603, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 26604, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 26605, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 26606, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 26607, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 26608, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 26609, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 26610, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 26611, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 26612, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 26613, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 26614, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 26615, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 26616, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 26617, + "id": 25476, "properties": { "facing": "south", "half": "bottom", @@ -283713,7 +271779,7 @@ } }, { - "id": 26618, + "id": 25477, "properties": { "facing": "south", "half": "bottom", @@ -283723,7 +271789,7 @@ } }, { - "id": 26619, + "id": 25478, "properties": { "facing": "south", "half": "bottom", @@ -283733,7 +271799,7 @@ } }, { - "id": 26620, + "id": 25479, "properties": { "facing": "south", "half": "bottom", @@ -283743,7 +271809,7 @@ } }, { - "id": 26621, + "id": 25480, "properties": { "facing": "west", "half": "top", @@ -283753,7 +271819,7 @@ } }, { - "id": 26622, + "id": 25481, "properties": { "facing": "west", "half": "top", @@ -283763,7 +271829,7 @@ } }, { - "id": 26623, + "id": 25482, "properties": { "facing": "west", "half": "top", @@ -283773,7 +271839,7 @@ } }, { - "id": 26624, + "id": 25483, "properties": { "facing": "west", "half": "top", @@ -283783,7 +271849,7 @@ } }, { - "id": 26625, + "id": 25484, "properties": { "facing": "west", "half": "top", @@ -283793,7 +271859,7 @@ } }, { - "id": 26626, + "id": 25485, "properties": { "facing": "west", "half": "top", @@ -283803,7 +271869,7 @@ } }, { - "id": 26627, + "id": 25486, "properties": { "facing": "west", "half": "top", @@ -283813,7 +271879,7 @@ } }, { - "id": 26628, + "id": 25487, "properties": { "facing": "west", "half": "top", @@ -283823,7 +271889,7 @@ } }, { - "id": 26629, + "id": 25488, "properties": { "facing": "west", "half": "bottom", @@ -283833,7 +271899,7 @@ } }, { - "id": 26630, + "id": 25489, "properties": { "facing": "west", "half": "bottom", @@ -283843,7 +271909,7 @@ } }, { - "id": 26631, + "id": 25490, "properties": { "facing": "west", "half": "bottom", @@ -283853,7 +271919,7 @@ } }, { - "id": 26632, + "id": 25491, "properties": { "facing": "west", "half": "bottom", @@ -283863,7 +271929,7 @@ } }, { - "id": 26633, + "id": 25492, "properties": { "facing": "west", "half": "bottom", @@ -283873,7 +271939,7 @@ } }, { - "id": 26634, + "id": 25493, "properties": { "facing": "west", "half": "bottom", @@ -283883,7 +271949,7 @@ } }, { - "id": 26635, + "id": 25494, "properties": { "facing": "west", "half": "bottom", @@ -283893,7 +271959,7 @@ } }, { - "id": 26636, + "id": 25495, "properties": { "facing": "west", "half": "bottom", @@ -283903,7 +271969,7 @@ } }, { - "id": 26637, + "id": 25496, "properties": { "facing": "east", "half": "top", @@ -283913,7 +271979,7 @@ } }, { - "id": 26638, + "id": 25497, "properties": { "facing": "east", "half": "top", @@ -283923,7 +271989,7 @@ } }, { - "id": 26639, + "id": 25498, "properties": { "facing": "east", "half": "top", @@ -283933,7 +271999,7 @@ } }, { - "id": 26640, + "id": 25499, "properties": { "facing": "east", "half": "top", @@ -283943,7 +272009,7 @@ } }, { - "id": 26641, + "id": 25500, "properties": { "facing": "east", "half": "top", @@ -283953,7 +272019,7 @@ } }, { - "id": 26642, + "id": 25501, "properties": { "facing": "east", "half": "top", @@ -283963,7 +272029,7 @@ } }, { - "id": 26643, + "id": 25502, "properties": { "facing": "east", "half": "top", @@ -283973,7 +272039,7 @@ } }, { - "id": 26644, + "id": 25503, "properties": { "facing": "east", "half": "top", @@ -283983,7 +272049,7 @@ } }, { - "id": 26645, + "id": 25504, "properties": { "facing": "east", "half": "bottom", @@ -283993,7 +272059,7 @@ } }, { - "id": 26646, + "id": 25505, "properties": { "facing": "east", "half": "bottom", @@ -284003,7 +272069,7 @@ } }, { - "id": 26647, + "id": 25506, "properties": { "facing": "east", "half": "bottom", @@ -284013,7 +272079,7 @@ } }, { - "id": 26648, + "id": 25507, "properties": { "facing": "east", "half": "bottom", @@ -284023,7 +272089,7 @@ } }, { - "id": 26649, + "id": 25508, "properties": { "facing": "east", "half": "bottom", @@ -284033,7 +272099,7 @@ } }, { - "id": 26650, + "id": 25509, "properties": { "facing": "east", "half": "bottom", @@ -284043,7 +272109,7 @@ } }, { - "id": 26651, + "id": 25510, "properties": { "facing": "east", "half": "bottom", @@ -284053,7 +272119,7 @@ } }, { - "id": 26652, + "id": 25511, "properties": { "facing": "east", "half": "bottom", @@ -284072,7 +272138,7 @@ "states": [ { "default": true, - "id": 25476 + "id": 24335 } ] }, @@ -284094,21 +272160,21 @@ }, "states": [ { - "id": 25815, + "id": 24674, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 25816, + "id": 24675, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 25817, + "id": 24676, "properties": { "type": "bottom", "waterlogged": "true" @@ -284116,21 +272182,21 @@ }, { "default": true, - "id": 25818, + "id": 24677, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 25819, + "id": 24678, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 25820, + "id": 24679, "properties": { "type": "double", "waterlogged": "false" @@ -284171,7 +272237,7 @@ }, "states": [ { - "id": 25717, + "id": 24576, "properties": { "facing": "north", "half": "top", @@ -284180,7 +272246,7 @@ } }, { - "id": 25718, + "id": 24577, "properties": { "facing": "north", "half": "top", @@ -284189,7 +272255,7 @@ } }, { - "id": 25719, + "id": 24578, "properties": { "facing": "north", "half": "top", @@ -284198,7 +272264,7 @@ } }, { - "id": 25720, + "id": 24579, "properties": { "facing": "north", "half": "top", @@ -284207,7 +272273,7 @@ } }, { - "id": 25721, + "id": 24580, "properties": { "facing": "north", "half": "top", @@ -284216,7 +272282,7 @@ } }, { - "id": 25722, + "id": 24581, "properties": { "facing": "north", "half": "top", @@ -284225,7 +272291,7 @@ } }, { - "id": 25723, + "id": 24582, "properties": { "facing": "north", "half": "top", @@ -284234,7 +272300,7 @@ } }, { - "id": 25724, + "id": 24583, "properties": { "facing": "north", "half": "top", @@ -284243,7 +272309,7 @@ } }, { - "id": 25725, + "id": 24584, "properties": { "facing": "north", "half": "top", @@ -284252,7 +272318,7 @@ } }, { - "id": 25726, + "id": 24585, "properties": { "facing": "north", "half": "top", @@ -284261,7 +272327,7 @@ } }, { - "id": 25727, + "id": 24586, "properties": { "facing": "north", "half": "bottom", @@ -284271,7 +272337,7 @@ }, { "default": true, - "id": 25728, + "id": 24587, "properties": { "facing": "north", "half": "bottom", @@ -284280,7 +272346,7 @@ } }, { - "id": 25729, + "id": 24588, "properties": { "facing": "north", "half": "bottom", @@ -284289,7 +272355,7 @@ } }, { - "id": 25730, + "id": 24589, "properties": { "facing": "north", "half": "bottom", @@ -284298,7 +272364,7 @@ } }, { - "id": 25731, + "id": 24590, "properties": { "facing": "north", "half": "bottom", @@ -284307,7 +272373,7 @@ } }, { - "id": 25732, + "id": 24591, "properties": { "facing": "north", "half": "bottom", @@ -284316,7 +272382,7 @@ } }, { - "id": 25733, + "id": 24592, "properties": { "facing": "north", "half": "bottom", @@ -284325,7 +272391,7 @@ } }, { - "id": 25734, + "id": 24593, "properties": { "facing": "north", "half": "bottom", @@ -284334,7 +272400,7 @@ } }, { - "id": 25735, + "id": 24594, "properties": { "facing": "north", "half": "bottom", @@ -284343,7 +272409,7 @@ } }, { - "id": 25736, + "id": 24595, "properties": { "facing": "north", "half": "bottom", @@ -284352,7 +272418,7 @@ } }, { - "id": 25737, + "id": 24596, "properties": { "facing": "south", "half": "top", @@ -284361,7 +272427,7 @@ } }, { - "id": 25738, + "id": 24597, "properties": { "facing": "south", "half": "top", @@ -284370,7 +272436,7 @@ } }, { - "id": 25739, + "id": 24598, "properties": { "facing": "south", "half": "top", @@ -284379,7 +272445,7 @@ } }, { - "id": 25740, + "id": 24599, "properties": { "facing": "south", "half": "top", @@ -284388,7 +272454,7 @@ } }, { - "id": 25741, + "id": 24600, "properties": { "facing": "south", "half": "top", @@ -284397,7 +272463,7 @@ } }, { - "id": 25742, + "id": 24601, "properties": { "facing": "south", "half": "top", @@ -284406,7 +272472,7 @@ } }, { - "id": 25743, + "id": 24602, "properties": { "facing": "south", "half": "top", @@ -284415,7 +272481,7 @@ } }, { - "id": 25744, + "id": 24603, "properties": { "facing": "south", "half": "top", @@ -284424,7 +272490,7 @@ } }, { - "id": 25745, + "id": 24604, "properties": { "facing": "south", "half": "top", @@ -284433,7 +272499,7 @@ } }, { - "id": 25746, + "id": 24605, "properties": { "facing": "south", "half": "top", @@ -284442,7 +272508,7 @@ } }, { - "id": 25747, + "id": 24606, "properties": { "facing": "south", "half": "bottom", @@ -284451,7 +272517,7 @@ } }, { - "id": 25748, + "id": 24607, "properties": { "facing": "south", "half": "bottom", @@ -284460,7 +272526,7 @@ } }, { - "id": 25749, + "id": 24608, "properties": { "facing": "south", "half": "bottom", @@ -284469,7 +272535,7 @@ } }, { - "id": 25750, + "id": 24609, "properties": { "facing": "south", "half": "bottom", @@ -284478,7 +272544,7 @@ } }, { - "id": 25751, + "id": 24610, "properties": { "facing": "south", "half": "bottom", @@ -284487,7 +272553,7 @@ } }, { - "id": 25752, + "id": 24611, "properties": { "facing": "south", "half": "bottom", @@ -284496,7 +272562,7 @@ } }, { - "id": 25753, + "id": 24612, "properties": { "facing": "south", "half": "bottom", @@ -284505,7 +272571,7 @@ } }, { - "id": 25754, + "id": 24613, "properties": { "facing": "south", "half": "bottom", @@ -284514,7 +272580,7 @@ } }, { - "id": 25755, + "id": 24614, "properties": { "facing": "south", "half": "bottom", @@ -284523,7 +272589,7 @@ } }, { - "id": 25756, + "id": 24615, "properties": { "facing": "south", "half": "bottom", @@ -284532,7 +272598,7 @@ } }, { - "id": 25757, + "id": 24616, "properties": { "facing": "west", "half": "top", @@ -284541,7 +272607,7 @@ } }, { - "id": 25758, + "id": 24617, "properties": { "facing": "west", "half": "top", @@ -284550,7 +272616,7 @@ } }, { - "id": 25759, + "id": 24618, "properties": { "facing": "west", "half": "top", @@ -284559,7 +272625,7 @@ } }, { - "id": 25760, + "id": 24619, "properties": { "facing": "west", "half": "top", @@ -284568,7 +272634,7 @@ } }, { - "id": 25761, + "id": 24620, "properties": { "facing": "west", "half": "top", @@ -284577,7 +272643,7 @@ } }, { - "id": 25762, + "id": 24621, "properties": { "facing": "west", "half": "top", @@ -284586,7 +272652,7 @@ } }, { - "id": 25763, + "id": 24622, "properties": { "facing": "west", "half": "top", @@ -284595,7 +272661,7 @@ } }, { - "id": 25764, + "id": 24623, "properties": { "facing": "west", "half": "top", @@ -284604,7 +272670,7 @@ } }, { - "id": 25765, + "id": 24624, "properties": { "facing": "west", "half": "top", @@ -284613,7 +272679,7 @@ } }, { - "id": 25766, + "id": 24625, "properties": { "facing": "west", "half": "top", @@ -284622,7 +272688,7 @@ } }, { - "id": 25767, + "id": 24626, "properties": { "facing": "west", "half": "bottom", @@ -284631,7 +272697,7 @@ } }, { - "id": 25768, + "id": 24627, "properties": { "facing": "west", "half": "bottom", @@ -284640,7 +272706,7 @@ } }, { - "id": 25769, + "id": 24628, "properties": { "facing": "west", "half": "bottom", @@ -284649,7 +272715,7 @@ } }, { - "id": 25770, + "id": 24629, "properties": { "facing": "west", "half": "bottom", @@ -284658,7 +272724,7 @@ } }, { - "id": 25771, + "id": 24630, "properties": { "facing": "west", "half": "bottom", @@ -284667,7 +272733,7 @@ } }, { - "id": 25772, + "id": 24631, "properties": { "facing": "west", "half": "bottom", @@ -284676,7 +272742,7 @@ } }, { - "id": 25773, + "id": 24632, "properties": { "facing": "west", "half": "bottom", @@ -284685,7 +272751,7 @@ } }, { - "id": 25774, + "id": 24633, "properties": { "facing": "west", "half": "bottom", @@ -284694,7 +272760,7 @@ } }, { - "id": 25775, + "id": 24634, "properties": { "facing": "west", "half": "bottom", @@ -284703,7 +272769,7 @@ } }, { - "id": 25776, + "id": 24635, "properties": { "facing": "west", "half": "bottom", @@ -284712,7 +272778,7 @@ } }, { - "id": 25777, + "id": 24636, "properties": { "facing": "east", "half": "top", @@ -284721,7 +272787,7 @@ } }, { - "id": 25778, + "id": 24637, "properties": { "facing": "east", "half": "top", @@ -284730,7 +272796,7 @@ } }, { - "id": 25779, + "id": 24638, "properties": { "facing": "east", "half": "top", @@ -284739,7 +272805,7 @@ } }, { - "id": 25780, + "id": 24639, "properties": { "facing": "east", "half": "top", @@ -284748,7 +272814,7 @@ } }, { - "id": 25781, + "id": 24640, "properties": { "facing": "east", "half": "top", @@ -284757,7 +272823,7 @@ } }, { - "id": 25782, + "id": 24641, "properties": { "facing": "east", "half": "top", @@ -284766,7 +272832,7 @@ } }, { - "id": 25783, + "id": 24642, "properties": { "facing": "east", "half": "top", @@ -284775,7 +272841,7 @@ } }, { - "id": 25784, + "id": 24643, "properties": { "facing": "east", "half": "top", @@ -284784,7 +272850,7 @@ } }, { - "id": 25785, + "id": 24644, "properties": { "facing": "east", "half": "top", @@ -284793,7 +272859,7 @@ } }, { - "id": 25786, + "id": 24645, "properties": { "facing": "east", "half": "top", @@ -284802,7 +272868,7 @@ } }, { - "id": 25787, + "id": 24646, "properties": { "facing": "east", "half": "bottom", @@ -284811,7 +272877,7 @@ } }, { - "id": 25788, + "id": 24647, "properties": { "facing": "east", "half": "bottom", @@ -284820,7 +272886,7 @@ } }, { - "id": 25789, + "id": 24648, "properties": { "facing": "east", "half": "bottom", @@ -284829,7 +272895,7 @@ } }, { - "id": 25790, + "id": 24649, "properties": { "facing": "east", "half": "bottom", @@ -284838,7 +272904,7 @@ } }, { - "id": 25791, + "id": 24650, "properties": { "facing": "east", "half": "bottom", @@ -284847,7 +272913,7 @@ } }, { - "id": 25792, + "id": 24651, "properties": { "facing": "east", "half": "bottom", @@ -284856,7 +272922,7 @@ } }, { - "id": 25793, + "id": 24652, "properties": { "facing": "east", "half": "bottom", @@ -284865,7 +272931,7 @@ } }, { - "id": 25794, + "id": 24653, "properties": { "facing": "east", "half": "bottom", @@ -284874,7 +272940,7 @@ } }, { - "id": 25795, + "id": 24654, "properties": { "facing": "east", "half": "bottom", @@ -284883,7 +272949,7 @@ } }, { - "id": 25796, + "id": 24655, "properties": { "facing": "east", "half": "bottom", @@ -284901,7 +272967,7 @@ "states": [ { "default": true, - "id": 25123 + "id": 23982 } ] }, @@ -284913,955 +272979,321 @@ "states": [ { "default": true, - "id": 25471 + "id": 24330 } ] }, - "minecraft:waxed_exposed_copper_bars": { + "minecraft:waxed_exposed_copper_bulb": { "definition": { - "type": "minecraft:iron_bars", + "type": "minecraft:copper_bulb_block", "properties": {} }, "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ + "lit": [ "true", "false" ], - "west": [ + "powered": [ "true", "false" ] }, "states": [ { - "id": 7949, + "id": 25740, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" + "lit": "true", + "powered": "true" } }, { - "id": 7950, + "id": 25741, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" + "lit": "true", + "powered": "false" } }, { - "id": 7951, + "id": 25742, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" + "lit": "false", + "powered": "true" } }, { - "id": 7952, + "default": true, + "id": 25743, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" + "lit": "false", + "powered": "false" } - }, + } + ] + }, + "minecraft:waxed_exposed_copper_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "copper", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ { - "id": 7953, + "id": 25000, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 7954, + "id": 25001, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 7955, + "id": 25002, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 7956, + "id": 25003, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 7957, + "id": 25004, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 7958, + "id": 25005, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 7959, + "id": 25006, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 7960, + "id": 25007, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "id": 7961, + "id": 25008, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 7962, + "id": 25009, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 7963, + "id": 25010, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 7964, + "default": true, + "id": 25011, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 7965, + "id": 25012, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 7966, + "id": 25013, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 7967, + "id": 25014, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 7968, + "id": 25015, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "id": 7969, + "id": 25016, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 7970, + "id": 25017, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 7971, + "id": 25018, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 7972, + "id": 25019, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 7973, + "id": 25020, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 7974, + "id": 25021, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 7975, + "id": 25022, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 7976, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7977, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7978, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7979, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "default": true, - "id": 7980, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - ] - }, - "minecraft:waxed_exposed_copper_bulb": { - "definition": { - "type": "minecraft:copper_bulb_block", - "properties": {} - }, - "properties": { - "lit": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 26881, - "properties": { - "lit": "true", - "powered": "true" - } - }, - { - "id": 26882, - "properties": { - "lit": "true", - "powered": "false" - } - }, - { - "id": 26883, - "properties": { - "lit": "false", - "powered": "true" - } - }, - { - "default": true, - "id": 26884, - "properties": { - "lit": "false", - "powered": "false" - } - } - ] - }, - "minecraft:waxed_exposed_copper_chain": { - "definition": { - "type": "minecraft:chain", - "properties": {} - }, - "properties": { - "axis": [ - "x", - "y", - "z" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 8081, - "properties": { - "axis": "x", - "waterlogged": "true" - } - }, - { - "id": 8082, - "properties": { - "axis": "x", - "waterlogged": "false" - } - }, - { - "id": 8083, - "properties": { - "axis": "y", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 8084, - "properties": { - "axis": "y", - "waterlogged": "false" - } - }, - { - "id": 8085, - "properties": { - "axis": "z", - "waterlogged": "true" - } - }, - { - "id": 8086, - "properties": { - "axis": "z", - "waterlogged": "false" - } - } - ] - }, - "minecraft:waxed_exposed_copper_chest": { - "definition": { - "type": "minecraft:copper_chest", - "close_sound": "minecraft:block.copper_chest.close", - "open_sound": "minecraft:block.copper_chest.open", - "properties": {}, - "weathering_state": "exposed" - }, - "properties": { - "type": [ - "single", - "left", - "right" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 27013, - "properties": { - "type": "single", - "facing": "north", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 27014, - "properties": { - "type": "single", - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 27015, - "properties": { - "type": "left", - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 27016, - "properties": { - "type": "left", - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 27017, - "properties": { - "type": "right", - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 27018, - "properties": { - "type": "right", - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 27019, - "properties": { - "type": "single", - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 27020, - "properties": { - "type": "single", - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 27021, - "properties": { - "type": "left", - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 27022, - "properties": { - "type": "left", - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 27023, - "properties": { - "type": "right", - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 27024, - "properties": { - "type": "right", - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 27025, - "properties": { - "type": "single", - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 27026, - "properties": { - "type": "single", - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 27027, - "properties": { - "type": "left", - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 27028, - "properties": { - "type": "left", - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 27029, - "properties": { - "type": "right", - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 27030, - "properties": { - "type": "right", - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 27031, - "properties": { - "type": "single", - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 27032, - "properties": { - "type": "single", - "facing": "east", - "waterlogged": "false" - } - }, - { - "id": 27033, - "properties": { - "type": "left", - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 27034, - "properties": { - "type": "left", - "facing": "east", - "waterlogged": "false" - } - }, - { - "id": 27035, - "properties": { - "type": "right", - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 27036, - "properties": { - "type": "right", - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:waxed_exposed_copper_door": { - "definition": { - "type": "minecraft:door", - "block_set_type": "copper", - "properties": {} - }, - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "upper", - "lower" - ], - "hinge": [ - "left", - "right" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 26141, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 26142, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 26143, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 26144, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 26145, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 26146, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 26147, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 26148, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 26149, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 26150, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 26151, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "default": true, - "id": 26152, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 26153, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 26154, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 26155, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 26156, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 26157, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 26158, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 26159, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 26160, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 26161, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 26162, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 26163, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 26164, + "id": 25023, "properties": { "facing": "south", "half": "upper", @@ -285871,7 +273303,7 @@ } }, { - "id": 26165, + "id": 25024, "properties": { "facing": "south", "half": "lower", @@ -285881,7 +273313,7 @@ } }, { - "id": 26166, + "id": 25025, "properties": { "facing": "south", "half": "lower", @@ -285891,7 +273323,7 @@ } }, { - "id": 26167, + "id": 25026, "properties": { "facing": "south", "half": "lower", @@ -285901,7 +273333,7 @@ } }, { - "id": 26168, + "id": 25027, "properties": { "facing": "south", "half": "lower", @@ -285911,7 +273343,7 @@ } }, { - "id": 26169, + "id": 25028, "properties": { "facing": "south", "half": "lower", @@ -285921,7 +273353,7 @@ } }, { - "id": 26170, + "id": 25029, "properties": { "facing": "south", "half": "lower", @@ -285931,7 +273363,7 @@ } }, { - "id": 26171, + "id": 25030, "properties": { "facing": "south", "half": "lower", @@ -285941,7 +273373,7 @@ } }, { - "id": 26172, + "id": 25031, "properties": { "facing": "south", "half": "lower", @@ -285951,7 +273383,7 @@ } }, { - "id": 26173, + "id": 25032, "properties": { "facing": "west", "half": "upper", @@ -285961,7 +273393,7 @@ } }, { - "id": 26174, + "id": 25033, "properties": { "facing": "west", "half": "upper", @@ -285971,7 +273403,7 @@ } }, { - "id": 26175, + "id": 25034, "properties": { "facing": "west", "half": "upper", @@ -285981,7 +273413,7 @@ } }, { - "id": 26176, + "id": 25035, "properties": { "facing": "west", "half": "upper", @@ -285991,7 +273423,7 @@ } }, { - "id": 26177, + "id": 25036, "properties": { "facing": "west", "half": "upper", @@ -286001,7 +273433,7 @@ } }, { - "id": 26178, + "id": 25037, "properties": { "facing": "west", "half": "upper", @@ -286011,7 +273443,7 @@ } }, { - "id": 26179, + "id": 25038, "properties": { "facing": "west", "half": "upper", @@ -286021,7 +273453,7 @@ } }, { - "id": 26180, + "id": 25039, "properties": { "facing": "west", "half": "upper", @@ -286031,7 +273463,7 @@ } }, { - "id": 26181, + "id": 25040, "properties": { "facing": "west", "half": "lower", @@ -286041,7 +273473,7 @@ } }, { - "id": 26182, + "id": 25041, "properties": { "facing": "west", "half": "lower", @@ -286051,7 +273483,7 @@ } }, { - "id": 26183, + "id": 25042, "properties": { "facing": "west", "half": "lower", @@ -286061,7 +273493,7 @@ } }, { - "id": 26184, + "id": 25043, "properties": { "facing": "west", "half": "lower", @@ -286071,7 +273503,7 @@ } }, { - "id": 26185, + "id": 25044, "properties": { "facing": "west", "half": "lower", @@ -286081,7 +273513,7 @@ } }, { - "id": 26186, + "id": 25045, "properties": { "facing": "west", "half": "lower", @@ -286091,7 +273523,7 @@ } }, { - "id": 26187, + "id": 25046, "properties": { "facing": "west", "half": "lower", @@ -286101,7 +273533,7 @@ } }, { - "id": 26188, + "id": 25047, "properties": { "facing": "west", "half": "lower", @@ -286111,7 +273543,7 @@ } }, { - "id": 26189, + "id": 25048, "properties": { "facing": "east", "half": "upper", @@ -286121,7 +273553,7 @@ } }, { - "id": 26190, + "id": 25049, "properties": { "facing": "east", "half": "upper", @@ -286131,7 +273563,7 @@ } }, { - "id": 26191, + "id": 25050, "properties": { "facing": "east", "half": "upper", @@ -286141,7 +273573,7 @@ } }, { - "id": 26192, + "id": 25051, "properties": { "facing": "east", "half": "upper", @@ -286151,7 +273583,7 @@ } }, { - "id": 26193, + "id": 25052, "properties": { "facing": "east", "half": "upper", @@ -286161,7 +273593,7 @@ } }, { - "id": 26194, + "id": 25053, "properties": { "facing": "east", "half": "upper", @@ -286171,7 +273603,7 @@ } }, { - "id": 26195, + "id": 25054, "properties": { "facing": "east", "half": "upper", @@ -286181,7 +273613,7 @@ } }, { - "id": 26196, + "id": 25055, "properties": { "facing": "east", "half": "upper", @@ -286191,7 +273623,7 @@ } }, { - "id": 26197, + "id": 25056, "properties": { "facing": "east", "half": "lower", @@ -286201,7 +273633,7 @@ } }, { - "id": 26198, + "id": 25057, "properties": { "facing": "east", "half": "lower", @@ -286211,7 +273643,7 @@ } }, { - "id": 26199, + "id": 25058, "properties": { "facing": "east", "half": "lower", @@ -286221,7 +273653,7 @@ } }, { - "id": 26200, + "id": 25059, "properties": { "facing": "east", "half": "lower", @@ -286231,7 +273663,7 @@ } }, { - "id": 26201, + "id": 25060, "properties": { "facing": "east", "half": "lower", @@ -286241,7 +273673,7 @@ } }, { - "id": 26202, + "id": 25061, "properties": { "facing": "east", "half": "lower", @@ -286251,7 +273683,7 @@ } }, { - "id": 26203, + "id": 25062, "properties": { "facing": "east", "half": "lower", @@ -286261,7 +273693,7 @@ } }, { - "id": 26204, + "id": 25063, "properties": { "facing": "east", "half": "lower", @@ -286272,25 +273704,12 @@ } ] }, - "minecraft:waxed_exposed_copper_golem_statue": { + "minecraft:waxed_exposed_copper_grate": { "definition": { - "type": "minecraft:copper_golem_statue", - "properties": {}, - "weathering_state": "exposed" + "type": "minecraft:waterlogged_transparent", + "properties": {} }, "properties": { - "copper_golem_pose": [ - "standing", - "sitting", - "running", - "star" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], "waterlogged": [ "true", "false" @@ -286298,702 +273717,384 @@ }, "states": [ { - "id": 27245, + "id": 25714, "properties": { - "copper_golem_pose": "standing", - "facing": "north", "waterlogged": "true" } }, { "default": true, - "id": 27246, + "id": 25715, "properties": { - "copper_golem_pose": "standing", - "facing": "north", "waterlogged": "false" } - }, + } + ] + }, + "minecraft:waxed_exposed_copper_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "copper", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { - "id": 27247, + "id": 25512, "properties": { - "copper_golem_pose": "standing", - "facing": "south", + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", "waterlogged": "true" } }, { - "id": 27248, + "id": 25513, "properties": { - "copper_golem_pose": "standing", - "facing": "south", + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", "waterlogged": "false" } }, { - "id": 27249, + "id": 25514, "properties": { - "copper_golem_pose": "standing", - "facing": "west", + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "true" } }, { - "id": 27250, + "id": 25515, "properties": { - "copper_golem_pose": "standing", - "facing": "west", + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { - "id": 27251, + "id": 25516, "properties": { - "copper_golem_pose": "standing", - "facing": "east", + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", "waterlogged": "true" } }, { - "id": 27252, + "id": 25517, "properties": { - "copper_golem_pose": "standing", - "facing": "east", + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", "waterlogged": "false" } }, { - "id": 27253, + "id": 25518, "properties": { - "copper_golem_pose": "sitting", "facing": "north", + "half": "top", + "open": "false", + "powered": "false", "waterlogged": "true" } }, { - "id": 27254, + "id": 25519, "properties": { - "copper_golem_pose": "sitting", "facing": "north", + "half": "top", + "open": "false", + "powered": "false", "waterlogged": "false" } }, { - "id": 27255, + "id": 25520, "properties": { - "copper_golem_pose": "sitting", - "facing": "south", + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", "waterlogged": "true" } }, { - "id": 27256, + "id": 25521, "properties": { - "copper_golem_pose": "sitting", - "facing": "south", + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", "waterlogged": "false" } }, { - "id": 27257, + "id": 25522, "properties": { - "copper_golem_pose": "sitting", - "facing": "west", + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", "waterlogged": "true" } }, { - "id": 27258, + "id": 25523, "properties": { - "copper_golem_pose": "sitting", - "facing": "west", + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { - "id": 27259, + "id": 25524, "properties": { - "copper_golem_pose": "sitting", - "facing": "east", + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", "waterlogged": "true" } }, { - "id": 27260, + "id": 25525, "properties": { - "copper_golem_pose": "sitting", - "facing": "east", + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", "waterlogged": "false" } }, { - "id": 27261, + "id": 25526, "properties": { - "copper_golem_pose": "running", "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", "waterlogged": "true" } }, { - "id": 27262, + "default": true, + "id": 25527, "properties": { - "copper_golem_pose": "running", "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", "waterlogged": "false" } }, { - "id": 27263, + "id": 25528, "properties": { - "copper_golem_pose": "running", "facing": "south", + "half": "top", + "open": "true", + "powered": "true", "waterlogged": "true" } }, { - "id": 27264, + "id": 25529, "properties": { - "copper_golem_pose": "running", "facing": "south", + "half": "top", + "open": "true", + "powered": "true", "waterlogged": "false" } }, { - "id": 27265, + "id": 25530, "properties": { - "copper_golem_pose": "running", - "facing": "west", + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "true" } }, { - "id": 27266, + "id": 25531, "properties": { - "copper_golem_pose": "running", - "facing": "west", + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { - "id": 27267, + "id": 25532, "properties": { - "copper_golem_pose": "running", - "facing": "east", + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", "waterlogged": "true" } }, { - "id": 27268, + "id": 25533, "properties": { - "copper_golem_pose": "running", - "facing": "east", + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", "waterlogged": "false" } }, { - "id": 27269, + "id": 25534, "properties": { - "copper_golem_pose": "star", - "facing": "north", + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", "waterlogged": "true" } }, { - "id": 27270, + "id": 25535, "properties": { - "copper_golem_pose": "star", - "facing": "north", + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", "waterlogged": "false" } }, { - "id": 27271, + "id": 25536, "properties": { - "copper_golem_pose": "star", "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", "waterlogged": "true" } }, { - "id": 27272, + "id": 25537, "properties": { - "copper_golem_pose": "star", "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", "waterlogged": "false" } }, { - "id": 27273, + "id": 25538, "properties": { - "copper_golem_pose": "star", - "facing": "west", + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", "waterlogged": "true" } }, { - "id": 27274, + "id": 25539, "properties": { - "copper_golem_pose": "star", - "facing": "west", + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { - "id": 27275, + "id": 25540, "properties": { - "copper_golem_pose": "star", - "facing": "east", + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", "waterlogged": "true" } }, { - "id": 27276, + "id": 25541, "properties": { - "copper_golem_pose": "star", - "facing": "east", + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", "waterlogged": "false" } - } - ] - }, - "minecraft:waxed_exposed_copper_grate": { - "definition": { - "type": "minecraft:waterlogged_transparent", - "properties": {} - }, - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 26855, + "id": 25542, "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", "waterlogged": "true" } }, { - "default": true, - "id": 26856, + "id": 25543, "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", "waterlogged": "false" } - } - ] - }, - "minecraft:waxed_exposed_copper_lantern": { - "definition": { - "type": "minecraft:lantern", - "properties": {} - }, - "properties": { - "hanging": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 20663, + "id": 25544, "properties": { - "hanging": "true", + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", "waterlogged": "true" } }, { - "id": 20664, - "properties": { - "hanging": "true", - "waterlogged": "false" - } - }, - { - "id": 20665, - "properties": { - "hanging": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 20666, - "properties": { - "hanging": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:waxed_exposed_copper_trapdoor": { - "definition": { - "type": "minecraft:trapdoor", - "block_set_type": "copper", - "properties": {} - }, - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 26653, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 26654, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 26655, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 26656, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 26657, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 26658, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 26659, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 26660, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 26661, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 26662, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 26663, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 26664, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 26665, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 26666, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 26667, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 26668, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 26669, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 26670, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 26671, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 26672, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 26673, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 26674, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 26675, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 26676, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 26677, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 26678, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 26679, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 26680, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 26681, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 26682, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 26683, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 26684, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 26685, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 26686, + "id": 25545, "properties": { "facing": "west", "half": "top", @@ -287003,7 +274104,7 @@ } }, { - "id": 26687, + "id": 25546, "properties": { "facing": "west", "half": "top", @@ -287013,7 +274114,7 @@ } }, { - "id": 26688, + "id": 25547, "properties": { "facing": "west", "half": "top", @@ -287023,7 +274124,7 @@ } }, { - "id": 26689, + "id": 25548, "properties": { "facing": "west", "half": "top", @@ -287033,7 +274134,7 @@ } }, { - "id": 26690, + "id": 25549, "properties": { "facing": "west", "half": "top", @@ -287043,7 +274144,7 @@ } }, { - "id": 26691, + "id": 25550, "properties": { "facing": "west", "half": "top", @@ -287053,7 +274154,7 @@ } }, { - "id": 26692, + "id": 25551, "properties": { "facing": "west", "half": "top", @@ -287063,7 +274164,7 @@ } }, { - "id": 26693, + "id": 25552, "properties": { "facing": "west", "half": "bottom", @@ -287073,7 +274174,7 @@ } }, { - "id": 26694, + "id": 25553, "properties": { "facing": "west", "half": "bottom", @@ -287083,7 +274184,7 @@ } }, { - "id": 26695, + "id": 25554, "properties": { "facing": "west", "half": "bottom", @@ -287093,7 +274194,7 @@ } }, { - "id": 26696, + "id": 25555, "properties": { "facing": "west", "half": "bottom", @@ -287103,7 +274204,7 @@ } }, { - "id": 26697, + "id": 25556, "properties": { "facing": "west", "half": "bottom", @@ -287113,7 +274214,7 @@ } }, { - "id": 26698, + "id": 25557, "properties": { "facing": "west", "half": "bottom", @@ -287123,7 +274224,7 @@ } }, { - "id": 26699, + "id": 25558, "properties": { "facing": "west", "half": "bottom", @@ -287133,7 +274234,7 @@ } }, { - "id": 26700, + "id": 25559, "properties": { "facing": "west", "half": "bottom", @@ -287143,7 +274244,7 @@ } }, { - "id": 26701, + "id": 25560, "properties": { "facing": "east", "half": "top", @@ -287153,7 +274254,7 @@ } }, { - "id": 26702, + "id": 25561, "properties": { "facing": "east", "half": "top", @@ -287163,7 +274264,7 @@ } }, { - "id": 26703, + "id": 25562, "properties": { "facing": "east", "half": "top", @@ -287173,7 +274274,7 @@ } }, { - "id": 26704, + "id": 25563, "properties": { "facing": "east", "half": "top", @@ -287183,7 +274284,7 @@ } }, { - "id": 26705, + "id": 25564, "properties": { "facing": "east", "half": "top", @@ -287193,7 +274294,7 @@ } }, { - "id": 26706, + "id": 25565, "properties": { "facing": "east", "half": "top", @@ -287203,7 +274304,7 @@ } }, { - "id": 26707, + "id": 25566, "properties": { "facing": "east", "half": "top", @@ -287213,7 +274314,7 @@ } }, { - "id": 26708, + "id": 25567, "properties": { "facing": "east", "half": "top", @@ -287223,7 +274324,7 @@ } }, { - "id": 26709, + "id": 25568, "properties": { "facing": "east", "half": "bottom", @@ -287233,7 +274334,7 @@ } }, { - "id": 26710, + "id": 25569, "properties": { "facing": "east", "half": "bottom", @@ -287243,7 +274344,7 @@ } }, { - "id": 26711, + "id": 25570, "properties": { "facing": "east", "half": "bottom", @@ -287253,7 +274354,7 @@ } }, { - "id": 26712, + "id": 25571, "properties": { "facing": "east", "half": "bottom", @@ -287263,7 +274364,7 @@ } }, { - "id": 26713, + "id": 25572, "properties": { "facing": "east", "half": "bottom", @@ -287273,7 +274374,7 @@ } }, { - "id": 26714, + "id": 25573, "properties": { "facing": "east", "half": "bottom", @@ -287283,7 +274384,7 @@ } }, { - "id": 26715, + "id": 25574, "properties": { "facing": "east", "half": "bottom", @@ -287293,7 +274394,7 @@ } }, { - "id": 26716, + "id": 25575, "properties": { "facing": "east", "half": "bottom", @@ -287312,7 +274413,7 @@ "states": [ { "default": true, - "id": 25475 + "id": 24334 } ] }, @@ -287334,21 +274435,21 @@ }, "states": [ { - "id": 25809, + "id": 24668, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 25810, + "id": 24669, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 25811, + "id": 24670, "properties": { "type": "bottom", "waterlogged": "true" @@ -287356,21 +274457,21 @@ }, { "default": true, - "id": 25812, + "id": 24671, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 25813, + "id": 24672, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 25814, + "id": 24673, "properties": { "type": "double", "waterlogged": "false" @@ -287411,7 +274512,7 @@ }, "states": [ { - "id": 25637, + "id": 24496, "properties": { "facing": "north", "half": "top", @@ -287420,7 +274521,7 @@ } }, { - "id": 25638, + "id": 24497, "properties": { "facing": "north", "half": "top", @@ -287429,7 +274530,7 @@ } }, { - "id": 25639, + "id": 24498, "properties": { "facing": "north", "half": "top", @@ -287438,7 +274539,7 @@ } }, { - "id": 25640, + "id": 24499, "properties": { "facing": "north", "half": "top", @@ -287447,7 +274548,7 @@ } }, { - "id": 25641, + "id": 24500, "properties": { "facing": "north", "half": "top", @@ -287456,7 +274557,7 @@ } }, { - "id": 25642, + "id": 24501, "properties": { "facing": "north", "half": "top", @@ -287465,7 +274566,7 @@ } }, { - "id": 25643, + "id": 24502, "properties": { "facing": "north", "half": "top", @@ -287474,7 +274575,7 @@ } }, { - "id": 25644, + "id": 24503, "properties": { "facing": "north", "half": "top", @@ -287483,7 +274584,7 @@ } }, { - "id": 25645, + "id": 24504, "properties": { "facing": "north", "half": "top", @@ -287492,7 +274593,7 @@ } }, { - "id": 25646, + "id": 24505, "properties": { "facing": "north", "half": "top", @@ -287501,7 +274602,7 @@ } }, { - "id": 25647, + "id": 24506, "properties": { "facing": "north", "half": "bottom", @@ -287511,7 +274612,7 @@ }, { "default": true, - "id": 25648, + "id": 24507, "properties": { "facing": "north", "half": "bottom", @@ -287520,7 +274621,7 @@ } }, { - "id": 25649, + "id": 24508, "properties": { "facing": "north", "half": "bottom", @@ -287529,7 +274630,7 @@ } }, { - "id": 25650, + "id": 24509, "properties": { "facing": "north", "half": "bottom", @@ -287538,7 +274639,7 @@ } }, { - "id": 25651, + "id": 24510, "properties": { "facing": "north", "half": "bottom", @@ -287547,7 +274648,7 @@ } }, { - "id": 25652, + "id": 24511, "properties": { "facing": "north", "half": "bottom", @@ -287556,7 +274657,7 @@ } }, { - "id": 25653, + "id": 24512, "properties": { "facing": "north", "half": "bottom", @@ -287565,7 +274666,7 @@ } }, { - "id": 25654, + "id": 24513, "properties": { "facing": "north", "half": "bottom", @@ -287574,7 +274675,7 @@ } }, { - "id": 25655, + "id": 24514, "properties": { "facing": "north", "half": "bottom", @@ -287583,7 +274684,7 @@ } }, { - "id": 25656, + "id": 24515, "properties": { "facing": "north", "half": "bottom", @@ -287592,7 +274693,7 @@ } }, { - "id": 25657, + "id": 24516, "properties": { "facing": "south", "half": "top", @@ -287601,7 +274702,7 @@ } }, { - "id": 25658, + "id": 24517, "properties": { "facing": "south", "half": "top", @@ -287610,7 +274711,7 @@ } }, { - "id": 25659, + "id": 24518, "properties": { "facing": "south", "half": "top", @@ -287619,7 +274720,7 @@ } }, { - "id": 25660, + "id": 24519, "properties": { "facing": "south", "half": "top", @@ -287628,7 +274729,7 @@ } }, { - "id": 25661, + "id": 24520, "properties": { "facing": "south", "half": "top", @@ -287637,7 +274738,7 @@ } }, { - "id": 25662, + "id": 24521, "properties": { "facing": "south", "half": "top", @@ -287646,7 +274747,7 @@ } }, { - "id": 25663, + "id": 24522, "properties": { "facing": "south", "half": "top", @@ -287655,7 +274756,7 @@ } }, { - "id": 25664, + "id": 24523, "properties": { "facing": "south", "half": "top", @@ -287664,7 +274765,7 @@ } }, { - "id": 25665, + "id": 24524, "properties": { "facing": "south", "half": "top", @@ -287673,7 +274774,7 @@ } }, { - "id": 25666, + "id": 24525, "properties": { "facing": "south", "half": "top", @@ -287682,7 +274783,7 @@ } }, { - "id": 25667, + "id": 24526, "properties": { "facing": "south", "half": "bottom", @@ -287691,7 +274792,7 @@ } }, { - "id": 25668, + "id": 24527, "properties": { "facing": "south", "half": "bottom", @@ -287700,7 +274801,7 @@ } }, { - "id": 25669, + "id": 24528, "properties": { "facing": "south", "half": "bottom", @@ -287709,7 +274810,7 @@ } }, { - "id": 25670, + "id": 24529, "properties": { "facing": "south", "half": "bottom", @@ -287718,7 +274819,7 @@ } }, { - "id": 25671, + "id": 24530, "properties": { "facing": "south", "half": "bottom", @@ -287727,7 +274828,7 @@ } }, { - "id": 25672, + "id": 24531, "properties": { "facing": "south", "half": "bottom", @@ -287736,7 +274837,7 @@ } }, { - "id": 25673, + "id": 24532, "properties": { "facing": "south", "half": "bottom", @@ -287745,7 +274846,7 @@ } }, { - "id": 25674, + "id": 24533, "properties": { "facing": "south", "half": "bottom", @@ -287754,7 +274855,7 @@ } }, { - "id": 25675, + "id": 24534, "properties": { "facing": "south", "half": "bottom", @@ -287763,7 +274864,7 @@ } }, { - "id": 25676, + "id": 24535, "properties": { "facing": "south", "half": "bottom", @@ -287772,7 +274873,7 @@ } }, { - "id": 25677, + "id": 24536, "properties": { "facing": "west", "half": "top", @@ -287781,7 +274882,7 @@ } }, { - "id": 25678, + "id": 24537, "properties": { "facing": "west", "half": "top", @@ -287790,7 +274891,7 @@ } }, { - "id": 25679, + "id": 24538, "properties": { "facing": "west", "half": "top", @@ -287799,7 +274900,7 @@ } }, { - "id": 25680, + "id": 24539, "properties": { "facing": "west", "half": "top", @@ -287808,7 +274909,7 @@ } }, { - "id": 25681, + "id": 24540, "properties": { "facing": "west", "half": "top", @@ -287817,7 +274918,7 @@ } }, { - "id": 25682, + "id": 24541, "properties": { "facing": "west", "half": "top", @@ -287826,7 +274927,7 @@ } }, { - "id": 25683, + "id": 24542, "properties": { "facing": "west", "half": "top", @@ -287835,7 +274936,7 @@ } }, { - "id": 25684, + "id": 24543, "properties": { "facing": "west", "half": "top", @@ -287844,7 +274945,7 @@ } }, { - "id": 25685, + "id": 24544, "properties": { "facing": "west", "half": "top", @@ -287853,7 +274954,7 @@ } }, { - "id": 25686, + "id": 24545, "properties": { "facing": "west", "half": "top", @@ -287862,7 +274963,7 @@ } }, { - "id": 25687, + "id": 24546, "properties": { "facing": "west", "half": "bottom", @@ -287871,7 +274972,7 @@ } }, { - "id": 25688, + "id": 24547, "properties": { "facing": "west", "half": "bottom", @@ -287880,7 +274981,7 @@ } }, { - "id": 25689, + "id": 24548, "properties": { "facing": "west", "half": "bottom", @@ -287889,7 +274990,7 @@ } }, { - "id": 25690, + "id": 24549, "properties": { "facing": "west", "half": "bottom", @@ -287898,7 +274999,7 @@ } }, { - "id": 25691, + "id": 24550, "properties": { "facing": "west", "half": "bottom", @@ -287907,7 +275008,7 @@ } }, { - "id": 25692, + "id": 24551, "properties": { "facing": "west", "half": "bottom", @@ -287916,7 +275017,7 @@ } }, { - "id": 25693, + "id": 24552, "properties": { "facing": "west", "half": "bottom", @@ -287925,7 +275026,7 @@ } }, { - "id": 25694, + "id": 24553, "properties": { "facing": "west", "half": "bottom", @@ -287934,7 +275035,7 @@ } }, { - "id": 25695, + "id": 24554, "properties": { "facing": "west", "half": "bottom", @@ -287943,7 +275044,7 @@ } }, { - "id": 25696, + "id": 24555, "properties": { "facing": "west", "half": "bottom", @@ -287952,7 +275053,7 @@ } }, { - "id": 25697, + "id": 24556, "properties": { "facing": "east", "half": "top", @@ -287961,7 +275062,7 @@ } }, { - "id": 25698, + "id": 24557, "properties": { "facing": "east", "half": "top", @@ -287970,7 +275071,7 @@ } }, { - "id": 25699, + "id": 24558, "properties": { "facing": "east", "half": "top", @@ -287979,7 +275080,7 @@ } }, { - "id": 25700, + "id": 24559, "properties": { "facing": "east", "half": "top", @@ -287988,7 +275089,7 @@ } }, { - "id": 25701, + "id": 24560, "properties": { "facing": "east", "half": "top", @@ -287997,7 +275098,7 @@ } }, { - "id": 25702, + "id": 24561, "properties": { "facing": "east", "half": "top", @@ -288006,7 +275107,7 @@ } }, { - "id": 25703, + "id": 24562, "properties": { "facing": "east", "half": "top", @@ -288015,7 +275116,7 @@ } }, { - "id": 25704, + "id": 24563, "properties": { "facing": "east", "half": "top", @@ -288024,7 +275125,7 @@ } }, { - "id": 25705, + "id": 24564, "properties": { "facing": "east", "half": "top", @@ -288033,7 +275134,7 @@ } }, { - "id": 25706, + "id": 24565, "properties": { "facing": "east", "half": "top", @@ -288042,7 +275143,7 @@ } }, { - "id": 25707, + "id": 24566, "properties": { "facing": "east", "half": "bottom", @@ -288051,7 +275152,7 @@ } }, { - "id": 25708, + "id": 24567, "properties": { "facing": "east", "half": "bottom", @@ -288060,7 +275161,7 @@ } }, { - "id": 25709, + "id": 24568, "properties": { "facing": "east", "half": "bottom", @@ -288069,7 +275170,7 @@ } }, { - "id": 25710, + "id": 24569, "properties": { "facing": "east", "half": "bottom", @@ -288078,7 +275179,7 @@ } }, { - "id": 25711, + "id": 24570, "properties": { "facing": "east", "half": "bottom", @@ -288087,7 +275188,7 @@ } }, { - "id": 25712, + "id": 24571, "properties": { "facing": "east", "half": "bottom", @@ -288096,7 +275197,7 @@ } }, { - "id": 25713, + "id": 24572, "properties": { "facing": "east", "half": "bottom", @@ -288105,7 +275206,7 @@ } }, { - "id": 25714, + "id": 24573, "properties": { "facing": "east", "half": "bottom", @@ -288114,7 +275215,7 @@ } }, { - "id": 25715, + "id": 24574, "properties": { "facing": "east", "half": "bottom", @@ -288123,7 +275224,7 @@ } }, { - "id": 25716, + "id": 24575, "properties": { "facing": "east", "half": "bottom", @@ -288133,444 +275234,6 @@ } ] }, - "minecraft:waxed_exposed_lightning_rod": { - "definition": { - "type": "minecraft:lightning_rod", - "properties": {} - }, - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ], - "powered": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 27461, - "properties": { - "facing": "north", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 27462, - "properties": { - "facing": "north", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 27463, - "properties": { - "facing": "north", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 27464, - "properties": { - "facing": "north", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 27465, - "properties": { - "facing": "east", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 27466, - "properties": { - "facing": "east", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 27467, - "properties": { - "facing": "east", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 27468, - "properties": { - "facing": "east", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 27469, - "properties": { - "facing": "south", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 27470, - "properties": { - "facing": "south", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 27471, - "properties": { - "facing": "south", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 27472, - "properties": { - "facing": "south", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 27473, - "properties": { - "facing": "west", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 27474, - "properties": { - "facing": "west", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 27475, - "properties": { - "facing": "west", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 27476, - "properties": { - "facing": "west", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 27477, - "properties": { - "facing": "up", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 27478, - "properties": { - "facing": "up", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 27479, - "properties": { - "facing": "up", - "powered": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 27480, - "properties": { - "facing": "up", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 27481, - "properties": { - "facing": "down", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 27482, - "properties": { - "facing": "down", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 27483, - "properties": { - "facing": "down", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 27484, - "properties": { - "facing": "down", - "powered": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:waxed_lightning_rod": { - "definition": { - "type": "minecraft:lightning_rod", - "properties": {} - }, - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ], - "powered": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 27437, - "properties": { - "facing": "north", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 27438, - "properties": { - "facing": "north", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 27439, - "properties": { - "facing": "north", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 27440, - "properties": { - "facing": "north", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 27441, - "properties": { - "facing": "east", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 27442, - "properties": { - "facing": "east", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 27443, - "properties": { - "facing": "east", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 27444, - "properties": { - "facing": "east", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 27445, - "properties": { - "facing": "south", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 27446, - "properties": { - "facing": "south", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 27447, - "properties": { - "facing": "south", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 27448, - "properties": { - "facing": "south", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 27449, - "properties": { - "facing": "west", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 27450, - "properties": { - "facing": "west", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 27451, - "properties": { - "facing": "west", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 27452, - "properties": { - "facing": "west", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 27453, - "properties": { - "facing": "up", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 27454, - "properties": { - "facing": "up", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 27455, - "properties": { - "facing": "up", - "powered": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 27456, - "properties": { - "facing": "up", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 27457, - "properties": { - "facing": "down", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 27458, - "properties": { - "facing": "down", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 27459, - "properties": { - "facing": "down", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 27460, - "properties": { - "facing": "down", - "powered": "false", - "waterlogged": "false" - } - } - ] - }, "minecraft:waxed_oxidized_chiseled_copper": { "definition": { "type": "minecraft:block", @@ -288579,7 +275242,7 @@ "states": [ { "default": true, - "id": 25121 + "id": 23980 } ] }, @@ -288591,358 +275254,7 @@ "states": [ { "default": true, - "id": 25472 - } - ] - }, - "minecraft:waxed_oxidized_copper_bars": { - "definition": { - "type": "minecraft:iron_bars", - "properties": {} - }, - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 8013, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 8014, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 8015, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 8016, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 8017, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 8018, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 8019, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 8020, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 8021, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 8022, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 8023, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 8024, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 8025, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 8026, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 8027, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 8028, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 8029, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 8030, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 8031, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 8032, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 8033, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 8034, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 8035, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 8036, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 8037, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 8038, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 8039, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 8040, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 8041, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 8042, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 8043, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "default": true, - "id": 8044, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } + "id": 24331 } ] }, @@ -288963,21 +275275,21 @@ }, "states": [ { - "id": 26889, + "id": 25748, "properties": { "lit": "true", "powered": "true" } }, { - "id": 26890, + "id": 25749, "properties": { "lit": "true", "powered": "false" } }, { - "id": 26891, + "id": 25750, "properties": { "lit": "false", "powered": "true" @@ -288985,7 +275297,7 @@ }, { "default": true, - "id": 26892, + "id": 25751, "properties": { "lit": "false", "powered": "false" @@ -288993,289 +275305,6 @@ } ] }, - "minecraft:waxed_oxidized_copper_chain": { - "definition": { - "type": "minecraft:chain", - "properties": {} - }, - "properties": { - "axis": [ - "x", - "y", - "z" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 8093, - "properties": { - "axis": "x", - "waterlogged": "true" - } - }, - { - "id": 8094, - "properties": { - "axis": "x", - "waterlogged": "false" - } - }, - { - "id": 8095, - "properties": { - "axis": "y", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 8096, - "properties": { - "axis": "y", - "waterlogged": "false" - } - }, - { - "id": 8097, - "properties": { - "axis": "z", - "waterlogged": "true" - } - }, - { - "id": 8098, - "properties": { - "axis": "z", - "waterlogged": "false" - } - } - ] - }, - "minecraft:waxed_oxidized_copper_chest": { - "definition": { - "type": "minecraft:copper_chest", - "close_sound": "minecraft:block.copper_chest_oxidized.close", - "open_sound": "minecraft:block.copper_chest_oxidized.open", - "properties": {}, - "weathering_state": "oxidized" - }, - "properties": { - "type": [ - "single", - "left", - "right" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 27061, - "properties": { - "type": "single", - "facing": "north", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 27062, - "properties": { - "type": "single", - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 27063, - "properties": { - "type": "left", - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 27064, - "properties": { - "type": "left", - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 27065, - "properties": { - "type": "right", - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 27066, - "properties": { - "type": "right", - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 27067, - "properties": { - "type": "single", - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 27068, - "properties": { - "type": "single", - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 27069, - "properties": { - "type": "left", - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 27070, - "properties": { - "type": "left", - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 27071, - "properties": { - "type": "right", - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 27072, - "properties": { - "type": "right", - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 27073, - "properties": { - "type": "single", - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 27074, - "properties": { - "type": "single", - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 27075, - "properties": { - "type": "left", - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 27076, - "properties": { - "type": "left", - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 27077, - "properties": { - "type": "right", - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 27078, - "properties": { - "type": "right", - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 27079, - "properties": { - "type": "single", - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 27080, - "properties": { - "type": "single", - "facing": "east", - "waterlogged": "false" - } - }, - { - "id": 27081, - "properties": { - "type": "left", - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 27082, - "properties": { - "type": "left", - "facing": "east", - "waterlogged": "false" - } - }, - { - "id": 27083, - "properties": { - "type": "right", - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 27084, - "properties": { - "type": "right", - "facing": "east", - "waterlogged": "false" - } - } - ] - }, "minecraft:waxed_oxidized_copper_door": { "definition": { "type": "minecraft:door", @@ -289308,7 +275337,7 @@ }, "states": [ { - "id": 26205, + "id": 25064, "properties": { "facing": "north", "half": "upper", @@ -289318,7 +275347,7 @@ } }, { - "id": 26206, + "id": 25065, "properties": { "facing": "north", "half": "upper", @@ -289328,7 +275357,7 @@ } }, { - "id": 26207, + "id": 25066, "properties": { "facing": "north", "half": "upper", @@ -289338,7 +275367,7 @@ } }, { - "id": 26208, + "id": 25067, "properties": { "facing": "north", "half": "upper", @@ -289348,7 +275377,7 @@ } }, { - "id": 26209, + "id": 25068, "properties": { "facing": "north", "half": "upper", @@ -289358,7 +275387,7 @@ } }, { - "id": 26210, + "id": 25069, "properties": { "facing": "north", "half": "upper", @@ -289368,7 +275397,7 @@ } }, { - "id": 26211, + "id": 25070, "properties": { "facing": "north", "half": "upper", @@ -289378,7 +275407,7 @@ } }, { - "id": 26212, + "id": 25071, "properties": { "facing": "north", "half": "upper", @@ -289388,7 +275417,7 @@ } }, { - "id": 26213, + "id": 25072, "properties": { "facing": "north", "half": "lower", @@ -289398,7 +275427,7 @@ } }, { - "id": 26214, + "id": 25073, "properties": { "facing": "north", "half": "lower", @@ -289408,7 +275437,7 @@ } }, { - "id": 26215, + "id": 25074, "properties": { "facing": "north", "half": "lower", @@ -289419,7 +275448,7 @@ }, { "default": true, - "id": 26216, + "id": 25075, "properties": { "facing": "north", "half": "lower", @@ -289429,7 +275458,7 @@ } }, { - "id": 26217, + "id": 25076, "properties": { "facing": "north", "half": "lower", @@ -289439,7 +275468,7 @@ } }, { - "id": 26218, + "id": 25077, "properties": { "facing": "north", "half": "lower", @@ -289449,7 +275478,7 @@ } }, { - "id": 26219, + "id": 25078, "properties": { "facing": "north", "half": "lower", @@ -289459,7 +275488,7 @@ } }, { - "id": 26220, + "id": 25079, "properties": { "facing": "north", "half": "lower", @@ -289469,7 +275498,7 @@ } }, { - "id": 26221, + "id": 25080, "properties": { "facing": "south", "half": "upper", @@ -289479,7 +275508,7 @@ } }, { - "id": 26222, + "id": 25081, "properties": { "facing": "south", "half": "upper", @@ -289489,7 +275518,7 @@ } }, { - "id": 26223, + "id": 25082, "properties": { "facing": "south", "half": "upper", @@ -289499,7 +275528,7 @@ } }, { - "id": 26224, + "id": 25083, "properties": { "facing": "south", "half": "upper", @@ -289509,7 +275538,7 @@ } }, { - "id": 26225, + "id": 25084, "properties": { "facing": "south", "half": "upper", @@ -289519,7 +275548,7 @@ } }, { - "id": 26226, + "id": 25085, "properties": { "facing": "south", "half": "upper", @@ -289529,7 +275558,7 @@ } }, { - "id": 26227, + "id": 25086, "properties": { "facing": "south", "half": "upper", @@ -289539,7 +275568,7 @@ } }, { - "id": 26228, + "id": 25087, "properties": { "facing": "south", "half": "upper", @@ -289549,7 +275578,7 @@ } }, { - "id": 26229, + "id": 25088, "properties": { "facing": "south", "half": "lower", @@ -289559,7 +275588,7 @@ } }, { - "id": 26230, + "id": 25089, "properties": { "facing": "south", "half": "lower", @@ -289569,7 +275598,7 @@ } }, { - "id": 26231, + "id": 25090, "properties": { "facing": "south", "half": "lower", @@ -289579,7 +275608,7 @@ } }, { - "id": 26232, + "id": 25091, "properties": { "facing": "south", "half": "lower", @@ -289589,7 +275618,7 @@ } }, { - "id": 26233, + "id": 25092, "properties": { "facing": "south", "half": "lower", @@ -289599,7 +275628,7 @@ } }, { - "id": 26234, + "id": 25093, "properties": { "facing": "south", "half": "lower", @@ -289609,7 +275638,7 @@ } }, { - "id": 26235, + "id": 25094, "properties": { "facing": "south", "half": "lower", @@ -289619,7 +275648,7 @@ } }, { - "id": 26236, + "id": 25095, "properties": { "facing": "south", "half": "lower", @@ -289629,7 +275658,7 @@ } }, { - "id": 26237, + "id": 25096, "properties": { "facing": "west", "half": "upper", @@ -289639,7 +275668,7 @@ } }, { - "id": 26238, + "id": 25097, "properties": { "facing": "west", "half": "upper", @@ -289649,7 +275678,7 @@ } }, { - "id": 26239, + "id": 25098, "properties": { "facing": "west", "half": "upper", @@ -289659,7 +275688,7 @@ } }, { - "id": 26240, + "id": 25099, "properties": { "facing": "west", "half": "upper", @@ -289669,7 +275698,7 @@ } }, { - "id": 26241, + "id": 25100, "properties": { "facing": "west", "half": "upper", @@ -289679,7 +275708,7 @@ } }, { - "id": 26242, + "id": 25101, "properties": { "facing": "west", "half": "upper", @@ -289689,7 +275718,7 @@ } }, { - "id": 26243, + "id": 25102, "properties": { "facing": "west", "half": "upper", @@ -289699,7 +275728,7 @@ } }, { - "id": 26244, + "id": 25103, "properties": { "facing": "west", "half": "upper", @@ -289709,7 +275738,7 @@ } }, { - "id": 26245, + "id": 25104, "properties": { "facing": "west", "half": "lower", @@ -289719,7 +275748,7 @@ } }, { - "id": 26246, + "id": 25105, "properties": { "facing": "west", "half": "lower", @@ -289729,7 +275758,7 @@ } }, { - "id": 26247, + "id": 25106, "properties": { "facing": "west", "half": "lower", @@ -289739,7 +275768,7 @@ } }, { - "id": 26248, + "id": 25107, "properties": { "facing": "west", "half": "lower", @@ -289749,7 +275778,7 @@ } }, { - "id": 26249, + "id": 25108, "properties": { "facing": "west", "half": "lower", @@ -289759,7 +275788,7 @@ } }, { - "id": 26250, + "id": 25109, "properties": { "facing": "west", "half": "lower", @@ -289769,7 +275798,7 @@ } }, { - "id": 26251, + "id": 25110, "properties": { "facing": "west", "half": "lower", @@ -289779,7 +275808,7 @@ } }, { - "id": 26252, + "id": 25111, "properties": { "facing": "west", "half": "lower", @@ -289789,7 +275818,7 @@ } }, { - "id": 26253, + "id": 25112, "properties": { "facing": "east", "half": "upper", @@ -289799,7 +275828,7 @@ } }, { - "id": 26254, + "id": 25113, "properties": { "facing": "east", "half": "upper", @@ -289809,7 +275838,7 @@ } }, { - "id": 26255, + "id": 25114, "properties": { "facing": "east", "half": "upper", @@ -289819,7 +275848,7 @@ } }, { - "id": 26256, + "id": 25115, "properties": { "facing": "east", "half": "upper", @@ -289829,7 +275858,7 @@ } }, { - "id": 26257, + "id": 25116, "properties": { "facing": "east", "half": "upper", @@ -289839,7 +275868,7 @@ } }, { - "id": 26258, + "id": 25117, "properties": { "facing": "east", "half": "upper", @@ -289849,7 +275878,7 @@ } }, { - "id": 26259, + "id": 25118, "properties": { "facing": "east", "half": "upper", @@ -289859,7 +275888,7 @@ } }, { - "id": 26260, + "id": 25119, "properties": { "facing": "east", "half": "upper", @@ -289869,7 +275898,7 @@ } }, { - "id": 26261, + "id": 25120, "properties": { "facing": "east", "half": "lower", @@ -289879,7 +275908,7 @@ } }, { - "id": 26262, + "id": 25121, "properties": { "facing": "east", "half": "lower", @@ -289889,7 +275918,7 @@ } }, { - "id": 26263, + "id": 25122, "properties": { "facing": "east", "half": "lower", @@ -289899,7 +275928,7 @@ } }, { - "id": 26264, + "id": 25123, "properties": { "facing": "east", "half": "lower", @@ -289909,7 +275938,7 @@ } }, { - "id": 26265, + "id": 25124, "properties": { "facing": "east", "half": "lower", @@ -289919,7 +275948,7 @@ } }, { - "id": 26266, + "id": 25125, "properties": { "facing": "east", "half": "lower", @@ -289929,7 +275958,7 @@ } }, { - "id": 26267, + "id": 25126, "properties": { "facing": "east", "half": "lower", @@ -289939,7 +275968,7 @@ } }, { - "id": 26268, + "id": 25127, "properties": { "facing": "east", "half": "lower", @@ -289950,290 +275979,6 @@ } ] }, - "minecraft:waxed_oxidized_copper_golem_statue": { - "definition": { - "type": "minecraft:copper_golem_statue", - "properties": {}, - "weathering_state": "oxidized" - }, - "properties": { - "copper_golem_pose": [ - "standing", - "sitting", - "running", - "star" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 27309, - "properties": { - "copper_golem_pose": "standing", - "facing": "north", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 27310, - "properties": { - "copper_golem_pose": "standing", - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 27311, - "properties": { - "copper_golem_pose": "standing", - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 27312, - "properties": { - "copper_golem_pose": "standing", - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 27313, - "properties": { - "copper_golem_pose": "standing", - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 27314, - "properties": { - "copper_golem_pose": "standing", - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 27315, - "properties": { - "copper_golem_pose": "standing", - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 27316, - "properties": { - "copper_golem_pose": "standing", - "facing": "east", - "waterlogged": "false" - } - }, - { - "id": 27317, - "properties": { - "copper_golem_pose": "sitting", - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 27318, - "properties": { - "copper_golem_pose": "sitting", - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 27319, - "properties": { - "copper_golem_pose": "sitting", - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 27320, - "properties": { - "copper_golem_pose": "sitting", - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 27321, - "properties": { - "copper_golem_pose": "sitting", - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 27322, - "properties": { - "copper_golem_pose": "sitting", - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 27323, - "properties": { - "copper_golem_pose": "sitting", - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 27324, - "properties": { - "copper_golem_pose": "sitting", - "facing": "east", - "waterlogged": "false" - } - }, - { - "id": 27325, - "properties": { - "copper_golem_pose": "running", - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 27326, - "properties": { - "copper_golem_pose": "running", - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 27327, - "properties": { - "copper_golem_pose": "running", - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 27328, - "properties": { - "copper_golem_pose": "running", - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 27329, - "properties": { - "copper_golem_pose": "running", - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 27330, - "properties": { - "copper_golem_pose": "running", - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 27331, - "properties": { - "copper_golem_pose": "running", - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 27332, - "properties": { - "copper_golem_pose": "running", - "facing": "east", - "waterlogged": "false" - } - }, - { - "id": 27333, - "properties": { - "copper_golem_pose": "star", - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 27334, - "properties": { - "copper_golem_pose": "star", - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 27335, - "properties": { - "copper_golem_pose": "star", - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 27336, - "properties": { - "copper_golem_pose": "star", - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 27337, - "properties": { - "copper_golem_pose": "star", - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 27338, - "properties": { - "copper_golem_pose": "star", - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 27339, - "properties": { - "copper_golem_pose": "star", - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 27340, - "properties": { - "copper_golem_pose": "star", - "facing": "east", - "waterlogged": "false" - } - } - ] - }, "minecraft:waxed_oxidized_copper_grate": { "definition": { "type": "minecraft:waterlogged_transparent", @@ -290247,62 +275992,15 @@ }, "states": [ { - "id": 26859, - "properties": { - "waterlogged": "true" - } - }, - { - "default": true, - "id": 26860, - "properties": { - "waterlogged": "false" - } - } - ] - }, - "minecraft:waxed_oxidized_copper_lantern": { - "definition": { - "type": "minecraft:lantern", - "properties": {} - }, - "properties": { - "hanging": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20671, - "properties": { - "hanging": "true", - "waterlogged": "true" - } - }, - { - "id": 20672, - "properties": { - "hanging": "true", - "waterlogged": "false" - } - }, - { - "id": 20673, + "id": 25718, "properties": { - "hanging": "false", "waterlogged": "true" } }, { "default": true, - "id": 20674, + "id": 25719, "properties": { - "hanging": "false", "waterlogged": "false" } } @@ -290340,7 +276038,7 @@ }, "states": [ { - "id": 26717, + "id": 25576, "properties": { "facing": "north", "half": "top", @@ -290350,7 +276048,7 @@ } }, { - "id": 26718, + "id": 25577, "properties": { "facing": "north", "half": "top", @@ -290360,7 +276058,7 @@ } }, { - "id": 26719, + "id": 25578, "properties": { "facing": "north", "half": "top", @@ -290370,7 +276068,7 @@ } }, { - "id": 26720, + "id": 25579, "properties": { "facing": "north", "half": "top", @@ -290380,7 +276078,7 @@ } }, { - "id": 26721, + "id": 25580, "properties": { "facing": "north", "half": "top", @@ -290390,7 +276088,7 @@ } }, { - "id": 26722, + "id": 25581, "properties": { "facing": "north", "half": "top", @@ -290400,7 +276098,7 @@ } }, { - "id": 26723, + "id": 25582, "properties": { "facing": "north", "half": "top", @@ -290410,7 +276108,7 @@ } }, { - "id": 26724, + "id": 25583, "properties": { "facing": "north", "half": "top", @@ -290420,7 +276118,7 @@ } }, { - "id": 26725, + "id": 25584, "properties": { "facing": "north", "half": "bottom", @@ -290430,7 +276128,7 @@ } }, { - "id": 26726, + "id": 25585, "properties": { "facing": "north", "half": "bottom", @@ -290440,7 +276138,7 @@ } }, { - "id": 26727, + "id": 25586, "properties": { "facing": "north", "half": "bottom", @@ -290450,7 +276148,7 @@ } }, { - "id": 26728, + "id": 25587, "properties": { "facing": "north", "half": "bottom", @@ -290460,7 +276158,7 @@ } }, { - "id": 26729, + "id": 25588, "properties": { "facing": "north", "half": "bottom", @@ -290470,7 +276168,7 @@ } }, { - "id": 26730, + "id": 25589, "properties": { "facing": "north", "half": "bottom", @@ -290480,7 +276178,7 @@ } }, { - "id": 26731, + "id": 25590, "properties": { "facing": "north", "half": "bottom", @@ -290491,7 +276189,7 @@ }, { "default": true, - "id": 26732, + "id": 25591, "properties": { "facing": "north", "half": "bottom", @@ -290501,7 +276199,7 @@ } }, { - "id": 26733, + "id": 25592, "properties": { "facing": "south", "half": "top", @@ -290511,7 +276209,7 @@ } }, { - "id": 26734, + "id": 25593, "properties": { "facing": "south", "half": "top", @@ -290521,7 +276219,7 @@ } }, { - "id": 26735, + "id": 25594, "properties": { "facing": "south", "half": "top", @@ -290531,7 +276229,7 @@ } }, { - "id": 26736, + "id": 25595, "properties": { "facing": "south", "half": "top", @@ -290541,7 +276239,7 @@ } }, { - "id": 26737, + "id": 25596, "properties": { "facing": "south", "half": "top", @@ -290551,7 +276249,7 @@ } }, { - "id": 26738, + "id": 25597, "properties": { "facing": "south", "half": "top", @@ -290561,7 +276259,7 @@ } }, { - "id": 26739, + "id": 25598, "properties": { "facing": "south", "half": "top", @@ -290571,7 +276269,7 @@ } }, { - "id": 26740, + "id": 25599, "properties": { "facing": "south", "half": "top", @@ -290581,7 +276279,7 @@ } }, { - "id": 26741, + "id": 25600, "properties": { "facing": "south", "half": "bottom", @@ -290591,7 +276289,7 @@ } }, { - "id": 26742, + "id": 25601, "properties": { "facing": "south", "half": "bottom", @@ -290601,7 +276299,7 @@ } }, { - "id": 26743, + "id": 25602, "properties": { "facing": "south", "half": "bottom", @@ -290611,7 +276309,7 @@ } }, { - "id": 26744, + "id": 25603, "properties": { "facing": "south", "half": "bottom", @@ -290621,7 +276319,7 @@ } }, { - "id": 26745, + "id": 25604, "properties": { "facing": "south", "half": "bottom", @@ -290631,7 +276329,7 @@ } }, { - "id": 26746, + "id": 25605, "properties": { "facing": "south", "half": "bottom", @@ -290641,7 +276339,7 @@ } }, { - "id": 26747, + "id": 25606, "properties": { "facing": "south", "half": "bottom", @@ -290651,7 +276349,7 @@ } }, { - "id": 26748, + "id": 25607, "properties": { "facing": "south", "half": "bottom", @@ -290661,7 +276359,7 @@ } }, { - "id": 26749, + "id": 25608, "properties": { "facing": "west", "half": "top", @@ -290671,7 +276369,7 @@ } }, { - "id": 26750, + "id": 25609, "properties": { "facing": "west", "half": "top", @@ -290681,7 +276379,7 @@ } }, { - "id": 26751, + "id": 25610, "properties": { "facing": "west", "half": "top", @@ -290691,7 +276389,7 @@ } }, { - "id": 26752, + "id": 25611, "properties": { "facing": "west", "half": "top", @@ -290701,7 +276399,7 @@ } }, { - "id": 26753, + "id": 25612, "properties": { "facing": "west", "half": "top", @@ -290711,7 +276409,7 @@ } }, { - "id": 26754, + "id": 25613, "properties": { "facing": "west", "half": "top", @@ -290721,7 +276419,7 @@ } }, { - "id": 26755, + "id": 25614, "properties": { "facing": "west", "half": "top", @@ -290731,7 +276429,7 @@ } }, { - "id": 26756, + "id": 25615, "properties": { "facing": "west", "half": "top", @@ -290741,7 +276439,7 @@ } }, { - "id": 26757, + "id": 25616, "properties": { "facing": "west", "half": "bottom", @@ -290751,7 +276449,7 @@ } }, { - "id": 26758, + "id": 25617, "properties": { "facing": "west", "half": "bottom", @@ -290761,7 +276459,7 @@ } }, { - "id": 26759, + "id": 25618, "properties": { "facing": "west", "half": "bottom", @@ -290771,7 +276469,7 @@ } }, { - "id": 26760, + "id": 25619, "properties": { "facing": "west", "half": "bottom", @@ -290781,7 +276479,7 @@ } }, { - "id": 26761, + "id": 25620, "properties": { "facing": "west", "half": "bottom", @@ -290791,7 +276489,7 @@ } }, { - "id": 26762, + "id": 25621, "properties": { "facing": "west", "half": "bottom", @@ -290801,7 +276499,7 @@ } }, { - "id": 26763, + "id": 25622, "properties": { "facing": "west", "half": "bottom", @@ -290811,7 +276509,7 @@ } }, { - "id": 26764, + "id": 25623, "properties": { "facing": "west", "half": "bottom", @@ -290821,7 +276519,7 @@ } }, { - "id": 26765, + "id": 25624, "properties": { "facing": "east", "half": "top", @@ -290831,7 +276529,7 @@ } }, { - "id": 26766, + "id": 25625, "properties": { "facing": "east", "half": "top", @@ -290841,7 +276539,7 @@ } }, { - "id": 26767, + "id": 25626, "properties": { "facing": "east", "half": "top", @@ -290851,7 +276549,7 @@ } }, { - "id": 26768, + "id": 25627, "properties": { "facing": "east", "half": "top", @@ -290861,7 +276559,7 @@ } }, { - "id": 26769, + "id": 25628, "properties": { "facing": "east", "half": "top", @@ -290871,7 +276569,7 @@ } }, { - "id": 26770, + "id": 25629, "properties": { "facing": "east", "half": "top", @@ -290881,7 +276579,7 @@ } }, { - "id": 26771, + "id": 25630, "properties": { "facing": "east", "half": "top", @@ -290891,7 +276589,7 @@ } }, { - "id": 26772, + "id": 25631, "properties": { "facing": "east", "half": "top", @@ -290901,7 +276599,7 @@ } }, { - "id": 26773, + "id": 25632, "properties": { "facing": "east", "half": "bottom", @@ -290911,7 +276609,7 @@ } }, { - "id": 26774, + "id": 25633, "properties": { "facing": "east", "half": "bottom", @@ -290921,7 +276619,7 @@ } }, { - "id": 26775, + "id": 25634, "properties": { "facing": "east", "half": "bottom", @@ -290931,7 +276629,7 @@ } }, { - "id": 26776, + "id": 25635, "properties": { "facing": "east", "half": "bottom", @@ -290941,7 +276639,7 @@ } }, { - "id": 26777, + "id": 25636, "properties": { "facing": "east", "half": "bottom", @@ -290951,7 +276649,7 @@ } }, { - "id": 26778, + "id": 25637, "properties": { "facing": "east", "half": "bottom", @@ -290961,7 +276659,7 @@ } }, { - "id": 26779, + "id": 25638, "properties": { "facing": "east", "half": "bottom", @@ -290971,7 +276669,7 @@ } }, { - "id": 26780, + "id": 25639, "properties": { "facing": "east", "half": "bottom", @@ -290990,7 +276688,7 @@ "states": [ { "default": true, - "id": 25473 + "id": 24332 } ] }, @@ -291012,21 +276710,21 @@ }, "states": [ { - "id": 25797, + "id": 24656, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 25798, + "id": 24657, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 25799, + "id": 24658, "properties": { "type": "bottom", "waterlogged": "true" @@ -291034,21 +276732,21 @@ }, { "default": true, - "id": 25800, + "id": 24659, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 25801, + "id": 24660, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 25802, + "id": 24661, "properties": { "type": "double", "waterlogged": "false" @@ -291089,7 +276787,7 @@ }, "states": [ { - "id": 25477, + "id": 24336, "properties": { "facing": "north", "half": "top", @@ -291098,7 +276796,7 @@ } }, { - "id": 25478, + "id": 24337, "properties": { "facing": "north", "half": "top", @@ -291107,7 +276805,7 @@ } }, { - "id": 25479, + "id": 24338, "properties": { "facing": "north", "half": "top", @@ -291116,7 +276814,7 @@ } }, { - "id": 25480, + "id": 24339, "properties": { "facing": "north", "half": "top", @@ -291125,7 +276823,7 @@ } }, { - "id": 25481, + "id": 24340, "properties": { "facing": "north", "half": "top", @@ -291134,7 +276832,7 @@ } }, { - "id": 25482, + "id": 24341, "properties": { "facing": "north", "half": "top", @@ -291143,7 +276841,7 @@ } }, { - "id": 25483, + "id": 24342, "properties": { "facing": "north", "half": "top", @@ -291152,7 +276850,7 @@ } }, { - "id": 25484, + "id": 24343, "properties": { "facing": "north", "half": "top", @@ -291161,7 +276859,7 @@ } }, { - "id": 25485, + "id": 24344, "properties": { "facing": "north", "half": "top", @@ -291170,7 +276868,7 @@ } }, { - "id": 25486, + "id": 24345, "properties": { "facing": "north", "half": "top", @@ -291179,7 +276877,7 @@ } }, { - "id": 25487, + "id": 24346, "properties": { "facing": "north", "half": "bottom", @@ -291189,7 +276887,7 @@ }, { "default": true, - "id": 25488, + "id": 24347, "properties": { "facing": "north", "half": "bottom", @@ -291198,7 +276896,7 @@ } }, { - "id": 25489, + "id": 24348, "properties": { "facing": "north", "half": "bottom", @@ -291207,7 +276905,7 @@ } }, { - "id": 25490, + "id": 24349, "properties": { "facing": "north", "half": "bottom", @@ -291216,7 +276914,7 @@ } }, { - "id": 25491, + "id": 24350, "properties": { "facing": "north", "half": "bottom", @@ -291225,7 +276923,7 @@ } }, { - "id": 25492, + "id": 24351, "properties": { "facing": "north", "half": "bottom", @@ -291234,7 +276932,7 @@ } }, { - "id": 25493, + "id": 24352, "properties": { "facing": "north", "half": "bottom", @@ -291243,7 +276941,7 @@ } }, { - "id": 25494, + "id": 24353, "properties": { "facing": "north", "half": "bottom", @@ -291252,7 +276950,7 @@ } }, { - "id": 25495, + "id": 24354, "properties": { "facing": "north", "half": "bottom", @@ -291261,7 +276959,7 @@ } }, { - "id": 25496, + "id": 24355, "properties": { "facing": "north", "half": "bottom", @@ -291270,7 +276968,7 @@ } }, { - "id": 25497, + "id": 24356, "properties": { "facing": "south", "half": "top", @@ -291279,7 +276977,7 @@ } }, { - "id": 25498, + "id": 24357, "properties": { "facing": "south", "half": "top", @@ -291288,7 +276986,7 @@ } }, { - "id": 25499, + "id": 24358, "properties": { "facing": "south", "half": "top", @@ -291297,7 +276995,7 @@ } }, { - "id": 25500, + "id": 24359, "properties": { "facing": "south", "half": "top", @@ -291306,7 +277004,7 @@ } }, { - "id": 25501, + "id": 24360, "properties": { "facing": "south", "half": "top", @@ -291315,7 +277013,7 @@ } }, { - "id": 25502, + "id": 24361, "properties": { "facing": "south", "half": "top", @@ -291324,7 +277022,7 @@ } }, { - "id": 25503, + "id": 24362, "properties": { "facing": "south", "half": "top", @@ -291333,7 +277031,7 @@ } }, { - "id": 25504, + "id": 24363, "properties": { "facing": "south", "half": "top", @@ -291342,7 +277040,7 @@ } }, { - "id": 25505, + "id": 24364, "properties": { "facing": "south", "half": "top", @@ -291351,7 +277049,7 @@ } }, { - "id": 25506, + "id": 24365, "properties": { "facing": "south", "half": "top", @@ -291360,7 +277058,7 @@ } }, { - "id": 25507, + "id": 24366, "properties": { "facing": "south", "half": "bottom", @@ -291369,7 +277067,7 @@ } }, { - "id": 25508, + "id": 24367, "properties": { "facing": "south", "half": "bottom", @@ -291378,7 +277076,7 @@ } }, { - "id": 25509, + "id": 24368, "properties": { "facing": "south", "half": "bottom", @@ -291387,7 +277085,7 @@ } }, { - "id": 25510, + "id": 24369, "properties": { "facing": "south", "half": "bottom", @@ -291396,7 +277094,7 @@ } }, { - "id": 25511, + "id": 24370, "properties": { "facing": "south", "half": "bottom", @@ -291405,7 +277103,7 @@ } }, { - "id": 25512, + "id": 24371, "properties": { "facing": "south", "half": "bottom", @@ -291414,7 +277112,7 @@ } }, { - "id": 25513, + "id": 24372, "properties": { "facing": "south", "half": "bottom", @@ -291423,7 +277121,7 @@ } }, { - "id": 25514, + "id": 24373, "properties": { "facing": "south", "half": "bottom", @@ -291432,7 +277130,7 @@ } }, { - "id": 25515, + "id": 24374, "properties": { "facing": "south", "half": "bottom", @@ -291441,7 +277139,7 @@ } }, { - "id": 25516, + "id": 24375, "properties": { "facing": "south", "half": "bottom", @@ -291450,7 +277148,7 @@ } }, { - "id": 25517, + "id": 24376, "properties": { "facing": "west", "half": "top", @@ -291459,7 +277157,7 @@ } }, { - "id": 25518, + "id": 24377, "properties": { "facing": "west", "half": "top", @@ -291468,7 +277166,7 @@ } }, { - "id": 25519, + "id": 24378, "properties": { "facing": "west", "half": "top", @@ -291477,7 +277175,7 @@ } }, { - "id": 25520, + "id": 24379, "properties": { "facing": "west", "half": "top", @@ -291486,7 +277184,7 @@ } }, { - "id": 25521, + "id": 24380, "properties": { "facing": "west", "half": "top", @@ -291495,7 +277193,7 @@ } }, { - "id": 25522, + "id": 24381, "properties": { "facing": "west", "half": "top", @@ -291504,7 +277202,7 @@ } }, { - "id": 25523, + "id": 24382, "properties": { "facing": "west", "half": "top", @@ -291513,7 +277211,7 @@ } }, { - "id": 25524, + "id": 24383, "properties": { "facing": "west", "half": "top", @@ -291522,7 +277220,7 @@ } }, { - "id": 25525, + "id": 24384, "properties": { "facing": "west", "half": "top", @@ -291531,7 +277229,7 @@ } }, { - "id": 25526, + "id": 24385, "properties": { "facing": "west", "half": "top", @@ -291540,7 +277238,7 @@ } }, { - "id": 25527, + "id": 24386, "properties": { "facing": "west", "half": "bottom", @@ -291549,7 +277247,7 @@ } }, { - "id": 25528, + "id": 24387, "properties": { "facing": "west", "half": "bottom", @@ -291558,7 +277256,7 @@ } }, { - "id": 25529, + "id": 24388, "properties": { "facing": "west", "half": "bottom", @@ -291567,7 +277265,7 @@ } }, { - "id": 25530, + "id": 24389, "properties": { "facing": "west", "half": "bottom", @@ -291576,7 +277274,7 @@ } }, { - "id": 25531, + "id": 24390, "properties": { "facing": "west", "half": "bottom", @@ -291585,7 +277283,7 @@ } }, { - "id": 25532, + "id": 24391, "properties": { "facing": "west", "half": "bottom", @@ -291594,7 +277292,7 @@ } }, { - "id": 25533, + "id": 24392, "properties": { "facing": "west", "half": "bottom", @@ -291603,7 +277301,7 @@ } }, { - "id": 25534, + "id": 24393, "properties": { "facing": "west", "half": "bottom", @@ -291612,7 +277310,7 @@ } }, { - "id": 25535, + "id": 24394, "properties": { "facing": "west", "half": "bottom", @@ -291621,7 +277319,7 @@ } }, { - "id": 25536, + "id": 24395, "properties": { "facing": "west", "half": "bottom", @@ -291630,7 +277328,7 @@ } }, { - "id": 25537, + "id": 24396, "properties": { "facing": "east", "half": "top", @@ -291639,7 +277337,7 @@ } }, { - "id": 25538, + "id": 24397, "properties": { "facing": "east", "half": "top", @@ -291648,7 +277346,7 @@ } }, { - "id": 25539, + "id": 24398, "properties": { "facing": "east", "half": "top", @@ -291657,7 +277355,7 @@ } }, { - "id": 25540, + "id": 24399, "properties": { "facing": "east", "half": "top", @@ -291666,7 +277364,7 @@ } }, { - "id": 25541, + "id": 24400, "properties": { "facing": "east", "half": "top", @@ -291675,7 +277373,7 @@ } }, { - "id": 25542, + "id": 24401, "properties": { "facing": "east", "half": "top", @@ -291684,7 +277382,7 @@ } }, { - "id": 25543, + "id": 24402, "properties": { "facing": "east", "half": "top", @@ -291693,7 +277391,7 @@ } }, { - "id": 25544, + "id": 24403, "properties": { "facing": "east", "half": "top", @@ -291702,7 +277400,7 @@ } }, { - "id": 25545, + "id": 24404, "properties": { "facing": "east", "half": "top", @@ -291711,7 +277409,7 @@ } }, { - "id": 25546, + "id": 24405, "properties": { "facing": "east", "half": "top", @@ -291720,7 +277418,7 @@ } }, { - "id": 25547, + "id": 24406, "properties": { "facing": "east", "half": "bottom", @@ -291729,7 +277427,7 @@ } }, { - "id": 25548, + "id": 24407, "properties": { "facing": "east", "half": "bottom", @@ -291738,7 +277436,7 @@ } }, { - "id": 25549, + "id": 24408, "properties": { "facing": "east", "half": "bottom", @@ -291747,7 +277445,7 @@ } }, { - "id": 25550, + "id": 24409, "properties": { "facing": "east", "half": "bottom", @@ -291756,7 +277454,7 @@ } }, { - "id": 25551, + "id": 24410, "properties": { "facing": "east", "half": "bottom", @@ -291765,7 +277463,7 @@ } }, { - "id": 25552, + "id": 24411, "properties": { "facing": "east", "half": "bottom", @@ -291774,7 +277472,7 @@ } }, { - "id": 25553, + "id": 24412, "properties": { "facing": "east", "half": "bottom", @@ -291783,7 +277481,7 @@ } }, { - "id": 25554, + "id": 24413, "properties": { "facing": "east", "half": "bottom", @@ -291792,7 +277490,7 @@ } }, { - "id": 25555, + "id": 24414, "properties": { "facing": "east", "half": "bottom", @@ -291801,7 +277499,7 @@ } }, { - "id": 25556, + "id": 24415, "properties": { "facing": "east", "half": "bottom", @@ -291811,225 +277509,6 @@ } ] }, - "minecraft:waxed_oxidized_lightning_rod": { - "definition": { - "type": "minecraft:lightning_rod", - "properties": {} - }, - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ], - "powered": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 27509, - "properties": { - "facing": "north", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 27510, - "properties": { - "facing": "north", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 27511, - "properties": { - "facing": "north", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 27512, - "properties": { - "facing": "north", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 27513, - "properties": { - "facing": "east", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 27514, - "properties": { - "facing": "east", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 27515, - "properties": { - "facing": "east", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 27516, - "properties": { - "facing": "east", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 27517, - "properties": { - "facing": "south", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 27518, - "properties": { - "facing": "south", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 27519, - "properties": { - "facing": "south", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 27520, - "properties": { - "facing": "south", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 27521, - "properties": { - "facing": "west", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 27522, - "properties": { - "facing": "west", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 27523, - "properties": { - "facing": "west", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 27524, - "properties": { - "facing": "west", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 27525, - "properties": { - "facing": "up", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 27526, - "properties": { - "facing": "up", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 27527, - "properties": { - "facing": "up", - "powered": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 27528, - "properties": { - "facing": "up", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 27529, - "properties": { - "facing": "down", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 27530, - "properties": { - "facing": "down", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 27531, - "properties": { - "facing": "down", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 27532, - "properties": { - "facing": "down", - "powered": "false", - "waterlogged": "false" - } - } - ] - }, "minecraft:waxed_weathered_chiseled_copper": { "definition": { "type": "minecraft:block", @@ -292038,7 +277517,7 @@ "states": [ { "default": true, - "id": 25122 + "id": 23981 } ] }, @@ -292050,358 +277529,7 @@ "states": [ { "default": true, - "id": 25470 - } - ] - }, - "minecraft:waxed_weathered_copper_bars": { - "definition": { - "type": "minecraft:iron_bars", - "properties": {} - }, - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 7981, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7982, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7983, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7984, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7985, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7986, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7987, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7988, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7989, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7990, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7991, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7992, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7993, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7994, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7995, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7996, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7997, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7998, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7999, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 8000, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 8001, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 8002, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 8003, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 8004, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 8005, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 8006, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 8007, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 8008, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 8009, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 8010, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 8011, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "default": true, - "id": 8012, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } + "id": 24329 } ] }, @@ -292422,21 +277550,21 @@ }, "states": [ { - "id": 26885, + "id": 25744, "properties": { "lit": "true", "powered": "true" } }, { - "id": 26886, + "id": 25745, "properties": { "lit": "true", "powered": "false" } }, { - "id": 26887, + "id": 25746, "properties": { "lit": "false", "powered": "true" @@ -292444,7 +277572,7 @@ }, { "default": true, - "id": 26888, + "id": 25747, "properties": { "lit": "false", "powered": "false" @@ -292452,289 +277580,6 @@ } ] }, - "minecraft:waxed_weathered_copper_chain": { - "definition": { - "type": "minecraft:chain", - "properties": {} - }, - "properties": { - "axis": [ - "x", - "y", - "z" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 8087, - "properties": { - "axis": "x", - "waterlogged": "true" - } - }, - { - "id": 8088, - "properties": { - "axis": "x", - "waterlogged": "false" - } - }, - { - "id": 8089, - "properties": { - "axis": "y", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 8090, - "properties": { - "axis": "y", - "waterlogged": "false" - } - }, - { - "id": 8091, - "properties": { - "axis": "z", - "waterlogged": "true" - } - }, - { - "id": 8092, - "properties": { - "axis": "z", - "waterlogged": "false" - } - } - ] - }, - "minecraft:waxed_weathered_copper_chest": { - "definition": { - "type": "minecraft:copper_chest", - "close_sound": "minecraft:block.copper_chest_weathered.close", - "open_sound": "minecraft:block.copper_chest_weathered.open", - "properties": {}, - "weathering_state": "weathered" - }, - "properties": { - "type": [ - "single", - "left", - "right" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 27037, - "properties": { - "type": "single", - "facing": "north", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 27038, - "properties": { - "type": "single", - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 27039, - "properties": { - "type": "left", - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 27040, - "properties": { - "type": "left", - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 27041, - "properties": { - "type": "right", - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 27042, - "properties": { - "type": "right", - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 27043, - "properties": { - "type": "single", - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 27044, - "properties": { - "type": "single", - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 27045, - "properties": { - "type": "left", - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 27046, - "properties": { - "type": "left", - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 27047, - "properties": { - "type": "right", - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 27048, - "properties": { - "type": "right", - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 27049, - "properties": { - "type": "single", - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 27050, - "properties": { - "type": "single", - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 27051, - "properties": { - "type": "left", - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 27052, - "properties": { - "type": "left", - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 27053, - "properties": { - "type": "right", - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 27054, - "properties": { - "type": "right", - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 27055, - "properties": { - "type": "single", - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 27056, - "properties": { - "type": "single", - "facing": "east", - "waterlogged": "false" - } - }, - { - "id": 27057, - "properties": { - "type": "left", - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 27058, - "properties": { - "type": "left", - "facing": "east", - "waterlogged": "false" - } - }, - { - "id": 27059, - "properties": { - "type": "right", - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 27060, - "properties": { - "type": "right", - "facing": "east", - "waterlogged": "false" - } - } - ] - }, "minecraft:waxed_weathered_copper_door": { "definition": { "type": "minecraft:door", @@ -292767,7 +277612,7 @@ }, "states": [ { - "id": 26269, + "id": 25128, "properties": { "facing": "north", "half": "upper", @@ -292777,7 +277622,7 @@ } }, { - "id": 26270, + "id": 25129, "properties": { "facing": "north", "half": "upper", @@ -292787,7 +277632,7 @@ } }, { - "id": 26271, + "id": 25130, "properties": { "facing": "north", "half": "upper", @@ -292797,7 +277642,7 @@ } }, { - "id": 26272, + "id": 25131, "properties": { "facing": "north", "half": "upper", @@ -292807,7 +277652,7 @@ } }, { - "id": 26273, + "id": 25132, "properties": { "facing": "north", "half": "upper", @@ -292817,7 +277662,7 @@ } }, { - "id": 26274, + "id": 25133, "properties": { "facing": "north", "half": "upper", @@ -292827,7 +277672,7 @@ } }, { - "id": 26275, + "id": 25134, "properties": { "facing": "north", "half": "upper", @@ -292837,7 +277682,7 @@ } }, { - "id": 26276, + "id": 25135, "properties": { "facing": "north", "half": "upper", @@ -292847,7 +277692,7 @@ } }, { - "id": 26277, + "id": 25136, "properties": { "facing": "north", "half": "lower", @@ -292857,7 +277702,7 @@ } }, { - "id": 26278, + "id": 25137, "properties": { "facing": "north", "half": "lower", @@ -292867,7 +277712,7 @@ } }, { - "id": 26279, + "id": 25138, "properties": { "facing": "north", "half": "lower", @@ -292878,7 +277723,7 @@ }, { "default": true, - "id": 26280, + "id": 25139, "properties": { "facing": "north", "half": "lower", @@ -292888,7 +277733,7 @@ } }, { - "id": 26281, + "id": 25140, "properties": { "facing": "north", "half": "lower", @@ -292898,7 +277743,7 @@ } }, { - "id": 26282, + "id": 25141, "properties": { "facing": "north", "half": "lower", @@ -292908,7 +277753,7 @@ } }, { - "id": 26283, + "id": 25142, "properties": { "facing": "north", "half": "lower", @@ -292918,7 +277763,7 @@ } }, { - "id": 26284, + "id": 25143, "properties": { "facing": "north", "half": "lower", @@ -292928,7 +277773,7 @@ } }, { - "id": 26285, + "id": 25144, "properties": { "facing": "south", "half": "upper", @@ -292938,7 +277783,7 @@ } }, { - "id": 26286, + "id": 25145, "properties": { "facing": "south", "half": "upper", @@ -292948,7 +277793,7 @@ } }, { - "id": 26287, + "id": 25146, "properties": { "facing": "south", "half": "upper", @@ -292958,7 +277803,7 @@ } }, { - "id": 26288, + "id": 25147, "properties": { "facing": "south", "half": "upper", @@ -292968,7 +277813,7 @@ } }, { - "id": 26289, + "id": 25148, "properties": { "facing": "south", "half": "upper", @@ -292978,7 +277823,7 @@ } }, { - "id": 26290, + "id": 25149, "properties": { "facing": "south", "half": "upper", @@ -292988,7 +277833,7 @@ } }, { - "id": 26291, + "id": 25150, "properties": { "facing": "south", "half": "upper", @@ -292998,7 +277843,7 @@ } }, { - "id": 26292, + "id": 25151, "properties": { "facing": "south", "half": "upper", @@ -293008,7 +277853,7 @@ } }, { - "id": 26293, + "id": 25152, "properties": { "facing": "south", "half": "lower", @@ -293018,7 +277863,7 @@ } }, { - "id": 26294, + "id": 25153, "properties": { "facing": "south", "half": "lower", @@ -293028,7 +277873,7 @@ } }, { - "id": 26295, + "id": 25154, "properties": { "facing": "south", "half": "lower", @@ -293038,7 +277883,7 @@ } }, { - "id": 26296, + "id": 25155, "properties": { "facing": "south", "half": "lower", @@ -293048,7 +277893,7 @@ } }, { - "id": 26297, + "id": 25156, "properties": { "facing": "south", "half": "lower", @@ -293058,7 +277903,7 @@ } }, { - "id": 26298, + "id": 25157, "properties": { "facing": "south", "half": "lower", @@ -293068,7 +277913,7 @@ } }, { - "id": 26299, + "id": 25158, "properties": { "facing": "south", "half": "lower", @@ -293078,7 +277923,7 @@ } }, { - "id": 26300, + "id": 25159, "properties": { "facing": "south", "half": "lower", @@ -293088,7 +277933,7 @@ } }, { - "id": 26301, + "id": 25160, "properties": { "facing": "west", "half": "upper", @@ -293098,7 +277943,7 @@ } }, { - "id": 26302, + "id": 25161, "properties": { "facing": "west", "half": "upper", @@ -293108,7 +277953,7 @@ } }, { - "id": 26303, + "id": 25162, "properties": { "facing": "west", "half": "upper", @@ -293118,7 +277963,7 @@ } }, { - "id": 26304, + "id": 25163, "properties": { "facing": "west", "half": "upper", @@ -293128,7 +277973,7 @@ } }, { - "id": 26305, + "id": 25164, "properties": { "facing": "west", "half": "upper", @@ -293138,7 +277983,7 @@ } }, { - "id": 26306, + "id": 25165, "properties": { "facing": "west", "half": "upper", @@ -293148,7 +277993,7 @@ } }, { - "id": 26307, + "id": 25166, "properties": { "facing": "west", "half": "upper", @@ -293158,7 +278003,7 @@ } }, { - "id": 26308, + "id": 25167, "properties": { "facing": "west", "half": "upper", @@ -293168,7 +278013,7 @@ } }, { - "id": 26309, + "id": 25168, "properties": { "facing": "west", "half": "lower", @@ -293178,7 +278023,7 @@ } }, { - "id": 26310, + "id": 25169, "properties": { "facing": "west", "half": "lower", @@ -293188,7 +278033,7 @@ } }, { - "id": 26311, + "id": 25170, "properties": { "facing": "west", "half": "lower", @@ -293198,7 +278043,7 @@ } }, { - "id": 26312, + "id": 25171, "properties": { "facing": "west", "half": "lower", @@ -293208,7 +278053,7 @@ } }, { - "id": 26313, + "id": 25172, "properties": { "facing": "west", "half": "lower", @@ -293218,7 +278063,7 @@ } }, { - "id": 26314, + "id": 25173, "properties": { "facing": "west", "half": "lower", @@ -293228,7 +278073,7 @@ } }, { - "id": 26315, + "id": 25174, "properties": { "facing": "west", "half": "lower", @@ -293238,7 +278083,7 @@ } }, { - "id": 26316, + "id": 25175, "properties": { "facing": "west", "half": "lower", @@ -293248,7 +278093,7 @@ } }, { - "id": 26317, + "id": 25176, "properties": { "facing": "east", "half": "upper", @@ -293258,7 +278103,7 @@ } }, { - "id": 26318, + "id": 25177, "properties": { "facing": "east", "half": "upper", @@ -293268,7 +278113,7 @@ } }, { - "id": 26319, + "id": 25178, "properties": { "facing": "east", "half": "upper", @@ -293278,7 +278123,7 @@ } }, { - "id": 26320, + "id": 25179, "properties": { "facing": "east", "half": "upper", @@ -293288,7 +278133,7 @@ } }, { - "id": 26321, + "id": 25180, "properties": { "facing": "east", "half": "upper", @@ -293298,7 +278143,7 @@ } }, { - "id": 26322, + "id": 25181, "properties": { "facing": "east", "half": "upper", @@ -293308,7 +278153,7 @@ } }, { - "id": 26323, + "id": 25182, "properties": { "facing": "east", "half": "upper", @@ -293318,7 +278163,7 @@ } }, { - "id": 26324, + "id": 25183, "properties": { "facing": "east", "half": "upper", @@ -293328,7 +278173,7 @@ } }, { - "id": 26325, + "id": 25184, "properties": { "facing": "east", "half": "lower", @@ -293338,7 +278183,7 @@ } }, { - "id": 26326, + "id": 25185, "properties": { "facing": "east", "half": "lower", @@ -293348,7 +278193,7 @@ } }, { - "id": 26327, + "id": 25186, "properties": { "facing": "east", "half": "lower", @@ -293358,7 +278203,7 @@ } }, { - "id": 26328, + "id": 25187, "properties": { "facing": "east", "half": "lower", @@ -293368,7 +278213,7 @@ } }, { - "id": 26329, + "id": 25188, "properties": { "facing": "east", "half": "lower", @@ -293378,7 +278223,7 @@ } }, { - "id": 26330, + "id": 25189, "properties": { "facing": "east", "half": "lower", @@ -293388,7 +278233,7 @@ } }, { - "id": 26331, + "id": 25190, "properties": { "facing": "east", "half": "lower", @@ -293398,7 +278243,7 @@ } }, { - "id": 26332, + "id": 25191, "properties": { "facing": "east", "half": "lower", @@ -293409,290 +278254,6 @@ } ] }, - "minecraft:waxed_weathered_copper_golem_statue": { - "definition": { - "type": "minecraft:copper_golem_statue", - "properties": {}, - "weathering_state": "weathered" - }, - "properties": { - "copper_golem_pose": [ - "standing", - "sitting", - "running", - "star" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 27277, - "properties": { - "copper_golem_pose": "standing", - "facing": "north", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 27278, - "properties": { - "copper_golem_pose": "standing", - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 27279, - "properties": { - "copper_golem_pose": "standing", - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 27280, - "properties": { - "copper_golem_pose": "standing", - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 27281, - "properties": { - "copper_golem_pose": "standing", - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 27282, - "properties": { - "copper_golem_pose": "standing", - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 27283, - "properties": { - "copper_golem_pose": "standing", - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 27284, - "properties": { - "copper_golem_pose": "standing", - "facing": "east", - "waterlogged": "false" - } - }, - { - "id": 27285, - "properties": { - "copper_golem_pose": "sitting", - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 27286, - "properties": { - "copper_golem_pose": "sitting", - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 27287, - "properties": { - "copper_golem_pose": "sitting", - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 27288, - "properties": { - "copper_golem_pose": "sitting", - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 27289, - "properties": { - "copper_golem_pose": "sitting", - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 27290, - "properties": { - "copper_golem_pose": "sitting", - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 27291, - "properties": { - "copper_golem_pose": "sitting", - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 27292, - "properties": { - "copper_golem_pose": "sitting", - "facing": "east", - "waterlogged": "false" - } - }, - { - "id": 27293, - "properties": { - "copper_golem_pose": "running", - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 27294, - "properties": { - "copper_golem_pose": "running", - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 27295, - "properties": { - "copper_golem_pose": "running", - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 27296, - "properties": { - "copper_golem_pose": "running", - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 27297, - "properties": { - "copper_golem_pose": "running", - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 27298, - "properties": { - "copper_golem_pose": "running", - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 27299, - "properties": { - "copper_golem_pose": "running", - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 27300, - "properties": { - "copper_golem_pose": "running", - "facing": "east", - "waterlogged": "false" - } - }, - { - "id": 27301, - "properties": { - "copper_golem_pose": "star", - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 27302, - "properties": { - "copper_golem_pose": "star", - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 27303, - "properties": { - "copper_golem_pose": "star", - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 27304, - "properties": { - "copper_golem_pose": "star", - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 27305, - "properties": { - "copper_golem_pose": "star", - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 27306, - "properties": { - "copper_golem_pose": "star", - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 27307, - "properties": { - "copper_golem_pose": "star", - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 27308, - "properties": { - "copper_golem_pose": "star", - "facing": "east", - "waterlogged": "false" - } - } - ] - }, "minecraft:waxed_weathered_copper_grate": { "definition": { "type": "minecraft:waterlogged_transparent", @@ -293706,62 +278267,15 @@ }, "states": [ { - "id": 26857, - "properties": { - "waterlogged": "true" - } - }, - { - "default": true, - "id": 26858, - "properties": { - "waterlogged": "false" - } - } - ] - }, - "minecraft:waxed_weathered_copper_lantern": { - "definition": { - "type": "minecraft:lantern", - "properties": {} - }, - "properties": { - "hanging": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20667, - "properties": { - "hanging": "true", - "waterlogged": "true" - } - }, - { - "id": 20668, - "properties": { - "hanging": "true", - "waterlogged": "false" - } - }, - { - "id": 20669, + "id": 25716, "properties": { - "hanging": "false", "waterlogged": "true" } }, { "default": true, - "id": 20670, + "id": 25717, "properties": { - "hanging": "false", "waterlogged": "false" } } @@ -293799,7 +278313,7 @@ }, "states": [ { - "id": 26781, + "id": 25640, "properties": { "facing": "north", "half": "top", @@ -293809,7 +278323,7 @@ } }, { - "id": 26782, + "id": 25641, "properties": { "facing": "north", "half": "top", @@ -293819,7 +278333,7 @@ } }, { - "id": 26783, + "id": 25642, "properties": { "facing": "north", "half": "top", @@ -293829,7 +278343,7 @@ } }, { - "id": 26784, + "id": 25643, "properties": { "facing": "north", "half": "top", @@ -293839,7 +278353,7 @@ } }, { - "id": 26785, + "id": 25644, "properties": { "facing": "north", "half": "top", @@ -293849,7 +278363,7 @@ } }, { - "id": 26786, + "id": 25645, "properties": { "facing": "north", "half": "top", @@ -293859,7 +278373,7 @@ } }, { - "id": 26787, + "id": 25646, "properties": { "facing": "north", "half": "top", @@ -293869,7 +278383,7 @@ } }, { - "id": 26788, + "id": 25647, "properties": { "facing": "north", "half": "top", @@ -293879,7 +278393,7 @@ } }, { - "id": 26789, + "id": 25648, "properties": { "facing": "north", "half": "bottom", @@ -293889,7 +278403,7 @@ } }, { - "id": 26790, + "id": 25649, "properties": { "facing": "north", "half": "bottom", @@ -293899,7 +278413,7 @@ } }, { - "id": 26791, + "id": 25650, "properties": { "facing": "north", "half": "bottom", @@ -293909,7 +278423,7 @@ } }, { - "id": 26792, + "id": 25651, "properties": { "facing": "north", "half": "bottom", @@ -293919,7 +278433,7 @@ } }, { - "id": 26793, + "id": 25652, "properties": { "facing": "north", "half": "bottom", @@ -293929,7 +278443,7 @@ } }, { - "id": 26794, + "id": 25653, "properties": { "facing": "north", "half": "bottom", @@ -293939,7 +278453,7 @@ } }, { - "id": 26795, + "id": 25654, "properties": { "facing": "north", "half": "bottom", @@ -293950,7 +278464,7 @@ }, { "default": true, - "id": 26796, + "id": 25655, "properties": { "facing": "north", "half": "bottom", @@ -293960,7 +278474,7 @@ } }, { - "id": 26797, + "id": 25656, "properties": { "facing": "south", "half": "top", @@ -293970,7 +278484,7 @@ } }, { - "id": 26798, + "id": 25657, "properties": { "facing": "south", "half": "top", @@ -293980,7 +278494,7 @@ } }, { - "id": 26799, + "id": 25658, "properties": { "facing": "south", "half": "top", @@ -293990,7 +278504,7 @@ } }, { - "id": 26800, + "id": 25659, "properties": { "facing": "south", "half": "top", @@ -294000,7 +278514,7 @@ } }, { - "id": 26801, + "id": 25660, "properties": { "facing": "south", "half": "top", @@ -294010,7 +278524,7 @@ } }, { - "id": 26802, + "id": 25661, "properties": { "facing": "south", "half": "top", @@ -294020,7 +278534,7 @@ } }, { - "id": 26803, + "id": 25662, "properties": { "facing": "south", "half": "top", @@ -294030,7 +278544,7 @@ } }, { - "id": 26804, + "id": 25663, "properties": { "facing": "south", "half": "top", @@ -294040,7 +278554,7 @@ } }, { - "id": 26805, + "id": 25664, "properties": { "facing": "south", "half": "bottom", @@ -294050,7 +278564,7 @@ } }, { - "id": 26806, + "id": 25665, "properties": { "facing": "south", "half": "bottom", @@ -294060,7 +278574,7 @@ } }, { - "id": 26807, + "id": 25666, "properties": { "facing": "south", "half": "bottom", @@ -294070,7 +278584,7 @@ } }, { - "id": 26808, + "id": 25667, "properties": { "facing": "south", "half": "bottom", @@ -294080,7 +278594,7 @@ } }, { - "id": 26809, + "id": 25668, "properties": { "facing": "south", "half": "bottom", @@ -294090,7 +278604,7 @@ } }, { - "id": 26810, + "id": 25669, "properties": { "facing": "south", "half": "bottom", @@ -294100,7 +278614,7 @@ } }, { - "id": 26811, + "id": 25670, "properties": { "facing": "south", "half": "bottom", @@ -294110,7 +278624,7 @@ } }, { - "id": 26812, + "id": 25671, "properties": { "facing": "south", "half": "bottom", @@ -294120,7 +278634,7 @@ } }, { - "id": 26813, + "id": 25672, "properties": { "facing": "west", "half": "top", @@ -294130,7 +278644,7 @@ } }, { - "id": 26814, + "id": 25673, "properties": { "facing": "west", "half": "top", @@ -294140,7 +278654,7 @@ } }, { - "id": 26815, + "id": 25674, "properties": { "facing": "west", "half": "top", @@ -294150,7 +278664,7 @@ } }, { - "id": 26816, + "id": 25675, "properties": { "facing": "west", "half": "top", @@ -294160,7 +278674,7 @@ } }, { - "id": 26817, + "id": 25676, "properties": { "facing": "west", "half": "top", @@ -294170,7 +278684,7 @@ } }, { - "id": 26818, + "id": 25677, "properties": { "facing": "west", "half": "top", @@ -294180,7 +278694,7 @@ } }, { - "id": 26819, + "id": 25678, "properties": { "facing": "west", "half": "top", @@ -294190,7 +278704,7 @@ } }, { - "id": 26820, + "id": 25679, "properties": { "facing": "west", "half": "top", @@ -294200,7 +278714,7 @@ } }, { - "id": 26821, + "id": 25680, "properties": { "facing": "west", "half": "bottom", @@ -294210,7 +278724,7 @@ } }, { - "id": 26822, + "id": 25681, "properties": { "facing": "west", "half": "bottom", @@ -294220,7 +278734,7 @@ } }, { - "id": 26823, + "id": 25682, "properties": { "facing": "west", "half": "bottom", @@ -294230,7 +278744,7 @@ } }, { - "id": 26824, + "id": 25683, "properties": { "facing": "west", "half": "bottom", @@ -294240,7 +278754,7 @@ } }, { - "id": 26825, + "id": 25684, "properties": { "facing": "west", "half": "bottom", @@ -294250,7 +278764,7 @@ } }, { - "id": 26826, + "id": 25685, "properties": { "facing": "west", "half": "bottom", @@ -294260,7 +278774,7 @@ } }, { - "id": 26827, + "id": 25686, "properties": { "facing": "west", "half": "bottom", @@ -294270,7 +278784,7 @@ } }, { - "id": 26828, + "id": 25687, "properties": { "facing": "west", "half": "bottom", @@ -294280,7 +278794,7 @@ } }, { - "id": 26829, + "id": 25688, "properties": { "facing": "east", "half": "top", @@ -294290,7 +278804,7 @@ } }, { - "id": 26830, + "id": 25689, "properties": { "facing": "east", "half": "top", @@ -294300,7 +278814,7 @@ } }, { - "id": 26831, + "id": 25690, "properties": { "facing": "east", "half": "top", @@ -294310,7 +278824,7 @@ } }, { - "id": 26832, + "id": 25691, "properties": { "facing": "east", "half": "top", @@ -294320,7 +278834,7 @@ } }, { - "id": 26833, + "id": 25692, "properties": { "facing": "east", "half": "top", @@ -294330,7 +278844,7 @@ } }, { - "id": 26834, + "id": 25693, "properties": { "facing": "east", "half": "top", @@ -294340,7 +278854,7 @@ } }, { - "id": 26835, + "id": 25694, "properties": { "facing": "east", "half": "top", @@ -294350,7 +278864,7 @@ } }, { - "id": 26836, + "id": 25695, "properties": { "facing": "east", "half": "top", @@ -294360,7 +278874,7 @@ } }, { - "id": 26837, + "id": 25696, "properties": { "facing": "east", "half": "bottom", @@ -294370,7 +278884,7 @@ } }, { - "id": 26838, + "id": 25697, "properties": { "facing": "east", "half": "bottom", @@ -294380,7 +278894,7 @@ } }, { - "id": 26839, + "id": 25698, "properties": { "facing": "east", "half": "bottom", @@ -294390,7 +278904,7 @@ } }, { - "id": 26840, + "id": 25699, "properties": { "facing": "east", "half": "bottom", @@ -294400,7 +278914,7 @@ } }, { - "id": 26841, + "id": 25700, "properties": { "facing": "east", "half": "bottom", @@ -294410,7 +278924,7 @@ } }, { - "id": 26842, + "id": 25701, "properties": { "facing": "east", "half": "bottom", @@ -294420,7 +278934,7 @@ } }, { - "id": 26843, + "id": 25702, "properties": { "facing": "east", "half": "bottom", @@ -294430,7 +278944,7 @@ } }, { - "id": 26844, + "id": 25703, "properties": { "facing": "east", "half": "bottom", @@ -294449,7 +278963,7 @@ "states": [ { "default": true, - "id": 25474 + "id": 24333 } ] }, @@ -294471,21 +278985,21 @@ }, "states": [ { - "id": 25803, + "id": 24662, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 25804, + "id": 24663, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 25805, + "id": 24664, "properties": { "type": "bottom", "waterlogged": "true" @@ -294493,21 +279007,21 @@ }, { "default": true, - "id": 25806, + "id": 24665, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 25807, + "id": 24666, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 25808, + "id": 24667, "properties": { "type": "double", "waterlogged": "false" @@ -294548,7 +279062,7 @@ }, "states": [ { - "id": 25557, + "id": 24416, "properties": { "facing": "north", "half": "top", @@ -294557,7 +279071,7 @@ } }, { - "id": 25558, + "id": 24417, "properties": { "facing": "north", "half": "top", @@ -294566,7 +279080,7 @@ } }, { - "id": 25559, + "id": 24418, "properties": { "facing": "north", "half": "top", @@ -294575,7 +279089,7 @@ } }, { - "id": 25560, + "id": 24419, "properties": { "facing": "north", "half": "top", @@ -294584,7 +279098,7 @@ } }, { - "id": 25561, + "id": 24420, "properties": { "facing": "north", "half": "top", @@ -294593,7 +279107,7 @@ } }, { - "id": 25562, + "id": 24421, "properties": { "facing": "north", "half": "top", @@ -294602,7 +279116,7 @@ } }, { - "id": 25563, + "id": 24422, "properties": { "facing": "north", "half": "top", @@ -294611,7 +279125,7 @@ } }, { - "id": 25564, + "id": 24423, "properties": { "facing": "north", "half": "top", @@ -294620,7 +279134,7 @@ } }, { - "id": 25565, + "id": 24424, "properties": { "facing": "north", "half": "top", @@ -294629,7 +279143,7 @@ } }, { - "id": 25566, + "id": 24425, "properties": { "facing": "north", "half": "top", @@ -294638,7 +279152,7 @@ } }, { - "id": 25567, + "id": 24426, "properties": { "facing": "north", "half": "bottom", @@ -294648,7 +279162,7 @@ }, { "default": true, - "id": 25568, + "id": 24427, "properties": { "facing": "north", "half": "bottom", @@ -294657,7 +279171,7 @@ } }, { - "id": 25569, + "id": 24428, "properties": { "facing": "north", "half": "bottom", @@ -294666,7 +279180,7 @@ } }, { - "id": 25570, + "id": 24429, "properties": { "facing": "north", "half": "bottom", @@ -294675,7 +279189,7 @@ } }, { - "id": 25571, + "id": 24430, "properties": { "facing": "north", "half": "bottom", @@ -294684,7 +279198,7 @@ } }, { - "id": 25572, + "id": 24431, "properties": { "facing": "north", "half": "bottom", @@ -294693,7 +279207,7 @@ } }, { - "id": 25573, + "id": 24432, "properties": { "facing": "north", "half": "bottom", @@ -294702,7 +279216,7 @@ } }, { - "id": 25574, + "id": 24433, "properties": { "facing": "north", "half": "bottom", @@ -294711,7 +279225,7 @@ } }, { - "id": 25575, + "id": 24434, "properties": { "facing": "north", "half": "bottom", @@ -294720,7 +279234,7 @@ } }, { - "id": 25576, + "id": 24435, "properties": { "facing": "north", "half": "bottom", @@ -294729,7 +279243,7 @@ } }, { - "id": 25577, + "id": 24436, "properties": { "facing": "south", "half": "top", @@ -294738,7 +279252,7 @@ } }, { - "id": 25578, + "id": 24437, "properties": { "facing": "south", "half": "top", @@ -294747,7 +279261,7 @@ } }, { - "id": 25579, + "id": 24438, "properties": { "facing": "south", "half": "top", @@ -294756,7 +279270,7 @@ } }, { - "id": 25580, + "id": 24439, "properties": { "facing": "south", "half": "top", @@ -294765,7 +279279,7 @@ } }, { - "id": 25581, + "id": 24440, "properties": { "facing": "south", "half": "top", @@ -294774,7 +279288,7 @@ } }, { - "id": 25582, + "id": 24441, "properties": { "facing": "south", "half": "top", @@ -294783,7 +279297,7 @@ } }, { - "id": 25583, + "id": 24442, "properties": { "facing": "south", "half": "top", @@ -294792,7 +279306,7 @@ } }, { - "id": 25584, + "id": 24443, "properties": { "facing": "south", "half": "top", @@ -294801,7 +279315,7 @@ } }, { - "id": 25585, + "id": 24444, "properties": { "facing": "south", "half": "top", @@ -294810,7 +279324,7 @@ } }, { - "id": 25586, + "id": 24445, "properties": { "facing": "south", "half": "top", @@ -294819,7 +279333,7 @@ } }, { - "id": 25587, + "id": 24446, "properties": { "facing": "south", "half": "bottom", @@ -294828,7 +279342,7 @@ } }, { - "id": 25588, + "id": 24447, "properties": { "facing": "south", "half": "bottom", @@ -294837,7 +279351,7 @@ } }, { - "id": 25589, + "id": 24448, "properties": { "facing": "south", "half": "bottom", @@ -294846,7 +279360,7 @@ } }, { - "id": 25590, + "id": 24449, "properties": { "facing": "south", "half": "bottom", @@ -294855,7 +279369,7 @@ } }, { - "id": 25591, + "id": 24450, "properties": { "facing": "south", "half": "bottom", @@ -294864,7 +279378,7 @@ } }, { - "id": 25592, + "id": 24451, "properties": { "facing": "south", "half": "bottom", @@ -294873,7 +279387,7 @@ } }, { - "id": 25593, + "id": 24452, "properties": { "facing": "south", "half": "bottom", @@ -294882,7 +279396,7 @@ } }, { - "id": 25594, + "id": 24453, "properties": { "facing": "south", "half": "bottom", @@ -294891,7 +279405,7 @@ } }, { - "id": 25595, + "id": 24454, "properties": { "facing": "south", "half": "bottom", @@ -294900,7 +279414,7 @@ } }, { - "id": 25596, + "id": 24455, "properties": { "facing": "south", "half": "bottom", @@ -294909,7 +279423,7 @@ } }, { - "id": 25597, + "id": 24456, "properties": { "facing": "west", "half": "top", @@ -294918,7 +279432,7 @@ } }, { - "id": 25598, + "id": 24457, "properties": { "facing": "west", "half": "top", @@ -294927,7 +279441,7 @@ } }, { - "id": 25599, + "id": 24458, "properties": { "facing": "west", "half": "top", @@ -294936,7 +279450,7 @@ } }, { - "id": 25600, + "id": 24459, "properties": { "facing": "west", "half": "top", @@ -294945,7 +279459,7 @@ } }, { - "id": 25601, + "id": 24460, "properties": { "facing": "west", "half": "top", @@ -294954,7 +279468,7 @@ } }, { - "id": 25602, + "id": 24461, "properties": { "facing": "west", "half": "top", @@ -294963,7 +279477,7 @@ } }, { - "id": 25603, + "id": 24462, "properties": { "facing": "west", "half": "top", @@ -294972,7 +279486,7 @@ } }, { - "id": 25604, + "id": 24463, "properties": { "facing": "west", "half": "top", @@ -294981,7 +279495,7 @@ } }, { - "id": 25605, + "id": 24464, "properties": { "facing": "west", "half": "top", @@ -294990,7 +279504,7 @@ } }, { - "id": 25606, + "id": 24465, "properties": { "facing": "west", "half": "top", @@ -294999,7 +279513,7 @@ } }, { - "id": 25607, + "id": 24466, "properties": { "facing": "west", "half": "bottom", @@ -295008,7 +279522,7 @@ } }, { - "id": 25608, + "id": 24467, "properties": { "facing": "west", "half": "bottom", @@ -295017,7 +279531,7 @@ } }, { - "id": 25609, + "id": 24468, "properties": { "facing": "west", "half": "bottom", @@ -295026,7 +279540,7 @@ } }, { - "id": 25610, + "id": 24469, "properties": { "facing": "west", "half": "bottom", @@ -295035,7 +279549,7 @@ } }, { - "id": 25611, + "id": 24470, "properties": { "facing": "west", "half": "bottom", @@ -295044,7 +279558,7 @@ } }, { - "id": 25612, + "id": 24471, "properties": { "facing": "west", "half": "bottom", @@ -295053,7 +279567,7 @@ } }, { - "id": 25613, + "id": 24472, "properties": { "facing": "west", "half": "bottom", @@ -295062,7 +279576,7 @@ } }, { - "id": 25614, + "id": 24473, "properties": { "facing": "west", "half": "bottom", @@ -295071,7 +279585,7 @@ } }, { - "id": 25615, + "id": 24474, "properties": { "facing": "west", "half": "bottom", @@ -295080,7 +279594,7 @@ } }, { - "id": 25616, + "id": 24475, "properties": { "facing": "west", "half": "bottom", @@ -295089,7 +279603,7 @@ } }, { - "id": 25617, + "id": 24476, "properties": { "facing": "east", "half": "top", @@ -295098,7 +279612,7 @@ } }, { - "id": 25618, + "id": 24477, "properties": { "facing": "east", "half": "top", @@ -295107,7 +279621,7 @@ } }, { - "id": 25619, + "id": 24478, "properties": { "facing": "east", "half": "top", @@ -295116,7 +279630,7 @@ } }, { - "id": 25620, + "id": 24479, "properties": { "facing": "east", "half": "top", @@ -295125,7 +279639,7 @@ } }, { - "id": 25621, + "id": 24480, "properties": { "facing": "east", "half": "top", @@ -295134,7 +279648,7 @@ } }, { - "id": 25622, + "id": 24481, "properties": { "facing": "east", "half": "top", @@ -295143,7 +279657,7 @@ } }, { - "id": 25623, + "id": 24482, "properties": { "facing": "east", "half": "top", @@ -295152,7 +279666,7 @@ } }, { - "id": 25624, + "id": 24483, "properties": { "facing": "east", "half": "top", @@ -295161,7 +279675,7 @@ } }, { - "id": 25625, + "id": 24484, "properties": { "facing": "east", "half": "top", @@ -295170,7 +279684,7 @@ } }, { - "id": 25626, + "id": 24485, "properties": { "facing": "east", "half": "top", @@ -295179,7 +279693,7 @@ } }, { - "id": 25627, + "id": 24486, "properties": { "facing": "east", "half": "bottom", @@ -295188,7 +279702,7 @@ } }, { - "id": 25628, + "id": 24487, "properties": { "facing": "east", "half": "bottom", @@ -295197,7 +279711,7 @@ } }, { - "id": 25629, + "id": 24488, "properties": { "facing": "east", "half": "bottom", @@ -295206,7 +279720,7 @@ } }, { - "id": 25630, + "id": 24489, "properties": { "facing": "east", "half": "bottom", @@ -295215,7 +279729,7 @@ } }, { - "id": 25631, + "id": 24490, "properties": { "facing": "east", "half": "bottom", @@ -295224,7 +279738,7 @@ } }, { - "id": 25632, + "id": 24491, "properties": { "facing": "east", "half": "bottom", @@ -295233,7 +279747,7 @@ } }, { - "id": 25633, + "id": 24492, "properties": { "facing": "east", "half": "bottom", @@ -295242,7 +279756,7 @@ } }, { - "id": 25634, + "id": 24493, "properties": { "facing": "east", "half": "bottom", @@ -295251,7 +279765,7 @@ } }, { - "id": 25635, + "id": 24494, "properties": { "facing": "east", "half": "bottom", @@ -295260,7 +279774,7 @@ } }, { - "id": 25636, + "id": 24495, "properties": { "facing": "east", "half": "bottom", @@ -295270,225 +279784,6 @@ } ] }, - "minecraft:waxed_weathered_lightning_rod": { - "definition": { - "type": "minecraft:lightning_rod", - "properties": {} - }, - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ], - "powered": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 27485, - "properties": { - "facing": "north", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 27486, - "properties": { - "facing": "north", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 27487, - "properties": { - "facing": "north", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 27488, - "properties": { - "facing": "north", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 27489, - "properties": { - "facing": "east", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 27490, - "properties": { - "facing": "east", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 27491, - "properties": { - "facing": "east", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 27492, - "properties": { - "facing": "east", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 27493, - "properties": { - "facing": "south", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 27494, - "properties": { - "facing": "south", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 27495, - "properties": { - "facing": "south", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 27496, - "properties": { - "facing": "south", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 27497, - "properties": { - "facing": "west", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 27498, - "properties": { - "facing": "west", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 27499, - "properties": { - "facing": "west", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 27500, - "properties": { - "facing": "west", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 27501, - "properties": { - "facing": "up", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 27502, - "properties": { - "facing": "up", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 27503, - "properties": { - "facing": "up", - "powered": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 27504, - "properties": { - "facing": "up", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 27505, - "properties": { - "facing": "down", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 27506, - "properties": { - "facing": "down", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 27507, - "properties": { - "facing": "down", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 27508, - "properties": { - "facing": "down", - "powered": "false", - "waterlogged": "false" - } - } - ] - }, "minecraft:weathered_chiseled_copper": { "definition": { "type": "minecraft:weathering_copper_full", @@ -295498,7 +279793,7 @@ "states": [ { "default": true, - "id": 25118 + "id": 23977 } ] }, @@ -295511,359 +279806,7 @@ "states": [ { "default": true, - "id": 25109 - } - ] - }, - "minecraft:weathered_copper_bars": { - "definition": { - "type": "minecraft:weathering_copper_bar", - "properties": {}, - "weathering_state": "weathered" - }, - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 7853, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7854, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7855, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7856, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7857, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7858, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7859, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7860, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7861, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7862, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7863, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7864, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7865, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7866, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7867, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7868, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7869, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7870, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7871, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7872, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7873, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7874, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7875, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7876, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7877, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7878, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7879, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7880, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7881, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7882, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7883, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "default": true, - "id": 7884, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } + "id": 23968 } ] }, @@ -295885,21 +279828,21 @@ }, "states": [ { - "id": 26869, + "id": 25728, "properties": { "lit": "true", "powered": "true" } }, { - "id": 26870, + "id": 25729, "properties": { "lit": "true", "powered": "false" } }, { - "id": 26871, + "id": 25730, "properties": { "lit": "false", "powered": "true" @@ -295907,7 +279850,7 @@ }, { "default": true, - "id": 26872, + "id": 25731, "properties": { "lit": "false", "powered": "false" @@ -295915,290 +279858,6 @@ } ] }, - "minecraft:weathered_copper_chain": { - "definition": { - "type": "minecraft:weathering_copper_chain", - "properties": {}, - "weathering_state": "weathered" - }, - "properties": { - "axis": [ - "x", - "y", - "z" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 8063, - "properties": { - "axis": "x", - "waterlogged": "true" - } - }, - { - "id": 8064, - "properties": { - "axis": "x", - "waterlogged": "false" - } - }, - { - "id": 8065, - "properties": { - "axis": "y", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 8066, - "properties": { - "axis": "y", - "waterlogged": "false" - } - }, - { - "id": 8067, - "properties": { - "axis": "z", - "waterlogged": "true" - } - }, - { - "id": 8068, - "properties": { - "axis": "z", - "waterlogged": "false" - } - } - ] - }, - "minecraft:weathered_copper_chest": { - "definition": { - "type": "minecraft:weathering_copper_chest", - "close_sound": "minecraft:block.copper_chest_weathered.close", - "open_sound": "minecraft:block.copper_chest_weathered.open", - "properties": {}, - "weathering_state": "weathered" - }, - "properties": { - "type": [ - "single", - "left", - "right" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 26941, - "properties": { - "type": "single", - "facing": "north", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 26942, - "properties": { - "type": "single", - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 26943, - "properties": { - "type": "left", - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 26944, - "properties": { - "type": "left", - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 26945, - "properties": { - "type": "right", - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 26946, - "properties": { - "type": "right", - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 26947, - "properties": { - "type": "single", - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 26948, - "properties": { - "type": "single", - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 26949, - "properties": { - "type": "left", - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 26950, - "properties": { - "type": "left", - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 26951, - "properties": { - "type": "right", - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 26952, - "properties": { - "type": "right", - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 26953, - "properties": { - "type": "single", - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 26954, - "properties": { - "type": "single", - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 26955, - "properties": { - "type": "left", - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 26956, - "properties": { - "type": "left", - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 26957, - "properties": { - "type": "right", - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 26958, - "properties": { - "type": "right", - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 26959, - "properties": { - "type": "single", - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 26960, - "properties": { - "type": "single", - "facing": "east", - "waterlogged": "false" - } - }, - { - "id": 26961, - "properties": { - "type": "left", - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 26962, - "properties": { - "type": "left", - "facing": "east", - "waterlogged": "false" - } - }, - { - "id": 26963, - "properties": { - "type": "right", - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 26964, - "properties": { - "type": "right", - "facing": "east", - "waterlogged": "false" - } - } - ] - }, "minecraft:weathered_copper_door": { "definition": { "type": "minecraft:weathering_copper_door", @@ -296232,7 +279891,7 @@ }, "states": [ { - "id": 26013, + "id": 24872, "properties": { "facing": "north", "half": "upper", @@ -296242,7 +279901,7 @@ } }, { - "id": 26014, + "id": 24873, "properties": { "facing": "north", "half": "upper", @@ -296252,7 +279911,7 @@ } }, { - "id": 26015, + "id": 24874, "properties": { "facing": "north", "half": "upper", @@ -296262,7 +279921,7 @@ } }, { - "id": 26016, + "id": 24875, "properties": { "facing": "north", "half": "upper", @@ -296272,7 +279931,7 @@ } }, { - "id": 26017, + "id": 24876, "properties": { "facing": "north", "half": "upper", @@ -296282,7 +279941,7 @@ } }, { - "id": 26018, + "id": 24877, "properties": { "facing": "north", "half": "upper", @@ -296292,7 +279951,7 @@ } }, { - "id": 26019, + "id": 24878, "properties": { "facing": "north", "half": "upper", @@ -296302,7 +279961,7 @@ } }, { - "id": 26020, + "id": 24879, "properties": { "facing": "north", "half": "upper", @@ -296312,7 +279971,7 @@ } }, { - "id": 26021, + "id": 24880, "properties": { "facing": "north", "half": "lower", @@ -296322,7 +279981,7 @@ } }, { - "id": 26022, + "id": 24881, "properties": { "facing": "north", "half": "lower", @@ -296332,7 +279991,7 @@ } }, { - "id": 26023, + "id": 24882, "properties": { "facing": "north", "half": "lower", @@ -296343,7 +280002,7 @@ }, { "default": true, - "id": 26024, + "id": 24883, "properties": { "facing": "north", "half": "lower", @@ -296353,7 +280012,7 @@ } }, { - "id": 26025, + "id": 24884, "properties": { "facing": "north", "half": "lower", @@ -296363,7 +280022,7 @@ } }, { - "id": 26026, + "id": 24885, "properties": { "facing": "north", "half": "lower", @@ -296373,7 +280032,7 @@ } }, { - "id": 26027, + "id": 24886, "properties": { "facing": "north", "half": "lower", @@ -296383,7 +280042,7 @@ } }, { - "id": 26028, + "id": 24887, "properties": { "facing": "north", "half": "lower", @@ -296393,7 +280052,7 @@ } }, { - "id": 26029, + "id": 24888, "properties": { "facing": "south", "half": "upper", @@ -296403,7 +280062,7 @@ } }, { - "id": 26030, + "id": 24889, "properties": { "facing": "south", "half": "upper", @@ -296413,7 +280072,7 @@ } }, { - "id": 26031, + "id": 24890, "properties": { "facing": "south", "half": "upper", @@ -296423,7 +280082,7 @@ } }, { - "id": 26032, + "id": 24891, "properties": { "facing": "south", "half": "upper", @@ -296433,7 +280092,7 @@ } }, { - "id": 26033, + "id": 24892, "properties": { "facing": "south", "half": "upper", @@ -296443,7 +280102,7 @@ } }, { - "id": 26034, + "id": 24893, "properties": { "facing": "south", "half": "upper", @@ -296453,7 +280112,7 @@ } }, { - "id": 26035, + "id": 24894, "properties": { "facing": "south", "half": "upper", @@ -296463,7 +280122,7 @@ } }, { - "id": 26036, + "id": 24895, "properties": { "facing": "south", "half": "upper", @@ -296473,7 +280132,7 @@ } }, { - "id": 26037, + "id": 24896, "properties": { "facing": "south", "half": "lower", @@ -296483,7 +280142,7 @@ } }, { - "id": 26038, + "id": 24897, "properties": { "facing": "south", "half": "lower", @@ -296493,7 +280152,7 @@ } }, { - "id": 26039, + "id": 24898, "properties": { "facing": "south", "half": "lower", @@ -296503,7 +280162,7 @@ } }, { - "id": 26040, + "id": 24899, "properties": { "facing": "south", "half": "lower", @@ -296513,7 +280172,7 @@ } }, { - "id": 26041, + "id": 24900, "properties": { "facing": "south", "half": "lower", @@ -296523,7 +280182,7 @@ } }, { - "id": 26042, + "id": 24901, "properties": { "facing": "south", "half": "lower", @@ -296533,7 +280192,7 @@ } }, { - "id": 26043, + "id": 24902, "properties": { "facing": "south", "half": "lower", @@ -296543,7 +280202,7 @@ } }, { - "id": 26044, + "id": 24903, "properties": { "facing": "south", "half": "lower", @@ -296553,7 +280212,7 @@ } }, { - "id": 26045, + "id": 24904, "properties": { "facing": "west", "half": "upper", @@ -296563,7 +280222,7 @@ } }, { - "id": 26046, + "id": 24905, "properties": { "facing": "west", "half": "upper", @@ -296573,7 +280232,7 @@ } }, { - "id": 26047, + "id": 24906, "properties": { "facing": "west", "half": "upper", @@ -296583,7 +280242,7 @@ } }, { - "id": 26048, + "id": 24907, "properties": { "facing": "west", "half": "upper", @@ -296593,7 +280252,7 @@ } }, { - "id": 26049, + "id": 24908, "properties": { "facing": "west", "half": "upper", @@ -296603,7 +280262,7 @@ } }, { - "id": 26050, + "id": 24909, "properties": { "facing": "west", "half": "upper", @@ -296613,7 +280272,7 @@ } }, { - "id": 26051, + "id": 24910, "properties": { "facing": "west", "half": "upper", @@ -296623,7 +280282,7 @@ } }, { - "id": 26052, + "id": 24911, "properties": { "facing": "west", "half": "upper", @@ -296633,7 +280292,7 @@ } }, { - "id": 26053, + "id": 24912, "properties": { "facing": "west", "half": "lower", @@ -296643,7 +280302,7 @@ } }, { - "id": 26054, + "id": 24913, "properties": { "facing": "west", "half": "lower", @@ -296653,7 +280312,7 @@ } }, { - "id": 26055, + "id": 24914, "properties": { "facing": "west", "half": "lower", @@ -296663,7 +280322,7 @@ } }, { - "id": 26056, + "id": 24915, "properties": { "facing": "west", "half": "lower", @@ -296673,7 +280332,7 @@ } }, { - "id": 26057, + "id": 24916, "properties": { "facing": "west", "half": "lower", @@ -296683,7 +280342,7 @@ } }, { - "id": 26058, + "id": 24917, "properties": { "facing": "west", "half": "lower", @@ -296693,7 +280352,7 @@ } }, { - "id": 26059, + "id": 24918, "properties": { "facing": "west", "half": "lower", @@ -296703,7 +280362,7 @@ } }, { - "id": 26060, + "id": 24919, "properties": { "facing": "west", "half": "lower", @@ -296713,7 +280372,7 @@ } }, { - "id": 26061, + "id": 24920, "properties": { "facing": "east", "half": "upper", @@ -296723,7 +280382,7 @@ } }, { - "id": 26062, + "id": 24921, "properties": { "facing": "east", "half": "upper", @@ -296733,7 +280392,7 @@ } }, { - "id": 26063, + "id": 24922, "properties": { "facing": "east", "half": "upper", @@ -296743,7 +280402,7 @@ } }, { - "id": 26064, + "id": 24923, "properties": { "facing": "east", "half": "upper", @@ -296753,7 +280412,7 @@ } }, { - "id": 26065, + "id": 24924, "properties": { "facing": "east", "half": "upper", @@ -296763,7 +280422,7 @@ } }, { - "id": 26066, + "id": 24925, "properties": { "facing": "east", "half": "upper", @@ -296773,7 +280432,7 @@ } }, { - "id": 26067, + "id": 24926, "properties": { "facing": "east", "half": "upper", @@ -296783,7 +280442,7 @@ } }, { - "id": 26068, + "id": 24927, "properties": { "facing": "east", "half": "upper", @@ -296793,7 +280452,7 @@ } }, { - "id": 26069, + "id": 24928, "properties": { "facing": "east", "half": "lower", @@ -296803,7 +280462,7 @@ } }, { - "id": 26070, + "id": 24929, "properties": { "facing": "east", "half": "lower", @@ -296813,7 +280472,7 @@ } }, { - "id": 26071, + "id": 24930, "properties": { "facing": "east", "half": "lower", @@ -296823,7 +280482,7 @@ } }, { - "id": 26072, + "id": 24931, "properties": { "facing": "east", "half": "lower", @@ -296833,7 +280492,7 @@ } }, { - "id": 26073, + "id": 24932, "properties": { "facing": "east", "half": "lower", @@ -296843,7 +280502,7 @@ } }, { - "id": 26074, + "id": 24933, "properties": { "facing": "east", "half": "lower", @@ -296853,7 +280512,7 @@ } }, { - "id": 26075, + "id": 24934, "properties": { "facing": "east", "half": "lower", @@ -296863,7 +280522,7 @@ } }, { - "id": 26076, + "id": 24935, "properties": { "facing": "east", "half": "lower", @@ -296874,290 +280533,6 @@ } ] }, - "minecraft:weathered_copper_golem_statue": { - "definition": { - "type": "minecraft:weathering_copper_golem_statue", - "properties": {}, - "weathering_state": "weathered" - }, - "properties": { - "copper_golem_pose": [ - "standing", - "sitting", - "running", - "star" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 27149, - "properties": { - "copper_golem_pose": "standing", - "facing": "north", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 27150, - "properties": { - "copper_golem_pose": "standing", - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 27151, - "properties": { - "copper_golem_pose": "standing", - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 27152, - "properties": { - "copper_golem_pose": "standing", - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 27153, - "properties": { - "copper_golem_pose": "standing", - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 27154, - "properties": { - "copper_golem_pose": "standing", - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 27155, - "properties": { - "copper_golem_pose": "standing", - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 27156, - "properties": { - "copper_golem_pose": "standing", - "facing": "east", - "waterlogged": "false" - } - }, - { - "id": 27157, - "properties": { - "copper_golem_pose": "sitting", - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 27158, - "properties": { - "copper_golem_pose": "sitting", - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 27159, - "properties": { - "copper_golem_pose": "sitting", - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 27160, - "properties": { - "copper_golem_pose": "sitting", - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 27161, - "properties": { - "copper_golem_pose": "sitting", - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 27162, - "properties": { - "copper_golem_pose": "sitting", - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 27163, - "properties": { - "copper_golem_pose": "sitting", - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 27164, - "properties": { - "copper_golem_pose": "sitting", - "facing": "east", - "waterlogged": "false" - } - }, - { - "id": 27165, - "properties": { - "copper_golem_pose": "running", - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 27166, - "properties": { - "copper_golem_pose": "running", - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 27167, - "properties": { - "copper_golem_pose": "running", - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 27168, - "properties": { - "copper_golem_pose": "running", - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 27169, - "properties": { - "copper_golem_pose": "running", - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 27170, - "properties": { - "copper_golem_pose": "running", - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 27171, - "properties": { - "copper_golem_pose": "running", - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 27172, - "properties": { - "copper_golem_pose": "running", - "facing": "east", - "waterlogged": "false" - } - }, - { - "id": 27173, - "properties": { - "copper_golem_pose": "star", - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 27174, - "properties": { - "copper_golem_pose": "star", - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 27175, - "properties": { - "copper_golem_pose": "star", - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 27176, - "properties": { - "copper_golem_pose": "star", - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 27177, - "properties": { - "copper_golem_pose": "star", - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 27178, - "properties": { - "copper_golem_pose": "star", - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 27179, - "properties": { - "copper_golem_pose": "star", - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 27180, - "properties": { - "copper_golem_pose": "star", - "facing": "east", - "waterlogged": "false" - } - } - ] - }, "minecraft:weathered_copper_grate": { "definition": { "type": "minecraft:weathering_copper_grate", @@ -297172,63 +280547,15 @@ }, "states": [ { - "id": 26849, - "properties": { - "waterlogged": "true" - } - }, - { - "default": true, - "id": 26850, - "properties": { - "waterlogged": "false" - } - } - ] - }, - "minecraft:weathered_copper_lantern": { - "definition": { - "type": "minecraft:weathering_lantern", - "properties": {}, - "weathering_state": "weathered" - }, - "properties": { - "hanging": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20651, - "properties": { - "hanging": "true", - "waterlogged": "true" - } - }, - { - "id": 20652, - "properties": { - "hanging": "true", - "waterlogged": "false" - } - }, - { - "id": 20653, + "id": 25708, "properties": { - "hanging": "false", "waterlogged": "true" } }, { "default": true, - "id": 20654, + "id": 25709, "properties": { - "hanging": "false", "waterlogged": "false" } } @@ -297267,7 +280594,7 @@ }, "states": [ { - "id": 26525, + "id": 25384, "properties": { "facing": "north", "half": "top", @@ -297277,7 +280604,7 @@ } }, { - "id": 26526, + "id": 25385, "properties": { "facing": "north", "half": "top", @@ -297287,7 +280614,7 @@ } }, { - "id": 26527, + "id": 25386, "properties": { "facing": "north", "half": "top", @@ -297297,7 +280624,7 @@ } }, { - "id": 26528, + "id": 25387, "properties": { "facing": "north", "half": "top", @@ -297307,7 +280634,7 @@ } }, { - "id": 26529, + "id": 25388, "properties": { "facing": "north", "half": "top", @@ -297317,7 +280644,7 @@ } }, { - "id": 26530, + "id": 25389, "properties": { "facing": "north", "half": "top", @@ -297327,7 +280654,7 @@ } }, { - "id": 26531, + "id": 25390, "properties": { "facing": "north", "half": "top", @@ -297337,7 +280664,7 @@ } }, { - "id": 26532, + "id": 25391, "properties": { "facing": "north", "half": "top", @@ -297347,7 +280674,7 @@ } }, { - "id": 26533, + "id": 25392, "properties": { "facing": "north", "half": "bottom", @@ -297357,7 +280684,7 @@ } }, { - "id": 26534, + "id": 25393, "properties": { "facing": "north", "half": "bottom", @@ -297367,7 +280694,7 @@ } }, { - "id": 26535, + "id": 25394, "properties": { "facing": "north", "half": "bottom", @@ -297377,7 +280704,7 @@ } }, { - "id": 26536, + "id": 25395, "properties": { "facing": "north", "half": "bottom", @@ -297387,7 +280714,7 @@ } }, { - "id": 26537, + "id": 25396, "properties": { "facing": "north", "half": "bottom", @@ -297397,7 +280724,7 @@ } }, { - "id": 26538, + "id": 25397, "properties": { "facing": "north", "half": "bottom", @@ -297407,7 +280734,7 @@ } }, { - "id": 26539, + "id": 25398, "properties": { "facing": "north", "half": "bottom", @@ -297418,7 +280745,7 @@ }, { "default": true, - "id": 26540, + "id": 25399, "properties": { "facing": "north", "half": "bottom", @@ -297428,7 +280755,7 @@ } }, { - "id": 26541, + "id": 25400, "properties": { "facing": "south", "half": "top", @@ -297438,7 +280765,7 @@ } }, { - "id": 26542, + "id": 25401, "properties": { "facing": "south", "half": "top", @@ -297448,7 +280775,7 @@ } }, { - "id": 26543, + "id": 25402, "properties": { "facing": "south", "half": "top", @@ -297458,7 +280785,7 @@ } }, { - "id": 26544, + "id": 25403, "properties": { "facing": "south", "half": "top", @@ -297468,7 +280795,7 @@ } }, { - "id": 26545, + "id": 25404, "properties": { "facing": "south", "half": "top", @@ -297478,7 +280805,7 @@ } }, { - "id": 26546, + "id": 25405, "properties": { "facing": "south", "half": "top", @@ -297488,7 +280815,7 @@ } }, { - "id": 26547, + "id": 25406, "properties": { "facing": "south", "half": "top", @@ -297498,7 +280825,7 @@ } }, { - "id": 26548, + "id": 25407, "properties": { "facing": "south", "half": "top", @@ -297508,7 +280835,7 @@ } }, { - "id": 26549, + "id": 25408, "properties": { "facing": "south", "half": "bottom", @@ -297518,7 +280845,7 @@ } }, { - "id": 26550, + "id": 25409, "properties": { "facing": "south", "half": "bottom", @@ -297528,7 +280855,7 @@ } }, { - "id": 26551, + "id": 25410, "properties": { "facing": "south", "half": "bottom", @@ -297538,7 +280865,7 @@ } }, { - "id": 26552, + "id": 25411, "properties": { "facing": "south", "half": "bottom", @@ -297548,7 +280875,7 @@ } }, { - "id": 26553, + "id": 25412, "properties": { "facing": "south", "half": "bottom", @@ -297558,7 +280885,7 @@ } }, { - "id": 26554, + "id": 25413, "properties": { "facing": "south", "half": "bottom", @@ -297568,7 +280895,7 @@ } }, { - "id": 26555, + "id": 25414, "properties": { "facing": "south", "half": "bottom", @@ -297578,7 +280905,7 @@ } }, { - "id": 26556, + "id": 25415, "properties": { "facing": "south", "half": "bottom", @@ -297588,7 +280915,7 @@ } }, { - "id": 26557, + "id": 25416, "properties": { "facing": "west", "half": "top", @@ -297598,7 +280925,7 @@ } }, { - "id": 26558, + "id": 25417, "properties": { "facing": "west", "half": "top", @@ -297608,7 +280935,7 @@ } }, { - "id": 26559, + "id": 25418, "properties": { "facing": "west", "half": "top", @@ -297618,7 +280945,7 @@ } }, { - "id": 26560, + "id": 25419, "properties": { "facing": "west", "half": "top", @@ -297628,7 +280955,7 @@ } }, { - "id": 26561, + "id": 25420, "properties": { "facing": "west", "half": "top", @@ -297638,7 +280965,7 @@ } }, { - "id": 26562, + "id": 25421, "properties": { "facing": "west", "half": "top", @@ -297648,7 +280975,7 @@ } }, { - "id": 26563, + "id": 25422, "properties": { "facing": "west", "half": "top", @@ -297658,7 +280985,7 @@ } }, { - "id": 26564, + "id": 25423, "properties": { "facing": "west", "half": "top", @@ -297668,7 +280995,7 @@ } }, { - "id": 26565, + "id": 25424, "properties": { "facing": "west", "half": "bottom", @@ -297678,7 +281005,7 @@ } }, { - "id": 26566, + "id": 25425, "properties": { "facing": "west", "half": "bottom", @@ -297688,7 +281015,7 @@ } }, { - "id": 26567, + "id": 25426, "properties": { "facing": "west", "half": "bottom", @@ -297698,7 +281025,7 @@ } }, { - "id": 26568, + "id": 25427, "properties": { "facing": "west", "half": "bottom", @@ -297708,7 +281035,7 @@ } }, { - "id": 26569, + "id": 25428, "properties": { "facing": "west", "half": "bottom", @@ -297718,7 +281045,7 @@ } }, { - "id": 26570, + "id": 25429, "properties": { "facing": "west", "half": "bottom", @@ -297728,7 +281055,7 @@ } }, { - "id": 26571, + "id": 25430, "properties": { "facing": "west", "half": "bottom", @@ -297738,7 +281065,7 @@ } }, { - "id": 26572, + "id": 25431, "properties": { "facing": "west", "half": "bottom", @@ -297748,7 +281075,7 @@ } }, { - "id": 26573, + "id": 25432, "properties": { "facing": "east", "half": "top", @@ -297758,7 +281085,7 @@ } }, { - "id": 26574, + "id": 25433, "properties": { "facing": "east", "half": "top", @@ -297768,7 +281095,7 @@ } }, { - "id": 26575, + "id": 25434, "properties": { "facing": "east", "half": "top", @@ -297778,7 +281105,7 @@ } }, { - "id": 26576, + "id": 25435, "properties": { "facing": "east", "half": "top", @@ -297788,7 +281115,7 @@ } }, { - "id": 26577, + "id": 25436, "properties": { "facing": "east", "half": "top", @@ -297798,7 +281125,7 @@ } }, { - "id": 26578, + "id": 25437, "properties": { "facing": "east", "half": "top", @@ -297808,7 +281135,7 @@ } }, { - "id": 26579, + "id": 25438, "properties": { "facing": "east", "half": "top", @@ -297818,7 +281145,7 @@ } }, { - "id": 26580, + "id": 25439, "properties": { "facing": "east", "half": "top", @@ -297828,7 +281155,7 @@ } }, { - "id": 26581, + "id": 25440, "properties": { "facing": "east", "half": "bottom", @@ -297838,7 +281165,7 @@ } }, { - "id": 26582, + "id": 25441, "properties": { "facing": "east", "half": "bottom", @@ -297848,7 +281175,7 @@ } }, { - "id": 26583, + "id": 25442, "properties": { "facing": "east", "half": "bottom", @@ -297858,7 +281185,7 @@ } }, { - "id": 26584, + "id": 25443, "properties": { "facing": "east", "half": "bottom", @@ -297868,7 +281195,7 @@ } }, { - "id": 26585, + "id": 25444, "properties": { "facing": "east", "half": "bottom", @@ -297878,7 +281205,7 @@ } }, { - "id": 26586, + "id": 25445, "properties": { "facing": "east", "half": "bottom", @@ -297888,7 +281215,7 @@ } }, { - "id": 26587, + "id": 25446, "properties": { "facing": "east", "half": "bottom", @@ -297898,7 +281225,7 @@ } }, { - "id": 26588, + "id": 25447, "properties": { "facing": "east", "half": "bottom", @@ -297918,7 +281245,7 @@ "states": [ { "default": true, - "id": 25114 + "id": 23973 } ] }, @@ -297941,21 +281268,21 @@ }, "states": [ { - "id": 25451, + "id": 24310, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 25452, + "id": 24311, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 25453, + "id": 24312, "properties": { "type": "bottom", "waterlogged": "true" @@ -297963,21 +281290,21 @@ }, { "default": true, - "id": 25454, + "id": 24313, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 25455, + "id": 24314, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 25456, + "id": 24315, "properties": { "type": "double", "waterlogged": "false" @@ -298019,7 +281346,7 @@ }, "states": [ { - "id": 25205, + "id": 24064, "properties": { "facing": "north", "half": "top", @@ -298028,7 +281355,7 @@ } }, { - "id": 25206, + "id": 24065, "properties": { "facing": "north", "half": "top", @@ -298037,7 +281364,7 @@ } }, { - "id": 25207, + "id": 24066, "properties": { "facing": "north", "half": "top", @@ -298046,7 +281373,7 @@ } }, { - "id": 25208, + "id": 24067, "properties": { "facing": "north", "half": "top", @@ -298055,7 +281382,7 @@ } }, { - "id": 25209, + "id": 24068, "properties": { "facing": "north", "half": "top", @@ -298064,7 +281391,7 @@ } }, { - "id": 25210, + "id": 24069, "properties": { "facing": "north", "half": "top", @@ -298073,7 +281400,7 @@ } }, { - "id": 25211, + "id": 24070, "properties": { "facing": "north", "half": "top", @@ -298082,7 +281409,7 @@ } }, { - "id": 25212, + "id": 24071, "properties": { "facing": "north", "half": "top", @@ -298091,7 +281418,7 @@ } }, { - "id": 25213, + "id": 24072, "properties": { "facing": "north", "half": "top", @@ -298100,7 +281427,7 @@ } }, { - "id": 25214, + "id": 24073, "properties": { "facing": "north", "half": "top", @@ -298109,7 +281436,7 @@ } }, { - "id": 25215, + "id": 24074, "properties": { "facing": "north", "half": "bottom", @@ -298119,7 +281446,7 @@ }, { "default": true, - "id": 25216, + "id": 24075, "properties": { "facing": "north", "half": "bottom", @@ -298128,7 +281455,7 @@ } }, { - "id": 25217, + "id": 24076, "properties": { "facing": "north", "half": "bottom", @@ -298137,7 +281464,7 @@ } }, { - "id": 25218, + "id": 24077, "properties": { "facing": "north", "half": "bottom", @@ -298146,7 +281473,7 @@ } }, { - "id": 25219, + "id": 24078, "properties": { "facing": "north", "half": "bottom", @@ -298155,7 +281482,7 @@ } }, { - "id": 25220, + "id": 24079, "properties": { "facing": "north", "half": "bottom", @@ -298164,7 +281491,7 @@ } }, { - "id": 25221, + "id": 24080, "properties": { "facing": "north", "half": "bottom", @@ -298173,7 +281500,7 @@ } }, { - "id": 25222, + "id": 24081, "properties": { "facing": "north", "half": "bottom", @@ -298182,7 +281509,7 @@ } }, { - "id": 25223, + "id": 24082, "properties": { "facing": "north", "half": "bottom", @@ -298191,7 +281518,7 @@ } }, { - "id": 25224, + "id": 24083, "properties": { "facing": "north", "half": "bottom", @@ -298200,7 +281527,7 @@ } }, { - "id": 25225, + "id": 24084, "properties": { "facing": "south", "half": "top", @@ -298209,7 +281536,7 @@ } }, { - "id": 25226, + "id": 24085, "properties": { "facing": "south", "half": "top", @@ -298218,7 +281545,7 @@ } }, { - "id": 25227, + "id": 24086, "properties": { "facing": "south", "half": "top", @@ -298227,7 +281554,7 @@ } }, { - "id": 25228, + "id": 24087, "properties": { "facing": "south", "half": "top", @@ -298236,7 +281563,7 @@ } }, { - "id": 25229, + "id": 24088, "properties": { "facing": "south", "half": "top", @@ -298245,7 +281572,7 @@ } }, { - "id": 25230, + "id": 24089, "properties": { "facing": "south", "half": "top", @@ -298254,7 +281581,7 @@ } }, { - "id": 25231, + "id": 24090, "properties": { "facing": "south", "half": "top", @@ -298263,7 +281590,7 @@ } }, { - "id": 25232, + "id": 24091, "properties": { "facing": "south", "half": "top", @@ -298272,7 +281599,7 @@ } }, { - "id": 25233, + "id": 24092, "properties": { "facing": "south", "half": "top", @@ -298281,7 +281608,7 @@ } }, { - "id": 25234, + "id": 24093, "properties": { "facing": "south", "half": "top", @@ -298290,7 +281617,7 @@ } }, { - "id": 25235, + "id": 24094, "properties": { "facing": "south", "half": "bottom", @@ -298299,7 +281626,7 @@ } }, { - "id": 25236, + "id": 24095, "properties": { "facing": "south", "half": "bottom", @@ -298308,7 +281635,7 @@ } }, { - "id": 25237, + "id": 24096, "properties": { "facing": "south", "half": "bottom", @@ -298317,7 +281644,7 @@ } }, { - "id": 25238, + "id": 24097, "properties": { "facing": "south", "half": "bottom", @@ -298326,7 +281653,7 @@ } }, { - "id": 25239, + "id": 24098, "properties": { "facing": "south", "half": "bottom", @@ -298335,7 +281662,7 @@ } }, { - "id": 25240, + "id": 24099, "properties": { "facing": "south", "half": "bottom", @@ -298344,7 +281671,7 @@ } }, { - "id": 25241, + "id": 24100, "properties": { "facing": "south", "half": "bottom", @@ -298353,7 +281680,7 @@ } }, { - "id": 25242, + "id": 24101, "properties": { "facing": "south", "half": "bottom", @@ -298362,7 +281689,7 @@ } }, { - "id": 25243, + "id": 24102, "properties": { "facing": "south", "half": "bottom", @@ -298371,7 +281698,7 @@ } }, { - "id": 25244, + "id": 24103, "properties": { "facing": "south", "half": "bottom", @@ -298380,7 +281707,7 @@ } }, { - "id": 25245, + "id": 24104, "properties": { "facing": "west", "half": "top", @@ -298389,7 +281716,7 @@ } }, { - "id": 25246, + "id": 24105, "properties": { "facing": "west", "half": "top", @@ -298398,7 +281725,7 @@ } }, { - "id": 25247, + "id": 24106, "properties": { "facing": "west", "half": "top", @@ -298407,7 +281734,7 @@ } }, { - "id": 25248, + "id": 24107, "properties": { "facing": "west", "half": "top", @@ -298416,7 +281743,7 @@ } }, { - "id": 25249, + "id": 24108, "properties": { "facing": "west", "half": "top", @@ -298425,7 +281752,7 @@ } }, { - "id": 25250, + "id": 24109, "properties": { "facing": "west", "half": "top", @@ -298434,7 +281761,7 @@ } }, { - "id": 25251, + "id": 24110, "properties": { "facing": "west", "half": "top", @@ -298443,7 +281770,7 @@ } }, { - "id": 25252, + "id": 24111, "properties": { "facing": "west", "half": "top", @@ -298452,7 +281779,7 @@ } }, { - "id": 25253, + "id": 24112, "properties": { "facing": "west", "half": "top", @@ -298461,7 +281788,7 @@ } }, { - "id": 25254, + "id": 24113, "properties": { "facing": "west", "half": "top", @@ -298470,7 +281797,7 @@ } }, { - "id": 25255, + "id": 24114, "properties": { "facing": "west", "half": "bottom", @@ -298479,7 +281806,7 @@ } }, { - "id": 25256, + "id": 24115, "properties": { "facing": "west", "half": "bottom", @@ -298488,7 +281815,7 @@ } }, { - "id": 25257, + "id": 24116, "properties": { "facing": "west", "half": "bottom", @@ -298497,7 +281824,7 @@ } }, { - "id": 25258, + "id": 24117, "properties": { "facing": "west", "half": "bottom", @@ -298506,7 +281833,7 @@ } }, { - "id": 25259, + "id": 24118, "properties": { "facing": "west", "half": "bottom", @@ -298515,7 +281842,7 @@ } }, { - "id": 25260, + "id": 24119, "properties": { "facing": "west", "half": "bottom", @@ -298524,7 +281851,7 @@ } }, { - "id": 25261, + "id": 24120, "properties": { "facing": "west", "half": "bottom", @@ -298533,7 +281860,7 @@ } }, { - "id": 25262, + "id": 24121, "properties": { "facing": "west", "half": "bottom", @@ -298542,7 +281869,7 @@ } }, { - "id": 25263, + "id": 24122, "properties": { "facing": "west", "half": "bottom", @@ -298551,7 +281878,7 @@ } }, { - "id": 25264, + "id": 24123, "properties": { "facing": "west", "half": "bottom", @@ -298560,7 +281887,7 @@ } }, { - "id": 25265, + "id": 24124, "properties": { "facing": "east", "half": "top", @@ -298569,7 +281896,7 @@ } }, { - "id": 25266, + "id": 24125, "properties": { "facing": "east", "half": "top", @@ -298578,7 +281905,7 @@ } }, { - "id": 25267, + "id": 24126, "properties": { "facing": "east", "half": "top", @@ -298587,7 +281914,7 @@ } }, { - "id": 25268, + "id": 24127, "properties": { "facing": "east", "half": "top", @@ -298596,7 +281923,7 @@ } }, { - "id": 25269, + "id": 24128, "properties": { "facing": "east", "half": "top", @@ -298605,7 +281932,7 @@ } }, { - "id": 25270, + "id": 24129, "properties": { "facing": "east", "half": "top", @@ -298614,7 +281941,7 @@ } }, { - "id": 25271, + "id": 24130, "properties": { "facing": "east", "half": "top", @@ -298623,7 +281950,7 @@ } }, { - "id": 25272, + "id": 24131, "properties": { "facing": "east", "half": "top", @@ -298632,7 +281959,7 @@ } }, { - "id": 25273, + "id": 24132, "properties": { "facing": "east", "half": "top", @@ -298641,7 +281968,7 @@ } }, { - "id": 25274, + "id": 24133, "properties": { "facing": "east", "half": "top", @@ -298650,7 +281977,7 @@ } }, { - "id": 25275, + "id": 24134, "properties": { "facing": "east", "half": "bottom", @@ -298659,7 +281986,7 @@ } }, { - "id": 25276, + "id": 24135, "properties": { "facing": "east", "half": "bottom", @@ -298668,7 +281995,7 @@ } }, { - "id": 25277, + "id": 24136, "properties": { "facing": "east", "half": "bottom", @@ -298677,7 +282004,7 @@ } }, { - "id": 25278, + "id": 24137, "properties": { "facing": "east", "half": "bottom", @@ -298686,7 +282013,7 @@ } }, { - "id": 25279, + "id": 24138, "properties": { "facing": "east", "half": "bottom", @@ -298695,7 +282022,7 @@ } }, { - "id": 25280, + "id": 24139, "properties": { "facing": "east", "half": "bottom", @@ -298704,7 +282031,7 @@ } }, { - "id": 25281, + "id": 24140, "properties": { "facing": "east", "half": "bottom", @@ -298713,7 +282040,7 @@ } }, { - "id": 25282, + "id": 24141, "properties": { "facing": "east", "half": "bottom", @@ -298722,7 +282049,7 @@ } }, { - "id": 25283, + "id": 24142, "properties": { "facing": "east", "half": "bottom", @@ -298731,7 +282058,7 @@ } }, { - "id": 25284, + "id": 24143, "properties": { "facing": "east", "half": "bottom", @@ -298741,226 +282068,6 @@ } ] }, - "minecraft:weathered_lightning_rod": { - "definition": { - "type": "minecraft:weathering_lightning_rod", - "properties": {}, - "weathering_state": "weathered" - }, - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ], - "powered": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 27389, - "properties": { - "facing": "north", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 27390, - "properties": { - "facing": "north", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 27391, - "properties": { - "facing": "north", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 27392, - "properties": { - "facing": "north", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 27393, - "properties": { - "facing": "east", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 27394, - "properties": { - "facing": "east", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 27395, - "properties": { - "facing": "east", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 27396, - "properties": { - "facing": "east", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 27397, - "properties": { - "facing": "south", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 27398, - "properties": { - "facing": "south", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 27399, - "properties": { - "facing": "south", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 27400, - "properties": { - "facing": "south", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 27401, - "properties": { - "facing": "west", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 27402, - "properties": { - "facing": "west", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 27403, - "properties": { - "facing": "west", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 27404, - "properties": { - "facing": "west", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 27405, - "properties": { - "facing": "up", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 27406, - "properties": { - "facing": "up", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 27407, - "properties": { - "facing": "up", - "powered": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 27408, - "properties": { - "facing": "up", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 27409, - "properties": { - "facing": "down", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 27410, - "properties": { - "facing": "down", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 27411, - "properties": { - "facing": "down", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 27412, - "properties": { - "facing": "down", - "powered": "false", - "waterlogged": "false" - } - } - ] - }, "minecraft:weeping_vines": { "definition": { "type": "minecraft:weeping_vines", @@ -298999,157 +282106,157 @@ "states": [ { "default": true, - "id": 20775, + "id": 19634, "properties": { "age": "0" } }, { - "id": 20776, + "id": 19635, "properties": { "age": "1" } }, { - "id": 20777, + "id": 19636, "properties": { "age": "2" } }, { - "id": 20778, + "id": 19637, "properties": { "age": "3" } }, { - "id": 20779, + "id": 19638, "properties": { "age": "4" } }, { - "id": 20780, + "id": 19639, "properties": { "age": "5" } }, { - "id": 20781, + "id": 19640, "properties": { "age": "6" } }, { - "id": 20782, + "id": 19641, "properties": { "age": "7" } }, { - "id": 20783, + "id": 19642, "properties": { "age": "8" } }, { - "id": 20784, + "id": 19643, "properties": { "age": "9" } }, { - "id": 20785, + "id": 19644, "properties": { "age": "10" } }, { - "id": 20786, + "id": 19645, "properties": { "age": "11" } }, { - "id": 20787, + "id": 19646, "properties": { "age": "12" } }, { - "id": 20788, + "id": 19647, "properties": { "age": "13" } }, { - "id": 20789, + "id": 19648, "properties": { "age": "14" } }, { - "id": 20790, + "id": 19649, "properties": { "age": "15" } }, { - "id": 20791, + "id": 19650, "properties": { "age": "16" } }, { - "id": 20792, + "id": 19651, "properties": { "age": "17" } }, { - "id": 20793, + "id": 19652, "properties": { "age": "18" } }, { - "id": 20794, + "id": 19653, "properties": { "age": "19" } }, { - "id": 20795, + "id": 19654, "properties": { "age": "20" } }, { - "id": 20796, + "id": 19655, "properties": { "age": "21" } }, { - "id": 20797, + "id": 19656, "properties": { "age": "22" } }, { - "id": 20798, + "id": 19657, "properties": { "age": "23" } }, { - "id": 20799, + "id": 19658, "properties": { "age": "24" } }, { - "id": 20800, + "id": 19659, "properties": { "age": "25" } @@ -299164,7 +282271,7 @@ "states": [ { "default": true, - "id": 20801 + "id": 19660 } ] }, @@ -299200,49 +282307,49 @@ "states": [ { "default": true, - "id": 5110, + "id": 4342, "properties": { "age": "0" } }, { - "id": 5111, + "id": 4343, "properties": { "age": "1" } }, { - "id": 5112, + "id": 4344, "properties": { "age": "2" } }, { - "id": 5113, + "id": 4345, "properties": { "age": "3" } }, { - "id": 5114, + "id": 4346, "properties": { "age": "4" } }, { - "id": 5115, + "id": 4347, "properties": { "age": "5" } }, { - "id": 5116, + "id": 4348, "properties": { "age": "6" } }, { - "id": 5117, + "id": 4349, "properties": { "age": "7" } @@ -299278,97 +282385,97 @@ "states": [ { "default": true, - "id": 12725, + "id": 11648, "properties": { "rotation": "0" } }, { - "id": 12726, + "id": 11649, "properties": { "rotation": "1" } }, { - "id": 12727, + "id": 11650, "properties": { "rotation": "2" } }, { - "id": 12728, + "id": 11651, "properties": { "rotation": "3" } }, { - "id": 12729, + "id": 11652, "properties": { "rotation": "4" } }, { - "id": 12730, + "id": 11653, "properties": { "rotation": "5" } }, { - "id": 12731, + "id": 11654, "properties": { "rotation": "6" } }, { - "id": 12732, + "id": 11655, "properties": { "rotation": "7" } }, { - "id": 12733, + "id": 11656, "properties": { "rotation": "8" } }, { - "id": 12734, + "id": 11657, "properties": { "rotation": "9" } }, { - "id": 12735, + "id": 11658, "properties": { "rotation": "10" } }, { - "id": 12736, + "id": 11659, "properties": { "rotation": "11" } }, { - "id": 12737, + "id": 11660, "properties": { "rotation": "12" } }, { - "id": 12738, + "id": 11661, "properties": { "rotation": "13" } }, { - "id": 12739, + "id": 11662, "properties": { "rotation": "14" } }, { - "id": 12740, + "id": 11663, "properties": { "rotation": "15" } @@ -299552,7 +282659,7 @@ }, "states": [ { - "id": 22910, + "id": 21769, "properties": { "candles": "1", "lit": "true", @@ -299560,7 +282667,7 @@ } }, { - "id": 22911, + "id": 21770, "properties": { "candles": "1", "lit": "true", @@ -299568,7 +282675,7 @@ } }, { - "id": 22912, + "id": 21771, "properties": { "candles": "1", "lit": "false", @@ -299577,7 +282684,7 @@ }, { "default": true, - "id": 22913, + "id": 21772, "properties": { "candles": "1", "lit": "false", @@ -299585,7 +282692,7 @@ } }, { - "id": 22914, + "id": 21773, "properties": { "candles": "2", "lit": "true", @@ -299593,7 +282700,7 @@ } }, { - "id": 22915, + "id": 21774, "properties": { "candles": "2", "lit": "true", @@ -299601,7 +282708,7 @@ } }, { - "id": 22916, + "id": 21775, "properties": { "candles": "2", "lit": "false", @@ -299609,7 +282716,7 @@ } }, { - "id": 22917, + "id": 21776, "properties": { "candles": "2", "lit": "false", @@ -299617,7 +282724,7 @@ } }, { - "id": 22918, + "id": 21777, "properties": { "candles": "3", "lit": "true", @@ -299625,7 +282732,7 @@ } }, { - "id": 22919, + "id": 21778, "properties": { "candles": "3", "lit": "true", @@ -299633,7 +282740,7 @@ } }, { - "id": 22920, + "id": 21779, "properties": { "candles": "3", "lit": "false", @@ -299641,7 +282748,7 @@ } }, { - "id": 22921, + "id": 21780, "properties": { "candles": "3", "lit": "false", @@ -299649,7 +282756,7 @@ } }, { - "id": 22922, + "id": 21781, "properties": { "candles": "4", "lit": "true", @@ -299657,7 +282764,7 @@ } }, { - "id": 22923, + "id": 21782, "properties": { "candles": "4", "lit": "true", @@ -299665,7 +282772,7 @@ } }, { - "id": 22924, + "id": 21783, "properties": { "candles": "4", "lit": "false", @@ -299673,7 +282780,7 @@ } }, { - "id": 22925, + "id": 21784, "properties": { "candles": "4", "lit": "false", @@ -299696,14 +282803,14 @@ }, "states": [ { - "id": 23168, + "id": 22027, "properties": { "lit": "true" } }, { "default": true, - "id": 23169, + "id": 22028, "properties": { "lit": "false" } @@ -299719,7 +282826,7 @@ "states": [ { "default": true, - "id": 12694 + "id": 11617 } ] }, @@ -299731,7 +282838,7 @@ "states": [ { "default": true, - "id": 14828 + "id": 13751 } ] }, @@ -299744,7 +282851,7 @@ "states": [ { "default": true, - "id": 14844 + "id": 13767 } ] }, @@ -299764,25 +282871,25 @@ "states": [ { "default": true, - "id": 14764, + "id": 13687, "properties": { "facing": "north" } }, { - "id": 14765, + "id": 13688, "properties": { "facing": "south" } }, { - "id": 14766, + "id": 13689, "properties": { "facing": "west" } }, { - "id": 14767, + "id": 13690, "properties": { "facing": "east" } @@ -299807,38 +282914,38 @@ }, "states": [ { - "id": 14668, + "id": 13591, "properties": { "facing": "north" } }, { - "id": 14669, + "id": 13592, "properties": { "facing": "east" } }, { - "id": 14670, + "id": 13593, "properties": { "facing": "south" } }, { - "id": 14671, + "id": 13594, "properties": { "facing": "west" } }, { "default": true, - "id": 14672, + "id": 13595, "properties": { "facing": "up" } }, { - "id": 14673, + "id": 13596, "properties": { "facing": "down" } @@ -299854,7 +282961,7 @@ "states": [ { "default": true, - "id": 6897 + "id": 6124 } ] }, @@ -299888,7 +282995,7 @@ }, "states": [ { - "id": 11258, + "id": 10181, "properties": { "east": "true", "north": "true", @@ -299898,7 +283005,7 @@ } }, { - "id": 11259, + "id": 10182, "properties": { "east": "true", "north": "true", @@ -299908,7 +283015,7 @@ } }, { - "id": 11260, + "id": 10183, "properties": { "east": "true", "north": "true", @@ -299918,7 +283025,7 @@ } }, { - "id": 11261, + "id": 10184, "properties": { "east": "true", "north": "true", @@ -299928,7 +283035,7 @@ } }, { - "id": 11262, + "id": 10185, "properties": { "east": "true", "north": "true", @@ -299938,7 +283045,7 @@ } }, { - "id": 11263, + "id": 10186, "properties": { "east": "true", "north": "true", @@ -299948,7 +283055,7 @@ } }, { - "id": 11264, + "id": 10187, "properties": { "east": "true", "north": "true", @@ -299958,7 +283065,7 @@ } }, { - "id": 11265, + "id": 10188, "properties": { "east": "true", "north": "true", @@ -299968,7 +283075,7 @@ } }, { - "id": 11266, + "id": 10189, "properties": { "east": "true", "north": "false", @@ -299978,7 +283085,7 @@ } }, { - "id": 11267, + "id": 10190, "properties": { "east": "true", "north": "false", @@ -299988,7 +283095,7 @@ } }, { - "id": 11268, + "id": 10191, "properties": { "east": "true", "north": "false", @@ -299998,7 +283105,7 @@ } }, { - "id": 11269, + "id": 10192, "properties": { "east": "true", "north": "false", @@ -300008,7 +283115,7 @@ } }, { - "id": 11270, + "id": 10193, "properties": { "east": "true", "north": "false", @@ -300018,7 +283125,7 @@ } }, { - "id": 11271, + "id": 10194, "properties": { "east": "true", "north": "false", @@ -300028,7 +283135,7 @@ } }, { - "id": 11272, + "id": 10195, "properties": { "east": "true", "north": "false", @@ -300038,7 +283145,7 @@ } }, { - "id": 11273, + "id": 10196, "properties": { "east": "true", "north": "false", @@ -300048,7 +283155,7 @@ } }, { - "id": 11274, + "id": 10197, "properties": { "east": "false", "north": "true", @@ -300058,7 +283165,7 @@ } }, { - "id": 11275, + "id": 10198, "properties": { "east": "false", "north": "true", @@ -300068,7 +283175,7 @@ } }, { - "id": 11276, + "id": 10199, "properties": { "east": "false", "north": "true", @@ -300078,7 +283185,7 @@ } }, { - "id": 11277, + "id": 10200, "properties": { "east": "false", "north": "true", @@ -300088,7 +283195,7 @@ } }, { - "id": 11278, + "id": 10201, "properties": { "east": "false", "north": "true", @@ -300098,7 +283205,7 @@ } }, { - "id": 11279, + "id": 10202, "properties": { "east": "false", "north": "true", @@ -300108,7 +283215,7 @@ } }, { - "id": 11280, + "id": 10203, "properties": { "east": "false", "north": "true", @@ -300118,7 +283225,7 @@ } }, { - "id": 11281, + "id": 10204, "properties": { "east": "false", "north": "true", @@ -300128,7 +283235,7 @@ } }, { - "id": 11282, + "id": 10205, "properties": { "east": "false", "north": "false", @@ -300138,7 +283245,7 @@ } }, { - "id": 11283, + "id": 10206, "properties": { "east": "false", "north": "false", @@ -300148,7 +283255,7 @@ } }, { - "id": 11284, + "id": 10207, "properties": { "east": "false", "north": "false", @@ -300158,7 +283265,7 @@ } }, { - "id": 11285, + "id": 10208, "properties": { "east": "false", "north": "false", @@ -300168,7 +283275,7 @@ } }, { - "id": 11286, + "id": 10209, "properties": { "east": "false", "north": "false", @@ -300178,7 +283285,7 @@ } }, { - "id": 11287, + "id": 10210, "properties": { "east": "false", "north": "false", @@ -300188,7 +283295,7 @@ } }, { - "id": 11288, + "id": 10211, "properties": { "east": "false", "north": "false", @@ -300199,7 +283306,7 @@ }, { "default": true, - "id": 11289, + "id": 10212, "properties": { "east": "false", "north": "false", @@ -300212,13 +283319,13 @@ }, "minecraft:white_terracotta": { "definition": { - "type": "minecraft:block", + "type": "minecraft:terracotta", "properties": {} }, "states": [ { "default": true, - "id": 11242 + "id": 10165 } ] }, @@ -300257,25 +283364,25 @@ "states": [ { "default": true, - "id": 12981, + "id": 11904, "properties": { "facing": "north" } }, { - "id": 12982, + "id": 11905, "properties": { "facing": "south" } }, { - "id": 12983, + "id": 11906, "properties": { "facing": "west" } }, { - "id": 12984, + "id": 11907, "properties": { "facing": "east" } @@ -300316,112 +283423,112 @@ "states": [ { "default": true, - "id": 27628, + "id": 25871, "properties": { "facing": "north", "flower_amount": "1" } }, { - "id": 27629, + "id": 25872, "properties": { "facing": "north", "flower_amount": "2" } }, { - "id": 27630, + "id": 25873, "properties": { "facing": "north", "flower_amount": "3" } }, { - "id": 27631, + "id": 25874, "properties": { "facing": "north", "flower_amount": "4" } }, { - "id": 27632, + "id": 25875, "properties": { "facing": "south", "flower_amount": "1" } }, { - "id": 27633, + "id": 25876, "properties": { "facing": "south", "flower_amount": "2" } }, { - "id": 27634, + "id": 25877, "properties": { "facing": "south", "flower_amount": "3" } }, { - "id": 27635, + "id": 25878, "properties": { "facing": "south", "flower_amount": "4" } }, { - "id": 27636, + "id": 25879, "properties": { "facing": "west", "flower_amount": "1" } }, { - "id": 27637, + "id": 25880, "properties": { "facing": "west", "flower_amount": "2" } }, { - "id": 27638, + "id": 25881, "properties": { "facing": "west", "flower_amount": "3" } }, { - "id": 27639, + "id": 25882, "properties": { "facing": "west", "flower_amount": "4" } }, { - "id": 27640, + "id": 25883, "properties": { "facing": "east", "flower_amount": "1" } }, { - "id": 27641, + "id": 25884, "properties": { "facing": "east", "flower_amount": "2" } }, { - "id": 27642, + "id": 25885, "properties": { "facing": "east", "flower_amount": "3" } }, { - "id": 27643, + "id": 25886, "properties": { "facing": "east", "flower_amount": "4" @@ -300478,112 +283585,112 @@ }, "states": [ { - "id": 10753, + "id": 9676, "properties": { "powered": "true", "rotation": "0" } }, { - "id": 10754, + "id": 9677, "properties": { "powered": "true", "rotation": "1" } }, { - "id": 10755, + "id": 9678, "properties": { "powered": "true", "rotation": "2" } }, { - "id": 10756, + "id": 9679, "properties": { "powered": "true", "rotation": "3" } }, { - "id": 10757, + "id": 9680, "properties": { "powered": "true", "rotation": "4" } }, { - "id": 10758, + "id": 9681, "properties": { "powered": "true", "rotation": "5" } }, { - "id": 10759, + "id": 9682, "properties": { "powered": "true", "rotation": "6" } }, { - "id": 10760, + "id": 9683, "properties": { "powered": "true", "rotation": "7" } }, { - "id": 10761, + "id": 9684, "properties": { "powered": "true", "rotation": "8" } }, { - "id": 10762, + "id": 9685, "properties": { "powered": "true", "rotation": "9" } }, { - "id": 10763, + "id": 9686, "properties": { "powered": "true", "rotation": "10" } }, { - "id": 10764, + "id": 9687, "properties": { "powered": "true", "rotation": "11" } }, { - "id": 10765, + "id": 9688, "properties": { "powered": "true", "rotation": "12" } }, { - "id": 10766, + "id": 9689, "properties": { "powered": "true", "rotation": "13" } }, { - "id": 10767, + "id": 9690, "properties": { "powered": "true", "rotation": "14" } }, { - "id": 10768, + "id": 9691, "properties": { "powered": "true", "rotation": "15" @@ -300591,112 +283698,112 @@ }, { "default": true, - "id": 10769, + "id": 9692, "properties": { "powered": "false", "rotation": "0" } }, { - "id": 10770, + "id": 9693, "properties": { "powered": "false", "rotation": "1" } }, { - "id": 10771, + "id": 9694, "properties": { "powered": "false", "rotation": "2" } }, { - "id": 10772, + "id": 9695, "properties": { "powered": "false", "rotation": "3" } }, { - "id": 10773, + "id": 9696, "properties": { "powered": "false", "rotation": "4" } }, { - "id": 10774, + "id": 9697, "properties": { "powered": "false", "rotation": "5" } }, { - "id": 10775, + "id": 9698, "properties": { "powered": "false", "rotation": "6" } }, { - "id": 10776, + "id": 9699, "properties": { "powered": "false", "rotation": "7" } }, { - "id": 10777, + "id": 9700, "properties": { "powered": "false", "rotation": "8" } }, { - "id": 10778, + "id": 9701, "properties": { "powered": "false", "rotation": "9" } }, { - "id": 10779, + "id": 9702, "properties": { "powered": "false", "rotation": "10" } }, { - "id": 10780, + "id": 9703, "properties": { "powered": "false", "rotation": "11" } }, { - "id": 10781, + "id": 9704, "properties": { "powered": "false", "rotation": "12" } }, { - "id": 10782, + "id": 9705, "properties": { "powered": "false", "rotation": "13" } }, { - "id": 10783, + "id": 9706, "properties": { "powered": "false", "rotation": "14" } }, { - "id": 10784, + "id": 9707, "properties": { "powered": "false", "rotation": "15" @@ -300723,7 +283830,7 @@ }, "states": [ { - "id": 10785, + "id": 9708, "properties": { "facing": "north", "powered": "true" @@ -300731,49 +283838,49 @@ }, { "default": true, - "id": 10786, + "id": 9709, "properties": { "facing": "north", "powered": "false" } }, { - "id": 10787, + "id": 9710, "properties": { "facing": "south", "powered": "true" } }, { - "id": 10788, + "id": 9711, "properties": { "facing": "south", "powered": "false" } }, { - "id": 10789, + "id": 9712, "properties": { "facing": "west", "powered": "true" } }, { - "id": 10790, + "id": 9713, "properties": { "facing": "west", "powered": "false" } }, { - "id": 10791, + "id": 9714, "properties": { "facing": "east", "powered": "true" } }, { - "id": 10792, + "id": 9715, "properties": { "facing": "east", "powered": "false" @@ -300810,97 +283917,97 @@ "states": [ { "default": true, - "id": 12789, + "id": 11712, "properties": { "rotation": "0" } }, { - "id": 12790, + "id": 11713, "properties": { "rotation": "1" } }, { - "id": 12791, + "id": 11714, "properties": { "rotation": "2" } }, { - "id": 12792, + "id": 11715, "properties": { "rotation": "3" } }, { - "id": 12793, + "id": 11716, "properties": { "rotation": "4" } }, { - "id": 12794, + "id": 11717, "properties": { "rotation": "5" } }, { - "id": 12795, + "id": 11718, "properties": { "rotation": "6" } }, { - "id": 12796, + "id": 11719, "properties": { "rotation": "7" } }, { - "id": 12797, + "id": 11720, "properties": { "rotation": "8" } }, { - "id": 12798, + "id": 11721, "properties": { "rotation": "9" } }, { - "id": 12799, + "id": 11722, "properties": { "rotation": "10" } }, { - "id": 12800, + "id": 11723, "properties": { "rotation": "11" } }, { - "id": 12801, + "id": 11724, "properties": { "rotation": "12" } }, { - "id": 12802, + "id": 11725, "properties": { "rotation": "13" } }, { - "id": 12803, + "id": 11726, "properties": { "rotation": "14" } }, { - "id": 12804, + "id": 11727, "properties": { "rotation": "15" } @@ -301084,7 +284191,7 @@ }, "states": [ { - "id": 22974, + "id": 21833, "properties": { "candles": "1", "lit": "true", @@ -301092,7 +284199,7 @@ } }, { - "id": 22975, + "id": 21834, "properties": { "candles": "1", "lit": "true", @@ -301100,7 +284207,7 @@ } }, { - "id": 22976, + "id": 21835, "properties": { "candles": "1", "lit": "false", @@ -301109,7 +284216,7 @@ }, { "default": true, - "id": 22977, + "id": 21836, "properties": { "candles": "1", "lit": "false", @@ -301117,7 +284224,7 @@ } }, { - "id": 22978, + "id": 21837, "properties": { "candles": "2", "lit": "true", @@ -301125,7 +284232,7 @@ } }, { - "id": 22979, + "id": 21838, "properties": { "candles": "2", "lit": "true", @@ -301133,7 +284240,7 @@ } }, { - "id": 22980, + "id": 21839, "properties": { "candles": "2", "lit": "false", @@ -301141,7 +284248,7 @@ } }, { - "id": 22981, + "id": 21840, "properties": { "candles": "2", "lit": "false", @@ -301149,7 +284256,7 @@ } }, { - "id": 22982, + "id": 21841, "properties": { "candles": "3", "lit": "true", @@ -301157,7 +284264,7 @@ } }, { - "id": 22983, + "id": 21842, "properties": { "candles": "3", "lit": "true", @@ -301165,7 +284272,7 @@ } }, { - "id": 22984, + "id": 21843, "properties": { "candles": "3", "lit": "false", @@ -301173,7 +284280,7 @@ } }, { - "id": 22985, + "id": 21844, "properties": { "candles": "3", "lit": "false", @@ -301181,7 +284288,7 @@ } }, { - "id": 22986, + "id": 21845, "properties": { "candles": "4", "lit": "true", @@ -301189,7 +284296,7 @@ } }, { - "id": 22987, + "id": 21846, "properties": { "candles": "4", "lit": "true", @@ -301197,7 +284304,7 @@ } }, { - "id": 22988, + "id": 21847, "properties": { "candles": "4", "lit": "false", @@ -301205,7 +284312,7 @@ } }, { - "id": 22989, + "id": 21848, "properties": { "candles": "4", "lit": "false", @@ -301228,14 +284335,14 @@ }, "states": [ { - "id": 23176, + "id": 22035, "properties": { "lit": "true" } }, { "default": true, - "id": 23177, + "id": 22036, "properties": { "lit": "false" } @@ -301251,7 +284358,7 @@ "states": [ { "default": true, - "id": 12698 + "id": 11621 } ] }, @@ -301263,7 +284370,7 @@ "states": [ { "default": true, - "id": 14832 + "id": 13755 } ] }, @@ -301276,7 +284383,7 @@ "states": [ { "default": true, - "id": 14848 + "id": 13771 } ] }, @@ -301296,25 +284403,25 @@ "states": [ { "default": true, - "id": 14780, + "id": 13703, "properties": { "facing": "north" } }, { - "id": 14781, + "id": 13704, "properties": { "facing": "south" } }, { - "id": 14782, + "id": 13705, "properties": { "facing": "west" } }, { - "id": 14783, + "id": 13706, "properties": { "facing": "east" } @@ -301339,38 +284446,38 @@ }, "states": [ { - "id": 14692, + "id": 13615, "properties": { "facing": "north" } }, { - "id": 14693, + "id": 13616, "properties": { "facing": "east" } }, { - "id": 14694, + "id": 13617, "properties": { "facing": "south" } }, { - "id": 14695, + "id": 13618, "properties": { "facing": "west" } }, { "default": true, - "id": 14696, + "id": 13619, "properties": { "facing": "up" } }, { - "id": 14697, + "id": 13620, "properties": { "facing": "down" } @@ -301386,7 +284493,7 @@ "states": [ { "default": true, - "id": 6901 + "id": 6128 } ] }, @@ -301420,7 +284527,7 @@ }, "states": [ { - "id": 11386, + "id": 10309, "properties": { "east": "true", "north": "true", @@ -301430,7 +284537,7 @@ } }, { - "id": 11387, + "id": 10310, "properties": { "east": "true", "north": "true", @@ -301440,7 +284547,7 @@ } }, { - "id": 11388, + "id": 10311, "properties": { "east": "true", "north": "true", @@ -301450,7 +284557,7 @@ } }, { - "id": 11389, + "id": 10312, "properties": { "east": "true", "north": "true", @@ -301460,7 +284567,7 @@ } }, { - "id": 11390, + "id": 10313, "properties": { "east": "true", "north": "true", @@ -301470,7 +284577,7 @@ } }, { - "id": 11391, + "id": 10314, "properties": { "east": "true", "north": "true", @@ -301480,7 +284587,7 @@ } }, { - "id": 11392, + "id": 10315, "properties": { "east": "true", "north": "true", @@ -301490,7 +284597,7 @@ } }, { - "id": 11393, + "id": 10316, "properties": { "east": "true", "north": "true", @@ -301500,7 +284607,7 @@ } }, { - "id": 11394, + "id": 10317, "properties": { "east": "true", "north": "false", @@ -301510,7 +284617,7 @@ } }, { - "id": 11395, + "id": 10318, "properties": { "east": "true", "north": "false", @@ -301520,7 +284627,7 @@ } }, { - "id": 11396, + "id": 10319, "properties": { "east": "true", "north": "false", @@ -301530,7 +284637,7 @@ } }, { - "id": 11397, + "id": 10320, "properties": { "east": "true", "north": "false", @@ -301540,7 +284647,7 @@ } }, { - "id": 11398, + "id": 10321, "properties": { "east": "true", "north": "false", @@ -301550,7 +284657,7 @@ } }, { - "id": 11399, + "id": 10322, "properties": { "east": "true", "north": "false", @@ -301560,7 +284667,7 @@ } }, { - "id": 11400, + "id": 10323, "properties": { "east": "true", "north": "false", @@ -301570,7 +284677,7 @@ } }, { - "id": 11401, + "id": 10324, "properties": { "east": "true", "north": "false", @@ -301580,7 +284687,7 @@ } }, { - "id": 11402, + "id": 10325, "properties": { "east": "false", "north": "true", @@ -301590,7 +284697,7 @@ } }, { - "id": 11403, + "id": 10326, "properties": { "east": "false", "north": "true", @@ -301600,7 +284707,7 @@ } }, { - "id": 11404, + "id": 10327, "properties": { "east": "false", "north": "true", @@ -301610,7 +284717,7 @@ } }, { - "id": 11405, + "id": 10328, "properties": { "east": "false", "north": "true", @@ -301620,7 +284727,7 @@ } }, { - "id": 11406, + "id": 10329, "properties": { "east": "false", "north": "true", @@ -301630,7 +284737,7 @@ } }, { - "id": 11407, + "id": 10330, "properties": { "east": "false", "north": "true", @@ -301640,7 +284747,7 @@ } }, { - "id": 11408, + "id": 10331, "properties": { "east": "false", "north": "true", @@ -301650,7 +284757,7 @@ } }, { - "id": 11409, + "id": 10332, "properties": { "east": "false", "north": "true", @@ -301660,7 +284767,7 @@ } }, { - "id": 11410, + "id": 10333, "properties": { "east": "false", "north": "false", @@ -301670,7 +284777,7 @@ } }, { - "id": 11411, + "id": 10334, "properties": { "east": "false", "north": "false", @@ -301680,7 +284787,7 @@ } }, { - "id": 11412, + "id": 10335, "properties": { "east": "false", "north": "false", @@ -301690,7 +284797,7 @@ } }, { - "id": 11413, + "id": 10336, "properties": { "east": "false", "north": "false", @@ -301700,7 +284807,7 @@ } }, { - "id": 11414, + "id": 10337, "properties": { "east": "false", "north": "false", @@ -301710,7 +284817,7 @@ } }, { - "id": 11415, + "id": 10338, "properties": { "east": "false", "north": "false", @@ -301720,7 +284827,7 @@ } }, { - "id": 11416, + "id": 10339, "properties": { "east": "false", "north": "false", @@ -301731,7 +284838,7 @@ }, { "default": true, - "id": 11417, + "id": 10340, "properties": { "east": "false", "north": "false", @@ -301744,13 +284851,13 @@ }, "minecraft:yellow_terracotta": { "definition": { - "type": "minecraft:block", + "type": "minecraft:terracotta", "properties": {} }, "states": [ { "default": true, - "id": 11246 + "id": 10169 } ] }, @@ -301771,25 +284878,25 @@ "states": [ { "default": true, - "id": 12997, + "id": 11920, "properties": { "facing": "north" } }, { - "id": 12998, + "id": 11921, "properties": { "facing": "south" } }, { - "id": 12999, + "id": 11922, "properties": { "facing": "west" } }, { - "id": 13000, + "id": 11923, "properties": { "facing": "east" } @@ -301840,112 +284947,112 @@ }, "states": [ { - "id": 10793, + "id": 9716, "properties": { "powered": "true", "rotation": "0" } }, { - "id": 10794, + "id": 9717, "properties": { "powered": "true", "rotation": "1" } }, { - "id": 10795, + "id": 9718, "properties": { "powered": "true", "rotation": "2" } }, { - "id": 10796, + "id": 9719, "properties": { "powered": "true", "rotation": "3" } }, { - "id": 10797, + "id": 9720, "properties": { "powered": "true", "rotation": "4" } }, { - "id": 10798, + "id": 9721, "properties": { "powered": "true", "rotation": "5" } }, { - "id": 10799, + "id": 9722, "properties": { "powered": "true", "rotation": "6" } }, { - "id": 10800, + "id": 9723, "properties": { "powered": "true", "rotation": "7" } }, { - "id": 10801, + "id": 9724, "properties": { "powered": "true", "rotation": "8" } }, { - "id": 10802, + "id": 9725, "properties": { "powered": "true", "rotation": "9" } }, { - "id": 10803, + "id": 9726, "properties": { "powered": "true", "rotation": "10" } }, { - "id": 10804, + "id": 9727, "properties": { "powered": "true", "rotation": "11" } }, { - "id": 10805, + "id": 9728, "properties": { "powered": "true", "rotation": "12" } }, { - "id": 10806, + "id": 9729, "properties": { "powered": "true", "rotation": "13" } }, { - "id": 10807, + "id": 9730, "properties": { "powered": "true", "rotation": "14" } }, { - "id": 10808, + "id": 9731, "properties": { "powered": "true", "rotation": "15" @@ -301953,112 +285060,112 @@ }, { "default": true, - "id": 10809, + "id": 9732, "properties": { "powered": "false", "rotation": "0" } }, { - "id": 10810, + "id": 9733, "properties": { "powered": "false", "rotation": "1" } }, { - "id": 10811, + "id": 9734, "properties": { "powered": "false", "rotation": "2" } }, { - "id": 10812, + "id": 9735, "properties": { "powered": "false", "rotation": "3" } }, { - "id": 10813, + "id": 9736, "properties": { "powered": "false", "rotation": "4" } }, { - "id": 10814, + "id": 9737, "properties": { "powered": "false", "rotation": "5" } }, { - "id": 10815, + "id": 9738, "properties": { "powered": "false", "rotation": "6" } }, { - "id": 10816, + "id": 9739, "properties": { "powered": "false", "rotation": "7" } }, { - "id": 10817, + "id": 9740, "properties": { "powered": "false", "rotation": "8" } }, { - "id": 10818, + "id": 9741, "properties": { "powered": "false", "rotation": "9" } }, { - "id": 10819, + "id": 9742, "properties": { "powered": "false", "rotation": "10" } }, { - "id": 10820, + "id": 9743, "properties": { "powered": "false", "rotation": "11" } }, { - "id": 10821, + "id": 9744, "properties": { "powered": "false", "rotation": "12" } }, { - "id": 10822, + "id": 9745, "properties": { "powered": "false", "rotation": "13" } }, { - "id": 10823, + "id": 9746, "properties": { "powered": "false", "rotation": "14" } }, { - "id": 10824, + "id": 9747, "properties": { "powered": "false", "rotation": "15" @@ -302086,7 +285193,7 @@ }, "states": [ { - "id": 10825, + "id": 9748, "properties": { "facing": "north", "powered": "true" @@ -302094,49 +285201,49 @@ }, { "default": true, - "id": 10826, + "id": 9749, "properties": { "facing": "north", "powered": "false" } }, { - "id": 10827, + "id": 9750, "properties": { "facing": "south", "powered": "true" } }, { - "id": 10828, + "id": 9751, "properties": { "facing": "south", "powered": "false" } }, { - "id": 10829, + "id": 9752, "properties": { "facing": "west", "powered": "true" } }, { - "id": 10830, + "id": 9753, "properties": { "facing": "west", "powered": "false" } }, { - "id": 10831, + "id": 9754, "properties": { "facing": "east", "powered": "true" } }, { - "id": 10832, + "id": 9755, "properties": { "facing": "east", "powered": "false" From d5619a8cd4ee3302845a7e26e8dc95b47d3a9c76 Mon Sep 17 00:00:00 2001 From: Christian Bergschneider Date: Sun, 7 Dec 2025 23:04:38 +0100 Subject: [PATCH 07/11] feat: initial environment manager ui --- .../com/dfsek/terra/codetool/TerraIcons.kt | 1 + .../terra/codetool/docs/AddonDocsParser.kt | 5 +- .../dfsek/terra/codetool/envman/AddonList.kt | 35 +++++++++++++ .../codetool/envman/AddonListEmptyState.kt | 20 ++++++++ .../codetool/envman/EnvironmentConfigPanel.kt | 51 +++++++++++++++++++ .../EnvironmentManagerToolWindowFactory.kt | 15 ++++++ src/main/resources/META-INF/plugin.xml | 8 +++ .../resources/icons/environment_manager.svg | 11 ++++ .../icons/environment_manager_dark.svg | 11 ++++ src/main/resources/icons/random_yaml.svg | 5 ++ src/main/resources/icons/random_yaml_dark.svg | 5 ++ terraDocs | 2 +- testProject | 2 +- 13 files changed, 167 insertions(+), 4 deletions(-) create mode 100644 src/main/kotlin/com/dfsek/terra/codetool/envman/AddonList.kt create mode 100644 src/main/kotlin/com/dfsek/terra/codetool/envman/AddonListEmptyState.kt create mode 100644 src/main/kotlin/com/dfsek/terra/codetool/envman/EnvironmentConfigPanel.kt create mode 100644 src/main/kotlin/com/dfsek/terra/codetool/envman/EnvironmentManagerToolWindowFactory.kt create mode 100644 src/main/resources/icons/environment_manager.svg create mode 100644 src/main/resources/icons/environment_manager_dark.svg create mode 100644 src/main/resources/icons/random_yaml.svg create mode 100644 src/main/resources/icons/random_yaml_dark.svg diff --git a/src/main/kotlin/com/dfsek/terra/codetool/TerraIcons.kt b/src/main/kotlin/com/dfsek/terra/codetool/TerraIcons.kt index c5c333d..ab65a48 100644 --- a/src/main/kotlin/com/dfsek/terra/codetool/TerraIcons.kt +++ b/src/main/kotlin/com/dfsek/terra/codetool/TerraIcons.kt @@ -11,4 +11,5 @@ object TerraIcons { @JvmField val ScatteredOreFile = IconLoader.getIcon("/icons/scattered_ore.svg", TerraIcons::class.java) @JvmField val PaletteFile = IconLoader.getIcon("/icons/palette.svg", TerraIcons::class.java) @JvmField val TerraSimple = IconLoader.getIcon("/icons/terra_simple.svg", TerraIcons::class.java) + @JvmField val EnvironmentManager = IconLoader.getIcon("/icons/environment_manager.svg", TerraIcons::class.java) } \ No newline at end of file diff --git a/src/main/kotlin/com/dfsek/terra/codetool/docs/AddonDocsParser.kt b/src/main/kotlin/com/dfsek/terra/codetool/docs/AddonDocsParser.kt index 56a5224..bb5fab8 100644 --- a/src/main/kotlin/com/dfsek/terra/codetool/docs/AddonDocsParser.kt +++ b/src/main/kotlin/com/dfsek/terra/codetool/docs/AddonDocsParser.kt @@ -16,6 +16,7 @@ import kotlinx.serialization.json.JsonPrimitive import org.jetbrains.yaml.YAMLFileType import org.jetbrains.yaml.psi.YAMLFile import java.util.concurrent.ConcurrentHashMap +import kotlinx.serialization.decodeFromString class AddonDocsParser(private val project: Project) { private val cache = ConcurrentHashMap() @@ -293,7 +294,7 @@ class AddonDocsParser(private val project: Project) { */ fun findObjectDefinition(objectName: String): ObjectDefinition? { val allDocs = if (cache.isEmpty()) parseAllAddonDocs() else cache - return allDocs.values.mapNotNull { it.objects[objectName] }.firstOrNull() + return allDocs.values.firstNotNullOfOrNull { it.objects[objectName] } } /** @@ -301,7 +302,7 @@ class AddonDocsParser(private val project: Project) { */ fun findTemplateDefinition(category: String, templateName: String): TemplateDefinition? { val allDocs = if (cache.isEmpty()) parseAllAddonDocs() else cache - return allDocs.values.mapNotNull { it.templates[category]?.get(templateName) }.firstOrNull() + return allDocs.values.firstNotNullOfOrNull { it.templates[category]?.get(templateName) } } /** diff --git a/src/main/kotlin/com/dfsek/terra/codetool/envman/AddonList.kt b/src/main/kotlin/com/dfsek/terra/codetool/envman/AddonList.kt new file mode 100644 index 0000000..7ed089e --- /dev/null +++ b/src/main/kotlin/com/dfsek/terra/codetool/envman/AddonList.kt @@ -0,0 +1,35 @@ +package com.dfsek.terra.codetool.envman + +import com.intellij.ui.JBColor +import com.intellij.ui.components.JBLabel +import com.intellij.ui.components.JBScrollPane +import com.intellij.ui.table.JBTable +import com.intellij.util.ui.JBUI +import java.awt.BorderLayout +import javax.swing.JPanel +import javax.swing.table.DefaultTableModel + +class AddonList : JPanel(BorderLayout()) { + private val terraVersionHeader = JBLabel("Terra version: Unknown").apply { + font = JBUI.Fonts.label().asBold() + border = JBUI.Borders.empty(10, 5) + } + + private val addonTable = JBTable(DefaultTableModel(arrayOf("Addon", "Version"), 0)).apply { + border = JBUI.Borders.empty() + } + + init { + border = JBUI.Borders.emptyLeft(1) + + val headerContainer = JPanel(BorderLayout()) + headerContainer.add(terraVersionHeader, BorderLayout.WEST) + + headerContainer.border = JBUI.Borders.customLine(JBColor.border(), 0, 0, 1, 0) + + add(headerContainer, BorderLayout.NORTH) + add(JBScrollPane(addonTable).apply { + border = JBUI.Borders.empty() + }, BorderLayout.CENTER) + } +} \ No newline at end of file diff --git a/src/main/kotlin/com/dfsek/terra/codetool/envman/AddonListEmptyState.kt b/src/main/kotlin/com/dfsek/terra/codetool/envman/AddonListEmptyState.kt new file mode 100644 index 0000000..6bd2a1e --- /dev/null +++ b/src/main/kotlin/com/dfsek/terra/codetool/envman/AddonListEmptyState.kt @@ -0,0 +1,20 @@ +package com.dfsek.terra.codetool.envman + +import com.intellij.ui.components.JBLabel +import com.intellij.util.ui.JBUI +import com.intellij.util.ui.SingleComponentCenteringLayout +import com.intellij.util.ui.UIUtil +import javax.swing.JPanel +import javax.swing.SwingConstants + +class AddonListEmptyState : JPanel(SingleComponentCenteringLayout()) { + init { + border = JBUI.Borders.emptyLeft(1) + + add(JBLabel("Select an environment to view addons").apply { + foreground = UIUtil.getContextHelpForeground() + horizontalAlignment = SwingConstants.CENTER + verticalAlignment = SwingConstants.CENTER + }) + } +} \ No newline at end of file diff --git a/src/main/kotlin/com/dfsek/terra/codetool/envman/EnvironmentConfigPanel.kt b/src/main/kotlin/com/dfsek/terra/codetool/envman/EnvironmentConfigPanel.kt new file mode 100644 index 0000000..d5b26db --- /dev/null +++ b/src/main/kotlin/com/dfsek/terra/codetool/envman/EnvironmentConfigPanel.kt @@ -0,0 +1,51 @@ +package com.dfsek.terra.codetool.envman + +import com.intellij.icons.AllIcons +import com.intellij.openapi.actionSystem.ActionManager +import com.intellij.openapi.actionSystem.AnAction +import com.intellij.openapi.actionSystem.AnActionEvent +import com.intellij.openapi.actionSystem.DefaultActionGroup +import com.intellij.openapi.project.Project +import com.intellij.ui.JBColor +import com.intellij.ui.OnePixelSplitter +import com.intellij.ui.components.JBList +import com.intellij.ui.components.JBScrollPane +import com.intellij.util.ui.JBUI +import java.awt.BorderLayout +import javax.swing.DefaultListModel +import javax.swing.JPanel + +class EnvironmentConfigPanel(private val project: Project) : JPanel(BorderLayout()) { + private val environmentList = JBList(DefaultListModel()).apply { + emptyText.text = "No environments" + border = JBUI.Borders.empty() + } + + init { + val splitter = OnePixelSplitter(false, 0.25f) + + val leftPanel = JPanel(BorderLayout()) + leftPanel.add(JBScrollPane(environmentList).apply { + border = JBUI.Borders.empty() + }, BorderLayout.CENTER) + splitter.firstComponent = leftPanel + + val actionGroup = DefaultActionGroup().apply { + add(object : AnAction("Add Environment", null, AllIcons.General.Add) { + override fun actionPerformed(e: AnActionEvent) { /* Path selector logic */ } + }) + add(object : AnAction("Remove Environment", null, AllIcons.General.Remove) { + override fun actionPerformed(e: AnActionEvent) { /* Remove logic */ } + }) + } + val toolbar = ActionManager.getInstance().createActionToolbar("TerraEnvToolbar", actionGroup, true) + toolbar.targetComponent = leftPanel + toolbar.component.border = JBUI.Borders.customLineBottom(JBColor.border()) + leftPanel.add(toolbar.component, BorderLayout.NORTH) + + splitter.secondComponent = AddonListEmptyState() + + add(splitter, BorderLayout.CENTER) + border = JBUI.Borders.empty() + } +} \ No newline at end of file diff --git a/src/main/kotlin/com/dfsek/terra/codetool/envman/EnvironmentManagerToolWindowFactory.kt b/src/main/kotlin/com/dfsek/terra/codetool/envman/EnvironmentManagerToolWindowFactory.kt new file mode 100644 index 0000000..61d264f --- /dev/null +++ b/src/main/kotlin/com/dfsek/terra/codetool/envman/EnvironmentManagerToolWindowFactory.kt @@ -0,0 +1,15 @@ +package com.dfsek.terra.codetool.envman + +import com.intellij.openapi.project.Project +import com.intellij.openapi.wm.ToolWindow +import com.intellij.openapi.wm.ToolWindowFactory +import com.intellij.ui.content.ContentFactory + +class EnvironmentManagerToolWindowFactory : ToolWindowFactory { + override fun createToolWindowContent(project: Project, toolWindow: ToolWindow) { + val content = EnvironmentConfigPanel(project) + val factory = ContentFactory.getInstance() + val toolWindowContent = factory.createContent(content, "", false) + toolWindow.contentManager.addContent(toolWindowContent) + } +} \ No newline at end of file diff --git a/src/main/resources/META-INF/plugin.xml b/src/main/resources/META-INF/plugin.xml index 6914aac..12eaf43 100644 --- a/src/main/resources/META-INF/plugin.xml +++ b/src/main/resources/META-INF/plugin.xml @@ -67,6 +67,14 @@ Introduce Minecraft 1.21.9 support and fix a few bugs + + + + + + \ No newline at end of file diff --git a/src/main/resources/icons/environment_manager_dark.svg b/src/main/resources/icons/environment_manager_dark.svg new file mode 100644 index 0000000..218788f --- /dev/null +++ b/src/main/resources/icons/environment_manager_dark.svg @@ -0,0 +1,11 @@ + + + + + diff --git a/src/main/resources/icons/random_yaml.svg b/src/main/resources/icons/random_yaml.svg new file mode 100644 index 0000000..8bffda4 --- /dev/null +++ b/src/main/resources/icons/random_yaml.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/icons/random_yaml_dark.svg b/src/main/resources/icons/random_yaml_dark.svg new file mode 100644 index 0000000..31e1126 --- /dev/null +++ b/src/main/resources/icons/random_yaml_dark.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/terraDocs b/terraDocs index 92e935d..2b34f66 160000 --- a/terraDocs +++ b/terraDocs @@ -1 +1 @@ -Subproject commit 92e935d2203906bde6619c40e603012c4475bc48 +Subproject commit 2b34f66aca86608152d9a6513644d9f35a3e4d13 diff --git a/testProject b/testProject index 9e99010..fd62866 160000 --- a/testProject +++ b/testProject @@ -1 +1 @@ -Subproject commit 9e99010613434d6a8cb6bcb2f70933d40d097f72 +Subproject commit fd628664e332d944f891691b5aa210dc14fb6c2b From 554c20aebc895c4fa067787c0651e2dc5323b0d2 Mon Sep 17 00:00:00 2001 From: Christian Bergschneider Date: Mon, 8 Dec 2025 01:04:27 +0100 Subject: [PATCH 08/11] feat: environment manager create ui --- .../service/EnvironmentCreationService.kt | 21 +++ .../service/TerraEnvironmentChangeListener.kt | 11 ++ .../envman/service/TerraEnvironmentService.kt | 35 +++++ .../envman/service/TerraEnvironmentState.kt | 11 ++ .../envman/service/VersionDetectionService.kt | 40 ++++++ .../download/JenkinsVersionExplorer.kt | 66 +++++++++ .../download/ModrinthVersionExplorer.kt | 49 +++++++ .../envman/service/download/TerraVersion.kt | 3 + .../service/download/TerraVersionExplorer.kt | 5 + .../envman/task/IndexEnvironmentTask.kt | 36 +++++ .../codetool/envman/{ => ui}/AddonList.kt | 2 +- .../envman/{ => ui}/AddonListEmptyState.kt | 2 +- .../envman/{ => ui}/EnvironmentConfigPanel.kt | 12 +- .../EnvironmentManagerToolWindowFactory.kt | 2 +- .../envman/ui/EnvironmentServiceController.kt | 28 ++++ .../envman/ui/create/AddEnvironmentDialog.kt | 134 ++++++++++++++++++ .../codetool/envman/ui/create/LocalPanel.kt | 110 ++++++++++++++ .../codetool/envman/ui/create/RemotePanel.kt | 99 +++++++++++++ .../envman/ui/create/RemotePanelEmptyState.kt | 20 +++ src/main/resources/META-INF/plugin.xml | 8 +- 20 files changed, 682 insertions(+), 12 deletions(-) create mode 100644 src/main/kotlin/com/dfsek/terra/codetool/envman/service/EnvironmentCreationService.kt create mode 100644 src/main/kotlin/com/dfsek/terra/codetool/envman/service/TerraEnvironmentChangeListener.kt create mode 100644 src/main/kotlin/com/dfsek/terra/codetool/envman/service/TerraEnvironmentService.kt create mode 100644 src/main/kotlin/com/dfsek/terra/codetool/envman/service/TerraEnvironmentState.kt create mode 100644 src/main/kotlin/com/dfsek/terra/codetool/envman/service/VersionDetectionService.kt create mode 100644 src/main/kotlin/com/dfsek/terra/codetool/envman/service/download/JenkinsVersionExplorer.kt create mode 100644 src/main/kotlin/com/dfsek/terra/codetool/envman/service/download/ModrinthVersionExplorer.kt create mode 100644 src/main/kotlin/com/dfsek/terra/codetool/envman/service/download/TerraVersion.kt create mode 100644 src/main/kotlin/com/dfsek/terra/codetool/envman/service/download/TerraVersionExplorer.kt create mode 100644 src/main/kotlin/com/dfsek/terra/codetool/envman/task/IndexEnvironmentTask.kt rename src/main/kotlin/com/dfsek/terra/codetool/envman/{ => ui}/AddonList.kt (96%) rename src/main/kotlin/com/dfsek/terra/codetool/envman/{ => ui}/AddonListEmptyState.kt (93%) rename src/main/kotlin/com/dfsek/terra/codetool/envman/{ => ui}/EnvironmentConfigPanel.kt (81%) rename src/main/kotlin/com/dfsek/terra/codetool/envman/{ => ui}/EnvironmentManagerToolWindowFactory.kt (93%) create mode 100644 src/main/kotlin/com/dfsek/terra/codetool/envman/ui/EnvironmentServiceController.kt create mode 100644 src/main/kotlin/com/dfsek/terra/codetool/envman/ui/create/AddEnvironmentDialog.kt create mode 100644 src/main/kotlin/com/dfsek/terra/codetool/envman/ui/create/LocalPanel.kt create mode 100644 src/main/kotlin/com/dfsek/terra/codetool/envman/ui/create/RemotePanel.kt create mode 100644 src/main/kotlin/com/dfsek/terra/codetool/envman/ui/create/RemotePanelEmptyState.kt diff --git a/src/main/kotlin/com/dfsek/terra/codetool/envman/service/EnvironmentCreationService.kt b/src/main/kotlin/com/dfsek/terra/codetool/envman/service/EnvironmentCreationService.kt new file mode 100644 index 0000000..51ebed3 --- /dev/null +++ b/src/main/kotlin/com/dfsek/terra/codetool/envman/service/EnvironmentCreationService.kt @@ -0,0 +1,21 @@ +package com.dfsek.terra.codetool.envman.service + +import com.intellij.openapi.components.Service +import com.intellij.openapi.components.service +import com.intellij.openapi.project.Project + +@Service(Service.Level.PROJECT) +class EnvironmentCreationService(val project: Project) { + val environmentService = TerraEnvironmentService.getInstance() + + fun createEnvironment( + name: String, + then: () -> Unit + ) { + + } + + companion object { + fun getInstance(project: Project): EnvironmentCreationService = project.service() + } +} \ No newline at end of file diff --git a/src/main/kotlin/com/dfsek/terra/codetool/envman/service/TerraEnvironmentChangeListener.kt b/src/main/kotlin/com/dfsek/terra/codetool/envman/service/TerraEnvironmentChangeListener.kt new file mode 100644 index 0000000..e330153 --- /dev/null +++ b/src/main/kotlin/com/dfsek/terra/codetool/envman/service/TerraEnvironmentChangeListener.kt @@ -0,0 +1,11 @@ +package com.dfsek.terra.codetool.envman.service + +import com.intellij.util.messages.Topic + +interface TerraEnvironmentChangeListener { + companion object { + val TOPIC = Topic.create("Terra Environment Changed", TerraEnvironmentChangeListener::class.java) + } + + fun environmentChanged() +} \ No newline at end of file diff --git a/src/main/kotlin/com/dfsek/terra/codetool/envman/service/TerraEnvironmentService.kt b/src/main/kotlin/com/dfsek/terra/codetool/envman/service/TerraEnvironmentService.kt new file mode 100644 index 0000000..c71c28b --- /dev/null +++ b/src/main/kotlin/com/dfsek/terra/codetool/envman/service/TerraEnvironmentService.kt @@ -0,0 +1,35 @@ +package com.dfsek.terra.codetool.envman.service + +import com.intellij.openapi.application.PathManager +import com.intellij.openapi.components.PersistentStateComponent +import com.intellij.openapi.components.Service +import com.intellij.openapi.components.State +import com.intellij.openapi.components.Storage +import com.intellij.openapi.components.service +import java.io.File + +@State( + name = "TerraEnvironmentRegistry", + storages = [Storage("terra_environments.xml")] +) +@Service(Service.Level.APP) +class TerraEnvironmentService : PersistentStateComponent { + private val configPath = File(PathManager.getConfigPath() + "/terra-codetool/environments").also { it.mkdirs() } + private var state = TerraEnvironmentState() + + fun getEnvironments() = state.environments + + fun createEnvironment() { + + } + + override fun getState(): TerraEnvironmentState = state + + override fun loadState(state: TerraEnvironmentState) { + this.state = state + } + + companion object { + fun getInstance(): TerraEnvironmentService = service() + } +} \ No newline at end of file diff --git a/src/main/kotlin/com/dfsek/terra/codetool/envman/service/TerraEnvironmentState.kt b/src/main/kotlin/com/dfsek/terra/codetool/envman/service/TerraEnvironmentState.kt new file mode 100644 index 0000000..c452e43 --- /dev/null +++ b/src/main/kotlin/com/dfsek/terra/codetool/envman/service/TerraEnvironmentState.kt @@ -0,0 +1,11 @@ +package com.dfsek.terra.codetool.envman.service + +data class TerraEnvironment( + var name: String, + var path: String, + var terraVersion: String +) + +data class TerraEnvironmentState( + var environments: MutableList = mutableListOf() +) diff --git a/src/main/kotlin/com/dfsek/terra/codetool/envman/service/VersionDetectionService.kt b/src/main/kotlin/com/dfsek/terra/codetool/envman/service/VersionDetectionService.kt new file mode 100644 index 0000000..b38ecf0 --- /dev/null +++ b/src/main/kotlin/com/dfsek/terra/codetool/envman/service/VersionDetectionService.kt @@ -0,0 +1,40 @@ +package com.dfsek.terra.codetool.envman.service + +import com.intellij.openapi.components.Service +import com.intellij.openapi.components.service +import java.io.File +import java.util.zip.ZipFile +import kotlinx.serialization.Serializable +import kotlinx.serialization.json.Json + +@Service(Service.Level.APP) +class VersionDetectionService { + val json = Json { + ignoreUnknownKeys = true + } + + private fun getModJson(file: File): String? { + return try { + ZipFile(file).use { zip -> + val entry = zip.getEntry("fabric.mod.json") ?: return null + zip.getInputStream(entry).use { it.readBytes().toString(Charsets.UTF_8) } + } + } catch (_: Exception) { + null + } + } + + fun detectVersion(file: File): String? { + val modJson = getModJson(file) ?: return null + val loaded = json.decodeFromString(modJson) + if (loaded.id != "terra") return null + return loaded.version + } + + @Serializable + data class ModJson(val id: String, val version: String) + + companion object { + fun getInstance() = service() + } +} \ No newline at end of file diff --git a/src/main/kotlin/com/dfsek/terra/codetool/envman/service/download/JenkinsVersionExplorer.kt b/src/main/kotlin/com/dfsek/terra/codetool/envman/service/download/JenkinsVersionExplorer.kt new file mode 100644 index 0000000..34f02b8 --- /dev/null +++ b/src/main/kotlin/com/dfsek/terra/codetool/envman/service/download/JenkinsVersionExplorer.kt @@ -0,0 +1,66 @@ +package com.dfsek.terra.codetool.envman.service.download + +import com.intellij.openapi.components.Service +import com.intellij.openapi.components.service +import io.ktor.client.* +import io.ktor.client.call.* +import io.ktor.client.request.* +import kotlinx.serialization.Serializable +import kotlinx.serialization.json.Json + +@Service(Service.Level.APP) +class JenkinsVersionExplorer : TerraVersionExplorer { + private val httpClient = HttpClient() + private val baseUrl = "https://ci.codemc.io/job/PolyhedralDev/job/Terra/" + private val apiUrl = "$baseUrl/api/json?tree=builds[number,timestamp,result,artifacts[fileName,relativePath]]" + + private val json = Json { ignoreUnknownKeys = true } + + @Serializable + data class JenkinsArtifact( + val fileName: String, + val relativePath: String + ) + + @Serializable + data class JenkinsBuild( + val number: Int, + val timestamp: Long, + val result: String?, + val artifacts: List + ) + + @Serializable + data class JenkinsJobResponse( + val builds: List + ) + + override suspend fun getVersions(): List = try { + val response: JenkinsJobResponse = httpClient.get(apiUrl) + .let { json.decodeFromString(it.body()) } + + response.builds + .filter { it.result == "SUCCESS" } + .sortedByDescending { it.timestamp } + .mapNotNull { build -> + val artifact = build.artifacts.firstOrNull { + it.fileName.contains("fabric") + } ?: return@mapNotNull null + + val guessedVersion = artifact.fileName.substringAfterLast("/").removePrefix("Terra-fabric-").removeSuffix(".jar") + + val downloadUrl = "$baseUrl/${build.number}/artifact/${artifact.relativePath}" + TerraVersion( + version = "Build #${build.number} - $guessedVersion", + downloadUrl = downloadUrl + ) + } + } catch (e: Exception) { + println("Failed to fetch Jenkins versions: ${e.message}") + emptyList() + } + + companion object { + fun getInstance(): JenkinsVersionExplorer = service() + } +} \ No newline at end of file diff --git a/src/main/kotlin/com/dfsek/terra/codetool/envman/service/download/ModrinthVersionExplorer.kt b/src/main/kotlin/com/dfsek/terra/codetool/envman/service/download/ModrinthVersionExplorer.kt new file mode 100644 index 0000000..28e07ee --- /dev/null +++ b/src/main/kotlin/com/dfsek/terra/codetool/envman/service/download/ModrinthVersionExplorer.kt @@ -0,0 +1,49 @@ +package com.dfsek.terra.codetool.envman.service.download + +import com.intellij.openapi.components.Service +import com.intellij.openapi.components.service +import io.ktor.client.HttpClient +import io.ktor.client.call.body +import io.ktor.client.request.get +import kotlinx.serialization.SerialName +import kotlinx.serialization.Serializable +import kotlinx.serialization.json.Json + +@Service(Service.Level.APP) +class ModrinthVersionExplorer : TerraVersionExplorer { + val httpClient = HttpClient() + private val url = "https://api.modrinth.com/v2/project/terra/version?loaders=[%22fabric%22]" + val json = Json { + ignoreUnknownKeys = true + } + + @Serializable + data class ModrinthVersionFile( + val url: String, + val primary: Boolean + ) + + @Serializable + data class ModrinthVersion( + @SerialName("version_number") val versionNumber: String, + @SerialName("date_published") val datePublished: String, + val changelog: String, + val files: List + ) + + override suspend fun getVersions(): List = try { + httpClient.get(url) + .let { json.decodeFromString>(it.body()) } + .sortedByDescending { it.datePublished } + .mapNotNull { version -> + val file = version.files.firstOrNull { it.primary } ?: return@mapNotNull null + TerraVersion(version.versionNumber, file.url) + } + } catch (_: Exception) { + emptyList() + } + + companion object { + fun getInstance(): ModrinthVersionExplorer = service() + } +} \ No newline at end of file diff --git a/src/main/kotlin/com/dfsek/terra/codetool/envman/service/download/TerraVersion.kt b/src/main/kotlin/com/dfsek/terra/codetool/envman/service/download/TerraVersion.kt new file mode 100644 index 0000000..ced1eb6 --- /dev/null +++ b/src/main/kotlin/com/dfsek/terra/codetool/envman/service/download/TerraVersion.kt @@ -0,0 +1,3 @@ +package com.dfsek.terra.codetool.envman.service.download + +data class TerraVersion(val version: String, val downloadUrl: String) diff --git a/src/main/kotlin/com/dfsek/terra/codetool/envman/service/download/TerraVersionExplorer.kt b/src/main/kotlin/com/dfsek/terra/codetool/envman/service/download/TerraVersionExplorer.kt new file mode 100644 index 0000000..55a0606 --- /dev/null +++ b/src/main/kotlin/com/dfsek/terra/codetool/envman/service/download/TerraVersionExplorer.kt @@ -0,0 +1,5 @@ +package com.dfsek.terra.codetool.envman.service.download + +interface TerraVersionExplorer { + suspend fun getVersions(): List +} \ No newline at end of file diff --git a/src/main/kotlin/com/dfsek/terra/codetool/envman/task/IndexEnvironmentTask.kt b/src/main/kotlin/com/dfsek/terra/codetool/envman/task/IndexEnvironmentTask.kt new file mode 100644 index 0000000..70f43de --- /dev/null +++ b/src/main/kotlin/com/dfsek/terra/codetool/envman/task/IndexEnvironmentTask.kt @@ -0,0 +1,36 @@ +package com.dfsek.terra.codetool.envman.task + +import com.dfsek.terra.codetool.envman.service.TerraEnvironment +import com.dfsek.terra.codetool.envman.service.TerraEnvironmentService +import com.intellij.openapi.application.ApplicationManager +import com.intellij.openapi.progress.ProgressIndicator +import com.intellij.openapi.progress.Task +import com.intellij.openapi.project.Project + +class IndexEnvironmentTask( + project: Project, + val onCompleted: () -> Unit +) : Task.Backgroundable(project, "Indexing environments...", true) { + val envService = TerraEnvironmentService.Companion.getInstance() + + override fun run(indicator: ProgressIndicator) { + val environments = envService.getEnvironments() + + for ((i, environment) in environments.withIndex()) { + indicator.checkCanceled() + + indicator.text = "Indexing environment ${environment.name}" + indicator.fraction = i / environments.size.toDouble() + + performIndexing(environment) + } + + ApplicationManager.getApplication().invokeLater { + onCompleted() + } + } + + fun performIndexing(environment: TerraEnvironment) { + // TODO + } +} \ No newline at end of file diff --git a/src/main/kotlin/com/dfsek/terra/codetool/envman/AddonList.kt b/src/main/kotlin/com/dfsek/terra/codetool/envman/ui/AddonList.kt similarity index 96% rename from src/main/kotlin/com/dfsek/terra/codetool/envman/AddonList.kt rename to src/main/kotlin/com/dfsek/terra/codetool/envman/ui/AddonList.kt index 7ed089e..e904b4d 100644 --- a/src/main/kotlin/com/dfsek/terra/codetool/envman/AddonList.kt +++ b/src/main/kotlin/com/dfsek/terra/codetool/envman/ui/AddonList.kt @@ -1,4 +1,4 @@ -package com.dfsek.terra.codetool.envman +package com.dfsek.terra.codetool.envman.ui import com.intellij.ui.JBColor import com.intellij.ui.components.JBLabel diff --git a/src/main/kotlin/com/dfsek/terra/codetool/envman/AddonListEmptyState.kt b/src/main/kotlin/com/dfsek/terra/codetool/envman/ui/AddonListEmptyState.kt similarity index 93% rename from src/main/kotlin/com/dfsek/terra/codetool/envman/AddonListEmptyState.kt rename to src/main/kotlin/com/dfsek/terra/codetool/envman/ui/AddonListEmptyState.kt index 6bd2a1e..ac07171 100644 --- a/src/main/kotlin/com/dfsek/terra/codetool/envman/AddonListEmptyState.kt +++ b/src/main/kotlin/com/dfsek/terra/codetool/envman/ui/AddonListEmptyState.kt @@ -1,4 +1,4 @@ -package com.dfsek.terra.codetool.envman +package com.dfsek.terra.codetool.envman.ui import com.intellij.ui.components.JBLabel import com.intellij.util.ui.JBUI diff --git a/src/main/kotlin/com/dfsek/terra/codetool/envman/EnvironmentConfigPanel.kt b/src/main/kotlin/com/dfsek/terra/codetool/envman/ui/EnvironmentConfigPanel.kt similarity index 81% rename from src/main/kotlin/com/dfsek/terra/codetool/envman/EnvironmentConfigPanel.kt rename to src/main/kotlin/com/dfsek/terra/codetool/envman/ui/EnvironmentConfigPanel.kt index d5b26db..9ac8982 100644 --- a/src/main/kotlin/com/dfsek/terra/codetool/envman/EnvironmentConfigPanel.kt +++ b/src/main/kotlin/com/dfsek/terra/codetool/envman/ui/EnvironmentConfigPanel.kt @@ -1,5 +1,6 @@ -package com.dfsek.terra.codetool.envman +package com.dfsek.terra.codetool.envman.ui +import com.dfsek.terra.codetool.envman.ui.create.AddEnvironmentDialog import com.intellij.icons.AllIcons import com.intellij.openapi.actionSystem.ActionManager import com.intellij.openapi.actionSystem.AnAction @@ -16,6 +17,7 @@ import javax.swing.DefaultListModel import javax.swing.JPanel class EnvironmentConfigPanel(private val project: Project) : JPanel(BorderLayout()) { + private val serviceController = EnvironmentServiceController(project) private val environmentList = JBList(DefaultListModel()).apply { emptyText.text = "No environments" border = JBUI.Borders.empty() @@ -32,7 +34,13 @@ class EnvironmentConfigPanel(private val project: Project) : JPanel(BorderLayout val actionGroup = DefaultActionGroup().apply { add(object : AnAction("Add Environment", null, AllIcons.General.Add) { - override fun actionPerformed(e: AnActionEvent) { /* Path selector logic */ } + override fun actionPerformed(e: AnActionEvent) { + val project = e.project ?: return + val dialog = AddEnvironmentDialog(project) + if (dialog.showAndGet()) { + serviceController.triggerIndexing() + } + } }) add(object : AnAction("Remove Environment", null, AllIcons.General.Remove) { override fun actionPerformed(e: AnActionEvent) { /* Remove logic */ } diff --git a/src/main/kotlin/com/dfsek/terra/codetool/envman/EnvironmentManagerToolWindowFactory.kt b/src/main/kotlin/com/dfsek/terra/codetool/envman/ui/EnvironmentManagerToolWindowFactory.kt similarity index 93% rename from src/main/kotlin/com/dfsek/terra/codetool/envman/EnvironmentManagerToolWindowFactory.kt rename to src/main/kotlin/com/dfsek/terra/codetool/envman/ui/EnvironmentManagerToolWindowFactory.kt index 61d264f..3426421 100644 --- a/src/main/kotlin/com/dfsek/terra/codetool/envman/EnvironmentManagerToolWindowFactory.kt +++ b/src/main/kotlin/com/dfsek/terra/codetool/envman/ui/EnvironmentManagerToolWindowFactory.kt @@ -1,4 +1,4 @@ -package com.dfsek.terra.codetool.envman +package com.dfsek.terra.codetool.envman.ui import com.intellij.openapi.project.Project import com.intellij.openapi.wm.ToolWindow diff --git a/src/main/kotlin/com/dfsek/terra/codetool/envman/ui/EnvironmentServiceController.kt b/src/main/kotlin/com/dfsek/terra/codetool/envman/ui/EnvironmentServiceController.kt new file mode 100644 index 0000000..2cda4da --- /dev/null +++ b/src/main/kotlin/com/dfsek/terra/codetool/envman/ui/EnvironmentServiceController.kt @@ -0,0 +1,28 @@ +package com.dfsek.terra.codetool.envman.ui + +import com.dfsek.terra.codetool.envman.task.IndexEnvironmentTask +import com.dfsek.terra.codetool.envman.service.TerraEnvironmentChangeListener +import com.dfsek.terra.codetool.envman.service.TerraEnvironmentService +import com.intellij.openapi.application.ApplicationManager +import com.intellij.openapi.progress.ProgressManager +import com.intellij.openapi.project.Project + +class EnvironmentServiceController(val project: Project) { + val terraEnvironmentService = TerraEnvironmentService.getInstance() + + fun triggerIndexing() { + ProgressManager.getInstance().run(IndexEnvironmentTask(project) { + triggerUiReload() + }) + } + + fun createEnvironment() { + + } + + private fun triggerUiReload() { + ApplicationManager.getApplication().messageBus + .syncPublisher(TerraEnvironmentChangeListener.TOPIC) + .environmentChanged() + } +} \ No newline at end of file diff --git a/src/main/kotlin/com/dfsek/terra/codetool/envman/ui/create/AddEnvironmentDialog.kt b/src/main/kotlin/com/dfsek/terra/codetool/envman/ui/create/AddEnvironmentDialog.kt new file mode 100644 index 0000000..c2eb270 --- /dev/null +++ b/src/main/kotlin/com/dfsek/terra/codetool/envman/ui/create/AddEnvironmentDialog.kt @@ -0,0 +1,134 @@ +package com.dfsek.terra.codetool.envman.ui.create + +import com.dfsek.terra.codetool.envman.service.download.JenkinsVersionExplorer +import com.dfsek.terra.codetool.envman.service.download.ModrinthVersionExplorer +import com.dfsek.terra.codetool.envman.service.download.TerraVersionExplorer +import com.intellij.icons.AllIcons +import com.intellij.openapi.project.Project +import com.intellij.openapi.ui.DialogWrapper +import com.intellij.openapi.ui.ValidationInfo +import com.intellij.ui.ColoredListCellRenderer +import com.intellij.ui.DocumentAdapter +import com.intellij.ui.JBColor +import com.intellij.ui.OnePixelSplitter +import com.intellij.ui.SimpleTextAttributes +import com.intellij.ui.components.JBLabel +import com.intellij.ui.components.JBList +import com.intellij.ui.components.JBTextField +import com.intellij.util.ui.JBUI +import java.awt.BorderLayout +import java.awt.CardLayout +import java.awt.Component +import javax.swing.DefaultListModel +import javax.swing.Icon +import javax.swing.JComponent +import javax.swing.JList +import javax.swing.JPanel +import javax.swing.event.DocumentEvent + +class AddEnvironmentDialog(val project: Project) : DialogWrapper(project) { + private val sidebarModel = DefaultListModel().apply { + addElement(SidebarRenderer.CellItem.LOCAL) + addElement(SidebarRenderer.CellItem.JENKINS) + addElement(SidebarRenderer.CellItem.MODRINTH) + } + private val sidebar = JBList(sidebarModel) + + private val cardLayout = CardLayout() + private val contentPanel = JPanel(cardLayout) + + private val nameField = JBTextField().apply { + emptyText.text = "Environment Name (e.g., Terra Snapshot 1.18)" + } + + private val localPanel = LocalPanel(project) { initValidation() } + private val jenkinsPanel = RemotePanel(SidebarRenderer.CellItem.JENKINS, JenkinsVersionExplorer.getInstance()) { initValidation() } + private val modrinthPanel = RemotePanel(SidebarRenderer.CellItem.MODRINTH, ModrinthVersionExplorer.getInstance()) { initValidation() } + + init { + title = "New Terra Environment" + init() + } + + override fun createNorthPanel(): JComponent { + val panel = JPanel(BorderLayout(0, 10)) + panel.border = JBUI.Borders.empty(10, 10, 0, 10) + panel.add(JBLabel("Name:"), BorderLayout.WEST) + panel.add(nameField, BorderLayout.CENTER) + + nameField.document.addDocumentListener(object : DocumentAdapter() { + override fun textChanged(e: DocumentEvent) = initValidation() + }) + return panel + } + + override fun createCenterPanel(): JComponent { + val splitter = OnePixelSplitter(false, 0.25f) + splitter.border = JBUI.Borders.customLine(JBColor.border()) + + contentPanel.add(localPanel, SidebarRenderer.CellItem.LOCAL.label) + contentPanel.add(jenkinsPanel, SidebarRenderer.CellItem.JENKINS.label) + contentPanel.add(modrinthPanel, SidebarRenderer.CellItem.MODRINTH.label) + + sidebar.cellRenderer = SidebarRenderer + + sidebar.addListSelectionListener { + val selected = sidebar.selectedValue ?: return@addListSelectionListener + cardLayout.show(contentPanel, selected.label) + } + sidebar.selectedIndex = 0 + + splitter.firstComponent = sidebar + splitter.secondComponent = contentPanel + + splitter.setHonorComponentsMinimumSize(true) + return splitter + } + + override fun doValidate(): ValidationInfo? { + if (nameField.text.isBlank()) { + return ValidationInfo("Please enter a name for the environment", nameField) + } + + val selected = sidebar.selectedValue ?: return null + return when (selected) { + SidebarRenderer.CellItem.LOCAL -> { + if (localPanel.getSelectedPath()?.isNotEmpty() != true) { + ValidationInfo("Please select a valid local JAR file", localPanel) + } else null + } + SidebarRenderer.CellItem.JENKINS -> { + if (jenkinsPanel.getSelectedVersion() == null) { + ValidationInfo("Please select a build version", jenkinsPanel) + } else null + } + SidebarRenderer.CellItem.MODRINTH -> { + if (modrinthPanel.getSelectedVersion() == null) { + ValidationInfo("Please select a release version", modrinthPanel) + } else null + } + } + } + + object SidebarRenderer : ColoredListCellRenderer() { + override fun customizeCellRenderer( + list: JList, + value: CellItem?, + index: Int, + selected: Boolean, + hasFocus: Boolean + ) { + if (value == null) return + icon = value.icon + append(value.label, SimpleTextAttributes.REGULAR_ATTRIBUTES) + } + + private fun readResolve(): Any = SidebarRenderer + + enum class CellItem(val label: String, val icon: Icon) { + LOCAL("Local JAR", AllIcons.FileTypes.Archive), + MODRINTH("Modrinth", AllIcons.Actions.Download), + JENKINS("Jenkins", AllIcons.Actions.Download) + } + } +} \ No newline at end of file diff --git a/src/main/kotlin/com/dfsek/terra/codetool/envman/ui/create/LocalPanel.kt b/src/main/kotlin/com/dfsek/terra/codetool/envman/ui/create/LocalPanel.kt new file mode 100644 index 0000000..f2149b1 --- /dev/null +++ b/src/main/kotlin/com/dfsek/terra/codetool/envman/ui/create/LocalPanel.kt @@ -0,0 +1,110 @@ +package com.dfsek.terra.codetool.envman.ui.create + +import com.dfsek.terra.codetool.envman.service.VersionDetectionService +import com.intellij.openapi.fileChooser.FileChooserDescriptor +import com.intellij.openapi.project.Project +import com.intellij.openapi.ui.TextFieldWithBrowseButton +import com.intellij.ui.JBColor +import com.intellij.ui.components.JBLabel +import com.intellij.util.ui.JBUI +import com.intellij.util.ui.UIUtil +import java.awt.BorderLayout +import java.awt.Font +import java.awt.GridBagConstraints +import java.awt.GridBagLayout +import java.io.File +import javax.swing.JPanel + +class LocalPanel(project: Project, val onChange: () -> Unit) : JPanel(BorderLayout(0, 20)) { + private val versionDetector = VersionDetectionService.getInstance() + + private val pathField = TextFieldWithBrowseButton() + private val metadataPanel = JPanel(GridBagLayout()) + + private val versionLabel = JBLabel("Version: Select a JAR") + private val statusLabel = JBLabel("Ready to index").apply { + foreground = UIUtil.getInactiveTextColor() + } + + private var isOk = false + + init { + border = JBUI.Borders.empty(20) + + val descriptor = FileChooserDescriptor(true, false, true, true, false, false) + .withFileFilter { it.extension == "jar" } + + pathField.addBrowseFolderListener(project, descriptor) + + pathField.textField.document.addDocumentListener(object : com.intellij.ui.DocumentAdapter() { + override fun textChanged(e: javax.swing.event.DocumentEvent) { + updateMetadataState(pathField.text) + onChange() + } + }) + + val header = JPanel(BorderLayout()).apply { + val title = JBLabel("Local source").apply { + font = font.deriveFont(Font.BOLD, 14f) + } + add(title, BorderLayout.NORTH) + add(JBLabel("Point to a local terra-api or fat JAR file.").apply { + foreground = UIUtil.getContextHelpForeground() + }, BorderLayout.SOUTH) + } + + setupMetadataPanel() + + val centerPanel = JPanel(BorderLayout(0, 15)) + centerPanel.add(pathField, BorderLayout.NORTH) + centerPanel.add(metadataPanel, BorderLayout.CENTER) + + add(header, BorderLayout.NORTH) + add(centerPanel, BorderLayout.CENTER) + } + + private fun setupMetadataPanel() { + metadataPanel.border = JBUI.Borders.compound( + JBUI.Borders.customLine(JBColor.border()), + JBUI.Borders.empty(15) + ) + + val gbc = GridBagConstraints().apply { + fill = GridBagConstraints.HORIZONTAL + weightx = 1.0 + gridx = 0 + gridy = 0 + insets = JBUI.insetsBottom(5) + } + + metadataPanel.add(versionLabel.apply { font = font.deriveFont(Font.BOLD) }, gbc) + gbc.gridy++ + metadataPanel.add(statusLabel, gbc) + } + + private fun updateMetadataState(path: String) { + if (path.isEmpty()) { + versionLabel.text = "Version: Select a JAR" + statusLabel.text = "Waiting for source..." + statusLabel.foreground = UIUtil.getInactiveTextColor() + isOk = false + return + } + + val version = versionDetector.detectVersion(File(path)) + if (version == null) { + versionLabel.text = "Error: Invalid JAR" + statusLabel.text = "Please insert a valid Terra Fabric jar" + statusLabel.foreground = JBColor.RED + isOk = false + return + } + + versionLabel.text = "Detected: Terra $version" + statusLabel.text = "✓ Valid engine JAR identified" + statusLabel.foreground = JBColor.GREEN + isOk = true + } + + fun getSelectedPath(): String? = if (isOk) pathField.text.trim() else null +} \ No newline at end of file diff --git a/src/main/kotlin/com/dfsek/terra/codetool/envman/ui/create/RemotePanel.kt b/src/main/kotlin/com/dfsek/terra/codetool/envman/ui/create/RemotePanel.kt new file mode 100644 index 0000000..c40d36c --- /dev/null +++ b/src/main/kotlin/com/dfsek/terra/codetool/envman/ui/create/RemotePanel.kt @@ -0,0 +1,99 @@ +package com.dfsek.terra.codetool.envman.ui.create + +import com.dfsek.terra.codetool.envman.service.download.TerraVersion +import com.dfsek.terra.codetool.envman.service.download.TerraVersionExplorer +import com.intellij.icons.AllIcons +import com.intellij.openapi.application.ApplicationManager +import com.intellij.ui.ColoredListCellRenderer +import com.intellij.ui.SimpleTextAttributes +import com.intellij.ui.components.JBLabel +import com.intellij.ui.components.JBList +import com.intellij.ui.components.JBScrollPane +import com.intellij.util.ui.JBUI +import com.intellij.util.ui.UIUtil +import java.awt.BorderLayout +import java.awt.CardLayout +import java.awt.GridBagLayout +import javax.swing.DefaultListModel +import javax.swing.JList +import javax.swing.JPanel +import javax.swing.SwingConstants +import kotlinx.coroutines.CoroutineScope +import kotlinx.coroutines.Dispatchers +import kotlinx.coroutines.SupervisorJob +import kotlinx.coroutines.launch + +class RemotePanel( + private val type: AddEnvironmentDialog.SidebarRenderer.CellItem, + private val explorer: TerraVersionExplorer, + private val onChange: () -> Unit +) : JPanel(BorderLayout()) { + private val scope = CoroutineScope(SupervisorJob() + Dispatchers.Main) + private val cardLayout = CardLayout() + private val root = JPanel(cardLayout) + + private val listModel = DefaultListModel() + private val versionList = JBList(listModel).apply { + cellRenderer = object : ColoredListCellRenderer() { + override fun customizeCellRenderer( + list: JList, + value: TerraVersion?, + index: Int, + selected: Boolean, + hasFocus: Boolean + ) { + icon = AllIcons.Nodes.Artifact + value?.let { append(it.version, SimpleTextAttributes.REGULAR_ATTRIBUTES) } + } + } + } + + init { + border = JBUI.Borders.empty(20) + + root.add(createLoadingPanel(), "LOADING") + root.add(createContentPanel(), "CONTENT") + + add(root, BorderLayout.CENTER) + cardLayout.show(root, "LOADING") + + versionList.addListSelectionListener { onChange() } + + fetchVersions() + } + + private fun fetchVersions() { + scope.launch { + val versions = explorer.getVersions() + ApplicationManager.getApplication().invokeLater { + if (versions.isEmpty()) { + root.add(JBLabel("No versions available"), "CONTENT") + } else { + versions.forEach { listModel.addElement(it) } + versionList.selectedIndex = 0 + } + cardLayout.show(root, "CONTENT") + } + } + } + + private fun createLoadingPanel() = JPanel(GridBagLayout()).apply { + add(JBLabel("Fetching versions for ${type.label}...").apply { + foreground = UIUtil.getContextHelpForeground() + horizontalAlignment = SwingConstants.CENTER + }) + } + + private fun createContentPanel() = JPanel(BorderLayout(0, 10)).apply { + val title = JBLabel("Available ${type.label} Builds").apply { + font = font.deriveFont(java.awt.Font.BOLD) + } + + add(title, BorderLayout.NORTH) + add(JBScrollPane(versionList).apply { + border = JBUI.Borders.customLine(com.intellij.ui.JBColor.border()) + }, BorderLayout.CENTER) + } + + fun getSelectedVersion(): TerraVersion? = versionList.selectedValue +} \ No newline at end of file diff --git a/src/main/kotlin/com/dfsek/terra/codetool/envman/ui/create/RemotePanelEmptyState.kt b/src/main/kotlin/com/dfsek/terra/codetool/envman/ui/create/RemotePanelEmptyState.kt new file mode 100644 index 0000000..b3cdfe2 --- /dev/null +++ b/src/main/kotlin/com/dfsek/terra/codetool/envman/ui/create/RemotePanelEmptyState.kt @@ -0,0 +1,20 @@ +package com.dfsek.terra.codetool.envman.ui.create + +import com.intellij.ui.components.JBLabel +import com.intellij.util.ui.JBUI +import com.intellij.util.ui.SingleComponentCenteringLayout +import com.intellij.util.ui.UIUtil +import javax.swing.JPanel +import javax.swing.SwingConstants + +class RemotePanelEmptyState : JPanel(SingleComponentCenteringLayout()) { + init { + border = JBUI.Borders.emptyLeft(1) + + add(JBLabel("No versions found").apply { + foreground = UIUtil.getContextHelpForeground() + horizontalAlignment = SwingConstants.CENTER + verticalAlignment = SwingConstants.CENTER + }) + } +} \ No newline at end of file diff --git a/src/main/resources/META-INF/plugin.xml b/src/main/resources/META-INF/plugin.xml index 12eaf43..1e89de7 100644 --- a/src/main/resources/META-INF/plugin.xml +++ b/src/main/resources/META-INF/plugin.xml @@ -68,13 +68,7 @@ Introduce Minecraft 1.21.9 support and fix a few bugs - + Date: Mon, 8 Dec 2025 01:58:58 +0100 Subject: [PATCH 09/11] feat: actually create env and download files --- .../dfsek/terra/codetool/NotificationUtil.kt | 12 +++++ .../service/EnvironmentCreationService.kt | 21 --------- .../envman/service/PreparedEnvironment.kt | 6 +++ .../envman/service/TerraEnvironmentService.kt | 17 ++++++- .../envman/service/TerraEnvironmentState.kt | 11 ----- .../envman/service/state/EnvironmentState.kt | 6 +++ .../envman/service/state/TerraEnvironment.kt | 9 ++++ .../service/state/TerraEnvironmentState.kt | 5 +++ .../JenkinsVersionExplorer.kt | 2 +- .../ModrinthVersionExplorer.kt | 2 +- .../{download => version}/TerraVersion.kt | 2 +- .../service/version/TerraVersionDownloader.kt | 19 ++++++++ .../TerraVersionExplorer.kt | 2 +- .../envman/task/EnvironmentCreationTask.kt | 18 ++++++++ .../envman/task/IndexEnvironmentTask.kt | 2 +- .../envman/ui/EnvironmentServiceController.kt | 25 +++++++++-- .../envman/ui/create/AddEnvironmentDialog.kt | 44 +++++++++++++++++-- .../codetool/envman/ui/create/RemotePanel.kt | 4 +- src/main/resources/META-INF/plugin.xml | 2 + 19 files changed, 162 insertions(+), 47 deletions(-) create mode 100644 src/main/kotlin/com/dfsek/terra/codetool/NotificationUtil.kt delete mode 100644 src/main/kotlin/com/dfsek/terra/codetool/envman/service/EnvironmentCreationService.kt create mode 100644 src/main/kotlin/com/dfsek/terra/codetool/envman/service/PreparedEnvironment.kt delete mode 100644 src/main/kotlin/com/dfsek/terra/codetool/envman/service/TerraEnvironmentState.kt create mode 100644 src/main/kotlin/com/dfsek/terra/codetool/envman/service/state/EnvironmentState.kt create mode 100644 src/main/kotlin/com/dfsek/terra/codetool/envman/service/state/TerraEnvironment.kt create mode 100644 src/main/kotlin/com/dfsek/terra/codetool/envman/service/state/TerraEnvironmentState.kt rename src/main/kotlin/com/dfsek/terra/codetool/envman/service/{download => version}/JenkinsVersionExplorer.kt (97%) rename src/main/kotlin/com/dfsek/terra/codetool/envman/service/{download => version}/ModrinthVersionExplorer.kt (96%) rename src/main/kotlin/com/dfsek/terra/codetool/envman/service/{download => version}/TerraVersion.kt (55%) create mode 100644 src/main/kotlin/com/dfsek/terra/codetool/envman/service/version/TerraVersionDownloader.kt rename src/main/kotlin/com/dfsek/terra/codetool/envman/service/{download => version}/TerraVersionExplorer.kt (59%) create mode 100644 src/main/kotlin/com/dfsek/terra/codetool/envman/task/EnvironmentCreationTask.kt diff --git a/src/main/kotlin/com/dfsek/terra/codetool/NotificationUtil.kt b/src/main/kotlin/com/dfsek/terra/codetool/NotificationUtil.kt new file mode 100644 index 0000000..4cf5e5d --- /dev/null +++ b/src/main/kotlin/com/dfsek/terra/codetool/NotificationUtil.kt @@ -0,0 +1,12 @@ +package com.dfsek.terra.codetool + +import com.intellij.notification.NotificationGroupManager +import com.intellij.notification.NotificationType +import com.intellij.openapi.project.Project + +fun showTerraBalloon(project: Project, title: String, content: String, type: NotificationType) { + NotificationGroupManager.getInstance() + .getNotificationGroup("Terra Environment Notifications") + .createNotification(title, content, type) + .notify(project) +} \ No newline at end of file diff --git a/src/main/kotlin/com/dfsek/terra/codetool/envman/service/EnvironmentCreationService.kt b/src/main/kotlin/com/dfsek/terra/codetool/envman/service/EnvironmentCreationService.kt deleted file mode 100644 index 51ebed3..0000000 --- a/src/main/kotlin/com/dfsek/terra/codetool/envman/service/EnvironmentCreationService.kt +++ /dev/null @@ -1,21 +0,0 @@ -package com.dfsek.terra.codetool.envman.service - -import com.intellij.openapi.components.Service -import com.intellij.openapi.components.service -import com.intellij.openapi.project.Project - -@Service(Service.Level.PROJECT) -class EnvironmentCreationService(val project: Project) { - val environmentService = TerraEnvironmentService.getInstance() - - fun createEnvironment( - name: String, - then: () -> Unit - ) { - - } - - companion object { - fun getInstance(project: Project): EnvironmentCreationService = project.service() - } -} \ No newline at end of file diff --git a/src/main/kotlin/com/dfsek/terra/codetool/envman/service/PreparedEnvironment.kt b/src/main/kotlin/com/dfsek/terra/codetool/envman/service/PreparedEnvironment.kt new file mode 100644 index 0000000..a95f5ff --- /dev/null +++ b/src/main/kotlin/com/dfsek/terra/codetool/envman/service/PreparedEnvironment.kt @@ -0,0 +1,6 @@ +package com.dfsek.terra.codetool.envman.service + +data class PreparedEnvironment( + val path: String, + val uuid: String +) diff --git a/src/main/kotlin/com/dfsek/terra/codetool/envman/service/TerraEnvironmentService.kt b/src/main/kotlin/com/dfsek/terra/codetool/envman/service/TerraEnvironmentService.kt index c71c28b..de28b23 100644 --- a/src/main/kotlin/com/dfsek/terra/codetool/envman/service/TerraEnvironmentService.kt +++ b/src/main/kotlin/com/dfsek/terra/codetool/envman/service/TerraEnvironmentService.kt @@ -1,5 +1,7 @@ package com.dfsek.terra.codetool.envman.service +import com.dfsek.terra.codetool.envman.service.state.TerraEnvironment +import com.dfsek.terra.codetool.envman.service.state.TerraEnvironmentState import com.intellij.openapi.application.PathManager import com.intellij.openapi.components.PersistentStateComponent import com.intellij.openapi.components.Service @@ -7,6 +9,7 @@ import com.intellij.openapi.components.State import com.intellij.openapi.components.Storage import com.intellij.openapi.components.service import java.io.File +import java.util.UUID @State( name = "TerraEnvironmentRegistry", @@ -19,8 +22,20 @@ class TerraEnvironmentService : PersistentStateComponent fun getEnvironments() = state.environments - fun createEnvironment() { + fun prepareEnvironmentCreation(): PreparedEnvironment { + val uuid = UUID.randomUUID().toString() + val path = File(configPath, uuid).also { it.mkdirs() }.path + return PreparedEnvironment(path, uuid) + } + + fun cleanupPreparedEnvironment(prepared: PreparedEnvironment) { + val file = File(prepared.path) + if (file.exists()) file.deleteRecursively() + } + fun promote(prepared: PreparedEnvironment, name: String, version: String) { + val environment = TerraEnvironment(UUID.randomUUID().toString(), name, prepared.path, version) + state.environments.add(environment) } override fun getState(): TerraEnvironmentState = state diff --git a/src/main/kotlin/com/dfsek/terra/codetool/envman/service/TerraEnvironmentState.kt b/src/main/kotlin/com/dfsek/terra/codetool/envman/service/TerraEnvironmentState.kt deleted file mode 100644 index c452e43..0000000 --- a/src/main/kotlin/com/dfsek/terra/codetool/envman/service/TerraEnvironmentState.kt +++ /dev/null @@ -1,11 +0,0 @@ -package com.dfsek.terra.codetool.envman.service - -data class TerraEnvironment( - var name: String, - var path: String, - var terraVersion: String -) - -data class TerraEnvironmentState( - var environments: MutableList = mutableListOf() -) diff --git a/src/main/kotlin/com/dfsek/terra/codetool/envman/service/state/EnvironmentState.kt b/src/main/kotlin/com/dfsek/terra/codetool/envman/service/state/EnvironmentState.kt new file mode 100644 index 0000000..8a2a011 --- /dev/null +++ b/src/main/kotlin/com/dfsek/terra/codetool/envman/service/state/EnvironmentState.kt @@ -0,0 +1,6 @@ +package com.dfsek.terra.codetool.envman.service.state + +enum class EnvironmentState { + UNINITIALIZED, + READY +} \ No newline at end of file diff --git a/src/main/kotlin/com/dfsek/terra/codetool/envman/service/state/TerraEnvironment.kt b/src/main/kotlin/com/dfsek/terra/codetool/envman/service/state/TerraEnvironment.kt new file mode 100644 index 0000000..5177b63 --- /dev/null +++ b/src/main/kotlin/com/dfsek/terra/codetool/envman/service/state/TerraEnvironment.kt @@ -0,0 +1,9 @@ +package com.dfsek.terra.codetool.envman.service.state + +data class TerraEnvironment( + var id: String = "", + var name: String = "", + var path: String = "", + var terraVersion: String = "", + var state: EnvironmentState = EnvironmentState.UNINITIALIZED +) \ No newline at end of file diff --git a/src/main/kotlin/com/dfsek/terra/codetool/envman/service/state/TerraEnvironmentState.kt b/src/main/kotlin/com/dfsek/terra/codetool/envman/service/state/TerraEnvironmentState.kt new file mode 100644 index 0000000..b57dcdf --- /dev/null +++ b/src/main/kotlin/com/dfsek/terra/codetool/envman/service/state/TerraEnvironmentState.kt @@ -0,0 +1,5 @@ +package com.dfsek.terra.codetool.envman.service.state + +data class TerraEnvironmentState( + var environments: MutableList = mutableListOf() +) diff --git a/src/main/kotlin/com/dfsek/terra/codetool/envman/service/download/JenkinsVersionExplorer.kt b/src/main/kotlin/com/dfsek/terra/codetool/envman/service/version/JenkinsVersionExplorer.kt similarity index 97% rename from src/main/kotlin/com/dfsek/terra/codetool/envman/service/download/JenkinsVersionExplorer.kt rename to src/main/kotlin/com/dfsek/terra/codetool/envman/service/version/JenkinsVersionExplorer.kt index 34f02b8..e1a6d7d 100644 --- a/src/main/kotlin/com/dfsek/terra/codetool/envman/service/download/JenkinsVersionExplorer.kt +++ b/src/main/kotlin/com/dfsek/terra/codetool/envman/service/version/JenkinsVersionExplorer.kt @@ -1,4 +1,4 @@ -package com.dfsek.terra.codetool.envman.service.download +package com.dfsek.terra.codetool.envman.service.version import com.intellij.openapi.components.Service import com.intellij.openapi.components.service diff --git a/src/main/kotlin/com/dfsek/terra/codetool/envman/service/download/ModrinthVersionExplorer.kt b/src/main/kotlin/com/dfsek/terra/codetool/envman/service/version/ModrinthVersionExplorer.kt similarity index 96% rename from src/main/kotlin/com/dfsek/terra/codetool/envman/service/download/ModrinthVersionExplorer.kt rename to src/main/kotlin/com/dfsek/terra/codetool/envman/service/version/ModrinthVersionExplorer.kt index 28e07ee..e50c82d 100644 --- a/src/main/kotlin/com/dfsek/terra/codetool/envman/service/download/ModrinthVersionExplorer.kt +++ b/src/main/kotlin/com/dfsek/terra/codetool/envman/service/version/ModrinthVersionExplorer.kt @@ -1,4 +1,4 @@ -package com.dfsek.terra.codetool.envman.service.download +package com.dfsek.terra.codetool.envman.service.version import com.intellij.openapi.components.Service import com.intellij.openapi.components.service diff --git a/src/main/kotlin/com/dfsek/terra/codetool/envman/service/download/TerraVersion.kt b/src/main/kotlin/com/dfsek/terra/codetool/envman/service/version/TerraVersion.kt similarity index 55% rename from src/main/kotlin/com/dfsek/terra/codetool/envman/service/download/TerraVersion.kt rename to src/main/kotlin/com/dfsek/terra/codetool/envman/service/version/TerraVersion.kt index ced1eb6..20c6fdd 100644 --- a/src/main/kotlin/com/dfsek/terra/codetool/envman/service/download/TerraVersion.kt +++ b/src/main/kotlin/com/dfsek/terra/codetool/envman/service/version/TerraVersion.kt @@ -1,3 +1,3 @@ -package com.dfsek.terra.codetool.envman.service.download +package com.dfsek.terra.codetool.envman.service.version data class TerraVersion(val version: String, val downloadUrl: String) diff --git a/src/main/kotlin/com/dfsek/terra/codetool/envman/service/version/TerraVersionDownloader.kt b/src/main/kotlin/com/dfsek/terra/codetool/envman/service/version/TerraVersionDownloader.kt new file mode 100644 index 0000000..c6422aa --- /dev/null +++ b/src/main/kotlin/com/dfsek/terra/codetool/envman/service/version/TerraVersionDownloader.kt @@ -0,0 +1,19 @@ +package com.dfsek.terra.codetool.envman.service.version + +import com.dfsek.terra.codetool.showTerraBalloon +import com.intellij.notification.NotificationType +import com.intellij.openapi.project.Project +import com.intellij.util.download.DownloadableFileService +import java.io.File + +fun downloadTerraJar(project: Project, version: TerraVersion, targetDir: String): File? { + val downloadService = DownloadableFileService.getInstance() + val desc = downloadService.createFileDescription(version.downloadUrl, "terra.jar") + val downloader = downloadService.createDownloader(listOf(desc), "Downloading Terra ${version.version}") + val result = downloader.downloadFilesWithProgress(targetDir, project, null) + if (result == null) { + showTerraBalloon(project, "Error downloading Terra", "Please try again later", NotificationType.ERROR) + return null + } + return File(targetDir, "terra.jar") +} \ No newline at end of file diff --git a/src/main/kotlin/com/dfsek/terra/codetool/envman/service/download/TerraVersionExplorer.kt b/src/main/kotlin/com/dfsek/terra/codetool/envman/service/version/TerraVersionExplorer.kt similarity index 59% rename from src/main/kotlin/com/dfsek/terra/codetool/envman/service/download/TerraVersionExplorer.kt rename to src/main/kotlin/com/dfsek/terra/codetool/envman/service/version/TerraVersionExplorer.kt index 55a0606..b460054 100644 --- a/src/main/kotlin/com/dfsek/terra/codetool/envman/service/download/TerraVersionExplorer.kt +++ b/src/main/kotlin/com/dfsek/terra/codetool/envman/service/version/TerraVersionExplorer.kt @@ -1,4 +1,4 @@ -package com.dfsek.terra.codetool.envman.service.download +package com.dfsek.terra.codetool.envman.service.version interface TerraVersionExplorer { suspend fun getVersions(): List diff --git a/src/main/kotlin/com/dfsek/terra/codetool/envman/task/EnvironmentCreationTask.kt b/src/main/kotlin/com/dfsek/terra/codetool/envman/task/EnvironmentCreationTask.kt new file mode 100644 index 0000000..c750cdf --- /dev/null +++ b/src/main/kotlin/com/dfsek/terra/codetool/envman/task/EnvironmentCreationTask.kt @@ -0,0 +1,18 @@ +package com.dfsek.terra.codetool.envman.task + +import com.dfsek.terra.codetool.envman.ui.EnvironmentServiceController +import com.intellij.openapi.progress.ProgressIndicator +import com.intellij.openapi.progress.Task +import com.intellij.openapi.project.Project + +class EnvironmentCreationTask( + val parentProject: Project, + val controller: EnvironmentServiceController, + val name: String, + val addJarFile: (String) -> Unit +) : Task.Backgroundable(parentProject, "Creating environment...") { + override fun run(indicator: ProgressIndicator) { + indicator.isIndeterminate = true + controller.createEnvironment(parentProject, name, addJarFile) + } +} \ No newline at end of file diff --git a/src/main/kotlin/com/dfsek/terra/codetool/envman/task/IndexEnvironmentTask.kt b/src/main/kotlin/com/dfsek/terra/codetool/envman/task/IndexEnvironmentTask.kt index 70f43de..ed76403 100644 --- a/src/main/kotlin/com/dfsek/terra/codetool/envman/task/IndexEnvironmentTask.kt +++ b/src/main/kotlin/com/dfsek/terra/codetool/envman/task/IndexEnvironmentTask.kt @@ -1,6 +1,6 @@ package com.dfsek.terra.codetool.envman.task -import com.dfsek.terra.codetool.envman.service.TerraEnvironment +import com.dfsek.terra.codetool.envman.service.state.TerraEnvironment import com.dfsek.terra.codetool.envman.service.TerraEnvironmentService import com.intellij.openapi.application.ApplicationManager import com.intellij.openapi.progress.ProgressIndicator diff --git a/src/main/kotlin/com/dfsek/terra/codetool/envman/ui/EnvironmentServiceController.kt b/src/main/kotlin/com/dfsek/terra/codetool/envman/ui/EnvironmentServiceController.kt index 2cda4da..8caf79a 100644 --- a/src/main/kotlin/com/dfsek/terra/codetool/envman/ui/EnvironmentServiceController.kt +++ b/src/main/kotlin/com/dfsek/terra/codetool/envman/ui/EnvironmentServiceController.kt @@ -1,14 +1,19 @@ package com.dfsek.terra.codetool.envman.ui -import com.dfsek.terra.codetool.envman.task.IndexEnvironmentTask import com.dfsek.terra.codetool.envman.service.TerraEnvironmentChangeListener import com.dfsek.terra.codetool.envman.service.TerraEnvironmentService +import com.dfsek.terra.codetool.envman.service.VersionDetectionService +import com.dfsek.terra.codetool.envman.task.IndexEnvironmentTask +import com.dfsek.terra.codetool.showTerraBalloon +import com.intellij.notification.NotificationType import com.intellij.openapi.application.ApplicationManager import com.intellij.openapi.progress.ProgressManager import com.intellij.openapi.project.Project +import java.io.File class EnvironmentServiceController(val project: Project) { val terraEnvironmentService = TerraEnvironmentService.getInstance() + val versionDetector = VersionDetectionService.getInstance() fun triggerIndexing() { ProgressManager.getInstance().run(IndexEnvironmentTask(project) { @@ -16,8 +21,22 @@ class EnvironmentServiceController(val project: Project) { }) } - fun createEnvironment() { - + fun createEnvironment( + project: Project, + name: String, + addJarFile: (String) -> Unit + ) { + val prepared = terraEnvironmentService.prepareEnvironmentCreation() + addJarFile(prepared.path) + val version = versionDetector.detectVersion(File(prepared.path, "terra.jar")) + if (version == null) { + showTerraBalloon(project, "Error", "Could not detect version of Terra", NotificationType.ERROR) + terraEnvironmentService.cleanupPreparedEnvironment(prepared) + return + } + + terraEnvironmentService.promote(prepared, name, version) + triggerIndexing() } private fun triggerUiReload() { diff --git a/src/main/kotlin/com/dfsek/terra/codetool/envman/ui/create/AddEnvironmentDialog.kt b/src/main/kotlin/com/dfsek/terra/codetool/envman/ui/create/AddEnvironmentDialog.kt index c2eb270..f5afc45 100644 --- a/src/main/kotlin/com/dfsek/terra/codetool/envman/ui/create/AddEnvironmentDialog.kt +++ b/src/main/kotlin/com/dfsek/terra/codetool/envman/ui/create/AddEnvironmentDialog.kt @@ -1,8 +1,10 @@ package com.dfsek.terra.codetool.envman.ui.create -import com.dfsek.terra.codetool.envman.service.download.JenkinsVersionExplorer -import com.dfsek.terra.codetool.envman.service.download.ModrinthVersionExplorer -import com.dfsek.terra.codetool.envman.service.download.TerraVersionExplorer +import com.dfsek.terra.codetool.envman.service.version.JenkinsVersionExplorer +import com.dfsek.terra.codetool.envman.service.version.ModrinthVersionExplorer +import com.dfsek.terra.codetool.envman.service.version.downloadTerraJar +import com.dfsek.terra.codetool.envman.task.EnvironmentCreationTask +import com.dfsek.terra.codetool.envman.ui.EnvironmentServiceController import com.intellij.icons.AllIcons import com.intellij.openapi.project.Project import com.intellij.openapi.ui.DialogWrapper @@ -18,7 +20,7 @@ import com.intellij.ui.components.JBTextField import com.intellij.util.ui.JBUI import java.awt.BorderLayout import java.awt.CardLayout -import java.awt.Component +import java.io.File import javax.swing.DefaultListModel import javax.swing.Icon import javax.swing.JComponent @@ -27,6 +29,8 @@ import javax.swing.JPanel import javax.swing.event.DocumentEvent class AddEnvironmentDialog(val project: Project) : DialogWrapper(project) { + private val environmentServiceController = EnvironmentServiceController(project) + private val sidebarModel = DefaultListModel().apply { addElement(SidebarRenderer.CellItem.LOCAL) addElement(SidebarRenderer.CellItem.JENKINS) @@ -110,6 +114,38 @@ class AddEnvironmentDialog(val project: Project) : DialogWrapper(project) { } } + override fun doOKAction() { + val selectedItem = sidebar.selectedValue ?: return + val envName = nameField.text.trim() + + when (selectedItem) { + SidebarRenderer.CellItem.LOCAL -> { + val path = localPanel.getSelectedPath() ?: return + EnvironmentCreationTask( + project, + environmentServiceController, + envName + ) { basePath -> + File(path).copyTo(File(basePath, "terra.jar")) + }.queue() + } + SidebarRenderer.CellItem.JENKINS, SidebarRenderer.CellItem.MODRINTH -> { + val panel = if (selectedItem == SidebarRenderer.CellItem.JENKINS) jenkinsPanel else modrinthPanel + val version = panel.getSelectedVersion() ?: return + + EnvironmentCreationTask( + project, + environmentServiceController, + envName + ) { basePath -> + downloadTerraJar(project, version, basePath) + }.queue() + } + } + + super.doOKAction() + } + object SidebarRenderer : ColoredListCellRenderer() { override fun customizeCellRenderer( list: JList, diff --git a/src/main/kotlin/com/dfsek/terra/codetool/envman/ui/create/RemotePanel.kt b/src/main/kotlin/com/dfsek/terra/codetool/envman/ui/create/RemotePanel.kt index c40d36c..479695b 100644 --- a/src/main/kotlin/com/dfsek/terra/codetool/envman/ui/create/RemotePanel.kt +++ b/src/main/kotlin/com/dfsek/terra/codetool/envman/ui/create/RemotePanel.kt @@ -1,7 +1,7 @@ package com.dfsek.terra.codetool.envman.ui.create -import com.dfsek.terra.codetool.envman.service.download.TerraVersion -import com.dfsek.terra.codetool.envman.service.download.TerraVersionExplorer +import com.dfsek.terra.codetool.envman.service.version.TerraVersion +import com.dfsek.terra.codetool.envman.service.version.TerraVersionExplorer import com.intellij.icons.AllIcons import com.intellij.openapi.application.ApplicationManager import com.intellij.ui.ColoredListCellRenderer diff --git a/src/main/resources/META-INF/plugin.xml b/src/main/resources/META-INF/plugin.xml index 1e89de7..467e2cc 100644 --- a/src/main/resources/META-INF/plugin.xml +++ b/src/main/resources/META-INF/plugin.xml @@ -69,6 +69,8 @@ Introduce Minecraft 1.21.9 support and fix a few bugs + + Date: Mon, 8 Dec 2025 02:15:06 +0100 Subject: [PATCH 10/11] feat: enhance environment management UI with dynamic environment list and detail view --- .../terra/codetool/envman/ui/AddonList.kt | 5 +- .../envman/ui/EnvironmentConfigPanel.kt | 63 ++++++++++++++++++- 2 files changed, 64 insertions(+), 4 deletions(-) diff --git a/src/main/kotlin/com/dfsek/terra/codetool/envman/ui/AddonList.kt b/src/main/kotlin/com/dfsek/terra/codetool/envman/ui/AddonList.kt index e904b4d..f9c6599 100644 --- a/src/main/kotlin/com/dfsek/terra/codetool/envman/ui/AddonList.kt +++ b/src/main/kotlin/com/dfsek/terra/codetool/envman/ui/AddonList.kt @@ -1,5 +1,6 @@ package com.dfsek.terra.codetool.envman.ui +import com.dfsek.terra.codetool.envman.service.state.TerraEnvironment import com.intellij.ui.JBColor import com.intellij.ui.components.JBLabel import com.intellij.ui.components.JBScrollPane @@ -9,8 +10,8 @@ import java.awt.BorderLayout import javax.swing.JPanel import javax.swing.table.DefaultTableModel -class AddonList : JPanel(BorderLayout()) { - private val terraVersionHeader = JBLabel("Terra version: Unknown").apply { +class AddonList(env: TerraEnvironment) : JPanel(BorderLayout()) { + private val terraVersionHeader = JBLabel("${env.name} @${env.terraVersion}").apply { font = JBUI.Fonts.label().asBold() border = JBUI.Borders.empty(10, 5) } diff --git a/src/main/kotlin/com/dfsek/terra/codetool/envman/ui/EnvironmentConfigPanel.kt b/src/main/kotlin/com/dfsek/terra/codetool/envman/ui/EnvironmentConfigPanel.kt index 9ac8982..17f6ed1 100644 --- a/src/main/kotlin/com/dfsek/terra/codetool/envman/ui/EnvironmentConfigPanel.kt +++ b/src/main/kotlin/com/dfsek/terra/codetool/envman/ui/EnvironmentConfigPanel.kt @@ -1,5 +1,8 @@ package com.dfsek.terra.codetool.envman.ui +import com.dfsek.terra.codetool.TerraIcons +import com.dfsek.terra.codetool.envman.service.TerraEnvironmentChangeListener +import com.dfsek.terra.codetool.envman.service.TerraEnvironmentService import com.dfsek.terra.codetool.envman.ui.create.AddEnvironmentDialog import com.intellij.icons.AllIcons import com.intellij.openapi.actionSystem.ActionManager @@ -7,20 +10,24 @@ import com.intellij.openapi.actionSystem.AnAction import com.intellij.openapi.actionSystem.AnActionEvent import com.intellij.openapi.actionSystem.DefaultActionGroup import com.intellij.openapi.project.Project -import com.intellij.ui.JBColor +import com.intellij.ui.ColoredListCellRenderer import com.intellij.ui.OnePixelSplitter +import com.intellij.ui.SimpleTextAttributes import com.intellij.ui.components.JBList import com.intellij.ui.components.JBScrollPane import com.intellij.util.ui.JBUI import java.awt.BorderLayout import javax.swing.DefaultListModel +import javax.swing.JList import javax.swing.JPanel class EnvironmentConfigPanel(private val project: Project) : JPanel(BorderLayout()) { + private val registry = TerraEnvironmentService.getInstance() private val serviceController = EnvironmentServiceController(project) private val environmentList = JBList(DefaultListModel()).apply { emptyText.text = "No environments" border = JBUI.Borders.empty() + cellRenderer = EnvironmentCellRenderer } init { @@ -46,14 +53,66 @@ class EnvironmentConfigPanel(private val project: Project) : JPanel(BorderLayout override fun actionPerformed(e: AnActionEvent) { /* Remove logic */ } }) } + val toolbar = ActionManager.getInstance().createActionToolbar("TerraEnvToolbar", actionGroup, true) toolbar.targetComponent = leftPanel - toolbar.component.border = JBUI.Borders.customLineBottom(JBColor.border()) + toolbar.component.border = JBUI.Borders.empty(4) leftPanel.add(toolbar.component, BorderLayout.NORTH) splitter.secondComponent = AddonListEmptyState() add(splitter, BorderLayout.CENTER) border = JBUI.Borders.empty() + + refreshEnvironmentList() + + val busConnection = com.intellij.openapi.application.ApplicationManager.getApplication().messageBus.connect() + busConnection.subscribe(TerraEnvironmentChangeListener.TOPIC, object : TerraEnvironmentChangeListener { + override fun environmentChanged() { + com.intellij.openapi.application.ApplicationManager.getApplication().invokeLater { + refreshEnvironmentList() + } + } + }) + + environmentList.addListSelectionListener { + updateDetailPane(splitter) + } + } + + private fun refreshEnvironmentList() { + val model = environmentList.model as DefaultListModel + + model.clear() + registry.getEnvironments().forEach { env -> + model.addElement(env.name) + } + } + + private fun updateDetailPane(splitter: OnePixelSplitter) { + val selectedName = environmentList.selectedValue + if (selectedName == null) { + splitter.secondComponent = AddonListEmptyState() + } else { + val env = registry.getEnvironments().find { it.name == selectedName } ?: return + splitter.secondComponent = AddonList(env) + } + splitter.revalidate() + splitter.repaint() + } + + object EnvironmentCellRenderer : ColoredListCellRenderer() { + override fun customizeCellRenderer( + list: JList, + value: String?, + index: Int, + selected: Boolean, + hasFocus: Boolean + ) { + icon = TerraIcons.TerraSimple + value?.let { append(it, SimpleTextAttributes.REGULAR_ATTRIBUTES) } + } + + private fun readResolve(): Any = EnvironmentCellRenderer } } \ No newline at end of file From f4187ebe32a9f04387b81a0c46baa1ff7af357bb Mon Sep 17 00:00:00 2001 From: Christian Bergschneider Date: Fri, 12 Dec 2025 00:52:53 +0100 Subject: [PATCH 11/11] feat: auto-extract terra jar file --- .../envman/EnvironmentStartupIndexer.kt | 15 +++++++++ .../envman/service/TerraEnvironmentService.kt | 2 ++ .../envman/service/state/EnvironmentState.kt | 6 ---- .../envman/service/state/EnvironmentTasks.kt | 11 +++++++ .../envman/service/state/TerraEnvironment.kt | 2 +- .../envman/task/IndexEnvironmentTask.kt | 15 +++++++-- .../envman/task/snippet/ExtractTaskSnippet.kt | 32 +++++++++++++++++++ .../envman/task/snippet/TaskSnippet.kt | 7 ++++ .../envman/ui/EnvironmentServiceController.kt | 1 - src/main/resources/META-INF/plugin.xml | 1 + 10 files changed, 81 insertions(+), 11 deletions(-) create mode 100644 src/main/kotlin/com/dfsek/terra/codetool/envman/EnvironmentStartupIndexer.kt delete mode 100644 src/main/kotlin/com/dfsek/terra/codetool/envman/service/state/EnvironmentState.kt create mode 100644 src/main/kotlin/com/dfsek/terra/codetool/envman/service/state/EnvironmentTasks.kt create mode 100644 src/main/kotlin/com/dfsek/terra/codetool/envman/task/snippet/ExtractTaskSnippet.kt create mode 100644 src/main/kotlin/com/dfsek/terra/codetool/envman/task/snippet/TaskSnippet.kt diff --git a/src/main/kotlin/com/dfsek/terra/codetool/envman/EnvironmentStartupIndexer.kt b/src/main/kotlin/com/dfsek/terra/codetool/envman/EnvironmentStartupIndexer.kt new file mode 100644 index 0000000..694054b --- /dev/null +++ b/src/main/kotlin/com/dfsek/terra/codetool/envman/EnvironmentStartupIndexer.kt @@ -0,0 +1,15 @@ +package com.dfsek.terra.codetool.envman + +import com.dfsek.terra.codetool.envman.ui.EnvironmentServiceController +import com.intellij.openapi.diagnostic.Logger +import com.intellij.openapi.project.Project +import com.intellij.openapi.startup.ProjectActivity + +class EnvironmentStartupIndexer : ProjectActivity { + val logger = Logger.getInstance(EnvironmentStartupIndexer::class.java) + override suspend fun execute(project: Project) { + logger.info("Starting environment indexing...") + val controller = EnvironmentServiceController(project) + controller.triggerIndexing() + } +} \ No newline at end of file diff --git a/src/main/kotlin/com/dfsek/terra/codetool/envman/service/TerraEnvironmentService.kt b/src/main/kotlin/com/dfsek/terra/codetool/envman/service/TerraEnvironmentService.kt index de28b23..bcb4f18 100644 --- a/src/main/kotlin/com/dfsek/terra/codetool/envman/service/TerraEnvironmentService.kt +++ b/src/main/kotlin/com/dfsek/terra/codetool/envman/service/TerraEnvironmentService.kt @@ -38,6 +38,8 @@ class TerraEnvironmentService : PersistentStateComponent state.environments.add(environment) } + fun getParentDirectory(environment: TerraEnvironment) = File(environment.path) + override fun getState(): TerraEnvironmentState = state override fun loadState(state: TerraEnvironmentState) { diff --git a/src/main/kotlin/com/dfsek/terra/codetool/envman/service/state/EnvironmentState.kt b/src/main/kotlin/com/dfsek/terra/codetool/envman/service/state/EnvironmentState.kt deleted file mode 100644 index 8a2a011..0000000 --- a/src/main/kotlin/com/dfsek/terra/codetool/envman/service/state/EnvironmentState.kt +++ /dev/null @@ -1,6 +0,0 @@ -package com.dfsek.terra.codetool.envman.service.state - -enum class EnvironmentState { - UNINITIALIZED, - READY -} \ No newline at end of file diff --git a/src/main/kotlin/com/dfsek/terra/codetool/envman/service/state/EnvironmentTasks.kt b/src/main/kotlin/com/dfsek/terra/codetool/envman/service/state/EnvironmentTasks.kt new file mode 100644 index 0000000..bcb15c5 --- /dev/null +++ b/src/main/kotlin/com/dfsek/terra/codetool/envman/service/state/EnvironmentTasks.kt @@ -0,0 +1,11 @@ +package com.dfsek.terra.codetool.envman.service.state + +import com.dfsek.terra.codetool.envman.task.snippet.ExtractTaskSnippet +import com.dfsek.terra.codetool.envman.task.snippet.TaskSnippet + +enum class EnvironmentTasks( + val display: String, + val snippet: TaskSnippet +) { + EXTRACT("Extract", ExtractTaskSnippet) +} \ No newline at end of file diff --git a/src/main/kotlin/com/dfsek/terra/codetool/envman/service/state/TerraEnvironment.kt b/src/main/kotlin/com/dfsek/terra/codetool/envman/service/state/TerraEnvironment.kt index 5177b63..7f8ac2e 100644 --- a/src/main/kotlin/com/dfsek/terra/codetool/envman/service/state/TerraEnvironment.kt +++ b/src/main/kotlin/com/dfsek/terra/codetool/envman/service/state/TerraEnvironment.kt @@ -5,5 +5,5 @@ data class TerraEnvironment( var name: String = "", var path: String = "", var terraVersion: String = "", - var state: EnvironmentState = EnvironmentState.UNINITIALIZED + var tasksDone: MutableList = mutableListOf() ) \ No newline at end of file diff --git a/src/main/kotlin/com/dfsek/terra/codetool/envman/task/IndexEnvironmentTask.kt b/src/main/kotlin/com/dfsek/terra/codetool/envman/task/IndexEnvironmentTask.kt index ed76403..a4aefec 100644 --- a/src/main/kotlin/com/dfsek/terra/codetool/envman/task/IndexEnvironmentTask.kt +++ b/src/main/kotlin/com/dfsek/terra/codetool/envman/task/IndexEnvironmentTask.kt @@ -1,8 +1,10 @@ package com.dfsek.terra.codetool.envman.task -import com.dfsek.terra.codetool.envman.service.state.TerraEnvironment import com.dfsek.terra.codetool.envman.service.TerraEnvironmentService +import com.dfsek.terra.codetool.envman.service.state.EnvironmentTasks +import com.dfsek.terra.codetool.envman.service.state.TerraEnvironment import com.intellij.openapi.application.ApplicationManager +import com.intellij.openapi.diagnostic.Logger import com.intellij.openapi.progress.ProgressIndicator import com.intellij.openapi.progress.Task import com.intellij.openapi.project.Project @@ -11,9 +13,11 @@ class IndexEnvironmentTask( project: Project, val onCompleted: () -> Unit ) : Task.Backgroundable(project, "Indexing environments...", true) { - val envService = TerraEnvironmentService.Companion.getInstance() + val envService = TerraEnvironmentService.getInstance() + val logger = Logger.getInstance(IndexEnvironmentTask::class.java) override fun run(indicator: ProgressIndicator) { + indicator.isIndeterminate = false val environments = envService.getEnvironments() for ((i, environment) in environments.withIndex()) { @@ -31,6 +35,11 @@ class IndexEnvironmentTask( } fun performIndexing(environment: TerraEnvironment) { - // TODO + val tasks = EnvironmentTasks.entries.filterNot { it in environment.tasksDone } + logger.info("Indexing environment ${environment.name} with tasks ${tasks.joinToString { it.name }}") + tasks.map { task -> + task.snippet.apply(environment) + environment.tasksDone.add(task) + } } } \ No newline at end of file diff --git a/src/main/kotlin/com/dfsek/terra/codetool/envman/task/snippet/ExtractTaskSnippet.kt b/src/main/kotlin/com/dfsek/terra/codetool/envman/task/snippet/ExtractTaskSnippet.kt new file mode 100644 index 0000000..633b41f --- /dev/null +++ b/src/main/kotlin/com/dfsek/terra/codetool/envman/task/snippet/ExtractTaskSnippet.kt @@ -0,0 +1,32 @@ +package com.dfsek.terra.codetool.envman.task.snippet + +import com.charleskorn.kaml.Yaml +import com.charleskorn.kaml.YamlConfiguration +import com.dfsek.terra.codetool.envman.service.TerraEnvironmentService +import com.dfsek.terra.codetool.envman.service.state.TerraEnvironment +import com.intellij.openapi.diagnostic.Logger +import com.intellij.util.io.ZipUtil +import java.io.File +import java.util.zip.ZipFile +import kotlinx.serialization.decodeFromString + +object ExtractTaskSnippet : TaskSnippet { + private val envService by lazy { TerraEnvironmentService.getInstance() } + private val yaml = Yaml(configuration = YamlConfiguration(strictMode = false)) + private val logger = Logger.getInstance(ExtractTaskSnippet::class.java) + + override fun apply(environment: TerraEnvironment) { + val parent = envService.getParentDirectory(environment) + val terraJar = parent.resolve("terra.jar") + val terraJarZip = ZipFile(terraJar) + val resourcesYmlEntry = terraJarZip.getEntry("resources.yml")!! + val resourcesYmlText = terraJarZip.getInputStream(resourcesYmlEntry).bufferedReader().use { reader -> reader.readText() } + val paths = yaml.decodeFromString>>(resourcesYmlText) + .flatMap { (key, value) -> value.map { "$key/$it" } } + logger.info("Extracting ${paths.size} files from terra.jar...") + ZipUtil.extract(terraJar.toPath(), parent.toPath()) { path, name -> + File(path, name).relativeTo(parent).toString() in paths + } + logger.info("Done") + } +} \ No newline at end of file diff --git a/src/main/kotlin/com/dfsek/terra/codetool/envman/task/snippet/TaskSnippet.kt b/src/main/kotlin/com/dfsek/terra/codetool/envman/task/snippet/TaskSnippet.kt new file mode 100644 index 0000000..4480df3 --- /dev/null +++ b/src/main/kotlin/com/dfsek/terra/codetool/envman/task/snippet/TaskSnippet.kt @@ -0,0 +1,7 @@ +package com.dfsek.terra.codetool.envman.task.snippet + +import com.dfsek.terra.codetool.envman.service.state.TerraEnvironment + +fun interface TaskSnippet { + fun apply(environment: TerraEnvironment) +} \ No newline at end of file diff --git a/src/main/kotlin/com/dfsek/terra/codetool/envman/ui/EnvironmentServiceController.kt b/src/main/kotlin/com/dfsek/terra/codetool/envman/ui/EnvironmentServiceController.kt index 8caf79a..a916e5c 100644 --- a/src/main/kotlin/com/dfsek/terra/codetool/envman/ui/EnvironmentServiceController.kt +++ b/src/main/kotlin/com/dfsek/terra/codetool/envman/ui/EnvironmentServiceController.kt @@ -14,7 +14,6 @@ import java.io.File class EnvironmentServiceController(val project: Project) { val terraEnvironmentService = TerraEnvironmentService.getInstance() val versionDetector = VersionDetectionService.getInstance() - fun triggerIndexing() { ProgressManager.getInstance().run(IndexEnvironmentTask(project) { triggerUiReload() diff --git a/src/main/resources/META-INF/plugin.xml b/src/main/resources/META-INF/plugin.xml index 467e2cc..b2ccde8 100644 --- a/src/main/resources/META-INF/plugin.xml +++ b/src/main/resources/META-INF/plugin.xml @@ -69,6 +69,7 @@ Introduce Minecraft 1.21.9 support and fix a few bugs +