diff --git a/.factorypath b/.factorypath deleted file mode 100644 index de37cf1d83..0000000000 --- a/.factorypath +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000000..f811f6ae6a --- /dev/null +++ b/.gitattributes @@ -0,0 +1,5 @@ +# Disable autocrlf on generated files, they always generate with LF +# Add any extra files or paths here to make git stop saying they +# are changed when only line endings change. +src/generated/**/.cache/cache text eol=lf +src/generated/**/*.json text eol=lf diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000000..236b614f70 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,24 @@ +name: Build + +on: [push, pull_request] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v4 + with: + fetch-depth: 0 + fetch-tags: true + + - name: Setup JDK 17 + uses: actions/setup-java@v4 + with: + java-version: '17' + distribution: 'temurin' + + - name: Build with Gradle + uses: gradle/actions/setup-gradle@v3 + with: + arguments: build diff --git a/.gitignore b/.gitignore index f5e6561a89..31d255050d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,18 +1,26 @@ -/bin -/build -/lib -WesterosBlocks-*.jar +# eclipse +bin +*.launch +.settings +.metadata .classpath -/eclipse -/.gradle -/.settings -/run -.DS_Store -/*_Client.launch -/*_Server.launch -/Users/ +.project + +# idea +out +*.ipr +*.iws +*.iml .idea -/.apt_generated/ -/.apt_generated_tests/ -/.project -/.factorypath + +# gradle +build +.gradle + +# other +eclipse +run +runs +run-data + +repo \ No newline at end of file diff --git a/.project b/.project deleted file mode 100644 index 26bb0813da..0000000000 --- a/.project +++ /dev/null @@ -1,34 +0,0 @@ - - - WesterosBlocks(Forge v1.18.2) - - - - - - org.eclipse.jdt.core.javabuilder - - - - - org.eclipse.buildship.core.gradleprojectbuilder - - - - - - org.eclipse.jdt.core.javanature - org.eclipse.buildship.core.gradleprojectnature - - - - 1 - - 30 - - org.eclipse.core.resources.regexFilterMatcher - node_modules|\.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__ - - - - diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index 7b016a89fb..0000000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "java.compile.nullAnalysis.mode": "automatic" -} \ No newline at end of file diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md deleted file mode 100644 index 683ec2c0ab..0000000000 --- a/CONTRIBUTING.md +++ /dev/null @@ -1,22 +0,0 @@ -When it comes to updating westerosblock.json, the update 'loop' is essentially -the same - but the stuff to be copied back into the source tree is a bit more -complicated. -Look at https://github.com/WesterosCraft/WesterosBlocks/blob/1.18.2/copyFiles.sh -for the shell script I use about 20 times an evening to transfer the generated -content from by test server directory (~/forge-1.18.2) to my source tree. - -You'll want to adjust it for yourself, but it shows the flow of what to clean up vs copy, -particularly since the newer westerosblocks.json features (like the condStates for biomes and Y coordinate limits, and the basic CTM featues like random, vertical, horizontal) -all result in changes in the set of generated model files and such. - -So my basic loop for doing westerosblocks.json relevant updates winds up looking like: -1) Update the code or westerosblocks.json -2) Run './gradlew build' -3) Copy build/libs/WesterosBlocks-6.0.Dev.jar to my test forge server mod directory (~/westeros-1.18.2/mods) -4) Start the server, and tell it to stop as soon as it's done starting (stop command) -5) Run './copyFiles.sh' to copy new generated content back to source tree -6) Run './gradlew build' again, this time to generate the full updated mod (including the generated resources) -7) Copy build/libs/WesterosBlocks-6.0.Dev to my test forge client's mod directory (~/westerosclient-1.18.2/mods) -8) Fire up test client, and look at the pretty blocks! - -Note that to make the server generate the needed files, go to config/westerosblocks/westerosblocks.toml and change blockDevMode to true \ No newline at end of file diff --git a/LICENSE b/LICENSE deleted file mode 100644 index 261eeb9e9f..0000000000 --- a/LICENSE +++ /dev/null @@ -1,201 +0,0 @@ - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/README.md b/README.md index 12ba092eaa..b421122b68 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,25 @@ -# WesterosBlocks - -WesterosBlocks is a custom mod for Minecraft Forge that adds thousands of custom blocks for use with the [WesterosCraft](https://westeroscraft.com) server. - -This mod requires the [ConnectedTexturesMod](https://www.curseforge.com/minecraft/mc-mods/ctm) as well as the [WesterosCTM](https://www.curseforge.com/minecraft/mc-mods/westerosctm) extension in order for certain textures to appear correctly. - -## Docs - -Auto-generated docs for the new CTM types WB provides are [here](https://westeroscraft.github.io/WesterosBlocks/). - -Practical examples of each CTM type can be located in the code [here](https://github.com/WesterosCraft/WesterosBlocks/tree/1.18.2/src/main/resources/assets/westerosblocks/textures/block/ctm). - -Instructions for contributing to the pack can be found [here](https://github.com/WesterosCraft/WesterosBlocks/blob/1.18.2/CONTRIBUTING.md). \ No newline at end of file + +Installation information +======= + +This template repository can be directly cloned to get you started with a new +mod. Simply create a new repository cloned from this one, by following the +instructions provided by [GitHub](https://docs.github.com/en/repositories/creating-and-managing-repositories/creating-a-repository-from-a-template). + +Once you have your clone, simply open the repository in the IDE of your choice. The usual recommendation for an IDE is either IntelliJ IDEA or Eclipse. + +If at any point you are missing libraries in your IDE, or you've run into problems you can +run `gradlew --refresh-dependencies` to refresh the local cache. `gradlew clean` to reset everything +{this does not affect your code} and then start the process again. + +Mapping Names: +============ +By default, the MDK is configured to use the official mapping names from Mojang for methods and fields +in the Minecraft codebase. These names are covered by a specific license. All modders should be aware of this +license. For the latest license text, refer to the mapping file itself, or the reference copy here: +https://github.com/NeoForged/NeoForm/blob/main/Mojang.md + +Additional Resources: +========== +Community Documentation: https://docs.neoforged.net/ +NeoForged Discord: https://discord.neoforged.net/ diff --git a/TEMPLATE_LICENSE.txt b/TEMPLATE_LICENSE.txt new file mode 100644 index 0000000000..b64bc64b6b --- /dev/null +++ b/TEMPLATE_LICENSE.txt @@ -0,0 +1,24 @@ +MIT License + +Copyright (c) 2023 NeoForged project + +This license applies to the template files as supplied by github.com/NeoForged/MDK + + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/addIgnoreStates.js b/addIgnoreStates.js deleted file mode 100644 index 8303d9c8e1..0000000000 --- a/addIgnoreStates.js +++ /dev/null @@ -1,63 +0,0 @@ -'use strict'; - -const fs = require('fs'); -const path = require('path'); - - - -function traverseDirectories(dir) { - fs.readdir(dir, function(err, files) { - if (err) { - console.error("Error reading directory: " + err); - return; - } - - - files.forEach(function(file) { - const filePath = path.join(dir, file); - - fs.stat(filePath, function(err, stat) { - if (err) { - console.error("Error stating file: " + err); - return; - } - - if (stat.isDirectory()) { - traverseDirectories(filePath); - } else if (path.extname(filePath) === ".mcmeta") { - fs.readFile(filePath, function(err, data) { - if (err) { - console.error("Error reading file: " + err); - return; - } - - const contents = JSON.parse(data.toString()); - - // Make sure extra key exists - if (!contents["animation"] && !contents?.ctm?.extra && !contents?.ctm?.proxy) { - contents["ctm"] = {...contents.ctm, extra: {}} - } - - // Ignore proxy files and files that already contain connect_to logic - if (!contents["animation"] && !contents?.ctm?.proxy && !contents?.ctm?.extra?.connect_to) { - - contents.ctm.extra.ignore_states = true - - const updatedContents = JSON.stringify(contents, null, 2); - fs.writeFile(filePath, updatedContents, function(err) { - if (err) { - console.error("Error writing file: " + err); - return; - } - console.log("Added new property to " + filePath); - }); - } - }); - } - }); - }); - }); -} - -traverseDirectories("src/main/resources/assets/westerosblocks/textures/block"); -// traverseDirectories("src/main/resources/assets/minecraft/textures/block"); diff --git a/build.gradle b/build.gradle index 130e568c90..4d41eb6177 100644 --- a/build.gradle +++ b/build.gradle @@ -1,164 +1,189 @@ -buildscript { - repositories { - maven { url = 'https://maven.minecraftforge.net' } - maven { url = 'https://repo.spongepowered.org/repository/maven-public/' } - mavenCentral() - } - dependencies { - classpath group: 'net.minecraftforge.gradle', name: 'ForgeGradle', version: '5.1.+', changing: true - classpath 'org.spongepowered:mixingradle:0.7-SNAPSHOT' - } -} -apply plugin: 'net.minecraftforge.gradle' -// Only edit below this line, the above code adds and enables the necessary things for Forge to be setup. -apply plugin: 'maven-publish' -apply plugin: 'org.spongepowered.mixin' -apply plugin: 'eclipse' - -eclipse { - project { - name = "WesterosBlocks(Forge v1.18.2)" - } -} - -// define the properties file -ext.configFile = file "build.properties" - -configFile.withReader { - def prop = new Properties() - prop.load(it) - project.ext.config = new ConfigSlurper().parse prop -} - -version = "1.18.2-${config.WesterosBlocks_version}.${System.getenv().BUILD_NUMBER ?: 'Dev'}" -group= "com.westeroscraft" // http://maven.apache.org/guides/mini/guide-naming-conventions.html -archivesBaseName = "WesterosBlocks" - -// Mojang ships Java 17 to end users in 1.18+, so your mod should target Java 17. -java.toolchain.languageVersion = JavaLanguageVersion.of(17) - -println "Java: ${System.getProperty 'java.version'}, JVM: ${System.getProperty 'java.vm.version'} (${System.getProperty 'java.vendor'}), Arch: ${System.getProperty 'os.arch'}" -minecraft { - mappings channel: 'official', version: "${config.minecraft_version}" - accessTransformer = file('src/main/resources/META-INF/accesstransformer.cfg') - runs { - client { - workingDirectory project.file('run') - property 'forge.logging.markers', 'REGISTRIES' - property 'forge.logging.console.level', 'debug' - property 'forge.enabledGameTestNamespaces', 'examplemod' - mods { - examplemod { - source sourceSets.main - } - } - } - server { - workingDirectory project.file('run') - property 'forge.logging.markers', 'REGISTRIES' - property 'forge.logging.console.level', 'debug' - // Comma-separated list of namespaces to load gametests from. Empty = all namespaces. - property 'forge.enabledGameTestNamespaces', 'examplemod' - mods { - examplemod { - source sourceSets.main - } - } - } - gameTestServer { - workingDirectory project.file('run') - property 'forge.logging.markers', 'REGISTRIES' - property 'forge.logging.console.level', 'debug' - property 'forge.enabledGameTestNamespaces', 'examplemod' - mods { - examplemod { - source sourceSets.main - } - } - } - data { - workingDirectory project.file('run') - property 'forge.logging.markers', 'REGISTRIES' - property 'forge.logging.console.level', 'debug' - args '--mod', 'examplemod', '--all', '--output', file('src/generated/resources/'), '--existing', file('src/main/resources/') - mods { - examplemod { - source sourceSets.main - } - } - } - } - -} - -// Include resources generated by data generators. -sourceSets.main.resources { srcDir 'src/generated/resources' } - -repositories { - mavenLocal() - maven { - name = "dynmap" - url = "https://repo.mikeprimm.com" - } -} - -dependencies { - minecraft "net.minecraftforge:forge:${config.minecraft_version}-${config.forge_version}" - annotationProcessor 'org.spongepowered:mixin:0.8.5:processor' - -} - -// Example for how to get properties into the manifest for reading by the runtime.. -jar { - manifest { - attributes([ - "Specification-Title": "WesterosBlocks", - "Specification-Vendor": "WesterosCraft", - "Specification-Version": "1", // We are version 1 of ourselves - "Implementation-Title": project.name, - "Implementation-Version": "${version}", - "Implementation-Vendor" :"WesterosCraft", - "Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ"), - "MixinConfigs": "westerosblocks.mixins.json" - ]) - } -} - -processResources { - with copySpec { - duplicatesStrategy = 'include' - from (sourceSets.main.resources.srcDirs) { - include 'META-INF/mods.toml' - expand 'version': project.version - } - } -} - -// Example configuration to allow publishing using the maven-publish task -// This is the preferred method to reobfuscate your jar file -jar.finalizedBy('reobfJar') -// However if you are in a multi-project build, dev time needs unobfed jar files, so you can delay the obfuscation until publishing by doing -//publish.dependsOn('reobfJar') - -publishing { - publications { - mavenJava(MavenPublication) { - artifact jar - } - } - repositories { - maven { - url "file:///${project.projectDir}/mcmodsrepo" - } - } -} - -eclipse { - afterEvaluate { - synchronizationTasks createSrgToMcp, createMcpToSrg - } -} - -mixin { - add sourceSets.main, "westerosblocks.refmap.json" -} +plugins { + id 'java-library' + id 'maven-publish' + id 'net.neoforged.moddev' version '1.0.17' +} + +tasks.named('wrapper', Wrapper).configure { + // Define wrapper values here so as to not have to always do so when updating gradlew.properties. + // Switching this to Wrapper.DistributionType.ALL will download the full gradle sources that comes with + // documentation attached on cursor hover of gradle classes and methods. However, this comes with increased + // file size for Gradle. If you do switch this to ALL, run the Gradle wrapper task twice afterwards. + // (Verify by checking gradle/wrapper/gradle-wrapper.properties to see if distributionUrl now points to `-all`) + distributionType = Wrapper.DistributionType.BIN +} + +version = mod_version +group = mod_group_id + +repositories { + mavenLocal() +} + +base { + archivesName = mod_id +} + +// Mojang ships Java 21 to end users starting in 1.20.5, so mods should target Java 21. +java.toolchain.languageVersion = JavaLanguageVersion.of(21) + +neoForge { + // Specify the version of NeoForge to use. + version = project.neo_version + + parchment { + mappingsVersion = project.parchment_mappings_version + minecraftVersion = project.parchment_minecraft_version + } + + // This line is optional. Access Transformers are automatically detected + // accessTransformers = project.files('src/main/resources/META-INF/accesstransformer.cfg') + + // Default run configurations. + // These can be tweaked, removed, or duplicated as needed. + runs { + client { + client() + + // Comma-separated list of namespaces to load gametests from. Empty = all namespaces. + systemProperty 'neoforge.enabledGameTestNamespaces', project.mod_id + } + + server { + server() + programArgument '--nogui' + systemProperty 'neoforge.enabledGameTestNamespaces', project.mod_id + } + + // This run config launches GameTestServer and runs all registered gametests, then exits. + // By default, the server will crash when no gametests are provided. + // The gametest system is also enabled by default for other run configs under the /test command. + gameTestServer { + type = "gameTestServer" + systemProperty 'neoforge.enabledGameTestNamespaces', project.mod_id + } + + data { + data() + + // example of overriding the workingDirectory set in configureEach above, uncomment if you want to use it + // gameDirectory = project.file('run-data') + + // Specify the modid for data generation, where to output the resulting resource, and where to look for existing resources. + programArguments.addAll '--mod', project.mod_id, '--all', '--output', file('src/generated/resources/').getAbsolutePath(), '--existing', file('src/main/resources/').getAbsolutePath() + } + + // applies to all the run configs above + configureEach { + // Recommended logging data for a userdev environment + // The markers can be added/remove as needed separated by commas. + // "SCAN": For mods scan. + // "REGISTRIES": For firing of registry events. + // "REGISTRYDUMP": For getting the contents of all registries. + systemProperty 'forge.logging.markers', 'REGISTRIES' + + // Recommended logging level for the console + // You can set various levels here. + // Please read: https://stackoverflow.com/questions/2031163/when-to-use-the-different-log-levels + logLevel = org.slf4j.event.Level.DEBUG + } + } + + mods { + // define mod <-> source bindings + // these are used to tell the game which sources are for which mod + // mostly optional in a single mod project + // but multi mod projects should define one per mod + "${mod_id}" { + sourceSet(sourceSets.main) + } + } +} + +// Include resources generated by data generators. +sourceSets.main.resources { srcDir 'src/generated/resources' } + +// Sets up a dependency configuration called 'localRuntime'. +// This configuration should be used instead of 'runtimeOnly' to declare +// a dependency that will be present for runtime testing but that is +// "optional", meaning it will not be pulled by dependents of this mod. +configurations { + runtimeClasspath.extendsFrom localRuntime +} + +dependencies { + // Example optional mod dependency with JEI + // The JEI API is declared for compile time use, while the full JEI artifact is used at runtime + // compileOnly "mezz.jei:jei-${mc_version}-common-api:${jei_version}" + // compileOnly "mezz.jei:jei-${mc_version}-neoforge-api:${jei_version}" + // We add the full version to localRuntime, not runtimeOnly, so that we do not publish a dependency on it + // localRuntime "mezz.jei:jei-${mc_version}-neoforge:${jei_version}" + + // Example mod dependency using a mod jar from ./libs with a flat dir repository + // This maps to ./libs/coolmod-${mc_version}-${coolmod_version}.jar + // The group id is ignored when searching -- in this case, it is "blank" + // implementation "blank:coolmod-${mc_version}:${coolmod_version}" + + // Example mod dependency using a file as dependency + // implementation files("libs/coolmod-${mc_version}-${coolmod_version}.jar") + + // Example project dependency using a sister or child project: + // implementation project(":myproject") + + // For more info: + // http://www.gradle.org/docs/current/userguide/artifact_dependencies_tutorial.html + // http://www.gradle.org/docs/current/userguide/dependency_management.html +} + +// This block of code expands all declared replace properties in the specified resource targets. +// A missing property will result in an error. Properties are expanded using ${} Groovy notation. +var generateModMetadata = tasks.register("generateModMetadata", ProcessResources) { + var replaceProperties = [ + minecraft_version : minecraft_version, + minecraft_version_range: minecraft_version_range, + neo_version : neo_version, + neo_version_range : neo_version_range, + loader_version_range : loader_version_range, + mod_id : mod_id, + mod_name : mod_name, + mod_license : mod_license, + mod_version : mod_version, + mod_authors : mod_authors, + mod_description : mod_description + ] + inputs.properties replaceProperties + expand replaceProperties + from "src/main/templates" + into "build/generated/sources/modMetadata" +} +// Include the output of "generateModMetadata" as an input directory for the build +// this works with both building through Gradle and the IDE. +sourceSets.main.resources.srcDir generateModMetadata +// To avoid having to run "generateModMetadata" manually, make it run on every project reload +neoForge.ideSyncTask generateModMetadata + +// Example configuration to allow publishing using the maven-publish plugin +publishing { + publications { + register('mavenJava', MavenPublication) { + from components.java + } + } + repositories { + maven { + url "file://${project.projectDir}/repo" + } + } +} + +tasks.withType(JavaCompile).configureEach { + options.encoding = 'UTF-8' // Use the UTF-8 charset for Java compilation +} + +// IDEA no longer automatically downloads sources/javadoc jars for dependencies, so we need to explicitly enable the behavior. +idea { + module { + downloadSources = true + downloadJavadoc = true + } +} diff --git a/build.properties b/build.properties deleted file mode 100644 index 9bd4ad6fe6..0000000000 --- a/build.properties +++ /dev/null @@ -1,6 +0,0 @@ -minecraft_version=1.18.2 -forge_version=40.2.1 -WesterosBlocks_version=6.0 -WesterosBlocks_extversion=-beta-13 -Dynmap_version=3.4 -Dynmap_extversion= diff --git a/convertWB.js b/convertWB.js deleted file mode 100644 index 9bab3e0cfe..0000000000 --- a/convertWB.js +++ /dev/null @@ -1,88 +0,0 @@ -'use strict' - -const fs = require('fs'); - -let rawdata = fs.readFileSync('./WesterosBlocks.json'); -let content = JSON.parse(rawdata); -let newcontent = { blocks: [] }; - -function makeName(label) { - label = label.toLowerCase(); - label = label.replace(/\s+/g,"_"); - return label.replace(/[^0-9a-z_]/gi, '') -} -const skippedFields = [ 'blockName', 'blockID', 'blockIDs', 'subBlocks', 'modelBlockMeta' ]; -const skippedSubBlockFields = [ 'meta' ]; - -let ids = new Set(); - -content.blocks.forEach(block => { - // If stack, build stack data and drop extra subblocks - if (block.blockType.includes("-stack")) { - let first = block.subBlocks[0]; - first.stack = []; - block.subBlocks.forEach(subblock => { - let rec = { }; - if (subblock.textures) rec.textures = subblock.textures; - if (subblock.boundingBox) rec.boundingBox = subblock.boundingBox; - if (subblock.cuboids) rec.cuboids = subblock.cuboids; - if (subblock.collisionBoxes) rec.collisionBoxes = subblock.collisionBoxes; - delete subblock.textures; - delete subblock.boundingBox; - delete subblock.cuboids; - delete subblock.collisionBoxes; - first.stack.push(rec); - }); - block.subBlocks = [ first ]; - } - block.subBlocks.forEach(subblock => { - let newblock = { blockName: makeName(subblock.label) }; - let cnt = 1; - while (ids.has(newblock.blockName)) { - cnt++; - newblock.blockName = makeName(subblock.label) + cnt; - } - ids.add(newblock.blockName); - Object.keys(block).forEach(k => { - if (skippedFields.includes(k)) return; - newblock[k] = block[k]; - }); - Object.keys(subblock).forEach(k => { - if (skippedSubBlockFields.includes(k)) return; - newblock[k] = subblock[k]; - }); - newblock.legacyBlockID = block.blockName + ":" + subblock.meta; - subblock.newName = newblock.blockName; // Remember new name - - newcontent.blocks.push(newblock); - }); -}); -// Second pass for sake of modelBlockNames -content.blocks.forEach(block => { - if (block.modelBlockName) { - let modelLegacyID = block.modelBlockName + ":" + block.modelBlockMeta; - let model = newcontent.blocks.find(r => r.legacyBlockID == modelLegacyID); - let modelID; - if (model) { - modelID = model.blockName; - } - else if (block.modelBlockName.startsWith("minecraft:")) { - if (block.modelBlockName == 'minecraft:hardened_clay') - modelID = 'minecraft:terracotta'; - else if (block.modelBlockName == 'minecraft:double_stone_slab') - modelID = 'minecraft:stone_slab'; - else - modelID = block.modelBlockName; - } - else { - console.log(`Bad modelBlockName ${block.modelBlockName} for ${block.blockName}`); - } - if (modelID) { - let newrec = newcontent.blocks.find(r => r.blockName == block.subBlocks[0].newName); - newrec.modelBlockName = modelID; - } - } -}); - -console.log(JSON.stringify(newcontent, null, ' ')); - diff --git a/convertWarps.js b/convertWarps.js deleted file mode 100644 index 1c0b8b36e5..0000000000 --- a/convertWarps.js +++ /dev/null @@ -1,26 +0,0 @@ -'use strict'; - -const fs = require('fs'); - -const worldmap = { - "2da99365-09e1-4c4c-8234-e0cc408de7e1": "wc:westeros", - "529971ea-d2be-4409-a3d0-43b09890e844": "wc:playground", - "0040c34c-8b08-4a1c-a131-0344083fcd4f": "wc:repository", -}; - -function escape(s) { - -} -let rawdata = fs.readFileSync('general.json'); -let config = JSON.parse(rawdata); -let warps = config.warps; -console.log("{"); -console.log("\twarps: {"); -Object.keys(warps).forEach(warp => { - let warpdef = warps[warp]; - let world = worldmap[warpdef.world]; - if (!world) return; - console.log(`\t\t${JSON.stringify(warp)}: { dim: "${world}", x: ${Math.round(warpdef.x)}, y: ${Math.round(warpdef.y)}, z: ${Math.round(warpdef.z)}, time: ${Date.now()}L, xRot: ${warpdef.rotx}f, yRot: ${warpdef.roty}f }`); -}); -console.log("\t}"); -console.log("}"); diff --git a/copyFiles.sh b/copyFiles.sh deleted file mode 100755 index 25a686c6eb..0000000000 --- a/copyFiles.sh +++ /dev/null @@ -1,14 +0,0 @@ -rm -r -f src/main/resources/assets/westerosblocks/models/block/generated -rm -r -f src/main/resources/data -mkdir -p src/main/resources/assets/westerosblocks/lang -mkdir -p src/main/resources/assets/westerosblocks/models/block/generated -mkdir -p src/main/resources/assets/westerosblocks/models/item -mkdir -p src/main/resources/assets/westerosblocks/blockstates -mkdir -p src/main/resources/data/minecraft/tags/blocks -mkdir -p src/main/resources/data/westerosblocks/tags/blocks -cp ~/westeros-1.18.2/config/westerosblocks/assets/westerosblocks/lang/*.json src/main/resources/assets/westerosblocks/lang -cp ~/westeros-1.18.2/config/westerosblocks/assets/westerosblocks/blockstates/*.json src/main/resources/assets/westerosblocks/blockstates -cp -R ~/westeros-1.18.2/config/westerosblocks/assets/westerosblocks/models/block/generated/. src/main/resources/assets/westerosblocks/models/block/generated -cp ~/westeros-1.18.2/config/westerosblocks/assets/westerosblocks/models/item//*.json src/main/resources/assets/westerosblocks/models/item -cp ~/westeros-1.18.2/config/westerosblocks/data/minecraft/tags/blocks/*.json src/main/resources/data/minecraft/tags/blocks -cp ~/westeros-1.18.2/config/westerosblocks/data/westerosblocks/tags/blocks/*.json src/main/resources/data/westerosblocks/tags/blocks diff --git a/copyFilesPizza.sh b/copyFilesPizza.sh deleted file mode 100644 index cb1876b401..0000000000 --- a/copyFilesPizza.sh +++ /dev/null @@ -1,14 +0,0 @@ -rm -r -f src/main/resources/assets/westerosblocks/models/block/generated -rm -r -f src/main/resources/data -mkdir -p src/main/resources/assets/westerosblocks/lang -mkdir -p src/main/resources/assets/westerosblocks/models/block/generated -mkdir -p src/main/resources/assets/westerosblocks/models/item -mkdir -p src/main/resources/assets/westerosblocks/blockstates -mkdir -p src/main/resources/data/minecraft/tags/blocks -mkdir -p src/main/resources/data/westerosblocks/tags/blocks -cp ../../Servers/wc-local-1.18.2/config/westerosblocks/assets/westerosblocks/lang/*.json ../WesterosBlocks/src/main/resources/assets/westerosblocks/lang -cp ../../Servers/wc-local-1.18.2/config/westerosblocks/assets/westerosblocks/blockstates/*.json ../WesterosBlocks/src/main/resources/assets/westerosblocks/blockstates -cp -R ../../Servers/wc-local-1.18.2/config/westerosblocks/assets/westerosblocks/models/block/generated/. ../WesterosBlocks/src/main/resources/assets/westerosblocks/models/block/generated -cp ../../Servers/wc-local-1.18.2/config/westerosblocks/assets/westerosblocks/models/item//*.json ../WesterosBlocks/src/main/resources/assets/westerosblocks/models/item -cp ../../Servers/wc-local-1.18.2/config/westerosblocks/data/minecraft/tags/blocks/*.json ../WesterosBlocks/src/main/resources/data/minecraft/tags/blocks -cp ../../Servers/wc-local-1.18.2/config/westerosblocks/data/westerosblocks/tags/blocks/*.json ../WesterosBlocks/src/main/resources/data/westerosblocks/tags/blocks diff --git a/data.snbt b/data.snbt deleted file mode 100644 index d7322740e2..0000000000 --- a/data.snbt +++ /dev/null @@ -1,3451 +0,0 @@ -{ - warps: { - "contests": { dim: "wc:playground", x: -1242, y: 20, z: -366, time: 1696965111170L, xRot: 12.000132f, yRot: -271.63876f } - "Wydman'sHeil": { dim: "wc:westeros", x: 7939, y: 94, z: 1671, time: 1696965111171L, xRot: 27.654705f, yRot: -121.15857f } - "greenwing": { dim: "wc:westeros", x: 4925, y: 58, z: -5337, time: 1696965111171L, xRot: -5.40003f, yRot: -101.09843f } - "ocfish7": { dim: "wc:westeros", x: 5139, y: 46, z: -2842, time: 1696965111171L, xRot: 37.64997f, yRot: 28.205475f } - "rlhamlet4": { dim: "wc:westeros", x: -6059, y: 55, z: 16097, time: 1696965111172L, xRot: 25.200014f, yRot: 88.58746f } - "snakewoodvillage": { dim: "wc:westeros", x: 6599, y: 40, z: 2276, time: 1696965111182L, xRot: -4.3491273f, yRot: 201.88281f } - "buckle": { dim: "wc:westeros", x: -446, y: 47, z: 6954, time: 1696965111182L, xRot: -2.9459715f, yRot: 223.2468f } - "bushymill": { dim: "wc:westeros", x: -552, y: 46, z: 13041, time: 1696965111184L, xRot: -15.750002f, yRot: -184.69026f } - "parchmentsseptry": { dim: "wc:westeros", x: 8640, y: 37, z: 15007, time: 1696965111185L, xRot: -6.1500654f, yRot: 262.98553f } - "inchfa3": { dim: "wc:westeros", x: -1217, y: 51, z: 13752, time: 1696965111186L, xRot: 13.650032f, yRot: 163.81784f } - "hogghall": { dim: "wc:westeros", x: 2772, y: 45, z: 10199, time: 1696965111186L, xRot: 4.950059f, yRot: -269.3611f } - "dgsheepfarm3": { dim: "wc:westeros", x: 7029, y: 73, z: 188, time: 1696965111186L, xRot: 40.183384f, yRot: -3.9844246f } - "Gonx": { dim: "wc:playground", x: -425, y: 21, z: 1067, time: 1696965111186L, xRot: 8.501816f, yRot: 178.3464f } - "WHSewers": { dim: "wc:westeros", x: 2398, y: 70, z: -2615, time: 1696965111187L, xRot: 5.250006f, yRot: -174.01752f } - "baelorsdeep": { dim: "wc:westeros", x: 2551, y: 4, z: 13235, time: 1696965111187L, xRot: 4.200115f, yRot: 88.25f } - "wendwatch1": { dim: "wc:westeros", x: 6825, y: 73, z: 13399, time: 1696965111188L, xRot: 19.80004f, yRot: -181.7093f } - "bbhamlet3": { dim: "wc:westeros", x: -1224, y: 40, z: 15906, time: 1696965111188L, xRot: 0.45005634f, yRot: 240.11755f } - "ofhf1": { dim: "wc:westeros", x: -5440, y: 79, z: 19770, time: 1696965111188L, xRot: 15.450007f, yRot: -270.30774f } - "1-Type\"/warp_map\"ForMapOfWarps": { dim: "wc:playground", x: 84, y: 91, z: -332, time: 1696965111188L, xRot: -3.6000087f, yRot: 179.91727f } - "hornhilltown3": { dim: "wc:westeros", x: -3693, y: 130, z: 20126, time: 1696965111188L, xRot: 39.899994f, yRot: 181.65979f } - "ywmine1": { dim: "wc:westeros", x: -458, y: 63, z: 22081, time: 1696965111200L, xRot: 25.199884f, yRot: -321.8123f } - "thornhill": { dim: "wc:westeros", x: -3692, y: 55, z: -11129, time: 1696965111200L, xRot: 6.74997f, yRot: -1.4963155f } - "toth": { dim: "wc:westeros", x: 3294, y: 137, z: 13393, time: 1696965111201L, xRot: -0.30000308f, yRot: -88.79061f } - "lordharrowaystown": { dim: "wc:westeros", x: 1383, y: 38, z: 7835, time: 1696965111201L, xRot: 7.799944f, yRot: 310.4906f } - "sshunt": { dim: "wc:westeros", x: 3007, y: 50, z: -246, time: 1696965111201L, xRot: 30f, yRot: 51.83789f } - "torentine": { dim: "wc:westeros", x: -3969, y: 35, z: 23296, time: 1696965111201L, xRot: 0.90001893f, yRot: -180.89786f } - "bucklerbay": { dim: "wc:westeros", x: -7390, y: 37, z: 17109, time: 1696965111202L, xRot: -5.8500032f, yRot: 315.64917f } - "bbhamlet5": { dim: "wc:westeros", x: -1377, y: 44, z: 16233, time: 1696965111202L, xRot: 3.000056f, yRot: -270.0367f } - "klwarriorsept": { dim: "wc:westeros", x: 3200, y: 89, z: 13186, time: 1696965111202L, xRot: -26.999996f, yRot: -87.09151f } - "hellholt": { dim: "wc:westeros", x: -196, y: 110, z: 24857, time: 1696965111203L, xRot: 12.3000765f, yRot: 90.92441f } - "nonos": { dim: "wc:playground", x: -1127, y: 21, z: 1161, time: 1696965111203L, xRot: 6.5999722f, yRot: -6.690853f } - "dwmmill1": { dim: "wc:westeros", x: -1795, y: 40, z: -7971, time: 1696965111203L, xRot: 8.466455f, yRot: -189.03935f } - "harlawhall": { dim: "wc:westeros", x: -5618, y: 37, z: 5583, time: 1696965111203L, xRot: 7.199996f, yRot: -276.90274f } - "nsmarcher3": { dim: "wc:westeros", x: -1224, y: 159, z: 21026, time: 1696965111203L, xRot: -5.250032f, yRot: 65.87878f } - "flotsam": { dim: "wc:westeros", x: -2065, y: 40, z: 5222, time: 1696965111204L, xRot: 16.799732f, yRot: 147.44089f } - "cnspec": { dim: "wc:westeros", x: 5611, y: 103, z: 18940, time: 1696965111204L, xRot: 9.749965f, yRot: -258.4753f } - "ginalley": { dim: "wc:westeros", x: 3212, y: 52, z: 12936, time: 1696965111204L, xRot: -5.8499823f, yRot: -270.6917f } - "runestone": { dim: "wc:westeros", x: 8945, y: 57, z: 5133, time: 1696965111204L, xRot: -6.2585964f, yRot: -78.008606f } - "sshf1": { dim: "wc:westeros", x: -9739, y: 69, z: -6621, time: 1696965111204L, xRot: -9.750017f, yRot: -239.70001f } - "dwm1": { dim: "wc:westeros", x: -2370, y: 44, z: -8823, time: 1696965111204L, xRot: 13.90833f, yRot: -92.70516f } - "lakeferry": { dim: "wc:westeros", x: -5440, y: 35, z: -7476, time: 1696965111216L, xRot: 1.050019f, yRot: 243.61517f } - "newtest": { dim: "wc:playground", x: 49, y: 21, z: 105, time: 1696965111216L, xRot: 2.9999795f, yRot: 183.00291f } - "wfsheepfarm3": { dim: "wc:westeros", x: -712, y: 76, z: -8181, time: 1696965111217L, xRot: 46.049946f, yRot: -45.026012f } - "lemonwood": { dim: "wc:westeros", x: 7936, y: 46, z: 25561, time: 1696965111217L, xRot: 2.399721f, yRot: 359.9734f } - "rillshunting1": { dim: "wc:westeros", x: -5598, y: 59, z: -7708, time: 1696965111217L, xRot: -4.0499253f, yRot: -314.08362f } - "wfbattlementsgate": { dim: "wc:westeros", x: -1179, y: 79, z: -8615, time: 1696965111218L, xRot: 15.449984f, yRot: 1.1743642f } - "mooreseptry": { dim: "wc:westeros", x: 8658, y: 45, z: 4225, time: 1696965111218L, xRot: 0.11542440950870514f, yRot: 2.4333672523498535f } - "gradient": { dim: "wc:playground", x: -1090, y: 21, z: 909, time: 1696965111218L, xRot: 17.550074f, yRot: -0.5554199f } - "highhermitage": { dim: "wc:westeros", x: -3321, y: 74, z: 23377, time: 1696965111218L, xRot: 31.04985f, yRot: 244.97652f } - "ywtown": { dim: "wc:westeros", x: 513, y: 38, z: 22312, time: 1696965111218L, xRot: -8.699864f, yRot: -219.66713f } - "rmquarry1": { dim: "wc:westeros", x: 6957, y: 69, z: 7322, time: 1696965111219L, xRot: 11.549777f, yRot: -175.99765f } - "needlebridge": { dim: "wc:westeros", x: 5831, y: 42, z: 2885, time: 1696965111219L, xRot: -4.34912f, yRot: -107.41728f } - "sfhamlet2": { dim: "wc:westeros", x: -4100, y: 40, z: 23558, time: 1696965111219L, xRot: 5.099998f, yRot: 179.22241f } - "tawney": { dim: "wc:westeros", x: -6796, y: 36, z: 4926, time: 1696965111219L, xRot: -10.178153f, yRot: -287.69415f } - "cnh2": { dim: "wc:westeros", x: 6384, y: 87, z: 19054, time: 1696965111219L, xRot: 26.249973f, yRot: -174.15463f } - "newkeepquarry": { dim: "wc:westeros", x: 2732, y: 82, z: 1490, time: 1696965111219L, xRot: 39.299957f, yRot: 330.30338f } - "fmwh": { dim: "wc:westeros", x: -755, y: 76, z: 5949, time: 1696965111220L, xRot: 88.95f, yRot: 91.483154f } - "coldglen": { dim: "wc:westeros", x: -2258, y: 66, z: -6116, time: 1696965111220L, xRot: 2.7000077f, yRot: 299.82883f } - "pacmaneast": { dim: "wc:playground", x: -535, y: 21, z: 674, time: 1696965111220L, xRot: 4.3499975f, yRot: -268.44836f } - "dunstonburytest": { dim: "wc:playground", x: -955, y: 20, z: -1124, time: 1696965111220L, xRot: 54.14992f, yRot: -263.11f } - "eyriemule": { dim: "wc:westeros", x: 3848, y: 136, z: 6144, time: 1696965111220L, xRot: 6.2999935f, yRot: -331.19672f } - "arena": { dim: "wc:playground", x: -702, y: 25, z: 355, time: 1696965111220L, xRot: 11.249923f, yRot: 90.44978f } - "klmap": { dim: "wc:playground", x: 159, y: 55, z: -1063, time: 1696965111220L, xRot: -7.4999166f, yRot: 180.06616f } - "stonemill": { dim: "wc:westeros", x: -2156, y: 36, z: 8510, time: 1696965111220L, xRot: -11.850956f, yRot: -253.02052f } - "MountHelpme": { dim: "wc:westeros", x: -2924, y: 132, z: 12191, time: 1696965111221L, xRot: 20.399973f, yRot: 280.35168f } - "codd": { dim: "wc:westeros", x: -7398, y: 47, z: 4266, time: 1696965111221L, xRot: -17.69971f, yRot: -102.597015f } - "pfsept": { dim: "wc:westeros", x: 2266, y: 132, z: 18213, time: 1696965111221L, xRot: -11.441534f, yRot: -119.85808f } - "thamfast": { dim: "wc:westeros", x: 394, y: 72, z: 18971, time: 1696965111221L, xRot: 34.79996f, yRot: -258.14648f } - "ywhamlet2": { dim: "wc:westeros", x: -5538, y: 59, z: 7064, time: 1696965111221L, xRot: -44.70003f, yRot: 178.79494f } - "tallyhill": { dim: "wc:westeros", x: 7296, y: 67, z: 14708, time: 1696965111221L, xRot: 0.29986152f, yRot: 224.33493f } - "ahholdfast2": { dim: "wc:westeros", x: -1761, y: 46, z: 9605, time: 1696965111221L, xRot: 1.3500038f, yRot: 53.60824f } - "hove": { dim: "wc:westeros", x: -7800, y: 38, z: -360, time: 1696965111221L, xRot: -1.0527883f, yRot: -207.65405f } - "fayview": { dim: "wc:westeros", x: 7647, y: 38, z: -3833, time: 1696965111222L, xRot: 3.0000012f, yRot: -316.57672f } - "ladybright": { dim: "wc:westeros", x: -3043, y: 49, z: 26450, time: 1696965111222L, xRot: -3.4503109455108643f, yRot: 73.61771392822266f } - "lionsheadsquare": { dim: "wc:westeros", x: -7091, y: 43, z: 12120, time: 1696965111222L, xRot: 4.0499706f, yRot: -269.13397f } - "deepden": { dim: "wc:westeros", x: -3908, y: 68, z: 12092, time: 1696965111222L, xRot: -13.0912f, yRot: -149.99243f } - "rocktest": { dim: "wc:playground", x: 431, y: 32, z: -1257, time: 1696965111233L, xRot: 15.873249f, yRot: -177.57306f } - "torches": { dim: "wc:westeros", x: 4801, y: 44, z: -16061, time: 1696965111233L, xRot: 6.2998934f, yRot: 185.36678f } - "saltcliffe": { dim: "wc:westeros", x: -8736, y: 70, z: 6531, time: 1696965111233L, xRot: 21.149609f, yRot: -9.458984f } - "rhtown": { dim: "wc:westeros", x: 9091, y: 86, z: 18449, time: 1696965111233L, xRot: -27.551353f, yRot: 271.55154f } - "skyreach": { dim: "wc:westeros", x: -1881, y: 97, z: 22246, time: 1696965111234L, xRot: -23.549952f, yRot: 116.51172f } - "clawisle": { dim: "wc:westeros", x: 9955, y: 34, z: 8762, time: 1696965111234L, xRot: 7.5000534f, yRot: 312.26935f } - "hastwyck": { dim: "wc:westeros", x: -8256, y: 42, z: 19924, time: 1696965111234L, xRot: 17.681087f, yRot: 177.3235f } - "ballhamlet1": { dim: "wc:westeros", x: -5922, y: 43, z: 18875, time: 1696965111234L, xRot: -5.8440223f, yRot: -315.717f } - "whisperingwillow": { dim: "wc:westeros", x: -5586, y: 45, z: 15565, time: 1696965111234L, xRot: 6.000014f, yRot: -173.201f } - "jackwood": { dim: "wc:westeros", x: -5252, y: 75, z: -7538, time: 1696965111234L, xRot: -3.6094544f, yRot: 245.83759f } - "aberhold": { dim: "wc:westeros", x: -2681, y: 39, z: -6356, time: 1696965111234L, xRot: -1.0498537f, yRot: 95.194336f } - "SevenOaks": { dim: "wc:westeros", x: -7694, y: 39, z: 16480, time: 1696965111235L, xRot: -13.076689f, yRot: -173.63898f } - "lymansferry": { dim: "wc:westeros", x: -7119, y: 39, z: 20378, time: 1696965111235L, xRot: -5.8247066f, yRot: 192.31454f } - "BlackhavenHm2": { dim: "wc:westeros", x: 3014, y: 70, z: 19846, time: 1696965111235L, xRot: -5.099853f, yRot: -294.29962f } - "oldstonebridgeinn": { dim: "wc:westeros", x: 4671, y: 47, z: 12245, time: 1696965111235L, xRot: -5.619159f, yRot: -131.33853f } - "tumbledowntower": { dim: "wc:westeros", x: -1746, y: 40, z: -9127, time: 1696965111235L, xRot: 22.799965f, yRot: -81.75606f } - "dorrenswatch": { dim: "wc:westeros", x: 3214, y: 69, z: -5387, time: 1696965111235L, xRot: 0.29985827f, yRot: 0.7281189f } - "naggasribs": { dim: "wc:westeros", x: -8164, y: 65, z: 5060, time: 1696965111235L, xRot: -22.220417f, yRot: -137.86241f } - "dgq3": { dim: "wc:westeros", x: 6377, y: 70, z: 1258, time: 1696965111236L, xRot: 47.903755f, yRot: 190.4015f } - "deepwoodmotte": { dim: "wc:westeros", x: -4552, y: 84, z: -10687, time: 1696965111236L, xRot: -20.54982f, yRot: -0.89675903f } - "condon": { dim: "wc:westeros", x: 572, y: 43, z: -5831, time: 1696965111236L, xRot: 1.9499336f, yRot: -20.701904f } - "fwh3": { dim: "wc:westeros", x: -4536, y: 45, z: 14220, time: 1696965111236L, xRot: -14.250036f, yRot: 179.55008f } - "hornhillv8": { dim: "wc:westeros", x: -3791, y: 135, z: 20242, time: 1696965111236L, xRot: 30.749952f, yRot: -321.89038f } - "maegors": { dim: "wc:westeros", x: 3401, y: 123, z: 13444, time: 1696965111236L, xRot: -39.149975f, yRot: -190.94049f } - "overlookinn": { dim: "wc:westeros", x: 2521, y: 44, z: -12660, time: 1696965111236L, xRot: -17.099953f, yRot: -59.700085f } - "lthf3": { dim: "wc:westeros", x: -532, y: 64, z: 16237, time: 1696965111237L, xRot: 32.399952f, yRot: -186.59995f } - "dontforgetthisisntdone": { dim: "wc:westeros", x: -1141, y: 96, z: -9282, time: 1696965111237L, xRot: 55.912243f, yRot: -105.61731f } - "sunderly": { dim: "wc:westeros", x: -8440, y: 45, z: 6769, time: 1696965111237L, xRot: 0.45002764f, yRot: -89.998505f } - "fthc2": { dim: "wc:westeros", x: 3525, y: 45, z: 15579, time: 1696965111237L, xRot: -15.899956f, yRot: -135.77751f } - "wfmills": { dim: "wc:westeros", x: -1347, y: 96, z: -8212, time: 1696965111237L, xRot: 51.9f, yRot: -226.52548f } - "wall": { dim: "wc:westeros", x: 3195, y: 46, z: -16110, time: 1696965111237L, xRot: -48.59825f, yRot: -178.87749f } - "blackcrown": { dim: "wc:westeros", x: -9616, y: 55, z: 22537, time: 1696965111237L, xRot: -4.650017f, yRot: 312.0668f } - "rosby": { dim: "wc:westeros", x: 4174, y: 47, z: 12476, time: 1696965111238L, xRot: 0.23016521f, yRot: 77.94141f } - "mh1": { dim: "wc:westeros", x: -5170, y: 75, z: 9519, time: 1696965111238L, xRot: 8.549996f, yRot: 129.55464f } - "highpoint": { dim: "wc:westeros", x: -2644, y: 170, z: -9990, time: 1696965111238L, xRot: 12.14998f, yRot: -114.89968f } - "capekraken": { dim: "wc:westeros", x: -4992, y: 44, z: -1, time: 1696965111238L, xRot: 11.400012f, yRot: 8.849579f } - "woolstead": { dim: "wc:westeros", x: 4694, y: 34, z: -5215, time: 1696965111238L, xRot: 23.999987f, yRot: 359.70206f } - "baelish": { dim: "wc:westeros", x: 7655, y: 48, z: 642, time: 1696965111238L, xRot: 17.999985f, yRot: -94.78964f } - "antlers": { dim: "wc:westeros", x: 4161, y: 89, z: 10050, time: 1696965111238L, xRot: 1.800004243850708f, yRot: -179.72006225585938f } - "bbhamlet1": { dim: "wc:westeros", x: -1111, y: 37, z: 15392, time: 1696965111238L, xRot: -1.050083f, yRot: -4.2772827f } - "fthc3": { dim: "wc:westeros", x: 2260, y: 40, z: 15959, time: 1696965111239L, xRot: 9.299992f, yRot: -4.0925293f } - "sshf2": { dim: "wc:westeros", x: -9516, y: 74, z: -7165, time: 1696965111249L, xRot: -11.850001f, yRot: -246.44951f } - "cobblecover": { dim: "wc:westeros", x: -7302, y: 44, z: 16183, time: 1696965111250L, xRot: -3.9000165f, yRot: -92.34712f } - "oldantlers": { dim: "wc:playground", x: -631, y: 28, z: -546, time: 1696965111250L, xRot: -12.450009f, yRot: -268.94934f } - "corpselake": { dim: "wc:westeros", x: -8649, y: 95, z: 5959, time: 1696965111250L, xRot: -15.299997f, yRot: 183.29591f } - "cuyholdfast": { dim: "wc:westeros", x: -6301, y: 62, z: 24968, time: 1696965111250L, xRot: 13.950085f, yRot: -176.9483f } - "pvptest": { dim: "wc:playground", x: -836, y: 21, z: 187, time: 1696965111251L, xRot: 3.2999349f, yRot: 3.9001937f } - "blackpool": { dim: "wc:westeros", x: -451, y: 66, z: -5307, time: 1696965111251L, xRot: 3.6656854152679443f, yRot: 178.70899963378906f } - "marton": { dim: "wc:westeros", x: -5253, y: 46, z: -1284, time: 1696965111251L, xRot: -1.9066459f, yRot: -341.17157f } - "sharp": { dim: "wc:westeros", x: -8643, y: 42, z: 5616, time: 1696965111251L, xRot: -18.299978f, yRot: -17.453888f } - "bb": { dim: "wc:westeros", x: -1042, y: 36, z: 15471, time: 1696965111251L, xRot: 0.1500086f, yRot: -90.79113f } - "crakehall": { dim: "wc:westeros", x: -8137, y: 42, z: 14469, time: 1696965111251L, xRot: -14.546806f, yRot: -57.741776f } - "weepingtower": { dim: "wc:westeros", x: 7083, y: 37, z: 20685, time: 1696965111251L, xRot: -16.800018f, yRot: -335.72638f } - "fogmere": { dim: "wc:westeros", x: 7485, y: 60, z: 15978, time: 1696965111252L, xRot: 17.099998f, yRot: -72.21538f } - "chains": { dim: "wc:westeros", x: -1637, y: 42, z: -6131, time: 1696965111252L, xRot: -7.650002f, yRot: 43.177647f } - "wbhf6": { dim: "wc:westeros", x: -5991, y: 68, z: 16295, time: 1696965111252L, xRot: 64.19999f, yRot: 349.88754f } - "tobhomotts": { dim: "wc:westeros", x: 2453, y: 73, z: 13169, time: 1696965111252L, xRot: -33.89995f, yRot: -268.74335f } - "darry": { dim: "wc:westeros", x: 2116, y: 39, z: 7918, time: 1696965111252L, xRot: 1.8810883f, yRot: 277.98563f } - "byrchquarry": { dim: "wc:westeros", x: 3970, y: 44, z: 11703, time: 1696965111252L, xRot: 51.302517f, yRot: -173.46008f } - "brewer": { dim: "wc:westeros", x: 2878, y: 48, z: 12373, time: 1696965111252L, xRot: 3.9001002f, yRot: -1.680376f } - "bbholdfast2": { dim: "wc:westeros", x: -1260, y: 46, z: 16062, time: 1696965111253L, xRot: -3.4502196f, yRot: 271.15894f } - "whyisthishere": { dim: "wc:playground", x: -1038, y: 21, z: -336, time: 1696965111253L, xRot: 0.45001125f, yRot: -274.79916f } - "parchmentshf3": { dim: "wc:westeros", x: 8561, y: 48, z: 14969, time: 1696965111253L, xRot: 2.4000726f, yRot: 258.77924f } - "molestown": { dim: "wc:westeros", x: 3270, y: 47, z: -15698, time: 1696965111253L, xRot: 0.1497121f, yRot: -42.150505f } - "stonedoor": { dim: "wc:westeros", x: 1432, y: 48, z: -16024, time: 1696965111253L, xRot: -10.800031f, yRot: 205.76723f } - "inchfield": { dim: "wc:westeros", x: -1142, y: 45, z: 14225, time: 1696965111253L, xRot: 7.649946f, yRot: 95.85855f } - "moorecabin1": { dim: "wc:westeros", x: 8792, y: 40, z: 3811, time: 1696965111253L, xRot: -20.416708f, yRot: -118.05588f } - "tudbury": { dim: "wc:westeros", x: 6391, y: 35, z: 21020, time: 1696965111253L, xRot: -2.1000338f, yRot: 269.6439f } - "harrenhalparkour": { dim: "wc:westeros", x: 1901, y: 47, z: 9219, time: 1696965111254L, xRot: 5.759484f, yRot: 267.32455f } - "nshf": { dim: "wc:westeros", x: -2013, y: 81, z: 20669, time: 1696965111254L, xRot: 20.39999f, yRot: -349.1716f } - "redforttown": { dim: "wc:westeros", x: 5854, y: 50, z: 6395, time: 1696965111254L, xRot: 30.753174f, yRot: -1.6840931f } - "yarwyck": { dim: "wc:westeros", x: -5365, y: 63, z: 7376, time: 1696965111254L, xRot: 0.59995747f, yRot: -64.37305f } - "lancewood": { dim: "wc:westeros", x: -3306, y: 61, z: 7981, time: 1696965111254L, xRot: -1.8295329809188843f, yRot: -33.91456604003906f } - "griffinstown": { dim: "wc:westeros", x: 6277, y: 51, z: 17305, time: 1696965111254L, xRot: 2.3999991f, yRot: 66.04016f } - "playground": { dim: "wc:playground", x: -988, y: 21, z: -319, time: 1696965111254L, xRot: -0.45000577f, yRot: -2.0993676f } - "mulberry": { dim: "wc:westeros", x: -2077, y: 50, z: 14437, time: 1696965111254L, xRot: 11.099978f, yRot: -299.53284f } - "ravenwood": { dim: "wc:westeros", x: 6316, y: 49, z: -5619, time: 1696965111255L, xRot: 8.850065f, yRot: 185.24962f } - "wfc": { dim: "wc:westeros", x: -1105, y: 68, z: -8542, time: 1696965111255L, xRot: 39.899967f, yRot: -272.11594f } - "sghamlet2": { dim: "wc:westeros", x: -3947, y: 59, z: 4569, time: 1696965111255L, xRot: 12.449906f, yRot: 1.0246277f } - "siegetest": { dim: "wc:playground", x: -763, y: 21, z: 951, time: 1696965111255L, xRot: -5.3999953f, yRot: -179.0546f } - "camden": { dim: "wc:westeros", x: 548, y: 52, z: 18356, time: 1696965111255L, xRot: -8.550001f, yRot: 175.68668f } - "nshamlet1": { dim: "wc:westeros", x: 1993, y: 50, z: 3615, time: 1696965111255L, xRot: 24.59993f, yRot: 191.45573f } - "oldgate": { dim: "wc:westeros", x: 2903, y: 43, z: 12618, time: 1696965111255L, xRot: 7.7999687f, yRot: -13.745392f } - "grassfieldkeep": { dim: "wc:westeros", x: 1380, y: 64, z: 16186, time: 1696965111255L, xRot: -28.047817f, yRot: -41.838634f } - "lth1": { dim: "wc:westeros", x: -440, y: 57, z: 16533, time: 1696965111255L, xRot: 34.19998f, yRot: -183.6554f } - "oldstones": { dim: "wc:westeros", x: -1525, y: 39, z: 5579, time: 1696965111267L, xRot: -16.800308f, yRot: 101.15259f } - "runnybrook": { dim: "wc:westeros", x: -7690, y: 41, z: 19971, time: 1696965111267L, xRot: 15.449949f, yRot: -19.630981f } - "donnigerq1": { dim: "wc:westeros", x: 6376, y: 70, z: 1257, time: 1696965111267L, xRot: 27.150007f, yRot: 18.922092f } - "failwood": { dim: "wc:westeros", x: 5226, y: 74, z: 16228, time: 1696965111267L, xRot: 4.5891085f, yRot: -139.82324f } - "haystackhall3": { dim: "wc:westeros", x: 6495, y: 44, z: 15311, time: 1696965111267L, xRot: 9.749967f, yRot: -201.99838f } - "redding": { dim: "wc:westeros", x: -3532, y: 112, z: 15591, time: 1696965111267L, xRot: -16.80021f, yRot: 359.51306f } - "longshipguide": { dim: "wc:playground", x: 682, y: 25, z: -965, time: 1696965111268L, xRot: -2.6998923f, yRot: -270.38193f } - "drinkwater": { dim: "wc:westeros", x: 132, y: 36, z: 22442, time: 1696965111268L, xRot: 1.7998734f, yRot: -90.46383f } - "mosshamlet1": { dim: "wc:westeros", x: 793, y: 38, z: -5383, time: 1696965111268L, xRot: 4.350008f, yRot: 79.28506f } - "felwood1": { dim: "wc:westeros", x: 5455, y: 93, z: 16635, time: 1696965111268L, xRot: 16.949442f, yRot: -306.02594f } - "icemark": { dim: "wc:westeros", x: 1765, y: 49, z: -16011, time: 1696965111268L, xRot: -13.949972f, yRot: -169.39673f } - "southshore": { dim: "wc:westeros", x: -8155, y: 35, z: -2556, time: 1696965111268L, xRot: -9.8999605f, yRot: -89.00339f } - "table": { dim: "wc:playground", x: -731, y: 52, z: -1389, time: 1696965111268L, xRot: 10.881281f, yRot: -3.458252f } - "tarthv4": { dim: "wc:westeros", x: 9988, y: 88, z: 16584, time: 1696965111268L, xRot: 29.452614f, yRot: 1.7807914f } - "stonehelm": { dim: "wc:westeros", x: 4252, y: 37, z: 19493, time: 1696965111269L, xRot: -10.155318260192871f, yRot: 104.54840087890625f } - "klwesterndefences": { dim: "wc:westeros", x: 1117, y: 36, z: 12345, time: 1696965111269L, xRot: 39.65622f, yRot: -72.16658f } - "sevenstreams": { dim: "wc:westeros", x: -1552, y: 35, z: 5284, time: 1696965111269L, xRot: 3.2997503f, yRot: 356.391f } - "oxmoor": { dim: "wc:westeros", x: 4868, y: 47, z: -7745, time: 1696965111270L, xRot: -0.9001288f, yRot: -90.45364f } - "inchv1": { dim: "wc:westeros", x: -1409, y: 43, z: 14416, time: 1696965111270L, xRot: 2.1000204f, yRot: -107.3831f } - "greenguard": { dim: "wc:westeros", x: 5069, y: 50, z: -16026, time: 1696965111270L, xRot: -13.500008f, yRot: 174.86694f } - "khhf2": { dim: "wc:westeros", x: 8874, y: 102, z: -9285, time: 1696965111270L, xRot: -4.950021f, yRot: 0.7642212f } - "summerwood": { dim: "wc:westeros", x: -4018, y: 68, z: 11291, time: 1696965111270L, xRot: 18.750001907348633f, yRot: -57.741851806640625f } - "harvesthhm1": { dim: "wc:westeros", x: 34, y: 117, z: 19239, time: 1696965111270L, xRot: 30.449944f, yRot: -0.29986572f } - "lpvineyard1": { dim: "wc:westeros", x: -7536, y: 59, z: 12586, time: 1696965111270L, xRot: -18.080116f, yRot: -2.5918355f } - "whf1": { dim: "wc:westeros", x: -5011, y: 73, z: -2087, time: 1696965111270L, xRot: 22.210669f, yRot: -79.24099f } - "moondoor": { dim: "wc:westeros", x: 3878, y: 167, z: 6177, time: 1696965111271L, xRot: -1.1999997f, yRot: 90.44166f } - "lordsport": { dim: "wc:westeros", x: -7584, y: 37, z: 6216, time: 1696965111271L, xRot: -3.600026f, yRot: -92.85046f } - "grellvillage": { dim: "wc:westeros", x: -1565, y: 38, z: 7497, time: 1696965111271L, xRot: 1.9499767f, yRot: -130.02594f } - "sgcabin2": { dim: "wc:westeros", x: -4013, y: 78, z: 4201, time: 1696965111272L, xRot: 45.750023f, yRot: -345.31586f } - "siege": { dim: "wc:playground", x: -763, y: 21, z: 951, time: 1696965111272L, xRot: -5.3999953f, yRot: -179.0546f } - "wfkingsroadgate": { dim: "wc:westeros", x: -954, y: 79, z: -8518, time: 1696965111272L, xRot: 20.09999f, yRot: -272.11557f } - "ywmarsh": { dim: "wc:westeros", x: -277, y: 72, z: 22122, time: 1696965111283L, xRot: 46.64999f, yRot: 164.92851f } - "SoF": { dim: "wc:westeros", x: 3093, y: 70, z: 12875, time: 1696965111283L, xRot: 10.799933f, yRot: 297.20184f } - "bhf1": { dim: "wc:westeros", x: -5782, y: 68, z: 18930, time: 1696965111283L, xRot: 43.805965f, yRot: -176.3674f } - "baelor": { dim: "wc:westeros", x: 2560, y: 77, z: 13082, time: 1696965111283L, xRot: -15.15f, yRot: -1.0316094f } - "rhhamlet3": { dim: "wc:westeros", x: 8405, y: 40, z: 18586, time: 1696965111284L, xRot: 36.721207f, yRot: 351.4731f } - "Wydmanhamlet2": { dim: "wc:westeros", x: 9251, y: 51, z: 730, time: 1696965111284L, xRot: 26.485954f, yRot: -301.76874f } - "klmothersept": { dim: "wc:westeros", x: 2497, y: 53, z: 12904, time: 1696965111284L, xRot: -9.899926f, yRot: -173.34758f } - "rules": { dim: "wc:playground", x: -22, y: 145, z: -32, time: 1696965111284L, xRot: 0.30002064f, yRot: -179.84673f } - "mancescamp2": { dim: "wc:westeros", x: -1237, y: 58, z: -20917, time: 1696965111284L, xRot: 18.59994f, yRot: -175.68323f } - "ducks": { dim: "wc:playground", x: -853, y: 50, z: 236, time: 1696965111284L, xRot: 8.249899f, yRot: 105.45027f } - "lpvineyard": { dim: "wc:westeros", x: -7088, y: 55, z: 11708, time: 1696965111284L, xRot: -4.650221f, yRot: 201.16394f } - "lightfoot": { dim: "wc:westeros", x: -1475, y: 89, z: -4892, time: 1696965111285L, xRot: 18.105154037475586f, yRot: 163.0976104736328f } - "plummham2": { dim: "wc:westeros", x: -6554, y: 51, z: 14925, time: 1696965111285L, xRot: 30.59987f, yRot: -146.54979f } - "ahhamlet1": { dim: "wc:westeros", x: -1029, y: 45, z: 9927, time: 1696965111285L, xRot: -9.000001f, yRot: 257.54358f } - "bbholdfast3": { dim: "wc:westeros", x: -718, y: 38, z: 16019, time: 1696965111285L, xRot: -2.1000197f, yRot: -276.05597f } - "casterlyrock": { dim: "wc:westeros", x: -7619, y: 64, z: 11774, time: 1696965111285L, xRot: -12.900322f, yRot: 40.046173f } - "Oldforge": { dim: "wc:westeros", x: -896, y: 54, z: 6382, time: 1696965111285L, xRot: 2.0305123f, yRot: -268.84308f } - "oawine": { dim: "wc:westeros", x: 7022, y: 48, z: 4130, time: 1696965111285L, xRot: 42.75004f, yRot: -178.92041f } - "whiterun": { dim: "wc:westeros", x: 6594, y: 45, z: -12215, time: 1696965111285L, xRot: -0.8999691f, yRot: -7.683907f } - "mancescamp4": { dim: "wc:westeros", x: -1553, y: 68, z: -20580, time: 1696965111285L, xRot: 31.95001f, yRot: 115.767136f } - "yelvin1": { dim: "wc:westeros", x: -5975, y: 107, z: 22759, time: 1696965111286L, xRot: 31.345407f, yRot: -180.4964f } - "dunwick": { dim: "wc:westeros", x: -410, y: 47, z: 16227, time: 1696965111286L, xRot: -2.3560846f, yRot: -87.307846f } - "burntbridge": { dim: "wc:westeros", x: 1329, y: 35, z: 11303, time: 1696965111286L, xRot: 0.000038647653f, yRot: -220.19884f } - "manning": { dim: "wc:westeros", x: 5357, y: 52, z: 13718, time: 1696965111286L, xRot: 1.20001f, yRot: 47.942413f } - "lthf2": { dim: "wc:westeros", x: -628, y: 48, z: 16076, time: 1696965111286L, xRot: 23.09999f, yRot: -181.4062f } - "sgmill1": { dim: "wc:westeros", x: -2215, y: 79, z: 4131, time: 1696965111286L, xRot: 34.499958f, yRot: -87.44998f } - "drox": { dim: "wc:westeros", x: -6911, y: 48, z: 10031, time: 1696965111287L, xRot: 5.0840983f, yRot: -249.69847f } - "naggas": { dim: "wc:westeros", x: -8164, y: 65, z: 5060, time: 1696965111287L, xRot: -22.220417f, yRot: -137.86241f } - "yelshire": { dim: "wc:westeros", x: -6542, y: 103, z: 22684, time: 1696965111287L, xRot: 4.1932697f, yRot: -50.9875f } - "ciderwell": { dim: "wc:westeros", x: -7880, y: 40, z: 16839, time: 1696965111287L, xRot: 6.7499747f, yRot: -177.8727f } - "sprawlvillage": { dim: "wc:westeros", x: 3677, y: 47, z: 12451, time: 1696965111287L, xRot: 4.8002815f, yRot: -194.7351f } - "fordtest": { dim: "wc:playground", x: -1684, y: 29, z: 887, time: 1696965111287L, xRot: 22.649996f, yRot: -265.71674f } - "klhamlet2": { dim: "wc:westeros", x: 3129, y: 45, z: 12371, time: 1696965111287L, xRot: -6.299944f, yRot: -0.5458781f } - "galleyguide": { dim: "wc:playground", x: 679, y: 25, z: -788, time: 1696965111287L, xRot: 44.700012f, yRot: -271.68182f } - "khlc1": { dim: "wc:westeros", x: 7124, y: 46, z: -9041, time: 1696965111287L, xRot: 15.599916f, yRot: -173.41632f } - "HayfordBrick2": { dim: "wc:westeros", x: 2225, y: 43, z: 11880, time: 1696965111288L, xRot: 25.049965f, yRot: 112.808716f } - "rust": { dim: "wc:playground", x: -1087, y: 31, z: 191, time: 1696965111288L, xRot: -4.199969f, yRot: -347.20502f } - "branche": { dim: "wc:westeros", x: -7502, y: 85, z: 16899, time: 1696965111288L, xRot: 19.476604f, yRot: 184.19446f } - "woodswatch": { dim: "wc:westeros", x: 3807, y: 48, z: -16082, time: 1696965111288L, xRot: -5.700133f, yRot: 179.81763f } - "ashfordlog1": { dim: "wc:westeros", x: -874, y: 44, z: 18203, time: 1696965111288L, xRot: 4.2004538f, yRot: -176.51018f } - "shawney": { dim: "wc:westeros", x: 1139, y: 44, z: 7431, time: 1696965111288L, xRot: -14.550024f, yRot: -43.05179f } - "towerofthehand": { dim: "wc:westeros", x: 3295, y: 137, z: 13393, time: 1696965111288L, xRot: -0.30000308f, yRot: -88.79061f } - "frostlodgeinn": { dim: "wc:westeros", x: 1273, y: 45, z: -10968, time: 1696965111288L, xRot: -8.250236f, yRot: 97.95784f } - "gradientguide": { dim: "wc:playground", x: -1090, y: 20, z: 909, time: 1696965111289L, xRot: 6.3000193f, yRot: 0.4955194f } - "ltvineyard": { dim: "wc:westeros", x: -957, y: 92, z: 17182, time: 1696965111289L, xRot: 26.39999f, yRot: -286.40445f } - "dothrakisea": { dim: "wc:playground", x: -1784, y: 21, z: 1120, time: 1696965111289L, xRot: 12.900692f, yRot: 251.59584f } - "pinewatch": { dim: "wc:westeros", x: 5185, y: 45, z: -5932, time: 1696965111300L, xRot: 3.300616f, yRot: 4.9473147f } - "moorefarm1": { dim: "wc:westeros", x: 9315, y: 41, z: 3852, time: 1696965111301L, xRot: 4.0072474f, yRot: -106.196526f } - "Barrowton": { dim: "wc:westeros", x: -3917, y: 39, z: -3913, time: 1696965111301L, xRot: -25.50042f, yRot: 264.3233f } - "bhseptry": { dim: "wc:westeros", x: 2345, y: 72, z: 19488, time: 1696965111301L, xRot: 17.25006f, yRot: -145.79999f } - "wwhunting4": { dim: "wc:westeros", x: 5641, y: 53, z: -7060, time: 1696965111302L, xRot: -11.699992f, yRot: -216.4436f } - "kllumbermill": { dim: "wc:westeros", x: 1902, y: 37, z: 12521, time: 1696965111302L, xRot: -6.450073f, yRot: -268.83032f } - "dwmhunting3": { dim: "wc:westeros", x: -4318, y: 100, z: -7178, time: 1696965111302L, xRot: -3.450076f, yRot: 42.444138f } - "cobblerssquare": { dim: "wc:westeros", x: 2567, y: 44, z: 12794, time: 1696965111302L, xRot: -22.049925f, yRot: -294.99777f } - "wendwater": { dim: "wc:westeros", x: 6403, y: 38, z: 14059, time: 1696965111303L, xRot: -0.45001584f, yRot: 243.2415f } - "kthamlet2": { dim: "wc:westeros", x: 7908, y: 50, z: 19471, time: 1696965111303L, xRot: 4.949994f, yRot: 90.286255f } - "villageholdfast": { dim: "wc:westeros", x: 2945, y: 42, z: 8391, time: 1696965111303L, xRot: 25.34446f, yRot: 11.620693f } - "lhtvillage3": { dim: "wc:westeros", x: 995, y: 44, z: 7687, time: 1696965111303L, xRot: 12.150029f, yRot: -317.24963f } - "brindlewood": { dim: "wc:westeros", x: 2569, y: 48, z: 11976, time: 1696965111303L, xRot: 6.2704463f, yRot: -240.99963f } - "hetherspoon": { dim: "wc:westeros", x: -6907, y: 66, z: 12799, time: 1696965111303L, xRot: 5.849997f, yRot: -83.69558f } - "csham1": { dim: "wc:westeros", x: -1561, y: 55, z: 18791, time: 1696965111304L, xRot: 8.250253f, yRot: 108.11776f } - "ruttiger": { dim: "wc:westeros", x: -6524, y: 61, z: 12133, time: 1696965111304L, xRot: -24.000006f, yRot: 0.9277879f } - "hellholt2": { dim: "wc:westeros", x: -430, y: 116, z: 24787, time: 1696965111304L, xRot: 38.399765f, yRot: -12.326965f } - "probieground": { dim: "wc:playground", x: -1148, y: 20, z: -20, time: 1696965111304L, xRot: 4.499969f, yRot: -214.04968f } - "weepingholdfast": { dim: "wc:westeros", x: 7779, y: 44, z: 20779, time: 1696965111304L, xRot: -2.0997288f, yRot: -48.41349f } - "dwmhunting5": { dim: "wc:westeros", x: -5476, y: 46, z: -9826, time: 1696965111304L, xRot: -3.7499602f, yRot: 142.63994f } - "haystackhall": { dim: "wc:westeros", x: 6946, y: 62, z: 15514, time: 1696965111304L, xRot: -11.51527f, yRot: -117.552505f } - "dragonpit": { dim: "wc:westeros", x: 3101, y: 95, z: 12811, time: 1696965111305L, xRot: 17.400038f, yRot: 270.20798f } - "hawksheath": { dim: "wc:westeros", x: 2215, y: 54, z: -5851, time: 1696965111305L, xRot: -1.7999495f, yRot: -131.5357f } - "ashfordhunt2": { dim: "wc:westeros", x: -881, y: 55, z: 18017, time: 1696965111305L, xRot: 3.9000678f, yRot: -184.91364f } - "birdwatch": { dim: "wc:westeros", x: 3942, y: 106, z: -8348, time: 1696965111305L, xRot: 3.150917f, yRot: 236.83788f } - "horpe": { dim: "wc:westeros", x: 4749, y: 36, z: 20117, time: 1696965111305L, xRot: -5.999999f, yRot: -179.75421f } - "princespass": { dim: "wc:westeros", x: -1798, y: 64, z: 21313, time: 1696965111305L, xRot: 5.2390933f, yRot: 13.744623f } - "applebrook": { dim: "wc:westeros", x: -2043, y: 46, z: 14150, time: 1696965111316L, xRot: 13.499779f, yRot: 111.17586f } - "northwick": { dim: "wc:westeros", x: 7480, y: 40, z: 7013, time: 1696965111316L, xRot: -2.6998122f, yRot: 205.15407f } - "morne": { dim: "wc:westeros", x: 9595, y: 79, z: 16242, time: 1696965111317L, xRot: 2.1064284f, yRot: 182.88383f } - "donniger": { dim: "wc:westeros", x: 7930, y: 36, z: -123, time: 1696965111317L, xRot: 0.14987555f, yRot: 38.45577f } - "winterfell": { dim: "wc:westeros", x: -1173, y: 55, z: -8314, time: 1696965111317L, xRot: -22.34998f, yRot: 175.63445f } - "pendrichills": { dim: "wc:westeros", x: -5100, y: 89, z: 8555, time: 1696965111317L, xRot: 11.3842125f, yRot: 177.76231f } - "grafton": { dim: "wc:westeros", x: 8855, y: 86, z: 5883, time: 1696965111317L, xRot: -26.764198f, yRot: 67.00357f } - "reddeerisland": { dim: "wc:westeros", x: 535, y: 40, z: 7254, time: 1696965111317L, xRot: 9.749989f, yRot: -167.24982f } - "mandergate": { dim: "wc:westeros", x: -2060, y: 36, z: 16654, time: 1696965111317L, xRot: -10.049992f, yRot: -228.62354f } - "hornhillv3": { dim: "wc:westeros", x: -4533, y: 93, z: 19310, time: 1696965111318L, xRot: 43.19999f, yRot: -4.6442895f } - "shandystone": { dim: "wc:westeros", x: 7554, y: 57, z: 24597, time: 1696965111318L, xRot: -4.1218486f, yRot: 146.24387f } - "whitewood": { dim: "wc:westeros", x: -2848, y: 55, z: 8076, time: 1696965111318L, xRot: 13.649856f, yRot: 193.95662f } - "highhermvillage1": { dim: "wc:westeros", x: -3551, y: 58, z: 23446, time: 1696965111318L, xRot: -9.00023f, yRot: -79.22266f } - "seaspur": { dim: "wc:westeros", x: 8899, y: 100, z: 20236, time: 1696965111318L, xRot: -10.350669f, yRot: -57.626045f } - "willumkeep": { dim: "wc:westeros", x: 1578, y: 74, z: 17662, time: 1696965111318L, xRot: -18.299997f, yRot: -279.44724f } - "follardhf2": { dim: "wc:westeros", x: 7688, y: 100, z: 13568, time: 1696965111318L, xRot: 6.900137f, yRot: 2.0948045f } - "moorehamlet1": { dim: "wc:westeros", x: 9247, y: 35, z: 4138, time: 1696965111318L, xRot: 7.1811323f, yRot: -37.924156f } - "silverpeak": { dim: "wc:westeros", x: 5226, y: 102, z: 19231, time: 1696965111319L, xRot: 6.750097f, yRot: -271.76978f } - "ulhc1": { dim: "wc:westeros", x: -6491, y: 42, z: 21534, time: 1696965111319L, xRot: 24.149961f, yRot: -91.168945f } - "appletonfish1": { dim: "wc:westeros", x: 720, y: 48, z: 18501, time: 1696965111319L, xRot: 47.100586f, yRot: -126.413734f } - "sfhamlet4": { dim: "wc:westeros", x: -4014, y: 62, z: 23908, time: 1696965111319L, xRot: 4.350054f, yRot: 86.822784f } - "ironisles": { dim: "wc:westeros", x: -7511, y: 108, z: 6578, time: 1696965111319L, xRot: -13.350012f, yRot: 12.599567f } - "skycells": { dim: "wc:westeros", x: 3879, y: 159, z: 6167, time: 1696965111319L, xRot: 6.5999794f, yRot: 87.90325f } - "stonegarden": { dim: "wc:westeros", x: -7745, y: 127, z: 11876, time: 1696965111319L, xRot: 18.149782f, yRot: -339.58057f } - "riften": { dim: "wc:playground", x: -1126, y: 21, z: 651, time: 1696965111319L, xRot: 0.74967414f, yRot: -114.29974f } - "baratheon1": { dim: "wc:westeros", x: 6811, y: 44, z: 17172, time: 1696965111319L, xRot: 34.350002f, yRot: -92.29602f } - "chlumber": { dim: "wc:westeros", x: -7866, y: 44, z: 13946, time: 1696965111319L, xRot: 17.549994f, yRot: -172.64156f } - "hornhillv1": { dim: "wc:westeros", x: -4786, y: 91, z: 19776, time: 1696965111319L, xRot: 35.84999f, yRot: -239.75018f } - "harbesthall": { dim: "wc:westeros", x: 953, y: 100, z: 19205, time: 1696965111319L, xRot: -4.650022f, yRot: -190.34903f } - "klmanse2": { dim: "wc:westeros", x: 2577, y: 50, z: 12482, time: 1696965111319L, xRot: 6.300081f, yRot: -219.03229f } - "septguide": { dim: "wc:playground", x: -960, y: 21, z: 1104, time: 1696965111320L, xRot: 4.6500015f, yRot: 236.7448f } - "horpei1": { dim: "wc:westeros", x: 5024, y: 85, z: 20511, time: 1696965111320L, xRot: -7.949916f, yRot: -1.1055409f } - "weepingfarm": { dim: "wc:westeros", x: 7468, y: 50, z: 20517, time: 1696965111321L, xRot: -0.89997995f, yRot: 252.43811f } - "Oakglade": { dim: "wc:westeros", x: 5604, y: 46, z: 19500, time: 1696965111321L, xRot: 16.050203f, yRot: -79.00541f } - "Ruthermontwaycastle": { dim: "wc:westeros", x: 6669, y: 106, z: 6941, time: 1696965111321L, xRot: 26.782711f, yRot: -242.3956f } - "hhhermitage": { dim: "wc:westeros", x: 4646, y: 112, z: 4058, time: 1696965111321L, xRot: -9.360717f, yRot: 94.45126f } - "ForesterCabin": { dim: "wc:westeros", x: 1308, y: 38, z: 11011, time: 1696965111321L, xRot: 40.50001f, yRot: 50.525696f } - "sghamlet7": { dim: "wc:westeros", x: -2144, y: 89, z: 3730, time: 1696965111321L, xRot: 5.699849f, yRot: 95.70328f } - "tarthv1": { dim: "wc:westeros", x: 9398, y: 76, z: 16414, time: 1696965111321L, xRot: 25.313986f, yRot: 179.95004f } - "gradients": { dim: "wc:playground", x: -1091, y: 21, z: 910, time: 1696965111321L, xRot: 5.55002f, yRot: 0.49551937f } - "baelors": { dim: "wc:westeros", x: 2560, y: 77, z: 13081, time: 1696965111321L, xRot: -20.249998f, yRot: -1.7816093f } - "whitecliff": { dim: "wc:westeros", x: -4386, y: 55, z: 4449, time: 1696965111321L, xRot: -10.050099f, yRot: -228.1713f } - "fairisle": { dim: "wc:westeros", x: -8108, y: 35, z: 10438, time: 1696965111322L, xRot: 1.3499963f, yRot: 167.6036f } - "rainhouse": { dim: "wc:westeros", x: 8912, y: 56, z: 18530, time: 1696965111322L, xRot: -6.115107f, yRot: -181.45264f } - "sthham2": { dim: "wc:westeros", x: -6323, y: 87, z: 16612, time: 1696965111322L, xRot: 64.963104f, yRot: -1.7761585f } - "reekdungeon": { dim: "wc:westeros", x: 4373, y: 65, z: -9186, time: 1696965111322L, xRot: 12.000171f, yRot: -90.2789f } - "mancescamp1": { dim: "wc:westeros", x: -1485, y: 60, z: -20265, time: 1696965111322L, xRot: 15.749969f, yRot: -222.64001f } - "kltestold": { dim: "wc:playground", x: -490, y: 21, z: -462, time: 1696965111322L, xRot: -7.350004f, yRot: 268.8008f } - "highheart": { dim: "wc:westeros", x: -1172, y: 125, z: 8957, time: 1696965111322L, xRot: -2.7868268f, yRot: 222.00117f } - "longbowhall": { dim: "wc:westeros", x: 8168, y: 81, z: 3020, time: 1696965111322L, xRot: 10.052238f, yRot: -184.04846f } - "northhall": { dim: "wc:westeros", x: 6092, y: 64, z: -11300, time: 1696965111333L, xRot: -4.1999555f, yRot: -232.08746f } - "hornhillv5": { dim: "wc:westeros", x: -4073, y: 138, z: 19483, time: 1696965111333L, xRot: 38.84992f, yRot: 165.15625f } - "ulm1": { dim: "wc:westeros", x: -5979, y: 38, z: 22019, time: 1696965111334L, xRot: 63.149956f, yRot: -180.26978f } - "hornsclearing": { dim: "wc:westeros", x: 2308, y: 69, z: -8253, time: 1696965111334L, xRot: -4.200021f, yRot: -303.2533f } - "poddingfieldcastle": { dim: "wc:westeros", x: 1767, y: 93, z: 18137, time: 1696965111334L, xRot: 11.399962f, yRot: -240.98497f } - "barrowtest": { dim: "wc:playground", x: 880, y: 21, z: -985, time: 1696965111334L, xRot: 9.080897f, yRot: -150.9874f } - "shepherd": { dim: "wc:westeros", x: -8855, y: 72, z: 4917, time: 1696965111334L, xRot: -9.000205f, yRot: 260.2509f } - "hornhillv7": { dim: "wc:westeros", x: -3559, y: 153, z: 19970, time: 1696965111334L, xRot: 89.4f, yRot: 180.909f } - "horpeh1": { dim: "wc:westeros", x: 4686, y: 50, z: 19936, time: 1696965111334L, xRot: 1.6500365f, yRot: 60.843754f } - "claypool": { dim: "wc:westeros", x: -834, y: 55, z: 6639, time: 1696965111334L, xRot: -9.193199f, yRot: 139.94122f } - "seaworth": { dim: "wc:westeros", x: 7133, y: 35, z: 18543, time: 1696965111335L, xRot: -13.500009f, yRot: -273.62714f } - "queenscrown": { dim: "wc:westeros", x: 2489, y: 35, z: -15157, time: 1696965111335L, xRot: -5.850011f, yRot: 270.87006f } - "middleburytavern": { dim: "wc:westeros", x: 1148, y: 47, z: 17007, time: 1696965111335L, xRot: -4.627445f, yRot: 359.51938f } - "harridanhill": { dim: "wc:westeros", x: -6170, y: 129, z: 5633, time: 1696965111335L, xRot: -11.100123f, yRot: -208.81079f } - "test": { dim: "wc:playground", x: 49, y: 21, z: 105, time: 1696965111335L, xRot: 2.9999795f, yRot: 183.00291f } - "Rollingfordhamlet": { dim: "wc:westeros", x: 1556, y: 55, z: 12152, time: 1696965111335L, xRot: 36.910065f, yRot: -91.78296f } - "ashfordhunt1": { dim: "wc:westeros", x: -342, y: 44, z: 18053, time: 1696965111335L, xRot: 6.750082f, yRot: -216.54959f } - "chhamlet1": { dim: "wc:westeros", x: -8446, y: 55, z: 15623, time: 1696965111335L, xRot: 37.79993f, yRot: -182.06845f } - "statues": { dim: "wc:playground", x: -954, y: 21, z: 1156, time: 1696965111336L, xRot: 29.400028f, yRot: -339.24146f } - "wwhf4": { dim: "wc:westeros", x: 637, y: 63, z: 10150, time: 1696965111336L, xRot: 29.551247f, yRot: -0.49246216f } - "ottercreek": { dim: "wc:westeros", x: 2594, y: 34, z: -7432, time: 1696965111336L, xRot: -15.600085f, yRot: -243.05402f } - "lannisportdocks": { dim: "wc:westeros", x: -7703, y: 36, z: 12224, time: 1696965111336L, xRot: -7.350034f, yRot: -151.72997f } - "forestmill": { dim: "wc:westeros", x: -7948, y: 56, z: -4305, time: 1696965111336L, xRot: 24.749989f, yRot: -108.52497f } - "intro": { dim: "wc:playground", x: 1362, y: 24, z: -221, time: 1696965111336L, xRot: 15.299841f, yRot: 180.52739f } - "gvhf1": { dim: "wc:westeros", x: 883, y: 44, z: 16308, time: 1696965111336L, xRot: 20.678478f, yRot: -209.9174f } - "streamside": { dim: "wc:westeros", x: -6050, y: 36, z: -3537, time: 1696965111336L, xRot: -7.3504615f, yRot: 210.97673f } - "whamlet1": { dim: "wc:westeros", x: -4203, y: 41, z: -3059, time: 1696965111337L, xRot: 14.550014f, yRot: 180.74985f } - "HayfordFarm1": { dim: "wc:westeros", x: 2162, y: 54, z: 12060, time: 1696965111337L, xRot: 10.500007f, yRot: 267.5338f } - "redkeep": { dim: "wc:westeros", x: 3261, y: 119, z: 13279, time: 1696965111337L, xRot: -30.89999f, yRot: -47.990295f } - "cariboucrossing": { dim: "wc:westeros", x: 3916, y: 39, z: -5626, time: 1696965111337L, xRot: 9.599951f, yRot: -35.39708f } - "csbrew": { dim: "wc:westeros", x: -740, y: 55, z: 18875, time: 1696965111337L, xRot: 2.8500125f, yRot: 319.16696f } - "csham2": { dim: "wc:westeros", x: -1373, y: 55, z: 19323, time: 1696965111337L, xRot: 25.349968f, yRot: 0.29551893f } - "sfhamlet8": { dim: "wc:westeros", x: -5038, y: 52, z: 24079, time: 1696965111337L, xRot: 22.349972f, yRot: -209.87543f } - "sludgypond": { dim: "wc:westeros", x: 2132, y: 46, z: 8224, time: 1696965111337L, xRot: -6.299898f, yRot: 304.94885f } - "vale": { dim: "wc:westeros", x: 3867, y: 165, z: 6145, time: 1696965111338L, xRot: -11.700045f, yRot: -88.65836f } - "rockcircle": { dim: "wc:westeros", x: 7370, y: 71, z: 16078, time: 1696965111338L, xRot: 4.1997604f, yRot: -110.8526f } - "portglen": { dim: "wc:westeros", x: 5862, y: 35, z: 2064, time: 1696965111338L, xRot: -12.44949f, yRot: -180.15137f } - "klwindmill2": { dim: "wc:westeros", x: 2488, y: 60, z: 12099, time: 1696965111338L, xRot: 19.650015f, yRot: 215.3706f } - "fwcamp1": { dim: "wc:westeros", x: 5484, y: 90, z: 16530, time: 1696965111338L, xRot: 8.099951f, yRot: 94.62049f } - "cassel": { dim: "wc:westeros", x: -1197, y: 82, z: -8456, time: 1696965111338L, xRot: -17.999998f, yRot: 6.1334248f } - "morestatues": { dim: "wc:playground", x: -677, y: 21, z: -1167, time: 1696965111338L, xRot: 28.350029f, yRot: 289.4917f } - "skagos": { dim: "wc:westeros", x: 9651, y: 62, z: -14946, time: 1696965111338L, xRot: 16.799995f, yRot: -234.46417f } - "wfsheepfarm1": { dim: "wc:westeros", x: -1043, y: 90, z: -8692, time: 1696965111339L, xRot: 51.89994f, yRot: 57.42398f } - "bearisland": { dim: "wc:westeros", x: -4464, y: 46, z: -13461, time: 1696965111339L, xRot: -6.299962f, yRot: 269.52393f } - "parchments": { dim: "wc:westeros", x: 8260, y: 36, z: 15581, time: 1696965111339L, xRot: -1.7999936f, yRot: -43.737762f } - "ullc1": { dim: "wc:westeros", x: -6348, y: 66, z: 22128, time: 1696965111339L, xRot: 27.45f, yRot: -178.62006f } - "poole": { dim: "wc:westeros", x: -1207, y: 86, z: -8482, time: 1696965111349L, xRot: -1.6500113f, yRot: -179.8664f } - "pyke": { dim: "wc:westeros", x: -7511, y: 108, z: 6578, time: 1696965111350L, xRot: -13.500011f, yRot: 12.449568f } - "nsmarcher1": { dim: "wc:westeros", x: -912, y: 152, z: 20496, time: 1696965111350L, xRot: 23.100195f, yRot: -155.23106f } - "amberlyhf2": { dim: "wc:westeros", x: 7382, y: 55, z: 18310, time: 1696965111351L, xRot: -7.8000207f, yRot: 46.029713f } - "runestoneholdfast3": { dim: "wc:westeros", x: 7398, y: 89, z: 6433, time: 1696965111351L, xRot: 23.399979f, yRot: -147.46158f } - "wolfsden": { dim: "wc:westeros", x: 2013, y: 53, z: -2677, time: 1696965111351L, xRot: -15.600004f, yRot: 112.938965f } - "twoharbors": { dim: "wc:westeros", x: -7659, y: 83, z: 24658, time: 1696965111352L, xRot: 25.50014f, yRot: -349.85654f } - "mooreton": { dim: "wc:westeros", x: 9088, y: 37, z: 3939, time: 1696965111352L, xRot: -7.119281f, yRot: -92.38997f } - "bitterbirch": { dim: "wc:westeros", x: 4823, y: 37, z: -5267, time: 1696965111352L, xRot: 17.699978f, yRot: 163.95093f } - "ockley": { dim: "wc:westeros", x: -4106, y: 50, z: 16390, time: 1696965111352L, xRot: 5.5500107f, yRot: 281.76248f } - "theravishment": { dim: "wc:westeros", x: -49, y: 46, z: 6954, time: 1696965111352L, xRot: 7.2750597f, yRot: -45.494286f } - "ahholdfast1": { dim: "wc:westeros", x: -1751, y: 52, z: 9892, time: 1696965111352L, xRot: -12.599922f, yRot: -1.7434692f } - "grindcornmill": { dim: "wc:westeros", x: -1527, y: 35, z: 6962, time: 1696965111352L, xRot: -15.269901f, yRot: -72.85664f } - "herston": { dim: "wc:westeros", x: 5919, y: 45, z: 20293, time: 1696965111352L, xRot: 4.94449f, yRot: -140.42268f } - "goodbrook": { dim: "wc:westeros", x: -840, y: 51, z: 8696, time: 1696965111353L, xRot: -20.68544f, yRot: -198.1015f } - "hthistory": { dim: "wc:playground", x: 1373, y: 20, z: 1153, time: 1696965111353L, xRot: 90f, yRot: 149.3032f } - "gshamlet1": { dim: "wc:westeros", x: 9124, y: 58, z: 20020, time: 1696965111353L, xRot: 23.549994f, yRot: -153.25214f } - "littledosk": { dim: "wc:westeros", x: -8047, y: 41, z: 16335, time: 1696965111353L, xRot: -8.401836f, yRot: -232.69923f } - "oldmill": { dim: "wc:westeros", x: -5529, y: 45, z: -4358, time: 1696965111353L, xRot: 0.6000259f, yRot: -313.25958f } - "hardhomenew": { dim: "wc:westeros", x: 5710, y: 67, z: -18921, time: 1696965111353L, xRot: 23.400019f, yRot: -235.68315f } - "cmham5": { dim: "wc:westeros", x: -6785, y: 44, z: 15592, time: 1696965111353L, xRot: 5.6999855f, yRot: -162.85478f } - "whitetree": { dim: "wc:westeros", x: 2754, y: 139, z: -16586, time: 1696965111354L, xRot: 26.999989f, yRot: -142.51492f } - "fruits": { dim: "wc:playground", x: -550, y: 20, z: -1030, time: 1696965111354L, xRot: 28.50001f, yRot: 103.94173f } - "MajorTom12466": { dim: "wc:playground", x: -98, y: 21, z: 1069, time: 1696965111354L, xRot: 3.7500405f, yRot: -46.916138f } - "bridges": { dim: "wc:westeros", x: 313, y: 40, z: 16246, time: 1696965111354L, xRot: 5.850005f, yRot: 180.75372f } - "lionwood": { dim: "wc:westeros", x: -5410, y: 56, z: 14864, time: 1696965111354L, xRot: 9.450185f, yRot: -239.7063f } - "wildlifeguide": { dim: "wc:playground", x: -748, y: 21, z: 1059, time: 1696965111354L, xRot: 10.650051f, yRot: 89.14552f } - "kthamlet1": { dim: "wc:westeros", x: 8273, y: 55, z: 19417, time: 1696965111354L, xRot: 37.650005f, yRot: 185.53613f } - "fishpond": { dim: "wc:westeros", x: -5495, y: 61, z: -7938, time: 1696965111355L, xRot: -0.8998751f, yRot: -126.11896f } - "swannsroost": { dim: "wc:westeros", x: 3525, y: 107, z: 19424, time: 1696965111355L, xRot: -29.250036f, yRot: -9.964784f } - "BlackhavenHf": { dim: "wc:westeros", x: 2551, y: 53, z: 19903, time: 1696965111355L, xRot: -5.849943f, yRot: -133.64995f } - "eaglethicket": { dim: "wc:westeros", x: -2697, y: 51, z: 4000, time: 1696965111355L, xRot: 2.4013953f, yRot: 84.512375f } - "coldmoat": { dim: "wc:westeros", x: -7206, y: 44, z: 16062, time: 1696965111355L, xRot: 14.84984f, yRot: 110.312355f } - "docks": { dim: "wc:westeros", x: 2588, y: 84, z: 13576, time: 1696965111355L, xRot: 1.8000436f, yRot: 179.60938f } - "treetest": { dim: "wc:playground", x: 347, y: 141, z: -327, time: 1696965111356L, xRot: -0.60000175f, yRot: -178.73553f } - "rlbridge3": { dim: "wc:westeros", x: 2308, y: 43, z: 11459, time: 1696965111366L, xRot: 5.312235f, yRot: 87.48439f } - "Wydmanquarry": { dim: "wc:westeros", x: 8299, y: 63, z: 1318, time: 1696965111367L, xRot: 42.179367f, yRot: -352.60547f } - "klmanse1": { dim: "wc:westeros", x: 1993, y: 39, z: 12627, time: 1696965111367L, xRot: 0.600027f, yRot: -269.28204f } - "innofthekneelingman": { dim: "wc:westeros", x: -622, y: 37, z: 7156, time: 1696965111368L, xRot: -6.2999167f, yRot: -188.56345f } - "skycell": { dim: "wc:westeros", x: 3879, y: 159, z: 6167, time: 1696965111368L, xRot: 6.5999794f, yRot: 87.90325f } - "klmanse4": { dim: "wc:westeros", x: 3440, y: 49, z: 12440, time: 1696965111368L, xRot: -4.7999964f, yRot: 178.25398f } - "weaver": { dim: "wc:westeros", x: -6629, y: 36, z: 5723, time: 1696965111368L, xRot: -5.685259f, yRot: -88.164406f } - "thetowerofjoy": { dim: "wc:westeros", x: -1486, y: 167, z: 21178, time: 1696965111368L, xRot: -0.9109614f, yRot: -228.20535f } - "seagard": { dim: "wc:westeros", x: -2235, y: 44, z: 4397, time: 1696965111369L, xRot: -7.200231f, yRot: -288.30115f } - "lewes": { dim: "wc:westeros", x: -2554, y: 64, z: 15973, time: 1696965111369L, xRot: 0.7499897f, yRot: -174.15019f } - "thatchell": { dim: "wc:westeros", x: -1044, y: 74, z: 16629, time: 1696965111369L, xRot: 3.5163224f, yRot: -269.7062f } - "Chyttering": { dim: "wc:westeros", x: 7129, y: 78, z: 13419, time: 1696965111369L, xRot: -10.885369f, yRot: 86.53248f } - "oaquarry": { dim: "wc:westeros", x: 6918, y: 66, z: 3543, time: 1696965111369L, xRot: 32.363537f, yRot: -171.52516f } - "dwmcamp1": { dim: "wc:westeros", x: -1926, y: 57, z: -8509, time: 1696965111369L, xRot: 12.749987f, yRot: -190.20612f } - "croftersvillage": { dim: "wc:westeros", x: -2774, y: 42, z: -8535, time: 1696965111369L, xRot: 9.749968f, yRot: 2.9944246f } - "goldlake": { dim: "wc:westeros", x: -4643, y: 81, z: 10309, time: 1696965111369L, xRot: 0.8996167f, yRot: -44.991417f } - "bushyfarm": { dim: "wc:westeros", x: -958, y: 47, z: 13667, time: 1696965111369L, xRot: -19.799957f, yRot: -95.89018f } - "shatterstone": { dim: "wc:westeros", x: -8440, y: 77, z: 5267, time: 1696965111370L, xRot: 3.7507322f, yRot: 2.1042564f } - "klbrick3": { dim: "wc:westeros", x: 3878, y: 45, z: 12855, time: 1696965111370L, xRot: 8.699957f, yRot: -179.28223f } - "inchf2": { dim: "wc:westeros", x: -568, y: 42, z: 14249, time: 1696965111370L, xRot: 10.350171f, yRot: -215.23268f } - "hwhamlet1": { dim: "wc:westeros", x: 3960, y: 58, z: -7318, time: 1696965111370L, xRot: 3.4500544f, yRot: 325.05096f } - "sudental": { dim: "wc:westeros", x: 7956, y: 56, z: 3629, time: 1696965111370L, xRot: 15.59998f, yRot: 4.6483207f } - "bbdocks": { dim: "wc:westeros", x: -1348, y: 36, z: 15868, time: 1696965111370L, xRot: -1.6500034f, yRot: -136.38766f } - "Wolfsmire": { dim: "wc:westeros", x: -6382, y: 45, z: -9939, time: 1696965111370L, xRot: -0.5992122f, yRot: -264.02682f } - "burnedmen": { dim: "wc:westeros", x: 3593, y: 100, z: 6194, time: 1696965111370L, xRot: 16.349976f, yRot: -88.04688f } - "harrenhaljump": { dim: "wc:westeros", x: 1901, y: 47, z: 9219, time: 1696965111371L, xRot: 5.759484f, yRot: 267.32455f } - "sfholdfast": { dim: "wc:westeros", x: -5805, y: 45, z: 24535, time: 1696965111371L, xRot: -13.350037f, yRot: -112.52469f } - "styleguide": { dim: "wc:playground", x: -969, y: 20, z: 906, time: 1696965111371L, xRot: 0.30070135f, yRot: 0.49575806f } - "morton": { dim: "wc:westeros", x: -7220, y: 71, z: 16668, time: 1696965111371L, xRot: 1.0500171f, yRot: -359.21896f } - "hornhillv4": { dim: "wc:westeros", x: -4310, y: 109, z: 19402, time: 1696965111371L, xRot: 33.14998f, yRot: 147.75653f } - "RamshackleStiltHouse": { dim: "wc:westeros", x: 1459, y: 37, z: 10749, time: 1696965111371L, xRot: 39.60001f, yRot: 103.17569f } - "bole": { dim: "wc:westeros", x: -3670, y: 44, z: -10063, time: 1696965111371L, xRot: 3.449992f, yRot: -302.8463f } - "kilmerton": { dim: "wc:westeros", x: -1638, y: 87, z: 17289, time: 1696965111371L, xRot: 15.000062f, yRot: -205.2563f } - "hwbanditcamp": { dim: "wc:westeros", x: 3199, y: 50, z: -7752, time: 1696965111371L, xRot: -5.099999f, yRot: -149.41414f } - "spawn": { dim: "wc:playground", x: -31, y: 145, z: -36, time: 1696965111372L, xRot: 1.8000216f, yRot: 0.753248f } - "mernswood": { dim: "wc:westeros", x: -2042, y: 44, z: 16205, time: 1696965111372L, xRot: -13.010773f, yRot: -259.53476f } - "hwhf1": { dim: "wc:westeros", x: -8112, y: 46, z: 19515, time: 1696965111372L, xRot: -3.5912857f, yRot: 13.577014f } - "kingswoodbridge": { dim: "wc:westeros", x: 5665, y: 39, z: 14864, time: 1696965111372L, xRot: 5.978239f, yRot: 130.14363f } - "terrickh1": { dim: "wc:westeros", x: 713, y: 43, z: 6586, time: 1696965111372L, xRot: 6.450246f, yRot: 335.94824f } - "baelorsstorage": { dim: "wc:westeros", x: 2562, y: 24, z: 13253, time: 1696965111372L, xRot: -3.449955f, yRot: 91.0957f } - "ShaesManse": { dim: "wc:westeros", x: 3371, y: 46, z: 12895, time: 1696965111383L, xRot: -5.4000144f, yRot: 25.400932f } - "newkeepvineyard": { dim: "wc:westeros", x: 2273, y: 49, z: 1347, time: 1696965111383L, xRot: 17.249756f, yRot: -3.1467273f } - "regionguide": { dim: "wc:playground", x: -969, y: 20, z: 906, time: 1696965111384L, xRot: 0.30070135f, yRot: 0.49575806f } - "foote": { dim: "wc:westeros", x: -4859, y: 83, z: 8192, time: 1696965111384L, xRot: 4.556278705596924f, yRot: -56.42570877075195f } - "copperspawn": { dim: "wc:playground", x: -708, y: 33, z: -914, time: 1696965111384L, xRot: 2.099979f, yRot: 271.64774f } - "kingslanding": { dim: "wc:westeros", x: 2350, y: 44, z: 12692, time: 1696965111384L, xRot: -10.799998f, yRot: 304.8555f } - "sleet": { dim: "wc:westeros", x: 3718, y: 46, z: -14204, time: 1696965111385L, xRot: 8.099977f, yRot: -89.73255f } - "breakstonehamlet1": { dim: "wc:westeros", x: 3712, y: 38, z: 959, time: 1696965111385L, xRot: 14.399992f, yRot: -301.04987f } - "bloodygate": { dim: "wc:westeros", x: 2569, y: 156, z: 6824, time: 1696965111385L, xRot: -16.055677f, yRot: -100.63933f } - "moorecabin3": { dim: "wc:westeros", x: 9393, y: 45, z: 3601, time: 1696965111385L, xRot: -23.249928f, yRot: -224.95673f } - "braavoscontest": { dim: "wc:playground", x: -1139, y: 20, z: 259, time: 1696965111385L, xRot: -14.7003565f, yRot: 90.461426f } - "dwmhunting1": { dim: "wc:westeros", x: -3275, y: 45, z: -10703, time: 1696965111385L, xRot: 10.200001f, yRot: 174.1538f } - "horpei2": { dim: "wc:westeros", x: 4442, y: 35, z: 20524, time: 1696965111385L, xRot: 30.290266f, yRot: 271.643f } - "HuntHoldFast": { dim: "wc:westeros", x: -5658, y: 120, z: 21012, time: 1696965111386L, xRot: 15.299438f, yRot: -298.3967f } - "mosshamlet2": { dim: "wc:westeros", x: 1417, y: 45, z: -4388, time: 1696965111386L, xRot: -16.200048f, yRot: -90.27918f } - "FBtunnels": { dim: "wc:westeros", x: 3072, y: 40, z: 12928, time: 1696965111386L, xRot: 7.0619764f, yRot: -179.52756f } - "gvhaml1": { dim: "wc:westeros", x: 1388, y: 77, z: 15823, time: 1696965111386L, xRot: 22.088352f, yRot: -42.135376f } - "summercontest": { dim: "wc:playground", x: -1690, y: 20, z: -164, time: 1696965111386L, xRot: -13.944114f, yRot: 91.37952f } - "bellyofthewhale": { dim: "wc:westeros", x: 3102, y: 53, z: -201, time: 1696965111386L, xRot: 12.149973f, yRot: 222.83875f } - "dgh1": { dim: "wc:westeros", x: 7226, y: 73, z: 339, time: 1696965111386L, xRot: 9.9000025f, yRot: -353.04947f } - "whitewillow": { dim: "wc:westeros", x: 363, y: 53, z: 10026, time: 1696965111386L, xRot: -15.300002f, yRot: -26.874634f } - "gulltower": { dim: "wc:westeros", x: 10240, y: 59, z: 5269, time: 1696965111387L, xRot: -29.176422f, yRot: 31.577698f } - "thepit": { dim: "wc:westeros", x: 1427, y: 81, z: 24071, time: 1696965111387L, xRot: 42.89996f, yRot: 101.81061f } - "ninestars": { dim: "wc:westeros", x: 2322, y: 124, z: 3162, time: 1696965111387L, xRot: 1.6499943f, yRot: -50.494507f } - "donnigerv2": { dim: "wc:westeros", x: 6303, y: 74, z: 1088, time: 1696965111387L, xRot: 0.29997024f, yRot: -271.47812f } - "wintertown": { dim: "wc:westeros", x: -1136, y: 90, z: -8234, time: 1696965111387L, xRot: -11.700026f, yRot: -180.0119f } - "wfcrofters1": { dim: "wc:westeros", x: -1600, y: 69, z: -8062, time: 1696965111387L, xRot: 54.899994f, yRot: -294.82004f } - "rlhamlet3": { dim: "wc:westeros", x: -5034, y: 42, z: 15703, time: 1696965111387L, xRot: 38.550034f, yRot: -92.651184f } - "netley": { dim: "wc:westeros", x: -7013, y: 78, z: 4719, time: 1696965111388L, xRot: -3.0175571f, yRot: 180.43613f } - "dondarrioncadet": { dim: "wc:westeros", x: 3298, y: 51, z: 19986, time: 1696965111388L, xRot: -10.349839f, yRot: -175.20078f } - "wfwatchtower1": { dim: "wc:westeros", x: -954, y: 70, z: -8093, time: 1696965111388L, xRot: 15.599957f, yRot: -54.32604f } - "whstreet": { dim: "wc:playground", x: 1671, y: 20, z: 232, time: 1696965111388L, xRot: -0.2998078f, yRot: -269.58557f } - "lorddamascus": { dim: "wc:playground", x: 114, y: 21, z: 1066, time: 1696965111388L, xRot: 17.399899f, yRot: -47.086025f } - "dfruin1": { dim: "wc:westeros", x: 5509, y: 65, z: -9015, time: 1696965111388L, xRot: 22.6501f, yRot: -76.350876f } - "ltorchards": { dim: "wc:westeros", x: -1069, y: 47, z: 16395, time: 1696965111388L, xRot: 7.0699954f, yRot: -263.95685f } - "broadarch": { dim: "wc:westeros", x: 5130, y: 88, z: 19503, time: 1696965111388L, xRot: -4.349126f, yRot: -243.20703f } - "tentowers": { dim: "wc:westeros", x: -5636, y: 37, z: 5104, time: 1696965111389L, xRot: 6.150013f, yRot: 71.436f } - "dfcrossing": { dim: "wc:westeros", x: 5946, y: 34, z: -8779, time: 1696965111389L, xRot: 19.950205f, yRot: 61.651123f } - "WildlingFord": { dim: "wc:westeros", x: -1123, y: 35, z: -7819, time: 1696965111389L, xRot: 9.899983f, yRot: -240.67035f } - "rosehedge": { dim: "wc:westeros", x: 5231, y: 73, z: 19397, time: 1696965111389L, xRot: -0.14825895f, yRot: -28.664795f } - "rainwoodtest": { dim: "wc:playground", x: -1901, y: 87, z: 1623, time: 1696965111389L, xRot: 28.34998f, yRot: -3.553894f } - "blindtower": { dim: "wc:westeros", x: -8079, y: 74, z: 1402, time: 1696965111400L, xRot: -2.3999698f, yRot: 306.14368f } - "lghf2": { dim: "wc:westeros", x: -833, y: 105, z: 19333, time: 1696965111400L, xRot: 38.10008f, yRot: 230.099f } - "ashfordhf1": { dim: "wc:westeros", x: -1155, y: 50, z: 17924, time: 1696965111400L, xRot: -0.59999245f, yRot: -161.64886f } - "paletree": { dim: "wc:westeros", x: -7562, y: 78, z: 14003, time: 1696965111400L, xRot: -10.200071f, yRot: 0.15722673f } - "coldmoatcastle": { dim: "wc:westeros", x: -7221, y: 45, z: 15962, time: 1696965111400L, xRot: 3.4499674f, yRot: 89.89612f } - "ryswell": { dim: "wc:westeros", x: -6153, y: 54, z: -3756, time: 1696965111401L, xRot: -5.821338f, yRot: 181.63097f } - "brightwater": { dim: "wc:westeros", x: -7261, y: 78, z: 20094, time: 1696965111401L, xRot: -30.365772f, yRot: 2.998554f } - "tannertest": { dim: "wc:playground", x: -802, y: 20, z: 1116, time: 1696965111401L, xRot: 21.600004f, yRot: -177.55463f } - "highhermh4": { dim: "wc:westeros", x: -3533, y: 62, z: 23074, time: 1696965111401L, xRot: 8.946029f, yRot: -137.54854f } - "hhhamlet2": { dim: "wc:westeros", x: 4350, y: 37, z: 3895, time: 1696965111401L, xRot: -8.460535f, yRot: -7.248871f } - "ironthrone": { dim: "wc:westeros", x: 3390, y: 132, z: 13293, time: 1696965111401L, xRot: 0.6000107f, yRot: -0.14050293f } - "phhamlet4": { dim: "wc:westeros", x: -6400, y: 81, z: 23613, time: 1696965111401L, xRot: -17.097061f, yRot: 176.72856f } - "redbog": { dim: "wc:westeros", x: -1871, y: 37, z: 4892, time: 1696965111401L, xRot: -4.349839f, yRot: -293.0396f } - "blackmont1": { dim: "wc:westeros", x: -3468, y: 120, z: 22003, time: 1696965111402L, xRot: 32.84946f, yRot: 162.27354f } - "inchsept": { dim: "wc:westeros", x: -842, y: 37, z: 14915, time: 1696965111402L, xRot: 21.899961f, yRot: 273.17636f } - "sghamlet3": { dim: "wc:westeros", x: -4339, y: 105, z: 4572, time: 1696965111402L, xRot: 6.8999805f, yRot: -359.12137f } - "algood": { dim: "wc:westeros", x: -6998, y: 69, z: 13891, time: 1696965111402L, xRot: 14.696520805358887f, yRot: -83.39285278320312f } - "forests": { dim: "wc:playground", x: -1493, y: 21, z: 959, time: 1696965111402L, xRot: -14.100046f, yRot: -209.49011f } - "snakewooddocks": { dim: "wc:westeros", x: 6887, y: 36, z: 2140, time: 1696965111402L, xRot: 2.8508763f, yRot: 151.03232f } - "overmoor": { dim: "wc:westeros", x: 5774, y: 44, z: -6487, time: 1696965111402L, xRot: -1.800013f, yRot: -78.27106f } - "raventreehall": { dim: "wc:westeros", x: -1828, y: 57, z: 6389, time: 1696965111402L, xRot: -31.269463f, yRot: 181.14662f } - "twoelkhold": { dim: "wc:westeros", x: 3225, y: 44, z: -13951, time: 1696965111403L, xRot: -14.100163f, yRot: -251.12622f } - "lambswold": { dim: "wc:westeros", x: -998, y: 38, z: 7314, time: 1696965111403L, xRot: -9.000042f, yRot: 148.97525f } - "willowwood": { dim: "wc:westeros", x: 864, y: 40, z: 10374, time: 1696965111403L, xRot: 0.023308998f, yRot: 225.4567f } - "arena2": { dim: "wc:playground", x: -899, y: 23, z: 497, time: 1696965111403L, xRot: -8.550036f, yRot: -321.05112f } - "blindlordstower": { dim: "wc:westeros", x: -8079, y: 74, z: 1403, time: 1696965111403L, xRot: -2.3999698f, yRot: 306.14368f } - "cnhamlet3": { dim: "wc:westeros", x: 56, y: 72, z: -14862, time: 1696965111404L, xRot: 57.599995f, yRot: -324.78296f } - "MancePlan": { dim: "wc:playground", x: 1219, y: 27, z: -523, time: 1696965111404L, xRot: 39.899998f, yRot: -186.65479f } - "stokeworth": { dim: "wc:westeros", x: 4445, y: 44, z: 11697, time: 1696965111404L, xRot: -11.999971f, yRot: -101.727325f } - "greyshield": { dim: "wc:westeros", x: -9786, y: 108, z: 17640, time: 1696965111404L, xRot: -1.6499983f, yRot: -91.09064f } - "gvhf3": { dim: "wc:westeros", x: 1991, y: 80, z: 16051, time: 1696965111404L, xRot: 90f, yRot: -181.19026f } - "pawsey": { dim: "wc:westeros", x: -1230, y: 42, z: 14953, time: 1696965111404L, xRot: 9.777068f, yRot: 243.86638f } - "cedfarm": { dim: "wc:westeros", x: 792, y: 48, z: 17740, time: 1696965111404L, xRot: 24.011568f, yRot: 256.80203f } - "bramleycourt": { dim: "wc:westeros", x: -1891, y: 38, z: 17434, time: 1696965111405L, xRot: -19.650623f, yRot: -269.22238f } - "greygallows": { dim: "wc:westeros", x: 11149, y: 37, z: 22627, time: 1696965111405L, xRot: -2.700049877166748f, yRot: 133.87884521484375f } - "rhhf4": { dim: "wc:westeros", x: 9203, y: 58, z: 18259, time: 1696965111405L, xRot: 4.337695f, yRot: -272.017f } - "fthf1": { dim: "wc:westeros", x: 3583, y: 59, z: 15887, time: 1696965111405L, xRot: 13.8000145f, yRot: -155.2775f } - "mudgate": { dim: "wc:westeros", x: 2831, y: 42, z: 13428, time: 1696965111405L, xRot: 1.5000949f, yRot: -179.93958f } - "hornhilltown1": { dim: "wc:westeros", x: -3954, y: 115, z: 19965, time: 1696965111405L, xRot: 52.04997f, yRot: -175.34114f } - "Hayford": { dim: "wc:westeros", x: 1991, y: 46, z: 12367, time: 1696965111405L, xRot: -21.149984f, yRot: -104.92169f } - "sfhamlet9": { dim: "wc:westeros", x: -5345, y: 41, z: 24431, time: 1696965111405L, xRot: -4.650007f, yRot: -102.47525f } - "pavillion": { dim: "wc:westeros", x: 191, y: 42, z: 12761, time: 1696965111406L, xRot: -5.3999844f, yRot: -243.74171f } - "Westfield": { dim: "wc:westeros", x: -6261, y: 50, z: 14930, time: 1696965111406L, xRot: 3.4983525f, yRot: -168.11285f } - "gvvine1": { dim: "wc:westeros", x: 1208, y: 78, z: 15772, time: 1696965111416L, xRot: 14.264873f, yRot: -175.9878f } - "fieldstone": { dim: "wc:westeros", x: 1867, y: 42, z: 8070, time: 1696965111417L, xRot: -0.89986676f, yRot: 183.29779f } - "stonyfort": { dim: "wc:westeros", x: -8539, y: 51, z: -7736, time: 1696965111417L, xRot: -5.250024f, yRot: -272.8526f } - "rhhamlet2": { dim: "wc:westeros", x: 9024, y: 44, z: 19116, time: 1696965111417L, xRot: 8.029973f, yRot: 263.11688f } - "steepstream": { dim: "wc:westeros", x: 1296, y: 49, z: 5974, time: 1696965111418L, xRot: 0.2999869f, yRot: -21.94983f } - "lpsouthgate": { dim: "wc:westeros", x: -7598, y: 43, z: 12325, time: 1696965111418L, xRot: -1.2772812f, yRot: -180.57045f } - "towerglimmering": { dim: "wc:westeros", x: -6433, y: 46, z: 5324, time: 1696965111418L, xRot: -0.4549775f, yRot: -166.88882f } - "sandstonetown": { dim: "wc:westeros", x: -2217, y: 61, z: 24629, time: 1696965111418L, xRot: -1.5000615f, yRot: -315.63184f } - "parchmentsh1": { dim: "wc:westeros", x: 8461, y: 36, z: 15036, time: 1696965111418L, xRot: 4.0499344f, yRot: 295.98547f } - "hornwoodtower": { dim: "wc:westeros", x: 3884, y: 35, z: -6525, time: 1696965111418L, xRot: -20.249966f, yRot: 286.4942f } - "khhamlet9": { dim: "wc:westeros", x: 5841, y: 79, z: -9853, time: 1696965111418L, xRot: 15.750089f, yRot: 98.390434f } - "Wydman": { dim: "wc:westeros", x: 7938, y: 94, z: 1665, time: 1696965111419L, xRot: 27.654705f, yRot: -121.15857f } - "rhhf2": { dim: "wc:westeros", x: 9110, y: 58, z: 19100, time: 1696965111419L, xRot: -16.72002f, yRot: 354.4668f } - "breakstonequarry3": { dim: "wc:westeros", x: 5422, y: 84, z: 838, time: 1696965111419L, xRot: 5.1000104f, yRot: -14.550079f } - "kthamlet4": { dim: "wc:westeros", x: 7912, y: 55, z: 19614, time: 1696965111419L, xRot: 3.7499948f, yRot: -163.66435f } - "merrydowndell": { dim: "wc:westeros", x: -283, y: 42, z: 8356, time: 1696965111420L, xRot: -9.749138f, yRot: 193.4645f } - "faq": { dim: "wc:playground", x: -29, y: 148, z: -47, time: 1696965111420L, xRot: -0.7499728f, yRot: -176.39667f } - "torentinetest": { dim: "wc:playground", x: -1886, y: 78, z: 823, time: 1696965111420L, xRot: 12.599994f, yRot: -2.0185282f } - "hornhillmanor": { dim: "wc:westeros", x: -4036, y: 142, z: 19224, time: 1696965111420L, xRot: 45.59995f, yRot: 237.00687f } - "ironoakshamlet2": { dim: "wc:westeros", x: 5460, y: 35, z: 4989, time: 1696965111420L, xRot: -3.000016f, yRot: -37.356567f } - "tbhamlet2": { dim: "wc:westeros", x: -5499, y: 37, z: 14302, time: 1696965111420L, xRot: 5.550016f, yRot: -122.22186f } - "crossbowridge": { dim: "wc:westeros", x: -1633, y: 38, z: 6860, time: 1696965111420L, xRot: -22.350067f, yRot: -113.29956f } - "peat2": { dim: "wc:westeros", x: -864, y: 63, z: -8041, time: 1696965111420L, xRot: 46.650135f, yRot: -154.08081f } - "pinefield": { dim: "wc:westeros", x: 5055, y: 52, z: -6603, time: 1696965111420L, xRot: -4.200002f, yRot: -196.6559f } - "downdelving": { dim: "wc:westeros", x: -9283, y: 35, z: 5077, time: 1696965111421L, xRot: -3f, yRot: 305.25427f } - "reddinghamlet1": { dim: "wc:westeros", x: -3997, y: 51, z: 15713, time: 1696965111421L, xRot: 0.71386427f, yRot: 68.12891f } - "lambermoor": { dim: "wc:westeros", x: -7106, y: 47, z: 446, time: 1696965111421L, xRot: 4.8407035f, yRot: -13.092717f } - "hhf1": { dim: "wc:westeros", x: 6203, y: 70, z: 19874, time: 1696965111421L, xRot: 22.171291f, yRot: 270.6288f } - "saltpans": { dim: "wc:westeros", x: 3849, y: 43, z: 8341, time: 1696965111421L, xRot: -0.6975605f, yRot: 3.9447021f } - "blackbarhall": { dim: "wc:westeros", x: -9384, y: 43, z: 20295, time: 1696965111421L, xRot: 10.200002f, yRot: 86.80073f } - "swannpost": { dim: "wc:westeros", x: 4665, y: 101, z: 19254, time: 1696965111421L, xRot: -13.050152f, yRot: -114.06816f } - "rills": { dim: "wc:westeros", x: -6080, y: 44, z: -3695, time: 1696965111421L, xRot: -13.209924f, yRot: 163.6965f } - "wfquarry1": { dim: "wc:westeros", x: -1426, y: 95, z: -8344, time: 1696965111421L, xRot: 77.850006f, yRot: -222.3255f } - "lpeastgate": { dim: "wc:westeros", x: -6917, y: 46, z: 12108, time: 1696965111421L, xRot: 2.612312f, yRot: 89.78889f } - "snakewood": { dim: "wc:westeros", x: 6696, y: 85, z: 2013, time: 1696965111422L, xRot: -10.799135f, yRot: 200.98242f } - "mancescamp3": { dim: "wc:westeros", x: -1201, y: 68, z: -20334, time: 1696965111422L, xRot: 18.450005f, yRot: -59.133392f } - "terratest": { dim: "wc:playground", x: -1486, y: 20, z: 837, time: 1696965111422L, xRot: 2.4000049f, yRot: -15.85437f } - "greenmarket": { dim: "wc:westeros", x: -7575, y: 36, z: 20596, time: 1696965111422L, xRot: 6.7498817f, yRot: -109.76926f } - "ironoaks": { dim: "wc:westeros", x: 6295, y: 42, z: 5172, time: 1696965111422L, xRot: -11.400009f, yRot: 132.44084f } - "weirwoods": { dim: "wc:playground", x: 745, y: 39, z: -976, time: 1696965111422L, xRot: 10.218663f, yRot: -180.14264f } - "cnhf3": { dim: "wc:westeros", x: 5229, y: 93, z: 18519, time: 1696965111422L, xRot: 5.8399644f, yRot: -59.11311f } - "bitterbridge": { dim: "wc:westeros", x: -1042, y: 36, z: 15470, time: 1696965111422L, xRot: 0.1500086f, yRot: -90.79113f } - "dgsheepfarm1": { dim: "wc:westeros", x: 6939, y: 67, z: 647, time: 1696965111422L, xRot: 42.300022f, yRot: -357.71808f } - "chyport": { dim: "wc:westeros", x: 7025, y: 59, z: 13306, time: 1696965111422L, xRot: 17.89611f, yRot: 307.97778f } - "faircastle": { dim: "wc:westeros", x: -8071, y: 64, z: 10261, time: 1696965111422L, xRot: -18.45001f, yRot: 175.40363f } - "sghamlet1": { dim: "wc:westeros", x: -2724, y: 76, z: 4005, time: 1696965111433L, xRot: 28.800007f, yRot: -80.70004f } - "ivyhall": { dim: "wc:westeros", x: -4703, y: 37, z: 15209, time: 1696965111433L, xRot: -10.799949f, yRot: -87.41733f } - "coldwatervillage1": { dim: "wc:westeros", x: 6307, y: 55, z: 1745, time: 1696965111434L, xRot: 52.499954f, yRot: 175.60896f } - "jast": { dim: "wc:westeros", x: -5573, y: 49, z: 14937, time: 1696965111434L, xRot: -1.6487845f, yRot: 122.56113f } - "muddyhall": { dim: "wc:westeros", x: -382, y: 56, z: 6598, time: 1696965111434L, xRot: 18.298185f, yRot: 159.09628f } - "rlhamlet1": { dim: "wc:westeros", x: -5987, y: 44, z: 15543, time: 1696965111434L, xRot: 3.600084f, yRot: 178.5581f } - "roadmill": { dim: "wc:westeros", x: -7970, y: 41, z: -5053, time: 1696965111434L, xRot: -6.626905f, yRot: 38.541435f } - "harvesthall": { dim: "wc:westeros", x: 953, y: 133, z: 19205, time: 1696965111435L, xRot: -4.650022f, yRot: -190.34903f } - "highhermh1": { dim: "wc:westeros", x: -3966, y: 64, z: 23381, time: 1696965111435L, xRot: -17.700071f, yRot: 302.81735f } - "sglumberlogdumping": { dim: "wc:westeros", x: -3510, y: 50, z: 4499, time: 1696965111435L, xRot: 36.599846f, yRot: -346.98193f } - "rosewatchtower": { dim: "wc:westeros", x: -1785, y: 34, z: 7617, time: 1696965111435L, xRot: -24.599998f, yRot: 197.87383f } - "weedfield": { dim: "wc:westeros", x: -5159, y: 67, z: 10473, time: 1696965111435L, xRot: -3.5999815f, yRot: 19.810823f } - "flayersend": { dim: "wc:westeros", x: 5607, y: 45, z: -9782, time: 1696965111435L, xRot: -2.549996f, yRot: 144.36732f } - "klbrick1": { dim: "wc:westeros", x: 2078, y: 38, z: 13017, time: 1696965111435L, xRot: -18.599998f, yRot: -254.61757f } - "moorelumberjack1": { dim: "wc:westeros", x: 9021, y: 48, z: 3718, time: 1696965111436L, xRot: 3.2873733f, yRot: -222.00415f } - "khhf3": { dim: "wc:westeros", x: 7986, y: 55, z: -9987, time: 1696965111436L, xRot: 46.79981f, yRot: -93.15998f } - "trestletable": { dim: "wc:westeros", x: 3332, y: 137, z: 13440, time: 1696965111436L, xRot: 9.000005f, yRot: 63.60883f } - "ssfisherh5": { dim: "wc:westeros", x: -7295, y: 40, z: -6029, time: 1696965111436L, xRot: 16.499977f, yRot: -272.84802f } - "riverbend": { dim: "wc:westeros", x: 1330, y: 34, z: 7392, time: 1696965111436L, xRot: 0.9894879f, yRot: -254.20949f } - "dragonstone": { dim: "wc:westeros", x: 8444, y: 34, z: 10374, time: 1696965111437L, xRot: -23.550116f, yRot: 146.09631f } - "condonhf1": { dim: "wc:westeros", x: -132, y: 35, z: -6434, time: 1696965111437L, xRot: -12.000015f, yRot: -148.50293f } - "haystackhall1": { dim: "wc:westeros", x: 7909, y: 45, z: 15661, time: 1696965111437L, xRot: -3.899993f, yRot: 269.8799f } - "csham4": { dim: "wc:westeros", x: -1813, y: 41, z: 17963, time: 1696965111437L, xRot: 14.249919f, yRot: -179.41171f } - "khwt1": { dim: "wc:westeros", x: 6440, y: 46, z: -9059, time: 1696965111437L, xRot: 8.099991f, yRot: -18.308136f } - "wagstaff": { dim: "wc:westeros", x: 4611, y: 41, z: 18652, time: 1696965111437L, xRot: -36.299988f, yRot: -164.62782f } - "dfhunt2": { dim: "wc:westeros", x: 5138, y: 44, z: -9127, time: 1696965111437L, xRot: 1.0500231f, yRot: 148.79878f } - "hellholt1": { dim: "wc:westeros", x: -209, y: 90, z: 24878, time: 1696965111437L, xRot: 12.749614f, yRot: 74.22308f } - "flowerhillmill": { dim: "wc:westeros", x: -2785, y: 48, z: 16533, time: 1696965111438L, xRot: -12.0000515f, yRot: 109.499756f } - "phhamlet3": { dim: "wc:westeros", x: -7247, y: 79, z: 24071, time: 1696965111438L, xRot: -14.24705f, yRot: -34.47145f } - "mossybridge": { dim: "wc:westeros", x: -2202, y: 38, z: -8141, time: 1696965111438L, xRot: -13.499992f, yRot: -185.99297f } - "kl": { dim: "wc:westeros", x: 2350, y: 44, z: 12692, time: 1696965111438L, xRot: -10.799998f, yRot: 304.8555f } - "bushyhf2": { dim: "wc:westeros", x: -641, y: 47, z: 12819, time: 1696965111438L, xRot: -0.29999194f, yRot: 83.95981f } - "wwhunting3": { dim: "wc:westeros", x: 5595, y: 48, z: -6132, time: 1696965111438L, xRot: 16.499838f, yRot: -327.546f } - "dragonsquare": { dim: "wc:westeros", x: 2845, y: 42, z: 12962, time: 1696965111438L, xRot: 0.4500048f, yRot: -72.843506f } - "Willumcaves": { dim: "wc:westeros", x: 1478, y: 94, z: 17303, time: 1696965111439L, xRot: 70.06059f, yRot: -120.447266f } - "hornhillv6": { dim: "wc:westeros", x: -4086, y: 116, z: 19778, time: 1696965111439L, xRot: 57.299965f, yRot: -185.69092f } - "greyglen": { dim: "wc:westeros", x: 3470, y: 69, z: 2847, time: 1696965111439L, xRot: -1.8000032f, yRot: -271.84094f } - "rmquarry2": { dim: "wc:westeros", x: 6123, y: 105, z: 7504, time: 1696965111439L, xRot: 11.249886f, yRot: -201.49644f } - "hwh1": { dim: "wc:westeros", x: -8409, y: 44, z: 19479, time: 1696965111450L, xRot: 0.3760756552219391f, yRot: 201.9366912841797f } - "inchf1": { dim: "wc:westeros", x: -1523, y: 44, z: 14004, time: 1696965111450L, xRot: 6.899989f, yRot: -46.482086f } - "coldwatermine": { dim: "wc:westeros", x: 6873, y: 60, z: 1168, time: 1696965111450L, xRot: 32.40006f, yRot: -28.991913f } - "lyberrwinery": { dim: "wc:westeros", x: -1486, y: 63, z: 14734, time: 1696965111450L, xRot: 85.04994f, yRot: 156.16676f } - "bloodmoon": { dim: "wc:westeros", x: -5746, y: 45, z: -5774, time: 1696965111451L, xRot: -0.30006164f, yRot: -80.545425f } - "orkwood": { dim: "wc:westeros", x: -7397, y: 35, z: 4900, time: 1696965111451L, xRot: -18.303356f, yRot: -33.657696f } - "goodbrother": { dim: "wc:westeros", x: -7120, y: 66, z: 5209, time: 1696965111451L, xRot: 0.4220369f, yRot: -57.56598f } - "littlesister": { dim: "wc:westeros", x: 3939, y: 35, z: -315, time: 1696965111451L, xRot: -4.1743426f, yRot: 5.01001f } - "wfmap": { dim: "wc:playground", x: 115, y: 20, z: -1222, time: 1696965111451L, xRot: 2.8500655f, yRot: 179.16582f } - "inchv5": { dim: "wc:westeros", x: -1511, y: 68, z: 13771, time: 1696965111451L, xRot: 4.5000057f, yRot: 229.81786f } - "watermankeep": { dim: "wc:westeros", x: -3723, y: 42, z: -2571, time: 1696965111451L, xRot: -31.95007f, yRot: 200.85315f } - "peat1": { dim: "wc:westeros", x: -1641, y: 54, z: -8186, time: 1696965111451L, xRot: 39.299965f, yRot: 178.47122f } - "kingswood": { dim: "wc:westeros", x: 3740, y: 43, z: 13881, time: 1696965111451L, xRot: 3.5975733f, yRot: 332.28946f } - "nunny": { dim: "wc:westeros", x: -6361, y: 50, z: 15903, time: 1696965111452L, xRot: 19.350029f, yRot: 286.27957f } - "bonifer": { dim: "wc:westeros", x: 3963, y: 57, z: 17026, time: 1696965111452L, xRot: 10.529954f, yRot: 273.04886f } - "branch": { dim: "wc:westeros", x: -2376, y: 50, z: -9373, time: 1696965111452L, xRot: -15.299992f, yRot: -181.95737f } - "fleabottom": { dim: "wc:westeros", x: 3126, y: 46, z: 12962, time: 1696965111452L, xRot: 7.0499964f, yRot: 176.75813f } - "breakstonequarry2": { dim: "wc:westeros", x: 5184, y: 53, z: 661, time: 1696965111452L, xRot: -3.750004f, yRot: 87.74965f } - "builderwall": { dim: "wc:playground", x: -719, y: 188, z: -1296, time: 1696965111452L, xRot: 23.70001f, yRot: -264.6082f } - "kingsmine": { dim: "wc:westeros", x: 687, y: 76, z: 18127, time: 1696965111452L, xRot: 20.85061f, yRot: -142.01369f } - "auctionhall": { dim: "wc:westeros", x: -7072, y: 43, z: 12132, time: 1696965111452L, xRot: -12.600677f, yRot: -85.57446f } - "jobs": { dim: "wc:playground", x: -1035, y: 21, z: 1342, time: 1696965111452L, xRot: -7.9500036f, yRot: -178.00429f } - "ironislands": { dim: "wc:westeros", x: -7511, y: 108, z: 6578, time: 1696965111453L, xRot: -13.350012f, yRot: 12.599567f } - "bhamlet2": { dim: "wc:westeros", x: -5892, y: 42, z: 19239, time: 1696965111453L, xRot: 13.055984f, yRot: -179.36694f } - "stokeford": { dim: "wc:westeros", x: -4454, y: 35, z: 17282, time: 1696965111453L, xRot: 28.866016f, yRot: -357.32068f } - "khhamlet1": { dim: "wc:westeros", x: 7788, y: 50, z: -9355, time: 1696965111453L, xRot: 21.749825f, yRot: 82.03993f } - "twins": { dim: "wc:westeros", x: -2307, y: 38, z: 3183, time: 1696965111453L, xRot: 6.450021f, yRot: 271.65292f } - "smtrees": { dim: "wc:playground", x: 192, y: 20, z: -323, time: 1696965111453L, xRot: -6.150041f, yRot: 201.06415f } - "rillscabin1": { dim: "wc:westeros", x: -7387, y: 46, z: -5447, time: 1696965111453L, xRot: 0.74995905f, yRot: -86.826096f } - "greygarden": { dim: "wc:westeros", x: -5739, y: 50, z: 5902, time: 1696965111454L, xRot: 13.350289f, yRot: -31.199938f } - "wfsheepfarm2": { dim: "wc:westeros", x: -908, y: 70, z: -8398, time: 1696965111454L, xRot: 42.44995f, yRot: -140.87604f } - "bearislandvillage2": { dim: "wc:westeros", x: -4519, y: 100, z: -13267, time: 1696965111454L, xRot: -1.4999785f, yRot: -180.32617f } - "sloane": { dim: "wc:westeros", x: 2631, y: 50, z: 16788, time: 1696965111454L, xRot: -2.4528244f, yRot: -6.990962f } - "ironmaker": { dim: "wc:westeros", x: -8921, y: 68, z: 5301, time: 1696965111454L, xRot: -23.099966f, yRot: 38.1007f } - "stairs": { dim: "wc:westeros", x: 7050, y: 88, z: 13381, time: 1696965111454L, xRot: 6.6000366f, yRot: 92.081215f } - "wh5": { dim: "wc:westeros", x: 1330, y: 75, z: -3007, time: 1696965111455L, xRot: 47.40005f, yRot: -90.61093f } - "watergardens": { dim: "wc:westeros", x: 9135, y: 70, z: 24555, time: 1696965111455L, xRot: 28.050016f, yRot: 183.1203f } - "ramsfield": { dim: "wc:westeros", x: 7458, y: 45, z: -9522, time: 1696965111455L, xRot: -3.0001817f, yRot: -317.70926f } - "rillscabin5": { dim: "wc:westeros", x: -5750, y: 47, z: -6742, time: 1696965111455L, xRot: 8.850025f, yRot: -6.3746223f } - "wytherton": { dim: "wc:westeros", x: -5898, y: 46, z: 18717, time: 1696965111455L, xRot: -1.6499796f, yRot: 174.76086f } - "groost": { dim: "wc:westeros", x: 6437, y: 73, z: 17633, time: 1696965111455L, xRot: -9.89999f, yRot: 239.44038f } - "newkeephamlet1": { dim: "wc:westeros", x: 894, y: 72, z: 2195, time: 1696965111455L, xRot: -12.000001f, yRot: 41.85285f } - "blackwaterferry": { dim: "wc:westeros", x: 2890, y: 37, z: 13522, time: 1696965111455L, xRot: 5.400019f, yRot: -358.14282f } - "westbrookdelta": { dim: "wc:westeros", x: -6575, y: 55, z: 17273, time: 1696965111456L, xRot: 42.14981f, yRot: -69.92853f } - "csm2": { dim: "wc:westeros", x: -1562, y: 56, z: 18141, time: 1696965111456L, xRot: 47.999928f, yRot: 178.93805f } - "woodhedge": { dim: "wc:westeros", x: -240, y: 39, z: 7072, time: 1696965111456L, xRot: -0.8850738f, yRot: 11.535997f } - "sunhouse": { dim: "wc:westeros", x: -6725, y: 51, z: 25042, time: 1696965111456L, xRot: -11.964916f, yRot: -357.403f } - "redwater": { dim: "wc:westeros", x: -3378, y: 59, z: 22638, time: 1696965111467L, xRot: 33.599995f, yRot: -112.75613f } - "mourningwood": { dim: "wc:westeros", x: -2259, y: 66, z: -6118, time: 1696965111468L, xRot: 12.7500105f, yRot: 262.4784f } - "vaith": { dim: "wc:westeros", x: 3146, y: 42, z: 24857, time: 1696965111468L, xRot: 2.9999893f, yRot: -124.52618f } - "oldbuilds": { dim: "wc:playground", x: -529, y: 21, z: -328, time: 1696965111468L, xRot: 3.000006f, yRot: -179.84921f } - "breakwaterkeep": { dim: "wc:westeros", x: 3105, y: 56, z: -557, time: 1696965111468L, xRot: -7.893041f, yRot: -118.49193f } - "moore": { dim: "wc:westeros", x: 8970, y: 39, z: 4001, time: 1696965111468L, xRot: -4.9285903f, yRot: -87.42633f } - "cmham2": { dim: "wc:westeros", x: -7422, y: 43, z: 15987, time: 1696965111468L, xRot: 1.950031f, yRot: -14.805267f } - "start1": { dim: "wc:westeros", x: -2045, y: 59, z: 20922, time: 1696965111468L, xRot: -7.194742f, yRot: 316.4975f } - "littlesistercave": { dim: "wc:westeros", x: 4094, y: 34, z: -57, time: 1696965111469L, xRot: 11.275633f, yRot: 235.71072f } - "gateofthegods": { dim: "wc:westeros", x: 2338, y: 44, z: 12683, time: 1696965111469L, xRot: -6.000004f, yRot: 314.75537f } - "shephardton": { dim: "wc:westeros", x: 6884, y: 34, z: -5075, time: 1696965111469L, xRot: -7.3712454f, yRot: 10.83095f } - "oalog": { dim: "wc:westeros", x: 7473, y: 57, z: 4122, time: 1696965111469L, xRot: 23.795006f, yRot: 185.27695f } - "bikinibottom": { dim: "wc:playground", x: -435, y: 21, z: -1007, time: 1696965111469L, xRot: 34.80001f, yRot: -46.058292f } - "stackhousevillage": { dim: "wc:westeros", x: -6578, y: 89, z: 16793, time: 1696965111469L, xRot: 13.5144415f, yRot: 77.04974f } - "shadyglen": { dim: "wc:westeros", x: 6014, y: 60, z: 18221, time: 1696965111469L, xRot: 4.3590646f, yRot: 242.30402f } - "towerofglimmering": { dim: "wc:westeros", x: -6434, y: 46, z: 5323, time: 1696965111470L, xRot: -0.4549775f, yRot: -166.88882f } - "hawthornecastle": { dim: "wc:westeros", x: -2018, y: 60, z: 12892, time: 1696965111470L, xRot: -16.499918f, yRot: -183.14793f } - "csham3": { dim: "wc:westeros", x: -1118, y: 63, z: 18887, time: 1696965111470L, xRot: 16.350239f, yRot: -182.58234f } - "griffinscrown": { dim: "wc:westeros", x: 5000, y: 75, z: -12041, time: 1696965111470L, xRot: -6.7499833f, yRot: -162.48389f } - "torrhenshillside": { dim: "wc:westeros", x: -3117, y: 39, z: -6099, time: 1696965111470L, xRot: -17.100075f, yRot: -49.518463f } - "brightstone": { dim: "wc:westeros", x: 6068, y: 64, z: 1349, time: 1696965111470L, xRot: 6.899988f, yRot: -152.84996f } - "woods": { dim: "wc:westeros", x: -5421, y: 46, z: -10220, time: 1696965111470L, xRot: 15.89997f, yRot: -182.25989f } - "ltlogging": { dim: "wc:westeros", x: -763, y: 92, z: 16860, time: 1696965111471L, xRot: -1.2000284f, yRot: 270.5832f } - "klquarry": { dim: "wc:westeros", x: 2909, y: 59, z: 12138, time: 1696965111471L, xRot: 6.449995f, yRot: -98.92212f } - "threehills": { dim: "wc:westeros", x: -270, y: 56, z: 16548, time: 1696965111471L, xRot: 12.4500065f, yRot: -3.657135f } - "volmark": { dim: "wc:westeros", x: -6222, y: 41, z: 5345, time: 1696965111471L, xRot: -5.2167683f, yRot: 324.1814f } - "bbholdfast1": { dim: "wc:westeros", x: -517, y: 54, z: 15525, time: 1696965111471L, xRot: -23.250086f, yRot: -217.17154f } - "sslodge": { dim: "wc:westeros", x: -8993, y: 47, z: -6917, time: 1696965111471L, xRot: 12.449994f, yRot: -177.14655f } - "longtable": { dim: "wc:westeros", x: -1491, y: 114, z: 16726, time: 1696965111471L, xRot: -4.949993f, yRot: -180.20534f } - "bearpit": { dim: "wc:westeros", x: 1864, y: 45, z: 9157, time: 1696965111472L, xRot: 8.759455f, yRot: -87.42536f } - "cnhunt1": { dim: "wc:westeros", x: 6266, y: 67, z: 18677, time: 1696965111472L, xRot: 24.900045f, yRot: 88.92291f } - "littlefinger": { dim: "wc:westeros", x: 7672, y: 39, z: 590, time: 1696965111472L, xRot: -22.649837f, yRot: -352.7894f } - "honeyholt": { dim: "wc:westeros", x: -7531, y: 37, z: 21126, time: 1696965111472L, xRot: -3.392235f, yRot: 187.74606f } - "wheatfield": { dim: "wc:westeros", x: 1656, y: 67, z: 11399, time: 1696965111472L, xRot: 5.777839f, yRot: -80.321075f } - "felwood": { dim: "wc:westeros", x: 5117, y: 97, z: 16403, time: 1696965111472L, xRot: -22.710918f, yRot: -180.32327f } - "___": { dim: "wc:playground", x: 199, y: 21, z: 780, time: 1696965111472L, xRot: 15.943047f, yRot: -270.3135f } - "donnigerq2": { dim: "wc:westeros", x: 6844, y: 76, z: 461, time: 1696965111472L, xRot: 19.350012f, yRot: 25.422491f } - "stonybeacon": { dim: "wc:westeros", x: -5460, y: 48, z: -5473, time: 1696965111473L, xRot: -4.0500093f, yRot: -100.77981f } - "oldlasthearth": { dim: "wc:playground", x: -373, y: 21, z: -357, time: 1696965111483L, xRot: -5.850013f, yRot: 90.15038f } - "bushymine": { dim: "wc:westeros", x: -1017, y: 71, z: 13425, time: 1696965111484L, xRot: 27.600018f, yRot: -258.94034f } - "stoneypond": { dim: "wc:westeros", x: -3946, y: 57, z: 4574, time: 1696965111484L, xRot: 11.699952f, yRot: 1.774757f } - "egen": { dim: "wc:westeros", x: 3886, y: 39, z: 4023, time: 1696965111484L, xRot: -18.524784f, yRot: -245.51343f } - "crag": { dim: "wc:westeros", x: -6771, y: 60, z: 8697, time: 1696965111484L, xRot: -14.297325f, yRot: 73.799866f } - "larchwood": { dim: "wc:westeros", x: 5301, y: 54, z: -9571, time: 1696965111484L, xRot: -8.400178f, yRot: 10.948577f } - "dragongatedefences": { dim: "wc:westeros", x: 3841, y: 86, z: 12366, time: 1696965111484L, xRot: 22.967913f, yRot: 224.072f } - "thepaps": { dim: "wc:westeros", x: 8812, y: 34, z: 57, time: 1696965111484L, xRot: -1.6500084f, yRot: -296.09506f } - "overlook": { dim: "wc:westeros", x: 6347, y: 39, z: 550, time: 1696965111484L, xRot: -34.8f, yRot: -27.97739f } - "phhamlet1": { dim: "wc:westeros", x: -6746, y: 100, z: 23821, time: 1696965111484L, xRot: 8.998277f, yRot: 175.2329f } - "huntsmenhide": { dim: "wc:westeros", x: -3640, y: 45, z: -6416, time: 1696965111484L, xRot: 0.44991603f, yRot: -240.46814f } - "westbrook": { dim: "wc:westeros", x: -5684, y: 72, z: 16845, time: 1696965111485L, xRot: 63.599987f, yRot: 130.09898f } - "hhlumbermill": { dim: "wc:westeros", x: 4780, y: 57, z: 3320, time: 1696965111485L, xRot: 15.089585f, yRot: 340.15167f } - "bandaseptry": { dim: "wc:westeros", x: -9652, y: 73, z: 20607, time: 1696965111485L, xRot: -9.000065f, yRot: 178.6014f } - "ironoaksmine": { dim: "wc:westeros", x: 5059, y: 116, z: 5342, time: 1696965111485L, xRot: 0.15004587f, yRot: 47.39159f } - "inchfa2": { dim: "wc:westeros", x: -965, y: 43, z: 14599, time: 1696965111485L, xRot: 0.4500078f, yRot: 224.42667f } - "greymine": { dim: "wc:westeros", x: 531, y: 68, z: 3481, time: 1696965111485L, xRot: 19.049534f, yRot: 101.09274f } - "rillscabin3": { dim: "wc:westeros", x: -6196, y: 46, z: -3324, time: 1696965111485L, xRot: -9.14991f, yRot: 12.399259f } - "skinnershill": { dim: "wc:westeros", x: 4132, y: 47, z: -11707, time: 1696965111485L, xRot: -12.960306f, yRot: 78.59312f } - "bayofseals": { dim: "wc:westeros", x: 5982, y: 34, z: -13598, time: 1696965111485L, xRot: 31.950027f, yRot: -125.24712f } - "rivercontest": { dim: "wc:playground", x: -1408, y: 94, z: 123, time: 1696965111485L, xRot: 24.15f, yRot: 179.99976f } - "BlackhavenDock": { dim: "wc:westeros", x: 2370, y: 35, z: 20059, time: 1696965111486L, xRot: 0.8999868f, yRot: -179.69934f } - "lghf1": { dim: "wc:westeros", x: -1278, y: 88, z: 19794, time: 1696965111486L, xRot: 26.399971f, yRot: 92.70115f } - "fishingvillage": { dim: "wc:westeros", x: -9744, y: 35, z: -6466, time: 1696965111486L, xRot: 12.749956f, yRot: 176.25323f } - "newbarrel": { dim: "wc:westeros", x: -2454, y: 57, z: 16272, time: 1696965111486L, xRot: -16.050001f, yRot: -228.12384f } - "Willum5": { dim: "wc:westeros", x: 1284, y: 101, z: 17444, time: 1696965111486L, xRot: 53.561405f, yRot: -186.89726f } - "wells": { dim: "wc:westeros", x: 8481, y: 74, z: 23863, time: 1696965111486L, xRot: -7.050009f, yRot: -270.91986f } - "harroway": { dim: "wc:westeros", x: 1384, y: 38, z: 7835, time: 1696965111486L, xRot: 7.799944f, yRot: 310.4906f } - "professions": { dim: "wc:playground", x: -1035, y: 21, z: 1342, time: 1696965111486L, xRot: -7.9500036f, yRot: -178.00429f } - "fmhf1": { dim: "wc:westeros", x: -428, y: 39, z: 6169, time: 1696965111487L, xRot: -1.0500213f, yRot: 228.26001f } - "bushyhf1": { dim: "wc:westeros", x: -1482, y: 46, z: 12983, time: 1696965111487L, xRot: -20.849995f, yRot: 90.40992f } - "darkdell": { dim: "wc:westeros", x: -2054, y: 117, z: 20172, time: 1696965111487L, xRot: 7.7998833656311035f, yRot: 177.46495056152344f } - "terrickhf2": { dim: "wc:westeros", x: 176, y: 47, z: 6480, time: 1696965111487L, xRot: 16.649986f, yRot: 272.76263f } - "moorebeacon1": { dim: "wc:westeros", x: 9490, y: 37, z: 2861, time: 1696965111487L, xRot: -12.449864f, yRot: -183.4066f } - "dfhunt3": { dim: "wc:westeros", x: 5301, y: 34, z: -10504, time: 1696965111487L, xRot: -16.50026f, yRot: -287.39508f } - "damascus": { dim: "wc:playground", x: 114, y: 21, z: 1066, time: 1696965111487L, xRot: 17.399899f, yRot: -47.086025f } - "ywhamlet3": { dim: "wc:westeros", x: -5370, y: 54, z: 7117, time: 1696965111487L, xRot: 1.3499954f, yRot: -128.71089f } - "cole": { dim: "wc:westeros", x: 3306, y: 71, z: 19848, time: 1696965111487L, xRot: 41.4f, yRot: -179.39464f } - "lgtrees": { dim: "wc:playground", x: 411, y: 20, z: -324, time: 1696965111488L, xRot: -1.349998f, yRot: 206.4649f } - "barbelpoint": { dim: "wc:westeros", x: 4935, y: 49, z: 12824, time: 1696965111488L, xRot: 26.25009f, yRot: 43.355316f } - "uplands": { dim: "wc:westeros", x: -6567, y: 58, z: 21750, time: 1696965111488L, xRot: -20.400042f, yRot: -20.218409f } - "dfruin3": { dim: "wc:westeros", x: 4651, y: 62, z: -11218, time: 1696965111488L, xRot: 43.650074f, yRot: 118.34939f } - "yelwt2": { dim: "wc:westeros", x: -7269, y: 102, z: 22684, time: 1696965111488L, xRot: 42.91862f, yRot: -262.53775f } - "ashfordmine1": { dim: "wc:westeros", x: -191, y: 58, z: 17834, time: 1696965111488L, xRot: 3.300455f, yRot: -180.10976f } - "wintergames": { dim: "wc:playground", x: -1133, y: 21, z: 144, time: 1696965111488L, xRot: 6.33623f, yRot: -88.35497f } - "waterman": { dim: "wc:westeros", x: -3635, y: 40, z: -2515, time: 1696965111488L, xRot: -11.250091f, yRot: 90.90349f } - "sealskin": { dim: "wc:westeros", x: -8942, y: 35, z: 4726, time: 1696965111488L, xRot: -18.935719f, yRot: -312.8599f } - "brightwaterkeep": { dim: "wc:westeros", x: -7262, y: 78, z: 20097, time: 1696965111489L, xRot: -14.400212f, yRot: -5.0852757f } - "dgh3": { dim: "wc:westeros", x: 6089, y: 70, z: 538, time: 1696965111489L, xRot: 44.580437f, yRot: 4.6973267f } - "ochold4": { dim: "wc:westeros", x: 4655, y: 56, z: -3053, time: 1696965111489L, xRot: 30.149956f, yRot: 232.65544f } - "inchf3": { dim: "wc:westeros", x: -602, y: 42, z: 14377, time: 1696965111489L, xRot: 17.70001f, yRot: -340.4826f } - "deeplake": { dim: "wc:westeros", x: 2407, y: 83, z: -16008, time: 1696965111500L, xRot: 3.749980926513672f, yRot: 180.7625274658203f } - "Greyruins": { dim: "wc:westeros", x: 500, y: 57, z: 3368, time: 1696965111501L, xRot: 1.799998f, yRot: 182.69281f } - "mmh": { dim: "wc:westeros", x: -4951, y: 68, z: 9806, time: 1696965111501L, xRot: 11.400043f, yRot: 262.45462f } - "bearislandvillage3": { dim: "wc:westeros", x: -3828, y: 54, z: -13331, time: 1696965111501L, xRot: 8.941142f, yRot: 179.66742f } - "musgood": { dim: "wc:westeros", x: 3304, y: 124, z: 17526, time: 1696965111501L, xRot: 3.5998309f, yRot: -176.80658f } - "boneway": { dim: "wc:westeros", x: 1024, y: 99, z: 21434, time: 1696965111501L, xRot: -2.250429f, yRot: -35.42697f } - "chep": { dim: "wc:playground", x: -218, y: 21, z: 858, time: 1696965111502L, xRot: -6.789925f, yRot: 45.878723f } - "misc": { dim: "wc:playground", x: -763, y: 20, z: -869, time: 1696965111502L, xRot: 78.149994f, yRot: -174.90884f } - "shadowtest": { dim: "wc:playground", x: 864, y: 20, z: 1293, time: 1696965111502L, xRot: 11.249973f, yRot: -49.38855f } - "lyberr": { dim: "wc:westeros", x: -1903, y: 44, z: 14878, time: 1696965111502L, xRot: 2.2499418f, yRot: -169.4823f } - "dragongate": { dim: "wc:westeros", x: 3442, y: 48, z: 12652, time: 1696965111502L, xRot: 7.0500937f, yRot: 49.253944f } - "inchv6": { dim: "wc:westeros", x: -828, y: 45, z: 13840, time: 1696965111503L, xRot: 0.75007325f, yRot: -99.432274f } - "moss": { dim: "wc:westeros", x: 2562, y: 54, z: -4584, time: 1696965111503L, xRot: -4.2000155f, yRot: -236.46419f } - "ravenscar": { dim: "wc:westeros", x: -7394, y: 69, z: -11827, time: 1696965111503L, xRot: 5.249427f, yRot: 306.7395f } - "whytehaven": { dim: "wc:westeros", x: 7276, y: 46, z: 5296, time: 1696965111503L, xRot: -5.400075f, yRot: -314.90002f } - "greenfield": { dim: "wc:westeros", x: -7689, y: 52, z: 13110, time: 1696965111503L, xRot: -11.263282775878906f, yRot: -84.4483413696289f } - "hornhilltown2": { dim: "wc:westeros", x: -4533, y: 93, z: 19310, time: 1696965111503L, xRot: 43.19999f, yRot: -4.6442895f } - "karhold": { dim: "wc:westeros", x: 7562, y: 91, z: -11041, time: 1696965111503L, xRot: -5.7002025f, yRot: -127.060265f } - "oldninestars": { dim: "wc:playground", x: -552, y: 24, z: -610, time: 1696965111503L, xRot: -0.74997085f, yRot: -86.54909f } - "liongate": { dim: "wc:westeros", x: 2293, y: 42, z: 12993, time: 1696965111504L, xRot: 8.999997f, yRot: 288.95718f } - "ruttingmeadow": { dim: "wc:westeros", x: -1162, y: 42, z: 7173, time: 1696965111518L, xRot: 0.90013206f, yRot: -297.59616f } - "groundcover": { dim: "wc:playground", x: 581, y: 28, z: -1161, time: 1696965111518L, xRot: 5.1809435f, yRot: -179.93811f } - "ywhamlet1": { dim: "wc:westeros", x: -5719, y: 38, z: 7020, time: 1696965111518L, xRot: 5.9999857f, yRot: -180.46104f } - "breakstonehamlet3": { dim: "wc:westeros", x: 5314, y: 38, z: 296, time: 1696965111518L, xRot: -4.4999676f, yRot: -65.55032f } - "gww": { dim: "wc:westeros", x: -1155, y: 64, z: 57, time: 1696965111519L, xRot: 23.549614f, yRot: 192.15268f } - "pflumber": { dim: "wc:westeros", x: 2099, y: 86, z: 18161, time: 1696965111519L, xRot: -12.991038f, yRot: -73.56697f } - "ltport": { dim: "wc:westeros", x: -1536, y: 39, z: 16428, time: 1696965111519L, xRot: 43.65f, yRot: -189.33125f } - "birchgrove": { dim: "wc:westeros", x: -5997, y: 45, z: -4004, time: 1696965111519L, xRot: 8.249986f, yRot: 113.62659f } - "savannahpvp": { dim: "wc:playground", x: -1021, y: 61, z: 346, time: 1696965111519L, xRot: 38.999954f, yRot: 0.8991394f } - "ssfisherh3": { dim: "wc:westeros", x: -9901, y: 37, z: -4451, time: 1696965111519L, xRot: 1.6499939f, yRot: -359.5482f } - "tarthv3": { dim: "wc:westeros", x: 9792, y: 88, z: 16321, time: 1696965111519L, xRot: 27.933382f, yRot: 92.41078f } - "hawthornewinery": { dim: "wc:westeros", x: -1954, y: 45, z: 13250, time: 1696965111520L, xRot: 8.099933f, yRot: -279.0016f } - "bhmanse2": { dim: "wc:westeros", x: 2282, y: 83, z: 19305, time: 1696965111520L, xRot: -22.688868f, yRot: -199.02357f } - "uplandskeep": { dim: "wc:westeros", x: -6346, y: 80, z: 21886, time: 1696965111520L, xRot: -10.950049f, yRot: -82.46908f } - "stonetree": { dim: "wc:westeros", x: -6495, y: 56, z: 5988, time: 1696965111520L, xRot: 3.839369f, yRot: 88.22111f } - "sablehall1": { dim: "wc:westeros", x: 4057, y: 123, z: -16119, time: 1696965111520L, xRot: 25.04991f, yRot: 173.06755f } - "quietisle": { dim: "wc:westeros", x: 4053, y: 35, z: 8712, time: 1696965111520L, xRot: -8.096501f, yRot: -140.18492f } - "gthf2": { dim: "wc:westeros", x: -5354, y: 78, z: 10284, time: 1696965111520L, xRot: 1.1999943f, yRot: -265.343f } - "oldoakseptry": { dim: "wc:westeros", x: -7080, y: 37, z: 17025, time: 1696965111520L, xRot: 4.35014f, yRot: -149.3699f } - "Cpt_Jamo": { dim: "wc:playground", x: 226, y: 21, z: 661, time: 1696965111521L, xRot: 13.175764f, yRot: -174.5954f } - "herstonhamlet3": { dim: "wc:westeros", x: 5972, y: 72, z: 19831, time: 1696965111521L, xRot: 45.450005f, yRot: 185.10278f } - "watermanrf": { dim: "wc:westeros", x: -1520, y: 35, z: -2291, time: 1696965111521L, xRot: -0.15000002f, yRot: 358.34958f } - "moreland": { dim: "wc:westeros", x: -7680, y: 57, z: 11448, time: 1696965111521L, xRot: -2.8661923f, yRot: -209.48639f } - "lordhewettstown1": { dim: "wc:westeros", x: -7766, y: 43, z: 17841, time: 1696965111521L, xRot: 2.7348945f, yRot: -172.00336f } - "HayfordFarm2": { dim: "wc:westeros", x: 2067, y: 56, z: 12177, time: 1696965111521L, xRot: 21.30002f, yRot: 309.98413f } - "gwwtest": { dim: "wc:playground", x: 1177, y: 37, z: -488, time: 1696965111522L, xRot: 27.450264f, yRot: 13.575871f } - "oafields": { dim: "wc:westeros", x: 7467, y: 40, z: 4519, time: 1696965111522L, xRot: 3.6000237f, yRot: -94.721634f } - "overton": { dim: "wc:westeros", x: 6484, y: 45, z: -6249, time: 1696965111522L, xRot: 1.1788279f, yRot: -159.12096f } - "bearislandvillage5": { dim: "wc:westeros", x: -5009, y: 81, z: -13006, time: 1696965111522L, xRot: -7.9499865f, yRot: 270.42316f } - "ssfisherh6": { dim: "wc:westeros", x: -9944, y: 42, z: -5226, time: 1696965111522L, xRot: -11.099977f, yRot: -334.34833f } - "sky": { dim: "wc:westeros", x: 3852, y: 93, z: 6175, time: 1696965111522L, xRot: -2.2400067f, yRot: -152.86964f } - "barrowlight": { dim: "wc:westeros", x: 6671, y: 38, z: -6694, time: 1696965111522L, xRot: 16.499975f, yRot: 320.5556f } - "grandisoncrossing": { dim: "wc:westeros", x: 4976, y: 62, z: 16961, time: 1696965111522L, xRot: -2.399489f, yRot: -159.38007f } - "df9": { dim: "wc:westeros", x: 3366, y: 67, z: -12067, time: 1696965111522L, xRot: 8.399953f, yRot: -244.34993f } - "wwlogging2": { dim: "wc:westeros", x: 5873, y: 46, z: -5750, time: 1696965111523L, xRot: 9.000013f, yRot: -32.700222f } - "rillscabin2": { dim: "wc:westeros", x: -7197, y: 41, z: -3039, time: 1696965111523L, xRot: -1.669099f, yRot: -20.416351f } - "nunnsdeep": { dim: "wc:westeros", x: -5337, y: 106, z: 7964, time: 1696965111534L, xRot: -25.04991f, yRot: 198.60289f } - "wwloggin1": { dim: "wc:westeros", x: 6822, y: 46, z: -4691, time: 1696965111534L, xRot: 4.028639f, yRot: 128.431f } - "XMasMiniGames": { dim: "wc:playground", x: -1135, y: 21, z: 144, time: 1696965111534L, xRot: 4.0862246f, yRot: -94.655014f } - "ocfish4": { dim: "wc:westeros", x: 3225, y: 55, z: -1623, time: 1696965111534L, xRot: -10.649958f, yRot: -179.09381f } - "rillshunting3": { dim: "wc:westeros", x: -5029, y: 61, z: -6855, time: 1696965111534L, xRot: -19.050009f, yRot: -125.22057f } - "sftower": { dim: "wc:westeros", x: -5020, y: 49, z: 24588, time: 1696965111534L, xRot: 2.2500725f, yRot: -324.78018f } - "csmanse2": { dim: "wc:westeros", x: -1562, y: 56, z: 18141, time: 1696965111534L, xRot: 25.949903f, yRot: 189.1382f } - "feastfires": { dim: "wc:westeros", x: -9244, y: 49, z: 12188, time: 1696965111534L, xRot: -11.356897f, yRot: -14.805493f } - "hornwood": { dim: "wc:westeros", x: 3354, y: 49, z: -6732, time: 1696965111535L, xRot: -20.84998f, yRot: 277.20123f } - "yew": { dim: "wc:westeros", x: -4699, y: 86, z: 12172, time: 1696965111535L, xRot: -30.280794f, yRot: -116.47488f } - "inncontest": { dim: "wc:playground", x: -1297, y: 121, z: 143, time: 1696965111535L, xRot: -7.650047f, yRot: -180.1388f } - "westpvp": { dim: "wc:playground", x: -1025, y: 22, z: 271, time: 1696965111535L, xRot: 5.3999906f, yRot: -95.15097f } - "hollardcastle": { dim: "wc:westeros", x: 5613, y: 47, z: 10956, time: 1696965111535L, xRot: -11.849994f, yRot: -63.0839f } - "rivermill": { dim: "wc:westeros", x: -6095, y: 40, z: -2751, time: 1696965111535L, xRot: -0.44997305f, yRot: 26.499115f } - "cuyhamlet1": { dim: "wc:westeros", x: -7250, y: 56, z: 24950, time: 1696965111535L, xRot: 22.200018f, yRot: 218.30307f } - "tallyvillage": { dim: "wc:westeros", x: 7011, y: 126, z: 14566, time: 1696965111535L, xRot: 9.749703f, yRot: 175.58438f } - "carbeck": { dim: "wc:westeros", x: 7152, y: 70, z: 16540, time: 1696965111535L, xRot: 13.475013f, yRot: -248.25647f } - "kayce": { dim: "wc:westeros", x: -8982, y: 55, z: 11773, time: 1696965111535L, xRot: 18.75001f, yRot: -249.06287f } - "marchway": { dim: "wc:westeros", x: 4279, y: 88, z: 19123, time: 1696965111535L, xRot: -10.800068f, yRot: 122.33193f } - "foresttest": { dim: "wc:playground", x: -1635, y: 21, z: 958, time: 1696965111536L, xRot: -0.7493052f, yRot: 269.44592f } - "yelvin2": { dim: "wc:westeros", x: -5640, y: 102, z: 22822, time: 1696965111536L, xRot: 14.85269f, yRot: -90.12852f } - "bbmanse": { dim: "wc:westeros", x: -1134, y: 37, z: 15553, time: 1696965111536L, xRot: -9.750057f, yRot: -85.11526f } - "hornhillhf1": { dim: "wc:westeros", x: -4847, y: 111, z: 19990, time: 1696965111536L, xRot: 32.54993f, yRot: -52.85014f } - "baratheon2": { dim: "wc:westeros", x: 7400, y: 52, z: 16958, time: 1696965111536L, xRot: 17.099995f, yRot: -116.45004f } - "rlhf1": { dim: "wc:westeros", x: -5265, y: 64, z: 15245, time: 1696965111536L, xRot: -3.9000142f, yRot: 180.79898f } - "honeytree": { dim: "wc:westeros", x: -1006, y: 47, z: 7044, time: 1696965111536L, xRot: -11.962939f, yRot: -122.525024f } - "wolfsgate": { dim: "wc:westeros", x: 2062, y: 46, z: -2782, time: 1696965111536L, xRot: -22.949997f, yRot: 0.13900757f } - "thecrag": { dim: "wc:westeros", x: -6771, y: 60, z: 8697, time: 1696965111536L, xRot: -14.297325f, yRot: 73.799866f } - "rlhamlet2": { dim: "wc:westeros", x: -5345, y: 55, z: 15589, time: 1696965111536L, xRot: 26.250027f, yRot: 0.048930086f } - "gvhf4": { dim: "wc:westeros", x: 1737, y: 105, z: 15937, time: 1696965111537L, xRot: 76.02628f, yRot: -76.072205f } - "fury": { dim: "wc:westeros", x: 8592, y: 37, z: 10386, time: 1696965111537L, xRot: -15.600219f, yRot: -359.10327f } - "pennytree": { dim: "wc:westeros", x: -1351, y: 70, z: 6461, time: 1696965111537L, xRot: -5.1358013f, yRot: -241.8984f } - "WWwreck": { dim: "wc:westeros", x: 7106, y: 38, z: -6419, time: 1696965111537L, xRot: 4.02874f, yRot: -277.62073f } - "blackwoodvale": { dim: "wc:westeros", x: -1790, y: 36, z: 6460, time: 1696965111537L, xRot: -5.352258f, yRot: 318.39337f } - "oldwillow": { dim: "wc:westeros", x: 705, y: 47, z: 10767, time: 1696965111537L, xRot: 8.437529f, yRot: 358.6722f } - "goldengallery": { dim: "wc:westeros", x: -7671, y: 106, z: 11886, time: 1696965111537L, xRot: -9.75022f, yRot: -173.38074f } - "amberlyhf1": { dim: "wc:westeros", x: 7884, y: 46, z: 18501, time: 1696965111537L, xRot: -7.499997f, yRot: 230.979f } - "inchv3": { dim: "wc:westeros", x: -1019, y: 41, z: 14903, time: 1696965111538L, xRot: -7.050003f, yRot: 225.17686f } - "csham5": { dim: "wc:westeros", x: -1261, y: 50, z: 18312, time: 1696965111538L, xRot: -4.350056f, yRot: 141.5882f } - "sealslapperbay": { dim: "wc:westeros", x: 7822, y: 36, z: -12736, time: 1696965111538L, xRot: 36.6f, yRot: -10.214233f } - "godsgrace": { dim: "wc:westeros", x: 5374, y: 35, z: 24697, time: 1696965111538L, xRot: 5.399651f, yRot: 178.92346f } - "thenorth": { dim: "wc:westeros", x: -950, y: 63, z: -8333, time: 1696965111538L, xRot: 5.250012f, yRot: 86.68411f } - "snow": { dim: "wc:westeros", x: 3819, y: 154, z: 5947, time: 1696965111538L, xRot: -25.65002f, yRot: -16.946655f } - "spdhamlet": { dim: "wc:westeros", x: -8136, y: 47, z: -11582, time: 1696965111538L, xRot: 38.85001f, yRot: 70.05138f } - "fwcamp3": { dim: "wc:westeros", x: 5256, y: 42, z: 16293, time: 1696965111538L, xRot: 10.200062f, yRot: -2.1285286f } - "jmppvp": { dim: "wc:playground", x: -869, y: 47, z: 264, time: 1696965111538L, xRot: 2.5500114f, yRot: -268.70374f } - "fwcamp2": { dim: "wc:westeros", x: 5121, y: 50, z: 16428, time: 1696965111539L, xRot: -3.4499998f, yRot: -0.92922974f } - "thehook": { dim: "wc:westeros", x: 2861, y: 42, z: 13311, time: 1696965111539L, xRot: -6.8998995f, yRot: 259.56027f } - "yelham1": { dim: "wc:westeros", x: -6895, y: 104, z: 22738, time: 1696965111550L, xRot: 13.73028f, yRot: -50.09265f } - "brightglade": { dim: "wc:westeros", x: 6216, y: 38, z: 2706, time: 1696965111551L, xRot: 1.6853635f, yRot: -112.72308f } - "kldocks": { dim: "wc:westeros", x: 2825, y: 40, z: 13460, time: 1696965111551L, xRot: 2.1000228f, yRot: 102.209366f } - "rhhf1": { dim: "wc:westeros", x: 9866, y: 58, z: 18423, time: 1696965111551L, xRot: 4.2479463f, yRot: -76.89093f } - "byrchcrossing": { dim: "wc:westeros", x: 3412, y: 45, z: 12048, time: 1696965111551L, xRot: -3.567758f, yRot: -48.622025f } - "pebble": { dim: "wc:westeros", x: 6045, y: 35, z: 221, time: 1696965111551L, xRot: -12.791993f, yRot: -201.29097f } - "rhhf3": { dim: "wc:westeros", x: 8403, y: 52, z: 18523, time: 1696965111551L, xRot: 26.999937f, yRot: 270.2044f } - "rollingfordkeep": { dim: "wc:westeros", x: 1759, y: 36, z: 12816, time: 1696965111551L, xRot: 3.3228877f, yRot: 0.9575161f } - "plumm": { dim: "wc:westeros", x: -6868, y: 72, z: 14513, time: 1696965111552L, xRot: -1.2350523f, yRot: 358.2319f } - "sweetportsound": { dim: "wc:westeros", x: 7430, y: 46, z: 14135, time: 1696965111552L, xRot: -12f, yRot: -151.71834f } - "sfhamlet7": { dim: "wc:westeros", x: -4899, y: 55, z: 25816, time: 1696965111552L, xRot: 7.6500235f, yRot: 352.16937f } - "cairns": { dim: "wc:westeros", x: -704, y: 48, z: 6882, time: 1696965111552L, xRot: -11.157132f, yRot: 219.24515f } - "Gowerhf3": { dim: "wc:westeros", x: 8594, y: 60, z: 20466, time: 1696965111552L, xRot: 50.099937f, yRot: -266.25125f } - "csruins": { dim: "wc:westeros", x: -1581, y: 90, z: 18923, time: 1696965111552L, xRot: 24.749723f, yRot: -4.8216558f } - "greyhaven": { dim: "wc:westeros", x: 5060, y: 43, z: 2573, time: 1696965111552L, xRot: -16.95003f, yRot: -37.237335f } - "rgfarm": { dim: "wc:westeros", x: 4971, y: 42, z: -4449, time: 1696965111552L, xRot: -7.1999936f, yRot: -233.69638f } - "pfcabin": { dim: "wc:westeros", x: 1920, y: 65, z: 17901, time: 1696965111553L, xRot: -15.399181f, yRot: 41.199245f } - "hwhs1": { dim: "wc:westeros", x: -8171, y: 44, z: 19380, time: 1696965111553L, xRot: -7.988891f, yRot: 96.45991f } - "nickpabshamlet": { dim: "wc:westeros", x: 708, y: 45, z: 7571, time: 1696965111553L, xRot: 32.09996f, yRot: 56.539543f } - "strangersept": { dim: "wc:westeros", x: 3077, y: 51, z: 12909, time: 1696965111553L, xRot: -4.1999726f, yRot: -180.09193f } - "ochamlet2": { dim: "wc:westeros", x: 3999, y: 42, z: -2443, time: 1696965111553L, xRot: 7.19998f, yRot: 271.20572f } - "charlton": { dim: "wc:westeros", x: -759, y: 48, z: 5094, time: 1696965111553L, xRot: 12.9292631149292f, yRot: 307.4714050292969f } - "paps": { dim: "wc:westeros", x: 8812, y: 34, z: 57, time: 1696965111553L, xRot: -1.6500084f, yRot: -296.09506f } - "mlc": { dim: "wc:westeros", x: -5029, y: 83, z: 9698, time: 1696965111553L, xRot: 4.346782f, yRot: 82.138466f } - "inchv2": { dim: "wc:westeros", x: -1849, y: 47, z: 14133, time: 1696965111553L, xRot: 21.299969f, yRot: 262.36758f } - "sandstone": { dim: "wc:westeros", x: -2122, y: 62, z: 24754, time: 1696965111554L, xRot: -9.299997f, yRot: -222.49023f } - "marnasmill": { dim: "wc:westeros", x: 2285, y: 44, z: -4035, time: 1696965111554L, xRot: 0.2977817f, yRot: -178.51454f } - "ironholt": { dim: "wc:westeros", x: -8019, y: 55, z: 6448, time: 1696965111554L, xRot: -25.999338f, yRot: -36.935673f } - "humble": { dim: "wc:westeros", x: -7047, y: 47, z: 4155, time: 1696965111554L, xRot: -4.7264605f, yRot: 237.32512f } - "eaglesclaw": { dim: "wc:westeros", x: -2191, y: 75, z: 5835, time: 1696965111554L, xRot: 12.299997f, yRot: 1.5762519f } - "spottswood": { dim: "wc:westeros", x: 9943, y: 46, z: 24069, time: 1696965111554L, xRot: -13.350254f, yRot: -101.727295f } - "gower": { dim: "wc:westeros", x: 8325, y: 52, z: 20487, time: 1696965111555L, xRot: -8.400005f, yRot: 269.54865f } - "deepdenmine": { dim: "wc:westeros", x: -4175, y: 110, z: 11876, time: 1696965111555L, xRot: 5.282531f, yRot: 0.10819755f } - "parchmentshf1": { dim: "wc:westeros", x: 8207, y: 44, z: 15798, time: 1696965111555L, xRot: -3.1500263f, yRot: -88.764275f } - "tspastures": { dim: "wc:westeros", x: -1642, y: 43, z: -5675, time: 1696965111555L, xRot: 0.75027055f, yRot: 2.1845703f } - "griffinsroost": { dim: "wc:westeros", x: 6436, y: 73, z: 17633, time: 1696965111555L, xRot: -13.7999935f, yRot: 253.24039f } - "chatayas": { dim: "wc:westeros", x: 2996, y: 62, z: 12785, time: 1696965111555L, xRot: -29.399942f, yRot: -53.34193f } - "thenn": { dim: "wc:westeros", x: -1902, y: 34, z: -24462, time: 1696965111555L, xRot: 1.3123916f, yRot: -264.3112f } - "ocfish6": { dim: "wc:westeros", x: 4743, y: 42, z: -1663, time: 1696965111556L, xRot: 24.449968f, yRot: -252.44449f } - "widowswatch": { dim: "wc:westeros", x: 8508, y: 35, z: -3920, time: 1696965111556L, xRot: -8.2930155f, yRot: -357.52737f } - "stonystable": { dim: "wc:westeros", x: -5847, y: 43, z: -3749, time: 1696965111556L, xRot: 20.24949f, yRot: -6.973816f } - "cleganekeep": { dim: "wc:westeros", x: -5878, y: 59, z: 13229, time: 1696965111556L, xRot: -11.550046f, yRot: -228.42297f } - "mosshamlet5": { dim: "wc:westeros", x: 2998, y: 36, z: -4898, time: 1696965111556L, xRot: -9.750022f, yRot: -41.613953f } - "saltshore": { dim: "wc:westeros", x: 4160, y: 38, z: 25892, time: 1696965111556L, xRot: -22.025318f, yRot: 110.41592f } - "klcronesept": { dim: "wc:westeros", x: 2815, y: 40, z: 13462, time: 1696965111568L, xRot: -19.499983f, yRot: -212.77737f } - "greywaterwatch": { dim: "wc:westeros", x: -1155, y: 64, z: 58, time: 1696965111568L, xRot: 22.499619f, yRot: 181.35265f } - "tourneygrounds": { dim: "wc:westeros", x: 2098, y: 41, z: 13316, time: 1696965111568L, xRot: 14.250035f, yRot: -224.49352f } - "yellumber1": { dim: "wc:westeros", x: -7102, y: 52, z: 22361, time: 1696965111568L, xRot: 14.960207f, yRot: -215.65192f } - "lhtvillage2": { dim: "wc:westeros", x: 1107, y: 46, z: 8057, time: 1696965111568L, xRot: 26.249922f, yRot: -10.318125f } - "mamh": { dim: "wc:westeros", x: -4849, y: 69, z: 9621, time: 1696965111568L, xRot: 11.376817f, yRot: -36.341553f } - "sshf3": { dim: "wc:westeros", x: -8437, y: 67, z: -6851, time: 1696965111568L, xRot: -1.1999586f, yRot: -42.74872f } - "rosbytemp": { dim: "wc:westeros", x: 4317, y: 45, z: 12530, time: 1696965111568L, xRot: 6.980156f, yRot: 64.741425f } - "herstonlogcamp": { dim: "wc:westeros", x: 5777, y: 66, z: 19885, time: 1696965111569L, xRot: 23.549988f, yRot: 184.65393f } - "wfwatchtower5": { dim: "wc:westeros", x: -1366, y: 47, z: -7866, time: 1696965111569L, xRot: 8.400009f, yRot: -350.47f } - "dunn": { dim: "wc:westeros", x: -3301, y: 60, z: 17551, time: 1696965111569L, xRot: 14.545294f, yRot: -4.548931f } - "pacmanwest": { dim: "wc:playground", x: -552, y: 21, z: 673, time: 1696965111569L, xRot: 4.5000153f, yRot: -89.49927f } - "amberlyf1": { dim: "wc:westeros", x: 7754, y: 51, z: 18325, time: 1696965111569L, xRot: 16.05001f, yRot: -31.135517f } - "yronwood": { dim: "wc:westeros", x: 268, y: 87, z: 22022, time: 1696965111569L, xRot: -19.500454f, yRot: -159.17737f } - "lowther": { dim: "wc:westeros", x: -8418, y: 36, z: 15987, time: 1696965111569L, xRot: -4.5000024f, yRot: -139.61865f } - "olddarry": { dim: "wc:playground", x: -1081, y: 27, z: -673, time: 1696965111569L, xRot: 5.250041f, yRot: -90.59895f } - "oldflowers": { dim: "wc:westeros", x: -5255, y: 40, z: 19131, time: 1696965111569L, xRot: -24.278414f, yRot: -245.1879f } - "cmham4": { dim: "wc:westeros", x: -6838, y: 50, z: 15446, time: 1696965111570L, xRot: 52.799995f, yRot: 126.94523f } - "dosk": { dim: "wc:westeros", x: -7719, y: 44, z: 16141, time: 1696965111570L, xRot: 12.749936f, yRot: -132.12175f } - "nsmarcher2": { dim: "wc:westeros", x: -587, y: 156, z: 20836, time: 1696965111570L, xRot: 28.64994f, yRot: 89.910225f } - "news": { dim: "wc:playground", x: 11, y: 140, z: -40, time: 1696965111570L, xRot: -16.2f, yRot: -180.1477f } - "wildlife": { dim: "wc:playground", x: -748, y: 21, z: 1059, time: 1696965111570L, xRot: 10.650051f, yRot: 89.14552f } - "crasters": { dim: "wc:westeros", x: 2516, y: 57, z: -17540, time: 1696965111570L, xRot: 2.2752917f, yRot: -135.43912f } - "Stoopscorner": { dim: "wc:playground", x: 1820, y: 20, z: 1269, time: 1696965111570L, xRot: 86.03228f, yRot: 182.51057f } - "baelishvl1": { dim: "wc:westeros", x: 7379, y: 49, z: 1002, time: 1696965111570L, xRot: -1.5000155f, yRot: 167.63788f } - "SnugCottage": { dim: "wc:westeros", x: 1377, y: 48, z: 11138, time: 1696965111570L, xRot: 36.000008f, yRot: -78.7743f } - "mosshamlet6": { dim: "wc:westeros", x: 3266, y: 36, z: -5180, time: 1696965111571L, xRot: 17.699863f, yRot: -38.31425f } - "moorecabin2": { dim: "wc:westeros", x: 9197, y: 47, z: 3358, time: 1696965111571L, xRot: -4.4992156f, yRot: -125.63336f } - "map2d": { dim: "wc:playground", x: -49, y: 92, z: -331, time: 1696965111571L, xRot: 4.050009f, yRot: 180.96484f } - "rillshunting2": { dim: "wc:westeros", x: -5141, y: 50, z: -7185, time: 1696965111571L, xRot: -15.749919f, yRot: 214.36407f } - "torrent": { dim: "wc:westeros", x: 3852, y: 75, z: -149, time: 1696965111571L, xRot: -11.524376f, yRot: 273.3592f } - "coldwater": { dim: "wc:westeros", x: 6577, y: 45, z: 1560, time: 1696965111571L, xRot: -18.45004f, yRot: 157.01302f } - "nshamlet2": { dim: "wc:westeros", x: 2673, y: 58, z: 3606, time: 1696965111571L, xRot: 65.84989f, yRot: 72.95566f } - "kingsgrave": { dim: "wc:westeros", x: -1144, y: 112, z: 21517, time: 1696965111571L, xRot: -24.30004f, yRot: -1.5444812f } - "dwmlogging1": { dim: "wc:westeros", x: -5353, y: 46, z: -10068, time: 1696965111572L, xRot: 11.099943f, yRot: -179.10986f } - "jakeyquack": { dim: "wc:playground", x: -320, y: 21, z: 742, time: 1696965111572L, xRot: 7.2000318f, yRot: -220.65523f } - "pottersridge": { dim: "wc:westeros", x: 5253, y: 54, z: 19717, time: 1696965111572L, xRot: -3.331461f, yRot: -101.80442f } - "dwmhamlet": { dim: "wc:westeros", x: -4919, y: 38, z: -10965, time: 1696965111572L, xRot: -18.150005f, yRot: -178.9469f } - "ywhamlet4": { dim: "wc:westeros", x: -5570, y: 55, z: 7290, time: 1696965111572L, xRot: 3.7500086f, yRot: 65.38896f } - "parchmentsh2": { dim: "wc:westeros", x: 8619, y: 36, z: 15384, time: 1696965111572L, xRot: 20.70017f, yRot: 340.23553f } - "phhamlet2": { dim: "wc:westeros", x: -6615, y: 107, z: 23992, time: 1696965111572L, xRot: -4.94706f, yRot: 234.02863f } - "gatesofthemoon": { dim: "wc:westeros", x: 4198, y: 28, z: 6104, time: 1696965111573L, xRot: -23.359669f, yRot: -178.67308f } - "Chyhamlet": { dim: "wc:westeros", x: 7232, y: 51, z: 13152, time: 1696965111573L, xRot: 1.3960571f, yRot: 276.17743f } - "furnish": { dim: "wc:playground", x: -991, y: 21, z: 1160, time: 1696965111573L, xRot: -5.8500104f, yRot: -270.5547f } - "plottingguide": { dim: "wc:playground", x: -940, y: 34, z: 1037, time: 1696965111584L, xRot: 6.2999773f, yRot: -181.30428f } - "chvillage": { dim: "wc:westeros", x: -8392, y: 47, z: 14624, time: 1696965111584L, xRot: 23.103197f, yRot: -23.691742f } - "palette": { dim: "wc:playground", x: -1136, y: 21, z: 909, time: 1696965111584L, xRot: 21.450039f, yRot: -84.40466f } - "yelham3": { dim: "wc:westeros", x: -5806, y: 88, z: 22919, time: 1696965111585L, xRot: 14.341672f, yRot: -57.39191f } - "cliffhunt": { dim: "wc:westeros", x: -5193, y: 79, z: -7437, time: 1696965111585L, xRot: 6.1500206f, yRot: 356.1145f } - "lasthearth": { dim: "wc:westeros", x: 3972, y: 79, z: -12994, time: 1696965111585L, xRot: -18.899986f, yRot: 6.691938f } - "goldentooth": { dim: "wc:westeros", x: -4285, y: 60, z: 9790, time: 1696965111585L, xRot: -6.6000695f, yRot: -328.49237f } - "septtest": { dim: "wc:playground", x: -960, y: 21, z: 1104, time: 1696965111585L, xRot: 4.6500015f, yRot: 236.7448f } - "streetofsteel": { dim: "wc:westeros", x: 2659, y: 45, z: 13325, time: 1696965111585L, xRot: 7.6500854f, yRot: -280.73938f } - "mosshamlet3": { dim: "wc:westeros", x: 1944, y: 57, z: -4815, time: 1696965111585L, xRot: 1.1999545f, yRot: -44.46387f } - "heartshome": { dim: "wc:westeros", x: 4898, y: 43, z: 3539, time: 1696965111585L, xRot: -4.350011f, yRot: 271.58856f } - "baelishkeep": { dim: "wc:westeros", x: 7671, y: 39, z: 590, time: 1696965111585L, xRot: -22.649837f, yRot: -352.7894f } - "ulh1": { dim: "wc:westeros", x: -6627, y: 40, z: 21893, time: 1696965111586L, xRot: 41.69992f, yRot: -184.16931f } - "ashfordseptry": { dim: "wc:westeros", x: -260, y: 56, z: 18660, time: 1696965111586L, xRot: -15.900006f, yRot: -76.89379f } - "gowerhf2": { dim: "wc:westeros", x: 8053, y: 47, z: 20478, time: 1696965111586L, xRot: 37.686848f, yRot: 240.29199f } - "berenluthien": { dim: "wc:westeros", x: -6068, y: 105, z: 23144, time: 1696965111586L, xRot: 17.157679f, yRot: -267.41425f } - "ferrenkeep": { dim: "wc:westeros", x: -3103, y: 61, z: 12700, time: 1696965111586L, xRot: -21.000046f, yRot: -0.039733887f } - "littleivywood": { dim: "wc:westeros", x: -2701, y: 54, z: 16305, time: 1696965111586L, xRot: 8.700006f, yRot: 195.59967f } - "castleblack": { dim: "wc:westeros", x: 3191, y: 42, z: -16036, time: 1696965111586L, xRot: -14.100284f, yRot: 181.48517f } - "inchfa1": { dim: "wc:westeros", x: -1680, y: 45, z: 14109, time: 1696965111586L, xRot: 4.3499594f, yRot: 163.66754f } - "Thawmill": { dim: "wc:westeros", x: 1005, y: 77, z: 18969, time: 1696965111586L, xRot: 40.05f, yRot: 353.7014f } - "midfast": { dim: "wc:westeros", x: 5675, y: 44, z: -13025, time: 1696965111587L, xRot: -22.20042f, yRot: -174.16687f } - "stonehelm2": { dim: "wc:westeros", x: 4191, y: 71, z: 19650, time: 1696965111587L, xRot: 16.845436f, yRot: 180.21428f } - "sharppoint": { dim: "wc:westeros", x: 7764, y: 138, z: 11309, time: 1696965111587L, xRot: 13.046031951904297f, yRot: 1.6076315641403198f } - "appletree": { dim: "wc:westeros", x: -7515, y: 37, z: 20001, time: 1696965111587L, xRot: 4.950026f, yRot: 10.222382f } - "goldengrove": { dim: "wc:westeros", x: -4521, y: 52, z: 16423, time: 1696965111587L, xRot: 21.149324f, yRot: 87.434204f } - "pthamlet": { dim: "wc:westeros", x: 7654, y: 34, z: 25129, time: 1696965111587L, xRot: -4.800218f, yRot: -270.47183f } - "clawislevault": { dim: "wc:westeros", x: 9921, y: 102, z: 8406, time: 1696965111587L, xRot: -10.8000145f, yRot: 1.1694446f } - "kellington": { dim: "wc:westeros", x: 8289, y: 41, z: 19501, time: 1696965111587L, xRot: 5.249949f, yRot: -279.46365f } - "slayneguard": { dim: "wc:westeros", x: 4080, y: 46, z: 19933, time: 1696965111587L, xRot: 14.24975f, yRot: 227.63193f } - "hhhamlet1": { dim: "wc:westeros", x: 5137, y: 37, z: 3613, time: 1696965111588L, xRot: 3.5396419f, yRot: 2.9510193f } - "rillscabin4": { dim: "wc:westeros", x: -5803, y: 48, z: -5337, time: 1696965111588L, xRot: 4.500022f, yRot: 267.32f } - "mediumtrees": { dim: "wc:playground", x: 280, y: 20, z: -323, time: 1696965111588L, xRot: -0.7500011f, yRot: 182.91632f } - "oakenshield": { dim: "wc:westeros", x: 3497, y: 45, z: -16146, time: 1696965111588L, xRot: -5.400003f, yRot: 148.91183f } - "bowmanshill": { dim: "wc:westeros", x: -4832, y: 103, z: 12031, time: 1696965111588L, xRot: 3.7022762f, yRot: -35.41973f } - "Grey": { dim: "wc:westeros", x: 542, y: 57, z: 3678, time: 1696965111588L, xRot: -6.7500405f, yRot: -89.70128f } - "eysley": { dim: "wc:westeros", x: 1873, y: 77, z: 6310, time: 1696965111588L, xRot: 10.650136f, yRot: -294.11823f } - "professiontest": { dim: "wc:playground", x: -1035, y: 21, z: 1342, time: 1696965111589L, xRot: -7.9500036f, yRot: -178.00429f } - "castledarry": { dim: "wc:westeros", x: 2116, y: 39, z: 7918, time: 1696965111589L, xRot: -6.0689154f, yRot: 279.78564f } - "manceswarp1": { dim: "wc:westeros", x: -1424, y: 65, z: -20391, time: 1696965111589L, xRot: 62.84993f, yRot: 214.76744f } - "oldcornfield": { dim: "wc:playground", x: -799, y: 30, z: -463, time: 1696965111589L, xRot: 7.9500155f, yRot: 179.40074f } - "shell": { dim: "wc:westeros", x: 4516, y: 68, z: 640, time: 1696965111589L, xRot: 5.8500733f, yRot: -99.90013f } - "hollowstone": { dim: "wc:westeros", x: 5390, y: 46, z: -10213, time: 1696965111589L, xRot: -13.200002f, yRot: 293.6985f } - "podscrossing": { dim: "wc:westeros", x: 5464, y: 36, z: 3165, time: 1696965111589L, xRot: -5.831713f, yRot: -184.0773f } - "dreadfortdungeons": { dim: "wc:westeros", x: 4317, y: 64, z: -9139, time: 1696965111589L, xRot: 2.700084924697876f, yRot: -3.1311752796173096f } - "biometest": { dim: "wc:playground", x: -974, y: 20, z: 866, time: 1696965111589L, xRot: 9.7507f, yRot: 355.39572f } - "hogwarts": { dim: "wc:playground", x: -1131, y: 83, z: -912, time: 1696965111589L, xRot: 12.899997f, yRot: -266.40808f } - "wildlifetest": { dim: "wc:playground", x: -748, y: 21, z: 1059, time: 1696965111589L, xRot: 10.650051f, yRot: 89.14552f } - "editortest": { dim: "wc:playground", x: -1488, y: 20, z: 895, time: 1696965111590L, xRot: -2.8493283f, yRot: 269.89575f } - "birleymill": { dim: "wc:westeros", x: -8230, y: 48, z: -179, time: 1696965111600L, xRot: 11.425338f, yRot: 141.32108f } - "aryastreamexit": { dim: "wc:westeros", x: 1346, y: 34, z: 8709, time: 1696965111600L, xRot: -3.300023f, yRot: -222.56935f } - "hagsmire": { dim: "wc:westeros", x: -1366, y: 37, z: 4615, time: 1696965111601L, xRot: -2.7000031f, yRot: -81.15525f } - "whispers": { dim: "wc:westeros", x: 8823, y: 67, z: 8847, time: 1696965111601L, xRot: -7.199768f, yRot: -90.743385f } - "wwhunting2": { dim: "wc:westeros", x: 5454, y: 43, z: -4759, time: 1696965111601L, xRot: 5.550003f, yRot: -161.25f } - "gvhf2": { dim: "wc:westeros", x: 1099, y: 98, z: 16019, time: 1696965111601L, xRot: 42.271587f, yRot: -277.73065f } - "stormycrag": { dim: "wc:westeros", x: 6855, y: 49, z: 18132, time: 1696965111601L, xRot: -1.6241748f, yRot: -92.968025f } - "vyprenbrickworks": { dim: "wc:westeros", x: -150, y: 44, z: 5690, time: 1696965111602L, xRot: -1.1999825f, yRot: -34.576714f } - "blackbuckle": { dim: "wc:westeros", x: -516, y: 59, z: 6710, time: 1696965111603L, xRot: 2.3808675f, yRot: -0.08187866f } - "klsmithsept": { dim: "wc:westeros", x: 2466, y: 66, z: 13287, time: 1696965111603L, xRot: -20.699986f, yRot: -264.69333f } - "bandavassal1": { dim: "wc:westeros", x: -8646, y: 51, z: 20401, time: 1696965111603L, xRot: 13.0493555f, yRot: -97.49225f } - "chhamlet2": { dim: "wc:westeros", x: -7993, y: 52, z: 13724, time: 1696965111603L, xRot: 37.34998f, yRot: -209.24152f } - "vypren": { dim: "wc:westeros", x: -284, y: 39, z: 5365, time: 1696965111603L, xRot: -12.900002f, yRot: -91.72664f } - "battlevalley": { dim: "wc:westeros", x: -1063, y: 46, z: 6561, time: 1696965111603L, xRot: 29.228336f, yRot: 86.55214f } - "siegeprototype": { dim: "wc:playground", x: -837, y: 59, z: 754, time: 1696965111603L, xRot: 69.1499f, yRot: 93.00016f } - "crossroads": { dim: "wc:westeros", x: 1868, y: 48, z: 7511, time: 1696965111604L, xRot: -11.100073f, yRot: 294.15378f } - "hasty": { dim: "wc:westeros", x: 3632, y: 67, z: 17091, time: 1696965111604L, xRot: 6.980998f, yRot: 261.08688f } - "cresseyhf": { dim: "wc:westeros", x: 3350, y: 42, z: 10824, time: 1696965111604L, xRot: -10.800428f, yRot: -271.53574f } - "skirlingpass": { dim: "wc:westeros", x: -997, y: 44, z: -19507, time: 1696965111604L, xRot: 3.8995047f, yRot: -261.18396f } - "turnberry": { dim: "wc:westeros", x: -6114, y: 57, z: 14416, time: 1696965111604L, xRot: -2.7000039f, yRot: 277.9778f } - "bmv2": { dim: "wc:westeros", x: -3210, y: 45, z: 21085, time: 1696965111605L, xRot: 42.150017f, yRot: -89.20795f } - "RubyFord": { dim: "wc:westeros", x: 1865, y: 35, z: 7887, time: 1696965111605L, xRot: 1.7998245f, yRot: 175.4851f } - "ssfisherh2": { dim: "wc:westeros", x: -9523, y: 35, z: -7356, time: 1696965111605L, xRot: 4.200016f, yRot: -91.64986f } - "klwindmill": { dim: "wc:westeros", x: 2214, y: 59, z: 12449, time: 1696965111606L, xRot: -3.2999885f, yRot: -119.77157f } - "castlelychester": { dim: "wc:westeros", x: -1191, y: 46, z: 7973, time: 1696965111606L, xRot: -7.72004f, yRot: 335.77878f } - "breakstonehamlet2": { dim: "wc:westeros", x: 4402, y: 38, z: 598, time: 1696965111606L, xRot: 9.8999195f, yRot: 3.1530013f } - "crowspikekeep": { dim: "wc:westeros", x: -7881, y: 56, z: 5407, time: 1696965111606L, xRot: -18.60002f, yRot: 11.336136f } - "WWHunting1": { dim: "wc:westeros", x: 7583, y: 46, z: -4202, time: 1696965111617L, xRot: 6.428668f, yRot: -242.21889f } - "snowysept": { dim: "wc:westeros", x: 2249, y: 40, z: -2314, time: 1696965111618L, xRot: -7.799979f, yRot: 178.63959f } - "mistwood1": { dim: "wc:westeros", x: 7067, y: 50, z: 20105, time: 1696965111618L, xRot: -0.9006594f, yRot: 45.423687f } - "wghamlet1": { dim: "wc:westeros", x: -3508, y: 49, z: 18692, time: 1696965111618L, xRot: -0.74968916f, yRot: 109.49432f } - "parchmentsh3": { dim: "wc:westeros", x: 8134, y: 50, z: 15244, time: 1696965111618L, xRot: 4.5000105f, yRot: -227.33772f } - "northpoint": { dim: "wc:westeros", x: -3411, y: 42, z: -6481, time: 1696965111618L, xRot: -13.950011f, yRot: -138.31848f } - "sisterton": { dim: "wc:westeros", x: 3173, y: 55, z: -373, time: 1696965111618L, xRot: -8.493047f, yRot: 226.35802f } - "bywater": { dim: "wc:westeros", x: 5202, y: 45, z: 12222, time: 1696965111618L, xRot: -9.300079f, yRot: -207.93066f } - "wfquarry2": { dim: "wc:westeros", x: -1195, y: 83, z: -8749, time: 1696965111618L, xRot: 44.39999f, yRot: -173.57559f } - "gotm": { dim: "wc:westeros", x: 4198, y: 28, z: 6104, time: 1696965111619L, xRot: -23.359669f, yRot: -178.67308f } - "sweetportnorth": { dim: "wc:westeros", x: 7678, y: 47, z: 13925, time: 1696965111619L, xRot: 4.050032f, yRot: 59.35614f } - "hwhamlet2": { dim: "wc:westeros", x: 3053, y: 40, z: -6787, time: 1696965111619L, xRot: 11.25002f, yRot: 8.401093f } - "herstonhamlet2": { dim: "wc:westeros", x: 5611, y: 57, z: 20201, time: 1696965111619L, xRot: 4.5000153f, yRot: 88.35445f } - "probationtest": { dim: "wc:playground", x: -1140, y: 20, z: 965, time: 1696965111619L, xRot: 4.8000717f, yRot: 272.29523f } - "watermancrypts": { dim: "wc:westeros", x: -3838, y: 61, z: -2741, time: 1696965111619L, xRot: 8.1f, yRot: -166.49641f } - "terrickhf3": { dim: "wc:westeros", x: 429, y: 42, z: 6188, time: 1696965111619L, xRot: 25.35025f, yRot: 213.66945f } - "broadshore": { dim: "wc:westeros", x: -4800, y: 35, z: 24799, time: 1696965111619L, xRot: -3.299995f, yRot: -93.46594f } - "chycastle": { dim: "wc:westeros", x: 7067, y: 104, z: 13420, time: 1696965111620L, xRot: 32.01465f, yRot: 331.33264f } - "stonyshore": { dim: "wc:westeros", x: -8642, y: 35, z: -7862, time: 1696965111620L, xRot: -4.049999f, yRot: -334.8022f } - "khfcsh47": { dim: "wc:westeros", x: 7349, y: 50, z: -8186, time: 1696965111620L, xRot: 32.100006f, yRot: -66.28023f } - "greatseptofbaelor": { dim: "wc:westeros", x: 2560, y: 77, z: 13082, time: 1696965111620L, xRot: -20.249998f, yRot: -1.7816093f } - "braavoscontest1": { dim: "wc:playground", x: -1728, y: 20, z: 269, time: 1696965111620L, xRot: 16.799906f, yRot: -83.794495f } - "dwmholdfast2": { dim: "wc:westeros", x: -3411, y: 50, z: -7597, time: 1696965111620L, xRot: 25.799995f, yRot: -186.60486f } - "crowsnest": { dim: "wc:westeros", x: 5631, y: 81, z: 18848, time: 1696965111620L, xRot: -18.15055f, yRot: 91.9239f } - "WinterfellCrypt": { dim: "wc:westeros", x: -1104, y: 68, z: -8542, time: 1696965111620L, xRot: 5.999969f, yRot: -268.21588f } - "tbforest": { dim: "wc:westeros", x: -5760, y: 59, z: 14264, time: 1696965111621L, xRot: 0.14999986f, yRot: -153.72234f } - "oldgatedefences": { dim: "wc:westeros", x: 3234, y: 74, z: 12123, time: 1696965111621L, xRot: 19.749514f, yRot: -170.63602f } - "cornfield": { dim: "wc:westeros", x: -6597, y: 60, z: 14224, time: 1696965111621L, xRot: -3.4499679f, yRot: -118.022156f } - "vyprenhamlet1": { dim: "wc:westeros", x: -240, y: 43, z: 5593, time: 1696965111621L, xRot: -7.4958696f, yRot: -168.52673f } - "breakstonequarry1": { dim: "wc:westeros", x: 4140, y: 45, z: 873, time: 1696965111621L, xRot: -4.8001366f, yRot: -30.599945f } - "sweetportsouth": { dim: "wc:westeros", x: 7467, y: 50, z: 14480, time: 1696965111621L, xRot: -5.0999975f, yRot: 182.4814f } - "wensington": { dim: "wc:westeros", x: 6305, y: 61, z: 16878, time: 1696965111621L, xRot: -2.4946022f, yRot: 143.6922f } - "christmascontest": { dim: "wc:playground", x: -1700, y: 22, z: 434, time: 1696965111621L, xRot: -4.6500106f, yRot: -268.34686f } - "longsister": { dim: "wc:westeros", x: 2448, y: 50, z: 47, time: 1696965111621L, xRot: -10.049973f, yRot: 225.51982f } - "gowerhf1": { dim: "wc:westeros", x: 8203, y: 70, z: 20361, time: 1696965111622L, xRot: 52.65f, yRot: 230.69896f } - "norham": { dim: "wc:westeros", x: 7134, y: 61, z: 6939, time: 1696965111622L, xRot: 3.7502003f, yRot: -208.3865f } - "stonecrows1": { dim: "wc:westeros", x: 4171, y: 78, z: 6775, time: 1696965111622L, xRot: 50.786327f, yRot: -90.738525f } - "herstonhamlet1": { dim: "wc:westeros", x: 6535, y: 61, z: 20249, time: 1696965111622L, xRot: -5.5500116f, yRot: 91.03785f } - "bagend": { dim: "wc:playground", x: -674, y: 21, z: -1170, time: 1696965111622L, xRot: 18.000017f, yRot: -173.70825f } - "sfhamlet6": { dim: "wc:westeros", x: -4858, y: 37, z: 25299, time: 1696965111622L, xRot: 10.800084f, yRot: -270.32663f } - "inchv4": { dim: "wc:westeros", x: -1259, y: 45, z: 13981, time: 1696965111622L, xRot: 5.5500383f, yRot: -267.73233f } - "winchup": { dim: "wc:westeros", x: 3188, y: 220, z: -16159, time: 1696965111622L, xRot: 1.5017267f, yRot: -177.67776f } - "lolliston": { dim: "wc:westeros", x: 1449, y: 46, z: 6893, time: 1696965111622L, xRot: -17.353619f, yRot: -23.526855f } - "reeve": { dim: "wc:westeros", x: 3381, y: 45, z: 10258, time: 1696965111623L, xRot: 27.150023f, yRot: -174.00311f } - "hamletguide": { dim: "wc:playground", x: -941, y: 34, z: 1037, time: 1696965111623L, xRot: 3.149995f, yRot: -181.60422f } - "fist": { dim: "wc:westeros", x: 1637, y: 132, z: -17919, time: 1696965111623L, xRot: 41.25004f, yRot: -179.53923f } - "strongsong": { dim: "wc:westeros", x: 3178, y: 73, z: 3811, time: 1696965111623L, xRot: -1.4999955f, yRot: -179.53693f } - "bowshotbridge": { dim: "wc:westeros", x: 800, y: 43, z: 11416, time: 1696965111623L, xRot: 5.481561f, yRot: 16.847282f } - "roadtest": { dim: "wc:playground", x: -965, y: 21, z: 919, time: 1696965111623L, xRot: -8.100005f, yRot: -136.30414f } - "sealbay": { dim: "wc:westeros", x: 6187, y: 38, z: -13426, time: 1696965111634L, xRot: 4.950886f, yRot: -0.74609375f } - "forrester": { dim: "wc:westeros", x: -4461, y: 44, z: -9303, time: 1696965111634L, xRot: 10.499985f, yRot: -279.9062f } - "tenby": { dim: "wc:westeros", x: -2921, y: 56, z: 16083, time: 1696965111634L, xRot: 46.04991f, yRot: -188.25537f } - "pfmine": { dim: "wc:westeros", x: 2020, y: 79, z: 18170, time: 1696965111635L, xRot: -24.382803f, yRot: -2.7892153f } - "dgh2": { dim: "wc:westeros", x: 6486, y: 62, z: 536, time: 1696965111635L, xRot: 25.744818f, yRot: 354.12933f } - "northhill": { dim: "wc:westeros", x: -5894, y: 127, z: -8031, time: 1696965111635L, xRot: -18.653034f, yRot: -249.28503f } - "bladestone": { dim: "wc:westeros", x: 3028, y: 60, z: -13283, time: 1696965111635L, xRot: -19.95f, yRot: -18.58017f } - "gvhaml2": { dim: "wc:westeros", x: 1735, y: 85, z: 16325, time: 1696965111635L, xRot: 41.053627f, yRot: -188.6615f } - "gradienttest": { dim: "wc:playground", x: -1090, y: 20, z: 909, time: 1696965111635L, xRot: 6.3000193f, yRot: 0.4955194f } - "ywh2": { dim: "wc:westeros", x: -165, y: 35, z: 22367, time: 1696965111635L, xRot: -15.000004f, yRot: 100.87863f } - "went": { dim: "wc:westeros", x: 5802, y: 47, z: 13798, time: 1696965111635L, xRot: -17.25003f, yRot: 271.29236f } - "briarwhite": { dim: "wc:westeros", x: 2447, y: 44, z: 11464, time: 1696965111635L, xRot: 7.5622334f, yRot: 90.93436f } - "mancestest": { dim: "wc:playground", x: 1052, y: 21, z: -538, time: 1696965111636L, xRot: -31.64984f, yRot: -91.403946f } - "sgcabin3": { dim: "wc:westeros", x: -4242, y: 62, z: 4284, time: 1696965111636L, xRot: -11.549985f, yRot: -263.11566f } - "mory": { dim: "wc:westeros", x: -135, y: 36, z: 7369, time: 1696965111636L, xRot: -9.600041f, yRot: -328.17554f } - "drumm": { dim: "wc:westeros", x: -8296, y: 54, z: 5070, time: 1696965111636L, xRot: -6.4852753f, yRot: 50.363865f } - "blackenedhearth": { dim: "wc:westeros", x: 6715, y: 48, z: 18377, time: 1696965111636L, xRot: 5.1720624f, yRot: -118.09595f } - "ferren": { dim: "wc:westeros", x: -2805, y: 56, z: 12729, time: 1696965111636L, xRot: -14.550017f, yRot: -270.3398f } - "wendhamlet1": { dim: "wc:westeros", x: 6399, y: 36, z: 13634, time: 1696965111636L, xRot: 9.600048f, yRot: 10.4409485f } - "yelhf1": { dim: "wc:westeros", x: -6225, y: 75, z: 23114, time: 1696965111636L, xRot: -6.6205254f, yRot: -313.74646f } - "forstrun": { dim: "wc:westeros", x: 4566, y: 36, z: -6332, time: 1696965111636L, xRot: 0.6000669f, yRot: 100.19447f } - "guides": { dim: "wc:playground", x: -969, y: 20, z: 861, time: 1696965111637L, xRot: 2.4000154f, yRot: -2.6545715f } - "ptarmigansspire": { dim: "wc:westeros", x: 4623, y: 60, z: -11023, time: 1696965111637L, xRot: -5.5498996f, yRot: -27.75055f } - "shorefort": { dim: "wc:westeros", x: -5660, y: 38, z: -7105, time: 1696965111637L, xRot: 4.3500085f, yRot: -178.12471f } - "cockshaw": { dim: "wc:westeros", x: -1526, y: 144, z: 18630, time: 1696965111637L, xRot: 2.9999988f, yRot: 90.138336f } - "wythers": { dim: "wc:westeros", x: -6086, y: 40, z: 18362, time: 1696965111637L, xRot: -3.599919f, yRot: 133.68027f } - "rocksfolly": { dim: "wc:westeros", x: 7031, y: 129, z: 15964, time: 1696965111637L, xRot: -37.426193f, yRot: -122.24317f } - "generousholdfast": { dim: "wc:westeros", x: 2451, y: 38, z: 7797, time: 1696965111637L, xRot: -5.005435f, yRot: 71.84335f } - "Ssfishing": { dim: "wc:westeros", x: 3379, y: 47, z: -242, time: 1696965111637L, xRot: 0.89989257f, yRot: 334.13852f } - "RIPSeals": { dim: "wc:westeros", x: -8877, y: 35, z: 4530, time: 1696965111638L, xRot: 15.752316f, yRot: -327.11066f } - "myattcamp": { dim: "wc:westeros", x: 2163, y: 49, z: 11440, time: 1696965111638L, xRot: 3.149977f, yRot: -146.51587f } - "helphouse": { dim: "wc:playground", x: 8, y: 140, z: -42, time: 1696965111638L, xRot: -4.9499793f, yRot: 0.15316772f } - "mistyisle": { dim: "wc:westeros", x: 1201, y: 38, z: 7192, time: 1696965111638L, xRot: -20.400045f, yRot: 64.80023f } - "thorne": { dim: "wc:westeros", x: 4681, y: 42, z: 10875, time: 1696965111638L, xRot: -13.050009f, yRot: 161.81018f } - "map3d": { dim: "wc:playground", x: 84, y: 91, z: -332, time: 1696965111639L, xRot: -3.6000087f, yRot: 179.91727f } - "gvhaml3": { dim: "wc:westeros", x: 1169, y: 40, z: 16467, time: 1696965111639L, xRot: -3.298013f, yRot: -350.65555f } - "hornbuckle": { dim: "wc:westeros", x: 5736, y: 51, z: 6049, time: 1696965111639L, xRot: -1.350051f, yRot: 148.4917f } - "stonnevalley": { dim: "wc:westeros", x: 4934, y: 51, z: -7130, time: 1696965111639L, xRot: 3.749921f, yRot: -188.55394f } - "harridansmill": { dim: "wc:westeros", x: -178, y: 35, z: 18215, time: 1696965111639L, xRot: 6.820255f, yRot: -3.323883f } - "khhamlet8": { dim: "wc:westeros", x: 6239, y: 45, z: -9575, time: 1696965111639L, xRot: 32.10021f, yRot: 235.64153f } - "baelorscrypts": { dim: "wc:westeros", x: 2558, y: 58, z: 13259, time: 1696965111639L, xRot: 7.350035f, yRot: 2.660736f } - "newkeepvineyards": { dim: "wc:westeros", x: 2149, y: 49, z: 1244, time: 1696965111651L, xRot: 13.049971f, yRot: -37.64631f } - "roadguide": { dim: "wc:playground", x: -964, y: 21, z: 919, time: 1696965111652L, xRot: -8.100005f, yRot: -136.30414f } - "wullvillage1": { dim: "wc:westeros", x: -2078, y: 52, z: -12769, time: 1696965111652L, xRot: 0.08298056f, yRot: -48.085167f } - "gtht1": { dim: "wc:westeros", x: -5538, y: 88, z: 10439, time: 1696965111652L, xRot: 6.449649f, yRot: 155.7081f } - "limestonetest": { dim: "wc:playground", x: -1547, y: 53, z: 1035, time: 1696965111652L, xRot: 13.800695f, yRot: 89.44574f } - "southvein": { dim: "wc:westeros", x: -7212, y: 60, z: 11810, time: 1696965111653L, xRot: -9.45014f, yRot: 353.8186f } - "fishfootyard": { dim: "wc:westeros", x: 2072, y: 39, z: -2387, time: 1696965111653L, xRot: -15.449968f, yRot: 269.98975f } - "ulhf2": { dim: "wc:westeros", x: -6249, y: 68, z: 22195, time: 1696965111653L, xRot: 15.300006f, yRot: -181.31996f } - "dghf1": { dim: "wc:westeros", x: 6221, y: 82, z: 972, time: 1696965111653L, xRot: 29.41118f, yRot: 1.6132812f } - "tyndale": { dim: "wc:westeros", x: -644, y: 51, z: 17951, time: 1696965111653L, xRot: -8.099992f, yRot: 178.44312f } - "dfdungeons": { dim: "wc:westeros", x: 4368, y: 82, z: -9187, time: 1696965111653L, xRot: -1.9498738f, yRot: -269.83105f } - "peddlerspassage": { dim: "wc:westeros", x: 5853, y: 51, z: -8613, time: 1696965111653L, xRot: -15.600263f, yRot: -41.2511f } - "ywh3": { dim: "wc:westeros", x: -600, y: 36, z: 22399, time: 1696965111653L, xRot: -24.000038f, yRot: -178.87125f } - "kloxmill": { dim: "wc:westeros", x: 2168, y: 41, z: 12778, time: 1696965111654L, xRot: 10.500024f, yRot: 174.20535f } - "BlackhavenWinery": { dim: "wc:westeros", x: 2770, y: 48, z: 19948, time: 1696965111654L, xRot: 4.3499937f, yRot: 45.300354f } - "bbhamlet2": { dim: "wc:westeros", x: -952, y: 39, z: 15601, time: 1696965111654L, xRot: 7.3500695f, yRot: -285.79102f } - "fallenheath": { dim: "wc:westeros", x: 6977, y: 49, z: -4984, time: 1696965111654L, xRot: -8.25001f, yRot: -46.16891f } - "reeksdungeon": { dim: "wc:westeros", x: 4373, y: 65, z: -9186, time: 1696965111654L, xRot: 12.000171f, yRot: -90.2789f } - "rivercrossing": { dim: "wc:westeros", x: -7243, y: 35, z: -5950, time: 1696965111654L, xRot: 11.400354f, yRot: -359.17664f } - "dfhunt1": { dim: "wc:westeros", x: 4908, y: 47, z: -9565, time: 1696965111654L, xRot: 11.400113f, yRot: -109.65091f } - "oldpatescottage": { dim: "wc:westeros", x: -287, y: 40, z: 7305, time: 1696965111655L, xRot: -3.4499168f, yRot: -147.78394f } - "mancescamp": { dim: "wc:westeros", x: -1631, y: 145, z: -20470, time: 1696965111655L, xRot: 39.57199478149414f, yRot: -272.70880126953125f } - "graywaterwatch": { dim: "wc:westeros", x: -1155, y: 64, z: 58, time: 1696965111655L, xRot: 22.499619f, yRot: 181.35265f } - "ivyinn": { dim: "wc:westeros", x: 3041, y: 44, z: 11492, time: 1696965111655L, xRot: -4.9500155f, yRot: -251.26416f } - "heptagon": { dim: "wc:playground", x: -959, y: 21, z: 1105, time: 1696965111655L, xRot: 4.6500015f, yRot: 236.7448f } - "gthf1": { dim: "wc:westeros", x: -5499, y: 58, z: 10559, time: 1696965111655L, xRot: 10.649993f, yRot: -91.49177f } - "serwarrenstowerhouse": { dim: "wc:westeros", x: -123, y: 45, z: 7560, time: 1696965111655L, xRot: -17.400011f, yRot: -25.174927f } - "hollowpointe": { dim: "wc:westeros", x: 7912, y: 37, z: -4248, time: 1696965111655L, xRot: 1.9500324f, yRot: -68.17682f } - "pfholdfast1": { dim: "wc:westeros", x: 1984, y: 111, z: 18345, time: 1696965111655L, xRot: -23.892393f, yRot: -68.87299f } - "eaglewood": { dim: "wc:westeros", x: -1935, y: 44, z: 4340, time: 1696965111656L, xRot: 2.4001803f, yRot: -304.97363f } - "settlementguide": { dim: "wc:playground", x: -940, y: 34, z: 1036, time: 1696965111656L, xRot: -6.1499944f, yRot: 178.54646f } - "coppersmithswynd": { dim: "wc:westeros", x: 2983, y: 55, z: 12858, time: 1696965111656L, xRot: 17.249985f, yRot: -40.777264f } - "killmetown": { dim: "wc:westeros", x: -1639, y: 87, z: 17277, time: 1696965111656L, xRot: 26.85006f, yRot: -177.9563f } - "sgcabin1": { dim: "wc:westeros", x: -3763, y: 53, z: 4311, time: 1696965111656L, xRot: 26.400019f, yRot: -176.26122f } - "runestonequarry": { dim: "wc:westeros", x: 6522, y: 52, z: 6420, time: 1696965111656L, xRot: 23.742254f, yRot: -358.66373f } - "wwfishingcamp": { dim: "wc:westeros", x: 7739, y: 35, z: -4851, time: 1696965111656L, xRot: 41.999844f, yRot: -350.62762f } - "grell": { dim: "wc:westeros", x: -1425, y: 48, z: 7242, time: 1696965111656L, xRot: -4.800002f, yRot: -359.07495f } - "highhermvillage2": { dim: "wc:westeros", x: -3364, y: 66, z: 22803, time: 1696965111668L, xRot: 10.949993f, yRot: -131.27979f } - "seabreeze": { dim: "wc:westeros", x: -4294, y: 60, z: 4612, time: 1696965111668L, xRot: 3.449974f, yRot: -307.8219f } - "clifton": { dim: "wc:westeros", x: -7887, y: 55, z: 9547, time: 1696965111668L, xRot: -23.849989f, yRot: -23.047878f } - "gtmp": { dim: "wc:westeros", x: -3619, y: 109, z: 10246, time: 1696965111668L, xRot: 5.400012f, yRot: -332.84995f } - "myre": { dim: "wc:westeros", x: -6148, y: 38, z: 5842, time: 1696965111669L, xRot: -13.050068f, yRot: 182.98973f } - "bushy": { dim: "wc:westeros", x: -820, y: 47, z: 12923, time: 1696965111669L, xRot: -1.376664f, yRot: 89.362274f } - "whisperingwood": { dim: "wc:westeros", x: -1836, y: 60, z: 7130, time: 1696965111669L, xRot: -10.800012f, yRot: -203.3999f } - "sunspear": { dim: "wc:westeros", x: 9175, y: 65, z: 24804, time: 1696965111669L, xRot: -12.150091f, yRot: 265.96445f } - "sealgate": { dim: "wc:westeros", x: 2026, y: 38, z: -2388, time: 1696965111669L, xRot: -24.599977f, yRot: 270.28918f } - "wgseptry": { dim: "wc:westeros", x: -2703, y: 48, z: 18701, time: 1696965111669L, xRot: 10.949929f, yRot: 199.07977f } - "rrshelf": { dim: "wc:playground", x: -1061, y: 21, z: 315, time: 1696965111669L, xRot: -23.10024f, yRot: 90.90527f } - "hallofheroes": { dim: "wc:westeros", x: -7708, y: 87, z: 11904, time: 1696965111669L, xRot: 13.649784f, yRot: 93.769295f } - "bluestone": { dim: "wc:westeros", x: 7098, y: 37, z: -5545, time: 1696965111670L, xRot: 25.17885f, yRot: -94.31938f } - "shtourney": { dim: "wc:westeros", x: 4526, y: 57, z: 19409, time: 1696965111670L, xRot: -2.3545249f, yRot: 273.81418f } - "Dolby": { dim: "wc:westeros", x: 756, y: 34, z: 16279, time: 1696965111670L, xRot: 4.016273f, yRot: -151.15222f } - "VyprenHamlet3": { dim: "wc:westeros", x: -30, y: 45, z: 5843, time: 1696965111670L, xRot: 22.054184f, yRot: -104.477295f } - "rhamlets1": { dim: "wc:westeros", x: -3551, y: 40, z: 15281, time: 1696965111670L, xRot: -3.3000362f, yRot: -110.58093f } - "MajorTom": { dim: "wc:playground", x: -98, y: 21, z: 1069, time: 1696965111670L, xRot: 3.7500405f, yRot: -46.916138f } - "fisher": { dim: "wc:westeros", x: -8552, y: 46, z: -5794, time: 1696965111670L, xRot: -6.900025f, yRot: -339.8778f } - "crabb": { dim: "wc:westeros", x: 8050, y: 57, z: 8912, time: 1696965111670L, xRot: -0.9000275f, yRot: -94.34302f } - "fwh2": { dim: "wc:westeros", x: -4695, y: 38, z: 14139, time: 1696965111670L, xRot: 11.573475f, yRot: -184.83981f } - "sunseed": { dim: "wc:westeros", x: -5524, y: 102, z: 20625, time: 1696965111670L, xRot: -14.699999f, yRot: -48.336586f } - "manderdelta": { dim: "wc:westeros", x: -7426, y: 93, z: 18665, time: 1696965111671L, xRot: 42.00165f, yRot: 184.26773f } - "lollistonh1": { dim: "wc:westeros", x: 1583, y: 46, z: 7105, time: 1696965111671L, xRot: -10.226496f, yRot: -268.33325f } - "portals": { dim: "wc:playground", x: 21, y: 140, z: -41, time: 1696965111671L, xRot: 0.7787271f, yRot: 271.5728f } - "kthamlet3": { dim: "wc:westeros", x: 8280, y: 42, z: 19846, time: 1696965111671L, xRot: 11.549992f, yRot: -269.56445f } - "streetofsilk": { dim: "wc:westeros", x: 3001, y: 66, z: 12819, time: 1696965111671L, xRot: -3.599945f, yRot: -188.79187f } - "standfast": { dim: "wc:westeros", x: -6780, y: 63, z: 15854, time: 1696965111671L, xRot: 10.950008f, yRot: 107.899025f } - "scarwood": { dim: "wc:westeros", x: 6142, y: 66, z: -5035, time: 1696965111671L, xRot: -13.9505f, yRot: -353.25098f } - "lonelyfire": { dim: "wc:westeros", x: -8504, y: 41, z: -4126, time: 1696965111672L, xRot: -4.5000315f, yRot: -31.425251f } - "tunden": { dim: "wc:westeros", x: -772, y: 55, z: 16610, time: 1696965111672L, xRot: 13.6764345f, yRot: 37.1741f } - "bronzegate": { dim: "wc:westeros", x: 6442, y: 118, z: 16281, time: 1696965111672L, xRot: 2.3994572f, yRot: 106.773415f } - "wwhf1": { dim: "wc:westeros", x: 953, y: 58, z: 10471, time: 1696965111672L, xRot: 42.473312f, yRot: 1.0567658f } - "dwmquarry2": { dim: "wc:westeros", x: -4184, y: 84, z: -8584, time: 1696965111672L, xRot: 32.849976f, yRot: -89.10541f } - "pommingham": { dim: "wc:westeros", x: -6596, y: 99, z: 23825, time: 1696965111672L, xRot: -3.7517197f, yRot: 15.932868f } - "ironoaksvineyard": { dim: "wc:westeros", x: 5553, y: 50, z: 5447, time: 1696965111672L, xRot: -17.399843f, yRot: -282.97104f } - "yelham2": { dim: "wc:westeros", x: -6268, y: 126, z: 22459, time: 1696965111672L, xRot: 13.754697f, yRot: -83.47576f } - "hwhf3": { dim: "wc:westeros", x: -8369, y: 56, z: 20183, time: 1696965111672L, xRot: 3.9200122f, yRot: -157.36734f } - "cmham3": { dim: "wc:westeros", x: -7017, y: 46, z: 15821, time: 1696965111673L, xRot: -5.249973f, yRot: -196.75513f } - "nightsong": { dim: "wc:westeros", x: -1378, y: 128, z: 20931, time: 1696965111673L, xRot: -7.500064f, yRot: -190.62096f } - "ghosthill": { dim: "wc:westeros", x: 7125, y: 37, z: 23510, time: 1696965111673L, xRot: -9.750036f, yRot: 317.36868f } - "malleryvillage": { dim: "wc:westeros", x: 4118, y: 44, z: 10816, time: 1696965111673L, xRot: 1.5519258f, yRot: -293.59412f } - "yelwt1": { dim: "wc:westeros", x: -5413, y: 110, z: 22629, time: 1696965111673L, xRot: 62.765675f, yRot: 274.7905f } - "hgtest": { dim: "wc:playground", x: 978, y: 22, z: -962, time: 1696965111684L, xRot: -3.749997f, yRot: -358.27353f } - "oldwyk": { dim: "wc:westeros", x: -8164, y: 65, z: 5060, time: 1696965111684L, xRot: -11.120413f, yRot: -146.26234f } - "stonefield": { dim: "wc:westeros", x: 4380, y: 42, z: 2792, time: 1696965111684L, xRot: -10.200195f, yRot: -0.16540527f } - "bushycoal": { dim: "wc:westeros", x: -971, y: 54, z: 13253, time: 1696965111684L, xRot: 42.30001f, yRot: -274.54028f } - "manningwh": { dim: "wc:westeros", x: 5575, y: 81, z: 13809, time: 1696965111684L, xRot: 32.699924f, yRot: 88.292496f } - "theylaywithlions": { dim: "wc:westeros", x: -986, y: 41, z: 7443, time: 1696965111685L, xRot: -10.7999935f, yRot: 345.32516f } - "meadowview": { dim: "wc:westeros", x: 7668, y: 66, z: 3213, time: 1696965111685L, xRot: 16.652279f, yRot: -334.66412f } - "fm": { dim: "wc:westeros", x: -801, y: 44, z: 6046, time: 1696965111685L, xRot: 6.8999896f, yRot: 183.45654f } - "haystackhall2": { dim: "wc:westeros", x: 6937, y: 76, z: 15762, time: 1696965111685L, xRot: -3.1500175f, yRot: -59.499683f } - "sunderland": { dim: "wc:westeros", x: 3490, y: 66, z: -381, time: 1696965111685L, xRot: 26.999956f, yRot: -96.96457f } - "oceansquare": { dim: "wc:westeros", x: -7599, y: 41, z: 12282, time: 1696965111685L, xRot: 19.04999f, yRot: -177.48322f } - "runestoneholdfast1": { dim: "wc:westeros", x: 8586, y: 47, z: 5456, time: 1696965111685L, xRot: 24.749907f, yRot: -203.98894f } - "huddlestone": { dim: "wc:westeros", x: -6690, y: 43, z: 19906, time: 1696965111685L, xRot: -8.699994f, yRot: 6.028846f } - "alumber1": { dim: "wc:westeros", x: 379, y: 57, z: 18615, time: 1696965111686L, xRot: 20.850586f, yRot: -313.76443f } - "hwhf2": { dim: "wc:westeros", x: -7856, y: 54, z: 19937, time: 1696965111686L, xRot: -6.534505f, yRot: -267.9083f } - "ironoakshamlet1": { dim: "wc:westeros", x: 6420, y: 38, z: 5532, time: 1696965111686L, xRot: -4.0500193f, yRot: -157.3938f } - "klmanse3": { dim: "wc:westeros", x: 2886, y: 48, z: 12368, time: 1696965111686L, xRot: -4.7999105f, yRot: 90.71963f } - "wfwatchtower4": { dim: "wc:westeros", x: -1231, y: 45, z: -7810, time: 1696965111686L, xRot: 29.699995f, yRot: -358.56998f } - "bmhf2": { dim: "wc:westeros", x: -3222, y: 112, z: 21094, time: 1696965111686L, xRot: -0.00019775928f, yRot: 271.99225f } - "appleton": { dim: "wc:westeros", x: 323, y: 38, z: 18409, time: 1696965111686L, xRot: -8.700492f, yRot: -129.43959f } - "cnhf2": { dim: "wc:westeros", x: 5852, y: 94, z: 18683, time: 1696965111686L, xRot: 25.04994f, yRot: 79.923065f } - "rushingfalls": { dim: "wc:westeros", x: 1844, y: 33, z: 8761, time: 1696965111687L, xRot: 7.6500363f, yRot: -132.08623f } - "highhermhf1": { dim: "wc:westeros", x: -3797, y: 79, z: 22983, time: 1696965111687L, xRot: -7.403956f, yRot: 299.85175f } - "therills": { dim: "wc:westeros", x: -6080, y: 44, z: -3695, time: 1696965111687L, xRot: -11.258638f, yRot: 157.05334f } - "leygood": { dim: "wc:westeros", x: -1158, y: 165, z: 20008, time: 1696965111687L, xRot: 9.900038f, yRot: 91.64945f } - "norvos": { dim: "wc:playground", x: -1785, y: 33, z: 1216, time: 1696965111687L, xRot: 12.30069f, yRot: 269.59573f } - "orphanage": { dim: "wc:playground", x: 1045, y: 21, z: -274, time: 1696965111687L, xRot: 6.7500353f, yRot: -265.28613f } - "lhhf11": { dim: "wc:westeros", x: 4219, y: 56, z: -12409, time: 1696965111687L, xRot: 2.8502576f, yRot: -205.54865f } - "ibbencontest": { dim: "wc:playground", x: -1525, y: 126, z: 180, time: 1696965111688L, xRot: -1.9499983f, yRot: -179.38824f } - "cncamp2": { dim: "wc:westeros", x: 5996, y: 78, z: 19106, time: 1696965111688L, xRot: 17.100035f, yRot: 178.77289f } - "Wydmanhamlet": { dim: "wc:westeros", x: 8470, y: 41, z: 1521, time: 1696965111688L, xRot: 41.09398f, yRot: -131.22983f } - "aberdale": { dim: "wc:westeros", x: -4590, y: 35, z: 16929, time: 1696965111688L, xRot: 4.9499865f, yRot: -43.111946f } - "ulh2": { dim: "wc:westeros", x: -6900, y: 78, z: 21973, time: 1696965111688L, xRot: 47.249912f, yRot: -180.41888f } - "littlefingersbrothel": { dim: "wc:westeros", x: 2973, y: 47, z: 13388, time: 1696965111688L, xRot: -6.5370674f, yRot: -88.12748f } - "mancescamp5": { dim: "wc:westeros", x: -1882, y: 38, z: -20306, time: 1696965111688L, xRot: 21.449999f, yRot: -315.0326f } - "coldwaterburn": { dim: "wc:westeros", x: 6577, y: 45, z: 1560, time: 1696965111689L, xRot: -18.45004f, yRot: 157.01302f } - "sweetkeep": { dim: "wc:westeros", x: 7524, y: 60, z: 14006, time: 1696965111689L, xRot: -12.149993f, yRot: 184.75615f } - "bearislandvillage4": { dim: "wc:westeros", x: -5431, y: 73, z: -13322, time: 1696965111689L, xRot: -3.4498715f, yRot: 11.818237f } - "Amberly": { dim: "wc:westeros", x: 7645, y: 48, z: 18216, time: 1696965111689L, xRot: -2.1950302f, yRot: 109.6787f } - "blackhavenHm": { dim: "wc:westeros", x: 2928, y: 46, z: 20049, time: 1696965111689L, xRot: 8.85014f, yRot: -357.29916f } - "rollingfordmanor": { dim: "wc:westeros", x: 1331, y: 56, z: 12269, time: 1696965111689L, xRot: 1.3501444f, yRot: -89.64633f } - "frithcester": { dim: "wc:westeros", x: 141, y: 40, z: 16003, time: 1696965111689L, xRot: 8.550041f, yRot: 51.724186f } - "andover": { dim: "wc:westeros", x: 6505, y: 63, z: 16781, time: 1696965111689L, xRot: -16.144636f, yRot: 232.64218f } - "cranberrybog": { dim: "wc:westeros", x: 6294, y: 63, z: -4874, time: 1696965111689L, xRot: 36.44992f, yRot: -194.4845f } - "sweetsister": { dim: "wc:westeros", x: 2993, y: 93, z: -287, time: 1696965111689L, xRot: -3.7499905f, yRot: 270.43134f } - "spearwatch": { dim: "wc:westeros", x: -2790, y: 56, z: 16864, time: 1696965111689L, xRot: -6.9000216f, yRot: -37.14554f } - "nutten": { dim: "wc:westeros", x: 1663, y: 47, z: 7440, time: 1696965111689L, xRot: -1.1562791f, yRot: 89.821686f } - "cncamp1": { dim: "wc:westeros", x: 6221, y: 78, z: 18836, time: 1696965111690L, xRot: 8.700052f, yRot: 87.722916f } - "chport": { dim: "wc:westeros", x: -8850, y: 58, z: 15549, time: 1696965111690L, xRot: 30.14999f, yRot: -287.06848f } - "oldhollard": { dim: "wc:playground", x: -460, y: 24, z: -353, time: 1696965111701L, xRot: 3.5999696f, yRot: -225.4496f } - "irongate": { dim: "wc:westeros", x: 3448, y: 44, z: 12985, time: 1696965111701L, xRot: -12.000012f, yRot: 89.90471f } - "klbrick2": { dim: "wc:westeros", x: 3090, y: 48, z: 12316, time: 1696965111702L, xRot: 8.400049f, yRot: 86.06674f } - "HouseOfParliament": { dim: "wc:playground", x: -1506, y: 75, z: -1242, time: 1696965111702L, xRot: 22.949677f, yRot: 4.2534943f } - "pyne": { dim: "wc:westeros", x: 9097, y: 129, z: 8071, time: 1696965111703L, xRot: 1.7691590785980225f, yRot: 268.3497314453125f } - "plummhf2": { dim: "wc:westeros", x: -6918, y: 60, z: 14904, time: 1696965111703L, xRot: 28.949991f, yRot: -359.39978f } - "lghf3": { dim: "wc:westeros", x: -1659, y: 54, z: 20025, time: 1696965111703L, xRot: -4.5000224f, yRot: 90.74525f } - "yronwoodtown": { dim: "wc:westeros", x: 513, y: 38, z: 22312, time: 1696965111703L, xRot: 0.7501358f, yRot: -220.71712f } - "warp": { dim: "wc:playground", x: 34, y: 140, z: -40, time: 1696965111703L, xRot: 5.7000313f, yRot: -91.34676f } - "cuyhamlet2": { dim: "wc:westeros", x: -6644, y: 85, z: 24658, time: 1696965111703L, xRot: 74.999985f, yRot: 178.25328f } - "skippingstones": { dim: "wc:westeros", x: 214, y: 35, z: 7351, time: 1696965111703L, xRot: 1.3487294f, yRot: -214.94362f } - "bushes": { dim: "wc:playground", x: 679, y: 25, z: -975, time: 1696965111704L, xRot: -8.082306f, yRot: -181.39003f } - "castamere": { dim: "wc:westeros", x: -6664, y: 62, z: 9535, time: 1696965111704L, xRot: -16.199991f, yRot: -88.94987f } - "longsisterkeep": { dim: "wc:westeros", x: 2677, y: 82, z: -107, time: 1696965111704L, xRot: 27.600008f, yRot: -215.62004f } - "ruthermont": { dim: "wc:westeros", x: 7957, y: 84, z: 7450, time: 1696965111704L, xRot: 25.800025939941406f, yRot: -18.938232421875f } - "chlodge": { dim: "wc:westeros", x: -7485, y: 69, z: 14632, time: 1696965111704L, xRot: 29.699999f, yRot: 227.10983f } - "brownhollow": { dim: "wc:westeros", x: 7731, y: 56, z: 9311, time: 1696965111704L, xRot: -5.2499948f, yRot: -353.24652f } - "rivergate": { dim: "wc:westeros", x: 2831, y: 42, z: 13428, time: 1696965111704L, xRot: 1.5000949f, yRot: -179.93958f } - "dunstonbury": { dim: "wc:westeros", x: -3300, y: 58, z: 17554, time: 1696965111704L, xRot: 9.577958f, yRot: -29.861189f } - "tarth": { dim: "wc:westeros", x: 9374, y: 147, z: 16733, time: 1696965111704L, xRot: 44.24160385131836f, yRot: 90.94042205810547f } - "toyne": { dim: "wc:westeros", x: 6131, y: 50, z: 18122, time: 1696965111705L, xRot: -3.7110438f, yRot: -21.935167f } - "donnigersf1": { dim: "wc:westeros", x: 6940, y: 67, z: 646, time: 1696965111705L, xRot: 29.999971f, yRot: 38.42196f } - "hwh2": { dim: "wc:westeros", x: -8609, y: 44, z: 20008, time: 1696965111705L, xRot: 9.4838295f, yRot: -154.51868f } - "medtrees": { dim: "wc:playground", x: 278, y: 20, z: -323, time: 1696965111705L, xRot: -5.550032f, yRot: 204.51434f } - "lpnorthgate": { dim: "wc:westeros", x: -7477, y: 45, z: 11896, time: 1696965111705L, xRot: -25.950085f, yRot: -1.7871126f } - "sslumberh": { dim: "wc:westeros", x: -9075, y: 70, z: -5563, time: 1696965111705L, xRot: -0.9000102f, yRot: 287.40182f } - "fwh1": { dim: "wc:westeros", x: -4871, y: 68, z: 14224, time: 1696965111705L, xRot: -17.700058f, yRot: 180.44995f } - "lhtstorage": { dim: "wc:playground", x: 848, y: 21, z: -298, time: 1696965111705L, xRot: 7.200051f, yRot: 265.8639f } - "csmanse1": { dim: "wc:westeros", x: -1602, y: 57, z: 19275, time: 1696965111706L, xRot: -1.2000408f, yRot: 145.78835f } - "stone": { dim: "wc:westeros", x: 3974, y: 21, z: 5810, time: 1696965111706L, xRot: -27.750006f, yRot: -345.74628f } - "boliiid": { dim: "wc:playground", x: 10, y: 21, z: 857, time: 1696965111706L, xRot: 0.4499975f, yRot: -43.94641f } - "wfhuntersgate": { dim: "wc:westeros", x: -1357, y: 58, z: -8487, time: 1696965111706L, xRot: -19.200016f, yRot: -90.02557f } - "seadragon3": { dim: "wc:westeros", x: -6905, y: 89, z: -11679, time: 1696965111706L, xRot: 43.349926f, yRot: 99.60154f } - "frostsedge": { dim: "wc:westeros", x: 4668, y: 46, z: -14093, time: 1696965111706L, xRot: -5.849945f, yRot: -287.88025f } - "newkeepseptry": { dim: "wc:westeros", x: 3234, y: 146, z: 1309, time: 1696965111706L, xRot: 83.25f, yRot: -83.093475f } - "oldarch": { dim: "wc:westeros", x: -7541, y: 40, z: 20357, time: 1696965111707L, xRot: 0.44998538f, yRot: -206.97209f } - "ulhf1": { dim: "wc:westeros", x: -6699, y: 37, z: 21618, time: 1696965111717L, xRot: -3.3001592f, yRot: 325.0529f } - "ochold3": { dim: "wc:westeros", x: 3972, y: 50, z: -2348, time: 1696965111717L, xRot: 12.899976f, yRot: -288.7443f } - "flintsfinger": { dim: "wc:westeros", x: -7364, y: 45, z: -864, time: 1696965111718L, xRot: -8.400073f, yRot: 66.66674f } - "tarrenmure": { dim: "wc:westeros", x: 6451, y: 46, z: -7198, time: 1696965111718L, xRot: -8.550046f, yRot: 100.80593f } - "lannistergold": { dim: "wc:westeros", x: -7764, y: 136, z: 11915, time: 1696965111718L, xRot: -6.900013f, yRot: 90.319305f } - "redfort": { dim: "wc:westeros", x: 5896, y: 134, z: 6756, time: 1696965111718L, xRot: -13.946838f, yRot: 0.26593256f } - "fallowfell": { dim: "wc:westeros", x: 2562, y: 54, z: -4584, time: 1696965111718L, xRot: -4.2000155f, yRot: -236.46419f } - "astberry": { dim: "wc:westeros", x: 6759, y: 100, z: 7445, time: 1696965111719L, xRot: -10.199999809265137f, yRot: -222.34661865234375f } - "rhhamlet1": { dim: "wc:westeros", x: 9799, y: 42, z: 18547, time: 1696965111719L, xRot: 17.850004f, yRot: 15.739095f } - "eyrie": { dim: "wc:westeros", x: 3867, y: 165, z: 6144, time: 1696965111719L, xRot: -11.700045f, yRot: -88.65836f } - "willumseptry": { dim: "wc:westeros", x: 997, y: 65, z: 17581, time: 1696965111719L, xRot: 65.24993f, yRot: -181.34639f } - "selmywoods": { dim: "wc:westeros", x: 905, y: 141, z: 19048, time: 1696965111719L, xRot: 26.099552f, yRot: -69.740005f } - "runestoneholdfast2": { dim: "wc:westeros", x: 6490, y: 51, z: 6209, time: 1696965111719L, xRot: -19.50015f, yRot: 40.191685f } - "wullhamlet3": { dim: "wc:westeros", x: -1780, y: 35, z: -13675, time: 1696965111719L, xRot: 5.715799f, yRot: 184.54312f } - "seafort": { dim: "wc:westeros", x: 3053, y: 61, z: 13481, time: 1696965111719L, xRot: -12.899929f, yRot: -176.93944f } - "seagardkeep": { dim: "wc:westeros", x: -2306, y: 37, z: 4419, time: 1696965111720L, xRot: -25.65005f, yRot: -266.26404f } - "wfwatchtower2": { dim: "wc:westeros", x: -1508, y: 68, z: -8138, time: 1696965111720L, xRot: 25.799995f, yRot: -251.42578f } - "oldoak": { dim: "wc:westeros", x: -7499, y: 53, z: 16761, time: 1696965111720L, xRot: 2.5500586f, yRot: 186.0289f } - "baratheon3": { dim: "wc:westeros", x: 6743, y: 64, z: 16757, time: 1696965111720L, xRot: -5.550025f, yRot: 161.35612f } - "klsewer": { dim: "wc:westeros", x: 3487, y: 67, z: 13016, time: 1696965111720L, xRot: 19.650002f, yRot: -1.5942688f } - "bearislandvillage": { dim: "wc:westeros", x: -4898, y: 88, z: -13467, time: 1696965111720L, xRot: -14.849996f, yRot: 199.91576f } - "newcastle": { dim: "wc:westeros", x: 2197, y: 64, z: -2560, time: 1696965111720L, xRot: -29.550013f, yRot: 179.539f } - "ironoakssept": { dim: "wc:westeros", x: 5404, y: 76, z: 5547, time: 1696965111721L, xRot: -8.399831f, yRot: -335.77084f } - "fellowwood": { dim: "wc:westeros", x: -3508, y: 53, z: 4353, time: 1696965111721L, xRot: 5.5500317f, yRot: -180.31117f } - "khhf1": { dim: "wc:westeros", x: 6774, y: 55, z: -9760, time: 1696965111721L, xRot: 17.550215f, yRot: -27.608282f } - "plottingexample": { dim: "wc:playground", x: -804, y: 20, z: 988, time: 1696965111721L, xRot: -1.6500639f, yRot: -269.9557f } - "oakberry": { dim: "wc:westeros", x: 5082, y: 92, z: 4757, time: 1696965111721L, xRot: -17.999958f, yRot: -224.55888f } - "cuy": { dim: "wc:westeros", x: -6709, y: 50, z: 24996, time: 1696965111721L, xRot: -10.614925f, yRot: -311.80286f } - "rk": { dim: "wc:westeros", x: 3243, y: 116, z: 13268, time: 1696965111721L, xRot: -31.800072f, yRot: -56.840576f } - "waspwood": { dim: "wc:westeros", x: -1484, y: 36, z: 6960, time: 1696965111721L, xRot: -10.950003f, yRot: 238.50269f } - "hollard": { dim: "wc:westeros", x: 5614, y: 47, z: 10957, time: 1696965111722L, xRot: 0.45000616f, yRot: -43.883896f } - "tworivers": { dim: "wc:westeros", x: -7093, y: 39, z: -5935, time: 1696965111722L, xRot: 1.6499819f, yRot: -2.0758972f } - "redlake": { dim: "wc:westeros", x: -6055, y: 160, z: 15497, time: 1696965111722L, xRot: 9.44999f, yRot: 5.6079926f } - "ywmine2": { dim: "wc:westeros", x: -197, y: 64, z: 21567, time: 1696965111722L, xRot: 90f, yRot: -164.02138f } - "highhermitage1": { dim: "wc:westeros", x: -3148, y: 186, z: 23395, time: 1696965111722L, xRot: -2.8500097f, yRot: 271.77316f } - "oldvulturesroost": { dim: "wc:playground", x: -807, y: 21, z: -389, time: 1696965111722L, xRot: 0.75005543f, yRot: -89.24927f } - "baratheon4": { dim: "wc:westeros", x: 6905, y: 66, z: 16861, time: 1696965111722L, xRot: 12.149943f, yRot: -346.3938f } - "sgcabin4": { dim: "wc:westeros", x: -2817, y: 49, z: 4191, time: 1696965111722L, xRot: -2.9999764f, yRot: -177.45047f } - "khtown1": { dim: "wc:westeros", x: 8040, y: 38, z: -9395, time: 1696965111723L, xRot: 27.149834f, yRot: -261.60977f } - "birdmancove": { dim: "wc:westeros", x: -3480, y: 57, z: 13933, time: 1696965111723L, xRot: -16.800047f, yRot: 181.25266f } - "hoarfrostspring": { dim: "wc:westeros", x: 5496, y: 45, z: -13760, time: 1696965111723L, xRot: 3.7499876f, yRot: 269.36554f } - "ashford": { dim: "wc:westeros", x: -455, y: 34, z: 18406, time: 1696965111723L, xRot: 2.5500393f, yRot: -173.64978f } - "ciderhall": { dim: "wc:westeros", x: -2910, y: 37, z: 17855, time: 1696965111723L, xRot: -9.000104f, yRot: 181.18422f } - "byrchruin": { dim: "wc:westeros", x: 3604, y: 59, z: 11943, time: 1696965111723L, xRot: 28.649982f, yRot: -178.07202f } - "noonwraith": { dim: "wc:westeros", x: -6604, y: 63, z: -4470, time: 1696965111723L, xRot: 10.949915f, yRot: 7.725053f } - "dwmhunting2": { dim: "wc:westeros", x: -2491, y: 41, z: -8185, time: 1696965111734L, xRot: 11.549964f, yRot: 92.09391f } - "sloanehamlet1": { dim: "wc:westeros", x: 2445, y: 54, z: 17078, time: 1696965111734L, xRot: -6.202804f, yRot: -86.04092f } - "highroad": { dim: "wc:westeros", x: 2128, y: 36, z: 7056, time: 1696965111735L, xRot: -7.4475307f, yRot: 226.69397f } - "redrainfarm": { dim: "wc:westeros", x: 2176, y: 47, z: -6755, time: 1696965111735L, xRot: -8.099988f, yRot: -180.6768f } - "khhamlet7": { dim: "wc:westeros", x: 6900, y: 52, z: -8523, time: 1696965111735L, xRot: 42.149975f, yRot: 158.69136f } - "sealskinpoint": { dim: "wc:westeros", x: -8942, y: 35, z: 4726, time: 1696965111735L, xRot: -18.935719f, yRot: -312.8599f } - "sparr": { dim: "wc:westeros", x: -9283, y: 51, z: 5526, time: 1696965111735L, xRot: 5.100001f, yRot: 189.75587f } - "oldcastle": { dim: "wc:westeros", x: 2544, y: 126, z: -1103, time: 1696965111735L, xRot: -6.0000305f, yRot: 2.4051514f } - "sheepsfold": { dim: "wc:westeros", x: 3032, y: 49, z: -7057, time: 1696965111735L, xRot: -0.45001775f, yRot: 178.49245f } - "bbhamlet4": { dim: "wc:westeros", x: -983, y: 44, z: 16074, time: 1696965111736L, xRot: 2.8501768f, yRot: -219.19312f } - "plankytown": { dim: "wc:westeros", x: 7903, y: 35, z: 25279, time: 1696965111736L, xRot: -4.8000007f, yRot: -96.776855f } - "harrenhalljump": { dim: "wc:westeros", x: 1901, y: 47, z: 9219, time: 1696965111736L, xRot: 5.759484f, yRot: 267.32455f } - "hunterspoint": { dim: "wc:westeros", x: 8855, y: 46, z: 2938, time: 1696965111736L, xRot: 2.552222f, yRot: -88.49712f } - "pvp": { dim: "wc:playground", x: -836, y: 21, z: 187, time: 1696965111736L, xRot: 3.2999349f, yRot: 3.9001937f } - "goldgrass": { dim: "wc:westeros", x: -3691, y: 55, z: -3894, time: 1696965111736L, xRot: -27.917551f, yRot: 340.82312f } - "cargyll": { dim: "wc:westeros", x: 2688, y: 59, z: 11887, time: 1696965111736L, xRot: -37.843307f, yRot: -194.34328f } - "HayfordFarm3": { dim: "wc:westeros", x: 2047, y: 43, z: 11879, time: 1696965111737L, xRot: 10.500025f, yRot: 263.7838f } - "hhgranary": { dim: "wc:westeros", x: 486, y: 61, z: 18758, time: 1696965111737L, xRot: -1.3500358f, yRot: -277.49927f } - "thevale": { dim: "wc:westeros", x: 3867, y: 165, z: 6145, time: 1696965111737L, xRot: -11.700045f, yRot: -88.65836f } - "BlackhavenTown": { dim: "wc:westeros", x: 2280, y: 73, z: 19612, time: 1696965111737L, xRot: 11.700009f, yRot: -269.85107f } - "riversend": { dim: "wc:westeros", x: 3727, y: 41, z: -7401, time: 1696965111737L, xRot: 14.400081f, yRot: -241.20319f } - "diregrove": { dim: "wc:westeros", x: 5743, y: 37, z: -4353, time: 1696965111737L, xRot: 15.449957f, yRot: -4.4982605f } - "starwars": { dim: "wc:playground", x: -633, y: 33, z: 569, time: 1696965111737L, xRot: -25.340862f, yRot: 98.193825f } - "spinetpond": { dim: "wc:westeros", x: -7432, y: 44, z: -2611, time: 1696965111737L, xRot: -26.119137f, yRot: -18.466516f } - "egenhall": { dim: "wc:westeros", x: 3823, y: 58, z: 3977, time: 1696965111737L, xRot: -39.074867f, yRot: -270.86334f } - "grandview": { dim: "wc:westeros", x: 4728, y: 53, z: 17401, time: 1696965111737L, xRot: -21.449987f, yRot: -174.68652f } - "dwmhamlet2": { dim: "wc:westeros", x: -3581, y: 80, z: -8953, time: 1696965111738L, xRot: 5.100005f, yRot: -178.5055f } - "stonyhead": { dim: "wc:westeros", x: 2118, y: 46, z: 7384, time: 1696965111738L, xRot: 3.3171692f, yRot: -27.035828f } - "klmaidensept": { dim: "wc:westeros", x: 2834, y: 47, z: 12756, time: 1696965111738L, xRot: -33.000008f, yRot: 87.20459f } - "HayfordBrick1": { dim: "wc:westeros", x: 1845, y: 41, z: 12226, time: 1696965111738L, xRot: 19.800034f, yRot: 96.42986f } - "torrhenssquare": { dim: "wc:westeros", x: -3156, y: 40, z: -6137, time: 1696965111738L, xRot: -9.600015f, yRot: -300.319f } - "myatt": { dim: "wc:westeros", x: -5413, y: 52, z: 9919, time: 1696965111738L, xRot: -0.92332244f, yRot: 35.055172f } - "ulh3": { dim: "wc:westeros", x: -6073, y: 42, z: 21714, time: 1696965111738L, xRot: 20.85f, yRot: -180.86981f } - "mosshamlet7": { dim: "wc:westeros", x: 3138, y: 44, z: -3915, time: 1696965111738L, xRot: 5.1051326f, yRot: 313.73282f } - "stormsend": { dim: "wc:westeros", x: 7050, y: 89, z: 17034, time: 1696965111739L, xRot: -35.09999f, yRot: -1.246082f } - "gallowsgreyh1": { dim: "wc:westeros", x: 2629, y: 135, z: 19229, time: 1696965111739L, xRot: 18.749977f, yRot: 128.2232f } - "mudgrave": { dim: "wc:westeros", x: -1300, y: 52, z: 6880, time: 1696965111739L, xRot: -3.8743296f, yRot: 238.37418f } - "Brokenbranch": { dim: "wc:westeros", x: 5617, y: 59, z: -4226, time: 1696965111739L, xRot: 47.100613f, yRot: -269.6969f } - "dwmhunting4": { dim: "wc:westeros", x: -4940, y: 43, z: -9162, time: 1696965111739L, xRot: 5.8499804f, yRot: -173.84637f } - "regiontest": { dim: "wc:playground", x: -969, y: 20, z: 907, time: 1696965111739L, xRot: 0.30070135f, yRot: 0.49575806f } - "blount": { dim: "wc:westeros", x: 3487, y: 45, z: 9566, time: 1696965111739L, xRot: -4.6864243f, yRot: -32.03125f } - "ywdelta": { dim: "wc:westeros", x: 1134, y: 36, z: 22186, time: 1696965111740L, xRot: 8.249563f, yRot: -19.527163f } - "Sheepsglade": { dim: "wc:westeros", x: 5058, y: 46, z: -3429, time: 1696965111740L, xRot: 3.150002f, yRot: 103.354195f } - "mostyninn": { dim: "wc:westeros", x: -5983, y: 43, z: -1052, time: 1696965111740L, xRot: -12.771147f, yRot: -185.314f } - "gulltown": { dim: "wc:westeros", x: 8770, y: 68, z: 5708, time: 1696965111740L, xRot: -3.1890821f, yRot: 354.13477f } - "cerwyn": { dim: "wc:westeros", x: -1095, y: 35, z: -7619, time: 1696965111751L, xRot: 3.000091f, yRot: 191.54681f } - "peasedale": { dim: "wc:westeros", x: -538, y: 52, z: 11881, time: 1696965111751L, xRot: 1.949905f, yRot: -175.95868f } - "bmv1": { dim: "wc:westeros", x: -3378, y: 59, z: 22638, time: 1696965111751L, xRot: 33.599995f, yRot: -112.75613f } - "hornhillv2": { dim: "wc:westeros", x: -4333, y: 89, z: 20006, time: 1696965111752L, xRot: 18.449993f, yRot: 201.99954f } - "sgbeacon1": { dim: "wc:westeros", x: -2180, y: 37, z: 4602, time: 1696965111752L, xRot: 0.749906f, yRot: -268.05038f } - "kingsgate": { dim: "wc:westeros", x: 2334, y: 41, z: 13344, time: 1696965111752L, xRot: -12.449967f, yRot: -134.19348f } - "manningfh": { dim: "wc:westeros", x: 5282, y: 57, z: 13523, time: 1696965111752L, xRot: 33.90002f, yRot: -182.90799f } - "driftmark": { dim: "wc:westeros", x: 7005, y: 70, z: 10789, time: 1696965111752L, xRot: 29.699955f, yRot: 287.73276f } - "cnhf1": { dim: "wc:westeros", x: 5987, y: 100, z: 18339, time: 1696965111752L, xRot: 14.399938f, yRot: 23.822815f } - "VyprenHamlet4": { dim: "wc:westeros", x: 100, y: 47, z: 5998, time: 1696965111752L, xRot: 7.3542075f, yRot: -87.22876f } - "newkeepfarming": { dim: "wc:westeros", x: 1838, y: 57, z: 1764, time: 1696965111752L, xRot: -3.30024f, yRot: 129.75394f } - "heskey": { dim: "wc:westeros", x: -6402, y: 37, z: -1689, time: 1696965111753L, xRot: 5.111299f, yRot: -191.65265f } - "holdfasts": { dim: "wc:playground", x: -964, y: 21, z: 924, time: 1696965111753L, xRot: 1.3499966f, yRot: -44.204224f } - "woodridge": { dim: "wc:westeros", x: -3072, y: 92, z: 14189, time: 1696965111753L, xRot: -21.15004f, yRot: -14.047363f } - "ramsgate": { dim: "wc:westeros", x: 5416, y: 47, z: -3949, time: 1696965111753L, xRot: 8.250003f, yRot: -272.9959f } - "ashfordmanse1": { dim: "wc:westeros", x: -499, y: 53, z: 18035, time: 1696965111753L, xRot: -18.450058f, yRot: 119.907104f } - "greenhill": { dim: "wc:westeros", x: -192, y: 45, z: 6624, time: 1696965111753L, xRot: -18.823181f, yRot: 94.03256f } - "lblc1": { dim: "wc:westeros", x: 8288, y: 57, z: 3535, time: 1696965111754L, xRot: 9.749986f, yRot: -31.951572f } - "hammerhorn": { dim: "wc:westeros", x: -8991, y: 77, z: 5909, time: 1696965111754L, xRot: 8.850011f, yRot: -130.15768f } - "fotheringhay": { dim: "wc:westeros", x: 7427, y: 247, z: 6410, time: 1696965111754L, xRot: 90f, yRot: -357.15606689453125f } - "klhamlet1": { dim: "wc:westeros", x: 2633, y: 51, z: 12229, time: 1696965111754L, xRot: 11.100006f, yRot: -274.5315f } - "winchdown": { dim: "wc:westeros", x: 3187, y: 53, z: -16132, time: 1696965111754L, xRot: 2.1016982f, yRot: 1.5724988f } - "stonehouse": { dim: "wc:westeros", x: -8215, y: 53, z: 5308, time: 1696965111754L, xRot: 3.749708f, yRot: -98.99545f } - "vyprenlumbercamp": { dim: "wc:westeros", x: -377, y: 44, z: 5687, time: 1696965111755L, xRot: 7.200033f, yRot: -343.57874f } - "northshore": { dim: "wc:westeros", x: 5915, y: 35, z: -14, time: 1696965111755L, xRot: -4.3499923f, yRot: -119.242004f } - "fmhf3": { dim: "wc:westeros", x: -1531, y: 69, z: 5938, time: 1696965111755L, xRot: 9.749789f, yRot: 247.1211f } - "moorehamlet2": { dim: "wc:westeros", x: 9530, y: 37, z: 3268, time: 1696965111755L, xRot: 33.300133f, yRot: -178.60658f } - "myhouse": { dim: "wc:playground", x: -1259, y: 48, z: 576, time: 1696965111755L, xRot: 39.068577f, yRot: -24.30954f } - "wwhf3": { dim: "wc:westeros", x: 631, y: 64, z: 9871, time: 1696965111755L, xRot: 21.184982f, yRot: -4.9559216f } - "3dmap_update": { dim: "wc:playground", x: 91, y: 72, z: -718, time: 1696965111755L, xRot: -6.150048f, yRot: -179.03369f } - "dykes": { dim: "wc:playground", x: -1785, y: 43, z: 1450, time: 1696965111756L, xRot: 20.85071f, yRot: 89.29578f } - "blountmanor": { dim: "wc:westeros", x: 3794, y: 44, z: 9294, time: 1696965111756L, xRot: 5.4361644f, yRot: 155.52705f } - "ladyoftheleaves": { dim: "wc:westeros", x: -1537, y: 46, z: 8487, time: 1696965111756L, xRot: -15.449976f, yRot: 21.452757f } - "gloomdale": { dim: "wc:westeros", x: 4312, y: 68, z: -9603, time: 1696965111756L, xRot: -29.999989f, yRot: 113.39878f } - "erty": { dim: "wc:playground", x: -5, y: 21, z: 253, time: 1696965111756L, xRot: -3.9000056f, yRot: 84.28979f } - "wwseptry": { dim: "wc:westeros", x: 539, y: 47, z: 9599, time: 1696965111756L, xRot: -8.699995f, yRot: -269.95975f } - "watslake": { dim: "wc:westeros", x: -6611, y: 52, z: 16070, time: 1696965111756L, xRot: 56.099987f, yRot: 272.32623f } - "dgsheepfarm2": { dim: "wc:westeros", x: 7518, y: 69, z: -49, time: 1696965111757L, xRot: 9.479212f, yRot: 358.14005f } - "klstrangersept": { dim: "wc:westeros", x: 3078, y: 51, z: 12908, time: 1696965111757L, xRot: -14.249966f, yRot: 177.0583f } - "sloaneseptry": { dim: "wc:westeros", x: 2300, y: 61, z: 16952, time: 1696965111767L, xRot: 13.897068f, yRot: 92.30704f } - "sftower2": { dim: "wc:westeros", x: -4929, y: 41, z: 25997, time: 1696965111768L, xRot: -32.400024f, yRot: 40.019684f } - "ashgrave": { dim: "wc:westeros", x: -7822, y: 52, z: 20242, time: 1696965111768L, xRot: 12.599987f, yRot: -64.630806f } - "sthvillage": { dim: "wc:westeros", x: -6578, y: 89, z: 16793, time: 1696965111768L, xRot: 13.5144415f, yRot: 77.04974f } - "mousedownmill": { dim: "wc:westeros", x: 2514, y: 35, z: 7941, time: 1696965111768L, xRot: -10.555427f, yRot: 23.543484f } - "lonelylight": { dim: "wc:westeros", x: -8693, y: 34, z: 3169, time: 1696965111768L, xRot: -12.150059f, yRot: -141.99536f } - "hardy": { dim: "wc:westeros", x: 8977, y: 81, z: 7712, time: 1696965111768L, xRot: -3.1499667f, yRot: -14.249939f } - "dwmlogging2": { dim: "wc:westeros", x: -3090, y: 48, z: -7926, time: 1696965111768L, xRot: -2.7000086f, yRot: -0.45564228f } - "foddle": { dim: "wc:westeros", x: -8659, y: 42, z: 16074, time: 1696965111769L, xRot: -1.8000914f, yRot: -229.75891f } - "greyguard": { dim: "wc:westeros", x: 1166, y: 69, z: -16143, time: 1696965111769L, xRot: 24.75f, yRot: 4.767419f } - "kltanner": { dim: "wc:westeros", x: 2021, y: 35, z: 13065, time: 1696965111769L, xRot: -3.4499712f, yRot: 91.353485f } - "blacktyde": { dim: "wc:westeros", x: -7073, y: 35, z: 4323, time: 1696965111769L, xRot: -17.555922f, yRot: 264.70712f } - "wh3": { dim: "wc:westeros", x: 2237, y: 56, z: -3307, time: 1696965111769L, xRot: 6.00009f, yRot: 40.33894f } - "dwmroad2": { dim: "wc:westeros", x: -3892, y: 49, z: -9255, time: 1696965111769L, xRot: 64.799995f, yRot: 142.3388f } - "kenning": { dim: "wc:westeros", x: -6060, y: 68, z: 4943, time: 1696965111769L, xRot: -11.249999f, yRot: -24.709862f } - "follard": { dim: "wc:westeros", x: 8043, y: 86, z: 13024, time: 1696965111769L, xRot: 23.84999f, yRot: 324.74475f } - "scripttest": { dim: "wc:playground", x: -584, y: 21, z: 1083, time: 1696965111770L, xRot: 6.1499887f, yRot: -1.604132f } - "highhermh2": { dim: "wc:westeros", x: -4375, y: 45, z: 23582, time: 1696965111770L, xRot: 20.422792f, yRot: 122.45912f } - "ssfisherh4": { dim: "wc:westeros", x: -8026, y: 35, z: -5679, time: 1696965111770L, xRot: 7.2000394f, yRot: -100.048f } - "cmham1": { dim: "wc:westeros", x: -7312, y: 43, z: 16106, time: 1696965111770L, xRot: 24.299995f, yRot: -348.70532f } - "pigrunalley": { dim: "wc:westeros", x: 3226, y: 51, z: 13074, time: 1696965111770L, xRot: -0.44999722f, yRot: 91.10843f } - "klfathersept": { dim: "wc:westeros", x: 2360, y: 43, z: 13153, time: 1696965111770L, xRot: -5.849991f, yRot: 81.50668f } - "headhall": { dim: "wc:playground", x: -663, y: 21, z: -1403, time: 1696965111770L, xRot: 10.281279f, yRot: 2.0917573f } - "sallydance": { dim: "wc:westeros", x: -1361, y: 46, z: 8655, time: 1696965111770L, xRot: 27.149885f, yRot: -49.602455f } - "sanguinegrove": { dim: "wc:westeros", x: -4544, y: 72, z: -7997, time: 1696965111771L, xRot: 1.1999949f, yRot: 3.7461662f } - "mpwetlands": { dim: "wc:westeros", x: 4339, y: 37, z: 9007, time: 1696965111771L, xRot: 2.5499797f, yRot: -213.92151f } - "blackmont": { dim: "wc:westeros", x: -3558, y: 106, z: 22144, time: 1696965111771L, xRot: -11.850021f, yRot: -89.84766f } - "tarrenrun": { dim: "wc:westeros", x: 6551, y: 38, z: -7314, time: 1696965111771L, xRot: 5.849986f, yRot: 262.65622f } - "poddingfield": { dim: "wc:westeros", x: 1801, y: 81, z: 18108, time: 1696965111771L, xRot: -17.700068f, yRot: -272.95f } - "pebbleton": { dim: "wc:westeros", x: -7964, y: 36, z: 5859, time: 1696965111771L, xRot: -22.500074f, yRot: -295.24274f } - "ywh1": { dim: "wc:westeros", x: 890, y: 42, z: 22348, time: 1696965111771L, xRot: -16.80043f, yRot: -187.97707f } - "towerofjoy": { dim: "wc:westeros", x: -1486, y: 167, z: 21178, time: 1696965111771L, xRot: -0.9109614f, yRot: -228.20535f } - "lichyard": { dim: "wc:westeros", x: 5402, y: 76, z: 5548, time: 1696965111772L, xRot: -6.895039f, yRot: 20.83667f } - "terrickh2": { dim: "wc:westeros", x: 391, y: 44, z: 6431, time: 1696965111772L, xRot: -26.54977f, yRot: 91.728516f } - "rooksrest": { dim: "wc:westeros", x: 5962, y: 35, z: 10381, time: 1696965111772L, xRot: -9.671369f, yRot: -2.3043876f } - "seadragon2": { dim: "wc:westeros", x: -6984, y: 44, z: -11047, time: 1696965111772L, xRot: 8.24992f, yRot: -272.24893f } - "moorefarm2": { dim: "wc:westeros", x: 8583, y: 43, z: 3761, time: 1696965111772L, xRot: 0.7609457f, yRot: -204.70819f } - "boggs": { dim: "wc:westeros", x: 7174, y: 127, z: 9333, time: 1696965111772L, xRot: -9.149953842163086f, yRot: -281.87786865234375f } - "pfholdfast2": { dim: "wc:westeros", x: 2152, y: 134, z: 18334, time: 1696965111772L, xRot: -20.20012f, yRot: -218.52254f } - "fthamlet2": { dim: "wc:westeros", x: -3856, y: 44, z: 8270, time: 1696965111772L, xRot: 50.1f, yRot: -169.65005f } - "wyltest": { dim: "wc:westeros", x: 2103, y: 88, z: 20610, time: 1696965111773L, xRot: 61.04999f, yRot: -178.52586f } - "wwhf2": { dim: "wc:westeros", x: 447, y: 59, z: 10488, time: 1696965111773L, xRot: 33.42048f, yRot: -178.45938f } - "huntmanor": { dim: "wc:westeros", x: -5808, y: 78, z: 20817, time: 1696965111773L, xRot: 19.702477f, yRot: -86.89427f } - "oldwickenden": { dim: "wc:playground", x: -599, y: 21, z: -593, time: 1696965111773L, xRot: -14.249963f, yRot: -180.44913f } - "ironoakshamlet3": { dim: "wc:westeros", x: 6092, y: 35, z: 4571, time: 1696965111773L, xRot: -2.8498003f, yRot: 197.69434f } - "ikea": { dim: "wc:playground", x: -992, y: 21, z: 1159, time: 1696965111773L, xRot: -5.8500104f, yRot: -270.5547f } - "shoreham": { dim: "wc:westeros", x: 3094, y: 41, z: 904, time: 1696965111773L, xRot: -5.3996887f, yRot: 207.45569f } - "streetofflour": { dim: "wc:westeros", x: 3093, y: 70, z: 12876, time: 1696965111773L, xRot: 10.799933f, yRot: 297.20184f } - "fishermansbasin": { dim: "wc:westeros", x: -3158, y: 36, z: -5727, time: 1696965111784L, xRot: -14.700119f, yRot: -296.26852f } - "fields": { dim: "wc:playground", x: -1122, y: 21, z: 1272, time: 1696965111784L, xRot: -2.6999862f, yRot: -190.45416f } - "lightleaf": { dim: "wc:westeros", x: -7703, y: 38, z: 17022, time: 1696965111784L, xRot: 14.100002f, yRot: -247.32153f } - "TheonsHunt": { dim: "wc:westeros", x: -1473, y: 54, z: -8526, time: 1696965111785L, xRot: -4.650022f, yRot: -230.64636f } - "briarhill": { dim: "wc:westeros", x: -4516, y: 45, z: 16039, time: 1696965111785L, xRot: 12.001015f, yRot: 250.69427f } - "tbhamlet1": { dim: "wc:westeros", x: -5758, y: 53, z: 14543, time: 1696965111785L, xRot: -2.399968f, yRot: 357.17773f } - "greywater": { dim: "wc:westeros", x: -1155, y: 64, z: 58, time: 1696965111785L, xRot: 22.499619f, yRot: 181.35265f } - "cedarpoint": { dim: "wc:westeros", x: 4301, y: 45, z: -13646, time: 1696965111785L, xRot: -33.42935f, yRot: -162.19395f } - "bbapiary": { dim: "wc:westeros", x: -1440, y: 43, z: 15659, time: 1696965111785L, xRot: 12.900001f, yRot: -172.52869f } - "tarthv2": { dim: "wc:westeros", x: 9306, y: 75, z: 15780, time: 1696965111785L, xRot: 31.495686f, yRot: -180.89383f } - "kneelingman": { dim: "wc:westeros", x: -622, y: 37, z: 7157, time: 1696965111785L, xRot: -6.2999167f, yRot: -188.56345f } - "ramsaysplayground": { dim: "wc:playground", x: -940, y: 21, z: 1255, time: 1696965111785L, xRot: 2.8499534f, yRot: -266.05396f } - "ashemark": { dim: "wc:westeros", x: -6064, y: 66, z: 9318, time: 1696965111785L, xRot: -6.1799526f, yRot: 147.5602f } - "longlake": { dim: "wc:westeros", x: 1522, y: 42, z: -10904, time: 1696965111785L, xRot: 12.600021f, yRot: -89.69864f } - "farring": { dim: "wc:westeros", x: 1978, y: 57, z: 14031, time: 1696965111786L, xRot: -9.078472f, yRot: 246.1166f } - "hunt": { dim: "wc:westeros", x: -6028, y: 64, z: 20825, time: 1696965111786L, xRot: -4.107449f, yRot: -31.986307f } - "klbrick4": { dim: "wc:westeros", x: 2295, y: 47, z: 12248, time: 1696965111786L, xRot: -1.1999964f, yRot: -164.19504f } - "breakstone": { dim: "wc:westeros", x: 4857, y: 38, z: 468, time: 1696965111786L, xRot: -11.250008f, yRot: -14.850281f } - "stallionsring": { dim: "wc:westeros", x: -6688, y: 39, z: -5845, time: 1696965111786L, xRot: -34.35002f, yRot: -331.84067f } - "castlestokeworth": { dim: "wc:westeros", x: 4445, y: 44, z: 11697, time: 1696965111786L, xRot: -11.999971f, yRot: -101.727325f } - "beaconhill": { dim: "wc:westeros", x: 5346, y: 89, z: 19238, time: 1696965111786L, xRot: -8.399837f, yRot: -328.34604f } - "lannisport": { dim: "wc:westeros", x: -6907, y: 47, z: 12109, time: 1696965111786L, xRot: -16.800575f, yRot: -270.37494f } - "swygert": { dim: "wc:westeros", x: 7533, y: 40, z: 16362, time: 1696965111786L, xRot: -4.414706f, yRot: 115.70702f } - "grandisonmine": { dim: "wc:westeros", x: 4236, y: 77, z: 18064, time: 1696965111786L, xRot: 14.100926f, yRot: -242.05603f } - "hornhillhf2": { dim: "wc:westeros", x: -4474, y: 106, z: 19362, time: 1696965111786L, xRot: 15.150028f, yRot: 141.30638f } - "sfmine1": { dim: "wc:westeros", x: -3656, y: 75, z: 23645, time: 1696965111787L, xRot: 15.450016f, yRot: 313.77176f } - "anEscapedDuck": { dim: "wc:playground", x: 466, y: 21, z: 951, time: 1696965111787L, xRot: 1.5667108297348022f, yRot: 182.27154541015625f } - "duck": { dim: "wc:playground", x: 466, y: 21, z: 951, time: 1696965111787L, xRot: 1.5667108297348022f, yRot: 182.27154541015625f } - "cs": { dim: "wc:playground", x: -1794, y: 71, z: -1203, time: 1696965111787L, xRot: 34.94997024536133f, yRot: -265.20721435546875f } - "highgardentest": { dim: "wc:playground", x: 951, y: 20, z: -470, time: 1696965111787L, xRot: 11.099968910217285f, yRot: 312.651611328125f } - "bridgeofskulls": { dim: "wc:westeros", x: 536, y: 60, z: -15932, time: 1696965111787L, xRot: -4.499966621398926f, yRot: -26.541412353515625f } - "stackhouse": { dim: "wc:westeros", x: -6742, y: 96, z: 16554, time: 1696965111787L, xRot: 8.250102043151855f, yRot: 91.7007064819336f } - "sthkeep": { dim: "wc:westeros", x: -6693, y: 57, z: 16514, time: 1696965111788L, xRot: -19.95000457763672f, yRot: -206.049072265625f } - "nivellen": { dim: "wc:westeros", x: 5765, y: 62, z: 6587, time: 1696965111788L, xRot: -4.799971103668213f, yRot: -357.93695068359375f } - "shieldstest": { dim: "wc:playground", x: 1405, y: 21, z: -24, time: 1696965111788L, xRot: -0.15004020929336548f, yRot: -182.7860870361328f } - "bbcastle": { dim: "wc:westeros", x: -791, y: 48, z: 15388, time: 1696965111788L, xRot: 1.5000427961349487f, yRot: -180.92056274414062f } - "bbtown": { dim: "wc:westeros", x: -1072, y: 36, z: 15648, time: 1696965111788L, xRot: -9.749987602233887f, yRot: -332.89111328125f } - "fieldoffire": { dim: "wc:westeros", x: -85, y: 52, z: 12651, time: 1696965111788L, xRot: 60.300018310546875f, yRot: -10.840484619140625f } - "conklyn": { dim: "wc:westeros", x: -6956, y: 67, z: 15123, time: 1696965111788L, xRot: 65.85002136230469f, yRot: -349.617431640625f } - "peckledon": { dim: "wc:westeros", x: -2864, y: 77, z: 13963, time: 1696965111788L, xRot: -5.099985122680664f, yRot: -109.5943374633789f } - "terrick": { dim: "wc:westeros", x: 808, y: 42, z: 6693, time: 1696965111788L, xRot: -5.250097751617432f, yRot: 303.2149658203125f } - "wbhold1": { dim: "wc:westeros", x: -6037, y: 67, z: 17197, time: 1696965111788L, xRot: 5.249994277954102f, yRot: 89.74977111816406f } - "rooms": { dim: "wc:playground", x: -1075, y: 21, z: 1353, time: 1696965111789L, xRot: -27.750022888183594f, yRot: -358.9048767089844f } - "hgmodel": { dim: "wc:westeros", x: -4504, y: 105, z: 18600, time: 1696965111789L, xRot: 77.55000305175781f, yRot: -55.449615478515625f } - "southshield": { dim: "wc:westeros", x: -9239, y: 43, z: 18167, time: 1696965111789L, xRot: 20.858272552490234f, yRot: -90.02899169921875f } - "greenshield": { dim: "wc:westeros", x: -9174, y: 79, z: 17269, time: 1696965111789L, xRot: 22.64999771118164f, yRot: 137.21182250976562f } - "csdferry": { dim: "wc:westeros", x: 1903, y: 35, z: 13140, time: 1696965111789L, xRot: 14.849879264831543f, yRot: -268.8708190917969f } - "klsprawl": { dim: "wc:westeros", x: 3502, y: 47, z: 12613, time: 1696965111789L, xRot: -5.249991416931152f, yRot: -288.5443115234375f } - "spawnupdate": { dim: "wc:playground", x: -197, y: 96, z: -1127, time: 1696965111789L, xRot: 0.2999896705150604f, yRot: -269.25244140625f } - "durwelltown": { dim: "wc:westeros", x: -8380, y: 110, z: 15441, time: 1696965111789L, xRot: 9.750003814697266f, yRot: -90.30500793457031f } - "hellgatehall": { dim: "wc:westeros", x: -236, y: 42, z: 23803, time: 1696965111789L, xRot: 2.635786533355713f, yRot: 199.80108642578125f } - "durwellham2": { dim: "wc:westeros", x: -7853, y: 55, z: 14912, time: 1696965111790L, xRot: 29.299102783203125f, yRot: -2.3121542930603027f } - "cresseyhamlet": { dim: "wc:westeros", x: 3617, y: 44, z: 10897, time: 1696965111790L, xRot: 5.411309242248535f, yRot: -20.63542938232422f } - "SowsHorn": { dim: "wc:westeros", x: 2948, y: 41, z: 10928, time: 1696965111790L, xRot: -15.750004768371582f, yRot: -37.03300094604492f } - "hawthornehamlet3": { dim: "wc:westeros", x: -1881, y: 45, z: 13415, time: 1696965111790L, xRot: 0.749995768070221f, yRot: -17.249109268188477f } - "loetschental": { dim: "wc:westeros", x: 5484, y: 131, z: 6860, time: 1696965111790L, xRot: 7.200032711029053f, yRot: -305.286865234375f } - "teufelsbruecke": { dim: "wc:westeros", x: 5249, y: 171, z: 6945, time: 1696965111801L, xRot: 58.79999923706055f, yRot: -94.23685455322266f } - "durwellvassal1": { dim: "wc:westeros", x: -8001, y: 51, z: 15432, time: 1696965111801L, xRot: 7.750264644622803f, yRot: 138.71575927734375f } - "blackcells": { dim: "wc:westeros", x: 3388, y: 97, z: 13462, time: 1696965111802L, xRot: 22.950029373168945f, yRot: -92.492431640625f } - "Falwell": { dim: "wc:westeros", x: -4725, y: 40, z: 14411, time: 1696965111802L, xRot: 0.3000062108039856f, yRot: -267.16461181640625f } - "Blackwell": { dim: "wc:westeros", x: -8977, y: 47, z: 20248, time: 1696965111802L, xRot: -11.700033187866211f, yRot: 176.02218627929688f } - "laynaalehouse": { dim: "wc:westeros", x: -4831, y: 38, z: 14517, time: 1696965111802L, xRot: -28.050012588500977f, yRot: -337.81451416015625f } - "erenfordcastle": { dim: "wc:westeros", x: -526, y: 52, z: 3959, time: 1696965111802L, xRot: 10.950029373168945f, yRot: 242.61297607421875f } - "sixdoorroom": { dim: "wc:westeros", x: 3307, y: 99, z: 13400, time: 1696965111802L, xRot: 8.100101470947266f, yRot: 272.1814270019531f } - "dragoncellar": { dim: "wc:westeros", x: 3397, y: 117, z: 13327, time: 1696965111803L, xRot: 5.10014009475708f, yRot: 96.5303955078125f } - "durwellhunt": { dim: "wc:westeros", x: -8194, y: 61, z: 15022, time: 1696965111803L, xRot: 1.649985909461975f, yRot: -83.3831787109375f } - "durwell": { dim: "wc:westeros", x: -7613, y: 59, z: 15236, time: 1696965111803L, xRot: 12.009051322937012f, yRot: 178.64093017578125f } - "hardyng": { dim: "wc:westeros", x: 5623, y: 118, z: 5934, time: 1696965111803L, xRot: 10.649956703186035f, yRot: 115.79173278808594f } - "durwellvassal2": { dim: "wc:westeros", x: -7715, y: 48, z: 14871, time: 1696965111803L, xRot: -2.553783655166626f, yRot: -88.82080841064453f } - "durwellham1": { dim: "wc:westeros", x: -7802, y: 49, z: 15703, time: 1696965111803L, xRot: -16.199996948242188f, yRot: -218.36968994140625f } - "oldfbtunnelshomage": { dim: "wc:westeros", x: 3121, y: 34, z: 13162, time: 1696965111803L, xRot: 7.949910640716553f, yRot: -1.7906808853149414f } - "otdefense": { dim: "wc:playground", x: 1066, y: 21, z: 743, time: 1696965111803L, xRot: 1.5000011920928955f, yRot: 181.70068359375f } - "otBI": { dim: "wc:playground", x: 1070, y: 21, z: 743, time: 1696965111804L, xRot: 1.5000011920928955f, yRot: 181.70068359375f } - "otfree": { dim: "wc:playground", x: 850, y: 21, z: 543, time: 1696965111804L, xRot: 4.80003023147583f, yRot: 180.3525390625f } - "otdeco": { dim: "wc:playground", x: 1070, y: 21, z: 543, time: 1696965111804L, xRot: 3.4500060081481934f, yRot: 181.5556640625f } - "otcit": { dim: "wc:playground", x: 1290, y: 21, z: 543, time: 1696965111804L, xRot: 2.4000236988067627f, yRot: 181.553466796875f } - "otstyleI": { dim: "wc:playground", x: 850, y: 21, z: 343, time: 1696965111804L, xRot: -0.9000021815299988f, yRot: 179.3046875f } - "otstyleII": { dim: "wc:playground", x: 960, y: 21, z: 343, time: 1696965111804L, xRot: 1.5000007152557373f, yRot: 179.005615234375f } - "otstyleIII": { dim: "wc:playground", x: 1071, y: 21, z: 343, time: 1696965111804L, xRot: 1.8000335693359375f, yRot: 179.606689453125f } - "otsi": { dim: "wc:playground", x: 1181, y: 21, z: 343, time: 1696965111804L, xRot: 1.9500045776367188f, yRot: 179.00830078125f } - "otli": { dim: "wc:playground", x: 1291, y: 21, z: 344, time: 1696965111804L, xRot: 2.2500197887420654f, yRot: 179.006591796875f } - "otharbour": { dim: "wc:playground", x: 1401, y: 21, z: 343, time: 1696965111805L, xRot: 1.9500093460083008f, yRot: 178.856689453125f } - "otfaith": { dim: "wc:playground", x: 1181, y: 21, z: 543, time: 1696965111805L, xRot: 2.6999881267547607f, yRot: 179.753662109375f } - "ot1": { dim: "wc:playground", x: 850, y: 21, z: 343, time: 1696965111805L, xRot: -0.9000021815299988f, yRot: 179.3046875f } - "ot2": { dim: "wc:playground", x: 960, y: 21, z: 343, time: 1696965111805L, xRot: 1.5000007152557373f, yRot: 179.005615234375f } - "ot3": { dim: "wc:playground", x: 1071, y: 21, z: 343, time: 1696965111805L, xRot: 1.8000335693359375f, yRot: 179.606689453125f } - "otarchive": { dim: "wc:playground", x: 1509, y: 62, z: 569, time: 1696965111805L, xRot: 0.3000086843967438f, yRot: 270.0566711425781f } - "Oldtowntest": { dim: "wc:playground", x: 850, y: 21, z: 543, time: 1696965111806L, xRot: 4.80003023147583f, yRot: 180.3525390625f } - "kltg": { dim: "wc:westeros", x: 2098, y: 41, z: 13316, time: 1696965111806L, xRot: 13.95003604888916f, yRot: -224.34352111816406f } - "durwellbrewery": { dim: "wc:westeros", x: -7585, y: 45, z: 15474, time: 1696965111806L, xRot: 5.3625054359436035f, yRot: 251.51145935058594f } - "durwellfarmstead1": { dim: "wc:westeros", x: -8010, y: 51, z: 15814, time: 1696965111806L, xRot: 8.022421836853027f, yRot: 203.34921264648438f } - "otblocktest": { dim: "wc:playground", x: 1573, y: 27, z: 717, time: 1696965111806L, xRot: -6.300036430358887f, yRot: 0.80072021484375f } - "westminster": { dim: "wc:playground", x: -1271, y: 20, z: -1248, time: 1696965111806L, xRot: 1.7996728420257568f, yRot: 36.203521728515625f } - "Seagull": { dim: "wc:westeros", x: -9352, y: 36, z: 20226, time: 1696965111806L, xRot: -6.599973201751709f, yRot: 329.8007507324219f } - "newkeep": { dim: "wc:westeros", x: 2962, y: 46, z: 1197, time: 1696965111807L, xRot: 25.803857803344727f, yRot: 141.79367065429688f } - "mltest": { dim: "wc:playground", x: -324, y: 29, z: -874, time: 1696965111807L, xRot: -4.350013732910156f, yRot: -180.15884399414062f } - "KLDockPlatform": { dim: "wc:playground", x: -376, y: 45, z: -1199, time: 1696965111807L, xRot: 1.3499960899353027f, yRot: -181.35693359375f } - "oldhutcheson": { dim: "wc:playground", x: -900, y: 22, z: -814, time: 1696965111817L, xRot: -4.649972438812256f, yRot: -0.7491758465766907f } - "SweetWillow": { dim: "wc:westeros", x: 1326, y: 42, z: 6823, time: 1696965111817L, xRot: -1.0036507844924927f, yRot: -237.72666931152344f } - "SweetWillowSeptry": { dim: "wc:westeros", x: 1308, y: 40, z: 6742, time: 1696965111818L, xRot: -5.700043201446533f, yRot: -108.57626342773438f } - "hawthornewindmill": { dim: "wc:westeros", x: -1775, y: 67, z: 12854, time: 1696965111818L, xRot: -0.9000604152679443f, yRot: 92.09988403320312f } - "holyhalltownold": { dim: "wc:playground", x: -1186, y: 31, z: -538, time: 1696965111818L, xRot: 2.099975824356079f, yRot: -269.6986083984375f } - "holyhallwineryold": { dim: "wc:playground", x: -1190, y: 20, z: -369, time: 1696965111818L, xRot: 11.69991683959961f, yRot: -181.80355834960938f } - "hawthornehamlet1": { dim: "wc:westeros", x: -2385, y: 57, z: 12980, time: 1696965111818L, xRot: 7.558291435241699f, yRot: -333.1706237792969f } - "norcross": { dim: "wc:westeros", x: 508, y: 43, z: 12859, time: 1696965111818L, xRot: -12.759737968444824f, yRot: 317.6444091796875f } - "harvesthhm2": { dim: "wc:westeros", x: 1336, y: 92, z: 19680, time: 1696965111819L, xRot: -5.511326313018799f, yRot: -131.52651977539062f } - "xmas2017": { dim: "wc:playground", x: -1610, y: 28, z: -824, time: 1696965111819L, xRot: -2.6300153732299805f, yRot: 359.0818786621094f } - "homelesstreesettlement": { dim: "wc:westeros", x: 1636, y: 46, z: 6670, time: 1696965111819L, xRot: 9.600069999694824f, yRot: -68.3515625f } - "lollistonhamlet2": { dim: "wc:westeros", x: 1031, y: 38, z: 6601, time: 1696965111819L, xRot: 3.749990701675415f, yRot: -264.728515625f } - "olduff": { dim: "wc:playground", x: -1177, y: 24, z: -208, time: 1696965111819L, xRot: 15.750151634216309f, yRot: -226.03880310058594f } - "klmanse5": { dim: "wc:westeros", x: 3726, y: 41, z: 13003, time: 1696965111819L, xRot: -1.0500167608261108f, yRot: -89.28219604492188f } - "LollistonHamlet1": { dim: "wc:westeros", x: 1562, y: 46, z: 7084, time: 1696965111820L, xRot: -1.303625226020813f, yRot: 68.5731430053711f } - "fairmarket": { dim: "wc:westeros", x: -777, y: 39, z: 6195, time: 1696965111820L, xRot: -4.049998760223389f, yRot: 179.9744873046875f } - "otdefence": { dim: "wc:playground", x: 1066, y: 21, z: 743, time: 1696965111820L, xRot: 1.5000011920928955f, yRot: 181.70068359375f } - "dragonstatues": { dim: "wc:playground", x: -496, y: 79, z: -1256, time: 1696965111820L, xRot: 5.7000226974487305f, yRot: -84.0082778930664f } - "conkhf1": { dim: "wc:westeros", x: -6516, y: 71, z: 15070, time: 1696965111820L, xRot: 4.049999237060547f, yRot: 0.5750795602798462f } - "erenford": { dim: "wc:westeros", x: -401, y: 41, z: 3764, time: 1696965111820L, xRot: -5.999983787536621f, yRot: -13.546847343444824f } - "erenfordHam2": { dim: "wc:westeros", x: -190, y: 47, z: 4149, time: 1696965111821L, xRot: 1.5000483989715576f, yRot: -140.44686889648438f } - "ErenfordMine": { dim: "wc:westeros", x: 51, y: 88, z: 4308, time: 1696965111821L, xRot: -9.749964714050293f, yRot: -80.44673919677734f } - "csdhamlet3": { dim: "wc:westeros", x: 1425, y: 58, z: 13643, time: 1696965111821L, xRot: 16.6893367767334f, yRot: 152.7454833984375f } - "csdhamlet2": { dim: "wc:westeros", x: 997, y: 46, z: 13105, time: 1696965111821L, xRot: 8.378979682922363f, yRot: 41.5950927734375f } - "csdinn": { dim: "wc:westeros", x: 850, y: 45, z: 13109, time: 1696965111821L, xRot: 3.6001899242401123f, yRot: -182.0183563232422f } - "chelsted": { dim: "wc:westeros", x: 1671, y: 37, z: 13238, time: 1696965111822L, xRot: -3.4499876499176025f, yRot: 177.98069763183594f } - "csdhamlet1": { dim: "wc:westeros", x: 1734, y: 37, z: 13486, time: 1696965111822L, xRot: 4.650002956390381f, yRot: -14.019316673278809f } - "csdhf1": { dim: "wc:westeros", x: 1623, y: 53, z: 13671, time: 1696965111822L, xRot: 5.25000524520874f, yRot: 353.7806701660156f } - "csdseptry": { dim: "wc:westeros", x: 1250, y: 56, z: 13390, time: 1696965111822L, xRot: 2.9999806880950928f, yRot: -2.169187068939209f } - "csdmanor": { dim: "wc:westeros", x: 1044, y: 45, z: 13033, time: 1696965111822L, xRot: 4.349991798400879f, yRot: 243.68045043945312f } - "misttown": { dim: "wc:westeros", x: 7114, y: 66, z: 19563, time: 1696965111822L, xRot: -12.75001049041748f, yRot: -151.2735595703125f } - "christmas": { dim: "wc:playground", x: -1836, y: 20, z: -712, time: 1696965111822L, xRot: -0.06696954369544983f, yRot: 178.7001953125f } - "csdlumberjack": { dim: "wc:westeros", x: 1274, y: 41, z: 13059, time: 1696965111822L, xRot: 13.500024795532227f, yRot: -181.86935424804688f } - "sserious": { dim: "wc:playground", x: 421, y: 160, z: 1057, time: 1696965111822L, xRot: -18.59995460510254f, yRot: -227.7460479736328f } - "erenfordham1": { dim: "wc:westeros", x: -689, y: 52, z: 4412, time: 1696965111822L, xRot: 23.100053787231445f, yRot: -81.94673156738281f } - "mistham2": { dim: "wc:westeros", x: 6761, y: 53, z: 20057, time: 1696965111823L, xRot: 1.5000137090682983f, yRot: -269.17462158203125f } - "Edgerton": { dim: "wc:westeros", x: 4019, y: 46, z: 12145, time: 1696965111823L, xRot: 16.998945236206055f, yRot: -282.59136962890625f } - "EdgertonMill": { dim: "wc:westeros", x: 4239, y: 44, z: 12111, time: 1696965111823L, xRot: -8.95101261138916f, yRot: 182.1090545654297f } - "EdgertonHoldfast": { dim: "wc:westeros", x: 4430, y: 44, z: 12101, time: 1696965111823L, xRot: -19.1510066986084f, yRot: 294.6092834472656f } - "conkvillage": { dim: "wc:westeros", x: -6696, y: 91, z: 15153, time: 1696965111823L, xRot: -39.89997482299805f, yRot: 0.367034912109375f } - "conkham1": { dim: "wc:westeros", x: -7265, y: 55, z: 14873, time: 1696965111823L, xRot: 4.200034141540527f, yRot: -257.7984313964844f } - "duskendalemini": { dim: "wc:playground", x: 52, y: 202, z: 325, time: 1696965111823L, xRot: 9.925612449645996f, yRot: 189.36697387695312f } - "oldforgehf": { dim: "wc:westeros", x: -796, y: 57, z: 6411, time: 1696965111823L, xRot: 1.1304969787597656f, yRot: -30.492944717407227f } - "conkham2": { dim: "wc:westeros", x: -7014, y: 41, z: 15519, time: 1696965111823L, xRot: 2.399979829788208f, yRot: -184.7306365966797f } - "mistvassal": { dim: "wc:westeros", x: 6823, y: 54, z: 19974, time: 1696965111823L, xRot: 0.6000081300735474f, yRot: 258.97662353515625f } - "highgarden": { dim: "wc:westeros", x: -4410, y: 46, z: 18551, time: 1696965111823L, xRot: 2.8499343395233154f, yRot: 92.26212310791016f } - "Broom": { dim: "wc:westeros", x: -5223, y: 66, z: 14682, time: 1696965111823L, xRot: -7.950037479400635f, yRot: 230.54989624023438f } - "BroomHF1": { dim: "wc:westeros", x: -5276, y: 58, z: 15004, time: 1696965111834L, xRot: 12.30001449584961f, yRot: 147.00003051757812f } - "wullhamlet4": { dim: "wc:westeros", x: -1877, y: 36, z: -13119, time: 1696965111834L, xRot: 8.699995040893555f, yRot: 324.1927490234375f } - "brandybottom": { dim: "wc:westeros", x: -7229, y: 83, z: 15298, time: 1696965111835L, xRot: -33.44999694824219f, yRot: -91.79544067382812f } - "whiteharbor": { dim: "wc:westeros", x: 2044, y: 39, z: -2388, time: 1696965111835L, xRot: -4.649995803833008f, yRot: -89.8577880859375f } - "whiteharbour": { dim: "wc:westeros", x: 2044, y: 39, z: -2388, time: 1696965111835L, xRot: -4.649995803833008f, yRot: -89.8577880859375f } - "wh": { dim: "wc:westeros", x: 2044, y: 39, z: -2388, time: 1696965111835L, xRot: -4.649995803833008f, yRot: -89.8577880859375f } - "gullsgate": { dim: "wc:westeros", x: 2191, y: 41, z: -2149, time: 1696965111835L, xRot: -4.949969291687012f, yRot: -181.5108642578125f } - "sheepgate": { dim: "wc:westeros", x: 2483, y: 46, z: -2616, time: 1696965111835L, xRot: -8.099987983703613f, yRot: -270.3110046386719f } - "Manderside": { dim: "wc:westeros", x: -5272, y: 37, z: 18860, time: 1696965111835L, xRot: 2.5499565601348877f, yRot: 271.5121765136719f } - "lollistonhamlet3": { dim: "wc:westeros", x: 1048, y: 48, z: 6381, time: 1696965111836L, xRot: 42.04637145996094f, yRot: 144.17320251464844f } - "deddings": { dim: "wc:westeros", x: -3005, y: 70, z: 8703, time: 1696965111836L, xRot: -9.797918319702148f, yRot: -133.41302490234375f } - "hgdocks": { dim: "wc:westeros", x: -4842, y: 41, z: 18332, time: 1696965111836L, xRot: 3.4499733448028564f, yRot: -56.68778610229492f } - "hightower": { dim: "wc:westeros", x: -8499, y: 48, z: 22557, time: 1696965111836L, xRot: -0.9575626254081726f, yRot: -0.27410224080085754f } - "httop": { dim: "wc:westeros", x: -8498, y: 234, z: 22621, time: 1696965111836L, xRot: -1.5004719495773315f, yRot: -359.1750793457031f } - "hgdocktown": { dim: "wc:westeros", x: -4830, y: 40, z: 18339, time: 1696965111836L, xRot: -6.15004301071167f, yRot: 326.56219482421875f } - "oldss": { dim: "wc:playground", x: -1877, y: 28, z: -435, time: 1696965111836L, xRot: -5.3119916915893555f, yRot: -126.61041259765625f } - "ChippingBarter": { dim: "wc:westeros", x: -4899, y: 40, z: 18296, time: 1696965111836L, xRot: -16.050058364868164f, yRot: 104.41226196289062f } - "rainwood": { dim: "wc:westeros", x: 8902, y: 142, z: 18851, time: 1696965111836L, xRot: 50.38808822631836f, yRot: 47.7030029296875f } - "Shelfry": { dim: "wc:playground", x: -415, y: 21, z: 111, time: 1696965111836L, xRot: 51.14997863769531f, yRot: -138.09219360351562f } - "polopolo": { dim: "wc:playground", x: 113, y: 21, z: -320, time: 1696965111836L, xRot: 90f, yRot: 320.16412353515625f } - "oldanchor": { dim: "wc:westeros", x: 7930, y: 150, z: 4821, time: 1696965111837L, xRot: 84.59996795654297f, yRot: -359.47943115234375f } - "LollistonCastle": { dim: "wc:westeros", x: 1576, y: 77, z: 6372, time: 1696965111837L, xRot: 29.249961853027344f, yRot: -27.42913818359375f } - "wbknight": { dim: "wc:westeros", x: -5588, y: 52, z: 16457, time: 1696965111837L, xRot: -5.249977111816406f, yRot: 119.44886016845703f } - "JailEscape": { dim: "wc:playground", x: -1447, y: 20, z: -545, time: 1696965111837L, xRot: 18.150066375732422f, yRot: -45.888240814208984f } - "harteham1": { dim: "wc:westeros", x: 4505, y: 46, z: 10422, time: 1696965111837L, xRot: -4.650012016296387f, yRot: 181.52049255371094f } - "FinsHT": { dim: "wc:playground", x: 1675, y: 67, z: 1296, time: 1696965111837L, xRot: -0.900011420249939f, yRot: 188.4505615234375f } - "harteham3": { dim: "wc:westeros", x: 4963, y: 57, z: 10365, time: 1696965111837L, xRot: 10.499958038330078f, yRot: 257.5888366699219f } - "Redwall": { dim: "wc:westeros", x: 6877, y: 35, z: 3980, time: 1696965111837L, xRot: 14.249930381774902f, yRot: -100.61834716796875f } - "Rollingford": { dim: "wc:westeros", x: 1917, y: 35, z: 12801, time: 1696965111837L, xRot: 7.413441181182861f, yRot: -83.97900390625f } - "harteham2": { dim: "wc:westeros", x: 4340, y: 42, z: 10471, time: 1696965111837L, xRot: -4.35003662109375f, yRot: 0.9402884244918823f } - "byrch": { dim: "wc:westeros", x: 3762, y: 46, z: 12112, time: 1696965111838L, xRot: 4.863011837005615f, yRot: 95.13517761230469f } - "arkilstorm": { dim: "wc:playground", x: 151, y: 172, z: 1227, time: 1696965111838L, xRot: -25.000682830810547f, yRot: 180.11941528320312f } - "sthquarry": { dim: "wc:westeros", x: -6507, y: 59, z: 16313, time: 1696965111838L, xRot: -9.159466743469238f, yRot: 123.55778503417969f } - "harteham4": { dim: "wc:westeros", x: 4752, y: 48, z: 10546, time: 1696965111838L, xRot: -5.549986839294434f, yRot: 301.5299987792969f } - "woodwrightmanor": { dim: "wc:westeros", x: -6313, y: 46, z: 19802, time: 1696965111838L, xRot: -9.900190353393555f, yRot: 30.543689727783203f } - "redkeepgodswood": { dim: "wc:westeros", x: 3293, y: 128, z: 13448, time: 1696965111838L, xRot: -1.2000057697296143f, yRot: -326.6903991699219f } - "banetown2": { dim: "wc:westeros", x: -6437, y: 65, z: 7309, time: 1696965111838L, xRot: 4.9500732421875f, yRot: 329.2050476074219f } - "banefort": { dim: "wc:westeros", x: -6562, y: 76, z: 7042, time: 1696965111838L, xRot: 2.1000759601593018f, yRot: 46.60525894165039f } - "banetown1": { dim: "wc:westeros", x: -6750, y: 65, z: 7266, time: 1696965111838L, xRot: 4.6500654220581055f, yRot: -19.394773483276367f } - "bfwinery": { dim: "wc:westeros", x: -6669, y: 67, z: 7332, time: 1696965111838L, xRot: 14.85007381439209f, yRot: -121.39481353759766f } - "bfhamlet1": { dim: "wc:westeros", x: -6226, y: 51, z: 6946, time: 1696965111838L, xRot: 2.8500876426696777f, yRot: 71.95529174804688f } - "bfhf1": { dim: "wc:westeros", x: -5968, y: 69, z: 7097, time: 1696965111838L, xRot: -13.049911499023438f, yRot: -3.194718837738037f } - "conkham3": { dim: "wc:westeros", x: -7438, y: 101, z: 15039, time: 1696965111838L, xRot: -33.15000915527344f, yRot: -1.080993413925171f } - "conkham4": { dim: "wc:westeros", x: -7402, y: 70, z: 15631, time: 1696965111839L, xRot: -22.50000762939453f, yRot: -90.93101501464844f } - "ballagricultural": { dim: "wc:westeros", x: -6170, y: 36, z: 19163, time: 1696965111839L, xRot: 22.949831008911133f, yRot: -125.65766906738281f } - "dreadforttest": { dim: "wc:playground", x: 940, y: 32, z: 117, time: 1696965111839L, xRot: 7.949910640716553f, yRot: 130.2130126953125f } - "harteham5": { dim: "wc:westeros", x: 4761, y: 43, z: 10180, time: 1696965111839L, xRot: 4.0500168800354f, yRot: 231.83816528320312f } - "harte": { dim: "wc:westeros", x: 4683, y: 45, z: 10390, time: 1696965111839L, xRot: -12.600011825561523f, yRot: -133.76417541503906f } - "hawthornefarm1": { dim: "wc:westeros", x: -1607, y: 46, z: 13016, time: 1696965111839L, xRot: 1.9500211477279663f, yRot: -9.74880599975586f } - "sthham3": { dim: "wc:westeros", x: -6170, y: 64, z: 16409, time: 1696965111839L, xRot: 2.250048875808716f, yRot: -232.149169921875f } - "redhill": { dim: "wc:westeros", x: 6580, y: 47, z: 8106, time: 1696965111839L, xRot: -0.5999523997306824f, yRot: -104.4171142578125f } - "woodwrightseptry": { dim: "wc:westeros", x: -5758, y: 81, z: 20248, time: 1696965111839L, xRot: 12.899909973144531f, yRot: -53.90182876586914f } - "vyprenhamlet5": { dim: "wc:westeros", x: -316, y: 40, z: 5968, time: 1696965111840L, xRot: 1.6501789093017578f, yRot: -54.388328552246094f } - "vyprenbrickworks2": { dim: "wc:westeros", x: -157, y: 43, z: 6064, time: 1696965111840L, xRot: 6.750076770782471f, yRot: 88.26025390625f } - "hartefarm1": { dim: "wc:westeros", x: 4507, y: 49, z: 10589, time: 1696965111840L, xRot: 8.399969100952148f, yRot: 13.090312004089355f } - "enah1": { dim: "wc:playground", x: -468, y: 163, z: 1245, time: 1696965111840L, xRot: 49.6500244140625f, yRot: -186.483154296875f } - "shallowfield": { dim: "wc:westeros", x: -8500, y: 39, z: 21075, time: 1696965111840L, xRot: 6.299997329711914f, yRot: -188.7257080078125f } - "graves": { dim: "wc:westeros", x: -8655, y: 94, z: 20792, time: 1696965111851L, xRot: 40.80001449584961f, yRot: -172.6575927734375f } - "glenmore": { dim: "wc:westeros", x: -6386, y: 140, z: -6502, time: 1696965111852L, xRot: 28.209165573120117f, yRot: 248.55453491210938f } - "rhlog1": { dim: "wc:westeros", x: 8876, y: 53, z: 19133, time: 1696965111852L, xRot: 42.000057220458984f, yRot: -27.575971603393555f } - "dreafort": { dim: "wc:westeros", x: 4358, y: 157, z: -9172, time: 1696965111852L, xRot: 9.810955047607422f, yRot: 93.5859375f } - "dreadfort": { dim: "wc:westeros", x: 4359, y: 157, z: -9172, time: 1696965111852L, xRot: -0.08903227746486664f, yRot: 89.83609771728516f } - "hawthornehamlet4": { dim: "wc:westeros", x: -1609, y: 46, z: 13305, time: 1696965111852L, xRot: 4.199988842010498f, yRot: 272.700927734375f } - "redlakevillage": { dim: "wc:westeros", x: -5517, y: 137, z: 15916, time: 1696965111853L, xRot: -5.100045680999756f, yRot: 173.3092498779297f } - "glham1": { dim: "wc:westeros", x: -6803, y: 83, z: -6678, time: 1696965111853L, xRot: 26.109161376953125f, yRot: 102.60427856445312f } - "stumpfield": { dim: "wc:westeros", x: -6865, y: 76, z: -6246, time: 1696965111853L, xRot: 24.459171295166016f, yRot: 144.75411987304688f } - "glkeep": { dim: "wc:westeros", x: -6398, y: 84, z: -6373, time: 1696965111853L, xRot: 1.499999761581421f, yRot: 245.25421142578125f } - "glham2": { dim: "wc:westeros", x: -6162, y: 111, z: -6173, time: 1696965111853L, xRot: 36.459163665771484f, yRot: 184.5044708251953f } - "glham3": { dim: "wc:westeros", x: -5743, y: 76, z: -6126, time: 1696965111853L, xRot: 30.45918083190918f, yRot: 174.30442810058594f } - "sablehall": { dim: "wc:westeros", x: 4042, y: 45, z: -16070, time: 1696965111853L, xRot: -5.550001621246338f, yRot: -161.5181121826172f } - "godseyetown": { dim: "wc:westeros", x: 1388, y: 39, z: 10828, time: 1696965111854L, xRot: 45.45002365112305f, yRot: -145.07431030273438f } - "Cox": { dim: "wc:westeros", x: 3072, y: 41, z: 8136, time: 1696965111854L, xRot: 16.70241928100586f, yRot: 73.99473571777344f } - "bfseptry": { dim: "wc:westeros", x: -6115, y: 104, z: 7436, time: 1696965111854L, xRot: -9.149944305419922f, yRot: 199.3116912841797f } - "LollistonLumber1": { dim: "wc:westeros", x: 1355, y: 47, z: 6524, time: 1696965111854L, xRot: 3.300008773803711f, yRot: -151.7776641845703f } - "stackspearseptry": { dim: "wc:westeros", x: -6149, y: 56, z: 8316, time: 1696965111854L, xRot: -4.649985313415527f, yRot: -204.30001831054688f } - "hsvillage": { dim: "wc:westeros", x: -5422, y: 71, z: 20255, time: 1696965111854L, xRot: 23.880273818969727f, yRot: -157.982421875f } - "hsham": { dim: "wc:westeros", x: -5208, y: 54, z: 19999, time: 1696965111855L, xRot: 9.930374145507812f, yRot: -160.68299865722656f } - "sentinelstand": { dim: "wc:westeros", x: 964, y: 98, z: -15989, time: 1696965111855L, xRot: -16.500009536743164f, yRot: 314.06695556640625f } - "df": { dim: "wc:westeros", x: 4359, y: 157, z: -9172, time: 1696965111855L, xRot: -0.08903227746486664f, yRot: 89.83609771728516f } - "westbrook2": { dim: "wc:westeros", x: -5921, y: 59, z: 16911, time: 1696965111855L, xRot: 23.250017166137695f, yRot: 237.94912719726562f } - "rllumberjack": { dim: "wc:westeros", x: -5925, y: 63, z: 16121, time: 1696965111869L, xRot: 3.7496981620788574f, yRot: -144.83090209960938f } - "Sawpn": { dim: "wc:playground", x: 312, y: 21, z: 439, time: 1696965111869L, xRot: 28.049989700317383f, yRot: -316.373046875f } - "Spown": { dim: "wc:playground", x: 313, y: 21, z: 438, time: 1696965111869L, xRot: -24.900009155273438f, yRot: -313.97314453125f } - "Pawn": { dim: "wc:playground", x: 313, y: 21, z: 439, time: 1696965111870L, xRot: 19.499988555908203f, yRot: -298.522216796875f } - "hawthornehamlet6": { dim: "wc:westeros", x: -1695, y: 58, z: 12684, time: 1696965111870L, xRot: 5.999919891357422f, yRot: -179.98155212402344f } - "OTPpalettes": { dim: "wc:playground", x: 973, y: 21, z: 667, time: 1696965111870L, xRot: -9.449987411499023f, yRot: -188.79296875f } - "HarvestHallMountain": { dim: "wc:westeros", x: 1181, y: 94, z: 19543, time: 1696965111870L, xRot: 6.300349712371826f, yRot: -92.99934387207031f } - "mistham1": { dim: "wc:westeros", x: 7491, y: 75, z: 19785, time: 1696965111870L, xRot: -15.450069427490234f, yRot: -35.92406463623047f } - "rwcave": { dim: "wc:westeros", x: 8198, y: 46, z: 19201, time: 1696965111870L, xRot: 32.6298942565918f, yRot: 350.1163024902344f } - "spham2": { dim: "wc:westeros", x: -6110, y: 58, z: 8323, time: 1696965111870L, xRot: 50.07862854003906f, yRot: 358.0543518066406f } - "OTMillnthorpe": { dim: "wc:westeros", x: -7785, y: 49, z: 22199, time: 1696965111870L, xRot: 19.19993782043457f, yRot: 155.224609375f } - "OtRamscroft": { dim: "wc:westeros", x: -7896, y: 60, z: 22152, time: 1696965111870L, xRot: 13.349717140197754f, yRot: 21.588088989257812f } - "OtStarrySept": { dim: "wc:westeros", x: -8168, y: 59, z: 22558, time: 1696965111870L, xRot: 17.999977111816406f, yRot: -177.5701904296875f } - "OtAuldwall": { dim: "wc:westeros", x: -8061, y: 39, z: 22479, time: 1696965111870L, xRot: 17.399986267089844f, yRot: 189.17984008789062f } - "OtCitadel": { dim: "wc:westeros", x: -8453, y: 37, z: 21827, time: 1696965111870L, xRot: -0.14996714890003204f, yRot: -154.0201873779297f } - "hutcheson": { dim: "wc:westeros", x: -5060, y: 96, z: 20271, time: 1696965111870L, xRot: -7.686874866485596f, yRot: -110.27205657958984f } - "mistcave3": { dim: "wc:westeros", x: 7331, y: 58, z: 19806, time: 1696965111871L, xRot: 31.4999942779541f, yRot: -291.37420654296875f } - "bandavassal2": { dim: "wc:westeros", x: -9182, y: 54, z: 20694, time: 1696965111871L, xRot: -0.31158775091171265f, yRot: -199.85626220703125f } - "wullmine": { dim: "wc:westeros", x: -473, y: 102, z: -13356, time: 1696965111871L, xRot: 11.096183776855469f, yRot: 155.8999481201172f } - "wullvillage2": { dim: "wc:westeros", x: -831, y: 117, z: -13138, time: 1696965111871L, xRot: 4.45054817199707f, yRot: -80.47368621826172f } - "wullhamlet1": { dim: "wc:westeros", x: -1543, y: 42, z: -14368, time: 1696965111871L, xRot: 8.400044441223145f, yRot: -114.556640625f } - "wullhamlet5": { dim: "wc:westeros", x: -1271, y: 57, z: -13200, time: 1696965111871L, xRot: 52.500003814697266f, yRot: 182.73666381835938f } - "wullhamlet6": { dim: "wc:westeros", x: -1120, y: 90, z: -12633, time: 1696965111871L, xRot: -0.6920469999313354f, yRot: -358.77471923828125f } - "wullhamlet7": { dim: "wc:westeros", x: -675, y: 77, z: -13594, time: 1696965111871L, xRot: 19.345672607421875f, yRot: -220.57908630371094f } - "hawthornefarm2": { dim: "wc:westeros", x: -2203, y: 52, z: 13120, time: 1696965111871L, xRot: 8.85002326965332f, yRot: -260.8484802246094f } - "ambrosetown": { dim: "wc:westeros", x: -3012, y: 49, z: 16656, time: 1696965111871L, xRot: -1.1999118328094482f, yRot: 93.15436553955078f } - "spham3": { dim: "wc:westeros", x: -5687, y: 95, z: 7975, time: 1696965111871L, xRot: -10.949909210205078f, yRot: 175.99754333496094f } - "keathhamlet2": { dim: "wc:westeros", x: -1249, y: 36, z: 4226, time: 1696965111871L, xRot: 11.210127830505371f, yRot: 357.1531066894531f } - "keathlc2": { dim: "wc:westeros", x: -1125, y: 39, z: 4197, time: 1696965111871L, xRot: 10.01012134552002f, yRot: 269.555419921875f } - "keathhamlet1": { dim: "wc:westeros", x: -931, y: 44, z: 4280, time: 1696965111871L, xRot: 6.410114288330078f, yRot: 179.71148681640625f } - "keathton": { dim: "wc:westeros", x: -1015, y: 39, z: 4049, time: 1696965111872L, xRot: 4.0847320556640625f, yRot: 180.29238891601562f } - "keathlc1": { dim: "wc:westeros", x: -845, y: 45, z: 3608, time: 1696965111872L, xRot: 10.534719467163086f, yRot: 271.78863525390625f } - "keathhamlet3": { dim: "wc:westeros", x: -1234, y: 43, z: 3683, time: 1696965111872L, xRot: 9.634744644165039f, yRot: 270.87860107421875f } - "uffmander": { dim: "wc:westeros", x: -7086, y: 41, z: 18484, time: 1696965111872L, xRot: 11.85166072845459f, yRot: 205.8678741455078f } - "OtCaulkburn": { dim: "wc:westeros", x: -8310, y: 99, z: 22851, time: 1696965111872L, xRot: 2.1000850200653076f, yRot: 271.3493957519531f } - "uffering": { dim: "wc:westeros", x: -6601, y: 35, z: 17797, time: 1696965111873L, xRot: -3.408904552459717f, yRot: 124.36197662353516f } - "uffvillage": { dim: "wc:westeros", x: -6028, y: 38, z: 17758, time: 1696965111873L, xRot: 8.399924278259277f, yRot: 106.98400115966797f } - "mistcave2": { dim: "wc:westeros", x: 6815, y: 53, z: 19693, time: 1696965111873L, xRot: 53.10005569458008f, yRot: 259.12677001953125f } - "starfalltown": { dim: "wc:westeros", x: -4354, y: 36, z: 23780, time: 1696965111873L, xRot: 11.249970436096191f, yRot: -89.27737426757812f } - "starfall": { dim: "wc:westeros", x: -4599, y: 36, z: 24137, time: 1696965111873L, xRot: -1.3499805927276611f, yRot: 89.20073699951172f } - "bolling": { dim: "wc:westeros", x: 6577, y: 68, z: 19350, time: 1696965111873L, xRot: -6.300107955932617f, yRot: 95.51376342773438f } - "spham1": { dim: "wc:westeros", x: -6225, y: 45, z: 7829, time: 1696965111873L, xRot: 9.15017032623291f, yRot: 143.9170379638672f } - "renlys": { dim: "wc:westeros", x: -5231, y: 83, z: 19834, time: 1696965111874L, xRot: 14.81313419342041f, yRot: 65.37796783447266f } - "ambroseham1": { dim: "wc:westeros", x: -2913, y: 48, z: 16966, time: 1696965111884L, xRot: -8.699930191040039f, yRot: 114.99405670166016f } - "mistcave4": { dim: "wc:westeros", x: 7365, y: 55, z: 19570, time: 1696965111884L, xRot: -0.2633301913738251f, yRot: -24.30059814453125f } - "graveshall": { dim: "wc:westeros", x: -8919, y: 50, z: 21084, time: 1696965111885L, xRot: 60.493404388427734f, yRot: -186.82861328125f } - "graveswatch": { dim: "wc:westeros", x: -8939, y: 71, z: 21332, time: 1696965111885L, xRot: 53.090999603271484f, yRot: -320.378662109375f } - "ilford": { dim: "wc:westeros", x: -9101, y: 50, z: 21550, time: 1696965111885L, xRot: 30.678220748901367f, yRot: -290.28857421875f } - "oxcrossing": { dim: "wc:westeros", x: -9158, y: 49, z: 21238, time: 1696965111885L, xRot: 30.267074584960938f, yRot: -150.880126953125f } - "mittonquay": { dim: "wc:westeros", x: -8640, y: 47, z: 21402, time: 1696965111885L, xRot: 43.42683792114258f, yRot: -257.0837097167969f } - "mothertonseptry": { dim: "wc:westeros", x: -8722, y: 57, z: 21059, time: 1696965111885L, xRot: 22.247798919677734f, yRot: -179.15293884277344f } - "graveshamlet": { dim: "wc:westeros", x: -8459, y: 54, z: 20921, time: 1696965111886L, xRot: 37.772308349609375f, yRot: 55.56209182739258f } - "gravesvillage": { dim: "wc:westeros", x: -8965, y: 50, z: 21095, time: 1696965111886L, xRot: 55.55812454223633f, yRot: -184.54541015625f } - "graveshamlet2": { dim: "wc:westeros", x: -9095, y: 52, z: 21049, time: 1696965111886L, xRot: 40.23930358886719f, yRot: -99.2120361328125f } - "othamlet1": { dim: "wc:westeros", x: -9165, y: 52, z: 21394, time: 1696965111886L, xRot: 62.137962341308594f, yRot: -88.31430053710938f } - "othamlet2": { dim: "wc:westeros", x: -8877, y: 50, z: 21392, time: 1696965111886L, xRot: 34.379005432128906f, yRot: -204.49066162109375f } - "othamlet3": { dim: "wc:westeros", x: -8853, y: 47, z: 21511, time: 1696965111886L, xRot: 41.88417434692383f, yRot: -28.82989501953125f } - "othamlet4": { dim: "wc:westeros", x: -8712, y: 46, z: 21279, time: 1696965111886L, xRot: 15.358930587768555f, yRot: -354.902099609375f } - "otnorthernwindmills": { dim: "wc:westeros", x: -9040, y: 61, z: 21769, time: 1696965111887L, xRot: 21.836320877075195f, yRot: -302.0694580078125f } - "otnorthernfirewood": { dim: "wc:westeros", x: -8960, y: 52, z: 21679, time: 1696965111887L, xRot: 58.74527359008789f, yRot: -337.490234375f } - "otNWwatchtower": { dim: "wc:westeros", x: -9196, y: 71, z: 21717, time: 1696965111887L, xRot: 36.02394485473633f, yRot: -163.0224609375f } - "graveshamlet3": { dim: "wc:westeros", x: -8404, y: 61, z: 20713, time: 1696965111887L, xRot: 27.49097442626953f, yRot: -15.379638671875f } - "graveshamlet4": { dim: "wc:westeros", x: -8896, y: 53, z: 20874, time: 1696965111887L, xRot: 23.686817169189453f, yRot: -247.0032958984375f } - "bandahamlet": { dim: "wc:westeros", x: -9189, y: 71, z: 20460, time: 1696965111887L, xRot: 61.418426513671875f, yRot: -193.2281494140625f } - "bandavinyard1": { dim: "wc:westeros", x: -8963, y: 58, z: 20685, time: 1696965111887L, xRot: 50.41773223876953f, yRot: -75.55224609375f } - "bandavinyard2": { dim: "wc:westeros", x: -8568, y: 50, z: 20217, time: 1696965111887L, xRot: 33.865203857421875f, yRot: -166.8497314453125f } - "OtNorth": { dim: "wc:westeros", x: -8693, y: 77, z: 21683, time: 1696965111888L, xRot: 49.650047302246094f, yRot: -253.4700927734375f } - "malleryhf2": { dim: "wc:westeros", x: 3607, y: 71, z: 11062, time: 1696965111888L, xRot: 73.1999740600586f, yRot: -89.5467758178711f } - "whlimequarry": { dim: "wc:westeros", x: 2892, y: 50, z: -2548, time: 1696965111888L, xRot: 14.2500581741333f, yRot: 240.73876953125f } - "shadowtower": { dim: "wc:westeros", x: 832, y: 126, z: -15947, time: 1696965111888L, xRot: 20.70005989074707f, yRot: 81.3204116821289f } - "uffquarry": { dim: "wc:westeros", x: -5852, y: 56, z: 17016, time: 1696965111888L, xRot: 68.39986419677734f, yRot: 300.7790222167969f } - "mallerykeep": { dim: "wc:westeros", x: 3785, y: 42, z: 10811, time: 1696965111888L, xRot: -1.9500348567962646f, yRot: 183.46878051757812f } - "mallery": { dim: "wc:westeros", x: 3785, y: 42, z: 10813, time: 1696965111888L, xRot: -1.9500348567962646f, yRot: 183.46878051757812f } - "rosefield": { dim: "wc:westeros", x: -3188, y: 60, z: 16776, time: 1696965111888L, xRot: 4.800045490264893f, yRot: -24.896636962890625f } - "hawthornehamlet5": { dim: "wc:westeros", x: -2211, y: 62, z: 12736, time: 1696965111889L, xRot: 15.149949073791504f, yRot: -143.5503387451172f } - "Bollingseptry": { dim: "wc:westeros", x: 6235, y: 72, z: 19250, time: 1696965111889L, xRot: -2.1001508235931396f, yRot: -36.14139938354492f } - "hawthorneseptry": { dim: "wc:westeros", x: -2268, y: 61, z: 13416, time: 1696965111889L, xRot: -11.400010108947754f, yRot: -268.646728515625f } - "keath": { dim: "wc:westeros", x: -1161, y: 42, z: 3965, time: 1696965111889L, xRot: 2.0867347717285156f, yRot: 178.21939086914062f } - "mermansgate": { dim: "wc:westeros", x: 1962, y: 40, z: -2572, time: 1696965111889L, xRot: -8.249959945678711f, yRot: -271.51043701171875f } - "mistham4": { dim: "wc:westeros", x: 7428, y: 78, z: 19033, time: 1696965111890L, xRot: -11.84993839263916f, yRot: -104.174072265625f } - "dragonskulls": { dim: "wc:westeros", x: 3403, y: 117, z: 13328, time: 1696965111890L, xRot: -0.3791434168815613f, yRot: 87.48857879638672f } - "mistwood": { dim: "wc:westeros", x: 7277, y: 74, z: 19645, time: 1696965111890L, xRot: -14.249975204467773f, yRot: -225.97674560546875f } - "wullhf1": { dim: "wc:westeros", x: -1811, y: 57, z: -12241, time: 1696965111890L, xRot: 35.2503547668457f, yRot: 179.555419921875f } - "hg": { dim: "wc:westeros", x: -4572, y: 77, z: 18552, time: 1696965111890L, xRot: -21.750057220458984f, yRot: 90.01184844970703f } - "mistcave": { dim: "wc:westeros", x: 7044, y: 45, z: 20089, time: 1696965111902L, xRot: 1.3499811887741089f, yRot: -83.02351379394531f } - "mistham3": { dim: "wc:westeros", x: 7507, y: 53, z: 20072, time: 1696965111902L, xRot: -6.750007629394531f, yRot: -88.42417907714844f } - "duskendaletest": { dim: "wc:playground", x: 1086, y: 62, z: -896, time: 1696965111902L, xRot: 4.174870491027832f, yRot: -172.42559814453125f } - "cathedral": { dim: "wc:playground", x: -1416, y: 20, z: -1037, time: 1696965111903L, xRot: -6.6000142097473145f, yRot: -1.395721435546875f } - "hsholdfast": { dim: "wc:westeros", x: -5011, y: 72, z: 19658, time: 1696965111903L, xRot: 61.9498176574707f, yRot: 88.89700317382812f } - "BFgoldmine1": { dim: "wc:westeros", x: -6244, y: 69, z: 7527, time: 1696965111903L, xRot: -10.949966430664062f, yRot: -47.882110595703125f } - "christmas2018": { dim: "wc:playground", x: -1880, y: 20, z: -890, time: 1696965111903L, xRot: 53.09996032714844f, yRot: 269.24261474609375f } - "whshipyard": { dim: "wc:westeros", x: 1798, y: 38, z: -2829, time: 1696965111903L, xRot: -5.100029945373535f, yRot: -261.7618103027344f } - "santaland": { dim: "wc:playground", x: -1763, y: 21, z: -900, time: 1696965111903L, xRot: 5.099952697753906f, yRot: 271.94244384765625f } - "long": { dim: "wc:westeros", x: 1307, y: 104, z: -1616, time: 1696965111904L, xRot: 4.0501861572265625f, yRot: -179.27523803710938f } - "WHDocks": { dim: "wc:westeros", x: 1959, y: 40, z: -2573, time: 1696965111904L, xRot: -14.550000190734863f, yRot: -28.059326171875f } - "Rosebridge": { dim: "wc:westeros", x: -4410, y: 41, z: 18322, time: 1696965111904L, xRot: 3.8998303413391113f, yRot: -3.2882080078125f } - "Keathbrewery": { dim: "wc:westeros", x: -883, y: 43, z: 4343, time: 1696965111904L, xRot: 19.34996795654297f, yRot: 17.2630615234375f } - "hggwtest": { dim: "wc:playground", x: 924, y: 223, z: -613, time: 1696965111904L, xRot: 24.749927520751953f, yRot: -235.121337890625f } - "silverhill": { dim: "wc:westeros", x: -4502, y: 217, z: 13606, time: 1696965111904L, xRot: -3.1501097679138184f, yRot: 179.6211700439453f } - "Woodwrighthamlet1": { dim: "wc:westeros", x: -6019, y: 69, z: 19820, time: 1696965111904L, xRot: 17.09995460510254f, yRot: -20.901931762695312f } - "Hell": { dim: "wc:playground", x: -733, y: 5, z: -1327, time: 1696965111905L, xRot: 45.90003204345703f, yRot: -91.6588134765625f } - "bellsbridge": { dim: "wc:westeros", x: -1395, y: 38, z: 11417, time: 1696965111905L, xRot: -14.1609525680542f, yRot: -176.91372680664062f } - "uffmanor": { dim: "wc:westeros", x: -5757, y: 49, z: 17903, time: 1696965111905L, xRot: 4.199862957000732f, yRot: 28.234283447265625f } - "uffcidery": { dim: "wc:westeros", x: -6227, y: 36, z: 17450, time: 1696965111905L, xRot: 4.049919128417969f, yRot: -18.71577262878418f } - "uffvineyard": { dim: "wc:westeros", x: -5624, y: 52, z: 18033, time: 1696965111905L, xRot: 7.500082969665527f, yRot: 219.77842712402344f } - "uffflaxfarm": { dim: "wc:westeros", x: -6407, y: 36, z: 17917, time: 1696965111905L, xRot: 3.299959182739258f, yRot: 39.762542724609375f } - "uffseptry": { dim: "wc:westeros", x: -5523, y: 61, z: 17435, time: 1696965111906L, xRot: 4.049917697906494f, yRot: 218.879150390625f } - "uffsouthvillage": { dim: "wc:westeros", x: -7003, y: 37, z: 18252, time: 1696965111907L, xRot: -3.5983500480651855f, yRot: 358.26788330078125f } - "uffhf1": { dim: "wc:westeros", x: -5328, y: 63, z: 18161, time: 1696965111907L, xRot: -13.050020217895508f, yRot: 260.12890625f } - "uffhf3": { dim: "wc:westeros", x: -5271, y: 64, z: 17558, time: 1696965111907L, xRot: -2.1000587940216064f, yRot: 311.12652587890625f } - "VSGuide": { dim: "wc:playground", x: -1076, y: 20, z: 1647, time: 1696965111907L, xRot: -50.39997100830078f, yRot: -183.384033203125f } - "scripttutorial": { dim: "wc:playground", x: -872, y: 21, z: 1359, time: 1696965111918L, xRot: 8.250075340270996f, yRot: -2.2454833984375f } - "WETutorial": { dim: "wc:playground", x: -833, y: 21, z: 1224, time: 1696965111918L, xRot: 5.250106334686279f, yRot: -359.6961669921875f } - "voxeltutorial": { dim: "wc:playground", x: -833, y: 21, z: 1140, time: 1696965111918L, xRot: -9.899897575378418f, yRot: -359.9962158203125f } - "JG7": { dim: "wc:playground", x: 603, y: 21, z: 1157, time: 1696965111918L, xRot: 24.449968338012695f, yRot: -230.5540771484375f } - "ridgestart": { dim: "wc:westeros", x: -1262, y: 46, z: -14676, time: 1696965111918L, xRot: 46.500030517578125f, yRot: 117.21575927734375f } - "newkeepholdfast": { dim: "wc:westeros", x: 641, y: 83, z: 1939, time: 1696965111918L, xRot: -29.700027465820312f, yRot: -252.5897216796875f } - "pottman": { dim: "wc:playground", x: 435, y: 10, z: 1263, time: 1696965111919L, xRot: 81.29998779296875f, yRot: -200.78944396972656f } - "wolf": { dim: "wc:playground", x: 321, y: 21, z: 1265, time: 1696965111919L, xRot: 14.24998664855957f, yRot: 133.2083282470703f } - "theyoungwolf": { dim: "wc:playground", x: 321, y: 21, z: 1265, time: 1696965111919L, xRot: 14.24998664855957f, yRot: 133.2083282470703f } - "kazisky": { dim: "wc:playground", x: 1423, y: 21, z: -1469, time: 1696965111919L, xRot: 8.399957656860352f, yRot: 192.33065795898438f } - "kazi": { dim: "wc:playground", x: 1423, y: 21, z: -1469, time: 1696965111919L, xRot: 26.84995460510254f, yRot: 190.980712890625f } - "dork": { dim: "wc:playground", x: -201, y: 21, z: 1168, time: 1696965111919L, xRot: -0.7458757758140564f, yRot: -13.558074951171875f } - "adork": { dim: "wc:playground", x: -201, y: 21, z: 1168, time: 1696965111919L, xRot: -0.7458757758140564f, yRot: -13.558074951171875f } - "butchersball": { dim: "wc:westeros", x: 1042, y: 44, z: 10678, time: 1696965111919L, xRot: 14.400001525878906f, yRot: 181.37216186523438f } - "sajjetta": { dim: "wc:playground", x: -621, y: 61, z: 1383, time: 1696965111920L, xRot: 45.89990997314453f, yRot: -84.3951416015625f } - "oldtestplots": { dim: "wc:playground", x: 1255, y: 20, z: -1425, time: 1696965111920L, xRot: 13.5f, yRot: -168.9722900390625f } - "wylcadet": { dim: "wc:westeros", x: 1331, y: 130, z: 21069, time: 1696965111920L, xRot: 26.22492027282715f, yRot: 35.40968704223633f } - "Enah": { dim: "wc:playground", x: -422, y: 20, z: 1226, time: 1696965111920L, xRot: -0.750067949295044f, yRot: -267.537841796875f } - "wolfo": { dim: "wc:westeros", x: -4356, y: 94, z: 19536, time: 1696965111920L, xRot: 15.450103759765625f, yRot: 6.6136474609375f } - "ThaGonx": { dim: "wc:playground", x: -484, y: 42, z: 1020, time: 1696965111920L, xRot: 13.500213623046875f, yRot: -358.612548828125f } - "ItsPabs": { dim: "wc:playground", x: -367, y: 42, z: 1023, time: 1696965111920L, xRot: 13.500213623046875f, yRot: -358.612548828125f } - "electricthrusts": { dim: "wc:playground", x: -329, y: 48, z: 1391, time: 1696965111921L, xRot: 23.100200653076172f, yRot: -271.0078125f } - "hardzz": { dim: "wc:playground", x: -330, y: 48, z: 1347, time: 1696965111921L, xRot: 23.100200653076172f, yRot: -271.0078125f } - "hardzzgaming": { dim: "wc:playground", x: -330, y: 48, z: 1347, time: 1696965111921L, xRot: 23.100200653076172f, yRot: -271.0078125f } - "lafoo": { dim: "wc:playground", x: -228, y: 21, z: 1580, time: 1696965111921L, xRot: -34.79981994628906f, yRot: -319.2919921875f } - "PrinceLafoo": { dim: "wc:playground", x: -228, y: 21, z: 1580, time: 1696965111921L, xRot: -34.79981994628906f, yRot: -319.2919921875f } - "Ready": { dim: "wc:playground", x: -202, y: 21, z: 1577, time: 1696965111921L, xRot: 2.700181484222412f, yRot: -56.03759765625f } - "spikespiegel": { dim: "wc:playground", x: 322, y: 21, z: 1470, time: 1696965111921L, xRot: 38.10018539428711f, yRot: -92.32763671875f } - "spike": { dim: "wc:playground", x: 322, y: 21, z: 1470, time: 1696965111921L, xRot: 38.10018539428711f, yRot: -92.32763671875f } - "sseriousbusiness": { dim: "wc:playground", x: 291, y: 70, z: 1114, time: 1696965111921L, xRot: 46.49996566772461f, yRot: -95.927734375f } - "sitorres": { dim: "wc:playground", x: 457, y: 68, z: 1538, time: 1696965111921L, xRot: 43.50006866455078f, yRot: -150.673828125f } - "wormy": { dim: "wc:playground", x: 18, y: 21, z: 1375, time: 1696965111921L, xRot: 12.450035095214844f, yRot: -43.124755859375f } - "arezeus": { dim: "wc:playground", x: -621, y: 21, z: 1575, time: 1696965111921L, xRot: 7.800004005432129f, yRot: -56.223602294921875f } - "marg": { dim: "wc:playground", x: 839, y: 21, z: 1374, time: 1696965111922L, xRot: 9.599882125854492f, yRot: -273.27471923828125f } - "center": { dim: "wc:playground", x: 1824, y: 23, z: 2055, time: 1696965111922L, xRot: 38.54998779296875f, yRot: -181.88975524902344f } - "stein": { dim: "wc:playground", x: 751, y: 21, z: 2131, time: 1696965111922L, xRot: 12.74999713897705f, yRot: -191.04180908203125f } - "otmis": { dim: "wc:playground", x: -621, y: 21, z: 1780, time: 1696965111922L, xRot: 74.85000610351562f, yRot: -69.99516296386719f } - "otty": { dim: "wc:playground", x: -621, y: 21, z: 1780, time: 1696965111922L, xRot: 32.550010681152344f, yRot: -64.89519500732422f } - "Emoticone11": { dim: "wc:playground", x: -370, y: 1, z: 1831, time: 1696965111922L, xRot: 5.5500617027282715f, yRot: -269.55511474609375f } - "Emoticone": { dim: "wc:playground", x: -370, y: 1, z: 1831, time: 1696965111922L, xRot: 5.5500617027282715f, yRot: -269.55511474609375f } - "thamus": { dim: "wc:playground", x: 367, y: 20, z: 2563, time: 1696965111923L, xRot: -10.65001392364502f, yRot: -92.9444580078125f } - "starcat": { dim: "wc:playground", x: -202, y: 21, z: 2391, time: 1696965111923L, xRot: 1.4997408390045166f, yRot: -86.34386444091797f } - "starcat98": { dim: "wc:playground", x: -202, y: 21, z: 2391, time: 1696965111923L, xRot: 1.4997408390045166f, yRot: -86.34386444091797f } - "starcato": { dim: "wc:playground", x: -202, y: 21, z: 2391, time: 1696965111923L, xRot: 1.4997408390045166f, yRot: -86.34386444091797f } - "Iwan": { dim: "wc:playground", x: 52, y: 21, z: 2459, time: 1696965111923L, xRot: 16.5f, yRot: -270.6947937011719f } - "IwanDeLarch": { dim: "wc:playground", x: 52, y: 21, z: 2459, time: 1696965111923L, xRot: 16.5f, yRot: -270.6947937011719f } - "Zoso": { dim: "wc:playground", x: 79, y: 21, z: 2609, time: 1696965111923L, xRot: 2.5498931407928467f, yRot: -2.495391368865967f } - "sigils": { dim: "wc:playground", x: 1817, y: 54, z: 2577, time: 1696965111923L, xRot: 50.052467346191406f, yRot: -358.77972412109375f } - "kor": { dim: "wc:playground", x: 223, y: 21, z: 2595, time: 1696965111923L, xRot: 19.349987030029297f, yRot: -44.20006561279297f } - "Pix": { dim: "wc:playground", x: 111, y: 22, z: 1768, time: 1696965111924L, xRot: 18.449966430664062f, yRot: 181.28900146484375f } - "Pixeld": { dim: "wc:playground", x: 111, y: 22, z: 1768, time: 1696965111924L, xRot: 18.449966430664062f, yRot: 181.28900146484375f } - "bantyrooster": { dim: "wc:playground", x: -138, y: 21, z: 2339, time: 1696965111924L, xRot: 16.65005874633789f, yRot: -130.44442749023438f } - "xeson": { dim: "wc:playground", x: 644, y: 21, z: 1977, time: 1696965111935L, xRot: 6.14735746383667f, yRot: -175.7522735595703f } - "nuggs": { dim: "wc:playground", x: 225, y: 21, z: 1772, time: 1696965111936L, xRot: 3.5999672412872314f, yRot: -137.47900390625f } - "GeneralMcNuggets": { dim: "wc:playground", x: 225, y: 21, z: 1772, time: 1696965111936L, xRot: 3.5999672412872314f, yRot: -137.47900390625f } - "EStoop": { dim: "wc:playground", x: 434, y: 21, z: 2597, time: 1696965111936L, xRot: 6.299964904785156f, yRot: -39.9944953918457f } - "Stoop": { dim: "wc:playground", x: 434, y: 21, z: 2597, time: 1696965111936L, xRot: 6.299964904785156f, yRot: -39.9944953918457f } - "Soup": { dim: "wc:playground", x: -7, y: 21, z: 1973, time: 1696965111936L, xRot: -10.050037384033203f, yRot: -212.76007080078125f } - "simba": { dim: "wc:playground", x: 433, y: 21, z: 2589, time: 1696965111936L, xRot: 42.89999008178711f, yRot: -101.04444122314453f } - "arkil": { dim: "wc:playground", x: 51, y: 172, z: 1246, time: 1696965111937L, xRot: -2.3506672382354736f, yRot: 179.81971740722656f } - "ark": { dim: "wc:playground", x: 51, y: 172, z: 1246, time: 1696965111937L, xRot: -2.3506672382354736f, yRot: 179.81971740722656f } - "johan": { dim: "wc:playground", x: -312, y: 21, z: 2288, time: 1696965111937L, xRot: 26.400041580200195f, yRot: -39.389991760253906f } - "Mandos": { dim: "wc:playground", x: -412, y: 21, z: 2595, time: 1696965111937L, xRot: -3.1500027179718018f, yRot: -1.145833969116211f } - "contra": { dim: "wc:playground", x: 372, y: 21, z: 2182, time: 1696965111937L, xRot: 5.699986457824707f, yRot: -180.09523010253906f } - "KnightsOfIkke": { dim: "wc:playground", x: -424, y: 21, z: 2287, time: 1696965111937L, xRot: -0.29997870326042175f, yRot: 45.03736114501953f } - "RiverrunTest": { dim: "wc:playground", x: 2103, y: 21, z: -425, time: 1696965111937L, xRot: -13.80001449584961f, yRot: -46.250244140625f } - "Dylan": { dim: "wc:playground", x: 525, y: 21, z: 1670, time: 1696965111937L, xRot: 30.300079345703125f, yRot: -135.69586181640625f } - "DylanLoveyYouJP": { dim: "wc:playground", x: 525, y: 21, z: 1670, time: 1696965111937L, xRot: 30.300079345703125f, yRot: -135.69586181640625f } - "endymion": { dim: "wc:playground", x: 864, y: 117, z: 1600, time: 1696965111938L, xRot: 56.85002517700195f, yRot: -9.6734619140625f } - "nmf": { dim: "wc:playground", x: -622, y: 21, z: 1983, time: 1696965111938L, xRot: 3.7499821186065674f, yRot: -41.14227294921875f } - "NoMoreFun": { dim: "wc:playground", x: -622, y: 21, z: 1983, time: 1696965111938L, xRot: 3.7499821186065674f, yRot: -41.14227294921875f } - "howy": { dim: "wc:playground", x: 1240, y: 21, z: 1752, time: 1696965111938L, xRot: -3.1118688583374023f, yRot: -224.20603942871094f } - "Des": { dim: "wc:playground", x: 437, y: 21, z: 1782, time: 1696965111938L, xRot: 5.549973011016846f, yRot: -42.3958740234375f } - "holyhallvineyard": { dim: "wc:westeros", x: -4916, y: 47, z: 17637, time: 1696965111938L, xRot: 5.09613561630249f, yRot: -160.29107666015625f } - "holyhallham1": { dim: "wc:westeros", x: -4929, y: 46, z: 17649, time: 1696965111938L, xRot: 32.39997100830078f, yRot: -269.7110595703125f } - "holyhallvillage1": { dim: "wc:westeros", x: -4773, y: 41, z: 17954, time: 1696965111938L, xRot: -5.249994277954102f, yRot: -173.5604248046875f } - "holyhallflax": { dim: "wc:westeros", x: -5021, y: 53, z: 17892, time: 1696965111938L, xRot: -10.026679992675781f, yRot: -263.6006774902344f } - "holyhallbridge": { dim: "wc:westeros", x: -4534, y: 35, z: 17523, time: 1696965111939L, xRot: 3.750051259994507f, yRot: -86.411376953125f } - "ambrosecastle": { dim: "wc:westeros", x: -2903, y: 38, z: 17221, time: 1696965111939L, xRot: 19.80003547668457f, yRot: -8.305912971496582f } - "qbbq": { dim: "wc:playground", x: 415, y: 21, z: 1971, time: 1696965111939L, xRot: -0.1500062197446823f, yRot: -221.36871337890625f } - "Majic": { dim: "wc:playground", x: 891, y: 81, z: 1791, time: 1696965111939L, xRot: -2.4000120162963867f, yRot: -90.52201843261719f } - "linkofkakariko": { dim: "wc:playground", x: -559, y: 21, z: 2598, time: 1696965111939L, xRot: 30.600000381469727f, yRot: -185.48114013671875f } - "link": { dim: "wc:playground", x: -559, y: 21, z: 2598, time: 1696965111939L, xRot: 30.600000381469727f, yRot: -185.48114013671875f } - "Cashoffice": { dim: "wc:playground", x: -280, y: 73, z: 2108, time: 1696965111939L, xRot: 5.849947452545166f, yRot: -272.63946533203125f } - "CashBoard": { dim: "wc:playground", x: -335, y: 73, z: 2108, time: 1696965111939L, xRot: 8.399932861328125f, yRot: -90.992919921875f } - "CashBanks": { dim: "wc:playground", x: -307, y: 21, z: 2168, time: 1696965111940L, xRot: -6.900035381317139f, yRot: -178.73960876464844f } - "WullCave": { dim: "wc:westeros", x: -1153, y: 136, z: -13071, time: 1696965111940L, xRot: 35.5499267578125f, yRot: 53.651458740234375f } - "greenwood": { dim: "wc:westeros", x: 1948, y: 45, z: -3620, time: 1696965111940L, xRot: -8.400002479553223f, yRot: -40.21063232421875f } - "Wullvillage3": { dim: "wc:westeros", x: -962, y: 51, z: -13862, time: 1696965111940L, xRot: 1.4999960660934448f, yRot: 279.45318603515625f } - "clegane": { dim: "wc:westeros", x: -5878, y: 59, z: 13229, time: 1696965111940L, xRot: -11.55004596710205f, yRot: -228.4229736328125f } - "infinity": { dim: "wc:playground", x: 533, y: 122, z: 1992, time: 1696965111940L, xRot: 2.4000027179718018f, yRot: 1.4090304374694824f } - "InfinityMe123": { dim: "wc:playground", x: 533, y: 122, z: 1992, time: 1696965111940L, xRot: 2.4000027179718018f, yRot: 1.4090304374694824f } - "Fin": { dim: "wc:playground", x: 533, y: 122, z: 1992, time: 1696965111940L, xRot: 2.4000027179718018f, yRot: 1.4090304374694824f } - "cedric": { dim: "wc:playground", x: 839, y: 21, z: 842, time: 1696965111941L, xRot: -3.1500978469848633f, yRot: 88.30970001220703f } - "ced": { dim: "wc:playground", x: 839, y: 21, z: 842, time: 1696965111951L, xRot: -3.1500978469848633f, yRot: 88.30970001220703f } - "cedo": { dim: "wc:playground", x: 839, y: 21, z: 842, time: 1696965111952L, xRot: -3.1500978469848633f, yRot: 88.30970001220703f } - "liam": { dim: "wc:playground", x: 898, y: 21, z: 2020, time: 1696965111952L, xRot: -14.497452735900879f, yRot: -182.7142333984375f } - "oddtown": { dim: "wc:playground", x: 1950, y: 20, z: 1172, time: 1696965111953L, xRot: 13.649983406066895f, yRot: -179.19375610351562f } - "cloudkid": { dim: "wc:playground", x: -105, y: 21, z: 1985, time: 1696965111953L, xRot: 6.1499857902526855f, yRot: -270.15020751953125f } - "Cl0udkid": { dim: "wc:playground", x: -105, y: 21, z: 1985, time: 1696965111953L, xRot: 6.1499857902526855f, yRot: -270.15020751953125f } - "copper": { dim: "wc:playground", x: -30, y: 21, z: 2620, time: 1696965111953L, xRot: 39.749996185302734f, yRot: -336.31268310546875f } - "menhir": { dim: "wc:westeros", x: 1152, y: 44, z: 13170, time: 1696965111953L, xRot: -5.100048542022705f, yRot: -180.043701171875f } - "GrassyVale": { dim: "wc:westeros", x: 1467, y: 50, z: 16190, time: 1696965111953L, xRot: -4.649990081787109f, yRot: -229.39596557617188f } - "GrayJedi": { dim: "wc:playground", x: -164, y: 139, z: 775, time: 1696965111953L, xRot: 11.100409507751465f, yRot: 352.590576171875f } - "Krios": { dim: "wc:playground", x: -260, y: 21, z: 939, time: 1696965111953L, xRot: 11.700019836425781f, yRot: -178.01123046875f } - "jmcmarq": { dim: "wc:playground", x: -444, y: 21, z: 929, time: 1696965111954L, xRot: 12.600020408630371f, yRot: -210.7099609375f } - "greenbarrows": { dim: "wc:westeros", x: 2036, y: 45, z: -3651, time: 1696965111954L, xRot: -3.2999823093414307f, yRot: -50.67333984375f } - "kulmen": { dim: "wc:playground", x: 32, y: 21, z: 1791, time: 1696965111954L, xRot: -0.14996397495269775f, yRot: -60.568748474121094f } - "keathvillage2": { dim: "wc:westeros", x: -1297, y: 42, z: 3376, time: 1696965111954L, xRot: -16.65637969970703f, yRot: 317.25396728515625f } - "crasterskeep": { dim: "wc:westeros", x: 2515, y: 57, z: -17541, time: 1696965111954L, xRot: -7.174741268157959f, yRot: -128.53851318359375f } - "Peanut": { dim: "wc:playground", x: -408, y: 21, z: 2395, time: 1696965111954L, xRot: 4.349993705749512f, yRot: -40.89410400390625f } - "doggett": { dim: "wc:westeros", x: -4407, y: 69, z: 7035, time: 1696965111954L, xRot: 13.649940490722656f, yRot: 269.3998718261719f } - "SoIwanHowIsOldtown": { dim: "wc:westeros", x: -8450, y: 68, z: 22244, time: 1696965111954L, xRot: 29.2500057220459f, yRot: -214.48779296875f } - "wylhf5": { dim: "wc:westeros", x: 1093, y: 109, z: 21531, time: 1696965111954L, xRot: -38.87506103515625f, yRot: -241.64019775390625f } - "wullhf2": { dim: "wc:westeros", x: -702, y: 105, z: -12576, time: 1696965111955L, xRot: -9.74999713897705f, yRot: 268.203369140625f } - "Discs": { dim: "wc:playground", x: 15, y: 20, z: -1697, time: 1696965111955L, xRot: 9.74990463256836f, yRot: -97.41357421875f } - "whglass": { dim: "wc:westeros", x: 1649, y: 48, z: -3337, time: 1696965111955L, xRot: -10.799970626831055f, yRot: -76.361083984375f } - "Nate": { dim: "wc:playground", x: 437, y: 21, z: 2191, time: 1696965111955L, xRot: 3.3000106811523438f, yRot: -39.4123649597168f } - "xKingNatex": { dim: "wc:playground", x: 437, y: 21, z: 2191, time: 1696965111955L, xRot: 3.3000106811523438f, yRot: -39.4123649597168f } - "wullhamlet2": { dim: "wc:westeros", x: -1143, y: 50, z: -13628, time: 1696965111955L, xRot: 39.899906158447266f, yRot: 104.743408203125f } - "oldstyleguides": { dim: "wc:playground", x: -1036, y: 91, z: 1704, time: 1696965111955L, xRot: 47.399925231933594f, yRot: -355.6036682128906f } - "Loras": { dim: "wc:playground", x: 738, y: 163, z: 1284, time: 1696965111955L, xRot: 54.29997634887695f, yRot: -179.03948974609375f } - "serloras": { dim: "wc:playground", x: 750, y: 31, z: 1274, time: 1696965111955L, xRot: -17.399993896484375f, yRot: 170.61044311523438f } - "death": { dim: "wc:playground", x: 751, y: 14, z: 1289, time: 1696965111956L, xRot: 16.949968338012695f, yRot: 2.16162109375f } - "keathhf": { dim: "wc:westeros", x: -996, y: 43, z: 3534, time: 1696965111956L, xRot: 7.34999418258667f, yRot: -322.0609130859375f } - "wyl1": { dim: "wc:westeros", x: 2255, y: 161, z: 20574, time: 1696965111956L, xRot: -0.6004447340965271f, yRot: 45.72311019897461f } - "OTWest": { dim: "wc:westeros", x: -9070, y: 50, z: 22175, time: 1696965111956L, xRot: 2.7000021934509277f, yRot: -90.604736328125f } - "fist2": { dim: "wc:playground", x: -705, y: 69, z: 744, time: 1696965111956L, xRot: 13.95000171661377f, yRot: -340.3512268066406f } - "bfruins": { dim: "wc:westeros", x: -6047, y: 52, z: 6873, time: 1696965111956L, xRot: -8.399988174438477f, yRot: -131.5941925048828f } - "augurex": { dim: "wc:playground", x: 662, y: 21, z: 1755, time: 1696965111956L, xRot: 5.699890613555908f, yRot: -179.60870361328125f } - "FistFight": { dim: "wc:playground", x: 4078, y: 142, z: 2719, time: 1696965111956L, xRot: 22.949953079223633f, yRot: 182.2972412109375f } - "keathvillage1": { dim: "wc:westeros", x: -1468, y: 36, z: 3932, time: 1696965111957L, xRot: 1.092528223991394f, yRot: 90.30075073242188f } - "keathknight": { dim: "wc:westeros", x: -1514, y: 45, z: 3577, time: 1696965111957L, xRot: 4.799999713897705f, yRot: -265.6493225097656f } - "rubyfordbattle": { dim: "wc:playground", x: -811, y: 67, z: 1364, time: 1696965111957L, xRot: 13.349820137023926f, yRot: -81.17788696289062f } - "Bandallon": { dim: "wc:westeros", x: -9064, y: 56, z: 19930, time: 1696965111957L, xRot: -11.34715461730957f, yRot: -178.39947509765625f } - "elduwin": { dim: "wc:playground", x: 644, y: 21, z: 2596, time: 1696965111957L, xRot: 2.2500476837158203f, yRot: 319.25408935546875f } - "whtavern": { dim: "wc:westeros", x: 1757, y: 46, z: -3088, time: 1696965111957L, xRot: -5.700008869171143f, yRot: -99.91162109375f } - "LittleBarter": { dim: "wc:westeros", x: -5168, y: 50, z: 18269, time: 1696965111957L, xRot: 2.0999321937561035f, yRot: 1.661285400390625f } - "MDMeaux": { dim: "wc:playground", x: 235, y: 22, z: 773, time: 1696965111957L, xRot: -8.10002326965332f, yRot: -53.48785400390625f } - "lht": { dim: "wc:westeros", x: -8316, y: 72, z: 17748, time: 1696965111957L, xRot: -1.8000013828277588f, yRot: -244.77149963378906f } - "hewett": { dim: "wc:westeros", x: -8316, y: 72, z: 17748, time: 1696965111969L, xRot: -1.8000013828277588f, yRot: -244.77149963378906f } - "Peachleigh": { dim: "wc:westeros", x: -4004, y: 41, z: 18452, time: 1696965111969L, xRot: -5.8496222496032715f, yRot: -91.1161880493164f } - "TedTomstone": { dim: "wc:playground", x: 884, y: 21, z: 2191, time: 1696965111970L, xRot: 25.200035095214844f, yRot: -174.82171630859375f } - "olaf": { dim: "wc:playground", x: 1104, y: 21, z: 1783, time: 1696965111970L, xRot: 24.149993896484375f, yRot: -175.4220733642578f } - "holyhalltown": { dim: "wc:westeros", x: -4246, y: 43, z: 17866, time: 1696965111970L, xRot: -1.5000258684158325f, yRot: -175.7567138671875f } - "holyhallvillage2": { dim: "wc:westeros", x: -4002, y: 39, z: 17877, time: 1696965111970L, xRot: 20.399948120117188f, yRot: 7.5432515144348145f } - "wilshire": { dim: "wc:playground", x: 854, y: 21, z: 2392, time: 1696965111970L, xRot: -6.617636203765869f, yRot: -45.49012756347656f } - "waz": { dim: "wc:playground", x: 738, y: 21, z: 2506, time: 1696965111970L, xRot: 18.450061798095703f, yRot: 186.803466796875f } - "tridentfight": { dim: "wc:playground", x: -742, y: 73, z: 1212, time: 1696965111971L, xRot: 7.800304889678955f, yRot: 295.0129699707031f } - "xeson1": { dim: "wc:playground", x: 656, y: 147, z: 1846, time: 1696965111971L, xRot: 11.100525856018066f, yRot: -38.044212341308594f } - "halpaca": { dim: "wc:playground", x: 948, y: 21, z: 2596, time: 1696965111971L, xRot: 5.399921417236328f, yRot: -15.2449951171875f } - "halpaca7": { dim: "wc:playground", x: 948, y: 21, z: 2596, time: 1696965111971L, xRot: 5.399921417236328f, yRot: -15.2449951171875f } - "sealrock": { dim: "wc:westeros", x: 1864, y: 44, z: -2016, time: 1696965111971L, xRot: -6.1499738693237305f, yRot: -244.20965576171875f } - "holyhallseptry": { dim: "wc:westeros", x: -4219, y: 39, z: 17386, time: 1696965111971L, xRot: 2.999988555908203f, yRot: -35.8065071105957f } - "whwhaling": { dim: "wc:westeros", x: 2406, y: 47, z: -1852, time: 1696965111971L, xRot: 0.4500444233417511f, yRot: -279.46087646484375f } - "uffhf2": { dim: "wc:westeros", x: -6090, y: 41, z: 17421, time: 1696965111971L, xRot: 6.599856853485107f, yRot: 187.53466796875f } - "pve": { dim: "wc:playground", x: -809, y: 83, z: 1368, time: 1696965111971L, xRot: -14.700053215026855f, yRot: 268.1999206542969f } - "WinterfellCrypts": { dim: "wc:westeros", x: -1102, y: 68, z: -8542, time: 1696965111971L, xRot: 19.049970626831055f, yRot: -275.7159729003906f } - "AeksioOndos": { dim: "wc:playground", x: -429, y: 21, z: 2393, time: 1696965111971L, xRot: 2.400022268295288f, yRot: -322.59002685546875f } - "Aeksio": { dim: "wc:playground", x: -429, y: 21, z: 2393, time: 1696965111971L, xRot: 2.400022268295288f, yRot: -322.59002685546875f } - "spinachkeep": { dim: "wc:westeros", x: -8450, y: 64, z: 22244, time: 1696965111971L, xRot: 6.298503875732422f, yRot: -5.54095458984375f } - "WHholdfast": { dim: "wc:westeros", x: 1443, y: 80, z: -3884, time: 1696965111972L, xRot: -11.546887397766113f, yRot: 178.7791748046875f } - "ashwoodcastle": { dim: "wc:westeros", x: 832, y: 122, z: -3964, time: 1696965111972L, xRot: 27.750009536743164f, yRot: -85.36123657226562f } - "Heathcliff": { dim: "wc:westeros", x: 861, y: 116, z: 21686, time: 1696965111972L, xRot: 5.09998893737793f, yRot: -248.32839965820312f } - "ThreeTowers": { dim: "wc:westeros", x: -8983, y: 86, z: 23569, time: 1696965111972L, xRot: 30.1485652923584f, yRot: -10.34063720703125f } - "septofsummer": { dim: "wc:westeros", x: -4606, y: 70, z: 18594, time: 1696965111972L, xRot: -12.600006103515625f, yRot: -263.9873046875f } - "knottham2": { dim: "wc:westeros", x: -815, y: 90, z: -14386, time: 1696965111972L, xRot: 48.7498779296875f, yRot: -200.81155395507812f } - "VonSchwarzenberg": { dim: "wc:playground", x: -408, y: 21, z: 2806, time: 1696965111972L, xRot: -4.20013952255249f, yRot: -35.194847106933594f } - "Schwarz": { dim: "wc:playground", x: -408, y: 21, z: 2806, time: 1696965111972L, xRot: 8.849997520446777f, yRot: -42.24485397338867f } - "Dyvim": { dim: "wc:playground", x: 861, y: 21, z: 2815, time: 1696965111972L, xRot: 4.989007472991943f, yRot: -41.6951904296875f } - "littletwostreams": { dim: "wc:westeros", x: -232, y: 66, z: 17536, time: 1696965111972L, xRot: -9.276283264160156f, yRot: 173.3700408935547f } - "carci": { dim: "wc:playground", x: 1064, y: 21, z: 2187, time: 1696965111973L, xRot: -6.899902820587158f, yRot: -40.270843505859375f } - "carcinogenius": { dim: "wc:playground", x: 1064, y: 21, z: 2187, time: 1696965111973L, xRot: -6.899902820587158f, yRot: -40.270843505859375f } - "KnottRuin": { dim: "wc:westeros", x: -765, y: 34, z: -14810, time: 1696965111973L, xRot: 0.5999855995178223f, yRot: -91.76242065429688f } - "dav": { dim: "wc:playground", x: 107, y: 21, z: 2996, time: 1696965111973L, xRot: 12.271235466003418f, yRot: -178.78863525390625f } - "dav4": { dim: "wc:playground", x: 107, y: 21, z: 2996, time: 1696965111973L, xRot: 12.271235466003418f, yRot: -178.78863525390625f } - "galv": { dim: "wc:playground", x: 107, y: 21, z: 3008, time: 1696965111973L, xRot: 4.921233654022217f, yRot: -2.8382568359375f } - "galivis": { dim: "wc:playground", x: 107, y: 21, z: 3008, time: 1696965111973L, xRot: 4.921233654022217f, yRot: -2.8382568359375f } - "Roghe": { dim: "wc:westeros", x: -6824, y: 35, z: -1244, time: 1696965111973L, xRot: -0.30003294348716736f, yRot: -1.1309586763381958f } - "lyliana": { dim: "wc:playground", x: 1063, y: 21, z: 2595, time: 1696965111973L, xRot: -5.7003278732299805f, yRot: -48.99519729614258f } - "lyl": { dim: "wc:playground", x: 1063, y: 21, z: 2595, time: 1696965111974L, xRot: -5.7003278732299805f, yRot: -48.99519729614258f } - "saltern": { dim: "wc:westeros", x: -9539, y: 43, z: -86, time: 1696965111974L, xRot: 5.549381256103516f, yRot: -269.0887451171875f } - "southwold": { dim: "wc:westeros", x: -9625, y: 38, z: 1078, time: 1696965111974L, xRot: 0.7272947430610657f, yRot: -64.03665924072266f } - "posbrook": { dim: "wc:westeros", x: -8714, y: 45, z: -91, time: 1696965111974L, xRot: -0.4502464532852173f, yRot: 55.92236328125f } - "cottage": { dim: "wc:westeros", x: 1446, y: 50, z: -4056, time: 1696965111985L, xRot: -2.4000189304351807f, yRot: -1.80767822265625f } - "hoosfoos": { dim: "wc:playground", x: 1161, y: 21, z: 2995, time: 1696965111986L, xRot: 5.399959564208984f, yRot: -173.46072387695312f } - "burnley": { dim: "wc:westeros", x: -4637, y: 95, z: -1795, time: 1696965111986L, xRot: -0.5999263525009155f, yRot: -268.31494140625f } - "HolyHallCastle": { dim: "wc:westeros", x: -4739, y: 40, z: 17771, time: 1696965111986L, xRot: -2.3766722679138184f, yRot: -97.7008056640625f } - "nornstead": { dim: "wc:westeros", x: -5251, y: 78, z: -1253, time: 1696965111986L, xRot: 20.850006103515625f, yRot: 80.842041015625f } - "knottHam1": { dim: "wc:westeros", x: -992, y: 38, z: -14635, time: 1696965111986L, xRot: 5.399991989135742f, yRot: -232.4616241455078f } - "silverhall": { dim: "wc:westeros", x: -4336, y: 116, z: 13607, time: 1696965111986L, xRot: -15.749727249145508f, yRot: -179.02911376953125f } - "contest2019": { dim: "wc:playground", x: 2600, y: 21, z: -1222, time: 1696965111986L, xRot: 35.0999641418457f, yRot: 226.72409057617188f } - "clennon": { dim: "wc:westeros", x: -8212, y: 45, z: 161, time: 1696965111987L, xRot: 10.415974617004395f, yRot: 25.93460464477539f } - "javiv": { dim: "wc:playground", x: 242, y: 21, z: 3187, time: 1696965111987L, xRot: 7.961338043212891f, yRot: -103.74783325195312f } - "jmp": { dim: "wc:playground", x: 1145, y: 21, z: 3104, time: 1696965111987L, xRot: 70.79994201660156f, yRot: -57.996063232421875f } - "veg": { dim: "wc:playground", x: 864, y: 25, z: 3018, time: 1696965111987L, xRot: 6.299912452697754f, yRot: -23.946016311645508f } - "tact": { dim: "wc:playground", x: 862, y: 21, z: 3223, time: 1696965111987L, xRot: 84.59993743896484f, yRot: -24.395965576171875f } - "justcallmeJack": { dim: "wc:playground", x: 670, y: 21, z: 3028, time: 1696965111988L, xRot: 33.14999771118164f, yRot: -40.59666061401367f } - "smp": { dim: "wc:playground", x: 1063, y: 21, z: 3215, time: 1696965111988L, xRot: 5.249994277954102f, yRot: -47.945167541503906f } - "bantsy": { dim: "wc:playground", x: 1065, y: 21, z: 3420, time: 1696965111988L, xRot: 5.850055694580078f, yRot: 317.1553955078125f } - "banty": { dim: "wc:playground", x: 1065, y: 21, z: 3420, time: 1696965111988L, xRot: 5.850055694580078f, yRot: 317.1553955078125f } - "ducksgrave": { dim: "wc:westeros", x: -6763, y: 44, z: -131, time: 1696965111988L, xRot: 8.100092887878418f, yRot: 245.486328125f } - "Jackmeister": { dim: "wc:playground", x: 643, y: 21, z: 2799, time: 1696965111988L, xRot: 9.000015258789062f, yRot: -35.425506591796875f } - "Benja": { dim: "wc:playground", x: -195, y: 21, z: 3015, time: 1696965111988L, xRot: 4.800023555755615f, yRot: -36.78340530395508f } - "wwspiral": { dim: "wc:westeros", x: -4355, y: 41, z: -23574, time: 1696965111988L, xRot: 19.20000648498535f, yRot: -49.29533767700195f } - "knotthfruin": { dim: "wc:westeros", x: -1325, y: 45, z: -14295, time: 1696965111989L, xRot: 1.3499643802642822f, yRot: -127.61337280273438f } - "Rhysling": { dim: "wc:westeros", x: -1798, y: 43, z: 16820, time: 1696965111989L, xRot: 2.2735483646392822f, yRot: 34.924041748046875f } - "ballsawmill": { dim: "wc:westeros", x: -6372, y: 37, z: 18683, time: 1696965111989L, xRot: 11.700630187988281f, yRot: -167.06112670898438f } - "ballseptry": { dim: "wc:westeros", x: -5601, y: 35, z: 19059, time: 1696965111989L, xRot: 4.949945449829102f, yRot: -219.11570739746094f } - "holbeton": { dim: "wc:westeros", x: -6390, y: 44, z: -850, time: 1696965111989L, xRot: 4.6481614112854f, yRot: 1.5781017541885376f } - "comehere": { dim: "wc:playground", x: 42, y: 140, z: -45, time: 1696965111989L, xRot: 4.528726100921631f, yRot: 0.522674560546875f } - "SaltpansTest": { dim: "wc:playground", x: 5013, y: 20, z: 5487, time: 1696965111989L, xRot: 5.999956130981445f, yRot: 99.12272644042969f } - "Knottham3": { dim: "wc:westeros", x: 36, y: 144, z: -14235, time: 1696965111989L, xRot: -2.2500128746032715f, yRot: -27.55987548828125f } - "woeninja2011": { dim: "wc:playground", x: -305, y: 23, z: 3200, time: 1696965111990L, xRot: -9.749990463256836f, yRot: -166.65283203125f } - "woeninja": { dim: "wc:playground", x: -305, y: 23, z: 3200, time: 1696965111990L, xRot: -9.749990463256836f, yRot: -166.65283203125f } - "Ahorn": { dim: "wc:playground", x: 330, y: 21, z: 2899, time: 1696965111990L, xRot: 71.6999740600586f, yRot: 190.50111389160156f } - "ouch": { dim: "wc:westeros", x: -9113, y: 201, z: 21138, time: 1696965111990L, xRot: 51.299156188964844f, yRot: 237.74603271484375f } - "koolaid": { dim: "wc:playground", x: -191, y: 21, z: 3412, time: 1696965111990L, xRot: 5.399999618530273f, yRot: 176.4609375f } - "lordhewettstown": { dim: "wc:westeros", x: -8290, y: 69, z: 17752, time: 1696965111990L, xRot: -27.865121841430664f, yRot: 106.69654083251953f } - "eastwatch": { dim: "wc:westeros", x: 5341, y: 39, z: -15969, time: 1696965111990L, xRot: -7.350029945373535f, yRot: 199.6165771484375f } - "EastwatchByTheSea": { dim: "wc:westeros", x: 5367, y: 145, z: -16060, time: 1696965111990L, xRot: 21.149927139282227f, yRot: 179.5169677734375f } - "knottpeak": { dim: "wc:westeros", x: 140, y: 253, z: -14008, time: 1696965111990L, xRot: 21.450077056884766f, yRot: -181.159912109375f } - "rkfcastle": { dim: "wc:westeros", x: -3649, y: 67, z: 9823, time: 1696965111991L, xRot: 13.049980163574219f, yRot: -331.1302490234375f } - "rkf1": { dim: "wc:westeros", x: -3652, y: 43, z: 9493, time: 1696965112002L, xRot: 10.64999771118164f, yRot: 94.56786346435547f } - "rkf2": { dim: "wc:westeros", x: -4104, y: 56, z: 9291, time: 1696965112002L, xRot: 30.450023651123047f, yRot: 96.81623077392578f } - "rkf3": { dim: "wc:westeros", x: -3444, y: 69, z: 9813, time: 1696965112002L, xRot: 23.426008224487305f, yRot: -44.780418395996094f } - "rkf5": { dim: "wc:westeros", x: -3775, y: 55, z: 9286, time: 1696965112002L, xRot: 47.54999923706055f, yRot: 320.91937255859375f } - "rkf4": { dim: "wc:westeros", x: -4014, y: 55, z: 9179, time: 1696965112002L, xRot: 9.600048065185547f, yRot: 28.865270614624023f } - "rankenfell": { dim: "wc:westeros", x: -3943, y: 46, z: 9665, time: 1696965112003L, xRot: 11.399955749511719f, yRot: -122.93050384521484f } - "silverhilltown": { dim: "wc:westeros", x: -4403, y: 76, z: 13495, time: 1696965112003L, xRot: -10.050000190734863f, yRot: -347.6291809082031f } - "veggie": { dim: "wc:playground", x: 864, y: 25, z: 3018, time: 1696965112003L, xRot: 6.299912452697754f, yRot: -23.946016311645508f } - "Oldtown": { dim: "wc:westeros", x: -8536, y: 76, z: 22712, time: 1696965112003L, xRot: -23.700021743774414f, yRot: -1.0433349609375f } - "nubcaker": { dim: "wc:playground", x: -593, y: 21, z: 3010, time: 1696965112003L, xRot: 36.45000076293945f, yRot: -47.344879150390625f } - "sauron": { dim: "wc:westeros", x: -8450, y: 64, z: 22244, time: 1696965112003L, xRot: -5.850175857543945f, yRot: -3.5914306640625f } - "Ben": { dim: "wc:playground", x: 1067, y: 28, z: 2585, time: 1696965112003L, xRot: 2.6999924182891846f, yRot: -132.99732971191406f } - "bEnPwEn": { dim: "wc:playground", x: 1124, y: 2, z: 2549, time: 1696965112003L, xRot: 2.249992847442627f, yRot: -176.94732666015625f } - "mushimi": { dim: "wc:playground", x: -202, y: 21, z: 3418, time: 1696965112004L, xRot: -2.9999942779541016f, yRot: 315.5110168457031f } - "aslanio": { dim: "wc:playground", x: 856, y: 21, z: 3423, time: 1696965112004L, xRot: 13.499953269958496f, yRot: -30.671987533569336f } - "aslan": { dim: "wc:playground", x: 856, y: 21, z: 3423, time: 1696965112004L, xRot: 13.499953269958496f, yRot: -30.671987533569336f } - "burn": { dim: "wc:westeros", x: -8451, y: 64, z: 22243, time: 1696965112004L, xRot: 48.44990921020508f, yRot: -278.6925048828125f } - "whamlet2": { dim: "wc:westeros", x: -2652, y: 52, z: -2390, time: 1696965112004L, xRot: 5.597984790802002f, yRot: 276.3919677734375f } - "veggievampires": { dim: "wc:playground", x: 381, y: 33, z: 497, time: 1696965112004L, xRot: 42.89980697631836f, yRot: -184.35321044921875f } - "ecthelion": { dim: "wc:playground", x: -72, y: 20, z: 2348, time: 1696965112004L, xRot: 11.999974250793457f, yRot: -184.14474487304688f } - "Seri": { dim: "wc:playground", x: -412, y: 21, z: 3419, time: 1696965112004L, xRot: -7.126718521118164f, yRot: -35.82366943359375f } - "stackspearcastle": { dim: "wc:westeros", x: -6025, y: 73, z: 8409, time: 1696965112005L, xRot: -15.771363258361816f, yRot: -121.34529113769531f } - "Spinach": { dim: "wc:playground", x: -409, y: 21, z: 3218, time: 1696965112005L, xRot: 11.99998664855957f, yRot: -43.23907470703125f } - "SpinachPizza": { dim: "wc:playground", x: -409, y: 21, z: 3218, time: 1696965112005L, xRot: 11.99998664855957f, yRot: -43.23907470703125f } - "ambroseham3": { dim: "wc:westeros", x: -3119, y: 53, z: 17034, time: 1696965112005L, xRot: -0.000037887693906668574f, yRot: -207.9139404296875f } - "lemonbear": { dim: "wc:playground", x: 32, y: 116, z: 2282, time: 1696965112005L, xRot: 8.850044250488281f, yRot: -177.45065307617188f } - "spinachhotel": { dim: "wc:playground", x: -403, y: 21, z: 3337, time: 1696965112005L, xRot: 20.053619384765625f, yRot: -176.60629272460938f } - "Nero09": { dim: "wc:playground", x: -621, y: 21, z: 3624, time: 1696965112005L, xRot: 10.349960327148438f, yRot: -37.446319580078125f } - "hgtowngate": { dim: "wc:westeros", x: -4832, y: 39, z: 18642, time: 1696965112005L, xRot: 8.250032424926758f, yRot: 14.419769287109375f } - "willas": { dim: "wc:playground", x: -620, y: 21, z: 3422, time: 1696965112005L, xRot: 27.600051879882812f, yRot: 180.86048889160156f } - "hawthorne": { dim: "wc:westeros", x: -2283, y: 59, z: 13009, time: 1696965112006L, xRot: 14.849970817565918f, yRot: -84.29863739013672f } - "holt": { dim: "wc:westeros", x: 2363, y: 48, z: -3361, time: 1696965112006L, xRot: -12.750057220458984f, yRot: -150.651611328125f } - "dfhf1": { dim: "wc:westeros", x: 5357, y: 34, z: -8096, time: 1696965112006L, xRot: 17.700008392333984f, yRot: -35.25067901611328f } - "ramsaysmill": { dim: "wc:westeros", x: 4569, y: 46, z: -8808, time: 1696965112006L, xRot: 22.34987449645996f, yRot: -2.5499267578125f } - "chernobyl": { dim: "wc:playground", x: -447, y: 21, z: -302, time: 1696965112006L, xRot: 17.84998321533203f, yRot: -0.14933553338050842f } - "maegorsholdfast": { dim: "wc:westeros", x: 3401, y: 123, z: 13444, time: 1696965112006L, xRot: -39.14997482299805f, yRot: -190.94049072265625f } - "otht": { dim: "wc:playground", x: 2276, y: 20, z: 1191, time: 1696965112006L, xRot: -8.049233436584473f, yRot: -0.067352294921875f } - "haigh": { dim: "wc:westeros", x: -541, y: 66, z: 4716, time: 1696965112006L, xRot: 39.898353576660156f, yRot: 271.19195556640625f } - "hewhoisred": { dim: "wc:playground", x: 841, y: 21, z: 3623, time: 1696965112006L, xRot: 0.7500733733177185f, yRot: 46.8035888671875f } - "redmond": { dim: "wc:playground", x: 841, y: 21, z: 3623, time: 1696965112007L, xRot: 0.7500733733177185f, yRot: 46.8035888671875f } - "watergardenstest": { dim: "wc:playground", x: 1544, y: 16, z: -303, time: 1696965112007L, xRot: 2.0999836921691895f, yRot: -266.94757080078125f } - "sunspeartest": { dim: "wc:playground", x: 1925, y: 16, z: -425, time: 1696965112007L, xRot: -6.900150299072266f, yRot: -179.05918884277344f } - "Mtanner": { dim: "wc:westeros", x: 3280, y: 93, z: 17884, time: 1696965112007L, xRot: 54.75f, yRot: -269.2548828125f } - "holtbridge": { dim: "wc:westeros", x: 2626, y: 45, z: -3730, time: 1696965112007L, xRot: 0.8999971747398376f, yRot: -356.7516174316406f } - "JEHINC": { dim: "wc:playground", x: -404, y: 21, z: 3631, time: 1696965112018L, xRot: 9.553533554077148f, yRot: -36.81121826171875f } - "ambrosetown2": { dim: "wc:westeros", x: -2678, y: 36, z: 17012, time: 1696965112018L, xRot: 2.395303726196289f, yRot: 189.2421112060547f } - "banetown3": { dim: "wc:westeros", x: -6010, y: 76, z: 7189, time: 1696965112018L, xRot: 2.4000823497772217f, yRot: -55.694759368896484f } - "bfhf2": { dim: "wc:westeros", x: -6398, y: 44, z: 7634, time: 1696965112018L, xRot: -15.599936485290527f, yRot: 251.80514526367188f } - "dfringfort": { dim: "wc:westeros", x: 6101, y: 80, z: -7923, time: 1696965112018L, xRot: -8.849991798400879f, yRot: 4.213961601257324f } - "starpikehf1": { dim: "wc:westeros", x: -3422, y: 59, z: 19360, time: 1696965112018L, xRot: -10.949872016906738f, yRot: 52.15794372558594f } - "holtlc1": { dim: "wc:westeros", x: 2690, y: 50, z: -3200, time: 1696965112018L, xRot: 2.399975299835205f, yRot: 251.04852294921875f } - "holtlc2": { dim: "wc:westeros", x: 2932, y: 51, z: -3439, time: 1696965112018L, xRot: 8.09998607635498f, yRot: -77.30157470703125f } - "holthunting": { dim: "wc:westeros", x: 3033, y: 48, z: -3468, time: 1696965112019L, xRot: 1.4999809265136719f, yRot: -126.351806640625f } - "Auscarbone": { dim: "wc:playground", x: -198, y: 21, z: 3627, time: 1696965112019L, xRot: 2.549999475479126f, yRot: -44.69757080078125f } - "Auscar": { dim: "wc:playground", x: -198, y: 21, z: 3627, time: 1696965112019L, xRot: 2.549999475479126f, yRot: -44.69757080078125f } - "thecoddfish": { dim: "wc:playground", x: 1265, y: 20, z: 2178, time: 1696965112019L, xRot: -2.1000053882598877f, yRot: -270.0725402832031f } - "det13": { dim: "wc:playground", x: 856, y: 21, z: 3627, time: 1696965112019L, xRot: -6.450005531311035f, yRot: 316.3533020019531f } - "HalfCat": { dim: "wc:playground", x: -616, y: 21, z: 3631, time: 1696965112019L, xRot: 5.051360130310059f, yRot: -40.79254150390625f } - "awesomeguy314": { dim: "wc:playground", x: 18, y: 21, z: 3220, time: 1696965112020L, xRot: 2.2212538719177246f, yRot: -38.9882698059082f } - "wylla": { dim: "wc:playground", x: 18, y: 21, z: 3220, time: 1696965112020L, xRot: 2.2212538719177246f, yRot: -38.9882698059082f } - "ambrose": { dim: "wc:westeros", x: -3000, y: 43, z: 17201, time: 1696965112020L, xRot: 13.349954605102539f, yRot: -85.15298461914062f } - "ambrosefarm": { dim: "wc:westeros", x: -3355, y: 64, z: 16828, time: 1696965112020L, xRot: -4.571592330932617f, yRot: 78.88147735595703f } - "darkavenger": { dim: "wc:playground", x: 90, y: 21, z: 3487, time: 1696965112022L, xRot: 5.6999616622924805f, yRot: 1.4176955223083496f } - "Kuzlov": { dim: "wc:playground", x: 20, y: 21, z: 3632, time: 1696965112022L, xRot: 0.29999399185180664f, yRot: -45.640098571777344f } - "bird": { dim: "wc:playground", x: 738, y: 31, z: 3267, time: 1696965112022L, xRot: -10.199994087219238f, yRot: 70.40333557128906f } - "mcider": { dim: "wc:westeros", x: 3198, y: 96, z: 17659, time: 1696965112022L, xRot: 13.64987564086914f, yRot: 103.2435531616211f } - "mmother": { dim: "wc:westeros", x: 3749, y: 109, z: 17328, time: 1696965112022L, xRot: 24.149877548217773f, yRot: 358.2434997558594f } - "malleryhf1": { dim: "wc:westeros", x: 4330, y: 40, z: 11422, time: 1696965112022L, xRot: 4.499935150146484f, yRot: 185.1598663330078f } - "leek": { dim: "wc:westeros", x: 4792, y: 59, z: 11965, time: 1696965112022L, xRot: -18.60008430480957f, yRot: 64.63235473632812f } - "Bunnions": { dim: "wc:westeros", x: -5935, y: 104, z: 7246, time: 1696965112022L, xRot: -17.099803924560547f, yRot: 89.83134460449219f } - "NERO": { dim: "wc:playground", x: 224, y: 21, z: 3623, time: 1696965112022L, xRot: 10.04994010925293f, yRot: -28.59632110595703f } - "OTUndercroft": { dim: "wc:westeros", x: -8866, y: 35, z: 22794, time: 1696965112022L, xRot: -4.649991512298584f, yRot: -180.58261108398438f } - "reactorcore": { dim: "wc:playground", x: -473, y: 16, z: -309, time: 1696965112022L, xRot: 75.74994659423828f, yRot: 179.25111389160156f } - "rykkerhf": { dim: "wc:westeros", x: 4964, y: 60, z: 11125, time: 1696965112023L, xRot: -4.649751663208008f, yRot: 204.8714599609375f } - "electric": { dim: "wc:playground", x: -409, y: 21, z: 1373, time: 1696965112023L, xRot: 11.250205039978027f, yRot: -44.50786209106445f } - "holyhorse": { dim: "wc:playground", x: -270, y: 21, z: 1543, time: 1696965112023L, xRot: 57.000030517578125f, yRot: -265.00775146484375f } - "thlandedknight": { dim: "wc:westeros", x: -6462, y: 73, z: 10298, time: 1696965112023L, xRot: -2.250063419342041f, yRot: 8.616181373596191f } - "thhamlet2": { dim: "wc:westeros", x: -6371, y: 56, z: 10166, time: 1696965112023L, xRot: 14.699939727783203f, yRot: -184.88375854492188f } - "thruin1": { dim: "wc:westeros", x: -6205, y: 84, z: 10098, time: 1696965112023L, xRot: -19.800048828125f, yRot: -267.6836853027344f } - "thcastle": { dim: "wc:westeros", x: -5938, y: 82, z: 10328, time: 1696965112023L, xRot: 15.299956321716309f, yRot: -173.60894775390625f } - "tarbeckhall": { dim: "wc:westeros", x: -5938, y: 82, z: 10328, time: 1696965112023L, xRot: 15.299956321716309f, yRot: -173.60894775390625f } - "thhamlet3": { dim: "wc:westeros", x: -5798, y: 69, z: 10186, time: 1696965112023L, xRot: 6.749922752380371f, yRot: -85.109619140625f } - "woodwrighthuntinglodge": { dim: "wc:westeros", x: -5823, y: 63, z: 20067, time: 1696965112024L, xRot: -4.050037384033203f, yRot: 115.14794921875f } - "cavernlake": { dim: "wc:westeros", x: -1050, y: 45, z: -14425, time: 1696965112024L, xRot: 9.599946975708008f, yRot: -94.46268463134766f } - "Zsomiking99": { dim: "wc:playground", x: 647, y: 21, z: 3422, time: 1696965112024L, xRot: 5.849969387054443f, yRot: -44.195587158203125f } - "Zsomiking": { dim: "wc:playground", x: 647, y: 21, z: 3422, time: 1696965112024L, xRot: 5.849969387054443f, yRot: -44.195587158203125f } - "Knottdruid": { dim: "wc:westeros", x: -532, y: 49, z: -14267, time: 1696965112035L, xRot: -5.700026512145996f, yRot: 359.7388000488281f } - "knottdruids": { dim: "wc:westeros", x: -531, y: 49, z: -14269, time: 1696965112035L, xRot: -7.200037002563477f, yRot: -359.6601867675781f } - "druidhill": { dim: "wc:westeros", x: -531, y: 49, z: -14269, time: 1696965112035L, xRot: -7.200037002563477f, yRot: -359.6601867675781f } - "harrenhaltest": { dim: "wc:playground", x: 1829, y: 21, z: -1245, time: 1696965112035L, xRot: 89.24996948242188f, yRot: 268.59686279296875f } - "Hull": { dim: "wc:westeros", x: 7397, y: 61, z: 10646, time: 1696965112036L, xRot: 52.79999542236328f, yRot: 309.6322937011719f } - "CastleDriftmark": { dim: "wc:westeros", x: 7550, y: 136, z: 10680, time: 1696965112036L, xRot: 7.200023651123047f, yRot: 135.78228759765625f } - "Jack": { dim: "wc:playground", x: 670, y: 21, z: 3028, time: 1696965112036L, xRot: 33.14999771118164f, yRot: -40.59666061401367f } - "phondi": { dim: "wc:playground", x: 432, y: 21, z: 3418, time: 1696965112036L, xRot: 1.3500083684921265f, yRot: -46.296478271484375f } - "Knott": { dim: "wc:westeros", x: -400, y: 51, z: -14413, time: 1696965112036L, xRot: -1.3502213954925537f, yRot: 7.988423824310303f } - "townattarbeckhall": { dim: "wc:westeros", x: -6053, y: 59, z: 10282, time: 1696965112036L, xRot: 22.650146484375f, yRot: -241.1062774658203f } - "barkus": { dim: "wc:playground", x: -455, y: 21, z: -1609, time: 1696965112036L, xRot: 35.24979019165039f, yRot: -10.27294921875f } - "flowertest": { dim: "wc:playground", x: 413, y: 20, z: -1371, time: 1696965112036L, xRot: 14.399991035461426f, yRot: -90.38483428955078f } - "king": { dim: "wc:playground", x: 230, y: 22, z: 3406, time: 1696965112037L, xRot: -3.149984121322632f, yRot: -268.64697265625f } - "antony": { dim: "wc:playground", x: 230, y: 22, z: 3406, time: 1696965112037L, xRot: -3.149984121322632f, yRot: -268.64697265625f } - "otwallguide": { dim: "wc:westeros", x: -8081, y: 93, z: 22678, time: 1696965112037L, xRot: 18.600040435791016f, yRot: -90.4166488647461f } - "hgh2": { dim: "wc:westeros", x: -201, y: 78, z: 5058, time: 1696965112037L, xRot: 21.912992477416992f, yRot: 120.44998168945312f } - "hgh3": { dim: "wc:westeros", x: 26, y: 86, z: 4699, time: 1696965112037L, xRot: 21.784170150756836f, yRot: 112.80207061767578f } - "hgh6": { dim: "wc:westeros", x: 503, y: 87, z: 4524, time: 1696965112037L, xRot: 4.326323509216309f, yRot: 198.61654663085938f } - "hgh5": { dim: "wc:westeros", x: 356, y: 81, z: 5053, time: 1696965112037L, xRot: 13.438807487487793f, yRot: 50.794708251953125f } - "dargood": { dim: "wc:westeros", x: 5157, y: 44, z: 11436, time: 1696965112037L, xRot: -7.800049781799316f, yRot: -175.81549072265625f } - "knottmine": { dim: "wc:westeros", x: -395, y: 94, z: -14043, time: 1696965112037L, xRot: 5.700009822845459f, yRot: -358.60528564453125f } - "antlershf": { dim: "wc:westeros", x: 3338, y: 43, z: 10261, time: 1696965112037L, xRot: -8.549839973449707f, yRot: -0.1633417308330536f } - "darkwood": { dim: "wc:westeros", x: 5775, y: 64, z: 11427, time: 1696965112037L, xRot: 19.34992218017578f, yRot: -193.36611938476562f } - "tonyseptry": { dim: "wc:playground", x: 366, y: 203, z: 3364, time: 1696965112038L, xRot: 1.4999653100967407f, yRot: -80.24687957763672f } - "wylcastle": { dim: "wc:westeros", x: 1814, y: 166, z: 20484, time: 1696965112038L, xRot: 15.300000190734863f, yRot: 2.2408807277679443f } - "hightide": { dim: "wc:westeros", x: 7149, y: 103, z: 11176, time: 1696965112038L, xRot: 4.199928283691406f, yRot: 85.83316040039062f } - "septofthesnows": { dim: "wc:westeros", x: 2248, y: 40, z: -2371, time: 1696965112038L, xRot: -17.250015258789062f, yRot: -358.8106994628906f } - "briarwatch": { dim: "wc:westeros", x: 2697, y: 59, z: -1822, time: 1696965112038L, xRot: -1.8515539169311523f, yRot: -13.74285888671875f } - "AlexisTragic": { dim: "wc:playground", x: 1093, y: 22, z: 3674, time: 1696965112038L, xRot: -1.5000168085098267f, yRot: -270.2506408691406f } - "Alex": { dim: "wc:playground", x: 1093, y: 22, z: 3674, time: 1696965112038L, xRot: -1.5000168085098267f, yRot: -270.2506408691406f } - "driftmarkhf": { dim: "wc:westeros", x: 6662, y: 70, z: 10843, time: 1696965112038L, xRot: 40.50021743774414f, yRot: 119.43106079101562f } - "lEcthelionl": { dim: "wc:playground", x: -194, y: 20, z: 2199, time: 1696965112038L, xRot: 5.2500081062316895f, yRot: -36.90673828125f } - "pussywillows": { dim: "wc:westeros", x: 1033, y: 35, z: 9793, time: 1696965112039L, xRot: -18.126541137695312f, yRot: 268.3566589355469f } - "greyshieldtest": { dim: "wc:playground", x: 4089, y: 37, z: 5520, time: 1696965112039L, xRot: -2.699910879135132f, yRot: -357.1773681640625f } - "norreymine": { dim: "wc:westeros", x: 502, y: 79, z: -14758, time: 1696965112039L, xRot: -3.650362491607666f, yRot: -287.09979248046875f } - "rosefields": { dim: "wc:westeros", x: -4724, y: 51, z: 18821, time: 1696965112039L, xRot: 15.899935722351074f, yRot: -106.03821563720703f } - "correy": { dim: "wc:westeros", x: 6662, y: 70, z: 10844, time: 1696965112039L, xRot: 8.550228118896484f, yRot: -3.118896484375f } - "thhamlet1": { dim: "wc:westeros", x: -6649, y: 61, z: 10124, time: 1696965112039L, xRot: -6.244632720947266f, yRot: -213.4506378173828f } - "Harlenton": { dim: "wc:westeros", x: -4594, y: 50, z: 18751, time: 1696965112039L, xRot: 3.599912405014038f, yRot: -260.383544921875f } - "vikingcorgi": { dim: "wc:playground", x: 439, y: 21, z: 3011, time: 1696965112039L, xRot: 31.361328125f, yRot: -179.3479461669922f } - "ashspookyhill": { dim: "wc:westeros", x: 735, y: 83, z: -4052, time: 1696965112039L, xRot: -0.00019056796736549586f, yRot: 83.83545684814453f } - "riverlandssept": { dim: "wc:westeros", x: -1452, y: 73, z: 10463, time: 1696965112039L, xRot: 9.599990844726562f, yRot: 144.24493408203125f } - "brothelatthecrossroads": { dim: "wc:westeros", x: -934, y: 45, z: 10966, time: 1696965112039L, xRot: -8.480613708496094f, yRot: -66.29076385498047f } - "blacklard": { dim: "wc:westeros", x: -1436, y: 60, z: 10755, time: 1696965112040L, xRot: -0.45004168152809143f, yRot: -174.79278564453125f } - "hoarfrosthill": { dim: "wc:westeros", x: 1634, y: 69, z: -16040, time: 1696965112040L, xRot: -3.749985933303833f, yRot: -199.2313690185547f } - "wyl": { dim: "wc:westeros", x: 1821, y: 46, z: 20201, time: 1696965112040L, xRot: -2.100005865097046f, yRot: 8.840555191040039f } - "wyltown": { dim: "wc:westeros", x: 2303, y: 46, z: 20317, time: 1696965112040L, xRot: -11.399989128112793f, yRot: -88.07361602783203f } - "ashwater": { dim: "wc:westeros", x: 1107, y: 117, z: -4016, time: 1696965112040L, xRot: 2.700077533721924f, yRot: -269.4302062988281f } - "LordUnicorn1023": { dim: "wc:playground", x: 436, y: 21, z: 3218, time: 1696965112040L, xRot: 9.161319732666016f, yRot: -46.4481201171875f } - "aberweald": { dim: "wc:westeros", x: -399, y: 36, z: 11480, time: 1696965112040L, xRot: -3.206214666366577f, yRot: -214.5012969970703f } - "zanji": { dim: "wc:playground", x: 224, y: 21, z: 3420, time: 1696965112040L, xRot: -0.8999952077865601f, yRot: 311.9556579589844f } - "necktrees": { dim: "wc:playground", x: -1938, y: 72, z: 1957, time: 1696965112040L, xRot: -1.0500292778015137f, yRot: 88.6961669921875f } - "ashcastle": { dim: "wc:westeros", x: 968, y: 105, z: -3719, time: 1696965112040L, xRot: 45.600013732910156f, yRot: -151.2261505126953f } - "whschems": { dim: "wc:playground", x: 1555, y: 89, z: 99, time: 1696965112040L, xRot: -0.29985758662223816f, yRot: -176.9058837890625f } - "honeyhewestate": { dim: "wc:westeros", x: -2019, y: 56, z: 10978, time: 1696965112041L, xRot: -9.149955749511719f, yRot: -287.31396484375f } - "ric": { dim: "wc:playground", x: 644, y: 21, z: 3827, time: 1696965112041L, xRot: -3.8525407314300537f, yRot: -45.96671676635742f } - "ssquarry": { dim: "wc:westeros", x: -1659, y: 80, z: 10481, time: 1696965112051L, xRot: 0.5999589562416077f, yRot: -179.71865844726562f } - "Middleton": { dim: "wc:westeros", x: -1180, y: 41, z: 11434, time: 1696965112052L, xRot: 2.6999738216400146f, yRot: 176.98370361328125f } - "Corne": { dim: "wc:westeros", x: -23, y: 59, z: 11943, time: 1696965112052L, xRot: -5.024910926818848f, yRot: 29.7872314453125f } - "Yore": { dim: "wc:westeros", x: -377, y: 40, z: 11191, time: 1696965112052L, xRot: 4.12214994430542f, yRot: 66.88103485107422f } - "CronesMill": { dim: "wc:westeros", x: -350, y: 40, z: 10826, time: 1696965112052L, xRot: 6.372199535369873f, yRot: 59.38096237182617f } - "Bourney": { dim: "wc:westeros", x: -1769, y: 52, z: 11642, time: 1696965112052L, xRot: 2.550055503845215f, yRot: 184.4359893798828f } - "feldeffen": { dim: "wc:westeros", x: -1638, y: 62, z: 10641, time: 1696965112053L, xRot: -3.900036096572876f, yRot: 175.93109130859375f } - "vulturesroost": { dim: "wc:westeros", x: -305, y: 96, z: 20739, time: 1696965112053L, xRot: 4.799571514129639f, yRot: 230.9726104736328f } - "StoneySept": { dim: "wc:westeros", x: -1561, y: 50, z: 11015, time: 1696965112053L, xRot: -2.5363378524780273f, yRot: -0.4046787619590759f } - "trantmanse": { dim: "wc:westeros", x: 2306, y: 110, z: 19010, time: 1696965112053L, xRot: 17.099939346313477f, yRot: -272.1185302734375f } - "benjicotscrossing": { dim: "wc:westeros", x: -632, y: 39, z: 10614, time: 1696965112053L, xRot: 27.474571228027344f, yRot: -184.67352294921875f } - "woodwrighthamlet3": { dim: "wc:westeros", x: -5735, y: 44, z: 19898, time: 1696965112053L, xRot: -1.499967098236084f, yRot: -293.5061950683594f } - "CashLobby": { dim: "wc:playground", x: -280, y: 31, z: 2108, time: 1696965112053L, xRot: 19.949968338012695f, yRot: -268.1396484375f } - "CashLobbyWest": { dim: "wc:playground", x: -333, y: 31, z: 2107, time: 1696965112053L, xRot: 14.09996223449707f, yRot: -89.03952026367188f } - "sslumber": { dim: "wc:westeros", x: -1348, y: 40, z: 10940, time: 1696965112053L, xRot: -0.46457549929618835f, yRot: -97.20146942138672f } - "ddmanor": { dim: "wc:westeros", x: 5567, y: 40, z: 11897, time: 1696965112054L, xRot: -6.900028228759766f, yRot: -251.716064453125f } - "thseptry": { dim: "wc:westeros", x: -6609, y: 74, z: 10048, time: 1696965112054L, xRot: -2.8499972820281982f, yRot: -229.9605712890625f } - "ss": { dim: "wc:westeros", x: -1566, y: 52, z: 10916, time: 1696965112054L, xRot: -0.13635411858558655f, yRot: 359.44525146484375f } - "HollowHill": { dim: "wc:westeros", x: -2410, y: 74, z: 11288, time: 1696965112054L, xRot: 17.12670135498047f, yRot: 80.72566986083984f } - "Pinkmaiden": { dim: "wc:westeros", x: -2442, y: 45, z: 9836, time: 1696965112054L, xRot: -1.6681245565414429f, yRot: -291.51788330078125f } - "Swynford": { dim: "wc:westeros", x: -1259, y: 47, z: 10152, time: 1696965112054L, xRot: -2.6999645233154297f, yRot: 203.093505859375f } - "AcornHall": { dim: "wc:westeros", x: -1300, y: 50, z: 9476, time: 1696965112054L, xRot: -20.99994659423828f, yRot: 1.1182727813720703f } - "OldFerry": { dim: "wc:westeros", x: -2529, y: 42, z: 10518, time: 1696965112054L, xRot: 5.744782447814941f, yRot: 96.59857940673828f } - "Spiderwood": { dim: "wc:westeros", x: -2367, y: 48, z: 10534, time: 1696965112054L, xRot: -16.949987411499023f, yRot: 112.9271240234375f } - "ThreepennyWood": { dim: "wc:westeros", x: -1180, y: 36, z: 11170, time: 1696965112054L, xRot: 3.908979654312134f, yRot: 268.8025817871094f } - "Lychester": { dim: "wc:westeros", x: -1191, y: 46, z: 7973, time: 1696965112054L, xRot: 3.2299602031707764f, yRot: 328.8787536621094f } - "Riverrun": { dim: "wc:westeros", x: -2180, y: 37, z: 8116, time: 1696965112055L, xRot: -9.000027656555176f, yRot: 225.00477600097656f } - "starpikehf2": { dim: "wc:westeros", x: -2893, y: 80, z: 19884, time: 1696965112055L, xRot: 33.899993896484375f, yRot: 213.2760467529297f } - "dstest": { dim: "wc:playground", x: 1395, y: 23, z: 18, time: 1696965112055L, xRot: -9.149992942810059f, yRot: -41.09162902832031f } - "jirik": { dim: "wc:playground", x: 433, y: 21, z: 3827, time: 1696965112055L, xRot: -13.602587699890137f, yRot: 316.7334289550781f } - "jirik333": { dim: "wc:playground", x: 433, y: 21, z: 3827, time: 1696965112055L, xRot: -13.602587699890137f, yRot: 316.7334289550781f } - "oldplots": { dim: "wc:playground", x: 1256, y: 21, z: -1424, time: 1696965112055L, xRot: 13.5f, yRot: -168.9722900390625f } - "ghosthillolive": { dim: "wc:westeros", x: 7761, y: 46, z: 23467, time: 1696965112055L, xRot: -0.7500365972518921f, yRot: 218.21893310546875f } - "hoarfrostvillage": { dim: "wc:westeros", x: 1411, y: 64, z: -15537, time: 1696965112055L, xRot: 28.34989356994629f, yRot: -1.965380072593689f } - "sffarm1": { dim: "wc:westeros", x: -6053, y: 58, z: 10622, time: 1696965112055L, xRot: 31.34992790222168f, yRot: -266.7685546875f } - "sffarm2": { dim: "wc:westeros", x: -6158, y: 60, z: 10834, time: 1696965112055L, xRot: 13.499927520751953f, yRot: -6.367919921875f } - "sfseptry": { dim: "wc:westeros", x: -5890, y: 81, z: 10860, time: 1696965112056L, xRot: 21.599931716918945f, yRot: -78.51708984375f } - "sfquarry": { dim: "wc:westeros", x: -5842, y: 92, z: 10719, time: 1696965112056L, xRot: 15.14992618560791f, yRot: -85.8671875f } - "spicetown": { dim: "wc:westeros", x: 6824, y: 64, z: 11049, time: 1696965112056L, xRot: -2.1603968143463135f, yRot: -83.31655883789062f } - "HolyHall": { dim: "wc:westeros", x: -4742, y: 40, z: 17770, time: 1696965112056L, xRot: -8.52667236328125f, yRot: -93.35065460205078f } - "HolyHallRoseRoad": { dim: "wc:westeros", x: -3925, y: 74, z: 17413, time: 1696965112056L, xRot: 4.499973773956299f, yRot: 42.34318923950195f } - "CashinoWest": { dim: "wc:playground", x: -333, y: 19, z: 2106, time: 1696965112056L, xRot: 9.749961853027344f, yRot: -88.1395034790039f } - "starpike": { dim: "wc:westeros", x: -3164, y: 120, z: 19496, time: 1696965112056L, xRot: 6.599974632263184f, yRot: -268.5440673828125f } - "Rosewood": { dim: "wc:westeros", x: -3757, y: 53, z: 17441, time: 1696965112056L, xRot: 21.44999885559082f, yRot: 188.44346618652344f } - "lccadet": { dim: "wc:westeros", x: -886, y: 46, z: 7997, time: 1696965112056L, xRot: -3.526459217071533f, yRot: 282.7860107421875f } - "thfarm1": { dim: "wc:westeros", x: -6571, y: 67, z: 10128, time: 1696965112057L, xRot: -4.79964017868042f, yRot: -112.06674194335938f } - "lccranehouses": { dim: "wc:westeros", x: -1299, y: 37, z: 7785, time: 1696965112057L, xRot: -3.600005626678467f, yRot: 269.2460021972656f } - "mimistockwell": { dim: "wc:playground", x: 1072, y: 21, z: 3844, time: 1696965112057L, xRot: 51.53398513793945f, yRot: 172.09312438964844f } - "RousemontHF": { dim: "wc:westeros", x: 588, y: 41, z: 15016, time: 1696965112057L, xRot: -5.699923515319824f, yRot: 176.6790771484375f } - "lchamlet1": { dim: "wc:westeros", x: -1424, y: 39, z: 7399, time: 1696965112057L, xRot: 0.44993314146995544f, yRot: 142.0743865966797f } - "MiniOT": { dim: "wc:playground", x: 2050, y: 35, z: 931, time: 1696965112057L, xRot: -0.749956488609314f, yRot: 178.5571746826172f } - "WFCrypts": { dim: "wc:westeros", x: -1105, y: 68, z: -8542, time: 1696965112057L, xRot: 39.899967193603516f, yRot: -272.1159362792969f } - "sfvillage": { dim: "wc:westeros", x: -6041, y: 54, z: 10681, time: 1696965112057L, xRot: 25.950023651123047f, yRot: -108.343505859375f } - "ssruinedseptry": { dim: "wc:westeros", x: -199, y: 48, z: 10968, time: 1696965112057L, xRot: 7.5245280265808105f, yRot: 1.3265141248703003f } - "wylseptry": { dim: "wc:westeros", x: 926, y: 179, z: 21323, time: 1696965112068L, xRot: 34.64998245239258f, yRot: -239.70950317382812f } - "skane": { dim: "wc:westeros", x: 8260, y: 37, z: -17100, time: 1696965112069L, xRot: -11.443798065185547f, yRot: -205.1687774658203f } - "secretsanta": { dim: "wc:playground", x: -938, y: 20, z: 5014, time: 1696965112069L, xRot: 9.150050163269043f, yRot: 172.33428955078125f } - "dunaengus": { dim: "wc:westeros", x: -6688, y: 93, z: 1129, time: 1696965112069L, xRot: 5.140711307525635f, yRot: -189.34263610839844f } - "transport": { dim: "wc:playground", x: -1107, y: 21, z: 1164, time: 1696965112069L, xRot: 20.249969482421875f, yRot: -2.6544189453125f } - "WellsNorthHf1": { dim: "wc:westeros", x: -3103, y: 88, z: -4872, time: 1696965112070L, xRot: 5.579083442687988f, yRot: 180.70492553710938f } - "WellsNorthLumber": { dim: "wc:westeros", x: -3532, y: 47, z: -5256, time: 1696965112070L, xRot: 13.10006332397461f, yRot: 182.277099609375f } - "WNLumber": { dim: "wc:westeros", x: -3532, y: 47, z: -5256, time: 1696965112070L, xRot: 13.10006332397461f, yRot: 182.277099609375f } - "CastleConstruction": { dim: "wc:westeros", x: -7056, y: 64, z: 23211, time: 1696965112070L, xRot: -4.199984073638916f, yRot: 179.5770263671875f } - "wnhamlet1": { dim: "wc:westeros", x: -2819, y: 52, z: -5131, time: 1696965112070L, xRot: -57.551265716552734f, yRot: -93.3138656616211f } - "endy": { dim: "wc:playground", x: 899, y: 1, z: 1741, time: 1696965112070L, xRot: 6.299915313720703f, yRot: 183.650390625f } - "Vikary": { dim: "wc:westeros", x: -6723, y: 82, z: 9151, time: 1696965112070L, xRot: 2.099982976913452f, yRot: -43.78239822387695f } - "ball": { dim: "wc:westeros", x: -6294, y: 43, z: 18917, time: 1696965112070L, xRot: 10.80599594116211f, yRot: 268.2324523925781f } - "thfarm2": { dim: "wc:westeros", x: -6327, y: 60, z: 10238, time: 1696965112071L, xRot: -4.8000335693359375f, yRot: -35.78379821777344f } - "queensgate": { dim: "wc:westeros", x: 2782, y: 46, z: -16088, time: 1696965112071L, xRot: 8.849968910217285f, yRot: -179.37643432617188f } - "Shipwrightguide": { dim: "wc:playground", x: -695, y: 21, z: 1023, time: 1696965112071L, xRot: 6.450010299682617f, yRot: -269.95355224609375f } - "Schemgeneratorguide": { dim: "wc:playground", x: 280, y: 60, z: -617, time: 1696965112071L, xRot: 2.0999772548675537f, yRot: 266.76446533203125f } - "OtEast": { dim: "wc:westeros", x: -7655, y: 48, z: 22169, time: 1696965112071L, xRot: 3.300025463104248f, yRot: -279.72015380859375f } - "starkmanse": { dim: "wc:westeros", x: 2990, y: 46, z: -2873, time: 1696965112071L, xRot: -12.749977111816406f, yRot: -324.7611083984375f } - "lchamlet2": { dim: "wc:westeros", x: -1072, y: 45, z: 8355, time: 1696965112071L, xRot: -0.30000072717666626f, yRot: 167.2115936279297f } - "lcvillage": { dim: "wc:westeros", x: -1218, y: 41, z: 7636, time: 1696965112071L, xRot: -1.2281655073165894f, yRot: 101.14214324951172f } - "irongiant": { dim: "wc:playground", x: -405, y: 21, z: 2406, time: 1696965112071L, xRot: -35.40000915527344f, yRot: -132.99417114257812f } - "tarbeck": { dim: "wc:westeros", x: -6086, y: 58, z: 10284, time: 1696965112072L, xRot: 14.549972534179688f, yRot: -88.55912017822266f } - "vkhunterlodge": { dim: "wc:westeros", x: -6463, y: 75, z: 9189, time: 1696965112072L, xRot: 1.7999916076660156f, yRot: 52.56339645385742f } - "overlaytest": { dim: "wc:playground", x: -680, y: 22, z: 984, time: 1696965112072L, xRot: 3.6476762294769287f, yRot: -357.8926696777344f } - "thfarm3": { dim: "wc:westeros", x: -6162, y: 68, z: 10240, time: 1696965112072L, xRot: 7.1999897956848145f, yRot: -261.6590270996094f } - "thruin2": { dim: "wc:westeros", x: -6397, y: 105, z: 10746, time: 1696965112072L, xRot: 14.099973678588867f, yRot: -181.0948486328125f } - "sfhamlet1": { dim: "wc:westeros", x: -6928, y: 58, z: 10970, time: 1696965112072L, xRot: -0.450199693441391f, yRot: -265.2342529296875f } - "sflogging": { dim: "wc:westeros", x: -6592, y: 56, z: 10821, time: 1696965112073L, xRot: 10.199982643127441f, yRot: -177.19488525390625f } - "Corona": { dim: "wc:playground", x: 2433, y: 25, z: 2586, time: 1696965112073L, xRot: 16.90241050720215f, yRot: -19.479604721069336f } - "hgtourney": { dim: "wc:westeros", x: -4406, y: 38, z: 18360, time: 1696965112073L, xRot: 6.0002851486206055f, yRot: -130.4167938232422f } - "gaunt": { dim: "wc:westeros", x: 3481, y: 43, z: 11429, time: 1696965112073L, xRot: 0.15002478659152985f, yRot: -86.647705078125f } - "wellsnorthcastle": { dim: "wc:westeros", x: -2970, y: 77, z: -5175, time: 1696965112073L, xRot: -4.547567367553711f, yRot: 4.837921142578125f } - "thhf1": { dim: "wc:westeros", x: -6039, y: 54, z: 10434, time: 1696965112073L, xRot: 1.9500198364257812f, yRot: -274.8587646484375f } - "ashringfort": { dim: "wc:westeros", x: 500, y: 45, z: -3905, time: 1696965112073L, xRot: -9.000001907348633f, yRot: 301.18896484375f } - "ashwood": { dim: "wc:westeros", x: 1103, y: 43, z: -3849, time: 1696965112073L, xRot: 10.049985885620117f, yRot: 77.07415771484375f } - "Oasis": { dim: "wc:westeros", x: 1312, y: 53, z: 25752, time: 1696965112074L, xRot: 21.174671173095703f, yRot: -137.8341827392578f } - "parrentest": { dim: "wc:playground", x: -566, y: 149, z: 3505, time: 1696965112074L, xRot: -10.649967193603516f, yRot: -2.7395808696746826f } - "starvillage1": { dim: "wc:westeros", x: -3564, y: 57, z: 19029, time: 1696965112074L, xRot: 82.79996490478516f, yRot: -229.3931427001953f } - "wellsnorthpeatfarm": { dim: "wc:westeros", x: -3671, y: 45, z: -5279, time: 1696965112074L, xRot: 26.16978645324707f, yRot: -272.1164245605469f } - "wellsnorthhf": { dim: "wc:westeros", x: -3438, y: 74, z: -5063, time: 1696965112074L, xRot: -8.194364547729492f, yRot: -2.9289026260375977f } - "wellsnorthhf2": { dim: "wc:westeros", x: -3153, y: 86, z: -4907, time: 1696965112085L, xRot: 2.7910642623901367f, yRot: 243.66319274902344f } - "wellsnorthvillage": { dim: "wc:westeros", x: -3122, y: 57, z: -5185, time: 1696965112085L, xRot: -0.9757640957832336f, yRot: 297.74078369140625f } - "vkmine": { dim: "wc:westeros", x: -6384, y: 72, z: 8933, time: 1696965112085L, xRot: 8.264140129089355f, yRot: 137.10922241210938f } - "antio": { dim: "wc:playground", x: -622, y: 21, z: 3826, time: 1696965112086L, xRot: 1.4999983310699463f, yRot: -42.478515625f } - "antiochusnikator": { dim: "wc:playground", x: -622, y: 21, z: 3826, time: 1696965112086L, xRot: 1.4999983310699463f, yRot: -42.478515625f } - "gttest": { dim: "wc:playground", x: 1894, y: 20, z: -595, time: 1696965112086L, xRot: 3.149871587753296f, yRot: -183.5900115966797f } - "sflandedknight": { dim: "wc:westeros", x: -6797, y: 52, z: 11083, time: 1696965112086L, xRot: 36.14999771118164f, yRot: 7.315756797790527f } - "wghamlet2": { dim: "wc:westeros", x: -2125, y: 48, z: 18740, time: 1696965112086L, xRot: -6.750080108642578f, yRot: 216.94216918945312f } - "garlic": { dim: "wc:playground", x: 224, y: 22, z: 3624, time: 1696965112087L, xRot: 26.759511947631836f, yRot: -18.085346221923828f } - "antony2": { dim: "wc:playground", x: -416, y: 20, z: 3844, time: 1696965112087L, xRot: -4.949916839599609f, yRot: 269.4901428222656f } - "varys": { dim: "wc:westeros", x: 3371, y: 119, z: 13260, time: 1696965112087L, xRot: 1.4999349117279053f, yRot: -142.4906768798828f } - "HGhuntinglodge": { dim: "wc:westeros", x: -4137, y: 58, z: 18923, time: 1696965112087L, xRot: 15.000015258789062f, yRot: 301.216796875f } - "sftown": { dim: "wc:westeros", x: -6042, y: 61, z: 10846, time: 1696965112087L, xRot: 36.600303649902344f, yRot: -53.59375f } - "thtown": { dim: "wc:westeros", x: -6108, y: 58, z: 10286, time: 1696965112087L, xRot: 6.000163555145264f, yRot: -92.60582733154297f } - "sarsfield": { dim: "wc:westeros", x: -6054, y: 125, z: 10940, time: 1696965112087L, xRot: 11.399834632873535f, yRot: -266.1485900878906f } - "ashruins": { dim: "wc:westeros", x: -117, y: 83, z: -3701, time: 1696965112087L, xRot: 25.499996185302734f, yRot: 281.5235595703125f } - "parrenvillage": { dim: "wc:westeros", x: -6503, y: 68, z: 13520, time: 1696965112088L, xRot: 37.20000457763672f, yRot: -87.00975799560547f } - "wgham3": { dim: "wc:westeros", x: -2299, y: 37, z: 18352, time: 1696965112088L, xRot: -2.699955701828003f, yRot: -124.28144836425781f } - "Summerhall": { dim: "wc:westeros", x: 2910, y: 66, z: 18128, time: 1696965112088L, xRot: 14.10016918182373f, yRot: 0.029221640899777412f } - "PTesla": { dim: "wc:playground", x: 869, y: 21, z: 3837, time: 1696965112088L, xRot: 12.383989334106445f, yRot: 337.0929870605469f } - "wtlighthouse": { dim: "wc:westeros", x: 6913, y: 48, z: 20847, time: 1696965112088L, xRot: -9.900110244750977f, yRot: -280.1331787109375f } - "wgapiary": { dim: "wc:westeros", x: -2456, y: 42, z: 18518, time: 1696965112088L, xRot: -7.0499587059021f, yRot: -36.9814453125f } - "wyland": { dim: "wc:westeros", x: 1538, y: 39, z: 21392, time: 1696965112088L, xRot: 0.8999836444854736f, yRot: -33.43756103515625f } - "wgham4": { dim: "wc:westeros", x: -2979, y: 56, z: 18397, time: 1696965112088L, xRot: 23.250041961669922f, yRot: 103.39021301269531f } - "riversmooth": { dim: "wc:westeros", x: -4348, y: 49, z: 18852, time: 1696965112088L, xRot: 25.349945068359375f, yRot: 66.0184326171875f } - "gauntcastle": { dim: "wc:westeros", x: 3530, y: 44, z: 11186, time: 1696965112088L, xRot: -10.64997673034668f, yRot: -258.84759521484375f } - "mars": { dim: "wc:playground", x: -199, y: 21, z: 3828, time: 1696965112088L, xRot: 7.650089740753174f, yRot: -22.71099853515625f } - "wtstyleguide": { dim: "wc:westeros", x: 7226, y: 88, z: 20888, time: 1696965112089L, xRot: -25.35003089904785f, yRot: -181.31024169921875f } - "whvillage": { dim: "wc:westeros", x: -5302, y: 86, z: 8385, time: 1696965112089L, xRot: 19.33415985107422f, yRot: 19.512502670288086f } - "wt": { dim: "wc:westeros", x: 7226, y: 88, z: 20888, time: 1696965112089L, xRot: 2.099966526031494f, yRot: -179.9602508544922f } - "WeepingTown": { dim: "wc:westeros", x: 7226, y: 88, z: 20888, time: 1696965112089L, xRot: 2.099966526031494f, yRot: -179.9602508544922f } - "littletudtest": { dim: "wc:playground", x: 3279, y: 47, z: 5553, time: 1696965112089L, xRot: 5.550004959106445f, yRot: -23.127288818359375f } - "HGSoapManor": { dim: "wc:westeros", x: -4765, y: 44, z: 19051, time: 1696965112089L, xRot: -21.45008659362793f, yRot: -239.98358154296875f } - "manseterra": { dim: "wc:westeros", x: -1102, y: 75, z: -20164, time: 1696965112089L, xRot: 56.099979400634766f, yRot: 267.99700927734375f } - "lornpoint": { dim: "wc:westeros", x: -4371, y: 34, z: -15034, time: 1696965112089L, xRot: -3.8999853134155273f, yRot: 104.82459259033203f } - "ddnorth": { dim: "wc:westeros", x: 5159, y: 55, z: 11269, time: 1696965112090L, xRot: -4.48908805847168f, yRot: 357.25274658203125f } - "ArkRRtest": { dim: "wc:playground", x: 2256, y: 20, z: 107, time: 1696965112090L, xRot: -8.849969863891602f, yRot: 119.3056640625f } - "spiders": { dim: "wc:playground", x: -958, y: 176, z: -293, time: 1696965112090L, xRot: 5.8500213623046875f, yRot: -264.7490234375f } - "hgcellar": { dim: "wc:westeros", x: -4649, y: 20, z: 18556, time: 1696965112090L, xRot: 51.44997787475586f, yRot: -92.23784637451172f } - "randomdorneoasis": { dim: "wc:westeros", x: 6254, y: 49, z: 25770, time: 1696965112090L, xRot: -7.662924766540527f, yRot: -296.67547607421875f } - "wellsnorth": { dim: "wc:westeros", x: -3126, y: 57, z: -5187, time: 1696965112090L, xRot: -1.3917425870895386f, yRot: -58.36114501953125f } - "roaringbroom": { dim: "wc:westeros", x: 1060, y: 36, z: 10191, time: 1696965112090L, xRot: 7.823291778564453f, yRot: 111.6065902709961f } - "romospiral": { dim: "wc:westeros", x: 864, y: 60, z: 15984, time: 1696965112090L, xRot: 74.09990692138672f, yRot: 240.31036376953125f } - "romolumber1": { dim: "wc:westeros", x: 1019, y: 45, z: 15690, time: 1696965112090L, xRot: 3.899970769882202f, yRot: 153.16006469726562f } - "romobrigands": { dim: "wc:westeros", x: 885, y: 71, z: 15527, time: 1696965112091L, xRot: 34.49993896484375f, yRot: 171.46011352539062f } - "romocharcoal1": { dim: "wc:westeros", x: 1092, y: 53, z: 15479, time: 1696965112091L, xRot: 62.6999397277832f, yRot: 157.66004943847656f } - "romocharcoal2": { dim: "wc:westeros", x: 856, y: 49, z: 15188, time: 1696965112102L, xRot: 73.0499496459961f, yRot: 234.45989990234375f } - "romocidery": { dim: "wc:westeros", x: 595, y: 41, z: 15019, time: 1696965112102L, xRot: -3.3000195026397705f, yRot: 189.60995483398438f } - "romosummer1": { dim: "wc:westeros", x: 495, y: 53, z: 15403, time: 1696965112102L, xRot: 16.49996566772461f, yRot: 211.21018981933594f } - "romosummer2": { dim: "wc:westeros", x: 379, y: 58, z: 15502, time: 1696965112102L, xRot: 17.099964141845703f, yRot: -192.74002075195312f } - "romosummer3": { dim: "wc:westeros", x: 379, y: 53, z: 15752, time: 1696965112103L, xRot: 21.899986267089844f, yRot: 340.5098571777344f } - "romowitch1": { dim: "wc:westeros", x: 437, y: 36, z: 14712, time: 1696965112103L, xRot: -4.9499969482421875f, yRot: -182.39012145996094f } - "romokeepruin": { dim: "wc:westeros", x: 34, y: 70, z: 15513, time: 1696965112103L, xRot: -9.899992942810059f, yRot: -65.69000244140625f } - "romoquarry": { dim: "wc:westeros", x: -203, y: 43, z: 15681, time: 1696965112103L, xRot: -15.44997787475586f, yRot: 208.06016540527344f } - "romohedgeknight": { dim: "wc:westeros", x: -633, y: 44, z: 15724, time: 1696965112103L, xRot: 10.349982261657715f, yRot: -297.889892578125f } - "romohunters": { dim: "wc:westeros", x: -630, y: 43, z: 15125, time: 1696965112103L, xRot: 7.050006866455078f, yRot: -225.88998413085938f } - "romowitch2": { dim: "wc:westeros", x: -396, y: 46, z: 15144, time: 1696965112103L, xRot: 15.750021934509277f, yRot: -255.13967895507812f } - "romohunters2": { dim: "wc:westeros", x: -109, y: 60, z: 15532, time: 1696965112104L, xRot: 12.750016212463379f, yRot: -255.43966674804688f } - "profilman": { dim: "wc:playground", x: 229, y: 21, z: 3846, time: 1696965112104L, xRot: 36.015987396240234f, yRot: -176.980224609375f } - "parrenseptry": { dim: "wc:westeros", x: -6665, y: 76, z: 13471, time: 1696965112104L, xRot: 30.45000457763672f, yRot: -352.9595642089844f } - "littlefingerbrothel": { dim: "wc:westeros", x: 2973, y: 47, z: 13389, time: 1696965112104L, xRot: 2.1629345417022705f, yRot: -91.72753143310547f } - "baelishbrothel": { dim: "wc:westeros", x: 2972, y: 47, z: 13389, time: 1696965112104L, xRot: 2.1629345417022705f, yRot: -91.72753143310547f } - "brothel": { dim: "wc:westeros", x: 2972, y: 47, z: 13389, time: 1696965112104L, xRot: 2.1629345417022705f, yRot: -91.72753143310547f } - "arbortest": { dim: "wc:playground", x: 1886, y: 23, z: -1433, time: 1696965112104L, xRot: 36.59990310668945f, yRot: 180.69775390625f } - "arbormap": { dim: "wc:playground", x: 1880, y: 91, z: -1505, time: 1696965112104L, xRot: 18.14988136291504f, yRot: 227.34814453125f } - "arbortestold": { dim: "wc:playground", x: 1830, y: 20, z: -1267, time: 1696965112105L, xRot: -3.1501858234405518f, yRot: 230.6435546875f } - "arbortestnavy": { dim: "wc:playground", x: 2247, y: 20, z: -1268, time: 1696965112105L, xRot: 87.4499740600586f, yRot: 181.140625f } - "arbortestcastle": { dim: "wc:playground", x: 2247, y: 20, z: -1485, time: 1696965112105L, xRot: 87.89996337890625f, yRot: 181.44287109375f } - "arbortestryamsport": { dim: "wc:playground", x: 2497, y: 20, z: -1623, time: 1696965112105L, xRot: 74.84999084472656f, yRot: 182.19384765625f } - "arborteststarfish": { dim: "wc:playground", x: 2497, y: 20, z: -1484, time: 1696965112105L, xRot: 83.70003509521484f, yRot: 181.44921875f } - "uffdunes": { dim: "wc:westeros", x: -7385, y: 40, z: 18281, time: 1696965112105L, xRot: 2.8499672412872314f, yRot: 228.21160888671875f } - "ufflogging": { dim: "wc:westeros", x: -5355, y: 62, z: 17886, time: 1696965112105L, xRot: -3.1499242782592773f, yRot: 220.22796630859375f } - "HGwinery": { dim: "wc:westeros", x: -4469, y: 69, z: 19058, time: 1696965112105L, xRot: 4.3499226570129395f, yRot: -182.53350830078125f } - "httemp": { dim: "wc:playground", x: 2433, y: 20, z: 859, time: 1696965112106L, xRot: 12.142129898071289f, yRot: -95.3126220703125f } - "hermitisland": { dim: "wc:westeros", x: -8369, y: 90, z: -8686, time: 1696965112106L, xRot: 6.333316802978516f, yRot: -255.57569885253906f } - "htmodel": { dim: "wc:playground", x: 2612, y: 20, z: 1368, time: 1696965112106L, xRot: 2.549961566925049f, yRot: 6.98193359375f } - "ShipContest": { dim: "wc:playground", x: 5617, y: 22, z: -1538, time: 1696965112106L, xRot: -9.30007553100586f, yRot: 89.162353515625f } - "oxcross": { dim: "wc:westeros", x: -6690, y: 50, z: 11068, time: 1696965112106L, xRot: 24.149799346923828f, yRot: -193.98406982421875f } - "vkhamlet": { dim: "wc:westeros", x: -6799, y: 45, z: 9000, time: 1696965112106L, xRot: 0.4500081241130829f, yRot: 354.2160339355469f } - "crayne": { dim: "wc:westeros", x: 4637, y: 82, z: 4422, time: 1696965112106L, xRot: 11.700066566467285f, yRot: -30.908756256103516f } - "starham1": { dim: "wc:westeros", x: -3499, y: 61, z: 18917, time: 1696965112106L, xRot: 5.249981880187988f, yRot: -219.94314575195312f } - "ddwest": { dim: "wc:westeros", x: 5002, y: 37, z: 11496, time: 1696965112107L, xRot: -6.012776851654053f, yRot: -29.69562530517578f } - "vanda": { dim: "wc:playground", x: -1458, y: 20, z: -1698, time: 1696965112107L, xRot: -2.250342845916748f, yRot: 177.50282287597656f } - "klredtemple": { dim: "wc:westeros", x: 2821, y: 42, z: 12698, time: 1696965112107L, xRot: -28.789854049682617f, yRot: -91.29338836669922f } - "blackhaven": { dim: "wc:westeros", x: 2165, y: 95, z: 19437, time: 1696965112107L, xRot: -6.150015354156494f, yRot: -356.99932861328125f } - "spterra": { dim: "wc:westeros", x: -3697, y: 88, z: 19375, time: 1696965112107L, xRot: 37.04996871948242f, yRot: -269.44439697265625f } - "conkmanor": { dim: "wc:westeros", x: -7247, y: 42, z: 15490, time: 1696965112107L, xRot: 3.899956226348877f, yRot: -98.175048828125f } - "ddflax": { dim: "wc:westeros", x: 4884, y: 49, z: 11255, time: 1696965112118L, xRot: 14.990191459655762f, yRot: -26.32080078125f } - "ddflaxfarm": { dim: "wc:westeros", x: 4884, y: 49, z: 11255, time: 1696965112118L, xRot: 15.081624984741211f, yRot: -26.6865234375f } - "stoopspawn": { dim: "wc:playground", x: -656, y: 40, z: -913, time: 1696965112119L, xRot: 40.731300354003906f, yRot: -90.3082046508789f } - "DDNorthHF": { dim: "wc:westeros", x: 4770, y: 53, z: 11362, time: 1696965112119L, xRot: 17.02007293701172f, yRot: 55.65181350708008f } - "ashcoal2": { dim: "wc:westeros", x: 700, y: 53, z: -3712, time: 1696965112119L, xRot: 20.2500057220459f, yRot: -42.32619094848633f } - "millmerton": { dim: "wc:westeros", x: -56, y: 43, z: 17890, time: 1696965112119L, xRot: 8.700006484985352f, yRot: 156.6501922607422f } - "hillmerton": { dim: "wc:westeros", x: -170, y: 87, z: 17729, time: 1696965112120L, xRot: 0.1498222053050995f, yRot: -282.9995422363281f } - "crossroadinn": { dim: "wc:westeros", x: 1868, y: 48, z: 7511, time: 1696965112120L, xRot: -11.100072860717773f, yRot: 294.1537780761719f } - "romohamlet": { dim: "wc:westeros", x: -252, y: 85, z: 15780, time: 1696965112120L, xRot: -0.7515089511871338f, yRot: -85.64520263671875f } - "arborne": { dim: "wc:westeros", x: -10927, y: 104, z: 24621, time: 1696965112120L, xRot: 22.38490104675293f, yRot: -36.403167724609375f } - "Backmischung": { dim: "wc:playground", x: 938, y: 21, z: 4034, time: 1696965112120L, xRot: 9.147546768188477f, yRot: -0.16657447814941406f } - "dd2": { dim: "wc:westeros", x: 5159, y: 55, z: 11269, time: 1696965112121L, xRot: -4.48908805847168f, yRot: 357.25274658203125f } - "riverwood": { dim: "wc:westeros", x: 2284, y: 44, z: -4043, time: 1696965112121L, xRot: 0.14778800308704376f, yRot: -183.01422119140625f } - "rexstop": { dim: "wc:playground", x: 13, y: 21, z: 3827, time: 1696965112121L, xRot: 82.96554565429688f, yRot: -250.891357421875f } - "longbarrow": { dim: "wc:westeros", x: 4526, y: 63, z: -15974, time: 1696965112121L, xRot: 17.699934005737305f, yRot: 175.76708984375f } - "seadragon": { dim: "wc:westeros", x: -6158, y: 103, z: -10762, time: 1696965112121L, xRot: 55.95011901855469f, yRot: 145.80079650878906f } - "rimegate": { dim: "wc:westeros", x: 4310, y: 46, z: -16123, time: 1696965112121L, xRot: 23.399940490722656f, yRot: 190.31744384765625f } - "hgstudfarm": { dim: "wc:westeros", x: -4307, y: 49, z: 18870, time: 1696965112121L, xRot: 5.849917411804199f, yRot: -6.4335126876831055f } - "ferrenhamlet1": { dim: "wc:westeros", x: -3620, y: 73, z: 12310, time: 1696965112121L, xRot: 44.69997024536133f, yRot: -85.19256591796875f } - "mance": { dim: "wc:westeros", x: -1398, y: 110, z: -20168, time: 1696965112121L, xRot: -0.900007963180542f, yRot: -267.34014892578125f } - "klupdate": { dim: "wc:playground", x: 2373, y: 39, z: -10, time: 1696965112122L, xRot: 71.69998931884766f, yRot: 180.25030517578125f } - "terrainsetinfo": { dim: "wc:playground", x: -680, y: 20, z: 1051, time: 1696965112122L, xRot: 42.1500244140625f, yRot: 90.90657806396484f } - "parren": { dim: "wc:westeros", x: -6667, y: 72, z: 13652, time: 1696965112122L, xRot: 4.949995994567871f, yRot: -119.46739196777344f } - "viserysii": { dim: "wc:playground", x: -622, y: 21, z: 4032, time: 1696965112122L, xRot: -8.534470558166504f, yRot: -47.042510986328125f } - "hoth": { dim: "wc:playground", x: -697, y: 51, z: 537, time: 1696965112122L, xRot: 16.718555450439453f, yRot: 28.404052734375f } - "seascale": { dim: "wc:westeros", x: -8718, y: 86, z: -976, time: 1696965112122L, xRot: -6.299935340881348f, yRot: -270.5157470703125f } - "GevSant": { dim: "wc:playground", x: 647, y: 21, z: 4034, time: 1696965112122L, xRot: 1.3974722623825073f, yRot: -41.61678695678711f } - "parrencastle": { dim: "wc:westeros", x: -6337, y: 82, z: 13418, time: 1696965112122L, xRot: 28.799989700317383f, yRot: -31.835289001464844f } - "scribble": { dim: "wc:playground", x: 1065, y: 21, z: 4034, time: 1696965112123L, xRot: 3.600038766860962f, yRot: -43.56119918823242f } - "Mayflumes": { dim: "wc:playground", x: 435, y: 21, z: 4033, time: 1696965112123L, xRot: 13.28722095489502f, yRot: -4.6281418800354f } - "GiantShit": { dim: "wc:westeros", x: -5732, y: 52, z: -3277, time: 1696965112123L, xRot: 30.272125244140625f, yRot: 112.01368713378906f } - "sfham2": { dim: "wc:westeros", x: -6425, y: 68, z: 11025, time: 1696965112123L, xRot: 20.100339889526367f, yRot: 175.1521453857422f } - "stackspearvillage": { dim: "wc:westeros", x: -6444, y: 42, z: 8197, time: 1696965112123L, xRot: -11.09986400604248f, yRot: 234.96775817871094f } - "stackspear": { dim: "wc:westeros", x: -6255, y: 39, z: 7969, time: 1696965112123L, xRot: 3.1501238346099854f, yRot: 15.217721939086914f } - "alex2": { dim: "wc:playground", x: 876, y: 21, z: 4243, time: 1696965112124L, xRot: 7.66342306137085f, yRot: 2.91204833984375f } - "Scubooty": { dim: "wc:playground", x: 227, y: 21, z: 4034, time: 1696965112124L, xRot: -7.330447196960449f, yRot: -45.576568603515625f } - "bostbie": { dim: "wc:westeros", x: -5999, y: 87, z: -1025, time: 1696965112124L, xRot: 41.99998474121094f, yRot: -266.9158935546875f } - "ministirithgrafton": { dim: "wc:playground", x: 2456, y: 104, z: -722, time: 1696965112124L, xRot: 59.54987716674805f, yRot: 207.76004028320312f } - "bandahermitage": { dim: "wc:westeros", x: -9395, y: 35, z: 19735, time: 1696965112124L, xRot: 29.47962760925293f, yRot: 170.55734252929688f } - "jakethesnake": { dim: "wc:playground", x: 651, y: 21, z: 4243, time: 1696965112124L, xRot: 23.549972534179688f, yRot: -179.6171875f } - "bobby": { dim: "wc:playground", x: 435, y: 21, z: 3218, time: 1696965112124L, xRot: -0.2886827290058136f, yRot: -42.24809265136719f } - "goat": { dim: "wc:playground", x: -412, y: 21, z: 4032, time: 1696965112124L, xRot: 13.349995613098145f, yRot: -50.6361198425293f } - "starpikeeast": { dim: "wc:westeros", x: -3091, y: 101, z: 19009, time: 1696965112124L, xRot: -2.8499860763549805f, yRot: -186.19407653808594f } - "starpikecastle": { dim: "wc:westeros", x: -3124, y: 106, z: 19642, time: 1696965112135L, xRot: 11.7000150680542f, yRot: -180.7940216064453f } - "hornhillwaterfall": { dim: "wc:westeros", x: -3571, y: 97, z: 20022, time: 1696965112135L, xRot: 24.149959564208984f, yRot: -79.34075927734375f } - "gallowsgreyfarm": { dim: "wc:westeros", x: 2543, y: 112, z: 18561, time: 1696965112136L, xRot: 22.500900268554688f, yRot: 178.264892578125f } - "ddsept": { dim: "wc:westeros", x: 5122, y: 43, z: 11615, time: 1696965112136L, xRot: -16.132497787475586f, yRot: 84.60426330566406f } - "hagsmire1": { dim: "wc:westeros", x: -1044, y: 43, z: 4564, time: 1696965112136L, xRot: 11.700048446655273f, yRot: -89.63047790527344f } - "VoxerBr": { dim: "wc:playground", x: -411, y: 21, z: 4235, time: 1696965112136L, xRot: 73.949951171875f, yRot: 327.2141418457031f } - "westwatch": { dim: "wc:westeros", x: 534, y: 62, z: -15939, time: 1696965112136L, xRot: 3.1794517040252686f, yRot: 332.4413146972656f } - "contracontradict": { dim: "wc:playground", x: 432, y: 21, z: 4234, time: 1696965112136L, xRot: 14.48051929473877f, yRot: -39.290775299072266f } - "rhymerton": { dim: "wc:westeros", x: 234, y: 58, z: 17748, time: 1696965112136L, xRot: -10.779133796691895f, yRot: -93.04366302490234f } - "spawntest": { dim: "wc:playground", x: 2134, y: 20, z: -508, time: 1696965112137L, xRot: 14.700016021728516f, yRot: 91.29937744140625f } - "ddslums": { dim: "wc:westeros", x: 5417, y: 46, z: 11682, time: 1696965112137L, xRot: -2.0994439125061035f, yRot: 181.3665771484375f } - "vegwrmdspawn": { dim: "wc:playground", x: 2168, y: 23, z: -507, time: 1696965112137L, xRot: 43.50013732910156f, yRot: 185.6541748046875f } - "NextStep": { dim: "wc:playground", x: 2064, y: 20, z: -540, time: 1696965112137L, xRot: 17.099979400634766f, yRot: -268.5657958984375f } - "answer": { dim: "wc:playground", x: 2312, y: 36, z: -541, time: 1696965112137L, xRot: 14.550057411193848f, yRot: 90.24560546875f } - "theeryie": { dim: "wc:westeros", x: 3867, y: 165, z: 6144, time: 1696965112137L, xRot: -11.700044631958008f, yRot: -88.65836334228516f } - "woodwrighthf1": { dim: "wc:westeros", x: -5411, y: 58, z: 19885, time: 1696965112137L, xRot: 16.949970245361328f, yRot: -280.8521728515625f } - "WoodwrightHf2": { dim: "wc:westeros", x: -6342, y: 65, z: 20236, time: 1696965112137L, xRot: -1.6501917839050293f, yRot: 152.04368591308594f } - "woodwrighthamlet2": { dim: "wc:westeros", x: -6085, y: 46, z: 19998, time: 1696965112138L, xRot: 2.9998035430908203f, yRot: 60.843658447265625f } - "Woodwrighthamlet4": { dim: "wc:westeros", x: -5995, y: 67, z: 20347, time: 1696965112138L, xRot: 10.049806594848633f, yRot: 51.8436279296875f } - "woodwrighthamlet5": { dim: "wc:westeros", x: -6262, y: 55, z: 19488, time: 1696965112138L, xRot: 31.49980354309082f, yRot: 91.74359130859375f } - "woodwrighthamlet6": { dim: "wc:westeros", x: -6420, y: 42, z: 19256, time: 1696965112138L, xRot: -1.3502098321914673f, yRot: 25.2933349609375f } - "longmerton": { dim: "wc:westeros", x: 408, y: 37, z: 17932, time: 1696965112138L, xRot: 1.950032353401184f, yRot: 111.723388671875f } - "howtobuild": { dim: "wc:playground", x: 10, y: 140, z: -34, time: 1696965112138L, xRot: 4.5f, yRot: 2.7032251358032227f } - "cc": { dim: "wc:playground", x: 625, y: 21, z: 4334, time: 1696965112138L, xRot: -18.449996948242188f, yRot: 91.22541809082031f } - "Dunfort": { dim: "wc:westeros", x: 5207, y: 44, z: 11471, time: 1696965112138L, xRot: -9.446004867553711f, yRot: -91.0043716430664f } - "Susan": { dim: "wc:westeros", x: -4647, y: 13, z: 18567, time: 1696965112139L, xRot: -21.696256637573242f, yRot: 235.0396728515625f } - "ashwoodHF": { dim: "wc:westeros", x: 486, y: 128, z: -3665, time: 1696965112139L, xRot: 76.34998321533203f, yRot: -171.32595825195312f } - "sffarm4": { dim: "wc:westeros", x: -6792, y: 49, z: 11233, time: 1696965112139L, xRot: 12.449934959411621f, yRot: -8.2574462890625f } - "DD": { dim: "wc:westeros", x: 5180, y: 46, z: 11840, time: 1696965112139L, xRot: 8.03866958618164f, yRot: 181.37205505371094f } - "Duskendale": { dim: "wc:westeros", x: 5180, y: 46, z: 11840, time: 1696965112139L, xRot: 8.03866958618164f, yRot: 181.37205505371094f } - "woodwright": { dim: "wc:westeros", x: -5932, y: 34, z: 19392, time: 1696965112139L, xRot: -12.599955558776855f, yRot: 2.267822265625f } - "vickon": { dim: "wc:playground", x: 224, y: 21, z: 4235, time: 1696965112139L, xRot: 11.271224975585938f, yRot: 308.77423095703125f } - "Bafflement": { dim: "wc:playground", x: 1065, y: 21, z: 4237, time: 1696965112139L, xRot: 0.4499872922897339f, yRot: -44.487823486328125f } - "norreyham1": { dim: "wc:westeros", x: 169, y: 64, z: -15390, time: 1696965112140L, xRot: 8.307109832763672f, yRot: -263.0430908203125f } - "norreyvillage": { dim: "wc:westeros", x: 525, y: 102, z: -14970, time: 1696965112140L, xRot: 6.1798014640808105f, yRot: -172.1347198486328f } - "norreyhf2": { dim: "wc:westeros", x: 1614, y: 44, z: -14404, time: 1696965112140L, xRot: 12.750016212463379f, yRot: -101.4957275390625f } - "knotthf": { dim: "wc:westeros", x: -31, y: 61, z: -14588, time: 1696965112140L, xRot: 4.500086307525635f, yRot: -173.0563507080078f } - "Norreyhf1": { dim: "wc:westeros", x: 311, y: 90, z: -14617, time: 1696965112140L, xRot: 18.90007209777832f, yRot: -302.0563049316406f } - "norreyham2": { dim: "wc:westeros", x: 240, y: 70, z: -14819, time: 1696965112140L, xRot: 15.093609809875488f, yRot: 105.16314697265625f } - "norreyham3": { dim: "wc:westeros", x: 1767, y: 72, z: -15086, time: 1696965112140L, xRot: 6.860961437225342f, yRot: -88.23876953125f } - "Norrey": { dim: "wc:westeros", x: 1118, y: 38, z: -14962, time: 1696965112141L, xRot: 11.025189399719238f, yRot: -271.23431396484375f } - "ripbaelors": { dim: "wc:playground", x: -834, y: 56, z: 3563, time: 1696965112141L, xRot: -12.00003433227539f, yRot: -0.6959228515625f } - "wallfall": { dim: "wc:playground", x: -882, y: 47, z: 3384, time: 1696965112141L, xRot: -9.750051498413086f, yRot: -176.19500732421875f } - "winterwinterfell": { dim: "wc:playground", x: -1021, y: 118, z: 3002, time: 1696965112151L, xRot: 1.9499207735061646f, yRot: -184.5963134765625f } - "christmasvillage": { dim: "wc:playground", x: -786, y: 33, z: 3994, time: 1696965112152L, xRot: 1.349960207939148f, yRot: -189.54595947265625f } - "alec": { dim: "wc:playground", x: 223, y: 21, z: 4439, time: 1696965112152L, xRot: 22.38852882385254f, yRot: 323.66412353515625f } - "roottweiler": { dim: "wc:playground", x: -399, y: 21, z: 561, time: 1696965112152L, xRot: 24.90001106262207f, yRot: -78.90483093261719f } - "roott": { dim: "wc:playground", x: -399, y: 21, z: 561, time: 1696965112152L, xRot: 24.90001106262207f, yRot: -78.90483093261719f } - "romotowerruin": { dim: "wc:westeros", x: 749, y: 76, z: 15424, time: 1696965112152L, xRot: -32.0855827331543f, yRot: 200.61593627929688f } - "fingermerton": { dim: "wc:westeros", x: 516, y: 67, z: 17456, time: 1696965112153L, xRot: -7.499971866607666f, yRot: 177.72303771972656f } - "sppeachfarm": { dim: "wc:westeros", x: -3000, y: 58, z: 19047, time: 1696965112153L, xRot: -4.199916362762451f, yRot: -113.1422119140625f } - "ferrenhamlet2": { dim: "wc:westeros", x: -3127, y: 69, z: 12516, time: 1696965112153L, xRot: 1.81739342212677f, yRot: -271.7944030761719f } - "mobsy": { dim: "wc:playground", x: 1033, y: 20, z: -986, time: 1696965112153L, xRot: -2.169050931930542f, yRot: -137.03721618652344f } - "farewell": { dim: "wc:playground", x: 1799, y: 20, z: -925, time: 1696965112153L, xRot: -25.800050735473633f, yRot: 359.47406005859375f } - "dragonvault": { dim: "wc:playground", x: 1259, y: 20, z: -836, time: 1696965112153L, xRot: 1.500003695487976f, yRot: 228.22409057617188f } - "StarryTest": { dim: "wc:playground", x: 2336, y: 20, z: 759, time: 1696965112153L, xRot: 8.992124557495117f, yRot: -92.76266479492188f } - "cumtown": { dim: "wc:playground", x: 507, y: 21, z: -1765, time: 1696965112153L, xRot: -14.250019073486328f, yRot: -315.059326171875f } - "Ammika": { dim: "wc:playground", x: 805, y: 90, z: 1132, time: 1696965112153L, xRot: -16.35002899169922f, yRot: 180.48660278320312f } - "arkrr": { dim: "wc:playground", x: 2209, y: 20, z: 36, time: 1696965112154L, xRot: 5.849982738494873f, yRot: 2.799755573272705f } - "Darke": { dim: "wc:westeros", x: 5665, y: 37, z: 12043, time: 1696965112154L, xRot: 10.199859619140625f, yRot: -114.6351547241211f } - "romocharcoal3": { dim: "wc:westeros", x: 175, y: 57, z: 15745, time: 1696965112154L, xRot: 7.200068473815918f, yRot: -133.78994750976562f } - "HGHF1": { dim: "wc:westeros", x: -5075, y: 37, z: 19018, time: 1696965112154L, xRot: 1.0499210357666016f, yRot: 90.31224822998047f } - "mootonhuntinglodge": { dim: "wc:westeros", x: 4558, y: 47, z: 9497, time: 1696965112154L, xRot: 3.299801826477051f, yRot: -355.9481201171875f } - "CrayneRuin": { dim: "wc:westeros", x: 4312, y: 94, z: 4382, time: 1696965112154L, xRot: 13.650233268737793f, yRot: 4.1911301612854f } - "wyndhall": { dim: "wc:westeros", x: -5524, y: 97, z: 8271, time: 1696965112154L, xRot: -21.900005340576172f, yRot: -123.13591003417969f } - "everlastevil07": { dim: "wc:playground", x: 643, y: 21, z: 4439, time: 1696965112154L, xRot: 8.099982261657715f, yRot: 312.77490234375f } - "ever": { dim: "wc:playground", x: 643, y: 21, z: 4439, time: 1696965112154L, xRot: 8.099982261657715f, yRot: 312.77490234375f } - "lavahunter": { dim: "wc:playground", x: 435, y: 21, z: 4446, time: 1696965112155L, xRot: 5.250027179718018f, yRot: 309.7745361328125f } - "Pyle": { dim: "wc:westeros", x: 3188, y: 50, z: 11765, time: 1696965112155L, xRot: -10.062954902648926f, yRot: 202.50144958496094f } - "starfishharbor": { dim: "wc:westeros", x: -9277, y: 164, z: 26781, time: 1696965112155L, xRot: 35.70110321044922f, yRot: 176.0902557373047f } - "Bovine": { dim: "wc:playground", x: 18, y: 21, z: 4036, time: 1696965112155L, xRot: 3.6000125408172607f, yRot: -43.885986328125f } - "arbortestmap": { dim: "wc:playground", x: 2059, y: 66, z: -1631, time: 1696965112155L, xRot: 37.649932861328125f, yRot: 75.54780578613281f } - "scavtest": { dim: "wc:playground", x: 616, y: 23, z: 4397, time: 1696965112155L, xRot: -0.3000020384788513f, yRot: 89.2160873413086f } - "Romocharcoal4": { dim: "wc:westeros", x: -461, y: 43, z: 15634, time: 1696965112155L, xRot: 1.4999762773513794f, yRot: 105.91128540039062f } - "HornHill": { dim: "wc:westeros", x: -4331, y: 102, z: 19749, time: 1696965112155L, xRot: -5.628939151763916f, yRot: 144.91993713378906f } - "paintedtable": { dim: "wc:westeros", x: 8441, y: 136, z: 10240, time: 1696965112155L, xRot: 11.500128746032715f, yRot: -180.37879943847656f } - "bionicle": { dim: "wc:playground", x: 14, y: 21, z: 150, time: 1696965112156L, xRot: 6.855062484741211f, yRot: -44.8249626159668f } - "olderflowers": { dim: "wc:playground", x: -846, y: 87, z: -692, time: 1696965112156L, xRot: 23.400007247924805f, yRot: -90.14899444580078f } - "jonquilspool": { dim: "wc:westeros", x: 4433, y: 46, z: 9028, time: 1696965112156L, xRot: -3.7499783039093018f, yRot: -99.478515625f } - "stonehedge": { dim: "wc:westeros", x: -664, y: 46, z: 7702, time: 1696965112156L, xRot: -8.850005149841309f, yRot: 180.4078826904297f } - "fmhouse1": { dim: "wc:westeros", x: -585, y: 38, z: 6062, time: 1696965112156L, xRot: 0.7502050399780273f, yRot: 95.85658264160156f } - "fmbarn1": { dim: "wc:westeros", x: -584, y: 38, z: 6060, time: 1696965112156L, xRot: 7.350213527679443f, yRot: -0.8934531211853027f } - "fmhovel1": { dim: "wc:westeros", x: -623, y: 38, z: 6038, time: 1696965112156L, xRot: 9.90022087097168f, yRot: 184.2064666748047f } - "fmhovel2": { dim: "wc:westeros", x: -805, y: 38, z: 5839, time: 1696965112157L, xRot: -4.503804683685303f, yRot: 67.49072265625f } - "fmhouse2": { dim: "wc:westeros", x: -796, y: 39, z: 5881, time: 1696965112157L, xRot: -14.853798866271973f, yRot: 208.34066772460938f } - "fmbarn2": { dim: "wc:westeros", x: -607, y: 43, z: 6240, time: 1696965112157L, xRot: 1.0462058782577515f, yRot: 273.43841552734375f } - "fmhovel3": { dim: "wc:westeros", x: -775, y: 56, z: 6478, time: 1696965112157L, xRot: 3.1462132930755615f, yRot: 275.23828125f } - "fmhouse3": { dim: "wc:westeros", x: -925, y: 56, z: 6379, time: 1696965112157L, xRot: -3.7537901401519775f, yRot: 104.23824310302734f } - "fmbarn3": { dim: "wc:westeros", x: -1016, y: 40, z: 6215, time: 1696965112157L, xRot: 1.4962178468704224f, yRot: 274.7881774902344f } - "fmpro1": { dim: "wc:westeros", x: -793, y: 40, z: 6024, time: 1696965112157L, xRot: -30.303802490234375f, yRot: 274.78802490234375f } - "fmpro3": { dim: "wc:westeros", x: -734, y: 39, z: 6036, time: 1696965112157L, xRot: -19.503774642944336f, yRot: 5.237260818481445f } - "fmpro2": { dim: "wc:westeros", x: -974, y: 39, z: 6075, time: 1696965112157L, xRot: -17.703798294067383f, yRot: 185.0878143310547f } - "dfhftact": { dim: "wc:westeros", x: 3414, y: 59, z: -9013, time: 1696965112157L, xRot: 6.510695934295654f, yRot: 82.01595306396484f } - "mphf1": { dim: "wc:westeros", x: 4151, y: 45, z: 9461, time: 1696965112157L, xRot: -8.250057220458984f, yRot: -1.3705991506576538f } - "Dragonmont": { dim: "wc:westeros", x: 8579, y: 156, z: 10197, time: 1696965112157L, xRot: 3.1498894691467285f, yRot: 179.6962890625f } - "garner": { dim: "wc:westeros", x: -7805, y: 70, z: 10663, time: 1696965112157L, xRot: 28.24213218688965f, yRot: -106.38924407958984f } - "ferrenvillage": { dim: "wc:westeros", x: -2856, y: 59, z: 12720, time: 1696965112158L, xRot: -5.699982166290283f, yRot: -358.53997802734375f } - "WGLodge": { dim: "wc:westeros", x: -1938, y: 49, z: 18466, time: 1696965112168L, xRot: -24.15007209777832f, yRot: 177.7925262451172f } - "oldperryn": { dim: "wc:westeros", x: -3105, y: 53, z: 6238, time: 1696965112169L, xRot: 2.849992275238037f, yRot: -179.9766387939453f } - "whitegrove": { dim: "wc:westeros", x: -3083, y: 56, z: 18853, time: 1696965112169L, xRot: -6.600076675415039f, yRot: 222.47964477539062f } - "KnightKrawler": { dim: "wc:playground", x: 210, y: 21, z: 754, time: 1696965112169L, xRot: -1.6500579118728638f, yRot: -223.94558715820312f } - "booben": { dim: "wc:playground", x: 210, y: 21, z: 754, time: 1696965112169L, xRot: 2.099923849105835f, yRot: -223.64559936523438f } - "ashwoodweavery": { dim: "wc:westeros", x: 1113, y: 56, z: -3559, time: 1696965112169L, xRot: 24.466276168823242f, yRot: 79.13178253173828f } - "ghastongrey": { dim: "wc:westeros", x: 3051, y: 37, z: 22051, time: 1696965112169L, xRot: 4.958398818969727f, yRot: -147.059326171875f } - "shymon184": { dim: "wc:playground", x: 861, y: 21, z: 4464, time: 1696965112169L, xRot: -1.9500187635421753f, yRot: -359.6564025878906f } - "shymon": { dim: "wc:playground", x: 861, y: 21, z: 4464, time: 1696965112169L, xRot: -1.8000214099884033f, yRot: -0.106689453125f } - "hook": { dim: "wc:westeros", x: 3777, y: 45, z: 13642, time: 1696965112170L, xRot: 39.59501647949219f, yRot: -178.1929168701172f } - "ashrocks": { dim: "wc:westeros", x: -85, y: 83, z: -3884, time: 1696965112170L, xRot: 38.54997634887695f, yRot: 325.1737060546875f } - "WitchIsle": { dim: "wc:westeros", x: 9738, y: 38, z: 1027, time: 1696965112170L, xRot: -0.15001216530799866f, yRot: 120.45016479492188f } - "Upcliff": { dim: "wc:westeros", x: 9756, y: 52, z: 759, time: 1696965112170L, xRot: -22.050006866455078f, yRot: -294.1501159667969f } - "arborterra": { dim: "wc:westeros", x: -10025, y: 52, z: 26480, time: 1696965112170L, xRot: 7.349720478057861f, yRot: 165.7410430908203f } - "klupdatewarp": { dim: "wc:playground", x: 3062, y: 113, z: -1379, time: 1696965112170L, xRot: 40.49995040893555f, yRot: 266.9215393066406f } - "tumbletest": { dim: "wc:playground", x: 2829, y: 44, z: -1508, time: 1696965112170L, xRot: 33.605987548828125f, yRot: 183.32215881347656f } - "oldgulltowntest": { dim: "wc:playground", x: 1187, y: 21, z: -682, time: 1696965112170L, xRot: 17.418312072753906f, yRot: -180.2189483642578f } - "GulltownTest": { dim: "wc:playground", x: 1895, y: 20, z: -594, time: 1696965112171L, xRot: -5.250125885009766f, yRot: -179.6900634765625f } - "jose99": { dim: "wc:playground", x: 230, y: 26, z: 568, time: 1696965112171L, xRot: 12.45002269744873f, yRot: 325.6528625488281f } - "klcopy": { dim: "wc:playground", x: 3140, y: 44, z: -1309, time: 1696965112171L, xRot: -1.4997103214263916f, yRot: 303.8155517578125f } - "arbortestterra": { dim: "wc:playground", x: 2042, y: 20, z: -1483, time: 1696965112171L, xRot: 10.499836921691895f, yRot: 3.09326171875f } - "spleef": { dim: "wc:playground", x: 294, y: 204, z: 4167, time: 1696965112171L, xRot: -0.1485651433467865f, yRot: 272.4373474121094f } - "whterra": { dim: "wc:westeros", x: 1478, y: 66, z: -2496, time: 1696965112171L, xRot: 46.200008392333984f, yRot: -187.50775146484375f } - "rkcopy": { dim: "wc:playground", x: 4185, y: 130, z: -580, time: 1696965112171L, xRot: -1.922251582145691f, yRot: -181.27085876464844f } - "rocktest2": { dim: "wc:playground", x: 1252, y: 46, z: -1307, time: 1696965112171L, xRot: 11.399991035461426f, yRot: -240.57373046875f } - "stanateemanatee": { dim: "wc:playground", x: 1064, y: 21, z: 4440, time: 1696965112171L, xRot: -5.850048542022705f, yRot: -42.556610107421875f } - "stana": { dim: "wc:playground", x: 1064, y: 21, z: 4440, time: 1696965112171L, xRot: -6.900033473968506f, yRot: -45.256683349609375f } - "twinstest": { dim: "wc:playground", x: 2335, y: 21, z: 408, time: 1696965112171L, xRot: 5.3999857902526855f, yRot: -91.39893341064453f } - "eastwatchtest": { dim: "wc:playground", x: 1333, y: 21, z: 19, time: 1696965112171L, xRot: 6.299909591674805f, yRot: 5.7131547927856445f } - "nightforttest": { dim: "wc:playground", x: 1125, y: 21, z: 16, time: 1696965112171L, xRot: 7.799911022186279f, yRot: -0.8868672847747803f } - "lystest": { dim: "wc:playground", x: 1317, y: 21, z: 335, time: 1696965112172L, xRot: 36.899993896484375f, yRot: -179.8369598388672f } - "tyroshtest": { dim: "wc:playground", x: 1123, y: 21, z: 331, time: 1696965112172L, xRot: 19.199995040893555f, yRot: -173.23684692382812f } - "klcatacombstest": { dim: "wc:playground", x: 1996, y: 44, z: 3569, time: 1696965112172L, xRot: 6.450032711029053f, yRot: 271.4154357910156f } - "valetest": { dim: "wc:playground", x: 2834, y: 45, z: -1271, time: 1696965112172L, xRot: 43.05593490600586f, yRot: 181.66888427734375f } - "gateofgodscopy": { dim: "wc:playground", x: 3144, y: 93, z: -1302, time: 1696965112172L, xRot: 39.300270080566406f, yRot: -52.43449401855469f } - "cobblerssquarecopy": { dim: "wc:playground", x: 3339, y: 56, z: -1202, time: 1696965112172L, xRot: 40.80027389526367f, yRot: -56.78450012207031f } - "liongatecopy": { dim: "wc:playground", x: 3125, y: 63, z: -1010, time: 1696965112172L, xRot: 39.15026092529297f, yRot: -353.6344909667969f } - "kingsgatecopy": { dim: "wc:playground", x: 3141, y: 64, z: -683, time: 1696965112172L, xRot: 43.65024948120117f, yRot: -320.9344787597656f } - "rivergatecopy": { dim: "wc:playground", x: 3615, y: 57, z: -599, time: 1696965112172L, xRot: 35.70026779174805f, yRot: -60.984344482421875f } - "dragonsquarecopy": { dim: "wc:playground", x: 3633, y: 83, z: -1042, time: 1696965112172L, xRot: 44.400291442871094f, yRot: -182.7833251953125f } - "fleabottomcopy": { dim: "wc:playground", x: 3913, y: 117, z: -1037, time: 1696965112172L, xRot: 75.30001831054688f, yRot: -181.72088623046875f } - "dragonpitcopy": { dim: "wc:playground", x: 3957, y: 108, z: -1192, time: 1696965112172L, xRot: 22.800016403198242f, yRot: -158.32086181640625f } - "streetofsilkcopy": { dim: "wc:playground", x: 3766, y: 56, z: -1153, time: 1696965112172L, xRot: 12.900050163269043f, yRot: -213.52032470703125f } - "arbor": { dim: "wc:westeros", x: -9831, y: 188, z: 26091, time: 1696965112173L, xRot: 19.950021743774414f, yRot: 179.81683349609375f } - "klupdateguide": { dim: "wc:playground", x: 2605, y: 20, z: -65, time: 1696965112173L, xRot: -4.0500969886779785f, yRot: -179.15817260742188f } - "dutch": { dim: "wc:playground", x: 211, y: 21, z: 4236, time: 1696965112173L, xRot: 5.332229137420654f, yRot: 43.252349853515625f } - "mpbarrow": { dim: "wc:westeros", x: 3682, y: 39, z: 8802, time: 1696965112173L, xRot: 22.35000228881836f, yRot: -189.0214385986328f } - "whlandedknight": { dim: "wc:westeros", x: 1066, y: 58, z: -2856, time: 1696965112173L, xRot: 1.5000444650650024f, yRot: 141.88912963867188f } - "mpdocks": { dim: "wc:westeros", x: 4600, y: 36, z: 8993, time: 1696965112173L, xRot: -31.049989700317383f, yRot: -6.02825927734375f } - "klguide": { dim: "wc:playground", x: 2605, y: 20, z: -65, time: 1696965112173L, xRot: -4.0500969886779785f, yRot: -179.15817260742188f } - "riverrowcopy": { dim: "wc:playground", x: 3579, y: 42, z: -602, time: 1696965112173L, xRot: -3.599702835083008f, yRot: -260.03411865234375f } - "Crops": { dim: "wc:playground", x: -998, y: 21, z: 1215, time: 1696965112173L, xRot: 0.2999466061592102f, yRot: -338.2027587890625f } - "frostfort": { dim: "wc:westeros", x: 9462, y: 85, z: -11275, time: 1696965112173L, xRot: -4.949775218963623f, yRot: 289.4969177246094f } - "alchemistguild": { dim: "wc:westeros", x: 2752, y: 51, z: 13013, time: 1696965112173L, xRot: -22.50001335144043f, yRot: -180.84283447265625f } - "croneswick": { dim: "wc:westeros", x: 5071, y: 60, z: 7795, time: 1696965112173L, xRot: -9.749978065490723f, yRot: -179.9901123046875f } - "waxgloamlumber": { dim: "wc:westeros", x: 5287, y: 50, z: 8182, time: 1696965112173L, xRot: -4.950019836425781f, yRot: -124.9410400390625f } - "waxgloamwoods": { dim: "wc:westeros", x: 5192, y: 46, z: 8329, time: 1696965112174L, xRot: -2.549976348876953f, yRot: -216.7367401123047f } - "fmseptry": { dim: "wc:westeros", x: -673, y: 37, z: 5789, time: 1696965112174L, xRot: -7.650025844573975f, yRot: 358.0562744140625f } - "tumbletonold": { dim: "wc:playground", x: -1021, y: 212, z: -567, time: 1696965112174L, xRot: 46.649993896484375f, yRot: 270.900634765625f } - "tsar": { dim: "wc:playground", x: -9, y: 21, z: 440, time: 1696965112174L, xRot: 0.7500045895576477f, yRot: 88.93956756591797f } - "wetlandshamlet1": { dim: "wc:westeros", x: 3872, y: 37, z: 8878, time: 1696965112174L, xRot: 0.15021222829818726f, yRot: 94.32318115234375f } - "drearfort": { dim: "wc:westeros", x: 7655, y: 48, z: 642, time: 1696965112174L, xRot: 17.999984741210938f, yRot: -94.78964233398438f } - "southshieldtest": { dim: "wc:playground", x: 1751, y: 132, z: 5513, time: 1696965112174L, xRot: 56.10005569458008f, yRot: 85.92320251464844f } - "tallowshire": { dim: "wc:westeros", x: 5140, y: 46, z: 8451, time: 1696965112174L, xRot: -11.10010814666748f, yRot: -109.0416259765625f } - "battleonthegreenfork": { dim: "wc:westeros", x: 683, y: 47, z: 6151, time: 1696965112174L, xRot: 3.9218926429748535f, yRot: -125.72579193115234f } - "mp": { dim: "wc:westeros", x: 4520, y: 66, z: 9141, time: 1696965112174L, xRot: 23.40021324157715f, yRot: 178.02606201171875f } - "maidenpool": { dim: "wc:westeros", x: 4520, y: 66, z: 9141, time: 1696965112174L, xRot: 23.40021324157715f, yRot: 178.02606201171875f } - "romo": { dim: "wc:westeros", x: -244, y: 49, z: 15265, time: 1696965112185L, xRot: 2.031298875808716f, yRot: -113.390869140625f } - "romomanor": { dim: "wc:westeros", x: 72, y: 37, z: 14940, time: 1696965112185L, xRot: -2.9999489784240723f, yRot: -302.1213684082031f } - "mossley": { dim: "wc:westeros", x: 3486, y: 36, z: 8566, time: 1696965112185L, xRot: 7.650148391723633f, yRot: -300.029296875f } - "RavishMeRed": { dim: "wc:playground", x: 1067, y: 21, z: 4645, time: 1696965112185L, xRot: 8.9999361038208f, yRot: -9.706469535827637f } - "Ravish": { dim: "wc:playground", x: 1067, y: 22, z: 4648, time: 1696965112186L, xRot: 8.9999361038208f, yRot: -9.706469535827637f } - "Aino": { dim: "wc:playground", x: 662, y: 21, z: 570, time: 1696965112186L, xRot: 4.050080299377441f, yRot: -178.31570434570312f } - "jesuswasagirl": { dim: "wc:playground", x: 662, y: 21, z: 570, time: 1696965112186L, xRot: 4.050080299377441f, yRot: -178.31570434570312f } - "sappertsc": { dim: "wc:playground", x: 455, y: 21, z: 4658, time: 1696965112186L, xRot: 3.5999889373779297f, yRot: 173.57554626464844f } - "DM": { dim: "wc:westeros", x: 6682, y: 78, z: 11174, time: 1696965112187L, xRot: -3.810394763946533f, yRot: -186.66659545898438f } - "ChrisHiss": { dim: "wc:playground", x: 855, y: 21, z: 4644, time: 1696965112187L, xRot: -4.350032806396484f, yRot: 318.6432800292969f } - "imic": { dim: "wc:playground", x: 643, y: 21, z: 4643, time: 1696965112187L, xRot: 6.299976825714111f, yRot: -47.6563606262207f } - "wrmd": { dim: "wc:playground", x: 205, y: 11, z: 1544, time: 1696965112187L, xRot: 4.8000688552856445f, yRot: -236.92477416992188f } - "WhereRmyDragons": { dim: "wc:playground", x: 205, y: 11, z: 1544, time: 1696965112187L, xRot: 4.8000688552856445f, yRot: -236.92477416992188f } - "dragons": { dim: "wc:playground", x: 205, y: 11, z: 1544, time: 1696965112187L, xRot: 4.8000688552856445f, yRot: -236.92477416992188f } - "wylt": { dim: "wc:westeros", x: 1146, y: 126, z: 20645, time: 1696965112187L, xRot: 2.99997615814209f, yRot: 3.4405276775360107f } - "mudgatecopy": { dim: "wc:playground", x: 3615, y: 42, z: -584, time: 1696965112187L, xRot: 25.650224685668945f, yRot: -177.53370666503906f } - "hammerhalvillage": { dim: "wc:westeros", x: -6744, y: 56, z: 21156, time: 1696965112187L, xRot: 16.19997215270996f, yRot: -160.63742065429688f } - "OATown": { dim: "wc:westeros", x: 7883, y: 39, z: 4518, time: 1696965112188L, xRot: -11.399877548217773f, yRot: -266.4774169921875f } - "blondybottom": { dim: "wc:westeros", x: 6947, y: 48, z: 7765, time: 1696965112188L, xRot: 1.0500413179397583f, yRot: -103.2841796875f } - "kl35": { dim: "wc:playground", x: 3472, y: 71, z: -641, time: 1696965112188L, xRot: 43.050113677978516f, yRot: -177.5337371826172f } - "kl36": { dim: "wc:playground", x: 3622, y: 55, z: -622, time: 1696965112188L, xRot: 10.050140380859375f, yRot: -179.93373107910156f } - "kl33": { dim: "wc:playground", x: 3677, y: 45, z: -660, time: 1696965112188L, xRot: 8.1001615524292f, yRot: -269.6337585449219f } - "kl2": { dim: "wc:playground", x: 3308, y: 55, z: -1295, time: 1696965112189L, xRot: 29.85015869140625f, yRot: -168.53382873535156f } - "kl3": { dim: "wc:playground", x: 3435, y: 48, z: -1319, time: 1696965112189L, xRot: 6.0001726150512695f, yRot: -93.6838150024414f } - "kl6": { dim: "wc:playground", x: 3856, y: 73, z: -1294, time: 1696965112189L, xRot: 21.30018424987793f, yRot: -187.13369750976562f } - "kl7": { dim: "wc:playground", x: 4005, y: 72, z: -1331, time: 1696965112189L, xRot: 25.050199508666992f, yRot: -174.38368225097656f } - "kl9": { dim: "wc:playground", x: 3149, y: 47, z: -1140, time: 1696965112189L, xRot: 11.250123023986816f, yRot: -176.9338836669922f } - "kl10": { dim: "wc:playground", x: 3281, y: 56, z: -1124, time: 1696965112189L, xRot: 18.15018081665039f, yRot: -166.13348388671875f } - "kl11": { dim: "wc:playground", x: 3346, y: 53, z: -1205, time: 1696965112189L, xRot: 50.10020065307617f, yRot: -180.53338623046875f } - "kl12": { dim: "wc:playground", x: 3458, y: 42, z: -1240, time: 1696965112189L, xRot: -2.2497665882110596f, yRot: -165.083251953125f } - "kl15": { dim: "wc:playground", x: 3928, y: 112, z: -1160, time: 1696965112189L, xRot: 54.15033721923828f, yRot: -176.93310546875f } - "kl16": { dim: "wc:playground", x: 4113, y: 55, z: -1160, time: 1696965112190L, xRot: 16.200328826904297f, yRot: -149.78292846679688f } - "kl17": { dim: "wc:playground", x: 3134, y: 43, z: -1012, time: 1696965112190L, xRot: 3.600109338760376f, yRot: -67.283935546875f } - "kl18": { dim: "wc:playground", x: 3269, y: 58, z: -1035, time: 1696965112190L, xRot: 21.30013084411621f, yRot: -93.83392333984375f } - "kl19": { dim: "wc:playground", x: 3460, y: 51, z: -1086, time: 1696965112190L, xRot: 21.450151443481445f, yRot: -89.18408203125f } - "kl20": { dim: "wc:playground", x: 3560, y: 47, z: -1041, time: 1696965112190L, xRot: 46.20012664794922f, yRot: -176.78363037109375f } - "kl21": { dim: "wc:playground", x: 3642, y: 47, z: -1058, time: 1696965112190L, xRot: 7.500147819519043f, yRot: -99.23370361328125f } - "kl22": { dim: "wc:playground", x: 3745, y: 50, z: -1035, time: 1696965112190L, xRot: 27.300193786621094f, yRot: -73.43341064453125f } - "kl23": { dim: "wc:playground", x: 3867, y: 64, z: -979, time: 1696965112190L, xRot: 22.950185775756836f, yRot: -131.03369140625f } - "kl24": { dim: "wc:playground", x: 4142, y: 70, z: -903, time: 1696965112190L, xRot: 36.15017318725586f, yRot: -225.6837158203125f } - "kl26": { dim: "wc:playground", x: 3358, y: 78, z: -934, time: 1696965112190L, xRot: 11.100088119506836f, yRot: -171.9840545654297f } - "kl28": { dim: "wc:playground", x: 3726, y: 49, z: -850, time: 1696965112191L, xRot: 21.150070190429688f, yRot: -82.88421630859375f } - "kl29": { dim: "wc:playground", x: 3849, y: 77, z: -810, time: 1696965112191L, xRot: 13.80005168914795f, yRot: -74.93414306640625f } - "kl30": { dim: "wc:playground", x: 4037, y: 118, z: -732, time: 1696965112191L, xRot: 21.900026321411133f, yRot: -49.13372802734375f } - "kl34": { dim: "wc:playground", x: 3819, y: 68, z: -673, time: 1696965112191L, xRot: 21.000173568725586f, yRot: -174.98382568359375f } - "kl37": { dim: "wc:playground", x: 3533, y: 44, z: -542, time: 1696965112202L, xRot: 13.950139045715332f, yRot: -1.733856201171875f } - "cactus": { dim: "wc:playground", x: 436, y: 21, z: 561, time: 1696965112202L, xRot: 7.799987316131592f, yRot: -16.895261764526367f } - "dragongatecopy": { dim: "wc:playground", x: 4197, y: 51, z: -1322, time: 1696965112202L, xRot: -7.406515121459961f, yRot: -135.5276641845703f } - "Ramen": { dim: "wc:playground", x: 361, y: 21, z: 2299, time: 1696965112202L, xRot: -7.349977016448975f, yRot: 179.75526428222656f } - "mpseptry": { dim: "wc:westeros", x: 3494, y: 98, z: 9309, time: 1696965112202L, xRot: 5.400147438049316f, yRot: -181.2237091064453f } - "Joseidon": { dim: "wc:playground", x: 229, y: 21, z: 4647, time: 1696965112203L, xRot: 4.499960899353027f, yRot: 332.12591552734375f } - "middlebury": { dim: "wc:westeros", x: 1150, y: 114, z: 16916, time: 1696965112203L, xRot: 8.100008010864258f, yRot: -151.41815185546875f } - "hgtown": { dim: "wc:westeros", x: -4822, y: 39, z: 18484, time: 1696965112203L, xRot: -12.300008773803711f, yRot: 316.5195617675781f } - "dyrham1": { dim: "wc:westeros", x: 7283, y: 72, z: 8918, time: 1696965112203L, xRot: -7.650001525878906f, yRot: 269.1885681152344f } - "KLredo": { dim: "wc:playground", x: 3615, y: 42, z: -593, time: 1696965112203L, xRot: -16.199708938598633f, yRot: -182.63427734375f } - "bastardscradle": { dim: "wc:westeros", x: -9870, y: 107, z: 26933, time: 1696965112203L, xRot: 41.24966812133789f, yRot: 220.19134521484375f } - "redwynecastle": { dim: "wc:westeros", x: -9084, y: 66, z: 25799, time: 1696965112203L, xRot: 18.149995803833008f, yRot: -105.60958099365234f } - "stonecrabcay": { dim: "wc:westeros", x: -10492, y: 57, z: 25889, time: 1696965112203L, xRot: 34.20001983642578f, yRot: 271.6168212890625f } - "holiday2020": { dim: "wc:playground", x: 5484, y: 27, z: -665, time: 1696965112203L, xRot: 12.748469352722168f, yRot: 175.06959533691406f } - "shiptestold": { dim: "wc:playground", x: 687, y: 25, z: -651, time: 1696965112203L, xRot: 19.199941635131836f, yRot: 179.62306213378906f } - "shipyardold": { dim: "wc:playground", x: 687, y: 25, z: -651, time: 1696965112204L, xRot: 19.199941635131836f, yRot: 179.62306213378906f } - "shiptest": { dim: "wc:playground", x: 534, y: 24, z: -327, time: 1696965112204L, xRot: -0.3001195788383484f, yRot: 181.572265625f } - "shipyard": { dim: "wc:playground", x: 534, y: 24, z: -327, time: 1696965112204L, xRot: -0.3001195788383484f, yRot: 181.572265625f } - "BMtower": { dim: "wc:westeros", x: -2975, y: 137, z: 21719, time: 1696965112204L, xRot: -3.4499917030334473f, yRot: -273.74566650390625f } - "MoonHole": { dim: "wc:playground", x: -1024, y: 48, z: 3671, time: 1696965112204L, xRot: 16.65003776550293f, yRot: 2.7505385875701904f } - "whham": { dim: "wc:westeros", x: -5614, y: 76, z: 8687, time: 1696965112204L, xRot: 12.449847221374512f, yRot: -353.62158203125f } - "whhf": { dim: "wc:westeros", x: -4642, y: 82, z: 8590, time: 1696965112205L, xRot: 39.29989242553711f, yRot: -359.1716003417969f } - "oldtumblersfalls": { dim: "wc:westeros", x: -373, y: 40, z: 9959, time: 1696965112205L, xRot: -2.4000356197357178f, yRot: -260.79620361328125f } - "tumblersfalls": { dim: "wc:westeros", x: -221, y: 36, z: 12023, time: 1696965112205L, xRot: 1.317886471748352f, yRot: -173.80926513671875f } - "fermont": { dim: "wc:westeros", x: -3516, y: 42, z: -2047, time: 1696965112205L, xRot: -9.000285148620605f, yRot: 0.004088559653609991f } - "nvmanse": { dim: "wc:westeros", x: -3360, y: 40, z: 17845, time: 1696965112205L, xRot: 3.6000847816467285f, yRot: -193.206298828125f } - "wgflax": { dim: "wc:westeros", x: -3285, y: 44, z: 18280, time: 1696965112205L, xRot: -4.049904823303223f, yRot: -249.6055908203125f } - "wgcastle": { dim: "wc:westeros", x: -2996, y: 78, z: 18686, time: 1696965112205L, xRot: -14.550073623657227f, yRot: 111.77964782714844f } - "whitegrovecastle": { dim: "wc:westeros", x: -2996, y: 78, z: 18686, time: 1696965112206L, xRot: -14.550073623657227f, yRot: 111.77964782714844f } - "norridge": { dim: "wc:westeros", x: -3083, y: 56, z: 18853, time: 1696965112206L, xRot: -6.600076675415039f, yRot: 222.47964477539062f } - "norridgevassal": { dim: "wc:westeros", x: -3718, y: 48, z: 18098, time: 1696965112206L, xRot: -9.761675834655762f, yRot: 143.81639099121094f } - "nvhamlet1": { dim: "wc:westeros", x: -4039, y: 41, z: 18125, time: 1696965112206L, xRot: -1.4999322891235352f, yRot: -91.50674438476562f } - "nvhamlet2": { dim: "wc:westeros", x: -3546, y: 42, z: 17900, time: 1696965112206L, xRot: 0.29998156428337097f, yRot: 79.19332122802734f } - "Endykltest": { dim: "wc:playground", x: 949, y: 128, z: 1377, time: 1696965112206L, xRot: 10.349990844726562f, yRot: -67.74938201904297f } - "rmham": { dim: "wc:westeros", x: -347, y: 62, z: 21381, time: 1696965112206L, xRot: 21.150060653686523f, yRot: 113.17578125f } - "dyrham2": { dim: "wc:westeros", x: 7042, y: 48, z: 8842, time: 1696965112206L, xRot: -1.4999676942825317f, yRot: 83.03858947753906f } - "leftie": { dim: "wc:playground", x: 202, y: 36, z: 2081, time: 1696965112206L, xRot: 3.624814987182617f, yRot: -267.11480712890625f } - "leftie181": { dim: "wc:playground", x: 202, y: 36, z: 2081, time: 1696965112207L, xRot: 3.624814987182617f, yRot: -267.11480712890625f } - "padrao": { dim: "wc:playground", x: -45, y: 21, z: 1539, time: 1696965112207L, xRot: -3.9000184535980225f, yRot: 95.00775909423828f } - "emilebathhouse": { dim: "wc:playground", x: 1006, y: 54, z: 689, time: 1696965112207L, xRot: -15.299994468688965f, yRot: -354.09344482421875f } - "lukbaelors": { dim: "wc:playground", x: -492, y: 167, z: 2813, time: 1696965112207L, xRot: 2.699986457824707f, yRot: -1.3949711322784424f } - "wayfarersrest": { dim: "wc:westeros", x: -1603, y: 86, z: 10172, time: 1696965112207L, xRot: 12.986361503601074f, yRot: -12.496041297912598f } - "blanetree": { dim: "wc:westeros", x: -3646, y: 56, z: 8361, time: 1696965112207L, xRot: -6.758051872253418f, yRot: 134.4744110107422f } - "nutt": { dim: "wc:westeros", x: -3000, y: 49, z: 3039, time: 1696965112208L, xRot: 3.7029106616973877f, yRot: 116.3837661743164f } - "wayn": { dim: "wc:westeros", x: -1813, y: 50, z: 8174, time: 1696965112208L, xRot: 12.43718433380127f, yRot: 219.3094024658203f } - "mandrake": { dim: "wc:westeros", x: -779, y: 44, z: 3116, time: 1696965112208L, xRot: -1.157711148262024f, yRot: 17.55023193359375f } - "penny": { dim: "wc:westeros", x: 792, y: 51, z: 5315, time: 1696965112218L, xRot: 11.53614330291748f, yRot: 247.70736694335938f } - "chambers": { dim: "wc:westeros", x: 748, y: 46, z: 11010, time: 1696965112219L, xRot: 10.367341995239258f, yRot: 317.76080322265625f } - "wendishtown": { dim: "wc:westeros", x: -2541, y: 65, z: 9435, time: 1696965112219L, xRot: -2.607388734817505f, yRot: 77.54183959960938f } - "mummersford": { dim: "wc:westeros", x: -2395, y: 35, z: 9334, time: 1696965112219L, xRot: 15.69253921508789f, yRot: 156.59197998046875f } - "sherrer": { dim: "wc:westeros", x: -2508, y: 41, z: 9254, time: 1696965112219L, xRot: 7.0500078201293945f, yRot: -45.54087448120117f } - "storroldsriver": { dim: "wc:westeros", x: 5803, y: 60, z: -17402, time: 1696965112219L, xRot: 18.74992561340332f, yRot: 99.26800537109375f } - "OtPalettes": { dim: "wc:playground", x: 2385, y: 20, z: 926, time: 1696965112219L, xRot: -21.899978637695312f, yRot: -359.662353515625f } - "gallowsgreyh2": { dim: "wc:westeros", x: 2545, y: 116, z: 18452, time: 1696965112220L, xRot: 10.500014305114746f, yRot: -221.2763671875f } - "boneyrace": { dim: "wc:westeros", x: 1118, y: 141, z: 21561, time: 1696965112220L, xRot: 46.50000762939453f, yRot: 88.97874450683594f } - "varnerhf": { dim: "wc:westeros", x: -2552, y: 49, z: 14854, time: 1696965112220L, xRot: -30.99536895751953f, yRot: -116.99552917480469f } - "ashlogging": { dim: "wc:westeros", x: 690, y: 61, z: -4259, time: 1696965112220L, xRot: 32.250057220458984f, yRot: 122.37458038330078f } - "wylandsouth": { dim: "wc:westeros", x: 1239, y: 64, z: 21857, time: 1696965112220L, xRot: -4.650036811828613f, yRot: 279.31365966796875f } - "dyrquarry": { dim: "wc:westeros", x: 7559, y: 79, z: 8959, time: 1696965112220L, xRot: 15.511800765991211f, yRot: -204.98719787597656f } - "kl8": { dim: "wc:playground", x: 4075, y: 85, z: -1385, time: 1696965112220L, xRot: -4.200128555297852f, yRot: 180.9466552734375f } - "Gallowsgrey": { dim: "wc:westeros", x: 2615, y: 97, z: 18875, time: 1696965112220L, xRot: 1.9493573904037476f, yRot: -353.277099609375f } - "sapville": { dim: "wc:westeros", x: -3491, y: 85, z: 21749, time: 1696965112220L, xRot: 1.9500230550765991f, yRot: 245.85247802734375f } - "ruddyhall": { dim: "wc:westeros", x: 5805, y: 60, z: -17413, time: 1696965112221L, xRot: 22.049917221069336f, yRot: 112.76799011230469f } - "lonelylighthouse": { dim: "wc:westeros", x: 8136, y: 35, z: -4620, time: 1696965112221L, xRot: -9.899996757507324f, yRot: 335.4878845214844f } - "boggsham1": { dim: "wc:westeros", x: 6955, y: 44, z: 10110, time: 1696965112221L, xRot: 9.58512020111084f, yRot: -188.5819091796875f } - "rousemont": { dim: "wc:westeros", x: -244, y: 49, z: 15265, time: 1696965112221L, xRot: 2.031298875808716f, yRot: -113.390869140625f } - "sweetport": { dim: "wc:westeros", x: 7580, y: 85, z: 14125, time: 1696965112221L, xRot: 6.149977207183838f, yRot: -179.61865234375f } - "atranta": { dim: "wc:westeros", x: 792, y: 48, z: 8162, time: 1696965112221L, xRot: -21.884729385375977f, yRot: 289.621337890625f } - "whitewalls": { dim: "wc:westeros", x: 2262, y: 46, z: 9852, time: 1696965112222L, xRot: 13.238895416259766f, yRot: -317.44830322265625f } - "belgrave": { dim: "wc:westeros", x: -325, y: 79, z: 10779, time: 1696965112222L, xRot: 42.92133712768555f, yRot: 187.9210205078125f } - "perryn": { dim: "wc:westeros", x: -510, y: 45, z: 9576, time: 1696965112222L, xRot: -2.2944579124450684f, yRot: -313.385009765625f } - "donnelwood": { dim: "wc:westeros", x: -426, y: 49, z: 8985, time: 1696965112222L, xRot: 20.937585830688477f, yRot: -10.469024658203125f } - "paege": { dim: "wc:westeros", x: -2411, y: 44, z: 7894, time: 1696965112222L, xRot: 1.567399024963379f, yRot: 12.401641845703125f } - "waxbridge": { dim: "wc:westeros", x: 5443, y: 45, z: 8420, time: 1696965112222L, xRot: -6.149934768676758f, yRot: -95.177734375f } - "waxbridgehamlet": { dim: "wc:westeros", x: 5668, y: 48, z: 8406, time: 1696965112223L, xRot: -1.9498895406723022f, yRot: -82.248046875f } - "wickendenbeach": { dim: "wc:westeros", x: 6912, y: 40, z: 8145, time: 1696965112223L, xRot: 4.650008201599121f, yRot: -33.4942626953125f } - "redhilllumber": { dim: "wc:westeros", x: 6710, y: 75, z: 7957, time: 1696965112223L, xRot: -1.0500458478927612f, yRot: -172.6409912109375f } - "astberrylumber": { dim: "wc:westeros", x: 6620, y: 46, z: 7731, time: 1696965112223L, xRot: -4.649927139282227f, yRot: -332.2958984375f } - "astberrymining": { dim: "wc:westeros", x: 6161, y: 59, z: 7809, time: 1696965112223L, xRot: 8.700016021728516f, yRot: -266.0908508300781f } - "wickendenglacier": { dim: "wc:westeros", x: 5946, y: 94, z: 7835, time: 1696965112223L, xRot: 5.10004997253418f, yRot: -238.94058227539062f } - "leuchtendenglacier": { dim: "wc:westeros", x: 5946, y: 94, z: 7835, time: 1696965112223L, xRot: 5.10004997253418f, yRot: -238.94058227539062f } - "leuchtendencamp": { dim: "wc:westeros", x: 6049, y: 71, z: 7857, time: 1696965112224L, xRot: -5.099968433380127f, yRot: -253.64048767089844f } - "rosepool": { dim: "wc:westeros", x: 6088, y: 54, z: 8286, time: 1696965112224L, xRot: -11.400042533874512f, yRot: -128.39132690429688f } - "wickendenlumber": { dim: "wc:westeros", x: 6336, y: 47, z: 8044, time: 1696965112224L, xRot: -1.2000043392181396f, yRot: -180.89100646972656f } - "vinetownarsenal": { dim: "wc:westeros", x: -9247, y: 59, z: 25450, time: 1696965112224L, xRot: 21.74997329711914f, yRot: 181.923583984375f } - "arsenal": { dim: "wc:westeros", x: -9247, y: 59, z: 25450, time: 1696965112224L, xRot: 21.74997329711914f, yRot: 181.923583984375f } - "Giftham1": { dim: "wc:westeros", x: 395, y: 41, z: -15721, time: 1696965112224L, xRot: 4.349972248077393f, yRot: -0.4329833984375f } - "newjobs": { dim: "wc:playground", x: 3992, y: 20, z: 2995, time: 1696965112235L, xRot: 3.079700469970703f, yRot: 94.24708557128906f } - "oldanchortown": { dim: "wc:westeros", x: 7883, y: 38, z: 4518, time: 1696965112235L, xRot: -10.649879455566406f, yRot: -270.37738037109375f } - "cursedrk": { dim: "wc:playground", x: -482, y: 20, z: 204, time: 1696965112235L, xRot: 3.44991135597229f, yRot: 177.7501678466797f } - "cursedmaegors": { dim: "wc:playground", x: -482, y: 20, z: 204, time: 1696965112235L, xRot: 3.44991135597229f, yRot: 177.7501678466797f } - "howtoedit": { dim: "wc:playground", x: -111, y: 195, z: -78, time: 1696965112235L, xRot: 1.6499685049057007f, yRot: 89.32666015625f } - "WEbasics": { dim: "wc:playground", x: -837, y: 38, z: 1260, time: 1696965112235L, xRot: 8.560576438903809f, yRot: 336.7828063964844f } - "WEguide": { dim: "wc:playground", x: -861, y: 49, z: 1240, time: 1696965112236L, xRot: 10.810580253601074f, yRot: 271.6826171875f } - "sweetsong": { dim: "wc:westeros", x: 658, y: 95, z: 14648, time: 1696965112236L, xRot: 36.576988220214844f, yRot: -62.42706298828125f } - "breakstonehill": { dim: "wc:westeros", x: 1119, y: 66, z: -13456, time: 1696965112236L, xRot: 19.527557373046875f, yRot: -88.86420440673828f } - "flint": { dim: "wc:westeros", x: 1119, y: 66, z: -13453, time: 1696965112239L, xRot: 19.527557373046875f, yRot: -88.86420440673828f } - "lwvillage": { dim: "wc:westeros", x: 6127, y: 35, z: 13433, time: 1696965112240L, xRot: -4.050033092498779f, yRot: -253.38006591796875f } - "lwlodge": { dim: "wc:westeros", x: 5943, y: 59, z: 13514, time: 1696965112240L, xRot: 33.72834014892578f, yRot: 25.08609962463379f } - "arbortestvinetown": { dim: "wc:playground", x: 2373, y: 20, z: -1483, time: 1696965112240L, xRot: 7.0499444007873535f, yRot: 337.1495666503906f } - "ContraBlonde": { dim: "wc:playground", x: 625, y: 21, z: 4334, time: 1696965112240L, xRot: 7.26831579208374f, yRot: -268.0617370605469f } - "SFH": { dim: "wc:westeros", x: -9245, y: 84, z: 26817, time: 1696965112240L, xRot: 22.499990463256836f, yRot: 118.33990478515625f } - "SubDistrictExample": { dim: "wc:playground", x: 2323, y: 42, z: 1037, time: 1696965112240L, xRot: 8.549967765808105f, yRot: -185.51593017578125f } - "chewyman": { dim: "wc:playground", x: -196, y: 21, z: 4040, time: 1696965112240L, xRot: 8.958656311035156f, yRot: 174.92660522460938f } - "TorTown": { dim: "wc:westeros", x: 4846, y: 45, z: 23086, time: 1696965112241L, xRot: 3.000286817550659f, yRot: -20.868837356567383f } - "chewy": { dim: "wc:playground", x: -201, y: 21, z: 4032, time: 1696965112241L, xRot: 1.9499534368515015f, yRot: -45.27049255371094f } - "fof": { dim: "wc:westeros", x: 85, y: 59, z: 12233, time: 1696965112241L, xRot: 12.00088119506836f, yRot: -351.48565673828125f } - "honeyholtseptry": { dim: "wc:westeros", x: -6385, y: 46, z: 21244, time: 1696965112241L, xRot: -1.95002281665802f, yRot: -136.35791015625f } - "honeyholtvillage": { dim: "wc:westeros", x: -7088, y: 47, z: 21572, time: 1696965112241L, xRot: -3.8422470092773438f, yRot: 232.74661254882812f } - "honeyholtfarmstead1": { dim: "wc:westeros", x: -7916, y: 55, z: 21091, time: 1696965112241L, xRot: -4.5922441482543945f, yRot: -96.80397033691406f } - "honeyholthf": { dim: "wc:westeros", x: -7817, y: 52, z: 20712, time: 1696965112252L, xRot: -12.842243194580078f, yRot: -108.35397338867188f } - "honeyholtfarmstead2": { dim: "wc:westeros", x: -7142, y: 53, z: 20808, time: 1696965112253L, xRot: -1.7422428131103516f, yRot: -30.9538631439209f } - "mollen": { dim: "wc:westeros", x: -247, y: 100, z: -10190, time: 1696965112253L, xRot: 25.30141830444336f, yRot: -1.1495962142944336f } - "towers": { dim: "wc:westeros", x: 715, y: 89, z: -9053, time: 1696965112253L, xRot: 37.454769134521484f, yRot: -268.1267395019531f } - "saltspeardelta": { dim: "wc:westeros", x: 58, y: 65, z: -2058, time: 1696965112253L, xRot: 26.18733787536621f, yRot: 155.53697204589844f } - "hornhillseptry": { dim: "wc:westeros", x: -4794, y: 82, z: 19567, time: 1696965112253L, xRot: 7.1999921798706055f, yRot: 205.2056121826172f } - "Giftham2": { dim: "wc:westeros", x: 750, y: 90, z: -15617, time: 1696965112253L, xRot: -5.099921703338623f, yRot: 61.22053146362305f } - "giftquarry": { dim: "wc:westeros", x: 1211, y: 60, z: -16009, time: 1696965112254L, xRot: -5.100040912628174f, yRot: -18.03294563293457f } - "albator": { dim: "wc:westeros", x: 4837, y: 51, z: 23071, time: 1696965112254L, xRot: 3.7499818801879883f, yRot: -12.859407424926758f } - "dyredenpass": { dim: "wc:westeros", x: 8034, y: 80, z: 8634, time: 1696965112254L, xRot: 3.4499495029449463f, yRot: 1.349517822265625f } - "statham": { dim: "wc:westeros", x: 1657, y: 41, z: 14312, time: 1696965112254L, xRot: 2.5501232147216797f, yRot: 156.74928283691406f } - "pept1c": { dim: "wc:playground", x: 1063, y: 21, z: 4848, time: 1696965112254L, xRot: -8.24996280670166f, yRot: -39.706790924072266f } - "beresford": { dim: "wc:westeros", x: -7531, y: 68, z: -3947, time: 1696965112255L, xRot: 7.510381698608398f, yRot: -285.2533264160156f } - "beresfordvillage": { dim: "wc:westeros", x: -8032, y: 38, z: -3689, time: 1696965112255L, xRot: 0.7603828310966492f, yRot: -160.90325927734375f } - "boggscastle": { dim: "wc:westeros", x: 7099, y: 142, z: 9323, time: 1696965112255L, xRot: 19.650043487548828f, yRot: 84.72216796875f } - "bmhermitage": { dim: "wc:westeros", x: -3762, y: 111, z: 21345, time: 1696965112255L, xRot: -1.2000082731246948f, yRot: -16.348052978515625f } - "FrostRuin1": { dim: "wc:westeros", x: 9148, y: 88, z: -10950, time: 1696965112255L, xRot: -7.199940204620361f, yRot: 37.49569320678711f } - "FrostBarrow": { dim: "wc:westeros", x: 9216, y: 66, z: -11174, time: 1696965112255L, xRot: -1.4999339580535889f, yRot: -89.55426788330078f } - "FrostRuin2": { dim: "wc:westeros", x: 9106, y: 78, z: -11382, time: 1696965112255L, xRot: -16.649965286254883f, yRot: -123.90436553955078f } - "FrostChildren": { dim: "wc:westeros", x: 8904, y: 70, z: -11421, time: 1696965112255L, xRot: -5.250014305114746f, yRot: -151.80531311035156f } - "MoreStarryTests": { dim: "wc:playground", x: 2947, y: 20, z: 637, time: 1696965112255L, xRot: -1.378442406654358f, yRot: 214.3087158203125f } - "meatsept": { dim: "wc:westeros", x: 385, y: 63, z: 17761, time: 1696965112255L, xRot: -8.581598281860352f, yRot: 89.2032470703125f } - "nftest": { dim: "wc:playground", x: 1134, y: 21, z: 40, time: 1696965112256L, xRot: 14.549891471862793f, yRot: -41.536808013916016f } - "JJ": { dim: "wc:playground", x: 854, y: 2, z: 4848, time: 1696965112256L, xRot: -14.250018119812012f, yRot: -43.00532150268555f } - "JJLyric": { dim: "wc:playground", x: 852, y: 21, z: 4846, time: 1696965112256L, xRot: 11.2498197555542f, yRot: -37.15538024902344f } - "cressey": { dim: "wc:westeros", x: 3510, y: 45, z: 10565, time: 1696965112256L, xRot: -11.399969100952148f, yRot: -171.7811279296875f } - "ormeold": { dim: "wc:playground", x: -380, y: 108, z: -387, time: 1696965112256L, xRot: 34.200130462646484f, yRot: 73.50240325927734f } - "InvertedWinger": { dim: "wc:playground", x: 651, y: 21, z: 4864, time: 1696965112256L, xRot: -1.6499987840652466f, yRot: -39.63737869262695f } - "Inv": { dim: "wc:playground", x: 652, y: 21, z: 4865, time: 1696965112256L, xRot: -6.749995708465576f, yRot: -39.787445068359375f } - "JosephUnderlight": { dim: "wc:playground", x: 21, y: 21, z: 363, time: 1696965112257L, xRot: -1.2553796768188477f, yRot: -40.04721450805664f } - "vinnie": { dim: "wc:playground", x: 434, y: 21, z: 4847, time: 1696965112257L, xRot: 2.2499730587005615f, yRot: -48.23781204223633f } - "otrepo": { dim: "wc:playground", x: 2215, y: 31, z: 1028, time: 1696965112257L, xRot: 8.257552146911621f, yRot: 8.71634578704834f } - "tickle": { dim: "wc:playground", x: -4, y: 21, z: 4637, time: 1696965112257L, xRot: -2.8500049114227295f, yRot: -213.01141357421875f } - "mpcastle": { dim: "wc:westeros", x: 4674, y: 71, z: 9046, time: 1696965112257L, xRot: 24.600215911865234f, yRot: 244.32606506347656f } - "Torseptry": { dim: "wc:westeros", x: 4408, y: 48, z: 22884, time: 1696965112257L, xRot: -18.150012969970703f, yRot: -180.23367309570312f } - "Torvilla1": { dim: "wc:westeros", x: 4709, y: 46, z: 22858, time: 1696965112257L, xRot: -4.500000953674316f, yRot: -158.03369140625f } - "Torvilla2": { dim: "wc:westeros", x: 4665, y: 75, z: 23161, time: 1696965112257L, xRot: -9.150022506713867f, yRot: -284.78369140625f } - "Torvilla3": { dim: "wc:westeros", x: 4875, y: 85, z: 23374, time: 1696965112258L, xRot: -4.949978828430176f, yRot: 98.76638793945312f } - "boggs1": { dim: "wc:westeros", x: 7124, y: 60, z: 9697, time: 1696965112269L, xRot: 29.25000762939453f, yRot: -237.0387420654297f } - "sfham3": { dim: "wc:westeros", x: -7165, y: 91, z: 11127, time: 1696965112269L, xRot: 27.749914169311523f, yRot: 181.04391479492188f } - "footly": { dim: "wc:westeros", x: 1126, y: 68, z: 14156, time: 1696965112270L, xRot: -9.43928050994873f, yRot: 52.28515625f } - "hhham2": { dim: "wc:westeros", x: -7026, y: 38, z: 20454, time: 1696965112270L, xRot: 0.3080328702926636f, yRot: -211.1385498046875f } - "witherack": { dim: "wc:playground", x: 1063, y: 21, z: 5051, time: 1696965112270L, xRot: 1.9499834775924683f, yRot: -31.906034469604492f } - "kl27": { dim: "wc:playground", x: 3620, y: 115, z: -959, time: 1696965112271L, xRot: -1.1999902725219727f, yRot: -269.1844482421875f } - "iofchildren": { dim: "wc:westeros", x: 1610, y: 47, z: 9804, time: 1696965112271L, xRot: -1.0572367906570435f, yRot: -34.869842529296875f } - "kl32": { dim: "wc:playground", x: 3593, y: 78, z: -753, time: 1696965112271L, xRot: -7.8000030517578125f, yRot: 181.71316528320312f } - "thelonelykestrel": { dim: "wc:westeros", x: -1915, y: 49, z: -2716, time: 1696965112271L, xRot: -1.1999932527542114f, yRot: 180.064453125f } - "Wull": { dim: "wc:westeros", x: -1915, y: 61, z: -14027, time: 1696965112271L, xRot: -3.7500035762786865f, yRot: -272.8067626953125f } - "luk2": { dim: "wc:playground", x: -537, y: 219, z: 2805, time: 1696965112272L, xRot: 25.61540985107422f, yRot: 0.2293226718902588f } - "kl31": { dim: "wc:playground", x: 3507, y: 47, z: -769, time: 1696965112272L, xRot: -4.260934352874756f, yRot: 222.00665283203125f } - "TorMine1": { dim: "wc:westeros", x: 5294, y: 76, z: 23475, time: 1696965112272L, xRot: 3.6000709533691406f, yRot: -357.23095703125f } - "buckley": { dim: "wc:westeros", x: 1429, y: 48, z: 14911, time: 1696965112272L, xRot: 2.4000298976898193f, yRot: 172.32968139648438f } - "ormehf1": { dim: "wc:westeros", x: 2768, y: 47, z: 14921, time: 1696965112272L, xRot: 3.7754502296447754f, yRot: 194.74940490722656f } - "build": { dim: "wc:playground", x: -74, y: 224, z: -30, time: 1696965112272L, xRot: -20.571556091308594f, yRot: -93.06843566894531f } - "hallofbuilders": { dim: "wc:playground", x: 1082, y: 2, z: 5010, time: 1696965112272L, xRot: -1.4416406154632568f, yRot: -180.426025390625f } - "HoB": { dim: "wc:playground", x: 1082, y: 2, z: 5010, time: 1696965112272L, xRot: -1.4416406154632568f, yRot: -180.426025390625f } - "tt": { dim: "wc:westeros", x: 1508, y: 56, z: 14489, time: 1696965112285L, xRot: 21.000001907348633f, yRot: 27.879669189453125f } - "Uldirone": { dim: "wc:playground", x: 643, y: 21, z: 5051, time: 1696965112286L, xRot: 8.550224304199219f, yRot: 311.89447021484375f } - "dyrham3": { dim: "wc:westeros", x: 5448, y: 36, z: 8981, time: 1696965112286L, xRot: 3.7499899864196777f, yRot: -94.62139129638672f } - "torvilla4": { dim: "wc:westeros", x: 5223, y: 71, z: 23336, time: 1696965112286L, xRot: 6.899936199188232f, yRot: 356.0793762207031f } - "altraeth": { dim: "wc:westeros", x: -8580, y: 34, z: -3596, time: 1696965112286L, xRot: 8.999590873718262f, yRot: 239.28912353515625f } - "ormehf2": { dim: "wc:westeros", x: 1970, y: 58, z: 15352, time: 1696965112287L, xRot: -7.678781509399414f, yRot: 250.8905029296875f } - "torhf1": { dim: "wc:westeros", x: 5867, y: 86, z: 23348, time: 1696965112287L, xRot: -31.64960289001465f, yRot: 175.39019775390625f } - "hammertown": { dim: "wc:westeros", x: -6666, y: 51, z: 21009, time: 1696965112287L, xRot: 7.650121688842773f, yRot: 6.756735801696777f } - "mpswampy": { dim: "wc:playground", x: 4030, y: 129, z: 1348, time: 1696965112287L, xRot: 25.95004653930664f, yRot: -82.71786499023438f } - "hhham3": { dim: "wc:westeros", x: -6707, y: 43, z: 20322, time: 1696965112287L, xRot: 10.350163459777832f, yRot: -177.68634033203125f } - "frozenpony": { dim: "wc:westeros", x: -580, y: 43, z: -4535, time: 1696965112287L, xRot: -6.15016508102417f, yRot: 171.16522216796875f } - "hglodge": { dim: "wc:westeros", x: -4158, y: 53, z: 18909, time: 1696965112287L, xRot: -18.9000186920166f, yRot: -47.53778076171875f } - "sapper": { dim: "wc:playground", x: 443, y: 21, z: 4651, time: 1696965112287L, xRot: 7.500038146972656f, yRot: 353.5752868652344f } - "payne": { dim: "wc:westeros", x: -4482, y: 73, z: 8057, time: 1696965112288L, xRot: -9.348163604736328f, yRot: -104.00387573242188f } - "apphouse": { dim: "wc:playground", x: 46, y: 22, z: -102, time: 1696965112288L, xRot: 1.959693431854248f, yRot: 90.82049560546875f } - "merkley": { dim: "wc:westeros", x: 1764, y: 59, z: 14883, time: 1696965112288L, xRot: 4.711999416351318f, yRot: 288.1922302246094f } - "BoggT": { dim: "wc:westeros", x: 7172, y: 99, z: 9746, time: 1696965112288L, xRot: 3.149864912033081f, yRot: -183.18783569335938f } - "loversleap": { dim: "wc:westeros", x: 7586, y: 58, z: 9814, time: 1696965112288L, xRot: -0.29995521903038025f, yRot: -0.447021484375f } - "harclay": { dim: "wc:westeros", x: 377, y: 123, z: -11786, time: 1696965112288L, xRot: 12.069914817810059f, yRot: -0.5030156970024109f } - "liddle": { dim: "wc:westeros", x: 215, y: 136, z: -12739, time: 1696965112289L, xRot: 8.933819770812988f, yRot: 181.3332061767578f } - "eastwatchtest2": { dim: "wc:playground", x: 2364, y: 196, z: 5224, time: 1696965112289L, xRot: 23.250049591064453f, yRot: 103.32281494140625f } - "boggs2": { dim: "wc:westeros", x: 6292, y: 101, z: 9928, time: 1696965112289L, xRot: 84.29996490478516f, yRot: 88.32766723632812f } - "nightfort": { dim: "wc:westeros", x: 2119, y: 61, z: -15845, time: 1696965112289L, xRot: -11.700479507446289f, yRot: 214.6426544189453f } - "springhamshire": { dim: "wc:westeros", x: 1342, y: 79, z: 14914, time: 1696965112289L, xRot: 3.599956512451172f, yRot: 179.92845153808594f } - "smithyton": { dim: "wc:westeros", x: 354, y: 84, z: 13453, time: 1696965112289L, xRot: 26.699968338012695f, yRot: -166.63629150390625f } - "wgwedding": { dim: "wc:westeros", x: -3563, y: 66, z: 17923, time: 1696965112289L, xRot: 38.54991912841797f, yRot: -41.070404052734375f } - "bronzegate2": { dim: "wc:westeros", x: 5891, y: 109, z: 16134, time: 1696965112290L, xRot: 38.99945068359375f, yRot: -123.92657470703125f } - "bronzegate1": { dim: "wc:westeros", x: 6264, y: 99, z: 16172, time: 1696965112290L, xRot: -3.899960517883301f, yRot: -215.87139892578125f } - "langward": { dim: "wc:westeros", x: 6158, y: 46, z: 13216, time: 1696965112290L, xRot: -6.749924659729004f, yRot: -356.86968994140625f } - "boggsguide": { dim: "wc:westeros", x: 7107, y: 230, z: 9692, time: 1696965112290L, xRot: 9.000028610229492f, yRot: 274.61151123046875f } - "cobbtest": { dim: "wc:playground", x: -1128, y: 50, z: 51, time: 1696965112290L, xRot: 33.54762649536133f, yRot: -149.4186248779297f } - "springham": { dim: "wc:westeros", x: 1453, y: 79, z: 13852, time: 1696965112290L, xRot: 13.499916076660156f, yRot: 250.15357971191406f } - "peachville": { dim: "wc:westeros", x: 2532, y: 44, z: 14957, time: 1696965112290L, xRot: 5.355928421020508f, yRot: 173.65313720703125f } - "neck": { dim: "wc:westeros", x: -2286, y: 179, z: 2078, time: 1696965112290L, xRot: 54.29997253417969f, yRot: 179.703369140625f } - "necktest": { dim: "wc:playground", x: -1707, y: 20, z: 2223, time: 1696965112290L, xRot: -12.599983215332031f, yRot: -269.506103515625f } - "blondymerton": { dim: "wc:westeros", x: 192, y: 72, z: 17325, time: 1696965112291L, xRot: 25.922855377197266f, yRot: -124.87535858154297f } - "dreadfort2": { dim: "wc:westeros", x: 4268, y: 41, z: -8813, time: 1696965112291L, xRot: 3.8109853267669678f, yRot: -253.81402587890625f } - "ah1": { dim: "wc:westeros", x: 400, y: 49, z: 8073, time: 1696965112291L, xRot: -4.343337059020996f, yRot: -173.11936950683594f } - "ah2": { dim: "wc:westeros", x: 657, y: 45, z: 7565, time: 1696965112291L, xRot: 3.3554928302764893f, yRot: -295.8023376464844f } - "burleycastle": { dim: "wc:westeros", x: -1821, y: 168, z: -10707, time: 1696965112291L, xRot: 26.699993133544922f, yRot: 115.54586029052734f } - "JaimeLannister": { dim: "wc:playground", x: 644, y: 21, z: 5257, time: 1696965112291L, xRot: 0.8999686241149902f, yRot: 312.4337158203125f } - "Jaime": { dim: "wc:playground", x: 644, y: 21, z: 5257, time: 1696965112302L, xRot: 0.8999686241149902f, yRot: 312.4337158203125f } - "guilix": { dim: "wc:playground", x: 853, y: 21, z: 5256, time: 1696965112303L, xRot: 8.249988555908203f, yRot: 314.4457092285156f } - "scubsept": { dim: "wc:playground", x: 3890, y: 130, z: 2721, time: 1696965112303L, xRot: -5.6204962730407715f, yRot: -178.45501708984375f } - "pertti": { dim: "wc:playground", x: 854, y: 21, z: 5460, time: 1696965112304L, xRot: 7.499989986419678f, yRot: 323.7453918457031f } - "ridethemoondoor": { dim: "wc:playground", x: -1024, y: 50, z: 3651, time: 1696965112304L, xRot: -5.862184524536133f, yRot: -5.785888195037842f } - "dyrfort": { dim: "wc:westeros", x: 7733, y: 51, z: 8601, time: 1696965112304L, xRot: -4.579473972320557f, yRot: -24.926258087158203f } - "cosmicide": { dim: "wc:playground", x: -199, y: 21, z: 152, time: 1696965112304L, xRot: 22.649988174438477f, yRot: 292.50274658203125f } - "strijdheld": { dim: "wc:playground", x: -196, y: 21, z: 4240, time: 1696965112305L, xRot: 5.549962520599365f, yRot: 299.9142761230469f } - "blondie": { dim: "wc:playground", x: -407, y: 21, z: 4442, time: 1696965112305L, xRot: -3.2590675354003906f, yRot: -41.28985595703125f } - "TorQuarry1": { dim: "wc:westeros", x: 4601, y: 69, z: 23122, time: 1696965112305L, xRot: 5.699973106384277f, yRot: -346.8836669921875f } - "arbortestrp": { dim: "wc:playground", x: 2573, y: 20, z: -1666, time: 1696965112305L, xRot: 2.585617780685425f, yRot: 182.65399169921875f } - "Torcastle": { dim: "wc:westeros", x: 5214, y: 55, z: 23237, time: 1696965112305L, xRot: -29.550085067749023f, yRot: 113.2292251586914f } - "FlipHalfling": { dim: "wc:playground", x: 1064, y: 21, z: 5460, time: 1696965112305L, xRot: 7.73937463760376f, yRot: -31.812362670898438f } - "flip": { dim: "wc:playground", x: 1064, y: 21, z: 5460, time: 1696965112305L, xRot: 7.73937463760376f, yRot: -31.812362670898438f } - "nicodemus": { dim: "wc:playground", x: 1063, y: 21, z: 5257, time: 1696965112305L, xRot: -2.2921528816223145f, yRot: -36.189395904541016f } - "gev": { dim: "wc:playground", x: 647, y: 21, z: 4034, time: 1696965112306L, xRot: 1.3974722623825073f, yRot: -41.61678695678711f } - "Orme": { dim: "wc:westeros", x: 1644, y: 59, z: 15307, time: 1696965112306L, xRot: 1.950063943862915f, yRot: 172.80422973632812f } - "wickerman": { dim: "wc:westeros", x: 6567, y: 47, z: 8054, time: 1696965112306L, xRot: 3.600034713745117f, yRot: 0.1295166015625f } - "blackberry": { dim: "wc:westeros", x: 2111, y: 106, z: 18670, time: 1696965112306L, xRot: 8.353612899780273f, yRot: -0.11379353702068329f } - "fawntonold": { dim: "wc:westeros", x: 2363, y: 41, z: 15709, time: 1696965112306L, xRot: -5.383544921875f, yRot: -107.69589233398438f } - "fawnton": { dim: "wc:westeros", x: 3958, y: 68, z: 16452, time: 1696965112306L, xRot: 18.52128791809082f, yRot: -17.77639389038086f } - "dyrwood": { dim: "wc:westeros", x: 8275, y: 85, z: 8407, time: 1696965112306L, xRot: 26.099971771240234f, yRot: 269.495849609375f } - "joseph": { dim: "wc:playground", x: 21, y: 21, z: 363, time: 1696965112306L, xRot: -1.2553796768188477f, yRot: -40.04721450805664f } - "hhham4": { dim: "wc:westeros", x: -6211, y: 66, z: 20587, time: 1696965112307L, xRot: -8.549695014953613f, yRot: -149.09170532226562f } - "kl25": { dim: "wc:playground", x: 3108, y: 92, z: -712, time: 1696965112307L, xRot: -28.949886322021484f, yRot: -269.63421630859375f } - "amberlytest": { dim: "wc:playground", x: 975, y: 60, z: 1373, time: 1696965112307L, xRot: 13.64980697631836f, yRot: 271.2509765625f } - "hhinn": { dim: "wc:westeros", x: -6586, y: 46, z: 20300, time: 1696965112307L, xRot: 11.550243377685547f, yRot: -217.34140014648438f } - "Visstick": { dim: "wc:playground", x: 444, y: 21, z: 5051, time: 1696965112307L, xRot: 1.0499908924102783f, yRot: 359.4235534667969f } - "cobbcastle": { dim: "wc:westeros", x: 3270, y: 94, z: 15821, time: 1696965112307L, xRot: 14.196105003356934f, yRot: 194.9259033203125f } - "fm2": { dim: "wc:westeros", x: -802, y: 127, z: 6050, time: 1696965112307L, xRot: 2.0999984741210938f, yRot: 181.50682067871094f } - "caveruin": { dim: "wc:westeros", x: 5372, y: 84, z: 9485, time: 1696965112307L, xRot: 5.99995231628418f, yRot: 12.40570068359375f } - "cavetown": { dim: "wc:westeros", x: 5691, y: 67, z: 9558, time: 1696965112307L, xRot: 11.700026512145996f, yRot: 28.454957962036133f } - "cobb": { dim: "wc:westeros", x: 2953, y: 39, z: 15308, time: 1696965112308L, xRot: -3.38175630569458f, yRot: 150.25718688964844f } - "telcontaro": { dim: "wc:playground", x: 433, y: 21, z: 5255, time: 1696965112308L, xRot: 6.299745559692383f, yRot: 316.2447204589844f } - "kl1": { dim: "wc:playground", x: 3146, y: 45, z: -1221, time: 1696965112308L, xRot: 5.100139141082764f, yRot: 179.0167236328125f } - "hhmead": { dim: "wc:westeros", x: -6480, y: 54, z: 20901, time: 1696965112308L, xRot: -5.999997615814209f, yRot: 291.8837890625f } - "WallUpdate": { dim: "wc:playground", x: 3067, y: 20, z: -453, time: 1696965112308L, xRot: 11.25007438659668f, yRot: -191.18368530273438f } - "hammerhal": { dim: "wc:westeros", x: -6412, y: 89, z: 20647, time: 1696965112319L, xRot: -16.79981231689453f, yRot: -282.14178466796875f } - "leafylake": { dim: "wc:westeros", x: -6529, y: 41, z: 15566, time: 1696965112319L, xRot: 8.414225578308105f, yRot: -85.057861328125f } - "moatcailin": { dim: "wc:westeros", x: -712, y: 35, z: -1235, time: 1696965112319L, xRot: 0.5999715924263f, yRot: -181.04702758789062f } - "bullock": { dim: "wc:westeros", x: 3082, y: 42, z: 10108, time: 1696965112319L, xRot: -1.3500304222106934f, yRot: 183.31419372558594f } - "tormotherhouse": { dim: "wc:westeros", x: 6190, y: 47, z: 23171, time: 1696965112320L, xRot: 3.300436496734619f, yRot: 188.7388916015625f } - "iiell": { dim: "wc:playground", x: 224, y: 21, z: 5052, time: 1696965112320L, xRot: 5.699983596801758f, yRot: 325.2460021972656f } - "burleyham1": { dim: "wc:westeros", x: -2043, y: 55, z: -10267, time: 1696965112320L, xRot: -4.500047206878662f, yRot: 91.08961486816406f } - "dyrton": { dim: "wc:westeros", x: 6289, y: 37, z: 9072, time: 1696965112320L, xRot: 5.2900800704956055f, yRot: 273.4099426269531f } - "Patrick": { dim: "wc:playground", x: 225, y: 21, z: 5451, time: 1696965112320L, xRot: -4.500008583068848f, yRot: 234.0465087890625f } - "Razordawn": { dim: "wc:playground", x: -408, y: 21, z: -255, time: 1696965112320L, xRot: 7.499850273132324f, yRot: -24.001590728759766f } - "monopoly": { dim: "wc:playground", x: 5619, y: 48, z: 2634, time: 1696965112321L, xRot: 18.600000381469727f, yRot: -224.8541259765625f } - "bwk": { dim: "wc:westeros", x: -7262, y: 78, z: 20097, time: 1696965112321L, xRot: -14.400212287902832f, yRot: -5.085275650024414f } - "MPsept": { dim: "wc:westeros", x: 4447, y: 36, z: 9058, time: 1696965112321L, xRot: -7.6499810218811035f, yRot: -180.62857055664062f } - "risleyold": { dim: "wc:playground", x: 936, y: 138, z: -14, time: 1696965112321L, xRot: 13.350019454956055f, yRot: -180.085693359375f } - "dyreden": { dim: "wc:westeros", x: 7397, y: 64, z: 8645, time: 1696965112321L, xRot: -12.970685958862305f, yRot: 154.65316772460938f } - "bwod": { dim: "wc:playground", x: 437, y: 21, z: 5468, time: 1696965112321L, xRot: 1.1858843564987183f, yRot: -40.405174255371094f } - "paintings": { dim: "wc:playground", x: 2338, y: 20, z: -150, time: 1696965112321L, xRot: -21.449989318847656f, yRot: -89.44906616210938f } - "sfinn": { dim: "wc:westeros", x: -7092, y: 45, z: 11388, time: 1696965112321L, xRot: 3.1498727798461914f, yRot: -12.68597412109375f } - "aberfield": { dim: "wc:westeros", x: 286, y: 49, z: 13772, time: 1696965112321L, xRot: 17.8507137298584f, yRot: 4.423463821411133f } - "Gealruable": { dim: "wc:playground", x: 648, y: 21, z: 5681, time: 1696965112321L, xRot: -3.7500081062316895f, yRot: -37.904296875f } - "willshire": { dim: "wc:westeros", x: 2260, y: 49, z: 15308, time: 1696965112322L, xRot: 4.349959850311279f, yRot: -203.70037841796875f } - "irongatecopy": { dim: "wc:playground", x: 4229, y: 44, z: -1019, time: 1696965112322L, xRot: -5.69999361038208f, yRot: -261.5335693359375f } - "Acharcoal1": { dim: "wc:westeros", x: -7203, y: 54, z: -9357, time: 1696965112322L, xRot: -2.6510169506073f, yRot: -311.95050048828125f } - "Acharcoal2": { dim: "wc:westeros", x: -6406, y: 55, z: -8911, time: 1696965112322L, xRot: 4.978011608123779f, yRot: 296.7252197265625f } - "streetofsteelcopy": { dim: "wc:playground", x: 3310, y: 54, z: -678, time: 1696965112322L, xRot: -10.80001449584961f, yRot: 107.01315307617188f } - "baelorcopy": { dim: "wc:playground", x: 3347, y: 77, z: -915, time: 1696965112322L, xRot: -7.50002384185791f, yRot: 1.113174557685852f } - "baelorscopy": { dim: "wc:playground", x: 3347, y: 77, z: -915, time: 1696965112322L, xRot: -7.50002384185791f, yRot: 1.113174557685852f } - "Pride2021": { dim: "wc:playground", x: 5493, y: 20, z: -413, time: 1696965112322L, xRot: -8.40003490447998f, yRot: 177.61936950683594f } - "giftham3": { dim: "wc:westeros", x: 5185, y: 83, z: -15737, time: 1696965112322L, xRot: 22.800201416015625f, yRot: 354.53515625f } - "hflogging": { dim: "wc:westeros", x: -5270, y: 59, z: 10940, time: 1696965112322L, xRot: 25.800203323364258f, yRot: 266.00823974609375f } - "hvhunter": { dim: "wc:westeros", x: -5380, y: 59, z: 10911, time: 1696965112323L, xRot: 17.550081253051758f, yRot: -356.7913513183594f } - "lounes": { dim: "wc:playground", x: 223, y: 21, z: 5459, time: 1696965112323L, xRot: 18.735883712768555f, yRot: 0.24517767131328583f } - "hvlogging": { dim: "wc:westeros", x: -5270, y: 59, z: 10939, time: 1696965112323L, xRot: 11.100080490112305f, yRot: -87.24114990234375f } - "smithytonold": { dim: "wc:playground", x: -506, y: 62, z: -472, time: 1696965112323L, xRot: 0.9000030755996704f, yRot: -177.59912109375f } - "barnsdale": { dim: "wc:westeros", x: 1313, y: 55, z: 15258, time: 1696965112323L, xRot: -1.4999920129776f, yRot: -261.2962951660156f } - "hhham1": { dim: "wc:westeros", x: -6848, y: 52, z: 20606, time: 1696965112323L, xRot: -3.5976338386535645f, yRot: -242.9857177734375f } - "hhhf1": { dim: "wc:westeros", x: -7231, y: 42, z: 20604, time: 1696965112323L, xRot: 4.8023271560668945f, yRot: -353.5654296875f } - "Skerry": { dim: "wc:westeros", x: -10445, y: 71, z: -3474, time: 1696965112323L, xRot: 13.963844299316406f, yRot: -63.2266845703125f } - "burleyhf1": { dim: "wc:westeros", x: -2454, y: 115, z: -10248, time: 1696965112323L, xRot: 23.099973678588867f, yRot: -276.40283203125f } - "wickendenv1": { dim: "wc:playground", x: -125, y: 25, z: -752, time: 1696965112323L, xRot: -10.199992179870605f, yRot: -187.94903564453125f } - "disneyhighgarden": { dim: "wc:westeros", x: -4396, y: 97, z: 18551, time: 1696965112323L, xRot: 3.749934196472168f, yRot: 92.86212158203125f } - "storkgate": { dim: "wc:westeros", x: -7770, y: 42, z: 22580, time: 1696965112324L, xRot: 5.723858833312988f, yRot: -183.7412109375f } - "CraneGate": { dim: "wc:westeros", x: -7647, y: 48, z: 22169, time: 1696965112324L, xRot: 5.723850250244141f, yRot: -290.091796875f } - "Quailgate": { dim: "wc:westeros", x: -7874, y: 45, z: 21793, time: 1696965112324L, xRot: 5.4238667488098145f, yRot: -317.8431396484375f } - "PartridgeGate": { dim: "wc:westeros", x: -8022, y: 41, z: 21723, time: 1696965112324L, xRot: -3.726132392883301f, yRot: -263.09307861328125f } - "RavenGate": { dim: "wc:westeros", x: -8426, y: 49, z: 21576, time: 1696965112324L, xRot: 3.3238308429718018f, yRot: -2.2431640625f } - "DoveGate": { dim: "wc:westeros", x: -8769, y: 44, z: 21718, time: 1696965112324L, xRot: -21.12615203857422f, yRot: -2.69464111328125f } - "HawkGate": { dim: "wc:westeros", x: -9100, y: 50, z: 22176, time: 1696965112324L, xRot: -6.750011444091797f, yRot: -85.94488525390625f } - "PheasantGate": { dim: "wc:westeros", x: -8975, y: 47, z: 22481, time: 1696965112324L, xRot: -11.100001335144043f, yRot: -93.5947265625f } - "JaegerGate": { dim: "wc:westeros", x: -8261, y: 40, z: 22747, time: 1696965112324L, xRot: 1.1999897956848145f, yRot: -180.1446533203125f } - "BustardGate": { dim: "wc:westeros", x: -7882, y: 44, z: 22582, time: 1696965112324L, xRot: 0.44995149970054626f, yRot: -236.69488525390625f } - "boggs3": { dim: "wc:westeros", x: 6755, y: 63, z: 9630, time: 1696965112325L, xRot: 20.849998474121094f, yRot: 124.1695556640625f } - "frostlogging": { dim: "wc:westeros", x: 8981, y: 71, z: -10916, time: 1696965112335L, xRot: -7.799862861633301f, yRot: 216.75210571289062f } - "frostcave": { dim: "wc:westeros", x: 9368, y: 45, z: -10734, time: 1696965112336L, xRot: 3.300218105316162f, yRot: -249.2977752685547f } - "sweet": { dim: "wc:westeros", x: 8420, y: 48, z: 14910, time: 1696965112336L, xRot: -15.00010871887207f, yRot: -214.86961364746094f } - "Burley": { dim: "wc:westeros", x: -1814, y: 157, z: -10659, time: 1696965112336L, xRot: 21.1500186920166f, yRot: 88.84588623046875f } - "BustardCisterns": { dim: "wc:westeros", x: -7920, y: 43, z: 22504, time: 1696965112336L, xRot: 9.449955940246582f, yRot: 19.505203247070312f } - "Mudburrow": { dim: "wc:westeros", x: 9183, y: 62, z: -10589, time: 1696965112337L, xRot: -3.7498176097869873f, yRot: 168.4469451904297f } - "Leastead": { dim: "wc:westeros", x: 9321, y: 79, z: -11214, time: 1696965112337L, xRot: 14.250079154968262f, yRot: -124.49756622314453f } - "frost": { dim: "wc:westeros", x: 9174, y: 60, z: -10489, time: 1696965112337L, xRot: -2.0999410152435303f, yRot: -150.90362548828125f } - "wickenden": { dim: "wc:westeros", x: 6372, y: 44, z: 8359, time: 1696965112337L, xRot: -15.000014305114746f, yRot: -196.36968994140625f } - "rosepoolhf": { dim: "wc:westeros", x: 5961, y: 58, z: 8307, time: 1696965112337L, xRot: -19.050052642822266f, yRot: -133.3414306640625f } - "bloodyisle": { dim: "wc:westeros", x: -8486, y: 70, z: 21965, time: 1696965112337L, xRot: 29.752519607543945f, yRot: 320.4664306640625f } - "daenerys": { dim: "wc:playground", x: -410, y: 21, z: 5460, time: 1696965112337L, xRot: 11.54992961883545f, yRot: -41.3782958984375f } - "KL16c": { dim: "wc:playground", x: 4024, y: 74, z: -1041, time: 1696965112337L, xRot: 2.6922202110290527f, yRot: -184.5331573486328f } - "daddysept": { dim: "wc:playground", x: 3148, y: 43, z: -844, time: 1696965112337L, xRot: -9.000011444091797f, yRot: -262.4617004394531f } - "burleyham3": { dim: "wc:westeros", x: -1922, y: 113, z: -11140, time: 1696965112337L, xRot: 22.649885177612305f, yRot: -50.80215835571289f } - "stackcastle": { dim: "wc:westeros", x: -6219, y: 134, z: 16172, time: 1696965112338L, xRot: 14.053447723388672f, yRot: 179.4760284423828f } - "KL23B": { dim: "wc:playground", x: 3949, y: 78, z: -994, time: 1696965112338L, xRot: -2.2505531311035156f, yRot: -288.7012939453125f } - "dyrfishv": { dim: "wc:westeros", x: 5894, y: 37, z: 8893, time: 1696965112338L, xRot: 11.326826095581055f, yRot: -0.5697372555732727f } - "dereham": { dim: "wc:westeros", x: -94, y: 48, z: 13938, time: 1696965112338L, xRot: 8.09998893737793f, yRot: 170.7257080078125f } - "batelgause": { dim: "wc:playground", x: 226, y: 21, z: 355, time: 1696965112338L, xRot: 39.88254165649414f, yRot: -1.2431640625f } - "girlbosssept": { dim: "wc:playground", x: 3595, y: 46, z: -1247, time: 1696965112338L, xRot: 19.267940521240234f, yRot: 269.4590148925781f } - "hornhillrural": { dim: "wc:westeros", x: -4614, y: 65, z: 19376, time: 1696965112338L, xRot: 16.465557098388672f, yRot: -4.705523490905762f } - "OTterratest": { dim: "wc:playground", x: 2336, y: 20, z: 1811, time: 1696965112339L, xRot: -4.892332077026367f, yRot: 222.6792449951172f } - "probieplots": { dim: "wc:playground", x: 853, y: 67, z: 4847, time: 1696965112339L, xRot: 19.500173568725586f, yRot: -41.95827102661133f } - "OTclifftest": { dim: "wc:playground", x: -920, y: 46, z: 1750, time: 1696965112339L, xRot: 10.200057029724121f, yRot: 235.85452270507812f } - "lucashobbit": { dim: "wc:playground", x: -410, y: 21, z: 4645, time: 1696965112339L, xRot: 5.935441017150879f, yRot: -41.770843505859375f } - "sfseptry2": { dim: "wc:westeros", x: -6527, y: 54, z: 10963, time: 1696965112339L, xRot: -6.000025272369385f, yRot: -177.19491577148438f } - "risley": { dim: "wc:westeros", x: -368, y: 43, z: 14103, time: 1696965112339L, xRot: -5.9999775886535645f, yRot: 331.6048889160156f } - "hvseptry": { dim: "wc:westeros", x: -4807, y: 85, z: 11076, time: 1696965112339L, xRot: 15.600011825561523f, yRot: -175.94400024414062f } - "kl13": { dim: "wc:playground", x: 3710, y: 113, z: -1214, time: 1696965112339L, xRot: -33.91944885253906f, yRot: -4.160010814666748f } - "kl4": { dim: "wc:playground", x: 3577, y: 96, z: -1279, time: 1696965112339L, xRot: 22.051307678222656f, yRot: -88.08186340332031f } - "burleyham2": { dim: "wc:westeros", x: -2237, y: 127, z: -10821, time: 1696965112340L, xRot: 2.3210649490356445f, yRot: -178.04933166503906f } - "gealjar": { dim: "wc:playground", x: 753, y: 205, z: 5763, time: 1696965112340L, xRot: 66.77747344970703f, yRot: 17.8712100982666f } - "geal": { dim: "wc:playground", x: 744, y: 79, z: 5770, time: 1696965112340L, xRot: 33.73579788208008f, yRot: -150.53480529785156f } - "goodehf1": { dim: "wc:westeros", x: 443, y: 59, z: 12321, time: 1696965112340L, xRot: 18.29998207092285f, yRot: 208.30419921875f } - "bechester": { dim: "wc:westeros", x: 670, y: 48, z: 12127, time: 1696965112340L, xRot: -11.250025749206543f, yRot: -180.41798400878906f } - "otsewers": { dim: "wc:playground", x: 1524, y: 134, z: 934, time: 1696965112340L, xRot: -0.449900358915329f, yRot: 180.0767822265625f } - "bustardcistern": { dim: "wc:westeros", x: -7942, y: 42, z: 22500, time: 1696965112340L, xRot: 5.549942970275879f, yRot: -56.244720458984375f } - "oldlorch": { dim: "wc:westeros", x: -3907, y: 79, z: 8514, time: 1696965112340L, xRot: 9.06289291381836f, yRot: -87.85745239257812f } - "lorch": { dim: "wc:westeros", x: -5162, y: 115, z: 9159, time: 1696965112340L, xRot: 8.951580047607422f, yRot: 319.4007263183594f } - "bettley": { dim: "wc:westeros", x: -3501, y: 59, z: 6759, time: 1696965112341L, xRot: -7.182281017303467f, yRot: 188.5687713623047f } - "kyndall": { dim: "wc:westeros", x: -2984, y: 91, z: 6320, time: 1696965112341L, xRot: 5.369052410125732f, yRot: 154.98793029785156f } - "hollowhillproject": { dim: "wc:westeros", x: -2465, y: 121, z: 11827, time: 1696965112341L, xRot: 41.56556701660156f, yRot: 84.76863861083984f } - "moontown": { dim: "wc:westeros", x: -3391, y: 74, z: 11210, time: 1696965112341L, xRot: 22.436885833740234f, yRot: 147.7062530517578f } - "wartornriverlands": { dim: "wc:westeros", x: -3420, y: 92, z: 9309, time: 1696965112341L, xRot: 25.796070098876953f, yRot: 216.7924346923828f } - "redpool": { dim: "wc:westeros", x: -3429, y: 59, z: 10386, time: 1696965112341L, xRot: 8.595659255981445f, yRot: -101.87427520751953f } - "torhamlet2": { dim: "wc:westeros", x: 6760, y: 61, z: 23553, time: 1696965112341L, xRot: -6.57928991317749f, yRot: 3.2848575115203857f } - "dunomar": { dim: "wc:westeros", x: -7503, y: 51, z: -9275, time: 1696965112341L, xRot: 4.625662803649902f, yRot: 70.36599731445312f } - "Amber": { dim: "wc:westeros", x: -6586, y: 72, z: -8758, time: 1696965112341L, xRot: -7.185182094573975f, yRot: 179.7096405029297f } - "AmberVillage1": { dim: "wc:westeros", x: -6639, y: 52, z: -8925, time: 1696965112352L, xRot: 6.101113796234131f, yRot: 207.533935546875f } - "aringfort": { dim: "wc:westeros", x: -6724, y: 48, z: -9334, time: 1696965112353L, xRot: 0.7574265599250793f, yRot: 138.71725463867188f } - "AmberVillage2": { dim: "wc:westeros", x: -7206, y: 49, z: -9104, time: 1696965112353L, xRot: 1.7823516130447388f, yRot: 242.6121368408203f } - "AmberMine": { dim: "wc:westeros", x: -7165, y: 36, z: -8889, time: 1696965112353L, xRot: 2.534024477005005f, yRot: 104.19717407226562f } - "torhamlet3": { dim: "wc:westeros", x: 4616, y: 46, z: 22853, time: 1696965112353L, xRot: -3.1509900093078613f, yRot: -227.6977996826172f } - "greenmen": { dim: "wc:westeros", x: 1428, y: 39, z: 9967, time: 1696965112353L, xRot: 5.405241966247559f, yRot: 323.0321960449219f } - "Bogg4": { dim: "wc:westeros", x: 7363, y: 168, z: 9261, time: 1696965112353L, xRot: 36.44996643066406f, yRot: -222.0330810546875f } - "goode": { dim: "wc:westeros", x: 412, y: 45, z: 12072, time: 1696965112353L, xRot: -9.750014305114746f, yRot: 206.73321533203125f } - "ashbrook": { dim: "wc:westeros", x: 611, y: 68, z: 13599, time: 1696965112354L, xRot: -2.700016736984253f, yRot: -98.08635711669922f } - "oldbechester": { dim: "wc:playground", x: -143, y: 216, z: -349, time: 1696965112354L, xRot: -8.549983978271484f, yRot: -179.84954833984375f } - "ashbrookmill": { dim: "wc:westeros", x: 712, y: 37, z: 13898, time: 1696965112354L, xRot: 5.436637878417969f, yRot: 1.219482421875f } - "torhamlet1": { dim: "wc:westeros", x: 6190, y: 47, z: 23171, time: 1696965112354L, xRot: -5.894783973693848f, yRot: -165.391845703125f } - "OtWallSections": { dim: "wc:playground", x: 2881, y: 189, z: 1715, time: 1696965112354L, xRot: 32.70011520385742f, yRot: -187.29249572753906f } - "numbersLetters": { dim: "wc:playground", x: 2709, y: 42, z: 1606, time: 1696965112354L, xRot: 10.650078773498535f, yRot: -110.94274139404297f } - "goodeham": { dim: "wc:westeros", x: 439, y: 91, z: 12118, time: 1696965112354L, xRot: 5.849979877471924f, yRot: 88.68341827392578f } - "fin2": { dim: "wc:playground", x: 224, y: 21, z: -259, time: 1696965112354L, xRot: 21.749990463256836f, yRot: -40.13585662841797f } - "ramsford": { dim: "wc:westeros", x: -1261, y: 35, z: 5687, time: 1696965112355L, xRot: 19.705568313598633f, yRot: 50.637939453125f } - "BlockDatabase": { dim: "wc:repository", x: -2174, y: 4, z: -1898, time: 1696965112355L, xRot: -2.0999958515167236f, yRot: -44.1209716796875f } - "otp": { dim: "wc:playground", x: 1092, y: 255, z: 371, time: 1696965112355L, xRot: 24.900070190429688f, yRot: -353.64324951171875f } - "Horsthausen": { dim: "wc:playground", x: -195, y: 21, z: 4658, time: 1696965112355L, xRot: 18.08550262451172f, yRot: 180.97959899902344f } - "bechesterbuild": { dim: "wc:westeros", x: 725, y: 93, z: 12097, time: 1696965112355L, xRot: 24.322763442993164f, yRot: 89.87073516845703f } - "KL14B": { dim: "wc:playground", x: 3970, y: 141, z: -1072, time: 1696965112355L, xRot: -2.2500133514404297f, yRot: -178.87490844726562f } - "per": { dim: "wc:playground", x: 867, y: 21, z: 5460, time: 1696965112355L, xRot: 4.967915058135986f, yRot: 359.1945495605469f } - "Jake": { dim: "wc:playground", x: 643, y: 21, z: 4235, time: 1696965112355L, xRot: -4.044178009033203f, yRot: -43.86495590209961f } - "iofcave": { dim: "wc:westeros", x: 1603, y: 45, z: 9797, time: 1696965112356L, xRot: -6.44960880279541f, yRot: -49.629180908203125f } - "goodeham1": { dim: "wc:westeros", x: 438, y: 61, z: 12221, time: 1696965112356L, xRot: 34.95008850097656f, yRot: 169.017333984375f } - "iof": { dim: "wc:westeros", x: 1404, y: 35, z: 9870, time: 1696965112356L, xRot: -6.909980773925781f, yRot: -155.83714294433594f } - "IsleofFaces": { dim: "wc:westeros", x: 1404, y: 35, z: 9870, time: 1696965112356L, xRot: -6.909980773925781f, yRot: -155.83714294433594f } - "iofcrypt": { dim: "wc:westeros", x: 1453, y: 36, z: 9718, time: 1696965112356L, xRot: -18.40549087524414f, yRot: 343.271484375f } - "hvgate2": { dim: "wc:westeros", x: -4654, y: 68, z: 11522, time: 1696965112356L, xRot: 16.349668502807617f, yRot: -269.9422607421875f } - "TheTor": { dim: "wc:westeros", x: 5046, y: 37, z: 23175, time: 1696965112356L, xRot: -26.54999351501465f, yRot: -65.05940246582031f } - "Finn01": { dim: "wc:playground", x: 225, y: 21, z: 151, time: 1696965112356L, xRot: 27.822614669799805f, yRot: 340.3988037109375f } - "azulejodecolores": { dim: "wc:playground", x: 434, y: 21, z: 354, time: 1696965112356L, xRot: 10.932698249816895f, yRot: 322.7572937011719f } - "azulejo": { dim: "wc:playground", x: 434, y: 21, z: 354, time: 1696965112356L, xRot: 10.932698249816895f, yRot: 322.7572937011719f } - "amingow": { dim: "wc:playground", x: -410, y: 21, z: 153, time: 1696965112357L, xRot: 11.097930908203125f, yRot: 301.0448913574219f } - "amingo": { dim: "wc:playground", x: -410, y: 21, z: 153, time: 1696965112357L, xRot: 11.097930908203125f, yRot: 301.0448913574219f } - "delham": { dim: "wc:westeros", x: -2893, y: 49, z: 15593, time: 1696965112357L, xRot: -3.300034761428833f, yRot: 100.7691879272461f } - "vyrweltest": { dim: "wc:playground", x: -708, y: 58, z: 2238, time: 1696965112357L, xRot: -1.6499429941177368f, yRot: -177.39120483398438f } - "awbman06": { dim: "wc:playground", x: 645, y: 21, z: 354, time: 1696965112357L, xRot: -1.0500010251998901f, yRot: -37.68557357788086f } - "dany": { dim: "wc:playground", x: -409, y: 21, z: 5461, time: 1696965112357L, xRot: 11.54992961883545f, yRot: -41.3782958984375f } - "pommemanor": { dim: "wc:westeros", x: -3352, y: 53, z: 17868, time: 1696965112357L, xRot: 28.349885940551758f, yRot: 165.63003540039062f } - "TorManse": { dim: "wc:westeros", x: 3634, y: 46, z: 22583, time: 1696965112357L, xRot: -6.900115966796875f, yRot: -285.36114501953125f } - "hvfarm1": { dim: "wc:westeros", x: -4233, y: 64, z: 11196, time: 1696965112357L, xRot: -0.1500275433063507f, yRot: -266.844482421875f } - "hvfarm2": { dim: "wc:westeros", x: -4199, y: 65, z: 11032, time: 1696965112358L, xRot: 18.5999755859375f, yRot: -181.0445556640625f } - "lordduckston": { dim: "wc:playground", x: 223, y: 21, z: -53, time: 1696965112358L, xRot: 19.422632217407227f, yRot: -47.50114440917969f } - "duckston": { dim: "wc:playground", x: 223, y: 21, z: -53, time: 1696965112358L, xRot: 19.422632217407227f, yRot: -47.50114440917969f } - "barkwood": { dim: "wc:westeros", x: -1500, y: 53, z: -6600, time: 1696965112358L, xRot: 1.7920396327972412f, yRot: -12.9317626953125f } - "hvhf1": { dim: "wc:westeros", x: -4684, y: 110, z: 11398, time: 1696965112358L, xRot: 7.500022888183594f, yRot: 160.80613708496094f } - "homiesucc": { dim: "wc:playground", x: 1071, y: 2, z: 5692, time: 1696965112369L, xRot: 10.649983406066895f, yRot: -230.7587127685547f } - "hvham1": { dim: "wc:westeros", x: -4674, y: 62, z: 11043, time: 1696965112369L, xRot: 13.950068473815918f, yRot: -91.2886962890625f } - "hhvineyard": { dim: "wc:westeros", x: -6669, y: 53, z: 21172, time: 1696965112369L, xRot: -7.950098514556885f, yRot: -88.3628921508789f } - "hhtannery": { dim: "wc:westeros", x: -6880, y: 45, z: 20489, time: 1696965112370L, xRot: -2.5501067638397217f, yRot: -32.1126708984375f } - "hornvale": { dim: "wc:westeros", x: -4336, y: 210, z: 11246, time: 1696965112370L, xRot: 35.54998016357422f, yRot: -269.395263671875f } - "TorQuarry2": { dim: "wc:westeros", x: 3319, y: 51, z: 22570, time: 1696965112370L, xRot: 3.2247161865234375f, yRot: -2.4570505619049072f } - "torhamlet4": { dim: "wc:westeros", x: 3504, y: 50, z: 22445, time: 1696965112370L, xRot: 2.774714469909668f, yRot: -260.90692138671875f } - "Ryamsport": { dim: "wc:westeros", x: -10248, y: 64, z: 25234, time: 1696965112370L, xRot: -5.250018119812012f, yRot: 181.0394287109375f } - "RPharbor": { dim: "wc:westeros", x: -10029, y: 37, z: 25420, time: 1696965112370L, xRot: -7.80011510848999f, yRot: 114.89044189453125f } - "JT": { dim: "wc:playground", x: -313, y: 21, z: 5270, time: 1696965112370L, xRot: -22.2561092376709f, yRot: -0.0880221351981163f } - "pennybridge": { dim: "wc:westeros", x: 808, y: 39, z: 14136, time: 1696965112370L, xRot: 0.7499909996986389f, yRot: -116.9648208618164f } - "ric1": { dim: "wc:playground", x: 648, y: 93, z: 3853, time: 1696965112370L, xRot: 30.347454071044922f, yRot: -75.96669006347656f } - "hvgate": { dim: "wc:westeros", x: -5493, y: 85, z: 10711, time: 1696965112370L, xRot: -15.449956893920898f, yRot: 10.145547866821289f } - "lonmouthhf1": { dim: "wc:westeros", x: 3594, y: 150, z: 19105, time: 1696965112371L, xRot: 6.0751953125f, yRot: 42.25067138671875f } - "lonmouthmine": { dim: "wc:westeros", x: 3592, y: 155, z: 19161, time: 1696965112371L, xRot: 36.59998321533203f, yRot: 53.050941467285156f } - "TorSilentSisterComplex": { dim: "wc:westeros", x: 2468, y: 90, z: 22796, time: 1696965112371L, xRot: -3.375274896621704f, yRot: 154.14312744140625f } - "hamellcastle": { dim: "wc:westeros", x: -3690, y: 92, z: 14542, time: 1696965112371L, xRot: -5.211116313934326f, yRot: -96.90633392333984f } - "otcanaltest": { dim: "wc:playground", x: 3230, y: 27, z: 1692, time: 1696965112371L, xRot: 30.750123977661133f, yRot: -189.2423095703125f } - "hvquarry": { dim: "wc:westeros", x: -3833, y: 78, z: 11352, time: 1696965112371L, xRot: 19.199928283691406f, yRot: -70.3546142578125f } - "torhamlet6": { dim: "wc:westeros", x: 2012, y: 43, z: 22411, time: 1696965112371L, xRot: -1.8000168800354004f, yRot: 21.992828369140625f } - "torhamlet5": { dim: "wc:westeros", x: 2565, y: 34, z: 22554, time: 1696965112371L, xRot: -23.70000457763672f, yRot: 26.642974853515625f } - "tumbleton": { dim: "wc:westeros", x: 1485, y: 40, z: 14709, time: 1696965112371L, xRot: -5.6486592292785645f, yRot: 182.656982421875f } - "tobinator1606": { dim: "wc:playground", x: 439, y: 21, z: 156, time: 1696965112371L, xRot: -2.550006628036499f, yRot: -42.641578674316406f } - "tobi": { dim: "wc:playground", x: 439, y: 21, z: 156, time: 1696965112372L, xRot: -2.550006628036499f, yRot: -42.641578674316406f } - "goodeham4": { dim: "wc:westeros", x: 963, y: 73, z: 12296, time: 1696965112372L, xRot: 6.4500732421875f, yRot: 272.5189208984375f } - "oldnewfootly": { dim: "wc:playground", x: -566, y: 221, z: 2835, time: 1696965112372L, xRot: 15.415458679199219f, yRot: -359.620361328125f } - "lhtraid": { dim: "wc:playground", x: 1500, y: 44, z: 3450, time: 1696965112372L, xRot: 6.600003242492676f, yRot: -93.56209564208984f } - "lonmouthhm2": { dim: "wc:westeros", x: 3691, y: 76, z: 18565, time: 1696965112372L, xRot: 13.255165100097656f, yRot: -186.14187622070312f } - "reachday": { dim: "wc:playground", x: 1450, y: 37, z: 2767, time: 1696965112372L, xRot: 1.6499916315078735f, yRot: 180.64996337890625f } - "london": { dim: "wc:playground", x: 4480, y: 26, z: 2613, time: 1696965112372L, xRot: -10.04994010925293f, yRot: -182.05592346191406f } - "lincoln": { dim: "wc:playground", x: 4270, y: 25, z: 2277, time: 1696965112372L, xRot: 19.950061798095703f, yRot: -90.40605163574219f } - "oldcailin": { dim: "wc:playground", x: 2443, y: 68, z: 2179, time: 1696965112373L, xRot: -14.897608757019043f, yRot: 202.2205810546875f } - "museum": { dim: "wc:playground", x: 1945, y: 89, z: 3023, time: 1696965112373L, xRot: -4.650030612945557f, yRot: -181.00033569335938f } - "goodeham3": { dim: "wc:westeros", x: 601, y: 89, z: 11567, time: 1696965112373L, xRot: -14.699995040893555f, yRot: 0.9155575633049011f } - "goodehf3": { dim: "wc:westeros", x: 509, y: 60, z: 11454, time: 1696965112373L, xRot: 8.849870681762695f, yRot: 269.86773681640625f } - "goodehf2": { dim: "wc:westeros", x: 861, y: 55, z: 11782, time: 1696965112373L, xRot: -18.150144577026367f, yRot: 319.0682067871094f } - "pennywine": { dim: "wc:westeros", x: 570, y: 45, z: 14189, time: 1696965112373L, xRot: 5.8500189781188965f, yRot: -7.164855480194092f } - "pvpsiege": { dim: "wc:playground", x: -935, y: 37, z: 367, time: 1696965112373L, xRot: 43.64988708496094f, yRot: 8.648895263671875f } - "batel": { dim: "wc:playground", x: 223, y: 21, z: 353, time: 1696965112373L, xRot: 7.155676364898682f, yRot: -44.101531982421875f } - "StepstonesSouthIsland": { dim: "wc:westeros", x: 11128, y: 80, z: 23673, time: 1696965112374L, xRot: 21.149883270263672f, yRot: 39.26905059814453f } - "NikasKunitz": { dim: "wc:playground", x: -199, y: 21, z: 5258, time: 1696965112374L, xRot: 10.636263847351074f, yRot: -40.40667724609375f } - "Nikas": { dim: "wc:playground", x: -199, y: 21, z: 5258, time: 1696965112374L, xRot: 10.636263847351074f, yRot: -40.40667724609375f } - "oldblanetree": { dim: "wc:westeros", x: -3281, y: 57, z: 4500, time: 1696965112374L, xRot: 2.267531156539917f, yRot: 258.87677001953125f } - "anniversary": { dim: "wc:playground", x: 1945, y: 94, z: 2955, time: 1696965112374L, xRot: -26.250043869018555f, yRot: -180.1002960205078f } - "Guillard": { dim: "wc:playground", x: 26, y: 21, z: 5462, time: 1696965112374L, xRot: 2.536289930343628f, yRot: -32.1563720703125f } - "KL33B": { dim: "wc:playground", x: 3747, y: 94, z: -607, time: 1696965112375L, xRot: -4.950902938842773f, yRot: 359.9066162109375f } - "fruittest": { dim: "wc:playground", x: -550, y: 20, z: -1030, time: 1696965112375L, xRot: 28.500009536743164f, yRot: 103.94172668457031f } - "frattest": { dim: "wc:playground", x: -586, y: 20, z: -951, time: 1696965112385L, xRot: -3.2999956607818604f, yRot: -86.25830078125f } - "sextower": { dim: "wc:westeros", x: -1114, y: 96, z: -8551, time: 1696965112386L, xRot: -9.829380989074707f, yRot: -98.24661254882812f } - "giftham4": { dim: "wc:westeros", x: 3140, y: 84, z: -14896, time: 1696965112386L, xRot: 37.64997863769531f, yRot: 179.9681396484375f } - "luk": { dim: "wc:playground", x: -588, y: 98, z: 2903, time: 1696965112386L, xRot: 3.8654251098632812f, yRot: -75.52147674560547f } - "stormlandstest": { dim: "wc:playground", x: 1323, y: 21, z: 3637, time: 1696965112386L, xRot: -3.3000330924987793f, yRot: -42.3946533203125f } - "DorneWeek": { dim: "wc:playground", x: 1460, y: 41, z: 2812, time: 1696965112387L, xRot: -4.200117588043213f, yRot: -89.0462646484375f } - "IronIslandsWeek": { dim: "wc:playground", x: 1396, y: 27, z: 3448, time: 1696965112387L, xRot: -4.949988842010498f, yRot: -179.20721435546875f } - "StormlandsWeek": { dim: "wc:playground", x: 1834, y: 85, z: 3809, time: 1696965112387L, xRot: 6.939151763916016f, yRot: 88.74569702148438f } - "skycheck": { dim: "wc:playground", x: 1602, y: 105, z: 3168, time: 1696965112387L, xRot: 37.301658630371094f, yRot: 177.51129150390625f } - "highroadcheck": { dim: "wc:playground", x: 1554, y: 113, z: 3116, time: 1696965112387L, xRot: 26.05164909362793f, yRot: 359.0114440917969f } - "mooncavecheck2": { dim: "wc:playground", x: 1552, y: 81, z: 3118, time: 1696965112387L, xRot: 19.751689910888672f, yRot: 305.6111145019531f } - "mooncavecheck1": { dim: "wc:playground", x: 1549, y: 61, z: 3122, time: 1696965112387L, xRot: 21.55168914794922f, yRot: 262.7112121582031f } - "Isleofpigs": { dim: "wc:westeros", x: -8298, y: 75, z: 26332, time: 1696965112387L, xRot: 2.076054096221924f, yRot: -269.64337158203125f } - "eag": { dim: "wc:playground", x: -194, y: 21, z: 155, time: 1696965112387L, xRot: -1.9501303434371948f, yRot: -40.14361572265625f } - "vyrhermitage": { dim: "wc:westeros", x: -2390, y: 232, z: 21064, time: 1696965112387L, xRot: 49.34992599487305f, yRot: 133.96469116210938f } - "vyrtown": { dim: "wc:westeros", x: -2048, y: 157, z: 19697, time: 1696965112387L, xRot: 45.899940490722656f, yRot: 19.814943313598633f } - "KL23C": { dim: "wc:playground", x: 4066, y: 58, z: -986, time: 1696965112387L, xRot: 44.24991226196289f, yRot: 359.46490478515625f } - "GreenbloodTest": { dim: "wc:playground", x: 1657, y: 21, z: -92, time: 1696965112387L, xRot: -5.769486427307129f, yRot: -271.5711975097656f } - "DorneWeekSS": { dim: "wc:playground", x: 1543, y: 16, z: -79, time: 1696965112387L, xRot: -0.8194831013679504f, yRot: -269.62127685546875f } - "SaffronRoad": { dim: "wc:westeros", x: 683, y: 39, z: 22444, time: 1696965112387L, xRot: 3.449465274810791f, yRot: -82.97695922851562f } - "DorneWeekRaid": { dim: "wc:playground", x: 1927, y: 98, z: 2658, time: 1696965112387L, xRot: -1.650091528892517f, yRot: 270.20330810546875f } - "Gawain": { dim: "wc:playground", x: 225, y: 21, z: 5667, time: 1696965112388L, xRot: -3.4067091941833496f, yRot: -42.577484130859375f } - "dornedayrace": { dim: "wc:westeros", x: 678, y: 39, z: 22445, time: 1696965112388L, xRot: 5.486762046813965f, yRot: -82.38447570800781f } - "baratheonraid": { dim: "wc:playground", x: 2000, y: 50, z: 2762, time: 1696965112388L, xRot: 6.59989070892334f, yRot: -177.2467498779297f } - "dorneraid": { dim: "wc:playground", x: 1985, y: 29, z: 2570, time: 1696965112388L, xRot: 1.2000123262405396f, yRot: 1.7045598030090332f } - "brokenthroneroom": { dim: "wc:playground", x: 1035, y: 133, z: 5169, time: 1696965112388L, xRot: -4.050079822540283f, yRot: 1.5451685190200806f } - "vyrvassal": { dim: "wc:westeros", x: -1560, y: 138, z: 19729, time: 1696965112388L, xRot: 54.599979400634766f, yRot: 228.01910400390625f } - "ladybrightold": { dim: "wc:westeros", x: 10061, y: 44, z: 23656, time: 1696965112388L, xRot: 5.652578830718994f, yRot: -268.8582458496094f } - "torhf2": { dim: "wc:westeros", x: 2128, y: 47, z: 22375, time: 1696965112388L, xRot: -18.45002555847168f, yRot: -188.90737915039062f } - "torcave": { dim: "wc:westeros", x: 1442, y: 48, z: 22310, time: 1696965112388L, xRot: 6.600006103515625f, yRot: -314.3068542480469f } - "IIRaceStart": { dim: "wc:westeros", x: -8624, y: 36, z: 5614, time: 1696965112388L, xRot: 1.5000022649765015f, yRot: -182.3037872314453f } - "kerseyford": { dim: "wc:westeros", x: -2576, y: 51, z: 15698, time: 1696965112388L, xRot: -12.06883716583252f, yRot: 191.79066467285156f } - "oddtownII": { dim: "wc:playground", x: 2180, y: 20, z: 1442, time: 1696965112388L, xRot: 5.821310043334961f, yRot: 358.8957214355469f } - "varnercastle": { dim: "wc:westeros", x: -3073, y: 82, z: 15447, time: 1696965112388L, xRot: -18.64274024963379f, yRot: -1.9022216796875f } - "SLWeekBuild": { dim: "wc:playground", x: 1768, y: 62, z: 3706, time: 1696965112388L, xRot: -6.407647132873535f, yRot: 269.9100036621094f } - "ant2": { dim: "wc:playground", x: -416, y: 20, z: 3844, time: 1696965112388L, xRot: -4.949916839599609f, yRot: 269.4901428222656f } - "stormlandsraid": { dim: "wc:playground", x: 1927, y: 98, z: 2659, time: 1696965112388L, xRot: 14.784001350402832f, yRot: -87.86375427246094f } - "DR": { dim: "wc:playground", x: 1985, y: 29, z: 2572, time: 1696965112388L, xRot: 0.8160417079925537f, yRot: -183.29713439941406f } - "SR": { dim: "wc:playground", x: 2000, y: 50, z: 2759, time: 1696965112388L, xRot: 0.48422205448150635f, yRot: -359.96331787109375f } - "cartoonlooney": { dim: "wc:playground", x: -4, y: 21, z: 5459, time: 1696965112389L, xRot: -2.249994993209839f, yRot: 43.59636306762695f } - "cartoon": { dim: "wc:playground", x: -4, y: 21, z: 5459, time: 1696965112389L, xRot: -2.249994993209839f, yRot: 43.59636306762695f } - "Elderbrook": { dim: "wc:westeros", x: -2926, y: 55, z: 15149, time: 1696965112389L, xRot: -0.5698511004447937f, yRot: -165.18597412109375f } - "valeweek": { dim: "wc:playground", x: 1343, y: 58, z: 3229, time: 1696965112389L, xRot: 8.249999046325684f, yRot: -94.91195678710938f } - "westerlandsweek": { dim: "wc:playground", x: 2145, y: 18, z: 4159, time: 1696965112389L, xRot: -12.750150680541992f, yRot: -187.87994384765625f } - "wwend": { dim: "wc:playground", x: 2055, y: 107, z: 3937, time: 1696965112389L, xRot: 25.799976348876953f, yRot: -270.4150390625f } - "wwsart": { dim: "wc:playground", x: 2091, y: 17, z: 4096, time: 1696965112389L, xRot: 9.2999849319458f, yRot: -181.61383056640625f } - "wwstart": { dim: "wc:playground", x: 2091, y: 17, z: 4095, time: 1696965112389L, xRot: 8.249917984008789f, yRot: -175.3140869140625f } - "lpsiege": { dim: "wc:playground", x: -838, y: 17, z: 753, time: 1696965112389L, xRot: -3.7501039505004883f, yRot: -274.9501953125f } - "lannisportsiege": { dim: "wc:playground", x: -838, y: 17, z: 753, time: 1696965112389L, xRot: -3.7501039505004883f, yRot: -274.9501953125f } - "lpsiegereach": { dim: "wc:playground", x: -839, y: 17, z: 754, time: 1696965112389L, xRot: -5.1001057624816895f, yRot: -273.15008544921875f } - "lpsiegelannis": { dim: "wc:playground", x: -1094, y: 14, z: 771, time: 1696965112389L, xRot: -6.300103187561035f, yRot: -94.0501708984375f } - "NorthWeek": { dim: "wc:playground", x: 2149, y: 23, z: 3476, time: 1696965112389L, xRot: 1.650197982788086f, yRot: 269.7703857421875f } - "rambton": { dim: "wc:westeros", x: 6989, y: 50, z: 14454, time: 1696965112389L, xRot: -2.850015163421631f, yRot: 93.98147583007812f } - "Pendleton": { dim: "wc:westeros", x: -2273, y: 62, z: 15328, time: 1696965112389L, xRot: 26.09144401550293f, yRot: 93.09717559814453f } - "crownlandsweek": { dim: "wc:playground", x: 1417, y: 39, z: 5051, time: 1696965112389L, xRot: 8.850003242492676f, yRot: 272.1440124511719f } - "ravenhunt": { dim: "wc:playground", x: 2093, y: 44, z: 3412, time: 1696965112389L, xRot: 16.050153732299805f, yRot: 265.72357177734375f } - "newfist": { dim: "wc:playground", x: 4023, y: 128, z: 2566, time: 1696965112390L, xRot: 32.24995040893555f, yRot: 313.2469482421875f } - "ghosthillold": { dim: "wc:playground", x: 5252, y: 155, z: 4107, time: 1696965112390L, xRot: -4.649999141693115f, yRot: -89.5766830444336f } - "ProbbieTree": { dim: "wc:playground", x: 1895, y: 20, z: 2951, time: 1696965112390L, xRot: 18.617557525634766f, yRot: 223.66229248046875f } - "Belleglen": { dim: "wc:westeros", x: -3116, y: 100, z: 14912, time: 1696965112390L, xRot: 12.48938274383545f, yRot: 87.96353912353516f } - "mourne": { dim: "wc:westeros", x: -132, y: 44, z: -6658, time: 1696965112390L, xRot: -1.3502458333969116f, yRot: -42.103050231933594f } - "ravencheck": { dim: "wc:playground", x: 2190, y: 73, z: 3219, time: 1696965112390L, xRot: 32.85033416748047f, yRot: -194.7764129638672f } - "ston": { dim: "wc:westeros", x: 458, y: 87, z: 13520, time: 1696965112390L, xRot: 30.89995574951172f, yRot: -202.486328125f } - "spawnbackup": { dim: "wc:playground", x: -1462, y: 126, z: 2734, time: 1696965112390L, xRot: -1.9500280618667603f, yRot: -87.54611206054688f } - "essosannouncement": { dim: "wc:playground", x: 1945, y: 94, z: 2954, time: 1696965112391L, xRot: 5.699999809265137f, yRot: 180.35064697265625f } - "Renly": { dim: "wc:playground", x: 13, y: 21, z: 5663, time: 1696965112391L, xRot: 9.793295860290527f, yRot: -20.52737808227539f } - "ThingComp": { dim: "wc:playground", x: 1329, y: 21, z: 17, time: 1696965112391L, xRot: 32.250274658203125f, yRot: 358.96258544921875f } - "mpindustry": { dim: "wc:westeros", x: 4900, y: 34, z: 9036, time: 1696965112391L, xRot: -25.949750900268555f, yRot: -0.8901368379592896f } - "mpham1": { dim: "wc:westeros", x: 4689, y: 36, z: 9305, time: 1696965112391L, xRot: 1.3502510786056519f, yRot: 197.40977478027344f } - "mpham2": { dim: "wc:westeros", x: 4131, y: 36, z: 9141, time: 1696965112391L, xRot: -4.349752426147461f, yRot: -115.04088592529297f } - "RyamsportHarbor": { dim: "wc:westeros", x: -10029, y: 37, z: 25420, time: 1696965112391L, xRot: -7.80011510848999f, yRot: 114.89044189453125f } - "violethall": { dim: "wc:westeros", x: -2416, y: 62, z: 15341, time: 1696965112391L, xRot: -0.7887363433837891f, yRot: 2.8912460803985596f } - "vyrvillage": { dim: "wc:westeros", x: -2047, y: 60, z: 19098, time: 1696965112391L, xRot: 8.249917984008789f, yRot: 69.31490325927734f } - "rmvalley": { dim: "wc:westeros", x: -305, y: 48, z: 21623, time: 1696965112391L, xRot: -7.499948024749756f, yRot: -201.8022003173828f } - "KLPlantTest": { dim: "wc:playground", x: 3225, y: 25, z: -1452, time: 1696965112391L, xRot: 12.000198364257812f, yRot: -90.98275756835938f } - "delhamseptry": { dim: "wc:westeros", x: -3009, y: 51, z: 15614, time: 1696965112391L, xRot: 3.3379337787628174f, yRot: 318.37725830078125f } - "bolham1": { dim: "wc:westeros", x: 6474, y: 85, z: 19424, time: 1696965112391L, xRot: -3.0000193119049072f, yRot: -0.3362216651439667f } - "bolfarm1": { dim: "wc:westeros", x: 6335, y: 59, z: 19245, time: 1696965112402L, xRot: 2.314484119415283f, yRot: 151.73974609375f } - "bollogging1": { dim: "wc:westeros", x: 6730, y: 89, z: 19282, time: 1696965112402L, xRot: 44.2499885559082f, yRot: -307.1415100097656f } - "bolham2": { dim: "wc:westeros", x: 6089, y: 58, z: 19684, time: 1696965112403L, xRot: -0.5999182462692261f, yRot: 248.75775146484375f } - "boltax": { dim: "wc:westeros", x: 6342, y: 76, z: 19611, time: 1696965112403L, xRot: 10.800107955932617f, yRot: -153.3925018310547f } - "bolcabin": { dim: "wc:westeros", x: 6607, y: 77, z: 19436, time: 1696965112403L, xRot: 60.89999771118164f, yRot: 56.755859375f } - "otcontest": { dim: "wc:playground", x: 4729, y: 20, z: -1309, time: 1696965112403L, xRot: -5.250004291534424f, yRot: 0.30694580078125f } - "dragonrider": { dim: "wc:playground", x: 669, y: 22, z: 156, time: 1696965112403L, xRot: 20.99996566772461f, yRot: 1.6084555387496948f } - "hgflowerfield": { dim: "wc:westeros", x: -5160, y: 43, z: 18498, time: 1696965112403L, xRot: 19.04997444152832f, yRot: 355.0618896484375f } - "vyrwynn": { dim: "wc:westeros", x: -1553, y: 91, z: 19718, time: 1696965112403L, xRot: 29.849956512451172f, yRot: 184.81912231445312f } - "oldfoote": { dim: "wc:westeros", x: -3547, y: 87, z: 8130, time: 1696965112403L, xRot: -5.915670871734619f, yRot: -198.620361328125f } - "GarnerHam1": { dim: "wc:westeros", x: -7564, y: 54, z: 10600, time: 1696965112403L, xRot: 7.325068473815918f, yRot: 202.36941528320312f } - "LP": { dim: "wc:westeros", x: -6921, y: 46, z: 12108, time: 1696965112404L, xRot: -6.465607166290283f, yRot: -269.52374267578125f } - "romsey": { dim: "wc:westeros", x: 3069, y: 49, z: 14845, time: 1696965112404L, xRot: -13.069847106933594f, yRot: 18.249298095703125f } - "Guillaaard": { dim: "wc:playground", x: 26, y: 21, z: 5462, time: 1696965112404L, xRot: 1.486284852027893f, yRot: -43.70634841918945f } - "valangin": { dim: "wc:westeros", x: 6751, y: 37, z: 4662, time: 1696965112404L, xRot: -5.25007963180542f, yRot: -85.741943359375f } - "Birdstone": { dim: "wc:westeros", x: 10491, y: 182, z: 21741, time: 1696965112404L, xRot: 13.486889839172363f, yRot: -180.62554931640625f } - "sapphoshire": { dim: "wc:westeros", x: -1791, y: 38, z: 15795, time: 1696965112404L, xRot: -6.275027275085449f, yRot: 33.43878936767578f } - "ProbationTree": { dim: "wc:playground", x: 1893, y: 20, z: 2956, time: 1696965112404L, xRot: -18.709909439086914f, yRot: 238.9822998046875f } - "uffcastle": { dim: "wc:westeros", x: -6727, y: 52, z: 17702, time: 1696965112404L, xRot: -36.408905029296875f, yRot: -64.63799285888672f } - "TreeScreenshots": { dim: "wc:playground", x: 3673, y: 20, z: 2284, time: 1696965112404L, xRot: -5.70005989074707f, yRot: -179.91455078125f } - "hvfarm3": { dim: "wc:westeros", x: -4964, y: 63, z: 11135, time: 1696965112405L, xRot: 8.55001163482666f, yRot: 186.45594787597656f } - "hvfarm4": { dim: "wc:westeros", x: -4986, y: 56, z: 11233, time: 1696965112405L, xRot: -13.949993133544922f, yRot: 21.905920028686523f } - "Lonmouthham3": { dim: "wc:westeros", x: 4063, y: 129, z: 18805, time: 1696965112405L, xRot: -8.550031661987305f, yRot: 317.1766052246094f } - "mermaidspalacetest": { dim: "wc:playground", x: 2912, y: 44, z: -734, time: 1696965112405L, xRot: 23.999774932861328f, yRot: 102.59048461914062f } - "garnerham2": { dim: "wc:westeros", x: -7448, y: 74, z: 10682, time: 1696965112405L, xRot: -7.800013542175293f, yRot: 332.67498779296875f } - "lbtest": { dim: "wc:playground", x: 710, y: 22, z: 1124, time: 1696965112405L, xRot: -2.257803440093994f, yRot: -92.7196044921875f } - "ghham1": { dim: "wc:westeros", x: 8124, y: 59, z: 23286, time: 1696965112405L, xRot: -2.399892807006836f, yRot: -115.966064453125f } - "harrentownmap": { dim: "wc:playground", x: 2301, y: 21, z: -927, time: 1696965112405L, xRot: 24.170883178710938f, yRot: 2.6685791015625f } - "CentralRiverlandsMap": { dim: "wc:playground", x: 2198, y: 28, z: -950, time: 1696965112406L, xRot: 28.91278839111328f, yRot: 88.8750991821289f } - "PentosTemple": { dim: "wc:playground", x: -1170, y: 20, z: 2291, time: 1696965112406L, xRot: -13.199982643127441f, yRot: -0.2406005859375f } - "GodsEye": { dim: "wc:westeros", x: 1245, y: 34, z: 10655, time: 1696965112406L, xRot: 13.229278564453125f, yRot: 212.049072265625f } - "giftham5": { dim: "wc:westeros", x: 5713, y: 34, z: -15573, time: 1696965112406L, xRot: -7.500005722045898f, yRot: 0.11728367954492569f } - "ghham2": { dim: "wc:westeros", x: 8522, y: 50, z: 22958, time: 1696965112406L, xRot: 4.200097560882568f, yRot: -187.96649169921875f } - "shvalley": { dim: "wc:westeros", x: 3522, y: 103, z: 19418, time: 1696965112406L, xRot: -0.373615562915802f, yRot: -51.55086135864258f } - "DMtest": { dim: "wc:westeros", x: 4118, y: 211, z: 18540, time: 1696965112407L, xRot: 33.149723052978516f, yRot: -158.64529418945312f } - "ashbrooklogging": { dim: "wc:westeros", x: 1034, y: 64, z: 13628, time: 1696965112407L, xRot: 33.59994888305664f, yRot: 1.06378173828125f } - "Ryamsporthamlet": { dim: "wc:westeros", x: -9935, y: 56, z: 25205, time: 1696965112407L, xRot: 7.199512958526611f, yRot: 54.14111328125f } - "hamellham2": { dim: "wc:westeros", x: -4121, y: 46, z: 14647, time: 1696965112407L, xRot: -4.199990749359131f, yRot: -92.46029663085938f } - "hamellham1": { dim: "wc:westeros", x: -3813, y: 56, z: 14874, time: 1696965112407L, xRot: 18.779027938842773f, yRot: -28.62421989440918f } - "hamellham3": { dim: "wc:westeros", x: -3668, y: 79, z: 14317, time: 1696965112407L, xRot: -4.013970375061035f, yRot: -135.500244140625f } - "hamellvillage": { dim: "wc:westeros", x: -3435, y: 61, z: 14718, time: 1696965112407L, xRot: -7.035336017608643f, yRot: 128.56982421875f } - "hamell": { dim: "wc:westeros", x: -3394, y: 61, z: 14720, time: 1696965112407L, xRot: -2.387148380279541f, yRot: 101.97953033447266f } - "fallowfieldriver": { dim: "wc:westeros", x: -8145, y: 39, z: 21800, time: 1696965112407L, xRot: 15.749937057495117f, yRot: -119.0936279296875f } - "Walter": { dim: "wc:playground", x: -192, y: 21, z: 5665, time: 1696965112407L, xRot: -3.8566954135894775f, yRot: -32.827117919921875f } - "WaltertheIII": { dim: "wc:playground", x: -192, y: 21, z: 5665, time: 1696965112408L, xRot: -3.8566954135894775f, yRot: -32.827117919921875f } - "wallt": { dim: "wc:westeros", x: -2900, y: 80, z: -11514, time: 1696965112408L, xRot: 21.90001678466797f, yRot: -113.35391998291016f } - "vfarmstead": { dim: "wc:westeros", x: -1999, y: 47, z: 15541, time: 1696965112408L, xRot: 4.060493469238281f, yRot: 219.791748046875f } - "WHHospital": { dim: "wc:westeros", x: 1472, y: 51, z: -2909, time: 1696965112408L, xRot: -7.453701019287109f, yRot: -87.92416381835938f } - "lonmouth": { dim: "wc:westeros", x: 3690, y: 81, z: 18575, time: 1696965112408L, xRot: -5.100011825561523f, yRot: -6.694427490234375f } - "lbm": { dim: "wc:playground", x: -397, y: 26, z: 360, time: 1696965112408L, xRot: 23.40000343322754f, yRot: 343.9446716308594f } - "arbormountaintest": { dim: "wc:westeros", x: -9250, y: 107, z: 26330, time: 1696965112408L, xRot: 22.34998893737793f, yRot: 23.102510452270508f } - "oakdale": { dim: "wc:westeros", x: -3084, y: 60, z: 15078, time: 1696965112419L, xRot: -20.700002670288086f, yRot: -307.2359619140625f } - "OT": { dim: "wc:westeros", x: -8535, y: 82, z: 22741, time: 1696965112420L, xRot: 1.500044584274292f, yRot: 6.456437587738037f } - "AndalSeptry": { dim: "wc:westeros", x: 9435, y: 55, z: 1915, time: 1696965112420L, xRot: -7.200058937072754f, yRot: 228.46038818359375f } - "AnniversaryMap": { dim: "wc:playground", x: 1836, y: 74, z: 3071, time: 1696965112420L, xRot: 31.627416610717773f, yRot: 179.2827606201172f } - "Harrentown": { dim: "wc:westeros", x: 1428, y: 88, z: 9230, time: 1696965112420L, xRot: -18.456361770629883f, yRot: 176.30224609375f } - "HarrentownHarbor": { dim: "wc:westeros", x: 1331, y: 36, z: 9161, time: 1696965112420L, xRot: 7.5244598388671875f, yRot: -54.02024459838867f } - "PilgrimPort": { dim: "wc:westeros", x: 9288, y: 72, z: 2477, time: 1696965112420L, xRot: 0.6351344585418701f, yRot: -268.3530578613281f } - "ravencave": { dim: "wc:playground", x: 2069, y: 64, z: 3182, time: 1696965112420L, xRot: 14.100135803222656f, yRot: 89.02362060546875f } - "Harrenhal": { dim: "wc:westeros", x: 1497, y: 42, z: 9106, time: 1696965112420L, xRot: -31.83094596862793f, yRot: -89.7274169921875f } - "garnerham3": { dim: "wc:westeros", x: -7871, y: 95, z: 10882, time: 1696965112421L, xRot: 3.627176284790039f, yRot: -43.65238952636719f } - "HarrenhalEast": { dim: "wc:westeros", x: 1986, y: 41, z: 9412, time: 1696965112421L, xRot: -8.729262351989746f, yRot: -217.0294189453125f } - "Ghmine1": { dim: "wc:westeros", x: 7418, y: 114, z: 24007, time: 1696965112421L, xRot: 1.950050711631775f, yRot: 55.134063720703125f } - "UltimateBlue": { dim: "wc:playground", x: 435, y: 21, z: -54, time: 1696965112421L, xRot: 7.183218955993652f, yRot: 317.24609375f } - "hvmine": { dim: "wc:westeros", x: -4984, y: 105, z: 10847, time: 1696965112421L, xRot: 6.299914836883545f, yRot: -90.3193359375f } - "hvham2": { dim: "wc:westeros", x: -5356, y: 64, z: 11328, time: 1696965112421L, xRot: 6.150005340576172f, yRot: -12.019174575805664f } - "OldGateCopy": { dim: "wc:playground", x: 3693, y: 41, z: -1333, time: 1696965112421L, xRot: -28.912952423095703f, yRot: -180.50625610351562f } - "blackpoolold": { dim: "wc:westeros", x: 6597, y: 41, z: -4205, time: 1696965112422L, xRot: 3.494511604309082f, yRot: -0.4710930585861206f } - "lightfootold": { dim: "wc:westeros", x: 4607, y: 59, z: -7658, time: 1696965112422L, xRot: -0.9538385272026062f, yRot: -182.468017578125f } - "ghham3": { dim: "wc:westeros", x: 7762, y: 46, z: 23462, time: 1696965112422L, xRot: 14.249980926513672f, yRot: 222.71910095214844f } - "Beaverhal": { dim: "wc:westeros", x: 1725, y: 44, z: 8538, time: 1696965112422L, xRot: 13.27804183959961f, yRot: 299.79364013671875f } - "kl14": { dim: "wc:playground", x: 3794, y: 52, z: -1124, time: 1696965112422L, xRot: -2.6557838916778564f, yRot: -0.9345703125f } - "awb": { dim: "wc:playground", x: 644, y: 21, z: 354, time: 1696965112422L, xRot: -5.250004768371582f, yRot: -45.035579681396484f } - "ghosthillcastle": { dim: "wc:westeros", x: 7120, y: 100, z: 23834, time: 1696965112422L, xRot: -13.153674125671387f, yRot: 189.78189086914062f } - "ghosthilltown": { dim: "wc:westeros", x: 7178, y: 50, z: 23621, time: 1696965112423L, xRot: -15.450063705444336f, yRot: 295.019775390625f } - "pilgerin": { dim: "wc:westeros", x: 9178, y: 36, z: 2444, time: 1696965112423L, xRot: -6.899952411651611f, yRot: 83.24711608886719f } - "kl5": { dim: "wc:playground", x: 3694, y: 41, z: -1347, time: 1696965112423L, xRot: -7.972736835479736f, yRot: -0.694691002368927f } - "cellhell": { dim: "wc:westeros", x: 2029, y: 69, z: -16010, time: 1696965112423L, xRot: 19.04952049255371f, yRot: 284.6939697265625f } - "MapOld": { dim: "wc:playground", x: 84, y: 91, z: -333, time: 1696965112423L, xRot: -3.600008726119995f, yRot: 179.91726684570312f } - "Map": { dim: "wc:playground", x: 1810, y: 120, z: 3072, time: 1696965112423L, xRot: 0.9977539777755737f, yRot: -179.7657928466797f } - "ValyrianContest": { dim: "wc:playground", x: 5060, y: 21, z: -384, time: 1696965112423L, xRot: 1.6500043869018555f, yRot: -178.81683349609375f } - "WarContest": { dim: "wc:playground", x: 4729, y: 21, z: -380, time: 1696965112423L, xRot: -10.71728515625f, yRot: -182.045654296875f } - "homie": { dim: "wc:playground", x: 1097, y: 11, z: 5686, time: 1696965112423L, xRot: -9.299994468688965f, yRot: -36.35858154296875f } - "Shoezilla": { dim: "wc:playground", x: 648, y: 21, z: -51, time: 1696965112423L, xRot: 2.56388258934021f, yRot: -35.917274475097656f } - "shham1": { dim: "wc:westeros", x: 4123, y: 66, z: 19408, time: 1696965112423L, xRot: -17.367687225341797f, yRot: 70.00084686279297f } - "Ironsmith": { dim: "wc:westeros", x: -1157, y: 50, z: -2898, time: 1696965112423L, xRot: -13.222677230834961f, yRot: -145.19129943847656f } - "IronsmithCastle": { dim: "wc:westeros", x: -1073, y: 66, z: -2976, time: 1696965112424L, xRot: -13.830606460571289f, yRot: -240.1513671875f } - "Varner": { dim: "wc:westeros", x: -2986, y: 57, z: 15321, time: 1696965112424L, xRot: -12.064952850341797f, yRot: 36.31386184692383f } - "Waffle": { dim: "wc:playground", x: 649, y: 21, z: -252, time: 1696965112424L, xRot: -0.504676342010498f, yRot: -41.4278564453125f } - "bwb2b": { dim: "wc:playground", x: 3490, y: 44, z: 3288, time: 1696965112424L, xRot: 10.950010299682617f, yRot: 270.8017578125f } - "bwb2l": { dim: "wc:playground", x: 3527, y: 45, z: 3263, time: 1696965112424L, xRot: 19.350027084350586f, yRot: -270.6979675292969f } - "bwb2": { dim: "wc:playground", x: 3558, y: 46, z: 3308, time: 1696965112424L, xRot: 9.14992618560791f, yRot: 271.24774169921875f } - "bwb3b": { dim: "wc:playground", x: 3631, y: 46, z: 3290, time: 1696965112424L, xRot: 12.899916648864746f, yRot: -269.50341796875f } - "bwb3l": { dim: "wc:playground", x: 3408, y: 46, z: 3312, time: 1696965112424L, xRot: 9.600008964538574f, yRot: -90.552734375f } - "BWB3": { dim: "wc:playground", x: 3536, y: 46, z: 3309, time: 1696965112424L, xRot: 11.999999046325684f, yRot: -268.453125f } - "bwb9l": { dim: "wc:playground", x: 2997, y: 50, z: 3215, time: 1696965112424L, xRot: 8.099973678588867f, yRot: -42.187530517578125f } - "bwb9b": { dim: "wc:playground", x: 3021, y: 50, z: 3242, time: 1696965112424L, xRot: 13.199956893920898f, yRot: -216.0372314453125f } - "bwb6": { dim: "wc:playground", x: 2601, y: 62, z: 3142, time: 1696965112424L, xRot: 5.700013160705566f, yRot: 132.86407470703125f } - "bwb4": { dim: "wc:playground", x: 3077, y: 53, z: 3067, time: 1696965112425L, xRot: 2.8499038219451904f, yRot: 218.51112365722656f } - "bwb7": { dim: "wc:playground", x: 3082, y: 55, z: 3073, time: 1696965112425L, xRot: 3.3000826835632324f, yRot: 67.13681030273438f } - "bwb10": { dim: "wc:playground", x: 3038, y: 65, z: 3109, time: 1696965112425L, xRot: -1.5001373291015625f, yRot: -0.63726806640625f } - "bwb1": { dim: "wc:playground", x: 3052, y: 65, z: 3116, time: 1696965112425L, xRot: 16.34964370727539f, yRot: 168.1666259765625f } - "bwb4arena": { dim: "wc:playground", x: 3140, y: 59, z: 3027, time: 1696965112437L, xRot: 0.5999835729598999f, yRot: 254.21424865722656f } - "HarrenOrchardHam": { dim: "wc:westeros", x: 1786, y: 47, z: 8903, time: 1696965112437L, xRot: -3.987332820892334f, yRot: 171.0645751953125f } - "finn": { dim: "wc:playground", x: 225, y: 21, z: 151, time: 1696965112437L, xRot: 16.27261734008789f, yRot: 307.0987548828125f } - "deiniol": { dim: "wc:playground", x: 13, y: 21, z: 4643, time: 1696965112437L, xRot: 7.350009441375732f, yRot: -45.446800231933594f } - "bwb6b": { dim: "wc:playground", x: 2539, y: 45, z: 3128, time: 1696965112437L, xRot: 5.999975681304932f, yRot: 269.5082702636719f } - "Pigeontown": { dim: "wc:westeros", x: 9127, y: 53, z: 2444, time: 1696965112437L, xRot: 0.29999518394470215f, yRot: -268.95361328125f } - "Contest": { dim: "wc:playground", x: 5060, y: 21, z: -384, time: 1696965112437L, xRot: 6.750001907348633f, yRot: -177.1667938232422f } - "VT2": { dim: "wc:westeros", x: -9271, y: 39, z: 25578, time: 1696965112437L, xRot: 8.399988174438477f, yRot: 15.440325736999512f } - "VT3": { dim: "wc:westeros", x: -9289, y: 39, z: 25688, time: 1696965112438L, xRot: -1.2000226974487305f, yRot: -1.5096491575241089f } - "VT4": { dim: "wc:westeros", x: -9221, y: 39, z: 25696, time: 1696965112438L, xRot: 1.4999752044677734f, yRot: -64.3595962524414f } - "VT5": { dim: "wc:westeros", x: -9136, y: 39, z: 25719, time: 1696965112438L, xRot: 0.14995983242988586f, yRot: 18.290401458740234f } - "VT6": { dim: "wc:westeros", x: -9126, y: 43, z: 25814, time: 1696965112438L, xRot: 5.4000091552734375f, yRot: -22.959598541259766f } - "VT7": { dim: "wc:westeros", x: -9216, y: 47, z: 25942, time: 1696965112438L, xRot: 4.350000381469727f, yRot: 192.2903289794922f } - "VT8": { dim: "wc:westeros", x: -9334, y: 47, z: 25874, time: 1696965112438L, xRot: 11.250012397766113f, yRot: 180.44020080566406f } - "VT9": { dim: "wc:westeros", x: -9433, y: 47, z: 25811, time: 1696965112438L, xRot: 9.450008392333984f, yRot: 181.49024963378906f } - "VT10": { dim: "wc:westeros", x: -9435, y: 47, z: 25673, time: 1696965112438L, xRot: 0.9000077247619629f, yRot: 271.7903747558594f } - "VT11": { dim: "wc:westeros", x: -9354, y: 93, z: 25524, time: 1696965112438L, xRot: 8.699893951416016f, yRot: -267.75811767578125f } - "gulltowncontest": { dim: "wc:playground", x: 5056, y: 124, z: -1167, time: 1696965112438L, xRot: -7.049911975860596f, yRot: -179.4154052734375f } - "gtcontest": { dim: "wc:playground", x: 5056, y: 124, z: -1167, time: 1696965112439L, xRot: -7.049911975860596f, yRot: -179.4154052734375f } - "Vinetown": { dim: "wc:westeros", x: -9206, y: 78, z: 25488, time: 1696965112439L, xRot: 3.450037956237793f, yRot: -267.489990234375f } - "VT1": { dim: "wc:westeros", x: -9206, y: 78, z: 25487, time: 1696965112439L, xRot: -0.6000300645828247f, yRot: 92.09041595458984f } - "briarglenn": { dim: "wc:westeros", x: 8421, y: 45, z: 4208, time: 1696965112439L, xRot: -5.734571933746338f, yRot: -97.91678619384766f } - "terraschool": { dim: "wc:playground", x: 1331, y: 20, z: 4837, time: 1696965112439L, xRot: 2.39774751663208f, yRot: 228.23147583007812f } - "willum": { dim: "wc:westeros", x: 1395, y: 57, z: 17635, time: 1696965112439L, xRot: 3.4826011657714844f, yRot: 72.77731323242188f } - "bwb6l": { dim: "wc:playground", x: 2544, y: 67, z: 3019, time: 1696965112439L, xRot: 2.39955997467041f, yRot: -46.3902587890625f } - "Wurst": { dim: "wc:playground", x: -374, y: 22, z: 5826, time: 1696965112439L, xRot: 30.599943161010742f, yRot: -222.5782470703125f } - "newspawntest": { dim: "wc:playground", x: 2272, y: 36, z: -520, time: 1696965112440L, xRot: -6.150045394897461f, yRot: -356.15509033203125f } - "BWB5": { dim: "wc:playground", x: 2406, y: 47, z: 3134, time: 1696965112440L, xRot: 13.649970054626465f, yRot: -267.8699951171875f } - "willum2": { dim: "wc:westeros", x: 1882, y: 53, z: 17522, time: 1696965112440L, xRot: 2.550577402114868f, yRot: -262.78607177734375f } - "Cryo": { dim: "wc:playground", x: -607, y: 21, z: 4458, time: 1696965112440L, xRot: -5.550074577331543f, yRot: -41.654449462890625f } - "CryogenicFreeze": { dim: "wc:playground", x: -607, y: 21, z: 4458, time: 1696965112440L, xRot: -5.550074577331543f, yRot: -41.654449462890625f } - "tutorial": { dim: "wc:playground", x: 2278, y: 36, z: -514, time: 1696965112440L, xRot: 9.449953079223633f, yRot: -89.60494995117188f } - "bwb10l": { dim: "wc:playground", x: 3057, y: 53, z: 3110, time: 1696965112440L, xRot: 4.94988489151001f, yRot: -358.837646484375f } - "bwb10b": { dim: "wc:playground", x: 2992, y: 51, z: 3166, time: 1696965112440L, xRot: 5.549896240234375f, yRot: -179.5875701904297f } - "bwb9": { dim: "wc:playground", x: 2997, y: 46, z: 3216, time: 1696965112440L, xRot: 15.149991989135742f, yRot: -46.53863525390625f } - "bwb0": { dim: "wc:playground", x: 3274, y: 77, z: 3151, time: 1696965112441L, xRot: 6.150102615356445f, yRot: -269.2008056640625f } - "bwbtest": { dim: "wc:playground", x: 3278, y: 78, z: 3151, time: 1696965112441L, xRot: 4.949956893920898f, yRot: 91.6058349609375f } - "Estermont": { dim: "wc:westeros", x: 9082, y: 53, z: 19900, time: 1696965112441L, xRot: -28.03873062133789f, yRot: 72.38513946533203f } - "bwb8SeaDemon": { dim: "wc:playground", x: 3081, y: 46, z: 3317, time: 1696965112441L, xRot: 13.650028228759766f, yRot: 200.11865234375f } - "bwb8Seahorse": { dim: "wc:playground", x: 3030, y: 44, z: 3248, time: 1696965112441L, xRot: 10.950016975402832f, yRot: 305.870361328125f } - "bwb8RedClaw": { dim: "wc:playground", x: 3078, y: 46, z: 3255, time: 1696965112441L, xRot: 6.000007629394531f, yRot: 17.7213134765625f } - "CrossedElms": { dim: "wc:westeros", x: 1017, y: 36, z: 9477, time: 1696965112441L, xRot: -3.6999523639678955f, yRot: -331.2091064453125f } - "bwb8start": { dim: "wc:playground", x: 3102, y: 51, z: 3375, time: 1696965112441L, xRot: 8.549994468688965f, yRot: 168.98809814453125f } - "bwbriver": { dim: "wc:playground", x: 2988, y: 48, z: 3174, time: 1696965112441L, xRot: 42.45000076293945f, yRot: -274.109130859375f } - "bwbriverfire": { dim: "wc:playground", x: 3252, y: 73, z: 2914, time: 1696965112441L, xRot: 20.400001525878906f, yRot: 93.3907241821289f } - "bwbriverships": { dim: "wc:playground", x: 3251, y: 134, z: 2915, time: 1696965112441L, xRot: 89.54998779296875f, yRot: 46.74076843261719f } - "VTtest": { dim: "wc:playground", x: 2651, y: 205, z: -1142, time: 1696965112442L, xRot: 16.499963760375977f, yRot: 71.79934692382812f } - "Pit": { dim: "wc:westeros", x: 1417, y: 4, z: 24071, time: 1696965112453L, xRot: 33.05137634277344f, yRot: 1.6221483945846558f } - "willum1": { dim: "wc:westeros", x: 1384, y: 100, z: 17620, time: 1696965112453L, xRot: -27.7500057220459f, yRot: -359.9659729003906f } - "bigglestone": { dim: "wc:westeros", x: 437, y: 104, z: 9084, time: 1696965112453L, xRot: 11.294281959533691f, yRot: 180.1638641357422f } - "KDS": { dim: "wc:playground", x: -427, y: 21, z: 751, time: 1696965112453L, xRot: 4.200038909912109f, yRot: 128.10140991210938f } - "bwb8": { dim: "wc:playground", x: 3032, y: 46, z: 3442, time: 1696965112454L, xRot: 6.299918174743652f, yRot: 183.55946350097656f } - "bwb11camp": { dim: "wc:playground", x: 2895, y: 46, z: 3450, time: 1696965112454L, xRot: 7.79992151260376f, yRot: -92.4651870727539f } - "bwb11": { dim: "wc:playground", x: 2794, y: 45, z: 3468, time: 1696965112454L, xRot: 6.5999555587768555f, yRot: -164.6151885986328f } - "StepstonesBattle": { dim: "wc:playground", x: 4415, y: 83, z: 3188, time: 1696965112454L, xRot: 44.284305572509766f, yRot: -85.03346252441406f } - "Trant": { dim: "wc:westeros", x: 2520, y: 119, z: 18941, time: 1696965112454L, xRot: -22.800661087036133f, yRot: -251.12721252441406f } - "admiralty": { dim: "wc:westeros", x: -9424, y: 46, z: 25498, time: 1696965112454L, xRot: -2.1001346111297607f, yRot: -179.10858154296875f } - "antlersmanor": { dim: "wc:westeros", x: 3994, y: 40, z: 10468, time: 1696965112454L, xRot: -2.1075401306152344f, yRot: 90.83148193359375f } - "Strong": { dim: "wc:westeros", x: 1834, y: 78, z: 8586, time: 1696965112454L, xRot: 12.509568214416504f, yRot: -85.1468505859375f } - "vtbathtest": { dim: "wc:playground", x: 2525, y: 124, z: -1443, time: 1696965112455L, xRot: 10.199968338012695f, yRot: -359.7506408691406f } - "commstreet": { dim: "wc:playground", x: -208, y: 20, z: 5657, time: 1696965112455L, xRot: -1.6500080823898315f, yRot: -0.23884332180023193f } - "JB": { dim: "wc:playground", x: -411, y: 21, z: 4864, time: 1696965112455L, xRot: -2.868055820465088f, yRot: -47.33939743041992f } - "pizzainacup": { dim: "wc:playground", x: -1608, y: 101, z: 5861, time: 1696965112455L, xRot: 22.049972534179688f, yRot: 178.29925537109375f } - "InterrogationVillage": { dim: "wc:westeros", x: 1005, y: 38, z: 9544, time: 1696965112455L, xRot: -5.772739410400391f, yRot: -164.38253784179688f } - "seasnake": { dim: "wc:playground", x: 4456, y: 32, z: 3340, time: 1696965112455L, xRot: 5.09999418258667f, yRot: -185.20083618164062f } - "aeksiohenpelar": { dim: "wc:playground", x: 4439, y: 32, z: 3029, time: 1696965112456L, xRot: -2.0999045372009277f, yRot: -1.299652099609375f } - "Bloodstone1v1": { dim: "wc:playground", x: 4819, y: 38, z: 3255, time: 1696965112456L, xRot: -7.800041675567627f, yRot: -172.484130859375f } - "TheReach": { dim: "wc:westeros", x: -4410, y: 48, z: 18551, time: 1696965112456L, xRot: 2.8499343395233154f, yRot: 92.26212310791016f } - "SEhub": { dim: "wc:playground", x: 4776, y: 29, z: 3198, time: 1696965112456L, xRot: 6.7500996589660645f, yRot: 94.36460876464844f } - "ashbrookdam": { dim: "wc:westeros", x: 765, y: 59, z: 13671, time: 1696965112456L, xRot: 39.44996643066406f, yRot: 275.41424560546875f } - "redkeepintro": { dim: "wc:playground", x: -1749, y: 161, z: 4408, time: 1696965112456L, xRot: 19.79969596862793f, yRot: -44.29949951171875f } - "castleblackintro": { dim: "wc:playground", x: -1608, y: 101, z: 5867, time: 1696965112456L, xRot: 29.249967575073242f, yRot: 178.7493896484375f } - "ghosthillseptry": { dim: "wc:westeros", x: 6463, y: 107, z: 23930, time: 1696965112456L, xRot: -26.50363540649414f, yRot: -53.66819763183594f } - "Frenci": { dim: "wc:playground", x: -403, y: 21, z: 5069, time: 1696965112456L, xRot: -1.9636582136154175f, yRot: -46.70703125f } - "FrenciGeorge": { dim: "wc:playground", x: -403, y: 21, z: 5069, time: 1696965112456L, xRot: -1.9636582136154175f, yRot: -46.70703125f } - "Dorne": { dim: "wc:westeros", x: -1663, y: 53, z: 23893, time: 1696965112456L, xRot: -6.50347900390625f, yRot: -27.828062057495117f } - "ghosthillsaltflat": { dim: "wc:westeros", x: 6795, y: 81, z: 23870, time: 1696965112456L, xRot: 19.350006103515625f, yRot: 141.7188720703125f } - "intrologo": { dim: "wc:playground", x: -916, y: 192, z: 4443, time: 1696965112456L, xRot: 29.849966049194336f, yRot: 181.90252685546875f } - "thelastdrop": { dim: "wc:playground", x: 3873, y: 43, z: -1070, time: 1696965112456L, xRot: 27.812862396240234f, yRot: -0.7614771127700806f } - "rattlez": { dim: "wc:playground", x: -486, y: 21, z: 5664, time: 1696965112456L, xRot: 2.2125449180603027f, yRot: 3.8091859817504883f } - "redkeepmodel": { dim: "wc:playground", x: -1692, y: 152, z: 4969, time: 1696965112456L, xRot: 29.699806213378906f, yRot: -274.7305908203125f } - "introprojectmap": { dim: "wc:playground", x: -1382, y: 182, z: 4389, time: 1696965112456L, xRot: 36.452823638916016f, yRot: 318.5637512207031f } - "wazland": { dim: "wc:westeros", x: 1099, y: 49, z: 6363, time: 1696965112456L, xRot: 5.585405349731445f, yRot: 112.97257995605469f } - "ruthermonttemp": { dim: "wc:westeros", x: 7435, y: 116, z: 7687, time: 1696965112456L, xRot: 4.349991798400879f, yRot: -180.399658203125f } - "Mayday": { dim: "wc:playground", x: -609, y: 21, z: 5472, time: 1696965112457L, xRot: 6.449956893920898f, yRot: -29.378217697143555f } - "Celtigar": { dim: "wc:westeros", x: 9885, y: 80, z: 8555, time: 1696965112457L, xRot: -17.928058624267578f, yRot: -122.03396606445312f } - "ghosthillmanse": { dim: "wc:westeros", x: 7461, y: 53, z: 23561, time: 1696965112457L, xRot: 15.899949073791504f, yRot: 2.518799304962158f } - "ghmine2": { dim: "wc:westeros", x: 7111, y: 116, z: 24205, time: 1696965112457L, xRot: -0.7500751614570618f, yRot: 202.76873779296875f } - "ghosthillquarry": { dim: "wc:westeros", x: 7027, y: 92, z: 23909, time: 1696965112457L, xRot: 10.049904823303223f, yRot: -42.93137741088867f } - "Reimswich": { dim: "wc:westeros", x: 8561, y: 35, z: 4481, time: 1696965112457L, xRot: -4.084556579589844f, yRot: -74.0666275024414f } - "winterfellintro": { dim: "wc:playground", x: -1203, y: 20, z: 5871, time: 1696965112457L, xRot: 20.24982452392578f, yRot: -175.3828887939453f } - "winterfelltowerintro": { dim: "wc:playground", x: -935, y: 36, z: 5598, time: 1696965112457L, xRot: 3.450495719909668f, yRot: 336.11529541015625f } - "presley": { dim: "wc:westeros", x: -654, y: 90, z: 14620, time: 1696965112457L, xRot: 25.500001907348633f, yRot: -77.68209838867188f } - "preswell": { dim: "wc:westeros", x: -318, y: 73, z: 14665, time: 1696965112457L, xRot: 31.949899673461914f, yRot: 5.42822265625f } - "oxleighhead": { dim: "wc:westeros", x: -64, y: 87, z: 13244, time: 1696965112457L, xRot: 30.29995346069336f, yRot: -231.8861083984375f } - "spinnything": { dim: "wc:playground", x: -1710, y: 253, z: 4010, time: 1696965112457L, xRot: 58.35000228881836f, yRot: 181.156494140625f } - "willum3": { dim: "wc:westeros", x: 995, y: 73, z: 17856, time: 1696965112457L, xRot: -3.9000449180603027f, yRot: -296.55413818359375f } - "ringmid": { dim: "wc:repository", x: -1255, y: 99, z: -918, time: 1696965112457L, xRot: 61.649925231933594f, yRot: -273.92095947265625f } - "sdham1": { dim: "wc:westeros", x: 8362, y: 60, z: 12117, time: 1696965112457L, xRot: 36.90510559082031f, yRot: -156.4238739013672f } - "WalrusBehindYou": { dim: "wc:playground", x: 21, y: 21, z: 5055, time: 1696965112457L, xRot: -4.729778289794922f, yRot: 316.3304138183594f } - "XxCC23xX": { dim: "wc:playground", x: -621, y: 21, z: 5052, time: 1696965112457L, xRot: 0.15004071593284607f, yRot: 315.0212707519531f } - "CC23": { dim: "wc:playground", x: -621, y: 21, z: 5052, time: 1696965112458L, xRot: 0.15004071593284607f, yRot: 315.0212707519531f } - "glanporth": { dim: "wc:westeros", x: -7043, y: 44, z: -1887, time: 1696965112458L, xRot: 4.078200340270996f, yRot: 174.26937866210938f } - "willumcastle": { dim: "wc:westeros", x: 1476, y: 69, z: 17650, time: 1696965112458L, xRot: -21.3000431060791f, yRot: -45.58271789550781f } - "HVGlassWorksTest": { dim: "wc:westeros", x: -4930, y: 87, z: 11245, time: 1696965112458L, xRot: 10.621828079223633f, yRot: -269.0015869140625f } - "MajBiomes": { dim: "wc:playground", x: 4029, y: 21, z: 5541, time: 1696965112458L, xRot: -0.5806695222854614f, yRot: -269.17987060546875f } - "KuhlDK": { dim: "wc:playground", x: -430, y: 21, z: 5446, time: 1696965112458L, xRot: -0.3293302357196808f, yRot: -217.9848175048828f } - "HHGodswood": { dim: "wc:westeros", x: 1720, y: 111, z: 9341, time: 1696965112458L, xRot: 8.779385566711426f, yRot: -87.29566192626953f } - "BuildersFlags": { dim: "wc:playground", x: -543, y: 190, z: 1667, time: 1696965112458L, xRot: 8.379852294921875f, yRot: 136.07666015625f } - "hvhf2": { dim: "wc:westeros", x: -3931, y: 82, z: 11415, time: 1696965112469L, xRot: 5.2500200271606445f, yRot: 122.70811462402344f } - "hvfarm5": { dim: "wc:westeros", x: -4040, y: 70, z: 11487, time: 1696965112469L, xRot: 18.899810791015625f, yRot: -3.2960891723632812f } - "ruthermontcastletest": { dim: "wc:playground", x: 4553, y: 60, z: 5200, time: 1696965112469L, xRot: 12.750001907348633f, yRot: -63.8316650390625f } - "wintervillage": { dim: "wc:playground", x: -796, y: 34, z: 3989, time: 1696965112469L, xRot: -0.6000865697860718f, yRot: -133.74578857421875f } - "nf": { dim: "wc:westeros", x: 2092, y: 83, z: -16060, time: 1696965112469L, xRot: -7.650263786315918f, yRot: 176.54171752929688f } - "holiday2015": { dim: "wc:playground", x: -1700, y: 22, z: 434, time: 1696965112470L, xRot: -10.800006866455078f, yRot: -268.3544006347656f } - "holiday2022": { dim: "wc:playground", x: 2372, y: 32, z: 4549, time: 1696965112470L, xRot: 2.2498390674591064f, yRot: -272.92974853515625f } - "Xmas2022": { dim: "wc:playground", x: 2372, y: 32, z: 4549, time: 1696965112470L, xRot: -6.600161075592041f, yRot: -274.42974853515625f } - "holidaycontest": { dim: "wc:playground", x: 2533, y: 33, z: 4566, time: 1696965112470L, xRot: 6.4499831199646f, yRot: -92.63272094726562f } - "gerblederp": { dim: "wc:playground", x: -202, y: 21, z: 4847, time: 1696965112470L, xRot: 3.300002098083496f, yRot: -43.523468017578125f } - "Boxlowes": { dim: "wc:westeros", x: 7459, y: 39, z: 4780, time: 1696965112470L, xRot: -13.200028419494629f, yRot: -316.0448303222656f } - "HHharbor": { dim: "wc:westeros", x: 1601, y: 39, z: 9212, time: 1696965112470L, xRot: 12.791802406311035f, yRot: -69.1789779663086f } - "TreeScriptRepo": { dim: "wc:playground", x: 4058, y: 48, z: 4355, time: 1696965112471L, xRot: -4.199997901916504f, yRot: -222.18896484375f } - "EmoteTemp": { dim: "wc:playground", x: 4058, y: 48, z: 4355, time: 1696965112471L, xRot: -8.100057601928711f, yRot: -226.08447265625f } - "HallofFaces": { dim: "wc:playground", x: 4274, y: 18, z: 5845, time: 1696965112471L, xRot: -4.18068265914917f, yRot: -268.130126953125f } - "redsnow": { dim: "wc:playground", x: 2408, y: 34, z: 4444, time: 1696965112471L, xRot: 16.499914169311523f, yRot: -100.27952575683594f } - "greensnow": { dim: "wc:playground", x: 2465, y: 34, z: 4443, time: 1696965112471L, xRot: 3.4499073028564453f, yRot: 91.87052154541016f } - "marge": { dim: "wc:playground", x: 839, y: 21, z: 1374, time: 1696965112471L, xRot: 9.599882125854492f, yRot: -273.27471923828125f } - "Stonedance": { dim: "wc:westeros", x: 8287, y: 40, z: 12455, time: 1696965112471L, xRot: -6.413708686828613f, yRot: -96.0355224609375f } - "hvseptry2": { dim: "wc:westeros", x: -3970, y: 63, z: 11188, time: 1696965112471L, xRot: 9.44996166229248f, yRot: -84.00486755371094f } - "sdham2": { dim: "wc:westeros", x: 7918, y: 47, z: 12512, time: 1696965112471L, xRot: 8.198055267333984f, yRot: -202.30653381347656f } - "TwinBro": { dim: "wc:playground", x: 437, y: 21, z: 2803, time: 1696965112471L, xRot: -4.0500030517578125f, yRot: -43.747802734375f } - "otsewersguide": { dim: "wc:westeros", x: -7881, y: 123, z: 22165, time: 1696965112471L, xRot: 12.299897193908691f, yRot: 179.5957489013672f } - "MermaidsPalace": { dim: "wc:westeros", x: -10705, y: 35, z: 24730, time: 1696965112471L, xRot: -17.79987907409668f, yRot: 99.48380279541016f } - "kl6test": { dim: "wc:playground", x: 4030, y: 41, z: 5189, time: 1696965112472L, xRot: -10.02232551574707f, yRot: -20.513015747070312f } - "bs1": { dim: "wc:westeros", x: 10611, y: 0, z: 20392, time: 1696965112472L, xRot: 42.45005798339844f, yRot: -181.525634765625f } - "bs2": { dim: "wc:westeros", x: 10610, y: 1, z: 20642, time: 1696965112472L, xRot: 30.00001335144043f, yRot: -86.87564086914062f } - "bs3": { dim: "wc:westeros", x: 10610, y: 1, z: 20892, time: 1696965112472L, xRot: 66.29993438720703f, yRot: -74.42544555664062f } - "bs4": { dim: "wc:westeros", x: 10610, y: 1, z: 21143, time: 1696965112472L, xRot: 90f, yRot: 2.3745779991149902f } - "bs5": { dim: "wc:westeros", x: 10610, y: 1, z: 21393, time: 1696965112472L, xRot: 90f, yRot: -92.72531127929688f } - "bs6": { dim: "wc:westeros", x: 10610, y: 1, z: 21644, time: 1696965112472L, xRot: 64.04998779296875f, yRot: -179.87567138671875f } - "bs7": { dim: "wc:westeros", x: 10610, y: 1, z: 21893, time: 1696965112472L, xRot: 62.84999465942383f, yRot: 355.625244140625f } - "AmberVillage": { dim: "wc:westeros", x: -7712, y: 52, z: -9242, time: 1696965112472L, xRot: -4.3885979652404785f, yRot: 86.81656646728516f } - "Airiebirk": { dim: "wc:westeros", x: 1471, y: 49, z: 6212, time: 1696965112472L, xRot: 11.296317100524902f, yRot: -266.2269592285156f } - "bigglestoneham1": { dim: "wc:westeros", x: 1011, y: 90, z: 9524, time: 1696965112472L, xRot: 4.356421947479248f, yRot: 183.00637817382812f } - "bal": { dim: "wc:playground", x: 3119, y: 48, z: 4479, time: 1696965112473L, xRot: -1.275215744972229f, yRot: 270.5939025878906f } - "vala": { dim: "wc:playground", x: 3164, y: 35, z: 583, time: 1696965112473L, xRot: -1.0835715532302856f, yRot: -150.8010711669922f } - "ashbrookcoal": { dim: "wc:westeros", x: 544, y: 59, z: 13806, time: 1696965112473L, xRot: -3.4044933319091797f, yRot: 156.16680908203125f } - "shellton": { dim: "wc:westeros", x: 9486, y: 35, z: 19392, time: 1696965112473L, xRot: -10.379009246826172f, yRot: -39.84928512573242f } - "ocsept": { dim: "wc:westeros", x: 2566, y: 49, z: -1558, time: 1696965112473L, xRot: 0.2999918460845947f, yRot: 324.3050231933594f } - "redhollow": { dim: "wc:westeros", x: 6463, y: 50, z: 6177, time: 1696965112473L, xRot: -3.300006151199341f, yRot: -30.039932250976562f } - "bloodstone": { dim: "wc:westeros", x: 11166, y: 141, z: 21705, time: 1696965112473L, xRot: -12.900006294250488f, yRot: 3.8897705078125f } - "Jeff": { dim: "wc:playground", x: 649, y: 115, z: 5463, time: 1696965112473L, xRot: 1.8000116348266602f, yRot: -46.350433349609375f } - "lonelyhills": { dim: "wc:westeros", x: 3400, y: 240, z: -10475, time: 1696965112473L, xRot: 24.620559692382812f, yRot: 202.03811645507812f } - "foxglove": { dim: "wc:westeros", x: -5630, y: 173, z: 21614, time: 1696965112473L, xRot: 19.43429946899414f, yRot: 193.80596923828125f } - "valar": { dim: "wc:playground", x: 3229, y: 57, z: 418, time: 1696965112474L, xRot: 27.312318801879883f, yRot: -132.92298889160156f } - "ocham1": { dim: "wc:westeros", x: 2987, y: 42, z: -1867, time: 1696965112474L, xRot: 3.449944257736206f, yRot: -114.59466552734375f } - "aeston": { dim: "wc:westeros", x: 3223, y: 42, z: 15646, time: 1696965112474L, xRot: -3.6054859161376953f, yRot: -50.250057220458984f } - "penketh": { dim: "wc:westeros", x: 2923, y: 37, z: 15745, time: 1696965112474L, xRot: -0.9592177271842957f, yRot: 2.496279239654541f } - "cobbhf": { dim: "wc:westeros", x: 3419, y: 59, z: 15328, time: 1696965112474L, xRot: -7.561209678649902f, yRot: 3.6884450912475586f } - "cobbhemp": { dim: "wc:westeros", x: 3124, y: 41, z: 15140, time: 1696965112474L, xRot: 5.213046550750732f, yRot: 181.38031005859375f } - "roxtonseptry": { dim: "wc:westeros", x: -6454, y: 37, z: 19072, time: 1696965112474L, xRot: 0.1491519659757614f, yRot: 7.642728328704834f } - "thering": { dim: "wc:westeros", x: -7796, y: 51, z: 18724, time: 1696965112474L, xRot: -9.450307846069336f, yRot: 186.492431640625f } - "roxton": { dim: "wc:westeros", x: -7530, y: 39, z: 18910, time: 1696965112474L, xRot: -15.789155960083008f, yRot: 98.53421783447266f } - "darth": { dim: "wc:playground", x: -411, y: 21, z: -38, time: 1696965112474L, xRot: -4.4509053230285645f, yRot: -43.747135162353516f } - "boggsbridge": { dim: "wc:westeros", x: 6583, y: 101, z: 9737, time: 1696965112474L, xRot: 42.74995803833008f, yRot: 4.77773380279541f } - "emmanujose": { dim: "wc:playground", x: 20, y: 21, z: 4854, time: 1696965112474L, xRot: -1.3499995470046997f, yRot: -38.269805908203125f } - "belhaven": { dim: "wc:westeros", x: -653, y: 52, z: 5100, time: 1696965112475L, xRot: 19.114267349243164f, yRot: 61.17219543457031f } - "resetroom": { dim: "wc:westeros", x: 3431, y: 189, z: -10785, time: 1696965112475L, xRot: 38.40005111694336f, yRot: 147.56396484375f } - "Maewyn": { dim: "wc:playground", x: 17, y: 21, z: 4853, time: 1696965112475L, xRot: 1.3249324560165405f, yRot: -65.01913452148438f } - "Ladytown": { dim: "wc:westeros", x: -3017, y: 42, z: 26295, time: 1696965112475L, xRot: -9.823622703552246f, yRot: 175.40283203125f } - "ladyham1": { dim: "wc:westeros", x: -2644, y: 45, z: 26324, time: 1696965112475L, xRot: 9.749677658081055f, yRot: 332.8177185058594f } - "ladyham2": { dim: "wc:westeros", x: -3502, y: 49, z: 26309, time: 1696965112475L, xRot: -1.8000526428222656f, yRot: -266.64013671875f } - "Hammerwood": { dim: "wc:westeros", x: 4801, y: 49, z: 9812, time: 1696965112486L, xRot: 0.024967487901449203f, yRot: 146.64024353027344f } - "Stonecliff": { dim: "wc:westeros", x: 5842, y: 68, z: 9315, time: 1696965112486L, xRot: -6.785141468048096f, yRot: 36.048973083496094f } - "Cave": { dim: "wc:westeros", x: 5726, y: 81, z: 9486, time: 1696965112486L, xRot: 15.831419944763184f, yRot: -139.15550231933594f } - "Stonedidge": { dim: "wc:westeros", x: 5698, y: 58, z: 9722, time: 1696965112486L, xRot: -1.0090864896774292f, yRot: 191.2568359375f } - "StonePike": { dim: "wc:westeros", x: 5597, y: 94, z: 9869, time: 1696965112486L, xRot: -26.221158981323242f, yRot: 299.2862854003906f } - "WookleyRuins": { dim: "wc:westeros", x: 5371, y: 62, z: 9532, time: 1696965112486L, xRot: -8.378229141235352f, yRot: 149.50270080566406f } - "Wookley": { dim: "wc:westeros", x: 5250, y: 60, z: 9707, time: 1696965112486L, xRot: 38.3251953125f, yRot: 146.34255981445312f } - "CaveH1": { dim: "wc:westeros", x: 6080, y: 56, z: 9327, time: 1696965112486L, xRot: 3.380628824234009f, yRot: -67.35214233398438f } - "Trickledown": { dim: "wc:westeros", x: 6153, y: 55, z: 9318, time: 1696965112486L, xRot: -2.4902114868164062f, yRot: -269.38946533203125f } - "PyneCastle": { dim: "wc:westeros", x: 8733, y: 79, z: 8104, time: 1696965112487L, xRot: -2.7217326164245605f, yRot: 86.43814849853516f } - "OC": { dim: "wc:westeros", x: 2630, y: 77, z: -1162, time: 1696965112487L, xRot: 27.260656356811523f, yRot: -102.59231567382812f } - "sdham3": { dim: "wc:westeros", x: 7661, y: 43, z: 12793, time: 1696965112487L, xRot: -3.9465034008026123f, yRot: -337.25103759765625f } - "ocd": { dim: "wc:westeros", x: 3558, y: 65, z: -1795, time: 1696965112487L, xRot: 2.4000325202941895f, yRot: -57.1458740234375f } - "roxtonhamlet1": { dim: "wc:westeros", x: -7137, y: 39, z: 19021, time: 1696965112487L, xRot: -0.7494186758995056f, yRot: 26.67437744140625f } - "sweetsongmanor": { dim: "wc:westeros", x: 404, y: 95, z: 14469, time: 1696965112487L, xRot: 28.926969528198242f, yRot: -197.5771484375f } - "oxleighmines": { dim: "wc:westeros", x: 258, y: 59, z: 13186, time: 1696965112487L, xRot: -3.749959945678711f, yRot: -191.38624572753906f } - "oxleighseptry": { dim: "wc:westeros", x: 585, y: 69, z: 13434, time: 1696965112487L, xRot: 4.04997444152832f, yRot: -127.03651428222656f } - "ttquarry": { dim: "wc:westeros", x: 1334, y: 47, z: 14049, time: 1696965112487L, xRot: -1.6500929594039917f, yRot: 189.40380859375f } - "ttseptry": { dim: "wc:westeros", x: 1557, y: 61, z: 14397, time: 1696965112487L, xRot: 25.199905395507812f, yRot: 338.35443115234375f } - "ttvineyard": { dim: "wc:westeros", x: 2030, y: 64, z: 14765, time: 1696965112487L, xRot: 0.21201108396053314f, yRot: 91.69230651855469f } - "risleymeadows": { dim: "wc:westeros", x: -569, y: 75, z: 13577, time: 1696965112487L, xRot: 25.64999771118164f, yRot: -39.273983001708984f } - "bytham": { dim: "wc:westeros", x: 1076, y: 38, z: 14629, time: 1696965112487L, xRot: -9.473037719726562f, yRot: 77.07289123535156f } - "roxtonhamlet2": { dim: "wc:westeros", x: -6866, y: 39, z: 18978, time: 1696965112487L, xRot: 8.699993133544922f, yRot: -26.56036376953125f } - "boggscliff": { dim: "wc:westeros", x: 6448, y: 132, z: 9536, time: 1696965112487L, xRot: 0.2999892234802246f, yRot: -331.07196044921875f } - "hmybussy": { dim: "wc:westeros", x: -3773, y: 43, z: 27128, time: 1696965112487L, xRot: 5.399735450744629f, yRot: 262.01763916015625f } - "Roxtonvassal": { dim: "wc:westeros", x: -6690, y: 52, z: 19186, time: 1696965112487L, xRot: -11.582711219787598f, yRot: 6.324063301086426f } - "Roxtonvillage": { dim: "wc:westeros", x: -7647, y: 56, z: 18918, time: 1696965112487L, xRot: -14.284831047058105f, yRot: -216.81436157226562f } - "PyneHam2": { dim: "wc:westeros", x: 8499, y: 50, z: 8078, time: 1696965112488L, xRot: 13.264249801635742f, yRot: 147.22528076171875f } - "pynevillage": { dim: "wc:westeros", x: 9060, y: 40, z: 8100, time: 1696965112488L, xRot: 11.006933212280273f, yRot: 171.2903594970703f } - "geroldsglen": { dim: "wc:westeros", x: 7134, y: 103, z: 7001, time: 1696965112488L, xRot: -6.986438274383545f, yRot: -189.51068115234375f } - "HH": { dim: "wc:westeros", x: 1659, y: 89, z: 9093, time: 1696965112488L, xRot: 44.5262451171875f, yRot: -140.18634033203125f } - "Willum4": { dim: "wc:westeros", x: 662, y: 39, z: 17830, time: 1696965112488L, xRot: -0.4672977030277252f, yRot: 115.23322296142578f } - "Frappson": { dim: "wc:playground", x: -621, y: 21, z: 4236, time: 1696965112488L, xRot: 21.89995574951172f, yRot: -34.45404052734375f } - "guedelon": { dim: "wc:westeros", x: -7057, y: 65, z: 23205, time: 1696965112488L, xRot: -5.548974514007568f, yRot: -178.911865234375f } - "simba2": { dim: "wc:playground", x: 433, y: 98, z: 2589, time: 1696965112488L, xRot: -2.1000311374664307f, yRot: -137.19451904296875f } - "simba3": { dim: "wc:playground", x: 433, y: 179, z: 2590, time: 1696965112488L, xRot: -10.949922561645508f, yRot: -163.59454345703125f } - "ladyham3": { dim: "wc:westeros", x: -2407, y: 50, z: 26210, time: 1696965112488L, xRot: 1.0501123666763306f, yRot: 269.3492736816406f } - "arkrr2": { dim: "wc:playground", x: 2104, y: 170, z: 661, time: 1696965112488L, xRot: -10.049991607666016f, yRot: 227.04092407226562f } - "PyneHFRuins": { dim: "wc:westeros", x: 8336, y: 67, z: 8189, time: 1696965112488L, xRot: -7.878255844116211f, yRot: 133.07916259765625f } - "opaco": { dim: "wc:playground", x: 669, y: 22, z: 156, time: 1696965112489L, xRot: -7.650033473968506f, yRot: -21.49153709411621f } - "DanyandVis": { dim: "wc:playground", x: 2632, y: 113, z: 2775, time: 1696965112489L, xRot: 9.308429718017578f, yRot: 0.14937473833560944f } - "versailles": { dim: "wc:playground", x: 2613, y: 20, z: 2667, time: 1696965112489L, xRot: -10.56706428527832f, yRot: -180.3871612548828f } - "ShadyGrove": { dim: "wc:westeros", x: 4823, y: 68, z: 4631, time: 1696965112489L, xRot: -8.849935531616211f, yRot: 91.34115600585938f } - "darkdellbowyer": { dim: "wc:westeros", x: -2268, y: 48, z: 19024, time: 1696965112489L, xRot: 4.9500322341918945f, yRot: -70.48629760742188f } - "RRTest2023": { dim: "wc:playground", x: 2105, y: 170, z: 659, time: 1696965112489L, xRot: 2.8499913215637207f, yRot: 223.40869140625f } - "thebower": { dim: "wc:westeros", x: -7721, y: 53, z: 12999, time: 1696965112489L, xRot: 1.1001285314559937f, yRot: 15.768592834472656f } - "pemford": { dim: "wc:westeros", x: -250, y: 70, z: 8278, time: 1696965112489L, xRot: 34.20382308959961f, yRot: 130.652099609375f } - "pyneham3": { dim: "wc:westeros", x: 8875, y: 43, z: 8332, time: 1696965112489L, xRot: 2.519169330596924f, yRot: 74.39956665039062f } - "finntemporarywarp": { dim: "wc:playground", x: 5537, y: 48, z: 5297, time: 1696965112489L, xRot: 68.67198181152344f, yRot: 157.64678955078125f } - "beakpeak": { dim: "wc:westeros", x: 3501, y: 36, z: -1106, time: 1696965112489L, xRot: 1.9499692916870117f, yRot: 271.654296875f } - "pyneham1": { dim: "wc:westeros", x: 8641, y: 40, z: 7844, time: 1696965112489L, xRot: 8.988900184631348f, yRot: -180.591796875f } - "greenstone": { dim: "wc:westeros", x: 9052, y: 35, z: 19839, time: 1696965112489L, xRot: -13.569765090942383f, yRot: -66.58956146240234f } - "otcatacombs": { dim: "wc:playground", x: 1622, y: 21, z: 935, time: 1696965112489L, xRot: 11.850141525268555f, yRot: 133.8763427734375f } - "otcisterns": { dim: "wc:playground", x: 1621, y: 21, z: 744, time: 1696965112489L, xRot: -7.199913501739502f, yRot: 180.52647399902344f } - "hhgatetest": { dim: "wc:playground", x: 3696, y: 26, z: 3580, time: 1696965112490L, xRot: 22.032472610473633f, yRot: -88.34648132324219f } - "rr": { dim: "wc:westeros", x: -2140, y: 37, z: 8114, time: 1696965112490L, xRot: -3.900029182434082f, yRot: 224.40487670898438f } - "pleaseluk": { dim: "wc:westeros", x: 1593, y: 137, z: 17651, time: 1696965112490L, xRot: 20.582569122314453f, yRot: -9.72252368927002f } - "roxtonhamlet3": { dim: "wc:westeros", x: -7000, y: 53, z: 19357, time: 1696965112490L, xRot: -11.999990463256836f, yRot: 9.139640808105469f } - "roxtonfarm1": { dim: "wc:westeros", x: -7112, y: 57, z: 19589, time: 1696965112490L, xRot: -4.5000901222229f, yRot: 0.5548943281173706f } - "roxtonfarm2": { dim: "wc:westeros", x: -7563, y: 52, z: 19305, time: 1696965112490L, xRot: -3.000122308731079f, yRot: -49.96238708496094f } - "OldanchorCastle": { dim: "wc:westeros", x: 7671, y: 36, z: 4934, time: 1696965112490L, xRot: 6.600017547607422f, yRot: -147.9792938232422f } - "manderspring": { dim: "wc:westeros", x: 1542, y: 71, z: 13870, time: 1696965112490L, xRot: 18.2999267578125f, yRot: 184.15365600585938f } - "eastwatchw": { dim: "wc:westeros", x: 5455, y: 231, z: -16114, time: 1696965112490L, xRot: 28.04986000061035f, yRot: 257.1787109375f } - "TarthPort": { dim: "wc:westeros", x: 9721, y: 91, z: 17046, time: 1696965112490L, xRot: 3.5656776428222656f, yRot: 91.17892456054688f } - "ewcastle": { dim: "wc:westeros", x: 5357, y: 53, z: -16048, time: 1696965112490L, xRot: -25.6500244140625f, yRot: 271.3165588378906f } - "ew": { dim: "wc:westeros", x: 5342, y: 39, z: -15971, time: 1696965112490L, xRot: -30.749980926513672f, yRot: 224.6669921875f } - "OTguide": { dim: "wc:playground", x: 2747, y: 20, z: 1850, time: 1696965112490L, xRot: 14.999909400939941f, yRot: 157.99884033203125f } - "tdlotrring": { dim: "wc:playground", x: -202, y: 21, z: 5051, time: 1696965112491L, xRot: 13.826839447021484f, yRot: 315.21502685546875f } - "fofseptry": { dim: "wc:westeros", x: 191, y: 46, z: 12329, time: 1696965112491L, xRot: 0.45011308789253235f, yRot: -168.6414794921875f } - "lakkoi": { dim: "wc:westeros", x: 11118, y: 111, z: 21243, time: 1696965112491L, xRot: 5.700047016143799f, yRot: -155.37527465820312f } - "ErosTea": { dim: "wc:playground", x: -408, y: 21, z: 561, time: 1696965112491L, xRot: -4.950044631958008f, yRot: -42.148681640625f } - "nohere": { dim: "wc:westeros", x: -10277, y: 132, z: 16887, time: 1696965112491L, xRot: 44.09992980957031f, yRot: 339.55712890625f } - "nonohere": { dim: "wc:westeros", x: -10525, y: 132, z: 16870, time: 1696965112491L, xRot: 83.6999740600586f, yRot: 76.00727844238281f } - "gifthf1": { dim: "wc:westeros", x: 4604, y: 49, z: -14724, time: 1696965112491L, xRot: -19.800031661987305f, yRot: 302.5150146484375f } - "sweetham1": { dim: "wc:westeros", x: 7768, y: 50, z: 14827, time: 1696965112491L, xRot: 0.6122490167617798f, yRot: 23.6456298828125f } - "Caulkburn": { dim: "wc:westeros", x: -8160, y: 39, z: 22831, time: 1696965112491L, xRot: -3.8498528003692627f, yRot: 73.57304382324219f } - "uthor": { dim: "wc:playground", x: 859, y: 21, z: 5669, time: 1696965112491L, xRot: -1.650028109550476f, yRot: -42.2177848815918f } - "uthormadman424": { dim: "wc:playground", x: 859, y: 21, z: 5669, time: 1696965112491L, xRot: -1.650028109550476f, yRot: -42.2177848815918f } - "sweethf1": { dim: "wc:westeros", x: 7598, y: 52, z: 14566, time: 1696965112491L, xRot: -0.5065106749534607f, yRot: -92.639892578125f } - "sweetbanditham": { dim: "wc:westeros", x: 7873, y: 54, z: 14585, time: 1696965112491L, xRot: -7.503169536590576f, yRot: -133.43423461914062f } - "Aferys": { dim: "wc:playground", x: -621, y: 21, z: 3216, time: 1696965112503L, xRot: 31.17917251586914f, yRot: 317.62847900390625f } - "LadyHam4": { dim: "wc:westeros", x: -4010, y: 36, z: 26305, time: 1696965112503L, xRot: 7.571201324462891f, yRot: 114.29000854492188f } - "sptown": { dim: "wc:westeros", x: 7789, y: 39, z: 11402, time: 1696965112503L, xRot: 3.7811098098754883f, yRot: -180.1742401123047f } - } -} diff --git a/docs/favicon-16x16.png b/docs/favicon-16x16.png deleted file mode 100644 index 8b194e617a..0000000000 Binary files a/docs/favicon-16x16.png and /dev/null differ diff --git a/docs/favicon-32x32.png b/docs/favicon-32x32.png deleted file mode 100644 index 249737fe44..0000000000 Binary files a/docs/favicon-32x32.png and /dev/null differ diff --git a/docs/index.html b/docs/index.html deleted file mode 100644 index 41e41750b9..0000000000 --- a/docs/index.html +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - Swagger UI - - - - - - - -
- - - - - - diff --git a/docs/index.js b/docs/index.js deleted file mode 100644 index c229ec43e1..0000000000 --- a/docs/index.js +++ /dev/null @@ -1,17 +0,0 @@ -try { - module.exports.SwaggerUIBundle = require("./swagger-ui-bundle.js") - module.exports.SwaggerUIStandalonePreset = require("./swagger-ui-standalone-preset.js") -} catch(e) { - // swallow the error if there's a problem loading the assets. - // allows this module to support providing the assets for browserish contexts, - // without exploding in a Node context. - // - // see https://github.com/swagger-api/swagger-ui/issues/3291#issuecomment-311195388 - // for more information. -} - -// `absolutePath` and `getAbsoluteFSPath` are both here because at one point, -// we documented having one and actually implemented the other. -// They were both retained so we don't break anyone's code. -module.exports.absolutePath = require("./absolute-path.js") -module.exports.getAbsoluteFSPath = require("./absolute-path.js") diff --git a/docs/oauth2-redirect.html b/docs/oauth2-redirect.html deleted file mode 100644 index 5e6599a268..0000000000 --- a/docs/oauth2-redirect.html +++ /dev/null @@ -1,74 +0,0 @@ - - - - Swagger UI: OAuth2 Redirect - - - - - diff --git a/docs/specs/WesterosBlocks.yaml b/docs/specs/WesterosBlocks.yaml deleted file mode 100644 index f338ec7a83..0000000000 --- a/docs/specs/WesterosBlocks.yaml +++ /dev/null @@ -1,2324 +0,0 @@ -openapi: 3.0.1 -info: - title: WesterosBlocks.json data schema - version: '0.2.2' -servers: - - url: / -paths: {} -components: - schemas: - baseObject: - type: object - description: Base object for whole WesterosBlocks.json file - properties: - colorMaps: - type: array - description: |- - Array of color maps to inject as tintindex-usable - color tints for blocks outside of WesterosBlocks, - such as vanilla blocks. Injecting the color map - should be coordinated with a custom model to make - use of the textureindex. - items: - $ref: "#/components/schemas/ColorMap" - menuOverrides: - type: array - description: List of creative menu item overrides - items: - type: object - properties: - blockNames: - type: array - items: - type: string - description: List of "modid:blockname" values for block items to be moved or removed from creative item menu - creativeTab: - type: string - nullable: true - description: Which creative tab the block item should be placed in (or null to remove from all tabs) - enum: - - "buildingBlocks" - - "decorations" - - "redstone" - - "transportation" - - "misc" - - "food" - - "tools" - - "combat" - - "brewing" - - "materials" - - "WesterosBrick" - - "WesterosCobbleStone" - - "WesterosSandstone" - - "WesterosMarblePlaster" - - "WesterosTimberFrame" - - "WesterosRoofing" - - "WesterosWoodPlanks" - - "WesterosPanellingCarvings" - - "WesterosMetal" - - "WesterosWindowsGlass" - - "WesterosClothFibers" - - "WesterosFurniture" - - "WesterosLighting" - - "WesterosToolBlocks" - - "WesterosFoodBlocks" - - "WesterosDecor" - - "WesterosTerrainSets" - - "WesterosGrassDirt" - - "WesterosSandGravel" - - "WesterosLogs" - - "WesterosLeaves" - - "WesterosGrassesShrubs" - - "WesterosFlowers" - - "WesterosCropsHerbs" - - "WesterosWaterAir" - - "WesterosUtility" - - "WesterosSounds" - - "WesterosDoNotUse" - - blocks: - type: array - description: List of block definitions - items: - oneOf: - - $ref: "#/components/schemas/bed" - - $ref: "#/components/schemas/cake" - - $ref: "#/components/schemas/crop" - - $ref: "#/components/schemas/beacon" - - $ref: "#/components/schemas/cuboid" - - $ref: "#/components/schemas/cuboid-ne" - - $ref: "#/components/schemas/cuboid-nsew" - - $ref: "#/components/schemas/cuboid-nsewud" - - $ref: "#/components/schemas/cuboid-nsew-stack" - - $ref: "#/components/schemas/cuboid-16way" - - $ref: "#/components/schemas/door" - - $ref: "#/components/schemas/fence" - - $ref: "#/components/schemas/fencegate" - - $ref: "#/components/schemas/fire" - - $ref: "#/components/schemas/flowerpot" - - $ref: "#/components/schemas/furnace" - - $ref: "#/components/schemas/halfdoor" - - $ref: "#/components/schemas/ladder" - - $ref: "#/components/schemas/layer" - - $ref: "#/components/schemas/leaves" - - $ref: "#/components/schemas/log" - - $ref: "#/components/schemas/pane" - - $ref: "#/components/schemas/plant" - - $ref: "#/components/schemas/rail" - - $ref: "#/components/schemas/sand" - - $ref: "#/components/schemas/slab" - - $ref: "#/components/schemas/solid" - - $ref: "#/components/schemas/soulsand" - - $ref: "#/components/schemas/sound" - - $ref: "#/components/schemas/stair" - - $ref: "#/components/schemas/torch" - - $ref: "#/components/schemas/trapdoor" - - $ref: "#/components/schemas/vines" - - $ref: "#/components/schemas/wall" - - $ref: "#/components/schemas/web" - Block: - type: object - required: [ blockName, blockType, label, creativeTab, material ] - properties: - blockName: - type: string - description: |- - Name of block type - must be lower case string. Full name for - block will always be 'westerosblocks:' plus this name. - blockType: - type: string - description: Type of block being defined - hardness: - type: integer - description: Hardness or durability of the block - stepSound: - type: string - description: Sound to be used when block is walked on - default: "stone" - enum: - - "powder" - - "wood" - - "gravel" - - "grass" - - "stone" - - "metal" - - "glass" - - "cloth" - - "sand" - - "snow" - - "ladder" - - "anvil" - - "plant" - - "slime" - material: - type: string - description: Type of material for block - default: "stone" - enum: - - "air" - - "grass" - - "ground" - - "wood" - - "rock" - - "iron" - - "anvil" - - "water" - - "lava" - - "leaves" - - "plants" - - "vine" - - "sponge" - - "cloth" - - "fire" - - "sand" - - "glass" - - "tnt" - - "coral" - - "ice" - - "snow" - - "craftedSnow" - - "cactus" - - "clay" - - "portal" - - "cake" - - "web" - - "piston" - - "decoration" - - "stone" - resistance: - type: integer - description: Block explosion resistance - harvestLevel: - type: array - items: - type: object - description: Harvest level information - properties: - tool: - type: string - enum: - - "axe" - - "hoe" - - "pickaxe" - - "shovel" - level: - type: integer - minimum: 0 - maximum: 4 - description: |- - Tool level required for harvesting - creativeTab: - type: string - description: Which creative tab the block item should be placed in - enum: - - "buildingBlocks" - - "decorations" - - "redstone" - - "transportation" - - "misc" - - "food" - - "tools" - - "combat" - - "brewing" - - "materials" - - "WesterosBrick" - - "WesterosCobbleStone" - - "WesterosSandstone" - - "WesterosMarblePlaster" - - "WesterosTimberFrame" - - "WesterosRoofing" - - "WesterosWoodPlanks" - - "WesterosPanellingCarvings" - - "WesterosMetal" - - "WesterosWindowsGlass" - - "WesterosClothFibers" - - "WesterosFurniture" - - "WesterosLighting" - - "WesterosToolBlocks" - - "WesterosFoodBlocks" - - "WesterosDecor" - - "WesterosTerrainSets" - - "WesterosGrassDirt" - - "WesterosSandGravel" - - "WesterosLogs" - - "WesterosLeaves" - - "WesterosGrassesShrubs" - - "WesterosFlowers" - - "WesterosCropsHerbs" - - "WesterosWaterAir" - - "WesterosUtility" - - "WesterosSounds" - - "WesterosDoNotUse" - lightValue: - type: number - minimum: 0 - maximum: 1 - default: 0 - description: |- - Emitted light level of block- 0=none, 1=max (light level 16) - label: - type: string - description: Label for block - legacyBlockID: - type: string - description: |- - Legacy block-id:base-metadata value for the - block, from 1.12.2 version - alphaRender: - type: boolean - default: false - description: |- - If true, use alpha blending render (translucent) - nonOpaque: - type: boolean - default: false - description: |- - If true, block is not solid and opaque - discriminator: - propertyName: blockType - solid: - title: blockType='solid' - allOf: - - $ref: "#/components/schemas/Block" - - type: object - description: Block type for simple 'solid' blocks - properties: - textures: - type: array - items: - type: string - description: |- - List of textures paths, relative to - assets/westerosblocks/textures/blocks, unless - the module ID is included (e.g. minecraft:xxx or - westerosblocks:xxx), in which case the - value is relative to the assets//textures - path. - Index mapping for textures is: - - - 0: bottom texture - - 1: top texture - - 2: north texture - - 3: south texture - - 4: west texture - - 5: east texture - - If the list is shorter than 6, the - last texture is used for all indexes - beyond the length of the list. - randomTextures: - $ref: "#/components/schemas/RandomTextureSets" - overlayTextures: - type: array - items: - type: string - description: |- - If defined, adds an overlay layer over the - blocks. The indexes in the array correspond - to the same indexes for 'textures' - colorMult: - $ref: "#/components/schemas/colorMult" - collisionBoxes: - $ref: "#/components/schemas/CollisionBoxes" - supportBoxes: - $ref: "#/components/schemas/SupportBoxes" - rotateRandom: - type: boolean - description: |- - If true, causes block to have its model - randomly rotated with 4 different angles - around Y axis (0, 90, 180, 270 degrees) - sound: - title: blockType='sound' - allOf: - - $ref: "#/components/schemas/Block" - - type: object - description: Block type for simple 'sound' blocks - properties: - textures: - type: array - items: - type: string - description: |- - List of textures paths, relative to - assets/westerosblocks/textures/blocks, unless - the module ID is included (e.g. minecraft:xxx or - westerosblocks:xxx), in which case the - value is relative to the assets//textures - path. - Index mapping for textures is: - - - 0: bottom texture - - 1: top texture - - 2: north texture - - 3: south texture - - 4: west texture - - 5: east texture - - If the list is shorter than 6, the - last texture is used for all indexes - beyond the length of the list. - randomTextures: - $ref: "#/components/schemas/RandomTextureSets" - soundList: - type: array - items: - type: string - description: |- - List of sound sets available to be - chosen for the sound block. If only - one is provided, no settings are available, - while 2 or more sets can be toggled through - by 'using' the block. - Sounds sets are lists of files in - 'assets/westeroscraft/sounds' with the - name of the set (for one file) or - with the name followed by a 1-based index - (for multiple sounds). - type: - type: string - description: |- - Comma separated list of 'token:value" and - "token" fields. Defined tokens include: - - - "period": periodic time, in seconds, for - playing the sound. If zero, no automatic - repeating is done. - - "random-add": maximum number of seconds - to randomly add to each replay period. If - zero, repeated plays will be consistently - timed. - - "start-time": time of day (as 100 times - the 24-hour time) for earliest playing - of the sounds. If same as end-time, all - times are acceptable. - - "end-time": time of day (as 100 times - the 24-hour time) for the latest - playing of the sounds. - - rotateRandom: - type: boolean - description: |- - If true, causes block to have its model - randomly rotated with 4 different angles - around Y axis (0, 90, 180, 270 degrees) - - sand: - title: blockType='sand' - allOf: - - $ref: "#/components/schemas/Block" - - type: object - description: Block type for simple 'sand' blocks - properties: - textures: - type: array - items: - type: string - description: |- - List of textures paths, relative to - assets/westerosblocks/textures/blocks, unless - the module ID is included (e.g. minecraft:xxx or - westerosblocks:xxx), in which case the - value is relative to the assets//textures - path. - Index mapping for textures is: - - - 0: bottom texture - - 1: top texture - - 2: north texture - - 3: south texture - - 4: west texture - - 5: east texture - - If the list is shorter than 6, the - last texture is used for all indexes - beyond the length of the list. - randomTextures: - $ref: "#/components/schemas/RandomTextureSets" - colorMult: - $ref: "#/components/schemas/colorMult" - rotateRandom: - type: boolean - description: |- - If true, causes block to have its model - randomly rotated with 4 different angles - around Y axis (0, 90, 180, 270 degrees) - soulsand: - title: blockType='soulsand' - allOf: - - $ref: "#/components/schemas/Block" - - type: object - description: Block type for simple 'soulsand' blocks - properties: - textures: - type: array - items: - type: string - description: |- - List of textures paths, relative to - assets/westerosblocks/textures/blocks, unless - the module ID is included (e.g. minecraft:xxx or - westerosblocks:xxx), in which case the - value is relative to the assets//textures - path. - Index mapping for textures is: - - - 0: bottom texture - - 1: top texture - - 2: north texture - - 3: south texture - - 4: west texture - - 5: east texture - - If the list is shorter than 6, the - last texture is used for all indexes - beyond the length of the list. - randomTextures: - $ref: "#/components/schemas/RandomTextureSets" - colorMult: - $ref: "#/components/schemas/colorMult" - rotateRandom: - type: boolean - description: |- - If true, causes block to have its model - randomly rotated with 4 different angles - around Y axis (0, 90, 180, 270 degrees) - layer: - title: blockType='layer' - allOf: - - $ref: "#/components/schemas/Block" - - type: object - description: Block type for simple 'layer' blocks (8 layers, 1-8, same as snow layer vanilla block) - properties: - textures: - type: array - items: - type: string - description: |- - List of textures paths, relative to - assets/westerosblocks/textures/blocks, unless - the module ID is included (e.g. minecraft:xxx or - westerosblocks:xxx), in which case the - value is relative to the assets//textures - path. - Index mapping for textures is: - - - 0: bottom texture - - 1: top texture - - 2: north texture - - 3: south texture - - 4: west texture - - 5: east texture - - If the list is shorter than 6, the - last texture is used for all indexes - beyond the length of the list. - randomTextures: - $ref: "#/components/schemas/RandomTextureSets" - colorMult: - $ref: "#/components/schemas/colorMult" - ladder: - title: blockType='ladder' - allOf: - - $ref: "#/components/schemas/Block" - - type: object - description: Block type for simple 'ladder' blocks - properties: - textures: - type: array - items: - type: string - description: |- - List of textures paths, relative to - assets/westerosblocks/textures/blocks, unless - the module ID is included (e.g. minecraft:xxx or - westerosblocks:xxx), in which case the - value is relative to the assets//textures - path. - Index mapping for textures is: - - - 0: single texture - randomTextures: - $ref: "#/components/schemas/RandomTextureSets" - type: - type: string - description: |- - Comma separated list of 'token:value" and - "token" fields. Defined tokens include: - - - "no-climb": If value is defined and - "true", climbing is not allowed - - "allow-unsupported": If value is - defined and "true", block does not break - when unsupported. - fire: - title: blockType='fire' - allOf: - - $ref: "#/components/schemas/Block" - - type: object - description: Block type for simple 'fire' blocks - properties: - textures: - type: array - items: - type: string - description: |- - List of textures paths, relative to - assets/westerosblocks/textures/blocks, unless - the module ID is included (e.g. minecraft:xxx or - westerosblocks:xxx), in which case the - value is relative to the assets//textures - path. - Index mapping for textures is: - - - 0: fire texture 1 - - 1: fire texture 2 - - If the list is shorter than 2, the - last texture is used for all indexes - beyond the length of the list. - log: - title: blockType='log' - allOf: - - $ref: "#/components/schemas/Block" - - type: object - description: Block type for simple 'log' blocks - properties: - textures: - type: array - items: - type: string - description: |- - List of textures paths, relative to - assets/westerosblocks/textures/blocks, unless - the module ID is included (e.g. minecraft:xxx or - westerosblocks:xxx), in which case the - value is relative to the assets//textures - path. - Index mapping for textures is: - - - 0: bottom texture - - 1: top texture - - 2: north texture - - 3: south texture - - 4: west texture - - 5: east texture - - If the list is shorter than 5, the - last texture is used for all indexes - beyond the length of the list. - randomTextures: - $ref: "#/components/schemas/RandomTextureSets" - stair: - title: blockType='stair' - allOf: - - $ref: "#/components/schemas/Block" - - type: object - description: Block type for 'stair' blocks - required: [ modelBlockName ] - properties: - modelBlockName: - type: string - description: |- - Block name of the block used as template - for the stairs, both for textures - and for materials. - Textures for the block are drawn from - the bottom, top, and north side of the - source block. - If the model block support randomTextures, - they will be used for the stairs block, as well. - isCustomModel: - type: boolean - default: false - description: |- - If set to true, model is not generated, - and is instead expected to be found at - models/custom//.json. - type: - type: string - description: |- - Comma separated list of 'token:value" and - "token" fields. Defined tokens include: - - - "no-uvlock": If defined, uvlock is not set for rotated models - ambientOcclusion: - $ref: "#/components/schemas/ambientOcclusion" - colorMult: - $ref: "#/components/schemas/colorMult" - overlayTextures: - type: array - items: - type: string - description: |- - If defined, adds an overlay layer over the - blocks. The indexes in the array correspond - to the same indexes for 'textures' - slab: - title: blockType='slab' - allOf: - - $ref: "#/components/schemas/Block" - - type: object - description: Block type for 'slab' blocks - required: [ textures ] - properties: - textures: - type: array - items: - type: string - description: |- - List of textures paths, relative to - assets/westerosblocks/textures/blocks, unless - the module ID is included (e.g. minecraft:xxx or - westerosblocks:xxx), in which case the - value is relative to the assets//textures - path. - Index mapping for textures is: - - - 0: bottom texture - - 1: top texture - - 2: side texture - - If the list is shorter than 3, the - last texture is used for all indexes - beyond the length of the list. - randomTextures: - $ref: "#/components/schemas/RandomTextureSets" - overlayTextures: - type: array - items: - type: string - description: |- - If defined, adds an overlay layer over the - blocks. The indexes in the array correspond - to the same indexes for 'textures' - ambientOcclusion: - $ref: "#/components/schemas/ambientOcclusion" - colorMult: - $ref: "#/components/schemas/colorMult" - rail: - title: blockType='rail' - allOf: - - $ref: "#/components/schemas/Block" - - type: object - description: Block type for 'rail' blocks - required: [ textures ] - properties: - textures: - type: array - items: - type: string - description: |- - List of textures paths, relative to - assets/westerosblocks/textures/blocks, unless - the module ID is included (e.g. minecraft:xxx or - westerosblocks:xxx), in which case the - value is relative to the assets//textures - path. - Index mapping for textures is: - - - 0: straight track - - 1: curved track - - If the list is shorter than 2, the - last texture is used for all indexes - beyond the length of the list. - type: - type: string - description: |- - Comma separated list of 'token:value" and - "token" fields. Defined tokens include: - - - "allow-unsupported": If value is - defined, block does not break - when unsupported. - pane: - title: blockType='pane' - allOf: - - $ref: "#/components/schemas/Block" - - type: object - description: Block type for 'pane' blocks - required: [ textures ] - properties: - textures: - type: array - items: - type: string - description: |- - List of textures paths, relative to - assets/westerosblocks/textures/blocks, unless - the module ID is included (e.g. minecraft:xxx or - westerosblocks:xxx), in which case the - value is relative to the assets//textures - path. - Index mapping for textures is: - - - 0: pane texture - - 1: edge texture - - If the list is shorter than 2, the - last texture is used for all indexes - beyond the length of the list. - type: - type: string - description: |- - Comma separated list of 'token:value" and - "token" fields. Defined tokens include: - - - "legacy-model": If value is defined and - "true", use old model for panes - - "bars-model": If value is defined and - "true", use bars model (versus glass panes) - - bed: - title: blockType='bed' - allOf: - - $ref: "#/components/schemas/Block" - - type: object - description: Block type for 'bed' blocks - required: [ textures ] - properties: - textures: - type: array - items: - type: string - description: |- - List of textures paths, relative to - assets/westerosblocks/textures/blocks, unless - the module ID is included (e.g. minecraft:xxx or - westerosblocks:xxx), in which case the - value is relative to the assets//textures - path. - Index mapping for textures is: - - - 0: top of head of bed - - 1: top of foot of bed - - 2: side of head of bed - - 3: side of foot of bed - - 4: end of head of bed - - 5: end of foot of bed - - If the list is shorter than 6, the - last texture is used for all indexes - beyond the length of the list. - cake: - title: blockType='cake' - allOf: - - $ref: "#/components/schemas/Block" - - type: object - description: Block type for 'cake' blocks - required: [ textures ] - properties: - textures: - type: array - items: - type: string - description: |- - List of textures paths, relative to - assets/westerosblocks/textures/blocks, unless - the module ID is included (e.g. minecraft:xxx or - westerosblocks:xxx), in which case the - value is relative to the assets//textures - path. - Index mapping for textures is: - - - 0: bottom texture - - 1: top texture - - 2: side texture - - 3: inside of cake texture - - If the list is shorter than 4, the - last texture is used for all indexes - beyond the length of the list. - crop: - title: blockType='crop' - allOf: - - $ref: "#/components/schemas/Block" - - type: object - description: Block type for 'crop' blocks - required: [ textures ] - properties: - textures: - type: array - items: - type: string - description: |- - List of textures paths, relative to - assets/westerosblocks/textures/blocks, unless - the module ID is included (e.g. minecraft:xxx or - westerosblocks:xxx), in which case the - value is relative to the assets//textures - path. - Index mapping for textures is: - - - 0: single texture - randomTextures: - $ref: "#/components/schemas/RandomTextureSets" - colorMult: - $ref: "#/components/schemas/colorMult" - type: - type: string - description: |- - Comma separated list of 'token:value" and - "token" fields. Defined tokens include: - - - "toggleOnUse": If defined, and multi-state, - then each right click rotates state value - states: - type: array - description: |- - If defined, causes block to be a multi-state block, - with a 'state=' property to control which - state model is used. If defined, all corresponding - fields from the base object (e.g. textures, etc) - are ignored. - items: - type: object - properties: - stateID: - type: string - description: |- - State property value for this state. Must be unique - relative to the other states for the block. - textures: - type: array - items: - type: string - description: |- - List of textures paths, relative to - assets/westerosblocks/textures/blocks, unless - the module ID is included (e.g. minecraft:xxx or - westerosblocks:xxx), in which case the - value is relative to the assets//textures - path. - Index mapping for textures is based on values - used in the cuboids list (the sideTextures values). - - If an index beyond the length of the list is - referenced, the last element in the list is used. - randomTextures: - $ref: "#/components/schemas/RandomTextureSets" - colorMult: - $ref: "#/components/schemas/colorMult" - plant: - title: blockType='plant' - allOf: - - $ref: "#/components/schemas/Block" - - type: object - description: Block type for 'plant' blocks - required: [ textures ] - properties: - textures: - type: array - items: - type: string - description: |- - List of textures paths, relative to - assets/westerosblocks/textures/blocks, unless - the module ID is included (e.g. minecraft:xxx or - westerosblocks:xxx), in which case the - value is relative to the assets//textures - path. - Index mapping for textures is: - - - 0: single texture - randomTextures: - $ref: "#/components/schemas/RandomTextureSets" - rotateRandom: - type: boolean - description: |- - If true, causes block to have its model - randomly rotated with 4 different angles - around Y axis (0, 90, 180, 270 degrees) - colorMult: - $ref: "#/components/schemas/colorMult" - type: - type: string - description: |- - Comma separated list of 'token:value" and - "token" fields. Defined tokens include: - - - "toggleOnUse": If defined, and multi-state, - then each right click rotates state value - states: - type: array - description: |- - If defined, causes block to be a multi-state block, - with a 'state=' property to control which - state model is used. If defined, all corresponding - fields from the base object (e.g. textures, etc) - are ignored. - items: - type: object - properties: - stateID: - type: string - description: |- - State property value for this state. Must be unique - relative to the other states for the block. - textures: - type: array - items: - type: string - description: |- - List of textures paths, relative to - assets/westerosblocks/textures/blocks, unless - the module ID is included (e.g. minecraft:xxx or - westerosblocks:xxx), in which case the - value is relative to the assets//textures - path. - Index mapping for textures is based on values - used in the cuboids list (the sideTextures values). - - If an index beyond the length of the list is - referenced, the last element in the list is used. - randomTextures: - $ref: "#/components/schemas/RandomTextureSets" - colorMult: - $ref: "#/components/schemas/colorMult" - leaves: - title: blockType='leaves' - allOf: - - $ref: "#/components/schemas/Block" - - type: object - description: Block type for 'leaves' blocks - required: [ textures ] - properties: - textures: - type: array - items: - type: string - description: |- - List of textures paths, relative to - assets/westerosblocks/textures/blocks, unless - the module ID is included (e.g. minecraft:xxx or - westerosblocks:xxx), in which case the - value is relative to the assets//textures - path. - Index mapping for textures is: - - - 0: up/down - - 1: sides - - 2: better foliage branch texture (if better-foliage defined) - - 4: up/down overlay (if overlay defined) - - 5: sides overlay (if overlay defined) - - If the list is shorter than 6, the - last texture is used for all indexes - beyond the length of the list. - randomTextures: - $ref: "#/components/schemas/RandomTextureSets" - colorMult: - $ref: "#/components/schemas/colorMult" - rotateRandom: - type: boolean - description: |- - If true, causes block to have its model - randomly rotated with 4 different angles - around Y axis (0, 90, 180, 270 degrees) - type: - type: string - description: |- - Comma separated list of 'token:value" and - "token" fields. Defined tokens include: - - - "no-decay": If value is defined, - blocks never decay - - "better-foliage": If value is defined, - block models will have better foliage - style extensions - - "overlay": If value is defined, block - models will have a transparent overlay just - outside the normal leaf block layer. Typically used for leaves with fruit textures. - - web: - title: blockType='web' - allOf: - - $ref: "#/components/schemas/Block" - - type: object - description: Block type for 'web' blocks - required: [ textures ] - properties: - textures: - type: array - items: - type: string - description: |- - List of textures paths, relative to - assets/westerosblocks/textures/blocks, unless - the module ID is included (e.g. minecraft:xxx or - westerosblocks:xxx), in which case the - value is relative to the assets//textures - path. - Index mapping for textures is: - - - 0: single texture - randomTextures: - $ref: "#/components/schemas/RandomTextureSets" - rotateRandom: - type: boolean - description: |- - If true, causes block to have its model - randomly rotated with 4 different angles - around Y axis (0, 90, 180, 270 degrees) - colorMult: - $ref: "#/components/schemas/colorMult" - type: - type: string - description: |- - Comma separated list of 'token:value" and - "token" fields. Defined tokens include: - - - "no-in-web": If value is defined and - "true", web block does not slow movement - - "toggleOnUse": If defined, and multi-state, - then each right click rotates state value - states: - type: array - description: |- - If defined, causes block to be a multi-state block, - with a 'state=' property to control which - state model is used. If defined, all corresponding - fields from the base object (e.g. textures, etc) - are ignored. - items: - type: object - properties: - stateID: - type: string - description: |- - State property value for this state. Must be unique - relative to the other states for the block. - textures: - type: array - items: - type: string - description: |- - List of textures paths, relative to - assets/westerosblocks/textures/blocks, unless - the module ID is included (e.g. minecraft:xxx or - westerosblocks:xxx), in which case the - value is relative to the assets//textures - path. - Index mapping for textures is based on values - used in the cuboids list (the sideTextures values). - - If an index beyond the length of the list is - referenced, the last element in the list is used. - randomTextures: - $ref: "#/components/schemas/RandomTextureSets" - colorMult: - $ref: "#/components/schemas/colorMult" - flowerpot: - title: blockType='flowerpot' - allOf: - - $ref: "#/components/schemas/Block" - - type: object - description: Block type for 'flowerpot' blocks (both for new full pots and new empty ones) - required: [ textures ] - properties: - textures: - type: array - items: - type: string - description: |- - List of textures paths, relative to - assets/westerosblocks/textures/blocks, unless - the module ID is included (e.g. minecraft:xxx or - westerosblocks:xxx), in which case the - value is relative to the assets//textures - path. - Index mapping for textures is: - - - 0: dirt texture for flower pot - - 1: side texture for flower pot - - 2: plant texture for cross model in pot (normally texture of plant) - randomTextures: - $ref: "#/components/schemas/RandomTextureSets" - rotateRandom: - type: boolean - description: |- - If true, causes block to have its model - randomly rotated with 4 different angles - around Y axis (0, 90, 180, 270 degrees) - colorMult: - $ref: "#/components/schemas/colorMult" - type: - type: string - description: |- - Comma separated list of 'token:value" and - "token" fields. Defined tokens include: - - - "empty-pot": If value is defined, block is new empty pot - - "pot-id:": If value is defined, modID:blockID of empty flower pot (default is minecraft:flower_pot) - - "plant-id:": If value is defined, modID:blockID of plant placed in empty pot to make this full pot block - cuboid: - title: blockType='cuboid' - allOf: - - $ref: "#/components/schemas/Block" - - type: object - description: Block type for 'cuboid' blocks - required: [ textures ] - properties: - textures: - type: array - items: - type: string - description: |- - List of textures paths, relative to - assets/westerosblocks/textures/blocks, unless - the module ID is included (e.g. minecraft:xxx or - westerosblocks:xxx), in which case the - value is relative to the assets//textures - path. - Index mapping for textures is based on values - used in the cuboids list (the sideTextures values). - - If an index beyond the length of the list is - referenced, the last element in the list is used. - randomTextures: - $ref: "#/components/schemas/RandomTextureSets" - colorMult: - $ref: "#/components/schemas/colorMult" - cuboids: - $ref: "#/components/schemas/Cuboids" - isCustomModel: - type: boolean - default: false - description: |- - If set to true, model is not generated, - and is instead expected to be found at - models/custom//.json. - rotateRandom: - type: boolean - description: |- - If true, causes block to have its model - randomly rotated with 4 different angles - around Y axis (0, 90, 180, 270 degrees) - type: - type: string - description: |- - Comma separated list of 'token:value" and - "token" fields. Defined tokens include: - - - "toggleOnUse": If defined, and multi-state, - then each right click rotates state value - rotYOffset: - type: integer - enum: [ 0, 90, 180, 270 ] - description: |- - Optional offset to rotation of model around Y axis (applied to blockstate) - states: - type: array - description: |- - If defined, causes block to be a multi-state block, - with a 'state=' property to control which - state model is used. If defined, all corresponding - fields from the base object (e.g. cuboids, isCustom, etc) - are ignored. - items: - type: object - properties: - stateID: - type: string - description: |- - State property value for this state. Must be unique - relative to the other states for the block. - lightValue: - type: number - minimum: 0 - maximum: 1 - default: 0 - description: |- - Emitted light level of block- 0=none, 1=max (light level 16) - textures: - type: array - items: - type: string - description: |- - List of textures paths, relative to - assets/westerosblocks/textures/blocks, unless - the module ID is included (e.g. minecraft:xxx or - westerosblocks:xxx), in which case the - value is relative to the assets//textures - path. - Index mapping for textures is based on values - used in the cuboids list (the sideTextures values). - - If an index beyond the length of the list is - referenced, the last element in the list is used. - randomTextures: - $ref: "#/components/schemas/RandomTextureSets" - colorMult: - $ref: "#/components/schemas/colorMult" - cuboids: - $ref: "#/components/schemas/Cuboids" - isCustomModel: - type: boolean - default: false - description: |- - If set to true, model is not generated, - and is instead expected to be found at - models/custom//.json. - rotateRandom: - type: boolean - description: |- - If true, causes block to have its model - randomly rotated with 4 different angles - around Y axis (0, 90, 180, 270 degrees) - rotYOffset: - type: integer - enum: [ 0, 90, 180, 270 ] - description: |- - Optional offset to rotation of model around Y axis (applied to blockstate) - cuboid-ne: - title: blockType='cuboid-ne' - allOf: - - $ref: "#/components/schemas/Block" - - type: object - description: Block type for 'cuboid-ne' blocks - properties: - textures: - type: array - items: - type: string - description: |- - List of textures paths, relative to - assets/westerosblocks/textures/blocks, unless - the module ID is included (e.g. minecraft:xxx or - westerosblocks:xxx), in which case the - value is relative to the assets//textures - path. - Index mapping for textures is based on values - used in the cuboids list (the sideTextures values). - - If an index beyond the length of the list is - referenced, the last element in the list is used. - randomTextures: - $ref: "#/components/schemas/RandomTextureSets" - colorMult: - $ref: "#/components/schemas/colorMult" - cuboids: - $ref: "#/components/schemas/Cuboids" - isCustomModel: - type: boolean - default: false - description: |- - If set to true, model is not generated, - and is instead expected to be found at - models/custom//.json. - type: - type: string - description: |- - Comma separated list of 'token:value" and - "token" fields. Defined tokens include: - - - "toggleOnUse": If defined, and multi-state, - then each right click rotates state value - rotYOffset: - type: integer - enum: [ 0, 90, 180, 270 ] - description: |- - Optional offset to rotation of model around Y axis (applied to blockstate) - states: - type: array - description: |- - If defined, causes block to be a multi-state block, - with a 'state=' property to control which - state model is used. If defined, all corresponding - fields from the base object (e.g. cuboids, isCustom, etc) - are ignored. - items: - type: object - properties: - stateID: - type: string - description: |- - State property value for this state. Must be unique - relative to the other states for the block. - lightValue: - type: number - minimum: 0 - maximum: 1 - default: 0 - description: |- - Emitted light level of block- 0=none, 1=max (light level 16) - textures: - type: array - items: - type: string - description: |- - List of textures paths, relative to - assets/westerosblocks/textures/blocks, unless - the module ID is included (e.g. minecraft:xxx or - westerosblocks:xxx), in which case the - value is relative to the assets//textures - path. - Index mapping for textures is based on values - used in the cuboids list (the sideTextures values). - - If an index beyond the length of the list is - referenced, the last element in the list is used. - randomTextures: - $ref: "#/components/schemas/RandomTextureSets" - colorMult: - $ref: "#/components/schemas/colorMult" - cuboids: - $ref: "#/components/schemas/Cuboids" - isCustomModel: - type: boolean - default: false - description: |- - If set to true, model is not generated, - and is instead expected to be found at - models/custom//.json. - rotateRandom: - type: boolean - description: |- - If true, causes block to have its model - randomly rotated with 4 different angles - around Y axis (0, 90, 180, 270 degrees) - rotYOffset: - type: integer - enum: [ 0, 90, 180, 270 ] - description: |- - Optional offset to rotation of model around Y axis (applied to blockstate) - - cuboid-nsew: - title: blockType='cuboid-nsew' - allOf: - - $ref: "#/components/schemas/Block" - - type: object - description: Block type for 'cuboid-nsew' blocks - properties: - textures: - type: array - items: - type: string - description: |- - List of textures paths, relative to - assets/westerosblocks/textures/blocks, unless - the module ID is included (e.g. minecraft:xxx or - westerosblocks:xxx), in which case the - value is relative to the assets//textures - path. - Index mapping for textures is based on values - used in the cuboids list (the sideTextures values). - - If an index beyond the length of the list is - referenced, the last element in the list is used. - randomTextures: - $ref: "#/components/schemas/RandomTextureSets" - colorMult: - $ref: "#/components/schemas/colorMult" - cuboids: - $ref: "#/components/schemas/Cuboids" - isCustomModel: - type: boolean - default: false - description: |- - If set to true, model is not generated, - and is instead expected to be found at - models/custom//.json. - type: - type: string - description: |- - Comma separated list of 'token:value" and - "token" fields. Defined tokens include: - - - "toggleOnUse": If defined, and multi-state, - then each right click rotates state value - rotYOffset: - type: integer - enum: [ 0, 90, 180, 270 ] - description: |- - Optional offset to rotation of model around Y axis (applied to blockstate) - states: - type: array - description: |- - If defined, causes block to be a multi-state block, - with a 'state=' property to control which - state model is used. If defined, all corresponding - fields from the base object (e.g. cuboids, isCustom, etc) - are ignored. - items: - type: object - properties: - stateID: - type: string - description: |- - State property value for this state. Must be unique - relative to the other states for the block. - lightValue: - type: number - minimum: 0 - maximum: 1 - default: 0 - description: |- - Emitted light level of block- 0=none, 1=max (light level 16) - textures: - type: array - items: - type: string - description: |- - List of textures paths, relative to - assets/westerosblocks/textures/blocks, unless - the module ID is included (e.g. minecraft:xxx or - westerosblocks:xxx), in which case the - value is relative to the assets//textures - path. - Index mapping for textures is based on values - used in the cuboids list (the sideTextures values). - - If an index beyond the length of the list is - referenced, the last element in the list is used. - randomTextures: - $ref: "#/components/schemas/RandomTextureSets" - colorMult: - $ref: "#/components/schemas/colorMult" - cuboids: - $ref: "#/components/schemas/Cuboids" - isCustomModel: - type: boolean - default: false - description: |- - If set to true, model is not generated, - and is instead expected to be found at - models/custom//.json. - rotateRandom: - type: boolean - description: |- - If true, causes block to have its model - randomly rotated with 4 different angles - around Y axis (0, 90, 180, 270 degrees) - rotYOffset: - type: integer - enum: [ 0, 90, 180, 270 ] - description: |- - Optional offset to rotation of model around Y axis (applied to blockstate) - cuboid-16way: - title: blockType='cuboid-16way' - allOf: - - $ref: "#/components/schemas/Block" - - type: object - description: Block type for 'cuboid-16way' blocks - properties: - textures: - type: array - items: - type: string - description: |- - List of textures paths, relative to - assets/westerosblocks/textures/blocks, unless - the module ID is included (e.g. minecraft:xxx or - westerosblocks:xxx), in which case the - value is relative to the assets//textures - path. - Index mapping for textures is based on values - used in the cuboids list (the sideTextures values). - - If an index beyond the length of the list is - referenced, the last element in the list is used. - randomTextures: - $ref: "#/components/schemas/RandomTextureSets" - colorMult: - $ref: "#/components/schemas/colorMult" - cuboids: - $ref: "#/components/schemas/Cuboids" - isCustomModel: - type: boolean - default: false - description: |- - If set to true, model is not generated, - and is instead expected to be found at - models/custom//.json. - type: - type: string - description: |- - Comma separated list of 'token:value" and - "token" fields. Defined tokens include: - - - "toggleOnUse": If defined, and multi-state, - then each right click rotates state value - rotYOffset: - type: integer - enum: [ 0, 90, 180, 270 ] - description: |- - Optional offset to rotation of model around Y axis (applied to blockstate) - states: - type: array - description: |- - If defined, causes block to be a multi-state block, - with a 'state=' property to control which - state model is used. If defined, all corresponding - fields from the base object (e.g. cuboids, isCustom, etc) - are ignored. - items: - type: object - properties: - stateID: - type: string - description: |- - State property value for this state. Must be unique - relative to the other states for the block. - lightValue: - type: number - minimum: 0 - maximum: 1 - default: 0 - description: |- - Emitted light level of block- 0=none, 1=max (light level 16) - textures: - type: array - items: - type: string - description: |- - List of textures paths, relative to - assets/westerosblocks/textures/blocks, unless - the module ID is included (e.g. minecraft:xxx or - westerosblocks:xxx), in which case the - value is relative to the assets//textures - path. - Index mapping for textures is based on values - used in the cuboids list (the sideTextures values). - - If an index beyond the length of the list is - referenced, the last element in the list is used. - randomTextures: - $ref: "#/components/schemas/RandomTextureSets" - colorMult: - $ref: "#/components/schemas/colorMult" - cuboids: - $ref: "#/components/schemas/Cuboids" - isCustomModel: - type: boolean - default: false - description: |- - If set to true, model is not generated, - and is instead expected to be found at - models/custom//.json. - rotateRandom: - type: boolean - description: |- - If true, causes block to have its model - randomly rotated with 4 different angles - around Y axis (0, 90, 180, 270 degrees) - rotYOffset: - type: integer - enum: [ 0, 90, 180, 270 ] - description: |- - Optional offset to rotation of model around Y axis (applied to blockstate) - - cuboid-nsewud: - title: blockType='cuboid-nsewud' - allOf: - - $ref: "#/components/schemas/Block" - - type: object - description: Block type for 'cuboid-nsewud' blocks - properties: - textures: - type: array - items: - type: string - description: |- - List of textures paths, relative to - assets/westerosblocks/textures/blocks, unless - the module ID is included (e.g. minecraft:xxx or - westerosblocks:xxx), in which case the - value is relative to the assets//textures - path. - Index mapping for textures is based on values - used in the cuboids list (the sideTextures values). - - If an index beyond the length of the list is - referenced, the last element in the list is used. - randomTextures: - $ref: "#/components/schemas/RandomTextureSets" - colorMult: - $ref: "#/components/schemas/colorMult" - cuboids: - $ref: "#/components/schemas/Cuboids" - isCustomModel: - type: boolean - default: false - description: |- - If set to true, model is not generated, - and is instead expected to be found at - models/custom//.json. - type: - type: string - description: |- - Comma separated list of 'token:value" and - "token" fields. Defined tokens include: - - - "toggleOnUse": If defined, and multi-state, - then each right click rotates state value - rotYOffset: - type: integer - enum: [ 0, 90, 180, 270 ] - description: |- - Optional offset to rotation of model around Y axis (applied to blockstate) - states: - type: array - description: |- - If defined, causes block to be a multi-state block, - with a 'state=' property to control which - state model is used. If defined, all corresponding - fields from the base object (e.g. cuboids, isCustom, etc) - are ignored. - items: - type: object - properties: - stateID: - type: string - description: |- - State property value for this state. Must be unique - relative to the other states for the block. - lightValue: - type: number - minimum: 0 - maximum: 1 - default: 0 - description: |- - Emitted light level of block- 0=none, 1=max (light level 16) - textures: - type: array - items: - type: string - description: |- - List of textures paths, relative to - assets/westerosblocks/textures/blocks, unless - the module ID is included (e.g. minecraft:xxx or - westerosblocks:xxx), in which case the - value is relative to the assets//textures - path. - Index mapping for textures is based on values - used in the cuboids list (the sideTextures values). - - If an index beyond the length of the list is - referenced, the last element in the list is used. - randomTextures: - $ref: "#/components/schemas/RandomTextureSets" - colorMult: - $ref: "#/components/schemas/colorMult" - cuboids: - $ref: "#/components/schemas/Cuboids" - isCustomModel: - type: boolean - default: false - description: |- - If set to true, model is not generated, - and is instead expected to be found at - models/custom//.json. - rotateRandom: - type: boolean - description: |- - If true, causes block to have its model - randomly rotated with 4 different angles - around Y axis (0, 90, 180, 270 degrees) - rotYOffset: - type: integer - enum: [ 0, 90, 180, 270 ] - description: |- - Optional offset to rotation of model around Y axis (applied to blockstate) - - cuboid-nsew-stack: - title: blockType='cuboid-nsew-stack' - allOf: - - $ref: "#/components/schemas/Block" - - type: object - description: Block type for 'cuboid-nsew-stack' blocks - required: [ stack ] - properties: - stack: - type: array - minItems: 1 - maxItems: 2 - items: - type: object - description: |- - Model information for each part of - the stack - first is for the bottom, - second is for the top. - properties: - textures: - type: array - items: - type: string - description: |- - List of textures paths, relative to - assets/westerosblocks/textures/blocks, unless - the module ID is included (e.g. minecraft:xxx or - westerosblocks:xxx), in which case the - value is relative to the assets//textures - path. - Index mapping for textures is based on values - used in the cuboids list (the sideTextures values). - - If an index beyond the length of the list is - referenced, the last element in the list is used. - randomTextures: - $ref: "#/components/schemas/RandomTextureSets" - colorMult: - $ref: "#/components/schemas/colorMult" - cuboids: - $ref: "#/components/schemas/Cuboids" - rotYOffset: - type: integer - enum: [ 0, 90, 180, 270 ] - description: |- - Optional offset to rotation of model around Y axis (applied to blockstate) - type: - type: string - description: |- - Comma separated list of 'token:value" and - "token" fields. Defined tokens include: - - - "allowHalfBreak": If defined, breaking part of the block doesn't break other part. - - door: - title: blockType='door' - allOf: - - $ref: "#/components/schemas/Block" - - type: object - description: Block type for 'door' blocks - required: [ textures ] - properties: - textures: - type: array - items: - type: string - description: |- - List of textures paths, relative to - assets/westerosblocks/textures/blocks, unless - the module ID is included (e.g. minecraft:xxx or - westerosblocks:xxx), in which case the - value is relative to the assets//textures - path. - Index mapping for textures is: - - - 0: top texture - - 1: bottom texture - - If the list is shorter than 2, the - last texture is used for all indexes - beyond the length of the list. - type: - type: string - description: |- - Comma separated list of 'token:value" and - "token" fields. Defined tokens include: - - - "locked": If value is defined and - "true", door is locked (not opened by hand) - - "allowed_unsupported": If defined, door - doesn't break when unsupported - - halfdoor: - title: blockType='halfdoor' - allOf: - - $ref: "#/components/schemas/Block" - - type: object - description: Block type for 'halfdoor' blocks - required: [ textures ] - properties: - textures: - type: array - items: - type: string - description: |- - List of textures paths, relative to - assets/westerosblocks/textures/blocks, unless - the module ID is included (e.g. minecraft:xxx or - westerosblocks:xxx), in which case the - value is relative to the assets//textures - path. - Index mapping for textures is: - - - 0: single texture - type: - type: string - description: |- - Comma separated list of 'token:value" and - "token" fields. Defined tokens include: - - - "locked": If value is defined and - "true", door is locked (not opened by hand) - - trapdoor: - title: blockType='trapdoor' - allOf: - - $ref: "#/components/schemas/Block" - - type: object - description: Block type for 'trapdoor' blocks - required: [ textures ] - properties: - textures: - type: array - items: - type: string - description: |- - List of textures paths, relative to - assets/westerosblocks/textures/blocks, unless - the module ID is included (e.g. minecraft:xxx or - westerosblocks:xxx), in which case the - value is relative to the assets//textures - path. - Index mapping for textures is: - - - 0: all sides - type: - type: string - description: |- - Comma separated list of 'token:value" and - "token" fields. Defined tokens include: - - - "locked": If value is defined and - "true", door is locked (not opened by hand) - - furnace: - title: blockType='furnace' - allOf: - - $ref: "#/components/schemas/Block" - - type: object - description: Block type for 'furnace' blocks - required: [ textures ] - properties: - textures: - type: array - items: - type: string - description: |- - List of textures paths, relative to - assets/westerosblocks/textures/blocks, unless - the module ID is included (e.g. minecraft:xxx or - westerosblocks:xxx), in which case the - value is relative to the assets//textures - path. - Index mapping for textures is: - - - 0: bottom texture - - 1: top texture - - 2: non-front side texture - - 3: front on texture - - 4: front off texture - - If the list is shorter than 5, the - last texture is used for all indexes - beyond the length of the list. - isCustomModel: - type: boolean - default: false - description: |- - If set to true, model is not generated, - and is instead expected to be found at - models/custom//.json. - - torch: - title: blockType='torch' - allOf: - - $ref: "#/components/schemas/Block" - - type: object - description: Block type for 'torch' blocks - required: [ textures ] - properties: - textures: - type: array - items: - type: string - description: |- - List of textures paths, relative to - assets/westerosblocks/textures/blocks, unless - the module ID is included (e.g. minecraft:xxx or - westerosblocks:xxx), in which case the - value is relative to the assets//textures - path. - Index mapping for textures is: - - - 0: all sides - vines: - title: blockType='vines' - allOf: - - $ref: "#/components/schemas/Block" - - type: object - description: Block type for 'vines' blocks - required: [ textures ] - properties: - textures: - type: array - items: - type: string - description: |- - List of textures paths, relative to - assets/westerosblocks/textures/blocks, unless - the module ID is included (e.g. minecraft:xxx or - westerosblocks:xxx), in which case the - value is relative to the assets//textures - path. - Index mapping for textures is: - - - 0: side texture - - 1: top/bottom texture - type: - type: string - description: |- - Comma separated list of 'token:value" and - "token" fields. Defined tokens include: - - - "no-climb": If value is defined and - "true", climbing is not allowed - - "allow-unsupported": If value is - defined and "true", block does not break - when unsupported. - - "has-down": If value is defined and - "true", vines have bottom side also - - fence: - title: blockType='fence' - allOf: - - $ref: "#/components/schemas/Block" - - type: object - description: Block type for 'fence' blocks - required: [ textures ] - properties: - textures: - type: array - items: - type: string - description: |- - List of textures paths, relative to - assets/westerosblocks/textures/blocks, unless - the module ID is included (e.g. minecraft:xxx or - westerosblocks:xxx), in which case the - value is relative to the assets//textures - path. - Index mapping for textures is: - - - 0: bottom texture - - 1: top texture - - 2: side texture - - If the list is shorter than 3, the - last texture is used for all indexes - beyond the length of the list. - randomTextures: - $ref: "#/components/schemas/RandomTextureSets" - overlayTextures: - type: array - items: - type: string - description: |- - If defined, adds an overlay layer over the - blocks. The indexes in the array correspond - to the same indexes for 'textures' - fencegate: - title: blockType='fencegate' - allOf: - - $ref: "#/components/schemas/Block" - - type: object - description: Block type for 'fencegate' blocks - required: [ textures ] - properties: - textures: - type: array - items: - type: string - description: |- - List of textures paths, relative to - assets/westerosblocks/textures/blocks, unless - the module ID is included (e.g. minecraft:xxx or - westerosblocks:xxx), in which case the - value is relative to the assets//textures - path. - Index mapping for textures is: - - - 0: all sides texture - randomTextures: - $ref: "#/components/schemas/RandomTextureSets" - type: - type: string - description: |- - Comma separated list of 'token:value" and - "token" fields. Defined tokens include: - - - "locked": If value is defined and - "true", gate is locked (not opened by hand) - - wall: - title: blockType='wall' - allOf: - - $ref: "#/components/schemas/Block" - - type: object - description: Block type for 'wall' blocks - required: [ textures ] - properties: - textures: - type: array - items: - type: string - description: |- - List of textures paths, relative to - assets/westerosblocks/textures/blocks, unless - the module ID is included (e.g. minecraft:xxx or - westerosblocks:xxx), in which case the - value is relative to the assets//textures - path. - Index mapping for textures is: - - - 0: bottom texture - - 1: top texture - - 2: side texture - - If the list is shorter than 3, the - last texture is used for all indexes - beyond the length of the list. - randomTextures: - $ref: "#/components/schemas/RandomTextureSets" - overlayTextures: - type: array - items: - type: string - description: |- - If defined, adds an overlay layer over the - blocks. The indexes in the array correspond - to the same indexes for 'textures' - beacon: - title: blockType='beacon' - allOf: - - $ref: "#/components/schemas/Block" - - type: object - description: Block type for 'beacon' blocks - required: [ textures ] - properties: - textures: - type: array - items: - type: string - description: |- - List of textures paths, relative to - assets/westerosblocks/textures/blocks, unless - the module ID is included (e.g. minecraft:xxx or - westerosblocks:xxx), in which case the - value is relative to the assets//textures - path. - Index mapping for textures is: - - - 0: bottom texture of outside box - - 1: top texture of outside box - - 2: north texture of outside box - - 3: south texture of outside box - - 4: west texture of outside box - - 5: east texture of outside box - - 6: bottom texture of center box - - 7: top texture of center box - - 8: north texture of center box - - 9: south texture of center box - - 10: west texture of center box - - 11: east texture of center box - - 12: bottom texture of bottom box - - 13: top texture of bottom box - - 14: north texture of bottom box - - 15: south texture of bottom box - - 16: west texture of bottom box - - 17: east texture of bottom box - - If the list is shorter than 18, the - last texture is used for all indexes - beyond the length of the list. - colorMult: - $ref: "#/components/schemas/colorMult" - isCustomModel: - type: boolean - default: false - description: |- - If set to true, model is not generated, - and is instead expected to be found at - models/custom//.json. - colorMult: - type: string - description: |- - Color multiplier to be used for tinting the blocks. - Values include: - - - "#RRGGBB" - custom color, with given red/green/blue values - - "water" - tint using water tinting map - - "foliage" - tint using foliage (leaves) tinting map - - "grass" - tint using grass tinting map - - "pine" - tint using pine tinting map - - "birch" - tint using birch tinting map - - "basic" - tint using basic color multiplier - - "lily" - tint using lily tinting map - - Otherwise, value is assumed to be that of a colormap - file located at assets/westerosblocks/ - ambientOcclusion: - type: boolean - default: false - description: |- - Control whether block has ambient occlusion - RandomTextureSets: - type: array - description: |- - List of texture sets to be used for random models for block. When - defined, these are alternatives to the 'textures' field. - items: - type: object - properties: - textures: - type: array - items: - type: string - description: |- - List of textures paths, relative to - assets/westerosblocks/textures/blocks, unless - the module ID is included (e.g. minecraft:xxx or - westerosblocks:xxx), in which case the - value is relative to the assets//textures - path. The indexes for this list correspond to - those defined for the 'textures' field in the block. - weight: - type: integer - default: 1 - description: |- - If defined, provides the weight this texture set will - receive when being randomly selected from among the - other sets in the list (where the set will be selected - based on 'weight / sum(all weight across sets)'. - Cuboids: - type: array - description: List of cuboid components - items: - type: object - properties: - xMin: - type: number - description: Minimum X value - xMax: - type: number - description: Maximum X value - yMin: - type: number - description: Minimum Y value - yMax: - type: number - description: Maximum Y value - zMin: - type: number - description: Minimum Z value - zMax: - type: number - description: Maximum Z value - sideTextures: - type: array - items: - type: integer - default: 0 - description: |- - Index in textures array to be used for - given side. - Sides are for (for shape=box) - - 0: bottom texture - - 1: top texture - - 2: north texture - - 3: south texture - - 4: west texture - - 5: east texture - Sides are for (for shape=crossed) - - 0: single texture - sideRotations: - type: array - items: - type: integer - description: |- - Rotation, in degrees, for each of the - faces - shape: - type: string - enum: - - "box" - - "crossed" - noTint: - type: array - items: - type: boolean - default: false - description: |- - if true, cuboid will not set tintindex even if model is tinted (colorMult is defined). - Array must be same length as sideTextures, and corresponds to the same indexes - CollisionBoxes: - type: array - description: List of collision boxes - items: - type: object - properties: - xMin: - type: number - description: Minimum X value - xMax: - type: number - description: Maximum X value - yMin: - type: number - description: Minimum Y value - yMax: - type: number - description: Maximum Y value - zMin: - type: number - description: Minimum Z value - zMax: - type: number - description: Maximum Z value - SupportBoxes: - type: array - description: List of support boxes - items: - type: object - properties: - xMin: - type: number - description: Minimum X value - xMax: - type: number - description: Maximum X value - yMin: - type: number - description: Minimum Y value - yMax: - type: number - description: Maximum Y value - zMin: - type: number - description: Minimum Z value - zMax: - type: number - description: Maximum Z value - ConnectTo: - type: string - enum: [ material, block ] - default: block - description: |- - For built in CTM, this controls what quality is matched - on for determining if an adjacent block should be counted - as matching. Values include - - - block: (default) Match on the block name/type - - material: Match on the block material - ColorMap: - type: object - description: |- - Each record describes a specific color multiplier map - (whether constant or a file), and a list of block names - to associate with them. - properties: - blockNames: - type: array - items: - type: string - description: |- - List of namespaced block names (e.g. minecraft:clay) - to use the given color map - colorMult: - $ref: "#/components/schemas/colorMult" - - \ No newline at end of file diff --git a/docs/swagger-ui-bundle.js b/docs/swagger-ui-bundle.js deleted file mode 100644 index a2f842e5aa..0000000000 --- a/docs/swagger-ui-bundle.js +++ /dev/null @@ -1,3 +0,0 @@ -/*! For license information please see swagger-ui-bundle.js.LICENSE.txt */ -!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(function(){try{return require("esprima")}catch(e){}}()):"function"==typeof define&&define.amd?define(["esprima"],t):"object"==typeof exports?exports.SwaggerUIBundle=t(function(){try{return require("esprima")}catch(e){}}()):e.SwaggerUIBundle=t(e.esprima)}(this,(function(e){return function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}return n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="/dist",n(n.s=540)}([function(e,t,n){"use strict";e.exports=n(127)},function(e,t,n){e.exports=function(){"use strict";var e=Array.prototype.slice;function t(e,t){t&&(e.prototype=Object.create(t.prototype)),e.prototype.constructor=e}function n(e){return i(e)?e:$(e)}function r(e){return s(e)?e:K(e)}function o(e){return u(e)?e:Y(e)}function a(e){return i(e)&&!c(e)?e:G(e)}function i(e){return!(!e||!e[p])}function s(e){return!(!e||!e[f])}function u(e){return!(!e||!e[h])}function c(e){return s(e)||u(e)}function l(e){return!(!e||!e[d])}t(r,n),t(o,n),t(a,n),n.isIterable=i,n.isKeyed=s,n.isIndexed=u,n.isAssociative=c,n.isOrdered=l,n.Keyed=r,n.Indexed=o,n.Set=a;var p="@@__IMMUTABLE_ITERABLE__@@",f="@@__IMMUTABLE_KEYED__@@",h="@@__IMMUTABLE_INDEXED__@@",d="@@__IMMUTABLE_ORDERED__@@",v="delete",m=5,g=1<>>0;if(""+n!==t||4294967295===n)return NaN;t=n}return t<0?A(e)+t:t}function O(){return!0}function j(e,t,n){return(0===e||void 0!==n&&e<=-n)&&(void 0===t||void 0!==n&&t>=n)}function T(e,t){return N(e,t,0)}function I(e,t){return N(e,t,t)}function N(e,t,n){return void 0===e?n:e<0?Math.max(0,t+e):void 0===t?e:Math.min(t,e)}var M=0,P=1,R=2,D="function"==typeof Symbol&&Symbol.iterator,L="@@iterator",B=D||L;function F(e){this.next=e}function U(e,t,n,r){var o=0===e?t:1===e?n:[t,n];return r?r.value=o:r={value:o,done:!1},r}function q(){return{value:void 0,done:!0}}function z(e){return!!H(e)}function V(e){return e&&"function"==typeof e.next}function W(e){var t=H(e);return t&&t.call(e)}function H(e){var t=e&&(D&&e[D]||e[L]);if("function"==typeof t)return t}function J(e){return e&&"number"==typeof e.length}function $(e){return null==e?ie():i(e)?e.toSeq():ce(e)}function K(e){return null==e?ie().toKeyedSeq():i(e)?s(e)?e.toSeq():e.fromEntrySeq():se(e)}function Y(e){return null==e?ie():i(e)?s(e)?e.entrySeq():e.toIndexedSeq():ue(e)}function G(e){return(null==e?ie():i(e)?s(e)?e.entrySeq():e:ue(e)).toSetSeq()}F.prototype.toString=function(){return"[Iterator]"},F.KEYS=M,F.VALUES=P,F.ENTRIES=R,F.prototype.inspect=F.prototype.toSource=function(){return this.toString()},F.prototype[B]=function(){return this},t($,n),$.of=function(){return $(arguments)},$.prototype.toSeq=function(){return this},$.prototype.toString=function(){return this.__toString("Seq {","}")},$.prototype.cacheResult=function(){return!this._cache&&this.__iterateUncached&&(this._cache=this.entrySeq().toArray(),this.size=this._cache.length),this},$.prototype.__iterate=function(e,t){return pe(this,e,t,!0)},$.prototype.__iterator=function(e,t){return fe(this,e,t,!0)},t(K,$),K.prototype.toKeyedSeq=function(){return this},t(Y,$),Y.of=function(){return Y(arguments)},Y.prototype.toIndexedSeq=function(){return this},Y.prototype.toString=function(){return this.__toString("Seq [","]")},Y.prototype.__iterate=function(e,t){return pe(this,e,t,!1)},Y.prototype.__iterator=function(e,t){return fe(this,e,t,!1)},t(G,$),G.of=function(){return G(arguments)},G.prototype.toSetSeq=function(){return this},$.isSeq=ae,$.Keyed=K,$.Set=G,$.Indexed=Y;var Z,X,Q,ee="@@__IMMUTABLE_SEQ__@@";function te(e){this._array=e,this.size=e.length}function ne(e){var t=Object.keys(e);this._object=e,this._keys=t,this.size=t.length}function re(e){this._iterable=e,this.size=e.length||e.size}function oe(e){this._iterator=e,this._iteratorCache=[]}function ae(e){return!(!e||!e[ee])}function ie(){return Z||(Z=new te([]))}function se(e){var t=Array.isArray(e)?new te(e).fromEntrySeq():V(e)?new oe(e).fromEntrySeq():z(e)?new re(e).fromEntrySeq():"object"==typeof e?new ne(e):void 0;if(!t)throw new TypeError("Expected Array or iterable object of [k, v] entries, or keyed object: "+e);return t}function ue(e){var t=le(e);if(!t)throw new TypeError("Expected Array or iterable object of values: "+e);return t}function ce(e){var t=le(e)||"object"==typeof e&&new ne(e);if(!t)throw new TypeError("Expected Array or iterable object of values, or keyed object: "+e);return t}function le(e){return J(e)?new te(e):V(e)?new oe(e):z(e)?new re(e):void 0}function pe(e,t,n,r){var o=e._cache;if(o){for(var a=o.length-1,i=0;i<=a;i++){var s=o[n?a-i:i];if(!1===t(s[1],r?s[0]:i,e))return i+1}return i}return e.__iterateUncached(t,n)}function fe(e,t,n,r){var o=e._cache;if(o){var a=o.length-1,i=0;return new F((function(){var e=o[n?a-i:i];return i++>a?q():U(t,r?e[0]:i-1,e[1])}))}return e.__iteratorUncached(t,n)}function he(e,t){return t?de(t,e,"",{"":e}):ve(e)}function de(e,t,n,r){return Array.isArray(t)?e.call(r,n,Y(t).map((function(n,r){return de(e,n,r,t)}))):me(t)?e.call(r,n,K(t).map((function(n,r){return de(e,n,r,t)}))):t}function ve(e){return Array.isArray(e)?Y(e).map(ve).toList():me(e)?K(e).map(ve).toMap():e}function me(e){return e&&(e.constructor===Object||void 0===e.constructor)}function ge(e,t){if(e===t||e!=e&&t!=t)return!0;if(!e||!t)return!1;if("function"==typeof e.valueOf&&"function"==typeof t.valueOf){if((e=e.valueOf())===(t=t.valueOf())||e!=e&&t!=t)return!0;if(!e||!t)return!1}return!("function"!=typeof e.equals||"function"!=typeof t.equals||!e.equals(t))}function ye(e,t){if(e===t)return!0;if(!i(t)||void 0!==e.size&&void 0!==t.size&&e.size!==t.size||void 0!==e.__hash&&void 0!==t.__hash&&e.__hash!==t.__hash||s(e)!==s(t)||u(e)!==u(t)||l(e)!==l(t))return!1;if(0===e.size&&0===t.size)return!0;var n=!c(e);if(l(e)){var r=e.entries();return t.every((function(e,t){var o=r.next().value;return o&&ge(o[1],e)&&(n||ge(o[0],t))}))&&r.next().done}var o=!1;if(void 0===e.size)if(void 0===t.size)"function"==typeof e.cacheResult&&e.cacheResult();else{o=!0;var a=e;e=t,t=a}var p=!0,f=t.__iterate((function(t,r){if(n?!e.has(t):o?!ge(t,e.get(r,b)):!ge(e.get(r,b),t))return p=!1,!1}));return p&&e.size===f}function be(e,t){if(!(this instanceof be))return new be(e,t);if(this._value=e,this.size=void 0===t?1/0:Math.max(0,t),0===this.size){if(X)return X;X=this}}function _e(e,t){if(!e)throw new Error(t)}function we(e,t,n){if(!(this instanceof we))return new we(e,t,n);if(_e(0!==n,"Cannot step a Range by 0"),e=e||0,void 0===t&&(t=1/0),n=void 0===n?1:Math.abs(n),tr?q():U(e,o,n[t?r-o++:o++])}))},t(ne,K),ne.prototype.get=function(e,t){return void 0===t||this.has(e)?this._object[e]:t},ne.prototype.has=function(e){return this._object.hasOwnProperty(e)},ne.prototype.__iterate=function(e,t){for(var n=this._object,r=this._keys,o=r.length-1,a=0;a<=o;a++){var i=r[t?o-a:a];if(!1===e(n[i],i,this))return a+1}return a},ne.prototype.__iterator=function(e,t){var n=this._object,r=this._keys,o=r.length-1,a=0;return new F((function(){var i=r[t?o-a:a];return a++>o?q():U(e,i,n[i])}))},ne.prototype[d]=!0,t(re,Y),re.prototype.__iterateUncached=function(e,t){if(t)return this.cacheResult().__iterate(e,t);var n=W(this._iterable),r=0;if(V(n))for(var o;!(o=n.next()).done&&!1!==e(o.value,r++,this););return r},re.prototype.__iteratorUncached=function(e,t){if(t)return this.cacheResult().__iterator(e,t);var n=W(this._iterable);if(!V(n))return new F(q);var r=0;return new F((function(){var t=n.next();return t.done?t:U(e,r++,t.value)}))},t(oe,Y),oe.prototype.__iterateUncached=function(e,t){if(t)return this.cacheResult().__iterate(e,t);for(var n,r=this._iterator,o=this._iteratorCache,a=0;a=r.length){var t=n.next();if(t.done)return t;r[o]=t.value}return U(e,o,r[o++])}))},t(be,Y),be.prototype.toString=function(){return 0===this.size?"Repeat []":"Repeat [ "+this._value+" "+this.size+" times ]"},be.prototype.get=function(e,t){return this.has(e)?this._value:t},be.prototype.includes=function(e){return ge(this._value,e)},be.prototype.slice=function(e,t){var n=this.size;return j(e,t,n)?this:new be(this._value,I(t,n)-T(e,n))},be.prototype.reverse=function(){return this},be.prototype.indexOf=function(e){return ge(this._value,e)?0:-1},be.prototype.lastIndexOf=function(e){return ge(this._value,e)?this.size:-1},be.prototype.__iterate=function(e,t){for(var n=0;n=0&&t=0&&nn?q():U(e,a++,i)}))},we.prototype.equals=function(e){return e instanceof we?this._start===e._start&&this._end===e._end&&this._step===e._step:ye(this,e)},t(xe,n),t(Ee,xe),t(Ce,xe),t(Se,xe),xe.Keyed=Ee,xe.Indexed=Ce,xe.Set=Se;var Ae="function"==typeof Math.imul&&-2===Math.imul(4294967295,2)?Math.imul:function(e,t){var n=65535&(e|=0),r=65535&(t|=0);return n*r+((e>>>16)*r+n*(t>>>16)<<16>>>0)|0};function ke(e){return e>>>1&1073741824|3221225471&e}function Oe(e){if(!1===e||null==e)return 0;if("function"==typeof e.valueOf&&(!1===(e=e.valueOf())||null==e))return 0;if(!0===e)return 1;var t=typeof e;if("number"===t){if(e!=e||e===1/0)return 0;var n=0|e;for(n!==e&&(n^=4294967295*e);e>4294967295;)n^=e/=4294967295;return ke(n)}if("string"===t)return e.length>Fe?je(e):Te(e);if("function"==typeof e.hashCode)return e.hashCode();if("object"===t)return Ie(e);if("function"==typeof e.toString)return Te(e.toString());throw new Error("Value type "+t+" cannot be hashed.")}function je(e){var t=ze[e];return void 0===t&&(t=Te(e),qe===Ue&&(qe=0,ze={}),qe++,ze[e]=t),t}function Te(e){for(var t=0,n=0;n0)switch(e.nodeType){case 1:return e.uniqueID;case 9:return e.documentElement&&e.documentElement.uniqueID}}var Re,De="function"==typeof WeakMap;De&&(Re=new WeakMap);var Le=0,Be="__immutablehash__";"function"==typeof Symbol&&(Be=Symbol(Be));var Fe=16,Ue=255,qe=0,ze={};function Ve(e){_e(e!==1/0,"Cannot perform this action with an infinite size.")}function We(e){return null==e?ot():He(e)&&!l(e)?e:ot().withMutations((function(t){var n=r(e);Ve(n.size),n.forEach((function(e,n){return t.set(n,e)}))}))}function He(e){return!(!e||!e[$e])}t(We,Ee),We.of=function(){var t=e.call(arguments,0);return ot().withMutations((function(e){for(var n=0;n=t.length)throw new Error("Missing value for key: "+t[n]);e.set(t[n],t[n+1])}}))},We.prototype.toString=function(){return this.__toString("Map {","}")},We.prototype.get=function(e,t){return this._root?this._root.get(0,void 0,e,t):t},We.prototype.set=function(e,t){return at(this,e,t)},We.prototype.setIn=function(e,t){return this.updateIn(e,b,(function(){return t}))},We.prototype.remove=function(e){return at(this,e,b)},We.prototype.deleteIn=function(e){return this.updateIn(e,(function(){return b}))},We.prototype.update=function(e,t,n){return 1===arguments.length?e(this):this.updateIn([e],t,n)},We.prototype.updateIn=function(e,t,n){n||(n=t,t=void 0);var r=mt(this,xn(e),t,n);return r===b?void 0:r},We.prototype.clear=function(){return 0===this.size?this:this.__ownerID?(this.size=0,this._root=null,this.__hash=void 0,this.__altered=!0,this):ot()},We.prototype.merge=function(){return ft(this,void 0,arguments)},We.prototype.mergeWith=function(t){return ft(this,t,e.call(arguments,1))},We.prototype.mergeIn=function(t){var n=e.call(arguments,1);return this.updateIn(t,ot(),(function(e){return"function"==typeof e.merge?e.merge.apply(e,n):n[n.length-1]}))},We.prototype.mergeDeep=function(){return ft(this,ht,arguments)},We.prototype.mergeDeepWith=function(t){var n=e.call(arguments,1);return ft(this,dt(t),n)},We.prototype.mergeDeepIn=function(t){var n=e.call(arguments,1);return this.updateIn(t,ot(),(function(e){return"function"==typeof e.mergeDeep?e.mergeDeep.apply(e,n):n[n.length-1]}))},We.prototype.sort=function(e){return zt(pn(this,e))},We.prototype.sortBy=function(e,t){return zt(pn(this,t,e))},We.prototype.withMutations=function(e){var t=this.asMutable();return e(t),t.wasAltered()?t.__ensureOwner(this.__ownerID):this},We.prototype.asMutable=function(){return this.__ownerID?this:this.__ensureOwner(new C)},We.prototype.asImmutable=function(){return this.__ensureOwner()},We.prototype.wasAltered=function(){return this.__altered},We.prototype.__iterator=function(e,t){return new et(this,e,t)},We.prototype.__iterate=function(e,t){var n=this,r=0;return this._root&&this._root.iterate((function(t){return r++,e(t[1],t[0],n)}),t),r},We.prototype.__ensureOwner=function(e){return e===this.__ownerID?this:e?rt(this.size,this._root,e,this.__hash):(this.__ownerID=e,this.__altered=!1,this)},We.isMap=He;var Je,$e="@@__IMMUTABLE_MAP__@@",Ke=We.prototype;function Ye(e,t){this.ownerID=e,this.entries=t}function Ge(e,t,n){this.ownerID=e,this.bitmap=t,this.nodes=n}function Ze(e,t,n){this.ownerID=e,this.count=t,this.nodes=n}function Xe(e,t,n){this.ownerID=e,this.keyHash=t,this.entries=n}function Qe(e,t,n){this.ownerID=e,this.keyHash=t,this.entry=n}function et(e,t,n){this._type=t,this._reverse=n,this._stack=e._root&&nt(e._root)}function tt(e,t){return U(e,t[0],t[1])}function nt(e,t){return{node:e,index:0,__prev:t}}function rt(e,t,n,r){var o=Object.create(Ke);return o.size=e,o._root=t,o.__ownerID=n,o.__hash=r,o.__altered=!1,o}function ot(){return Je||(Je=rt(0))}function at(e,t,n){var r,o;if(e._root){var a=x(_),i=x(w);if(r=it(e._root,e.__ownerID,0,void 0,t,n,a,i),!i.value)return e;o=e.size+(a.value?n===b?-1:1:0)}else{if(n===b)return e;o=1,r=new Ye(e.__ownerID,[[t,n]])}return e.__ownerID?(e.size=o,e._root=r,e.__hash=void 0,e.__altered=!0,e):r?rt(o,r):ot()}function it(e,t,n,r,o,a,i,s){return e?e.update(t,n,r,o,a,i,s):a===b?e:(E(s),E(i),new Qe(t,r,[o,a]))}function st(e){return e.constructor===Qe||e.constructor===Xe}function ut(e,t,n,r,o){if(e.keyHash===r)return new Xe(t,r,[e.entry,o]);var a,i=(0===n?e.keyHash:e.keyHash>>>n)&y,s=(0===n?r:r>>>n)&y;return new Ge(t,1<>>=1)i[s]=1&n?t[a++]:void 0;return i[r]=o,new Ze(e,a+1,i)}function ft(e,t,n){for(var o=[],a=0;a>1&1431655765))+(e>>2&858993459))+(e>>4)&252645135,e+=e>>8,127&(e+=e>>16)}function yt(e,t,n,r){var o=r?e:S(e);return o[t]=n,o}function bt(e,t,n,r){var o=e.length+1;if(r&&t+1===o)return e[t]=n,e;for(var a=new Array(o),i=0,s=0;s=wt)return ct(e,u,r,o);var f=e&&e===this.ownerID,h=f?u:S(u);return p?s?c===l-1?h.pop():h[c]=h.pop():h[c]=[r,o]:h.push([r,o]),f?(this.entries=h,this):new Ye(e,h)}},Ge.prototype.get=function(e,t,n,r){void 0===t&&(t=Oe(n));var o=1<<((0===e?t:t>>>e)&y),a=this.bitmap;return 0==(a&o)?r:this.nodes[gt(a&o-1)].get(e+m,t,n,r)},Ge.prototype.update=function(e,t,n,r,o,a,i){void 0===n&&(n=Oe(r));var s=(0===t?n:n>>>t)&y,u=1<=xt)return pt(e,f,c,s,d);if(l&&!d&&2===f.length&&st(f[1^p]))return f[1^p];if(l&&d&&1===f.length&&st(d))return d;var v=e&&e===this.ownerID,g=l?d?c:c^u:c|u,_=l?d?yt(f,p,d,v):_t(f,p,v):bt(f,p,d,v);return v?(this.bitmap=g,this.nodes=_,this):new Ge(e,g,_)},Ze.prototype.get=function(e,t,n,r){void 0===t&&(t=Oe(n));var o=(0===e?t:t>>>e)&y,a=this.nodes[o];return a?a.get(e+m,t,n,r):r},Ze.prototype.update=function(e,t,n,r,o,a,i){void 0===n&&(n=Oe(r));var s=(0===t?n:n>>>t)&y,u=o===b,c=this.nodes,l=c[s];if(u&&!l)return this;var p=it(l,e,t+m,n,r,o,a,i);if(p===l)return this;var f=this.count;if(l){if(!p&&--f0&&r=0&&e>>t&y;if(r>=this.array.length)return new Ot([],e);var o,a=0===r;if(t>0){var i=this.array[r];if((o=i&&i.removeBefore(e,t-m,n))===i&&a)return this}if(a&&!o)return this;var s=Lt(this,e);if(!a)for(var u=0;u>>t&y;if(o>=this.array.length)return this;if(t>0){var a=this.array[o];if((r=a&&a.removeAfter(e,t-m,n))===a&&o===this.array.length-1)return this}var i=Lt(this,e);return i.array.splice(o+1),r&&(i.array[o]=r),i};var jt,Tt,It={};function Nt(e,t){var n=e._origin,r=e._capacity,o=qt(r),a=e._tail;return i(e._root,e._level,0);function i(e,t,n){return 0===t?s(e,n):u(e,t,n)}function s(e,i){var s=i===o?a&&a.array:e&&e.array,u=i>n?0:n-i,c=r-i;return c>g&&(c=g),function(){if(u===c)return It;var e=t?--c:u++;return s&&s[e]}}function u(e,o,a){var s,u=e&&e.array,c=a>n?0:n-a>>o,l=1+(r-a>>o);return l>g&&(l=g),function(){for(;;){if(s){var e=s();if(e!==It)return e;s=null}if(c===l)return It;var n=t?--l:c++;s=i(u&&u[n],o-m,a+(n<=e.size||t<0)return e.withMutations((function(e){t<0?Ft(e,t).set(0,n):Ft(e,0,t+1).set(t,n)}));t+=e._origin;var r=e._tail,o=e._root,a=x(w);return t>=qt(e._capacity)?r=Dt(r,e.__ownerID,0,t,n,a):o=Dt(o,e.__ownerID,e._level,t,n,a),a.value?e.__ownerID?(e._root=o,e._tail=r,e.__hash=void 0,e.__altered=!0,e):Mt(e._origin,e._capacity,e._level,o,r):e}function Dt(e,t,n,r,o,a){var i,s=r>>>n&y,u=e&&s0){var c=e&&e.array[s],l=Dt(c,t,n-m,r,o,a);return l===c?e:((i=Lt(e,t)).array[s]=l,i)}return u&&e.array[s]===o?e:(E(a),i=Lt(e,t),void 0===o&&s===i.array.length-1?i.array.pop():i.array[s]=o,i)}function Lt(e,t){return t&&e&&t===e.ownerID?e:new Ot(e?e.array.slice():[],t)}function Bt(e,t){if(t>=qt(e._capacity))return e._tail;if(t<1<0;)n=n.array[t>>>r&y],r-=m;return n}}function Ft(e,t,n){void 0!==t&&(t|=0),void 0!==n&&(n|=0);var r=e.__ownerID||new C,o=e._origin,a=e._capacity,i=o+t,s=void 0===n?a:n<0?a+n:o+n;if(i===o&&s===a)return e;if(i>=s)return e.clear();for(var u=e._level,c=e._root,l=0;i+l<0;)c=new Ot(c&&c.array.length?[void 0,c]:[],r),l+=1<<(u+=m);l&&(i+=l,o+=l,s+=l,a+=l);for(var p=qt(a),f=qt(s);f>=1<p?new Ot([],r):h;if(h&&f>p&&im;g-=m){var b=p>>>g&y;v=v.array[b]=Lt(v.array[b],r)}v.array[p>>>m&y]=h}if(s=f)i-=f,s-=f,u=m,c=null,d=d&&d.removeBefore(r,0,i);else if(i>o||f>>u&y;if(_!==f>>>u&y)break;_&&(l+=(1<o&&(c=c.removeBefore(r,u,i-l)),c&&fa&&(a=c.size),i(u)||(c=c.map((function(e){return he(e)}))),r.push(c)}return a>e.size&&(e=e.setSize(a)),vt(e,t,r)}function qt(e){return e>>m<=g&&i.size>=2*a.size?(r=(o=i.filter((function(e,t){return void 0!==e&&s!==t}))).toKeyedSeq().map((function(e){return e[0]})).flip().toMap(),e.__ownerID&&(r.__ownerID=o.__ownerID=e.__ownerID)):(r=a.remove(t),o=s===i.size-1?i.pop():i.set(s,void 0))}else if(u){if(n===i.get(s)[1])return e;r=a,o=i.set(s,[t,n])}else r=a.set(t,i.size),o=i.set(i.size,[t,n]);return e.__ownerID?(e.size=r.size,e._map=r,e._list=o,e.__hash=void 0,e):Wt(r,o)}function $t(e,t){this._iter=e,this._useKeys=t,this.size=e.size}function Kt(e){this._iter=e,this.size=e.size}function Yt(e){this._iter=e,this.size=e.size}function Gt(e){this._iter=e,this.size=e.size}function Zt(e){var t=bn(e);return t._iter=e,t.size=e.size,t.flip=function(){return e},t.reverse=function(){var t=e.reverse.apply(this);return t.flip=function(){return e.reverse()},t},t.has=function(t){return e.includes(t)},t.includes=function(t){return e.has(t)},t.cacheResult=_n,t.__iterateUncached=function(t,n){var r=this;return e.__iterate((function(e,n){return!1!==t(n,e,r)}),n)},t.__iteratorUncached=function(t,n){if(t===R){var r=e.__iterator(t,n);return new F((function(){var e=r.next();if(!e.done){var t=e.value[0];e.value[0]=e.value[1],e.value[1]=t}return e}))}return e.__iterator(t===P?M:P,n)},t}function Xt(e,t,n){var r=bn(e);return r.size=e.size,r.has=function(t){return e.has(t)},r.get=function(r,o){var a=e.get(r,b);return a===b?o:t.call(n,a,r,e)},r.__iterateUncached=function(r,o){var a=this;return e.__iterate((function(e,o,i){return!1!==r(t.call(n,e,o,i),o,a)}),o)},r.__iteratorUncached=function(r,o){var a=e.__iterator(R,o);return new F((function(){var o=a.next();if(o.done)return o;var i=o.value,s=i[0];return U(r,s,t.call(n,i[1],s,e),o)}))},r}function Qt(e,t){var n=bn(e);return n._iter=e,n.size=e.size,n.reverse=function(){return e},e.flip&&(n.flip=function(){var t=Zt(e);return t.reverse=function(){return e.flip()},t}),n.get=function(n,r){return e.get(t?n:-1-n,r)},n.has=function(n){return e.has(t?n:-1-n)},n.includes=function(t){return e.includes(t)},n.cacheResult=_n,n.__iterate=function(t,n){var r=this;return e.__iterate((function(e,n){return t(e,n,r)}),!n)},n.__iterator=function(t,n){return e.__iterator(t,!n)},n}function en(e,t,n,r){var o=bn(e);return r&&(o.has=function(r){var o=e.get(r,b);return o!==b&&!!t.call(n,o,r,e)},o.get=function(r,o){var a=e.get(r,b);return a!==b&&t.call(n,a,r,e)?a:o}),o.__iterateUncached=function(o,a){var i=this,s=0;return e.__iterate((function(e,a,u){if(t.call(n,e,a,u))return s++,o(e,r?a:s-1,i)}),a),s},o.__iteratorUncached=function(o,a){var i=e.__iterator(R,a),s=0;return new F((function(){for(;;){var a=i.next();if(a.done)return a;var u=a.value,c=u[0],l=u[1];if(t.call(n,l,c,e))return U(o,r?c:s++,l,a)}}))},o}function tn(e,t,n){var r=We().asMutable();return e.__iterate((function(o,a){r.update(t.call(n,o,a,e),0,(function(e){return e+1}))})),r.asImmutable()}function nn(e,t,n){var r=s(e),o=(l(e)?zt():We()).asMutable();e.__iterate((function(a,i){o.update(t.call(n,a,i,e),(function(e){return(e=e||[]).push(r?[i,a]:a),e}))}));var a=yn(e);return o.map((function(t){return vn(e,a(t))}))}function rn(e,t,n,r){var o=e.size;if(void 0!==t&&(t|=0),void 0!==n&&(n===1/0?n=o:n|=0),j(t,n,o))return e;var a=T(t,o),i=I(n,o);if(a!=a||i!=i)return rn(e.toSeq().cacheResult(),t,n,r);var s,u=i-a;u==u&&(s=u<0?0:u);var c=bn(e);return c.size=0===s?s:e.size&&s||void 0,!r&&ae(e)&&s>=0&&(c.get=function(t,n){return(t=k(this,t))>=0&&ts)return q();var e=o.next();return r||t===P?e:U(t,u-1,t===M?void 0:e.value[1],e)}))},c}function on(e,t,n){var r=bn(e);return r.__iterateUncached=function(r,o){var a=this;if(o)return this.cacheResult().__iterate(r,o);var i=0;return e.__iterate((function(e,o,s){return t.call(n,e,o,s)&&++i&&r(e,o,a)})),i},r.__iteratorUncached=function(r,o){var a=this;if(o)return this.cacheResult().__iterator(r,o);var i=e.__iterator(R,o),s=!0;return new F((function(){if(!s)return q();var e=i.next();if(e.done)return e;var o=e.value,u=o[0],c=o[1];return t.call(n,c,u,a)?r===R?e:U(r,u,c,e):(s=!1,q())}))},r}function an(e,t,n,r){var o=bn(e);return o.__iterateUncached=function(o,a){var i=this;if(a)return this.cacheResult().__iterate(o,a);var s=!0,u=0;return e.__iterate((function(e,a,c){if(!s||!(s=t.call(n,e,a,c)))return u++,o(e,r?a:u-1,i)})),u},o.__iteratorUncached=function(o,a){var i=this;if(a)return this.cacheResult().__iterator(o,a);var s=e.__iterator(R,a),u=!0,c=0;return new F((function(){var e,a,l;do{if((e=s.next()).done)return r||o===P?e:U(o,c++,o===M?void 0:e.value[1],e);var p=e.value;a=p[0],l=p[1],u&&(u=t.call(n,l,a,i))}while(u);return o===R?e:U(o,a,l,e)}))},o}function sn(e,t){var n=s(e),o=[e].concat(t).map((function(e){return i(e)?n&&(e=r(e)):e=n?se(e):ue(Array.isArray(e)?e:[e]),e})).filter((function(e){return 0!==e.size}));if(0===o.length)return e;if(1===o.length){var a=o[0];if(a===e||n&&s(a)||u(e)&&u(a))return a}var c=new te(o);return n?c=c.toKeyedSeq():u(e)||(c=c.toSetSeq()),(c=c.flatten(!0)).size=o.reduce((function(e,t){if(void 0!==e){var n=t.size;if(void 0!==n)return e+n}}),0),c}function un(e,t,n){var r=bn(e);return r.__iterateUncached=function(r,o){var a=0,s=!1;function u(e,c){var l=this;e.__iterate((function(e,o){return(!t||c0}function dn(e,t,r){var o=bn(e);return o.size=new te(r).map((function(e){return e.size})).min(),o.__iterate=function(e,t){for(var n,r=this.__iterator(P,t),o=0;!(n=r.next()).done&&!1!==e(n.value,o++,this););return o},o.__iteratorUncached=function(e,o){var a=r.map((function(e){return e=n(e),W(o?e.reverse():e)})),i=0,s=!1;return new F((function(){var n;return s||(n=a.map((function(e){return e.next()})),s=n.some((function(e){return e.done}))),s?q():U(e,i++,t.apply(null,n.map((function(e){return e.value}))))}))},o}function vn(e,t){return ae(e)?t:e.constructor(t)}function mn(e){if(e!==Object(e))throw new TypeError("Expected [K, V] tuple: "+e)}function gn(e){return Ve(e.size),A(e)}function yn(e){return s(e)?r:u(e)?o:a}function bn(e){return Object.create((s(e)?K:u(e)?Y:G).prototype)}function _n(){return this._iter.cacheResult?(this._iter.cacheResult(),this.size=this._iter.size,this):$.prototype.cacheResult.call(this)}function wn(e,t){return e>t?1:e=0;n--)t={value:arguments[n],next:t};return this.__ownerID?(this.size=e,this._head=t,this.__hash=void 0,this.__altered=!0,this):Kn(e,t)},Vn.prototype.pushAll=function(e){if(0===(e=o(e)).size)return this;Ve(e.size);var t=this.size,n=this._head;return e.reverse().forEach((function(e){t++,n={value:e,next:n}})),this.__ownerID?(this.size=t,this._head=n,this.__hash=void 0,this.__altered=!0,this):Kn(t,n)},Vn.prototype.pop=function(){return this.slice(1)},Vn.prototype.unshift=function(){return this.push.apply(this,arguments)},Vn.prototype.unshiftAll=function(e){return this.pushAll(e)},Vn.prototype.shift=function(){return this.pop.apply(this,arguments)},Vn.prototype.clear=function(){return 0===this.size?this:this.__ownerID?(this.size=0,this._head=void 0,this.__hash=void 0,this.__altered=!0,this):Yn()},Vn.prototype.slice=function(e,t){if(j(e,t,this.size))return this;var n=T(e,this.size);if(I(t,this.size)!==this.size)return Ce.prototype.slice.call(this,e,t);for(var r=this.size-n,o=this._head;n--;)o=o.next;return this.__ownerID?(this.size=r,this._head=o,this.__hash=void 0,this.__altered=!0,this):Kn(r,o)},Vn.prototype.__ensureOwner=function(e){return e===this.__ownerID?this:e?Kn(this.size,this._head,e,this.__hash):(this.__ownerID=e,this.__altered=!1,this)},Vn.prototype.__iterate=function(e,t){if(t)return this.reverse().__iterate(e);for(var n=0,r=this._head;r&&!1!==e(r.value,n++,this);)r=r.next;return n},Vn.prototype.__iterator=function(e,t){if(t)return this.reverse().__iterator(e);var n=0,r=this._head;return new F((function(){if(r){var t=r.value;return r=r.next,U(e,n++,t)}return q()}))},Vn.isStack=Wn;var Hn,Jn="@@__IMMUTABLE_STACK__@@",$n=Vn.prototype;function Kn(e,t,n,r){var o=Object.create($n);return o.size=e,o._head=t,o.__ownerID=n,o.__hash=r,o.__altered=!1,o}function Yn(){return Hn||(Hn=Kn(0))}function Gn(e,t){var n=function(n){e.prototype[n]=t[n]};return Object.keys(t).forEach(n),Object.getOwnPropertySymbols&&Object.getOwnPropertySymbols(t).forEach(n),e}$n[Jn]=!0,$n.withMutations=Ke.withMutations,$n.asMutable=Ke.asMutable,$n.asImmutable=Ke.asImmutable,$n.wasAltered=Ke.wasAltered,n.Iterator=F,Gn(n,{toArray:function(){Ve(this.size);var e=new Array(this.size||0);return this.valueSeq().__iterate((function(t,n){e[n]=t})),e},toIndexedSeq:function(){return new Kt(this)},toJS:function(){return this.toSeq().map((function(e){return e&&"function"==typeof e.toJS?e.toJS():e})).__toJS()},toJSON:function(){return this.toSeq().map((function(e){return e&&"function"==typeof e.toJSON?e.toJSON():e})).__toJS()},toKeyedSeq:function(){return new $t(this,!0)},toMap:function(){return We(this.toKeyedSeq())},toObject:function(){Ve(this.size);var e={};return this.__iterate((function(t,n){e[n]=t})),e},toOrderedMap:function(){return zt(this.toKeyedSeq())},toOrderedSet:function(){return Ln(s(this)?this.valueSeq():this)},toSet:function(){return jn(s(this)?this.valueSeq():this)},toSetSeq:function(){return new Yt(this)},toSeq:function(){return u(this)?this.toIndexedSeq():s(this)?this.toKeyedSeq():this.toSetSeq()},toStack:function(){return Vn(s(this)?this.valueSeq():this)},toList:function(){return Ct(s(this)?this.valueSeq():this)},toString:function(){return"[Iterable]"},__toString:function(e,t){return 0===this.size?e+t:e+" "+this.toSeq().map(this.__toStringMapper).join(", ")+" "+t},concat:function(){return vn(this,sn(this,e.call(arguments,0)))},includes:function(e){return this.some((function(t){return ge(t,e)}))},entries:function(){return this.__iterator(R)},every:function(e,t){Ve(this.size);var n=!0;return this.__iterate((function(r,o,a){if(!e.call(t,r,o,a))return n=!1,!1})),n},filter:function(e,t){return vn(this,en(this,e,t,!0))},find:function(e,t,n){var r=this.findEntry(e,t);return r?r[1]:n},forEach:function(e,t){return Ve(this.size),this.__iterate(t?e.bind(t):e)},join:function(e){Ve(this.size),e=void 0!==e?""+e:",";var t="",n=!0;return this.__iterate((function(r){n?n=!1:t+=e,t+=null!=r?r.toString():""})),t},keys:function(){return this.__iterator(M)},map:function(e,t){return vn(this,Xt(this,e,t))},reduce:function(e,t,n){var r,o;return Ve(this.size),arguments.length<2?o=!0:r=t,this.__iterate((function(t,a,i){o?(o=!1,r=t):r=e.call(n,r,t,a,i)})),r},reduceRight:function(e,t,n){var r=this.toKeyedSeq().reverse();return r.reduce.apply(r,arguments)},reverse:function(){return vn(this,Qt(this,!0))},slice:function(e,t){return vn(this,rn(this,e,t,!0))},some:function(e,t){return!this.every(tr(e),t)},sort:function(e){return vn(this,pn(this,e))},values:function(){return this.__iterator(P)},butLast:function(){return this.slice(0,-1)},isEmpty:function(){return void 0!==this.size?0===this.size:!this.some((function(){return!0}))},count:function(e,t){return A(e?this.toSeq().filter(e,t):this)},countBy:function(e,t){return tn(this,e,t)},equals:function(e){return ye(this,e)},entrySeq:function(){var e=this;if(e._cache)return new te(e._cache);var t=e.toSeq().map(er).toIndexedSeq();return t.fromEntrySeq=function(){return e.toSeq()},t},filterNot:function(e,t){return this.filter(tr(e),t)},findEntry:function(e,t,n){var r=n;return this.__iterate((function(n,o,a){if(e.call(t,n,o,a))return r=[o,n],!1})),r},findKey:function(e,t){var n=this.findEntry(e,t);return n&&n[0]},findLast:function(e,t,n){return this.toKeyedSeq().reverse().find(e,t,n)},findLastEntry:function(e,t,n){return this.toKeyedSeq().reverse().findEntry(e,t,n)},findLastKey:function(e,t){return this.toKeyedSeq().reverse().findKey(e,t)},first:function(){return this.find(O)},flatMap:function(e,t){return vn(this,cn(this,e,t))},flatten:function(e){return vn(this,un(this,e,!0))},fromEntrySeq:function(){return new Gt(this)},get:function(e,t){return this.find((function(t,n){return ge(n,e)}),void 0,t)},getIn:function(e,t){for(var n,r=this,o=xn(e);!(n=o.next()).done;){var a=n.value;if((r=r&&r.get?r.get(a,b):b)===b)return t}return r},groupBy:function(e,t){return nn(this,e,t)},has:function(e){return this.get(e,b)!==b},hasIn:function(e){return this.getIn(e,b)!==b},isSubset:function(e){return e="function"==typeof e.includes?e:n(e),this.every((function(t){return e.includes(t)}))},isSuperset:function(e){return(e="function"==typeof e.isSubset?e:n(e)).isSubset(this)},keyOf:function(e){return this.findKey((function(t){return ge(t,e)}))},keySeq:function(){return this.toSeq().map(Qn).toIndexedSeq()},last:function(){return this.toSeq().reverse().first()},lastKeyOf:function(e){return this.toKeyedSeq().reverse().keyOf(e)},max:function(e){return fn(this,e)},maxBy:function(e,t){return fn(this,t,e)},min:function(e){return fn(this,e?nr(e):ar)},minBy:function(e,t){return fn(this,t?nr(t):ar,e)},rest:function(){return this.slice(1)},skip:function(e){return this.slice(Math.max(0,e))},skipLast:function(e){return vn(this,this.toSeq().reverse().skip(e).reverse())},skipWhile:function(e,t){return vn(this,an(this,e,t,!0))},skipUntil:function(e,t){return this.skipWhile(tr(e),t)},sortBy:function(e,t){return vn(this,pn(this,t,e))},take:function(e){return this.slice(0,Math.max(0,e))},takeLast:function(e){return vn(this,this.toSeq().reverse().take(e).reverse())},takeWhile:function(e,t){return vn(this,on(this,e,t))},takeUntil:function(e,t){return this.takeWhile(tr(e),t)},valueSeq:function(){return this.toIndexedSeq()},hashCode:function(){return this.__hash||(this.__hash=ir(this))}});var Zn=n.prototype;Zn[p]=!0,Zn[B]=Zn.values,Zn.__toJS=Zn.toArray,Zn.__toStringMapper=rr,Zn.inspect=Zn.toSource=function(){return this.toString()},Zn.chain=Zn.flatMap,Zn.contains=Zn.includes,Gn(r,{flip:function(){return vn(this,Zt(this))},mapEntries:function(e,t){var n=this,r=0;return vn(this,this.toSeq().map((function(o,a){return e.call(t,[a,o],r++,n)})).fromEntrySeq())},mapKeys:function(e,t){var n=this;return vn(this,this.toSeq().flip().map((function(r,o){return e.call(t,r,o,n)})).flip())}});var Xn=r.prototype;function Qn(e,t){return t}function er(e,t){return[t,e]}function tr(e){return function(){return!e.apply(this,arguments)}}function nr(e){return function(){return-e.apply(this,arguments)}}function rr(e){return"string"==typeof e?JSON.stringify(e):String(e)}function or(){return S(arguments)}function ar(e,t){return et?-1:0}function ir(e){if(e.size===1/0)return 0;var t=l(e),n=s(e),r=t?1:0;return sr(e.__iterate(n?t?function(e,t){r=31*r+ur(Oe(e),Oe(t))|0}:function(e,t){r=r+ur(Oe(e),Oe(t))|0}:t?function(e){r=31*r+Oe(e)|0}:function(e){r=r+Oe(e)|0}),r)}function sr(e,t){return t=Ae(t,3432918353),t=Ae(t<<15|t>>>-15,461845907),t=Ae(t<<13|t>>>-13,5),t=Ae((t=(t+3864292196|0)^e)^t>>>16,2246822507),t=ke((t=Ae(t^t>>>13,3266489909))^t>>>16)}function ur(e,t){return e^t+2654435769+(e<<6)+(e>>2)|0}return Xn[f]=!0,Xn[B]=Zn.entries,Xn.__toJS=Zn.toObject,Xn.__toStringMapper=function(e,t){return JSON.stringify(t)+": "+rr(e)},Gn(o,{toKeyedSeq:function(){return new $t(this,!1)},filter:function(e,t){return vn(this,en(this,e,t,!1))},findIndex:function(e,t){var n=this.findEntry(e,t);return n?n[0]:-1},indexOf:function(e){var t=this.keyOf(e);return void 0===t?-1:t},lastIndexOf:function(e){var t=this.lastKeyOf(e);return void 0===t?-1:t},reverse:function(){return vn(this,Qt(this,!1))},slice:function(e,t){return vn(this,rn(this,e,t,!1))},splice:function(e,t){var n=arguments.length;if(t=Math.max(0|t,0),0===n||2===n&&!t)return this;e=T(e,e<0?this.count():this.size);var r=this.slice(0,e);return vn(this,1===n?r:r.concat(S(arguments,2),this.slice(e+t)))},findLastIndex:function(e,t){var n=this.findLastEntry(e,t);return n?n[0]:-1},first:function(){return this.get(0)},flatten:function(e){return vn(this,un(this,e,!1))},get:function(e,t){return(e=k(this,e))<0||this.size===1/0||void 0!==this.size&&e>this.size?t:this.find((function(t,n){return n===e}),void 0,t)},has:function(e){return(e=k(this,e))>=0&&(void 0!==this.size?this.size===1/0||e1)try{return decodeURIComponent(t[1])}catch(e){console.error(e)}return null}function Te(e){return t=e.replace(/\.[^./]*$/,""),$()(H()(t));var t}var Ie=function(e,t){if(e>t)return"Value must be less than ".concat(t)},Ne=function(e,t){if(et)return T()(n="Value must be no longer than ".concat(t," character")).call(n,1!==t?"s":"")},qe=function(e,t){var n;if(e.length2&&void 0!==arguments[2]?arguments[2]:{},r=n.isOAS3,o=void 0!==r&&r,a=n.bypassRequiredCheck,i=void 0!==a&&a,s=[],u=e.get("required"),c=Object(ue.a)(e,{isOAS3:o}),l=c.schema,p=c.parameterContentMediaType;if(!l)return s;var f=l.get("required"),h=l.get("maximum"),d=l.get("minimum"),v=l.get("type"),g=l.get("format"),y=l.get("maxLength"),b=l.get("minLength"),_=l.get("pattern");if(v&&(u||f||t)){var w="string"===v&&t,x="array"===v&&B()(t)&&t.length,E="array"===v&&z.a.List.isList(t)&&t.count(),C="array"===v&&"string"==typeof t&&t,S="file"===v&&t instanceof ae.a.File,A="boolean"===v&&(t||!1===t),k="number"===v&&(t||0===t),j="integer"===v&&(t||0===t),T="object"===v&&"object"===U()(t)&&null!==t,I="object"===v&&"string"==typeof t&&t,N=[w,x,E,C,S,A,k,j,T,I],M=m()(N).call(N,(function(e){return!!e}));if((u||f)&&!M&&!i)return s.push("Required field is not provided"),s;if("object"===v&&"string"==typeof t&&(null===p||"application/json"===p))try{JSON.parse(t)}catch(e){return s.push("Parameter string value must be valid JSON"),s}if(_){var P=ze(t,_);P&&s.push(P)}if(y||0===y){var R=Ue(t,y);R&&s.push(R)}if(b){var D=qe(t,b);D&&s.push(D)}if(h||0===h){var L=Ie(t,h);L&&s.push(L)}if(d||0===d){var F=Ne(t,d);F&&s.push(F)}if("string"===v){var q;if(!(q="date-time"===g?Be(t):"uuid"===g?Fe(t):Le(t)))return s;s.push(q)}else if("boolean"===v){var V=De(t);if(!V)return s;s.push(V)}else if("number"===v){var W=Me(t);if(!W)return s;s.push(W)}else if("integer"===v){var H=Pe(t);if(!H)return s;s.push(H)}else if("array"===v){var J;if(!E||!t.count())return s;J=l.getIn(["items","type"]),O()(t).call(t,(function(e,t){var n;"number"===J?n=Me(e):"integer"===J?n=Pe(e):"string"===J&&(n=Le(e)),n&&s.push({index:t,error:n})}))}else if("file"===v){var $=Re(t);if(!$)return s;s.push($)}}return s},We=function(e,t){if(!e.xml||!e.xml.name){if(e.xml=e.xml||{},!e.$$ref)return e.type||e.items||e.properties||e.additionalProperties?'\n\x3c!-- XML example cannot be generated; root element name is undefined --\x3e':null;var n=e.$$ref.match(/\S*\/(\S+)$/);e.xml.name=n[1]}return Object(oe.memoizedCreateXMLExample)(e,t)},He=[{when:/json/,shouldStringifyTypes:["string"]}],Je=["object"],$e=function(e,t,n){var r=Object(oe.memoizedSampleFromSchema)(e,t),o=U()(r),a=x()(He).call(He,(function(e,t){var r;return t.when.test(n)?T()(r=[]).call(r,d()(e),d()(t.shouldStringifyTypes)):e}),Je);return Q()(a,(function(e){return e===o}))?f()(r,null,2):r},Ke=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"",n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return/xml/.test(t)?We(e,n):$e(e,n,t)},Ye=function(){var e={},t=ae.a.location.search;if(!t)return{};if(""!=t){var n=t.substr(1).split("&");for(var r in n)n.hasOwnProperty(r)&&(r=n[r].split("="),e[decodeURIComponent(r[0])]=r[1]&&decodeURIComponent(r[1])||"")}return e},Ge=function(t){return(t instanceof e?t:e.from(t.toString(),"utf-8")).toString("base64")},Ze={operationsSorter:{alpha:function(e,t){return e.get("path").localeCompare(t.get("path"))},method:function(e,t){return e.get("method").localeCompare(t.get("method"))}},tagsSorter:{alpha:function(e,t){return e.localeCompare(t)}}},Xe=function(e){var t=[];for(var n in e){var r=e[n];void 0!==r&&""!==r&&t.push([n,"=",encodeURIComponent(r).replace(/%20/g,"+")].join(""))}return t.join("&")},Qe=function(e,t,n){return!!Z()(n,(function(n){return te()(e[n],t[n])}))};function et(e){return"string"!=typeof e||""===e?"":Object(V.sanitizeUrl)(e)}function tt(e){return!(!e||l()(e).call(e,"localhost")>=0||l()(e).call(e,"127.0.0.1")>=0||"none"===e)}function nt(e){if(!z.a.OrderedMap.isOrderedMap(e))return null;if(!e.size)return null;var t=u()(e).call(e,(function(e,t){return i()(t).call(t,"2")&&C()(e.get("content")||{}).length>0})),n=e.get("default")||z.a.OrderedMap(),r=(n.get("content")||z.a.OrderedMap()).keySeq().toJS().length?n:null;return t||r}var rt=function(e){return"string"==typeof e||e instanceof String?o()(e).call(e).replace(/\s/g,"%20"):""},ot=function(e){return se()(rt(e).replace(/%20/g,"_"))},at=function(e){return A()(e).call(e,(function(e,t){return/^x-/.test(t)}))},it=function(e){return A()(e).call(e,(function(e,t){return/^pattern|maxLength|minLength|maximum|minimum/.test(t)}))};function st(e,t){var n,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:function(){return!0};if("object"!==U()(e)||B()(e)||null===e||!t)return e;var o=_()({},e);return O()(n=C()(o)).call(n,(function(e){e===t&&r(o[e],e)?delete o[e]:o[e]=st(o[e],t,r)})),o}function ut(e){if("string"==typeof e)return e;if(e&&e.toJS&&(e=e.toJS()),"object"===U()(e)&&null!==e)try{return f()(e,null,2)}catch(t){return String(e)}return null==e?"":e.toString()}function ct(e){return"number"==typeof e?e.toString():e}function lt(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=t.returnAll,r=void 0!==n&&n,o=t.allowHashes,a=void 0===o||o;if(!z.a.Map.isMap(e))throw new Error("paramToIdentifier: received a non-Im.Map parameter as input");var i,s,u,c=e.get("name"),l=e.get("in"),p=[];e&&e.hashCode&&l&&c&&a&&p.push(T()(i=T()(s="".concat(l,".")).call(s,c,".hash-")).call(i,e.hashCode()));l&&c&&p.push(T()(u="".concat(l,".")).call(u,c));return p.push(c),r?p:p[0]||""}function pt(e,t){var n,r=lt(e,{returnAll:!0});return A()(n=D()(r).call(r,(function(e){return t[e]}))).call(n,(function(e){return void 0!==e}))[0]}function ft(){return dt(le()(32).toString("base64"))}function ht(e){return dt(fe()("sha256").update(e).digest("base64"))}function dt(e){return e.replace(/\+/g,"-").replace(/\//g,"_").replace(/=/g,"")}var vt=function(e){return!e||!(!de(e)||!e.isEmpty())}}).call(this,n(77).Buffer)},function(e,t,n){e.exports=n(584)},function(e,t,n){var r=n(240);function o(e,t){for(var n=0;n1?t-1:0),r=1;r1&&void 0!==arguments[1]?arguments[1]:r,n=null,a=null;return function(){return o(t,n,arguments)||(a=e.apply(null,arguments)),n=arguments,a}}))},function(e,t,n){var r=n(546),o=n(178);function a(t){return e.exports=a="function"==typeof o&&"symbol"==typeof r?function(e){return typeof e}:function(e){return e&&"function"==typeof o&&e.constructor===o&&e!==o.prototype?"symbol":typeof e},a(t)}e.exports=a},function(e,t,n){e.exports=n(600)},function(e,t,n){e.exports=n(588)},function(e,t,n){e.exports=n(597)},function(e,t,n){"use strict";var r=n(41),o=n(105).f,a=n(354),i=n(34),s=n(108),u=n(70),c=n(52),l=function(e){var t=function(t,n,r){if(this instanceof e){switch(arguments.length){case 0:return new e;case 1:return new e(t);case 2:return new e(t,n)}return new e(t,n,r)}return e.apply(this,arguments)};return t.prototype=e.prototype,t};e.exports=function(e,t){var n,p,f,h,d,v,m,g,y=e.target,b=e.global,_=e.stat,w=e.proto,x=b?r:_?r[y]:(r[y]||{}).prototype,E=b?i:i[y]||(i[y]={}),C=E.prototype;for(f in t)n=!a(b?f:y+(_?".":"#")+f,e.forced)&&x&&c(x,f),d=E[f],n&&(v=e.noTargetGet?(g=o(x,f))&&g.value:x[f]),h=n&&v?v:t[f],n&&typeof d==typeof h||(m=e.bind&&n?s(h,r):e.wrap&&n?l(h):w&&"function"==typeof h?s(Function.call,h):h,(e.sham||h&&h.sham||d&&d.sham)&&u(m,"sham",!0),E[f]=m,w&&(c(i,p=y+"Prototype")||u(i,p,{}),i[p][f]=h,e.real&&C&&!C[f]&&u(C,f,h)))}},function(e,t,n){var r=n(240),o=n(833),a=n(837),i=n(842),s=n(443),u=n(847),c=n(444),l=n(445),p=n(3);function f(e,t){var n=l(e);if(c){var r=c(e);t&&(r=u(r).call(r,(function(t){return s(e,t).enumerable}))),n.push.apply(n,r)}return n}e.exports=function(e){for(var t=1;t>",a={listOf:function(e){return c(e,"List",r.List.isList)},mapOf:function(e,t){return p(e,t,"Map",r.Map.isMap)},orderedMapOf:function(e,t){return p(e,t,"OrderedMap",r.OrderedMap.isOrderedMap)},setOf:function(e){return c(e,"Set",r.Set.isSet)},orderedSetOf:function(e){return c(e,"OrderedSet",r.OrderedSet.isOrderedSet)},stackOf:function(e){return c(e,"Stack",r.Stack.isStack)},iterableOf:function(e){return c(e,"Iterable",r.Iterable.isIterable)},recordOf:function(e){return s((function(t,n,o,a,s){for(var u=arguments.length,c=Array(u>5?u-5:0),l=5;l6?u-6:0),l=6;l5?c-5:0),p=5;p5?i-5:0),u=5;u key("+l[p]+")"].concat(s));if(h instanceof Error)return h}}))}function p(e,t,n,r){return s((function(){for(var o=arguments.length,a=Array(o),i=0;i5?c-5:0),p=5;p4)}function l(e){var t=e.get("swagger");return"string"==typeof t&&i()(t).call(t,"2.0")}function p(e){return function(t,n){return function(r){return n&&n.specSelectors&&n.specSelectors.specJson?c(n.specSelectors.specJson())?u.a.createElement(e,o()({},r,n,{Ori:t})):u.a.createElement(t,r):(console.warn("OAS3 wrapper: couldn't get spec"),null)}}}},function(e,t,n){var r=n(41),o=n(228),a=n(52),i=n(176),s=n(229),u=n(359),c=o("wks"),l=r.Symbol,p=u?l:l&&l.withoutSetter||i;e.exports=function(e){return a(c,e)||(s&&a(l,e)?c[e]=l[e]:c[e]=p("Symbol."+e)),c[e]}},function(e,t,n){"use strict";var r=Object.getOwnPropertySymbols,o=Object.prototype.hasOwnProperty,a=Object.prototype.propertyIsEnumerable;function i(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},n=0;n<10;n++)t["_"+String.fromCharCode(n)]=n;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var r={};return"abcdefghijklmnopqrst".split("").forEach((function(e){r[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},r)).join("")}catch(e){return!1}}()?Object.assign:function(e,t){for(var n,s,u=i(e),c=1;c0){var o=P()(n).call(n,(function(e){return console.error(e),e.line=e.fullPath?g(y,e.fullPath):null,e.path=e.fullPath?e.fullPath.join("."):null,e.level="error",e.type="thrown",e.source="resolver",N()(e,"message",{enumerable:!0,value:e.message}),e}));a.newThrownErrBatch(o)}return r.updateResolved(t)}))}},Ee=[],Ce=Y()(T()(C.a.mark((function e(){var t,n,r,o,a,i,s,u,c,l,p,f,h,d,v,m,g;return C.a.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(t=Ee.system){e.next=4;break}return console.error("debResolveSubtrees: don't have a system to operate on, aborting."),e.abrupt("return");case 4:if(n=t.errActions,r=t.errSelectors,o=t.fn,a=o.resolveSubtree,i=o.AST,s=void 0===i?{}:i,u=t.specSelectors,c=t.specActions,a){e.next=8;break}return console.error("Error: Swagger-Client did not provide a `resolveSubtree` method, doing nothing."),e.abrupt("return");case 8:return l=s.getLineNumberForPath?s.getLineNumberForPath:function(){},p=u.specStr(),f=t.getConfigs(),h=f.modelPropertyMacro,d=f.parameterMacro,v=f.requestInterceptor,m=f.responseInterceptor,e.prev=11,e.next=14,O()(Ee).call(Ee,function(){var e=T()(C.a.mark((function e(t,o){var i,s,c,f,g,y,b;return C.a.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,t;case 2:return i=e.sent,s=i.resultMap,c=i.specWithCurrentSubtrees,e.next=7,a(c,o,{baseDoc:u.url(),modelPropertyMacro:h,parameterMacro:d,requestInterceptor:v,responseInterceptor:m});case 7:return f=e.sent,g=f.errors,y=f.spec,r.allErrors().size&&n.clearBy((function(e){var t;return"thrown"!==e.get("type")||"resolver"!==e.get("source")||!A()(t=e.get("fullPath")).call(t,(function(e,t){return e===o[t]||void 0===o[t]}))})),D()(g)&&g.length>0&&(b=P()(g).call(g,(function(e){return e.line=e.fullPath?l(p,e.fullPath):null,e.path=e.fullPath?e.fullPath.join("."):null,e.level="error",e.type="thrown",e.source="resolver",N()(e,"message",{enumerable:!0,value:e.message}),e})),n.newThrownErrBatch(b)),Z()(s,o,y),Z()(c,o,y),e.abrupt("return",{resultMap:s,specWithCurrentSubtrees:c});case 15:case"end":return e.stop()}}),e)})));return function(t,n){return e.apply(this,arguments)}}(),x.a.resolve({resultMap:(u.specResolvedSubtree([])||Object(q.Map)()).toJS(),specWithCurrentSubtrees:u.specJson().toJS()}));case 14:g=e.sent,delete Ee.system,Ee=[],e.next=22;break;case 19:e.prev=19,e.t0=e.catch(11),console.error(e.t0);case 22:c.updateResolvedSubtree([],g.resultMap);case 23:case"end":return e.stop()}}),e,null,[[11,19]])}))),35),Se=function(e){return function(t){var n;_()(n=P()(Ee).call(Ee,(function(e){return e.join("@@")}))).call(n,e.join("@@"))>-1||(Ee.push(e),Ee.system=t,Ce())}};function Ae(e,t,n,r,o){return{type:ne,payload:{path:e,value:r,paramName:t,paramIn:n,isXml:o}}}function ke(e,t,n,r){return{type:ne,payload:{path:e,param:t,value:n,isXml:r}}}var Oe=function(e,t){return{type:de,payload:{path:e,value:t}}},je=function(){return{type:de,payload:{path:[],value:Object(q.Map)()}}},Te=function(e,t){return{type:oe,payload:{pathMethod:e,isOAS3:t}}},Ie=function(e,t,n,r){return{type:re,payload:{pathMethod:e,paramName:t,paramIn:n,includeEmptyValue:r}}};function Ne(e){return{type:pe,payload:{pathMethod:e}}}function Me(e,t){return{type:fe,payload:{path:e,value:t,key:"consumes_value"}}}function Pe(e,t){return{type:fe,payload:{path:e,value:t,key:"produces_value"}}}var Re=function(e,t,n){return{payload:{path:e,method:t,res:n},type:ae}},De=function(e,t,n){return{payload:{path:e,method:t,req:n},type:ie}},Le=function(e,t,n){return{payload:{path:e,method:t,req:n},type:se}},Be=function(e){return{payload:e,type:ue}},Fe=function(e){return function(t){var n,r,o=t.fn,a=t.specActions,i=t.specSelectors,s=t.getConfigs,c=t.oas3Selectors,p=e.pathName,h=e.method,v=e.operation,g=s(),b=g.requestInterceptor,_=g.responseInterceptor,w=v.toJS();v&&v.get("parameters")&&y()(n=m()(r=v.get("parameters")).call(r,(function(e){return e&&!0===e.get("allowEmptyValue")}))).call(n,(function(t){if(i.parameterInclusionSettingFor([p,h],t.get("name"),t.get("in"))){e.parameters=e.parameters||{};var n=Object(X.C)(t,e.parameters);(!n||n&&0===n.size)&&(e.parameters[t.get("name")]="")}}));if(e.contextUrl=V()(i.url()).toString(),w&&w.operationId?e.operationId=w.operationId:w&&p&&h&&(e.operationId=o.opId(w,p,h)),i.isOAS3()){var x,E=d()(x="".concat(p,":")).call(x,h);e.server=c.selectedServer(E)||c.selectedServer();var S=c.serverVariables({server:e.server,namespace:E}).toJS(),A=c.serverVariables({server:e.server}).toJS();e.serverVariables=f()(S).length?S:A,e.requestContentType=c.requestContentType(p,h),e.responseContentType=c.responseContentType(p,h)||"*/*";var k=c.requestBodyValue(p,h),O=c.requestBodyInclusionSetting(p,h);if(Object(X.t)(k))e.requestBody=JSON.parse(k);else if(k&&k.toJS){var j;e.requestBody=m()(j=P()(k).call(k,(function(e){return q.Map.isMap(e)?e.get("value"):e}))).call(j,(function(e,t){return(D()(e)?0!==e.length:!Object(X.q)(e))||O.get(t)})).toJS()}else e.requestBody=k}var I=l()({},e);I=o.buildRequest(I),a.setRequest(e.pathName,e.method,I);var N=function(){var t=T()(C.a.mark((function t(n){var r,o;return C.a.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,b.apply(undefined,[n]);case 2:return r=t.sent,o=l()({},r),a.setMutatedRequest(e.pathName,e.method,o),t.abrupt("return",r);case 6:case"end":return t.stop()}}),t)})));return function(e){return t.apply(this,arguments)}}();e.requestInterceptor=N,e.responseInterceptor=_;var M=u()();return o.execute(e).then((function(t){t.duration=u()()-M,a.setResponse(e.pathName,e.method,t)})).catch((function(t){console.error(t),a.setResponse(e.pathName,e.method,{error:!0,err:H()(t)})}))}},Ue=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=e.path,n=e.method,r=i()(e,["path","method"]);return function(e){var a=e.fn.fetch,i=e.specSelectors,s=e.specActions,u=i.specJsonWithResolvedSubtrees().toJS(),c=i.operationScheme(t,n),l=i.contentTypeValues([t,n]).toJS(),p=l.requestContentType,f=l.responseContentType,h=/xml/i.test(p),d=i.parameterValues([t,n],h).toJS();return s.executeRequest(o()(o()({},r),{},{fetch:a,spec:u,pathName:t,method:n,parameters:d,requestContentType:p,scheme:c,responseContentType:f}))}};function qe(e,t){return{type:ce,payload:{path:e,method:t}}}function ze(e,t){return{type:le,payload:{path:e,method:t}}}function Ve(e,t,n){return{type:ve,payload:{scheme:e,path:t,method:n}}}},function(e,t,n){var r=n(36);e.exports=!r((function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]}))},function(e,t,n){var r=n(34),o=n(52),a=n(227),i=n(63).f;e.exports=function(e){var t=r.Symbol||(r.Symbol={});o(t,e)||i(t,e,{value:a.f(e)})}},function(e,t,n){"use strict";var r=n(162),o=["kind","resolve","construct","instanceOf","predicate","represent","defaultStyle","styleAliases"],a=["scalar","sequence","mapping"];e.exports=function(e,t){var n,i;if(t=t||{},Object.keys(t).forEach((function(t){if(-1===o.indexOf(t))throw new r('Unknown option "'+t+'" is met in definition of "'+e+'" YAML type.')})),this.tag=e,this.kind=t.kind||null,this.resolve=t.resolve||function(){return!0},this.construct=t.construct||function(e){return e},this.instanceOf=t.instanceOf||null,this.predicate=t.predicate||null,this.represent=t.represent||null,this.defaultStyle=t.defaultStyle||null,this.styleAliases=(n=t.styleAliases||null,i={},null!==n&&Object.keys(n).forEach((function(e){n[e].forEach((function(t){i[String(t)]=e}))})),i),-1===a.indexOf(this.kind))throw new r('Unknown kind "'+this.kind+'" is specified for "'+e+'" YAML type.')}},function(e,t,n){var r=n(399),o=n(241),a=n(673),i=n(178),s=n(181);e.exports=function(e,t){var n;if(void 0===i||null==a(e)){if(o(e)||(n=s(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var u=0,c=function(){};return{s:c,n:function(){return u>=e.length?{done:!0}:{done:!1,value:e[u++]}},e:function(e){throw e},f:c}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var l,p=!0,f=!1;return{s:function(){n=r(e)},n:function(){var e=n.next();return p=e.done,e},e:function(e){f=!0,l=e},f:function(){try{p||null==n.return||n.return()}finally{if(f)throw l}}}}},function(e,t){var n={}.hasOwnProperty;e.exports=function(e,t){return n.call(e,t)}},function(e,t){var n=Array.isArray;e.exports=n},function(e,t){var n;n=function(){return this}();try{n=n||new Function("return this")()}catch(e){"object"==typeof window&&(n=window)}e.exports=n},function(e,t,n){var r=n(45);e.exports=function(e){if(!r(e))throw TypeError(String(e)+" is not an object");return e}},function(e,t,n){var r=n(446),o=n(444),a=n(853);e.exports=function(e,t){if(null==e)return{};var n,i,s=a(e,t);if(o){var u=o(e);for(i=0;i=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(s[n]=e[n])}return s}},function(e,t,n){"use strict";var r=!("undefined"==typeof window||!window.document||!window.document.createElement),o={canUseDOM:r,canUseWorkers:"undefined"!=typeof Worker,canUseEventListeners:r&&!(!window.addEventListener&&!window.attachEvent),canUseViewport:r&&!!window.screen,isInWorker:!r};e.exports=o},function(e,t,n){e.exports=n(637)},function(e,t,n){"use strict";n.r(t),n.d(t,"UPDATE_SELECTED_SERVER",(function(){return r})),n.d(t,"UPDATE_REQUEST_BODY_VALUE",(function(){return o})),n.d(t,"UPDATE_REQUEST_BODY_INCLUSION",(function(){return a})),n.d(t,"UPDATE_ACTIVE_EXAMPLES_MEMBER",(function(){return i})),n.d(t,"UPDATE_REQUEST_CONTENT_TYPE",(function(){return s})),n.d(t,"UPDATE_RESPONSE_CONTENT_TYPE",(function(){return u})),n.d(t,"UPDATE_SERVER_VARIABLE_VALUE",(function(){return c})),n.d(t,"SET_REQUEST_BODY_VALIDATE_ERROR",(function(){return l})),n.d(t,"CLEAR_REQUEST_BODY_VALIDATE_ERROR",(function(){return p})),n.d(t,"CLEAR_REQUEST_BODY_VALUE",(function(){return f})),n.d(t,"setSelectedServer",(function(){return h})),n.d(t,"setRequestBodyValue",(function(){return d})),n.d(t,"setRequestBodyInclusion",(function(){return v})),n.d(t,"setActiveExamplesMember",(function(){return m})),n.d(t,"setRequestContentType",(function(){return g})),n.d(t,"setResponseContentType",(function(){return y})),n.d(t,"setServerVariableValue",(function(){return b})),n.d(t,"setRequestBodyValidateError",(function(){return _})),n.d(t,"clearRequestBodyValidateError",(function(){return w})),n.d(t,"initRequestBodyValidateError",(function(){return x})),n.d(t,"clearRequestBodyValue",(function(){return E}));var r="oas3_set_servers",o="oas3_set_request_body_value",a="oas3_set_request_body_inclusion",i="oas3_set_active_examples_member",s="oas3_set_request_content_type",u="oas3_set_response_content_type",c="oas3_set_server_variable_value",l="oas3_set_request_body_validate_error",p="oas3_clear_request_body_validate_error",f="oas3_clear_request_body_value";function h(e,t){return{type:r,payload:{selectedServerUrl:e,namespace:t}}}function d(e){var t=e.value,n=e.pathMethod;return{type:o,payload:{value:t,pathMethod:n}}}function v(e){var t=e.value,n=e.pathMethod,r=e.name;return{type:a,payload:{value:t,pathMethod:n,name:r}}}function m(e){var t=e.name,n=e.pathMethod,r=e.contextType,o=e.contextName;return{type:i,payload:{name:t,pathMethod:n,contextType:r,contextName:o}}}function g(e){var t=e.value,n=e.pathMethod;return{type:s,payload:{value:t,pathMethod:n}}}function y(e){var t=e.value,n=e.path,r=e.method;return{type:u,payload:{value:t,path:n,method:r}}}function b(e){var t=e.server,n=e.namespace,r=e.key,o=e.val;return{type:c,payload:{server:t,namespace:n,key:r,val:o}}}var _=function(e){var t=e.path,n=e.method,r=e.validationErrors;return{type:l,payload:{path:t,method:n,validationErrors:r}}},w=function(e){var t=e.path,n=e.method;return{type:p,payload:{path:t,method:n}}},x=function(e){var t=e.pathMethod;return{type:p,payload:{path:t[0],method:t[1]}}},E=function(e){var t=e.pathMethod;return{type:f,payload:{pathMethod:t}}}},function(e,t){e.exports=function(e){var t=typeof e;return null!=e&&("object"==t||"function"==t)}},function(e,t,n){"use strict";n.d(t,"b",(function(){return b})),n.d(t,"e",(function(){return _})),n.d(t,"c",(function(){return x})),n.d(t,"a",(function(){return E})),n.d(t,"d",(function(){return C}));var r=n(51),o=n.n(r),a=n(16),i=n.n(a),s=n(35),u=n.n(s),c=n(2),l=n.n(c),p=n(20),f=n.n(p),h=n(60),d=n.n(h),v=n(349),m=n.n(v),g=function(e){return String.prototype.toLowerCase.call(e)},y=function(e){return e.replace(/[^\w]/gi,"_")};function b(e){var t=e.openapi;return!!t&&m()(t,"3")}function _(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"",r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{},o=r.v2OperationIdCompatibilityMode;if(!e||"object"!==f()(e))return null;var a=(e.operationId||"").replace(/\s/g,"");return a.length?y(e.operationId):w(t,n,{v2OperationIdCompatibilityMode:o})}function w(e,t){var n,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},o=r.v2OperationIdCompatibilityMode;if(o){var a,i,s=l()(a="".concat(t.toLowerCase(),"_")).call(a,e).replace(/[\s!@#$%^&*()_+=[{\]};:<>|./?,\\'""-]/g,"_");return(s=s||l()(i="".concat(e.substring(1),"_")).call(i,t)).replace(/((_){2,})/g,"_").replace(/^(_)*/g,"").replace(/([_])*$/g,"")}return l()(n="".concat(g(t))).call(n,y(e))}function x(e,t){var n;return l()(n="".concat(g(t),"-")).call(n,e)}function E(e,t){return e&&e.paths?function(e,t){return function(e,t,n){if(!e||"object"!==f()(e)||!e.paths||"object"!==f()(e.paths))return null;var r=e.paths;for(var o in r)for(var a in r[o])if("PARAMETERS"!==a.toUpperCase()){var i=r[o][a];if(i&&"object"===f()(i)){var s={spec:e,pathName:o,method:a.toUpperCase(),operation:i},u=t(s);if(n&&u)return s}}return}(e,t,!0)||null}(e,(function(e){var n,r=e.pathName,o=e.method,a=e.operation;if(!a||"object"!==f()(a))return!1;var i=a.operationId,s=_(a,r,o),c=x(r,o);return u()(n=[s,c,i]).call(n,(function(e){return e&&e===t}))})):null}function C(e){var t=e.spec,n=t.paths,r={};if(!n||t.$$normalized)return e;for(var a in n){var s=n[a];if(d()(s)){var c=s.parameters,p=function(e){var n=s[e];if(!d()(n))return"continue";var p=_(n,a,e);if(p){r[p]?r[p].push(n):r[p]=[n];var f=r[p];if(f.length>1)i()(f).call(f,(function(e,t){var n;e.__originalOperationId=e.__originalOperationId||e.operationId,e.operationId=l()(n="".concat(p)).call(n,t+1)}));else if(void 0!==n.operationId){var h=f[0];h.__originalOperationId=h.__originalOperationId||n.operationId,h.operationId=p}}if("parameters"!==e){var v=[],m={};for(var g in t)"produces"!==g&&"consumes"!==g&&"security"!==g||(m[g]=t[g],v.push(m));if(c&&(m.parameters=c,v.push(m)),v.length){var y,b=o()(v);try{for(b.s();!(y=b.n()).done;){var w=y.value;for(var x in w)if(n[x]){if("parameters"===x){var E,C=o()(w[x]);try{var S=function(){var e,t=E.value;u()(e=n[x]).call(e,(function(e){return e.name&&e.name===t.name||e.$ref&&e.$ref===t.$ref||e.$$ref&&e.$$ref===t.$$ref||e===t}))||n[x].push(t)};for(C.s();!(E=C.n()).done;)S()}catch(e){C.e(e)}finally{C.f()}}}else n[x]=w[x]}}catch(e){b.e(e)}finally{b.f()}}}};for(var f in s)p(f)}}return t.$$normalized=!0,e}},function(e,t,n){"use strict";n.r(t),n.d(t,"NEW_THROWN_ERR",(function(){return a})),n.d(t,"NEW_THROWN_ERR_BATCH",(function(){return i})),n.d(t,"NEW_SPEC_ERR",(function(){return s})),n.d(t,"NEW_SPEC_ERR_BATCH",(function(){return u})),n.d(t,"NEW_AUTH_ERR",(function(){return c})),n.d(t,"CLEAR",(function(){return l})),n.d(t,"CLEAR_BY",(function(){return p})),n.d(t,"newThrownErr",(function(){return f})),n.d(t,"newThrownErrBatch",(function(){return h})),n.d(t,"newSpecErr",(function(){return d})),n.d(t,"newSpecErrBatch",(function(){return v})),n.d(t,"newAuthErr",(function(){return m})),n.d(t,"clear",(function(){return g})),n.d(t,"clearBy",(function(){return y}));var r=n(141),o=n.n(r),a="err_new_thrown_err",i="err_new_thrown_err_batch",s="err_new_spec_err",u="err_new_spec_err_batch",c="err_new_auth_err",l="err_clear",p="err_clear_by";function f(e){return{type:a,payload:o()(e)}}function h(e){return{type:i,payload:e}}function d(e){return{type:s,payload:e}}function v(e){return{type:u,payload:e}}function m(e){return{type:c,payload:e}}function g(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return{type:l,payload:e}}function y(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:function(){return!0};return{type:p,payload:e}}},function(e,t,n){var r=n(48),o=n(353),a=n(55),i=n(175),s=Object.defineProperty;t.f=r?s:function(e,t,n){if(a(e),t=i(t,!0),a(n),o)try{return s(e,t,n)}catch(e){}if("get"in n||"set"in n)throw TypeError("Accessors not supported");return"value"in n&&(e[t]=n.value),e}},function(e,t,n){var r=n(48),o=n(36),a=n(52),i=Object.defineProperty,s={},u=function(e){throw e};e.exports=function(e,t){if(a(s,e))return s[e];t||(t={});var n=[][e],c=!!a(t,"ACCESSORS")&&t.ACCESSORS,l=a(t,0)?t[0]:u,p=a(t,1)?t[1]:void 0;return s[e]=!!n&&!o((function(){if(c&&!r)return!0;var e={length:-1};c?i(e,1,{enumerable:!0,get:u}):e[1]=1,n.call(e,l,p)}))}},function(e,t){"function"==typeof Object.create?e.exports=function(e,t){e.super_=t,e.prototype=Object.create(t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}})}:e.exports=function(e,t){e.super_=t;var n=function(){};n.prototype=t.prototype,e.prototype=new n,e.prototype.constructor=e}},function(e,t,n){var r=n(77),o=r.Buffer;function a(e,t){for(var n in e)t[n]=e[n]}function i(e,t,n){return o(e,t,n)}o.from&&o.alloc&&o.allocUnsafe&&o.allocUnsafeSlow?e.exports=r:(a(r,t),t.Buffer=i),a(o,i),i.from=function(e,t,n){if("number"==typeof e)throw new TypeError("Argument must not be a number");return o(e,t,n)},i.alloc=function(e,t,n){if("number"!=typeof e)throw new TypeError("Argument must be a number");var r=o(e);return void 0!==t?"string"==typeof n?r.fill(t,n):r.fill(t):r.fill(0),r},i.allocUnsafe=function(e){if("number"!=typeof e)throw new TypeError("Argument must be a number");return o(e)},i.allocUnsafeSlow=function(e){if("number"!=typeof e)throw new TypeError("Argument must be a number");return r.SlowBuffer(e)}},function(e,t,n){var r;!function(){"use strict";var n={}.hasOwnProperty;function o(){for(var e=[],t=0;t=i())throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+i().toString(16)+" bytes");return 0|e}function d(e,t){if(u.isBuffer(e))return e.length;if("undefined"!=typeof ArrayBuffer&&"function"==typeof ArrayBuffer.isView&&(ArrayBuffer.isView(e)||e instanceof ArrayBuffer))return e.byteLength;"string"!=typeof e&&(e=""+e);var n=e.length;if(0===n)return 0;for(var r=!1;;)switch(t){case"ascii":case"latin1":case"binary":return n;case"utf8":case"utf-8":case void 0:return q(e).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*n;case"hex":return n>>>1;case"base64":return z(e).length;default:if(r)return q(e).length;t=(""+t).toLowerCase(),r=!0}}function v(e,t,n){var r=!1;if((void 0===t||t<0)&&(t=0),t>this.length)return"";if((void 0===n||n>this.length)&&(n=this.length),n<=0)return"";if((n>>>=0)<=(t>>>=0))return"";for(e||(e="utf8");;)switch(e){case"hex":return T(this,t,n);case"utf8":case"utf-8":return A(this,t,n);case"ascii":return O(this,t,n);case"latin1":case"binary":return j(this,t,n);case"base64":return S(this,t,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return I(this,t,n);default:if(r)throw new TypeError("Unknown encoding: "+e);e=(e+"").toLowerCase(),r=!0}}function m(e,t,n){var r=e[t];e[t]=e[n],e[n]=r}function g(e,t,n,r,o){if(0===e.length)return-1;if("string"==typeof n?(r=n,n=0):n>2147483647?n=2147483647:n<-2147483648&&(n=-2147483648),n=+n,isNaN(n)&&(n=o?0:e.length-1),n<0&&(n=e.length+n),n>=e.length){if(o)return-1;n=e.length-1}else if(n<0){if(!o)return-1;n=0}if("string"==typeof t&&(t=u.from(t,r)),u.isBuffer(t))return 0===t.length?-1:y(e,t,n,r,o);if("number"==typeof t)return t&=255,u.TYPED_ARRAY_SUPPORT&&"function"==typeof Uint8Array.prototype.indexOf?o?Uint8Array.prototype.indexOf.call(e,t,n):Uint8Array.prototype.lastIndexOf.call(e,t,n):y(e,[t],n,r,o);throw new TypeError("val must be string, number or Buffer")}function y(e,t,n,r,o){var a,i=1,s=e.length,u=t.length;if(void 0!==r&&("ucs2"===(r=String(r).toLowerCase())||"ucs-2"===r||"utf16le"===r||"utf-16le"===r)){if(e.length<2||t.length<2)return-1;i=2,s/=2,u/=2,n/=2}function c(e,t){return 1===i?e[t]:e.readUInt16BE(t*i)}if(o){var l=-1;for(a=n;as&&(n=s-u),a=n;a>=0;a--){for(var p=!0,f=0;fo&&(r=o):r=o;var a=t.length;if(a%2!=0)throw new TypeError("Invalid hex string");r>a/2&&(r=a/2);for(var i=0;i>8,o=n%256,a.push(o),a.push(r);return a}(t,e.length-n),e,n,r)}function S(e,t,n){return 0===t&&n===e.length?r.fromByteArray(e):r.fromByteArray(e.slice(t,n))}function A(e,t,n){n=Math.min(e.length,n);for(var r=[],o=t;o239?4:c>223?3:c>191?2:1;if(o+p<=n)switch(p){case 1:c<128&&(l=c);break;case 2:128==(192&(a=e[o+1]))&&(u=(31&c)<<6|63&a)>127&&(l=u);break;case 3:a=e[o+1],i=e[o+2],128==(192&a)&&128==(192&i)&&(u=(15&c)<<12|(63&a)<<6|63&i)>2047&&(u<55296||u>57343)&&(l=u);break;case 4:a=e[o+1],i=e[o+2],s=e[o+3],128==(192&a)&&128==(192&i)&&128==(192&s)&&(u=(15&c)<<18|(63&a)<<12|(63&i)<<6|63&s)>65535&&u<1114112&&(l=u)}null===l?(l=65533,p=1):l>65535&&(l-=65536,r.push(l>>>10&1023|55296),l=56320|1023&l),r.push(l),o+=p}return function(e){var t=e.length;if(t<=k)return String.fromCharCode.apply(String,e);var n="",r=0;for(;r0&&(e=this.toString("hex",0,n).match(/.{2}/g).join(" "),this.length>n&&(e+=" ... ")),""},u.prototype.compare=function(e,t,n,r,o){if(!u.isBuffer(e))throw new TypeError("Argument must be a Buffer");if(void 0===t&&(t=0),void 0===n&&(n=e?e.length:0),void 0===r&&(r=0),void 0===o&&(o=this.length),t<0||n>e.length||r<0||o>this.length)throw new RangeError("out of range index");if(r>=o&&t>=n)return 0;if(r>=o)return-1;if(t>=n)return 1;if(this===e)return 0;for(var a=(o>>>=0)-(r>>>=0),i=(n>>>=0)-(t>>>=0),s=Math.min(a,i),c=this.slice(r,o),l=e.slice(t,n),p=0;po)&&(n=o),e.length>0&&(n<0||t<0)||t>this.length)throw new RangeError("Attempt to write outside buffer bounds");r||(r="utf8");for(var a=!1;;)switch(r){case"hex":return b(this,e,t,n);case"utf8":case"utf-8":return _(this,e,t,n);case"ascii":return w(this,e,t,n);case"latin1":case"binary":return x(this,e,t,n);case"base64":return E(this,e,t,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return C(this,e,t,n);default:if(a)throw new TypeError("Unknown encoding: "+r);r=(""+r).toLowerCase(),a=!0}},u.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var k=4096;function O(e,t,n){var r="";n=Math.min(e.length,n);for(var o=t;or)&&(n=r);for(var o="",a=t;an)throw new RangeError("Trying to access beyond buffer length")}function M(e,t,n,r,o,a){if(!u.isBuffer(e))throw new TypeError('"buffer" argument must be a Buffer instance');if(t>o||te.length)throw new RangeError("Index out of range")}function P(e,t,n,r){t<0&&(t=65535+t+1);for(var o=0,a=Math.min(e.length-n,2);o>>8*(r?o:1-o)}function R(e,t,n,r){t<0&&(t=4294967295+t+1);for(var o=0,a=Math.min(e.length-n,4);o>>8*(r?o:3-o)&255}function D(e,t,n,r,o,a){if(n+r>e.length)throw new RangeError("Index out of range");if(n<0)throw new RangeError("Index out of range")}function L(e,t,n,r,a){return a||D(e,0,n,4),o.write(e,t,n,r,23,4),n+4}function B(e,t,n,r,a){return a||D(e,0,n,8),o.write(e,t,n,r,52,8),n+8}u.prototype.slice=function(e,t){var n,r=this.length;if((e=~~e)<0?(e+=r)<0&&(e=0):e>r&&(e=r),(t=void 0===t?r:~~t)<0?(t+=r)<0&&(t=0):t>r&&(t=r),t0&&(o*=256);)r+=this[e+--t]*o;return r},u.prototype.readUInt8=function(e,t){return t||N(e,1,this.length),this[e]},u.prototype.readUInt16LE=function(e,t){return t||N(e,2,this.length),this[e]|this[e+1]<<8},u.prototype.readUInt16BE=function(e,t){return t||N(e,2,this.length),this[e]<<8|this[e+1]},u.prototype.readUInt32LE=function(e,t){return t||N(e,4,this.length),(this[e]|this[e+1]<<8|this[e+2]<<16)+16777216*this[e+3]},u.prototype.readUInt32BE=function(e,t){return t||N(e,4,this.length),16777216*this[e]+(this[e+1]<<16|this[e+2]<<8|this[e+3])},u.prototype.readIntLE=function(e,t,n){e|=0,t|=0,n||N(e,t,this.length);for(var r=this[e],o=1,a=0;++a=(o*=128)&&(r-=Math.pow(2,8*t)),r},u.prototype.readIntBE=function(e,t,n){e|=0,t|=0,n||N(e,t,this.length);for(var r=t,o=1,a=this[e+--r];r>0&&(o*=256);)a+=this[e+--r]*o;return a>=(o*=128)&&(a-=Math.pow(2,8*t)),a},u.prototype.readInt8=function(e,t){return t||N(e,1,this.length),128&this[e]?-1*(255-this[e]+1):this[e]},u.prototype.readInt16LE=function(e,t){t||N(e,2,this.length);var n=this[e]|this[e+1]<<8;return 32768&n?4294901760|n:n},u.prototype.readInt16BE=function(e,t){t||N(e,2,this.length);var n=this[e+1]|this[e]<<8;return 32768&n?4294901760|n:n},u.prototype.readInt32LE=function(e,t){return t||N(e,4,this.length),this[e]|this[e+1]<<8|this[e+2]<<16|this[e+3]<<24},u.prototype.readInt32BE=function(e,t){return t||N(e,4,this.length),this[e]<<24|this[e+1]<<16|this[e+2]<<8|this[e+3]},u.prototype.readFloatLE=function(e,t){return t||N(e,4,this.length),o.read(this,e,!0,23,4)},u.prototype.readFloatBE=function(e,t){return t||N(e,4,this.length),o.read(this,e,!1,23,4)},u.prototype.readDoubleLE=function(e,t){return t||N(e,8,this.length),o.read(this,e,!0,52,8)},u.prototype.readDoubleBE=function(e,t){return t||N(e,8,this.length),o.read(this,e,!1,52,8)},u.prototype.writeUIntLE=function(e,t,n,r){(e=+e,t|=0,n|=0,r)||M(this,e,t,n,Math.pow(2,8*n)-1,0);var o=1,a=0;for(this[t]=255&e;++a=0&&(a*=256);)this[t+o]=e/a&255;return t+n},u.prototype.writeUInt8=function(e,t,n){return e=+e,t|=0,n||M(this,e,t,1,255,0),u.TYPED_ARRAY_SUPPORT||(e=Math.floor(e)),this[t]=255&e,t+1},u.prototype.writeUInt16LE=function(e,t,n){return e=+e,t|=0,n||M(this,e,t,2,65535,0),u.TYPED_ARRAY_SUPPORT?(this[t]=255&e,this[t+1]=e>>>8):P(this,e,t,!0),t+2},u.prototype.writeUInt16BE=function(e,t,n){return e=+e,t|=0,n||M(this,e,t,2,65535,0),u.TYPED_ARRAY_SUPPORT?(this[t]=e>>>8,this[t+1]=255&e):P(this,e,t,!1),t+2},u.prototype.writeUInt32LE=function(e,t,n){return e=+e,t|=0,n||M(this,e,t,4,4294967295,0),u.TYPED_ARRAY_SUPPORT?(this[t+3]=e>>>24,this[t+2]=e>>>16,this[t+1]=e>>>8,this[t]=255&e):R(this,e,t,!0),t+4},u.prototype.writeUInt32BE=function(e,t,n){return e=+e,t|=0,n||M(this,e,t,4,4294967295,0),u.TYPED_ARRAY_SUPPORT?(this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e):R(this,e,t,!1),t+4},u.prototype.writeIntLE=function(e,t,n,r){if(e=+e,t|=0,!r){var o=Math.pow(2,8*n-1);M(this,e,t,n,o-1,-o)}var a=0,i=1,s=0;for(this[t]=255&e;++a>0)-s&255;return t+n},u.prototype.writeIntBE=function(e,t,n,r){if(e=+e,t|=0,!r){var o=Math.pow(2,8*n-1);M(this,e,t,n,o-1,-o)}var a=n-1,i=1,s=0;for(this[t+a]=255&e;--a>=0&&(i*=256);)e<0&&0===s&&0!==this[t+a+1]&&(s=1),this[t+a]=(e/i>>0)-s&255;return t+n},u.prototype.writeInt8=function(e,t,n){return e=+e,t|=0,n||M(this,e,t,1,127,-128),u.TYPED_ARRAY_SUPPORT||(e=Math.floor(e)),e<0&&(e=255+e+1),this[t]=255&e,t+1},u.prototype.writeInt16LE=function(e,t,n){return e=+e,t|=0,n||M(this,e,t,2,32767,-32768),u.TYPED_ARRAY_SUPPORT?(this[t]=255&e,this[t+1]=e>>>8):P(this,e,t,!0),t+2},u.prototype.writeInt16BE=function(e,t,n){return e=+e,t|=0,n||M(this,e,t,2,32767,-32768),u.TYPED_ARRAY_SUPPORT?(this[t]=e>>>8,this[t+1]=255&e):P(this,e,t,!1),t+2},u.prototype.writeInt32LE=function(e,t,n){return e=+e,t|=0,n||M(this,e,t,4,2147483647,-2147483648),u.TYPED_ARRAY_SUPPORT?(this[t]=255&e,this[t+1]=e>>>8,this[t+2]=e>>>16,this[t+3]=e>>>24):R(this,e,t,!0),t+4},u.prototype.writeInt32BE=function(e,t,n){return e=+e,t|=0,n||M(this,e,t,4,2147483647,-2147483648),e<0&&(e=4294967295+e+1),u.TYPED_ARRAY_SUPPORT?(this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e):R(this,e,t,!1),t+4},u.prototype.writeFloatLE=function(e,t,n){return L(this,e,t,!0,n)},u.prototype.writeFloatBE=function(e,t,n){return L(this,e,t,!1,n)},u.prototype.writeDoubleLE=function(e,t,n){return B(this,e,t,!0,n)},u.prototype.writeDoubleBE=function(e,t,n){return B(this,e,t,!1,n)},u.prototype.copy=function(e,t,n,r){if(n||(n=0),r||0===r||(r=this.length),t>=e.length&&(t=e.length),t||(t=0),r>0&&r=this.length)throw new RangeError("sourceStart out of bounds");if(r<0)throw new RangeError("sourceEnd out of bounds");r>this.length&&(r=this.length),e.length-t=0;--o)e[o+t]=this[o+n];else if(a<1e3||!u.TYPED_ARRAY_SUPPORT)for(o=0;o>>=0,n=void 0===n?this.length:n>>>0,e||(e=0),"number"==typeof e)for(a=t;a55295&&n<57344){if(!o){if(n>56319){(t-=3)>-1&&a.push(239,191,189);continue}if(i+1===r){(t-=3)>-1&&a.push(239,191,189);continue}o=n;continue}if(n<56320){(t-=3)>-1&&a.push(239,191,189),o=n;continue}n=65536+(o-55296<<10|n-56320)}else o&&(t-=3)>-1&&a.push(239,191,189);if(o=null,n<128){if((t-=1)<0)break;a.push(n)}else if(n<2048){if((t-=2)<0)break;a.push(n>>6|192,63&n|128)}else if(n<65536){if((t-=3)<0)break;a.push(n>>12|224,n>>6&63|128,63&n|128)}else{if(!(n<1114112))throw new Error("Invalid code point");if((t-=4)<0)break;a.push(n>>18|240,n>>12&63|128,n>>6&63|128,63&n|128)}}return a}function z(e){return r.toByteArray(function(e){if((e=function(e){return e.trim?e.trim():e.replace(/^\s+|\s+$/g,"")}(e).replace(F,"")).length<2)return"";for(;e.length%4!=0;)e+="=";return e}(e))}function V(e,t,n,r){for(var o=0;o=t.length||o>=e.length);++o)t[o+n]=e[o];return o}}).call(this,n(54))},function(e,t,n){e.exports=n(857)},function(e,t){e.exports=function(e){if("function"!=typeof e)throw TypeError(String(e)+" is not a function");return e}},function(e,t,n){var r=n(148),o=Math.min;e.exports=function(e){return e>0?o(r(e),9007199254740991):0}},function(e,t,n){"use strict";function r(e){return function(){return e}}var o=function(){};o.thatReturns=r,o.thatReturnsFalse=r(!1),o.thatReturnsTrue=r(!0),o.thatReturnsNull=r(null),o.thatReturnsThis=function(){return this},o.thatReturnsArgument=function(e){return e},e.exports=o},function(e,t,n){"use strict";var r=n(31),o=n(40),a=n(467),i=n(122),s=n(468),u=n(138),c=n(199),l=n(26),p=[],f=0,h=a.getPooled(),d=!1,v=null;function m(){x.ReactReconcileTransaction&&v||r("123")}var g=[{initialize:function(){this.dirtyComponentsLength=p.length},close:function(){this.dirtyComponentsLength!==p.length?(p.splice(0,this.dirtyComponentsLength),w()):p.length=0}},{initialize:function(){this.callbackQueue.reset()},close:function(){this.callbackQueue.notifyAll()}}];function y(){this.reinitializeTransaction(),this.dirtyComponentsLength=null,this.callbackQueue=a.getPooled(),this.reconcileTransaction=x.ReactReconcileTransaction.getPooled(!0)}function b(e,t){return e._mountOrder-t._mountOrder}function _(e){var t=e.dirtyComponentsLength;t!==p.length&&r("124",t,p.length),p.sort(b),f++;for(var n=0;nE;E++)if((f||E in _)&&(y=w(g=_[E],E,b),e))if(t)S[E]=y;else if(y)switch(e){case 3:return!0;case 5:return g;case 6:return E;case 2:u.call(S,g)}else if(l)return!1;return p?-1:c||l?l:S}};e.exports={forEach:c(0),map:c(1),filter:c(2),some:c(3),every:c(4),find:c(5),findIndex:c(6)}},function(e,t,n){"use strict";e.exports={current:null}},function(e,t){e.exports=function(e){return null!=e&&"object"==typeof e}},function(e,t){var n,r,o=e.exports={};function a(){throw new Error("setTimeout has not been defined")}function i(){throw new Error("clearTimeout has not been defined")}function s(e){if(n===setTimeout)return setTimeout(e,0);if((n===a||!n)&&setTimeout)return n=setTimeout,setTimeout(e,0);try{return n(e,0)}catch(t){try{return n.call(null,e,0)}catch(t){return n.call(this,e,0)}}}!function(){try{n="function"==typeof setTimeout?setTimeout:a}catch(e){n=a}try{r="function"==typeof clearTimeout?clearTimeout:i}catch(e){r=i}}();var u,c=[],l=!1,p=-1;function f(){l&&u&&(l=!1,u.length?c=u.concat(c):p=-1,c.length&&h())}function h(){if(!l){var e=s(f);l=!0;for(var t=c.length;t;){for(u=c,c=[];++p1)for(var n=1;n0&&"/"!==t[0]}));function Ce(e,t,n){var r;t=t||[];var o=we.apply(void 0,A()(r=[e]).call(r,O()(t))).get("parameters",Object(I.List)());return f()(o).call(o,(function(e,t){var r=n&&"body"===t.get("in")?t.get("value_xml"):t.get("value");return e.set(Object(T.B)(t,{allowHashes:!1}),r)}),Object(I.fromJS)({}))}function Se(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"";if(I.List.isList(e))return u()(e).call(e,(function(e){return I.Map.isMap(e)&&e.get("in")===t}))}function Ae(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"";if(I.List.isList(e))return u()(e).call(e,(function(e){return I.Map.isMap(e)&&e.get("type")===t}))}function ke(e,t){var n,r;t=t||[];var o=z(e).getIn(A()(n=["paths"]).call(n,O()(t)),Object(I.fromJS)({})),a=e.getIn(A()(r=["meta","paths"]).call(r,O()(t)),Object(I.fromJS)({})),i=Oe(e,t),s=o.get("parameters")||new I.List,u=a.get("consumes_value")?a.get("consumes_value"):Ae(s,"file")?"multipart/form-data":Ae(s,"formData")?"application/x-www-form-urlencoded":void 0;return Object(I.fromJS)({requestContentType:u,responseContentType:i})}function Oe(e,t){var n,r;t=t||[];var o=z(e).getIn(A()(n=["paths"]).call(n,O()(t)),null);if(null!==o){var a=e.getIn(A()(r=["meta","paths"]).call(r,O()(t),["produces_value"]),null),i=o.getIn(["produces",0],null);return a||i||"application/json"}}function je(e,t){var n;t=t||[];var r=z(e),o=r.getIn(A()(n=["paths"]).call(n,O()(t)),null);if(null!==o){var a=t,s=i()(a,1)[0],u=o.get("produces",null),c=r.getIn(["paths",s,"produces"],null),l=r.getIn(["produces"],null);return u||c||l}}function Te(e,t){var n;t=t||[];var r=z(e),o=r.getIn(A()(n=["paths"]).call(n,O()(t)),null);if(null!==o){var a=t,s=i()(a,1)[0],u=o.get("consumes",null),c=r.getIn(["paths",s,"consumes"],null),l=r.getIn(["consumes"],null);return u||c||l}}var Ie=function(e,t,n){var r=e.get("url").match(/^([a-z][a-z0-9+\-.]*):/),a=o()(r)?r[1]:null;return e.getIn(["scheme",t,n])||e.getIn(["scheme","_defaultScheme"])||a||""},Ne=function(e,t,n){var r;return _()(r=["http","https"]).call(r,Ie(e,t,n))>-1},Me=function(e,t){var n;t=t||[];var r=e.getIn(A()(n=["meta","paths"]).call(n,O()(t),["parameters"]),Object(I.fromJS)([])),o=!0;return x()(r).call(r,(function(e){var t=e.get("errors");t&&t.count()&&(o=!1)})),o},Pe=function(e,t){var n,r,o={requestBody:!1,requestContentType:{}},a=e.getIn(A()(n=["resolvedSubtrees","paths"]).call(n,O()(t),["requestBody"]),Object(I.fromJS)([]));return a.size<1||(a.getIn(["required"])&&(o.requestBody=a.getIn(["required"])),x()(r=a.getIn(["content"]).entrySeq()).call(r,(function(e){var t=e[0];if(e[1].getIn(["schema","required"])){var n=e[1].getIn(["schema","required"]).toJS();o.requestContentType[t]=n}}))),o},Re=function(e,t,n,r){var o,a=e.getIn(A()(o=["resolvedSubtrees","paths"]).call(o,O()(t),["requestBody","content"]),Object(I.fromJS)([]));if(a.size<2||!n||!r)return!1;var i=a.getIn([n,"schema","properties"],Object(I.fromJS)([])),s=a.getIn([r,"schema","properties"],Object(I.fromJS)([]));return!!i.equals(s)};function De(e){return I.Map.isMap(e)?e:new I.Map}},function(e,t,n){"use strict";(function(t){var r=n(891),o=n(892),a=/^[A-Za-z][A-Za-z0-9+-.]*:\/\//,i=/^([a-z][a-z0-9.+-]*:)?(\/\/)?([\S\s]*)/i,s=new RegExp("^[\\x09\\x0A\\x0B\\x0C\\x0D\\x20\\xA0\\u1680\\u180E\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200A\\u202F\\u205F\\u3000\\u2028\\u2029\\uFEFF]+");function u(e){return(e||"").toString().replace(s,"")}var c=[["#","hash"],["?","query"],function(e){return e.replace("\\","/")},["/","pathname"],["@","auth",1],[NaN,"host",void 0,1,1],[/:(\d+)$/,"port",void 0,1],[NaN,"hostname",void 0,1,1]],l={hash:1,query:1};function p(e){var n,r=("undefined"!=typeof window?window:void 0!==t?t:"undefined"!=typeof self?self:{}).location||{},o={},i=typeof(e=e||r);if("blob:"===e.protocol)o=new h(unescape(e.pathname),{});else if("string"===i)for(n in o=new h(e,{}),l)delete o[n];else if("object"===i){for(n in e)n in l||(o[n]=e[n]);void 0===o.slashes&&(o.slashes=a.test(e.href))}return o}function f(e){e=u(e);var t=i.exec(e);return{protocol:t[1]?t[1].toLowerCase():"",slashes:!!t[2],rest:t[3]}}function h(e,t,n){if(e=u(e),!(this instanceof h))return new h(e,t,n);var a,i,s,l,d,v,m=c.slice(),g=typeof t,y=this,b=0;for("object"!==g&&"string"!==g&&(n=t,t=null),n&&"function"!=typeof n&&(n=o.parse),t=p(t),a=!(i=f(e||"")).protocol&&!i.slashes,y.slashes=i.slashes||a&&t.slashes,y.protocol=i.protocol||t.protocol||"",e=i.rest,i.slashes||(m[3]=[/(.*)/,"pathname"]);b=n.length?{value:void 0,done:!0}:(e=r(n,o),t.index+=e.length,{value:e,done:!1})}))},function(e,t,n){"use strict";e.exports=function(e){if("function"!=typeof e)throw new TypeError(e+" is not a function");return e}},function(e,t,n){e.exports=n(626)},function(e,t,n){e.exports=n(828)},function(e,t,n){"use strict";var r=n(870);e.exports=r},function(e,t,n){"use strict";n.r(t),n.d(t,"UPDATE_LAYOUT",(function(){return o})),n.d(t,"UPDATE_FILTER",(function(){return a})),n.d(t,"UPDATE_MODE",(function(){return i})),n.d(t,"SHOW",(function(){return s})),n.d(t,"updateLayout",(function(){return u})),n.d(t,"updateFilter",(function(){return c})),n.d(t,"show",(function(){return l})),n.d(t,"changeMode",(function(){return p}));var r=n(4),o="layout_update_layout",a="layout_update_filter",i="layout_update_mode",s="layout_show";function u(e){return{type:o,payload:e}}function c(e){return{type:a,payload:e}}function l(e){var t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];return e=Object(r.w)(e),{type:s,payload:{thing:e,shown:t}}}function p(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"";return e=Object(r.w)(e),{type:i,payload:{thing:e,mode:t}}}},function(e,t,n){"use strict";var r=n(1052),o=n(1053);function a(){this.protocol=null,this.slashes=null,this.auth=null,this.host=null,this.port=null,this.hostname=null,this.hash=null,this.search=null,this.query=null,this.pathname=null,this.path=null,this.href=null}t.parse=b,t.resolve=function(e,t){return b(e,!1,!0).resolve(t)},t.resolveObject=function(e,t){return e?b(e,!1,!0).resolveObject(t):t},t.format=function(e){o.isString(e)&&(e=b(e));return e instanceof a?e.format():a.prototype.format.call(e)},t.Url=a;var i=/^([a-z0-9.+-]+:)/i,s=/:[0-9]*$/,u=/^(\/\/?(?!\/)[^\?\s]*)(\?[^\s]*)?$/,c=["{","}","|","\\","^","`"].concat(["<",">",'"',"`"," ","\r","\n","\t"]),l=["'"].concat(c),p=["%","/","?",";","#"].concat(l),f=["/","?","#"],h=/^[+a-z0-9A-Z_-]{0,63}$/,d=/^([+a-z0-9A-Z_-]{0,63})(.*)$/,v={javascript:!0,"javascript:":!0},m={javascript:!0,"javascript:":!0},g={http:!0,https:!0,ftp:!0,gopher:!0,file:!0,"http:":!0,"https:":!0,"ftp:":!0,"gopher:":!0,"file:":!0},y=n(1054);function b(e,t,n){if(e&&o.isObject(e)&&e instanceof a)return e;var r=new a;return r.parse(e,t,n),r}a.prototype.parse=function(e,t,n){if(!o.isString(e))throw new TypeError("Parameter 'url' must be a string, not "+typeof e);var a=e.indexOf("?"),s=-1!==a&&a127?M+="x":M+=N[P];if(!M.match(h)){var D=T.slice(0,k),L=T.slice(k+1),B=N.match(d);B&&(D.push(B[1]),L.unshift(B[2])),L.length&&(b="/"+L.join(".")+b),this.hostname=D.join(".");break}}}this.hostname.length>255?this.hostname="":this.hostname=this.hostname.toLowerCase(),j||(this.hostname=r.toASCII(this.hostname));var F=this.port?":"+this.port:"",U=this.hostname||"";this.host=U+F,this.href+=this.host,j&&(this.hostname=this.hostname.substr(1,this.hostname.length-2),"/"!==b[0]&&(b="/"+b))}if(!v[x])for(k=0,I=l.length;k0)&&n.host.split("@"))&&(n.auth=j.shift(),n.host=n.hostname=j.shift());return n.search=e.search,n.query=e.query,o.isNull(n.pathname)&&o.isNull(n.search)||(n.path=(n.pathname?n.pathname:"")+(n.search?n.search:"")),n.href=n.format(),n}if(!E.length)return n.pathname=null,n.search?n.path="/"+n.search:n.path=null,n.href=n.format(),n;for(var S=E.slice(-1)[0],A=(n.host||e.host||E.length>1)&&("."===S||".."===S)||""===S,k=0,O=E.length;O>=0;O--)"."===(S=E[O])?E.splice(O,1):".."===S?(E.splice(O,1),k++):k&&(E.splice(O,1),k--);if(!w&&!x)for(;k--;k)E.unshift("..");!w||""===E[0]||E[0]&&"/"===E[0].charAt(0)||E.unshift(""),A&&"/"!==E.join("/").substr(-1)&&E.push("");var j,T=""===E[0]||E[0]&&"/"===E[0].charAt(0);C&&(n.hostname=n.host=T?"":E.length?E.shift():"",(j=!!(n.host&&n.host.indexOf("@")>0)&&n.host.split("@"))&&(n.auth=j.shift(),n.host=n.hostname=j.shift()));return(w=w||n.host&&E.length)&&!T&&E.unshift(""),E.length?n.pathname=E.join("/"):(n.pathname=null,n.path=null),o.isNull(n.pathname)&&o.isNull(n.search)||(n.path=(n.pathname?n.pathname:"")+(n.search?n.search:"")),n.auth=e.auth||n.auth,n.slashes=n.slashes||e.slashes,n.href=n.format(),n},a.prototype.parseHost=function(){var e=this.host,t=s.exec(e);t&&(":"!==(t=t[0])&&(this.port=t.substr(1)),e=e.substr(0,e.length-t.length)),e&&(this.hostname=e)}},function(e,t,n){var r=n(48),o=n(173),a=n(106),i=n(69),s=n(175),u=n(52),c=n(353),l=Object.getOwnPropertyDescriptor;t.f=r?l:function(e,t){if(e=i(e),t=s(t,!0),c)try{return l(e,t)}catch(e){}if(u(e,t))return a(!o.f.call(e,t),e[t])}},function(e,t){e.exports=function(e,t){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:t}}},function(e,t){var n={}.toString;e.exports=function(e){return n.call(e).slice(8,-1)}},function(e,t,n){var r=n(79);e.exports=function(e,t,n){if(r(e),void 0===t)return e;switch(n){case 0:return function(){return e.call(t)};case 1:return function(n){return e.call(t,n)};case 2:return function(n,r){return e.call(t,n,r)};case 3:return function(n,r,o){return e.call(t,n,r,o)}}return function(){return e.apply(t,arguments)}}},function(e,t,n){var r,o=n(55),a=n(231),i=n(226),s=n(149),u=n(366),c=n(223),l=n(177),p=l("IE_PROTO"),f=function(){},h=function(e){return"