changes to dice-box-threejs
All checks were successful
CI / deploy (push) Successful in 5m33s

This commit is contained in:
Arindy 2025-02-16 11:06:25 +01:00
parent 7b9143c26d
commit 05f5f0d28e
123 changed files with 17741 additions and 53877 deletions

View File

@ -5,6 +5,7 @@
<h4 align="center">... they see them rolling ...</h4>
<p align="center">
<a href="https://dice-tower.com" target="_blank">Dice-Tower</a>
<a href="#key-features">Key Features</a>
<a href="#start-container">Start Container</a>
<a href="#how-to-build-from-scratch">How To Build from scratch</a>
@ -15,7 +16,6 @@
<p align="center">
<img src=".github/media/preview.gif" />
</p>
---
## Key Features
@ -77,9 +77,9 @@ $ docker run --network host -d dice-tower
This software uses the following open source packages:
- [3D-Dice/dice-box](https://github.com/3d-dice/dice-box)
- [3D-Dice/dice-themes](https://github.com/3d-dice/dice-themes)
- [3D-Dice/dice-box-threejs](https://github.com/3d-dice/dice-box-threejs)
- [W3.CSS Color Themes](https://www.w3schools.com/w3css/w3css_color_themes.asp)
- [Font Awesome](https://fontawesome.com)
## License

View File

@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>de.arindy</groupId>
<artifactId>dice-tower</artifactId>
<version>1.1.4-SNAPSHOT</version>
<version>1.2.0-SNAPSHOT</version>
<properties>
<compiler-plugin.version>3.13.0</compiler-plugin.version>

View File

@ -23,11 +23,12 @@ class ChatOverlayResource {
@QueryParam("subsAllowed") subsAllowed: Boolean = false,
@QueryParam("cmd") cmd: String? = "roll",
@QueryParam("theme") theme: String? = "default",
@QueryParam("themeColor") themeColor: String? = "default",
@QueryParam("faceColor") faceColor: String? = "#ff0202",
@QueryParam("faceColor") numberColor: String? = "#ffffff",
@QueryParam("clearAfter") clearAfter: Long? = -1,
@QueryParam("timeout") timeout: Long? = -1
): TemplateInstance {
return Templates.chatoverlay(channel, scale ?: 7, maxDice ?: 20, modsAllowed, vipAllowed, subsAllowed, cmd ?: "roll", theme ?: "default", themeColor ?: "ff0202", clearAfter ?: 10, timeout ?: 60)
return Templates.chatoverlay(channel, scale ?: 7, maxDice ?: 20, modsAllowed, vipAllowed, subsAllowed, cmd ?: "roll", theme ?: "default", faceColor ?: "#ff0202", numberColor ?: "#ffffff", clearAfter ?: 10, timeout ?: 60)
}
@GET

View File

@ -26,23 +26,43 @@ final class DiceResource(@Context val sse: Sse) {
@POST
@Consumes(MediaType.APPLICATION_JSON)
fun parseCommand(@PathParam("id") id: String, data: RollPayload) {
data.roll = data.command.split(" ", "&", "and").filter { it.isNotEmpty() }.map { it.trim() }.toTypedArray<String>()
data.room = id.split(":")[0]
data.user = id.split(":")[1]
val results = ArrayList<Results>()
data.command.split(" ", "&", "and").filter { it.isNotEmpty() }.map { it.trim() }.toTypedArray<String>().forEach { command ->
val dice = command.split("d")
val result = IntArray(dice[0].toInt())
val sides = dice[1].split("+", "-")
val modifier = if (dice[1].contains("+")) sides[1].toInt() else if (dice[1].contains("+")) -1 * sides[1].toInt() else 0
repeat(dice[0].toInt()) { index ->
result[index] = (Math.random() * sides[0].toInt() + 1).toInt()
}
results.add(Results(sides[0].toInt(), modifier, result.sum() + modifier, result.map { Roll(it) }.toTypedArray()))
}
val map = results.map { r ->
"${r.rolls.size}d${r.sides}@${
if (r.sides == 100) r.rolls.map { roll -> Roll(roll.value / 10 * 10) }
.joinToString(",") else r.rolls.joinToString(",")
}"
}.toTypedArray()
data.roll = map + results.filter { it.sides == 100 }.map { r -> "${r.rolls.size}d10@${r.rolls.map { roll -> Roll(roll.value % 10) }.joinToString(",")}"}.toTypedArray()
sseBroadcasters[id]?.broadcast(
eventBuilder.id((UUID.randomUUID()).toString())
.mediaType(MediaType.APPLICATION_JSON_TYPE).data(data).build()
)
if (data.roll.all { it.trim().isNotEmpty() }) {
results(data.room!!, Result(data.name, data.user!!, data.themeColor))
results(data.room!!, Result(data.name, data.user!!, data.faceColor, null))
}
Thread.sleep(1000)
results(data.room!!, Result(data.name, data.user!!, data.faceColor, results.toTypedArray()))
}
@POST
@Path("/register")
@Consumes(MediaType.APPLICATION_JSON)
fun register(@PathParam("id") id: String, data: Any) {
println("id = [${id}], data = [${data}]")
sseBroadcasters["register:$id"]?.broadcast(
eventBuilder.id((UUID.randomUUID()).toString())
.mediaType(MediaType.APPLICATION_JSON_TYPE).data(data).build())
@ -63,7 +83,9 @@ final class DiceResource(@Context val sse: Sse) {
@Path("/stream")
@Produces(MediaType.SERVER_SENT_EVENTS)
fun stream(@PathParam("id") id: String, @Context sseEventSink: SseEventSink) {
sseBroadcasters[id] = sse.newBroadcaster()
if (!sseBroadcasters.containsKey(id)) {
sseBroadcasters[id] = sse.newBroadcaster()
}
sseBroadcasters[id]?.register(sseEventSink)
}
@ -88,6 +110,59 @@ final class DiceResource(@Context val sse: Sse) {
}
@RegisterForReflection
data class Result(val name: String, val user: String, val themeColor: String)
data class Result(val name: String, val user: String, val faceColor: String, val results: Array<Results>?) {
override fun equals(other: Any?): Boolean {
if (this === other) return true
if (javaClass != other?.javaClass) return false
other as Result
if (name != other.name) return false
if (user != other.user) return false
if (faceColor != other.faceColor) return false
if (results != null) {
if (other.results == null) return false
if (!results.contentEquals(other.results)) return false
} else if (other.results != null) return false
return true
}
override fun hashCode(): Int {
var result = name.hashCode()
result = 31 * result + user.hashCode()
result = 31 * result + faceColor.hashCode()
result = 31 * result + (results?.contentHashCode() ?: 0)
return result
}
}
@RegisterForReflection
data class Results(val sides: Int, val modifier: Int, val value: Int, val rolls: Array<Roll>) {
override fun equals(other: Any?): Boolean {
if (this === other) return true
if (javaClass != other?.javaClass) return false
other as Results
if (sides != other.sides) return false
if (modifier != other.modifier) return false
if (value != other.value) return false
if (!rolls.contentEquals(other.rolls)) return false
return true
}
override fun hashCode(): Int {
var result = sides
result = 31 * result + modifier
result = 31 * result + value
result = 31 * result + rolls.contentHashCode()
return result
}
}
@RegisterForReflection
data class Roll(val value: Int)
}

View File

@ -1,12 +1,18 @@
package de.arindy.dicetower
import io.quarkus.runtime.annotations.RegisterForReflection
@RegisterForReflection
data class RollPayload(
val name: String,
var command: String,
val themeColor: String = "white",
var predetermined: Boolean? = false,
val faceColor: String = "white",
val numberColor: String = "white",
val theme: String = "default",
var room: String?,
var user: String?,
) {
lateinit var roll: Array<String>
}

View File

@ -27,7 +27,8 @@ object Templates {
subsAllowed: Boolean,
cmd: String?,
theme: String?,
themeColor: String?,
faceColor: String?,
numberColor: String?,
clearAfter: Long?,
timeout: Long?
): TemplateInstance

View File

@ -16,10 +16,11 @@ function url() {
function start(event = undefined) {
if ((!event || event.keyCode === 13) && document.getElementById('name').value.length > 0 && document.getElementById('room').value.length > 0) {
document.getElementById('overlayId').value = url() + '/overlay/' + document.getElementById('room').value + ':' + localStorage.getItem('userId') + '?scale=7&clearAfter=30';
document.getElementById('overlayId').value = url() + '/overlay/' + document.getElementById('room').value + ':' + localStorage.getItem('userId') + '?scale=10&clearAfter=30';
document.getElementById('resultsId').value = url() + '/overlay/' + document.getElementById('room').value + '/results';
document.getElementById('myResultsId').value = document.getElementById('resultsId').value + '?name=' + encodeURIComponent(document.getElementById('name').value) + '&user=' + localStorage.getItem('userId');
document.getElementById('resultFrame').src = document.getElementById('myResultsId').value;
document.getElementById('diceFrame').src = document.getElementById('overlayId').value;
document.getElementById('roll').hidden = false;
document.getElementById('start-container').hidden = true;
document.getElementById('options-container').hidden = false;
@ -47,8 +48,11 @@ function start(event = undefined) {
if (localStorage.getItem(document.getElementById('name').value + "-theme")) {
document.getElementById('theme').value = localStorage.getItem(document.getElementById('name').value + "-theme")
}
if (localStorage.getItem(document.getElementById('name').value + "-themeColor")) {
document.getElementById('themeColor').setColor(localStorage.getItem(document.getElementById('name').value + "-themeColor"));
if (localStorage.getItem(document.getElementById('name').value + "-faceColor")) {
document.getElementById('faceColor').setColor(localStorage.getItem(document.getElementById('name').value + "-faceColor"));
}
if (localStorage.getItem(document.getElementById('name').value + "-numberColor")) {
document.getElementById('numberColor').setColor(localStorage.getItem(document.getElementById('name').value + "-numberColor"));
}
if (!localStorage.getItem(document.getElementById('name').value + '-started')) {
@ -93,7 +97,21 @@ function start(event = undefined) {
newOverlay.appendChild(newLabel);
newOverlay.appendChild(newInput);
overlays.appendChild(newOverlay);
let dice = document.createElement('iframe');
dice.id = data.id + '-diceFrame'
dice.style.width = "50%";
dice.style.height = "100%";
dice.style.overflow = "hidden";
dice.style.border = "0";
dice.style.zIndex = "4";
dice.style.position = "absolute";
dice.style.top = "0";
dice.style.left = "50%";
dice.src = data.overlay;
document.getElementById('results-dice').appendChild(dice)
}
configurePopover();
});
}
@ -113,7 +131,8 @@ function roll(event) {
httpRequest.send(JSON.stringify({
name: document.getElementById('name').value,
command: document.getElementById('command').value,
themeColor: document.getElementById('themeColor').value,
faceColor: document.getElementById('faceColor').value,
numberColor: document.getElementById('numberColor').value,
theme: document.getElementById('theme').value
}))
}
@ -121,7 +140,8 @@ function roll(event) {
function saveDice() {
localStorage.setItem(document.getElementById('name').value + "-theme", document.getElementById('theme').value)
localStorage.setItem(document.getElementById('name').value + "-themeColor", document.getElementById('themeColor').value)
localStorage.setItem(document.getElementById('name').value + "-faceColor", document.getElementById('faceColor').value)
localStorage.setItem(document.getElementById('name').value + "-numberColor", document.getElementById('numberColor').value)
}
function configurePopover() {
@ -165,6 +185,13 @@ function hideSnackbar() {
}
document.addEventListener("DOMContentLoaded", async () => {
document.querySelector('meta[property="og:url"]').setAttribute("content", url());
document.querySelector('meta[property="twitter:url"]').setAttribute("content", url());
document.querySelector('meta[property="og:image"]').setAttribute("content", url() + '/rich.png');
document.querySelector('meta[name="twitter:image"]').setAttribute("content", url() + '/rich.png');
document.querySelector('meta[property="twitter:domain"]').setAttribute("content", window.location.hostname);
if (localStorage.getItem('last-name') && localStorage.getItem('last-room')) {
document.getElementById('name').value = localStorage.getItem('last-name');
document.getElementById('room').value = localStorage.getItem('last-room');
@ -179,14 +206,19 @@ document.addEventListener("DOMContentLoaded", async () => {
}
})
document.getElementById('chatOverlayLink').href = url() + '/chatoverlay'
document.addEventListener("DOMContentLoaded", async () => {
if (!localStorage.getItem("userId")) {
localStorage.setItem("userId", self.crypto.randomUUID());
document.getElementById('resultDiceSwitch').addEventListener('change', function () {
if (!this.checked) {
document.getElementById('results-dice').hidden = true
} else {
document.getElementById('results-dice').hidden = false
}
})
document.getElementById('chatOverlayLink').href = url() + '/chatoverlay'
configurePopover();
})
if (!localStorage.getItem("userId")) {
localStorage.setItem("userId", self.crypto.randomUUID());
}

View File

@ -1,15 +1,125 @@
import DiceBox from "/vendor/dice-box/dice-box.es.js";
import DiceBox from "/vendor/dice-box/dice-box-threejs.es.js";
let diceBox
const Themes = {
cloudy: {
name: "Clouds (Transparent)"
},
cloudy_2: {
name: "Clouds"
},
fire: {
name: "Fire"
},
marble: {
name: "Marble"
},
water: {
name: "Water"
},
ice: {
name: "Ice"
},
paper: {
name: "Paper"
},
speckles: {
name: "Speckles"
},
glitter: {
name: "Glitter"
},
glitter_2: {
name: "Glitter (Transparent)"
},
stars: {
name: "Stars"
},
stainedglass: {
name: "Stained Glass"
},
wood: {
name: "Wood"
},
metal: {
name: "Stainless Steel"
},
skulls: {
name: "Skulls"
},
leopard: {
name: "Leopard"
},
tiger: {
name: "Tiger"
},
cheetah: {
name: "Cheetah"
},
dragon: {
name: "Dragon"
},
lizard: {
name: "Lizard"
},
bird: {
name: "Bird"
},
astral: {
name: "Astral Sea"
},
bronze01: {
name: "Bronze 1"
},
bronze02: {
name: "Bronze 2"
},
bronze03: {
name: "Bronze 3"
},
bronze03a: {
name: "Bronze 3a"
},
bronze03b: {
name: "Bronze 3b"
},
bronze04: {
name: "Bronze 4"
},
none: {
name: "none"
}
}
document.addEventListener("DOMContentLoaded", async () => {
const themeSelector = document.getElementById('theme');
for (const theme in Themes) {
let option = document.createElement('option');
option.value = theme;
option.innerText = Themes[theme].name;
themeSelector.appendChild(option);
}
themeSelector.value = 'none';
document.getElementById('preview').onclick = async () => {
document.getElementById('dice-box').replaceChildren(...[])
const diceBox = new DiceBox("#dice-box", {
assetPath: "/vendor/assets/",
theme: document.getElementById('theme').value,
themeColor: document.getElementById('themeColor').value,
scale: 14
document.getElementById('app').replaceChildren(...[])
diceBox = new DiceBox("#app", {
assetPath: "/vendor/dice-box/",
light_intensity: 2,
gravity_multiplier: 600,
baseScale: 120,
strength: Math.floor(Math.random() * 4),
});
await diceBox.init()
diceBox.roll(['1d2', '1d4', '1d6', '1d8', '1d10', '1d12', '1d20', '1d100']);
await diceBox.initialize();
diceBox.clearDice();
await diceBox.updateConfig({
theme_customColorset: {
background: document.getElementById('faceColor').value,
foreground: document.getElementById('numberColor').value,
texture: document.getElementById('theme').value
}
});
await diceBox.roll('1d2 & 1d4 & 1d6 & 1d8 & 1d10 & 1d12 & 1d20 & 1d100');
}
})

View File

@ -1,40 +0,0 @@
const title = `${document.querySelector('title').textContent}`
const dexcription = ` Easy to use online dice rolling with customizable overlays.`
function url() {
return window.location.protocol + '//' + window.location.hostname + (window.location.port?.length > 0 ? ':' + window.location.port : '');
}
const image = url() + '/rich.png'
function createMetaTag(name, property, content) {
let tag = document.createElement('meta');
if (name) {
tag.setAttribute('name', name)
}
if (property) {
tag.setAttribute('property', property)
}
tag.setAttribute('content', content)
return tag;
}
function createTags() {
return [
createMetaTag('description', undefined, dexcription),
createMetaTag(undefined, 'og:url', url()),
createMetaTag(undefined, 'og:image', image),
createMetaTag(undefined, 'og:description', dexcription),
createMetaTag(undefined, 'og:title', title),
createMetaTag(undefined, 'og:site_name', title),
createMetaTag(undefined, 'og:type', 'website'),
createMetaTag(undefined, 'twitter:url', url()),
createMetaTag(undefined, 'twitter:domain', document.location.hostname),
createMetaTag('twitter:title', undefined, title),
createMetaTag('twitter:image', undefined, image),
createMetaTag('twitter:card', undefined, 'summary_large_image'),
createMetaTag('twitter:description', undefined, dexcription),
]
}
document.addEventListener("DOMContentLoaded", async () => {
createTags().forEach(tag => document.head.appendChild(tag))
})

View File

@ -98,12 +98,27 @@ input:checked + .slider:before {
background-color: #333333dd !important
}
#app {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
overflow: hidden;
}
#preview {
position: relative;
cursor: pointer;
z-index: 2;
}
#dice-box {
position: relative;
justify-self: center;
box-sizing: border-box;
width: 100%;
height: 100%;
width: 640px;
height: 300px;
background: transparent;
background-size: cover;
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 85 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 220 KiB

View File

@ -1,33 +0,0 @@
{
"name": "@3d-dice/theme-blue-green-metal",
"private": false,
"author": {
"name": "Frank Ali"
},
"description": "Blue green rustic metal skin",
"version": "0.2.0",
"keywords": [
"3D",
"dice",
"skins",
"theme",
"javascript",
"rpg",
"dnd",
"d&d",
"tabletop"
],
"license": "MIT",
"homepage": "https://fantasticdice.games",
"repository": {
"type": "git",
"url": "https://github.com/3d-dice/dice-themes",
"directory": "themes/blueGreenMetal"
},
"bugs": {
"url": "https://github.com/3d-dice/dice-themes/issues"
},
"files": [
"*"
]
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 95 KiB

View File

@ -1,707 +0,0 @@
{"producer":{"name":"Blender","version":"2.93.4","exporter_version":"2.93.5","file":"dice_final.babylon"},
"autoClear":true,"clearColor":[0.0509,0.0509,0.0509],"gravity":[0,-9.81,0],"physicsEnabled":true,
"meshes":[
{"name":"d4_collider","id":"d4_collider","billboardMode":0,"position":[0.6,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false,"physicsImpostor":8,"physicsMass":0.07,"physicsFriction":0.8,"physicsRestitution":0
,"positions":[-0.0542,-0.0383,-0.0939,0,0.115,0,-0.0542,-0.0383,0.0939,-0.0542,-0.0383,-0.0939,0.1084,-0.0383,0,0,0.115,0,-0.0542,-0.0383,-0.0939,-0.0542,-0.0383,0.0939,0.1084,-0.0383,0,-0.0542,-0.0383,0.0939,0,0.115,0,0.1084,-0.0383,0]
,"normals":[-0.943,0.333,0,-0.943,0.333,0,-0.943,0.333,0,0.471,0.333,-0.816,0.471,0.333,-0.816,0.471,0.333,-0.816,0,-1,0,0,-1,0,0,-1,0,0.471,0.333,0.816,0.471,0.333,0.816,0.471,0.333,0.816]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11]
}
,{"name":"d6_collider","id":"d6_collider","billboardMode":0,"position":[0.4,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false,"physicsImpostor":8,"physicsMass":0.085,"physicsFriction":0.8,"physicsRestitution":0
,"positions":[-0.0664,-0.0664,0.0664,0.0664,-0.0664,-0.0664,-0.0664,-0.0664,-0.0664,0.0664,-0.0664,-0.0664,-0.0664,0.0664,-0.0664,-0.0664,-0.0664,-0.0664,-0.0664,0.0664,-0.0664,-0.0664,-0.0664,0.0664,-0.0664,-0.0664,-0.0664,0.0664,0.0664,-0.0664,0.0664,-0.0664,0.0664,0.0664,0.0664,0.0664,0.0664,-0.0664,0.0664,-0.0664,0.0664,0.0664,0.0664,0.0664,0.0664,-0.0664,0.0664,0.0664,0.0664,0.0664,-0.0664
,0.0664,0.0664,0.0664,0.0664,-0.0664,0.0664,0.0664,-0.0664,-0.0664,0.0664,0.0664,-0.0664,-0.0664,0.0664,-0.0664,-0.0664,0.0664,0.0664,-0.0664,-0.0664,0.0664,0.0664,-0.0664,-0.0664,0.0664,-0.0664,0.0664,-0.0664,-0.0664,0.0664,-0.0664,0.0664,0.0664,-0.0664,0.0664,-0.0664,0.0664,0.0664,-0.0664]
,"normals":[0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0
,0,1,0,0,-1,0,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,0,18,1,19,20,4,21,22,23,9,24,10,25,26,13,27,28,29]
}
,{"name":"d8_collider","id":"d8_collider","billboardMode":0,"position":[0.2,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false,"physicsImpostor":8,"physicsMass":0.082,"physicsFriction":0.8,"physicsRestitution":0
,"positions":[0,0.1,0,0.1,0,0,0,0,0.1,0,0.1,0,0,0,0.1,-0.1,0,0,0,0.1,0,-0.1,0,0,0,0,-0.1,0,0.1,0,0,0,-0.1,0.1,0,0,0,-0.1,0,0,0,0.1,0.1,0,0,0,-0.1,0,-0.1,0,0
,0,0,0.1,0,-0.1,0,0,0,-0.1,-0.1,0,0,0,-0.1,0,0.1,0,0,0,0,-0.1]
,"normals":[0.577,0.577,0.577,0.577,0.577,0.577,0.577,0.577,0.577,-0.577,0.577,0.577,-0.577,0.577,0.577,-0.577,0.577,0.577,-0.577,0.577,-0.577,-0.577,0.577,-0.577,-0.577,0.577,-0.577,0.577,0.577,-0.577,0.577,0.577,-0.577,0.577,0.577,-0.577,0.577,-0.577,0.577,0.577,-0.577,0.577,0.577,-0.577,0.577,-0.577,-0.577,0.577,-0.577,-0.577,0.577
,-0.577,-0.577,0.577,-0.577,-0.577,-0.577,-0.577,-0.577,-0.577,-0.577,-0.577,-0.577,0.577,-0.577,-0.577,0.577,-0.577,-0.577,0.577,-0.577,-0.577]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23]
}
,{"name":"d10_collider","id":"d10_collider","billboardMode":0,"position":[0,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false,"physicsImpostor":8,"physicsMass":0.082,"physicsFriction":0.8,"physicsRestitution":0
,"positions":[0,0.0106,0.0939,0.0893,0.0106,0.029,0.0552,-0.0106,0.076,0.0893,0.0106,0.029,0.0552,0.0106,-0.076,0.0893,-0.0106,-0.029,0.0552,0.0106,-0.076,-0.0552,0.0106,-0.076,0,-0.0106,-0.0939,-0.0552,0.0106,-0.076,-0.0893,0.0106,0.029,-0.0893,-0.0106,-0.029,-0.0893,0.0106,0.029,0,0.0106,0.0939,-0.0552,-0.0106,0.076,0.0893,-0.0106,-0.029,0,-0.0106,-0.0939
,0,-0.1,0,0.0893,-0.0106,-0.029,0.0552,-0.0106,0.076,0.0893,0.0106,0.029,0.0552,-0.0106,0.076,-0.0552,-0.0106,0.076,0,0.0106,0.0939,-0.0552,-0.0106,0.076,-0.0893,-0.0106,-0.029,-0.0893,0.0106,0.029,-0.0893,-0.0106,-0.029,0,-0.0106,-0.0939,-0.0552,0.0106,-0.076,0,0.1,0,0.0893,0.0106,0.029,0,0.1,0,0.0552,0.0106,-0.076
,0,0.1,0,-0.0552,0.0106,-0.076,0,0.1,0,-0.0893,0.0106,0.029,0,0.1,0,0,0.0106,0.0939,0.0893,-0.0106,-0.029,0.0552,0.0106,-0.076,0,-0.0106,-0.0939,0.0893,-0.0106,-0.029,0,-0.1,0,0.0552,-0.0106,0.076,0.0552,-0.0106,0.076,0,-0.1,0,-0.0552,-0.0106,0.076,-0.0552,-0.0106,0.076,0,-0.1,0
,-0.0893,-0.0106,-0.029,-0.0893,-0.0106,-0.029,0,-0.1,0,0,-0.0106,-0.0939]
,"normals":[0.448,0.647,0.617,0.448,0.647,0.617,0.448,0.647,0.617,0.725,0.647,-0.236,0.725,0.647,-0.236,0.725,0.647,-0.236,0,0.647,-0.762,0,0.647,-0.762,0,0.647,-0.762,-0.725,0.647,-0.236,-0.725,0.647,-0.236,-0.725,0.647,-0.236,-0.448,0.647,0.617,-0.448,0.647,0.617,-0.448,0.647,0.617,0.448,-0.647,-0.617,0.448,-0.647,-0.617
,0.448,-0.647,-0.617,0.725,-0.647,0.236,0.725,-0.647,0.236,0.725,-0.647,0.236,0,-0.647,0.762,0,-0.647,0.762,0,-0.647,0.762,-0.725,-0.647,0.236,-0.725,-0.647,0.236,-0.725,-0.647,0.236,-0.448,-0.647,-0.617,-0.448,-0.647,-0.617,-0.448,-0.647,-0.617,0.448,0.647,0.617,0.725,0.647,-0.236,0.725,0.647,-0.236,0,0.647,-0.762
,0,0.647,-0.762,-0.725,0.647,-0.236,-0.725,0.647,-0.236,-0.448,0.647,0.617,-0.448,0.647,0.617,-0.448,0.647,0.617,0.448,-0.647,-0.617,0.448,-0.647,-0.617,0.448,-0.647,-0.617,0.725,-0.647,0.236,0.725,-0.647,0.236,0.725,-0.647,0.236,0,-0.647,0.762,0,-0.647,0.762,0,-0.647,0.762,-0.725,-0.647,0.236,-0.725,-0.647,0.236
,-0.725,-0.647,0.236,-0.448,-0.647,-0.617,-0.448,-0.647,-0.617,-0.448,-0.647,-0.617]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,0,30,1,31,32,4,33,34,7,35,36,10,37,38,39,40,41,42,43,44,45
,46,47,48,49,50,51,52,53,54]
}
,{"name":"d12_collider","id":"d12_collider","billboardMode":0,"position":[-0.2,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false,"physicsImpostor":8,"physicsMass":0.09,"physicsFriction":0.8,"physicsRestitution":0
,"positions":[-0.0577,-0.0577,0.0577,0,-0.0934,-0.0357,-0.0577,-0.0577,-0.0577,0.0357,0,-0.0934,0,0.0934,-0.0357,-0.0577,0.0577,-0.0577,0,-0.0934,0.0357,0.0934,-0.0357,0,0.0577,-0.0577,-0.0577,-0.0934,0.0357,0,0,0.0934,-0.0357,0,0.0934,0.0357,0.0357,0,-0.0934,-0.0357,0,-0.0934,-0.0577,-0.0577,-0.0577,-0.0577,0.0577,-0.0577,-0.0934,-0.0357,0
,-0.0577,-0.0577,-0.0577,-0.0357,0,0.0934,0,0.0934,0.0357,0.0577,0.0577,0.0577,-0.0934,-0.0357,0,-0.0577,0.0577,0.0577,-0.0357,0,0.0934,0,0.0934,-0.0357,0.0934,0.0357,0,0.0577,0.0577,0.0577,0.0357,0,-0.0934,0.0577,-0.0577,-0.0577,0.0934,-0.0357,0,0.0577,-0.0577,0.0577,0.0357,0,0.0934,0.0577,0.0577,0.0577,0,-0.0934,0.0357
,-0.0357,0,0.0934,0.0357,0,0.0934,-0.0934,-0.0357,0,0,-0.0934,0.0357,-0.0357,0,-0.0934,0.0577,0.0577,-0.0577,0,-0.0934,-0.0357,0.0577,-0.0577,0.0577,-0.0577,0.0577,0.0577,-0.0577,0.0577,-0.0577,0,0.0934,-0.0357,-0.0577,-0.0577,-0.0577,0,-0.0934,-0.0357,0.0577,-0.0577,-0.0577,0.0577,-0.0577,-0.0577,0.0357,0,-0.0934,-0.0577,-0.0577,-0.0577
,-0.0577,-0.0577,-0.0577,-0.0357,0,-0.0934,-0.0577,0.0577,-0.0577,-0.0577,0.0577,-0.0577,-0.0934,0.0357,0,0.0357,0,0.0934,-0.0577,0.0577,0.0577,0,0.0934,0.0357,-0.0357,0,0.0934,-0.0577,-0.0577,0.0577,-0.0934,-0.0357,0,-0.0934,-0.0357,0,-0.0934,0.0357,0,0.0577,0.0577,0.0577,0,0.0934,0.0357,0,0.0934,-0.0357,0,0.0934,-0.0357
,0.0577,0.0577,-0.0577,0.0934,0.0357,0,0.0577,0.0577,-0.0577,0.0934,-0.0357,0,0.0577,0.0577,-0.0577,0.0357,0,-0.0934,0.0934,-0.0357,0,0.0577,0.0577,0.0577,0.0934,0.0357,0,0.0934,-0.0357,0,0.0934,-0.0357,0,0.0577,0.0577,0.0577,0.0357,0,0.0934,0.0577,-0.0577,0.0577,0,-0.0934,0.0357,0,-0.0934,0.0357,-0.0577,-0.0577,0.0577
,-0.0357,0,0.0934]
,"normals":[-0.526,-0.851,0,-0.526,-0.851,0,-0.526,-0.851,0,0,0.526,-0.851,0,0.526,-0.851,0,0.526,-0.851,0.526,-0.851,0,0.526,-0.851,0,0.526,-0.851,0,-0.526,0.851,0,-0.526,0.851,0,-0.526,0.851,0,0,-0.526,-0.851,0,-0.526,-0.851,0,-0.526,-0.851,-0.851,0,-0.526,-0.851,0,-0.526
,-0.851,0,-0.526,0,0.526,0.851,0,0.526,0.851,0,0.526,0.851,-0.851,0,0.526,-0.851,0,0.526,-0.851,0,0.526,0.526,0.851,0,0.526,0.851,0,0.526,0.851,0,0.851,0,-0.526,0.851,0,-0.526,0.851,0,-0.526,0.851,0,0.526,0.851,0,0.526,0.851,0,0.526,0,-0.526,0.851
,0,-0.526,0.851,0,-0.526,0.851,-0.526,-0.851,0,-0.526,-0.851,0,0,0.526,-0.851,0,0.526,-0.851,0.526,-0.851,0,0.526,-0.851,0,-0.526,0.851,0,-0.526,0.851,0,-0.526,0.851,0,0,-0.526,-0.851,0,-0.526,-0.851,0,-0.526,-0.851,0,-0.526,-0.851,0,-0.526,-0.851,0,-0.526,-0.851
,-0.851,0,-0.526,-0.851,0,-0.526,-0.851,0,-0.526,-0.851,0,-0.526,-0.851,0,-0.526,0,0.526,0.851,0,0.526,0.851,0,0.526,0.851,-0.851,0,0.526,-0.851,0,0.526,-0.851,0,0.526,-0.851,0,0.526,-0.851,0,0.526,0.526,0.851,0,0.526,0.851,0,0.526,0.851,0,0.526,0.851,0
,0.526,0.851,0,0.851,0,-0.526,0.851,0,-0.526,0.851,0,-0.526,0.851,0,-0.526,0.851,0,-0.526,0.851,0,-0.526,0.851,0,0.526,0.851,0,0.526,0.851,0,0.526,0.851,0,0.526,0.851,0,0.526,0,-0.526,0.851,0,-0.526,0.851,0,-0.526,0.851,0,-0.526,0.851,0,-0.526,0.851
,0,-0.526,0.851]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,2,36,0,0,37,1,5,38,3,3,39,4,8,40,6
,6,41,7,11,42,9,9,43,44,45,46,47,48,49,50,51,52,53,54,55,16,20,56,18,18,57,58,59,60,61,62,63,22,64,65,66,67,68,25,69,70,71,72,73,74,75,76,77,78,30,79
,80,81,82,83,84,85]
}
,{"name":"d20_collider","id":"d20_collider","billboardMode":0,"position":[-0.4,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1.1109,1.1109,1.1109],"isVisible":true,"isEnabled":true,"pickable":false,"physicsImpostor":8,"physicsMass":0.1,"physicsFriction":0.8,"physicsRestitution":0
,"positions":[0.0851,0,0.0526,0,0.0526,0.0851,0.0526,0.0851,0,0.0526,-0.0851,0,0,-0.0526,0.0851,0.0851,0,-0.0526,0,0.0526,-0.0851,0,-0.0526,-0.0851,-0.0851,0,0.0526,-0.0526,0.0851,0,-0.0526,-0.0851,0,-0.0851,0,-0.0526]
,"normals":[0.851,0,0.526,0,0.526,0.851,0.526,0.851,0,0.526,-0.851,0,0,-0.526,0.851,0.851,0,-0.526,0,0.526,-0.851,0,-0.526,-0.851,-0.851,0,0.526,-0.526,0.851,0,-0.526,-0.851,0,-0.851,0,-0.526]
,"indices":[0,1,2,0,3,4,5,2,6,5,7,3,8,9,1,8,4,10,11,6,9,11,10,7,0,4,1,8,1,4,5,6,7,11,7,6,2,5,0,3,0,5,9,8,11,10,11,8,1,9,2
,6,2,9,4,3,10,7,10,3]
}
,{"name":"d100_collider","id":"d100_collider","billboardMode":0,"position":[-0.6,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false,"physicsImpostor":8,"physicsMass":0.082,"physicsFriction":0.8,"physicsRestitution":0
,"positions":[0,0.0106,0.0939,0.0893,0.0106,0.029,0.0552,-0.0106,0.076,0.0893,0.0106,0.029,0.0552,0.0106,-0.076,0.0893,-0.0106,-0.029,0.0552,0.0106,-0.076,-0.0552,0.0106,-0.076,0,-0.0106,-0.0939,-0.0552,0.0106,-0.076,-0.0893,0.0106,0.029,-0.0893,-0.0106,-0.029,-0.0893,0.0106,0.029,0,0.0106,0.0939,-0.0552,-0.0106,0.076,0.0893,-0.0106,-0.029,0,-0.0106,-0.0939
,0,-0.1,0,0.0893,-0.0106,-0.029,0.0552,-0.0106,0.076,0.0893,0.0106,0.029,0.0552,-0.0106,0.076,-0.0552,-0.0106,0.076,0,0.0106,0.0939,-0.0552,-0.0106,0.076,-0.0893,-0.0106,-0.029,-0.0893,0.0106,0.029,-0.0893,-0.0106,-0.029,0,-0.0106,-0.0939,-0.0552,0.0106,-0.076,0,0.1,0,0.0893,0.0106,0.029,0,0.1,0,0.0552,0.0106,-0.076
,0,0.1,0,-0.0552,0.0106,-0.076,0,0.1,0,-0.0893,0.0106,0.029,0,0.1,0,0,0.0106,0.0939,0.0893,-0.0106,-0.029,0.0552,0.0106,-0.076,0,-0.0106,-0.0939,0.0893,-0.0106,-0.029,0,-0.1,0,0.0552,-0.0106,0.076,0.0552,-0.0106,0.076,0,-0.1,0,-0.0552,-0.0106,0.076,-0.0552,-0.0106,0.076,0,-0.1,0
,-0.0893,-0.0106,-0.029,-0.0893,-0.0106,-0.029,0,-0.1,0,0,-0.0106,-0.0939]
,"normals":[0.448,0.647,0.617,0.448,0.647,0.617,0.448,0.647,0.617,0.725,0.647,-0.236,0.725,0.647,-0.236,0.725,0.647,-0.236,0,0.647,-0.762,0,0.647,-0.762,0,0.647,-0.762,-0.725,0.647,-0.236,-0.725,0.647,-0.236,-0.725,0.647,-0.236,-0.448,0.647,0.617,-0.448,0.647,0.617,-0.448,0.647,0.617,0.448,-0.647,-0.617,0.448,-0.647,-0.617
,0.448,-0.647,-0.617,0.725,-0.647,0.236,0.725,-0.647,0.236,0.725,-0.647,0.236,0,-0.647,0.762,0,-0.647,0.762,0,-0.647,0.762,-0.725,-0.647,0.236,-0.725,-0.647,0.236,-0.725,-0.647,0.236,-0.448,-0.647,-0.617,-0.448,-0.647,-0.617,-0.448,-0.647,-0.617,0.448,0.647,0.617,0.725,0.647,-0.236,0.725,0.647,-0.236,0,0.647,-0.762
,0,0.647,-0.762,-0.725,0.647,-0.236,-0.725,0.647,-0.236,-0.448,0.647,0.617,-0.448,0.647,0.617,-0.448,0.647,0.617,0.448,-0.647,-0.617,0.448,-0.647,-0.617,0.448,-0.647,-0.617,0.725,-0.647,0.236,0.725,-0.647,0.236,0.725,-0.647,0.236,0,-0.647,0.762,0,-0.647,0.762,0,-0.647,0.762,-0.725,-0.647,0.236,-0.725,-0.647,0.236
,-0.725,-0.647,0.236,-0.448,-0.647,-0.617,-0.448,-0.647,-0.617,-0.448,-0.647,-0.617]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,0,30,1,31,32,4,33,34,7,35,36,10,37,38,39,40,41,42,43,44,45
,46,47,48,49,50,51,52,53,54]
}
,{"name":"d4","id":"d4","billboardMode":0,"position":[0.6,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false
,"positions":[-0.0053,0.0999,0,-0.0284,0.0346,0.04,-0.0284,0.0346,-0.04,0.0489,0.0346,0.0046,0.0951,-0.0308,0.0046,0.0258,-0.0308,0.0446,0.0027,0.0999,0.0046,-0.0204,0.0346,0.0446,0.0489,0.0346,-0.0046,0.0258,-0.0308,-0.0446,0.0951,-0.0308,-0.0046,-0.0515,-0.0308,0.08,-0.0515,-0.0308,0,-0.0204,0.0346,-0.0446,-0.0435,-0.0308,-0.0847,-0.0435,-0.0308,0.0847,0.0231,-0.0383,-0.04
,-0.0462,-0.0383,-0.08,-0.0462,-0.0383,0,-0.0515,-0.0308,-0.08,0.0231,-0.0383,0.04,-0.0462,-0.0383,0.08,0.0924,-0.0383,0,0,0.1045,0,-0.0024,0.1015,0.0042,0.0027,0.0999,-0.0046,0,0.1045,0,-0.0024,0.1015,-0.0042,0,0.1045,0,0.0049,0.1015,0,0.0985,-0.0348,0,0.0973,-0.0292,0,0.0985,-0.0348,0,0.0949,-0.0361,-0.0042
,0.0985,-0.0348,0,0.0949,-0.0361,0.0042,-0.0492,-0.0348,0.0853,-0.0511,-0.0361,0.08,-0.0492,-0.0348,0.0853,-0.0486,-0.0292,0.0843,-0.0492,-0.0348,0.0853,-0.0438,-0.0361,0.0843,-0.0492,-0.0348,-0.0853,-0.0438,-0.0361,-0.0843,-0.0492,-0.0348,-0.0853,-0.0486,-0.0292,-0.0843,-0.0492,-0.0348,-0.0853,-0.0511,-0.0361,-0.08,-0.0255,0.0361,-0.0442,-0.0255,0.0361,-0.0442,0.0511,0.0361,0
,0.0973,-0.0292,0,0.0511,0.0361,0,-0.0255,0.0361,0.0442,-0.0255,0.0361,0.0442,0.0255,-0.0361,0.0442,0.0255,-0.0361,0.0442,-0.0511,-0.0361,0,-0.0511,-0.0361,-0.08,-0.0511,-0.0361,0,0.0255,-0.0361,-0.0442,0.0255,-0.0361,-0.0442,-0.0024,0.1015,-0.0042,0.0049,0.1015,0,0.0511,0.0361,0,-0.0024,0.1015,0.0042,0.0949,-0.0361,0.0042,-0.0511,-0.0361,0.08
,-0.0511,-0.0361,0,0.0949,-0.0361,-0.0042,-0.0024,0.1015,-0.0042,0.0049,0.1015,0,0,0.1045,0,-0.0024,0.1015,0.0042,0,0.1045,0,0.0949,-0.0361,-0.0042,0.0949,-0.0361,0.0042,0.0985,-0.0348,0,0.0973,-0.0292,0,0.0985,-0.0348,0,-0.0486,-0.0292,0.0843,-0.0438,-0.0361,0.0843,-0.0492,-0.0348,0.0853,-0.0511,-0.0361,0.08,-0.0492,-0.0348,0.0853
,-0.0486,-0.0292,-0.0843,-0.0511,-0.0361,-0.08,-0.0492,-0.0348,-0.0853,-0.0438,-0.0361,-0.0843,-0.0492,-0.0348,-0.0853,-0.0255,0.0361,-0.0442,-0.0486,-0.0292,-0.0843,0.0973,-0.0292,0,-0.0255,0.0361,0.0442,-0.0486,-0.0292,0.0843,0.0255,-0.0361,0.0442,-0.0438,-0.0361,0.0843,-0.0511,-0.0361,-0.08,0.0255,-0.0361,-0.0442,-0.0438,-0.0361,-0.0843,-0.0255,0.0361,-0.0442,0.0049,0.1015,0
,0.0511,0.0361,0,-0.0024,0.1015,0.0042,-0.0255,0.0361,0.0442,0.0949,-0.0361,0.0042,0.0255,-0.0361,0.0442,-0.0511,-0.0361,0.08,-0.0511,-0.0361,0,0.0949,-0.0361,-0.0042,0.0255,-0.0361,-0.0442]
,"normals":[-0.815,0.579,0,-0.886,0.425,0.183,-0.886,0.425,-0.183,0.602,0.425,0.676,0.682,0.191,0.706,0.496,0.127,0.859,0.408,0.579,0.706,0.285,0.425,0.859,0.602,0.425,-0.676,0.496,0.127,-0.859,0.682,0.191,-0.706,-0.952,0.191,0.237,-0.992,0.127,0,0.285,0.425,-0.859,0.271,0.191,-0.943,0.271,0.191,0.943,0.106,-0.977,-0.183
,-0.137,-0.962,-0.237,-0.211,-0.977,0,-0.952,0.191,-0.237,0.106,-0.977,0.183,-0.137,-0.962,0.237,0.274,-0.962,0,0,1,0,-0.346,0.722,0.599,0.408,0.579,-0.706,0,1,0,-0.346,0.722,-0.599,0,1,0,0.692,0.722,0,0.943,-0.333,0,0.911,0.412,0,0.943,-0.333,0,0.565,-0.567,-0.599
,0.943,-0.333,0,0.565,-0.567,0.599,-0.471,-0.333,0.816,-0.802,-0.567,0.19,-0.471,-0.333,0.816,-0.456,0.412,0.789,-0.471,-0.333,0.816,0.236,-0.567,0.789,-0.471,-0.333,-0.816,0.236,-0.567,-0.789,-0.471,-0.333,-0.816,-0.456,0.412,-0.789,-0.471,-0.333,-0.816,-0.802,-0.567,-0.19,-0.408,0.577,-0.707,-0.408,0.577,-0.707,0.816,0.577,0
,0.911,0.412,0,0.816,0.577,0,-0.408,0.577,0.707,-0.408,0.577,0.707,0.408,-0.577,0.707,0.408,-0.577,0.707,-0.816,-0.577,0,-0.802,-0.567,-0.19,-0.816,-0.577,0,0.408,-0.577,-0.707,0.408,-0.577,-0.707,-0.346,0.722,-0.599,0.692,0.722,0,0.816,0.577,0,-0.346,0.722,0.599,0.565,-0.567,0.599,-0.802,-0.567,0.19
,-0.816,-0.577,0,0.565,-0.567,-0.599,-0.346,0.722,-0.599,0.692,0.722,0,0,1,0,-0.346,0.722,0.599,0,1,0,0.565,-0.567,-0.599,0.565,-0.567,0.599,0.943,-0.333,0,0.911,0.412,0,0.943,-0.333,0,-0.456,0.412,0.789,0.236,-0.567,0.789,-0.471,-0.333,0.816,-0.802,-0.567,0.19,-0.471,-0.333,0.816
,-0.456,0.412,-0.789,-0.802,-0.567,-0.19,-0.471,-0.333,-0.816,0.236,-0.567,-0.789,-0.471,-0.333,-0.816,-0.408,0.577,-0.707,-0.456,0.412,-0.789,0.911,0.412,0,-0.408,0.577,0.707,-0.456,0.412,0.789,0.408,-0.577,0.707,0.236,-0.567,0.789,-0.802,-0.567,-0.19,0.408,-0.577,-0.707,0.236,-0.567,-0.789,-0.408,0.577,-0.707,0.692,0.722,0
,0.816,0.577,0,-0.346,0.722,0.599,-0.408,0.577,0.707,0.565,-0.567,0.599,0.408,-0.577,0.707,-0.802,-0.567,0.19,-0.816,-0.577,0,0.565,-0.567,-0.599,0.408,-0.577,-0.707]
,"tangents":[0.002,0.003,-1,1,-0.16,0.089,-0.983,1,0.163,-0.084,-0.983,1,-0.58,0.815,0.003,1,-0.443,0.876,0.19,1,-0.502,0.849,0.164,1,-0.684,0.706,-0.184,1,-0.637,0.753,-0.162,1,0.174,0.756,0.631,1,0.389,0.852,0.351,1,0.287,0.817,0.499,1,-0.228,0.068,-0.971,1,0,0.001
,-1,1,0.287,0.817,0.5,1,0.382,0.878,0.288,1,-0.58,0.815,0.001,1,0.863,0.181,-0.471,1,0.865,0.001,-0.502,1,0.837,-0.181,-0.516,1,0.228,-0.068,-0.971,1,0.866,0,-0.5,1,0.847,-0.238,-0.475,1,0.835,0.238,-0.496,1,0,0,-1,1,-0.386,0.473,-0.792,1
,0.178,0.708,0.683,1,0.107,0,0.994,1,0.236,0.685,0.689,1,-0.917,0,-0.398,1,-0.715,0.686,-0.135,1,0.289,0.817,0.5,1,-0.282,0.623,0.73,1,0.269,0.76,-0.592,1,0.562,0.796,-0.223,1,0.305,0.861,0.407,1,-0.033,0.71,0.703,1,-0.843,-0.102,-0.528,1,-0.234,0.006
,-0.972,1,-0.58,0.814,-0.002,1,-0.496,0.619,-0.609,1,0.646,-0.761,0.063,1,0.878,-0.223,-0.423,1,0.194,0.864,-0.465,1,0.618,0.714,-0.328,1,0.842,0.104,-0.529,1,0.723,-0.345,-0.598,1,0.866,0,-0.5,1,0.528,-0.522,-0.67,1,0.552,-0.461,-0.695,1,0.288,0.816,0.501,1
,-0.326,0.462,0.825,1,-0.408,0.902,0.144,1,-0.577,0.816,0.005,1,-0.556,0.457,-0.694,1,-0.553,0.46,-0.695,1,0.866,0.001,-0.5,1,-0.255,0.671,0.696,1,0.477,-0.674,-0.565,1,0.234,-0.005,-0.972,1,0,-0.001,-1,1,0.726,0.675,-0.132,1,0.727,0.674,-0.131,1,0.387,-0.472
,-0.792,1,-0.277,0.266,0.923,1,-0.577,0.816,0.005,1,-0.665,0.262,-0.699,1,0.806,0.222,-0.549,1,0.474,-0.796,-0.377,1,0,-0.001,-1,1,0.738,0.672,0.06,1,0.387,-0.472,-0.792,1,-0.277,0.266,0.923,1,0.107,0,0.994,1,-0.665,0.262,-0.699,1,-0.917,0,-0.398,1
,0.738,0.672,0.06,1,0.806,0.222,-0.549,1,0.269,0.76,-0.592,1,-0.408,0.902,0.144,1,0.305,0.861,0.407,1,-0.722,0.347,-0.598,1,-0.426,0.669,0.609,1,-0.58,0.814,-0.002,1,0.474,-0.796,-0.377,1,0.646,-0.761,0.063,1,0.325,0.902,0.284,1,0.234,-0.005,-0.972,1,0.842,0.104
,-0.529,1,0.844,0.522,-0.122,1,0.866,0,-0.5,1,0.288,0.816,0.501,1,0.325,0.902,0.284,1,-0.408,0.902,0.144,1,-0.553,0.46,-0.695,1,-0.722,0.347,-0.598,1,-0.255,0.671,0.696,1,-0.426,0.669,0.609,1,0.234,-0.005,-0.972,1,0.727,0.674,-0.131,1,0.844,0.522,-0.122,1
,0.288,0.816,0.501,1,-0.277,0.266,0.923,1,-0.577,0.816,0.005,1,-0.665,0.262,-0.699,1,-0.553,0.46,-0.695,1,0.806,0.222,-0.549,1,-0.255,0.671,0.696,1,0.474,-0.796,-0.377,1,0,-0.001,-1,1,0.738,0.672,0.06,1,0.727,0.674,-0.131,1]
,"uvs":[0.882,0.427,0.835,0.349,0.93,0.348,0.859,0.601,0.767,0.599,0.812,0.519,0.95,0.6,0.906,0.519,0.512,0.788,0.417,0.789,0.465,0.71,0.791,0.268,0.882,0.267,0.465,0.87,0.373,0.868,0.859,0.441,0.364,0.848,0.316,0.927,0.27,0.849,0.974,0.268,0.316,0.767,0.225,0.769,0.408,0.769,0.882,0.435,0.877,0.43
,0.556,0.868,0.563,0.872,0.557,0.875,0.957,0.604,0.95,0.606,0.465,0.702,0.47,0.706,0.415,0.765,0.414,0.771,0.76,0.603,0.761,0.596,0.784,0.264,0.79,0.262,0.859,0.433,0.864,0.437,0.218,0.765,0.225,0.763,0.366,0.873,0.368,0.866,0.981,0.264,0.979,0.271,0.316,0.935,0.311,0.931,0.935,0.351,0.465,0.876
,0.517,0.785,0.766,0.605,0.859,0.607,0.911,0.516,0.83,0.352,0.316,0.761,0.806,0.516,0.264,0.852,0.974,0.262,0.882,0.26,0.412,0.786,0.369,0.852,0.887,0.43,0.562,0.866,0.859,0.607,0.956,0.597,0.409,0.763,0.219,0.771,0.882,0.26,0.46,0.706,0.887,0.43,0.562,0.866,0.563,0.872,0.956,0.597,0.957,0.604
,0.46,0.706,0.409,0.763,0.415,0.765,0.766,0.605,0.76,0.603,0.785,0.271,0.854,0.437,0.859,0.433,0.219,0.771,0.218,0.765,0.373,0.875,0.974,0.262,0.981,0.264,0.322,0.931,0.316,0.935,0.465,0.876,0.373,0.875,0.766,0.605,0.83,0.352,0.785,0.271,0.806,0.516,0.854,0.437,0.974,0.262,0.369,0.852,0.322,0.931
,0.465,0.876,0.562,0.866,0.859,0.607,0.956,0.597,0.83,0.352,0.409,0.763,0.806,0.516,0.219,0.771,0.882,0.26,0.46,0.706,0.369,0.852]
,"indices":[0,1,2,3,4,5,6,3,7,8,9,10,1,11,12,13,14,9,7,5,15,2,1,12,8,13,9,16,17,18,7,3,5,2,12,19,20,18,21,20,16,18,22,16,20,0,23,24,25,26,27
,6,28,29,10,30,31,22,32,33,4,34,35,11,36,37,15,38,39,21,40,41,14,42,43,19,44,45,17,46,47,19,48,2,49,14,13,10,50,8,51,3,52,15,53,7,54,11,1,21,55,20
,56,15,5,17,57,18,58,12,59,14,60,9,61,17,16,0,48,62,27,13,25,8,63,25,64,6,29,7,65,6,24,1,0,20,66,22,35,5,4,18,67,21,68,11,37,9,69,10,33,16,22
,25,13,8,0,70,23,25,71,72,6,73,74,10,75,30,22,76,77,4,78,79,11,80,36,15,81,82,21,83,84,14,85,42,19,86,87,17,88,89,19,45,48,90,91,14,10,31,50,92,4,3
,15,39,53,93,94,11,21,41,55,95,96,15,17,47,57,97,19,12,14,43,60,98,99,17,0,2,48,27,100,13,8,50,101,102,3,6,7,53,103,24,104,1,20,55,105,35,106,5,18,57,107
,108,12,11,9,60,109,33,110,16]
}
,{"name":"d6","id":"d6","billboardMode":0,"position":[0.4,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false
,"positions":[-0.0664,0.0584,-0.0584,-0.0664,-0.0584,0.0584,-0.0664,-0.0584,-0.0584,-0.0584,-0.0664,0.0584,0.0584,-0.0664,-0.0584,-0.0584,-0.0664,-0.0584,0.0664,0.0584,-0.0584,0.0664,-0.0584,0.0584,0.0664,0.0584,0.0584,0.0584,-0.0584,0.0664,-0.0584,0.0584,0.0664,0.0584,0.0584,0.0664,-0.0584,0.0664,0.0584,0.0584,0.0664,-0.0584,0.0584,0.0664,0.0584,-0.0584,-0.0584,-0.0664,-0.063,-0.063,-0.063
,-0.0584,-0.0641,-0.0641,-0.063,-0.063,-0.063,-0.0641,-0.0584,-0.0641,-0.063,-0.063,-0.063,-0.0641,-0.0641,-0.0584,0.0584,-0.0584,-0.0664,0.063,-0.063,-0.063,0.0641,-0.0584,-0.0641,0.063,-0.063,-0.063,0.0584,-0.0641,-0.0641,0.0664,-0.0584,-0.0584,0.063,-0.063,-0.063,0.0641,-0.0641,-0.0584,0.063,-0.063,0.063,0.0584,-0.0641,0.0641,0.063,-0.063,0.063,0.0641,-0.0584,0.0641
,0.0584,-0.0664,0.0584,0.063,-0.063,0.063,0.0641,-0.0641,0.0584,-0.0584,-0.0584,0.0664,-0.063,-0.063,0.063,-0.0641,-0.0584,0.0641,-0.063,-0.063,0.063,-0.0584,-0.0641,0.0641,-0.063,-0.063,0.063,-0.0641,-0.0641,0.0584,-0.0584,0.0584,-0.0664,-0.063,0.063,-0.063,-0.0641,0.0584,-0.0641,-0.0584,0.0664,-0.0584,-0.063,0.063,-0.063,-0.0584,0.0641,-0.0641,-0.063,0.063,-0.063
,-0.0641,0.0641,-0.0584,0.0584,0.0584,-0.0664,0.063,0.063,-0.063,0.0584,0.0641,-0.0641,0.063,0.063,-0.063,0.0641,0.0584,-0.0641,0.063,0.063,-0.063,0.0641,0.0641,-0.0584,0.063,0.063,0.063,0.0641,0.0584,0.0641,0.063,0.063,0.063,0.0584,0.0641,0.0641,0.063,0.063,0.063,0.0641,0.0641,0.0584,-0.0664,0.0584,0.0584,-0.063,0.063,0.063,-0.0641,0.0584,0.0641
,-0.063,0.063,0.063,-0.0641,0.0641,0.0584,-0.063,0.063,0.063,-0.0584,0.0641,0.0641,0.0584,-0.0641,0.0641,-0.0584,-0.0641,0.0641,-0.0584,-0.0641,-0.0641,0.0584,-0.0641,-0.0641,0.0641,-0.0641,-0.0584,0.0641,-0.0641,0.0584,-0.0641,-0.0641,-0.0584,-0.0641,-0.0641,0.0584,-0.0641,-0.0584,-0.0641,-0.0641,0.0584,-0.0641,0.0641,-0.0584,-0.0641,0.0641,0.0584,-0.0641,0.0641,-0.0584,0.0641
,0.0641,0.0584,0.0641,-0.0641,0.0641,-0.0584,-0.0641,0.0641,0.0584,0.0641,0.0641,-0.0584,0.0641,0.0641,0.0584,0.0584,0.0641,0.0641,-0.0584,0.0641,0.0641,-0.0584,0.0641,-0.0641,0.0584,0.0641,-0.0641,-0.0641,-0.0584,0.0641,-0.0641,0.0584,0.0641,-0.0641,-0.0584,-0.0641,-0.0641,-0.0641,-0.0584,-0.063,-0.063,-0.063,-0.0584,-0.0641,-0.0641,-0.063,-0.063,-0.063,0.0584,-0.0641,-0.0641
,0.0641,-0.0641,-0.0584,0.063,-0.063,-0.063,0.0641,-0.0584,-0.0641,0.063,-0.063,-0.063,0.0641,-0.0584,0.0641,0.0641,-0.0641,0.0584,0.063,-0.063,0.063,0.0584,-0.0641,0.0641,0.063,-0.063,0.063,-0.0584,-0.0641,0.0641,-0.0641,-0.0641,0.0584,-0.063,-0.063,0.063,-0.0641,-0.0584,0.0641,-0.063,-0.063,0.063,-0.0584,0.0641,-0.0641,-0.0641,0.0641,-0.0584,-0.063,0.063,-0.063
,-0.0641,0.0584,-0.0641,-0.063,0.063,-0.063,0.0641,0.0584,-0.0641,0.0641,0.0641,-0.0584,0.063,0.063,-0.063,0.0584,0.0641,-0.0641,0.063,0.063,-0.063,0.0584,0.0641,0.0641,0.0641,0.0641,0.0584,0.063,0.063,0.063,0.0641,0.0584,0.0641,0.063,0.063,0.063,-0.0641,0.0641,0.0584,-0.0584,0.0641,0.0641,-0.063,0.063,0.063,-0.0641,0.0584,0.0641,-0.063,0.063,0.063
,0.0584,-0.0641,0.0641,-0.0584,-0.0641,0.0641,-0.0584,-0.0641,-0.0641,0.0584,-0.0641,-0.0641,0.0641,-0.0641,-0.0584,0.0641,-0.0641,0.0584,-0.0641,-0.0641,-0.0584,-0.0641,-0.0641,0.0584,-0.0641,-0.0584,-0.0641,-0.0641,0.0584,-0.0641,0.0641,-0.0584,-0.0641,0.0641,0.0584,-0.0641,0.0641,-0.0584,0.0641,0.0641,0.0584,0.0641,-0.0641,0.0641,-0.0584,-0.0641,0.0641,0.0584,0.0641,0.0641,-0.0584
,0.0641,0.0641,0.0584,0.0584,0.0641,0.0641,-0.0584,0.0641,0.0641,-0.0584,0.0641,-0.0641,0.0584,0.0641,-0.0641,-0.0641,-0.0584,0.0641,-0.0641,0.0584,0.0641]
,"normals":[-0.967,0.179,-0.179,-0.967,-0.179,0.179,-0.967,-0.179,-0.179,-0.179,-0.967,0.179,0.179,-0.967,-0.179,-0.179,-0.967,-0.179,0.967,0.179,-0.179,0.967,-0.179,0.179,0.967,0.179,0.179,0.179,-0.179,0.967,-0.179,0.179,0.967,0.179,0.179,0.967,-0.179,0.967,0.179,0.179,0.967,-0.179,0.179,0.967,0.179,-0.179,-0.179,-0.967,-0.577,-0.577,-0.577
,-0.148,-0.699,-0.699,-0.577,-0.577,-0.577,-0.699,-0.148,-0.699,-0.577,-0.577,-0.577,-0.699,-0.699,-0.148,0.179,-0.179,-0.967,0.577,-0.577,-0.577,0.699,-0.148,-0.699,0.577,-0.577,-0.577,0.148,-0.699,-0.699,0.967,-0.179,-0.179,0.577,-0.577,-0.577,0.699,-0.699,-0.148,0.577,-0.577,0.577,0.148,-0.699,0.699,0.577,-0.577,0.577,0.699,-0.148,0.699
,0.179,-0.967,0.179,0.577,-0.577,0.577,0.699,-0.699,0.148,-0.179,-0.179,0.967,-0.577,-0.577,0.577,-0.699,-0.148,0.699,-0.577,-0.577,0.577,-0.148,-0.699,0.699,-0.577,-0.577,0.577,-0.699,-0.699,0.148,-0.179,0.179,-0.967,-0.577,0.577,-0.577,-0.699,0.148,-0.699,-0.179,0.967,-0.179,-0.577,0.577,-0.577,-0.148,0.699,-0.699,-0.577,0.577,-0.577
,-0.699,0.699,-0.148,0.179,0.179,-0.967,0.577,0.577,-0.577,0.148,0.699,-0.699,0.577,0.577,-0.577,0.699,0.148,-0.699,0.577,0.577,-0.577,0.699,0.699,-0.148,0.577,0.577,0.577,0.699,0.148,0.699,0.577,0.577,0.577,0.148,0.699,0.699,0.577,0.577,0.577,0.699,0.699,0.148,-0.967,0.179,0.179,-0.577,0.577,0.577,-0.699,0.148,0.699
,-0.577,0.577,0.577,-0.699,0.699,0.148,-0.577,0.577,0.577,-0.148,0.699,0.699,0.148,-0.699,0.699,-0.148,-0.699,0.699,-0.148,-0.699,-0.699,0.148,-0.699,-0.699,0.699,-0.699,-0.148,0.699,-0.699,0.148,-0.699,-0.699,-0.148,-0.699,-0.699,0.148,-0.699,-0.148,-0.699,-0.699,0.148,-0.699,0.699,-0.148,-0.699,0.699,0.148,-0.699,0.699,-0.148,0.699
,0.699,0.148,0.699,-0.699,0.699,-0.148,-0.699,0.699,0.148,0.699,0.699,-0.148,0.699,0.699,0.148,0.148,0.699,0.699,-0.148,0.699,0.699,-0.148,0.699,-0.699,0.148,0.699,-0.699,-0.699,-0.148,0.699,-0.699,0.148,0.699,-0.699,-0.148,-0.699,-0.699,-0.699,-0.148,-0.577,-0.577,-0.577,-0.148,-0.699,-0.699,-0.577,-0.577,-0.577,0.148,-0.699,-0.699
,0.699,-0.699,-0.148,0.577,-0.577,-0.577,0.699,-0.148,-0.699,0.577,-0.577,-0.577,0.699,-0.148,0.699,0.699,-0.699,0.148,0.577,-0.577,0.577,0.148,-0.699,0.699,0.577,-0.577,0.577,-0.148,-0.699,0.699,-0.699,-0.699,0.148,-0.577,-0.577,0.577,-0.699,-0.148,0.699,-0.577,-0.577,0.577,-0.148,0.699,-0.699,-0.699,0.699,-0.148,-0.577,0.577,-0.577
,-0.699,0.148,-0.699,-0.577,0.577,-0.577,0.699,0.148,-0.699,0.699,0.699,-0.148,0.577,0.577,-0.577,0.148,0.699,-0.699,0.577,0.577,-0.577,0.148,0.699,0.699,0.699,0.699,0.148,0.577,0.577,0.577,0.699,0.148,0.699,0.577,0.577,0.577,-0.699,0.699,0.148,-0.148,0.699,0.699,-0.577,0.577,0.577,-0.699,0.148,0.699,-0.577,0.577,0.577
,0.148,-0.699,0.699,-0.148,-0.699,0.699,-0.148,-0.699,-0.699,0.148,-0.699,-0.699,0.699,-0.699,-0.148,0.699,-0.699,0.148,-0.699,-0.699,-0.148,-0.699,-0.699,0.148,-0.699,-0.148,-0.699,-0.699,0.148,-0.699,0.699,-0.148,-0.699,0.699,0.148,-0.699,0.699,-0.148,0.699,0.699,0.148,0.699,-0.699,0.699,-0.148,-0.699,0.699,0.148,0.699,0.699,-0.148
,0.699,0.699,0.148,0.148,0.699,0.699,-0.148,0.699,0.699,-0.148,0.699,-0.699,0.148,0.699,-0.699,-0.699,-0.148,0.699,-0.699,0.148,0.699]
,"tangents":[0.179,0.984,0.016,1,-0.179,0.984,0.016,1,-0.177,0.984,-0.029,1,-0.016,-0.179,-0.984,1,-0.016,0.179,-0.984,1,0.029,0.177,-0.984,1,0.179,0.016,0.984,1,-0.179,0.016,0.984,1,-0.177,-0.029,0.984,1,-0.016,-0.984,-0.179,1,-0.016,-0.984,0.179,1,0.029,-0.984,0.177,1,0.984,0.179
,0.016,1,0.984,-0.179,0.016,1,0.984,-0.177,-0.029,1,0.984,-0.029,-0.177,1,0.799,-0.252,-0.547,1,0.986,-0.05,-0.158,1,-0.547,0.798,-0.252,1,-0.158,0.986,-0.05,1,0.252,0.547,-0.799,1,0.05,0.158,-0.986,1,0.984,0.016,0.179,1,0.797,0.244,0.553,1,0.714,0.107,0.692,1
,-0.244,0.553,-0.797,1,-0.107,0.692,-0.714,1,0.177,-0.029,0.984,1,0.547,-0.252,0.799,1,0.158,-0.05,0.986,1,-0.244,-0.797,-0.553,1,-0.107,-0.714,-0.692,1,-0.553,0.244,0.797,1,-0.692,0.107,0.714,1,0.029,-0.177,-0.984,1,0.252,-0.547,-0.799,1,0.05,-0.158,-0.986,1,0.029,-0.984
,-0.177,1,0.252,-0.798,-0.547,1,0.05,-0.986,-0.158,1,-0.244,-0.553,-0.797,1,-0.107,-0.692,-0.714,1,-0.553,0.797,0.244,1,-0.692,0.714,0.107,1,0.984,0.016,-0.179,1,0.797,0.244,-0.553,1,0.714,0.107,-0.692,1,0.984,0.177,-0.029,1,0.799,0.547,-0.252,1,0.986,0.158,-0.05,1
,0.553,0.797,0.244,1,0.692,0.714,0.107,1,0.984,-0.029,0.177,1,0.799,-0.252,0.547,1,0.986,-0.05,0.158,1,0.553,0.244,0.797,1,0.692,0.107,0.714,1,0.797,-0.553,0.244,1,0.714,-0.692,0.107,1,0.252,-0.798,0.547,1,0.05,-0.986,0.158,1,0.799,-0.547,-0.252,1,0.986,-0.158
,-0.05,1,-0.547,-0.252,0.799,1,-0.158,-0.05,0.986,1,0.177,0.984,-0.029,1,0.547,0.799,-0.252,1,0.158,0.986,-0.05,1,0.797,0.553,0.244,1,0.714,0.692,0.107,1,-0.244,-0.797,0.553,1,-0.107,-0.714,0.692,1,0.111,-0.691,-0.714,1,0.111,-0.714,-0.691,1,0.111,0.691,-0.714,1
,0.985,0.04,0.168,1,-0.04,0.168,-0.985,1,-0.168,0.04,0.985,1,-0.691,0.714,-0.111,1,-0.04,-0.168,-0.985,1,0.714,-0.111,-0.691,1,0.168,0.985,0.04,1,0.691,-0.111,0.714,1,0.714,-0.111,0.691,1,-0.04,-0.985,-0.168,1,-0.691,-0.111,0.714,1,0.714,0.691,-0.111,1,0.691,0.714
,-0.111,1,0.168,0.04,0.985,1,0.714,-0.691,-0.111,1,0.111,-0.714,0.691,1,0.985,0.168,0.04,1,0.985,0.04,-0.168,1,0.985,-0.168,0.04,1,-0.168,0.985,0.04,1,-0.04,-0.985,0.168,1,0.714,-0.111,-0.691,1,-0.691,0.714,-0.111,1,-0.547,0.798,-0.252,1,0.111,0.691,-0.714,1
,0.252,0.547,-0.799,1,0.985,0.04,0.168,1,-0.04,0.168,-0.985,1,-0.244,0.553,-0.797,1,0.691,-0.111,0.714,1,0.547,-0.252,0.799,1,-0.04,-0.985,-0.168,1,-0.168,0.04,0.985,1,-0.553,0.244,0.797,1,0.111,-0.691,-0.714,1,0.252,-0.547,-0.799,1,0.111,-0.714,-0.691,1,-0.04,-0.168
,-0.985,1,-0.244,-0.553,-0.797,1,-0.168,0.985,0.04,1,-0.553,0.797,0.244,1,0.985,0.04,-0.168,1,0.714,0.691,-0.111,1,0.799,0.547,-0.252,1,0.168,0.985,0.04,1,0.553,0.797,0.244,1,0.714,-0.111,0.691,1,0.168,0.04,0.985,1,0.553,0.244,0.797,1,0.985,-0.168,0.04,1
,0.797,-0.553,0.244,1,0.111,-0.714,0.691,1,0.714,-0.691,-0.111,1,0.799,-0.547,-0.252,1,-0.691,-0.111,0.714,1,-0.547,-0.252,0.799,1,0.691,0.714,-0.111,1,0.985,0.168,0.04,1,0.797,0.553,0.244,1,-0.04,-0.985,0.168,1,-0.244,-0.797,0.553,1,0.111,-0.691,-0.714,1,0.111,-0.714
,-0.691,1,0.111,0.691,-0.714,1,0.985,0.04,0.168,1,-0.04,0.168,-0.985,1,-0.168,0.04,0.985,1,-0.691,0.714,-0.111,1,-0.04,-0.168,-0.985,1,0.714,-0.111,-0.691,1,0.168,0.985,0.04,1,0.691,-0.111,0.714,1,0.714,-0.111,0.691,1,-0.04,-0.985,-0.168,1,-0.691,-0.111,0.714,1
,0.714,0.691,-0.111,1,0.691,0.714,-0.111,1,0.168,0.04,0.985,1,0.714,-0.691,-0.111,1,0.111,-0.714,0.691,1,0.985,0.168,0.04,1,0.985,0.04,-0.168,1,0.985,-0.168,0.04,1,-0.168,0.985,0.04,1,-0.04,-0.985,0.168,1]
,"uvs":[0.449,0.163,0.315,0.295,0.315,0.161,0.164,0.295,0.298,0.162,0.298,0.296,0.013,0.143,0.147,0.01,0.147,0.144,0.449,0.013,0.315,0.146,0.315,0.012,0.013,0.294,0.147,0.161,0.147,0.295,0.164,0.011,0.158,0.005,0.164,0.004,0.309,0.155,0.315,0.154,0.304,0.302,0.298,0.303,0.298,0.012,0.304,0.006,0.305,0.012
,0.304,0.156,0.305,0.162,0.013,0.009,0.007,0.003,0.013,0.002,0.455,0.007,0.456,0.013,0.153,0.004,0.154,0.01,0.164,0.161,0.158,0.155,0.164,0.154,0.449,0.147,0.455,0.153,0.449,0.154,0.158,0.301,0.157,0.295,0.309,0.301,0.308,0.296,0.164,0.145,0.158,0.151,0.157,0.145,0.013,0.16,0.007,0.154,0.013,0.153
,0.455,0.156,0.456,0.162,0.298,0.146,0.304,0.152,0.298,0.153,0.007,0.149,0.006,0.143,0.153,0.155,0.154,0.161,0.309,0.006,0.314,0.005,0.153,0.301,0.147,0.302,0.153,0.15,0.147,0.151,0.449,0.296,0.455,0.303,0.449,0.304,0.007,0.3,0.006,0.294,0.309,0.152,0.308,0.146,0.157,0.161,0.456,0.147,0.305,0.296
,0.298,0.005,0.298,0.155,0.147,0.003,0.308,0.161,0.164,0.302,0.157,0.011,0.449,0.155,0.006,0.009,0.305,0.147,0.449,0.006,0.154,0.145,0.006,0.16,0.456,0.297,0.012,0.15,0.154,0.295,0.308,0.011,0.012,0.301,0.164,0.152,0.147,0.154,0.314,0.302,0.314,0.153,0.157,0.011,0.308,0.161,0.309,0.155,0.305,0.296
,0.304,0.302,0.298,0.005,0.298,0.155,0.304,0.156,0.006,0.009,0.007,0.003,0.449,0.006,0.147,0.003,0.153,0.004,0.157,0.161,0.158,0.155,0.456,0.147,0.164,0.302,0.158,0.301,0.314,0.302,0.309,0.301,0.164,0.152,0.006,0.16,0.007,0.154,0.449,0.155,0.455,0.156,0.305,0.147,0.012,0.15,0.007,0.149,0.147,0.154
,0.153,0.155,0.308,0.011,0.154,0.295,0.153,0.301,0.154,0.145,0.153,0.15,0.456,0.297,0.012,0.301,0.007,0.3,0.314,0.153,0.309,0.152,0.157,0.161,0.456,0.147,0.305,0.296,0.298,0.005,0.298,0.155,0.147,0.003,0.308,0.161,0.164,0.302,0.157,0.011,0.449,0.155,0.006,0.009,0.305,0.147,0.449,0.006,0.154,0.145
,0.006,0.16,0.456,0.297,0.012,0.15,0.154,0.295,0.308,0.011,0.012,0.301,0.164,0.152,0.147,0.154,0.314,0.302,0.314,0.153]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,2,18,19,5,20,21,22,23,24,4,25,26,27,28,29,9,30,31,7,32,33,34,35,36,37,38,39,3,40,41,1,42,43
,44,45,46,47,48,49,0,50,51,52,53,54,6,55,56,13,57,58,11,59,60,14,61,62,8,63,64,65,66,67,12,68,69,10,70,71,3,72,34,73,9,31,4,74,5,75,15,17,34,76,4
,77,27,29,1,78,2,79,5,21,44,80,15,81,2,19,6,82,27,83,22,24,11,84,9,85,7,33,12,86,47,87,0,51,8,88,6,89,13,58,10,90,11,91,14,62,52,92,44,93,47,49
,65,94,1,95,37,39,22,44,15,0,65,1,3,34,4,6,27,7,9,37,10,12,47,13,15,96,16,2,97,98,5,99,100,22,101,23,4,102,103,27,104,105,9,106,30,7,107,108,34,109,110
,37,111,38,3,112,113,1,114,115,44,116,45,47,117,118,0,119,120,52,121,53,6,122,123,13,124,125,11,126,59,14,127,128,8,129,130,65,131,66,12,132,133,10,134,135,3,41,136,137,37,9
,4,26,138,139,22,15,34,36,140,141,7,27,1,43,142,143,3,5,44,46,144,145,0,2,6,56,146,147,52,22,11,60,148,149,8,7,12,69,150,151,65,0,8,64,152,153,14,13,10,71,154
,155,12,14,52,54,156,157,13,47,65,67,158,159,10,37,22,52,44]
}
,{"name":"d8","id":"d8","billboardMode":0,"position":[0.2,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false
,"positions":[-0.0065,-0.0869,-0.0065,-0.0065,-0.0065,-0.0869,-0.0869,-0.0065,-0.0065,-0.0065,0.0869,-0.0065,-0.0869,0.0065,-0.0065,-0.0065,0.0065,-0.0869,0.0065,0.0869,0.0065,0.0869,0.0065,0.0065,0.0065,0.0065,0.0869,0.0065,-0.0869,-0.0065,0.0869,-0.0065,-0.0065,0.0065,-0.0065,-0.0869,-0.0065,0.0869,0.0065,-0.0065,0.0065,0.0869,-0.0869,0.0065,0.0065,-0.0065,-0.0869,0.0065,-0.0869,-0.0065,0.0065
,-0.0065,-0.0065,0.0869,0.0065,0.0869,-0.0065,0.0065,0.0065,-0.0869,0.0869,0.0065,-0.0065,0.0917,0,0,0.0883,0,0.0079,0.0917,0,0,0.0883,0.0079,0,0.0917,0,0,0.0883,0,-0.0079,0.0869,-0.0065,0.0065,0.0917,0,0,0.0883,-0.0079,0,-0.0917,0,0,-0.0883,0,-0.0079,-0.0917,0,0,-0.0883,0.0079,0
,-0.0917,0,0,-0.0883,0,0.0079,-0.0917,0,0,-0.0883,-0.0079,0,0.0065,-0.0065,0.0869,0,0,0.0917,0.0079,0,0.0883,0,0,0.0917,0,-0.0079,0.0883,0,0,0.0917,-0.0079,0,0.0883,0,0,0.0917,0,0.0079,0.0883,0,0,-0.0917,-0.0079,0,-0.0883,0,0,-0.0917,0,-0.0079,-0.0883
,0,0,-0.0917,0.0079,0,-0.0883,0,0,-0.0917,0,0.0079,-0.0883,0,0.0917,0,0,0.0883,0.0079,0,0.0917,0,-0.0079,0.0883,0,0,0.0917,0,0,0.0883,-0.0079,0,0.0917,0,0.0079,0.0883,0,0,-0.0917,0,0.0079,-0.0883,0,0,-0.0917,0,0,-0.0883,-0.0079,0,-0.0917,0
,-0.0079,-0.0883,0,0.0065,-0.0869,0.0065,0,-0.0917,0,0,-0.0883,0.0079,0.0883,0,0.0079,0.0079,0,0.0883,-0.0883,0,-0.0079,-0.0079,0,-0.0883,0,0.0079,0.0883,0.0883,-0.0079,0,0.0079,-0.0883,0,0,-0.0079,0.0883,-0.0883,-0.0079,0,0,0.0079,-0.0883,0.0883,0,-0.0079,0.0079,0,-0.0883,0,-0.0079,-0.0883
,-0.0883,0,0.0079,-0.0079,0,0.0883,0.0883,0.0079,0,0.0079,0.0883,0,-0.0883,0.0079,0,0.0883,0.0079,0,0.0883,0,-0.0079,0.0917,0,0,0.0883,-0.0079,0,0.0917,0,0,0.0883,0,0.0079,0.0917,0,0,-0.0883,0.0079,0,-0.0883,0,0.0079,-0.0917,0,0,-0.0883,-0.0079,0,-0.0917,0,0
,-0.0883,0,-0.0079,-0.0917,0,0,0,-0.0079,0.0883,-0.0079,0,0.0883,0,0,0.0917,0,0.0079,0.0883,0,0,0.0917,0.0079,0,0.0883,0,0,0.0917,0,-0.0079,-0.0883,0.0079,0,-0.0883,0,0,-0.0917,0,0.0079,-0.0883,0,0,-0.0917,-0.0079,0,-0.0883,0,0,-0.0917,-0.0079,0.0883,0
,0,0.0883,-0.0079,0,0.0917,0,0.0079,0.0883,0,0,0.0917,0,0,0.0883,0.0079,0,0.0917,0,0,-0.0883,-0.0079,-0.0079,-0.0883,0,0,-0.0917,0,0,-0.0883,0.0079,0,-0.0917,0,0.0079,-0.0883,0,0,-0.0917,0,0.0079,0,0.0883,-0.0079,0,-0.0883,0,0.0079,0.0883,0,0.0883,0.0079
,0.0079,-0.0883,0,0,-0.0079,0.0883,0,-0.0883,0.0079,-0.0079,-0.0883,0,0,0.0079,-0.0883,0,0.0883,-0.0079,0.0079,0,-0.0883,0,-0.0079,-0.0883,0,-0.0883,-0.0079,-0.0079,0,0.0883,0.0079,0.0883,0,-0.0079,0.0883,0]
,"normals":[-0.464,-0.754,-0.464,-0.464,-0.464,-0.754,-0.754,-0.464,-0.464,-0.464,0.754,-0.464,-0.754,0.464,-0.464,-0.464,0.464,-0.754,0.464,0.754,0.464,0.754,0.464,0.464,0.464,0.464,0.754,0.464,-0.754,-0.464,0.754,-0.464,-0.464,0.464,-0.464,-0.754,-0.464,0.754,0.464,-0.464,0.464,0.754,-0.754,0.464,0.464,-0.464,-0.754,0.464,-0.754,-0.464,0.464
,-0.464,-0.464,0.754,0.464,0.754,-0.464,0.464,0.464,-0.754,0.754,0.464,-0.464,1,0,0,0.823,0,0.568,1,0,0,0.823,0.568,0,1,0,0,0.823,0,-0.568,0.754,-0.464,0.464,1,0,0,0.823,-0.568,0,-1,0,0,-0.823,0,-0.568,-1,0,0,-0.823,0.568,0
,-1,0,0,-0.823,0,0.568,-1,0,0,-0.823,-0.568,0,0.464,-0.464,0.754,0,0,1,0.568,0,0.823,0,0,1,0,-0.568,0.823,0,0,1,-0.568,0,0.823,0,0,1,0,0.568,0.823,0,0,-1,-0.568,0,-0.823,0,0,-1,0,-0.568,-0.823
,0,0,-1,0.568,0,-0.823,0,0,-1,0,0.568,-0.823,0,1,0,0,0.823,0.568,0,1,0,-0.568,0.823,0,0,1,0,0,0.823,-0.568,0,1,0,0.568,0.823,0,0,-1,0,0.568,-0.823,0,0,-1,0,0,-0.823,-0.568,0,-1,0
,-0.568,-0.823,0,0.464,-0.754,0.464,0,-1,0,0,-0.823,0.568,0.823,0,0.568,0.568,0,0.823,-0.823,0,-0.568,-0.568,0,-0.823,0,0.568,0.823,0.823,-0.568,0,0.568,-0.823,0,0,-0.568,0.823,-0.823,-0.568,0,0,0.568,-0.823,0.823,0,-0.568,0.568,0,-0.823,0,-0.568,-0.823
,-0.823,0,0.568,-0.568,0,0.823,0.823,0.568,0,0.568,0.823,0,-0.823,0.568,0,0.823,0.568,0,0.823,0,-0.568,1,0,0,0.823,-0.568,0,1,0,0,0.823,0,0.568,1,0,0,-0.823,0.568,0,-0.823,0,0.568,-1,0,0,-0.823,-0.568,0,-1,0,0
,-0.823,0,-0.568,-1,0,0,0,-0.568,0.823,-0.568,0,0.823,0,0,1,0,0.568,0.823,0,0,1,0.568,0,0.823,0,0,1,0,-0.568,-0.823,0.568,0,-0.823,0,0,-1,0,0.568,-0.823,0,0,-1,-0.568,0,-0.823,0,0,-1,-0.568,0.823,0
,0,0.823,-0.568,0,1,0,0.568,0.823,0,0,1,0,0,0.823,0.568,0,1,0,0,-0.823,-0.568,-0.568,-0.823,0,0,-1,0,0,-0.823,0.568,0,-1,0,0.568,-0.823,0,0,-1,0,0.568,0,0.823,-0.568,0,-0.823,0,0.568,0.823,0,0.823,0.568
,0.568,-0.823,0,0,-0.568,0.823,0,-0.823,0.568,-0.568,-0.823,0,0,0.568,-0.823,0,0.823,-0.568,0.568,0,-0.823,0,-0.568,-0.823,0,-0.823,-0.568,-0.568,0,0.823,0.568,0.823,0,-0.568,0.823,0]
,"tangents":[-0.104,0.567,-0.817,1,0.109,0.815,-0.569,1,0.003,0.705,-0.709,1,-0.816,-0.568,-0.105,1,-0.569,-0.816,0.108,1,-0.709,-0.705,0.003,1,0.093,-0.563,0.821,1,-0.008,-0.7,0.714,1,-0.12,-0.811,0.573,1,0.708,0,0.707,1,0.569,0.108,0.815,1,0.817,-0.105,0.567,1,0.113,0.571
,-0.813,1,-0.1,0.818,-0.566,1,0.004,0.71,-0.704,1,-0.707,0,-0.707,1,-0.569,0.107,-0.816,1,-0.816,-0.106,-0.568,1,-0.819,0.565,0.099,1,-0.71,0.704,-0.004,1,-0.571,0.813,-0.114,1,0,-0.699,0.715,1,-0.339,-0.802,0.492,1,0,0.974,-0.225,1,-0.565,0.82,-0.093,1
,0,0.218,0.976,1,0.566,0.087,0.82,1,0.567,0.104,-0.817,1,0,0.214,-0.977,1,0.236,0.343,-0.909,1,0,-0.976,0.218,1,-0.238,-0.908,0.346,1,0,0.709,-0.705,1,0.335,0.486,-0.807,1,0,0.217,-0.976,1,-0.566,0.086,-0.82,1,0,0.703,-0.711,1,-0.331,0.48
,-0.813,1,0.815,-0.109,-0.569,1,0.976,-0.219,0,1,0.82,-0.087,-0.566,1,-0.976,-0.216,0,1,-0.907,-0.346,-0.239,1,-0.21,0.978,0,1,-0.341,0.91,-0.235,1,-0.232,-0.973,0,1,-0.1,-0.819,0.565,1,0.22,0.976,0,1,0.349,0.906,-0.241,1,0.977,-0.215,0,1
,0.908,-0.345,0.238,1,-0.71,0.704,0,1,-0.487,0.806,-0.336,1,-0.71,-0.704,0,1,-0.812,-0.48,-0.331,1,0.224,0,-0.975,1,0.092,0.565,-0.82,1,-0.977,0,-0.215,1,-0.82,-0.566,-0.083,1,-0.978,0,0.208,1,-0.912,0.233,0.338,1,0.201,0,0.98,1,0.335,-0.231
,0.914,1,0.706,0,0.708,1,0.483,0.333,0.81,1,-0.214,0,-0.977,1,-0.082,0.566,-0.82,1,-0.705,0,-0.709,1,-0.482,0.333,-0.811,1,0.708,0.001,-0.706,1,0.708,0,-0.706,1,0.81,-0.333,-0.483,1,0.566,0.085,-0.82,1,-0.362,-0.898,0.249,1,0.336,0.806,-0.487,1
,-0.486,-0.807,0.336,1,-0.081,0.82,-0.566,1,0.241,0.35,0.905,1,0.484,0.334,-0.809,1,0.904,-0.352,-0.243,1,-0.241,0.349,-0.906,1,-0.813,0.48,0.331,1,-0.245,0.902,-0.355,1,0.82,-0.086,0.566,1,0.091,0.82,-0.565,1,-0.332,0.812,-0.481,1,-0.82,-0.087,-0.566,1,0.328,-0.475
,0.817,1,-0.821,0.566,0.08,1,-0.566,-0.82,0.089,1,0.328,-0.475,0.817,1,-0.245,0.902,-0.355,1,0,0.974,-0.225,1,0.241,0.35,0.905,1,0,0.218,0.976,1,0.566,0.085,-0.82,1,0,0.214,-0.977,1,-0.566,-0.82,0.089,1,-0.332,0.812,-0.481,1,0,0.709,-0.705,1
,-0.241,0.349,-0.906,1,0,0.217,-0.976,1,0.336,0.806,-0.487,1,0,0.703,-0.711,1,0.904,-0.352,-0.243,1,-0.82,-0.087,-0.566,1,-0.976,-0.216,0,1,-0.081,0.82,-0.566,1,-0.21,0.978,0,1,-0.362,-0.898,0.249,1,-0.232,-0.973,0,1,0.091,0.82,-0.565,1,0.82,-0.086
,0.566,1,0.977,-0.215,0,1,-0.813,0.48,0.331,1,-0.71,0.704,0,1,-0.486,-0.807,0.336,1,-0.71,-0.704,0,1,0.353,0.244,-0.903,1,-0.907,-0.239,-0.347,1,-0.977,0,-0.215,1,-0.821,0.566,0.08,1,-0.978,0,0.208,1,0.073,-0.566,0.821,1,0.201,0,0.98,1
,0.809,-0.334,0.484,1,-0.346,0.239,-0.907,1,-0.214,0,-0.977,1,-0.808,-0.334,-0.485,1,-0.705,0,-0.709,1,0.484,0.334,-0.809,1,0.708,0,-0.706,1,-0.362,-0.898,0.249,1,-0.486,-0.807,0.336,1,-0.081,0.82,-0.566,1,0.073,-0.566,0.821,1,0.484,0.334,-0.809,1,0.904,-0.352
,-0.243,1,-0.808,-0.334,-0.485,1,-0.346,0.239,-0.907,1,-0.813,0.48,0.331,1,-0.907,-0.239,-0.347,1,0.82,-0.086,0.566,1,0.091,0.82,-0.565,1,0.809,-0.334,0.484,1,-0.82,-0.087,-0.566,1,-0.821,0.566,0.08,1,0.353,0.244,-0.903,1]
,"uvs":[0.639,0.27,0.768,0.271,0.703,0.383,0.716,0.418,0.846,0.418,0.781,0.53,0.485,0.549,0.548,0.436,0.614,0.547,0.781,0.287,0.846,0.399,0.717,0.399,0.69,0.399,0.561,0.4,0.625,0.288,0.704,0.435,0.769,0.547,0.64,0.547,0.692,0.418,0.628,0.531,0.562,0.419,0.547,0.424,0.554,0.432,0.552,0.413,0.562,0.411
,0.857,0.405,0.846,0.407,0.613,0.271,0.623,0.265,0.62,0.275,0.856,0.412,0.853,0.422,0.625,0.276,0.632,0.283,0.78,0.553,0.769,0.555,0.703,0.395,0.696,0.387,0.483,0.272,0.473,0.266,0.483,0.264,0.629,0.553,0.633,0.544,0.551,0.406,0.554,0.397,0.625,0.553,0.614,0.555,0.779,0.265,0.775,0.275,0.706,0.405
,0.71,0.396,0.628,0.543,0.621,0.535,0.781,0.542,0.774,0.535,0.701,0.405,0.691,0.407,0.706,0.412,0.716,0.41,0.702,0.412,0.699,0.422,0.474,0.555,0.478,0.546,0.781,0.275,0.788,0.283,0.628,0.264,0.638,0.263,0.704,0.423,0.711,0.431,0.548,0.384,0.548,0.396,0.542,0.388,0.613,0.264,0.621,0.544,0.71,0.387
,0.787,0.535,0.561,0.408,0.853,0.395,0.555,0.388,0.476,0.275,0.776,0.544,0.635,0.535,0.555,0.423,0.716,0.407,0.768,0.263,0.618,0.284,0.639,0.555,0.541,0.432,0.692,0.41,0.846,0.411,0.541,0.432,0.555,0.423,0.552,0.413,0.853,0.395,0.857,0.405,0.613,0.264,0.623,0.265,0.846,0.411,0.618,0.284,0.625,0.276
,0.776,0.544,0.78,0.553,0.71,0.387,0.703,0.395,0.476,0.275,0.639,0.555,0.629,0.553,0.561,0.408,0.551,0.406,0.621,0.544,0.625,0.553,0.768,0.263,0.716,0.407,0.706,0.405,0.635,0.535,0.628,0.543,0.787,0.535,0.781,0.542,0.697,0.396,0.709,0.422,0.706,0.412,0.692,0.41,0.702,0.412,0.484,0.557,0.474,0.555
,0.775,0.283,0.632,0.274,0.628,0.264,0.698,0.431,0.704,0.423,0.555,0.388,0.548,0.396,0.621,0.544,0.787,0.535,0.561,0.408,0.484,0.557,0.555,0.388,0.476,0.275,0.698,0.431,0.632,0.274,0.635,0.535,0.709,0.422,0.716,0.407,0.768,0.263,0.775,0.283,0.639,0.555,0.692,0.41,0.697,0.396]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,7,21,22,20,23,24,10,25,26,27,28,29,4,30,31,14,32,33,16,34,35,2,36,37,38,39,40,17,41,42
,13,43,44,8,45,46,1,47,48,11,49,50,19,51,52,5,53,54,12,55,56,3,57,58,18,59,60,6,61,62,9,63,64,0,65,66,15,67,68,69,70,71,27,40,72,73,7,22,2,48,74
,75,4,31,12,76,13,46,6,8,10,64,77,78,27,29,69,79,38,42,15,17,16,68,80,37,0,2,18,81,19,54,3,5,20,52,82,83,10,26,0,84,1,50,9,11,14,44,85,86,16,35
,7,62,87,88,20,24,4,58,89,33,12,14,69,38,27,7,90,21,20,91,92,10,93,94,27,95,96,4,97,30,14,98,99,16,100,101,2,102,103,38,104,39,17,105,106,13,107,108,8,109,110
,1,111,47,11,112,113,19,114,115,5,116,117,12,118,55,3,119,120,18,121,122,6,123,124,9,125,63,0,126,127,15,128,129,69,130,131,27,38,40,132,8,7,2,1,48,133,5,4,12,56,134
,46,135,6,10,9,64,136,69,27,69,71,137,42,138,15,16,15,68,37,139,0,18,60,140,54,141,3,20,19,52,142,11,10,0,66,143,50,144,9,14,13,44,145,17,16,7,6,62,146,18,20
,4,3,58,33,147,12]
}
,{"name":"d10","id":"d10","billboardMode":0,"position":[0,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false
,"positions":[-0.0562,-0.0133,0.0652,-0.0838,-0.0133,-0.0197,-0.0838,0.0037,0.0272,-0.0562,0.0133,-0.0652,-0.0838,0.0133,0.0197,-0.0838,-0.0037,-0.0272,0.0072,0.0133,0.0858,0.0794,0.0133,0.0333,0.0518,-0.0037,0.0713,-0.0794,0.0133,0.0333,-0.0072,0.0133,0.0858,-0.0518,-0.0037,0.0713,0.0446,0.0133,-0.0736,-0.0446,0.0133,-0.0736,0,-0.0037,-0.0881,-0.0794,-0.0133,-0.0333,-0.0072,-0.0133,-0.0858
,-0.0518,0.0037,-0.0713,0.0794,-0.0133,-0.0333,0.0072,-0.0133,-0.0858,0.0072,-0.0857,-0.0098,0.0838,-0.0133,-0.0197,0.0562,-0.0133,0.0652,0.0838,0.0037,0.0272,0.0446,-0.0133,0.0736,-0.0446,-0.0133,0.0736,0,0.0037,0.0881,0.0072,0.0857,0.0098,0,0.0915,0,0.0103,0.0868,0.0034,-0.0072,0.0857,0.0098,0,0.0915,0,0,0.0868,0.0109,-0.0116,0.0857,-0.0038
,0,0.0915,0,-0.0103,0.0868,0.0034,0,0.0857,-0.0122,0,0.0915,0,-0.0064,0.0868,-0.0088,0.0116,0.0857,-0.0038,0,0.0915,0,0.0064,0.0868,-0.0088,-0.0116,-0.0857,0.0038,0,-0.0915,0,-0.0103,-0.0868,-0.0034,0,-0.0857,0.0122,0,-0.0915,0,-0.0064,-0.0868,0.0088,0.0116,-0.0857,0.0038,0,-0.0915,0,0.0064,-0.0868,0.0088
,0,-0.0915,0,0.0103,-0.0868,-0.0034,-0.0072,-0.0857,-0.0098,0,-0.0915,0,0,-0.0868,-0.0109,0.0525,-0.0103,0.0722,0.0562,-0.008,0.0687,0.0525,-0.0103,0.0722,0.0511,-0.0148,0.0704,0.0525,-0.0103,0.0722,0.048,-0.008,0.0747,0.0849,0.0103,0.0276,0.0827,0.008,0.0322,0.0838,0.0133,0.0197,0.0849,0.0103,0.0276,0.0827,0.0148,0.0269,0.0849,0.0103,0.0276
,0.0859,0.008,0.0226,0,0.0103,0.0893,0,0.0148,0.087,0,0.0103,0.0893,0.0051,0.008,0.0886,0,0.0103,0.0893,-0.0051,0.008,0.0886,0.0525,0.0103,-0.0722,0.0511,0.0148,-0.0704,0.0518,0.0037,-0.0713,0.0525,0.0103,-0.0722,0.048,0.008,-0.0747,0.0562,0.0133,-0.0652,0.0525,0.0103,-0.0722,0.0562,0.008,-0.0687,0.0849,-0.0103,-0.0276,0.0827,-0.0148,-0.0269
,0.0838,-0.0037,-0.0272,0.0849,-0.0103,-0.0276,0.0859,-0.008,-0.0226,0.0849,-0.0103,-0.0276,0.0827,-0.008,-0.0322,-0.0525,0.0103,-0.0722,-0.0511,0.0148,-0.0704,-0.0525,0.0103,-0.0722,-0.0562,0.008,-0.0687,-0.0525,0.0103,-0.0722,-0.048,0.008,-0.0747,0,-0.0103,-0.0893,0,-0.0148,-0.087,0,-0.0103,-0.0893,0.0051,-0.008,-0.0886,0,-0.0103,-0.0893,-0.0051,-0.008,-0.0886
,-0.0849,-0.0103,-0.0276,-0.0827,-0.008,-0.0322,-0.0849,-0.0103,-0.0276,-0.0859,-0.008,-0.0226,-0.0849,-0.0103,-0.0276,-0.0827,-0.0148,-0.0269,-0.0849,0.0103,0.0276,-0.0859,0.008,0.0226,-0.0849,0.0103,0.0276,-0.0827,0.0148,0.0269,-0.0849,0.0103,0.0276,-0.0827,0.008,0.0322,-0.0525,-0.0103,0.0722,-0.0511,-0.0148,0.0704,-0.0525,-0.0103,0.0722,-0.0562,-0.008,0.0687,-0.0525,-0.0103,0.0722
,-0.048,-0.008,0.0747,-0.0064,-0.0868,0.0088,-0.0511,-0.0148,0.0704,0.0064,-0.0868,0.0088,0.0511,-0.0148,0.0704,0.0103,0.0868,0.0034,0.0827,0.0148,0.0269,0.048,-0.008,0.0747,0.0064,0.0868,-0.0088,0.0511,0.0148,-0.0704,0.0859,0.008,0.0226,0.0562,0.008,-0.0687,0.0827,-0.008,-0.0322,0.048,0.008,-0.0747,-0.0562,0.008,-0.0687,-0.0103,0.0868,0.0034,-0.0827,0.0148,0.0269
,-0.0051,0.008,0.0886,-0.048,-0.008,0.0747,0,0.0868,0.0109,0,0.0148,0.087,0.0562,-0.008,0.0687,0.0827,0.008,0.0322,-0.048,0.008,-0.0747,-0.0051,-0.008,-0.0886,-0.0064,0.0868,-0.0088,-0.0511,0.0148,-0.0704,0.0103,-0.0868,-0.0034,0.0827,-0.0148,-0.0269,-0.0827,0.008,0.0322,0,-0.0868,-0.0109,0,-0.0148,-0.087,-0.0103,-0.0868,-0.0034,-0.0827,-0.0148,-0.0269
,-0.0859,-0.008,-0.0226,-0.0859,0.008,0.0226,0,0.0868,0.0109,-0.0103,0.0868,0.0034,0,0.0915,0,-0.0064,0.0868,-0.0088,0,0.0915,0,0.0064,0.0868,-0.0088,0,0.0915,0,0.0103,0.0868,0.0034,0,0.0915,0,-0.0064,-0.0868,0.0088,0.0064,-0.0868,0.0088,0,-0.0915,0,0.0103,-0.0868,-0.0034,0,-0.0915,0,0,-0.0868,-0.0109
,0,-0.0915,0,-0.0103,-0.0868,-0.0034,0,-0.0915,0,0.0511,-0.0148,0.0704,0.048,-0.008,0.0747,0.0525,-0.0103,0.0722,0.0562,-0.008,0.0687,0.0525,-0.0103,0.0722,0.0827,0.0148,0.0269,0.0859,0.008,0.0226,0.0849,0.0103,0.0276,0.0827,0.008,0.0322,0.0849,0.0103,0.0276,0.0051,0.008,0.0886,-0.0051,0.008,0.0886,0,0.0103,0.0893,0,0.0148,0.087
,0,0.0103,0.0893,0.048,0.008,-0.0747,0.0562,0.008,-0.0687,0.0525,0.0103,-0.0722,0.0511,0.0148,-0.0704,0.0525,0.0103,-0.0722,0.0859,-0.008,-0.0226,0.0827,-0.008,-0.0322,0.0849,-0.0103,-0.0276,0.0827,-0.0148,-0.0269,0.0849,-0.0103,-0.0276,-0.0562,0.008,-0.0687,-0.048,0.008,-0.0747,-0.0525,0.0103,-0.0722,-0.0511,0.0148,-0.0704,-0.0525,0.0103,-0.0722,0.0051,-0.008,-0.0886
,-0.0051,-0.008,-0.0886,0,-0.0103,-0.0893,0,-0.0148,-0.087,0,-0.0103,-0.0893,-0.0859,-0.008,-0.0226,-0.0827,-0.0148,-0.0269,-0.0849,-0.0103,-0.0276,-0.0827,-0.008,-0.0322,-0.0849,-0.0103,-0.0276,-0.0827,0.0148,0.0269,-0.0827,0.008,0.0322,-0.0849,0.0103,0.0276,-0.0859,0.008,0.0226,-0.0849,0.0103,0.0276,-0.0562,-0.008,0.0687,-0.048,-0.008,0.0747,-0.0525,-0.0103,0.0722
,-0.0511,-0.0148,0.0704,-0.0525,-0.0103,0.0722,-0.0511,-0.0148,0.0704,0.0511,-0.0148,0.0704,0.0827,0.0148,0.0269,0.0051,0.008,0.0886,0.0511,0.0148,-0.0704,0.0859,-0.008,-0.0226,0.0562,0.008,-0.0687,0.0827,-0.008,-0.0322,0.0051,-0.008,-0.0886,-0.0827,-0.008,-0.0322,-0.0827,0.0148,0.0269,-0.0051,0.008,0.0886,-0.048,-0.008,0.0747,0,0.0148,0.087,0.0562,-0.008,0.0687
,0.0827,0.008,0.0322,-0.048,0.008,-0.0747,-0.0051,-0.008,-0.0886,-0.0511,0.0148,-0.0704,0.0827,-0.0148,-0.0269,-0.0562,-0.008,0.0687,0,-0.0148,-0.087,-0.0827,-0.0148,-0.0269,-0.0859,-0.008,-0.0226,-0.0859,0.008,0.0226]
,"normals":[-0.739,-0.526,0.42,-0.845,-0.526,0.095,-0.868,-0.41,0.282,-0.739,0.526,-0.42,-0.845,0.526,-0.095,-0.868,0.41,-0.282,0.351,0.526,0.774,0.628,0.526,0.573,0.536,0.41,0.738,-0.628,0.526,0.573,-0.351,0.526,0.774,-0.536,0.41,0.738,0.171,0.526,-0.833,-0.171,0.526,-0.833,0,0.41,-0.912,-0.628,-0.526,-0.573,-0.351,-0.526,-0.774
,-0.536,-0.41,-0.738,0.628,-0.526,-0.573,0.351,-0.526,-0.774,0.361,-0.789,-0.497,0.845,-0.526,0.095,0.739,-0.526,0.42,0.868,-0.41,0.282,0.171,-0.526,0.833,-0.171,-0.526,0.833,0,-0.41,0.912,0.361,0.789,0.497,0,1,0,0.529,0.831,0.172,-0.361,0.789,0.497,0,1,0,0,0.831,0.556,-0.585,0.789,-0.19
,0,1,0,-0.529,0.831,0.172,0,0.789,-0.615,0,1,0,-0.327,0.831,-0.45,0.585,0.789,-0.19,0,1,0,0.327,0.831,-0.45,-0.585,-0.789,0.19,0,-1,0,-0.529,-0.831,-0.172,0,-0.789,0.615,0,-1,0,-0.327,-0.831,0.45,0.585,-0.789,0.19,0,-1,0,0.327,-0.831,0.45
,0,-1,0,0.529,-0.831,-0.172,-0.361,-0.789,-0.497,0,-1,0,0,-0.831,-0.556,0.575,-0.203,0.792,0.766,-0.025,0.643,0.575,-0.203,0.792,0.47,-0.602,0.646,0.575,-0.203,0.792,0.375,-0.025,0.927,0.931,0.203,0.303,0.848,0.025,0.529,0.845,0.526,-0.095,0.931,0.203,0.303,0.76,0.602,0.247,0.931,0.203,0.303
,0.997,0.025,0.07,0,0.203,0.979,0,0.602,0.799,0,0.203,0.979,0.241,0.025,0.97,0,0.203,0.979,-0.241,0.025,0.97,0.575,0.203,-0.792,0.47,0.602,-0.646,0.536,-0.41,-0.738,0.575,0.203,-0.792,0.375,0.025,-0.927,0.739,0.526,-0.42,0.575,0.203,-0.792,0.766,0.025,-0.643,0.931,-0.203,-0.303,0.76,-0.602,-0.247
,0.868,0.41,-0.282,0.931,-0.203,-0.303,0.997,-0.025,-0.07,0.931,-0.203,-0.303,0.848,-0.025,-0.529,-0.575,0.203,-0.792,-0.47,0.602,-0.646,-0.575,0.203,-0.792,-0.766,0.025,-0.643,-0.575,0.203,-0.792,-0.375,0.025,-0.927,0,-0.203,-0.979,0,-0.602,-0.799,0,-0.203,-0.979,0.241,-0.025,-0.97,0,-0.203,-0.979,-0.241,-0.025,-0.97
,-0.931,-0.203,-0.303,-0.848,-0.025,-0.529,-0.931,-0.203,-0.303,-0.997,-0.025,-0.07,-0.931,-0.203,-0.303,-0.76,-0.602,-0.247,-0.931,0.203,0.303,-0.997,0.025,0.07,-0.931,0.203,0.303,-0.76,0.602,0.247,-0.931,0.203,0.303,-0.848,0.025,0.529,-0.575,-0.203,0.792,-0.47,-0.602,0.646,-0.575,-0.203,0.792,-0.766,-0.025,0.643,-0.575,-0.203,0.792
,-0.375,-0.025,0.927,-0.327,-0.831,0.45,-0.47,-0.602,0.646,0.327,-0.831,0.45,0.47,-0.602,0.646,0.529,0.831,0.172,0.76,0.602,0.247,0.375,-0.025,0.927,0.327,0.831,-0.45,0.47,0.602,-0.646,0.997,0.025,0.07,0.766,0.025,-0.643,0.848,-0.025,-0.529,0.375,0.025,-0.927,-0.766,0.025,-0.643,-0.529,0.831,0.172,-0.76,0.602,0.247
,-0.241,0.025,0.97,-0.375,-0.025,0.927,0,0.831,0.556,0,0.602,0.799,0.766,-0.025,0.643,0.848,0.025,0.529,-0.375,0.025,-0.927,-0.241,-0.025,-0.97,-0.327,0.831,-0.45,-0.47,0.602,-0.646,0.529,-0.831,-0.172,0.76,-0.602,-0.247,-0.848,0.025,0.529,0,-0.831,-0.556,0,-0.602,-0.799,-0.529,-0.831,-0.172,-0.76,-0.602,-0.247
,-0.997,-0.025,-0.07,-0.997,0.025,0.07,0,0.831,0.556,-0.529,0.831,0.172,0,1,0,-0.327,0.831,-0.45,0,1,0,0.327,0.831,-0.45,0,1,0,0.529,0.831,0.172,0,1,0,-0.327,-0.831,0.45,0.327,-0.831,0.45,0,-1,0,0.529,-0.831,-0.172,0,-1,0,0,-0.831,-0.556
,0,-1,0,-0.529,-0.831,-0.172,0,-1,0,0.47,-0.602,0.646,0.375,-0.025,0.927,0.575,-0.203,0.792,0.766,-0.025,0.643,0.575,-0.203,0.792,0.76,0.602,0.247,0.997,0.025,0.07,0.931,0.203,0.303,0.848,0.025,0.529,0.931,0.203,0.303,0.241,0.025,0.97,-0.241,0.025,0.97,0,0.203,0.979,0,0.602,0.799
,0,0.203,0.979,0.375,0.025,-0.927,0.766,0.025,-0.643,0.575,0.203,-0.792,0.47,0.602,-0.646,0.575,0.203,-0.792,0.997,-0.025,-0.07,0.848,-0.025,-0.529,0.931,-0.203,-0.303,0.76,-0.602,-0.247,0.931,-0.203,-0.303,-0.766,0.025,-0.643,-0.375,0.025,-0.927,-0.575,0.203,-0.792,-0.47,0.602,-0.646,-0.575,0.203,-0.792,0.241,-0.025,-0.97
,-0.241,-0.025,-0.97,0,-0.203,-0.979,0,-0.602,-0.799,0,-0.203,-0.979,-0.997,-0.025,-0.07,-0.76,-0.602,-0.247,-0.931,-0.203,-0.303,-0.848,-0.025,-0.529,-0.931,-0.203,-0.303,-0.76,0.602,0.247,-0.848,0.025,0.529,-0.931,0.203,0.303,-0.997,0.025,0.07,-0.931,0.203,0.303,-0.766,-0.025,0.643,-0.375,-0.025,0.927,-0.575,-0.203,0.792
,-0.47,-0.602,0.646,-0.575,-0.203,0.792,-0.47,-0.602,0.646,0.47,-0.602,0.646,0.76,0.602,0.247,0.241,0.025,0.97,0.47,0.602,-0.646,0.997,-0.025,-0.07,0.766,0.025,-0.643,0.848,-0.025,-0.529,0.241,-0.025,-0.97,-0.848,-0.025,-0.529,-0.76,0.602,0.247,-0.241,0.025,0.97,-0.375,-0.025,0.927,0,0.602,0.799,0.766,-0.025,0.643
,0.848,0.025,0.529,-0.375,0.025,-0.927,-0.241,-0.025,-0.97,-0.47,0.602,-0.646,0.76,-0.602,-0.247,-0.766,-0.025,0.643,0,-0.602,-0.799,-0.76,-0.602,-0.247,-0.997,-0.025,-0.07,-0.997,0.025,0.07]
,"tangents":[0.151,0.479,0.865,1,-0.078,0.296,0.952,1,0.102,0.408,0.907,1,-0.44,0.095,0.893,1,-0.176,-0.106,0.979,1,-0.311,-0.006,0.95,1,-0.674,0.716,-0.181,1,-0.577,0.809,-0.11,1,-0.571,0.82,-0.04,1,0.042,-0.712,0.701,1,0.081,-0.807,0.585,1,0.145,-0.817,0.558,1,-0.42,0.804
,0.422,1,-0.456,0.707,0.541,1,-0.456,0.812,0.364,1,0.776,-0.48,-0.409,1,0.929,-0.298,-0.219,1,0.831,-0.41,-0.376,1,0.512,-0.275,0.814,1,0.648,-0.46,0.607,1,0.532,-0.264,0.805,1,0.064,0.275,0.959,1,-0.168,0.46,0.872,1,-0.114,0.387,0.915,1,0.897,-0.266,-0.353,1
,0.886,-0.452,-0.103,1,0.91,-0.378,-0.17,1,-0.768,0.554,-0.321,1,-0.896,0,-0.444,1,-0.769,0.555,-0.318,1,-0.06,-0.552,0.832,1,-0.136,0,0.991,1,-0.057,-0.555,0.83,1,-0.314,-0.004,0.949,1,-0.315,0,0.949,1,-0.137,-0.283,0.949,1,-0.451,0.549,0.704,1,-0.483,0
,0.876,1,-0.404,0.307,0.862,1,0.602,-0.264,0.754,1,0.664,0,0.748,1,0.766,0.046,0.641,1,-0.064,0.278,0.958,1,-0.121,0,0.993,1,-0.263,-0.032,0.964,1,0.908,-0.258,-0.33,1,0.921,0,-0.389,1,0.865,-0.454,-0.211,1,0.043,0.264,0.964,1,0.096,0,0.995,1
,-0.056,0.458,0.887,1,0.507,0,0.862,1,0.374,0.047,0.926,1,0.931,-0.279,-0.234,1,0.982,0,-0.19,1,0.998,0.031,-0.046,1,-0.522,0.654,0.547,1,-0.52,0.564,0.641,1,0.776,-0.17,-0.607,1,0.786,-0.048,-0.616,1,-0.254,0.876,0.41,1,-0.47,0.856,0.213,1,-0.233,0.97
,0.066,1,-0.159,0.965,0.21,1,0.377,-0.461,0.803,1,-0.1,-0.655,0.749,1,0.224,-0.598,0.769,1,-0.361,0.407,0.839,1,-0.074,0.357,0.931,1,-0.667,0.73,-0.152,1,-0.728,0.548,-0.413,1,0.914,-0.397,0.083,1,0.912,-0.347,-0.218,1,0.143,-0.969,0.201,1,0.257,-0.962,0.089,1
,-0.244,0.967,0.071,1,-0.411,0.797,0.443,1,0.63,-0.387,0.673,1,0.786,-0.407,0.466,1,0.82,-0.475,0.319,1,0.616,-0.276,0.738,1,0.817,-0.182,0.547,1,0.623,-0.28,0.731,1,0.339,0.181,0.923,1,0.349,0.057,0.935,1,0.445,-0.388,0.807,1,0.2,-0.408,0.891,1,0.05,-0.476
,0.878,1,0.268,-0.181,0.946,1,0.503,-0.279,0.818,1,-0.752,0.25,0.61,1,-0.619,0.298,0.727,1,0.674,-0.431,-0.6,1,0.547,-0.5,-0.671,1,-0.463,0.717,0.521,1,-0.557,0.793,0.247,1,0.744,-0.654,0.136,1,0.663,-0.598,0.45,1,-0.465,0.867,-0.18,1,-0.375,0.919,-0.117,1
,0.977,-0.208,0.043,1,0.926,-0.305,-0.223,1,-0.308,-0.006,0.951,1,-0.53,0.055,0.846,1,-0.343,0.206,0.917,1,-0.074,0.303,0.95,1,0.357,-0.675,-0.645,1,0.637,-0.613,-0.468,1,0.246,-0.263,0.933,1,0.065,-0.156,0.986,1,0.065,-0.725,0.686,1,-0.162,-0.543,0.824,1,0.363,0.429
,0.827,1,0.47,0.498,0.729,1,0.505,0.674,0.54,1,0.25,0.611,0.751,1,0.474,-0.872,0.12,1,0.353,-0.852,0.387,1,0.687,-0.645,0.334,1,0.776,-0.555,0.299,1,0.032,0.466,0.884,1,0.806,-0.592,0.034,1,0.852,0.053,-0.521,1,-0.272,0.598,0.754,1,0.477,-0.458,0.75,1
,-0.588,0.798,-0.135,1,0.891,-0.268,-0.367,1,-0.451,0.555,0.699,1,0.833,-0.058,0.551,1,-0.044,-0.565,0.824,1,0.607,-0.357,0.709,1,0.487,-0.358,0.797,1,-0.271,0.959,-0.084,1,-0.634,0.144,0.76,1,-0.19,-0.313,0.931,1,0.065,-0.307,0.949,1,0.856,-0.465,0.225,1,0.362,-0.924
,0.121,1,-0.822,0.317,-0.474,1,0.061,-0.797,0.6,1,-0.222,0.928,0.301,1,-0.476,0.475,0.74,1,0.853,-0.382,-0.355,1,-0.522,0.846,0.108,1,-0.457,0.277,0.845,1,-0.362,0.536,0.762,1,0.242,-0.047,0.969,1,0.267,-0.057,0.962,1,0.301,-0.8,0.519,1,0.567,-0.458,0.685,1
,0.995,-0.08,0.06,1,0.832,-0.467,-0.301,1,-0.364,0.078,0.928,1,-0.068,-0.067,0.995,1,0.074,0.38,0.922,1,-0.822,0.317,-0.474,1,-0.19,-0.313,0.931,1,-0.136,0,0.991,1,-0.457,0.277,0.845,1,-0.315,0,0.949,1,-0.451,0.555,0.699,1,-0.483,0,0.876,1,0.477,-0.458
,0.75,1,0.664,0,0.748,1,0.032,0.466,0.884,1,0.852,0.053,-0.521,1,0.921,0,-0.389,1,0.242,-0.047,0.969,1,0.096,0,0.995,1,0.567,-0.458,0.685,1,0.507,0,0.862,1,0.832,-0.467,-0.301,1,0.982,0,-0.19,1,-0.272,0.598,0.754,1,0.891,-0.268,-0.367,1
,0.776,-0.17,-0.607,1,-0.222,0.928,0.301,1,-0.254,0.876,0.41,1,-0.588,0.798,-0.135,1,-0.044,-0.565,0.824,1,-0.1,-0.655,0.749,1,-0.476,0.475,0.74,1,-0.361,0.407,0.839,1,-0.58,0.805,0.124,1,0.856,-0.465,0.225,1,0.914,-0.397,0.083,1,0.061,-0.797,0.6,1,0.143,-0.969
,0.201,1,-0.271,0.959,-0.084,1,0.607,-0.357,0.709,1,0.786,-0.407,0.466,1,0.833,-0.058,0.551,1,0.817,-0.182,0.547,1,0.074,0.279,0.958,1,0.487,-0.358,0.797,1,0.2,-0.408,0.891,1,0.267,-0.057,0.962,1,0.268,-0.181,0.946,1,-0.634,0.144,0.76,1,0.853,-0.382,-0.355,1
,0.674,-0.431,-0.6,1,-0.362,0.536,0.762,1,-0.463,0.717,0.521,1,0.798,-0.564,0.213,1,-0.522,0.846,0.108,1,-0.465,0.867,-0.18,1,0.995,-0.08,0.06,1,0.977,-0.208,0.043,1,-0.068,-0.067,0.995,1,-0.364,0.078,0.928,1,-0.343,0.206,0.917,1,0.441,-0.588,-0.678,1,0.357,-0.675
,-0.645,1,0.065,-0.307,0.949,1,0.301,-0.8,0.519,1,0.065,-0.725,0.686,1,0.074,0.38,0.922,1,0.363,0.429,0.827,1,0.51,0.586,0.63,1,0.362,-0.924,0.121,1,0.474,-0.872,0.12,1,0.806,-0.592,0.034,1,0.687,-0.645,0.334,1,0.806,-0.592,0.034,1,-0.272,0.598,0.754,1
,-0.588,0.798,-0.135,1,-0.58,0.805,0.124,1,0.833,-0.058,0.551,1,0.074,0.279,0.958,1,0.607,-0.357,0.709,1,0.487,-0.358,0.797,1,0.798,-0.564,0.213,1,0.441,-0.588,-0.678,1,0.065,-0.307,0.949,1,0.856,-0.465,0.225,1,0.362,-0.924,0.121,1,0.061,-0.797,0.6,1,-0.222,0.928
,0.301,1,-0.476,0.475,0.74,1,0.853,-0.382,-0.355,1,-0.522,0.846,0.108,1,-0.362,0.536,0.762,1,0.267,-0.057,0.962,1,0.51,0.586,0.63,1,0.995,-0.08,0.06,1,-0.364,0.078,0.928,1,-0.068,-0.067,0.995,1,0.074,0.38,0.922,1]
,"uvs":[0.333,0.617,0.245,0.572,0.3,0.572,0.159,0.896,0.258,0.895,0.209,0.921,0.062,0.451,0.019,0.54,0.018,0.484,0.608,0.858,0.651,0.769,0.652,0.825,0.018,0.321,0.062,0.409,0.017,0.376,0.246,0.706,0.334,0.751,0.279,0.751,0.107,0.749,0.018,0.706,0.108,0.635,0.129,0.749,0.217,0.706,0.184,0.75,0.225,0.572
,0.135,0.614,0.169,0.57,0.134,0.539,0.147,0.545,0.134,0.547,0.536,0.769,0.523,0.762,0.536,0.761,0.208,0.793,0.208,0.778,0.215,0.789,0.132,0.319,0.145,0.312,0.138,0.323,0.012,0.687,0.005,0.7,0.004,0.688,0.242,0.686,0.235,0.699,0.234,0.686,0.224,0.686,0.23,0.699,0.219,0.692,0.128,0.635,0.122,0.622
,0.133,0.629,0.114,0.621,0.116,0.634,0.338,0.637,0.344,0.624,0.346,0.637,0.227,0.704,0.224,0.71,0.232,0.566,0.233,0.572,0.011,0.481,0.016,0.477,0.014,0.547,0.012,0.541,0.101,0.616,0.11,0.618,0.106,0.622,0.187,0.757,0.181,0.757,0.064,0.441,0.068,0.445,0.166,0.563,0.173,0.563,0.656,0.762,0.658,0.768
,0.012,0.313,0.017,0.312,0.052,0.75,0.049,0.756,0.045,0.751,0.012,0.573,0.005,0.567,0.011,0.566,0.121,0.755,0.12,0.749,0.068,0.572,0.071,0.565,0.075,0.57,0.115,0.755,0.109,0.756,0.15,0.898,0.152,0.893,0.275,0.757,0.272,0.752,0.064,0.418,0.058,0.415,0.009,0.704,0.013,0.699,0.011,0.379,0.011,0.373
,0.341,0.757,0.335,0.758,0.209,0.928,0.203,0.925,0.238,0.566,0.244,0.565,0.237,0.703,0.241,0.7,0.267,0.897,0.262,0.901,0.605,0.867,0.601,0.863,0.304,0.565,0.308,0.571,0.342,0.619,0.338,0.623,0.658,0.828,0.653,0.832,0.126,0.616,0.129,0.61,0.246,0.692,0.13,0.62,0.232,0.686,0.223,0.7,0.016,0.694
,0.019,0.548,0.226,0.565,0.132,0.311,0.004,0.573,0.107,0.613,0.055,0.756,0.064,0.565,0.011,0.319,0.155,0.902,0.53,0.774,0.266,0.892,0.162,0.568,0.658,0.821,0.14,0.534,0.651,0.761,0.011,0.488,0.191,0.752,0.282,0.758,0.016,0.383,0.201,0.789,0.068,0.414,0.12,0.635,0.116,0.749,0.611,0.864,0.103,0.628
,0.342,0.752,0.333,0.631,0.237,0.571,0.215,0.925,0.297,0.565,0.14,0.534,0.53,0.774,0.523,0.762,0.201,0.789,0.208,0.778,0.132,0.311,0.145,0.312,0.016,0.694,0.005,0.7,0.246,0.692,0.232,0.686,0.23,0.699,0.12,0.635,0.122,0.622,0.103,0.628,0.114,0.621,0.333,0.631,0.344,0.624,0.223,0.7,0.226,0.565
,0.232,0.566,0.011,0.488,0.011,0.481,0.019,0.548,0.107,0.613,0.11,0.618,0.191,0.752,0.187,0.757,0.058,0.444,0.162,0.568,0.166,0.563,0.651,0.761,0.656,0.762,0.011,0.319,0.055,0.756,0.049,0.756,0.004,0.573,0.005,0.567,0.127,0.756,0.064,0.565,0.071,0.565,0.116,0.749,0.115,0.755,0.155,0.902,0.282,0.758
,0.275,0.757,0.068,0.414,0.064,0.418,0.012,0.709,0.016,0.383,0.011,0.379,0.342,0.752,0.341,0.757,0.215,0.925,0.237,0.571,0.238,0.566,0.24,0.709,0.237,0.703,0.266,0.892,0.611,0.864,0.605,0.867,0.297,0.565,0.304,0.565,0.339,0.614,0.658,0.821,0.658,0.828,0.13,0.62,0.126,0.616,0.13,0.62,0.223,0.7
,0.019,0.548,0.058,0.444,0.004,0.573,0.127,0.756,0.055,0.756,0.064,0.565,0.012,0.709,0.24,0.709,0.266,0.892,0.162,0.568,0.658,0.821,0.651,0.761,0.011,0.488,0.191,0.752,0.282,0.758,0.016,0.383,0.068,0.414,0.116,0.749,0.339,0.614,0.342,0.752,0.237,0.571,0.215,0.925,0.297,0.565]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50
,20,51,52,53,54,55,22,56,57,24,58,59,8,60,61,7,62,63,64,65,66,23,67,68,6,69,70,26,71,72,10,73,74,12,75,76,77,78,79,80,81,82,21,83,84,85,86,87,18,88,89
,3,90,91,17,92,93,13,94,95,19,96,97,14,98,99,16,100,101,5,102,103,1,104,105,15,106,107,4,108,109,9,110,111,2,112,113,0,114,115,11,116,117,25,118,119,42,115,120,121,45,47
,45,59,122,123,48,50,39,66,124,125,27,29,24,72,126,61,6,8,36,76,127,128,39,41,64,87,129,68,21,23,18,130,77,131,80,82,12,99,132,79,19,77,3,103,133,93,15,17,30,111,134
,135,33,35,25,136,26,137,10,74,27,70,138,139,30,32,7,140,8,141,22,57,16,142,17,143,13,95,33,91,144,145,36,38,48,84,146,147,20,52,9,117,148,113,0,2,20,97,149,150,53,55
,53,107,151,152,42,44,4,153,5,154,1,105,64,80,85,0,42,1,3,33,4,6,27,7,9,30,10,12,36,13,15,53,16,18,77,19,21,48,22,24,45,25,27,155,28,30,156,157,33,158,159
,36,160,161,39,162,163,42,164,43,45,165,166,48,167,168,20,169,170,53,171,172,22,173,56,24,174,175,8,176,177,7,178,62,64,179,180,23,181,182,6,183,69,26,184,185,10,186,187,12,188,75
,77,189,190,80,191,192,21,193,83,85,194,195,18,196,197,3,198,90,17,199,200,13,201,202,19,203,96,14,204,205,16,206,207,5,208,102,1,209,210,15,211,212,4,213,108,9,214,215,2,216,217
,0,218,114,11,219,220,25,221,222,42,0,115,223,25,45,45,24,59,224,22,48,39,64,66,225,7,27,24,26,72,61,226,6,36,12,76,227,80,39,64,85,87,68,228,21,18,89,229,230,85,80
,12,14,99,79,231,19,3,5,103,93,232,15,30,9,111,233,4,33,25,119,234,235,11,10,27,6,70,236,10,30,7,63,237,238,23,22,16,101,239,240,14,13,33,3,91,241,13,36,48,21,84
,242,18,20,9,11,117,113,243,0,20,19,97,244,16,53,53,15,107,245,1,42,4,109,246,247,2,1,64,39,80]
}
,{"name":"d12","id":"d12","billboardMode":0,"position":[-0.2,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false
,"positions":[-0.0593,0.0483,-0.0551,-0.0892,-0.0299,-0.0068,-0.0593,-0.0483,-0.0551,0.0483,-0.0551,-0.0593,-0.0299,-0.0068,-0.0892,-0.0483,-0.0551,-0.0593,0.0409,0,-0.085,0.0892,-0.0299,-0.0068,0.0892,0.0299,-0.0068,-0.0551,-0.0593,0.0483,-0.0068,-0.0892,-0.0299,-0.0551,-0.0593,-0.0483,-0.0892,0.0299,0.0068,-0.0593,0.0483,0.0551,-0.0409,0,0.085,0,-0.085,0.0409,-0.0299,-0.0068,0.0892
,0.0299,-0.0068,0.0892,-0.085,0.0409,0,-0.0551,0.0593,-0.0483,-0.0068,0.0892,-0.0299,-0.0299,0.0068,0.0892,0,0.085,0.0409,0.0483,0.0551,0.0593,0.0299,0.0068,-0.0892,0,0.085,-0.0409,-0.0483,0.0551,-0.0593,0.0551,0.0593,-0.0483,0.085,0.0409,0,0.0551,0.0593,0.0483,0.0551,-0.0593,0.0483,0.085,-0.0409,0,0.0551,-0.0593,-0.0483,0.0557,0.0557,0.0557
,0.0547,0.0523,0.0586,0.0557,0.0557,0.0557,0.0523,0.0586,0.0547,0.0593,0.0483,0.0551,0.0557,0.0557,0.0557,0.0586,0.0547,0.0523,0.0557,-0.0557,0.0557,0.0586,-0.0547,0.0523,0.0483,-0.0551,0.0593,0.0557,-0.0557,0.0557,0.0523,-0.0586,0.0547,0.0593,-0.0483,0.0551,0.0557,-0.0557,0.0557,0.0547,-0.0523,0.0586,0.0483,0.0551,-0.0593,0.0557,0.0557,-0.0557,0.0523,0.0586,-0.0547
,0.0593,0.0483,-0.0551,0.0557,0.0557,-0.0557,0.0547,0.0523,-0.0586,0.0557,0.0557,-0.0557,0.0586,0.0547,-0.0523,0.0557,-0.0557,-0.0557,0.0523,-0.0586,-0.0547,0.0593,-0.0483,-0.0551,0.0557,-0.0557,-0.0557,0.0586,-0.0547,-0.0523,0.0557,-0.0557,-0.0557,0.0547,-0.0523,-0.0586,-0.0551,0.0593,0.0483,-0.0557,0.0557,0.0557,-0.0586,0.0547,0.0523,-0.0483,0.0551,0.0593,-0.0557,0.0557,0.0557
,-0.0523,0.0586,0.0547,-0.0557,0.0557,0.0557,-0.0547,0.0523,0.0586,-0.0483,-0.0551,0.0593,-0.0557,-0.0557,0.0557,-0.0547,-0.0523,0.0586,-0.0557,-0.0557,0.0557,-0.0523,-0.0586,0.0547,-0.0593,-0.0483,0.0551,-0.0557,-0.0557,0.0557,-0.0586,-0.0547,0.0523,-0.0557,0.0557,-0.0557,-0.0586,0.0547,-0.0523,-0.0557,0.0557,-0.0557,-0.0547,0.0523,-0.0586,-0.0557,0.0557,-0.0557,-0.0523,0.0586,-0.0547
,-0.0557,-0.0557,-0.0557,-0.0547,-0.0523,-0.0586,-0.0557,-0.0557,-0.0557,-0.0586,-0.0547,-0.0523,-0.0557,-0.0557,-0.0557,-0.0523,-0.0586,-0.0547,0.0409,0,0.085,0.0344,0,0.0901,0.0362,0.0039,0.0885,0.0344,0,0.0901,0.0362,-0.0039,0.0885,0.0299,0.0068,0.0892,0.0344,0,0.0901,0.0299,0,0.091,-0.0344,0,0.0901,-0.0299,0,0.091,-0.0344,0,0.0901
,-0.0362,-0.0039,0.0885,-0.0344,0,0.0901,-0.0362,0.0039,0.0885,0.0344,0,-0.0901,0.0362,-0.0039,-0.0885,0.0344,0,-0.0901,0.0362,0.0039,-0.0885,0.0299,-0.0068,-0.0892,0.0344,0,-0.0901,0.0299,0,-0.091,-0.0409,0,-0.085,-0.0344,0,-0.0901,-0.0362,0.0039,-0.0885,-0.0344,0,-0.0901,-0.0362,-0.0039,-0.0885,-0.0299,0.0068,-0.0892,-0.0344,0,-0.0901
,-0.0299,0,-0.091,0.0901,0.0344,0,0.0885,0.0362,0.0039,0.0901,0.0344,0,0.0885,0.0362,-0.0039,0.0892,0.0299,0.0068,0.0901,0.0344,0,0.091,0.0299,0,0.0901,-0.0344,0,0.091,-0.0299,0,0.0901,-0.0344,0,0.0885,-0.0362,-0.0039,0.0892,-0.0299,0.0068,0.0901,-0.0344,0,0.0885,-0.0362,0.0039,-0.0901,0.0344,0,-0.0885,0.0362,-0.0039
,-0.0901,0.0344,0,-0.0885,0.0362,0.0039,-0.0892,0.0299,-0.0068,-0.0901,0.0344,0,-0.091,0.0299,0,-0.0901,-0.0344,0,-0.0885,-0.0362,-0.0039,-0.0892,-0.0299,0.0068,-0.0901,-0.0344,0,-0.091,-0.0299,0,-0.085,-0.0409,0,-0.0901,-0.0344,0,-0.0885,-0.0362,0.0039,0,0.0901,0.0344,0.0039,0.0885,0.0362,-0.0068,0.0892,0.0299,0,0.0901,0.0344
,-0.0039,0.0885,0.0362,0.0068,0.0892,0.0299,0,0.0901,0.0344,0,0.091,0.0299,0.0068,0.0892,-0.0299,0,0.0901,-0.0344,0.0039,0.0885,-0.0362,0,0.0901,-0.0344,0,0.091,-0.0299,0,0.0901,-0.0344,-0.0039,0.0885,-0.0362,-0.0068,-0.0892,0.0299,0,-0.0901,0.0344,0,-0.091,0.0299,0,-0.0901,0.0344,-0.0039,-0.0885,0.0362,0.0068,-0.0892,0.0299
,0,-0.0901,0.0344,0.0039,-0.0885,0.0362,0.0068,-0.0892,-0.0299,0,-0.0901,-0.0344,0,-0.091,-0.0299,0,-0.085,-0.0409,0,-0.0901,-0.0344,0.0039,-0.0885,-0.0362,0,-0.0901,-0.0344,-0.0039,-0.0885,-0.0362,-0.0523,-0.0586,0.0547,-0.0039,-0.0885,0.0362,-0.0586,-0.0547,-0.0523,-0.0885,-0.0362,-0.0039,0.0547,0.0523,0.0586,0.0299,0,0.091,-0.0299,0,0.091
,0.0547,0.0523,-0.0586,-0.0547,0.0523,-0.0586,0.0586,0.0547,0.0523,0.0885,0.0362,0.0039,0.091,0.0299,0,0.091,-0.0299,0,-0.0586,0.0547,0.0523,-0.0885,0.0362,0.0039,-0.0586,-0.0547,0.0523,-0.0885,-0.0362,0.0039,0.0523,0.0586,0.0547,0.0039,0.0885,0.0362,0,0.091,0.0299,0,0.091,-0.0299,0.0523,-0.0586,0.0547,0.0039,-0.0885,0.0362,0.0523,-0.0586,-0.0547
,0.0039,-0.0885,-0.0362,-0.0523,-0.0586,-0.0547,-0.0039,-0.0885,-0.0362,-0.0523,0.0586,-0.0547,-0.0039,0.0885,-0.0362,0.0299,0,-0.091,-0.0299,0,-0.091,0.0547,-0.0523,0.0586,-0.0547,-0.0523,-0.0586,-0.091,0.0299,0,-0.091,-0.0299,0,0.0586,-0.0547,0.0523,0.0885,-0.0362,0.0039,0.0547,-0.0523,-0.0586,0.0586,0.0547,-0.0523,0.0885,0.0362,-0.0039,-0.0547,0.0523,0.0586
,-0.0547,-0.0523,0.0586,0.0586,-0.0547,-0.0523,0.0885,-0.0362,-0.0039,0.0523,0.0586,-0.0547,0.0039,0.0885,-0.0362,0,-0.091,0.0299,0,-0.091,-0.0299,-0.0523,0.0586,0.0547,-0.0039,0.0885,0.0362,-0.0586,0.0547,-0.0523,-0.0885,0.0362,-0.0039,0.0523,0.0586,0.0547,0.0586,0.0547,0.0523,0.0557,0.0557,0.0557,0.0547,0.0523,0.0586,0.0557,0.0557,0.0557,0.0523,-0.0586,0.0547
,0.0547,-0.0523,0.0586,0.0557,-0.0557,0.0557,0.0586,-0.0547,0.0523,0.0557,-0.0557,0.0557,0.0547,0.0523,-0.0586,0.0586,0.0547,-0.0523,0.0557,0.0557,-0.0557,0.0523,0.0586,-0.0547,0.0557,0.0557,-0.0557,0.0586,-0.0547,-0.0523,0.0547,-0.0523,-0.0586,0.0557,-0.0557,-0.0557,0.0523,-0.0586,-0.0547,0.0557,-0.0557,-0.0557,-0.0523,0.0586,0.0547,-0.0547,0.0523,0.0586,-0.0557,0.0557,0.0557
,-0.0586,0.0547,0.0523,-0.0557,0.0557,0.0557,-0.0523,-0.0586,0.0547,-0.0586,-0.0547,0.0523,-0.0557,-0.0557,0.0557,-0.0547,-0.0523,0.0586,-0.0557,-0.0557,0.0557,-0.0547,0.0523,-0.0586,-0.0523,0.0586,-0.0547,-0.0557,0.0557,-0.0557,-0.0586,0.0547,-0.0523,-0.0557,0.0557,-0.0557,-0.0586,-0.0547,-0.0523,-0.0523,-0.0586,-0.0547,-0.0557,-0.0557,-0.0557,-0.0547,-0.0523,-0.0586,-0.0557,-0.0557,-0.0557
,0.0362,-0.0039,0.0885,0.0299,0,0.091,0.0344,0,0.0901,0.0362,0.0039,0.0885,0.0344,0,0.0901,-0.0362,-0.0039,0.0885,-0.0362,0.0039,0.0885,-0.0344,0,0.0901,-0.0299,0,0.091,-0.0344,0,0.0901,0.0362,0.0039,-0.0885,0.0299,0,-0.091,0.0344,0,-0.0901,0.0362,-0.0039,-0.0885,0.0344,0,-0.0901,-0.0362,-0.0039,-0.0885,-0.0299,0,-0.091
,-0.0344,0,-0.0901,-0.0362,0.0039,-0.0885,-0.0344,0,-0.0901,0.0885,0.0362,-0.0039,0.091,0.0299,0,0.0901,0.0344,0,0.0885,0.0362,0.0039,0.0901,0.0344,0,0.0885,-0.0362,-0.0039,0.0885,-0.0362,0.0039,0.0901,-0.0344,0,0.091,-0.0299,0,0.0901,-0.0344,0,-0.0885,0.0362,0.0039,-0.091,0.0299,0,-0.0901,0.0344,0,-0.0885,0.0362,-0.0039
,-0.0901,0.0344,0,-0.091,-0.0299,0,-0.0885,-0.0362,0.0039,-0.0901,-0.0344,0,-0.0885,-0.0362,-0.0039,-0.0901,-0.0344,0,-0.0039,0.0885,0.0362,0,0.091,0.0299,0,0.0901,0.0344,0.0039,0.0885,0.0362,0,0.0901,0.0344,0,0.091,-0.0299,-0.0039,0.0885,-0.0362,0,0.0901,-0.0344,0.0039,0.0885,-0.0362,0,0.0901,-0.0344,-0.0039,-0.0885,0.0362
,0.0039,-0.0885,0.0362,0,-0.0901,0.0344,0,-0.091,0.0299,0,-0.0901,0.0344,0.0039,-0.0885,-0.0362,-0.0039,-0.0885,-0.0362,0,-0.0901,-0.0344,0,-0.091,-0.0299,0,-0.0901,-0.0344,-0.0039,-0.0885,0.0362,-0.0885,-0.0362,-0.0039,0.0547,0.0523,0.0586,0.0362,0.0039,0.0885,0.0299,0,0.091,-0.0299,0,0.091,0.0547,0.0523,-0.0586,0.0362,0.0039,-0.0885
,-0.0547,0.0523,-0.0586,-0.0362,0.0039,-0.0885,0.0885,0.0362,0.0039,0.091,0.0299,0,0.091,-0.0299,0,-0.0885,0.0362,0.0039,-0.0885,-0.0362,0.0039,0.0523,0.0586,0.0547,0.0039,0.0885,0.0362,0,0.091,0.0299,0,0.091,-0.0299,0.0523,-0.0586,0.0547,0.0039,-0.0885,0.0362,0.0523,-0.0586,-0.0547,0.0039,-0.0885,-0.0362,-0.0523,-0.0586,-0.0547,-0.0039,-0.0885,-0.0362
,-0.0039,0.0885,-0.0362,0.0299,0,-0.091,-0.0299,0,-0.091,0.0547,-0.0523,0.0586,0.0362,-0.0039,0.0885,-0.0547,-0.0523,-0.0586,-0.0362,-0.0039,-0.0885,-0.091,0.0299,0,-0.091,-0.0299,0,0.0885,-0.0362,0.0039,0.0362,-0.0039,-0.0885,0.0885,0.0362,-0.0039,-0.0547,0.0523,0.0586,-0.0362,0.0039,0.0885,-0.0362,-0.0039,0.0885,0.0885,-0.0362,-0.0039,0.0523,0.0586,-0.0547
,0.0039,0.0885,-0.0362,0,-0.091,0.0299,0,-0.091,-0.0299,-0.0523,0.0586,0.0547,-0.0039,0.0885,0.0362,-0.0885,0.0362,-0.0039]
,"normals":[-0.804,0.182,-0.566,-0.916,-0.112,-0.385,-0.804,-0.182,-0.566,0.182,-0.566,-0.804,-0.112,-0.385,-0.916,-0.182,-0.566,-0.804,0.734,0,-0.679,0.916,-0.112,-0.385,0.916,0.112,-0.385,-0.566,-0.804,0.182,-0.385,-0.916,-0.112,-0.566,-0.804,-0.182,-0.916,0.112,0.385,-0.804,0.182,0.566,-0.734,0,0.679,0,-0.679,0.734,-0.112,-0.385,0.916
,0.112,-0.385,0.916,-0.679,0.734,0,-0.566,0.804,-0.182,-0.385,0.916,-0.112,-0.112,0.385,0.916,0,0.679,0.734,0.182,0.566,0.804,0.112,0.385,-0.916,0,0.679,-0.734,-0.182,0.566,-0.804,0.566,0.804,-0.182,0.679,0.734,0,0.566,0.804,0.182,0.566,-0.804,0.182,0.679,-0.734,0,0.566,-0.804,-0.182,0.577,0.577,0.577
,0.527,0.383,0.759,0.577,0.577,0.577,0.383,0.759,0.527,0.804,0.182,0.566,0.577,0.577,0.577,0.759,0.527,0.383,0.577,-0.577,0.577,0.759,-0.527,0.383,0.182,-0.566,0.804,0.577,-0.577,0.577,0.383,-0.759,0.527,0.804,-0.182,0.566,0.577,-0.577,0.577,0.527,-0.383,0.759,0.182,0.566,-0.804,0.577,0.577,-0.577,0.383,0.759,-0.527
,0.804,0.182,-0.566,0.577,0.577,-0.577,0.527,0.383,-0.759,0.577,0.577,-0.577,0.759,0.527,-0.383,0.577,-0.577,-0.577,0.383,-0.759,-0.527,0.804,-0.182,-0.566,0.577,-0.577,-0.577,0.759,-0.527,-0.383,0.577,-0.577,-0.577,0.527,-0.383,-0.759,-0.566,0.804,0.182,-0.577,0.577,0.577,-0.759,0.527,0.383,-0.182,0.566,0.804,-0.577,0.577,0.577
,-0.383,0.759,0.527,-0.577,0.577,0.577,-0.527,0.383,0.759,-0.182,-0.566,0.804,-0.577,-0.577,0.577,-0.527,-0.383,0.759,-0.577,-0.577,0.577,-0.383,-0.759,0.527,-0.804,-0.182,0.566,-0.577,-0.577,0.577,-0.759,-0.527,0.383,-0.577,0.577,-0.577,-0.759,0.527,-0.383,-0.577,0.577,-0.577,-0.527,0.383,-0.759,-0.577,0.577,-0.577,-0.383,0.759,-0.527
,-0.577,-0.577,-0.577,-0.527,-0.383,-0.759,-0.577,-0.577,-0.577,-0.759,-0.527,-0.383,-0.577,-0.577,-0.577,-0.383,-0.759,-0.527,0.734,0,0.679,0.357,0,0.934,0.469,0.233,0.852,0.357,0,0.934,0.469,-0.233,0.852,0.112,0.385,0.916,0.357,0,0.934,0.093,0,0.996,-0.357,0,0.934,-0.093,0,0.996,-0.357,0,0.934
,-0.469,-0.233,0.852,-0.357,0,0.934,-0.469,0.233,0.852,0.357,0,-0.934,0.469,-0.233,-0.852,0.357,0,-0.934,0.469,0.233,-0.852,0.112,-0.385,-0.916,0.357,0,-0.934,0.093,0,-0.996,-0.734,0,-0.679,-0.357,0,-0.934,-0.469,0.233,-0.852,-0.357,0,-0.934,-0.469,-0.233,-0.852,-0.112,0.385,-0.916,-0.357,0,-0.934
,-0.093,0,-0.996,0.934,0.357,0,0.852,0.469,0.233,0.934,0.357,0,0.852,0.469,-0.233,0.916,0.112,0.385,0.934,0.357,0,0.996,0.093,0,0.934,-0.357,0,0.996,-0.093,0,0.934,-0.357,0,0.852,-0.469,-0.233,0.916,-0.112,0.385,0.934,-0.357,0,0.852,-0.469,0.233,-0.934,0.357,0,-0.852,0.469,-0.233
,-0.934,0.357,0,-0.852,0.469,0.233,-0.916,0.112,-0.385,-0.934,0.357,0,-0.996,0.093,0,-0.934,-0.357,0,-0.852,-0.469,-0.233,-0.916,-0.112,0.385,-0.934,-0.357,0,-0.996,-0.093,0,-0.679,-0.734,0,-0.934,-0.357,0,-0.852,-0.469,0.233,0,0.934,0.357,0.233,0.852,0.469,-0.385,0.916,0.112,0,0.934,0.357
,-0.233,0.852,0.469,0.385,0.916,0.112,0,0.934,0.357,0,0.996,0.093,0.385,0.916,-0.112,0,0.934,-0.357,0.233,0.852,-0.469,0,0.934,-0.357,0,0.996,-0.093,0,0.934,-0.357,-0.233,0.852,-0.469,-0.385,-0.916,0.112,0,-0.934,0.357,0,-0.996,0.093,0,-0.934,0.357,-0.233,-0.852,0.469,0.385,-0.916,0.112
,0,-0.934,0.357,0.233,-0.852,0.469,0.385,-0.916,-0.112,0,-0.934,-0.357,0,-0.996,-0.093,0,-0.679,-0.734,0,-0.934,-0.357,0.233,-0.852,-0.469,0,-0.934,-0.357,-0.233,-0.852,-0.469,-0.383,-0.759,0.527,-0.233,-0.852,0.469,-0.759,-0.527,-0.383,-0.852,-0.469,-0.233,0.527,0.383,0.759,0.093,0,0.996,-0.093,0,0.996
,0.527,0.383,-0.759,-0.527,0.383,-0.759,0.759,0.527,0.383,0.852,0.469,0.233,0.996,0.093,0,0.996,-0.093,0,-0.759,0.527,0.383,-0.852,0.469,0.233,-0.759,-0.527,0.383,-0.852,-0.469,0.233,0.383,0.759,0.527,0.233,0.852,0.469,0,0.996,0.093,0,0.996,-0.093,0.383,-0.759,0.527,0.233,-0.852,0.469,0.383,-0.759,-0.527
,0.233,-0.852,-0.469,-0.383,-0.759,-0.527,-0.233,-0.852,-0.469,-0.383,0.759,-0.527,-0.233,0.852,-0.469,0.093,0,-0.996,-0.093,0,-0.996,0.527,-0.383,0.759,-0.527,-0.383,-0.759,-0.996,0.093,0,-0.996,-0.093,0,0.759,-0.527,0.383,0.852,-0.469,0.233,0.527,-0.383,-0.759,0.759,0.527,-0.383,0.852,0.469,-0.233,-0.527,0.383,0.759
,-0.527,-0.383,0.759,0.759,-0.527,-0.383,0.852,-0.469,-0.233,0.383,0.759,-0.527,0.233,0.852,-0.469,0,-0.996,0.093,0,-0.996,-0.093,-0.383,0.759,0.527,-0.233,0.852,0.469,-0.759,0.527,-0.383,-0.852,0.469,-0.233,0.383,0.759,0.527,0.759,0.527,0.383,0.577,0.577,0.577,0.527,0.383,0.759,0.577,0.577,0.577,0.383,-0.759,0.527
,0.527,-0.383,0.759,0.577,-0.577,0.577,0.759,-0.527,0.383,0.577,-0.577,0.577,0.527,0.383,-0.759,0.759,0.527,-0.383,0.577,0.577,-0.577,0.383,0.759,-0.527,0.577,0.577,-0.577,0.759,-0.527,-0.383,0.527,-0.383,-0.759,0.577,-0.577,-0.577,0.383,-0.759,-0.527,0.577,-0.577,-0.577,-0.383,0.759,0.527,-0.527,0.383,0.759,-0.577,0.577,0.577
,-0.759,0.527,0.383,-0.577,0.577,0.577,-0.383,-0.759,0.527,-0.759,-0.527,0.383,-0.577,-0.577,0.577,-0.527,-0.383,0.759,-0.577,-0.577,0.577,-0.527,0.383,-0.759,-0.383,0.759,-0.527,-0.577,0.577,-0.577,-0.759,0.527,-0.383,-0.577,0.577,-0.577,-0.759,-0.527,-0.383,-0.383,-0.759,-0.527,-0.577,-0.577,-0.577,-0.527,-0.383,-0.759,-0.577,-0.577,-0.577
,0.469,-0.233,0.852,0.093,0,0.996,0.357,0,0.934,0.469,0.233,0.852,0.357,0,0.934,-0.469,-0.233,0.852,-0.469,0.233,0.852,-0.357,0,0.934,-0.093,0,0.996,-0.357,0,0.934,0.469,0.233,-0.852,0.093,0,-0.996,0.357,0,-0.934,0.469,-0.233,-0.852,0.357,0,-0.934,-0.469,-0.233,-0.852,-0.093,0,-0.996
,-0.357,0,-0.934,-0.469,0.233,-0.852,-0.357,0,-0.934,0.852,0.469,-0.233,0.996,0.093,0,0.934,0.357,0,0.852,0.469,0.233,0.934,0.357,0,0.852,-0.469,-0.233,0.852,-0.469,0.233,0.934,-0.357,0,0.996,-0.093,0,0.934,-0.357,0,-0.852,0.469,0.233,-0.996,0.093,0,-0.934,0.357,0,-0.852,0.469,-0.233
,-0.934,0.357,0,-0.996,-0.093,0,-0.852,-0.469,0.233,-0.934,-0.357,0,-0.852,-0.469,-0.233,-0.934,-0.357,0,-0.233,0.852,0.469,0,0.996,0.093,0,0.934,0.357,0.233,0.852,0.469,0,0.934,0.357,0,0.996,-0.093,-0.233,0.852,-0.469,0,0.934,-0.357,0.233,0.852,-0.469,0,0.934,-0.357,-0.233,-0.852,0.469
,0.233,-0.852,0.469,0,-0.934,0.357,0,-0.996,0.093,0,-0.934,0.357,0.233,-0.852,-0.469,-0.233,-0.852,-0.469,0,-0.934,-0.357,0,-0.996,-0.093,0,-0.934,-0.357,-0.233,-0.852,0.469,-0.852,-0.469,-0.233,0.527,0.383,0.759,0.469,0.233,0.852,0.093,0,0.996,-0.093,0,0.996,0.527,0.383,-0.759,0.469,0.233,-0.852
,-0.527,0.383,-0.759,-0.469,0.233,-0.852,0.852,0.469,0.233,0.996,0.093,0,0.996,-0.093,0,-0.852,0.469,0.233,-0.852,-0.469,0.233,0.383,0.759,0.527,0.233,0.852,0.469,0,0.996,0.093,0,0.996,-0.093,0.383,-0.759,0.527,0.233,-0.852,0.469,0.383,-0.759,-0.527,0.233,-0.852,-0.469,-0.383,-0.759,-0.527,-0.233,-0.852,-0.469
,-0.233,0.852,-0.469,0.093,0,-0.996,-0.093,0,-0.996,0.527,-0.383,0.759,0.469,-0.233,0.852,-0.527,-0.383,-0.759,-0.469,-0.233,-0.852,-0.996,0.093,0,-0.996,-0.093,0,0.852,-0.469,0.233,0.469,-0.233,-0.852,0.852,0.469,-0.233,-0.527,0.383,0.759,-0.469,0.233,0.852,-0.469,-0.233,0.852,0.852,-0.469,-0.233,0.383,0.759,-0.527
,0.233,0.852,-0.469,0,-0.996,0.093,0,-0.996,-0.093,-0.383,0.759,0.527,-0.233,0.852,0.469,-0.852,0.469,-0.233]
,"tangents":[-0.498,0.316,0.808,1,-0.4,0.326,0.857,1,-0.594,0.299,0.747,1,0.789,-0.404,0.463,1,0.798,-0.584,0.147,1,0.794,-0.567,0.22,1,0.645,0.311,0.698,1,0.4,0.317,0.86,1,0.339,0.296,0.893,1,-0.607,0.556,0.568,1,-0.778,0.256,0.574,1,-0.724,0.379,0.577,1,-0.339,0.294
,-0.894,1,-0.501,0.306,-0.81,1,-0.645,0.31,-0.698,1,1,0.003,0.002,1,0.994,-0.045,0.103,1,0.994,0.05,-0.101,1,0.432,0.399,-0.808,1,0.569,0.221,-0.792,1,0.586,0.148,-0.797,1,0.323,-0.858,0.4,1,0.314,-0.697,0.644,1,0.312,-0.809,0.499,1,0.299,-0.892,-0.338,1
,0.315,-0.697,-0.644,1,0.298,-0.747,-0.594,1,0.81,-0.501,0.306,1,0.699,-0.645,0.309,1,0.749,-0.594,0.293,1,-0.749,-0.594,-0.293,1,-0.698,-0.645,-0.311,1,-0.809,-0.501,-0.308,1,0.312,-0.809,0.498,1,0.222,-0.924,0.312,1,0.6,-0.78,0.179,1,0.758,-0.584,0.29,1,-0.459,0.795
,0.396,1,-0.769,0.623,0.146,1,-0.641,0.706,0.301,1,-0.599,-0.78,-0.182,1,-0.495,-0.849,-0.187,1,0.983,0.106,-0.148,1,0.815,0.365,-0.45,1,0.921,0.266,-0.286,1,-0.215,0.799,0.561,1,-0.033,0.69,0.723,1,-0.227,0.797,0.559,1,0.311,-0.809,-0.499,1,0.31,-0.809,-0.499,1
,0.381,-0.649,-0.658,1,0.501,0.307,0.809,1,0.502,0.306,0.809,1,0.662,0.376,0.649,1,0.809,-0.503,0.306,1,0.649,-0.662,0.375,1,-0.809,-0.5,-0.309,1,-0.924,-0.32,-0.21,1,0.594,0.295,0.748,1,0.782,0.188,0.594,1,0.587,0.3,0.752,1,0.619,-0.152,0.771,1,0.701,-0.309
,0.642,1,0.406,0.464,-0.787,1,0.157,0.772,-0.616,1,0.146,0.711,-0.688,1,0.297,-0.748,0.594,1,0.184,-0.597,0.781,1,0.188,-0.494,0.849,1,-0.503,0.305,-0.808,1,-0.662,0.376,-0.649,1,0.983,-0.1,0.152,1,0.815,-0.359,0.456,1,0.85,-0.265,0.456,1,-0.401,0.816,0.415,1
,-0.564,0.643,0.518,1,-0.594,0.291,-0.75,1,-0.779,0.179,-0.6,1,-0.583,0.288,-0.76,1,-0.495,0.314,0.81,1,-0.309,0.226,0.924,1,0.183,-0.598,-0.781,1,0.294,-0.755,-0.585,1,0.727,0.041,-0.685,1,0.749,-0.079,-0.658,1,-0.782,0.186,0.595,1,-0.849,0.192,0.492,1,-0.806,0.288
,0.518,1,-0.635,0.469,0.614,1,0.686,-0.727,0.041,1,0.794,-0.562,0.233,1,-0.393,0.815,0.426,1,-0.532,0.822,0.203,1,-0.622,0.771,0.132,1,0.93,0.094,-0.355,1,0.882,0.171,-0.439,1,0.296,-0.893,0.338,1,0.186,-0.98,-0.071,1,0.27,-0.963,-0.025,1,0.931,-0.084,0.356,1
,0.995,-0.035,0.093,1,-0.886,0.317,-0.338,1,-0.875,0.253,-0.413,1,0.396,-0.905,0.151,1,0.326,-0.851,0.412,1,0.886,0.318,0.338,1,0.875,0.254,0.412,1,0.187,-0.98,0.072,1,0.218,-0.965,-0.144,1,0.807,-0.503,0.31,1,0.807,-0.505,0.308,1,0.832,-0.55,0.078,1,-0.644,0.317
,0.697,1,-0.884,0.323,0.338,1,-0.773,0.359,0.523,1,0.697,-0.665,-0.266,1,0.681,-0.71,-0.181,1,0.323,-0.858,-0.4,1,0.395,-0.906,-0.151,1,0.36,-0.932,-0.034,1,0.339,-0.887,0.315,1,0.413,-0.875,0.251,1,-0.071,0.186,0.98,1,0.146,0.214,0.966,1,-0.308,0.812,0.497,1
,-0.31,0.811,0.496,1,-0.078,0.838,0.54,1,0.149,0.391,0.908,1,0.033,0.356,0.934,1,-0.338,-0.886,-0.318,1,-0.523,-0.775,-0.354,1,-0.143,0.805,0.576,1,0.27,0.706,0.655,1,0.187,0.687,0.702,1,0.206,0.54,-0.816,1,0.436,0.389,-0.811,1,0.07,0.184,-0.98,1,-0.147,0.212
,-0.966,1,-0.338,0.299,0.892,1,0.072,0.19,0.979,1,0.026,0.273,0.962,1,-0.153,0.399,0.904,1,-0.413,0.329,0.85,1,-0.4,0.315,-0.861,1,-0.149,0.391,-0.908,1,-0.033,0.356,-0.934,1,-0.593,0.548,0.591,1,-0.286,0.749,0.597,1,-0.291,0.793,0.535,1,0.32,-0.338,0.885,1
,0.356,-0.523,0.774,1,0.504,0.31,-0.806,1,0.504,0.308,-0.807,1,0.432,0.523,-0.735,1,0.86,-0.4,0.316,1,0.909,-0.148,0.389,1,0.935,-0.033,0.353,1,0.894,-0.339,0.294,1,0.981,0.07,0.183,1,0.966,-0.146,0.214,1,0.666,-0.266,-0.697,1,0.617,-0.073,-0.784,1,0.32,-0.338
,-0.885,1,0.256,-0.412,-0.875,1,-0.716,0.373,0.59,1,-0.74,0.24,0.629,1,-0.778,0.058,0.626,1,1,0.002,0.005,1,0.972,-0.185,0.147,1,-0.86,-0.4,-0.318,1,-0.907,-0.15,-0.394,1,-0.854,-0.41,-0.321,1,-0.894,-0.339,-0.294,1,-0.98,0.071,-0.185,1,-0.963,0.025,-0.268,1
,0.809,-0.432,0.399,1,0.814,-0.207,0.542,1,0.763,-0.14,0.632,1,-0.868,-0.177,0.464,1,-0.883,-0.017,0.469,1,0.92,-0.262,0.291,1,-0.675,0.489,0.552,1,-0.586,0.296,0.754,1,-0.503,0.609,0.614,1,-0.702,0.699,0.135,1,0.995,0.041,-0.093,1,0.36,-0.932,0.034,1,0.223,-0.924
,-0.311,1,-0.655,0.386,0.649,1,0.495,-0.849,0.185,1,-0.523,0.74,0.424,1,-0.025,0.272,0.962,1,0.074,0.793,0.604,1,-0.315,0.218,-0.924,1,0.139,0.631,-0.763,1,-0.339,0.822,0.459,1,-0.409,0.319,-0.855,1,0.384,-0.649,0.657,1,0.854,-0.409,0.32,1,0.548,0.078,-0.833,1
,0.963,0.025,0.269,1,-0.758,-0.584,-0.29,1,0.972,0.189,-0.139,1,0.691,-0.143,0.708,1,-0.966,-0.147,-0.212,1,-0.88,0.126,0.458,1,0.812,-0.435,0.388,1,0.189,-0.494,-0.849,1,0.712,-0.179,-0.679,1,0.274,-0.961,0.026,1,0.785,-0.615,-0.073,1,0.849,0.273,-0.452,1,0.66,-0.747
,-0.081,1,0.025,0.271,-0.962,1,-0.034,0.363,0.931,1,0.087,0.665,0.742,1,-0.413,-0.875,-0.253,1,0.849,0.184,0.496,1,0.313,0.22,0.924,1,0.523,-0.776,0.352,1,0.294,-0.756,0.585,1,-0.849,0.185,-0.495,1,-0.649,-0.653,-0.389,1,0.41,0.32,0.854,1,0.924,-0.314,0.219,1
,0.358,-0.523,-0.773,1,-0.933,-0.033,-0.357,1,-0.829,-0.052,0.557,1,0.315,0.643,-0.698,1,0.255,-0.412,0.875,1,0.563,0.236,-0.792,1,-0.144,0.216,0.966,1,0.384,-0.649,0.657,1,0.495,-0.849,0.185,1,0.6,-0.78,0.179,1,-0.702,0.699,0.135,1,-0.769,0.623,0.146,1,-0.758,-0.584
,-0.29,1,0.849,0.273,-0.452,1,0.815,0.365,-0.45,1,0.087,0.665,0.742,1,-0.033,0.69,0.723,1,0.223,-0.924,-0.311,1,0.313,0.22,0.924,1,0.502,0.306,0.809,1,0.924,-0.314,0.219,1,0.809,-0.503,0.306,1,-0.649,-0.653,-0.389,1,0.849,0.184,0.496,1,0.782,0.188,0.594,1
,0.691,-0.143,0.708,1,0.619,-0.152,0.771,1,0.315,0.643,-0.698,1,0.294,-0.756,0.585,1,0.184,-0.597,0.781,1,-0.315,0.218,-0.924,1,-0.503,0.305,-0.808,1,0.92,-0.262,0.291,1,-0.339,0.822,0.459,1,-0.401,0.816,0.415,1,-0.849,0.185,-0.495,1,-0.779,0.179,-0.6,1,-0.655,0.386
,0.649,1,0.189,-0.494,-0.849,1,0.183,-0.598,-0.781,1,0.563,0.236,-0.792,1,0.727,0.041,-0.685,1,-0.586,0.296,0.754,1,-0.88,0.126,0.458,1,-0.806,0.288,0.518,1,0.66,-0.747,-0.081,1,0.686,-0.727,0.041,1,-0.381,0.817,0.433,1,0.995,0.041,-0.093,1,0.93,0.094,-0.355,1
,0.215,-0.966,0.145,1,0.186,-0.98,-0.071,1,0.882,-0.162,0.442,1,-0.776,0.352,-0.523,1,-0.886,0.317,-0.338,1,0.36,-0.932,0.034,1,0.396,-0.905,0.151,1,0.776,0.352,0.523,1,0.274,-0.961,0.026,1,0.187,-0.98,0.072,1,0.736,-0.43,0.523,1,0.807,-0.505,0.308,1,-0.874,0.26
,0.41,1,0.785,-0.615,-0.073,1,0.697,-0.665,-0.266,1,0.326,-0.851,-0.412,1,0.395,-0.906,-0.151,1,0.523,-0.776,0.352,1,-0.025,0.272,0.962,1,-0.071,0.186,0.98,1,-0.523,0.74,0.424,1,-0.31,0.811,0.496,1,0.41,0.32,0.854,1,-0.413,-0.875,-0.253,1,-0.338,-0.886,-0.318,1
,0.074,0.793,0.604,1,0.27,0.706,0.655,1,0.139,0.631,-0.763,1,0.025,0.271,-0.962,1,0.07,0.184,-0.98,1,-0.144,0.216,0.966,1,0.072,0.19,0.979,1,-0.034,0.363,0.931,1,-0.409,0.319,-0.855,1,-0.149,0.391,-0.908,1,-0.503,0.609,0.614,1,-0.286,0.749,0.597,1,0.255,-0.412
,0.875,1,0.548,0.078,-0.833,1,0.504,0.308,-0.807,1,0.854,-0.409,0.32,1,0.909,-0.148,0.389,1,0.963,0.025,0.269,1,0.712,-0.179,-0.679,1,0.666,-0.266,-0.697,1,0.358,-0.523,-0.773,1,0.32,-0.338,-0.885,1,-0.675,0.489,0.552,1,0.972,0.189,-0.139,1,1,0.002,0.005,1
,-0.933,-0.033,-0.357,1,-0.907,-0.15,-0.394,1,-0.966,-0.147,-0.212,1,0.812,-0.435,0.388,1,0.814,-0.207,0.542,1,-0.829,-0.052,0.557,1,-0.868,-0.177,0.464,1,-0.675,0.489,0.552,1,-0.503,0.609,0.614,1,-0.702,0.699,0.135,1,0.215,-0.966,0.145,1,0.995,0.041,-0.093,1,0.36,-0.932
,0.034,1,0.223,-0.924,-0.311,1,0.776,0.352,0.523,1,-0.655,0.386,0.649,1,0.326,-0.851,-0.412,1,-0.523,0.74,0.424,1,-0.025,0.272,0.962,1,0.074,0.793,0.604,1,0.139,0.631,-0.763,1,-0.409,0.319,-0.855,1,0.384,-0.649,0.657,1,0.854,-0.409,0.32,1,0.548,0.078,-0.833,1
,0.963,0.025,0.269,1,-0.758,-0.584,-0.29,1,0.972,0.189,-0.139,1,0.691,-0.143,0.708,1,-0.966,-0.147,-0.212,1,-0.88,0.126,0.458,1,0.812,-0.435,0.388,1,0.712,-0.179,-0.679,1,0.274,-0.961,0.026,1,0.785,-0.615,-0.073,1,0.849,0.273,-0.452,1,-0.381,0.817,0.433,1,0.66,-0.747
,-0.081,1,-0.874,0.26,0.41,1,0.025,0.271,-0.962,1,-0.034,0.363,0.931,1,-0.413,-0.875,-0.253,1,0.736,-0.43,0.523,1,0.523,-0.776,0.352,1,0.294,-0.756,0.585,1,-0.776,0.352,-0.523,1,0.882,-0.162,0.442,1,0.41,0.32,0.854,1,0.924,-0.314,0.219,1,0.358,-0.523,-0.773,1
,-0.933,-0.033,-0.357,1,-0.829,-0.052,0.557,1,0.315,0.643,-0.698,1,0.255,-0.412,0.875,1,-0.144,0.216,0.966,1]
,"uvs":[0.828,0.698,0.86,0.798,0.795,0.798,0.817,0.682,0.712,0.682,0.732,0.62,0.839,0.683,0.924,0.621,0.944,0.683,0.987,0.485,0.886,0.452,0.925,0.4,0.449,0.948,0.396,0.986,0.344,0.947,0.826,0.918,0.794,0.817,0.859,0.817,0.898,0.742,0.963,0.741,0.983,0.803,0.93,0.989,0.845,0.927,0.898,0.889,0.685,0.951
,0.58,0.951,0.6,0.889,0.749,0.885,0.801,0.923,0.781,0.985,0.482,0.986,0.462,0.924,0.515,0.886,0.898,0.88,0.902,0.883,0.786,0.993,0.781,0.993,0.775,0.805,0.784,0.807,0.78,0.811,0.477,0.993,0.475,0.988,0.879,0.879,0.887,0.882,0.883,0.886,0.689,0.743,0.684,0.736,0.689,0.735,0.633,0.989,0.633,0.998
,0.628,0.995,0.891,0.721,0.891,0.73,0.887,0.727,0.749,0.876,0.753,0.879,0.515,0.877,0.519,0.879,0.859,0.621,0.853,0.613,0.858,0.613,0.826,0.685,0.822,0.688,0.878,0.804,0.869,0.806,0.87,0.801,0.865,0.989,0.859,0.997,0.857,0.992,0.396,0.995,0.392,0.992,0.773,0.879,0.765,0.882,0.766,0.877,0.994,0.49
,0.989,0.492,0.364,0.885,0.358,0.878,0.364,0.878,0.828,0.689,0.832,0.692,0.595,0.882,0.6,0.882,0.968,0.734,0.97,0.738,0.79,0.805,0.788,0.8,0.922,0.391,0.927,0.392,0.727,0.613,0.732,0.612,0.754,0.743,0.76,0.736,0.762,0.74,0.864,0.81,0.866,0.815,0.95,0.928,0.959,0.925,0.958,0.93,0.789,0.81
,0.794,0.81,0.335,0.95,0.336,0.945,0.935,0.997,0.93,0.997,0.83,0.685,0.831,0.68,0.694,0.953,0.69,0.957,0.764,0.721,0.764,0.73,0.76,0.727,0.775,0.736,0.767,0.733,0.77,0.73,0.703,0.685,0.705,0.68,0.665,0.889,0.67,0.882,0.672,0.886,0.81,0.921,0.809,0.926,0.952,0.686,0.948,0.689,0.723,0.843
,0.723,0.852,0.718,0.85,0.929,0.614,0.931,0.618,0.454,0.921,0.458,0.918,0.67,0.805,0.661,0.808,0.662,0.803,0.893,0.734,0.898,0.734,0.458,0.951,0.454,0.954,0.881,0.736,0.889,0.734,0.888,0.739,0.865,0.805,0.86,0.806,0.429,0.886,0.434,0.879,0.436,0.883,0.987,0.42,0.994,0.415,0.995,0.42,0.836,0.925
,0.84,0.921,0.931,0.841,0.931,0.851,0.926,0.848,0.716,0.985,0.711,0.993,0.709,0.988,0.696,0.923,0.688,0.92,0.692,0.917,0.992,0.806,0.988,0.809,0.571,0.954,0.572,0.949,0.925,0.505,0.922,0.513,0.918,0.509,0.826,0.927,0.821,0.924,0.548,0.986,0.553,0.993,0.548,0.993,0.568,0.924,0.576,0.921,0.575,0.926
,0.797,0.62,0.803,0.613,0.805,0.618,0.877,0.452,0.88,0.448,0.769,0.885,0.927,0.512,0.795,0.805,0.989,0.413,0.782,0.802,0.859,0.81,0.937,0.992,0.637,0.995,0.824,0.692,0.788,0.988,0.727,0.849,0.951,0.681,0.665,0.811,0.401,0.992,0.891,0.739,0.994,0.485,0.429,0.878,0.893,0.883,0.716,0.993,0.935,0.848
,0.689,0.925,0.482,0.994,0.83,0.924,0.825,0.68,0.572,0.918,0.919,0.395,0.798,0.612,0.593,0.887,0.991,0.801,0.693,0.948,0.707,0.688,0.886,0.877,0.725,0.617,0.456,0.946,0.867,0.801,0.682,0.741,0.455,0.926,0.851,0.618,0.895,0.727,0.806,0.917,0.865,0.997,0.356,0.883,0.511,0.879,0.924,0.613,0.745,0.879
,0.575,0.957,0.555,0.988,0.88,0.456,0.873,0.81,0.837,0.93,0.963,0.733,0.885,0.73,0.893,0.883,0.788,0.988,0.786,0.993,0.782,0.802,0.784,0.807,0.482,0.994,0.886,0.877,0.887,0.882,0.682,0.741,0.684,0.736,0.637,0.995,0.895,0.727,0.891,0.73,0.745,0.879,0.749,0.876,0.511,0.879,0.851,0.618,0.853,0.613
,0.825,0.68,0.826,0.685,0.873,0.81,0.865,0.997,0.859,0.997,0.401,0.992,0.396,0.995,0.769,0.885,0.994,0.485,0.994,0.49,0.356,0.883,0.358,0.878,0.824,0.692,0.593,0.887,0.595,0.882,0.963,0.733,0.968,0.734,0.795,0.805,0.919,0.395,0.922,0.391,0.725,0.617,0.727,0.613,0.754,0.735,0.859,0.81,0.864,0.81
,0.955,0.921,0.959,0.925,0.787,0.815,0.339,0.953,0.335,0.95,0.937,0.992,0.935,0.997,0.834,0.689,0.693,0.948,0.694,0.953,0.769,0.727,0.764,0.73,0.768,0.738,0.707,0.688,0.703,0.685,0.665,0.881,0.67,0.882,0.806,0.917,0.951,0.681,0.952,0.686,0.727,0.849,0.723,0.852,0.924,0.613,0.455,0.926,0.454,0.921
,0.665,0.811,0.661,0.808,0.891,0.739,0.456,0.946,0.458,0.951,0.885,0.73,0.889,0.734,0.867,0.801,0.429,0.878,0.434,0.879,0.989,0.413,0.994,0.415,0.837,0.93,0.935,0.848,0.931,0.851,0.716,0.993,0.711,0.993,0.689,0.925,0.991,0.801,0.992,0.806,0.575,0.957,0.571,0.954,0.927,0.512,0.83,0.924,0.826,0.927
,0.555,0.988,0.553,0.993,0.572,0.918,0.798,0.612,0.803,0.613,0.88,0.456,0.877,0.452,0.927,0.512,0.989,0.413,0.782,0.802,0.955,0.921,0.859,0.81,0.937,0.992,0.637,0.995,0.834,0.689,0.824,0.692,0.665,0.881,0.727,0.849,0.951,0.681,0.665,0.811,0.891,0.739,0.429,0.878,0.893,0.883,0.716,0.993,0.935,0.848
,0.689,0.925,0.482,0.994,0.83,0.924,0.825,0.68,0.572,0.918,0.919,0.395,0.798,0.612,0.991,0.801,0.693,0.948,0.707,0.688,0.886,0.877,0.754,0.735,0.725,0.617,0.768,0.738,0.456,0.946,0.867,0.801,0.455,0.926,0.769,0.727,0.806,0.917,0.865,0.997,0.339,0.953,0.787,0.815,0.924,0.613,0.745,0.879,0.575,0.957
,0.555,0.988,0.88,0.456,0.873,0.81,0.837,0.93,0.885,0.73]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,23,33,34,29,35,36,37,38,39,30,40,41,42,43,44,45,46,47
,48,49,50,51,52,53,27,54,55,32,56,57,58,59,60,3,61,62,63,64,65,66,67,68,13,69,70,71,72,73,9,74,75,76,77,78,0,79,80,26,81,82,19,83,84,2,85,86,11,87,88
,5,89,90,91,92,93,17,94,95,96,97,98,16,99,100,14,101,102,21,103,104,6,105,106,24,107,108,109,110,111,112,113,114,4,115,116,117,118,119,28,120,121,8,122,123,124,125,126,7,127,128
,31,129,130,131,132,133,18,134,135,12,136,137,138,139,140,1,141,142,143,144,145,146,147,148,22,149,150,151,152,153,154,155,156,157,158,159,20,160,161,25,162,163,164,165,166,15,167,168,169,170,171
,172,173,174,175,176,177,10,178,179,71,168,180,181,9,75,2,142,182,183,11,88,91,184,37,34,96,23,16,185,17,186,96,98,24,187,48,53,6,51,112,188,0,82,117,26,29,121,189,190,37,39
,7,191,8,192,124,126,13,137,193,194,63,65,9,148,195,196,76,78,22,197,23,198,29,36,20,199,151,200,154,156,169,201,30,202,42,44,175,203,3,204,32,57,10,205,11,206,5,90,26,163,207
,208,19,84,117,209,24,210,109,111,17,211,42,47,91,45,4,212,5,86,112,2,143,213,12,214,138,140,45,133,215,216,30,41,58,106,217,62,109,3,51,123,218,219,27,55,21,220,66,70,14,13
,76,102,221,73,16,71,32,130,222,223,58,60,157,224,27,225,48,50,172,226,169,227,164,166,151,228,63,229,66,68,19,135,230,231,0,80,131,45,91,2,112,0,0,138,1,5,175,3,3,109,4
,8,51,6,6,58,7,11,146,9,9,164,10,14,76,143,143,12,14,17,42,15,15,71,16,151,63,20,63,18,20,23,96,21,21,66,22,26,117,24,24,48,25,29,154,157,157,27,29,32,172,169
,169,30,32,23,232,33,29,233,234,37,235,236,30,237,40,42,238,239,45,240,241,48,242,49,51,243,244,27,245,246,32,247,56,58,248,249,3,250,251,63,252,64,66,253,254,13,255,256,71,257,72
,9,258,259,76,260,261,0,262,79,26,263,264,19,265,266,2,267,85,11,268,269,5,270,271,91,272,92,17,273,274,96,275,276,16,277,99,14,278,279,21,280,281,6,282,105,24,283,284,109,285,286
,112,287,113,4,288,289,117,290,291,28,292,120,8,293,294,124,295,296,7,297,127,31,298,299,131,300,301,18,302,134,12,303,304,138,305,306,1,307,141,143,308,309,146,310,311,22,312,149,151,313,314
,154,315,316,157,317,158,20,318,319,25,320,321,164,322,165,15,323,324,169,325,326,172,327,173,175,328,329,10,330,331,71,15,168,332,164,9,2,1,142,333,146,11,91,93,334,34,335,96,16,100,336
,337,21,96,24,108,338,53,339,6,112,114,340,82,341,117,29,28,121,342,124,37,7,128,343,344,131,124,13,12,137,345,18,63,9,146,148,346,143,76,22,150,347,348,154,29,20,161,349,350,157,154
,169,171,351,352,15,42,175,177,353,354,172,32,10,179,355,356,175,5,26,25,163,357,20,19,117,119,358,359,4,109,17,95,360,47,361,91,4,116,362,86,363,112,143,145,364,365,1,138,45,131,133
,366,31,30,58,6,106,62,367,109,51,8,123,368,28,27,21,104,369,70,370,14,76,14,102,73,371,16,32,31,130,372,7,58,157,159,373,374,25,48,172,174,375,376,10,164,151,153,377,378,22,66
,19,18,135,379,138,0,37,124,91,124,131,91]
}
,{"name":"d20","id":"d20","billboardMode":0,"position":[-0.4,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false
,"positions":[0.0807,0,0.0637,0.0069,-0.0456,0.0919,0.0069,0.0456,0.0919,0.085,0.0112,0.0568,0.0112,0.0568,0.085,0.0568,0.085,0.0112,-0.085,0.0112,-0.0568,-0.0112,0.0568,-0.085,-0.0568,0.085,-0.0112,0.085,0.0112,-0.0568,0.0568,0.085,-0.0112,0.0112,0.0568,-0.085,0.0807,0,-0.0637,0.0069,0.0456,-0.0919,0.0069,-0.0456,-0.0919,-0.0637,0.0807,0,-0.0919,0.0069,0.0456
,-0.0919,0.0069,-0.0456,-0.0807,0,-0.0637,-0.0069,-0.0456,-0.0919,-0.0069,0.0456,-0.0919,0,0.0637,-0.0807,0.0456,0.0919,-0.0069,-0.0456,0.0919,-0.0069,-0.0637,-0.0807,0,-0.0919,-0.0069,-0.0456,-0.0919,-0.0069,0.0456,-0.085,-0.0112,0.0568,-0.0112,-0.0568,0.085,-0.0568,-0.085,0.0112,0.085,-0.0112,-0.0568,0.0112,-0.0568,-0.085,0.0568,-0.085,-0.0112,-0.085,-0.0112,-0.0568
,-0.0568,-0.085,-0.0112,-0.0112,-0.0568,-0.085,0.085,-0.0112,0.0568,0.0568,-0.085,0.0112,0.0112,-0.0568,0.085,0.0637,0.0807,0,0.0919,0.0069,-0.0456,0.0919,0.0069,0.0456,-0.085,0.0112,0.0568,-0.0568,0.085,0.0112,-0.0112,0.0568,0.085,-0.0807,0,0.0637,-0.0069,0.0456,0.0919,-0.0069,-0.0456,0.0919,0,-0.0637,-0.0807,-0.0456,-0.0919,-0.0069,0.0456,-0.0919,-0.0069
,0,0.0637,0.0807,-0.0456,0.0919,0.0069,0.0456,0.0919,0.0069,0,-0.0637,0.0807,0.0456,-0.0919,0.0069,-0.0456,-0.0919,0.0069,0.0919,-0.0069,0.0456,0.0901,0,0.0557,0.093,0,0.0456,0.0901,0,0.0557,0.0893,-0.0096,0.0515,0.0901,0,0.0557,0.0834,-0.0059,0.0611,0.0901,0,0.0557,0.0834,0.0059,0.0611,0.0901,0,0.0557,0.0893,0.0096,0.0515
,-0.0901,0,0.0557,-0.0893,-0.0096,0.0515,-0.0901,0,0.0557,-0.093,0,0.0456,-0.0901,0,0.0557,-0.0893,0.0096,0.0515,-0.0901,0,0.0557,-0.0834,0.0059,0.0611,-0.0901,0,0.0557,-0.0834,-0.0059,0.0611,0.0919,-0.0069,-0.0456,0.0901,0,-0.0557,0.0893,-0.0096,-0.0515,0.0901,0,-0.0557,0.093,0,-0.0456,0.0901,0,-0.0557,0.0893,0.0096,-0.0515
,0.0901,0,-0.0557,0.0834,0.0059,-0.0611,0.0901,0,-0.0557,0.0834,-0.0059,-0.0611,-0.0901,0,-0.0557,-0.093,0,-0.0456,-0.0901,0,-0.0557,-0.0893,-0.0096,-0.0515,-0.0901,0,-0.0557,-0.0834,-0.0059,-0.0611,-0.0901,0,-0.0557,-0.0834,0.0059,-0.0611,-0.0901,0,-0.0557,-0.0893,0.0096,-0.0515,0.0557,0.0901,0,0.0611,0.0834,0.0059,0.0557,0.0901,0
,0.0515,0.0893,0.0096,0.0557,0.0901,0,0.0456,0.093,0,0.0557,0.0901,0,0.0515,0.0893,-0.0096,0.0557,0.0901,0,0.0611,0.0834,-0.0059,0.0557,-0.0901,0,0.0515,-0.0893,0.0096,0.0637,-0.0807,0,0.0557,-0.0901,0,0.0611,-0.0834,0.0059,0.0557,-0.0901,0,0.0611,-0.0834,-0.0059,0.0557,-0.0901,0,0.0515,-0.0893,-0.0096,0.0557,-0.0901,0
,0.0456,-0.093,0,-0.0557,0.0901,0,-0.0515,0.0893,0.0096,-0.0557,0.0901,0,-0.0611,0.0834,0.0059,-0.0557,0.0901,0,-0.0611,0.0834,-0.0059,-0.0557,0.0901,0,-0.0515,0.0893,-0.0096,-0.0557,0.0901,0,-0.0456,0.093,0,-0.0557,-0.0901,0,-0.0611,-0.0834,0.0059,-0.0557,-0.0901,0,-0.0515,-0.0893,0.0096,-0.0557,-0.0901,0,-0.0456,-0.093,0
,-0.0557,-0.0901,0,-0.0515,-0.0893,-0.0096,-0.0557,-0.0901,0,-0.0611,-0.0834,-0.0059,0,0.0557,0.0901,0.0096,0.0515,0.0893,0,0.0557,0.0901,0,0.0456,0.093,0,0.0557,0.0901,-0.0096,0.0515,0.0893,0,0.0557,0.0901,-0.0059,0.0611,0.0834,0,0.0557,0.0901,0.0059,0.0611,0.0834,0,0.0557,-0.0901,-0.0096,0.0515,-0.0893,0,0.0557,-0.0901
,0,0.0456,-0.093,0,0.0557,-0.0901,0.0096,0.0515,-0.0893,0,0.0557,-0.0901,0.0059,0.0611,-0.0834,0,0.0557,-0.0901,-0.0059,0.0611,-0.0834,0,-0.0557,0.0901,0,-0.0456,0.093,0,-0.0557,0.0901,0.0096,-0.0515,0.0893,0,-0.0557,0.0901,0.0059,-0.0611,0.0834,0,-0.0557,0.0901,-0.0059,-0.0611,0.0834,0,-0.0557,0.0901,-0.0096,-0.0515,0.0893
,0,-0.0557,-0.0901,0,-0.0456,-0.093,0,-0.0557,-0.0901,-0.0096,-0.0515,-0.0893,0,-0.0557,-0.0901,-0.0059,-0.0611,-0.0834,0,-0.0557,-0.0901,0.0059,-0.0611,-0.0834,0,-0.0557,-0.0901,0.0096,-0.0515,-0.0893,0,0.0456,-0.093,0,-0.0456,-0.093,0.093,0,0.0456,0.093,0,-0.0456,-0.093,0,0.0456,-0.093,0,-0.0456,0.0893,0.0096,0.0515
,0.0893,-0.0096,0.0515,-0.0893,0.0096,0.0515,-0.0611,0.0834,0.0059,-0.0893,-0.0096,0.0515,0.0834,0.0059,0.0611,0.0096,0.0515,0.0893,0.0834,0.0059,-0.0611,0.0834,-0.0059,0.0611,0.0096,-0.0515,0.0893,0.0834,-0.0059,-0.0611,0.0096,-0.0515,-0.0893,0.0893,0.0096,-0.0515,0.0611,0.0834,-0.0059,0.0893,-0.0096,-0.0515,0.0611,-0.0834,-0.0059,-0.0834,0.0059,0.0611,-0.0096,0.0515,0.0893
,-0.0893,0.0096,-0.0515,-0.0611,0.0834,-0.0059,-0.0834,-0.0059,0.0611,-0.0096,-0.0515,0.0893,-0.0893,-0.0096,-0.0515,0.0456,0.093,0,-0.0456,0.093,0,-0.0834,0.0059,-0.0611,0.0515,0.0893,0.0096,0.0059,0.0611,0.0834,0.0456,-0.093,0,-0.0456,-0.093,0,0.0515,0.0893,-0.0096,0.0059,0.0611,-0.0834,-0.0834,-0.0059,-0.0611,-0.0515,0.0893,0.0096,-0.0059,0.0611,0.0834
,0.0515,-0.0893,0.0096,0.0059,-0.0611,0.0834,-0.0515,0.0893,-0.0096,-0.0059,0.0611,-0.0834,0.0515,-0.0893,-0.0096,0.0059,-0.0611,-0.0834,-0.0515,-0.0893,0.0096,-0.0059,-0.0611,0.0834,-0.0515,-0.0893,-0.0096,-0.0059,-0.0611,-0.0834,0,0.0456,0.093,0,-0.0456,0.093,0.0893,-0.0096,0.0515,0.0834,-0.0059,0.0611,0.0901,0,0.0557,0.0834,0.0059,0.0611,0.0901,0,0.0557
,0.0893,0.0096,0.0515,0.0901,0,0.0557,0.093,0,0.0456,0.0901,0,0.0557,-0.093,0,0.0456,-0.0893,0.0096,0.0515,-0.0901,0,0.0557,-0.0834,0.0059,0.0611,-0.0901,0,0.0557,-0.0834,-0.0059,0.0611,-0.0901,0,0.0557,-0.0893,-0.0096,0.0515,-0.0901,0,0.0557,0.093,0,-0.0456,0.0893,0.0096,-0.0515,0.0901,0,-0.0557,0.0834,0.0059,-0.0611
,0.0901,0,-0.0557,0.0834,-0.0059,-0.0611,0.0901,0,-0.0557,0.0893,-0.0096,-0.0515,0.0901,0,-0.0557,-0.0893,-0.0096,-0.0515,-0.0834,-0.0059,-0.0611,-0.0901,0,-0.0557,-0.0834,0.0059,-0.0611,-0.0901,0,-0.0557,-0.0893,0.0096,-0.0515,-0.0901,0,-0.0557,-0.093,0,-0.0456,-0.0901,0,-0.0557,0.0515,0.0893,0.0096,0.0456,0.093,0,0.0557,0.0901,0
,0.0515,0.0893,-0.0096,0.0557,0.0901,0,0.0611,0.0834,-0.0059,0.0557,0.0901,0,0.0611,0.0834,0.0059,0.0557,0.0901,0,0.0611,-0.0834,0.0059,0.0611,-0.0834,-0.0059,0.0557,-0.0901,0,0.0515,-0.0893,-0.0096,0.0557,-0.0901,0,0.0456,-0.093,0,0.0557,-0.0901,0,0.0515,-0.0893,0.0096,0.0557,-0.0901,0,-0.0611,0.0834,0.0059,-0.0611,0.0834,-0.0059
,-0.0557,0.0901,0,-0.0515,0.0893,-0.0096,-0.0557,0.0901,0,-0.0456,0.093,0,-0.0557,0.0901,0,-0.0515,0.0893,0.0096,-0.0557,0.0901,0,-0.0515,-0.0893,0.0096,-0.0456,-0.093,0,-0.0557,-0.0901,0,-0.0515,-0.0893,-0.0096,-0.0557,-0.0901,0,-0.0611,-0.0834,-0.0059,-0.0557,-0.0901,0,-0.0611,-0.0834,0.0059,-0.0557,-0.0901,0,0,0.0456,0.093
,-0.0096,0.0515,0.0893,0,0.0557,0.0901,-0.0059,0.0611,0.0834,0,0.0557,0.0901,0.0059,0.0611,0.0834,0,0.0557,0.0901,0.0096,0.0515,0.0893,0,0.0557,0.0901,0,0.0456,-0.093,0.0096,0.0515,-0.0893,0,0.0557,-0.0901,0.0059,0.0611,-0.0834,0,0.0557,-0.0901,-0.0059,0.0611,-0.0834,0,0.0557,-0.0901,-0.0096,0.0515,-0.0893,0,0.0557,-0.0901
,0.0096,-0.0515,0.0893,0.0059,-0.0611,0.0834,0,-0.0557,0.0901,-0.0059,-0.0611,0.0834,0,-0.0557,0.0901,-0.0096,-0.0515,0.0893,0,-0.0557,0.0901,0,-0.0456,0.093,0,-0.0557,0.0901,-0.0096,-0.0515,-0.0893,-0.0059,-0.0611,-0.0834,0,-0.0557,-0.0901,0.0059,-0.0611,-0.0834,0,-0.0557,-0.0901,0.0096,-0.0515,-0.0893,0,-0.0557,-0.0901,0,-0.0456,-0.093
,0,-0.0557,-0.0901,0,0.0456,-0.093,0,-0.0456,-0.093,0.093,0,0.0456,0.093,0,-0.0456,-0.093,0,0.0456,-0.093,0,-0.0456,0.0611,0.0834,0.0059,0.0893,-0.0096,0.0515,0.0611,-0.0834,0.0059,-0.0893,0.0096,0.0515,-0.0611,0.0834,0.0059,-0.0611,-0.0834,0.0059,0.0096,0.0515,0.0893,0.0096,0.0515,-0.0893,0.0096,-0.0515,0.0893,0.0834,-0.0059,-0.0611
,0.0096,-0.0515,-0.0893,0.0893,0.0096,-0.0515,0.0611,0.0834,-0.0059,0.0893,-0.0096,-0.0515,0.0611,-0.0834,-0.0059,-0.0096,0.0515,0.0893,-0.0611,0.0834,-0.0059,-0.0096,-0.0515,0.0893,-0.0893,-0.0096,-0.0515,-0.0611,-0.0834,-0.0059,0.0456,0.093,0,-0.0456,0.093,0,-0.0834,0.0059,-0.0611,-0.0096,0.0515,-0.0893,0.0515,0.0893,0.0096,0.0059,0.0611,0.0834,0.0456,-0.093,0
,-0.0456,-0.093,0,0.0059,0.0611,-0.0834,-0.0834,-0.0059,-0.0611,-0.0096,-0.0515,-0.0893,-0.0515,0.0893,0.0096,-0.0059,0.0611,0.0834,0.0515,-0.0893,0.0096,0.0059,-0.0611,0.0834,-0.0515,0.0893,-0.0096,-0.0059,0.0611,-0.0834,0.0059,-0.0611,-0.0834,-0.0515,-0.0893,0.0096,-0.0059,-0.0611,0.0834,-0.0059,-0.0611,-0.0834,0,0.0456,0.093,0,-0.0456,0.093]
,"normals":[0.505,0,0.863,0.275,-0.142,0.951,0.275,0.142,0.951,0.676,0.445,0.588,0.445,0.588,0.676,0.588,0.676,0.445,-0.676,0.445,-0.588,-0.445,0.588,-0.676,-0.588,0.676,-0.445,0.676,0.445,-0.588,0.588,0.676,-0.445,0.445,0.588,-0.676,0.505,0,-0.863,0.275,0.142,-0.951,0.275,-0.142,-0.951,-0.863,0.505,0,-0.951,0.275,0.142
,-0.951,0.275,-0.142,-0.505,0,-0.863,-0.275,-0.142,-0.951,-0.275,0.142,-0.951,0,0.863,-0.505,0.142,0.951,-0.275,-0.142,0.951,-0.275,-0.863,-0.505,0,-0.951,-0.275,-0.142,-0.951,-0.275,0.142,-0.676,-0.445,0.588,-0.445,-0.588,0.676,-0.588,-0.676,0.445,0.676,-0.445,-0.588,0.445,-0.588,-0.676,0.588,-0.676,-0.445,-0.676,-0.445,-0.588
,-0.588,-0.676,-0.445,-0.445,-0.588,-0.676,0.676,-0.445,0.588,0.588,-0.676,0.445,0.445,-0.588,0.676,0.863,0.505,0,0.951,0.275,-0.142,0.951,0.275,0.142,-0.676,0.445,0.588,-0.588,0.676,0.445,-0.445,0.588,0.676,-0.505,0,0.863,-0.275,0.142,0.951,-0.275,-0.142,0.951,0,-0.863,-0.505,-0.142,-0.951,-0.275,0.142,-0.951,-0.275
,0,0.863,0.505,-0.142,0.951,0.275,0.142,0.951,0.275,0,-0.863,0.505,0.142,-0.951,0.275,-0.142,-0.951,0.275,0.951,-0.275,0.142,0.851,0,0.526,0.991,0,0.137,0.851,0,0.526,0.844,-0.384,0.375,0.851,0,0.526,0.606,-0.237,0.759,0.851,0,0.526,0.606,0.237,0.759,0.851,0,0.526,0.844,0.384,0.375
,-0.851,0,0.526,-0.844,-0.384,0.375,-0.851,0,0.526,-0.991,0,0.137,-0.851,0,0.526,-0.844,0.384,0.375,-0.851,0,0.526,-0.606,0.237,0.759,-0.851,0,0.526,-0.606,-0.237,0.759,0.951,-0.275,-0.142,0.851,0,-0.526,0.844,-0.384,-0.375,0.851,0,-0.526,0.991,0,-0.137,0.851,0,-0.526,0.844,0.384,-0.375
,0.851,0,-0.526,0.606,0.237,-0.759,0.851,0,-0.526,0.606,-0.237,-0.759,-0.851,0,-0.526,-0.991,0,-0.137,-0.851,0,-0.526,-0.844,-0.384,-0.375,-0.851,0,-0.526,-0.606,-0.237,-0.759,-0.851,0,-0.526,-0.606,0.237,-0.759,-0.851,0,-0.526,-0.844,0.384,-0.375,0.526,0.851,0,0.759,0.606,0.237,0.526,0.851,0
,0.375,0.844,0.384,0.526,0.851,0,0.137,0.991,0,0.526,0.851,0,0.375,0.844,-0.384,0.526,0.851,0,0.759,0.606,-0.237,0.526,-0.851,0,0.375,-0.844,0.384,0.863,-0.505,0,0.526,-0.851,0,0.759,-0.606,0.237,0.526,-0.851,0,0.759,-0.606,-0.237,0.526,-0.851,0,0.375,-0.844,-0.384,0.526,-0.851,0
,0.137,-0.991,0,-0.526,0.851,0,-0.375,0.844,0.384,-0.526,0.851,0,-0.759,0.606,0.237,-0.526,0.851,0,-0.759,0.606,-0.237,-0.526,0.851,0,-0.375,0.844,-0.384,-0.526,0.851,0,-0.137,0.991,0,-0.526,-0.851,0,-0.759,-0.606,0.237,-0.526,-0.851,0,-0.375,-0.844,0.384,-0.526,-0.851,0,-0.137,-0.991,0
,-0.526,-0.851,0,-0.375,-0.844,-0.384,-0.526,-0.851,0,-0.759,-0.606,-0.237,0,0.526,0.851,0.384,0.375,0.844,0,0.526,0.851,0,0.137,0.991,0,0.526,0.851,-0.384,0.375,0.844,0,0.526,0.851,-0.237,0.759,0.606,0,0.526,0.851,0.237,0.759,0.606,0,0.526,-0.851,-0.384,0.375,-0.844,0,0.526,-0.851
,0,0.137,-0.991,0,0.526,-0.851,0.384,0.375,-0.844,0,0.526,-0.851,0.237,0.759,-0.606,0,0.526,-0.851,-0.237,0.759,-0.606,0,-0.526,0.851,0,-0.137,0.991,0,-0.526,0.851,0.384,-0.375,0.844,0,-0.526,0.851,0.237,-0.759,0.606,0,-0.526,0.851,-0.237,-0.759,0.606,0,-0.526,0.851,-0.384,-0.375,0.844
,0,-0.526,-0.851,0,-0.137,-0.991,0,-0.526,-0.851,-0.384,-0.375,-0.844,0,-0.526,-0.851,-0.237,-0.759,-0.606,0,-0.526,-0.851,0.237,-0.759,-0.606,0,-0.526,-0.851,0.384,-0.375,-0.844,0,0.137,-0.991,0,-0.137,-0.991,0.991,0,0.137,0.991,0,-0.137,-0.991,0,0.137,-0.991,0,-0.137,0.844,0.384,0.375
,0.844,-0.384,0.375,-0.844,0.384,0.375,-0.759,0.606,0.237,-0.844,-0.384,0.375,0.606,0.237,0.759,0.384,0.375,0.844,0.606,0.237,-0.759,0.606,-0.237,0.759,0.384,-0.375,0.844,0.606,-0.237,-0.759,0.384,-0.375,-0.844,0.844,0.384,-0.375,0.759,0.606,-0.237,0.844,-0.384,-0.375,0.759,-0.606,-0.237,-0.606,0.237,0.759,-0.384,0.375,0.844
,-0.844,0.384,-0.375,-0.759,0.606,-0.237,-0.606,-0.237,0.759,-0.384,-0.375,0.844,-0.844,-0.384,-0.375,0.137,0.991,0,-0.137,0.991,0,-0.606,0.237,-0.759,0.375,0.844,0.384,0.237,0.759,0.606,0.137,-0.991,0,-0.137,-0.991,0,0.375,0.844,-0.384,0.237,0.759,-0.606,-0.606,-0.237,-0.759,-0.375,0.844,0.384,-0.237,0.759,0.606
,0.375,-0.844,0.384,0.237,-0.759,0.606,-0.375,0.844,-0.384,-0.237,0.759,-0.606,0.375,-0.844,-0.384,0.237,-0.759,-0.606,-0.375,-0.844,0.384,-0.237,-0.759,0.606,-0.375,-0.844,-0.384,-0.237,-0.759,-0.606,0,0.137,0.991,0,-0.137,0.991,0.844,-0.384,0.375,0.606,-0.237,0.759,0.851,0,0.526,0.606,0.237,0.759,0.851,0,0.526
,0.844,0.384,0.375,0.851,0,0.526,0.991,0,0.137,0.851,0,0.526,-0.991,0,0.137,-0.844,0.384,0.375,-0.851,0,0.526,-0.606,0.237,0.759,-0.851,0,0.526,-0.606,-0.237,0.759,-0.851,0,0.526,-0.844,-0.384,0.375,-0.851,0,0.526,0.991,0,-0.137,0.844,0.384,-0.375,0.851,0,-0.526,0.606,0.237,-0.759
,0.851,0,-0.526,0.606,-0.237,-0.759,0.851,0,-0.526,0.844,-0.384,-0.375,0.851,0,-0.526,-0.844,-0.384,-0.375,-0.606,-0.237,-0.759,-0.851,0,-0.526,-0.606,0.237,-0.759,-0.851,0,-0.526,-0.844,0.384,-0.375,-0.851,0,-0.526,-0.991,0,-0.137,-0.851,0,-0.526,0.375,0.844,0.384,0.137,0.991,0,0.526,0.851,0
,0.375,0.844,-0.384,0.526,0.851,0,0.759,0.606,-0.237,0.526,0.851,0,0.759,0.606,0.237,0.526,0.851,0,0.759,-0.606,0.237,0.759,-0.606,-0.237,0.526,-0.851,0,0.375,-0.844,-0.384,0.526,-0.851,0,0.137,-0.991,0,0.526,-0.851,0,0.375,-0.844,0.384,0.526,-0.851,0,-0.759,0.606,0.237,-0.759,0.606,-0.237
,-0.526,0.851,0,-0.375,0.844,-0.384,-0.526,0.851,0,-0.137,0.991,0,-0.526,0.851,0,-0.375,0.844,0.384,-0.526,0.851,0,-0.375,-0.844,0.384,-0.137,-0.991,0,-0.526,-0.851,0,-0.375,-0.844,-0.384,-0.526,-0.851,0,-0.759,-0.606,-0.237,-0.526,-0.851,0,-0.759,-0.606,0.237,-0.526,-0.851,0,0,0.137,0.991
,-0.384,0.375,0.844,0,0.526,0.851,-0.237,0.759,0.606,0,0.526,0.851,0.237,0.759,0.606,0,0.526,0.851,0.384,0.375,0.844,0,0.526,0.851,0,0.137,-0.991,0.384,0.375,-0.844,0,0.526,-0.851,0.237,0.759,-0.606,0,0.526,-0.851,-0.237,0.759,-0.606,0,0.526,-0.851,-0.384,0.375,-0.844,0,0.526,-0.851
,0.384,-0.375,0.844,0.237,-0.759,0.606,0,-0.526,0.851,-0.237,-0.759,0.606,0,-0.526,0.851,-0.384,-0.375,0.844,0,-0.526,0.851,0,-0.137,0.991,0,-0.526,0.851,-0.384,-0.375,-0.844,-0.237,-0.759,-0.606,0,-0.526,-0.851,0.237,-0.759,-0.606,0,-0.526,-0.851,0.384,-0.375,-0.844,0,-0.526,-0.851,0,-0.137,-0.991
,0,-0.526,-0.851,0,0.137,-0.991,0,-0.137,-0.991,0.991,0,0.137,0.991,0,-0.137,-0.991,0,0.137,-0.991,0,-0.137,0.759,0.606,0.237,0.844,-0.384,0.375,0.759,-0.606,0.237,-0.844,0.384,0.375,-0.759,0.606,0.237,-0.759,-0.606,0.237,0.384,0.375,0.844,0.384,0.375,-0.844,0.384,-0.375,0.844,0.606,-0.237,-0.759
,0.384,-0.375,-0.844,0.844,0.384,-0.375,0.759,0.606,-0.237,0.844,-0.384,-0.375,0.759,-0.606,-0.237,-0.384,0.375,0.844,-0.759,0.606,-0.237,-0.384,-0.375,0.844,-0.844,-0.384,-0.375,-0.759,-0.606,-0.237,0.137,0.991,0,-0.137,0.991,0,-0.606,0.237,-0.759,-0.384,0.375,-0.844,0.375,0.844,0.384,0.237,0.759,0.606,0.137,-0.991,0
,-0.137,-0.991,0,0.237,0.759,-0.606,-0.606,-0.237,-0.759,-0.384,-0.375,-0.844,-0.375,0.844,0.384,-0.237,0.759,0.606,0.375,-0.844,0.384,0.237,-0.759,0.606,-0.375,0.844,-0.384,-0.237,0.759,-0.606,0.237,-0.759,-0.606,-0.375,-0.844,0.384,-0.237,-0.759,0.606,-0.237,-0.759,-0.606,0,0.137,0.991,0,-0.137,0.991]
,"tangents":[0.745,0.504,-0.437,1,0.856,0.486,-0.175,1,0.808,0.501,-0.309,1,-0.216,0.882,-0.42,1,-0.311,0.809,-0.499,1,-0.395,0.72,-0.57,1,0.5,-0.309,-0.809,1,0.57,-0.395,-0.72,1,0.42,-0.216,-0.882,1,0.721,-0.566,0.4,1,0.809,-0.498,0.312,1,0.882,-0.416,0.22,1,-0.745,-0.504
,-0.437,1,-0.81,-0.499,-0.309,1,-0.856,-0.486,-0.175,1,-0.437,-0.745,-0.504,1,-0.309,-0.81,-0.498,1,-0.175,-0.856,-0.486,1,-0.745,0.504,0.437,1,-0.856,0.486,0.175,1,-0.808,0.502,0.309,1,-0.504,-0.437,-0.745,1,-0.486,-0.175,-0.856,1,-0.502,-0.309,-0.808,1,-0.436,0.744,-0.506,1
,-0.175,0.855,-0.488,1,-0.309,0.807,-0.503,1,-0.498,-0.313,-0.809,1,-0.568,-0.398,-0.721,1,-0.417,-0.219,-0.882,1,-0.216,-0.882,0.42,1,-0.31,-0.809,0.499,1,-0.395,-0.72,0.57,1,-0.72,0.569,0.397,1,-0.809,0.499,0.31,1,-0.882,0.418,0.218,1,-0.211,-0.88,-0.424,1,-0.391,-0.719
,-0.575,1,-0.302,-0.809,-0.504,1,0.437,-0.745,0.504,1,0.309,-0.81,0.498,1,0.175,-0.856,0.486,1,0.498,-0.312,0.809,1,0.416,-0.22,0.882,1,0.567,-0.399,0.721,1,0.005,-1,0.003,1,-0.037,-0.99,0.137,1,0.045,-0.99,-0.135,1,0.504,0.437,-0.745,1,0.486,0.175,-0.856,1
,0.502,0.309,-0.808,1,-0.52,0.432,-0.737,1,-0.502,0.17,-0.848,1,-0.517,0.308,-0.798,1,-1,0.005,0.008,1,-0.99,-0.133,0.052,1,-0.99,0.139,-0.03,1,0.175,0.857,0.485,1,-0.204,0.922,0.33,1,-0.063,0.89,0.452,1,0.123,-0.972,-0.199,1,-0.21,-0.879,-0.428,1,0.45,0.517
,-0.728,1,0.744,0.507,-0.436,1,0.119,0.974,-0.193,1,-0.06,0.965,-0.254,1,-0.204,-0.921,0.33,1,0.176,-0.858,0.483,1,-0.311,0.807,-0.503,1,-0.526,0.729,-0.438,1,-0.308,-0.81,-0.499,1,-0.074,-0.841,-0.536,1,0.5,-0.312,0.808,1,0.313,-0.215,0.925,1,0.003,-1,0.005,1
,-0.133,-0.971,0.197,1,-0.499,-0.314,-0.808,1,-0.655,-0.393,-0.646,1,0.309,0.808,0.501,1,0.309,0.809,0.5,1,0.526,0.731,0.435,1,0.308,-0.81,0.499,1,0.074,-0.841,0.536,1,0.4,-0.65,0.646,1,0.534,-0.669,0.517,1,-0.45,-0.517,-0.728,1,-0.611,-0.472,-0.636,1,0.119,-0.974
,0.193,1,-0.06,-0.965,0.254,1,0.206,0.92,-0.333,1,0.063,0.888,-0.455,1,-0.398,0.653,0.644,1,-0.534,0.673,0.512,1,-0.45,0.517,0.728,1,-0.744,0.507,0.436,1,0.5,-0.31,-0.809,1,0.656,-0.39,-0.646,1,0.204,-0.921,-0.33,1,-0.176,-0.858,-0.483,1,-0.643,0.398,-0.654,1
,-0.398,0.721,-0.568,1,-0.513,0.317,-0.798,1,-0.45,0.528,-0.72,1,-0.331,0.204,-0.921,1,-0.453,0.063,-0.889,1,0.808,-0.499,0.313,1,0.925,-0.313,0.216,1,0.728,-0.45,0.517,1,0.635,-0.61,0.473,1,-0.639,-0.395,-0.66,1,-0.507,-0.533,-0.677,1,0.437,0.746,0.503,1,0.728,0.45
,0.516,1,0.436,0.744,0.506,1,-0.643,-0.398,0.654,1,-0.398,-0.72,0.568,1,0.501,0.31,-0.808,1,0.435,0.526,-0.731,1,-0.847,-0.523,0.096,1,-0.989,-0.137,0.049,1,0.19,0.117,0.975,1,0.418,-0.216,0.882,1,-0.728,-0.45,-0.517,1,-0.635,-0.61,-0.473,1,0.193,0.119,-0.974,1
,0.252,-0.062,-0.966,1,-0.501,-0.31,-0.808,1,-0.435,-0.526,-0.731,1,-0.345,-0.213,-0.914,1,-0.47,-0.065,-0.88,1,-0.19,0.118,-0.975,1,-0.25,-0.065,-0.966,1,-0.848,0.524,-0.073,1,-0.926,0.36,-0.113,1,0.331,-0.204,-0.921,1,0.453,-0.063,-0.889,1,-0.809,0.5,0.309,1,-0.925,0.314
,0.213,1,-0.727,0.449,-0.519,1,-0.435,0.743,-0.509,1,0.808,0.501,-0.31,1,0.731,0.436,-0.526,1,-0.08,-0.848,0.524,1,-0.033,-0.99,0.137,1,0.651,-0.646,0.399,1,0.671,-0.514,0.534,1,-0.533,0.72,-0.445,1,-0.522,0.427,-0.738,1,-0.31,0.809,-0.5,1,-0.39,0.646,-0.656,1
,-0.808,0.501,0.31,1,-0.731,0.435,0.526,1,-0.81,-0.499,-0.308,1,-0.841,-0.536,-0.074,1,0.975,-0.189,-0.117,1,0.883,-0.418,0.216,1,-0.517,-0.728,-0.45,1,-0.507,-0.436,-0.744,1,0.654,-0.643,-0.398,1,0.568,-0.398,-0.72,1,0.921,0.331,0.204,1,0.889,0.453,0.063,1,-0.301,-0.811
,-0.501,1,-0.204,-0.926,-0.318,1,-1,0.008,0.005,1,-0.971,-0.188,0.145,1,-0.651,-0.645,-0.399,1,-0.565,-0.4,-0.722,1,0.089,-0.847,-0.524,1,0.129,-0.927,-0.353,1,-0.921,0.331,-0.204,1,-0.889,0.453,-0.063,1,-0.974,0.192,-0.118,1,-0.882,0.42,0.215,1,0.517,0.728,-0.45,1
,0.507,0.436,-0.744,1,-0.31,-0.809,0.5,1,-0.39,-0.646,0.656,1,-0.921,-0.33,0.204,1,-0.858,-0.483,-0.176,1,-0.84,0.538,0.075,1,-0.887,-0.457,0.063,1,-0.063,-0.887,0.457,1,0.074,0.84,0.537,1,-0.075,0.838,-0.54,1,0.063,-0.887,-0.457,1,-0.214,0.881,-0.421,1,0.176,0.858
,0.483,1,-0.526,-0.732,-0.433,1,0.248,-0.067,0.966,1,-0.312,-0.216,-0.925,1,0.611,0.471,-0.636,1,-0.213,0.925,-0.314,1,0.722,-0.565,0.4,1,-0.057,-0.965,-0.257,1,0.857,0.484,-0.175,1,-0.744,-0.506,-0.437,1,-0.213,-0.925,0.314,1,0.526,-0.732,0.433,1,0.646,-0.655,0.392,1
,-0.214,-0.881,0.421,1,0.636,0.613,0.469,1,0.655,-0.391,0.646,1,-0.123,-0.927,0.355,1,0.314,-0.213,-0.925,1,-0.437,-0.744,-0.506,1,0.142,-0.971,-0.19,1,-0.673,-0.512,-0.534,1,-0.174,0.856,-0.486,1,-0.553,0.077,-0.83,1,-0.538,-0.075,-0.84,1,-0.612,0.47,0.636,1,-0.509,0.534
,-0.676,1,-0.486,0.633,-0.603,1,0.538,0.075,-0.84,1,-0.99,0.137,-0.028,1,-0.484,-0.175,-0.857,1,0.966,-0.248,0.068,1,-0.721,0.567,0.398,1,-0.499,0.166,-0.851,1,0.566,-0.4,0.721,1,-0.927,-0.349,0.138,1,-0.381,-0.647,-0.661,1,0.421,-0.214,-0.881,1,-0.47,-0.636,-0.612,1
,-0.51,-0.534,0.674,1,0.47,0.636,-0.612,1,-0.418,-0.216,-0.882,1,-0.971,0.2,-0.13,1,0.484,0.175,-0.857,1,-0.966,0.25,0.066,1,0.84,0.538,-0.075,1,0.044,-0.99,-0.137,1,0.176,0.858,0.483,1,-0.057,-0.965,-0.257,1,0.123,-0.972,-0.199,1,0.611,0.471,-0.636,1,0.45,0.517
,-0.728,1,-0.214,0.881,-0.421,1,0.119,0.974,-0.193,1,-0.063,-0.887,0.457,1,-0.204,-0.921,0.33,1,-0.075,0.838,-0.54,1,-0.526,-0.732,-0.433,1,-0.308,-0.81,-0.499,1,0.655,-0.391,0.646,1,0.5,-0.312,0.808,1,0.142,-0.971,-0.19,1,0.003,-1,0.005,1,-0.312,-0.216,-0.925,1
,-0.499,-0.314,-0.808,1,0.074,0.84,0.537,1,0.526,-0.732,0.433,1,0.308,-0.81,0.499,1,0.722,-0.565,0.4,1,0.4,-0.65,0.646,1,-0.744,-0.506,-0.437,1,-0.45,-0.517,-0.728,1,-0.214,-0.881,0.421,1,0.119,-0.974,0.193,1,-0.174,0.856,-0.486,1,-0.721,0.567,0.398,1,-0.398,0.653
,0.644,1,-0.612,0.47,0.636,1,-0.45,0.517,0.728,1,0.314,-0.213,-0.925,1,0.5,-0.31,-0.809,1,0.063,-0.887,-0.457,1,0.204,-0.921,-0.33,1,-0.509,0.534,-0.676,1,-0.553,0.077,-0.83,1,-0.513,0.317,-0.798,1,-0.484,-0.175,-0.857,1,-0.331,0.204,-0.921,1,0.646,-0.655,0.392,1
,0.808,-0.499,0.313,1,0.436,-0.744,0.506,1,0.728,-0.45,0.517,1,-0.394,-0.718,-0.574,1,0.636,0.613,0.469,1,0.728,0.45,0.516,1,-0.51,-0.534,0.674,1,-0.643,-0.398,0.654,1,0.538,0.075,-0.84,1,0.501,0.31,-0.808,1,-0.927,-0.349,0.138,1,-0.847,-0.523,0.096,1,0.248,-0.067
,0.966,1,-0.437,-0.744,-0.506,1,-0.728,-0.45,-0.517,1,0.421,-0.214,-0.881,1,0.193,0.119,-0.974,1,-0.538,-0.075,-0.84,1,-0.501,-0.31,-0.808,1,-0.499,0.166,-0.851,1,-0.345,-0.213,-0.914,1,-0.418,-0.216,-0.882,1,-0.99,0.137,-0.028,1,-0.848,0.524,-0.073,1,0.484,0.175,-0.857,1
,0.331,-0.204,-0.921,1,-0.646,0.657,0.389,1,-0.809,0.5,0.309,1,-0.635,0.61,-0.473,1,-0.727,0.449,-0.519,1,0.84,0.538,-0.075,1,-0.123,-0.927,0.355,1,-0.08,-0.848,0.524,1,0.566,-0.4,0.721,1,0.651,-0.646,0.399,1,-0.486,0.633,-0.603,1,-0.533,0.72,-0.445,1,-0.213,0.925
,-0.314,1,-0.31,0.809,-0.5,1,-0.84,0.538,0.075,1,-0.732,-0.433,-0.526,1,-0.81,-0.499,-0.308,1,0.966,-0.248,0.068,1,0.975,-0.189,-0.117,1,-0.47,-0.636,-0.612,1,-0.517,-0.728,-0.45,1,0.674,-0.51,-0.534,1,0.654,-0.643,-0.398,1,0.857,0.484,-0.175,1,-0.381,-0.647,-0.661,1
,-0.301,-0.811,-0.501,1,-0.971,0.2,-0.13,1,-1,0.008,0.005,1,-0.673,-0.512,-0.534,1,-0.651,-0.645,-0.399,1,0.044,-0.99,-0.137,1,0.089,-0.847,-0.524,1,-0.857,0.484,0.175,1,-0.966,0.25,0.066,1,-0.974,0.192,-0.118,1,0.47,0.636,-0.612,1,0.517,0.728,-0.45,1,-0.213,-0.925
,0.314,1,-0.31,-0.809,0.5,1,-0.887,-0.457,0.063,1,-0.921,-0.33,0.204,1,-0.84,0.538,0.075,1,-0.887,-0.457,0.063,1,-0.063,-0.887,0.457,1,0.074,0.84,0.537,1,-0.075,0.838,-0.54,1,0.063,-0.887,-0.457,1,0.436,-0.744,0.506,1,0.176,0.858,0.483,1,-0.394,-0.718,-0.574,1
,-0.526,-0.732,-0.433,1,0.248,-0.067,0.966,1,-0.635,0.61,-0.473,1,-0.213,0.925,-0.314,1,-0.732,-0.433,-0.526,1,0.857,0.484,-0.175,1,-0.744,-0.506,-0.437,1,-0.213,-0.925,0.314,1,0.526,-0.732,0.433,1,0.646,-0.655,0.392,1,-0.214,-0.881,0.421,1,0.636,0.613,0.469,1,-0.123,-0.927
,0.355,1,-0.437,-0.744,-0.506,1,-0.673,-0.512,-0.534,1,-0.174,0.856,-0.486,1,-0.646,0.657,0.389,1,-0.553,0.077,-0.83,1,-0.538,-0.075,-0.84,1,-0.612,0.47,0.636,1,0.674,-0.51,-0.534,1,-0.509,0.534,-0.676,1,-0.486,0.633,-0.603,1,0.538,0.075,-0.84,1,-0.99,0.137,-0.028,1
,0.966,-0.248,0.068,1,-0.721,0.567,0.398,1,-0.857,0.484,0.175,1,-0.499,0.166,-0.851,1,0.566,-0.4,0.721,1,-0.927,-0.349,0.138,1,-0.381,-0.647,-0.661,1,0.421,-0.214,-0.881,1,-0.47,-0.636,-0.612,1,0.47,0.636,-0.612,1,-0.418,-0.216,-0.882,1,-0.971,0.2,-0.13,1,-0.966,0.25
,0.066,1,0.84,0.538,-0.075,1,0.044,-0.99,-0.137,1]
,"uvs":[0.37,0.422,0.26,0.422,0.315,0.327,0.334,0.55,0.39,0.455,0.445,0.55,0.677,0.026,0.732,0.121,0.621,0.121,0.73,0.142,0.676,0.238,0.62,0.143,0.114,0.421,0.169,0.326,0.224,0.421,0.549,0.25,0.604,0.154,0.659,0.25,0.518,0.423,0.408,0.423,0.463,0.327,0.297,0.549,0.187,0.549,0.242,0.454,0.113,0.443
,0.224,0.443,0.168,0.538,0.241,0.411,0.186,0.315,0.297,0.316,0.768,0.121,0.823,0.025,0.878,0.121,0.805,0.015,0.75,0.11,0.695,0.015,0.335,0.316,0.445,0.317,0.389,0.412,0.474,0.121,0.529,0.026,0.584,0.121,0.602,0.111,0.547,0.016,0.657,0.015,0.315,0.539,0.261,0.444,0.371,0.444,0.803,0.248,0.693,0.248
,0.748,0.152,0.768,0.141,0.878,0.144,0.821,0.238,0.464,0.54,0.408,0.446,0.518,0.444,0.586,0.144,0.599,0.137,0.594,0.148,0.322,0.308,0.335,0.308,0.383,0.43,0.371,0.431,0.321,0.557,0.327,0.546,0.597,0.129,0.585,0.13,0.168,0.553,0.161,0.543,0.604,0.139,0.611,0.15,0.602,0.126,0.595,0.115,0.315,0.554
,0.308,0.544,0.241,0.426,0.234,0.415,0.531,0.24,0.531,0.255,0.524,0.244,0.529,0.011,0.537,0.021,0.743,0.135,0.738,0.146,0.101,0.429,0.106,0.417,0.755,0.128,0.761,0.117,0.237,0.436,0.231,0.447,0.818,0.007,0.813,0.019,0.531,0.43,0.518,0.431,0.677,0.01,0.684,0.021,0.672,0.257,0.659,0.258,0.458,0.558
,0.445,0.559,0.821,0.253,0.814,0.242,0.174,0.557,0.18,0.545,0.676,0.253,0.669,0.242,0.461,0.129,0.467,0.117,0.458,0.309,0.453,0.321,0.476,0.144,0.463,0.137,0.476,0.136,0.891,0.128,0.879,0.129,0.748,0.137,0.755,0.148,0.395,0.438,0.408,0.437,0.533,0.008,0.546,0.007,0.535,0.257,0.541,0.246,0.608,0.128
,0.614,0.117,0.242,0.439,0.249,0.449,0.891,0.136,0.886,0.148,0.31,0.308,0.304,0.32,0.531,0.437,0.526,0.448,0.68,0.255,0.685,0.244,0.75,0.125,0.743,0.115,0.1,0.435,0.113,0.434,0.315,0.312,0.323,0.322,0.248,0.436,0.26,0.435,0.67,0.008,0.664,0.019,0.755,0.134,0.768,0.133,0.39,0.439,0.397,0.45
,0.463,0.312,0.47,0.323,0.169,0.311,0.176,0.321,0.607,0.135,0.62,0.134,0.31,0.557,0.297,0.558,0.745,0.128,0.732,0.129,0.247,0.43,0.253,0.418,0.389,0.427,0.382,0.416,0.464,0.555,0.457,0.545,0.173,0.308,0.186,0.307,0.384,0.437,0.378,0.448,0.395,0.43,0.4,0.419,0.682,0.008,0.695,0.007,0.816,0.255
,0.803,0.256,0.823,0.01,0.831,0.021,0.237,0.429,0.224,0.43,0.456,0.323,0.231,0.417,0.592,0.117,0.538,0.244,0.176,0.543,0.666,0.246,0.334,0.559,0.586,0.136,0.596,0.15,0.539,0.02,0.248,0.415,0.378,0.418,0.382,0.45,0.731,0.134,0.327,0.32,0.26,0.431,0.113,0.43,0.816,0.021,0.522,0.021,0.683,0.242
,0.768,0.129,0.468,0.148,0.609,0.115,0.253,0.448,0.669,0.021,0.548,0.258,0.323,0.544,0.179,0.319,0.224,0.434,0.828,0.243,0.235,0.449,0.525,0.419,0.452,0.546,0.76,0.145,0.741,0.148,0.518,0.436,0.187,0.558,0.613,0.147,0.805,0.006,0.879,0.135,0.657,0.007,0.401,0.45,0.397,0.416,0.621,0.129,0.305,0.545
,0.886,0.117,0.811,0.244,0.297,0.307,0.472,0.545,0.693,0.256,0.687,0.019,0.308,0.322,0.371,0.436,0.586,0.136,0.327,0.32,0.322,0.308,0.378,0.418,0.383,0.43,0.334,0.559,0.321,0.557,0.592,0.117,0.597,0.129,0.176,0.543,0.596,0.15,0.604,0.139,0.609,0.115,0.602,0.126,0.323,0.544,0.315,0.554,0.248,0.415
,0.241,0.426,0.538,0.244,0.522,0.021,0.529,0.011,0.731,0.134,0.743,0.135,0.113,0.43,0.101,0.429,0.768,0.129,0.755,0.128,0.224,0.434,0.805,0.006,0.818,0.007,0.525,0.419,0.531,0.43,0.669,0.021,0.677,0.01,0.666,0.246,0.672,0.257,0.452,0.546,0.828,0.243,0.821,0.253,0.187,0.558,0.174,0.557,0.683,0.242
,0.676,0.253,0.474,0.13,0.461,0.129,0.446,0.308,0.468,0.148,0.463,0.137,0.886,0.117,0.891,0.128,0.741,0.148,0.748,0.137,0.401,0.45,0.395,0.438,0.539,0.02,0.548,0.258,0.535,0.257,0.621,0.129,0.608,0.128,0.235,0.449,0.242,0.439,0.879,0.135,0.891,0.136,0.297,0.307,0.518,0.436,0.531,0.437,0.693,0.256
,0.68,0.255,0.758,0.115,0.75,0.125,0.106,0.447,0.1,0.435,0.308,0.322,0.253,0.448,0.248,0.436,0.657,0.007,0.67,0.008,0.76,0.145,0.755,0.134,0.382,0.45,0.39,0.439,0.456,0.323,0.162,0.321,0.169,0.311,0.613,0.147,0.607,0.135,0.305,0.545,0.31,0.557,0.739,0.117,0.745,0.128,0.26,0.431,0.397,0.416
,0.389,0.427,0.472,0.545,0.464,0.555,0.179,0.319,0.173,0.308,0.371,0.436,0.384,0.437,0.408,0.431,0.687,0.019,0.682,0.008,0.811,0.244,0.816,0.255,0.816,0.021,0.823,0.01,0.231,0.417,0.237,0.429,0.456,0.323,0.231,0.417,0.592,0.117,0.538,0.244,0.176,0.543,0.666,0.246,0.474,0.13,0.586,0.136,0.446,0.308
,0.596,0.15,0.539,0.02,0.106,0.447,0.382,0.45,0.162,0.321,0.26,0.431,0.113,0.43,0.816,0.021,0.522,0.021,0.683,0.242,0.768,0.129,0.468,0.148,0.253,0.448,0.548,0.258,0.179,0.319,0.224,0.434,0.758,0.115,0.828,0.243,0.235,0.449,0.525,0.419,0.739,0.117,0.452,0.546,0.76,0.145,0.741,0.148,0.518,0.436
,0.613,0.147,0.805,0.006,0.408,0.431,0.879,0.135,0.657,0.007,0.401,0.45,0.397,0.416,0.621,0.129,0.305,0.545,0.811,0.244,0.297,0.307,0.472,0.545,0.687,0.019,0.308,0.322,0.371,0.436]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50
,51,52,53,54,55,56,57,58,59,36,60,61,0,62,63,3,64,65,41,66,67,26,68,69,16,70,71,42,72,73,45,74,75,27,76,77,78,79,80,40,81,82,9,83,84,12,85,86,30,87,88
,25,89,90,33,91,92,18,93,94,6,95,96,17,97,98,5,99,100,53,101,102,22,103,104,10,105,106,39,107,108,37,109,110,111,112,113,32,114,115,50,116,117,55,118,119,43,120,121,15,122,123
,8,124,125,23,126,127,52,128,129,29,130,131,56,132,133,49,134,135,34,136,137,24,138,139,2,140,141,46,142,143,44,144,145,51,146,147,4,148,149,20,150,151,13,152,153,11,154,155,21,156,157
,7,158,159,1,160,161,38,162,163,54,164,165,28,166,167,47,168,169,19,170,171,35,172,173,48,174,175,31,176,177,14,178,179,19,180,20,181,13,153,40,182,41,183,57,59,25,184,26,185,16,71
,3,100,186,67,39,41,111,187,57,61,37,36,15,188,16,189,42,73,27,131,190,69,24,26,0,141,191,192,3,65,9,155,193,86,13,12,36,163,194,195,0,63,14,196,12,197,30,88,39,198,40
,199,9,84,32,200,30,201,78,80,42,145,202,203,45,75,6,125,204,205,17,98,45,169,206,207,27,77,24,208,25,92,34,33,52,209,53,210,22,104,20,211,18,96,7,6,4,212,5,213,53,102
,49,214,50,215,55,119,22,157,216,217,10,106,35,218,33,94,19,18,51,219,52,220,43,121,54,221,55,222,37,110,7,223,8,224,23,127,32,177,225,226,50,117,28,227,29,228,56,133,49,175,229
,230,34,137,1,231,2,232,46,143,111,57,78,57,233,58,36,234,235,0,236,237,3,238,239,41,240,241,26,242,68,16,243,244,42,245,246,45,247,248,27,249,250,78,251,79,40,252,253,9,254,255
,12,256,257,30,258,259,25,260,89,33,261,262,18,263,264,6,265,266,17,267,268,5,269,99,53,270,271,22,272,273,10,274,275,39,276,277,37,278,109,111,279,280,32,281,282,50,283,284,55,285,286
,43,287,120,15,288,289,8,290,291,23,292,293,52,294,295,29,296,130,56,297,298,49,299,300,34,301,302,24,303,304,2,305,140,46,306,307,44,308,309,51,310,311,4,312,313,20,314,150,13,315,316
,11,317,318,21,319,320,7,321,322,1,323,160,38,324,325,54,326,327,28,328,329,47,330,331,19,332,170,35,333,334,48,335,336,31,337,338,14,339,340,19,171,341,342,14,13,40,82,343,344,78,57
,25,90,345,346,17,16,3,5,100,67,347,39,111,113,348,61,349,37,15,123,350,351,43,42,27,29,131,69,352,24,0,2,141,353,4,3,9,11,155,86,354,13,36,38,163,355,1,0,14,179,356
,357,31,30,39,108,358,359,10,9,32,115,360,361,111,78,42,44,145,362,46,45,6,8,125,363,15,17,45,47,169,364,28,27,24,139,365,92,366,34,52,129,367,368,23,22,20,151,369,96,370,7
,4,149,371,372,51,53,49,135,373,374,56,55,22,21,157,375,11,10,35,173,376,94,377,19,51,147,378,379,44,43,54,165,380,381,38,37,7,159,382,383,21,23,32,31,177,384,48,50,28,167,385
,386,54,56,49,48,175,387,35,34,1,161,388,389,47,46]
}
,{"name":"d100","id":"d100","billboardMode":0,"position":[-0.6,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false
,"positions":[-0.0562,-0.0133,0.0652,-0.0838,-0.0133,-0.0197,-0.0838,0.0037,0.0272,-0.0562,0.0133,-0.0652,-0.0838,0.0133,0.0197,-0.0838,-0.0037,-0.0272,0.0072,0.0133,0.0858,0.0794,0.0133,0.0333,0.0518,-0.0037,0.0713,-0.0794,0.0133,0.0333,-0.0072,0.0133,0.0858,-0.0518,-0.0037,0.0713,0.0446,0.0133,-0.0736,-0.0446,0.0133,-0.0736,0,-0.0037,-0.0881,-0.0794,-0.0133,-0.0333,-0.0072,-0.0133,-0.0858
,-0.0518,0.0037,-0.0713,0.0794,-0.0133,-0.0333,0.0072,-0.0133,-0.0858,0.0072,-0.0857,-0.0098,0.0838,-0.0133,-0.0197,0.0562,-0.0133,0.0652,0.0838,0.0037,0.0272,0.0446,-0.0133,0.0736,-0.0446,-0.0133,0.0736,0,0.0037,0.0881,0.0072,0.0857,0.0098,0,0.0915,0,0.0103,0.0868,0.0034,-0.0072,0.0857,0.0098,0,0.0915,0,0,0.0868,0.0109,-0.0116,0.0857,-0.0038
,0,0.0915,0,-0.0103,0.0868,0.0034,0,0.0857,-0.0122,0,0.0915,0,-0.0064,0.0868,-0.0088,0.0116,0.0857,-0.0038,0,0.0915,0,0.0064,0.0868,-0.0088,-0.0116,-0.0857,0.0038,0,-0.0915,0,-0.0103,-0.0868,-0.0034,0,-0.0857,0.0122,0,-0.0915,0,-0.0064,-0.0868,0.0088,0.0116,-0.0857,0.0038,0,-0.0915,0,0.0064,-0.0868,0.0088
,0,-0.0915,0,0.0103,-0.0868,-0.0034,-0.0072,-0.0857,-0.0098,0,-0.0915,0,0,-0.0868,-0.0109,0.0525,-0.0103,0.0722,0.0562,-0.008,0.0687,0.0525,-0.0103,0.0722,0.0511,-0.0148,0.0704,0.0525,-0.0103,0.0722,0.048,-0.008,0.0747,0.0849,0.0103,0.0276,0.0827,0.008,0.0322,0.0838,0.0133,0.0197,0.0849,0.0103,0.0276,0.0827,0.0148,0.0269,0.0849,0.0103,0.0276
,0.0859,0.008,0.0226,0,0.0103,0.0893,0,0.0148,0.087,0,0.0103,0.0893,0.0051,0.008,0.0886,0,0.0103,0.0893,-0.0051,0.008,0.0886,0.0525,0.0103,-0.0722,0.0511,0.0148,-0.0704,0.0518,0.0037,-0.0713,0.0525,0.0103,-0.0722,0.048,0.008,-0.0747,0.0562,0.0133,-0.0652,0.0525,0.0103,-0.0722,0.0562,0.008,-0.0687,0.0849,-0.0103,-0.0276,0.0827,-0.0148,-0.0269
,0.0838,-0.0037,-0.0272,0.0849,-0.0103,-0.0276,0.0859,-0.008,-0.0226,0.0849,-0.0103,-0.0276,0.0827,-0.008,-0.0322,-0.0525,0.0103,-0.0722,-0.0511,0.0148,-0.0704,-0.0525,0.0103,-0.0722,-0.0562,0.008,-0.0687,-0.0525,0.0103,-0.0722,-0.048,0.008,-0.0747,0,-0.0103,-0.0893,0,-0.0148,-0.087,0,-0.0103,-0.0893,0.0051,-0.008,-0.0886,0,-0.0103,-0.0893,-0.0051,-0.008,-0.0886
,-0.0849,-0.0103,-0.0276,-0.0827,-0.008,-0.0322,-0.0849,-0.0103,-0.0276,-0.0859,-0.008,-0.0226,-0.0849,-0.0103,-0.0276,-0.0827,-0.0148,-0.0269,-0.0849,0.0103,0.0276,-0.0859,0.008,0.0226,-0.0849,0.0103,0.0276,-0.0827,0.0148,0.0269,-0.0849,0.0103,0.0276,-0.0827,0.008,0.0322,-0.0525,-0.0103,0.0722,-0.0511,-0.0148,0.0704,-0.0525,-0.0103,0.0722,-0.0562,-0.008,0.0687,-0.0525,-0.0103,0.0722
,-0.048,-0.008,0.0747,-0.0064,-0.0868,0.0088,-0.0511,-0.0148,0.0704,0.0064,-0.0868,0.0088,0.0511,-0.0148,0.0704,0.0103,0.0868,0.0034,0.0827,0.0148,0.0269,0.048,-0.008,0.0747,0.0064,0.0868,-0.0088,0.0511,0.0148,-0.0704,0.0859,0.008,0.0226,0.0562,0.008,-0.0687,0.0827,-0.008,-0.0322,0.048,0.008,-0.0747,-0.0562,0.008,-0.0687,-0.0103,0.0868,0.0034,-0.0827,0.0148,0.0269
,-0.0051,0.008,0.0886,-0.048,-0.008,0.0747,0,0.0868,0.0109,0,0.0148,0.087,0.0562,-0.008,0.0687,0.0827,0.008,0.0322,-0.048,0.008,-0.0747,-0.0051,-0.008,-0.0886,-0.0064,0.0868,-0.0088,-0.0511,0.0148,-0.0704,0.0103,-0.0868,-0.0034,0.0827,-0.0148,-0.0269,-0.0827,0.008,0.0322,0,-0.0868,-0.0109,0,-0.0148,-0.087,-0.0103,-0.0868,-0.0034,-0.0827,-0.0148,-0.0269
,-0.0859,-0.008,-0.0226,-0.0859,0.008,0.0226,0,0.0868,0.0109,-0.0103,0.0868,0.0034,0,0.0915,0,-0.0064,0.0868,-0.0088,0,0.0915,0,0.0064,0.0868,-0.0088,0,0.0915,0,0.0103,0.0868,0.0034,0,0.0915,0,-0.0064,-0.0868,0.0088,0.0064,-0.0868,0.0088,0,-0.0915,0,0.0103,-0.0868,-0.0034,0,-0.0915,0,0,-0.0868,-0.0109
,0,-0.0915,0,-0.0103,-0.0868,-0.0034,0,-0.0915,0,0.0511,-0.0148,0.0704,0.048,-0.008,0.0747,0.0525,-0.0103,0.0722,0.0562,-0.008,0.0687,0.0525,-0.0103,0.0722,0.0827,0.0148,0.0269,0.0859,0.008,0.0226,0.0849,0.0103,0.0276,0.0827,0.008,0.0322,0.0849,0.0103,0.0276,0.0051,0.008,0.0886,-0.0051,0.008,0.0886,0,0.0103,0.0893,0,0.0148,0.087
,0,0.0103,0.0893,0.048,0.008,-0.0747,0.0562,0.008,-0.0687,0.0525,0.0103,-0.0722,0.0511,0.0148,-0.0704,0.0525,0.0103,-0.0722,0.0859,-0.008,-0.0226,0.0827,-0.008,-0.0322,0.0849,-0.0103,-0.0276,0.0827,-0.0148,-0.0269,0.0849,-0.0103,-0.0276,-0.0562,0.008,-0.0687,-0.048,0.008,-0.0747,-0.0525,0.0103,-0.0722,-0.0511,0.0148,-0.0704,-0.0525,0.0103,-0.0722,0.0051,-0.008,-0.0886
,-0.0051,-0.008,-0.0886,0,-0.0103,-0.0893,0,-0.0148,-0.087,0,-0.0103,-0.0893,-0.0859,-0.008,-0.0226,-0.0827,-0.0148,-0.0269,-0.0849,-0.0103,-0.0276,-0.0827,-0.008,-0.0322,-0.0849,-0.0103,-0.0276,-0.0827,0.0148,0.0269,-0.0827,0.008,0.0322,-0.0849,0.0103,0.0276,-0.0859,0.008,0.0226,-0.0849,0.0103,0.0276,-0.0562,-0.008,0.0687,-0.048,-0.008,0.0747,-0.0525,-0.0103,0.0722
,-0.0511,-0.0148,0.0704,-0.0525,-0.0103,0.0722,-0.0511,-0.0148,0.0704,0.0511,-0.0148,0.0704,0.0827,0.0148,0.0269,0.0051,0.008,0.0886,0.0511,0.0148,-0.0704,0.0859,-0.008,-0.0226,0.0562,0.008,-0.0687,0.0827,-0.008,-0.0322,0.0051,-0.008,-0.0886,-0.0827,-0.008,-0.0322,-0.0827,0.0148,0.0269,-0.0051,0.008,0.0886,-0.048,-0.008,0.0747,0,0.0148,0.087,0.0562,-0.008,0.0687
,0.0827,0.008,0.0322,-0.048,0.008,-0.0747,-0.0051,-0.008,-0.0886,-0.0511,0.0148,-0.0704,0.0827,-0.0148,-0.0269,-0.0562,-0.008,0.0687,0,-0.0148,-0.087,-0.0827,-0.0148,-0.0269,-0.0859,-0.008,-0.0226,-0.0859,0.008,0.0226]
,"normals":[-0.739,-0.526,0.42,-0.845,-0.526,0.095,-0.868,-0.41,0.282,-0.739,0.526,-0.42,-0.845,0.526,-0.095,-0.868,0.41,-0.282,0.351,0.526,0.774,0.628,0.526,0.573,0.536,0.41,0.738,-0.628,0.526,0.573,-0.351,0.526,0.774,-0.536,0.41,0.738,0.171,0.526,-0.833,-0.171,0.526,-0.833,0,0.41,-0.912,-0.628,-0.526,-0.573,-0.351,-0.526,-0.774
,-0.536,-0.41,-0.738,0.628,-0.526,-0.573,0.351,-0.526,-0.774,0.361,-0.789,-0.497,0.845,-0.526,0.095,0.739,-0.526,0.42,0.868,-0.41,0.282,0.171,-0.526,0.833,-0.171,-0.526,0.833,0,-0.41,0.912,0.361,0.789,0.497,0,1,0,0.529,0.831,0.172,-0.361,0.789,0.497,0,1,0,0,0.831,0.556,-0.585,0.789,-0.19
,0,1,0,-0.529,0.831,0.172,0,0.789,-0.615,0,1,0,-0.327,0.831,-0.45,0.585,0.789,-0.19,0,1,0,0.327,0.831,-0.45,-0.585,-0.789,0.19,0,-1,0,-0.529,-0.831,-0.172,0,-0.789,0.615,0,-1,0,-0.327,-0.831,0.45,0.585,-0.789,0.19,0,-1,0,0.327,-0.831,0.45
,0,-1,0,0.529,-0.831,-0.172,-0.361,-0.789,-0.497,0,-1,0,0,-0.831,-0.556,0.575,-0.203,0.792,0.766,-0.025,0.643,0.575,-0.203,0.792,0.47,-0.602,0.646,0.575,-0.203,0.792,0.375,-0.025,0.927,0.931,0.203,0.303,0.848,0.025,0.529,0.845,0.526,-0.095,0.931,0.203,0.303,0.76,0.602,0.247,0.931,0.203,0.303
,0.997,0.025,0.07,0,0.203,0.979,0,0.602,0.799,0,0.203,0.979,0.241,0.025,0.97,0,0.203,0.979,-0.241,0.025,0.97,0.575,0.203,-0.792,0.47,0.602,-0.646,0.536,-0.41,-0.738,0.575,0.203,-0.792,0.375,0.025,-0.927,0.739,0.526,-0.42,0.575,0.203,-0.792,0.766,0.025,-0.643,0.931,-0.203,-0.303,0.76,-0.602,-0.247
,0.868,0.41,-0.282,0.931,-0.203,-0.303,0.997,-0.025,-0.07,0.931,-0.203,-0.303,0.848,-0.025,-0.529,-0.575,0.203,-0.792,-0.47,0.602,-0.646,-0.575,0.203,-0.792,-0.766,0.025,-0.643,-0.575,0.203,-0.792,-0.375,0.025,-0.927,0,-0.203,-0.979,0,-0.602,-0.799,0,-0.203,-0.979,0.241,-0.025,-0.97,0,-0.203,-0.979,-0.241,-0.025,-0.97
,-0.931,-0.203,-0.303,-0.848,-0.025,-0.529,-0.931,-0.203,-0.303,-0.997,-0.025,-0.07,-0.931,-0.203,-0.303,-0.76,-0.602,-0.247,-0.931,0.203,0.303,-0.997,0.025,0.07,-0.931,0.203,0.303,-0.76,0.602,0.247,-0.931,0.203,0.303,-0.848,0.025,0.529,-0.575,-0.203,0.792,-0.47,-0.602,0.646,-0.575,-0.203,0.792,-0.766,-0.025,0.643,-0.575,-0.203,0.792
,-0.375,-0.025,0.927,-0.327,-0.831,0.45,-0.47,-0.602,0.646,0.327,-0.831,0.45,0.47,-0.602,0.646,0.529,0.831,0.172,0.76,0.602,0.247,0.375,-0.025,0.927,0.327,0.831,-0.45,0.47,0.602,-0.646,0.997,0.025,0.07,0.766,0.025,-0.643,0.848,-0.025,-0.529,0.375,0.025,-0.927,-0.766,0.025,-0.643,-0.529,0.831,0.172,-0.76,0.602,0.247
,-0.241,0.025,0.97,-0.375,-0.025,0.927,0,0.831,0.556,0,0.602,0.799,0.766,-0.025,0.643,0.848,0.025,0.529,-0.375,0.025,-0.927,-0.241,-0.025,-0.97,-0.327,0.831,-0.45,-0.47,0.602,-0.646,0.529,-0.831,-0.172,0.76,-0.602,-0.247,-0.848,0.025,0.529,0,-0.831,-0.556,0,-0.602,-0.799,-0.529,-0.831,-0.172,-0.76,-0.602,-0.247
,-0.997,-0.025,-0.07,-0.997,0.025,0.07,0,0.831,0.556,-0.529,0.831,0.172,0,1,0,-0.327,0.831,-0.45,0,1,0,0.327,0.831,-0.45,0,1,0,0.529,0.831,0.172,0,1,0,-0.327,-0.831,0.45,0.327,-0.831,0.45,0,-1,0,0.529,-0.831,-0.172,0,-1,0,0,-0.831,-0.556
,0,-1,0,-0.529,-0.831,-0.172,0,-1,0,0.47,-0.602,0.646,0.375,-0.025,0.927,0.575,-0.203,0.792,0.766,-0.025,0.643,0.575,-0.203,0.792,0.76,0.602,0.247,0.997,0.025,0.07,0.931,0.203,0.303,0.848,0.025,0.529,0.931,0.203,0.303,0.241,0.025,0.97,-0.241,0.025,0.97,0,0.203,0.979,0,0.602,0.799
,0,0.203,0.979,0.375,0.025,-0.927,0.766,0.025,-0.643,0.575,0.203,-0.792,0.47,0.602,-0.646,0.575,0.203,-0.792,0.997,-0.025,-0.07,0.848,-0.025,-0.529,0.931,-0.203,-0.303,0.76,-0.602,-0.247,0.931,-0.203,-0.303,-0.766,0.025,-0.643,-0.375,0.025,-0.927,-0.575,0.203,-0.792,-0.47,0.602,-0.646,-0.575,0.203,-0.792,0.241,-0.025,-0.97
,-0.241,-0.025,-0.97,0,-0.203,-0.979,0,-0.602,-0.799,0,-0.203,-0.979,-0.997,-0.025,-0.07,-0.76,-0.602,-0.247,-0.931,-0.203,-0.303,-0.848,-0.025,-0.529,-0.931,-0.203,-0.303,-0.76,0.602,0.247,-0.848,0.025,0.529,-0.931,0.203,0.303,-0.997,0.025,0.07,-0.931,0.203,0.303,-0.766,-0.025,0.643,-0.375,-0.025,0.927,-0.575,-0.203,0.792
,-0.47,-0.602,0.646,-0.575,-0.203,0.792,-0.47,-0.602,0.646,0.47,-0.602,0.646,0.76,0.602,0.247,0.241,0.025,0.97,0.47,0.602,-0.646,0.997,-0.025,-0.07,0.766,0.025,-0.643,0.848,-0.025,-0.529,0.241,-0.025,-0.97,-0.848,-0.025,-0.529,-0.76,0.602,0.247,-0.241,0.025,0.97,-0.375,-0.025,0.927,0,0.602,0.799,0.766,-0.025,0.643
,0.848,0.025,0.529,-0.375,0.025,-0.927,-0.241,-0.025,-0.97,-0.47,0.602,-0.646,0.76,-0.602,-0.247,-0.766,-0.025,0.643,0,-0.602,-0.799,-0.76,-0.602,-0.247,-0.997,-0.025,-0.07,-0.997,0.025,0.07]
,"tangents":[-0.214,0.775,0.594,1,-0.338,0.662,0.669,1,-0.164,0.771,0.616,1,-0.615,-0.273,0.74,1,-0.375,-0.458,0.806,1,-0.445,-0.385,0.809,1,-0.931,0.284,0.229,1,-0.777,0.468,0.421,1,-0.833,0.396,0.386,1,0.501,-0.289,0.815,1,0.636,-0.473,0.61,1,0.62,-0.402,0.674,1,-0.879,0.463
,0.112,1,-0.89,0.279,0.359,1,-0.903,0.391,0.176,1,-0.515,-0.272,0.813,1,-0.651,-0.457,0.606,1,-0.633,-0.384,0.673,1,0.647,0.762,0.009,1,0.76,0.644,-0.093,1,0.837,0.51,-0.2,1,-0.532,-0.807,0.257,1,-0.653,-0.713,0.256,1,-0.486,-0.817,0.31,1,-0.892,0.277,0.358,1
,-0.88,0.461,0.111,1,-0.905,0.389,0.175,1,-0.93,0.27,0.248,1,-0.979,0,0.206,1,-0.829,0.461,0.317,1,0.518,-0.274,0.81,1,0.493,0,0.87,1,0.552,-0.463,0.693,1,-0.6,-0.262,0.756,1,-0.661,0,0.751,1,-0.474,-0.457,0.752,1,-0.901,0.267,0.342,1,-0.915,0
,0.403,1,-0.845,-0.044,0.533,1,0.601,-0.263,0.755,1,0.662,0,0.749,1,0.765,0.047,0.643,1,-0.472,0.521,0.711,1,-0.612,0,0.791,1,-0.647,0.263,0.716,1,-0.902,0.265,0.34,1,-0.916,0,0.401,1,-0.86,0.459,0.223,1,-0.81,-0.552,0.2,1,-0.984,0,0.176,1
,-0.944,-0.313,0.107,1,0.953,0,-0.303,1,0.812,0.554,-0.182,1,-0.535,-0.261,0.803,1,-0.511,0,0.86,1,-0.57,-0.457,0.683,1,-0.632,-0.725,0.273,1,-0.401,-0.8,0.446,1,-0.772,0.183,0.608,1,-0.781,0.059,0.622,1,-0.681,0.416,0.602,1,-0.859,0.367,0.357,1,-0.358,0.662
,0.658,1,-0.446,0.574,0.687,1,0.376,-0.459,0.805,1,-0.101,-0.653,0.75,1,0.222,-0.597,0.771,1,0.032,-0.873,0.488,1,-0.004,-0.925,0.381,1,-0.981,0.191,-0.04,1,-0.997,0.066,-0.05,1,-0.909,0.409,-0.085,1,-0.908,0.359,0.217,1,0.732,-0.668,0.139,1,0.787,-0.579,0.211,1
,-0.68,0.658,-0.325,1,-0.799,0.6,-0.022,1,0.655,0.753,0.058,1,0.366,0.802,0.472,1,0.581,0.773,0.256,1,0.615,-0.274,0.739,1,0.817,-0.18,0.547,1,0.623,-0.278,0.731,1,-0.147,-0.969,0.198,1,-0.552,-0.797,0.243,1,0.445,-0.386,0.808,1,0.201,-0.406,0.891,1,0.05,-0.474
,0.879,1,0.272,0.94,0.205,1,0.234,0.914,0.331,1,-0.817,-0.178,0.548,1,-0.831,-0.055,0.553,1,-0.786,-0.403,0.468,1,-0.608,-0.354,0.711,1,-0.772,0.186,0.608,1,-0.886,0.283,0.366,1,0.763,0.633,-0.132,1,0.819,0.459,-0.346,1,-0.908,0.411,-0.085,1,-0.849,0.48,-0.224,1
,-0.747,-0.651,0.135,1,-0.8,-0.561,0.214,1,-0.201,-0.405,0.892,1,-0.488,-0.355,0.798,1,-0.359,0.657,0.663,1,-0.066,0.737,0.673,1,-0.269,-0.177,0.947,1,-0.27,-0.054,0.961,1,0.102,-0.652,0.752,1,0.044,-0.562,0.826,1,0.263,-0.198,0.944,1,0.256,-0.072,0.964,1,0.331,0.821
,0.465,1,0.271,0.879,0.393,1,0.082,0.949,0.303,1,-0.22,0.789,0.574,1,0.781,-0.422,0.459,1,0.604,-0.373,0.704,1,-0.681,0.655,-0.326,1,-0.769,0.566,-0.296,1,-0.453,0.555,0.698,1,-0.801,0.599,-0.024,1,-0.846,-0.045,0.531,1,-0.834,-0.543,0.1,1,0.476,-0.458,0.751,1
,-0.635,0.604,0.483,1,-0.887,0.281,0.366,1,-0.859,0.459,0.225,1,0.832,-0.056,0.552,1,-0.044,-0.564,0.825,1,0.31,0.861,0.403,1,0.487,-0.356,0.797,1,-0.768,0.569,-0.295,1,-0.623,-0.276,0.732,1,0.36,0.037,0.932,1,-0.221,-0.596,0.772,1,-0.85,0.477,-0.224,1,0.812,-0.491
,0.315,1,-0.997,-0.04,0.06,1,0.65,-0.607,0.457,1,-0.553,0.485,0.678,1,-0.259,-0.852,0.454,1,-0.822,-0.472,0.32,1,-0.907,0.362,0.216,1,-0.764,0.048,0.644,1,-0.78,0.061,0.623,1,-0.807,-0.555,0.202,1,0.621,0.784,0.001,1,0.5,-0.295,0.814,1,0.897,0.246,-0.368,1
,-0.667,-0.595,0.448,1,-0.377,0.049,0.925,1,-0.591,0.481,0.647,1,-0.05,-0.473,0.88,1,0.062,0.794,0.604,1,-0.997,-0.04,0.06,1,0.36,0.037,0.932,1,0.493,0,0.87,1,-0.764,0.048,0.644,1,-0.661,0,0.751,1,-0.859,0.459,0.225,1,-0.915,0,0.403,1,0.476,-0.458
,0.751,1,0.662,0,0.749,1,-0.453,0.555,0.698,1,-0.846,-0.045,0.531,1,-0.916,0,0.401,1,-0.807,-0.555,0.202,1,-0.984,0,0.176,1,0.897,0.246,-0.368,1,0.953,0,-0.303,1,-0.377,0.049,0.925,1,-0.511,0,0.86,1,-0.834,-0.543,0.1,1,-0.887,0.281,0.366,1
,-0.772,0.183,0.608,1,-0.553,0.485,0.678,1,-0.681,0.416,0.602,1,-0.635,0.604,0.483,1,-0.044,-0.564,0.825,1,-0.101,-0.653,0.75,1,-0.259,-0.852,0.454,1,0.032,-0.873,0.488,1,-0.931,0.289,0.224,1,-0.85,0.477,-0.224,1,-0.909,0.409,-0.085,1,0.65,-0.607,0.457,1,0.732,-0.668
,0.139,1,-0.768,0.569,-0.295,1,0.31,0.861,0.403,1,0.366,0.802,0.472,1,0.832,-0.056,0.552,1,0.817,-0.18,0.547,1,-0.005,-0.963,0.271,1,0.487,-0.356,0.797,1,0.201,-0.406,0.891,1,0.621,0.784,0.001,1,0.272,0.94,0.205,1,-0.623,-0.276,0.732,1,-0.822,-0.472,0.32,1
,-0.786,-0.403,0.468,1,-0.78,0.061,0.623,1,-0.772,0.186,0.608,1,0.684,0.714,0.152,1,-0.907,0.362,0.216,1,-0.908,0.411,-0.085,1,-0.667,-0.595,0.448,1,-0.747,-0.651,0.135,1,-0.05,-0.473,0.88,1,-0.591,0.481,0.647,1,-0.359,0.657,0.663,1,-0.503,-0.275,0.819,1,-0.269,-0.177
,0.947,1,-0.221,-0.596,0.772,1,0.5,-0.295,0.814,1,0.263,-0.198,0.944,1,0.062,0.794,0.604,1,0.331,0.821,0.465,1,0.221,0.928,0.299,1,0.812,-0.491,0.315,1,0.781,-0.422,0.459,1,-0.801,0.599,-0.024,1,-0.681,0.655,-0.326,1,-0.801,0.599,-0.024,1,-0.834,-0.543,0.1,1
,-0.635,0.604,0.483,1,-0.931,0.289,0.224,1,0.832,-0.056,0.552,1,-0.005,-0.963,0.271,1,0.31,0.861,0.403,1,0.487,-0.356,0.797,1,0.684,0.714,0.152,1,-0.503,-0.275,0.819,1,-0.221,-0.596,0.772,1,-0.85,0.477,-0.224,1,0.812,-0.491,0.315,1,0.65,-0.607,0.457,1,-0.553,0.485
,0.678,1,-0.259,-0.852,0.454,1,-0.822,-0.472,0.32,1,-0.907,0.362,0.216,1,-0.78,0.061,0.623,1,0.621,0.784,0.001,1,0.221,0.928,0.299,1,-0.667,-0.595,0.448,1,-0.591,0.481,0.647,1,-0.05,-0.473,0.88,1,0.062,0.794,0.604,1]
,"uvs":[0.952,0.236,0.9,0.152,0.947,0.181,0.589,0.749,0.678,0.707,0.645,0.75,0.45,0.572,0.362,0.616,0.395,0.572,0.359,0.752,0.447,0.707,0.414,0.752,0.481,0.706,0.569,0.749,0.514,0.75,0.686,0.572,0.597,0.614,0.631,0.57,0.952,0.029,0.898,0.111,0.839,0.013,0.057,0.773,0.1,0.861,0.056,0.828,0.016,0.935
,0.105,0.892,0.071,0.936,0.452,0.686,0.458,0.699,0.447,0.693,0.356,0.637,0.35,0.624,0.361,0.631,0.589,0.635,0.583,0.622,0.594,0.629,0.57,0.635,0.577,0.622,0.578,0.635,0.476,0.685,0.469,0.699,0.468,0.686,0.838,0.248,0.826,0.256,0.832,0.244,0.016,0.821,0.009,0.808,0.02,0.815,0.171,0.772,0.184,0.766
,0.177,0.777,0.827,0.005,0.84,0.005,0.686,0.686,0.693,0.699,0.682,0.692,0.102,0.871,0.096,0.868,0.009,0.941,0.008,0.935,0.392,0.565,0.398,0.565,0.353,0.618,0.356,0.613,0.565,0.614,0.574,0.616,0.57,0.62,0.049,0.831,0.049,0.825,0.458,0.566,0.459,0.572,0.075,0.943,0.068,0.943,0.456,0.705,0.453,0.71
,0.472,0.704,0.476,0.7,0.946,0.084,0.952,0.088,0.947,0.091,0.476,0.571,0.468,0.566,0.474,0.564,0.051,0.765,0.057,0.764,0.531,0.57,0.534,0.564,0.538,0.569,0.959,0.022,0.96,0.029,0.582,0.755,0.581,0.749,0.628,0.564,0.634,0.564,0.577,0.755,0.571,0.756,0.894,0.12,0.891,0.116,0.511,0.757,0.507,0.752
,0.588,0.617,0.591,0.611,0.648,0.757,0.641,0.757,0.897,0.143,0.903,0.145,0.694,0.566,0.695,0.572,0.688,0.704,0.685,0.71,0.351,0.757,0.351,0.752,0.954,0.177,0.954,0.183,0.958,0.243,0.953,0.244,0.417,0.758,0.411,0.758,0.114,0.89,0.111,0.896,0.839,0.256,0.11,0.886,0.008,0.821,0.106,0.867,0.48,0.692
,0.357,0.622,0.015,0.942,0.566,0.629,0.468,0.571,0.571,0.611,0.953,0.082,0.528,0.564,0.474,0.709,0.588,0.756,0.349,0.637,0.684,0.7,0.078,0.938,0.421,0.753,0.46,0.686,0.452,0.701,0.388,0.57,0.054,0.835,0.624,0.569,0.517,0.757,0.581,0.635,0.578,0.75,0.171,0.764,0.954,0.021,0.358,0.759,0.832,0.017
,0.592,0.621,0.694,0.686,0.893,0.147,0.652,0.752,0.948,0.174,0.46,0.686,0.349,0.637,0.35,0.624,0.581,0.635,0.583,0.622,0.566,0.629,0.577,0.622,0.48,0.692,0.469,0.699,0.839,0.256,0.008,0.821,0.009,0.808,0.171,0.764,0.184,0.766,0.832,0.017,0.827,0.005,0.694,0.686,0.693,0.699,0.106,0.867,0.015,0.942
,0.009,0.941,0.388,0.57,0.392,0.565,0.357,0.622,0.571,0.611,0.574,0.616,0.054,0.835,0.049,0.831,0.452,0.565,0.078,0.938,0.075,0.943,0.452,0.701,0.456,0.705,0.474,0.709,0.953,0.082,0.952,0.088,0.468,0.571,0.468,0.566,0.05,0.771,0.528,0.564,0.534,0.564,0.954,0.021,0.959,0.022,0.588,0.756,0.624,0.569
,0.628,0.564,0.578,0.75,0.577,0.755,0.9,0.118,0.517,0.757,0.511,0.757,0.592,0.621,0.588,0.617,0.652,0.752,0.893,0.147,0.897,0.143,0.688,0.565,0.694,0.566,0.684,0.7,0.358,0.759,0.351,0.757,0.948,0.174,0.954,0.177,0.959,0.236,0.421,0.753,0.417,0.758,0.11,0.886,0.114,0.89,0.11,0.886,0.106,0.867
,0.357,0.622,0.452,0.565,0.468,0.571,0.05,0.771,0.953,0.082,0.528,0.564,0.9,0.118,0.688,0.565,0.684,0.7,0.078,0.938,0.421,0.753,0.452,0.701,0.388,0.57,0.054,0.835,0.624,0.569,0.517,0.757,0.578,0.75,0.954,0.021,0.959,0.236,0.592,0.621,0.893,0.147,0.652,0.752,0.948,0.174]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50
,20,51,52,53,54,55,22,56,57,24,58,59,8,60,61,7,62,63,64,65,66,23,67,68,6,69,70,26,71,72,10,73,74,12,75,76,77,78,79,80,81,82,21,83,84,85,86,87,18,88,89
,3,90,91,17,92,93,13,94,95,19,96,97,14,98,99,16,100,101,5,102,103,1,104,105,15,106,107,4,108,109,9,110,111,2,112,113,0,114,115,11,116,117,25,118,119,42,115,120,121,45,47
,45,59,122,123,48,50,39,66,124,125,27,29,24,72,126,61,6,8,36,76,127,128,39,41,64,87,129,68,21,23,18,130,77,131,80,82,12,99,132,79,19,77,3,103,133,93,15,17,30,111,134
,135,33,35,25,136,26,137,10,74,27,70,138,139,30,32,7,140,8,141,22,57,16,142,17,143,13,95,33,91,144,145,36,38,48,84,146,147,20,52,9,117,148,113,0,2,20,97,149,150,53,55
,53,107,151,152,42,44,4,153,5,154,1,105,64,80,85,0,42,1,3,33,4,6,27,7,9,30,10,12,36,13,15,53,16,18,77,19,21,48,22,24,45,25,27,155,28,30,156,157,33,158,159
,36,160,161,39,162,163,42,164,43,45,165,166,48,167,168,20,169,170,53,171,172,22,173,56,24,174,175,8,176,177,7,178,62,64,179,180,23,181,182,6,183,69,26,184,185,10,186,187,12,188,75
,77,189,190,80,191,192,21,193,83,85,194,195,18,196,197,3,198,90,17,199,200,13,201,202,19,203,96,14,204,205,16,206,207,5,208,102,1,209,210,15,211,212,4,213,108,9,214,215,2,216,217
,0,218,114,11,219,220,25,221,222,42,0,115,223,25,45,45,24,59,224,22,48,39,64,66,225,7,27,24,26,72,61,226,6,36,12,76,227,80,39,64,85,87,68,228,21,18,89,229,230,85,80
,12,14,99,79,231,19,3,5,103,93,232,15,30,9,111,233,4,33,25,119,234,235,11,10,27,6,70,236,10,30,7,63,237,238,23,22,16,101,239,240,14,13,33,3,91,241,13,36,48,21,84
,242,18,20,9,11,117,113,243,0,20,19,97,244,16,53,53,15,107,245,1,42,4,109,246,247,2,1,64,39,80]
}
],
"colliderFaceMap": {
"d4": {
"3": 1,
"0": 2,
"1": 3,
"2": 4
},
"d6": {
"0": 1,
"6": 1,
"4": 2,
"10": 2,
"8": 3,
"2": 3,
"3": 4,
"9": 4,
"7": 5,
"1": 5,
"5": 6,
"11": 6
},
"d8": {
"3": 1,
"7": 2,
"6": 3,
"2": 4,
"1": 5,
"5": 6,
"4": 7,
"0": 8
},
"d10": {
"9": 1,
"19": 1,
"1": 2,
"11": 2,
"7": 3,
"17": 3,
"3": 4,
"13": 4,
"6": 5,
"16": 5,
"2": 6,
"12": 6,
"8": 7,
"18": 7,
"10": 8,
"0": 8,
"5": 9,
"15": 9,
"4": 0,
"14": 0
},
"d12": {
"2": 1,
"16": 1,
"17": 1,
"6": 2,
"24": 2,
"25": 2,
"0": 3,
"12": 3,
"13": 3,
"1": 4,
"14": 4,
"15": 4,
"5": 5,
"22": 5,
"23": 5,
"9": 6,
"30": 6,
"31": 6,
"7": 7,
"26": 7,
"27": 7,
"10": 8,
"32": 8,
"33": 8,
"11": 9,
"34": 9,
"35": 9,
"8": 10,
"28": 10,
"29": 10,
"4": 11,
"20": 11,
"21": 11,
"3": 12,
"18": 12,
"19": 12
},
"d20": {
"19": 1,
"2": 2,
"8": 3,
"3": 4,
"15": 5,
"0": 6,
"14": 7,
"1": 8,
"17": 9,
"9": 10,
"10": 11,
"18": 12,
"6": 13,
"13": 14,
"7": 15,
"12": 16,
"4": 17,
"11": 18,
"5": 19,
"16": 20
},
"d100": {
"3": 10,
"13": 10,
"9": 20,
"19": 20,
"4": 30,
"14": 30,
"1": 40,
"11": 40,
"7": 50,
"17": 50,
"2": 60,
"12": 60,
"8": 70,
"18": 70,
"5": 80,
"15": 80,
"0": 90,
"10": 90,
"6": 0,
"16": 0
}
}
}

View File

@ -1,23 +0,0 @@
{
"name": "Blue Green Weathered Metal",
"systemName": "blueGreenMetal",
"author": "Frank Ali",
"version": 0.2,
"meshName": "smoothDice",
"meshFile": "smoothDice.json",
"material": {
"type": "standard",
"diffuseTexture": "diffuse.jpg",
"bumpTexture": "normal.png",
"specularTexture": "roughness.jpg",
"diffuseLevel": 1,
"bumpLevel": 0.5,
"specularPower": 1
},
"physics": {
"mass": 3,
"friction": 0.4,
"restitution": 0.2
},
"diceAvailable": ["d4","d6","d8","d10","d12","d20","d100"]
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -1,481 +0,0 @@
{"producer":{"name":"Blender","version":"4.0.2","exporter_version":"3.3.2","file":"dice_extras.babylon"},
"autoClear":true,"clearColor":[0.0509,0.0509,0.0509],"gravity":[0,-9.81,0],
"meshes":[{"name":"d2","id":"d2","billboardMode":0,"position":[0.3,0.01,-0.5],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false
,"positions":[0,0.01,0.1,0.0259,-0.01,0.0966,0,-0.01,0.1,0.0259,0.01,0.0966,0.05,-0.01,0.0866,0.05,0.01,0.0866,0.0707,-0.01,0.0707,0.0707,0.01,0.0707,0.0866,-0.01,0.05,0.0866,0.01,0.05,0.0966,-0.01,0.0259,0.0966,0.01,0.0259,0.1,-0.01,0,0.1,0.01,0,0.0966,-0.01,-0.0259,0.1,-0.01,0,0.0966,0.01,-0.0259
,0.0866,-0.01,-0.05,0.0866,0.01,-0.05,0.0707,-0.01,-0.0707,0.0707,0.01,-0.0707,0.05,-0.01,-0.0866,0.05,0.01,-0.0866,0.0259,-0.01,-0.0966,0.0259,0.01,-0.0966,0,-0.01,-0.1,0,0.01,-0.1,-0.0259,-0.01,-0.0966,-0.0259,0.01,-0.0966,-0.05,-0.01,-0.0866,-0.05,0.01,-0.0866,-0.0707,-0.01,-0.0707,-0.0707,0.01,-0.0707,-0.0866,-0.01,-0.05
,-0.0866,0.01,-0.05,-0.0966,-0.01,-0.0259,-0.0966,0.01,-0.0259,-0.1,-0.01,0,-0.1,0.01,0,-0.0966,-0.01,0.0259,-0.1,-0.01,0,-0.0966,0.01,0.0259,-0.0866,-0.01,0.05,-0.0866,0.01,0.05,-0.0707,-0.01,0.0707,-0.0707,0.01,0.0707,-0.05,-0.01,0.0866,-0.0646,-0.01,0.0646,-0.0791,-0.005,0.0457,-0.0791,-0.01,0.0457,-0.05,0.01,0.0866
,-0.0259,-0.01,0.0966,-0.0259,0.01,0.0966,0.0914,0.01,0,0.0883,0.005,-0.0237,0.0883,0.01,-0.0237,0.0237,-0.01,0.0883,0,-0.01,0.1,0.0259,-0.01,0.0966,0.0237,0.01,0.0883,0,0.01,0.1,0,0.01,0.0914,0.0457,-0.01,0.0791,0.0259,-0.01,0.0966,0.05,-0.01,0.0866,0.0457,0.01,0.0791,0.0259,0.01,0.0966,0.0646,-0.01,0.0646
,0.05,-0.01,0.0866,0.0707,-0.01,0.0707,0.0646,0.01,0.0646,0.05,0.01,0.0866,0.0866,-0.01,0.05,0.0791,-0.01,0.0457,0.0866,0.01,0.05,0.0707,0.01,0.0707,0.0966,-0.01,0.0259,0.0883,-0.01,0.0237,0.0791,0.01,0.0457,0.0966,0.01,0.0259,0.0866,0.01,0.05,0.0914,-0.01,0,0.0966,-0.01,0.0259,0.1,-0.01,0,0.0914,0.01,0
,0.0966,0.01,0.0259,0.0883,0.01,0.0237,0.0914,-0.01,0,0.0966,-0.01,-0.0259,0.0883,-0.01,-0.0237,0.0914,0.01,0,0.0966,0.01,-0.0259,0.1,0.01,0,0.0866,-0.01,-0.05,0.0791,-0.01,-0.0457,0.0883,0.01,-0.0237,0.0866,0.01,-0.05,0.0966,0.01,-0.0259,0.0707,-0.01,-0.0707,0.0646,-0.01,-0.0646,0.0791,0.01,-0.0457,0.0707,0.01,-0.0707
,0.0866,0.01,-0.05,0.05,-0.01,-0.0866,0.0457,-0.01,-0.0791,0.0646,0.01,-0.0646,0.05,0.01,-0.0866,0.0707,0.01,-0.0707,0.0237,-0.01,-0.0883,0.05,-0.01,-0.0866,0.0259,-0.01,-0.0966,0.0237,0.01,-0.0883,0.05,0.01,-0.0866,0.0457,0.01,-0.0791,0,-0.01,-0.1,0,-0.01,-0.0914,0,0.01,-0.1,0.0259,0.01,-0.0966,-0.0237,-0.01,-0.0883
,0,-0.01,-0.1,-0.0259,-0.01,-0.0966,-0.0237,0.01,-0.0883,0,0.01,-0.1,0,0.01,-0.0914,-0.0457,-0.01,-0.0791,-0.0259,-0.01,-0.0966,-0.05,-0.01,-0.0866,-0.0457,0.01,-0.0791,-0.0259,0.01,-0.0966,-0.0646,-0.01,-0.0646,-0.05,-0.01,-0.0866,-0.0707,-0.01,-0.0707,-0.0646,0.01,-0.0646,-0.05,0.01,-0.0866,-0.0791,-0.01,-0.0457,-0.0707,-0.01,-0.0707
,-0.0866,-0.01,-0.05,-0.0791,0.01,-0.0457,-0.0707,0.01,-0.0707,-0.0883,-0.01,-0.0237,-0.0866,-0.01,-0.05,-0.0966,-0.01,-0.0259,-0.0883,0.01,-0.0237,-0.0866,0.01,-0.05,-0.0914,-0.01,0,-0.0966,-0.01,-0.0259,-0.1,-0.01,0,-0.0914,0.01,0,-0.0966,0.01,-0.0259,-0.0914,-0.01,0,-0.0966,-0.01,0.0259,-0.0883,-0.01,0.0237,-0.0914,0.01,0
,-0.0966,0.01,0.0259,-0.1,0.01,0,-0.0791,-0.01,0.0457,-0.0966,-0.01,0.0259,-0.0866,-0.01,0.05,-0.0791,0.01,0.0457,-0.0966,0.01,0.0259,-0.0883,0.01,0.0237,-0.0646,-0.01,0.0646,-0.0866,-0.01,0.05,-0.0707,-0.01,0.0707,-0.0646,0.01,0.0646,-0.0866,0.01,0.05,-0.0646,-0.01,0.0646,-0.05,-0.01,0.0866,-0.0457,-0.01,0.0791,-0.05,0.01,0.0866
,-0.0707,0.01,0.0707,-0.0237,-0.01,0.0883,-0.05,-0.01,0.0866,-0.0259,-0.01,0.0966,-0.0237,0.01,0.0883,-0.05,0.01,0.0866,-0.0457,0.01,0.0791,0,-0.01,0.1,0,-0.01,0.0914,0,0.01,0.1,-0.0259,0.01,0.0966,0.0237,-0.01,0.0883,0,-0.005,0.0914,0,-0.01,0.0914,-0.0237,0.01,-0.0883,-0.0457,0.005,-0.0791,-0.0457,0.01,-0.0791
,0.0791,-0.01,-0.0457,0.0883,-0.005,-0.0237,0.0883,-0.01,-0.0237,-0.0791,0.01,0.0457,-0.0646,0.005,0.0646,-0.0646,0.01,0.0646,0,0.01,0.0914,0.0237,0.005,0.0883,0.0237,0.01,0.0883,-0.0646,-0.01,-0.0646,-0.0457,-0.005,-0.0791,-0.0457,-0.01,-0.0791,0.0791,0.005,-0.0457,0.0791,0.01,-0.0457,-0.0457,-0.01,0.0791,-0.0646,-0.005,0.0646,0.0457,-0.01,0.0791
,0.0237,-0.005,0.0883,0.0237,-0.01,0.0883,-0.0457,0.01,-0.0791,-0.0646,0.005,-0.0646,-0.0646,0.01,-0.0646,0.0646,-0.01,-0.0646,0.0791,-0.005,-0.0457,0.0791,-0.01,-0.0457,-0.0646,0.01,0.0646,-0.0457,0.005,0.0791,-0.0457,0.01,0.0791,0.0237,0.01,0.0883,0.0457,0.005,0.0791,0.0457,0.01,0.0791,-0.0791,-0.01,-0.0457,-0.0646,-0.005,-0.0646,-0.0646,-0.01,-0.0646
,0.0791,0.01,-0.0457,0.0646,0.005,-0.0646,0.0646,0.01,-0.0646,-0.0237,-0.01,0.0883,-0.0457,-0.005,0.0791,-0.0457,-0.01,0.0791,0.0646,-0.01,0.0646,0.0457,-0.005,0.0791,0.0457,-0.01,0.0791,-0.0646,0.01,-0.0646,-0.0791,0.005,-0.0457,-0.0791,0.01,-0.0457,0.0457,-0.01,-0.0791,0.0646,-0.005,-0.0646,0.0646,-0.01,-0.0646,-0.0457,0.01,0.0791,-0.0237,0.005,0.0883
,-0.0237,0.01,0.0883,0.0457,0.01,0.0791,0.0646,0.005,0.0646,0.0646,0.01,0.0646,-0.0883,-0.01,-0.0237,-0.0791,-0.005,-0.0457,-0.0791,-0.01,-0.0457,0.0646,0.01,-0.0646,0.0457,0.005,-0.0791,0.0457,0.01,-0.0791,0,-0.01,0.0914,-0.0237,-0.005,0.0883,-0.0237,-0.01,0.0883,0.0791,-0.01,0.0457,0.0646,-0.005,0.0646,0.0646,-0.01,0.0646,-0.0791,0.01,-0.0457
,-0.0883,0.005,-0.0237,-0.0883,0.01,-0.0237,0.0237,-0.01,-0.0883,0.0457,-0.005,-0.0791,0.0457,-0.01,-0.0791,-0.0237,0.01,0.0883,0,0.005,0.0914,0,0.01,0.0914,0.0646,0.01,0.0646,0.0791,0.005,0.0457,0.0791,0.01,0.0457,-0.0914,-0.01,0,-0.0883,-0.005,-0.0237,-0.0883,-0.01,-0.0237,0.0457,0.01,-0.0791,0.0237,0.005,-0.0883,0.0237,0.01,-0.0883
,0.0883,-0.01,0.0237,0.0791,-0.005,0.0457,0.0791,-0.01,0.0457,-0.0883,0.01,-0.0237,-0.0914,0.005,0,-0.0914,0.01,0,0,-0.01,-0.0914,0.0237,-0.005,-0.0883,0.0237,-0.01,-0.0883,0.0791,0.01,0.0457,0.0883,0.005,0.0237,0.0883,0.01,0.0237,-0.0883,-0.01,0.0237,-0.0914,-0.005,0,-0.0914,-0.01,0,0.0237,0.01,-0.0883,0,0.005,-0.0914
,0,0.01,-0.0914,0.0914,-0.01,0,0.0883,-0.005,0.0237,0.0883,-0.01,0.0237,-0.0914,0.01,0,-0.0883,0.005,0.0237,-0.0883,0.01,0.0237,-0.0237,-0.01,-0.0883,0,-0.005,-0.0914,0,-0.01,-0.0914,0.0883,0.01,0.0237,0.0914,0.005,0,0.0914,0.01,0,-0.0883,-0.005,0.0237,-0.0883,-0.01,0.0237,0,0.01,-0.0914,-0.0237,0.005,-0.0883
,-0.0237,0.01,-0.0883,0.0883,-0.01,-0.0237,0.0914,-0.005,0,0.0914,-0.01,0,-0.0883,0.01,0.0237,-0.0791,0.005,0.0457,-0.0791,0.01,0.0457,-0.0457,-0.01,-0.0791,-0.0237,-0.005,-0.0883,-0.0237,-0.01,-0.0883,0.0457,0.005,-0.0791,0.0914,0.005,0,0.0457,0.005,0.0791,-0.0883,-0.005,0.0237,-0.0237,-0.005,0.0883,0.0883,-0.005,-0.0237,0.1,0.01,0
,-0.1,0.01,0,0.0914,0.005,0,0,-0.01,0.1,0.0259,0.01,0.0966,0,0.01,0.1,0.0259,-0.01,0.0966,0.05,0.01,0.0866,0.0259,0.01,0.0966,0.05,-0.01,0.0866,0.0707,0.01,0.0707,0.05,0.01,0.0866,0.0707,-0.01,0.0707,0.0866,-0.01,0.05,0.0866,0.01,0.05,0.0866,-0.01,0.05,0.0966,-0.01,0.0259,0.0966,0.01,0.0259
,0.0966,-0.01,0.0259,0.0914,0.01,0,0.1,0.01,0,0.0966,0.01,0.0259,0.0914,-0.01,0,0.1,-0.01,0,0.0966,-0.01,-0.0259,0.0914,0.01,0,0.0883,0.01,-0.0237,0.0966,0.01,-0.0259,0.0966,-0.01,-0.0259,0.0866,-0.01,-0.05,0.0883,0.01,-0.0237,0.0866,0.01,-0.05,0.0866,-0.01,-0.05,0.0707,-0.01,-0.0707,0.0707,0.01,-0.0707
,0.0707,-0.01,-0.0707,0.05,-0.01,-0.0866,0.05,0.01,-0.0866,0.05,-0.01,-0.0866,0.0259,0.01,-0.0966,0.05,0.01,-0.0866,0.0259,-0.01,-0.0966,0,-0.01,-0.1,0,0.01,-0.1,0,-0.01,-0.1,-0.0259,0.01,-0.0966,0,0.01,-0.1,-0.0259,-0.01,-0.0966,-0.05,0.01,-0.0866,-0.0259,0.01,-0.0966,-0.05,-0.01,-0.0866,-0.0707,0.01,-0.0707
,-0.05,0.01,-0.0866,-0.0707,-0.01,-0.0707,-0.0866,0.01,-0.05,-0.0707,0.01,-0.0707,-0.0866,-0.01,-0.05,-0.0966,0.01,-0.0259,-0.0866,0.01,-0.05,-0.0966,-0.01,-0.0259,-0.1,0.01,0,-0.0966,0.01,-0.0259,-0.0914,-0.01,0,-0.1,-0.01,0,-0.0966,-0.01,0.0259,-0.0914,0.01,0,-0.0966,0.01,0.0259,-0.0791,-0.01,0.0457,-0.0966,-0.01,0.0259
,-0.0866,0.01,0.05,-0.0966,0.01,0.0259,-0.0646,-0.01,0.0646,-0.0791,-0.01,0.0457,-0.0866,-0.01,0.05,-0.0707,0.01,0.0707,-0.0866,0.01,0.05,-0.0646,-0.01,0.0646,-0.0707,-0.01,0.0707,-0.05,-0.01,0.0866,-0.05,0.01,0.0866,-0.05,-0.01,0.0866,-0.0259,0.01,0.0966,-0.05,0.01,0.0866,-0.0259,-0.01,0.0966,0,-0.01,0.1,0,0.01,0.1
,0.0237,-0.01,0.0883,-0.0237,0.01,-0.0883,0.0791,-0.01,-0.0457,-0.0791,0.01,0.0457,0,0.01,0.0914,-0.0646,-0.01,-0.0646,-0.0457,-0.01,0.0791,0.0457,-0.01,0.0791,-0.0457,0.01,-0.0791,0.0646,-0.01,-0.0646,-0.0646,0.01,0.0646,0.0237,0.01,0.0883,-0.0791,-0.01,-0.0457,0.0791,0.01,-0.0457,-0.0237,-0.01,0.0883,0.0646,-0.01,0.0646,-0.0646,0.01,-0.0646
,0.0457,-0.01,-0.0791,-0.0457,0.01,0.0791,0.0457,0.01,0.0791,-0.0883,-0.01,-0.0237,0.0646,0.01,-0.0646,0,-0.01,0.0914,0.0791,-0.01,0.0457,-0.0791,0.01,-0.0457,0.0237,-0.01,-0.0883,-0.0237,0.01,0.0883,0.0646,0.01,0.0646,-0.0914,-0.01,0,-0.0914,-0.005,0,0.0457,0.01,-0.0791,0.0883,-0.01,0.0237,-0.0883,0.01,-0.0237,0,-0.01,-0.0914
,0.0791,0.01,0.0457,-0.0883,-0.01,0.0237,0.0237,0.01,-0.0883,0.0914,-0.01,0,0.0914,-0.005,0,-0.0914,0.01,0,-0.0914,0.005,0,-0.0237,-0.01,-0.0883,0.0883,0.01,0.0237,0,0.01,-0.0914,0.0883,-0.01,-0.0237,-0.0883,0.01,0.0237,-0.0457,-0.01,-0.0791,0.0457,0.005,0.0791,0.0237,0.005,0.0883,-0.0457,0.005,0.0791,0.0237,0.005,0.0883
,0,0.005,0.0914,-0.0457,0.005,0.0791,0,0.005,0.0914,-0.0237,0.005,0.0883,-0.0457,0.005,0.0791,-0.0457,0.005,0.0791,-0.0646,0.005,0.0646,-0.0791,0.005,0.0457,-0.0791,0.005,0.0457,-0.0883,0.005,0.0237,-0.0914,0.005,0,-0.0914,0.005,0,-0.0883,0.005,-0.0237,-0.0457,0.005,-0.0791,-0.0883,0.005,-0.0237,-0.0791,0.005,-0.0457,-0.0457,0.005,-0.0791
,-0.0791,0.005,-0.0457,-0.0646,0.005,-0.0646,-0.0457,0.005,-0.0791,-0.0457,0.005,-0.0791,-0.0237,0.005,-0.0883,0,0.005,-0.0914,0,0.005,-0.0914,0.0237,0.005,-0.0883,0.0457,0.005,-0.0791,0.0457,0.005,-0.0791,0.0646,0.005,-0.0646,0.0791,0.005,-0.0457,0.0791,0.005,-0.0457,0.0883,0.005,-0.0237,0.0457,0.005,-0.0791,0.0883,0.005,-0.0237,0.0914,0.005,0
,0.0457,0.005,-0.0791,0.0914,0.005,0,0.0883,0.005,0.0237,0.0791,0.005,0.0457,0.0791,0.005,0.0457,0.0646,0.005,0.0646,0.0914,0.005,0,0.0646,0.005,0.0646,0.0457,0.005,0.0791,0.0914,0.005,0,-0.0457,0.005,0.0791,-0.0791,0.005,0.0457,-0.0914,0.005,0,-0.0457,0.005,-0.0791,0,0.005,-0.0914,0.0457,0.005,-0.0791,0.0457,0.005,0.0791
,-0.0457,0.005,0.0791,0.0457,0.005,-0.0791,-0.0457,0.005,0.0791,-0.0914,0.005,0,0.0457,0.005,-0.0791,-0.0914,0.005,0,-0.0457,0.005,-0.0791,0.0457,0.005,-0.0791,-0.0237,-0.005,0.0883,0,-0.005,0.0914,0.0237,-0.005,0.0883,0.0237,-0.005,0.0883,0.0457,-0.005,0.0791,0.0646,-0.005,0.0646,0.0646,-0.005,0.0646,0.0791,-0.005,0.0457,0.0883,-0.005,0.0237
,0.0883,-0.005,0.0237,0.0914,-0.005,0,0.0646,-0.005,0.0646,0.0914,-0.005,0,0.0883,-0.005,-0.0237,0.0646,-0.005,0.0646,0.0883,-0.005,-0.0237,0.0791,-0.005,-0.0457,0.0646,-0.005,-0.0646,0.0646,-0.005,-0.0646,0.0457,-0.005,-0.0791,0.0883,-0.005,-0.0237,0.0457,-0.005,-0.0791,0.0237,-0.005,-0.0883,0.0883,-0.005,-0.0237,0.0237,-0.005,-0.0883,0,-0.005,-0.0914
,-0.0646,-0.005,-0.0646,0,-0.005,-0.0914,-0.0237,-0.005,-0.0883,-0.0646,-0.005,-0.0646,-0.0237,-0.005,-0.0883,-0.0457,-0.005,-0.0791,-0.0646,-0.005,-0.0646,-0.0646,-0.005,-0.0646,-0.0791,-0.005,-0.0457,-0.0883,-0.005,-0.0237,-0.0883,-0.005,-0.0237,-0.0914,-0.005,0,-0.0883,-0.005,0.0237,-0.0883,-0.005,0.0237,-0.0791,-0.005,0.0457,-0.0646,-0.005,0.0646,-0.0646,-0.005,0.0646
,-0.0457,-0.005,0.0791,-0.0883,-0.005,0.0237,-0.0457,-0.005,0.0791,-0.0237,-0.005,0.0883,-0.0883,-0.005,0.0237,-0.0237,-0.005,0.0883,0.0237,-0.005,0.0883,0.0883,-0.005,-0.0237,0.0237,-0.005,0.0883,0.0646,-0.005,0.0646,0.0883,-0.005,-0.0237,-0.0646,-0.005,-0.0646,-0.0883,-0.005,-0.0237,-0.0883,-0.005,0.0237,0.0883,-0.005,-0.0237,0.0237,-0.005,-0.0883,-0.0646,-0.005,-0.0646
,-0.0646,-0.005,-0.0646,-0.0883,-0.005,0.0237,0.0883,-0.005,-0.0237]
,"normals":[0,0,1,0.259,0,0.966,0,0,1,0.259,0,0.966,0.5,0,0.866,0.5,0,0.866,0.707,0,0.707,0.707,0,0.707,0.866,0,0.5,0.866,0,0.5,0.966,0,0.259,0.966,0,0.259,1,0,0,1,0,0,0.966,0,-0.259,1,0,0,0.966,0,-0.259
,0.866,0,-0.5,0.866,0,-0.5,0.707,0,-0.707,0.707,0,-0.707,0.5,0,-0.866,0.5,0,-0.866,0.259,0,-0.966,0.259,0,-0.966,0,0,-1,0,0,-1,-0.259,0,-0.966,-0.259,0,-0.966,-0.5,0,-0.866,-0.5,0,-0.866,-0.707,0,-0.707,-0.707,0,-0.707,-0.866,0,-0.5
,-0.866,0,-0.5,-0.966,0,-0.259,-0.966,0,-0.259,-1,0,0,-1,0,0,-0.966,0,0.259,-1,0,0,-0.966,0,0.259,-0.866,0,0.5,-0.866,0,0.5,-0.707,0,0.707,-0.707,0,0.707,-0.5,0,0.866,0.707,0,-0.707,0.866,0,-0.5,0.866,0,-0.5,-0.5,0,0.866
,-0.259,0,0.966,-0.259,0,0.966,-1,0,0,-0.966,0,0.259,-0.966,0,0.259,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,-1,0
,0,-1,0,0,-1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0
,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,1,0,0,1,0
,0,1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,-1,0
,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,-1,0,0,-1,0
,0,-1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0
,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0
,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,-0.259,0,-0.966,0,0,-1,0,0,-1,0.259,0,0.966,0.5,0,0.866,0.5,0,0.866
,-0.866,0,0.5,-0.966,0,0.259,-0.966,0,0.259,0.866,0,-0.5,0.707,0,-0.707,0.707,0,-0.707,0,0,-1,-0.259,0,-0.966,-0.259,0,-0.966,0.707,0,0.707,0.5,0,0.866,0.5,0,0.866,-0.866,0,0.5,-0.866,0,0.5,0.5,0,-0.866,0.707,0,-0.707,-0.5,0,-0.866
,-0.259,0,-0.966,-0.259,0,-0.966,0.5,0,0.866,0.707,0,0.707,0.707,0,0.707,-0.707,0,0.707,-0.866,0,0.5,-0.866,0,0.5,0.707,0,-0.707,0.5,0,-0.866,0.5,0,-0.866,-0.259,0,-0.966,-0.5,0,-0.866,-0.5,0,-0.866,0.866,0,0.5,0.707,0,0.707,0.707,0,0.707
,-0.866,0,0.5,-0.707,0,0.707,-0.707,0,0.707,0.259,0,-0.966,0.5,0,-0.866,0.5,0,-0.866,-0.707,0,-0.707,-0.5,0,-0.866,-0.5,0,-0.866,0.707,0,0.707,0.866,0,0.5,0.866,0,0.5,-0.5,0,0.866,-0.707,0,0.707,-0.707,0,0.707,0.5,0,-0.866,0.259,0,-0.966
,0.259,0,-0.966,-0.5,0,-0.866,-0.707,0,-0.707,-0.707,0,-0.707,0.966,0,0.259,0.866,0,0.5,0.866,0,0.5,-0.707,0,0.707,-0.5,0,0.866,-0.5,0,0.866,0,0,-1,0.259,0,-0.966,0.259,0,-0.966,-0.866,0,-0.5,-0.707,0,-0.707,-0.707,0,-0.707,0.866,0,0.5
,0.966,0,0.259,0.966,0,0.259,-0.259,0,0.966,-0.5,0,0.866,-0.5,0,0.866,0.259,0,-0.966,0,0,-1,0,0,-1,-0.707,0,-0.707,-0.866,0,-0.5,-0.866,0,-0.5,1,0,0,0.966,0,0.259,0.966,0,0.259,-0.5,0,0.866,-0.259,0,0.966,-0.259,0,0.966
,-0.966,0,-0.259,-0.866,0,-0.5,-0.866,0,-0.5,0.966,0,0.259,1,0,0,1,0,0,0,0,1,-0.259,0,0.966,-0.259,0,0.966,-0.866,0,-0.5,-0.966,0,-0.259,-0.966,0,-0.259,0.966,0,-0.259,1,0,0,1,0,0,-0.259,0,0.966,0,0,1
,0,0,1,-1,0,0,-0.966,0,-0.259,-0.966,0,-0.259,1,0,0,0.966,0,-0.259,0.966,0,-0.259,0.259,0,0.966,0,0,1,0,0,1,-0.966,0,-0.259,-1,0,0,-1,0,0,0.966,0,-0.259,0.966,0,-0.259,0,0,1,0.259,0,0.966
,0.259,0,0.966,-0.966,0,0.259,-1,0,0,-1,0,0,0.966,0,-0.259,0.866,0,-0.5,0.866,0,-0.5,0.5,0,0.866,0.259,0,0.966,0.259,0,0.966,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0
,-1,0,0,-1,0,0,0,-1,0,0,1,0,0,1,0,0,-1,0,0,1,0,0,1,0,0,-1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,1,0,0,-1,0,0,-1,0,0,1,0
,0,-1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,1,0
,0,-1,0,0,-1,0,0,1,0,0,-1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,1,0,0,-1,0,0,1,0,0,1,0,0,-1,0,0,1,0,0,1,0,0,-1,0,0,1,0
,0,1,0,0,-1,0,0,1,0,0,1,0,0,-1,0,0,1,0,0,1,0,0,-1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,-1,0,0,-1,0
,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,-1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,1,0
,-0.259,0,-0.966,0.259,0,0.966,-0.866,0,0.5,0.866,0,-0.5,0,0,-1,0.707,0,0.707,0.5,0,-0.866,-0.5,0,-0.866,0.5,0,0.866,-0.707,0,0.707,0.707,0,-0.707,-0.259,0,-0.966,0.866,0,0.5,-0.866,0,0.5,0.259,0,-0.966,-0.707,0,-0.707,0.707,0,0.707
,-0.5,0,0.866,0.5,0,-0.866,-0.5,0,-0.866,0.966,0,0.259,-0.707,0,0.707,0,0,-1,-0.866,0,-0.5,0.866,0,0.5,-0.259,0,0.966,0.259,0,-0.966,-0.707,0,-0.707,1,0,0,1,0,0,-0.5,0,0.866,-0.966,0,-0.259,0.966,0,0.259,0,0,1
,-0.866,0,-0.5,0.966,0,-0.259,-0.259,0,0.966,-1,0,0,-1,0,0,1,0,0,1,0,0,0.259,0,0.966,-0.966,0,-0.259,0,0,1,-0.966,0,0.259,0.966,0,-0.259,0.5,0,0.866,0,1,0,0,1,0,0,1,0,0,1,0
,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0
,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0
,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0
,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0
,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0
,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0
,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0
,0,-1,0,0,-1,0,0,-1,0]
,"tangents":[1,-0.01,0,1,0.966,-0.008,-0.259,1,1,-0.004,0,1,0.966,-0.013,-0.259,1,0.866,-0.01,-0.5,1,0.866,-0.014,-0.5,1,0.707,-0.009,-0.707,1,0.707,-0.012,-0.707,1,0.5,-0.01,-0.866,1,0.5,-0.013,-0.866,1,0.259,0.003,-0.966,1,0.259,-0.014,-0.966,1,0,-0.014
,-1,1,0,-0.002,-1,1,-0.259,0.002,-0.966,1,0,-0.041,-0.999,1,-0.259,0.026,-0.966,1,-0.5,-0.001,-0.866,1,-0.5,0.007,-0.866,1,-0.707,0.001,-0.707,1,-0.707,0.006,-0.707,1,-0.866,0.002,-0.5,1,-0.866,0.005,-0.5,1,-0.966,-0.001,-0.259,1,-0.966,0,-0.259,1
,-1,0.004,0,1,-1,0.002,0,1,-0.966,0,0.259,1,-0.966,-0.003,0.259,1,-0.866,0.008,0.5,1,-0.866,0.003,0.5,1,-0.707,0.006,0.707,1,-0.707,-0.002,0.707,1,-0.5,0.003,0.866,1,-0.5,-0.005,0.866,1,-0.259,0.021,0.966,1,-0.259,-0.003,0.966,1,0,-0.007
,1,1,0,-0.001,1,1,0.259,-0.002,0.966,1,0,-0.03,1,1,0.259,0.015,0.966,1,0.5,-0.002,0.866,1,0.5,-0.002,0.866,1,0.707,0,0.707,1,0.707,-0.005,0.707,1,0.866,-0.009,0.5,1,0.707,0.009,0.707,1,0.5,-0.002,0.866,1,0.5,-0.001,0.866,1
,0.866,-0.011,0.5,1,0.966,-0.007,0.259,1,0.966,-0.01,0.259,1,0,-0.047,-0.999,1,-0.259,-0.046,-0.965,1,-0.259,-0.045,-0.965,1,0.968,0,-0.251,1,1,0,-0.01,1,0.968,0,-0.252,1,0.971,0,-0.24,1,1,0,0.018,1,1,0,0.019,1,0.87,0
,-0.493,1,0.968,0,-0.252,1,0.867,0,-0.498,1,0.877,0,-0.481,1,0.97,0,-0.241,1,0.704,0,-0.71,1,0.867,0,-0.498,1,0.703,0,-0.711,1,0.718,0,-0.696,1,0.876,0,-0.483,1,0.488,0,-0.873,1,0.486,0,-0.874,1,0.519,0,-0.855,1
,0.716,0,-0.698,1,0.264,0,-0.965,1,0.263,0,-0.965,1,0.519,0,-0.855,1,0.293,0,-0.956,1,0.519,0,-0.855,1,0.155,0,-0.988,1,0.264,0,-0.965,1,0.155,0,-0.988,1,0.177,0,-0.984,1,0.293,0,-0.956,1,0.293,0,-0.956,1,-0.175,0
,-0.984,1,-0.291,0,-0.957,1,-0.295,0,-0.956,1,-0.178,0,-0.984,1,-0.286,0,-0.958,1,-0.178,0,-0.984,1,-0.511,0,-0.859,1,-0.514,0,-0.858,1,-0.288,0,-0.958,1,-0.517,0,-0.856,1,-0.286,0,-0.958,1,-0.711,0,-0.703,1,-0.712,0,-0.702,1
,-0.522,0,-0.853,1,-0.722,0,-0.692,1,-0.517,0,-0.856,1,-0.868,0,-0.497,1,-0.868,0,-0.496,1,-0.723,0,-0.691,1,-0.867,0,-0.499,1,-0.722,0,-0.692,1,-0.966,0,-0.257,1,-0.868,0,-0.497,1,-0.966,0,-0.258,1,-0.966,0,-0.26,1,-0.867,0
,-0.499,1,-0.866,0,-0.5,1,-1,0,0,1,-1,0,0.001,1,-1,0,-0.004,1,-0.966,0,-0.26,1,-0.971,0,0.238,1,-1,0,0,1,-0.97,0,0.242,1,-0.967,0,0.253,1,-1,0,-0.004,1,-1,0,-0.004,1,-0.867,0,0.499,1
,-0.97,0,0.242,1,-0.866,0,0.5,1,-0.87,0,0.492,1,-0.967,0,0.254,1,-0.724,0,0.69,1,-0.866,0,0.5,1,-0.723,0,0.691,1,-0.715,0,0.699,1,-0.87,0,0.494,1,-0.519,0,0.855,1,-0.723,0,0.691,1,-0.514,0,0.858,1,-0.518,0
,0.855,1,-0.714,0,0.7,1,-0.284,0,0.959,1,-0.514,0,0.858,1,-0.282,0,0.959,1,-0.299,0,0.954,1,-0.515,0,0.857,1,-0.173,0,0.985,1,-0.282,0,0.959,1,-0.173,0,0.985,1,-0.18,0,0.984,1,-0.295,0,0.955,1,0.165,0,0.986,1
,0.28,0,0.96,1,0.28,0,0.96,1,0.167,0,0.986,1,0.275,0,0.961,1,0.167,0,0.986,1,0.508,0,0.862,1,0.28,0,0.96,1,0.508,0,0.861,1,0.494,0,0.869,1,0.275,0,0.961,1,0.275,0,0.961,1,0.707,0,0.707,1,0.508,0
,0.861,1,0.705,0,0.709,1,0.701,0,0.713,1,0.495,0,0.869,1,0.707,0,0.707,1,0.864,0,0.504,1,0.863,0,0.506,1,0.858,0,0.513,1,0.701,0,0.713,1,0.967,0,0.255,1,0.864,0,0.504,1,0.968,0,0.252,1,0.962,0,0.273,1
,0.858,0,0.513,1,0.858,0,0.514,1,1,0,-0.01,1,1,0,-0.013,1,1,0,0.018,1,0.962,0,0.272,1,0.966,-0.003,-0.259,1,1,0.012,0,1,1,0.012,0,1,-0.966,0.009,0.259,1,-0.866,0.013,0.5,1,-0.866,0.012,0.5,1,-0.5,0.021
,-0.866,1,-0.259,0.043,-0.965,1,-0.259,0.043,-0.965,1,0.5,0.009,0.866,1,0.707,0.013,0.707,1,0.707,0.013,0.707,1,1,0.02,0,1,0.966,0.024,-0.259,1,0.966,0.024,-0.259,1,-0.707,-0.017,0.707,1,-0.866,-0.017,0.5,1,-0.866,-0.016,0.5,1,-0.5,-0.039,-0.865,1
,-0.5,-0.038,-0.865,1,0.866,-0.007,0.5,1,0.707,0.009,0.707,1,0.866,-0.019,-0.5,1,0.966,-0.004,-0.259,1,0.966,-0.003,-0.259,1,-0.866,0.012,0.5,1,-0.707,0.018,0.707,1,-0.707,0.017,0.707,1,-0.707,0.011,-0.707,1,-0.5,0.022,-0.866,1,-0.5,0.021,-0.866,1,0.707,0.013
,0.707,1,0.866,0.017,0.5,1,0.866,0.017,0.5,1,0.966,0.024,-0.259,1,0.866,0.028,-0.5,1,0.866,0.027,-0.5,1,-0.5,-0.034,0.866,1,-0.707,-0.017,0.707,1,-0.707,-0.017,0.707,1,-0.5,-0.038,-0.865,1,-0.707,-0.019,-0.707,1,-0.707,-0.019,-0.707,1,0.966,-0.005,0.259,1
,0.866,-0.008,0.5,1,0.866,-0.007,0.5,1,0.707,-0.001,-0.707,1,0.866,-0.02,-0.5,1,0.866,-0.019,-0.5,1,-0.707,0.017,0.707,1,-0.5,0.027,0.866,1,-0.5,0.026,0.866,1,-0.866,0.006,-0.5,1,-0.707,0.012,-0.707,1,-0.707,0.011,-0.707,1,0.866,0.017,0.5,1,0.966,0.02
,0.259,1,0.966,0.019,0.259,1,0.866,0.027,-0.5,1,0.707,0.026,-0.707,1,0.707,0.026,-0.707,1,-0.259,-0.04,0.965,1,-0.5,-0.035,0.866,1,-0.5,-0.034,0.866,1,-0.707,-0.019,-0.707,1,-0.866,0,-0.5,1,-0.866,0,-0.5,1,1,0.012,0,1,0.966,-0.006,0.259,1
,0.966,-0.005,0.259,1,0.5,0.017,-0.866,1,0.707,-0.002,-0.707,1,0.707,-0.001,-0.707,1,-0.5,0.026,0.866,1,-0.259,0.048,0.965,1,-0.259,0.048,0.965,1,-0.966,0.003,-0.259,1,-0.866,0.006,-0.5,1,-0.866,0.006,-0.5,1,0.966,0.019,0.259,1,1,0.021,0,1,1,0.02
,0,1,0.707,0.026,-0.707,1,0.5,0.013,-0.866,1,0.5,0.013,-0.866,1,0,-0.042,0.999,1,-0.259,-0.041,0.965,1,-0.259,-0.04,0.965,1,-0.866,0,-0.5,1,-0.966,0.002,-0.259,1,-0.966,0.002,-0.259,1,0.259,-0.006,-0.966,1,0.5,0.017,-0.866,1,0.5,0.017,-0.866,1
,-0.259,0.048,0.965,1,0,0.068,0.998,1,0,0.069,0.998,1,-1,0.001,0,1,-0.966,0.003,-0.259,1,-0.966,0.003,-0.259,1,0.5,0.013,-0.866,1,0.259,0.03,-0.965,1,0.259,0.031,-0.965,1,0.259,0.018,0.966,1,0,0.055,0.999,1,0,0.056,0.998,1,-0.966,0.002
,-0.259,1,-1,0.005,0,1,-1,0.005,0,1,0,-0.025,-1,1,0.259,-0.006,-0.966,1,0.259,-0.006,-0.966,1,0,-0.037,0.999,1,0.259,-0.018,0.966,1,0.259,-0.017,0.966,1,-0.966,-0.017,0.259,1,-1,0.001,0,1,-1,0.001,0,1,0.259,0.031,-0.965,1
,0,0.068,-0.998,1,0,0.07,-0.998,1,0.259,0.017,0.966,1,0.259,0.018,0.966,1,-1,0.005,0,1,-0.966,0.009,0.259,1,-0.966,0.009,0.259,1,-0.259,0.043,-0.965,1,0,0.063,-0.998,1,0,0.063,-0.998,1,0.259,-0.017,0.966,1,0.5,0.009,0.866,1,0.5,0.009
,0.866,1,-0.866,-0.016,0.5,1,-0.966,-0.017,0.259,1,-0.966,-0.017,0.259,1,0.131,0,0.991,1,0.131,0,0.991,1,0.131,0,0.991,1,-0.383,0,0.924,1,-0.383,0,0.924,1,-0.383,0,0.924,1,0,-0.042,-0.999,1,0,-0.046,0.999,1,0,-0.047,-0.999,1
,1,0,-0.01,1,0.97,0,-0.241,1,1,0,0.018,1,0.968,0,-0.252,1,0.876,0,-0.483,1,0.97,0,-0.241,1,0.867,0,-0.498,1,0.716,0,-0.698,1,0.876,0,-0.483,1,0.703,0,-0.711,1,0.488,0,-0.873,1,0.519,0,-0.855,1,0.488,0
,-0.873,1,0.264,0,-0.965,1,0.293,0,-0.956,1,0.264,0,-0.965,1,0.177,0,-0.984,1,0.172,0,-0.985,1,0.293,0,-0.956,1,-0.175,0,-0.984,1,-0.172,0,-0.985,1,-0.291,0,-0.957,1,-0.178,0,-0.984,1,-0.288,0,-0.958,1,-0.286,0,-0.958,1
,-0.291,0,-0.957,1,-0.511,0,-0.859,1,-0.288,0,-0.958,1,-0.517,0,-0.856,1,-0.511,0,-0.859,1,-0.711,0,-0.703,1,-0.722,0,-0.692,1,-0.711,0,-0.703,1,-0.868,0,-0.497,1,-0.867,0,-0.499,1,-0.868,0,-0.497,1,-0.966,0,-0.26,1,-0.867,0
,-0.499,1,-0.966,0,-0.258,1,-1,0,0,1,-1,0,-0.004,1,-1,0,0,1,-0.967,0,0.254,1,-1,0,-0.004,1,-0.97,0,0.242,1,-0.87,0,0.494,1,-0.967,0,0.254,1,-0.866,0,0.5,1,-0.714,0,0.7,1,-0.87,0,0.494,1
,-0.723,0,0.691,1,-0.515,0,0.857,1,-0.714,0,0.7,1,-0.514,0,0.858,1,-0.295,0,0.955,1,-0.515,0,0.857,1,-0.282,0,0.959,1,-0.176,0,0.984,1,-0.295,0,0.955,1,0.165,0,0.986,1,0.16,0,0.987,1,0.28,0,0.96,1,0.167,0
,0.986,1,0.275,0,0.961,1,0.508,0,0.862,1,0.28,0,0.96,1,0.495,0,0.869,1,0.275,0,0.961,1,0.707,0,0.707,1,0.508,0,0.862,1,0.508,0,0.861,1,0.701,0,0.713,1,0.495,0,0.869,1,0.707,0,0.707,1,0.705,0,0.709,1
,0.864,0,0.504,1,0.858,0,0.513,1,0.864,0,0.504,1,0.962,0,0.272,1,0.858,0,0.513,1,0.968,0,0.252,1,1,0,-0.01,1,1,0,0.018,1,0.966,-0.003,-0.259,1,-0.966,0.009,0.259,1,-0.5,0.021,-0.866,1,0.5,0.009,0.866,1,1,0.02
,0,1,-0.707,-0.017,0.707,1,0.866,-0.007,0.5,1,0.866,-0.019,-0.5,1,-0.866,0.012,0.5,1,-0.707,0.011,-0.707,1,0.707,0.013,0.707,1,0.966,0.024,-0.259,1,-0.5,-0.034,0.866,1,-0.5,-0.038,-0.865,1,0.966,-0.005,0.259,1,0.707,-0.001,-0.707,1,-0.707,0.017,0.707,1
,-0.866,0.006,-0.5,1,0.866,0.017,0.5,1,0.866,0.027,-0.5,1,-0.259,-0.04,0.965,1,-0.707,-0.019,-0.707,1,1,0.012,0,1,0.5,0.017,-0.866,1,-0.5,0.026,0.866,1,-0.966,0.003,-0.259,1,0.966,0.019,0.259,1,0.707,0.026,-0.707,1,0,-0.042,0.999,1,0,-0.042
,0.999,1,-0.866,0,-0.5,1,0.259,-0.006,-0.966,1,-0.259,0.048,0.965,1,-1,0.001,0,1,0.5,0.013,-0.866,1,0.259,0.018,0.966,1,-0.966,0.002,-0.259,1,0,-0.025,-1,1,0,-0.025,-1,1,0,-0.037,0.999,1,0,-0.037,0.999,1,-0.966,-0.017,0.259,1
,0.259,0.031,-0.965,1,-1,0.005,0,1,-0.259,0.043,-0.965,1,0.259,-0.017,0.966,1,-0.866,-0.016,0.5,1,0.131,0,0.991,1,0.131,0,0.991,1,0.131,0,0.991,1,0.131,0,0.991,1,0.131,0,0.991,1,0.131,0,0.991,1,0.131,0,0.991,1,0.131,0
,0.991,1,0.131,0,0.991,1,0.131,0,0.991,1,0.131,0,0.991,1,0.131,0,0.991,1,0.131,0,0.991,1,0.131,0,0.991,1,0.131,0,0.991,1,0.131,0,0.991,1,0.131,0,0.991,1,0.131,0,0.991,1,0.131,0,0.991,1,0.131,0,0.991,1
,0.131,0,0.991,1,0.131,0,0.991,1,0.13,0,0.991,1,0.131,0,0.991,1,0.131,0,0.991,1,0.131,0,0.991,1,0.131,0,0.991,1,0.131,0,0.991,1,0.131,0,0.991,1,0.131,0,0.991,1,0.131,0,0.991,1,0.131,0,0.991,1,0.131,0
,0.991,1,0.131,0,0.991,1,0.131,0,0.991,1,0.131,0,0.991,1,0.131,0,0.991,1,0.131,0,0.991,1,0.131,0,0.991,1,0.131,0,0.991,1,0.131,0,0.991,1,0.131,0,0.991,1,0.131,0,0.991,1,0.131,0,0.991,1,0.131,0,0.991,1
,0.131,0,0.991,1,0.131,0,0.991,1,0.131,0,0.991,1,0.131,0,0.991,1,0.131,0,0.991,1,0.131,0,0.991,1,0.131,0,0.991,1,0.131,0,0.991,1,0.131,0,0.991,1,0.131,0,0.991,1,0.131,0,0.991,1,0.131,0,0.991,1,0.131,0
,0.991,1,0.131,0,0.991,1,0.131,0,0.991,1,0.131,0,0.991,1,0.131,0,0.991,1,0.131,0,0.991,1,-0.383,0,0.924,1,-0.383,0,0.924,1,-0.383,0,0.924,1,-0.383,0,0.924,1,-0.383,0,0.924,1,-0.383,0,0.924,1,-0.383,0,0.924,1
,-0.383,0,0.924,1,-0.383,0,0.924,1,-0.383,0,0.924,1,-0.383,0,0.924,1,-0.383,0,0.924,1,-0.383,0,0.924,1,-0.383,0,0.924,1,-0.383,0,0.924,1,-0.383,0,0.924,1,-0.383,0,0.924,1,-0.383,0,0.924,1,-0.383,0,0.924,1,-0.383,0
,0.924,1,-0.383,0,0.924,1,-0.383,0,0.924,1,-0.383,0,0.924,1,-0.383,0,0.924,1,-0.383,0,0.924,1,-0.383,0,0.924,1,-0.383,0,0.924,1,-0.383,0,0.924,1,-0.383,0,0.924,1,-0.383,0,0.924,1,-0.383,0,0.924,1,-0.383,0,0.924,1
,-0.383,0,0.924,1,-0.383,0,0.924,1,-0.383,0,0.924,1,-0.383,0,0.924,1,-0.383,0,0.924,1,-0.383,0,0.924,1,-0.383,0,0.924,1,-0.383,0,0.924,1,-0.383,0,0.924,1,-0.383,0,0.924,1,-0.383,0,0.924,1,-0.383,0,0.924,1,-0.383,0
,0.924,1,-0.383,0,0.924,1,-0.383,0,0.924,1,-0.383,0,0.924,1,-0.383,0,0.924,1,-0.383,0,0.924,1,-0.383,0,0.924,1,-0.383,0,0.924,1,-0.383,0,0.924,1,-0.383,0,0.924,1,-0.383,0,0.924,1,-0.383,0,0.924,1,-0.383,0,0.924,1
,-0.383,0,0.924,1,-0.383,0,0.924,1,-0.383,0,0.924,1,-0.383,0,0.924,1,-0.383,0,0.924,1,-0.383,0,0.924,1]
,"uvs":[0.247,0.941,0.286,0.972,0.247,0.972,0.287,0.941,0.326,0.972,0.327,0.94,0.368,0.971,0.368,0.939,0.41,0.971,0.41,0.939,0.452,0.971,0.452,0.938,0.496,0.972,0.513,0.937,0.556,0.97,0.513,0.972,0.556,0.939,0.596,0.97,0.597,0.939,0.635,0.97,0.636,0.94,0.674,0.97,0.674,0.94,0.712,0.97,0.712,0.94
,0.75,0.97,0.75,0.94,0.788,0.97,0.789,0.94,0.827,0.97,0.827,0.94,0.866,0.971,0.867,0.94,0.906,0.971,0.907,0.939,0.948,0.971,0.949,0.939,0.993,0.973,0.015,0.942,0.054,0.973,0.015,0.974,0.055,0.943,0.092,0.972,0.093,0.943,0.13,0.972,0.131,0.943,0.169,0.972,0.13,0.985,0.092,0.994,0.092,0.986
,0.169,0.942,0.207,0.972,0.208,0.942,0.515,0.923,0.557,0.916,0.557,0.924,0.286,0.985,0.247,0.972,0.286,0.972,0.286,0.927,0.247,0.941,0.247,0.928,0.326,0.986,0.286,0.972,0.326,0.972,0.327,0.926,0.287,0.941,0.368,0.986,0.326,0.972,0.368,0.971,0.368,0.925,0.327,0.94,0.41,0.971,0.41,0.985,0.41,0.939
,0.368,0.939,0.452,0.971,0.452,0.985,0.41,0.924,0.452,0.938,0.41,0.939,0.493,0.986,0.452,0.971,0.496,0.972,0.492,0.921,0.452,0.938,0.451,0.924,0.516,0.987,0.556,0.97,0.556,0.985,0.515,0.923,0.556,0.939,0.513,0.937,0.596,0.97,0.596,0.984,0.557,0.924,0.597,0.939,0.556,0.939,0.635,0.97,0.635,0.983
,0.597,0.926,0.636,0.94,0.597,0.939,0.674,0.97,0.673,0.983,0.636,0.927,0.674,0.94,0.636,0.94,0.712,0.983,0.674,0.97,0.712,0.97,0.712,0.927,0.674,0.94,0.674,0.927,0.75,0.97,0.75,0.983,0.75,0.94,0.712,0.94,0.788,0.983,0.75,0.97,0.788,0.97,0.789,0.927,0.75,0.94,0.75,0.927,0.826,0.984
,0.788,0.97,0.827,0.97,0.827,0.926,0.789,0.94,0.866,0.984,0.827,0.97,0.866,0.971,0.867,0.926,0.827,0.94,0.906,0.985,0.866,0.971,0.906,0.971,0.907,0.925,0.867,0.94,0.948,0.986,0.906,0.971,0.948,0.971,0.948,0.924,0.907,0.939,0.991,0.988,0.948,0.971,0.993,0.973,0.99,0.921,0.949,0.939,0.017,0.987
,0.054,0.973,0.054,0.985,0.017,0.929,0.055,0.943,0.015,0.942,0.092,0.986,0.054,0.973,0.092,0.972,0.093,0.93,0.055,0.943,0.055,0.93,0.13,0.985,0.092,0.972,0.13,0.972,0.131,0.93,0.093,0.943,0.13,0.985,0.169,0.972,0.169,0.985,0.169,0.942,0.131,0.943,0.207,0.986,0.169,0.972,0.207,0.972,0.208,0.928
,0.169,0.942,0.169,0.929,0.247,0.972,0.247,0.985,0.247,0.941,0.208,0.942,0.286,0.985,0.247,0.993,0.247,0.985,0.789,0.927,0.827,0.918,0.827,0.926,0.596,0.984,0.556,0.993,0.556,0.985,0.093,0.93,0.131,0.922,0.131,0.93,0.247,0.928,0.286,0.919,0.286,0.927,0.866,0.984,0.826,0.992,0.826,0.984,0.598,0.918
,0.597,0.926,0.169,0.985,0.13,0.993,0.326,0.986,0.286,0.993,0.286,0.985,0.827,0.926,0.867,0.918,0.867,0.926,0.635,0.983,0.596,0.992,0.596,0.984,0.131,0.93,0.169,0.921,0.169,0.929,0.286,0.927,0.326,0.918,0.327,0.926,0.906,0.985,0.866,0.992,0.866,0.984,0.597,0.926,0.636,0.919,0.636,0.927,0.207,0.986
,0.168,0.993,0.169,0.985,0.368,0.986,0.326,0.994,0.326,0.986,0.867,0.926,0.907,0.917,0.907,0.925,0.673,0.983,0.635,0.991,0.635,0.983,0.169,0.929,0.208,0.92,0.208,0.928,0.327,0.926,0.368,0.916,0.368,0.925,0.948,0.986,0.906,0.993,0.906,0.985,0.636,0.927,0.674,0.919,0.674,0.927,0.247,0.985,0.207,0.994
,0.207,0.986,0.41,0.985,0.368,0.995,0.368,0.986,0.907,0.925,0.948,0.916,0.948,0.924,0.712,0.983,0.674,0.991,0.673,0.983,0.208,0.928,0.247,0.92,0.247,0.928,0.368,0.925,0.41,0.915,0.41,0.924,0.991,0.988,0.948,0.995,0.948,0.986,0.674,0.927,0.712,0.919,0.712,0.927,0.452,0.985,0.41,0.994,0.41,0.985
,0.948,0.924,0.99,0.913,0.99,0.921,0.75,0.983,0.712,0.991,0.712,0.983,0.41,0.924,0.451,0.915,0.451,0.924,0.054,0.985,0.018,0.995,0.017,0.987,0.712,0.927,0.75,0.919,0.75,0.927,0.493,0.986,0.451,0.994,0.452,0.985,0.017,0.929,0.055,0.922,0.055,0.93,0.788,0.983,0.75,0.991,0.75,0.983,0.451,0.924
,0.492,0.913,0.492,0.921,0.054,0.993,0.054,0.985,0.75,0.927,0.789,0.919,0.789,0.927,0.556,0.985,0.516,0.995,0.516,0.987,0.055,0.93,0.093,0.922,0.093,0.93,0.826,0.984,0.787,0.991,0.788,0.983,0.036,0.66,0.18,0.6,0.303,0.695,0.254,0.31,0.314,0.454,0.065,0.557,0.495,0.936,0.993,0.937,0.516,0.914
,0.247,0.972,0.287,0.941,0.247,0.941,0.286,0.972,0.327,0.94,0.287,0.941,0.326,0.972,0.368,0.939,0.327,0.94,0.368,0.971,0.41,0.971,0.41,0.939,0.41,0.971,0.452,0.971,0.452,0.938,0.452,0.971,0.492,0.921,0.495,0.936,0.452,0.938,0.516,0.987,0.513,0.972,0.556,0.97,0.515,0.923,0.557,0.924,0.556,0.939
,0.556,0.97,0.596,0.97,0.557,0.924,0.597,0.939,0.596,0.97,0.635,0.97,0.636,0.94,0.635,0.97,0.674,0.97,0.674,0.94,0.674,0.97,0.712,0.94,0.674,0.94,0.712,0.97,0.75,0.97,0.75,0.94,0.75,0.97,0.789,0.94,0.75,0.94,0.788,0.97,0.827,0.94,0.789,0.94,0.827,0.97,0.867,0.94,0.827,0.94
,0.866,0.971,0.907,0.939,0.867,0.94,0.906,0.971,0.949,0.939,0.907,0.939,0.948,0.971,0.993,0.937,0.949,0.939,0.017,0.987,0.015,0.974,0.054,0.973,0.017,0.929,0.055,0.943,0.092,0.986,0.054,0.973,0.093,0.943,0.055,0.943,0.13,0.985,0.092,0.986,0.092,0.972,0.131,0.943,0.093,0.943,0.13,0.985,0.13,0.972
,0.169,0.972,0.169,0.942,0.169,0.972,0.208,0.942,0.169,0.942,0.207,0.972,0.247,0.972,0.247,0.941,0.286,0.985,0.789,0.927,0.596,0.984,0.093,0.93,0.247,0.928,0.866,0.984,0.169,0.985,0.326,0.986,0.827,0.926,0.635,0.983,0.131,0.93,0.286,0.927,0.906,0.985,0.597,0.926,0.207,0.986,0.368,0.986,0.867,0.926
,0.673,0.983,0.169,0.929,0.327,0.926,0.948,0.986,0.636,0.927,0.247,0.985,0.41,0.985,0.907,0.925,0.712,0.983,0.208,0.928,0.368,0.925,0.991,0.988,0.99,0.997,0.674,0.927,0.452,0.985,0.948,0.924,0.75,0.983,0.41,0.924,0.054,0.985,0.712,0.927,0.493,0.986,0.493,0.995,0.017,0.929,0.018,0.921,0.788,0.983
,0.451,0.924,0.75,0.927,0.556,0.985,0.055,0.93,0.826,0.984,0.303,0.695,0.314,0.734,0.283,0.849,0.314,0.734,0.314,0.775,0.283,0.849,0.314,0.775,0.303,0.814,0.283,0.849,0.283,0.849,0.254,0.878,0.219,0.898,0.219,0.898,0.18,0.909,0.139,0.909,0.139,0.909,0.1,0.898,0.016,0.814,0.1,0.898,0.065,0.878
,0.016,0.814,0.065,0.878,0.036,0.849,0.016,0.814,0.016,0.814,0.005,0.775,0.005,0.734,0.005,0.734,0.016,0.695,0.036,0.66,0.036,0.66,0.065,0.631,0.1,0.611,0.1,0.611,0.139,0.6,0.036,0.66,0.139,0.6,0.18,0.6,0.036,0.66,0.18,0.6,0.219,0.611,0.254,0.631,0.254,0.631,0.283,0.66,0.18,0.6
,0.283,0.66,0.303,0.695,0.18,0.6,0.283,0.849,0.219,0.898,0.139,0.909,0.016,0.814,0.005,0.734,0.036,0.66,0.303,0.695,0.283,0.849,0.036,0.66,0.283,0.849,0.139,0.909,0.036,0.66,0.139,0.909,0.016,0.814,0.036,0.66,0.314,0.454,0.303,0.493,0.283,0.528,0.283,0.528,0.254,0.557,0.219,0.577,0.219,0.577
,0.18,0.588,0.139,0.588,0.139,0.588,0.1,0.577,0.219,0.577,0.1,0.577,0.065,0.557,0.219,0.577,0.065,0.557,0.036,0.528,0.016,0.493,0.016,0.493,0.005,0.454,0.065,0.557,0.005,0.454,0.005,0.413,0.065,0.557,0.005,0.413,0.016,0.374,0.1,0.29,0.016,0.374,0.036,0.339,0.1,0.29,0.036,0.339,0.065,0.31
,0.1,0.29,0.1,0.29,0.139,0.279,0.18,0.279,0.18,0.279,0.219,0.29,0.254,0.31,0.254,0.31,0.283,0.339,0.303,0.374,0.303,0.374,0.314,0.413,0.254,0.31,0.314,0.413,0.314,0.454,0.254,0.31,0.314,0.454,0.283,0.528,0.065,0.557,0.283,0.528,0.219,0.577,0.065,0.557,0.1,0.29,0.18,0.279,0.254,0.31
,0.065,0.557,0.005,0.413,0.1,0.29,0.1,0.29,0.254,0.31,0.065,0.557]
,"indices":[0,1,2,3,4,1,5,6,4,7,8,6,9,10,8,11,12,10,13,14,15,16,17,14,18,19,17,20,21,19,22,23,21,24,25,23,26,27,25,28,29,27,30,31,29,32,33,31,34,35,33
,36,37,35,38,39,40,41,42,39,43,44,42,45,46,44,47,48,49,50,51,46,52,2,51,53,54,55,56,57,58,59,60,61,62,63,64,65,66,59,67,68,69,70,71,65,67,72,73,70,74,75
,73,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,89,93,94,95,96,97,94,98,99,100,101,102,99,103,104,105,106,107,108,109,110,111,112,113,108,114,115,111,116,117,118,119,120
,121,122,123,124,125,126,127,128,121,129,130,131,132,133,127,134,135,136,137,138,132,139,140,141,142,143,137,144,145,146,147,148,142,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,158
,166,167,168,164,169,170,171,172,173,174,175,176,171,177,178,174,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,55,199,200,201,202,47,203,204,205,206,207,208,209,210,211
,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262
,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,49,302,303,304,305,306,307,308,309,310,311,312
,313,314,315,316,317,318,319,320,321,0,3,1,3,5,4,5,7,6,7,9,8,9,11,10,11,322,12,13,16,14,16,18,17,18,20,19,20,22,21,22,24,23,24,26,25,26,28,27,28,30,29
,30,32,31,32,34,33,34,36,35,36,323,37,38,41,39,41,43,42,43,45,44,45,50,46,47,202,48,50,52,51,52,0,2,53,324,54,56,178,325,59,326,327,62,56,328,65,329,330,67,62,331
,70,332,333,67,334,335,70,78,336,73,337,338,78,86,339,81,77,340,341,342,343,344,345,346,347,348,349,89,350,351,352,100,353,94,354,355,100,105,356,99,357,358,105,113,359,108,104,360,111,361,362
,108,363,364,111,123,365,118,115,366,121,367,368,124,118,369,127,370,371,129,124,372,132,373,374,134,129,375,137,376,377,139,134,378,142,379,380,144,139,381,147,382,383,384,385,386,387,160,388,389,151,390
,158,391,392,393,394,395,164,396,397,398,399,400,164,176,401,171,168,402,174,403,404,171,405,406,174,61,407,408,204,182,409,305,185,410,210,188,411,311,191,412,261,194,413,219,197,55,54,199,414,225,202
,415,228,204,416,185,207,417,234,210,418,191,213,419,194,216,420,243,219,421,199,222,422,249,225,423,252,228,424,207,231,425,258,234,426,213,237,427,216,240,428,267,243,429,222,246,430,182,249,431,273,252
,432,231,255,433,279,258,434,237,261,435,240,264,436,437,267,438,246,270,439,291,273,440,255,276,441,297,279,442,264,282,443,302,285,444,270,288,445,446,291,447,448,294,449,314,297,450,282,300,49,48,302
,451,288,305,452,188,308,453,294,311,454,197,314,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493
,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544
,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580]
}
,{"name":"fate","id":"fate","billboardMode":0,"position":[-0.5,0.0893,0.5],"rotationQuaternion":[0,0,0,-1],"scaling":[0.85,0.85,0.85],"isVisible":true,"isEnabled":true,"pickable":false
,"positions":[-0.0865,-0.0892,-0.0865,-0.0881,-0.0881,-0.0881,-0.0884,-0.0884,-0.0865,-0.0865,-0.0865,-0.0892,-0.0881,-0.0881,-0.0881,-0.0865,-0.0884,-0.0884,-0.0892,-0.0865,-0.0865,-0.0881,-0.0881,-0.0881,-0.0884,-0.0865,-0.0884,-0.0865,0.0865,-0.0892,-0.0881,0.0881,-0.0881,-0.0884,0.0865,-0.0884,-0.0865,0.0892,-0.0865,-0.0881,0.0881,-0.0881,-0.0865,0.0884,-0.0884,-0.0892,0.0865,-0.0865,-0.0881,0.0881,-0.0881
,-0.0884,0.0884,-0.0865,-0.0865,-0.0892,0.0865,-0.0881,-0.0881,0.0881,-0.0865,-0.0884,0.0884,-0.0892,-0.0865,0.0865,-0.0881,-0.0881,0.0881,-0.0884,-0.0884,0.0865,-0.0865,-0.0865,0.0892,-0.0881,-0.0881,0.0881,-0.0884,-0.0865,0.0884,-0.0865,0.0892,0.0865,-0.0881,0.0881,0.0881,-0.0884,0.0884,0.0865,-0.0865,0.0865,0.0892,-0.0881,0.0881,0.0881,-0.0865,0.0884,0.0884,-0.0892,0.0865,0.0865
,-0.0881,0.0881,0.0881,-0.0884,0.0865,0.0884,0.0865,-0.0892,-0.0865,0.0881,-0.0881,-0.0881,0.0865,-0.0884,-0.0884,0.0892,-0.0865,-0.0865,0.0881,-0.0881,-0.0881,0.0884,-0.0884,-0.0865,0.0865,-0.0865,-0.0892,0.0881,-0.0881,-0.0881,0.0884,-0.0865,-0.0884,0.0865,0.0892,-0.0865,0.0881,0.0881,-0.0881,0.0884,0.0884,-0.0865,0.0865,0.0865,-0.0892,0.0881,0.0881,-0.0881,0.0865,0.0884,-0.0884
,0.0892,0.0865,-0.0865,0.0881,0.0881,-0.0881,0.0884,0.0865,-0.0884,0.0865,-0.0892,0.0865,0.0881,-0.0881,0.0881,0.0884,-0.0884,0.0865,0.0865,-0.0865,0.0892,0.0881,-0.0881,0.0881,0.0865,-0.0884,0.0884,0.0892,-0.0865,0.0865,0.0881,-0.0881,0.0881,0.0884,-0.0865,0.0884,0.0865,0.0892,0.0865,0.0881,0.0881,0.0881,0.0865,0.0884,0.0884,0.0892,0.0865,0.0865,0.0881,0.0881,0.0881
,0.0884,0.0884,0.0865,0.0865,0.0865,0.0892,0.0881,0.0881,0.0881,0.0884,0.0865,0.0884,-0.0884,-0.0884,0.0865,-0.0884,-0.0884,-0.0865,-0.0884,-0.0865,-0.0884,-0.0884,0.0865,-0.0884,-0.0884,0.0884,-0.0865,-0.0884,0.0884,0.0865,-0.0884,0.0865,0.0884,-0.0884,-0.0865,0.0884,0.0865,-0.0884,0.0884,-0.0865,-0.0884,0.0884,-0.0865,0.0884,0.0884,0.0865,0.0884,0.0884,0.0884,0.0865,0.0884
,0.0884,-0.0865,0.0884,0.0884,-0.0884,-0.0865,0.0884,-0.0884,0.0865,0.0884,0.0884,0.0865,0.0884,0.0884,-0.0865,0.0884,0.0865,-0.0884,-0.0865,-0.0884,-0.0884,0.0865,-0.0884,-0.0884,0.0865,0.0884,-0.0884,-0.0865,0.0884,-0.0884,-0.0865,-0.0884,-0.0884,-0.0884,-0.0865,-0.0884,-0.0881,-0.0881,-0.0881,-0.0884,-0.0884,-0.0865,-0.0881,-0.0881,-0.0881,-0.0865,0.0884,-0.0884,-0.0884,0.0884,-0.0865
,-0.0881,0.0881,-0.0881,-0.0884,0.0865,-0.0884,-0.0881,0.0881,-0.0881,-0.0884,-0.0884,0.0865,-0.0884,-0.0865,0.0884,-0.0881,-0.0881,0.0881,-0.0865,-0.0884,0.0884,-0.0881,-0.0881,0.0881,-0.0865,0.0884,0.0884,-0.0884,0.0865,0.0884,-0.0881,0.0881,0.0881,-0.0884,0.0884,0.0865,-0.0881,0.0881,0.0881,0.0884,-0.0884,-0.0865,0.0884,-0.0865,-0.0884,0.0881,-0.0881,-0.0881,0.0865,-0.0884,-0.0884
,0.0881,-0.0881,-0.0881,0.0865,0.0884,-0.0884,0.0884,0.0865,-0.0884,0.0881,0.0881,-0.0881,0.0884,0.0884,-0.0865,0.0881,0.0881,-0.0881,0.0865,-0.0884,0.0884,0.0884,-0.0865,0.0884,0.0881,-0.0881,0.0881,0.0884,-0.0884,0.0865,0.0881,-0.0881,0.0881,0.0884,0.0884,0.0865,0.0884,0.0865,0.0884,0.0881,0.0881,0.0881,0.0865,0.0884,0.0884,0.0881,0.0881,0.0881,-0.0884,-0.0884,0.0865
,-0.0884,-0.0884,-0.0865,-0.0884,-0.0865,-0.0884,-0.0884,0.0865,-0.0884,-0.0884,0.0884,-0.0865,-0.0884,0.0884,0.0865,-0.0884,0.0865,0.0884,-0.0884,-0.0865,0.0884,0.0865,-0.0884,0.0884,-0.0865,-0.0884,0.0884,-0.0865,0.0884,0.0884,0.0865,0.0884,0.0884,0.0884,0.0865,0.0884,0.0884,-0.0865,0.0884,0.0884,-0.0884,-0.0865,0.0884,-0.0884,0.0865,0.0884,0.0884,0.0865,0.0884,0.0884,-0.0865
,0.0884,0.0865,-0.0884,0.0884,-0.0865,-0.0884,-0.0865,-0.0884,-0.0884,0.0865,-0.0884,-0.0884,0.0865,0.0884,-0.0884,-0.0865,0.0884,-0.0884]
,"normals":[0.071,-0.984,-0.164,-0.577,-0.577,-0.577,-0.708,-0.706,0.02,-0.164,0.071,-0.984,-0.577,-0.577,-0.577,-0.136,-0.809,-0.572,-0.984,-0.164,0.071,-0.577,-0.577,-0.577,-0.572,-0.136,-0.809,0.07,0.164,-0.984,-0.577,0.577,-0.577,-0.708,-0.02,-0.706,-0.164,0.984,0.07,-0.577,0.577,-0.577,-0.136,0.572,-0.809,-0.984,-0.07,-0.164,-0.577,0.577,-0.577
,-0.573,0.809,-0.136,-0.164,-0.984,-0.07,-0.577,-0.577,0.577,0.02,-0.706,0.708,-0.984,0.07,0.164,-0.577,-0.577,0.577,-0.573,-0.809,0.136,0.071,-0.164,0.984,-0.577,-0.577,0.577,-0.809,-0.136,0.572,0.071,0.984,0.164,-0.577,0.577,0.577,-0.708,0.706,-0.02,-0.164,-0.07,0.984,-0.577,0.577,0.577,-0.136,0.809,0.572,-0.984,0.164,-0.071
,-0.577,0.577,0.577,-0.572,0.136,0.809,0.164,-0.984,0.07,0.577,-0.577,-0.577,-0.02,-0.706,-0.708,0.984,0.069,-0.164,0.577,-0.577,-0.577,0.572,-0.809,-0.136,-0.07,-0.164,-0.984,0.577,-0.577,-0.577,0.81,-0.135,-0.571,-0.071,0.984,-0.164,0.577,0.577,-0.577,0.708,0.706,0.02,0.164,-0.071,-0.984,0.577,0.577,-0.577,0.136,0.809,-0.572
,0.984,0.164,0.071,0.577,0.577,-0.577,0.574,0.136,-0.808,-0.071,-0.984,0.164,0.577,-0.577,0.577,0.708,-0.706,-0.02,0.164,0.07,0.984,0.577,-0.577,0.577,0.136,-0.809,0.572,0.984,-0.164,-0.071,0.577,-0.577,0.577,0.572,-0.136,0.809,0.164,0.984,-0.07,0.577,0.577,0.577,-0.02,0.706,0.708,0.984,-0.07,0.164,0.577,0.577,0.577
,0.572,0.809,0.136,-0.071,0.164,0.984,0.577,0.577,0.577,0.809,0.136,0.572,-0.573,-0.809,0.136,-0.708,-0.706,0.02,-0.572,-0.136,-0.809,-0.708,-0.02,-0.706,-0.573,0.809,-0.136,-0.708,0.706,-0.02,-0.572,0.136,0.809,-0.809,-0.136,0.572,0.136,-0.809,0.572,0.02,-0.706,0.708,-0.136,0.809,0.572,-0.02,0.706,0.708,0.809,0.136,0.572
,0.572,-0.136,0.809,0.572,-0.809,-0.136,0.708,-0.706,-0.02,0.572,0.809,0.136,0.708,0.706,0.02,0.574,0.136,-0.808,-0.136,-0.809,-0.572,-0.02,-0.706,-0.708,0.136,0.809,-0.572,-0.136,0.572,-0.809,-0.136,-0.809,-0.572,-0.572,-0.136,-0.809,-0.577,-0.577,-0.577,-0.708,-0.706,0.02,-0.577,-0.577,-0.577,-0.136,0.572,-0.809,-0.573,0.809,-0.136
,-0.577,0.577,-0.577,-0.708,-0.02,-0.706,-0.577,0.577,-0.577,-0.573,-0.809,0.136,-0.809,-0.136,0.572,-0.577,-0.577,0.577,0.02,-0.706,0.708,-0.577,-0.577,0.577,-0.136,0.809,0.572,-0.572,0.136,0.809,-0.577,0.577,0.577,-0.708,0.706,-0.02,-0.577,0.577,0.577,0.572,-0.809,-0.136,0.81,-0.135,-0.571,0.577,-0.577,-0.577,-0.02,-0.706,-0.708
,0.577,-0.577,-0.577,0.136,0.809,-0.572,0.574,0.136,-0.808,0.577,0.577,-0.577,0.708,0.706,0.02,0.577,0.577,-0.577,0.136,-0.809,0.572,0.572,-0.136,0.809,0.577,-0.577,0.577,0.708,-0.706,-0.02,0.577,-0.577,0.577,0.572,0.809,0.136,0.809,0.136,0.572,0.577,0.577,0.577,-0.02,0.706,0.708,0.577,0.577,0.577,-0.573,-0.809,0.136
,-0.708,-0.706,0.02,-0.572,-0.136,-0.809,-0.708,-0.02,-0.706,-0.573,0.809,-0.136,-0.708,0.706,-0.02,-0.572,0.136,0.809,-0.809,-0.136,0.572,0.136,-0.809,0.572,0.02,-0.706,0.708,-0.136,0.809,0.572,-0.02,0.706,0.708,0.809,0.136,0.572,0.572,-0.136,0.809,0.572,-0.809,-0.136,0.708,-0.706,-0.02,0.572,0.809,0.136,0.708,0.706,0.02
,0.574,0.136,-0.808,0.81,-0.135,-0.571,-0.136,-0.809,-0.572,-0.02,-0.706,-0.708,0.136,0.809,-0.572,-0.136,0.572,-0.809]
,"tangents":[0.031,0.167,-0.986,1,0.25,0.548,-0.798,1,-0.076,0.049,-0.996,1,-0.986,0.031,0.167,1,-0.798,0.25,0.548,1,-0.986,0.053,0.16,1,0.167,-0.986,0.031,1,0.548,-0.798,0.25,1,0.16,-0.986,0.052,1,-0.998,0.014,-0.068,1,-0.797,-0.246,0.551,1,-0.704,-0.052,0.708,1,0.014,-0.068
,0.998,1,-0.246,0.551,0.797,1,-0.149,0.795,0.588,1,0.068,-0.998,0.014,1,-0.551,-0.797,-0.246,1,-0.795,-0.588,-0.149,1,0.014,0.068,-0.998,1,-0.246,-0.551,-0.797,1,-0.052,-0.708,-0.704,1,-0.068,-0.998,0.014,1,0.551,-0.797,-0.246,1,0.795,-0.588,-0.149,1,-0.031,0.986,0.167,1
,-0.25,0.798,0.548,1,-0.052,0.986,0.16,1,0.031,-0.167,0.985,1,0.25,-0.548,0.798,1,-0.076,-0.049,0.996,1,-0.014,0.998,0.068,1,0.246,0.797,-0.551,1,0.149,0.588,-0.795,1,-0.167,-0.986,0.031,1,-0.548,-0.798,0.25,1,-0.16,-0.986,0.052,1,0.014,-0.068,-0.998,1,-0.246,0.551
,-0.797,1,-0.052,0.708,-0.704,1,0.068,-0.998,-0.014,1,-0.551,-0.797,0.246,1,-0.795,-0.588,0.149,1,-0.998,0.014,0.068,1,-0.797,-0.246,-0.551,1,-0.586,-0.15,-0.796,1,0.031,0.167,0.986,1,0.25,0.548,0.798,1,-0.076,0.049,0.996,1,-0.986,0.031,-0.167,1,-0.798,0.25,-0.548,1
,-0.986,0.052,-0.16,1,0.167,-0.986,-0.031,1,0.548,-0.798,-0.25,1,0.159,-0.986,-0.052,1,0.031,-0.167,-0.986,1,0.25,-0.548,-0.798,1,-0.076,-0.049,-0.996,1,-0.014,0.998,-0.068,1,0.246,0.797,0.551,1,0.149,0.588,0.795,1,-0.167,-0.986,-0.031,1,-0.548,-0.798,-0.25,1,-0.16,-0.986
,-0.052,1,0.014,0.068,0.998,1,-0.246,-0.551,0.797,1,-0.052,-0.708,0.704,1,-0.068,-0.998,-0.014,1,0.551,-0.797,0.246,1,0.795,-0.588,0.149,1,-0.031,0.986,-0.167,1,-0.25,0.798,-0.548,1,-0.053,0.986,-0.16,1,-0.025,-0.148,-0.989,1,0.706,-0.706,0.056,1,-0.82,0.091,0.565,1
,-0.051,-0.996,0.079,1,-0.025,0.148,0.989,1,-0.706,-0.706,0.056,1,0.025,0.989,-0.148,1,0.148,-0.989,-0.025,1,0.091,-0.565,-0.82,1,-0.056,0.706,0.706,1,0.091,-0.565,0.82,1,-0.056,0.706,-0.706,1,0.148,-0.989,0.025,1,0.025,0.989,0.148,1,-0.025,0.148,-0.989,1,-0.706,-0.706
,-0.056,1,-0.025,-0.148,0.989,1,0.706,-0.706,-0.056,1,-0.819,0.091,-0.566,1,0.091,0.565,-0.82,1,-0.996,0.079,-0.051,1,0.091,0.565,0.82,1,-0.989,-0.025,0.148,1,0.091,0.565,-0.82,1,-0.82,0.091,0.565,1,-0.798,0.25,0.548,1,0.706,-0.706,0.056,1,0.548,-0.798,0.25,1
,-0.989,-0.025,0.148,1,-0.025,0.148,0.989,1,-0.246,0.551,0.797,1,-0.051,-0.996,0.079,1,-0.551,-0.797,-0.246,1,-0.025,-0.148,-0.989,1,0.148,-0.989,-0.025,1,0.551,-0.797,-0.246,1,-0.056,0.706,0.706,1,-0.25,0.798,0.548,1,0.091,-0.565,0.82,1,0.025,0.989,-0.148,1,0.246,0.797
,-0.551,1,-0.706,-0.706,0.056,1,-0.548,-0.798,0.25,1,-0.025,0.148,-0.989,1,-0.148,-0.989,0.025,1,-0.551,-0.797,0.246,1,-0.996,0.079,-0.051,1,-0.797,-0.246,-0.551,1,0.091,0.565,0.82,1,-0.819,0.091,-0.566,1,-0.798,0.25,-0.548,1,0.706,-0.706,-0.056,1,0.548,-0.798,-0.25,1
,0.091,-0.565,-0.82,1,0.025,0.989,0.148,1,0.246,0.797,0.551,1,-0.706,-0.706,-0.056,1,-0.548,-0.798,-0.25,1,-0.025,-0.148,0.989,1,0.148,-0.989,0.025,1,0.551,-0.797,0.246,1,-0.056,0.706,-0.706,1,-0.25,0.798,-0.548,1,-0.025,-0.148,-0.989,1,0.706,-0.706,0.056,1,-0.82,0.091
,0.565,1,-0.051,-0.996,0.079,1,-0.025,0.148,0.989,1,-0.706,-0.706,0.056,1,0.025,0.989,-0.148,1,0.148,-0.989,-0.025,1,0.091,-0.565,-0.82,1,-0.056,0.706,0.706,1,0.091,-0.565,0.82,1,-0.056,0.706,-0.706,1,0.148,-0.989,0.025,1,0.025,0.989,0.148,1,-0.025,0.148,-0.989,1
,-0.706,-0.706,-0.056,1,-0.025,-0.148,0.989,1,0.706,-0.706,-0.056,1,-0.819,0.091,-0.566,1,-0.148,-0.989,0.025,1,0.091,0.565,-0.82,1,-0.996,0.079,-0.051,1,0.091,0.565,0.82,1,-0.989,-0.025,0.148,1]
,"uvs":[0.766,0.678,0.769,0.681,0.766,0.682,0.766,0.904,0.769,0.907,0.766,0.908,0.54,0.452,0.543,0.455,0.54,0.456,0.768,0.689,0.771,0.686,0.771,0.689,0.325,0.678,0.322,0.681,0.321,0.678,0.325,0.452,0.322,0.455,0.321,0.452,0.551,0.678,0.548,0.681,0.547,0.678,0.542,0.237,0.545,0.234,0.545,0.237,0.327,0.689
,0.323,0.686,0.326,0.685,0.54,0.678,0.543,0.681,0.54,0.682,0.542,0.689,0.545,0.686,0.545,0.689,0.327,0.237,0.323,0.234,0.326,0.233,0.768,0.463,0.771,0.46,0.771,0.463,0.542,0.011,0.545,0.007,0.545,0.011,0.551,0.904,0.548,0.907,0.547,0.904,0.327,0.463,0.323,0.46,0.326,0.459,0.553,0.689,0.549,0.686
,0.552,0.685,0.327,0.011,0.323,0.007,0.326,0.007,0.553,0.463,0.549,0.46,0.552,0.459,0.325,0.904,0.322,0.907,0.321,0.904,0.54,0.226,0.543,0.229,0.54,0.229,0.542,0.463,0.545,0.46,0.545,0.463,0.325,0.226,0.322,0.229,0.321,0.226,0.54,0.904,0.543,0.907,0.54,0.908,0.551,0.682,0.544,0.452,0.77,0.904
,0.325,0.456,0.325,0.682,0.323,0.237,0.542,0.685,0.542,0.233,0.549,0.463,0.323,0.689,0.544,0.678,0.544,0.904,0.325,0.229,0.325,0.908,0.768,0.459,0.544,0.226,0.542,0.459,0.323,0.01,0.549,0.689,0.77,0.678,0.551,0.908,0.323,0.463,0.768,0.685,0.77,0.678,0.77,0.904,0.769,0.907,0.544,0.452,0.543,0.455
,0.768,0.685,0.325,0.682,0.322,0.681,0.325,0.456,0.322,0.455,0.551,0.682,0.542,0.233,0.545,0.234,0.323,0.689,0.323,0.686,0.544,0.678,0.542,0.685,0.545,0.686,0.323,0.237,0.323,0.234,0.768,0.459,0.542,0.007,0.545,0.007,0.551,0.908,0.548,0.907,0.323,0.463,0.549,0.689,0.549,0.686,0.323,0.01,0.323,0.007
,0.549,0.463,0.325,0.908,0.322,0.907,0.544,0.226,0.543,0.229,0.542,0.459,0.325,0.229,0.322,0.229,0.544,0.904,0.543,0.907,0.551,0.682,0.544,0.452,0.77,0.904,0.325,0.456,0.325,0.682,0.323,0.237,0.542,0.685,0.542,0.233,0.549,0.463,0.323,0.689,0.544,0.678,0.544,0.904,0.325,0.229,0.325,0.908,0.768,0.459
,0.544,0.226,0.542,0.459,0.323,0.01,0.549,0.689,0.542,0.007,0.77,0.678,0.551,0.908,0.323,0.463,0.768,0.685]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50
,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,0,72,18,73,21,23,9,74,3,75,6,8,27,76,12,77,15,17,24,78,30,79,33,35,18,80,54,81,57,59
,63,82,27,83,30,32,60,84,66,85,69,71,54,86,36,87,39,41,45,88,63,89,66,68,42,90,48,53,39,51,36,91,0,92,3,5,12,93,45,94,48,50,48,3,42,45,27,12,51,60,66
,69,24,30,33,6,15,0,54,36,0,95,1,3,96,97,6,98,99,9,100,10,12,101,102,15,103,104,18,105,19,21,106,107,24,108,109,27,110,28,30,111,112,33,113,114,36,115,37,39,116,117
,42,118,119,45,120,46,48,121,122,51,123,124,54,125,55,57,126,127,60,128,129,63,130,64,66,131,132,69,133,134,0,2,135,136,6,21,9,11,137,138,15,6,27,29,139,140,33,15,24,26,141
,142,21,33,18,20,143,144,24,57,63,65,145,146,69,30,60,62,147,148,57,69,54,56,149,150,60,39,45,47,151,152,51,66,42,44,153,53,154,39,36,38,155,156,42,3,12,14,157,158,9,48
,48,9,3,45,63,27,51,39,60,69,57,24,33,21,6,0,18,54]
}
,{"name":"pip","id":"pip","billboardMode":0,"position":[0,0.0893,0.5],"rotationQuaternion":[0,0,0,-1],"scaling":[0.85,0.85,0.85],"isVisible":true,"isEnabled":true,"pickable":false
,"positions":[-0.0865,-0.0892,-0.0865,-0.0881,-0.0881,-0.0881,-0.0884,-0.0884,-0.0865,-0.0865,-0.0865,-0.0892,-0.0881,-0.0881,-0.0881,-0.0865,-0.0884,-0.0884,-0.0892,-0.0865,-0.0865,-0.0881,-0.0881,-0.0881,-0.0884,-0.0865,-0.0884,-0.0865,0.0865,-0.0892,-0.0881,0.0881,-0.0881,-0.0884,0.0865,-0.0884,-0.0865,0.0892,-0.0865,-0.0881,0.0881,-0.0881,-0.0865,0.0884,-0.0884,-0.0892,0.0865,-0.0865,-0.0881,0.0881,-0.0881
,-0.0884,0.0884,-0.0865,-0.0865,-0.0892,0.0865,-0.0881,-0.0881,0.0881,-0.0865,-0.0884,0.0884,-0.0892,-0.0865,0.0865,-0.0881,-0.0881,0.0881,-0.0884,-0.0884,0.0865,-0.0865,-0.0865,0.0892,-0.0881,-0.0881,0.0881,-0.0884,-0.0865,0.0884,-0.0865,0.0892,0.0865,-0.0881,0.0881,0.0881,-0.0884,0.0884,0.0865,-0.0865,0.0865,0.0892,-0.0881,0.0881,0.0881,-0.0865,0.0884,0.0884,-0.0892,0.0865,0.0865
,-0.0881,0.0881,0.0881,-0.0884,0.0865,0.0884,0.0865,-0.0892,-0.0865,0.0881,-0.0881,-0.0881,0.0865,-0.0884,-0.0884,0.0892,-0.0865,-0.0865,0.0881,-0.0881,-0.0881,0.0884,-0.0884,-0.0865,0.0865,-0.0865,-0.0892,0.0881,-0.0881,-0.0881,0.0884,-0.0865,-0.0884,0.0865,0.0892,-0.0865,0.0881,0.0881,-0.0881,0.0884,0.0884,-0.0865,0.0865,0.0865,-0.0892,0.0881,0.0881,-0.0881,0.0865,0.0884,-0.0884
,0.0892,0.0865,-0.0865,0.0881,0.0881,-0.0881,0.0884,0.0865,-0.0884,0.0865,-0.0892,0.0865,0.0881,-0.0881,0.0881,0.0884,-0.0884,0.0865,0.0865,-0.0865,0.0892,0.0881,-0.0881,0.0881,0.0865,-0.0884,0.0884,0.0892,-0.0865,0.0865,0.0881,-0.0881,0.0881,0.0884,-0.0865,0.0884,0.0865,0.0892,0.0865,0.0881,0.0881,0.0881,0.0865,0.0884,0.0884,0.0892,0.0865,0.0865,0.0881,0.0881,0.0881
,0.0884,0.0884,0.0865,0.0865,0.0865,0.0892,0.0881,0.0881,0.0881,0.0884,0.0865,0.0884,-0.0884,-0.0884,0.0865,-0.0884,-0.0884,-0.0865,-0.0884,-0.0865,-0.0884,-0.0884,0.0865,-0.0884,-0.0884,0.0884,-0.0865,-0.0884,0.0884,0.0865,-0.0884,0.0865,0.0884,0.0865,-0.0884,0.0884,-0.0865,-0.0884,0.0884,-0.0865,0.0884,0.0884,0.0865,0.0884,0.0884,0.0884,0.0865,0.0884,0.0884,-0.0865,0.0884
,0.0884,-0.0884,-0.0865,0.0884,-0.0884,0.0865,0.0884,0.0884,0.0865,0.0884,0.0884,-0.0865,0.0884,0.0865,-0.0884,0.0884,-0.0865,-0.0884,-0.0865,-0.0884,-0.0884,0.0865,-0.0884,-0.0884,0.0865,0.0884,-0.0884,-0.0865,0.0884,-0.0884,-0.0865,-0.0884,-0.0884,-0.0884,-0.0865,-0.0884,-0.0881,-0.0881,-0.0881,-0.0884,-0.0884,-0.0865,-0.0881,-0.0881,-0.0881,-0.0865,0.0884,-0.0884,-0.0884,0.0884,-0.0865
,-0.0881,0.0881,-0.0881,-0.0884,0.0865,-0.0884,-0.0881,0.0881,-0.0881,-0.0884,-0.0884,0.0865,-0.0884,-0.0865,0.0884,-0.0881,-0.0881,0.0881,-0.0865,-0.0884,0.0884,-0.0881,-0.0881,0.0881,-0.0865,0.0884,0.0884,-0.0884,0.0865,0.0884,-0.0881,0.0881,0.0881,-0.0884,0.0884,0.0865,-0.0881,0.0881,0.0881,0.0884,-0.0884,-0.0865,0.0884,-0.0865,-0.0884,0.0881,-0.0881,-0.0881,0.0865,-0.0884,-0.0884
,0.0881,-0.0881,-0.0881,0.0865,0.0884,-0.0884,0.0884,0.0865,-0.0884,0.0881,0.0881,-0.0881,0.0884,0.0884,-0.0865,0.0881,0.0881,-0.0881,0.0865,-0.0884,0.0884,0.0884,-0.0865,0.0884,0.0881,-0.0881,0.0881,0.0884,-0.0884,0.0865,0.0881,-0.0881,0.0881,0.0884,0.0884,0.0865,0.0884,0.0865,0.0884,0.0881,0.0881,0.0881,0.0865,0.0884,0.0884,0.0881,0.0881,0.0881,-0.0884,-0.0884,0.0865
,-0.0884,-0.0884,-0.0865,-0.0884,-0.0865,-0.0884,-0.0884,0.0865,-0.0884,-0.0884,0.0884,-0.0865,-0.0884,0.0884,0.0865,-0.0884,0.0865,0.0884,-0.0884,-0.0865,0.0884,0.0865,-0.0884,0.0884,-0.0865,-0.0884,0.0884,-0.0865,0.0884,0.0884,0.0865,0.0884,0.0884,0.0884,0.0865,0.0884,0.0884,-0.0865,0.0884,0.0884,-0.0884,-0.0865,0.0884,-0.0884,0.0865,0.0884,0.0884,0.0865,0.0884,0.0884,-0.0865
,0.0884,0.0865,-0.0884,0.0884,-0.0865,-0.0884,-0.0865,-0.0884,-0.0884,0.0865,-0.0884,-0.0884,0.0865,0.0884,-0.0884,-0.0865,0.0884,-0.0884]
,"normals":[0.071,-0.984,-0.164,-0.577,-0.577,-0.577,-0.708,-0.706,0.02,-0.164,0.071,-0.984,-0.577,-0.577,-0.577,-0.136,-0.809,-0.572,-0.984,-0.164,0.07,-0.577,-0.577,-0.577,-0.572,-0.136,-0.809,0.07,0.164,-0.984,-0.577,0.577,-0.577,-0.708,-0.02,-0.706,-0.164,0.984,0.071,-0.577,0.577,-0.577,-0.136,0.572,-0.809,-0.984,-0.071,-0.164,-0.577,0.577,-0.577
,-0.572,0.809,-0.136,-0.164,-0.984,-0.07,-0.577,-0.577,0.577,0.02,-0.706,0.708,-0.984,0.07,0.164,-0.577,-0.577,0.577,-0.572,-0.809,0.136,0.07,-0.164,0.984,-0.577,-0.577,0.577,-0.81,-0.135,0.571,0.07,0.984,0.164,-0.577,0.577,0.577,-0.708,0.706,-0.02,-0.164,-0.071,0.984,-0.577,0.577,0.577,-0.136,0.809,0.572,-0.984,0.164,-0.07
,-0.577,0.577,0.577,-0.574,0.136,0.808,0.164,-0.984,0.07,0.577,-0.577,-0.577,-0.02,-0.706,-0.708,0.984,0.071,-0.164,0.577,-0.577,-0.577,0.572,-0.809,-0.136,-0.07,-0.164,-0.984,0.577,-0.577,-0.577,0.809,-0.136,-0.572,-0.07,0.984,-0.164,0.577,0.577,-0.577,0.708,0.706,0.02,0.164,-0.071,-0.984,0.577,0.577,-0.577,0.136,0.809,-0.572
,0.984,0.164,0.07,0.577,0.577,-0.577,0.572,0.136,-0.809,-0.071,-0.984,0.164,0.577,-0.577,0.577,0.708,-0.706,-0.02,0.164,0.071,0.984,0.577,-0.577,0.577,0.136,-0.809,0.572,0.984,-0.164,-0.07,0.577,-0.577,0.577,0.572,-0.136,0.809,0.164,0.984,-0.071,0.577,0.577,0.577,-0.02,0.706,0.708,0.984,-0.071,0.164,0.577,0.577,0.577
,0.572,0.809,0.136,-0.07,0.164,0.984,0.577,0.577,0.577,0.809,0.136,0.572,-0.572,-0.809,0.136,-0.708,-0.706,0.02,-0.572,-0.136,-0.809,-0.708,-0.02,-0.706,-0.572,0.809,-0.136,-0.708,0.706,-0.02,-0.574,0.136,0.808,0.136,-0.809,0.572,0.02,-0.706,0.708,-0.136,0.809,0.572,-0.02,0.706,0.708,0.809,0.136,0.572,0.572,-0.136,0.809
,0.572,-0.809,-0.136,0.708,-0.706,-0.02,0.572,0.809,0.136,0.708,0.706,0.02,0.572,0.136,-0.809,0.809,-0.136,-0.572,-0.136,-0.809,-0.572,-0.02,-0.706,-0.708,0.136,0.809,-0.572,-0.136,0.572,-0.809,-0.136,-0.809,-0.572,-0.572,-0.136,-0.809,-0.577,-0.577,-0.577,-0.708,-0.706,0.02,-0.577,-0.577,-0.577,-0.136,0.572,-0.809,-0.572,0.809,-0.136
,-0.577,0.577,-0.577,-0.708,-0.02,-0.706,-0.577,0.577,-0.577,-0.572,-0.809,0.136,-0.81,-0.135,0.571,-0.577,-0.577,0.577,0.02,-0.706,0.708,-0.577,-0.577,0.577,-0.136,0.809,0.572,-0.574,0.136,0.808,-0.577,0.577,0.577,-0.708,0.706,-0.02,-0.577,0.577,0.577,0.572,-0.809,-0.136,0.809,-0.136,-0.572,0.577,-0.577,-0.577,-0.02,-0.706,-0.708
,0.577,-0.577,-0.577,0.136,0.809,-0.572,0.572,0.136,-0.809,0.577,0.577,-0.577,0.708,0.706,0.02,0.577,0.577,-0.577,0.136,-0.809,0.572,0.572,-0.136,0.809,0.577,-0.577,0.577,0.708,-0.706,-0.02,0.577,-0.577,0.577,0.572,0.809,0.136,0.809,0.136,0.572,0.577,0.577,0.577,-0.02,0.706,0.708,0.577,0.577,0.577,-0.572,-0.809,0.136
,-0.708,-0.706,0.02,-0.572,-0.136,-0.809,-0.708,-0.02,-0.706,-0.572,0.809,-0.136,-0.708,0.706,-0.02,-0.574,0.136,0.808,-0.81,-0.135,0.571,0.136,-0.809,0.572,0.02,-0.706,0.708,-0.136,0.809,0.572,-0.02,0.706,0.708,0.809,0.136,0.572,0.572,-0.136,0.809,0.572,-0.809,-0.136,0.708,-0.706,-0.02,0.572,0.809,0.136,0.708,0.706,0.02
,0.572,0.136,-0.809,0.809,-0.136,-0.572,-0.136,-0.809,-0.572,-0.02,-0.706,-0.708,0.136,0.809,-0.572,-0.136,0.572,-0.809]
,"tangents":[-0.031,-0.167,0.986,1,-0.25,-0.548,0.798,1,0.076,-0.049,0.996,1,-0.986,0.031,0.167,1,-0.798,0.25,0.548,1,-0.986,0.052,0.16,1,-0.068,-0.014,-0.998,1,0.551,0.246,-0.797,1,0.795,0.149,-0.588,1,-0.998,0.014,-0.068,1,-0.797,-0.246,0.551,1,-0.704,-0.052,0.708,1,-0.008,0.07
,-0.997,1,0.253,-0.546,-0.799,1,0.163,-0.792,-0.588,1,0.167,-0.031,-0.986,1,0.548,-0.25,-0.798,1,0.16,-0.052,-0.986,1,-0.014,-0.068,0.998,1,0.246,0.551,0.797,1,0.052,0.708,0.704,1,-0.167,-0.03,-0.986,1,-0.548,-0.25,-0.798,1,-0.16,-0.052,-0.986,1,0.998,0.014,-0.068,1
,0.797,-0.246,0.551,1,0.586,-0.15,0.796,1,-0.025,0.167,-0.986,1,-0.243,0.553,-0.797,1,0.079,0.051,-0.996,1,0.986,0.031,0.167,1,0.798,0.25,0.548,1,0.986,0.052,0.16,1,0.069,-0.014,-0.998,1,-0.551,0.246,-0.797,1,-0.794,0.148,-0.589,1,-0.014,0.068,0.998,1,0.246,-0.551
,0.797,1,0.052,-0.708,0.704,1,0.07,-0.997,-0.008,1,-0.546,-0.799,0.253,1,-0.792,-0.588,0.163,1,-0.998,0.014,0.068,1,-0.797,-0.246,-0.551,1,-0.588,-0.149,-0.795,1,-0.025,-0.167,-0.986,1,-0.243,-0.553,-0.797,1,0.079,-0.051,-0.996,1,-0.986,0.031,-0.167,1,-0.798,0.25,-0.548,1
,-0.986,0.052,-0.16,1,0.167,-0.986,-0.025,1,0.553,-0.797,-0.243,1,0.162,-0.985,-0.051,1,-0.031,0.167,0.986,1,-0.25,0.548,0.798,1,0.076,0.049,0.996,1,0.986,0.031,-0.167,1,0.798,0.25,-0.548,1,0.986,0.052,-0.16,1,-0.167,-0.986,-0.025,1,-0.553,-0.797,-0.243,1,-0.162,-0.985
,-0.051,1,-0.008,-0.07,-0.997,1,0.253,0.546,-0.799,1,0.065,0.708,-0.704,1,-0.07,-0.997,-0.008,1,0.546,-0.799,0.253,1,0.792,-0.588,0.163,1,0.998,0.014,0.068,1,0.797,-0.246,-0.551,1,0.588,-0.149,-0.795,1,0.025,0.148,0.989,1,0.051,-0.079,-0.996,1,-0.82,0.091,0.565,1
,0.706,-0.056,-0.706,1,0.028,-0.146,-0.989,1,-0.051,-0.079,-0.996,1,0.819,0.092,0.566,1,-0.091,0.565,0.82,1,0.996,0.079,0.051,1,-0.079,0.567,-0.82,1,0.996,0.079,-0.051,1,0.146,-0.989,0.028,1,0.82,0.091,-0.565,1,0.025,-0.148,0.989,1,-0.706,-0.707,-0.043,1,0.028,0.146
,-0.989,1,0.706,-0.707,-0.043,1,-0.82,0.091,-0.565,1,-0.146,-0.989,0.028,1,-0.091,-0.565,0.82,1,-0.996,0.079,-0.051,1,-0.079,-0.567,-0.82,1,-0.989,-0.025,0.148,1,-0.091,-0.565,0.82,1,-0.82,0.091,0.565,1,-0.798,0.25,0.548,1,0.051,-0.079,-0.996,1,0.551,0.246,-0.797,1
,-0.989,-0.025,0.148,1,0.028,-0.146,-0.989,1,0.253,-0.546,-0.799,1,0.706,-0.056,-0.706,1,0.548,-0.25,-0.798,1,0.025,0.148,0.989,1,-0.563,-0.091,-0.821,1,-0.548,-0.25,-0.798,1,0.996,0.079,0.051,1,0.797,-0.246,0.551,1,-0.079,0.567,-0.82,1,0.819,0.092,0.566,1,0.798,0.25
,0.548,1,-0.051,-0.079,-0.996,1,-0.551,0.246,-0.797,1,0.025,-0.148,0.989,1,-0.146,-0.989,0.028,1,-0.546,-0.799,0.253,1,-0.996,0.079,-0.051,1,-0.797,-0.246,-0.551,1,-0.079,-0.567,-0.82,1,-0.82,0.091,-0.565,1,-0.798,0.25,-0.548,1,0.706,-0.707,-0.043,1,0.553,-0.797,-0.243,1
,-0.091,0.565,0.82,1,0.82,0.091,-0.565,1,0.798,0.25,-0.548,1,-0.706,-0.707,-0.043,1,-0.553,-0.797,-0.243,1,0.028,0.146,-0.989,1,0.146,-0.989,0.028,1,0.546,-0.799,0.253,1,0.996,0.079,-0.051,1,0.797,-0.246,-0.551,1,0.025,0.148,0.989,1,0.051,-0.079,-0.996,1,-0.82,0.091
,0.565,1,0.706,-0.056,-0.706,1,0.028,-0.146,-0.989,1,-0.051,-0.079,-0.996,1,0.819,0.092,0.566,1,-0.563,-0.091,-0.821,1,-0.091,0.565,0.82,1,0.996,0.079,0.051,1,-0.079,0.567,-0.82,1,0.996,0.079,-0.051,1,0.146,-0.989,0.028,1,0.82,0.091,-0.565,1,0.025,-0.148,0.989,1
,-0.706,-0.707,-0.043,1,0.028,0.146,-0.989,1,0.706,-0.707,-0.043,1,-0.82,0.091,-0.565,1,-0.146,-0.989,0.028,1,-0.091,-0.565,0.82,1,-0.996,0.079,-0.051,1,-0.079,-0.567,-0.82,1,-0.989,-0.025,0.148,1]
,"uvs":[0.779,0.69,0.776,0.686,0.779,0.686,0.991,0.225,0.994,0.228,0.991,0.229,0.767,0.011,0.77,0.008,0.771,0.011,0.993,0.011,0.996,0.008,0.997,0.011,0.991,0.237,0.995,0.234,0.995,0.237,0.765,0.225,0.768,0.228,0.765,0.229,0.993,0.69,0.996,0.687,0.997,0.69,0.553,0.011,0.55,0.008,0.553,0.008,0.778,0.677
,0.774,0.68,0.774,0.677,0.778,0.237,0.774,0.234,0.778,0.234,0.779,0.464,0.776,0.46,0.779,0.46,0.552,0.225,0.548,0.228,0.548,0.225,0.778,0.903,0.774,0.907,0.774,0.904,0.765,0.237,0.768,0.234,0.769,0.237,0.778,0.225,0.774,0.228,0.774,0.225,0.993,0.451,0.996,0.454,0.993,0.455,0.779,0.011,0.776,0.008
,0.779,0.008,0.552,0.237,0.548,0.234,0.551,0.234,0.991,0.903,0.995,0.907,0.992,0.907,0.991,0.677,0.995,0.681,0.992,0.681,0.767,0.451,0.77,0.454,0.767,0.455,0.779,0.451,0.776,0.454,0.776,0.451,0.553,0.451,0.55,0.454,0.55,0.451,0.993,0.464,0.996,0.46,0.997,0.463,0.993,0.686,0.767,0.008,0.995,0.225
,0.769,0.225,0.992,0.234,0.551,0.229,0.776,0.463,0.995,0.904,0.778,0.681,0.774,0.237,0.993,0.46,0.553,0.455,0.995,0.677,0.778,0.907,0.771,0.451,0.779,0.455,0.548,0.237,0.775,0.011,0.765,0.234,0.776,0.69,0.777,0.229,0.997,0.451,0.993,0.008,0.776,0.69,0.995,0.225,0.994,0.228,0.767,0.008,0.77,0.008
,0.993,0.008,0.992,0.234,0.995,0.234,0.769,0.225,0.768,0.228,0.993,0.686,0.55,0.011,0.55,0.008,0.778,0.681,0.774,0.68,0.774,0.237,0.776,0.463,0.776,0.46,0.551,0.229,0.548,0.228,0.778,0.907,0.765,0.234,0.768,0.234,0.777,0.229,0.774,0.228,0.997,0.451,0.775,0.011,0.776,0.008,0.548,0.237,0.548,0.234
,0.995,0.904,0.995,0.677,0.995,0.681,0.771,0.451,0.77,0.454,0.779,0.455,0.553,0.455,0.55,0.454,0.993,0.46,0.996,0.46,0.993,0.686,0.767,0.008,0.995,0.225,0.769,0.225,0.992,0.234,0.551,0.229,0.776,0.463,0.55,0.011,0.995,0.904,0.778,0.681,0.774,0.237,0.993,0.46,0.553,0.455,0.995,0.677,0.778,0.907
,0.771,0.451,0.779,0.455,0.548,0.237,0.775,0.011,0.765,0.234,0.776,0.69,0.777,0.229,0.997,0.451,0.993,0.008]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50
,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,0,72,18,73,21,23,9,74,3,75,6,8,27,76,12,77,15,17,24,78,30,35,21,33,18,79,54,80,57,59
,63,81,27,82,30,32,60,83,66,84,69,71,54,85,36,86,39,41,45,87,63,88,66,68,42,89,48,90,51,53,36,91,0,92,3,5,12,93,45,94,48,50,0,54,36,21,15,33,57,30,69
,39,66,51,12,63,27,48,3,42,0,95,1,3,96,97,6,98,99,9,100,10,12,101,102,15,103,104,18,105,19,21,106,107,24,108,109,27,110,28,30,111,112,33,113,114,36,115,37,39,116,117
,42,118,119,45,120,46,48,121,122,51,123,124,54,125,55,57,126,127,60,128,129,63,130,64,66,131,132,69,133,134,0,2,135,136,6,21,9,11,137,138,15,6,27,29,139,140,33,15,24,26,141
,35,142,21,18,20,143,144,24,57,63,65,145,146,69,30,60,62,147,148,57,69,54,56,149,150,60,39,45,47,151,152,51,66,42,44,153,154,39,51,36,38,155,156,42,3,12,14,157,158,9,48
,0,18,54,21,6,15,57,24,30,39,60,66,12,45,63,48,9,3]
}
,{"name":"fate_collider","id":"fate_collider","billboardMode":0,"position":[-0.5,0.0893,0.5],"rotationQuaternion":[0,0,0,-1],"scaling":[0.85,0.85,0.85],"isVisible":true,"isEnabled":true,"pickable":false
,"positions":[0.0877,0.0877,-0.0877,-0.0877,-0.0877,-0.0877,0.0877,-0.0877,-0.0877,-0.0877,0.0877,-0.0877,0.0877,0.0877,0.0877,-0.0877,0.0877,0.0877,0.0877,0.0877,-0.0877,0.0877,-0.0877,0.0877,0.0877,0.0877,0.0877,0.0877,0.0877,0.0877,-0.0877,-0.0877,0.0877,-0.0877,0.0877,0.0877,-0.0877,0.0877,0.0877,-0.0877,-0.0877,-0.0877,-0.0877,0.0877,-0.0877,0.0877,-0.0877,-0.0877,-0.0877,-0.0877,0.0877
,0.0877,-0.0877,0.0877,-0.0877,0.0877,-0.0877,0.0877,0.0877,-0.0877,0.0877,0.0877,-0.0877,0.0877,-0.0877,-0.0877,0.0877,0.0877,0.0877,0.0877,-0.0877,0.0877,-0.0877,0.0877,0.0877,-0.0877,-0.0877,0.0877,-0.0877,-0.0877,-0.0877,0.0877,-0.0877,-0.0877,-0.0877,-0.0877,-0.0877,-0.0877,-0.0877,0.0877]
,"normals":[0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0
,0,-1,0,0,0,-1,0,1,0,1,0,0,1,0,0,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0]
,"tangents":[-1,0,0,1,-1,0,0,1,-1,0,0,1,0,0,1,1,0,0,1,1,0,0,1,1,0,-1,0,1,0,-1,0,1,0,-1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,-1
,0,1,0,-1,0,1,0,-1,0,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,-1,0,0,1,0,0,1,1,0,-1,0,1,0,-1,0,1,0,1,0,1,0,1,0,1,0,-1,0,1
,0,-1,0,1,0,-1,0,1,0,0,-1,1,0,0,-1,1,0,0,-1,1]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,0,18,1,3,19,4,20,21,7,22,23,10,24,25,26,27,28,29]
}
,{"name":"pip_collider","id":"pip_collider","billboardMode":0,"position":[0,0.0893,0.5],"rotationQuaternion":[0,0,0,-1],"scaling":[0.85,0.85,0.85],"isVisible":true,"isEnabled":true,"pickable":false
,"positions":[0.0877,-0.0877,-0.0877,-0.0877,-0.0877,0.0877,0.0877,-0.0877,0.0877,-0.0877,-0.0877,0.0877,-0.0877,0.0877,-0.0877,-0.0877,0.0877,0.0877,0.0877,-0.0877,0.0877,-0.0877,0.0877,0.0877,0.0877,0.0877,0.0877,0.0877,-0.0877,-0.0877,0.0877,0.0877,0.0877,0.0877,0.0877,-0.0877,-0.0877,0.0877,0.0877,0.0877,0.0877,-0.0877,0.0877,0.0877,0.0877,0.0877,0.0877,-0.0877,-0.0877,-0.0877,-0.0877
,0.0877,-0.0877,-0.0877,-0.0877,-0.0877,-0.0877,-0.0877,-0.0877,0.0877,-0.0877,-0.0877,-0.0877,0.0877,-0.0877,0.0877,-0.0877,-0.0877,0.0877,-0.0877,0.0877,0.0877,0.0877,-0.0877,-0.0877,0.0877,-0.0877,0.0877,0.0877,0.0877,0.0877,-0.0877,0.0877,0.0877,-0.0877,0.0877,-0.0877,0.0877,0.0877,-0.0877,0.0877,0.0877,-0.0877,-0.0877,0.0877,-0.0877]
,"normals":[0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1
,0,0,-1,0,-1,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1]
,"tangents":[0,0,1,1,0,0,1,1,0,0,1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,1,0,0,1,1,0,0,1,1,0,0,1,0,-1,0,1,0,-1,0,1,0,-1,0,1,0,0
,-1,1,0,0,-1,1,0,0,-1,1,-1,0,0,1,-1,0,0,1,-1,0,0,1,0,0,1,1,0,0,-1,1,0,0,-1,1,1,0,0,1,1,0,0,1,1,0,0,1,0,-1,0,1
,0,-1,0,1,0,-1,0,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,-1,0,0,1,-1,0,0,1]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,0,18,1,19,20,4,21,22,23,24,25,26,27,28,29,30,31,16]
}
,{"name":"d2_collider","id":"d2_collider","billboardMode":0,"position":[0.3,0.01,-0.5],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false
,"positions":[0,0.01,0.1,0.0259,-0.01,0.0966,0,-0.01,0.1,0.0259,0.01,0.0966,0.05,-0.01,0.0866,0.05,0.01,0.0866,0.0707,-0.01,0.0707,0.0707,0.01,0.0707,0.0866,-0.01,0.05,0.0866,0.01,0.05,0.0966,-0.01,0.0259,0.0966,0.01,0.0259,0.1,-0.01,0,0.1,0.01,0,0.0966,-0.01,-0.0259,0.1,-0.01,0,0.0966,0.01,-0.0259
,0.0866,-0.01,-0.05,0.0866,0.01,-0.05,0.0707,-0.01,-0.0707,0.0707,0.01,-0.0707,0.05,-0.01,-0.0866,0.05,0.01,-0.0866,0.0259,-0.01,-0.0966,0.0259,0.01,-0.0966,0,-0.01,-0.1,0,0.01,-0.1,-0.0259,-0.01,-0.0966,-0.0259,0.01,-0.0966,-0.05,-0.01,-0.0866,-0.05,0.01,-0.0866,-0.0707,-0.01,-0.0707,-0.0707,0.01,-0.0707,-0.0866,-0.01,-0.05
,-0.0866,0.01,-0.05,-0.0966,-0.01,-0.0259,-0.0966,0.01,-0.0259,-0.1,-0.01,0,-0.1,0.01,0,-0.0966,-0.01,0.0259,-0.1,-0.01,0,-0.0966,0.01,0.0259,-0.0866,-0.01,0.05,-0.0866,0.01,0.05,-0.0707,-0.01,0.0707,-0.0707,0.01,0.0707,-0.05,-0.01,0.0866,-0.05,0.01,0.0866,-0.0259,-0.01,0.0966,-0.0259,0.01,0.0966,-0.05,0.01,-0.0866
,-0.0259,0.01,-0.0966,-0.05,0.01,-0.0866,-0.0966,0.01,0.0259,-0.1,0.01,0,-0.0966,0.01,0.0259,0,0.01,0.1,-0.0259,0.01,0.0966,0,0.01,0.1,0.05,0.01,0.0866,0.0259,0.01,0.0966,0.05,0.01,0.0866,0.0966,0.01,-0.0259,0.1,0.01,0,0.0966,0.01,-0.0259,0,0.01,-0.1,0.0259,0.01,-0.0966,0,0.01,-0.1
,-0.0966,0.01,-0.0259,-0.0866,0.01,-0.05,-0.0966,0.01,-0.0259,-0.05,0.01,0.0866,-0.0707,0.01,0.0707,-0.05,0.01,0.0866,0.0966,0.01,0.0259,0.0866,0.01,0.05,0.0966,0.01,0.0259,0.05,0.01,-0.0866,0.0707,0.01,-0.0707,0.05,0.01,-0.0866,-0.0707,0.01,-0.0707,-0.0707,0.01,-0.0707,-0.0866,0.01,0.05,-0.0866,0.01,0.05,0.0707,0.01,0.0707
,0.0707,0.01,0.0707,0.0866,0.01,-0.05,0.0866,0.01,-0.05,0.0259,0.01,0.0966,-0.0259,0.01,-0.0966,-0.1,0.01,0,-0.1,0.01,0,-0.0259,0.01,0.0966,0.1,0.01,0,0.1,0.01,0,0.0259,0.01,-0.0966,-0.0866,0.01,-0.05,-0.0707,0.01,0.0707,0.0866,0.01,0.05,0.0707,0.01,-0.0707,0.1,0.01,0,0.0966,0.01,-0.0259
,-0.0707,0.01,0.0707,-0.05,0.01,0.0866,-0.05,0.01,-0.0866,-0.0707,0.01,-0.0707,0.0866,0.01,-0.05,-0.0259,0.01,0.0966,0,0.01,0.1,0.0259,0.01,0.0966,-0.0866,0.01,-0.05,0.0707,0.01,-0.0707,0.05,0.01,0.0866,-0.0966,0.01,-0.0259,0.05,0.01,-0.0866,0.0707,0.01,0.0707,-0.1,0.01,0,-0.1,0.01,0,0.0259,0.01,-0.0966
,0.0866,0.01,0.05,-0.1,0.01,0,-0.0966,0.01,0.0259,0,0.01,-0.1,0.0966,0.01,0.0259,-0.0866,0.01,0.05,-0.0259,0.01,-0.0966,0.1,0.01,0,0.1,0.01,0,0,0.01,0,0,0.01,0,-0.1,0.01,0,0,0.01,0,0,0.01,0,0,0.01,0,0,0.01,0,0,0.01,0
,0.1,0.01,0,0,0.01,0,0,0.01,0,0,0.01,0,0,0.01,0,0,0.01,0,0,0.01,0,0,0.01,0,0,0.01,0,0,0.01,0,0,0.01,0,0,0.01,0,0,0.01,0,0,0.01,0,0,0.01,0,0,0.01,0,0,0.01,0
,0,0.01,0,0.0259,-0.01,0.0966,0.05,-0.01,0.0866,0,-0.01,0,0.1,-0.01,0,0.0966,-0.01,-0.0259,0,-0.01,0,0.0259,-0.01,-0.0966,0,-0.01,-0.1,0,-0.01,0,-0.0866,-0.01,-0.05,-0.0966,-0.01,-0.0259,0,-0.01,0,-0.0707,-0.01,0.0707,-0.05,-0.01,0.0866,0,-0.01,0,0.0866,-0.01,0.05
,0.0966,-0.01,0.0259,0,-0.01,0,0.0707,-0.01,-0.0707,0.05,-0.01,-0.0866,0,-0.01,0,-0.05,-0.01,-0.0866,-0.0707,-0.01,-0.0707,0,-0.01,0,-0.0966,-0.01,0.0259,-0.0866,-0.01,0.05,0,-0.01,0,0.05,-0.01,0.0866,0.0707,-0.01,0.0707,0,-0.01,0,0.0966,-0.01,-0.0259,0.0866,-0.01,-0.05,0,-0.01,0
,0,-0.01,0.1,0.0259,-0.01,0.0966,0,-0.01,0,0,-0.01,-0.1,-0.0259,-0.01,-0.0966,0,-0.01,0,-0.0966,-0.01,-0.0259,-0.1,-0.01,0,0,-0.01,0,-0.05,-0.01,0.0866,-0.0259,-0.01,0.0966,0,-0.01,0,0.0966,-0.01,0.0259,0.1,-0.01,0,0,-0.01,0,0.05,-0.01,-0.0866,0.0259,-0.01,-0.0966
,0,-0.01,0,-0.0707,-0.01,-0.0707,-0.0866,-0.01,-0.05,0,-0.01,0,-0.0866,-0.01,0.05,-0.0707,-0.01,0.0707,0,-0.01,0,0.0707,-0.01,0.0707,0.0866,-0.01,0.05,0,-0.01,0,0.0866,-0.01,-0.05,0.0707,-0.01,-0.0707,0,-0.01,0,-0.0259,-0.01,-0.0966,-0.05,-0.01,-0.0866,0,-0.01,0,-0.1,-0.01,0
,-0.0966,-0.01,0.0259,0,-0.01,0,-0.0259,-0.01,0.0966,0,-0.01,0.1,0,-0.01,0,0.1,0.01,0,-0.1,0.01,0,-0.05,0.01,-0.0866,-0.0259,0.01,-0.0966,-0.0966,0.01,0.0259,-0.1,0.01,0,0,0.01,0.1,-0.0259,0.01,0.0966,0.05,0.01,0.0866,0.0259,0.01,0.0966,0.0966,0.01,-0.0259,0.1,0.01,0
,0,0.01,-0.1,0.0259,0.01,-0.0966,-0.0966,0.01,-0.0259,-0.0866,0.01,-0.05,-0.05,0.01,0.0866,-0.0707,0.01,0.0707,0.0966,0.01,0.0259,0.0866,0.01,0.05,0.05,0.01,-0.0866,0.0707,0.01,-0.0707,-0.0707,0.01,-0.0707,-0.05,0.01,-0.0866,-0.0866,0.01,0.05,-0.0966,0.01,0.0259,0.0707,0.01,0.0707,0.05,0.01,0.0866,0.0866,0.01,-0.05
,0.0966,0.01,-0.0259,0.0259,0.01,0.0966,0,0.01,0.1,-0.0259,0.01,-0.0966,0,0.01,-0.1,-0.1,0.01,0,-0.0966,0.01,-0.0259,-0.0259,0.01,0.0966,-0.05,0.01,0.0866,0.1,0.01,0,0.0966,0.01,0.0259,0.0259,0.01,-0.0966,0.05,0.01,-0.0866,-0.0866,0.01,-0.05,-0.0707,0.01,-0.0707,-0.0707,0.01,0.0707,-0.0866,0.01,0.05
,0.0866,0.01,0.05,0.0707,0.01,0.0707,0.0707,0.01,-0.0707,0.0866,0.01,-0.05,-0.1,0.01,0,-0.1,0.01,0,0.1,0.01,0]
,"normals":[0,0,1,0.259,0,0.966,0,0,1,0.259,0,0.966,0.5,0,0.866,0.5,0,0.866,0.707,0,0.707,0.707,0,0.707,0.866,0,0.5,0.866,0,0.5,0.966,0,0.259,0.966,0,0.259,1,0,0,1,0,0,0.966,0,-0.259,1,0,0,0.966,0,-0.259
,0.866,0,-0.5,0.866,0,-0.5,0.707,0,-0.707,0.707,0,-0.707,0.5,0,-0.866,0.5,0,-0.866,0.259,0,-0.966,0.259,0,-0.966,0,0,-1,0,0,-1,-0.259,0,-0.966,-0.259,0,-0.966,-0.5,0,-0.866,-0.5,0,-0.866,-0.707,0,-0.707,-0.707,0,-0.707,-0.866,0,-0.5
,-0.866,0,-0.5,-0.966,0,-0.259,-0.966,0,-0.259,-1,0,0,-1,0,0,-0.966,0,0.259,-1,0,0,-0.966,0,0.259,-0.866,0,0.5,-0.866,0,0.5,-0.707,0,0.707,-0.707,0,0.707,-0.5,0,0.866,-0.5,0,0.866,-0.259,0,0.966,-0.259,0,0.966,0,1,0
,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0
,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0
,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0
,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0
,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0
,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0
,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0
,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0
,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0
,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0
,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0
,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0
,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0
,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0]
,"tangents":[1,-0.01,0,1,0.966,-0.008,-0.259,1,1,-0.004,0,1,0.966,-0.013,-0.259,1,0.866,-0.01,-0.5,1,0.866,-0.014,-0.5,1,0.707,-0.009,-0.707,1,0.707,-0.012,-0.707,1,0.5,-0.01,-0.866,1,0.5,-0.013,-0.866,1,0.259,0.003,-0.966,1,0.259,-0.014,-0.966,1,0,-0.014
,-1,1,0,-0.002,-1,1,-0.259,0.002,-0.966,1,0,-0.041,-0.999,1,-0.259,0.026,-0.966,1,-0.5,-0.001,-0.866,1,-0.5,0.007,-0.866,1,-0.707,0.001,-0.707,1,-0.707,0.006,-0.707,1,-0.866,0.002,-0.5,1,-0.866,0.005,-0.5,1,-0.966,-0.001,-0.259,1,-0.966,0,-0.259,1
,-1,0.004,0,1,-1,0.002,0,1,-0.966,0,0.259,1,-0.966,-0.003,0.259,1,-0.866,0.008,0.5,1,-0.866,0.003,0.5,1,-0.707,0.006,0.707,1,-0.707,-0.002,0.707,1,-0.5,0.003,0.866,1,-0.5,-0.005,0.866,1,-0.259,0.021,0.966,1,-0.259,-0.003,0.966,1,0,-0.007
,1,1,0,-0.001,1,1,0.259,-0.002,0.966,1,0,-0.03,1,1,0.259,0.015,0.966,1,0.5,-0.002,0.866,1,0.5,-0.002,0.866,1,0.707,0,0.707,1,0.707,-0.005,0.707,1,0.866,-0.009,0.5,1,0.866,-0.011,0.5,1,0.966,-0.007,0.259,1,0.966,-0.01,0.259,1
,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0
,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1
,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0
,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1
,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0
,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1
,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0
,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1
,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0
,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1
,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0
,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1
,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0
,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1
,1,0,0,-1,0,-0.042,-0.999,1,0,-0.046,0.999,1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0
,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1
,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0
,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1
,1,0,0,-1,1,0,0,-1,1,0,0,-1,1,0,0,-1]
,"indices":[0,1,2,3,4,1,5,6,4,7,8,6,9,10,8,11,12,10,13,14,15,16,17,14,18,19,17,20,21,19,22,23,21,24,25,23,26,27,25,28,29,27,30,31,29,32,33,31,34,35,33
,36,37,35,38,39,40,41,42,39,43,44,42,45,46,44,47,48,46,49,2,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79
,80,52,81,82,55,83,84,61,85,86,64,87,88,58,60,89,67,51,90,70,91,92,73,57,93,76,94,95,79,66,96,81,69,97,83,72,98,85,75,99,87,78,64,100,101,73,102,103,81,104,105
,87,101,106,57,103,107,60,108,109,69,105,110,78,106,111,58,107,108,61,109,112,70,110,113,79,111,114,85,112,115,116,113,117,66,114,118,75,115,119,55,120,121,67,118,122,76,119,123,83,121,124
,51,122,125,126,123,127,72,124,102,52,125,104,118,114,128,119,115,129,121,130,131,122,118,132,123,119,133,124,121,134,125,122,135,136,123,137,102,124,138,104,125,139,101,100,140,103,102,141,105,104,142
,106,101,143,107,103,144,109,108,145,110,105,146,111,106,147,108,107,148,112,109,149,113,110,150,114,111,151,115,112,152,117,113,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171
,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222
,223,224,225,0,3,1,3,5,4,5,7,6,7,9,8,9,11,10,11,226,12,13,16,14,16,18,17,18,20,19,20,22,21,22,24,23,24,26,25,26,28,27,28,30,29,30,32,31,32,34,33
,34,36,35,36,227,37,38,41,39,41,43,42,43,45,44,45,47,46,47,49,48,49,0,2,228,229,51,230,231,54,232,233,57,234,235,60,236,237,63,238,239,66,240,241,69,242,243,72,244,245,75
,246,247,78,248,249,52,250,251,55,252,253,61,254,255,64,256,257,58,258,259,67,260,261,70,262,263,73,264,265,76,266,267,79,268,269,81,270,271,83,272,273,85,274,275,87,64,63,100,73,72,102
,81,52,104,87,64,101,57,73,103,60,58,108,69,81,105,78,87,106,58,57,107,61,60,109,70,69,110,79,78,111,85,61,112,276,70,113,66,79,114,75,85,115,55,54,277,67,66,118,76,75,119
,83,55,121,51,67,122,278,76,123,72,83,124,52,51,125]
}
],
"colliderFaceMap": {
"d2": {
"72": 1,
"75": 1,
"78": 1,
"81": 1,
"84": 1,
"88": 1,
"92": 1,
"95": 1,
"74": 1,
"77": 1,
"80": 1,
"83": 1,
"86": 1,
"90": 1,
"87": 1,
"91": 1,
"94": 1,
"73": 1,
"76": 1,
"79": 1,
"82": 1,
"85": 1,
"89": 1,
"93": 1,
"98": 2,
"112": 2,
"102": 2,
"116": 2,
"106": 2,
"97": 2,
"111": 2,
"101": 2,
"115": 2,
"105": 2,
"96": 2,
"107": 2,
"119": 2,
"110": 2,
"100": 2,
"114": 2,
"104": 2,
"118": 2,
"109": 2,
"99": 2,
"113": 2,
"103": 2,
"117": 2,
"108": 2,
"0": 0,
"1": 0,
"2": 0,
"3": 0,
"4": 0,
"5": 0,
"6": 0,
"7": 0,
"8": 0,
"9": 0,
"10": 0,
"11": 0,
"12": 0,
"13": 0,
"14": 0,
"15": 0,
"16": 0,
"17": 0,
"18": 0,
"19": 0,
"20": 0,
"21": 0,
"22": 0,
"23": 0,
"120": 0,
"121": 0,
"122": 0,
"123": 0,
"124": 0,
"125": 0,
"126": 0,
"127": 0,
"128": 0,
"129": 0,
"130": 0,
"131": 0,
"132": 0,
"133": 0,
"134": 0,
"135": 0,
"136": 0,
"137": 0,
"138": 0,
"139": 0,
"140": 0,
"141": 0,
"142": 0,
"143": 0
},
"pip": {
"0": 6,
"6": 6,
"3": 3,
"9": 3,
"5": 2,
"11": 2,
"2": 5,
"8": 5,
"1": 4,
"7": 4,
"4": 1,
"10": 1
},
"fate": {
"0": 1,
"6": 1,
"4": -1,
"10": -1,
"8": -1,
"2": -1,
"3": 1,
"9": 1,
"7": 0,
"1": 0,
"5": 0,
"11": 0
}
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 39 KiB

View File

@ -1,33 +0,0 @@
{
"name": "@3d-dice/theme-default-extras",
"private": false,
"author": {
"name": "Frank Ali"
},
"description": "Extra dice for the default theme. Includes d6 with pips, fate die and d2 coin",
"version": "0.1.1",
"keywords": [
"3D",
"dice",
"skins",
"theme",
"javascript",
"rpg",
"dnd",
"d&d",
"tabletop"
],
"license": "MIT",
"homepage": "https://fantasticdice.games",
"repository": {
"type": "git",
"url": "https://github.com/3d-dice/dice-themes",
"directory": "themes/default-extras"
},
"bugs": {
"url": "https://github.com/3d-dice/dice-themes/issues"
},
"files": [
"*"
]
}

View File

@ -1,20 +0,0 @@
{
"name": "Default Extras",
"systemName": "default-extras",
"extends": "default",
"author": "Frank Ali",
"version": 0.1,
"meshFile": "default-extras.json",
"material": {
"type": "color",
"diffuseTexture": {
"light": "light.png",
"dark": "dark.png"
},
"diffuseLevel": 1,
"bumpTexture": "normal-extras.png",
"bumpLevel": 1
},
"diceAvailable": ["pip", "fate", "d2"],
"themeColor": "#FFFFFF"
}

View File

@ -1,731 +0,0 @@
{"producer":{"name":"Blender","version":"2.93.4","exporter_version":"2.93.5","file":"Dice_Game_Ready.babylon"},"gravity":[0,-9.81,0],
"meshes":[
{"name":"d4","id":"d4","billboardMode":0,"position":[-0.9,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false
,"positions":[-0.0013,0.1272,0.0007,-0.0013,-0.0417,0.1196,-0.1042,-0.0417,-0.0587,0.0013,0.1272,0.0007,0.1042,-0.0417,-0.0587,0.0013,-0.0417,0.1196,0,0.1272,-0.0015,-0.1029,-0.0417,-0.0609,0.1029,-0.0417,-0.0609,-0.0004,-0.0438,0.1215,0.0004,-0.0438,0.1215,0,-0.0438,0.1188,-0.0007,-0.0436,0.1217,0,-0.0438,0.122,0.0007,-0.0436,0.1217,0,-0.0435,0.1225,0.0003,-0.0436,0.1224
,-0.0003,-0.0426,0.1219,-0.0007,-0.0432,0.1217,0,-0.0425,0.122,-0.0003,-0.0432,0.1222,-0.0007,-0.0436,0.1217,0,-0.0435,0.1225,-0.0003,-0.0436,0.1224,0.0007,-0.0432,0.1217,0.0003,-0.0426,0.1219,0.0007,-0.0436,0.1217,0.0003,-0.0432,0.1222,0,-0.0425,0.122,0,-0.0435,0.1225,0,-0.0432,0.1225,0.1054,-0.0438,-0.0604,0.105,-0.0438,-0.0611,0.1029,-0.0438,-0.0594
,0.1057,-0.0436,-0.0603,0.1057,-0.0438,-0.061,0.105,-0.0436,-0.0614,0.1061,-0.0435,-0.0612,0.1058,-0.0436,-0.0614,0.1057,-0.0426,-0.0607,0.1057,-0.0432,-0.0602,0.1057,-0.0425,-0.061,0.106,-0.0432,-0.0608,0.1057,-0.0436,-0.0603,0.1061,-0.0435,-0.0612,0.1061,-0.0436,-0.0609,0.105,-0.0432,-0.0614,0.1054,-0.0426,-0.0612,0.105,-0.0436,-0.0614,0.1057,-0.0432,-0.0614,0.1057,-0.0425,-0.061
,0.1061,-0.0435,-0.0612,0.1061,-0.0432,-0.0613,-0.105,-0.0438,-0.0611,-0.1054,-0.0438,-0.0604,-0.1029,-0.0438,-0.0594,-0.105,-0.0436,-0.0614,-0.1057,-0.0438,-0.061,-0.1057,-0.0436,-0.0603,-0.1061,-0.0435,-0.0612,-0.1061,-0.0436,-0.0609,-0.1054,-0.0426,-0.0612,-0.105,-0.0432,-0.0614,-0.1057,-0.0425,-0.061,-0.1057,-0.0432,-0.0614,-0.105,-0.0436,-0.0614,-0.1061,-0.0435,-0.0612,-0.1058,-0.0436,-0.0614
,-0.1057,-0.0432,-0.0602,-0.1057,-0.0426,-0.0607,-0.1057,-0.0436,-0.0603,-0.106,-0.0432,-0.0608,-0.1057,-0.0425,-0.061,-0.1061,-0.0435,-0.0612,-0.1061,-0.0432,-0.0613,-0.0007,0.1297,0,-0.0003,0.1297,0.0006,-0.0007,0.1298,-0.0004,-0.0003,0.1302,0.0002,0,0.1298,0.0008,0,0.1305,0,0,0.1304,0.0003,0.0004,0.1297,-0.0006,-0.0004,0.1297,-0.0006,0.0007,0.1298,-0.0004
,0,0.1302,-0.0004,-0.0007,0.1298,-0.0004,0,0.1305,0,-0.0003,0.1304,-0.0002,0.0003,0.1297,0.0006,0.0007,0.1297,0,0,0.1298,0.0008,0.0003,0.1302,0.0002,0.0007,0.1298,-0.0004,0,0.1305,0,0.0003,0.1304,-0.0002,0.0007,-0.0436,0.1217,0,0.1298,0.0008,0,-0.0425,0.122,0.0007,0.1298,-0.0004,0.105,-0.0436,-0.0614,-0.1057,-0.0425,-0.061
,-0.0007,0.1298,-0.0004,-0.0007,-0.0436,0.1217,-0.1057,-0.0436,-0.0603,-0.0003,-0.0436,0.1224,-0.0003,-0.0436,0.1224,0,-0.0432,0.1225,-0.0007,-0.0436,0.1217,0,-0.0432,0.1225,0,-0.0435,0.1225,0.0007,-0.0436,0.1217,0.0003,-0.0436,0.1224,0,-0.0425,0.122,0.0003,-0.0436,0.1224,0,-0.0435,0.1225,0.1061,-0.0436,-0.0609,0.1061,-0.0436,-0.0609,0.1061,-0.0432,-0.0613
,0.1057,-0.0436,-0.0603,0.1061,-0.0432,-0.0613,0.1061,-0.0435,-0.0612,0.105,-0.0436,-0.0614,0.1058,-0.0436,-0.0614,0.1057,-0.0425,-0.061,0.1058,-0.0436,-0.0614,0.1061,-0.0435,-0.0612,-0.1058,-0.0436,-0.0614,-0.1058,-0.0436,-0.0614,-0.1061,-0.0432,-0.0613,-0.105,-0.0436,-0.0614,-0.1061,-0.0432,-0.0613,-0.1061,-0.0435,-0.0612,-0.1057,-0.0436,-0.0603,-0.1061,-0.0436,-0.0609,-0.1057,-0.0425,-0.061
,-0.1061,-0.0436,-0.0609,-0.1061,-0.0435,-0.0612,-0.0003,0.1304,-0.0002,-0.0003,0.1304,-0.0002,0.0003,0.1304,-0.0002,-0.0007,0.1298,-0.0004,0.0003,0.1304,-0.0002,0,0.1305,0,0,0.1298,0.0008,0,0.1304,0.0003,0.0007,0.1298,-0.0004,0,0.1304,0.0003,0,0.1305,0,0.1057,-0.0436,-0.0603,0.0007,-0.0436,0.1217,0,0.1298,0.0008,0.1057,-0.0425,-0.061
,0.0007,0.1298,-0.0004,-0.105,-0.0436,-0.0614,0.105,-0.0436,-0.0614,-0.1057,-0.0425,-0.061,-0.0007,0.1298,-0.0004,-0.0007,-0.0436,0.1217]
,"normals":[-0.809,0.358,0.467,-0.809,0.319,0.495,-0.833,0.319,0.453,0.809,0.358,0.467,0.833,0.319,0.453,0.809,0.319,0.495,0,0.358,-0.934,-0.024,0.319,-0.948,0.024,0.319,-0.948,-0.143,-0.976,0.167,0.204,-0.966,0.159,0,-1,0.028,-0.692,-0.569,0.445,0.094,-0.963,0.251,0.691,-0.569,0.445,0,-0.316,0.949,0.414,-0.598,0.686
,-0.677,0.362,0.64,-0.845,0.079,0.529,0.011,0.542,0.84,-0.761,0.124,0.636,-0.681,-0.586,0.439,0.018,-0.345,0.939,-0.496,-0.464,0.734,0.82,0.128,0.557,0.642,0.412,0.647,0.681,-0.586,0.439,0.668,0.278,0.691,-0.01,0.542,0.84,-0.018,-0.345,0.939,0.082,0.211,0.974,0.215,-0.976,0.041,0.035,-0.966,-0.255,0.024,-1,-0.014
,0.731,-0.569,0.376,0.17,-0.963,-0.207,0.04,-0.569,-0.822,0.822,-0.316,-0.474,0.387,-0.598,-0.702,0.893,0.362,0.267,0.88,0.08,0.467,0.723,0.542,-0.429,0.932,0.124,0.341,0.721,-0.586,0.37,0.804,-0.345,-0.485,0.883,-0.464,0.063,0.072,0.128,-0.989,0.239,0.412,-0.879,0.04,-0.586,-0.809,0.264,0.278,-0.923,0.732,0.542,-0.411
,0.822,-0.345,-0.454,0.803,0.212,-0.558,-0.072,-0.976,-0.207,-0.239,-0.966,0.097,-0.024,-1,-0.014,-0.04,-0.569,-0.821,-0.264,-0.963,-0.044,-0.731,-0.569,0.376,-0.822,-0.316,-0.474,-0.801,-0.598,0.016,-0.216,0.362,-0.907,-0.035,0.08,-0.996,-0.732,0.542,-0.411,-0.17,0.124,-0.978,-0.04,-0.586,-0.81,-0.822,-0.345,-0.454,-0.387,-0.465,-0.796
,-0.893,0.128,0.432,-0.881,0.412,0.232,-0.721,-0.586,0.37,-0.932,0.278,0.233,-0.722,0.542,-0.429,-0.804,-0.345,-0.485,-0.884,0.211,-0.416,-0.821,0.481,0.308,-0.642,0.47,0.606,-0.683,0.608,-0.406,-0.668,0.557,0.494,0.01,0.608,0.794,0.018,1,-0.01,-0.082,0.846,0.527,0.143,0.481,-0.865,-0.204,0.47,-0.858,0.693,0.608,-0.388
,-0.094,0.557,-0.825,-0.693,0.608,-0.388,0,1,0.02,-0.415,0.846,-0.335,0.677,0.481,0.557,0.846,0.47,0.252,-0.011,0.608,0.794,0.762,0.557,0.331,0.682,0.608,-0.406,-0.018,1,-0.01,0.497,0.846,-0.192,0.681,-0.586,0.439,-0.011,0.608,0.794,-0.01,0.542,0.84,0.682,0.608,-0.406,0.04,-0.586,-0.809,-0.722,0.542,-0.429
,-0.693,0.608,-0.388,-0.681,-0.586,0.439,-0.721,-0.586,0.37,-0.414,-0.598,0.686,-0.414,-0.598,0.686,-0.082,0.211,0.974,-0.681,-0.586,0.439,-0.082,0.211,0.974,0.018,-0.345,0.939,0.681,-0.586,0.439,0.496,-0.464,0.733,-0.01,0.542,0.84,0.496,-0.464,0.733,-0.018,-0.345,0.939,0.801,-0.598,0.016,0.801,-0.598,0.016,0.884,0.212,-0.416
,0.721,-0.586,0.37,0.884,0.212,-0.416,0.804,-0.345,-0.485,0.04,-0.586,-0.809,0.387,-0.464,-0.797,0.732,0.542,-0.411,0.387,-0.464,-0.797,0.822,-0.345,-0.454,-0.387,-0.598,-0.702,-0.387,-0.598,-0.702,-0.803,0.212,-0.558,-0.04,-0.586,-0.81,-0.803,0.212,-0.558,-0.822,-0.345,-0.454,-0.721,-0.586,0.37,-0.883,-0.464,0.063,-0.722,0.542,-0.429
,-0.883,-0.464,0.063,-0.804,-0.345,-0.485,-0.497,0.846,-0.192,-0.497,0.846,-0.192,0.415,0.846,-0.335,-0.693,0.608,-0.388,0.415,0.846,-0.335,0,1,0.02,-0.011,0.608,0.794,0.082,0.846,0.527,0.682,0.608,-0.406,0.082,0.846,0.527,-0.018,1,-0.01,0.721,-0.586,0.37,0.681,-0.586,0.439,-0.011,0.608,0.794,0.732,0.542,-0.411
,0.682,0.608,-0.406,-0.04,-0.586,-0.81,0.04,-0.586,-0.809,-0.722,0.542,-0.429,-0.693,0.608,-0.388,-0.681,-0.586,0.439]
,"tangents":[-0.016,0.78,-0.625,1,-0.312,0.481,-0.819,1,-0.461,0.055,-0.886,1,-0.02,-0.777,0.63,1,-0.464,-0.045,0.885,1,-0.312,-0.481,0.819,1,0.555,-0.777,-0.298,1,0.998,-0.045,-0.04,1,0.866,-0.481,-0.14,1,0.656,0.033,0.754,1,0.669,0.256,0.697,1,0.556,0.023,0.831,1,0.629,-0.171
,0.758,1,0.863,0.204,0.461,1,0.538,0.817,0.209,1,0.919,0.375,0.125,1,0.746,0.655,0.121,1,-0.304,0.655,-0.692,1,-0.471,0.357,-0.806,1,-0.241,0.817,-0.524,1,-0.485,0.542,-0.686,1,-0.636,0.177,-0.751,1,-0.863,0.469,0.189,1,-0.858,0.393,-0.331,1,-0.486,-0.356,0.798,1
,-0.295,-0.646,0.704,1,-0.634,-0.171,0.754,1,-0.489,-0.536,0.688,1,-0.248,-0.815,0.523,1,-0.873,-0.452,-0.182,1,-0.659,-0.722,0.212,1,0.957,0.219,0.19,1,0.984,-0.011,0.176,1,0.998,0.023,0.061,1,0.498,0.822,0.276,1,0.874,0.051,0.484,1,0.973,-0.165,0.162,1,0.568,0.387
,0.727,1,0.892,0.052,0.448,1,-0.247,-0.1,0.964,1,-0.45,-0.168,0.877,1,0.496,0.024,0.868,1,-0.257,-0.438,0.861,1,-0.574,-0.206,0.792,1,0.24,-0.557,0.795,1,-0.275,-0.405,0.872,1,0.934,-0.356,0.022,1,0.757,-0.646,-0.097,1,0.97,-0.171,0.172,1,0.841,-0.536,0.079,1
,0.577,-0.815,-0.047,1,0.279,-0.452,0.847,1,0.513,-0.722,0.464,1,0.934,-0.139,0.328,1,0.758,-0.123,0.641,1,0.866,-0.028,0.499,1,0.97,-0.22,0.105,1,0.84,-0.252,0.48,1,0.579,-0.226,0.784,1,0.279,-0.949,0.149,1,0.514,-0.675,0.528,1,0.958,-0.1,-0.268,1,0.985,-0.168
,-0.048,1,0.503,0.025,-0.864,1,0.874,-0.438,-0.208,1,0.973,-0.206,0.102,1,0.568,-0.557,-0.605,1,0.893,-0.405,-0.197,1,-0.41,0.17,-0.896,1,-0.196,0.129,-0.972,1,-0.577,0.212,-0.789,1,-0.1,0.419,-0.902,1,0.542,0.059,-0.838,1,0.233,0.568,-0.79,1,0.465,0.335,-0.819,1
,0.073,0.624,-0.778,1,-0.111,0.725,-0.68,1,0.52,0.015,-0.854,1,-0.239,0.468,-0.851,1,-0.229,0.774,-0.59,1,-0.106,-0.008,-0.994,1,-0.218,0.501,-0.838,1,0.657,-0.7,-0.281,1,0.666,-0.576,-0.474,1,0.628,-0.773,-0.09,1,0.864,-0.366,-0.345,1,0.53,0.065,-0.845,1,0.92,0.008
,-0.393,1,0.746,0.106,-0.658,1,-0.085,-0.7,0.709,1,0.078,-0.576,0.813,1,-0.236,-0.773,0.589,1,-0.133,-0.366,0.921,1,0.467,0.065,0.882,1,-0.12,0.008,0.993,1,0.197,0.106,0.975,1,-0.634,-0.171,0.754,1,-0.236,-0.773,0.589,1,-0.248,-0.815,0.523,1,0.467,0.065,0.882,1
,0.97,-0.171,0.172,1,0.542,0.059,-0.838,1,0.53,0.065,-0.845,1,-0.636,0.177,-0.751,1,-0.577,0.212,-0.789,1,0.839,0.041,0.542,1,0.839,0.041,0.542,1,-0.646,0.733,-0.213,1,-0.636,0.177,-0.751,1,-0.646,0.733,-0.213,1,-0.863,0.469,0.189,1,-0.634,-0.171,0.754,1,-0.86,-0.38
,0.341,1,-0.248,-0.815,0.523,1,-0.86,-0.38,0.341,1,-0.873,-0.452,-0.182,1,0.484,0.663,0.571,1,0.484,0.663,0.571,1,0.465,-0.318,0.826,1,-0.574,-0.206,0.792,1,0.465,-0.318,0.826,1,0.24,-0.557,0.795,1,0.97,-0.171,0.172,1,0.725,-0.38,0.574,1,0.577,-0.815,-0.047,1
,0.725,-0.38,0.574,1,0.279,-0.452,0.847,1,0.724,-0.668,0.17,1,0.724,-0.668,0.17,1,0.483,-0.318,-0.816,1,0.973,-0.206,0.102,1,0.483,-0.318,-0.816,1,0.568,-0.557,-0.605,1,-0.577,0.212,-0.789,1,-0.28,0.416,-0.865,1,0.542,0.059,-0.838,1,-0.28,0.416,-0.865,1,0.233,0.568
,-0.79,1,0.212,-0.097,-0.973,1,0.212,-0.097,-0.973,1,0.839,-0.498,-0.218,1,0.53,0.065,-0.845,1,0.839,-0.498,-0.218,1,0.92,0.008,-0.393,1,-0.236,-0.773,0.589,1,-0.231,-0.498,0.836,1,0.467,0.065,0.882,1,-0.231,-0.498,0.836,1,-0.12,0.008,0.993,1,-0.574,-0.206,0.792,1
,-0.634,-0.171,0.754,1,-0.236,-0.773,0.589,1,0.577,-0.815,-0.047,1,0.467,0.065,0.882,1,0.973,-0.206,0.102,1,0.97,-0.171,0.172,1,0.542,0.059,-0.838,1,0.53,0.065,-0.845,1,-0.636,0.177,-0.751,1]
,"uvs":[0.798,0.867,0.647,0.779,0.798,0.692,0.642,0.97,0.642,0.794,0.794,0.882,0.815,0.867,0.815,0.691,0.966,0.779,0.97,0.791,0.974,0.794,0.971,0.794,0.968,0.788,0.974,0.789,0.977,0.794,0.976,0.785,0.977,0.788,0.645,0.782,0.645,0.776,0.644,0.785,0.641,0.779,0.643,0.774,0.637,0.779,0.638,0.777,0.795,0.879
,0.795,0.884,0.797,0.876,0.799,0.882,0.797,0.887,0.803,0.881,0.802,0.884,0.974,0.968,0.97,0.971,0.971,0.968,0.977,0.968,0.974,0.973,0.968,0.974,0.976,0.977,0.973,0.977,0.639,0.794,0.644,0.792,0.636,0.794,0.639,0.789,0.645,0.789,0.637,0.786,0.64,0.786,0.968,0.776,0.968,0.781,0.969,0.773,0.972,0.778
,0.969,0.784,0.976,0.778,0.975,0.781,0.818,0.884,0.818,0.878,0.82,0.881,0.817,0.886,0.814,0.881,0.817,0.876,0.81,0.881,0.811,0.879,0.812,0.691,0.816,0.689,0.809,0.691,0.812,0.686,0.818,0.686,0.81,0.683,0.813,0.683,0.797,0.689,0.801,0.692,0.795,0.687,0.801,0.687,0.804,0.692,0.803,0.684,0.804,0.686
,0.801,0.867,0.797,0.87,0.804,0.867,0.801,0.872,0.795,0.873,0.803,0.876,0.8,0.875,0.816,0.869,0.812,0.867,0.818,0.872,0.812,0.872,0.809,0.867,0.81,0.875,0.809,0.873,0.644,0.972,0.639,0.97,0.645,0.975,0.639,0.975,0.636,0.97,0.637,0.978,0.636,0.976,0.797,0.876,0.645,0.975,0.797,0.887,0.636,0.97
,0.969,0.773,0.804,0.692,0.809,0.867,0.643,0.774,0.795,0.687,0.973,0.785,0.973,0.785,0.638,0.781,0.643,0.774,0.638,0.781,0.637,0.779,0.797,0.876,0.802,0.879,0.797,0.887,0.802,0.879,0.803,0.881,0.977,0.974,0.977,0.974,0.636,0.788,0.645,0.789,0.636,0.788,0.637,0.786,0.969,0.773,0.975,0.776,0.969,0.784
,0.975,0.776,0.976,0.778,0.812,0.883,0.812,0.883,0.809,0.685,0.818,0.686,0.809,0.685,0.81,0.683,0.795,0.687,0.8,0.684,0.804,0.692,0.8,0.684,0.803,0.684,0.804,0.873,0.804,0.873,0.813,0.875,0.809,0.867,0.813,0.875,0.81,0.875,0.645,0.975,0.64,0.978,0.636,0.97,0.64,0.978,0.637,0.978,0.645,0.789
,0.797,0.876,0.645,0.975,0.969,0.784,0.636,0.97,0.818,0.686,0.969,0.773,0.804,0.692,0.809,0.867,0.643,0.774]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,9,13,14,10,13,15,16,17,18,1,19,20,17,20,21,18,20,22,23,24,25,5,26,27,24,27,28,25,27,29,30,31,32,33,34,35,31
,35,36,32,35,37,38,39,40,4,41,42,39,42,43,40,42,44,45,46,47,8,48,49,46,49,50,47,49,51,52,53,54,55,56,57,53,57,58,54,57,59,60,61,62,7,63,64,61,64,65,62
,64,66,67,68,69,2,70,71,68,71,72,69,71,73,74,75,76,0,77,78,75,78,79,76,78,80,81,82,83,6,84,85,82,85,86,83,85,87,88,89,90,3,91,92,89,92,93,90,92,94,95
,4,24,5,40,96,24,14,31,10,31,11,10,0,17,1,76,19,17,97,25,98,25,3,5,6,47,82,47,84,82,99,39,90,39,3,90,7,46,8,62,100,46,36,53,32,32,55,33,0,69,75
,75,101,77,102,61,83,61,6,83,1,68,2,68,103,104,12,54,58,54,11,55,55,11,33,9,13,10,12,105,13,13,16,14,13,106,15,17,20,18,19,107,20,20,23,108,20,109,110,24,27,25
,111,112,27,27,30,113,27,114,115,31,35,32,34,116,35,35,38,36,35,117,37,39,42,40,41,118,42,42,45,119,42,120,121,46,49,47,122,123,49,49,52,124,49,125,126,53,57,54,56,127,57
,57,60,58,57,128,59,61,64,62,63,129,64,64,67,130,64,131,132,68,71,69,133,134,71,71,74,135,71,136,137,75,78,76,77,138,78,78,81,79,78,139,80,82,85,83,84,140,85,85,88,141
,85,142,143,89,92,90,144,145,92,92,95,146,92,147,148,4,40,24,40,149,150,14,34,31,31,33,11,0,76,17,76,79,19,151,89,25,25,89,3,6,8,47,47,152,84,153,41,39,39,4,3
,7,62,46,62,154,155,36,56,53,32,53,55,0,2,69,75,69,156,157,63,61,61,7,6,1,18,68,68,18,158,12,9,54,54,9,11]
}
,{"name":"d6","id":"d6","billboardMode":0,"position":[-0.6,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false
,"positions":[-0.0744,-0.0783,-0.0744,-0.0773,-0.0773,-0.0773,-0.0776,-0.0776,-0.076,-0.0744,-0.0744,-0.0783,-0.0773,-0.0773,-0.0773,-0.076,-0.0776,-0.0776,-0.0783,-0.0744,-0.0744,-0.0773,-0.0773,-0.0773,-0.0776,-0.076,-0.0776,-0.0744,0.0744,-0.0783,-0.0773,0.0773,-0.0773,-0.0776,0.076,-0.0776,-0.0744,0.0783,-0.0744,-0.0773,0.0773,-0.0773,-0.076,0.0776,-0.0776,-0.0783,0.0744,-0.0744,-0.0773,0.0773,-0.0773
,-0.0776,0.0776,-0.076,-0.0744,-0.0783,0.0744,-0.0773,-0.0773,0.0773,-0.076,-0.0776,0.0776,-0.0783,-0.0744,0.0744,-0.0773,-0.0773,0.0773,-0.0776,-0.0776,0.076,-0.0744,-0.0744,0.0783,-0.0773,-0.0773,0.0773,-0.0776,-0.076,0.0776,-0.0744,0.0783,0.0744,-0.0773,0.0773,0.0773,-0.0776,0.0776,0.076,-0.0744,0.0744,0.0783,-0.0773,0.0773,0.0773,-0.076,0.0776,0.0776,-0.0783,0.0744,0.0744
,-0.0773,0.0773,0.0773,-0.0776,0.076,0.0776,0.0744,-0.0783,-0.0744,0.0773,-0.0773,-0.0773,0.076,-0.0776,-0.0776,0.0783,-0.0744,-0.0744,0.0773,-0.0773,-0.0773,0.0776,-0.0776,-0.076,0.0744,-0.0744,-0.0783,0.0773,-0.0773,-0.0773,0.0776,-0.076,-0.0776,0.0744,0.0783,-0.0744,0.0773,0.0773,-0.0773,0.0776,0.0776,-0.076,0.0744,0.0744,-0.0783,0.0773,0.0773,-0.0773,0.076,0.0776,-0.0776
,0.0783,0.0744,-0.0744,0.0773,0.0773,-0.0773,0.0776,0.076,-0.0776,0.0744,-0.0783,0.0744,0.0773,-0.0773,0.0773,0.0776,-0.0776,0.076,0.0744,-0.0744,0.0783,0.0773,-0.0773,0.0773,0.076,-0.0776,0.0776,0.0783,-0.0744,0.0744,0.0773,-0.0773,0.0773,0.0776,-0.076,0.0776,0.0744,0.0783,0.0744,0.0773,0.0773,0.0773,0.076,0.0776,0.0776,0.0783,0.0744,0.0744,0.0773,0.0773,0.0773
,0.0776,0.0776,0.076,0.0744,0.0744,0.0783,0.0773,0.0773,0.0773,0.0776,0.076,0.0776,-0.0776,-0.0776,0.076,-0.0776,-0.0776,-0.076,-0.0776,-0.076,-0.0776,-0.0776,0.076,-0.0776,-0.0776,0.0776,-0.076,-0.0776,0.0776,0.076,-0.0776,0.076,0.0776,0.076,-0.0776,0.0776,-0.076,-0.0776,0.0776,-0.076,0.0776,0.0776,0.076,0.0776,0.0776,0.0776,0.076,0.0776,0.0776,-0.0776,-0.076
,0.0776,-0.0776,0.076,0.0776,0.0776,0.076,0.0776,0.0776,-0.076,0.0776,0.076,-0.0776,-0.076,-0.0776,-0.0776,0.076,-0.0776,-0.0776,0.076,0.0776,-0.0776,-0.076,0.0776,-0.0776,-0.076,-0.0776,-0.0776,-0.0776,-0.076,-0.0776,-0.0773,-0.0773,-0.0773,-0.0776,-0.0776,-0.076,-0.0773,-0.0773,-0.0773,-0.076,0.0776,-0.0776,-0.0776,0.0776,-0.076,-0.0773,0.0773,-0.0773,-0.0776,0.076,-0.0776
,-0.0773,0.0773,-0.0773,-0.0776,-0.0776,0.076,-0.0776,-0.076,0.0776,-0.0773,-0.0773,0.0773,-0.076,-0.0776,0.0776,-0.0773,-0.0773,0.0773,-0.076,0.0776,0.0776,-0.0776,0.076,0.0776,-0.0773,0.0773,0.0773,-0.0776,0.0776,0.076,-0.0773,0.0773,0.0773,0.0776,-0.0776,-0.076,0.0776,-0.076,-0.0776,0.0773,-0.0773,-0.0773,0.076,-0.0776,-0.0776,0.0773,-0.0773,-0.0773,0.076,0.0776,-0.0776
,0.0776,0.076,-0.0776,0.0773,0.0773,-0.0773,0.0776,0.0776,-0.076,0.0773,0.0773,-0.0773,0.076,-0.0776,0.0776,0.0776,-0.076,0.0776,0.0773,-0.0773,0.0773,0.0776,-0.0776,0.076,0.0773,-0.0773,0.0773,0.0776,0.0776,0.076,0.0776,0.076,0.0776,0.0773,0.0773,0.0773,0.076,0.0776,0.0776,0.0773,0.0773,0.0773,-0.0776,-0.0776,0.076,-0.0776,-0.0776,-0.076,-0.0776,0.076,-0.0776
,-0.0776,0.0776,-0.076,-0.0776,0.0776,0.076,-0.0776,0.076,0.0776,-0.0776,-0.076,0.0776,0.076,-0.0776,0.0776,-0.076,-0.0776,0.0776,-0.076,0.0776,0.0776,0.076,0.0776,0.0776,0.0776,0.076,0.0776,0.0776,-0.076,0.0776,0.0776,-0.0776,-0.076,0.0776,-0.0776,0.076,0.0776,0.0776,0.076,0.0776,0.0776,-0.076,0.0776,0.076,-0.0776,0.0776,-0.076,-0.0776,-0.076,-0.0776,-0.0776
,0.076,-0.0776,-0.0776,0.076,0.0776,-0.0776,-0.076,0.0776,-0.0776]
,"normals":[-0.168,-0.978,-0.122,-0.577,-0.577,-0.577,-0.731,-0.663,-0.163,-0.165,-0.165,-0.972,-0.577,-0.577,-0.577,-0.163,-0.731,-0.663,-0.971,-0.138,-0.193,-0.577,-0.577,-0.577,-0.696,-0.179,-0.696,-0.143,0.143,-0.979,-0.577,0.577,-0.577,-0.699,0.152,-0.699,-0.138,0.971,-0.193,-0.577,0.577,-0.577,-0.163,0.663,-0.731,-0.978,0.168,-0.122,-0.577,0.577,-0.577
,-0.663,0.731,-0.163,-0.138,-0.971,0.193,-0.577,-0.577,0.577,-0.163,-0.663,0.731,-0.978,-0.147,0.147,-0.577,-0.577,0.577,-0.663,-0.731,0.163,-0.168,-0.122,0.978,-0.577,-0.577,0.577,-0.696,-0.179,0.696,-0.168,0.978,0.122,-0.577,0.577,0.577,-0.731,0.663,0.163,-0.138,0.193,0.971,-0.577,0.577,0.577,-0.163,0.731,0.663,-0.972,0.166,0.166
,-0.577,0.577,0.577,-0.699,0.152,0.699,0.138,-0.971,-0.193,0.577,-0.577,-0.577,0.163,-0.663,-0.731,0.972,-0.165,-0.165,0.577,-0.577,-0.577,0.663,-0.731,-0.163,0.168,-0.122,-0.978,0.577,-0.577,-0.577,0.696,-0.179,-0.696,0.168,0.978,-0.122,0.577,0.577,-0.577,0.731,0.663,-0.163,0.138,0.193,-0.971,0.577,0.577,-0.577,0.163,0.731,-0.663
,0.979,0.143,-0.143,0.577,0.577,-0.577,0.699,0.152,-0.699,0.168,-0.978,0.122,0.577,-0.577,0.577,0.731,-0.663,0.163,0.165,-0.165,0.972,0.577,-0.577,0.577,0.163,-0.731,0.663,0.978,-0.122,0.168,0.577,-0.577,0.577,0.696,-0.179,0.696,0.138,0.971,0.193,0.577,0.577,0.577,0.163,0.663,0.731,0.971,0.193,0.138,0.577,0.577,0.577
,0.663,0.731,0.163,0.143,0.143,0.979,0.577,0.577,0.577,0.699,0.152,0.699,-0.663,-0.731,0.163,-0.731,-0.663,-0.163,-0.696,-0.179,-0.696,-0.699,0.152,-0.699,-0.663,0.731,-0.163,-0.731,0.663,0.163,-0.699,0.152,0.699,0.163,-0.731,0.663,-0.163,-0.663,0.731,-0.163,0.731,0.663,0.163,0.663,0.731,0.699,0.152,0.699,0.663,-0.731,-0.163
,0.731,-0.663,0.163,0.663,0.731,0.163,0.731,0.663,-0.163,0.699,0.152,-0.699,-0.163,-0.731,-0.663,0.163,-0.663,-0.731,0.163,0.731,-0.663,-0.163,0.663,-0.731,-0.163,-0.731,-0.663,-0.696,-0.179,-0.696,-0.577,-0.577,-0.577,-0.731,-0.663,-0.163,-0.577,-0.577,-0.577,-0.163,0.663,-0.731,-0.663,0.731,-0.163,-0.577,0.577,-0.577,-0.699,0.152,-0.699
,-0.577,0.577,-0.577,-0.663,-0.731,0.163,-0.696,-0.179,0.696,-0.577,-0.577,0.577,-0.163,-0.663,0.731,-0.577,-0.577,0.577,-0.163,0.731,0.663,-0.699,0.152,0.699,-0.577,0.577,0.577,-0.731,0.663,0.163,-0.577,0.577,0.577,0.663,-0.731,-0.163,0.696,-0.179,-0.696,0.577,-0.577,-0.577,0.163,-0.663,-0.731,0.577,-0.577,-0.577,0.163,0.731,-0.663
,0.699,0.152,-0.699,0.577,0.577,-0.577,0.731,0.663,-0.163,0.577,0.577,-0.577,0.163,-0.731,0.663,0.696,-0.179,0.696,0.577,-0.577,0.577,0.731,-0.663,0.163,0.577,-0.577,0.577,0.663,0.731,0.163,0.699,0.152,0.699,0.577,0.577,0.577,0.163,0.663,0.731,0.577,0.577,0.577,-0.663,-0.731,0.163,-0.731,-0.663,-0.163,-0.699,0.152,-0.699
,-0.663,0.731,-0.163,-0.731,0.663,0.163,-0.699,0.152,0.699,-0.696,-0.179,0.696,0.163,-0.731,0.663,-0.163,-0.663,0.731,-0.163,0.731,0.663,0.163,0.663,0.731,0.699,0.152,0.699,0.696,-0.179,0.696,0.663,-0.731,-0.163,0.731,-0.663,0.163,0.663,0.731,0.163,0.731,0.663,-0.163,0.699,0.152,-0.699,0.696,-0.179,-0.696,-0.163,-0.731,-0.663
,0.163,-0.663,-0.731,0.163,0.731,-0.663,-0.163,0.663,-0.731]
,"tangents":[0.145,-0.147,0.978,1,-0.08,-0.664,0.744,1,-0.013,-0.225,0.974,1,-0.136,-0.973,0.189,1,0.075,-0.741,0.667,1,-0.377,-0.574,0.726,1,0.211,-0.136,-0.968,1,0.667,0.075,-0.741,1,0.704,-0.362,-0.611,1,0.144,-0.976,-0.163,1,-0.08,-0.744,-0.664,1,0.002,-0.977,-0.215,1,0.976,0.167
,0.143,1,0.741,0.668,-0.073,1,0.973,0.229,-0.009,1,0.147,0.145,-0.978,1,0.664,-0.08,-0.744,1,0.225,-0.013,-0.974,1,-0.136,0.211,0.968,1,0.075,0.667,0.741,1,-0.377,0.726,0.574,1,-0.168,0.14,-0.976,1,-0.664,-0.08,-0.744,1,-0.225,-0.013,-0.974,1,-0.145,-0.978,-0.147,1
,0.08,-0.744,-0.664,1,0.017,-0.972,-0.233,1,0.973,0.185,-0.139,1,0.744,0.663,0.082,1,0.577,0.728,-0.371,1,0.136,-0.968,0.211,1,-0.075,-0.741,0.667,1,0.377,-0.574,0.726,1,-0.19,-0.139,-0.972,1,-0.667,0.075,-0.741,1,-0.695,-0.376,-0.613,1,-0.136,-0.211,0.968,1,0.075,-0.667
,0.741,1,-0.377,-0.726,0.574,1,0.189,0.138,0.972,1,0.668,-0.073,0.741,1,0.229,-0.009,0.973,1,0.145,-0.978,0.147,1,-0.08,-0.744,0.664,1,-0.017,-0.972,0.234,1,0.973,-0.185,-0.139,1,0.744,-0.663,0.082,1,0.577,-0.728,-0.371,1,-0.136,-0.968,-0.211,1,0.075,-0.741,-0.667,1
,-0.377,-0.574,-0.726,1,0.163,-0.143,0.976,1,0.663,0.082,0.744,1,0.696,-0.37,0.615,1,0.145,0.147,0.978,1,-0.08,0.664,0.744,1,-0.013,0.225,0.974,1,0.137,-0.973,-0.189,1,-0.075,-0.741,-0.667,1,0.377,-0.574,-0.726,1,-0.185,-0.138,0.973,1,-0.663,0.082,0.744,1,-0.705,-0.356
,0.613,1,0.976,-0.167,0.143,1,0.741,-0.668,-0.073,1,0.973,-0.229,-0.009,1,-0.167,0.143,0.976,1,-0.668,-0.073,0.741,1,-0.229,-0.009,0.973,1,-0.144,-0.976,0.163,1,0.08,-0.744,0.664,1,-0.002,-0.976,0.216,1,-0.007,0.224,0.975,1,0.224,-0.007,-0.975,1,0.013,-0.971,0.237,1
,0.695,0.373,-0.614,1,0.646,0.668,0.369,1,-0.224,-0.007,-0.975,1,0.007,-0.976,0.219,1,0.363,0.669,0.648,1,-0.363,-0.649,-0.669,1,0.976,0.22,-0.002,1,-0.363,-0.648,0.669,1,-0.694,0.379,0.612,1,-0.007,-0.224,0.975,1,-0.22,-0.002,0.976,1,0.646,-0.668,0.369,1,0.22,-0.002
,0.976,1,-0.007,-0.976,-0.219,1,0.363,-0.669,0.649,1,0.363,-0.649,0.669,1,0.976,-0.22,-0.002,1,0.363,-0.648,-0.669,1,0.363,-0.669,0.649,1,0.013,-0.971,0.237,1,0.075,-0.741,0.667,1,0.224,-0.007,-0.975,1,0.667,0.075,-0.741,1,0.363,-0.648,-0.669,1,0.646,0.668,0.369,1
,0.741,0.668,-0.073,1,0.695,0.373,-0.614,1,0.664,-0.08,-0.744,1,-0.007,0.224,0.975,1,-0.704,0.36,-0.612,1,-0.664,-0.08,-0.744,1,-0.363,-0.649,-0.669,1,0.08,-0.744,-0.664,1,0.976,0.22,-0.002,1,0.007,-0.976,0.219,1,-0.075,-0.741,0.667,1,-0.224,-0.007,-0.975,1,-0.667,0.075
,-0.741,1,-0.007,-0.224,0.975,1,0.703,0.366,0.609,1,0.668,-0.073,0.741,1,0.363,-0.649,0.669,1,-0.08,-0.744,0.664,1,0.976,-0.22,-0.002,1,-0.007,-0.976,-0.219,1,0.075,-0.741,-0.667,1,0.22,-0.002,0.976,1,0.663,0.082,0.744,1,0.363,0.669,0.648,1,-0.013,-0.971,-0.237,1
,-0.075,-0.741,-0.667,1,-0.22,-0.002,0.976,1,-0.663,0.082,0.744,1,0.646,-0.668,0.369,1,-0.694,0.379,0.612,1,-0.668,-0.073,0.741,1,-0.363,-0.648,0.669,1,0.08,-0.744,0.664,1,-0.007,0.224,0.975,1,0.224,-0.007,-0.975,1,0.695,0.373,-0.614,1,0.646,0.668,0.369,1,-0.224,-0.007
,-0.975,1,0.007,-0.976,0.219,1,-0.704,0.36,-0.612,1,0.363,0.669,0.648,1,-0.363,-0.649,-0.669,1,0.976,0.22,-0.002,1,-0.363,-0.648,0.669,1,-0.694,0.379,0.612,1,-0.013,-0.971,-0.237,1,-0.007,-0.224,0.975,1,-0.22,-0.002,0.976,1,0.646,-0.668,0.369,1,0.22,-0.002,0.976,1
,-0.007,-0.976,-0.219,1,0.703,0.366,0.609,1,0.363,-0.669,0.649,1,0.363,-0.649,0.669,1,0.976,-0.22,-0.002,1,0.363,-0.648,-0.669,1]
,"uvs":[0.835,0.525,0.832,0.522,0.835,0.522,0.55,0.819,0.552,0.817,0.553,0.819,0.381,0.819,0.383,0.817,0.384,0.819,0.39,0.819,0.387,0.817,0.389,0.816,0.834,0.004,0.832,0.002,0.834,0.002,0.379,0.979,0.382,0.982,0.38,0.982,0.995,0.525,0.997,0.522,0.998,0.525,0.221,0.819,0.218,0.817,0.22,0.816,0.994,0.345
,0.997,0.347,0.994,0.348,0.835,0.165,0.833,0.167,0.833,0.165,0.834,0.345,0.832,0.347,0.831,0.345,0.219,0.979,0.217,0.982,0.217,0.98,0.833,0.685,0.831,0.687,0.831,0.685,0.834,0.355,0.832,0.352,0.834,0.352,0.548,0.979,0.551,0.982,0.549,0.982,0.994,0.004,0.997,0.002,0.997,0.004,0.388,0.979,0.386,0.982
,0.385,0.98,0.835,0.515,0.833,0.517,0.832,0.515,0.994,0.685,0.996,0.687,0.994,0.688,0.995,0.185,0.998,0.182,0.998,0.185,0.994,0.355,0.997,0.352,0.997,0.355,0.996,0.165,0.998,0.167,0.996,0.167,0.995,0.515,0.998,0.517,0.996,0.518,0.835,0.185,0.833,0.182,0.835,0.182,0.995,0.522,0.381,0.816,0.55,0.816
,0.382,0.98,0.831,0.004,0.219,0.982,0.834,0.348,0.996,0.685,0.997,0.345,0.835,0.167,0.832,0.185,0.998,0.515,0.833,0.688,0.994,0.352,0.998,0.165,0.835,0.518,0.388,0.982,0.832,0.525,0.551,0.98,0.994,0.002,0.387,0.819,0.832,0.525,0.55,0.816,0.552,0.817,0.381,0.816,0.383,0.817,0.387,0.819,0.831,0.004
,0.832,0.002,0.382,0.98,0.382,0.982,0.995,0.522,0.218,0.819,0.218,0.817,0.997,0.345,0.997,0.347,0.835,0.167,0.834,0.348,0.832,0.347,0.219,0.982,0.217,0.982,0.833,0.688,0.831,0.355,0.832,0.352,0.551,0.98,0.551,0.982,0.994,0.002,0.388,0.982,0.386,0.982,0.835,0.518,0.833,0.517,0.996,0.685,0.996,0.182
,0.998,0.182,0.994,0.352,0.997,0.352,0.998,0.165,0.998,0.515,0.998,0.517,0.832,0.185,0.833,0.182,0.995,0.522,0.381,0.816,0.382,0.98,0.831,0.004,0.219,0.982,0.834,0.348,0.218,0.819,0.996,0.685,0.997,0.345,0.835,0.167,0.832,0.185,0.998,0.515,0.996,0.182,0.833,0.688,0.994,0.352,0.998,0.165,0.835,0.518
,0.388,0.982,0.831,0.355,0.832,0.525,0.551,0.98,0.994,0.002,0.387,0.819]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50
,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,0,72,18,73,21,23,3,11,74,75,6,8,27,76,12,77,15,17,24,78,30,35,21,33,18,79,54,80,57,59
,63,81,27,82,30,32,60,83,66,71,57,69,54,84,36,85,39,41,45,86,63,87,66,68,42,88,48,53,39,51,36,89,0,90,3,5,12,91,45,92,48,50,54,0,18,69,24,30,51,60,66
,42,9,3,45,27,12,15,21,6,0,93,1,3,94,95,6,96,97,9,98,10,12,99,100,15,101,102,18,103,19,21,104,105,24,106,107,27,108,28,30,109,110,33,111,112,36,113,37,39,114,115
,42,116,117,45,118,46,48,119,120,51,121,122,54,123,55,57,124,125,60,126,127,63,128,64,66,129,130,69,131,132,0,2,133,134,6,21,3,9,11,135,15,6,27,29,136,137,33,15,24,26,138
,35,139,21,18,20,140,141,24,57,63,65,142,143,69,30,60,62,144,71,145,57,54,56,146,147,60,39,45,47,148,149,51,66,42,44,150,53,151,39,36,38,152,153,42,3,12,14,154,155,9,48
,54,36,0,69,57,24,51,39,60,42,48,9,45,63,27,15,33,21]
}
,{"name":"d8","id":"d8","billboardMode":0,"position":[-0.3,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false
,"positions":[0,-0.1258,-0.0017,0.0878,-0.0012,-0.0894,-0.0878,-0.0012,-0.0894,0,0.1259,-0.0017,-0.0878,0.0012,-0.0894,0.0878,0.0012,-0.0894,0.0017,0.1259,0,0.0894,0.0012,-0.0878,0.0894,0.0012,0.0878,-0.0017,-0.1258,0,-0.0894,-0.0012,-0.0878,-0.0894,-0.0012,0.0878,-0.0017,0.1259,0,-0.0894,0.0012,0.0878,-0.0894,0.0012,-0.0878,0,-0.1258,0.0017,-0.0878,-0.0012,0.0894
,0.0878,-0.0012,0.0894,0,0.1259,0.0017,0.0878,0.0012,0.0894,-0.0878,0.0012,0.0894,0.0003,-0.1276,0.0003,-0.0003,-0.1276,0.0003,0.0003,-0.1276,-0.0003,0.0003,-0.1276,0.0003,0.0017,-0.1258,0,-0.0003,-0.1276,-0.0003,0.0003,-0.1276,-0.0003,-0.0003,-0.1276,0.0003,-0.0003,-0.1276,-0.0003,0.0003,0.1276,0.0003,0.0003,0.1276,-0.0003,-0.0003,0.1276,0.0003,0.0003,0.1276,0.0003
,-0.0003,0.1276,-0.0003,-0.0003,0.1276,0.0003,0.0003,0.1276,-0.0003,-0.0003,0.1276,-0.0003,-0.0901,0,0.0895,-0.0898,-0.0004,0.0898,-0.0898,0.0004,0.0898,-0.0901,0,0.0895,-0.0895,0,0.0901,-0.0898,0.0004,0.0898,-0.0898,-0.0004,0.0898,-0.0895,0,0.0901,-0.0901,0,-0.0895,-0.0898,0.0004,-0.0898,-0.0898,-0.0004,-0.0898,-0.0901,0,-0.0895,-0.0895,0,-0.0901
,-0.0898,-0.0004,-0.0898,-0.0898,0.0004,-0.0898,-0.0895,0,-0.0901,0.0895,0,0.0901,0.0898,-0.0004,0.0898,0.0898,0.0004,0.0898,0.0895,0,0.0901,0.0901,0,0.0895,0.0898,0.0004,0.0898,0.0898,-0.0004,0.0898,0.0901,0,0.0895,0.0894,-0.0012,0.0878,0.0898,-0.0004,-0.0898,0.0895,0,-0.0901,0.0901,0,-0.0895,0.0898,-0.0004,-0.0898,0.0894,-0.0012,-0.0878
,0.0898,0.0004,-0.0898,0.0901,0,-0.0895,0.0895,0,-0.0901,0.0898,0.0004,-0.0898,-0.0901,0,-0.0895,-0.0901,0,0.0895,0.0895,0,-0.0901,-0.0895,0,-0.0901,0.0898,0.0004,-0.0898,0.0003,0.1276,-0.0003,-0.0898,0.0004,0.0898,-0.0003,0.1276,0.0003,0.0898,-0.0004,0.0898,-0.0898,-0.0004,-0.0898,-0.0003,-0.1276,-0.0003,0.0898,-0.0004,-0.0898,-0.0898,0.0004,-0.0898
,0.0901,0,-0.0895,-0.0898,-0.0004,0.0898,-0.0895,0,0.0901,0.0895,0,0.0901,0.0898,0.0004,0.0898,0.0003,0.1276,0.0003,0,-0.1278,0,0,-0.1278,0,0.0003,-0.1276,0.0003,0,-0.1278,0,0.0003,-0.1276,-0.0003,-0.0003,-0.1276,0.0003,0,-0.1278,0,-0.0003,-0.1276,-0.0003,0,0.1279,0,0,0.1279,0,0.0003,0.1276,0.0003
,0,0.1279,0,-0.0003,0.1276,0.0003,0.0003,0.1276,-0.0003,0,0.1279,0,-0.0003,0.1276,-0.0003,-0.09,0,0.09,-0.09,0,0.09,-0.0901,0,0.0895,-0.09,0,0.09,-0.0898,0.0004,0.0898,-0.0898,-0.0004,0.0898,-0.09,0,0.09,-0.0895,0,0.0901,-0.09,0,-0.09,-0.09,0,-0.09,-0.0901,0,-0.0895,-0.09,0,-0.09
,-0.0898,-0.0004,-0.0898,-0.0898,0.0004,-0.0898,-0.09,0,-0.09,-0.0895,0,-0.0901,0.09,0,0.09,0.09,0,0.09,0.0895,0,0.0901,0.09,0,0.09,0.0898,0.0004,0.0898,0.0898,-0.0004,0.0898,0.09,0,0.09,0.0901,0,0.0895,0.09,0,-0.09,0.09,0,-0.09,0.0898,-0.0004,-0.0898,0.09,0,-0.09,0.0901,0,-0.0895
,0.0895,0,-0.0901,0.09,0,-0.09,0.0898,0.0004,-0.0898,-0.0901,0,-0.0895,0.0895,0,-0.0901,0.0898,0.0004,-0.0898,-0.0898,0.0004,0.0898,0.0003,-0.1276,0.0003,0.0898,-0.0004,0.0898,-0.0898,-0.0004,-0.0898,0.0003,-0.1276,-0.0003,0.0898,-0.0004,-0.0898,-0.0003,0.1276,-0.0003,-0.0898,0.0004,-0.0898,0.0901,0,0.0895,0.0901,0,-0.0895,-0.0898,-0.0004,0.0898
,-0.0003,-0.1276,0.0003,-0.0895,0,0.0901,0.0898,0.0004,0.0898]
,"normals":[0,-0.668,-0.744,0.102,-0.524,-0.846,-0.102,-0.524,-0.846,0,0.668,-0.744,-0.102,0.524,-0.846,0.102,0.524,-0.846,0.744,0.668,0,0.846,0.524,-0.102,0.846,0.524,0.102,-0.744,-0.668,0,-0.846,-0.524,-0.102,-0.846,-0.524,0.102,-0.744,0.668,0,-0.846,0.524,0.102,-0.846,0.524,-0.102,0,-0.668,0.744,-0.102,-0.524,0.846
,0.102,-0.524,0.846,0,0.668,0.744,0.102,0.524,0.846,-0.102,0.524,0.846,0.384,-0.8,0.46,-0.408,-0.817,0.407,0.46,-0.8,-0.384,0.384,-0.8,0.46,0.744,-0.668,0,-0.384,-0.8,-0.46,0.46,-0.8,-0.384,-0.408,-0.817,0.407,-0.384,-0.8,-0.46,0.46,0.8,0.384,0.407,0.817,-0.408,-0.384,0.8,0.46,0.46,0.8,0.384
,-0.46,0.8,-0.384,-0.384,0.8,0.46,0.407,0.817,-0.408,-0.46,0.8,-0.384,-0.988,-0.054,0.146,-0.578,-0.576,0.579,-0.604,0.595,0.53,-0.988,-0.054,0.146,-0.144,0.052,0.988,-0.604,0.595,0.53,-0.578,-0.576,0.579,-0.144,0.052,0.988,-0.988,0.052,-0.144,-0.578,0.575,-0.579,-0.604,-0.595,-0.53,-0.988,0.052,-0.144,-0.145,-0.053,-0.988
,-0.604,-0.595,-0.53,-0.578,0.575,-0.579,-0.145,-0.053,-0.988,0.145,-0.054,0.988,0.579,-0.576,0.578,0.53,0.595,0.604,0.145,-0.054,0.988,0.988,0.053,0.146,0.53,0.595,0.604,0.579,-0.576,0.578,0.988,0.053,0.146,0.846,-0.524,0.102,0.53,-0.595,-0.604,0.171,0,-0.985,0.988,-0.052,-0.144,0.53,-0.595,-0.604,0.846,-0.524,-0.102
,0.604,0.595,-0.53,0.988,-0.052,-0.144,0.171,0,-0.985,0.604,0.595,-0.53,-0.988,0.052,-0.144,-0.988,-0.054,0.146,0.171,0,-0.985,-0.145,-0.053,-0.988,0.604,0.595,-0.53,0.407,0.817,-0.408,-0.604,0.595,0.53,-0.384,0.8,0.46,0.579,-0.576,0.578,-0.604,-0.595,-0.53,-0.384,-0.8,-0.46,0.53,-0.595,-0.604,-0.578,0.575,-0.579
,0.988,-0.052,-0.144,-0.578,-0.576,0.579,-0.144,0.052,0.988,0.145,-0.054,0.988,0.53,0.595,0.604,0.46,0.8,0.384,0,-1,0,0,-1,0,0.384,-0.8,0.46,0,-1,0,0.46,-0.8,-0.384,-0.408,-0.817,0.407,0,-1,0,-0.384,-0.8,-0.46,0,1,0,0,1,0,0.46,0.8,0.384
,0,1,0,-0.384,0.8,0.46,0.407,0.817,-0.408,0,1,0,-0.46,0.8,-0.384,-0.707,0,0.707,-0.707,0,0.707,-0.988,-0.054,0.146,-0.707,0,0.707,-0.604,0.595,0.53,-0.578,-0.576,0.579,-0.707,0,0.707,-0.144,0.052,0.988,-0.707,0,-0.707,-0.707,0,-0.707,-0.988,0.052,-0.144,-0.707,0,-0.707
,-0.604,-0.595,-0.53,-0.578,0.575,-0.579,-0.707,0,-0.707,-0.145,-0.053,-0.988,0.707,0,0.707,0.707,0,0.707,0.145,-0.054,0.988,0.707,0,0.707,0.53,0.595,0.604,0.579,-0.576,0.578,0.707,0,0.707,0.988,0.053,0.146,0.707,0,-0.707,0.707,0,-0.707,0.53,-0.595,-0.604,0.707,0,-0.707,0.988,-0.052,-0.144
,0.171,0,-0.985,0.707,0,-0.707,0.604,0.595,-0.53,-0.988,0.052,-0.144,0.171,0,-0.985,0.604,0.595,-0.53,-0.604,0.595,0.53,0.384,-0.8,0.46,0.579,-0.576,0.578,-0.604,-0.595,-0.53,0.46,-0.8,-0.384,0.53,-0.595,-0.604,-0.46,0.8,-0.384,-0.578,0.575,-0.579,0.988,0.053,0.146,0.988,-0.052,-0.144,-0.578,-0.576,0.579
,-0.408,-0.817,0.407,-0.144,0.052,0.988,0.53,0.595,0.604]
,"tangents":[0.239,0.723,-0.649,1,0.712,0.632,-0.306,1,0.488,0.714,-0.502,1,0.239,0.723,0.648,1,0.712,0.632,0.306,1,0.487,0.715,0.502,1,-0.648,0.722,-0.242,1,-0.497,0.703,-0.509,1,-0.304,0.63,-0.714,1,-0.648,0.722,0.242,1,-0.497,0.703,0.508,1,-0.305,0.63,0.714,1,0.648,0.723
,-0.239,1,0.306,0.632,-0.712,1,0.502,0.715,-0.487,1,-0.242,-0.722,-0.648,1,-0.51,-0.702,-0.497,1,-0.714,-0.63,-0.304,1,0.239,-0.723,0.648,1,0.712,-0.632,0.306,1,0.487,-0.715,0.502,1,-0.354,-0.588,-0.727,1,0.023,-0.455,-0.89,1,-0.868,-0.496,-0.005,1,-0.734,-0.567,-0.373,1
,-0.649,-0.723,-0.239,1,0.006,0.496,-0.868,1,0.373,0.567,-0.734,1,-0.742,0.557,0.373,1,-0.889,0.455,-0.05,1,-0.727,0.588,-0.354,1,-0.89,0.455,0.023,1,0.005,-0.497,0.868,1,0.373,-0.567,0.734,1,0.868,0.497,-0.005,1,0.734,0.567,-0.373,1,-0.028,0.458,0.888,1,0.373,0.567
,0.734,1,0.081,0.62,0.781,1,-0.205,0.789,0.58,1,0.227,0.766,-0.601,1,-0.149,0.596,-0.789,1,0.487,-0.866,0.117,1,0.285,-0.46,0.841,1,-0.386,-0.432,-0.815,1,-0.593,-0.804,-0.044,1,0.117,0.866,-0.487,1,0.811,0.487,-0.325,1,-0.797,0.438,0.416,1,-0.044,0.806,0.59,1
,0.49,0.864,-0.118,1,0.289,0.457,-0.842,1,0.577,0.79,0.208,1,0.789,0.596,-0.148,1,-0.781,-0.62,0.081,1,-0.58,-0.788,-0.205,1,0.601,-0.766,0.227,1,0.789,-0.596,-0.149,1,0.082,0.62,-0.781,1,-0.218,0.784,-0.581,1,-0.208,-0.789,-0.578,1,0.149,-0.596,-0.789,1,-0.306,-0.632
,-0.712,1,0.601,0.766,-0.227,1,0.777,0.615,0.135,1,-0.117,-0.864,-0.49,1,-0.842,-0.457,-0.289,1,-0.502,-0.714,-0.488,1,-0.797,0.436,-0.418,1,-0.044,0.804,-0.592,1,0.51,0.855,0.089,1,0.285,0.46,0.841,1,-0.044,0.806,0.59,1,-0.149,0.596,-0.789,1,0.51,0.855,0.089,1
,0.789,0.596,-0.148,1,0.285,0.46,0.841,1,-0.028,0.458,0.888,1,0.285,-0.46,0.841,1,0.734,0.567,-0.373,1,-0.208,-0.789,-0.578,1,0.289,0.457,-0.842,1,-0.889,0.455,-0.05,1,-0.842,-0.457,-0.289,1,0.577,0.79,0.208,1,-0.044,0.804,-0.592,1,-0.386,-0.432,-0.815,1,-0.593,-0.804
,-0.044,1,0.789,-0.596,-0.149,1,-0.218,0.784,-0.581,1,0.373,-0.567,0.734,1,-0.604,0,-0.797,1,-0.805,0,-0.593,1,-0.734,-0.567,-0.373,1,0.593,0,-0.805,1,0.373,0.567,-0.734,1,-0.742,0.557,0.373,1,-0.798,0,0.603,1,-0.889,0.455,-0.05,1,-0.797,0,-0.604,1
,0.593,0,0.805,1,0.373,-0.567,0.734,1,0.805,0,-0.593,1,0.734,0.567,-0.373,1,-0.028,0.458,0.888,1,0.593,0,0.805,1,0.373,0.567,0.734,1,0.106,0.989,0.106,1,-0.098,0.99,-0.097,1,-0.149,0.596,-0.789,1,0.497,-0.711,0.497,1,0.285,-0.46,0.841,1,-0.386,-0.432
,-0.815,1,-0.501,-0.705,-0.502,1,-0.593,-0.804,-0.044,1,0.497,0.711,-0.497,1,-0.501,0.705,0.501,1,-0.044,0.806,0.59,1,0.497,0.711,-0.497,1,0.289,0.457,-0.842,1,0.577,0.79,0.208,1,0.097,0.99,-0.098,1,0.789,0.596,-0.148,1,-0.107,-0.989,0.106,1,0.097,-0.99,-0.098,1
,0.789,-0.596,-0.149,1,0.107,0.989,-0.106,1,-0.218,0.784,-0.581,1,-0.208,-0.789,-0.578,1,0.097,-0.991,-0.097,1,0.149,-0.596,-0.789,1,0.098,0.99,0.097,1,-0.497,-0.711,-0.497,1,-0.842,-0.457,-0.289,1,-0.501,0.705,-0.502,1,-0.044,0.804,-0.592,1,0.51,0.855,0.089,1,0.497,0.711
,0.497,1,0.285,0.46,0.841,1,-0.044,0.806,0.59,1,0.51,0.855,0.089,1,0.285,0.46,0.841,1,0.285,-0.46,0.841,1,-0.734,-0.567,-0.373,1,-0.208,-0.789,-0.578,1,0.289,0.457,-0.842,1,0.373,0.567,-0.734,1,-0.842,-0.457,-0.289,1,0.373,0.567,0.734,1,0.577,0.79,0.208,1
,0.149,-0.596,-0.789,1,-0.044,0.804,-0.592,1,-0.386,-0.432,-0.815,1,-0.742,0.557,0.373,1,-0.593,-0.804,-0.044,1,-0.218,0.784,-0.581,1]
,"uvs":[0.221,0.566,0.356,0.566,0.289,0.682,0.504,0.811,0.369,0.811,0.436,0.694,0.431,0.692,0.364,0.808,0.297,0.692,0.295,0.685,0.363,0.569,0.43,0.685,0.355,0.811,0.221,0.811,0.288,0.694,0.503,0.566,0.436,0.682,0.369,0.566,0.442,0.692,0.576,0.692,0.509,0.808,0.503,0.563,0.505,0.567,0.578,0.684,0.576,0.687
,0.576,0.685,0.219,0.567,0.221,0.564,0.295,0.687,0.293,0.684,0.431,0.689,0.433,0.693,0.44,0.693,0.442,0.689,0.357,0.81,0.355,0.813,0.506,0.81,0.504,0.813,0.432,0.684,0.43,0.687,0.221,0.813,0.219,0.81,0.511,0.809,0.507,0.809,0.438,0.684,0.434,0.684,0.286,0.693,0.29,0.693,0.361,0.567,0.365,0.567
,0.291,0.684,0.287,0.684,0.369,0.813,0.367,0.81,0.366,0.567,0.368,0.564,0.577,0.689,0.579,0.693,0.294,0.693,0.296,0.689,0.442,0.687,0.44,0.684,0.442,0.685,0.356,0.564,0.358,0.567,0.507,0.567,0.511,0.567,0.509,0.569,0.366,0.809,0.362,0.809,0.434,0.693,0.438,0.693,0.365,0.567,0.219,0.81,0.434,0.693
,0.367,0.81,0.438,0.693,0.506,0.81,0.507,0.809,0.355,0.813,0.442,0.687,0.287,0.684,0.293,0.684,0.511,0.567,0.369,0.813,0.362,0.809,0.438,0.684,0.434,0.684,0.579,0.693,0.296,0.689,0.442,0.689,0.506,0.564,0.58,0.687,0.576,0.687,0.218,0.564,0.221,0.564,0.295,0.687,0.292,0.687,0.293,0.684,0.434,0.69
,0.438,0.69,0.442,0.689,0.359,0.813,0.355,0.813,0.506,0.81,0.507,0.813,0.504,0.813,0.433,0.687,0.217,0.813,0.219,0.81,0.509,0.812,0.507,0.809,0.438,0.684,0.436,0.686,0.434,0.684,0.288,0.691,0.363,0.565,0.365,0.567,0.289,0.686,0.287,0.684,0.369,0.813,0.366,0.813,0.367,0.81,0.365,0.564,0.58,0.69
,0.579,0.693,0.293,0.69,0.296,0.689,0.442,0.687,0.438,0.687,0.44,0.684,0.359,0.564,0.509,0.565,0.511,0.567,0.364,0.812,0.362,0.809,0.434,0.693,0.436,0.691,0.438,0.693,0.365,0.567,0.434,0.693,0.438,0.693,0.507,0.809,0.576,0.687,0.442,0.687,0.287,0.684,0.221,0.564,0.511,0.567,0.504,0.813,0.369,0.813
,0.44,0.684,0.362,0.809,0.438,0.684,0.295,0.687,0.434,0.684,0.296,0.689]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,15,23,24,25,26,27,0,28,29,9,30,31,6,32,33,18,34,35,12,36,37,3,38,39,11,40,41,13
,42,43,20,44,45,16,46,47,14,48,49,10,50,51,2,52,53,4,54,55,17,56,57,19,58,59,8,60,61,62,63,64,1,65,66,67,68,69,7,70,71,5,11,72,38,46,13,73,1,50,2
,74,4,75,3,76,77,68,6,31,18,78,32,40,12,79,25,80,62,55,15,17,0,81,26,48,9,82,0,63,1,83,25,67,3,84,4,47,12,14,62,65,67,85,8,7,15,86,16,39,9,11
,17,87,54,42,19,88,6,89,30,56,18,90,25,62,67,21,91,22,23,92,93,26,94,95,96,97,98,30,99,31,32,100,101,34,102,103,104,105,106,38,107,39,40,108,109,42,110,111,112,113,114
,46,115,47,48,116,117,50,118,119,120,121,122,54,123,55,56,124,125,58,126,127,128,129,130,63,131,64,65,132,133,68,134,135,136,137,138,11,10,139,46,14,13,1,64,50,140,5,4,3,5,141
,68,7,6,18,20,142,40,13,12,25,143,144,55,21,15,0,2,145,48,10,9,0,146,63,147,23,25,3,148,149,47,34,12,62,150,65,151,58,8,15,22,152,39,153,9,17,16,154,42,20,19
,6,8,155,56,19,18]
}
,{"name":"d10","id":"d10","billboardMode":0,"position":[0,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false
,"positions":[-0.0933,0.0089,-0.0303,-0.0022,-0.0952,-0.0008,-0.0585,-0.0109,-0.0782,0.0933,-0.0087,0.0303,0.0023,0.095,0.0006,0.0933,0.0111,-0.0288,-0.0577,-0.0088,-0.0793,-0.0013,0.095,-0.002,-0.0924,0.0111,-0.0315,0.0933,0.0089,-0.0303,0.0023,-0.0952,-0.0008,0.0933,-0.0109,0.0288,-0.0577,0.0089,0.0794,-0.0014,-0.0952,0.0019,-0.0925,-0.0109,0.0315,0.0576,-0.0088,-0.0794,0.0014,0.095,-0.002
,0.0014,0.0111,-0.0976,-0.0933,-0.0088,0.0303,-0.0022,0.095,0.0006,-0.0585,0.0111,0.0782,0.0577,0.0089,0.0793,0.0014,-0.0952,0.0019,0.0014,-0.0109,0.0977,0,-0.0952,-0.0024,0,0.0089,-0.0981,-0.0563,-0.0109,-0.0798,-0.0014,-0.0109,0.0977,0,-0.0102,0.099,0,-0.0106,0.0988,0,-0.0088,0.0982,0,-0.0102,0.099,-0.0005,-0.01,0.099,0,-0.0102,0.099
,0.0005,-0.01,0.099,-0.0563,0.0111,0.0798,-0.0582,0.0104,0.0801,-0.0581,0.0108,0.0799,-0.0582,0.0104,0.0801,-0.0578,0.0102,0.0803,-0.0582,0.0104,0.0801,-0.0586,0.0102,0.0798,-0.0942,-0.0102,0.0306,-0.094,-0.01,0.031,-0.0933,-0.0109,0.0289,-0.0942,-0.0102,0.0306,-0.094,-0.0106,0.0305,-0.0942,-0.0102,0.0306,-0.0943,-0.01,0.0301,-0.0933,0.0111,-0.0289,-0.0941,0.0104,-0.0306
,-0.0939,0.0108,-0.0305,-0.0941,0.0104,-0.0306,-0.0942,0.0101,-0.0301,-0.0941,0.0104,-0.0306,-0.0939,0.0101,-0.0311,-0.0582,-0.0102,-0.0801,-0.0586,-0.01,-0.0797,-0.0582,-0.0102,-0.0801,-0.0581,-0.0106,-0.0799,-0.0582,-0.0102,-0.0801,-0.0578,-0.01,-0.0803,-0.0014,0.0111,-0.0976,0,0.0104,-0.0989,0,0.0108,-0.0987,0,0.0104,-0.0989,-0.0005,0.0102,-0.0989,0,0.0104,-0.0989
,0.0005,0.0102,-0.0989,0.0562,-0.011,-0.0798,0.0582,-0.0102,-0.0801,0.0577,-0.01,-0.0803,0.0585,-0.011,-0.0782,0.0582,-0.0102,-0.0801,0.058,-0.0106,-0.0799,0.0582,-0.0102,-0.0801,0.0585,-0.01,-0.0797,0.0924,0.0111,-0.0315,0.0941,0.0104,-0.0306,0.0939,0.0108,-0.0305,0.0941,0.0104,-0.0306,0.0939,0.0102,-0.031,0.0941,0.0104,-0.0306,0.0942,0.0102,-0.0301,0.0942,-0.0102,0.0306
,0.0942,-0.01,0.0301,0.0924,-0.0109,0.0315,0.0942,-0.0102,0.0306,0.0939,-0.0106,0.0305,0.0942,-0.0102,0.0306,0.0939,-0.01,0.031,0.0585,0.0111,0.0782,0.0582,0.0104,0.0801,0.058,0.0108,0.0799,0.0582,0.0104,0.0801,0.0585,0.0102,0.0797,0.0563,0.0111,0.0798,0.0582,0.0104,0.0801,0.0577,0.0102,0.0803,0.0001,0.095,0.0022,0.0001,0.0968,-0.0001,0.0007,0.0964,0.0007
,0.0001,0.0968,-0.0001,-0.0006,0.0964,0.0007,0.0001,0.0968,-0.0001,-0.0009,0.0964,-0.0005,0.0001,0.0968,-0.0001,0.0001,0.0964,-0.0012,0.0001,0.0968,-0.0001,0.0011,0.0964,-0.0005,0,-0.097,0,0.001,-0.0966,0.0003,0,-0.097,0,0.0006,-0.0966,-0.0009,0,-0.097,0,-0.0006,-0.0966,-0.0009,0,-0.097,0,-0.001,-0.0966,0.0003,0,-0.097,0
,0,-0.0966,0.001,-0.0005,-0.01,0.099,-0.0586,0.0102,0.0798,-0.094,-0.01,0.031,-0.0943,-0.01,0.0301,-0.0939,0.0101,-0.0311,-0.0586,-0.01,-0.0797,-0.0578,-0.01,-0.0803,0.0005,0.0102,-0.0989,0.0577,-0.01,-0.0803,0.0585,-0.01,-0.0797,0.0942,0.0102,-0.0301,0.0942,-0.01,0.0301,0.0939,-0.01,0.031,0.0577,0.0102,0.0803,0.0005,-0.01,0.099,-0.0006,0.0964,0.0007
,-0.0009,0.0964,-0.0005,0.0001,0.0964,-0.0012,0.0011,0.0964,-0.0005,0.0007,0.0964,0.0007,0.0006,-0.0966,-0.0009,-0.001,-0.0966,0.0003,-0.0581,-0.0106,-0.0799,-0.0006,-0.0966,-0.0009,0.001,-0.0966,0.0003,0,-0.0966,0.001,-0.0005,-0.01,0.099,0.0005,-0.01,0.099,0,-0.0102,0.099,0,-0.0106,0.0988,0,-0.0102,0.099,-0.0578,0.0102,0.0803,-0.0586,0.0102,0.0798
,-0.0582,0.0104,0.0801,-0.0581,0.0108,0.0799,-0.0582,0.0104,0.0801,-0.094,-0.0106,0.0305,-0.0943,-0.01,0.0301,-0.0942,-0.0102,0.0306,-0.094,-0.01,0.031,-0.0942,-0.0102,0.0306,-0.0942,0.0101,-0.0301,-0.0939,0.0101,-0.0311,-0.0941,0.0104,-0.0306,-0.0939,0.0108,-0.0305,-0.0941,0.0104,-0.0306,-0.0581,-0.0106,-0.0799,-0.0578,-0.01,-0.0803,-0.0582,-0.0102,-0.0801,-0.0586,-0.01,-0.0797
,-0.0582,-0.0102,-0.0801,-0.0005,0.0102,-0.0989,0.0005,0.0102,-0.0989,0,0.0104,-0.0989,0,0.0108,-0.0987,0,0.0104,-0.0989,0.058,-0.0106,-0.0799,0.0585,-0.01,-0.0797,0.0582,-0.0102,-0.0801,0.0577,-0.01,-0.0803,0.0582,-0.0102,-0.0801,0.0939,0.0102,-0.031,0.0942,0.0102,-0.0301,0.0941,0.0104,-0.0306,0.0939,0.0108,-0.0305,0.0941,0.0104,-0.0306,0.0939,-0.0106,0.0305
,0.0939,-0.01,0.031,0.0942,-0.0102,0.0306,0.0942,-0.01,0.0301,0.0942,-0.0102,0.0306,0.0585,0.0102,0.0797,0.0577,0.0102,0.0803,0.0582,0.0104,0.0801,0.058,0.0108,0.0799,0.0582,0.0104,0.0801,-0.0006,0.0964,0.0007,-0.0009,0.0964,-0.0005,0.0001,0.0968,-0.0001,0.0001,0.0964,-0.0012,0.0001,0.0968,-0.0001,0.0011,0.0964,-0.0005,0.0001,0.0968,-0.0001,0.0007,0.0964,0.0007
,0.0001,0.0968,-0.0001,0.0006,-0.0966,-0.0009,-0.0006,-0.0966,-0.0009,0,-0.097,0,-0.001,-0.0966,0.0003,0,-0.097,0,0,-0.0966,0.001,0,-0.097,0,0.001,-0.0966,0.0003,0,-0.097,0,-0.0578,0.0102,0.0803,-0.0586,0.0102,0.0798,-0.094,-0.01,0.031,-0.0942,0.0101,-0.0301,-0.0939,0.0101,-0.0311,-0.0586,-0.01,-0.0797,-0.0005,0.0102,-0.0989
,0.0005,0.0102,-0.0989,0.0577,-0.01,-0.0803,0.0939,0.0102,-0.031,0.0942,0.0102,-0.0301,0.0942,-0.01,0.0301,0.0585,0.0102,0.0797,0.0577,0.0102,0.0803,0.0005,-0.01,0.099,-0.0006,0.0964,0.0007,-0.0581,0.0108,0.0799,-0.0009,0.0964,-0.0005,-0.0939,0.0108,-0.0305,0.0001,0.0964,-0.0012,0,0.0108,-0.0987,0.0011,0.0964,-0.0005,0.0939,0.0108,-0.0305,0.0007,0.0964,0.0007
,0.058,0.0108,0.0799,0.0006,-0.0966,-0.0009,0.058,-0.0106,-0.0799,-0.001,-0.0966,0.0003,-0.094,-0.0106,0.0305,-0.0006,-0.0966,-0.0009,0.001,-0.0966,0.0003,0.0939,-0.0106,0.0305,0,-0.0966,0.001,0,-0.0106,0.0988]
,"normals":[-0.81,-0.523,-0.264,-0.619,-0.759,-0.202,-0.712,-0.59,-0.381,0.81,0.524,0.263,0.619,0.76,0.201,0.799,0.591,0.111,-0.5,0.524,-0.689,-0.382,0.76,-0.526,-0.581,0.591,-0.559,0.811,-0.523,-0.263,0.62,-0.759,-0.201,0.8,-0.59,-0.111,-0.501,-0.523,0.689,-0.383,-0.759,0.527,-0.582,-0.59,0.56,0.501,0.524,-0.689,0.383,0.759,-0.527
,0.352,0.591,-0.726,-0.81,0.525,0.263,-0.618,0.76,0.2,-0.711,0.592,0.379,0.501,-0.523,0.689,0.383,-0.759,0.527,0.353,-0.59,0.726,0,-0.759,-0.652,0,-0.523,-0.852,-0.142,-0.59,-0.795,-0.352,-0.59,0.726,0,-0.186,0.983,0,-0.598,0.802,0,0.525,0.851,0,-0.186,0.983,-0.212,0.026,0.977,0,-0.186,0.983
,0.212,0.026,0.977,-0.141,0.592,0.793,-0.577,0.188,0.795,-0.471,0.6,0.647,-0.577,0.188,0.795,-0.403,-0.024,0.915,-0.577,0.188,0.795,-0.746,-0.024,0.666,-0.935,-0.186,0.303,-0.864,0.026,0.503,-0.8,-0.59,-0.111,-0.935,-0.186,0.303,-0.762,-0.598,0.247,-0.935,-0.186,0.303,-0.995,0.026,0.1,-0.799,0.592,0.11,-0.934,0.187,-0.304
,-0.761,0.599,-0.248,-0.934,0.187,-0.304,-0.995,-0.024,-0.101,-0.934,0.187,-0.304,-0.864,-0.024,-0.503,-0.577,-0.186,-0.795,-0.745,0.025,-0.666,-0.577,-0.186,-0.795,-0.471,-0.598,-0.649,-0.577,-0.186,-0.795,-0.403,0.026,-0.915,-0.352,0.591,-0.726,0,0.187,-0.982,0,0.599,-0.801,0,0.187,-0.982,-0.212,-0.024,-0.977,0,0.187,-0.982
,0.211,-0.024,-0.977,0.141,-0.59,-0.795,0.577,-0.186,-0.795,0.403,0.025,-0.915,0.712,-0.59,-0.38,0.577,-0.186,-0.795,0.471,-0.598,-0.649,0.577,-0.186,-0.795,0.746,0.025,-0.666,0.581,0.591,-0.559,0.934,0.187,-0.304,0.762,0.599,-0.248,0.934,0.187,-0.304,0.864,-0.024,-0.503,0.934,0.187,-0.304,0.995,-0.024,-0.101,0.935,-0.186,0.303
,0.995,0.026,0.1,0.582,-0.59,0.56,0.935,-0.186,0.303,0.763,-0.598,0.248,0.935,-0.186,0.303,0.864,0.026,0.503,0.711,0.591,0.38,0.578,0.188,0.794,0.471,0.599,0.647,0.578,0.188,0.794,0.746,-0.024,0.666,0.142,0.592,0.793,0.578,0.188,0.794,0.404,-0.024,0.915,0,0.76,0.65,0,1,-0.001,0.298,0.862,0.41
,0,1,-0.001,-0.298,0.862,0.41,0,1,-0.001,-0.482,0.862,-0.157,0,1,-0.001,0,0.862,-0.508,0,1,-0.001,0.483,0.862,-0.157,0,-1,0,0.484,-0.861,0.157,0,-1,0,0.299,-0.861,-0.411,0,-1,0,-0.299,-0.861,-0.412,0,-1,0,-0.483,-0.861,0.157,0,-1,0
,0,-0.861,0.508,-0.212,0.026,0.977,-0.746,-0.024,0.666,-0.864,0.026,0.503,-0.995,0.026,0.1,-0.864,-0.024,-0.503,-0.745,0.025,-0.666,-0.403,0.026,-0.915,0.211,-0.024,-0.977,0.403,0.025,-0.915,0.746,0.025,-0.666,0.995,-0.024,-0.101,0.995,0.026,0.1,0.864,0.026,0.503,0.404,-0.024,0.915,0.212,0.026,0.977,-0.298,0.862,0.41
,-0.482,0.862,-0.157,0,0.862,-0.508,0.483,0.862,-0.157,0.298,0.862,0.41,0.299,-0.861,-0.411,-0.483,-0.861,0.157,-0.471,-0.598,-0.649,-0.299,-0.861,-0.412,0.484,-0.861,0.157,0,-0.861,0.508,-0.212,0.026,0.977,0.212,0.026,0.977,0,-0.186,0.983,0,-0.598,0.802,0,-0.186,0.983,-0.403,-0.024,0.915,-0.746,-0.024,0.666
,-0.577,0.188,0.795,-0.471,0.6,0.647,-0.577,0.188,0.795,-0.762,-0.598,0.247,-0.995,0.026,0.1,-0.935,-0.186,0.303,-0.864,0.026,0.503,-0.935,-0.186,0.303,-0.995,-0.024,-0.101,-0.864,-0.024,-0.503,-0.934,0.187,-0.304,-0.761,0.599,-0.248,-0.934,0.187,-0.304,-0.471,-0.598,-0.649,-0.403,0.026,-0.915,-0.577,-0.186,-0.795,-0.745,0.025,-0.666
,-0.577,-0.186,-0.795,-0.212,-0.024,-0.977,0.211,-0.024,-0.977,0,0.187,-0.982,0,0.599,-0.801,0,0.187,-0.982,0.471,-0.598,-0.649,0.746,0.025,-0.666,0.577,-0.186,-0.795,0.403,0.025,-0.915,0.577,-0.186,-0.795,0.864,-0.024,-0.503,0.995,-0.024,-0.101,0.934,0.187,-0.304,0.762,0.599,-0.248,0.934,0.187,-0.304,0.763,-0.598,0.248
,0.864,0.026,0.503,0.935,-0.186,0.303,0.995,0.026,0.1,0.935,-0.186,0.303,0.746,-0.024,0.666,0.404,-0.024,0.915,0.578,0.188,0.794,0.471,0.599,0.647,0.578,0.188,0.794,-0.298,0.862,0.41,-0.482,0.862,-0.157,0,1,-0.001,0,0.862,-0.508,0,1,-0.001,0.483,0.862,-0.157,0,1,-0.001,0.298,0.862,0.41
,0,1,-0.001,0.299,-0.861,-0.411,-0.299,-0.861,-0.412,0,-1,0,-0.483,-0.861,0.157,0,-1,0,0,-0.861,0.508,0,-1,0,0.484,-0.861,0.157,0,-1,0,-0.403,-0.024,0.915,-0.746,-0.024,0.666,-0.864,0.026,0.503,-0.995,-0.024,-0.101,-0.864,-0.024,-0.503,-0.745,0.025,-0.666,-0.212,-0.024,-0.977
,0.211,-0.024,-0.977,0.403,0.025,-0.915,0.864,-0.024,-0.503,0.995,-0.024,-0.101,0.995,0.026,0.1,0.746,-0.024,0.666,0.404,-0.024,0.915,0.212,0.026,0.977,-0.298,0.862,0.41,-0.471,0.6,0.647,-0.482,0.862,-0.157,-0.761,0.599,-0.248,0,0.862,-0.508,0,0.599,-0.801,0.483,0.862,-0.157,0.762,0.599,-0.248,0.298,0.862,0.41
,0.471,0.599,0.647,0.299,-0.861,-0.411,0.471,-0.598,-0.649,-0.483,-0.861,0.157,-0.762,-0.598,0.247,-0.299,-0.861,-0.412,0.484,-0.861,0.157,0.763,-0.598,0.248,0,-0.861,0.508,0,-0.598,0.802]
,"tangents":[-0.573,0.8,0.175,1,-0.779,0.626,0.035,1,-0.701,0.625,0.342,1,-0.362,0.799,-0.48,1,-0.61,0.625,-0.487,1,-0.366,0.624,-0.691,1,-0.012,-0.8,-0.6,1,-0.208,-0.626,-0.752,1,0.108,-0.625,-0.773,1,-0.357,-0.798,0.485,1,-0.606,-0.626,0.492,1,-0.358,-0.618,0.7,1,-0.012,0.8
,0.599,1,-0.208,0.626,0.751,1,0.108,0.626,0.773,1,-0.572,0.798,0.191,1,-0.655,0.625,0.425,1,-0.777,0.617,0.125,1,-0.575,-0.8,-0.174,1,-0.78,-0.625,-0.034,1,-0.702,-0.625,-0.342,1,-0.566,-0.801,-0.196,1,-0.65,-0.627,-0.43,1,-0.768,-0.626,-0.136,1,-0.274,0.627,-0.73,1
,-0.343,0.801,-0.491,1,-0.554,0.713,-0.43,1,0.195,0.713,0.674,1,0.453,0.876,0.166,1,0.209,0.784,0.585,1,0.344,0.799,-0.493,1,0.271,0.946,0.179,1,-0.003,1,-0.027,1,-0.736,-0.665,-0.126,1,-0.118,-0.992,0.052,1,0.555,0.711,-0.432,1,0.465,0.876,0.131,1,0.513,0.783
,-0.352,1,0.325,0.946,0.013,1,-0.018,1,0.018,1,-0.671,-0.664,-0.331,1,-0.068,-0.991,-0.112,1,0.108,0.664,0.74,1,0.087,0.991,0.098,1,-0.581,0.712,0.394,1,-0.018,0.876,0.483,1,-0.491,0.784,0.38,1,0.087,-0.946,-0.312,1,-0.025,-1,0.012,1,-0.582,-0.712,-0.393,1
,-0.019,-0.876,-0.482,1,-0.493,-0.783,-0.379,1,0.088,0.946,0.313,1,-0.023,1,-0.01,1,0.107,-0.664,-0.74,1,0.086,-0.991,-0.099,1,-0.67,0.664,0.331,1,-0.067,0.991,0.113,1,-0.464,0.876,0.132,1,-0.513,0.784,-0.349,1,0.323,-0.946,-0.013,1,-0.019,-1,-0.02,1,0.195,-0.712
,-0.674,1,0.453,-0.876,-0.167,1,0.208,-0.783,-0.585,1,-0.27,0.946,0.18,1,0.003,1,-0.025,1,-0.747,0.654,0.125,1,-0.142,0.988,-0.055,1,-0.542,0.626,-0.561,1,-0.522,0.664,-0.535,1,-0.129,0.991,-0.029,1,-0.232,-0.709,0.665,1,0.276,-0.872,0.405,1,-0.165,-0.782,0.601,1
,-0.119,0.944,-0.308,1,-0.017,1,0.019,1,-0.705,0.709,0.016,1,-0.301,0.872,-0.387,1,-0.623,0.782,-0.028,1,0.257,-0.944,0.208,1,-0.022,-1,0.01,1,-0.348,0.662,-0.664,1,0.01,0.991,-0.135,1,-0.348,-0.654,0.671,1,0.01,-0.989,0.151,1,-0.701,-0.713,-0.023,1,-0.297,-0.876
,0.379,1,-0.62,-0.784,0.018,1,0.254,0.946,-0.203,1,-0.026,1,-0.007,1,-0.238,0.711,-0.661,1,0.269,0.875,-0.402,1,-0.175,0.783,-0.597,1,-0.112,-0.946,0.305,1,-0.012,-1,-0.023,1,0.543,0.624,-0.562,1,0.523,0.662,-0.537,1,0.131,0.991,-0.032,1,0.274,0.625,-0.731,1
,0.357,-0.001,-0.934,1,0.044,0.416,-0.908,1,-0.999,0,-0.05,1,-0.877,-0.417,0.24,1,-0.261,-0.001,-0.965,1,-0.499,-0.418,-0.76,1,-0.844,0.001,0.537,1,-0.571,0.417,0.707,1,-0.778,0,-0.628,1,-0.85,0.417,-0.323,1,-0.771,0,0.637,1,-0.849,-0.418,0.324,1,-0.357,0
,-0.934,1,-0.043,0.418,-0.907,1,-0.999,0,0.05,1,-0.876,0.418,-0.239,1,-0.261,0,0.965,1,-0.499,0.418,0.759,1,-0.837,0,-0.546,1,-0.568,-0.418,-0.709,1,0.712,0.689,0.136,1,0.324,0.86,0.394,1,-0.276,-0.86,-0.429,1,0.09,0.689,0.72,1,-0.275,0.86,0.43,1
,0.323,-0.86,-0.394,1,-0.656,0.689,0.308,1,-0.493,0.86,-0.128,1,-0.481,0.856,-0.188,1,0.498,-0.685,0.532,1,0.032,-0.857,0.515,1,0.029,0.859,-0.511,1,-0.349,-0.689,0.635,1,-0.474,-0.86,0.187,1,0.494,0.859,-0.13,1,0.443,0.505,-0.741,1,-0.841,-0.506,-0.191,1,-0.078,-0.506
,-0.859,1,-0.798,0.507,0.326,1,-0.567,0.505,-0.65,1,-0.555,-0.508,0.659,1,-0.841,0.506,0.191,1,-0.76,-0.099,0.643,1,-0.442,0.507,-0.74,1,-0.792,-0.507,-0.339,1,-0.078,0.506,0.859,1,0.712,0.689,0.136,1,0.494,0.859,-0.13,1,0.271,0.946,0.179,1,-0.992,0.099,0.074,1
,-0.736,-0.665,-0.126,1,0.657,0.689,0.307,1,0.324,0.86,0.394,1,0.325,0.946,0.013,1,-0.759,0.099,-0.643,1,-0.671,-0.664,-0.331,1,0.376,-0.099,0.921,1,0.09,0.689,0.72,1,-0.018,0.876,0.483,1,-0.276,-0.86,-0.429,1,0.087,-0.946,-0.312,1,0.09,-0.69,-0.719,1,-0.275,0.86
,0.43,1,0.088,0.946,0.313,1,0.377,0.099,-0.921,1,0.107,-0.664,-0.74,1,-0.76,-0.099,0.643,1,-0.656,0.689,0.308,1,-0.464,0.876,0.132,1,0.323,-0.86,-0.394,1,0.323,-0.946,-0.013,1,0.711,-0.689,-0.137,1,-0.493,0.86,-0.128,1,-0.27,0.946,0.18,1,-0.991,-0.108,-0.081,1
,-0.747,0.654,0.125,1,-0.846,-0.099,-0.524,1,0.498,-0.685,0.532,1,0.276,-0.872,0.405,1,-0.481,0.856,-0.188,1,-0.119,0.944,-0.308,1,-0.352,0.685,-0.638,1,0.032,-0.857,0.515,1,0.257,-0.944,0.208,1,-0.236,-0.099,-0.967,1,-0.348,0.662,-0.664,1,-0.229,0.109,0.967,1,-0.349,-0.689
,0.635,1,-0.297,-0.876,0.379,1,0.029,0.859,-0.511,1,0.254,0.946,-0.203,1,0.495,0.688,-0.53,1,-0.474,-0.86,0.187,1,-0.112,-0.946,0.305,1,0.846,-0.099,-0.524,1,0.523,0.662,-0.537,1,0.443,0.505,-0.741,1,-0.841,-0.506,-0.191,1,-0.999,0,-0.05,1,-0.078,-0.506,-0.859,1
,-0.261,-0.001,-0.965,1,-0.798,0.507,0.326,1,-0.844,0.001,0.537,1,-0.567,0.505,-0.65,1,-0.778,0,-0.628,1,-0.555,-0.508,0.659,1,-0.442,0.507,-0.74,1,-0.357,0,-0.934,1,-0.841,0.506,0.191,1,-0.999,0,0.05,1,-0.078,0.506,0.859,1,-0.261,0,0.965,1,-0.792,-0.507
,-0.339,1,-0.837,0,-0.546,1,0.657,0.689,0.307,1,0.324,0.86,0.394,1,-0.276,-0.86,-0.429,1,0.09,-0.69,-0.719,1,-0.275,0.86,0.43,1,0.323,-0.86,-0.394,1,0.711,-0.689,-0.137,1,-0.493,0.86,-0.128,1,-0.481,0.856,-0.188,1,-0.352,0.685,-0.638,1,0.032,-0.857,0.515,1
,0.029,0.859,-0.511,1,0.495,0.688,-0.53,1,-0.474,-0.86,0.187,1,0.494,0.859,-0.13,1,0.443,0.505,-0.741,1,-0.759,0.099,-0.643,1,-0.841,-0.506,-0.191,1,0.377,0.099,-0.921,1,-0.078,-0.506,-0.859,1,-0.991,-0.108,-0.081,1,-0.798,0.507,0.326,1,-0.236,-0.099,-0.967,1,-0.567,0.505
,-0.65,1,0.846,-0.099,-0.524,1,-0.555,-0.508,0.659,1,-0.846,-0.099,-0.524,1,-0.841,0.506,0.191,1,0.376,-0.099,0.921,1,-0.442,0.507,-0.74,1,-0.792,-0.507,-0.339,1,-0.229,0.109,0.967,1,-0.078,0.506,0.859,1,-0.992,0.099,0.074,1]
,"uvs":[0.404,0.27,0.287,0.337,0.349,0.232,0.221,0.411,0.338,0.344,0.277,0.448,0.405,0.157,0.288,0.224,0.349,0.119,0.224,0.3,0.34,0.232,0.28,0.337,0.405,0.493,0.287,0.56,0.349,0.455,0.224,0.187,0.341,0.119,0.281,0.224,0.403,0.381,0.286,0.448,0.348,0.344,0.222,0.522,0.34,0.455,0.278,0.56,0.286,0.108
,0.403,0.041,0.407,0.109,0.409,0.56,0.41,0.562,0.409,0.562,0.221,0.071,0.22,0.071,0.22,0.07,0.279,0.562,0.278,0.561,0.217,0.003,0.216,0.002,0.217,0.002,0.406,0.492,0.406,0.494,0.347,0.342,0.348,0.342,0.348,0.454,0.349,0.454,0.408,0.337,0.409,0.339,0.408,0.339,0.405,0.381,0.405,0.382,0.407,0.448
,0.408,0.45,0.407,0.45,0.405,0.269,0.405,0.271,0.348,0.117,0.35,0.118,0.348,0.231,0.349,0.231,0.409,0.11,0.407,0.11,0.406,0.156,0.406,0.157,0.409,0.224,0.41,0.225,0.409,0.226,0.405,0.041,0.405,0.042,0.281,0.226,0.28,0.225,0.348,0.004,0.347,0.002,0.348,0.003,0.219,0.233,0.218,0.232,0.219,0.231
,0.223,0.188,0.223,0.186,0.22,0.12,0.219,0.118,0.22,0.118,0.223,0.301,0.223,0.3,0.278,0.45,0.277,0.449,0.281,0.339,0.28,0.339,0.219,0.455,0.217,0.453,0.218,0.453,0.22,0.411,0.22,0.41,0.217,0.343,0.216,0.342,0.217,0.342,0.221,0.523,0.221,0.522,0.277,0.108,0.278,0.11,0.277,0.109,0.339,0.004
,0.342,0.002,0.34,0.005,0.283,0.45,0.284,0.447,0.284,0.225,0.286,0.222,0.344,0.117,0.343,0.12,0.342,0.342,0.34,0.345,0.344,0.23,0.342,0.233,0.283,0.11,0.284,0.107,0.284,0.339,0.285,0.336,0.284,0.562,0.285,0.559,0.343,0.453,0.342,0.456,0.41,0.561,0.405,0.492,0.404,0.38,0.41,0.337,0.404,0.269
,0.405,0.155,0.409,0.109,0.404,0.04,0.224,0.188,0.218,0.233,0.224,0.302,0.221,0.412,0.217,0.455,0.222,0.524,0.221,0.072,0.339,0.002,0.286,0.45,0.288,0.226,0.341,0.117,0.338,0.342,0.34,0.23,0.287,0.339,0.347,0.232,0.286,0.11,0.34,0.453,0.287,0.562,0.41,0.561,0.221,0.072,0.22,0.071,0.28,0.561
,0.279,0.562,0.216,0.003,0.405,0.492,0.406,0.492,0.346,0.343,0.347,0.342,0.347,0.454,0.41,0.337,0.409,0.339,0.404,0.38,0.405,0.381,0.409,0.449,0.404,0.269,0.405,0.269,0.348,0.118,0.348,0.117,0.347,0.232,0.409,0.109,0.409,0.11,0.405,0.155,0.406,0.156,0.41,0.224,0.404,0.04,0.405,0.041,0.282,0.225
,0.281,0.226,0.346,0.003,0.218,0.233,0.218,0.232,0.224,0.188,0.223,0.188,0.218,0.12,0.224,0.302,0.223,0.301,0.279,0.449,0.278,0.45,0.282,0.338,0.217,0.455,0.217,0.453,0.221,0.412,0.22,0.411,0.216,0.343,0.222,0.524,0.221,0.523,0.279,0.109,0.278,0.11,0.339,0.002,0.286,0.45,0.283,0.45,0.288,0.226
,0.284,0.225,0.341,0.117,0.344,0.117,0.338,0.342,0.342,0.342,0.34,0.23,0.286,0.11,0.283,0.11,0.287,0.339,0.284,0.339,0.287,0.562,0.284,0.562,0.34,0.453,0.343,0.453,0.216,0.003,0.405,0.492,0.404,0.38,0.409,0.449,0.404,0.269,0.405,0.155,0.41,0.224,0.404,0.04,0.224,0.188,0.218,0.12,0.224,0.302
,0.221,0.412,0.216,0.343,0.222,0.524,0.221,0.072,0.339,0.002,0.346,0.343,0.286,0.45,0.348,0.118,0.288,0.226,0.282,0.225,0.341,0.117,0.279,0.449,0.338,0.342,0.279,0.109,0.34,0.23,0.346,0.003,0.287,0.339,0.347,0.454,0.286,0.11,0.34,0.453,0.282,0.338,0.287,0.562,0.28,0.561]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,23,33,34,35,36,37,12,38,39,20,40,41,14,42,43,44,45,46
,18,47,48,49,50,51,0,52,53,8,54,55,2,56,57,26,58,59,6,60,61,62,63,64,25,65,66,17,67,68,69,70,71,72,73,74,15,75,76,77,78,79,9,80,81,5,82,83,11,84,85
,86,87,88,3,89,90,91,92,93,21,94,95,96,97,98,99,100,101,19,102,103,7,104,105,16,106,107,4,108,109,10,110,111,24,112,113,1,114,115,13,116,117,22,118,119,27,39,120,32,35,30
,14,121,12,122,20,41,44,53,123,48,49,18,2,124,0,125,8,55,26,66,126,61,62,6,69,127,25,128,17,68,72,81,129,76,77,15,11,130,9,131,5,83,86,95,132,90,91,3,23,133,21
,134,96,98,35,135,99,103,20,19,49,136,19,105,8,7,62,137,7,107,17,16,77,138,16,109,5,4,91,139,4,101,96,99,72,140,10,113,69,24,44,141,1,117,14,13,2,115,142,143,26,59
,86,144,22,111,11,10,27,145,13,119,23,22,99,30,35,0,44,1,3,91,4,6,62,7,9,72,10,12,27,13,15,77,16,18,49,19,21,86,22,24,69,25,27,146,28,30,147,148,23,149,150
,35,151,36,12,152,153,20,154,155,14,156,42,44,157,158,18,159,160,49,161,50,0,162,163,8,164,165,2,166,56,26,167,168,6,169,170,62,171,63,25,172,173,17,174,175,69,176,70,72,177,178
,15,179,180,77,181,78,9,182,183,5,184,185,11,186,84,86,187,188,3,189,190,91,191,92,21,192,193,96,194,195,99,196,100,19,197,198,7,199,200,16,201,202,4,203,204,10,205,110,24,206,207
,1,208,209,13,210,211,22,212,213,27,12,39,32,214,35,14,43,215,216,18,20,44,0,53,48,217,49,2,57,218,219,6,8,26,25,66,61,220,62,69,71,221,222,15,17,72,9,81,76,223,77
,11,85,224,225,3,5,86,21,95,90,226,91,23,34,227,228,30,96,35,37,229,103,230,20,49,51,231,105,232,8,62,64,233,107,234,17,77,79,235,109,236,5,91,93,237,101,238,96,72,74,239
,113,240,69,44,46,241,117,242,14,2,1,115,243,24,26,86,88,244,111,245,11,27,29,246,119,247,23,99,96,30]
}
,{"name":"d12","id":"d12","billboardMode":0,"position":[0.3,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false
,"positions":[-0.0364,0.0823,-0.0529,-0.0589,0.0204,-0.0838,0,-0.0178,-0.1029,0.039,0.0823,-0.0509,0.0615,0.0204,-0.0819,0.0979,-0.0178,-0.0318,-0.0364,-0.0823,0.0529,-0.0588,-0.0204,0.0838,0,0.0178,0.1029,-0.0363,-0.0841,0.0501,0.0364,-0.0841,0.0501,0.0589,-0.0841,-0.0192,-0.0615,-0.0823,-0.0183,-0.0979,-0.0204,-0.0301,-0.0979,0.0178,0.0318,-0.0016,-0.0823,-0.0641,-0.0017,-0.0204,-0.1024
,-0.0605,0.0178,-0.0832,0.039,-0.0823,0.0509,0.0615,-0.0204,0.0819,0.0979,0.0178,0.0318,-0.0016,0.0823,0.0641,-0.0016,0.0204,0.1024,-0.0605,-0.0178,0.0833,0.0588,0.0841,0.0191,0,0.0841,0.0619,-0.0589,0.0841,0.0192,0.0605,0.0823,0.0214,0.0969,0.0204,0.0332,0.0605,-0.0178,0.0832,0.0605,-0.0823,-0.0214,0.0969,-0.0204,-0.0332,0.0605,0.0178,-0.0833,-0.0615,0.0204,-0.0819
,-0.0609,0.0198,-0.0838,-0.0608,0.0202,-0.0836,-0.0609,0.0198,-0.0838,-0.0612,0.0195,-0.0835,-0.0609,0.0198,-0.0838,-0.0605,0.0195,-0.084,-0.0979,-0.0178,-0.0318,-0.0985,-0.0198,-0.032,-0.0983,-0.0195,-0.0324,-0.0985,-0.0198,-0.032,-0.0986,-0.0195,-0.0316,-0.0969,-0.0204,-0.0332,-0.0985,-0.0198,-0.032,-0.0983,-0.0202,-0.0319,-0.0609,-0.0838,-0.0198,-0.0612,-0.0834,-0.0199,-0.0588,-0.0841,-0.0191
,-0.0609,-0.0838,-0.0198,-0.0608,-0.0838,-0.0193,-0.0605,-0.0823,-0.0214,-0.0609,-0.0838,-0.0198,-0.0605,-0.0838,-0.0201,0,-0.0841,-0.0619,0,-0.0838,-0.064,-0.0004,-0.0838,-0.0638,0.0016,-0.0823,-0.0641,0,-0.0838,-0.064,0.0004,-0.0838,-0.0638,0,-0.0838,-0.064,0,-0.0834,-0.0644,0.0016,-0.0204,-0.1024,0,-0.0198,-0.1036,0,-0.0202,-0.1034,0,-0.0198,-0.1036
,0.0004,-0.0195,-0.1035,0,-0.0198,-0.1036,-0.0005,-0.0195,-0.1035,0.0609,0.0198,-0.0838,0.0612,0.0195,-0.0835,0.0588,0.0204,-0.0838,0.0609,0.0198,-0.0838,0.0607,0.0202,-0.0836,0.0609,0.0198,-0.0838,0.0605,0.0195,-0.084,0,0.0838,0.064,-0.0004,0.0838,0.0638,0.0016,0.0823,0.0641,0,0.0838,0.064,0.0004,0.0838,0.0638,0,0.0838,0.064,0,0.0834,0.0644
,0.0364,0.0823,-0.0529,0.0376,0.0838,-0.0518,0.0371,0.0838,-0.0518,0.0376,0.0838,-0.0518,0.0378,0.0834,-0.0521,0.0363,0.0841,-0.0501,0.0376,0.0838,-0.0518,0.0378,0.0838,-0.0513,0.0615,-0.0823,-0.0183,0.0609,-0.0838,-0.0198,0.0608,-0.0838,-0.0193,0.0609,-0.0838,-0.0198,0.0612,-0.0834,-0.0199,0.0609,-0.0838,-0.0198,0.0605,-0.0838,-0.0201,0.0985,-0.0198,-0.032,0.0986,-0.0195,-0.0316
,0.0985,-0.0198,-0.032,0.0983,-0.0195,-0.0324,0.0979,-0.0204,-0.0301,0.0985,-0.0198,-0.032,0.0983,-0.0202,-0.032,0.0979,0.0204,0.0301,0.0985,0.0198,0.032,0.0983,0.0202,0.0319,0.0985,0.0198,0.032,0.0986,0.0195,0.0316,0.0985,0.0198,0.032,0.0983,0.0195,0.0324,-0.0615,-0.0204,0.0819,-0.0609,-0.0198,0.0838,-0.0607,-0.0202,0.0836,-0.0609,-0.0198,0.0838,-0.0612,-0.0195,0.0835
,-0.0609,-0.0198,0.0838,-0.0605,-0.0195,0.084,0.0377,-0.0838,0.0518,0.0378,-0.0838,0.0513,0.0364,-0.0823,0.0529,0.0377,-0.0838,0.0518,0.0371,-0.0838,0.0518,0.0377,-0.0838,0.0518,0.0378,-0.0834,0.0521,0.0609,-0.0198,0.0838,0.0605,-0.0195,0.084,0.0609,-0.0198,0.0838,0.0612,-0.0195,0.0835,0.0589,-0.0204,0.0838,0.0609,-0.0198,0.0838,0.0608,-0.0202,0.0836,0.0017,0.0204,0.1024
,0,0.0198,0.1036,0,0.0202,0.1034,0,0.0198,0.1036,0.0005,0.0195,0.1035,0,0.0198,0.1036,-0.0004,0.0195,0.1035,-0.0969,0.0204,0.0332,-0.0985,0.0198,0.032,-0.0983,0.0202,0.032,-0.0985,0.0198,0.032,-0.0983,0.0195,0.0324,-0.0979,0.0204,0.0301,-0.0985,0.0198,0.032,-0.0986,0.0195,0.0316,-0.0376,-0.0838,0.0518,-0.0378,-0.0834,0.0521,-0.0376,-0.0838,0.0518
,-0.0371,-0.0838,0.0518,-0.039,-0.0823,0.0509,-0.0376,-0.0838,0.0518,-0.0378,-0.0838,0.0513,-0.0605,0.0823,0.0214,-0.0609,0.0838,0.0198,-0.0605,0.0838,0.0201,-0.0615,0.0823,0.0183,-0.0609,0.0838,0.0198,-0.0612,0.0834,0.0199,-0.0609,0.0838,0.0198,-0.0608,0.0838,0.0193,-0.0377,0.0838,-0.0518,-0.0378,0.0834,-0.0521,-0.0364,0.0841,-0.0501,-0.0377,0.0838,-0.0518,-0.0371,0.0838,-0.0518
,-0.039,0.0823,-0.0509,-0.0377,0.0838,-0.0518,-0.0378,0.0838,-0.0513,0.0615,0.0823,0.0183,0.0609,0.0838,0.0198,0.0608,0.0838,0.0193,0.0609,0.0838,0.0198,0.0612,0.0834,0.0199,0.0609,0.0838,0.0198,0.0605,0.0838,0.0201,-0.0983,-0.0195,-0.0324,-0.0612,-0.0834,-0.0199,-0.0004,-0.0838,-0.0638,-0.0605,-0.0838,-0.0201,0,-0.0202,-0.1034,0,-0.0834,-0.0644,-0.0605,0.0195,-0.084
,-0.0005,-0.0195,-0.1035,-0.0371,0.0838,-0.0518,0.0371,0.0838,-0.0518,0.0986,-0.0195,-0.0316,0.0983,-0.0202,-0.032,0.0612,0.0195,-0.0835,0.0983,-0.0195,-0.0324,0.0605,-0.0195,0.084,0.0005,0.0195,0.1035,-0.0371,-0.0838,0.0518,0.0371,-0.0838,0.0518,0.0608,-0.0202,0.0836,0.0983,0.0195,0.0324,0.0612,-0.0195,0.0835,-0.0983,0.0195,0.0324,-0.0986,0.0195,0.0316,-0.0986,-0.0195,-0.0316
,0.0983,0.0202,0.0319,0.0612,0.0834,0.0199,-0.0608,-0.0838,-0.0193,-0.0378,-0.0838,0.0513,-0.0983,0.0202,0.032,0.0605,-0.0838,-0.0201,0.0004,-0.0838,-0.0638,0.0004,-0.0195,-0.1035,0.0605,0.0195,-0.084,0.0378,-0.0838,0.0513,0.0608,-0.0838,-0.0193,0.0605,0.0838,0.0201,-0.0605,-0.0195,0.084,-0.0004,0.0195,0.1035,0,0.0202,0.1034,0,0.0834,0.0644,-0.0607,-0.0202,0.0836
,0.0378,0.0838,-0.0513,-0.0608,0.0838,0.0193,-0.0378,0.0838,-0.0513,0.0378,0.0834,-0.0521,-0.0004,0.0838,0.0638,-0.0608,0.0202,-0.0836,-0.0378,0.0834,-0.0521,-0.0612,0.0195,-0.0835,-0.0605,0.0195,-0.084,-0.0609,0.0198,-0.0838,-0.0608,0.0202,-0.0836,-0.0609,0.0198,-0.0838,-0.0986,-0.0195,-0.0316,-0.0983,-0.0202,-0.0319,-0.0985,-0.0198,-0.032,-0.0983,-0.0195,-0.0324,-0.0985,-0.0198,-0.032
,-0.0608,-0.0838,-0.0193,-0.0605,-0.0838,-0.0201,-0.0609,-0.0838,-0.0198,-0.0612,-0.0834,-0.0199,-0.0609,-0.0838,-0.0198,0.0004,-0.0838,-0.0638,0,-0.0834,-0.0644,0,-0.0838,-0.064,-0.0004,-0.0838,-0.0638,0,-0.0838,-0.064,0.0004,-0.0195,-0.1035,-0.0005,-0.0195,-0.1035,0,-0.0198,-0.1036,0,-0.0202,-0.1034,0,-0.0198,-0.1036,0.0607,0.0202,-0.0836,0.0605,0.0195,-0.084
,0.0609,0.0198,-0.0838,0.0612,0.0195,-0.0835,0.0609,0.0198,-0.0838,0.0004,0.0838,0.0638,0,0.0834,0.0644,0,0.0838,0.064,-0.0004,0.0838,0.0638,0,0.0838,0.064,0.0378,0.0834,-0.0521,0.0378,0.0838,-0.0513,0.0376,0.0838,-0.0518,0.0371,0.0838,-0.0518,0.0376,0.0838,-0.0518,0.0612,-0.0834,-0.0199,0.0605,-0.0838,-0.0201,0.0609,-0.0838,-0.0198,0.0608,-0.0838,-0.0193
,0.0609,-0.0838,-0.0198,0.0983,-0.0195,-0.0324,0.0983,-0.0202,-0.032,0.0985,-0.0198,-0.032,0.0986,-0.0195,-0.0316,0.0985,-0.0198,-0.032,0.0986,0.0195,0.0316,0.0983,0.0195,0.0324,0.0985,0.0198,0.032,0.0983,0.0202,0.0319,0.0985,0.0198,0.032,-0.0612,-0.0195,0.0835,-0.0605,-0.0195,0.084,-0.0609,-0.0198,0.0838,-0.0607,-0.0202,0.0836,-0.0609,-0.0198,0.0838,0.0371,-0.0838,0.0518
,0.0378,-0.0834,0.0521,0.0377,-0.0838,0.0518,0.0378,-0.0838,0.0513,0.0377,-0.0838,0.0518,0.0612,-0.0195,0.0835,0.0608,-0.0202,0.0836,0.0609,-0.0198,0.0838,0.0605,-0.0195,0.084,0.0609,-0.0198,0.0838,0.0005,0.0195,0.1035,-0.0004,0.0195,0.1035,0,0.0198,0.1036,0,0.0202,0.1034,0,0.0198,0.1036,-0.0983,0.0195,0.0324,-0.0986,0.0195,0.0316,-0.0985,0.0198,0.032
,-0.0983,0.0202,0.032,-0.0985,0.0198,0.032,-0.0371,-0.0838,0.0518,-0.0378,-0.0838,0.0513,-0.0376,-0.0838,0.0518,-0.0378,-0.0834,0.0521,-0.0376,-0.0838,0.0518,-0.0612,0.0834,0.0199,-0.0608,0.0838,0.0193,-0.0609,0.0838,0.0198,-0.0605,0.0838,0.0201,-0.0609,0.0838,0.0198,-0.0371,0.0838,-0.0518,-0.0378,0.0838,-0.0513,-0.0377,0.0838,-0.0518,-0.0378,0.0834,-0.0521,-0.0377,0.0838,-0.0518
,0.0612,0.0834,0.0199,0.0605,0.0838,0.0201,0.0609,0.0838,0.0198,0.0608,0.0838,0.0193,0.0609,0.0838,0.0198,-0.0983,-0.0195,-0.0324,-0.0612,0.0195,-0.0835,-0.0612,-0.0834,-0.0199,-0.0983,-0.0202,-0.0319,-0.0004,-0.0838,-0.0638,-0.0605,-0.0838,-0.0201,0,-0.0202,-0.1034,0,-0.0834,-0.0644,-0.0605,0.0195,-0.084,-0.0005,-0.0195,-0.1035,0.0371,0.0838,-0.0518,0.0986,0.0195,0.0316
,0.0983,-0.0202,-0.032,0.0612,-0.0834,-0.0199,0.0612,0.0195,-0.0835,0.0983,-0.0195,-0.0324,0.0005,0.0195,0.1035,0.0371,-0.0838,0.0518,0.0378,-0.0834,0.0521,0.0983,0.0195,0.0324,0.0612,-0.0195,0.0835,-0.0983,0.0195,0.0324,-0.0612,-0.0195,0.0835,-0.0986,0.0195,0.0316,-0.0986,-0.0195,-0.0316,0.0983,0.0202,0.0319,0.0612,0.0834,0.0199,-0.0608,-0.0838,-0.0193,-0.0378,-0.0838,0.0513
,-0.0612,0.0834,0.0199,0.0605,-0.0838,-0.0201,0.0004,-0.0838,-0.0638,0.0605,0.0195,-0.084,0.0378,-0.0838,0.0513,0.0608,-0.0838,-0.0193,0.0004,0.0838,0.0638,-0.0004,0.0195,0.1035,0,0.0834,0.0644,-0.0607,-0.0202,0.0836,-0.0378,-0.0834,0.0521,0.0608,0.0838,0.0193,-0.0608,0.0838,0.0193,-0.0378,0.0838,-0.0513,0.0607,0.0202,-0.0836,-0.0605,0.0838,0.0201,-0.0378,0.0834,-0.0521
]
,"normals":[-0.073,0.554,-0.829,-0.161,0.393,-0.905,0.015,0.325,-0.946,0.766,0.555,-0.326,0.811,0.393,-0.433,0.897,0.333,-0.291,-0.09,-0.549,0.831,-0.151,-0.377,0.914,0,-0.333,0.943,-0.068,-0.989,0.129,0.115,-0.986,0.122,0.121,-0.991,-0.056,-0.822,-0.54,0.18,-0.911,-0.393,0.127,-0.897,-0.333,0.292,-0.411,-0.536,-0.737,-0.415,-0.377,-0.828
,-0.568,-0.325,-0.756,0.771,-0.54,0.338,0.811,-0.393,0.433,0.897,-0.333,0.291,-0.428,0.554,0.714,-0.395,0.412,0.821,-0.557,0.319,0.767,0.142,0.989,0.031,0.019,0.986,0.166,-0.132,0.99,0.043,0.561,0.549,0.619,0.659,0.377,0.651,0.544,0.325,0.774,0.575,-0.536,-0.619,0.659,-0.377,-0.651,0.554,-0.333,-0.763,-0.811,0.393,-0.433
,-0.577,0.188,-0.794,-0.52,0.466,-0.716,-0.577,0.188,-0.794,-0.773,0.037,-0.634,-0.577,0.188,-0.794,-0.373,0.004,-0.928,-0.897,0.333,-0.291,-0.934,-0.188,-0.303,-0.834,-0.028,-0.551,-0.934,-0.188,-0.303,-0.998,-0.004,-0.068,-0.659,-0.412,-0.629,-0.934,-0.188,-0.303,-0.842,-0.466,-0.273,-0.577,-0.795,-0.188,-0.781,-0.57,-0.254,-0.142,-0.989,-0.031
,-0.577,-0.795,-0.188,-0.544,-0.831,0.115,-0.546,-0.555,-0.628,-0.577,-0.795,-0.188,-0.34,-0.866,-0.367,-0.019,-0.986,-0.166,0,-0.794,-0.608,-0.278,-0.83,-0.483,0.428,-0.554,-0.714,0,-0.794,-0.608,0.245,-0.865,-0.438,0,-0.794,-0.608,0.033,-0.575,-0.817,0.402,-0.393,-0.827,0,-0.188,-0.982,-0.033,-0.474,-0.88,0,-0.188,-0.982
,0.252,-0.037,-0.967,0,-0.188,-0.982,-0.244,-0.004,-0.97,0.577,0.188,-0.795,0.767,0.004,-0.641,0.152,0.396,-0.905,0.577,0.188,-0.795,0.49,0.474,-0.731,0.577,0.188,-0.795,0.351,0.028,-0.936,0,0.794,0.608,-0.245,0.865,0.438,0.425,0.54,0.726,0,0.794,0.608,0.278,0.83,0.483,0,0.794,0.608,0,0.57,0.822
,0.101,0.536,-0.838,0.357,0.795,-0.491,0.053,0.849,-0.525,0.357,0.795,-0.491,0.507,0.575,-0.642,0.078,0.991,-0.113,0.357,0.795,-0.491,0.453,0.866,-0.21,0.818,-0.549,0.171,0.579,-0.793,-0.188,0.493,-0.865,0.097,0.579,-0.793,-0.188,0.772,-0.583,-0.251,0.579,-0.793,-0.188,0.374,-0.83,-0.414,0.934,-0.188,-0.304,0.998,-0.004,-0.068
,0.934,-0.188,-0.304,0.847,-0.004,-0.532,0.916,-0.377,0.139,0.934,-0.188,-0.304,0.834,-0.48,-0.271,0.911,0.393,-0.127,0.934,0.188,0.303,0.826,0.474,0.303,0.934,0.188,0.303,0.998,0.004,0.068,0.934,0.188,0.303,0.847,0.004,0.531,-0.822,-0.377,0.426,-0.577,-0.188,0.795,-0.515,-0.48,0.71,-0.577,-0.188,0.795,-0.772,-0.037,0.634
,-0.577,-0.188,0.795,-0.364,-0.037,0.931,0.357,-0.794,0.492,0.509,-0.83,0.228,0.101,-0.536,0.838,0.357,-0.794,0.492,0.053,-0.849,0.526,0.357,-0.794,0.492,0.508,-0.575,0.642,0.577,-0.188,0.794,0.364,-0.037,0.931,0.577,-0.188,0.794,0.767,-0.004,0.641,0.151,-0.377,0.914,0.577,-0.188,0.794,0.49,-0.474,0.731,0.395,0.412,0.821
,0,0.188,0.982,0,0.466,0.885,0,0.188,0.982,0.266,0.028,0.964,0,0.188,0.982,-0.266,0.028,0.964,-0.655,0.396,0.643,-0.934,0.188,0.304,-0.826,0.474,0.304,-0.934,0.188,0.304,-0.834,0.028,0.551,-0.911,0.393,-0.127,-0.934,0.188,0.304,-0.998,0.004,0.068,-0.357,-0.795,0.491,-0.477,-0.584,0.657,-0.357,-0.795,0.491
,-0.069,-0.848,0.525,-0.762,-0.549,0.343,-0.357,-0.795,0.491,-0.453,-0.866,0.21,-0.575,0.536,0.619,-0.579,0.794,0.188,-0.374,0.83,0.414,-0.822,0.54,-0.18,-0.579,0.794,0.188,-0.788,0.575,0.221,-0.579,0.794,0.188,-0.546,0.83,-0.115,-0.357,0.794,-0.492,-0.483,0.57,-0.665,-0.082,0.986,-0.146,-0.357,0.794,-0.492,-0.069,0.848,-0.526
,-0.766,0.554,-0.326,-0.357,0.794,-0.492,-0.455,0.865,-0.21,0.822,0.54,-0.18,0.577,0.795,0.188,0.544,0.831,-0.115,0.577,0.795,0.188,0.788,0.575,0.221,0.577,0.795,0.188,0.34,0.866,0.367,-0.834,-0.028,-0.551,-0.781,-0.57,-0.254,-0.278,-0.83,-0.483,-0.34,-0.866,-0.367,-0.033,-0.474,-0.88,0.033,-0.575,-0.817,-0.373,0.004,-0.928
,-0.244,-0.004,-0.97,-0.069,0.848,-0.526,0.053,0.849,-0.525,0.998,-0.004,-0.068,0.834,-0.48,-0.271,0.767,0.004,-0.641,0.847,-0.004,-0.532,0.364,-0.037,0.931,0.266,0.028,0.964,-0.069,-0.848,0.525,0.053,-0.849,0.526,0.49,-0.474,0.731,0.847,0.004,0.531,0.767,-0.004,0.641,-0.834,0.028,0.551,-0.998,0.004,0.068,-0.998,-0.004,-0.068
,0.826,0.474,0.303,0.788,0.575,0.221,-0.544,-0.831,0.115,-0.453,-0.866,0.21,-0.826,0.474,0.304,0.374,-0.83,-0.414,0.245,-0.865,-0.438,0.252,-0.037,-0.967,0.351,0.028,-0.936,0.509,-0.83,0.228,0.493,-0.865,0.097,0.34,0.866,0.367,-0.364,-0.037,0.931,-0.266,0.028,0.964,0,0.466,0.885,0,0.57,0.822,-0.515,-0.48,0.71
,0.453,0.866,-0.21,-0.546,0.83,-0.115,-0.455,0.865,-0.21,0.507,0.575,-0.642,-0.245,0.865,0.438,-0.52,0.466,-0.716,-0.483,0.57,-0.665,-0.773,0.037,-0.634,-0.373,0.004,-0.928,-0.577,0.188,-0.794,-0.52,0.466,-0.716,-0.577,0.188,-0.794,-0.998,-0.004,-0.068,-0.842,-0.466,-0.273,-0.934,-0.188,-0.303,-0.834,-0.028,-0.551,-0.934,-0.188,-0.303
,-0.544,-0.831,0.115,-0.34,-0.866,-0.367,-0.577,-0.795,-0.188,-0.781,-0.57,-0.254,-0.577,-0.795,-0.188,0.245,-0.865,-0.438,0.033,-0.575,-0.817,0,-0.794,-0.608,-0.278,-0.83,-0.483,0,-0.794,-0.608,0.252,-0.037,-0.967,-0.244,-0.004,-0.97,0,-0.188,-0.982,-0.033,-0.474,-0.88,0,-0.188,-0.982,0.49,0.474,-0.731,0.351,0.028,-0.936
,0.577,0.188,-0.795,0.767,0.004,-0.641,0.577,0.188,-0.795,0.278,0.83,0.483,0,0.57,0.822,0,0.794,0.608,-0.245,0.865,0.438,0,0.794,0.608,0.507,0.575,-0.642,0.453,0.866,-0.21,0.357,0.795,-0.491,0.053,0.849,-0.525,0.357,0.795,-0.491,0.772,-0.583,-0.251,0.374,-0.83,-0.414,0.579,-0.793,-0.188,0.493,-0.865,0.097
,0.579,-0.793,-0.188,0.847,-0.004,-0.532,0.834,-0.48,-0.271,0.934,-0.188,-0.304,0.998,-0.004,-0.068,0.934,-0.188,-0.304,0.998,0.004,0.068,0.847,0.004,0.531,0.934,0.188,0.303,0.826,0.474,0.303,0.934,0.188,0.303,-0.772,-0.037,0.634,-0.364,-0.037,0.931,-0.577,-0.188,0.795,-0.515,-0.48,0.71,-0.577,-0.188,0.795,0.053,-0.849,0.526
,0.508,-0.575,0.642,0.357,-0.794,0.492,0.509,-0.83,0.228,0.357,-0.794,0.492,0.767,-0.004,0.641,0.49,-0.474,0.731,0.577,-0.188,0.794,0.364,-0.037,0.931,0.577,-0.188,0.794,0.266,0.028,0.964,-0.266,0.028,0.964,0,0.188,0.982,0,0.466,0.885,0,0.188,0.982,-0.834,0.028,0.551,-0.998,0.004,0.068,-0.934,0.188,0.304
,-0.826,0.474,0.304,-0.934,0.188,0.304,-0.069,-0.848,0.525,-0.453,-0.866,0.21,-0.357,-0.795,0.491,-0.477,-0.584,0.657,-0.357,-0.795,0.491,-0.788,0.575,0.221,-0.546,0.83,-0.115,-0.579,0.794,0.188,-0.374,0.83,0.414,-0.579,0.794,0.188,-0.069,0.848,-0.526,-0.455,0.865,-0.21,-0.357,0.794,-0.492,-0.483,0.57,-0.665,-0.357,0.794,-0.492
,0.788,0.575,0.221,0.34,0.866,0.367,0.577,0.795,0.188,0.544,0.831,-0.115,0.577,0.795,0.188,-0.834,-0.028,-0.551,-0.773,0.037,-0.634,-0.781,-0.57,-0.254,-0.842,-0.466,-0.273,-0.278,-0.83,-0.483,-0.34,-0.866,-0.367,-0.033,-0.474,-0.88,0.033,-0.575,-0.817,-0.373,0.004,-0.928,-0.244,-0.004,-0.97,0.053,0.849,-0.525,0.998,0.004,0.068
,0.834,-0.48,-0.271,0.772,-0.583,-0.251,0.767,0.004,-0.641,0.847,-0.004,-0.532,0.266,0.028,0.964,0.053,-0.849,0.526,0.508,-0.575,0.642,0.847,0.004,0.531,0.767,-0.004,0.641,-0.834,0.028,0.551,-0.772,-0.037,0.634,-0.998,0.004,0.068,-0.998,-0.004,-0.068,0.826,0.474,0.303,0.788,0.575,0.221,-0.544,-0.831,0.115,-0.453,-0.866,0.21
,-0.788,0.575,0.221,0.374,-0.83,-0.414,0.245,-0.865,-0.438,0.351,0.028,-0.936,0.509,-0.83,0.228,0.493,-0.865,0.097,0.278,0.83,0.483,-0.266,0.028,0.964,0,0.57,0.822,-0.515,-0.48,0.71,-0.477,-0.584,0.657,0.544,0.831,-0.115,-0.546,0.83,-0.115,-0.455,0.865,-0.21,0.49,0.474,-0.731,-0.374,0.83,0.414,-0.483,0.57,-0.665
]
,"tangents":[-0.882,0.352,0.314,1,-0.972,0.097,0.215,1,-0.915,0.386,0.118,1,-0.256,-0.201,-0.945,1,-0.312,-0.335,-0.889,1,-0.152,-0.387,-0.91,1,0.882,0.343,0.323,1,0.974,0.101,0.202,1,0.913,0.386,0.136,1,-0.159,0.138,0.978,1,0.129,0.136,0.982,1,-0.096,-0.067,0.993,1,0.029,-0.355
,-0.935,1,-0.095,-0.1,-0.99,1,-0.152,-0.388,-0.909,1,-0.904,0.344,0.254,1,-0.907,0.102,0.409,1,-0.809,0.388,0.441,1,0.572,0.353,-0.74,1,0.505,0.098,-0.858,1,0.412,0.387,-0.825,1,0.898,0.352,0.265,1,0.915,0.092,0.393,1,0.815,0.385,0.432,1,0.705,-0.123,0.699,1
,0.473,-0.155,0.868,1,0.665,0.057,0.745,1,0.524,0.343,-0.78,1,0.669,0.102,-0.737,1,0.67,0.388,-0.633,1,0.178,-0.656,0.734,1,0.314,-0.648,0.694,1,0.197,-0.838,0.509,1,0.312,-0.335,-0.889,1,0.658,-0.468,-0.589,1,0.463,-0.551,-0.695,1,-0.691,0.407,0.598,1,-0.334,0.825
,0.456,1,-0.816,-0.133,0.562,1,-0.922,0.114,0.371,1,0.152,-0.387,-0.909,1,0.355,-0.407,-0.842,1,0.327,-0.83,-0.452,1,0.283,0.129,-0.95,1,0.068,-0.117,-0.991,1,-0.752,0.335,0.568,1,-0.357,0.468,0.808,1,-0.517,0.551,0.655,1,0.436,-0.106,-0.894,1,0.501,-0.331,-0.799,1
,0.112,-0.047,0.993,1,0.027,-0.248,0.968,1,-0.217,0.271,0.938,1,-0.82,0.201,0.536,1,-0.693,0.356,0.627,1,-0.94,0.322,0.11,1,0.016,-0.166,0.986,1,0.029,-0.608,0.794,1,-0.139,-0.463,0.876,1,0.153,-0.734,0.662,1,0.104,-0.605,0.79,1,-0.485,-0.5,0.717,1,-0.985,0.105
,-0.137,1,-0.912,0.317,-0.26,1,0.462,-0.692,0.554,1,0.644,-0.751,0.144,1,0.443,-0.796,0.412,1,-0.911,0.405,-0.077,1,-0.539,0.824,-0.172,1,-0.991,-0.132,0.026,1,-0.963,0.115,0.242,1,-0.659,-0.468,-0.589,1,-0.613,-0.289,-0.735,1,-0.943,0.331,-0.014,1,-0.764,0.468,-0.444,1
,-0.823,0.527,-0.21,1,0.399,-0.914,0.073,1,0.168,-0.985,0.033,1,0.38,-0.562,0.734,1,0.522,-0.263,0.811,1,0.767,0.211,-0.606,1,0.81,0.356,-0.466,1,0.39,0.362,-0.847,1,0.985,0.105,-0.138,1,0.916,0.33,-0.229,1,-0.974,0.225,0.026,1,-0.929,0.357,-0.098,1,-0.818,0.339
,0.465,1,-0.38,-0.357,-0.853,1,-0.795,0.024,-0.607,1,0.496,0.059,0.866,1,0.547,0.249,0.799,1,0.752,-0.245,0.612,1,0.336,0.215,-0.917,1,0.192,0.357,-0.914,1,0.696,0.324,-0.641,1,-0.121,-0.312,0.942,1,-0.123,-0.525,0.842,1,-0.028,-0.25,0.968,1,-0.451,-0.553,0.7,1
,-0.355,-0.405,-0.842,1,-0.068,0.026,-0.997,1,0.148,-0.57,0.808,1,0.221,-0.907,0.358,1,0.274,0.333,-0.902,1,-0.186,0.468,-0.864,1,0.041,0.544,-0.838,1,-0.095,-0.099,-0.99,1,0.283,0.13,-0.95,1,0.152,0.331,-0.931,1,0.207,0.407,-0.89,1,0.035,0.829,-0.559,1,0.33,-0.132
,-0.935,1,0.527,0.115,-0.842,1,-0.309,-0.332,-0.891,1,-0.659,-0.468,-0.589,1,-0.46,-0.544,-0.702,1,0.692,0.405,0.598,1,0.335,0.824,0.456,1,0.817,-0.133,0.562,1,0.924,0.107,0.366,1,0.126,0.563,0.817,1,0.029,0.281,0.959,1,0.974,0.225,0.026,1,0.929,0.357,-0.099,1
,0.818,0.339,0.465,1,0.877,0.105,-0.469,1,0.862,0.339,-0.377,1,0.782,0.407,-0.472,1,0.536,0.825,-0.177,1,0.787,-0.132,-0.603,1,0.637,0.115,-0.762,1,0.943,0.332,-0.019,1,0.764,0.468,-0.444,1,0.823,0.527,-0.21,1,0.773,0.335,-0.539,1,0.879,0.468,-0.09,1,0.783,0.551
,-0.29,1,0.911,0.405,-0.078,1,0.532,0.829,-0.171,1,0.991,-0.133,0.025,1,0.959,0.107,0.262,1,0.755,0.331,0.566,1,0.357,0.468,0.808,1,0.543,0.527,0.654,1,-0.356,-0.406,-0.842,1,-0.327,-0.83,-0.452,1,0.095,-0.098,-0.991,1,-0.282,0.132,-0.95,1,-0.068,-0.115,-0.991,1
,0.716,0.105,0.69,1,0.604,0.325,0.728,1,-0.16,0.57,0.806,1,-0.399,0.506,0.765,1,-0.266,-0.216,-0.939,1,-0.381,-0.356,-0.853,1,0.188,-0.323,-0.928,1,0.803,0.225,0.551,1,0.693,0.357,0.626,1,0.925,0.363,0.11,1,-0.028,-0.353,-0.935,1,-0.435,-0.105,-0.894,1,-0.476,-0.339
,-0.812,1,0.593,0.251,0.765,1,0.777,0.553,0.299,1,-0.716,0.105,0.69,1,-0.606,0.33,0.724,1,0.567,0.166,0.807,1,0.443,0.608,0.659,1,0.62,0.449,0.643,1,0.257,-0.201,-0.945,1,0.382,-0.356,-0.853,1,-0.187,-0.324,-0.928,1,0.029,-0.355,-0.934,1,0.437,-0.107,-0.893,1
,0.117,-0.21,-0.971,1,0.175,0.104,-0.979,1,0.034,0.317,-0.948,1,0.603,-0.57,0.558,1,0.781,-0.477,0.403,1,-0.532,0.301,0.791,1,-0.303,-0.009,0.953,1,-0.959,0.209,0.192,1,0.518,-0.498,0.695,1,-0.937,-0.29,0.192,1,0.582,-0.653,0.483,1,-0.928,-0.025,0.373,1,-0.969,-0.028
,0.244,1,-0.89,0.185,0.416,1,-0.013,0.527,0.85,1,-0.064,0.289,-0.955,1,0.286,-0.043,0.957,1,0.343,-0.847,0.405,1,-0.301,-0.828,-0.473,1,0.893,0.299,-0.338,1,0.917,0.301,-0.262,1,0.891,0.184,0.416,1,0.354,0.509,0.785,1,0.669,-0.333,-0.664,1,0.531,-0.024,-0.847,1
,0.641,-0.025,-0.767,1,0.533,0.3,0.791,1,-0.068,0.024,-0.997,1,0.068,0.024,-0.997,1,0.472,-0.29,-0.832,1,0.477,-0.342,-0.81,1,0.116,-0.209,-0.971,1,-0.076,0.272,0.959,1,-0.151,0.333,-0.931,1,0.109,-0.404,0.908,1,0.15,-0.413,0.899,1,0.792,-0.566,0.228,1,-0.896,0.3
,-0.327,1,0.663,0.209,-0.719,1,0.22,0.232,0.947,1,0.481,0.175,-0.859,1,0.931,-0.018,0.364,1,0.964,-0.022,0.267,1,0.936,-0.312,0.164,1,1,-0.009,0.006,1,0.857,-0.311,0.412,1,0.189,-0.323,-0.927,1,-0.114,-0.209,-0.971,1,0.407,0.413,0.815,1,-0.79,0.013,-0.613,1
,0.966,0.176,0.191,1,-0.854,-0.312,0.417,1,0.813,0.01,-0.583,1,0.597,-0.299,-0.745,1,-0.928,-0.025,0.373,1,-0.691,0.407,0.598,1,-0.854,-0.312,0.417,1,-0.816,-0.133,0.562,1,0.068,0.024,-0.997,1,0.134,0.31,-0.941,1,0.283,0.129,-0.95,1,-0.532,0.301,0.791,1,-0.357,0.468
,0.808,1,0.116,-0.209,-0.971,1,0.518,-0.498,0.695,1,0.027,-0.248,0.968,1,-0.303,-0.009,0.953,1,-0.693,0.356,0.627,1,0.15,-0.413,0.899,1,0.582,-0.653,0.483,1,0.104,-0.605,0.79,1,-0.959,0.209,0.192,1,-0.985,0.105,-0.137,1,0.792,-0.566,0.228,1,-0.969,-0.028,0.244,1
,-0.911,0.405,-0.077,1,-0.937,-0.29,0.192,1,-0.991,-0.132,0.026,1,-0.465,-0.567,-0.68,1,-0.896,0.3,-0.327,1,-0.764,0.468,-0.444,1,0.343,-0.847,0.405,1,0.399,-0.914,0.073,1,0.16,-0.536,0.829,1,1,-0.009,0.006,1,0.81,0.356,-0.466,1,0.966,0.176,0.191,1,0.985,0.105
,-0.138,1,-0.79,0.013,-0.613,1,0.189,-0.323,-0.927,1,-0.38,-0.357,-0.853,1,-0.013,0.527,0.85,1,0.547,0.249,0.799,1,-0.311,-0.003,-0.95,1,0.109,-0.404,0.908,1,-0.121,-0.312,0.942,1,0.22,0.232,0.947,1,-0.028,-0.25,0.968,1,-0.301,-0.828,-0.473,1,0.286,-0.043,0.957,1
,0.148,-0.57,0.808,1,-0.064,0.289,-0.955,1,-0.186,0.468,-0.864,1,0.068,-0.117,-0.991,1,0.531,-0.024,-0.847,1,0.207,0.407,-0.89,1,0.472,-0.29,-0.832,1,0.33,-0.132,-0.935,1,-0.597,-0.299,-0.745,1,0.931,-0.018,0.364,1,0.692,0.405,0.598,1,0.857,-0.311,0.412,1,0.817,-0.133
,0.562,1,0.354,0.509,0.785,1,0.79,0.013,-0.613,1,0.929,0.357,-0.099,1,0.663,0.209,-0.719,1,0.877,0.105,-0.469,1,0.641,-0.025,-0.767,1,0.669,-0.333,-0.664,1,0.787,-0.132,-0.603,1,0.893,0.299,-0.338,1,0.764,0.468,-0.444,1,0.917,0.301,-0.262,1,0.964,-0.022,0.267,1
,0.911,0.405,-0.078,1,0.936,-0.312,0.164,1,0.991,-0.133,0.025,1,0.533,0.3,0.791,1,-0.068,0.024,-0.997,1,-0.356,-0.406,-0.842,1,-0.151,0.333,-0.931,1,-0.282,0.132,-0.95,1,0.891,0.184,0.416,1,-0.076,0.272,0.959,1,-0.16,0.57,0.806,1,-0.81,0.003,-0.586,1,-0.381,-0.356
,-0.853,1,0.279,0.013,0.96,1,-0.114,-0.209,-0.971,1,-0.435,-0.105,-0.894,1,0.406,-0.255,0.878,1,0.593,0.251,0.765,1,-0.89,0.185,0.416,1,0.407,0.413,0.815,1,0.443,0.608,0.659,1,0.813,0.01,-0.583,1,0.382,-0.356,-0.853,1,0.477,-0.342,-0.81,1,0.481,0.175,-0.859,1
,0.175,0.104,-0.979,1,0.6,-0.29,0.745,1,0.603,-0.57,0.558,1,-0.532,0.301,0.791,1,0.597,-0.299,-0.745,1,-0.303,-0.009,0.953,1,0.134,0.31,-0.941,1,-0.959,0.209,0.192,1,0.518,-0.498,0.695,1,-0.937,-0.29,0.192,1,0.582,-0.653,0.483,1,-0.928,-0.025,0.373,1,-0.969,-0.028
,0.244,1,-0.013,0.527,0.85,1,0.068,-0.117,-0.991,1,0.286,-0.043,0.957,1,-0.311,-0.003,-0.95,1,0.343,-0.847,0.405,1,-0.301,-0.828,-0.473,1,0.917,0.301,-0.262,1,0.354,0.509,0.785,1,0.79,0.013,-0.613,1,0.531,-0.024,-0.847,1,0.641,-0.025,-0.767,1,0.533,0.3,0.791,1
,-0.597,-0.299,-0.745,1,-0.068,0.024,-0.997,1,0.068,0.024,-0.997,1,0.472,-0.29,-0.832,1,0.477,-0.342,-0.81,1,0.116,-0.209,-0.971,1,-0.076,0.272,0.959,1,0.279,0.013,0.96,1,0.109,-0.404,0.908,1,0.15,-0.413,0.899,1,-0.896,0.3,-0.327,1,0.663,0.209,-0.719,1,0.22,0.232
,0.947,1,0.16,-0.536,0.829,1,0.964,-0.022,0.267,1,1,-0.009,0.006,1,0.857,-0.311,0.412,1,-0.81,0.003,-0.586,1,0.6,-0.29,0.745,1,-0.114,-0.209,-0.971,1,0.407,0.413,0.815,1,-0.465,-0.567,-0.68,1,0.406,-0.255,0.878,1,0.813,0.01,-0.583,1]
,"uvs":[0.213,0.66,0.213,0.742,0.134,0.767,0.082,0.564,0.13,0.63,0.082,0.697,0.003,0.111,0.003,0.028,0.081,0.003,0.213,0.8,0.213,0.882,0.134,0.907,0.213,0.38,0.213,0.463,0.134,0.487,0.003,0.811,0.003,0.729,0.082,0.704,0.004,0.25,0.004,0.168,0.083,0.143,0.213,0.52,0.213,0.602,0.134,0.627,0.214,0.098
,0.214,0.181,0.135,0.206,0.214,0.239,0.214,0.321,0.135,0.346,0.13,0.491,0.082,0.557,0.003,0.532,0.13,0.35,0.132,0.35,0.131,0.35,0.082,0.703,0.083,0.704,0.214,0.743,0.213,0.744,0.081,0.283,0.082,0.282,0.083,0.282,0.214,0.464,0.213,0.464,0.13,0.771,0.132,0.771,0.131,0.772,0.214,0.379,0.214,0.38
,0.135,0.775,0.134,0.773,0.135,0.773,0.082,0.837,0.082,0.839,0.081,0.838,0.086,0.841,0.084,0.841,0.085,0.84,0.081,0.424,0.082,0.423,0.082,0.423,0.002,0.813,0.002,0.812,0.003,0.45,0.002,0.449,0.003,0.448,0.134,0.769,0.133,0.768,0.002,0.728,0.003,0.728,0.132,0.63,0.131,0.631,0.086,0.701,0.084,0.701
,0.085,0.7,0.002,0.533,0.002,0.532,0.215,0.182,0.214,0.182,0.136,0.213,0.135,0.211,0.136,0.212,0.214,0.519,0.214,0.52,0.134,0.635,0.134,0.633,0.135,0.633,0.082,0.562,0.083,0.563,0.136,0.073,0.135,0.071,0.136,0.071,0.083,0.276,0.083,0.278,0.082,0.277,0.131,0.491,0.131,0.491,0.134,0.909,0.133,0.908
,0.082,0.698,0.081,0.698,0.082,0.559,0.081,0.559,0.131,0.21,0.133,0.21,0.132,0.211,0.003,0.672,0.002,0.673,0.002,0.672,0.083,0.142,0.084,0.143,0.215,0.322,0.214,0.322,0.086,0.421,0.084,0.421,0.085,0.42,0.134,0.629,0.133,0.628,0.002,0.027,0.003,0.027,0.214,0.883,0.213,0.884,0.081,0.136,0.082,0.138
,0.081,0.137,0.003,0.251,0.003,0.25,0.135,0.347,0.134,0.346,0.003,0.167,0.004,0.167,0.13,0.07,0.132,0.07,0.131,0.071,0.087,0.279,0.085,0.279,0.086,0.278,0.082,0.002,0.082,0.003,0.214,0.603,0.213,0.603,0.086,0.561,0.084,0.561,0.085,0.56,0.134,0.489,0.133,0.488,0.003,0.308,0.002,0.307,0.003,0.307
,0.002,0.112,0.002,0.111,0.214,0.799,0.214,0.8,0.134,0.355,0.134,0.353,0.135,0.353,0.134,0.495,0.134,0.493,0.135,0.493,0.003,0.39,0.002,0.391,0.002,0.39,0.135,0.207,0.134,0.207,0.214,0.659,0.214,0.66,0.087,0.139,0.085,0.139,0.086,0.138,0.081,0.416,0.082,0.417,0.081,0.417,0.003,0.59,0.002,0.589
,0.003,0.588,0.215,0.238,0.215,0.239,0.215,0.097,0.215,0.098,0.131,0.77,0.083,0.838,0.003,0.813,0.133,0.774,0.002,0.729,0.081,0.423,0.081,0.703,0.135,0.769,0.213,0.659,0.134,0.072,0.132,0.209,0.083,0.558,0.003,0.533,0.083,0.697,0.131,0.069,0.086,0.28,0.003,0.112,0.214,0.882,0.003,0.168,0.082,0.142
,0.136,0.347,0.085,0.562,0.135,0.489,0.081,0.282,0.215,0.321,0.002,0.59,0.213,0.379,0.213,0.799,0.002,0.308,0.131,0.49,0.085,0.842,0.002,0.449,0.085,0.702,0.004,0.252,0.135,0.909,0.214,0.237,0.135,0.628,0.081,0.002,0.214,0.602,0.134,0.212,0.002,0.028,0.081,0.563,0.003,0.392,0.086,0.14,0.133,0.634
,0.213,0.519,0.214,0.742,0.082,0.417,0.131,0.349,0.081,0.703,0.082,0.703,0.214,0.742,0.214,0.743,0.081,0.282,0.214,0.463,0.214,0.464,0.131,0.77,0.132,0.771,0.213,0.379,0.133,0.774,0.134,0.773,0.083,0.838,0.082,0.839,0.085,0.842,0.081,0.423,0.082,0.423,0.003,0.813,0.002,0.813,0.002,0.449,0.135,0.769
,0.134,0.769,0.002,0.729,0.002,0.728,0.131,0.629,0.085,0.702,0.084,0.701,0.003,0.533,0.002,0.533,0.215,0.181,0.134,0.212,0.135,0.211,0.213,0.519,0.214,0.519,0.133,0.634,0.081,0.563,0.082,0.562,0.134,0.072,0.135,0.071,0.084,0.277,0.131,0.49,0.131,0.491,0.135,0.909,0.134,0.909,0.083,0.697,0.083,0.558
,0.082,0.559,0.132,0.209,0.133,0.21,0.003,0.673,0.082,0.142,0.083,0.142,0.215,0.321,0.215,0.322,0.085,0.422,0.135,0.628,0.134,0.629,0.002,0.028,0.002,0.027,0.214,0.882,0.082,0.137,0.082,0.138,0.004,0.252,0.003,0.251,0.136,0.347,0.003,0.168,0.003,0.167,0.131,0.069,0.132,0.07,0.086,0.28,0.081,0.002
,0.082,0.002,0.214,0.602,0.214,0.603,0.085,0.562,0.135,0.489,0.134,0.489,0.002,0.308,0.002,0.307,0.003,0.112,0.213,0.799,0.214,0.799,0.133,0.354,0.134,0.353,0.133,0.494,0.003,0.392,0.002,0.391,0.136,0.207,0.135,0.207,0.213,0.659,0.086,0.14,0.085,0.139,0.082,0.417,0.082,0.417,0.002,0.59,0.214,0.237
,0.215,0.238,0.214,0.097,0.215,0.097,0.131,0.77,0.131,0.349,0.083,0.838,0.214,0.463,0.003,0.813,0.133,0.774,0.002,0.729,0.081,0.423,0.081,0.703,0.135,0.769,0.134,0.072,0.003,0.673,0.083,0.558,0.084,0.277,0.003,0.533,0.083,0.697,0.086,0.28,0.214,0.882,0.082,0.137,0.082,0.142,0.136,0.347,0.085,0.562
,0.085,0.422,0.135,0.489,0.081,0.282,0.215,0.321,0.002,0.59,0.213,0.379,0.213,0.799,0.133,0.494,0.131,0.49,0.085,0.842,0.085,0.702,0.004,0.252,0.135,0.909,0.215,0.181,0.081,0.002,0.134,0.212,0.002,0.028,0.133,0.354,0.214,0.097,0.003,0.392,0.086,0.14,0.131,0.629,0.136,0.207,0.082,0.417]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,17,36,37,1,38,39,40,41,42,13,43,44,45,46,47
,12,48,49,50,51,52,53,54,55,56,57,58,59,60,61,15,62,63,64,65,66,2,67,68,16,69,70,4,71,72,73,74,75,32,76,77,25,78,79,80,81,82,21,83,84,85,86,87,3,88,89
,90,91,92,93,94,95,30,96,97,11,98,99,5,100,101,31,102,103,104,105,106,107,108,109,20,110,111,28,112,113,114,115,116,23,117,118,7,119,120,10,121,122,123,124,125,18,126,127,29,128,129
,19,130,131,132,133,134,135,136,137,8,138,139,22,140,141,142,143,144,14,145,146,147,148,149,6,150,151,9,152,153,154,155,156,157,158,159,160,161,162,26,163,164,0,165,166,167,168,169,170,171,172
,173,174,175,27,176,177,24,178,179,17,180,45,42,33,40,45,181,53,49,13,12,53,182,15,183,56,58,15,184,16,185,64,66,16,186,17,187,1,39,0,87,188,189,167,169,104,111,190,101,107,5
,30,191,31,106,93,104,31,192,32,193,4,72,132,139,194,195,29,129,6,125,196,197,9,153,19,127,198,134,123,132,19,199,20,200,28,113,23,201,142,146,114,14,13,202,14,203,147,149,27,204,28
,205,107,109,154,206,12,207,50,52,147,162,208,144,157,142,59,209,30,210,11,99,64,77,211,212,2,68,93,213,18,214,10,122,27,82,215,179,25,24,23,141,216,217,7,120,22,84,218,219,135,137
,6,220,7,116,154,114,3,175,221,92,24,90,170,222,160,223,26,164,85,75,224,89,4,3,21,159,225,79,26,25,1,166,226,227,33,35,160,147,40,2,73,85,85,0,2,5,107,173,173,3,5
,8,132,123,123,6,8,11,56,50,50,9,11,14,114,154,154,12,14,17,45,53,53,15,17,20,104,93,93,18,20,23,142,157,157,21,23,26,167,90,90,24,26,29,135,80,80,27,29,32,64,59
,59,30,32,33,228,34,17,229,230,1,231,232,40,233,41,13,234,235,45,236,237,12,238,48,50,239,240,53,241,242,56,243,57,59,244,245,15,246,247,64,248,65,2,249,250,16,251,252,4,253,71
,73,254,255,32,256,257,25,258,78,80,259,260,21,261,262,85,263,86,3,264,265,90,266,267,93,268,94,30,269,270,11,271,272,5,273,100,31,274,275,104,276,277,107,278,108,20,279,280,28,281,282
,114,283,115,23,284,285,7,286,287,10,288,121,123,289,290,18,291,292,29,293,128,19,294,295,132,296,297,135,298,136,8,299,300,22,301,302,142,303,143,14,304,305,147,306,307,6,308,150,9,309,310
,154,311,312,157,313,158,160,314,315,26,316,317,0,318,165,167,319,320,170,321,322,173,323,174,27,324,325,24,326,327,17,37,328,42,329,33,45,47,330,49,331,13,53,55,332,333,50,56,15,63,334
,335,59,64,16,70,336,337,2,1,0,85,87,338,90,167,104,20,111,101,339,107,30,97,340,106,341,93,31,103,342,343,5,4,132,8,139,344,135,29,6,123,125,345,10,9,19,18,127,134,346,123
,19,131,347,348,29,28,23,118,349,146,350,114,13,44,351,352,40,147,27,177,353,354,173,107,154,156,355,356,9,50,147,160,162,144,357,157,59,61,358,359,56,11,64,32,77,360,73,2,93,95,361
,362,11,10,27,80,82,179,363,25,23,22,141,364,8,7,22,21,84,365,80,135,6,151,366,116,367,154,3,173,175,92,368,24,170,172,369,370,167,26,85,73,75,89,371,4,21,157,159,79,372,26
,1,0,166,373,170,33,40,33,170,170,160,40]
}
,{"name":"d20","id":"d20","billboardMode":0,"position":[0.6,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false
,"positions":[0.0004,-0.0923,-0.0685,-0.0586,-0.0928,0.0343,0.0588,-0.0928,0.0342,0.0625,0.0902,-0.0345,0.0986,-0.0203,-0.0556,0.0986,0.0219,0.0549,-0.0606,-0.0919,0.0332,-0.0016,-0.0915,-0.0697,-0.0975,-0.0234,-0.0564,-0.0586,-0.0919,0.0366,0,-0.024,0.1125,0.0588,-0.0919,0.0365,0.0019,0.0919,0.0691,0.0613,0.0916,-0.033,0.0974,0.0233,0.0565,-0.0975,-0.0197,-0.0578,-0.0022,0.0223,-0.1129
,-0.0609,0.0906,-0.0365,-0.0968,-0.022,-0.0583,-0.0008,-0.0901,-0.0715,-0.0015,0.02,-0.1133,0.0608,-0.0905,0.0367,0.0019,-0.0226,0.1128,0.0974,0.0196,0.0579,0.0009,0.02,-0.1133,0.0016,-0.0901,-0.0715,0.0966,-0.0226,-0.0582,-0.0987,0.0222,0.0549,-0.0987,-0.0197,-0.0557,-0.0621,0.0906,-0.0344,0.0593,0.0925,-0.0341,0,0.0928,0.068,-0.0589,0.0929,-0.0339,0.0967,0.0219,0.0583
,0.0012,-0.0203,0.1132,0.0012,0.0905,0.071,-0.0013,-0.0203,0.1132,-0.0967,0.0222,0.0583,-0.0013,0.0905,0.071,-0.0003,0.0237,-0.1126,0.0593,0.0916,-0.0364,-0.0589,0.092,-0.0362,0.0024,-0.0915,-0.0696,0.0608,-0.0919,0.0331,0.0974,-0.024,-0.0563,-0.0987,0.02,0.0558,-0.0618,-0.0905,0.0348,-0.0987,-0.022,-0.0549,-0.0606,-0.0905,0.0369,-0.0974,0.0199,0.0579,-0.002,-0.0226,0.1128
,-0.0974,0.0236,0.0565,-0.0609,0.092,-0.0328,-0.002,0.092,0.0691,0.0986,-0.0226,-0.0547,0.062,-0.0905,0.0346,0.0986,0.0197,0.0558,0.0002,0.0225,-0.1138,0.0005,0.0216,-0.1139,0.0017,0.0223,-0.1129,-0.0008,0.0225,-0.1138,0.0002,0.0225,-0.1138,-0.0011,0.0216,-0.1139,-0.0008,0.0225,-0.1138,-0.0003,0.021,-0.1141,-0.0011,0.0216,-0.1139,0.0005,0.0216,-0.1139,-0.0003,0.021,-0.1141
,0.0618,0.0914,-0.0355,0.061,0.0918,-0.036,0.0613,0.0902,-0.0366,0.0618,0.0918,-0.0346,0.0618,0.0914,-0.0355,0.061,0.0923,-0.0345,0.0618,0.0918,-0.0346,0.0605,0.0923,-0.0354,0.061,0.0923,-0.0345,0.061,0.0918,-0.036,0.0605,0.0923,-0.0354,-0.0606,0.0922,-0.0358,-0.0614,0.0918,-0.0353,-0.0601,0.0927,-0.0352,-0.0606,0.0922,-0.0358,-0.0606,0.0927,-0.0343,-0.0601,0.0927,-0.0352
,-0.0614,0.0922,-0.0344,-0.0606,0.0927,-0.0343,-0.0614,0.0918,-0.0353,-0.0614,0.0922,-0.0344,0.0982,-0.0228,-0.0573,0.0982,-0.0219,-0.0577,0.0986,-0.0228,-0.0565,0.0982,-0.0228,-0.0573,0.0989,-0.0219,-0.0563,0.0986,-0.0228,-0.0565,0.0986,-0.0213,-0.057,0.0989,-0.0219,-0.0563,0.0982,-0.0219,-0.0577,0.0986,-0.0213,-0.057,0.0974,-0.0203,-0.0577,0.0987,0.0221,0.0567,0.0982,0.0221,0.0575
,0.099,0.0212,0.0565,0.0987,0.0221,0.0567,0.0987,0.0207,0.0572,0.099,0.0212,0.0565,0.0982,0.0212,0.0579,0.0987,0.0207,0.0572,0.0982,0.0221,0.0575,0.0982,0.0212,0.0579,0,0.0918,0.0708,0.0007,0.0921,0.0704,-0.0008,0.0921,0.0704,0,0.0918,0.0708,-0.0005,0.0927,0.0697,-0.0008,0.0921,0.0704,0.0004,0.0927,0.0697,-0.0005,0.0927,0.0697,0.0007,0.0921,0.0704
,0.0004,0.0927,0.0697,-0.0603,-0.0921,0.0362,-0.0611,-0.0918,0.0358,-0.0598,-0.0927,0.0356,-0.0603,-0.0921,0.0362,-0.0603,-0.0927,0.0348,-0.0598,-0.0927,0.0356,-0.0611,-0.0921,0.0349,-0.0603,-0.0927,0.0348,-0.0611,-0.0918,0.0358,-0.0611,-0.0921,0.0349,-0.0987,0.021,0.0572,-0.0982,0.0215,0.0578,-0.099,0.0215,0.0565,-0.0987,0.021,0.0572,-0.0987,0.0224,0.0566,-0.099,0.0215,0.0565
,-0.0982,0.0224,0.0575,-0.0987,0.0224,0.0566,-0.0982,0.0215,0.0578,-0.0982,0.0224,0.0575,-0.0983,-0.0222,-0.0574,-0.0988,-0.0222,-0.0566,-0.0983,-0.0213,-0.0578,-0.0983,-0.0222,-0.0574,-0.0988,-0.0207,-0.0572,-0.0983,-0.0213,-0.0578,-0.0991,-0.0213,-0.0564,-0.0988,-0.0207,-0.0572,-0.0988,-0.0222,-0.0566,-0.0991,-0.0213,-0.0564,-0.0004,-0.0916,-0.0709,0.0004,-0.0913,-0.0714,-0.0001,-0.0922,-0.0702
,-0.0004,-0.0916,-0.0709,0.0009,-0.0922,-0.0702,-0.0001,-0.0922,-0.0702,0.0012,-0.0917,-0.0709,0.0009,-0.0922,-0.0702,0.0004,-0.0913,-0.0714,0.0012,-0.0917,-0.0709,0.0605,-0.0921,0.0361,0.06,-0.0927,0.0355,0.0613,-0.0918,0.0356,0.0605,-0.0921,0.0361,0.0613,-0.0921,0.0347,0.0613,-0.0918,0.0356,0.0605,-0.0927,0.0346,0.0613,-0.0921,0.0347,0.06,-0.0927,0.0355,0.0605,-0.0927,0.0346
,0.0004,-0.0228,0.1137,0.0007,-0.0219,0.1139,-0.0005,-0.0228,0.1137,0.0004,-0.0228,0.1137,-0.0008,-0.0219,0.1139,-0.0005,-0.0228,0.1137,0,-0.0213,0.114,-0.0008,-0.0219,0.1139,0.0007,-0.0219,0.1139,0,-0.0213,0.114,0.0002,0.0225,-0.1138,0.061,0.0918,-0.036,-0.0606,0.0922,-0.0358,-0.0008,0.0225,-0.1138,0.0605,0.0923,-0.0354,-0.0601,0.0927,-0.0352,0.0005,0.0216,-0.1139
,0.0618,0.0914,-0.0355,0.0986,-0.0213,-0.057,0.0618,0.0918,-0.0346,0.0989,-0.0219,-0.0563,0.099,0.0212,0.0565,0.0982,0.0221,0.0575,0.0007,0.0921,0.0704,0.0004,0.0927,0.0697,-0.0005,0.0927,0.0697,-0.0606,0.0927,-0.0343,-0.0987,0.021,0.0572,-0.0611,-0.0921,0.0349,-0.0991,-0.0213,-0.0564,-0.0004,-0.0916,-0.0709,-0.0983,-0.0222,-0.0574,-0.0001,-0.0922,-0.0702,0.06,-0.0927,0.0355
,-0.0598,-0.0927,0.0356,0.0009,-0.0922,-0.0702,0.0605,-0.0927,0.0346,0.0605,-0.0921,0.0361,-0.0603,-0.0921,0.0362,-0.0005,-0.0228,0.1137,-0.0982,0.0215,0.0578,0,0.0918,0.0708,0,-0.0213,0.114,-0.0982,0.0224,0.0575,-0.0008,0.0921,0.0704,-0.0987,0.0224,0.0566,-0.0614,0.0918,-0.0353,-0.0011,0.0216,-0.1139,-0.0983,-0.0213,-0.0578,0.0004,-0.0913,-0.0714,0.0012,-0.0917,-0.0709
,0.0982,-0.0228,-0.0573,0.0613,-0.0921,0.0347,0.0613,-0.0918,0.0356,0.0987,0.0207,0.0572,0.0982,0.0212,0.0579,0.0007,-0.0219,0.1139,-0.0003,0.0219,-0.1142,-0.0003,0.0219,-0.1142,0.0002,0.0225,-0.1138,-0.0003,0.0219,-0.1142,-0.0008,0.0225,-0.1138,-0.0003,0.0219,-0.1142,-0.0011,0.0216,-0.1139,0.0005,0.0216,-0.1139,-0.0003,0.0219,-0.1142,-0.0003,0.021,-0.1141,0.0614,0.0922,-0.0353
,0.0614,0.0922,-0.0353,0.0618,0.0914,-0.0355,0.0614,0.0922,-0.0353,0.0618,0.0918,-0.0346,0.0614,0.0922,-0.0353,0.061,0.0923,-0.0345,0.061,0.0918,-0.036,0.0614,0.0922,-0.0353,0.0605,0.0923,-0.0354,-0.061,0.0926,-0.0351,-0.061,0.0926,-0.0351,-0.0606,0.0922,-0.0358,-0.061,0.0926,-0.0351,-0.0601,0.0927,-0.0352,-0.061,0.0926,-0.0351,-0.0606,0.0927,-0.0343,-0.0614,0.0918,-0.0353
,-0.061,0.0926,-0.0351,-0.0614,0.0922,-0.0344,0.0988,-0.0222,-0.0571,0.0988,-0.0222,-0.0571,0.0982,-0.0228,-0.0573,0.0988,-0.0222,-0.0571,0.0986,-0.0228,-0.0565,0.0988,-0.0222,-0.0571,0.0989,-0.0219,-0.0563,0.0982,-0.0219,-0.0577,0.0988,-0.0222,-0.0571,0.0986,-0.0213,-0.057,0.0988,0.0215,0.0573,0.0988,0.0215,0.0573,0.0987,0.0221,0.0567,0.0988,0.0215,0.0573,0.099,0.0212,0.0565
,0.0988,0.0215,0.0573,0.0987,0.0207,0.0572,0.0982,0.0221,0.0575,0.0988,0.0215,0.0573,0.0982,0.0212,0.0579,0,0.0925,0.0704,0,0.0925,0.0704,0,0.0918,0.0708,0,0.0925,0.0704,-0.0008,0.0921,0.0704,0,0.0925,0.0704,-0.0005,0.0927,0.0697,0.0007,0.0921,0.0704,0,0.0925,0.0704,0.0004,0.0927,0.0697,-0.0607,-0.0925,0.0355,-0.0607,-0.0925,0.0355
,-0.0603,-0.0921,0.0362,-0.0607,-0.0925,0.0355,-0.0598,-0.0927,0.0356,-0.0607,-0.0925,0.0355,-0.0603,-0.0927,0.0348,-0.0611,-0.0918,0.0358,-0.0607,-0.0925,0.0355,-0.0611,-0.0921,0.0349,-0.0988,0.0218,0.0573,-0.0988,0.0218,0.0573,-0.0987,0.021,0.0572,-0.0988,0.0218,0.0573,-0.099,0.0215,0.0565,-0.0988,0.0218,0.0573,-0.0987,0.0224,0.0566,-0.0982,0.0215,0.0578,-0.0988,0.0218,0.0573
,-0.0982,0.0224,0.0575,-0.0989,-0.0216,-0.0572,-0.0989,-0.0216,-0.0572,-0.0983,-0.0222,-0.0574,-0.0989,-0.0216,-0.0572,-0.0983,-0.0213,-0.0578,-0.0989,-0.0216,-0.0572,-0.0988,-0.0207,-0.0572,-0.0988,-0.0222,-0.0566,-0.0989,-0.0216,-0.0572,-0.0991,-0.0213,-0.0564,0.0004,-0.092,-0.0709,0.0004,-0.092,-0.0709,-0.0004,-0.0916,-0.0709,0.0004,-0.092,-0.0709,-0.0001,-0.0922,-0.0702,0.0004,-0.092,-0.0709
,0.0009,-0.0922,-0.0702,0.0004,-0.0913,-0.0714,0.0004,-0.092,-0.0709,0.0012,-0.0917,-0.0709,0.0609,-0.0925,0.0354,0.0609,-0.0925,0.0354,0.0605,-0.0921,0.0361,0.0609,-0.0925,0.0354,0.0613,-0.0918,0.0356,0.0609,-0.0925,0.0354,0.0613,-0.0921,0.0347,0.06,-0.0927,0.0355,0.0609,-0.0925,0.0354,0.0605,-0.0927,0.0346,0,-0.0222,0.1141,0,-0.0222,0.1141,0.0004,-0.0228,0.1137
,0,-0.0222,0.1141,-0.0005,-0.0228,0.1137,0,-0.0222,0.1141,-0.0008,-0.0219,0.1139,0.0007,-0.0219,0.1139,0,-0.0222,0.1141,0,-0.0213,0.114,0.0002,0.0225,-0.1138,-0.0606,0.0922,-0.0358,-0.0008,0.0225,-0.1138,0.0605,0.0923,-0.0354,-0.0601,0.0927,-0.0352,0.0982,-0.0219,-0.0577,0.0618,0.0914,-0.0355,0.0987,0.0221,0.0567,0.0618,0.0918,-0.0346,0.0989,-0.0219,-0.0563
,0.099,0.0212,0.0565,0.0982,0.0221,0.0575,0.0007,0.0921,0.0704,0.061,0.0923,-0.0345,-0.0005,0.0927,0.0697,-0.0987,0.021,0.0572,-0.0611,-0.0918,0.0358,-0.0611,-0.0921,0.0349,-0.0988,-0.0222,-0.0566,-0.099,0.0215,0.0565,-0.0004,-0.0916,-0.0709,-0.0983,-0.0222,-0.0574,-0.0603,-0.0927,0.0348,0.06,-0.0927,0.0355,0.0009,-0.0922,-0.0702,0.0605,-0.0927,0.0346,0.0004,-0.0228,0.1137
,-0.0603,-0.0921,0.0362,-0.0005,-0.0228,0.1137,-0.0008,-0.0219,0.1139,-0.0982,0.0215,0.0578,0,0.0918,0.0708,0,-0.0213,0.114,-0.0982,0.0224,0.0575,-0.0008,0.0921,0.0704,-0.0614,0.0922,-0.0344,-0.0988,-0.0207,-0.0572,-0.0614,0.0918,-0.0353,-0.0011,0.0216,-0.1139,-0.0983,-0.0213,-0.0578,-0.0003,0.021,-0.1141,0.0004,-0.0913,-0.0714,0.0012,-0.0917,-0.0709,0.0982,-0.0228,-0.0573
,0.0986,-0.0228,-0.0565,0.0613,-0.0918,0.0356,0.0982,0.0212,0.0579]
,"normals":[0,-0.996,-0.088,-0.073,-0.997,0.039,0.073,-0.997,0.039,0.902,0.402,-0.154,0.947,0.266,-0.18,0.947,0.318,-0.044,-0.583,-0.772,-0.254,-0.51,-0.771,-0.38,-0.628,-0.688,-0.364,-0.072,-0.771,0.633,0.001,-0.687,0.727,0.073,-0.771,0.632,0.513,0.77,0.38,0.586,0.769,0.254,0.631,0.685,0.364,-0.63,0.272,-0.727,-0.512,0.324,-0.796
,-0.585,0.408,-0.701,-0.434,-0.322,-0.841,-0.316,-0.406,-0.858,-0.316,-0.269,-0.91,0.584,-0.407,0.703,0.511,-0.323,0.797,0.629,-0.271,0.729,0.316,-0.267,-0.91,0.316,-0.403,-0.859,0.434,-0.319,-0.842,-0.946,0.322,-0.044,-0.946,0.271,-0.18,-0.9,0.407,-0.154,0.076,0.996,-0.043,0.003,0.997,0.083,-0.07,0.997,-0.043,0.433,0.321,0.843
,0.315,0.269,0.91,0.315,0.405,0.858,-0.314,0.269,0.91,-0.432,0.321,0.843,-0.314,0.405,0.858,0.001,0.687,-0.726,0.074,0.771,-0.632,-0.071,0.772,-0.632,0.511,-0.772,-0.379,0.584,-0.772,-0.252,0.629,-0.688,-0.362,-0.945,-0.271,0.181,-0.9,-0.408,0.155,-0.945,-0.323,0.045,-0.584,-0.407,0.702,-0.629,-0.27,0.729,-0.512,-0.322,0.797
,-0.629,0.686,0.364,-0.584,0.771,0.254,-0.511,0.771,0.38,0.945,-0.323,0.045,0.9,-0.407,0.155,0.945,-0.271,0.181,0.273,0.5,-0.822,0.401,0.043,-0.915,0.512,0.32,-0.797,-0.235,0.527,-0.816,0.273,0.5,-0.822,-0.418,0.06,-0.906,-0.235,0.527,-0.816,-0.022,-0.254,-0.967,-0.418,0.06,-0.906,0.401,0.043,-0.915,-0.022,-0.254,-0.967
,0.762,0.451,-0.465,0.367,0.641,-0.674,0.585,0.404,-0.703,0.784,0.62,0.016,0.762,0.451,-0.465,0.381,0.92,0.096,0.784,0.62,0.016,0.108,0.936,-0.334,0.381,0.92,0.096,0.367,0.641,-0.674,0.108,0.936,-0.334,-0.378,0.624,-0.684,-0.766,0.467,-0.441,-0.104,0.921,-0.376,-0.378,0.624,-0.684,-0.341,0.937,0.075,-0.104,0.921,-0.376
,-0.76,0.649,0.045,-0.341,0.937,0.075,-0.766,0.467,-0.441,-0.76,0.649,0.045,0.576,-0.499,-0.647,0.592,-0.042,-0.805,0.825,-0.527,-0.203,0.576,-0.499,-0.647,0.994,-0.061,-0.09,0.825,-0.527,-0.203,0.849,0.253,-0.464,0.994,-0.061,-0.09,0.592,-0.042,-0.805,0.849,0.253,-0.464,0.63,0.268,-0.729,0.827,0.523,0.205,0.592,0.504,0.629
,0.994,0.056,0.092,0.827,0.523,0.205,0.848,-0.257,0.464,0.994,0.056,0.092,0.589,0.016,0.808,0.848,-0.257,0.464,0.592,0.504,0.629,0.589,0.016,0.808,0.023,0.453,0.891,0.401,0.641,0.655,-0.403,0.622,0.671,0.023,0.453,0.891,-0.271,0.921,0.28,-0.403,0.622,0.671,0.238,0.936,0.259,-0.271,0.921,0.28,0.401,0.641,0.655
,0.238,0.936,0.259,-0.378,-0.623,0.685,-0.766,-0.466,0.442,-0.106,-0.921,0.374,-0.378,-0.623,0.685,-0.341,-0.937,-0.077,-0.106,-0.921,0.374,-0.759,-0.65,-0.044,-0.341,-0.937,-0.077,-0.766,-0.466,0.442,-0.759,-0.65,-0.044,-0.825,-0.257,0.503,-0.591,0.042,0.805,-0.994,0.017,0.108,-0.825,-0.257,0.503,-0.848,0.5,0.176,-0.994,0.017,0.108
,-0.589,0.525,0.614,-0.848,0.5,0.176,-0.591,0.042,0.805,-0.589,0.525,0.614,-0.589,-0.526,-0.613,-0.839,-0.506,-0.199,-0.577,-0.058,-0.815,-0.589,-0.526,-0.613,-0.826,0.257,-0.501,-0.577,-0.058,-0.815,-0.994,-0.017,-0.106,-0.826,0.257,-0.501,-0.839,-0.506,-0.199,-0.994,-0.017,-0.106,-0.403,-0.623,-0.67,0,-0.464,-0.886,-0.271,-0.92,-0.281
,-0.403,-0.623,-0.67,0.236,-0.936,-0.26,-0.271,-0.92,-0.281,0.418,-0.648,-0.637,0.236,-0.936,-0.26,0,-0.464,-0.886,0.418,-0.648,-0.637,0.342,-0.649,0.68,0.119,-0.928,0.353,0.759,-0.455,0.465,0.342,-0.649,0.68,0.782,-0.623,-0.014,0.759,-0.455,0.465,0.378,-0.921,-0.097,0.782,-0.623,-0.014,0.119,-0.928,0.353,0.378,-0.921,-0.097
,0.272,-0.5,0.822,0.4,-0.043,0.916,-0.236,-0.526,0.817,0.272,-0.5,0.822,-0.417,-0.059,0.907,-0.236,-0.526,0.817,-0.022,0.255,0.967,-0.417,-0.059,0.907,0.4,-0.043,0.916,-0.022,0.255,0.967,0.273,0.5,-0.822,0.367,0.641,-0.674,-0.378,0.624,-0.684,-0.235,0.527,-0.816,0.108,0.936,-0.334,-0.104,0.921,-0.376,0.401,0.043,-0.915
,0.762,0.451,-0.465,0.849,0.253,-0.464,0.784,0.62,0.016,0.994,-0.061,-0.09,0.994,0.056,0.092,0.592,0.504,0.629,0.401,0.641,0.655,0.238,0.936,0.259,-0.271,0.921,0.28,-0.341,0.937,0.075,-0.825,-0.257,0.503,-0.759,-0.65,-0.044,-0.994,-0.017,-0.106,-0.403,-0.623,-0.67,-0.589,-0.526,-0.613,-0.271,-0.92,-0.281,0.119,-0.928,0.353
,-0.106,-0.921,0.374,0.236,-0.936,-0.26,0.378,-0.921,-0.097,0.342,-0.649,0.68,-0.378,-0.623,0.685,-0.236,-0.526,0.817,-0.591,0.042,0.805,0.023,0.453,0.891,-0.022,0.255,0.967,-0.589,0.525,0.614,-0.403,0.622,0.671,-0.848,0.5,0.176,-0.766,0.467,-0.441,-0.418,0.06,-0.906,-0.577,-0.058,-0.815,0,-0.464,-0.886,0.418,-0.648,-0.637
,0.576,-0.499,-0.647,0.782,-0.623,-0.014,0.759,-0.455,0.465,0.848,-0.257,0.464,0.589,0.016,0.808,0.4,-0.043,0.916,0,0.189,-0.982,0,0.189,-0.982,0.273,0.5,-0.822,0,0.189,-0.982,-0.235,0.527,-0.816,0,0.189,-0.982,-0.418,0.06,-0.906,0.401,0.043,-0.915,0,0.189,-0.982,-0.022,-0.254,-0.967,0.528,0.793,-0.304
,0.528,0.793,-0.304,0.762,0.451,-0.465,0.528,0.793,-0.304,0.784,0.62,0.016,0.528,0.793,-0.304,0.381,0.92,0.096,0.367,0.641,-0.674,0.528,0.793,-0.304,0.108,0.936,-0.334,-0.525,0.796,-0.303,-0.525,0.796,-0.303,-0.378,0.624,-0.684,-0.525,0.796,-0.303,-0.104,0.921,-0.376,-0.525,0.796,-0.303,-0.341,0.937,0.075,-0.766,0.467,-0.441
,-0.525,0.796,-0.303,-0.76,0.649,0.045,0.851,-0.189,-0.491,0.851,-0.189,-0.491,0.576,-0.499,-0.647,0.851,-0.189,-0.491,0.825,-0.527,-0.203,0.851,-0.189,-0.491,0.994,-0.061,-0.09,0.592,-0.042,-0.805,0.851,-0.189,-0.491,0.849,0.253,-0.464,0.851,0.186,0.492,0.851,0.186,0.492,0.827,0.523,0.205,0.851,0.186,0.492,0.994,0.056,0.092
,0.851,0.186,0.492,0.848,-0.257,0.464,0.592,0.504,0.629,0.851,0.186,0.492,0.589,0.016,0.808,0.001,0.794,0.608,0.001,0.794,0.608,0.023,0.453,0.891,0.001,0.794,0.608,-0.403,0.622,0.671,0.001,0.794,0.608,-0.271,0.921,0.28,0.401,0.641,0.655,0.001,0.794,0.608,0.238,0.936,0.259,-0.525,-0.796,0.302,-0.525,-0.796,0.302
,-0.378,-0.623,0.685,-0.525,-0.796,0.302,-0.106,-0.921,0.374,-0.525,-0.796,0.302,-0.341,-0.937,-0.077,-0.766,-0.466,0.442,-0.525,-0.796,0.302,-0.759,-0.65,-0.044,-0.85,0.187,0.492,-0.85,0.187,0.492,-0.825,-0.257,0.503,-0.85,0.187,0.492,-0.994,0.017,0.108,-0.85,0.187,0.492,-0.848,0.5,0.176,-0.591,0.042,0.805,-0.85,0.187,0.492
,-0.589,0.525,0.614,-0.851,-0.188,-0.491,-0.851,-0.188,-0.491,-0.589,-0.526,-0.613,-0.851,-0.188,-0.491,-0.577,-0.058,-0.815,-0.851,-0.188,-0.491,-0.826,0.257,-0.501,-0.839,-0.506,-0.199,-0.851,-0.188,-0.491,-0.994,-0.017,-0.106,0,-0.794,-0.608,0,-0.794,-0.608,-0.403,-0.623,-0.67,0,-0.794,-0.608,-0.271,-0.92,-0.281,0,-0.794,-0.608
,0.236,-0.936,-0.26,0,-0.464,-0.886,0,-0.794,-0.608,0.418,-0.648,-0.637,0.525,-0.795,0.303,0.525,-0.795,0.303,0.342,-0.649,0.68,0.525,-0.795,0.303,0.759,-0.455,0.465,0.525,-0.795,0.303,0.782,-0.623,-0.014,0.119,-0.928,0.353,0.525,-0.795,0.303,0.378,-0.921,-0.097,0,-0.188,0.982,0,-0.188,0.982,0.272,-0.5,0.822
,0,-0.188,0.982,-0.236,-0.526,0.817,0,-0.188,0.982,-0.417,-0.059,0.907,0.4,-0.043,0.916,0,-0.188,0.982,-0.022,0.255,0.967,0.273,0.5,-0.822,-0.378,0.624,-0.684,-0.235,0.527,-0.816,0.108,0.936,-0.334,-0.104,0.921,-0.376,0.592,-0.042,-0.805,0.762,0.451,-0.465,0.827,0.523,0.205,0.784,0.62,0.016,0.994,-0.061,-0.09
,0.994,0.056,0.092,0.592,0.504,0.629,0.401,0.641,0.655,0.381,0.92,0.096,-0.271,0.921,0.28,-0.825,-0.257,0.503,-0.766,-0.466,0.442,-0.759,-0.65,-0.044,-0.839,-0.506,-0.199,-0.994,0.017,0.108,-0.403,-0.623,-0.67,-0.589,-0.526,-0.613,-0.341,-0.937,-0.077,0.119,-0.928,0.353,0.236,-0.936,-0.26,0.378,-0.921,-0.097,0.272,-0.5,0.822
,-0.378,-0.623,0.685,-0.236,-0.526,0.817,-0.417,-0.059,0.907,-0.591,0.042,0.805,0.023,0.453,0.891,-0.022,0.255,0.967,-0.589,0.525,0.614,-0.403,0.622,0.671,-0.76,0.649,0.045,-0.826,0.257,-0.501,-0.766,0.467,-0.441,-0.418,0.06,-0.906,-0.577,-0.058,-0.815,-0.022,-0.254,-0.967,0,-0.464,-0.886,0.418,-0.648,-0.637,0.576,-0.499,-0.647
,0.825,-0.527,-0.203,0.759,-0.455,0.465,0.589,0.016,0.808]
,"tangents":[-0.639,0.067,-0.766,1,-0.986,0.066,-0.156,1,-0.863,-0.082,-0.499,1,0.332,-0.877,-0.346,1,0.097,-0.771,-0.629,1,0.119,-0.474,-0.873,1,-0.562,0.157,0.812,1,-0.802,0.267,0.534,1,-0.778,0.563,0.28,1,-0.863,-0.269,-0.427,1,-0.638,-0.56,-0.528,1,-0.985,-0.155,-0.075,1,0.431,0.152
,-0.89,1,0.065,0.268,-0.961,1,-0.135,0.559,-0.818,1,0.146,0.961,0.233,1,-0.412,0.72,0.558,1,-0.057,0.841,0.538,1,0.698,0.471,-0.54,1,0.131,0.877,-0.463,1,0.494,0.772,-0.4,1,0.562,-0.422,-0.711,1,0.802,-0.154,-0.577,1,0.778,0.232,-0.584,1,0.134,0.963,-0.235,1
,0.495,0.842,-0.213,1,0.7,0.708,0.093,1,-0.118,-0.466,-0.877,1,-0.1,-0.769,-0.632,1,-0.334,-0.873,-0.354,1,0.345,-0.067,-0.936,1,0,0.083,-0.997,1,-0.356,-0.065,-0.932,1,-0.902,0.155,0.404,1,-0.895,-0.236,0.379,1,-0.897,0.422,0.13,1,0.898,-0.228,0.377,1,0.902,0.155
,0.403,1,0.895,0.429,0.125,1,-0.626,0.567,0.535,1,-0.982,0.168,0.089,1,-0.861,0.272,0.43,1,-0.799,-0.265,-0.539,1,-0.557,-0.155,-0.816,1,-0.777,-0.558,-0.292,1,0.274,-0.962,-0.01,1,0.436,-0.841,0.319,1,0.275,-0.716,0.642,1,0.56,0.424,0.712,1,0.777,-0.231,0.585,1
,0.803,0.152,0.577,1,-0.777,-0.56,-0.288,1,-0.558,-0.154,-0.816,1,-0.802,-0.269,-0.533,1,-0.121,-0.475,-0.872,1,-0.337,-0.876,-0.345,1,-0.1,-0.77,-0.63,1,0.84,0.294,0.457,1,0.91,0.101,0.403,1,0.803,0.152,0.576,1,-0.648,0.541,0.536,1,-0.439,0.825,0.355,1,-0.666,0.658
,0.351,1,-0.385,0.721,0.576,1,0.452,0.86,-0.236,1,0.631,0.737,-0.242,1,-0.139,0.99,-0.015,1,0.162,0.954,-0.254,1,0.271,0.43,0.861,1,0.587,0.403,0.702,1,0.565,0.42,0.711,1,0.61,-0.766,-0.203,1,0.303,-0.882,-0.36,1,0.055,0.081,-0.995,1,-0.13,0.189,-0.973,1
,0.474,-0.344,-0.81,1,0.329,-0.038,-0.944,1,-0.93,0.274,-0.246,1,-0.98,0.156,0.12,1,-0.046,0.725,0.687,1,0.136,0.789,0.599,1,-0.885,0.087,0.458,1,-0.772,0.197,0.605,1,-0.329,-0.045,-0.943,1,-0.48,-0.377,-0.792,1,-0.266,-0.247,-0.932,1,-0.585,-0.149,-0.797,1,-0.316,-0.872
,-0.374,1,-0.643,-0.739,-0.201,1,0.692,0.719,0.061,1,0.63,0.646,0.43,1,-0.563,-0.798,-0.217,1,-0.795,-0.528,-0.3,1,-0.109,-0.501,-0.859,1,-0.347,-0.189,-0.919,1,-0.024,-0.859,-0.512,1,-0.106,-0.736,-0.669,1,0.784,-0.204,0.587,1,0.526,-0.476,0.704,1,0.777,-0.231,0.586,1
,-0.129,0.533,-0.836,1,-0.076,0.812,-0.579,1,0.108,-0.501,-0.859,1,0.347,-0.187,-0.919,1,0.021,-0.858,-0.514,1,0.104,-0.735,-0.67,1,0.79,0.202,-0.579,1,0.529,0.478,-0.701,1,-0.804,0.312,0.507,1,-0.805,0.103,0.584,1,-0.878,0.435,-0.199,1,-0.901,0.406,0.154,1,0.897,0.413
,0.156,1,0.873,0.426,-0.239,1,-0.837,-0.082,-0.54,1,-0.91,-0.192,-0.369,1,0.104,0.24,-0.965,1,-0.11,0.259,-0.96,1,0.69,0.259,-0.676,1,0.4,0.148,-0.904,1,0.589,0.409,0.697,1,0.246,0.423,0.872,1,-0.887,-0.082,-0.454,1,-0.775,-0.191,-0.602,1,-0.94,0.341,0.016,1
,-0.983,0.04,-0.179,1,-0.266,0.248,0.932,1,-0.589,0.149,0.794,1,0.587,-0.789,0.185,1,0.585,-0.71,0.392,1,0.562,-0.458,0.688,1,0.784,-0.204,0.586,1,-0.031,-0.991,-0.133,1,0.301,-0.954,0.007,1,-0.315,-0.208,-0.926,1,-0.102,-0.493,-0.864,1,-0.79,-0.533,-0.302,1,-0.529,-0.822
,-0.212,1,0.804,0.106,0.585,1,0.805,0.314,0.503,1,-0.789,0.536,0.298,1,-0.541,0.814,0.212,1,0.69,0.5,-0.523,1,0.622,0.189,-0.76,1,0.137,0.955,0.264,1,0.084,0.988,-0.129,1,0.084,-0.737,-0.67,1,0.035,-0.864,-0.502,1,0.291,-0.727,0.622,1,-0.07,-0.649,0.758,1
,-0.132,0.765,-0.631,1,0.159,0.875,-0.458,1,-0.837,0.081,0.542,1,-0.909,0.19,0.371,1,-0.657,0.043,-0.753,1,-0.451,0.38,-0.808,1,-0.899,-0.195,-0.392,1,-0.835,-0.058,-0.547,1,0.452,0.79,-0.413,1,0.632,0.711,-0.308,1,-0.94,-0.248,0.236,1,-0.981,-0.165,-0.104,1,0.27,-0.429
,-0.862,1,0.59,-0.415,-0.693,1,-0.613,-0.764,-0.203,1,-0.307,-0.88,-0.362,1,-0.583,-0.156,-0.797,1,-0.229,-0.266,-0.936,1,-0.886,-0.259,-0.385,1,-0.774,-0.257,-0.579,1,0.838,-0.298,-0.458,1,0.909,-0.106,-0.402,1,-0.657,-0.533,-0.533,1,-0.449,-0.822,-0.352,1,0.901,0.105,0.421,1
,0.841,0.311,0.443,1,0.878,-0.457,0.141,1,0.895,-0.202,0.398,1,-0.901,-0.205,0.383,1,-0.873,-0.476,0.106,1,-0.439,0.825,0.355,1,-0.93,0.274,-0.246,1,-0.772,0.197,0.605,1,-0.385,0.721,0.576,1,-0.98,0.156,0.12,1,-0.48,-0.377,-0.792,1,-0.139,0.99,-0.015,1,0.303,-0.882
,-0.36,1,0.526,-0.476,0.704,1,-0.13,0.189,-0.973,1,-0.106,-0.736,-0.669,1,0.104,-0.735,-0.67,1,-0.804,0.312,0.507,1,0.69,0.259,-0.676,1,0.4,0.148,-0.904,1,-0.11,0.259,-0.96,1,-0.585,-0.149,-0.797,1,0.301,-0.954,0.007,1,0.585,-0.71,0.392,1,-0.07,-0.649,0.758,1
,-0.909,0.19,0.371,1,0.622,0.189,-0.76,1,-0.451,0.38,-0.808,1,-0.886,-0.259,-0.385,1,-0.983,0.04,-0.179,1,-0.835,-0.058,-0.547,1,-0.774,-0.257,-0.579,1,0.59,-0.415,-0.693,1,-0.775,-0.191,-0.602,1,0.841,0.311,0.443,1,0.804,0.106,0.585,1,0.873,0.426,-0.239,1,-0.873,-0.476
,0.106,1,0.805,0.314,0.503,1,-0.91,-0.192,-0.369,1,-0.529,-0.822,-0.212,1,-0.316,-0.872,-0.374,1,0.631,0.737,-0.242,1,0.084,0.988,-0.129,1,0.452,0.79,-0.413,1,0.632,0.711,-0.308,1,-0.795,-0.528,-0.3,1,-0.229,-0.266,-0.936,1,-0.307,-0.88,-0.362,1,0.529,0.478,-0.701,1
,-0.805,0.103,0.584,1,-0.901,-0.205,0.383,1,0.954,0.295,0.057,1,-0.881,0.466,0.089,1,-0.439,0.825,0.355,1,-0.161,0.969,0.186,1,-0.385,0.721,0.576,1,0.587,0.795,0.153,1,0.631,0.737,-0.242,1,-0.139,0.99,-0.015,1,0.445,0.879,0.169,1,0.162,0.954,-0.254,1,0.595,-0.09
,0.798,1,0.396,-0.546,-0.738,1,0.303,-0.882,-0.36,1,-0.257,-0.192,-0.947,1,-0.13,0.189,-0.973,1,-0.125,-0.281,-0.952,1,0.329,-0.038,-0.944,1,-0.93,0.274,-0.246,1,-0.758,0.601,0.253,1,-0.98,0.156,0.12,1,0.267,0.491,0.829,1,-0.684,-0.182,0.707,1,-0.772,0.197,0.605,1
,0.119,-0.284,-0.952,1,-0.48,-0.377,-0.792,1,-0.592,-0.596,-0.542,1,-0.585,-0.149,-0.797,1,-0.316,-0.872,-0.374,1,-0.392,-0.541,-0.744,1,-0.643,-0.739,-0.201,1,0.249,0.967,0.06,1,-0.519,-0.45,-0.726,1,-0.795,-0.528,-0.3,1,-0.473,-0.684,-0.556,1,-0.347,-0.189,-0.919,1,-0.427,-0.793
,-0.435,1,-0.106,-0.736,-0.669,1,0.784,-0.204,0.587,1,0.518,0.138,0.844,1,0.526,-0.476,0.704,1,0.371,0.451,-0.812,1,0.471,-0.686,-0.555,1,0.347,-0.187,-0.919,1,0.426,-0.792,-0.437,1,0.104,-0.735,-0.67,1,0.518,-0.136,-0.844,1,0.529,0.478,-0.701,1,-0.804,0.312,0.507,1
,-0.526,0.301,0.796,1,-0.805,0.103,0.584,1,-0.989,-0.087,0.116,1,0.99,-0.085,0.109,1,0.873,0.426,-0.239,1,-0.95,0.19,-0.246,1,-0.91,-0.192,-0.369,1,0.002,0.608,-0.794,1,-0.11,0.259,-0.96,1,0.69,0.259,-0.676,1,0.178,0.598,-0.782,1,0.4,0.148,-0.904,1,0.594,-0.088
,0.799,1,-0.69,0.189,-0.699,1,-0.775,-0.191,-0.602,1,-0.766,0.286,-0.576,1,-0.983,0.04,-0.179,1,-0.595,0.597,0.538,1,-0.589,0.149,0.794,1,0.587,-0.789,0.185,1,0.851,-0.49,0.188,1,0.585,-0.71,0.392,1,0.519,0.137,0.844,1,0.075,-0.882,0.466,1,0.301,-0.954,0.007,1
,-0.474,-0.68,-0.559,1,-0.102,-0.493,-0.864,1,-0.519,-0.455,-0.724,1,-0.529,-0.822,-0.212,1,0.804,0.106,0.585,1,0.527,0.304,0.794,1,0.805,0.314,0.503,1,-0.518,0.459,0.722,1,0.245,0.684,-0.687,1,0.622,0.189,-0.76,1,-0.366,0.882,0.297,1,0.084,0.988,-0.129,1,0.428,-0.79
,-0.439,1,0.035,-0.864,-0.502,1,0.291,-0.727,0.622,1,0.078,-0.969,0.236,1,-0.07,-0.649,0.758,1,0.442,0.545,-0.712,1,-0.951,-0.188,0.245,1,-0.909,0.19,0.371,1,-0.887,0.281,-0.367,1,-0.451,0.38,-0.808,1,-0.947,0.195,-0.255,1,-0.835,-0.058,-0.547,1,0.452,0.79,-0.413,1
,0.591,0.49,-0.641,1,0.632,0.711,-0.308,1,-0.765,-0.597,-0.241,1,0.595,0.089,-0.799,1,0.59,-0.415,-0.693,1,-0.396,-0.543,-0.741,1,-0.307,-0.88,-0.362,1,-0.59,-0.597,-0.544,1,-0.229,-0.266,-0.936,1,-0.886,-0.259,-0.385,1,-0.691,-0.606,-0.395,1,-0.774,-0.257,-0.579,1,0.951,-0.303
,-0.058,1,-0.886,-0.456,-0.087,1,-0.449,-0.822,-0.352,1,0.952,0.3,0.057,1,0.841,0.311,0.443,1,0.99,0.142,0.027,1,0.895,-0.202,0.398,1,-0.901,-0.205,0.383,1,-0.99,0.136,0.026,1,-0.873,-0.476,0.106,1,-0.439,0.825,0.355,1,-0.772,0.197,0.605,1,-0.385,0.721,0.576,1
,-0.98,0.156,0.12,1,-0.48,-0.377,-0.792,1,0.784,-0.204,0.587,1,0.303,-0.882,-0.36,1,0.347,-0.187,-0.919,1,-0.13,0.189,-0.973,1,-0.106,-0.736,-0.669,1,0.104,-0.735,-0.67,1,-0.804,0.312,0.507,1,0.69,0.259,-0.676,1,0.329,-0.038,-0.944,1,-0.11,0.259,-0.96,1,0.301,-0.954
,0.007,1,0.587,-0.789,0.185,1,0.585,-0.71,0.392,1,0.291,-0.727,0.622,1,-0.102,-0.493,-0.864,1,-0.909,0.19,0.371,1,0.622,0.189,-0.76,1,-0.589,0.149,0.794,1,-0.886,-0.259,-0.385,1,-0.835,-0.058,-0.547,1,-0.774,-0.257,-0.579,1,-0.449,-0.822,-0.352,1,-0.775,-0.191,-0.602,1
,0.841,0.311,0.443,1,0.895,-0.202,0.398,1,0.804,0.106,0.585,1,0.873,0.426,-0.239,1,-0.873,-0.476,0.106,1,0.805,0.314,0.503,1,-0.91,-0.192,-0.369,1,-0.643,-0.739,-0.201,1,0.035,-0.864,-0.502,1,-0.316,-0.872,-0.374,1,0.631,0.737,-0.242,1,0.084,0.988,-0.129,1,0.162,0.954
,-0.254,1,0.452,0.79,-0.413,1,0.632,0.711,-0.308,1,-0.795,-0.528,-0.3,1,-0.347,-0.189,-0.919,1,-0.307,-0.88,-0.362,1,-0.805,0.103,0.584,1]
,"uvs":[0.714,0.138,0.714,0.256,0.613,0.198,0.722,0.338,0.823,0.397,0.721,0.455,0.826,0.124,0.725,0.064,0.826,0.006,0.71,0.131,0.609,0.189,0.609,0.072,0.722,0.47,0.823,0.529,0.721,0.588,0.609,0.322,0.609,0.205,0.711,0.264,0.61,0.454,0.61,0.337,0.711,0.396,0.714,0.653,0.613,0.595,0.714,0.536,0.713,0.123
,0.613,0.064,0.713,0.006,0.721,0.205,0.823,0.264,0.721,0.323,0.714,0.388,0.613,0.329,0.714,0.271,0.725,0.197,0.826,0.139,0.826,0.257,0.826,0.522,0.725,0.463,0.826,0.404,0.721,0.72,0.721,0.603,0.823,0.662,0.711,0.661,0.609,0.72,0.61,0.602,0.721,0.073,0.823,0.131,0.721,0.19,0.61,0.587,0.609,0.47
,0.711,0.528,0.714,0.403,0.714,0.521,0.613,0.462,0.826,0.536,0.826,0.654,0.724,0.595,0.723,0.332,0.723,0.328,0.724,0.33,0.722,0.722,0.719,0.72,0.607,0.205,0.61,0.203,0.712,0.394,0.712,0.398,0.715,0.123,0.712,0.125,0.828,0.389,0.825,0.39,0.826,0.389,0.72,0.338,0.723,0.336,0.824,0.527,0.824,0.531
,0.716,0.388,0.713,0.39,0.719,0.603,0.722,0.601,0.712,0.262,0.712,0.266,0.824,0.66,0.824,0.663,0.713,0.269,0.716,0.271,0.716,0.521,0.713,0.522,0.722,0.324,0.719,0.323,0.712,0.004,0.715,0.006,0.608,0.602,0.611,0.601,0.825,0.535,0.828,0.536,0.824,0.395,0.824,0.398,0.825,0.269,0.828,0.271,0.826,0.271
,0.722,0.59,0.719,0.588,0.722,0.457,0.719,0.455,0.723,0.597,0.723,0.593,0.713,0.534,0.716,0.536,0.724,0.199,0.724,0.195,0.828,0.257,0.825,0.258,0.825,0.402,0.828,0.404,0.612,0.464,0.612,0.461,0.612,0.331,0.612,0.327,0.719,0.47,0.722,0.469,0.611,0.589,0.608,0.587,0.711,0.129,0.711,0.132,0.716,0.256
,0.713,0.258,0.828,0.124,0.825,0.125,0.824,0.129,0.824,0.133,0.607,0.469,0.61,0.468,0.719,0.073,0.722,0.071,0.719,0.205,0.722,0.203,0.713,0.401,0.716,0.403,0.724,0.464,0.724,0.461,0.825,0.004,0.828,0.006,0.611,0.456,0.608,0.454,0.61,0.324,0.607,0.322,0.824,0.262,0.824,0.266,0.722,0.192,0.719,0.19
,0.608,0.337,0.611,0.335,0.723,0.066,0.723,0.062,0.713,0.137,0.716,0.138,0.712,0.659,0.712,0.663,0.612,0.066,0.612,0.062,0.607,0.072,0.61,0.071,0.716,0.653,0.713,0.655,0.828,0.654,0.825,0.655,0.61,0.721,0.607,0.72,0.612,0.2,0.612,0.196,0.612,0.596,0.612,0.593,0.61,0.191,0.607,0.189,0.712,0.526
,0.712,0.53,0.828,0.522,0.825,0.524,0.825,0.137,0.828,0.139,0.719,0.72,0.719,0.603,0.824,0.663,0.61,0.203,0.722,0.601,0.716,0.271,0.715,0.123,0.723,0.336,0.828,0.271,0.824,0.531,0.824,0.398,0.723,0.593,0.724,0.199,0.719,0.47,0.722,0.469,0.612,0.327,0.713,0.522,0.722,0.071,0.824,0.133,0.719,0.19
,0.723,0.062,0.608,0.454,0.716,0.138,0.612,0.2,0.713,0.258,0.712,0.663,0.612,0.196,0.713,0.655,0.711,0.132,0.712,0.53,0.724,0.464,0.828,0.404,0.828,0.139,0.724,0.461,0.612,0.461,0.716,0.403,0.722,0.324,0.712,0.398,0.607,0.322,0.612,0.066,0.612,0.062,0.611,0.601,0.607,0.72,0.825,0.655,0.716,0.536
,0.724,0.195,0.825,0.137,0.721,0.33,0.72,0.723,0.719,0.72,0.607,0.202,0.61,0.203,0.715,0.396,0.712,0.398,0.715,0.123,0.715,0.126,0.712,0.125,0.828,0.392,0.72,0.335,0.723,0.336,0.827,0.529,0.824,0.531,0.716,0.392,0.713,0.39,0.719,0.603,0.72,0.6,0.722,0.601,0.714,0.264,0.827,0.662,0.824,0.663
,0.716,0.268,0.716,0.271,0.716,0.524,0.713,0.522,0.722,0.324,0.72,0.326,0.719,0.323,0.715,0.002,0.608,0.599,0.611,0.601,0.828,0.533,0.828,0.536,0.827,0.397,0.824,0.398,0.825,0.269,0.828,0.268,0.828,0.271,0.72,0.591,0.719,0.459,0.719,0.455,0.721,0.595,0.723,0.593,0.716,0.533,0.716,0.536,0.724,0.199
,0.721,0.197,0.724,0.195,0.828,0.26,0.828,0.401,0.828,0.404,0.609,0.462,0.612,0.461,0.609,0.329,0.612,0.327,0.719,0.47,0.72,0.467,0.722,0.469,0.608,0.59,0.714,0.131,0.711,0.132,0.716,0.259,0.713,0.258,0.828,0.127,0.825,0.125,0.824,0.129,0.827,0.131,0.824,0.133,0.607,0.466,0.719,0.07,0.722,0.071
,0.719,0.202,0.722,0.203,0.716,0.4,0.716,0.403,0.724,0.464,0.721,0.463,0.724,0.461,0.828,0.002,0.608,0.458,0.608,0.454,0.607,0.325,0.607,0.322,0.827,0.264,0.824,0.266,0.722,0.192,0.719,0.194,0.719,0.19,0.608,0.334,0.721,0.064,0.723,0.062,0.716,0.135,0.716,0.138,0.714,0.661,0.712,0.663,0.612,0.066
,0.609,0.064,0.612,0.062,0.608,0.069,0.716,0.657,0.713,0.655,0.828,0.657,0.825,0.655,0.607,0.723,0.607,0.72,0.612,0.2,0.609,0.198,0.612,0.196,0.609,0.595,0.608,0.193,0.607,0.189,0.714,0.528,0.712,0.53,0.828,0.525,0.825,0.524,0.825,0.137,0.828,0.136,0.828,0.139,0.719,0.72,0.824,0.663,0.61,0.203
,0.722,0.601,0.716,0.271,0.825,0.269,0.723,0.336,0.719,0.455,0.824,0.531,0.824,0.398,0.723,0.593,0.724,0.199,0.719,0.47,0.713,0.39,0.612,0.327,0.722,0.071,0.824,0.129,0.824,0.133,0.722,0.192,0.722,0.203,0.723,0.062,0.608,0.454,0.825,0.125,0.612,0.2,0.712,0.663,0.612,0.196,0.607,0.189,0.711,0.132
,0.712,0.53,0.825,0.524,0.724,0.464,0.828,0.404,0.828,0.139,0.724,0.461,0.612,0.461,0.719,0.323,0.824,0.266,0.722,0.324,0.712,0.398,0.607,0.322,0.712,0.125,0.612,0.066,0.612,0.062,0.611,0.601,0.828,0.536,0.825,0.655,0.724,0.195]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50
,51,52,53,54,55,56,57,58,59,60,61,39,62,63,16,64,65,20,66,67,24,68,69,70,71,72,3,73,74,13,75,76,30,77,78,40,79,80,17,81,82,41,83,84,32,85,86,52,87,88,29
,89,90,26,91,92,44,93,94,54,95,96,4,97,98,99,100,101,14,102,103,5,104,105,56,106,107,23,108,109,33,110,111,35,112,113,38,114,115,53,116,117,31,118,119,12,120,121,48,122,123,9
,124,125,1,126,127,6,128,129,46,130,131,49,132,133,45,134,135,27,136,137,51,138,139,37,140,141,8,142,143,18,144,145,15,146,147,28,148,149,47,150,151,19,152,153,7,154,155,0,156,157,42
,158,159,25,160,161,11,162,163,21,164,165,55,166,167,43,168,169,2,170,171,22,172,173,10,174,175,50,176,177,36,178,179,34,40,180,181,69,59,70,39,182,60,183,17,16,41,184,81,185,30,32
,24,90,186,58,99,59,4,187,95,68,99,188,5,71,3,189,14,13,5,190,102,191,54,56,35,192,33,193,14,101,30,116,31,73,12,194,32,195,83,114,52,196,49,121,130,197,46,45,6,141,126
,198,47,46,27,146,28,132,47,199,8,200,140,201,19,18,6,152,7,124,0,202,11,122,9,203,1,204,43,205,166,206,0,2,10,160,11,170,21,207,10,208,172,209,48,50,36,210,37,174,49,131
,36,211,176,212,35,34,38,213,112,214,51,53,29,134,27,85,51,215,28,216,29,144,17,80,18,217,142,218,16,15,24,219,25,64,19,151,26,220,89,221,42,44,54,164,55,91,43,222,56,223,104
,162,23,224,34,225,226,171,23,22,70,59,99,57,227,58,60,228,229,62,230,231,64,232,233,234,235,236,68,237,69,71,238,239,73,240,241,75,242,243,244,245,246,79,247,80,81,248,249,83,250,251
,85,252,253,254,255,256,89,257,90,91,258,259,93,260,261,95,262,263,264,265,266,100,267,101,102,268,269,104,270,271,106,272,273,274,275,276,110,277,111,112,278,279,114,280,281,116,282,283,284,285,286
,120,287,121,122,288,289,124,290,291,126,292,293,294,295,296,130,297,131,132,298,299,134,300,301,136,302,303,304,305,306,140,307,141,142,308,309,144,310,311,146,312,313,314,315,316,150,317,151,152,318,319
,154,320,321,156,322,323,324,325,326,160,327,161,162,328,329,164,330,331,166,332,333,334,335,336,170,337,171,172,338,339,174,340,341,176,342,343,344,345,346,40,39,347,69,57,59,39,41,348,349,79,17
,41,40,350,351,75,30,24,26,90,58,352,99,4,3,353,68,70,99,5,354,71,355,100,14,5,4,356,357,93,54,35,111,358,359,12,14,30,360,116,73,13,12,32,31,361,114,53,52,49,48,121
,362,363,46,6,8,141,364,365,47,27,366,146,132,45,47,8,7,367,368,150,19,6,369,152,124,1,0,11,161,122,370,2,1,43,42,371,372,154,0,10,373,160,170,22,21,10,9,374,375,120,48
,36,376,377,174,50,49,36,38,378,379,110,35,38,37,380,381,136,51,29,382,134,85,52,51,28,383,384,144,15,17,18,20,385,386,62,16,24,387,388,64,20,19,26,25,389,390,156,42,54,391,164
,91,44,43,56,55,392,162,21,23,34,33,393,171,106,23]
}
,{"name":"d100","id":"d100","billboardMode":0,"position":[0.9,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false
,"positions":[-0.0926,0.0082,-0.0301,-0.0035,-0.0937,-0.0012,-0.0586,-0.0112,-0.0769,0.0927,-0.008,0.0301,0.0036,0.0935,0.001,0.0926,0.0114,-0.0278,-0.0573,-0.008,-0.0788,-0.0021,0.0935,-0.0032,-0.0913,0.0114,-0.032,0.0926,0.0082,-0.0301,0.0036,-0.0937,-0.0012,0.0927,-0.0112,0.0278,-0.0573,0.0082,0.0788,-0.0022,-0.0937,0.003,-0.0913,-0.0113,0.032,0.0572,-0.008,-0.0788,0.0023,0.0935,-0.0032
,0.0022,0.0114,-0.0967,-0.0927,-0.008,0.0301,-0.0035,0.0935,0.001,-0.0586,0.0114,0.0769,0.0573,0.0082,0.0788,0.0022,-0.0937,0.003,0.0022,-0.0112,0.0968,0,-0.0937,-0.0038,0,0.0082,-0.0974,-0.0551,-0.0112,-0.0795,-0.0022,-0.0112,0.0968,0,-0.0102,0.0985,0,-0.0111,0.098,0,-0.008,0.0975,0,-0.0102,0.0985,-0.0011,-0.0097,0.0984,0,-0.0102,0.0985
,0.0011,-0.0097,0.0984,-0.0551,0.0114,0.0795,-0.0579,0.0103,0.0796,-0.0576,0.0113,0.0793,-0.0579,0.0103,0.0796,-0.0569,0.0099,0.0802,-0.0579,0.0103,0.0796,-0.0587,0.0099,0.0789,-0.0937,-0.0102,0.0304,-0.0932,-0.0097,0.0314,-0.0927,-0.0113,0.0278,-0.0937,-0.0102,0.0304,-0.0932,-0.0111,0.0303,-0.0937,-0.0102,0.0304,-0.0939,-0.0097,0.0294,-0.0926,0.0114,-0.0278,-0.0936,0.0103,-0.0304
,-0.0931,0.0113,-0.0303,-0.0936,0.0103,-0.0304,-0.0938,0.0099,-0.0294,-0.0936,0.0103,-0.0304,-0.0931,0.0099,-0.0314,-0.0579,-0.0102,-0.0796,-0.0587,-0.0097,-0.0789,-0.0579,-0.0102,-0.0796,-0.0576,-0.0111,-0.0792,-0.0579,-0.0102,-0.0796,-0.0569,-0.0097,-0.0801,-0.0022,0.0114,-0.0967,0,0.0104,-0.0984,0,0.0113,-0.0979,0,0.0104,-0.0984,-0.0011,0.0099,-0.0983,0,0.0104,-0.0984
,0.0011,0.0099,-0.0983,0.055,-0.0113,-0.0795,0.0578,-0.0102,-0.0796,0.0569,-0.0097,-0.0802,0.0586,-0.0113,-0.0769,0.0578,-0.0102,-0.0796,0.0575,-0.0111,-0.0792,0.0578,-0.0102,-0.0796,0.0586,-0.0097,-0.0789,0.0913,0.0114,-0.0319,0.0936,0.0104,-0.0304,0.0931,0.0113,-0.0302,0.0936,0.0104,-0.0304,0.0931,0.0099,-0.0314,0.0936,0.0104,-0.0304,0.0938,0.0099,-0.0293,0.0936,-0.0102,0.0304
,0.0938,-0.0097,0.0293,0.0913,-0.0112,0.032,0.0936,-0.0102,0.0304,0.0932,-0.0111,0.0303,0.0936,-0.0102,0.0304,0.0932,-0.0097,0.0314,0.0586,0.0114,0.0769,0.0579,0.0104,0.0796,0.0576,0.0113,0.0792,0.0579,0.0104,0.0796,0.0586,0.0099,0.0789,0.0551,0.0114,0.0795,0.0579,0.0104,0.0796,0.0569,0.0099,0.0801,0.0001,0.0935,0.0036,0.0001,0.0959,-0.0001,0.0014,0.095,0.0017
,0.0001,0.0959,-0.0001,-0.0013,0.095,0.0017,0.0001,0.0959,-0.0001,-0.0021,0.095,-0.0008,0.0001,0.0959,-0.0001,0.0001,0.095,-0.0024,0.0001,0.0959,-0.0001,0.0023,0.095,-0.0008,0,-0.0961,0,0.0022,-0.0952,0.0007,0,-0.0961,0,0.0014,-0.0952,-0.0019,0,-0.0961,0,-0.0013,-0.0952,-0.0019,0,-0.0961,0,-0.0022,-0.0952,0.0007,0,-0.0961,0
,0,-0.0952,0.0023,-0.0011,-0.0097,0.0984,-0.0587,0.0099,0.0789,-0.0932,-0.0097,0.0314,-0.0939,-0.0097,0.0294,-0.0931,0.0099,-0.0314,-0.0587,-0.0097,-0.0789,-0.0569,-0.0097,-0.0801,0.0011,0.0099,-0.0983,0.0569,-0.0097,-0.0802,0.0586,-0.0097,-0.0789,0.0938,0.0099,-0.0293,0.0938,-0.0097,0.0293,0.0932,-0.0097,0.0314,0.0569,0.0099,0.0801,0.0011,-0.0097,0.0984,-0.0013,0.095,0.0017
,-0.0021,0.095,-0.0008,0.0001,0.095,-0.0024,0.0023,0.095,-0.0008,0.0014,0.095,0.0017,0.0014,-0.0952,-0.0019,-0.0022,-0.0952,0.0007,-0.0576,-0.0111,-0.0792,-0.0013,-0.0952,-0.0019,0.0022,-0.0952,0.0007,0,-0.0952,0.0023,-0.0011,-0.0097,0.0984,0.0011,-0.0097,0.0984,0,-0.0102,0.0985,0,-0.0111,0.098,0,-0.0102,0.0985,-0.0569,0.0099,0.0802,-0.0587,0.0099,0.0789
,-0.0579,0.0103,0.0796,-0.0576,0.0113,0.0793,-0.0579,0.0103,0.0796,-0.0932,-0.0111,0.0303,-0.0939,-0.0097,0.0294,-0.0937,-0.0102,0.0304,-0.0932,-0.0097,0.0314,-0.0937,-0.0102,0.0304,-0.0938,0.0099,-0.0294,-0.0931,0.0099,-0.0314,-0.0936,0.0103,-0.0304,-0.0931,0.0113,-0.0303,-0.0936,0.0103,-0.0304,-0.0576,-0.0111,-0.0792,-0.0569,-0.0097,-0.0801,-0.0579,-0.0102,-0.0796,-0.0587,-0.0097,-0.0789
,-0.0579,-0.0102,-0.0796,-0.0011,0.0099,-0.0983,0.0011,0.0099,-0.0983,0,0.0104,-0.0984,0,0.0113,-0.0979,0,0.0104,-0.0984,0.0575,-0.0111,-0.0792,0.0586,-0.0097,-0.0789,0.0578,-0.0102,-0.0796,0.0569,-0.0097,-0.0802,0.0578,-0.0102,-0.0796,0.0931,0.0099,-0.0314,0.0938,0.0099,-0.0293,0.0936,0.0104,-0.0304,0.0931,0.0113,-0.0302,0.0936,0.0104,-0.0304,0.0932,-0.0111,0.0303
,0.0932,-0.0097,0.0314,0.0936,-0.0102,0.0304,0.0938,-0.0097,0.0293,0.0936,-0.0102,0.0304,0.0586,0.0099,0.0789,0.0569,0.0099,0.0801,0.0579,0.0104,0.0796,0.0576,0.0113,0.0792,0.0579,0.0104,0.0796,-0.0013,0.095,0.0017,-0.0021,0.095,-0.0008,0.0001,0.0959,-0.0001,0.0001,0.095,-0.0024,0.0001,0.0959,-0.0001,0.0023,0.095,-0.0008,0.0001,0.0959,-0.0001,0.0014,0.095,0.0017
,0.0001,0.0959,-0.0001,0.0014,-0.0952,-0.0019,-0.0013,-0.0952,-0.0019,0,-0.0961,0,-0.0022,-0.0952,0.0007,0,-0.0961,0,0,-0.0952,0.0023,0,-0.0961,0,0.0022,-0.0952,0.0007,0,-0.0961,0,-0.0569,0.0099,0.0802,-0.0587,0.0099,0.0789,-0.0932,-0.0097,0.0314,-0.0938,0.0099,-0.0294,-0.0931,0.0099,-0.0314,-0.0587,-0.0097,-0.0789,-0.0011,0.0099,-0.0983
,0.0011,0.0099,-0.0983,0.0569,-0.0097,-0.0802,0.0931,0.0099,-0.0314,0.0938,0.0099,-0.0293,0.0938,-0.0097,0.0293,0.0586,0.0099,0.0789,0.0569,0.0099,0.0801,0.0011,-0.0097,0.0984,-0.0013,0.095,0.0017,-0.0576,0.0113,0.0793,-0.0021,0.095,-0.0008,-0.0931,0.0113,-0.0303,0.0001,0.095,-0.0024,0,0.0113,-0.0979,0.0023,0.095,-0.0008,0.0931,0.0113,-0.0302,0.0014,0.095,0.0017
,0.0576,0.0113,0.0792,0.0014,-0.0952,-0.0019,0.0575,-0.0111,-0.0792,-0.0022,-0.0952,0.0007,-0.0932,-0.0111,0.0303,-0.0013,-0.0952,-0.0019,0.0022,-0.0952,0.0007,0.0932,-0.0111,0.0303,0,-0.0952,0.0023,0,-0.0111,0.098]
,"normals":[-0.831,-0.487,-0.27,-0.607,-0.769,-0.198,-0.715,-0.571,-0.404,0.83,0.488,0.27,0.607,0.77,0.197,0.815,0.572,0.093,-0.513,0.488,-0.706,-0.375,0.77,-0.516,-0.605,0.571,-0.555,0.831,-0.486,-0.27,0.608,-0.769,-0.198,0.816,-0.57,-0.094,-0.513,-0.487,0.707,-0.375,-0.77,0.517,-0.605,-0.571,0.555,0.513,0.487,-0.706,0.375,0.77,-0.516
,0.341,0.571,-0.747,-0.83,0.489,0.269,-0.606,0.771,0.197,-0.714,0.572,0.403,0.514,-0.487,0.706,0.376,-0.769,0.517,0.341,-0.571,0.747,0,-0.769,-0.639,0,-0.486,-0.874,-0.164,-0.57,-0.805,-0.341,-0.571,0.747,0,-0.195,0.981,0,-0.602,0.798,0,0.489,0.872,0,-0.195,0.981,-0.218,0.019,0.976,0,-0.195,0.981
,0.218,0.019,0.976,-0.163,0.572,0.804,-0.576,0.197,0.793,-0.469,0.604,0.645,-0.576,0.197,0.793,-0.398,-0.017,0.917,-0.576,0.197,0.793,-0.75,-0.017,0.662,-0.933,-0.195,0.303,-0.861,0.019,0.508,-0.816,-0.571,-0.094,-0.933,-0.195,0.303,-0.759,-0.602,0.246,-0.933,-0.195,0.303,-0.995,0.019,0.094,-0.815,0.572,0.093,-0.932,0.196,-0.303
,-0.758,0.603,-0.247,-0.932,0.196,-0.303,-0.995,-0.017,-0.095,-0.932,0.196,-0.303,-0.861,-0.017,-0.509,-0.576,-0.195,-0.794,-0.75,0.018,-0.662,-0.576,-0.195,-0.794,-0.469,-0.602,-0.646,-0.576,-0.195,-0.794,-0.397,0.019,-0.917,-0.341,0.571,-0.747,0,0.196,-0.981,0,0.603,-0.798,0,0.196,-0.981,-0.218,-0.017,-0.976,0,0.196,-0.981
,0.217,-0.017,-0.976,0.163,-0.57,-0.805,0.576,-0.195,-0.793,0.397,0.018,-0.918,0.715,-0.57,-0.404,0.576,-0.195,-0.793,0.469,-0.602,-0.646,0.576,-0.195,-0.793,0.75,0.018,-0.661,0.605,0.571,-0.555,0.933,0.196,-0.303,0.759,0.603,-0.247,0.933,0.196,-0.303,0.861,-0.017,-0.508,0.933,0.196,-0.303,0.995,-0.017,-0.095,0.933,-0.195,0.303
,0.995,0.019,0.094,0.606,-0.57,0.555,0.933,-0.195,0.303,0.76,-0.602,0.247,0.933,-0.195,0.303,0.861,0.019,0.508,0.714,0.572,0.404,0.577,0.197,0.793,0.469,0.604,0.645,0.577,0.197,0.793,0.75,-0.017,0.661,0.163,0.572,0.804,0.577,0.197,0.793,0.398,-0.017,0.917,0,0.771,0.637,0,1,-0.001,0.305,0.855,0.42
,0,1,-0.001,-0.305,0.855,0.42,0,1,-0.001,-0.494,0.855,-0.161,0,1,-0.001,0,0.854,-0.52,0,1,-0.001,0.494,0.854,-0.161,0,-1,0,0.495,-0.854,0.161,0,-1,0,0.306,-0.854,-0.421,0,-1,0,-0.306,-0.854,-0.421,0,-1,0,-0.495,-0.854,0.16,0,-1,0
,0,-0.854,0.52,-0.218,0.019,0.976,-0.75,-0.017,0.662,-0.861,0.019,0.508,-0.995,0.019,0.094,-0.861,-0.017,-0.509,-0.75,0.018,-0.662,-0.397,0.019,-0.917,0.217,-0.017,-0.976,0.397,0.018,-0.918,0.75,0.018,-0.661,0.995,-0.017,-0.095,0.995,0.019,0.094,0.861,0.019,0.508,0.398,-0.017,0.917,0.218,0.019,0.976,-0.305,0.855,0.42
,-0.494,0.855,-0.161,0,0.854,-0.52,0.494,0.854,-0.161,0.305,0.855,0.42,0.306,-0.854,-0.421,-0.495,-0.854,0.16,-0.469,-0.602,-0.646,-0.306,-0.854,-0.421,0.495,-0.854,0.161,0,-0.854,0.52,-0.218,0.019,0.976,0.218,0.019,0.976,0,-0.195,0.981,0,-0.602,0.798,0,-0.195,0.981,-0.398,-0.017,0.917,-0.75,-0.017,0.662
,-0.576,0.197,0.793,-0.469,0.604,0.645,-0.576,0.197,0.793,-0.759,-0.602,0.246,-0.995,0.019,0.094,-0.933,-0.195,0.303,-0.861,0.019,0.508,-0.933,-0.195,0.303,-0.995,-0.017,-0.095,-0.861,-0.017,-0.509,-0.932,0.196,-0.303,-0.758,0.603,-0.247,-0.932,0.196,-0.303,-0.469,-0.602,-0.646,-0.397,0.019,-0.917,-0.576,-0.195,-0.794,-0.75,0.018,-0.662
,-0.576,-0.195,-0.794,-0.218,-0.017,-0.976,0.217,-0.017,-0.976,0,0.196,-0.981,0,0.603,-0.798,0,0.196,-0.981,0.469,-0.602,-0.646,0.75,0.018,-0.661,0.576,-0.195,-0.793,0.397,0.018,-0.918,0.576,-0.195,-0.793,0.861,-0.017,-0.508,0.995,-0.017,-0.095,0.933,0.196,-0.303,0.759,0.603,-0.247,0.933,0.196,-0.303,0.76,-0.602,0.247
,0.861,0.019,0.508,0.933,-0.195,0.303,0.995,0.019,0.094,0.933,-0.195,0.303,0.75,-0.017,0.661,0.398,-0.017,0.917,0.577,0.197,0.793,0.469,0.604,0.645,0.577,0.197,0.793,-0.305,0.855,0.42,-0.494,0.855,-0.161,0,1,-0.001,0,0.854,-0.52,0,1,-0.001,0.494,0.854,-0.161,0,1,-0.001,0.305,0.855,0.42
,0,1,-0.001,0.306,-0.854,-0.421,-0.306,-0.854,-0.421,0,-1,0,-0.495,-0.854,0.16,0,-1,0,0,-0.854,0.52,0,-1,0,0.495,-0.854,0.161,0,-1,0,-0.398,-0.017,0.917,-0.75,-0.017,0.662,-0.861,0.019,0.508,-0.995,-0.017,-0.095,-0.861,-0.017,-0.509,-0.75,0.018,-0.662,-0.218,-0.017,-0.976
,0.217,-0.017,-0.976,0.397,0.018,-0.918,0.861,-0.017,-0.508,0.995,-0.017,-0.095,0.995,0.019,0.094,0.75,-0.017,0.661,0.398,-0.017,0.917,0.218,0.019,0.976,-0.305,0.855,0.42,-0.469,0.604,0.645,-0.494,0.855,-0.161,-0.758,0.603,-0.247,0,0.854,-0.52,0,0.603,-0.798,0.494,0.854,-0.161,0.759,0.603,-0.247,0.305,0.855,0.42
,0.469,0.604,0.645,0.306,-0.854,-0.421,0.469,-0.602,-0.646,-0.495,-0.854,0.16,-0.759,-0.602,0.246,-0.306,-0.854,-0.421,0.495,-0.854,0.161,0.76,-0.602,0.247,0,-0.854,0.52,0,-0.602,0.798]
,"tangents":[0.543,-0.816,-0.198,1,0.794,-0.599,-0.108,1,0.692,-0.662,-0.288,1,0.324,-0.816,0.479,1,0.579,-0.598,0.554,1,0.391,-0.662,0.639,1,0.018,-0.817,-0.577,1,-0.144,-0.599,-0.788,1,0.058,-0.663,-0.746,1,0.323,0.817,-0.478,1,0.578,0.599,-0.554,1,0.39,0.663,-0.639,1,-0.02,-0.816
,-0.577,1,0.143,-0.599,-0.788,1,-0.06,-0.662,-0.747,1,-0.556,0.816,0.159,1,-0.706,0.598,0.378,1,-0.73,0.661,0.173,1,0.544,0.816,0.197,1,0.795,0.598,0.108,1,0.693,0.662,0.288,1,0.555,0.817,0.159,1,0.705,0.599,0.379,1,0.728,0.663,0.174,1,0.348,-0.599,0.721,1
,0.356,-0.817,0.455,1,0.527,-0.74,0.417,1,-0.18,-0.74,-0.648,1,-0.334,-0.925,-0.183,1,-0.137,-0.791,-0.597,1,-0.356,-0.815,0.457,1,-0.356,-0.917,-0.182,1,-0.185,-0.983,-0.022,1,0.74,0.659,0.131,1,0.323,0.942,-0.09,1,-0.527,-0.739,0.419,1,-0.379,-0.924,-0.046,1,-0.462,-0.79
,0.403,1,-0.395,-0.917,-0.06,1,-0.163,-0.983,-0.089,1,0.677,0.658,0.329,1,0.211,0.941,0.263,1,-0.104,-0.659,-0.745,1,-0.186,-0.942,-0.281,1,0.56,-0.74,-0.372,1,0.071,-0.924,-0.375,1,0.525,-0.791,-0.315,1,-0.064,0.917,0.393,1,0.036,0.983,0.181,1,0.561,0.74,0.371,1
,0.073,0.925,0.374,1,0.526,0.79,0.314,1,-0.065,-0.917,-0.395,1,0.034,-0.983,-0.183,1,0.103,-0.66,-0.744,1,0.184,-0.943,-0.279,1,0.677,-0.658,-0.33,1,0.21,-0.941,-0.264,1,0.379,-0.924,-0.048,1,0.462,-0.791,0.401,1,0.393,-0.918,-0.06,1,0.161,-0.983,-0.089,1,0.178,-0.741
,-0.648,1,0.332,-0.925,-0.185,1,0.134,-0.791,-0.597,1,0.355,-0.917,-0.183,1,0.184,-0.983,-0.024,1,-0.742,0.657,0.131,1,-0.328,0.941,-0.09,1,0.488,-0.663,0.568,1,0.522,-0.659,0.542,1,0.316,-0.941,0.118,1,0.235,0.74,-0.63,1,-0.162,0.924,-0.345,1,0.24,0.791,-0.563,1
,-0.181,0.917,-0.357,1,-0.136,0.983,-0.127,1,-0.672,0.74,0.028,1,-0.279,0.924,-0.261,1,-0.611,0.79,0.054,1,-0.284,0.917,-0.28,1,-0.079,0.983,-0.168,1,0.354,-0.658,0.664,1,0.016,-0.941,0.337,1,0.353,0.659,-0.664,1,0.014,0.942,-0.336,1,0.671,0.741,0.029,1,0.278,0.925
,-0.261,1,0.609,0.791,0.054,1,-0.283,-0.917,0.281,1,-0.078,-0.983,0.168,1,0.236,-0.74,0.63,1,-0.16,-0.925,0.346,1,0.242,-0.79,0.563,1,0.178,0.917,-0.357,1,0.135,0.983,-0.127,1,-0.488,-0.661,0.57,1,-0.523,-0.657,0.543,1,-0.318,-0.94,0.121,1,-0.349,-0.597,0.722,1
,-0.402,0.001,0.916,1,-0.172,-0.384,0.907,1,0.995,0,0.099,1,0.916,0.384,-0.118,1,-0.216,0,-0.976,1,-0.395,-0.386,-0.834,1,-0.864,0.001,0.504,1,-0.672,0.385,0.632,1,0.748,0,0.664,1,0.809,-0.385,0.444,1,0.747,0,-0.665,1,0.809,0.386,-0.443,1,0.402,0
,0.916,1,0.171,-0.386,0.906,1,0.995,0,-0.099,1,0.915,-0.386,0.117,1,0.214,0,-0.977,1,0.395,-0.385,-0.834,1,0.863,0,0.505,1,0.671,0.386,0.633,1,-0.595,-0.795,-0.117,1,-0.283,-0.895,-0.344,1,0.241,0.895,0.375,1,-0.072,-0.795,-0.602,1,0.24,-0.895,-0.375,1
,0.281,-0.896,-0.343,1,0.55,-0.795,-0.254,1,0.431,-0.895,0.112,1,-0.416,0.895,-0.162,1,-0.411,0.796,-0.445,1,-0.027,0.896,-0.444,1,-0.025,-0.895,0.445,1,0.295,0.796,-0.529,1,0.413,0.896,-0.163,1,-0.432,-0.895,0.114,1,-0.442,-0.517,0.733,1,0.833,0.518,0.194,1,-0.076,-0.518
,-0.852,1,-0.788,0.519,0.332,1,0.561,-0.518,0.646,1,0.559,0.519,-0.646,1,0.833,-0.519,-0.194,1,0.862,-0.154,-0.483,1,0.442,-0.519,0.731,1,0.787,0.519,0.333,1,0.073,-0.519,-0.852,1,-0.595,-0.795,-0.117,1,-0.432,-0.895,0.114,1,-0.356,-0.917,-0.182,1,0.981,0.154,0.115,1
,0.74,0.659,0.131,1,-0.551,-0.795,-0.253,1,-0.283,-0.895,-0.344,1,-0.395,-0.917,-0.06,1,0.862,0.152,0.484,1,0.677,0.658,0.329,1,-0.193,-0.153,-0.969,1,-0.072,-0.795,-0.602,1,0.071,-0.924,-0.375,1,0.241,0.895,0.375,1,-0.064,0.917,0.393,1,-0.071,0.796,0.601,1,0.24,-0.895
,-0.375,1,-0.065,-0.917,-0.395,1,0.192,-0.155,-0.969,1,0.103,-0.66,-0.744,1,0.862,-0.154,-0.483,1,0.55,-0.795,-0.254,1,0.379,-0.924,-0.048,1,0.281,-0.896,-0.343,1,0.393,-0.918,-0.06,1,0.593,-0.797,-0.118,1,0.431,-0.895,0.112,1,0.355,-0.917,-0.183,1,-0.982,0.153,0.115,1
,-0.742,0.657,0.131,1,0.726,-0.154,0.67,1,-0.411,0.796,-0.445,1,-0.162,0.924,-0.345,1,-0.416,0.895,-0.162,1,-0.181,0.917,-0.357,1,-0.296,0.795,-0.529,1,-0.027,0.896,-0.444,1,-0.284,0.917,-0.28,1,0.414,-0.154,0.897,1,0.354,-0.658,0.664,1,0.413,0.154,-0.898,1,0.295,0.796
,-0.529,1,0.278,0.925,-0.261,1,-0.025,-0.895,0.445,1,-0.283,-0.917,0.281,1,-0.411,-0.796,0.445,1,0.413,0.896,-0.163,1,0.178,0.917,-0.357,1,-0.726,-0.152,0.67,1,-0.523,-0.657,0.543,1,-0.442,-0.517,0.733,1,0.833,0.518,0.194,1,0.995,0,0.099,1,-0.076,-0.518,-0.852,1
,-0.216,0,-0.976,1,-0.788,0.519,0.332,1,-0.864,0.001,0.504,1,0.561,-0.518,0.646,1,0.748,0,0.664,1,0.559,0.519,-0.646,1,0.442,-0.519,0.731,1,0.402,0,0.916,1,0.833,-0.519,-0.194,1,0.995,0,-0.099,1,0.073,-0.519,-0.852,1,0.214,0,-0.977,1,0.787,0.519
,0.333,1,0.863,0,0.505,1,-0.551,-0.795,-0.253,1,-0.283,-0.895,-0.344,1,0.241,0.895,0.375,1,-0.071,0.796,0.601,1,0.24,-0.895,-0.375,1,0.281,-0.896,-0.343,1,0.593,-0.797,-0.118,1,0.431,-0.895,0.112,1,-0.416,0.895,-0.162,1,-0.296,0.795,-0.529,1,-0.027,0.896,-0.444,1
,-0.025,-0.895,0.445,1,-0.411,-0.796,0.445,1,0.413,0.896,-0.163,1,-0.432,-0.895,0.114,1,-0.442,-0.517,0.733,1,0.862,0.152,0.484,1,0.833,0.518,0.194,1,0.192,-0.155,-0.969,1,-0.076,-0.518,-0.852,1,-0.982,0.153,0.115,1,-0.788,0.519,0.332,1,0.414,-0.154,0.897,1,0.561,-0.518
,0.646,1,-0.726,-0.152,0.67,1,0.559,0.519,-0.646,1,0.726,-0.154,0.67,1,0.833,-0.519,-0.194,1,-0.193,-0.153,-0.969,1,0.442,-0.519,0.731,1,0.787,0.519,0.333,1,0.413,0.154,-0.898,1,0.073,-0.519,-0.852,1,0.981,0.154,0.115,1]
,"uvs":[0.417,0.181,0.537,0.115,0.47,0.218,0.598,0.378,0.478,0.443,0.545,0.34,0.598,0.489,0.478,0.554,0.545,0.451,0.6,0.154,0.48,0.219,0.546,0.116,0.417,0.069,0.537,0.004,0.47,0.107,0.417,0.516,0.537,0.451,0.47,0.554,0.417,0.405,0.537,0.34,0.471,0.443,0.6,0.042,0.48,0.107,0.546,0.004,0.537,0.228
,0.417,0.293,0.414,0.228,0.414,0.004,0.413,0.002,0.414,0.002,0.6,0.266,0.601,0.265,0.601,0.267,0.546,0.002,0.547,0.003,0.603,0.332,0.604,0.333,0.603,0.334,0.416,0.07,0.415,0.068,0.471,0.445,0.47,0.444,0.471,0.109,0.47,0.108,0.414,0.115,0.413,0.113,0.414,0.113,0.416,0.405,0.416,0.404,0.415,0.339
,0.413,0.337,0.414,0.337,0.416,0.181,0.416,0.18,0.544,0.449,0.545,0.45,0.471,0.22,0.47,0.22,0.413,0.226,0.414,0.226,0.599,0.488,0.599,0.49,0.6,0.555,0.602,0.556,0.6,0.556,0.416,0.294,0.416,0.293,0.471,0.556,0.47,0.555,0.47,0.331,0.471,0.333,0.47,0.332,0.602,0.219,0.604,0.221,0.603,0.221
,0.416,0.517,0.415,0.516,0.414,0.451,0.413,0.449,0.414,0.449,0.601,0.153,0.601,0.154,0.544,0.338,0.546,0.339,0.546,0.114,0.547,0.114,0.602,0.108,0.604,0.109,0.603,0.11,0.6,0.377,0.6,0.378,0.601,0.443,0.602,0.445,0.601,0.445,0.601,0.042,0.601,0.043,0.546,0.228,0.546,0.226,0.547,0.227,0.48,0.331
,0.476,0.333,0.478,0.33,0.541,0.338,0.539,0.341,0.474,0.556,0.476,0.553,0.54,0.449,0.539,0.452,0.475,0.445,0.476,0.442,0.476,0.221,0.478,0.218,0.541,0.226,0.539,0.229,0.541,0.113,0.539,0.117,0.541,0.002,0.539,0.005,0.476,0.109,0.478,0.106,0.413,0.003,0.417,0.071,0.417,0.406,0.413,0.115,0.417,0.182
,0.598,0.488,0.413,0.227,0.417,0.295,0.417,0.518,0.604,0.219,0.6,0.152,0.599,0.376,0.604,0.108,0.6,0.041,0.6,0.265,0.48,0.334,0.537,0.337,0.478,0.556,0.537,0.449,0.478,0.445,0.48,0.221,0.537,0.113,0.472,0.22,0.537,0.226,0.48,0.11,0.537,0.002,0.413,0.003,0.6,0.265,0.601,0.265,0.545,0.003
,0.546,0.002,0.604,0.332,0.417,0.071,0.416,0.07,0.472,0.444,0.471,0.445,0.472,0.108,0.413,0.115,0.413,0.113,0.417,0.406,0.416,0.405,0.413,0.339,0.417,0.182,0.416,0.181,0.543,0.45,0.544,0.449,0.472,0.22,0.413,0.227,0.413,0.226,0.598,0.488,0.599,0.488,0.602,0.555,0.417,0.295,0.416,0.294,0.472,0.555
,0.471,0.556,0.472,0.332,0.604,0.219,0.604,0.221,0.417,0.518,0.416,0.517,0.413,0.45,0.6,0.152,0.601,0.153,0.543,0.339,0.544,0.338,0.545,0.115,0.604,0.108,0.604,0.109,0.599,0.376,0.6,0.377,0.602,0.444,0.6,0.041,0.601,0.042,0.545,0.227,0.546,0.226,0.48,0.334,0.537,0.337,0.541,0.338,0.478,0.556
,0.474,0.556,0.537,0.449,0.54,0.449,0.478,0.445,0.475,0.445,0.48,0.221,0.537,0.226,0.541,0.226,0.537,0.113,0.541,0.113,0.537,0.002,0.541,0.002,0.48,0.11,0.476,0.109,0.604,0.332,0.417,0.071,0.417,0.406,0.413,0.339,0.417,0.182,0.598,0.488,0.602,0.555,0.417,0.295,0.417,0.518,0.413,0.45,0.6,0.152
,0.599,0.376,0.602,0.444,0.6,0.041,0.6,0.265,0.48,0.334,0.472,0.444,0.537,0.337,0.543,0.45,0.478,0.556,0.472,0.555,0.537,0.449,0.543,0.339,0.478,0.445,0.545,0.227,0.48,0.221,0.472,0.332,0.537,0.113,0.472,0.108,0.537,0.226,0.48,0.11,0.545,0.115,0.537,0.002,0.545,0.003]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,23,33,34,35,36,37,12,38,39,20,40,41,14,42,43,44,45,46
,18,47,48,49,50,51,0,52,53,8,54,55,2,56,57,26,58,59,6,60,61,62,63,64,25,65,66,17,67,68,69,70,71,72,73,74,15,75,76,77,78,79,9,80,81,5,82,83,11,84,85
,86,87,88,3,89,90,91,92,93,21,94,95,96,97,98,99,100,101,19,102,103,7,104,105,16,106,107,4,108,109,10,110,111,24,112,113,1,114,115,13,116,117,22,118,119,27,39,120,32,35,30
,14,121,12,122,20,41,44,53,123,48,49,18,2,124,0,125,8,55,26,66,126,61,62,6,69,127,25,128,17,68,72,81,129,76,77,15,11,130,9,131,5,83,86,95,132,90,91,3,23,133,21
,134,96,98,35,135,99,103,20,19,49,136,19,105,8,7,62,137,7,107,17,16,77,138,16,109,5,4,91,139,4,101,96,99,72,140,10,113,69,24,44,141,1,117,14,13,2,115,142,143,26,59
,86,144,22,111,11,10,27,145,13,119,23,22,99,30,35,0,44,1,3,91,4,6,62,7,9,72,10,12,27,13,15,77,16,18,49,19,21,86,22,24,69,25,27,146,28,30,147,148,23,149,150
,35,151,36,12,152,153,20,154,155,14,156,42,44,157,158,18,159,160,49,161,50,0,162,163,8,164,165,2,166,56,26,167,168,6,169,170,62,171,63,25,172,173,17,174,175,69,176,70,72,177,178
,15,179,180,77,181,78,9,182,183,5,184,185,11,186,84,86,187,188,3,189,190,91,191,92,21,192,193,96,194,195,99,196,100,19,197,198,7,199,200,16,201,202,4,203,204,10,205,110,24,206,207
,1,208,209,13,210,211,22,212,213,27,12,39,32,214,35,14,43,215,216,18,20,44,0,53,48,217,49,2,57,218,219,6,8,26,25,66,61,220,62,69,71,221,222,15,17,72,9,81,76,223,77
,11,85,224,225,3,5,86,21,95,90,226,91,23,34,227,228,30,96,35,37,229,103,230,20,49,51,231,105,232,8,62,64,233,107,234,17,77,79,235,109,236,5,91,93,237,101,238,96,72,74,239
,113,240,69,44,46,241,117,242,14,2,1,115,243,24,26,86,88,244,111,245,11,27,29,246,119,247,23,99,96,30]
}
,{"name":"d4_collider","id":"d4_collider","billboardMode":0,"position":[-0.9,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false,"physicsImpostor":8,"physicsMass":0.1,"physicsFriction":0.5,"physicsRestitution":0
,"positions":[0,0.1295,-0.0007,-0.0006,-0.0428,0.1216,-0.1058,-0.0436,-0.0614,0,0.1295,-0.0007,0.105,-0.0438,-0.0611,-0.0006,-0.0428,0.1216,0,0.1295,-0.0007,-0.1058,-0.0436,-0.0614,0.105,-0.0438,-0.0611,-0.1058,-0.0436,-0.0614,-0.0006,-0.0428,0.1216,0.105,-0.0438,-0.0611]
,"normals":[-0.623,0.335,0.706,0.276,-0.961,0.018,-0.37,-0.788,0.492,-0.623,0.335,0.706,0.15,0.532,-0.833,0.276,-0.961,0.018,-0.623,0.335,0.706,-0.37,-0.788,0.492,0.15,0.532,-0.833,-0.37,-0.788,0.492,0.276,-0.961,0.018,0.15,0.532,-0.833]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11]
}
,{"name":"d6_collider","id":"d6_collider","billboardMode":0,"position":[-0.6,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false,"physicsImpostor":8,"physicsMass":0.1,"physicsFriction":0.5,"physicsRestitution":0
,"positions":[0.076,-0.0783,0.076,-0.0776,-0.076,-0.0776,-0.0783,-0.076,0.076,0.0776,0.076,0.0776,-0.0783,-0.076,0.076,-0.076,0.0783,0.076,0.076,0.076,-0.0783,0.076,-0.0783,0.076,0.0776,0.076,0.0776,-0.0776,-0.076,-0.0776,0.076,0.076,-0.0783,-0.0776,0.076,-0.0776,0.076,0.076,-0.0783,-0.076,0.0783,0.076,-0.0776,0.076,-0.0776,-0.0776,0.076,-0.0776,-0.0783,-0.076,0.076
,-0.0776,-0.076,-0.0776,0.076,-0.0776,-0.0776,0.076,-0.0783,0.076,-0.0783,-0.076,0.076,0.076,-0.0776,-0.0776,0.076,-0.0783,0.076,-0.0776,-0.076,-0.0776,0.076,-0.0776,-0.0776,0.076,0.076,-0.0783,0.076,0.076,-0.0783,0.0776,0.076,0.0776,-0.076,0.0783,0.076,-0.0776,0.076,-0.0776,-0.076,0.0783,0.076,-0.0783,-0.076,0.076]
,"normals":[0.751,0.31,0.583,0.238,-0.906,-0.351,0.297,-0.802,0.518,-0.127,0.977,0.17,0.297,-0.802,0.518,-0.805,-0.294,0.515,0.433,0.859,0.273,0.751,0.31,0.583,-0.127,0.977,0.17,0.238,-0.906,-0.351,0.433,0.859,0.273,-0.039,0.999,0.027,0.433,0.859,0.273,-0.805,-0.294,0.515,-0.039,0.999,0.027,-0.039,0.999,0.027,0.297,-0.802,0.518
,0.238,-0.906,-0.351,0.947,0.189,-0.261,0.751,0.31,0.583,0.297,-0.802,0.518,0.947,0.189,-0.261,0.751,0.31,0.583,0.238,-0.906,-0.351,0.947,0.189,-0.261,0.433,0.859,0.273,0.433,0.859,0.273,-0.127,0.977,0.17,-0.805,-0.294,0.515,-0.039,0.999,0.027,-0.805,-0.294,0.515,0.297,-0.802,0.518]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,0,18,1,3,19,20,6,21,22,23,24,25,26,27,28,29,30,31]
}
,{"name":"d8_collider","id":"d8_collider","billboardMode":0,"position":[-0.3,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false,"physicsImpostor":8,"physicsMass":0.1,"physicsFriction":0.5,"physicsRestitution":0
,"positions":[0,-0.1275,-0.0005,0.0895,-0.0004,-0.09,-0.0898,-0.0004,-0.0898,-0.0003,0.1276,-0.0003,-0.0898,-0.0004,-0.0898,0.0895,-0.0004,-0.09,-0.0003,0.1276,-0.0003,0.0895,-0.0004,-0.09,0.0895,-0.0004,0.09,0,-0.1275,-0.0005,-0.0898,-0.0004,-0.0898,-0.09,-0.0004,0.0895,-0.0003,0.1276,-0.0003,-0.09,-0.0004,0.0895,-0.0898,-0.0004,-0.0898,0,-0.1275,-0.0005,-0.09,-0.0004,0.0895
,0.0895,-0.0004,0.09,-0.0003,0.1276,-0.0003,0.0895,-0.0004,0.09,-0.09,-0.0004,0.0895,0,-0.1275,-0.0005,0.0895,-0.0004,0.09,0.0895,-0.0004,-0.09]
,"normals":[-0.3,-0.579,0.758,0.743,0.665,-0.077,-0.306,0.8,-0.515,0.446,0.578,0.684,-0.306,0.8,-0.515,0.743,0.665,-0.077,0.446,0.578,0.684,0.743,0.665,-0.077,0.925,0.366,-0.103,-0.3,-0.579,0.758,-0.306,0.8,-0.515,-0.027,0.606,0.795,0.446,0.578,0.684,-0.027,0.606,0.795,-0.306,0.8,-0.515,-0.3,-0.579,0.758,-0.027,0.606,0.795
,0.925,0.366,-0.103,0.446,0.578,0.684,0.925,0.366,-0.103,-0.027,0.606,0.795,-0.3,-0.579,0.758,0.925,0.366,-0.103,0.743,0.665,-0.077]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23]
}
,{"name":"d10_collider","id":"d10_collider","billboardMode":0,"position":[0,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false,"physicsImpostor":8,"physicsMass":0.1,"physicsFriction":0.5,"physicsRestitution":0
,"positions":[-0.094,0.0098,-0.0306,-0.0006,-0.0966,-0.0009,-0.0582,-0.0102,-0.0801,0.0936,-0.0105,0.0311,-0.0009,0.0964,-0.0005,0.094,0.0098,-0.0305,-0.0582,-0.0102,-0.0801,-0.0009,0.0964,-0.0005,-0.094,0.0098,-0.0306,0.094,0.0098,-0.0305,-0.0006,-0.0966,-0.0009,0.0936,-0.0105,0.0311,-0.0586,0.0107,0.0794,-0.0006,-0.0966,-0.0009,-0.0941,-0.0105,0.0298,0.0577,-0.01,-0.0803,-0.0009,0.0964,-0.0005
,0,0.0098,-0.0988,-0.0941,-0.0105,0.0298,-0.0009,0.0964,-0.0005,-0.0586,0.0107,0.0794,0.0577,0.0102,0.0803,-0.0006,-0.0966,-0.0009,-0.0007,-0.0105,0.0987,-0.0006,-0.0966,-0.0009,0,0.0098,-0.0988,-0.0582,-0.0102,-0.0801,-0.0009,0.0964,-0.0005,-0.0007,-0.0105,0.0987,-0.0586,0.0107,0.0794,-0.0941,-0.0105,0.0298,0.0577,0.0102,0.0803,-0.0582,-0.0102,-0.0801,0,0.0098,-0.0988
,-0.0009,0.0964,-0.0005,0.094,0.0098,-0.0305,0.0577,-0.01,-0.0803,-0.0006,-0.0966,-0.0009,-0.0007,-0.0105,0.0987,-0.0006,-0.0966,-0.0009,0.094,0.0098,-0.0305,-0.0009,0.0964,-0.0005,-0.0941,-0.0105,0.0298,-0.094,0.0098,-0.0306,-0.0009,0.0964,-0.0005,0.0936,-0.0105,0.0311,-0.0006,-0.0966,-0.0009,-0.0006,-0.0966,-0.0009,0.0577,-0.01,-0.0803,0,0.0098,-0.0988,-0.0009,0.0964,-0.0005
,0.0577,0.0102,0.0803,-0.0007,-0.0105,0.0987]
,"normals":[-0.519,0.84,-0.159,0.491,-0.682,0.542,-0.321,-0.84,-0.438,0.517,-0.842,0.156,0.683,0.683,0.259,0.516,0.84,-0.17,-0.321,-0.84,-0.438,0.683,0.683,0.259,-0.519,0.84,-0.159,0.516,0.84,-0.17,0.491,-0.682,0.542,0.517,-0.842,0.156,-0.298,0.843,0.447,0.491,-0.682,0.542,-0.505,-0.843,0.184,0.317,-0.839,-0.443,0.683,0.683,0.259
,-0.006,0.84,-0.543,-0.505,-0.843,0.184,0.683,0.683,0.259,-0.298,0.843,0.447,0.328,0.842,0.429,0.491,-0.682,0.542,0.024,-0.843,0.537,0.491,-0.682,0.542,-0.006,0.84,-0.543,-0.321,-0.84,-0.438,0.683,0.683,0.259,0.024,-0.843,0.537,-0.298,0.843,0.447,-0.505,-0.843,0.184,0.328,0.842,0.429,-0.321,-0.84,-0.438,-0.006,0.84,-0.543
,0.683,0.683,0.259,0.516,0.84,-0.17,0.317,-0.839,-0.443,0.491,-0.682,0.542,0.024,-0.843,0.537,0.491,-0.682,0.542,0.516,0.84,-0.17,0.683,0.683,0.259,-0.505,-0.843,0.184,-0.519,0.84,-0.159,0.683,0.683,0.259,0.517,-0.842,0.156,0.491,-0.682,0.542,0.491,-0.682,0.542,0.317,-0.839,-0.443,-0.006,0.84,-0.543,0.683,0.683,0.259
,0.328,0.842,0.429,0.024,-0.843,0.537]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,0,30,1,3,31,4,32,33,34,35,36,37,12,38,39,15,40,41,42,43,44
,21,45,46,47,48,49,50,51,52]
}
,{"name":"d12_collider","id":"d12_collider","billboardMode":0,"position":[0.3,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false,"physicsImpostor":8,"physicsMass":0.1,"physicsFriction":0.5,"physicsRestitution":0
,"positions":[0.0371,0.0833,-0.0524,-0.0384,0.0833,-0.0515,-0.0608,0.0189,-0.0837,0.0613,0.0833,0.0191,0.06,0.0201,-0.0839,0.0979,-0.0201,-0.0326,-0.0613,-0.0201,0.0831,0.0601,-0.0201,0.0839,-0.0378,-0.0838,0.0513,-0.0609,-0.0838,-0.0198,-0.0378,-0.0838,0.0513,0.0371,-0.0841,0.0511,-0.0609,-0.0838,-0.0198,-0.0983,-0.0202,-0.0319,-0.0984,0.0189,0.032,0,-0.0834,-0.0644,0,-0.0202,-0.1034
,-0.0608,0.0189,-0.0837,0.0371,-0.0841,0.0511,0.0601,-0.0201,0.0839,0.0984,0.0189,0.032,-0.0004,0.0195,0.1035,-0.0984,0.0189,0.032,-0.0004,0.0838,0.0638,0.0371,0.0833,-0.0524,0.0613,0.0833,0.0191,-0.0004,0.0838,0.0638,0.0613,0.0833,0.0191,0.0984,0.0189,0.032,0.0601,-0.0201,0.0839,0.0979,-0.0201,-0.0326,0,-0.0202,-0.1034,0.0608,-0.0833,-0.0206,-0.0613,0.0833,0.0191
,-0.0984,0.0189,0.032,-0.0983,-0.0202,-0.0319,0,-0.0202,-0.1034,0.06,0.0201,-0.0839,0.06,0.0201,-0.0839,0.0984,0.0189,0.032,0.0371,0.0833,-0.0524,-0.0004,0.0195,0.1035,0.0371,-0.0841,0.0511,0.0608,-0.0833,-0.0206,0,-0.0834,-0.0644,0,-0.0834,-0.0644,-0.0613,-0.0201,0.0831,-0.0609,-0.0838,-0.0198,-0.0613,-0.0201,0.0831,-0.0378,-0.0838,0.0513,-0.0609,-0.0838,-0.0198
,-0.0608,0.0189,-0.0837,-0.0983,-0.0202,-0.0319,-0.0609,-0.0838,-0.0198,-0.0609,-0.0838,-0.0198,-0.0608,0.0189,-0.0837,0.0979,-0.0201,-0.0326,0.0608,-0.0833,-0.0206,0.0608,-0.0833,-0.0206,0.0371,-0.0841,0.0511,-0.0613,-0.0201,0.0831,-0.0984,0.0189,0.032,-0.0984,0.0189,0.032,-0.0613,0.0833,0.0191,-0.0613,0.0833,0.0191,-0.0384,0.0833,-0.0515,-0.0004,0.0838,0.0638,-0.0384,0.0833,-0.0515
,0.0371,0.0833,-0.0524,-0.0004,0.0838,0.0638,0.0601,-0.0201,0.0839,-0.0004,0.0195,0.1035,-0.0004,0.0838,0.0638,-0.0004,0.0838,0.0638,0.0613,0.0833,0.0191,0.0601,-0.0201,0.0839,0.06,0.0201,-0.0839,0,-0.0202,-0.1034,0.0979,-0.0201,-0.0326,0,-0.0202,-0.1034,0,-0.0834,-0.0644,-0.0983,-0.0202,-0.0319,-0.0608,0.0189,-0.0837,-0.0384,0.0833,-0.0515,-0.0384,0.0833,-0.0515
,-0.0983,-0.0202,-0.0319]
,"normals":[0.64,0.765,0.074,0.274,0.838,-0.472,-0.291,0.725,-0.624,0.061,0.832,0.552,0.885,-0.213,-0.414,0.959,0.067,0.276,-0.067,0.133,0.989,0.915,0.148,0.376,-0.314,-0.309,0.898,-0.911,-0.38,0.159,-0.314,-0.309,0.898,0.447,-0.282,0.849,-0.911,-0.38,0.159,-0.892,0.428,-0.148,-0.617,0.735,0.28,0.065,-0.998,-0.009,0.426,0.269,-0.864
,-0.291,0.725,-0.624,0.447,-0.282,0.849,0.915,0.148,0.376,0.649,0.739,0.182,0.55,0.391,0.738,-0.617,0.735,0.28,0.408,0.365,0.837,0.64,0.765,0.074,0.061,0.832,0.552,0.408,0.365,0.837,0.061,0.832,0.552,0.649,0.739,0.182,0.915,0.148,0.376,0.959,0.067,0.276,0.426,0.269,-0.864,0.25,-0.905,0.345,-0.075,0.818,0.57
,-0.617,0.735,0.28,-0.892,0.428,-0.148,0.426,0.269,-0.864,0.885,-0.213,-0.414,0.885,-0.213,-0.414,0.649,0.739,0.182,0.64,0.765,0.074,0.55,0.391,0.738,0.447,-0.282,0.849,0.25,-0.905,0.345,0.065,-0.998,-0.009,0.065,-0.998,-0.009,-0.067,0.133,0.989,-0.911,-0.38,0.159,-0.067,0.133,0.989,-0.314,-0.309,0.898,-0.911,-0.38,0.159
,-0.291,0.725,-0.624,-0.892,0.428,-0.148,-0.911,-0.38,0.159,-0.911,-0.38,0.159,-0.291,0.725,-0.624,0.959,0.067,0.276,0.25,-0.905,0.345,0.25,-0.905,0.345,0.447,-0.282,0.849,-0.067,0.133,0.989,-0.617,0.735,0.28,-0.617,0.735,0.28,-0.075,0.818,0.57,-0.075,0.818,0.57,0.274,0.838,-0.472,0.408,0.365,0.837,0.274,0.838,-0.472
,0.64,0.765,0.074,0.408,0.365,0.837,0.915,0.148,0.376,0.55,0.391,0.738,0.408,0.365,0.837,0.408,0.365,0.837,0.061,0.832,0.552,0.915,0.148,0.376,0.885,-0.213,-0.414,0.426,0.269,-0.864,0.959,0.067,0.276,0.426,0.269,-0.864,0.065,-0.998,-0.009,-0.892,0.428,-0.148,-0.291,0.725,-0.624,0.274,0.838,-0.472,0.274,0.838,-0.472
,-0.892,0.428,-0.148]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,2,38,0,2,5,39,3,3,40,4,41,7,6
,7,42,8,43,44,11,45,9,11,14,46,47,48,49,50,51,52,53,54,15,55,20,56,57,58,59,20,60,61,21,62,63,23,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,32
,81,82,83,84,33,85]
}
,{"name":"d20_collider","id":"d20_collider","billboardMode":0,"position":[0.6,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false,"physicsImpostor":8,"physicsMass":0.1,"physicsFriction":0.5,"physicsRestitution":0
,"positions":[-0.0004,-0.0916,-0.0709,-0.0608,-0.0924,0.0345,0.06,-0.0927,0.0355,0.0605,0.0921,-0.0359,0.0979,-0.0224,-0.0577,0.0987,0.0207,0.0572,-0.0608,-0.0924,0.0345,-0.0004,-0.0916,-0.0709,-0.0989,-0.0216,-0.0572,-0.0608,-0.0924,0.0345,-0.0005,-0.0228,0.1137,0.06,-0.0927,0.0355,-0.0005,0.0927,0.0697,0.0605,0.0921,-0.0359,0.0987,0.0207,0.0572,-0.0989,-0.0216,-0.0572,-0.0003,0.021,-0.1141
,-0.0614,0.0918,-0.0353,-0.0989,-0.0216,-0.0572,-0.0004,-0.0916,-0.0709,-0.0003,0.021,-0.1141,0.06,-0.0927,0.0355,-0.0005,-0.0228,0.1137,0.0987,0.0207,0.0572,-0.0003,0.021,-0.1141,-0.0004,-0.0916,-0.0709,0.0979,-0.0224,-0.0577,-0.0987,0.021,0.0572,-0.0989,-0.0216,-0.0572,-0.0614,0.0918,-0.0353,0.0605,0.0921,-0.0359,-0.0005,0.0927,0.0697,-0.0614,0.0918,-0.0353,0.0987,0.0207,0.0572
,-0.0005,-0.0228,0.1137,-0.0005,0.0927,0.0697,-0.0005,-0.0228,0.1137,-0.0987,0.021,0.0572,-0.0005,0.0927,0.0697,-0.0003,0.021,-0.1141,0.0605,0.0921,-0.0359,-0.0614,0.0918,-0.0353,-0.0004,-0.0916,-0.0709,0.06,-0.0927,0.0355,0.0979,-0.0224,-0.0577,-0.0987,0.021,0.0572,-0.0608,-0.0924,0.0345,-0.0989,-0.0216,-0.0572,-0.0608,-0.0924,0.0345,-0.0987,0.021,0.0572,-0.0005,-0.0228,0.1137
,-0.0987,0.021,0.0572,-0.0614,0.0918,-0.0353,-0.0005,0.0927,0.0697,0.0979,-0.0224,-0.0577,0.06,-0.0927,0.0355,0.0987,0.0207,0.0572,0.0605,0.0921,-0.0359,-0.0003,0.021,-0.1141,0.0979,-0.0224,-0.0577]
,"normals":[0.441,-0.883,-0.159,-0.364,-0.456,0.812,0.92,-0.304,0.249,0.728,0.628,0.276,0.985,0.173,0.013,0.563,0.739,0.37,-0.364,-0.456,0.812,0.441,-0.883,-0.159,-0.495,-0.718,-0.49,-0.364,-0.456,0.812,0.448,0.243,0.86,0.92,-0.304,0.249,0.269,0.308,0.913,0.728,0.628,0.276,0.563,0.739,0.37,-0.495,-0.718,-0.49,0.184,0.714,-0.676
,0.024,0.998,-0.057,-0.495,-0.718,-0.49,0.441,-0.883,-0.159,0.184,0.714,-0.676,0.92,-0.304,0.249,0.448,0.243,0.86,0.563,0.739,0.37,0.184,0.714,-0.676,0.441,-0.883,-0.159,0.985,0.173,0.013,-0.681,0.711,0.176,-0.495,-0.718,-0.49,0.024,0.998,-0.057,0.728,0.628,0.276,0.269,0.308,0.913,0.024,0.998,-0.057,0.563,0.739,0.37
,0.448,0.243,0.86,0.269,0.308,0.913,0.448,0.243,0.86,-0.681,0.711,0.176,0.269,0.308,0.913,0.184,0.714,-0.676,0.728,0.628,0.276,0.024,0.998,-0.057,0.441,-0.883,-0.159,0.92,-0.304,0.249,0.985,0.173,0.013,-0.681,0.711,0.176,-0.364,-0.456,0.812,-0.495,-0.718,-0.49,-0.364,-0.456,0.812,-0.681,0.711,0.176,0.448,0.243,0.86
,-0.681,0.711,0.176,0.024,0.998,-0.057,0.269,0.308,0.913,0.985,0.173,0.013,0.92,-0.304,0.249,0.563,0.739,0.37,0.728,0.628,0.276,0.184,0.714,-0.676,0.985,0.173,0.013]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50
,51,52,53,54,55,56,57,58,59]
}
,{"name":"d100_collider","id":"d100_collider","billboardMode":0,"position":[0.9,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false,"physicsImpostor":8,"physicsMass":0.1,"physicsFriction":0.5,"physicsRestitution":0
,"positions":[-0.0933,0.009,-0.0304,-0.0013,-0.0952,-0.0019,-0.0579,-0.0102,-0.0796,0.0924,-0.0108,0.0316,-0.0021,0.095,-0.0008,0.0933,0.009,-0.0303,-0.0579,-0.0102,-0.0796,-0.0021,0.095,-0.0008,-0.0933,0.009,-0.0304,0.0933,0.009,-0.0303,-0.0013,-0.0952,-0.0019,0.0924,-0.0108,0.0316,-0.0587,0.0099,0.0789,-0.0013,-0.0952,-0.0019,-0.0934,-0.0108,0.0287,0.0569,-0.0097,-0.0802,-0.0021,0.095,-0.0008
,0,0.009,-0.0981,-0.0934,-0.0108,0.0287,-0.0021,0.095,-0.0008,-0.0587,0.0099,0.0789,-0.0015,-0.0108,0.0977,0.0924,-0.0108,0.0316,-0.0013,-0.0952,-0.0019,-0.0013,-0.0952,-0.0019,0,0.009,-0.0981,-0.0579,-0.0102,-0.0796,-0.0021,0.095,-0.0008,-0.0015,-0.0108,0.0977,-0.0587,0.0099,0.0789,-0.0934,-0.0108,0.0287,0.0569,0.0099,0.0801,-0.0579,-0.0102,-0.0796,0,0.009,-0.0981
,-0.0021,0.095,-0.0008,0.0933,0.009,-0.0303,0.0569,-0.0097,-0.0802,-0.0013,-0.0952,-0.0019,-0.0015,-0.0108,0.0977,-0.0013,-0.0952,-0.0019,0.0933,0.009,-0.0303,-0.0021,0.095,-0.0008,-0.0934,-0.0108,0.0287,-0.0933,0.009,-0.0304,-0.0021,0.095,-0.0008,0.0569,0.0099,0.0801,0.0924,-0.0108,0.0316,-0.0013,-0.0952,-0.0019,0.0569,-0.0097,-0.0802,0,0.009,-0.0981,-0.0021,0.095,-0.0008
,0.0569,0.0099,0.0801,-0.0015,-0.0108,0.0977]
,"normals":[-0.527,0.836,-0.156,0.409,-0.689,0.599,-0.327,-0.836,-0.441,0.523,-0.84,0.144,0.695,0.69,0.202,0.522,0.835,-0.174,-0.327,-0.836,-0.441,0.695,0.69,0.202,-0.527,0.836,-0.156,0.522,0.835,-0.174,0.409,-0.689,0.599,0.523,-0.84,0.144,-0.288,0.837,0.464,0.409,-0.689,0.599,-0.5,-0.841,0.204,0.328,-0.834,-0.444,0.695,0.69,0.202
,-0.003,0.836,-0.549,-0.5,-0.841,0.204,0.695,0.69,0.202,-0.288,0.837,0.464,0.051,-0.841,0.538,0.523,-0.84,0.144,0.409,-0.689,0.599,0.409,-0.689,0.599,-0.003,0.836,-0.549,-0.327,-0.836,-0.441,0.695,0.69,0.202,0.051,-0.841,0.538,-0.288,0.837,0.464,-0.5,-0.841,0.204,0.343,0.839,0.422,-0.327,-0.836,-0.441,-0.003,0.836,-0.549
,0.695,0.69,0.202,0.522,0.835,-0.174,0.328,-0.834,-0.444,0.409,-0.689,0.599,0.051,-0.841,0.538,0.409,-0.689,0.599,0.522,0.835,-0.174,0.695,0.69,0.202,-0.5,-0.841,0.204,-0.527,0.836,-0.156,0.695,0.69,0.202,0.343,0.839,0.422,0.523,-0.84,0.144,0.409,-0.689,0.599,0.328,-0.834,-0.444,-0.003,0.836,-0.549,0.695,0.69,0.202
,0.343,0.839,0.422,0.051,-0.841,0.538]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,0,30,1,3,31,4,32,33,34,35,36,37,12,38,39,15,40,41,42,43,44
,21,45,46,47,48,49,50,51,52]
}
],
"colliderFaceMap": {
"d4": {
"1": 1,
"3": 2,
"0": 3,
"2": 4
},
"d6": {
"0": 1,
"6": 1,
"3": 2,
"9": 2,
"5": 3,
"11": 3,
"2": 4,
"8": 4,
"1": 5,
"7": 5,
"4": 6,
"10": 6
},
"d8": {
"3": 1,
"5": 2,
"4": 3,
"6": 4,
"0": 5,
"7": 6,
"1": 7,
"2": 8
},
"d10": {
"7": 1,
"17": 1,
"5": 2,
"15": 2,
"8": 3,
"18": 3,
"1": 4,
"11": 4,
"3": 5,
"13": 5,
"6": 6,
"16": 6,
"0": 7,
"10": 7,
"9": 8,
"19": 8,
"4": 9,
"14": 9,
"2": 10,
"12": 10
},
"d12": {
"0": 1,
"12": 1,
"13": 1,
"4": 2,
"20": 2,
"21": 2,
"9": 3,
"30": 3,
"31": 3,
"11": 4,
"34": 4,
"35": 4,
"3": 5,
"18": 5,
"19": 5,
"7": 6,
"26": 6,
"27": 6,
"10": 7,
"32": 7,
"33": 7,
"8": 8,
"28": 8,
"29": 8,
"6": 9,
"24": 9,
"25": 9,
"5": 10,
"22": 10,
"23": 10,
"1": 11,
"14": 11,
"15": 11,
"2": 12,
"16": 12,
"17": 12
},
"d20": {
"11": 1,
"2": 2,
"1": 3,
"9": 4,
"16": 5,
"13": 6,
"7": 7,
"8": 8,
"10": 9,
"14": 10,
"17": 11,
"0": 12,
"12": 13,
"5": 14,
"3": 15,
"19": 16,
"18": 17,
"15": 18,
"4": 19,
"6": 20
},
"d100": {
"9": 10,
"19": 10,
"5": 20,
"15": 20,
"0": 30,
"10": 30,
"6": 40,
"16": 40,
"7": 50,
"17": 50,
"2": 60,
"12": 60,
"3": 70,
"13": 70,
"1": 80,
"11": 80,
"4": 90,
"14": 90,
"8": 0,
"18": 0
}
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 63 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 26 KiB

View File

@ -1,20 +0,0 @@
{
"name": "Default Colors",
"systemName": "default",
"author": "Frank Ali",
"version": 0.2,
"meshFile": "default.json",
"material": {
"type": "color",
"diffuseTexture": {
"light": "diffuse-light.png",
"dark": "diffuse-dark.png"
},
"diffuseLevel": 1,
"bumpTexture": "normal.png",
"bumpLevel": 0.5,
"specularTexture": "specular.jpg",
"specularPower": 1
},
"diceAvailable": ["d4","d6","d8","d10","d12","d20","d100"]
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 63 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 130 KiB

View File

@ -1,34 +0,0 @@
{
"name": "@3d-dice/theme-dice-of-rolling",
"private": false,
"author": {
"name": "Frank Ali"
},
"description": "Multicolored dice skin based on Dice of Rolling",
"version": "0.2.1",
"keywords": [
"3D",
"dice",
"skins",
"theme",
"dice of rolling",
"javascript",
"rpg",
"dnd",
"d&d",
"tabletop"
],
"license": "MIT",
"homepage": "https://fantasticdice.games",
"repository": {
"type": "git",
"url": "https://github.com/3d-dice/dice-themes",
"directory": "themes/diceOfRolling"
},
"bugs": {
"url": "https://github.com/3d-dice/dice-themes/issues"
},
"files": [
"*"
]
}

View File

@ -1,707 +0,0 @@
{"producer":{"name":"Blender","version":"2.93.4","exporter_version":"2.93.5","file":"dice_final.babylon"},
"autoClear":true,"clearColor":[0.0509,0.0509,0.0509],"gravity":[0,-9.81,0],"physicsEnabled":true,
"meshes":[
{"name":"d4_collider","id":"d4_collider","billboardMode":0,"position":[0.6,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false,"physicsImpostor":8,"physicsMass":0.07,"physicsFriction":0.8,"physicsRestitution":0
,"positions":[-0.0542,-0.0383,-0.0939,0,0.115,0,-0.0542,-0.0383,0.0939,-0.0542,-0.0383,-0.0939,0.1084,-0.0383,0,0,0.115,0,-0.0542,-0.0383,-0.0939,-0.0542,-0.0383,0.0939,0.1084,-0.0383,0,-0.0542,-0.0383,0.0939,0,0.115,0,0.1084,-0.0383,0]
,"normals":[-0.943,0.333,0,-0.943,0.333,0,-0.943,0.333,0,0.471,0.333,-0.816,0.471,0.333,-0.816,0.471,0.333,-0.816,0,-1,0,0,-1,0,0,-1,0,0.471,0.333,0.816,0.471,0.333,0.816,0.471,0.333,0.816]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11]
}
,{"name":"d6_collider","id":"d6_collider","billboardMode":0,"position":[0.4,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false,"physicsImpostor":8,"physicsMass":0.085,"physicsFriction":0.8,"physicsRestitution":0
,"positions":[-0.0664,-0.0664,0.0664,0.0664,-0.0664,-0.0664,-0.0664,-0.0664,-0.0664,0.0664,-0.0664,-0.0664,-0.0664,0.0664,-0.0664,-0.0664,-0.0664,-0.0664,-0.0664,0.0664,-0.0664,-0.0664,-0.0664,0.0664,-0.0664,-0.0664,-0.0664,0.0664,0.0664,-0.0664,0.0664,-0.0664,0.0664,0.0664,0.0664,0.0664,0.0664,-0.0664,0.0664,-0.0664,0.0664,0.0664,0.0664,0.0664,0.0664,-0.0664,0.0664,0.0664,0.0664,0.0664,-0.0664
,0.0664,0.0664,0.0664,0.0664,-0.0664,0.0664,0.0664,-0.0664,-0.0664,0.0664,0.0664,-0.0664,-0.0664,0.0664,-0.0664,-0.0664,0.0664,0.0664,-0.0664,-0.0664,0.0664,0.0664,-0.0664,-0.0664,0.0664,-0.0664,0.0664,-0.0664,-0.0664,0.0664,-0.0664,0.0664,0.0664,-0.0664,0.0664,-0.0664,0.0664,0.0664,-0.0664]
,"normals":[0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0
,0,1,0,0,-1,0,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,0,18,1,19,20,4,21,22,23,9,24,10,25,26,13,27,28,29]
}
,{"name":"d8_collider","id":"d8_collider","billboardMode":0,"position":[0.2,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false,"physicsImpostor":8,"physicsMass":0.082,"physicsFriction":0.8,"physicsRestitution":0
,"positions":[0,0.1,0,0.1,0,0,0,0,0.1,0,0.1,0,0,0,0.1,-0.1,0,0,0,0.1,0,-0.1,0,0,0,0,-0.1,0,0.1,0,0,0,-0.1,0.1,0,0,0,-0.1,0,0,0,0.1,0.1,0,0,0,-0.1,0,-0.1,0,0
,0,0,0.1,0,-0.1,0,0,0,-0.1,-0.1,0,0,0,-0.1,0,0.1,0,0,0,0,-0.1]
,"normals":[0.577,0.577,0.577,0.577,0.577,0.577,0.577,0.577,0.577,-0.577,0.577,0.577,-0.577,0.577,0.577,-0.577,0.577,0.577,-0.577,0.577,-0.577,-0.577,0.577,-0.577,-0.577,0.577,-0.577,0.577,0.577,-0.577,0.577,0.577,-0.577,0.577,0.577,-0.577,0.577,-0.577,0.577,0.577,-0.577,0.577,0.577,-0.577,0.577,-0.577,-0.577,0.577,-0.577,-0.577,0.577
,-0.577,-0.577,0.577,-0.577,-0.577,-0.577,-0.577,-0.577,-0.577,-0.577,-0.577,-0.577,0.577,-0.577,-0.577,0.577,-0.577,-0.577,0.577,-0.577,-0.577]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23]
}
,{"name":"d10_collider","id":"d10_collider","billboardMode":0,"position":[0,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false,"physicsImpostor":8,"physicsMass":0.082,"physicsFriction":0.8,"physicsRestitution":0
,"positions":[0,0.0106,0.0939,0.0893,0.0106,0.029,0.0552,-0.0106,0.076,0.0893,0.0106,0.029,0.0552,0.0106,-0.076,0.0893,-0.0106,-0.029,0.0552,0.0106,-0.076,-0.0552,0.0106,-0.076,0,-0.0106,-0.0939,-0.0552,0.0106,-0.076,-0.0893,0.0106,0.029,-0.0893,-0.0106,-0.029,-0.0893,0.0106,0.029,0,0.0106,0.0939,-0.0552,-0.0106,0.076,0.0893,-0.0106,-0.029,0,-0.0106,-0.0939
,0,-0.1,0,0.0893,-0.0106,-0.029,0.0552,-0.0106,0.076,0.0893,0.0106,0.029,0.0552,-0.0106,0.076,-0.0552,-0.0106,0.076,0,0.0106,0.0939,-0.0552,-0.0106,0.076,-0.0893,-0.0106,-0.029,-0.0893,0.0106,0.029,-0.0893,-0.0106,-0.029,0,-0.0106,-0.0939,-0.0552,0.0106,-0.076,0,0.1,0,0.0893,0.0106,0.029,0,0.1,0,0.0552,0.0106,-0.076
,0,0.1,0,-0.0552,0.0106,-0.076,0,0.1,0,-0.0893,0.0106,0.029,0,0.1,0,0,0.0106,0.0939,0.0893,-0.0106,-0.029,0.0552,0.0106,-0.076,0,-0.0106,-0.0939,0.0893,-0.0106,-0.029,0,-0.1,0,0.0552,-0.0106,0.076,0.0552,-0.0106,0.076,0,-0.1,0,-0.0552,-0.0106,0.076,-0.0552,-0.0106,0.076,0,-0.1,0
,-0.0893,-0.0106,-0.029,-0.0893,-0.0106,-0.029,0,-0.1,0,0,-0.0106,-0.0939]
,"normals":[0.448,0.647,0.617,0.448,0.647,0.617,0.448,0.647,0.617,0.725,0.647,-0.236,0.725,0.647,-0.236,0.725,0.647,-0.236,0,0.647,-0.762,0,0.647,-0.762,0,0.647,-0.762,-0.725,0.647,-0.236,-0.725,0.647,-0.236,-0.725,0.647,-0.236,-0.448,0.647,0.617,-0.448,0.647,0.617,-0.448,0.647,0.617,0.448,-0.647,-0.617,0.448,-0.647,-0.617
,0.448,-0.647,-0.617,0.725,-0.647,0.236,0.725,-0.647,0.236,0.725,-0.647,0.236,0,-0.647,0.762,0,-0.647,0.762,0,-0.647,0.762,-0.725,-0.647,0.236,-0.725,-0.647,0.236,-0.725,-0.647,0.236,-0.448,-0.647,-0.617,-0.448,-0.647,-0.617,-0.448,-0.647,-0.617,0.448,0.647,0.617,0.725,0.647,-0.236,0.725,0.647,-0.236,0,0.647,-0.762
,0,0.647,-0.762,-0.725,0.647,-0.236,-0.725,0.647,-0.236,-0.448,0.647,0.617,-0.448,0.647,0.617,-0.448,0.647,0.617,0.448,-0.647,-0.617,0.448,-0.647,-0.617,0.448,-0.647,-0.617,0.725,-0.647,0.236,0.725,-0.647,0.236,0.725,-0.647,0.236,0,-0.647,0.762,0,-0.647,0.762,0,-0.647,0.762,-0.725,-0.647,0.236,-0.725,-0.647,0.236
,-0.725,-0.647,0.236,-0.448,-0.647,-0.617,-0.448,-0.647,-0.617,-0.448,-0.647,-0.617]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,0,30,1,31,32,4,33,34,7,35,36,10,37,38,39,40,41,42,43,44,45
,46,47,48,49,50,51,52,53,54]
}
,{"name":"d12_collider","id":"d12_collider","billboardMode":0,"position":[-0.2,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false,"physicsImpostor":8,"physicsMass":0.09,"physicsFriction":0.8,"physicsRestitution":0
,"positions":[-0.0577,-0.0577,0.0577,0,-0.0934,-0.0357,-0.0577,-0.0577,-0.0577,0.0357,0,-0.0934,0,0.0934,-0.0357,-0.0577,0.0577,-0.0577,0,-0.0934,0.0357,0.0934,-0.0357,0,0.0577,-0.0577,-0.0577,-0.0934,0.0357,0,0,0.0934,-0.0357,0,0.0934,0.0357,0.0357,0,-0.0934,-0.0357,0,-0.0934,-0.0577,-0.0577,-0.0577,-0.0577,0.0577,-0.0577,-0.0934,-0.0357,0
,-0.0577,-0.0577,-0.0577,-0.0357,0,0.0934,0,0.0934,0.0357,0.0577,0.0577,0.0577,-0.0934,-0.0357,0,-0.0577,0.0577,0.0577,-0.0357,0,0.0934,0,0.0934,-0.0357,0.0934,0.0357,0,0.0577,0.0577,0.0577,0.0357,0,-0.0934,0.0577,-0.0577,-0.0577,0.0934,-0.0357,0,0.0577,-0.0577,0.0577,0.0357,0,0.0934,0.0577,0.0577,0.0577,0,-0.0934,0.0357
,-0.0357,0,0.0934,0.0357,0,0.0934,-0.0934,-0.0357,0,0,-0.0934,0.0357,-0.0357,0,-0.0934,0.0577,0.0577,-0.0577,0,-0.0934,-0.0357,0.0577,-0.0577,0.0577,-0.0577,0.0577,0.0577,-0.0577,0.0577,-0.0577,0,0.0934,-0.0357,-0.0577,-0.0577,-0.0577,0,-0.0934,-0.0357,0.0577,-0.0577,-0.0577,0.0577,-0.0577,-0.0577,0.0357,0,-0.0934,-0.0577,-0.0577,-0.0577
,-0.0577,-0.0577,-0.0577,-0.0357,0,-0.0934,-0.0577,0.0577,-0.0577,-0.0577,0.0577,-0.0577,-0.0934,0.0357,0,0.0357,0,0.0934,-0.0577,0.0577,0.0577,0,0.0934,0.0357,-0.0357,0,0.0934,-0.0577,-0.0577,0.0577,-0.0934,-0.0357,0,-0.0934,-0.0357,0,-0.0934,0.0357,0,0.0577,0.0577,0.0577,0,0.0934,0.0357,0,0.0934,-0.0357,0,0.0934,-0.0357
,0.0577,0.0577,-0.0577,0.0934,0.0357,0,0.0577,0.0577,-0.0577,0.0934,-0.0357,0,0.0577,0.0577,-0.0577,0.0357,0,-0.0934,0.0934,-0.0357,0,0.0577,0.0577,0.0577,0.0934,0.0357,0,0.0934,-0.0357,0,0.0934,-0.0357,0,0.0577,0.0577,0.0577,0.0357,0,0.0934,0.0577,-0.0577,0.0577,0,-0.0934,0.0357,0,-0.0934,0.0357,-0.0577,-0.0577,0.0577
,-0.0357,0,0.0934]
,"normals":[-0.526,-0.851,0,-0.526,-0.851,0,-0.526,-0.851,0,0,0.526,-0.851,0,0.526,-0.851,0,0.526,-0.851,0.526,-0.851,0,0.526,-0.851,0,0.526,-0.851,0,-0.526,0.851,0,-0.526,0.851,0,-0.526,0.851,0,0,-0.526,-0.851,0,-0.526,-0.851,0,-0.526,-0.851,-0.851,0,-0.526,-0.851,0,-0.526
,-0.851,0,-0.526,0,0.526,0.851,0,0.526,0.851,0,0.526,0.851,-0.851,0,0.526,-0.851,0,0.526,-0.851,0,0.526,0.526,0.851,0,0.526,0.851,0,0.526,0.851,0,0.851,0,-0.526,0.851,0,-0.526,0.851,0,-0.526,0.851,0,0.526,0.851,0,0.526,0.851,0,0.526,0,-0.526,0.851
,0,-0.526,0.851,0,-0.526,0.851,-0.526,-0.851,0,-0.526,-0.851,0,0,0.526,-0.851,0,0.526,-0.851,0.526,-0.851,0,0.526,-0.851,0,-0.526,0.851,0,-0.526,0.851,0,-0.526,0.851,0,0,-0.526,-0.851,0,-0.526,-0.851,0,-0.526,-0.851,0,-0.526,-0.851,0,-0.526,-0.851,0,-0.526,-0.851
,-0.851,0,-0.526,-0.851,0,-0.526,-0.851,0,-0.526,-0.851,0,-0.526,-0.851,0,-0.526,0,0.526,0.851,0,0.526,0.851,0,0.526,0.851,-0.851,0,0.526,-0.851,0,0.526,-0.851,0,0.526,-0.851,0,0.526,-0.851,0,0.526,0.526,0.851,0,0.526,0.851,0,0.526,0.851,0,0.526,0.851,0
,0.526,0.851,0,0.851,0,-0.526,0.851,0,-0.526,0.851,0,-0.526,0.851,0,-0.526,0.851,0,-0.526,0.851,0,-0.526,0.851,0,0.526,0.851,0,0.526,0.851,0,0.526,0.851,0,0.526,0.851,0,0.526,0,-0.526,0.851,0,-0.526,0.851,0,-0.526,0.851,0,-0.526,0.851,0,-0.526,0.851
,0,-0.526,0.851]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,2,36,0,0,37,1,5,38,3,3,39,4,8,40,6
,6,41,7,11,42,9,9,43,44,45,46,47,48,49,50,51,52,53,54,55,16,20,56,18,18,57,58,59,60,61,62,63,22,64,65,66,67,68,25,69,70,71,72,73,74,75,76,77,78,30,79
,80,81,82,83,84,85]
}
,{"name":"d20_collider","id":"d20_collider","billboardMode":0,"position":[-0.4,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1.1109,1.1109,1.1109],"isVisible":true,"isEnabled":true,"pickable":false,"physicsImpostor":8,"physicsMass":0.1,"physicsFriction":0.8,"physicsRestitution":0
,"positions":[0.0851,0,0.0526,0,0.0526,0.0851,0.0526,0.0851,0,0.0526,-0.0851,0,0,-0.0526,0.0851,0.0851,0,-0.0526,0,0.0526,-0.0851,0,-0.0526,-0.0851,-0.0851,0,0.0526,-0.0526,0.0851,0,-0.0526,-0.0851,0,-0.0851,0,-0.0526]
,"normals":[0.851,0,0.526,0,0.526,0.851,0.526,0.851,0,0.526,-0.851,0,0,-0.526,0.851,0.851,0,-0.526,0,0.526,-0.851,0,-0.526,-0.851,-0.851,0,0.526,-0.526,0.851,0,-0.526,-0.851,0,-0.851,0,-0.526]
,"indices":[0,1,2,0,3,4,5,2,6,5,7,3,8,9,1,8,4,10,11,6,9,11,10,7,0,4,1,8,1,4,5,6,7,11,7,6,2,5,0,3,0,5,9,8,11,10,11,8,1,9,2
,6,2,9,4,3,10,7,10,3]
}
,{"name":"d100_collider","id":"d100_collider","billboardMode":0,"position":[-0.6,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false,"physicsImpostor":8,"physicsMass":0.082,"physicsFriction":0.8,"physicsRestitution":0
,"positions":[0,0.0106,0.0939,0.0893,0.0106,0.029,0.0552,-0.0106,0.076,0.0893,0.0106,0.029,0.0552,0.0106,-0.076,0.0893,-0.0106,-0.029,0.0552,0.0106,-0.076,-0.0552,0.0106,-0.076,0,-0.0106,-0.0939,-0.0552,0.0106,-0.076,-0.0893,0.0106,0.029,-0.0893,-0.0106,-0.029,-0.0893,0.0106,0.029,0,0.0106,0.0939,-0.0552,-0.0106,0.076,0.0893,-0.0106,-0.029,0,-0.0106,-0.0939
,0,-0.1,0,0.0893,-0.0106,-0.029,0.0552,-0.0106,0.076,0.0893,0.0106,0.029,0.0552,-0.0106,0.076,-0.0552,-0.0106,0.076,0,0.0106,0.0939,-0.0552,-0.0106,0.076,-0.0893,-0.0106,-0.029,-0.0893,0.0106,0.029,-0.0893,-0.0106,-0.029,0,-0.0106,-0.0939,-0.0552,0.0106,-0.076,0,0.1,0,0.0893,0.0106,0.029,0,0.1,0,0.0552,0.0106,-0.076
,0,0.1,0,-0.0552,0.0106,-0.076,0,0.1,0,-0.0893,0.0106,0.029,0,0.1,0,0,0.0106,0.0939,0.0893,-0.0106,-0.029,0.0552,0.0106,-0.076,0,-0.0106,-0.0939,0.0893,-0.0106,-0.029,0,-0.1,0,0.0552,-0.0106,0.076,0.0552,-0.0106,0.076,0,-0.1,0,-0.0552,-0.0106,0.076,-0.0552,-0.0106,0.076,0,-0.1,0
,-0.0893,-0.0106,-0.029,-0.0893,-0.0106,-0.029,0,-0.1,0,0,-0.0106,-0.0939]
,"normals":[0.448,0.647,0.617,0.448,0.647,0.617,0.448,0.647,0.617,0.725,0.647,-0.236,0.725,0.647,-0.236,0.725,0.647,-0.236,0,0.647,-0.762,0,0.647,-0.762,0,0.647,-0.762,-0.725,0.647,-0.236,-0.725,0.647,-0.236,-0.725,0.647,-0.236,-0.448,0.647,0.617,-0.448,0.647,0.617,-0.448,0.647,0.617,0.448,-0.647,-0.617,0.448,-0.647,-0.617
,0.448,-0.647,-0.617,0.725,-0.647,0.236,0.725,-0.647,0.236,0.725,-0.647,0.236,0,-0.647,0.762,0,-0.647,0.762,0,-0.647,0.762,-0.725,-0.647,0.236,-0.725,-0.647,0.236,-0.725,-0.647,0.236,-0.448,-0.647,-0.617,-0.448,-0.647,-0.617,-0.448,-0.647,-0.617,0.448,0.647,0.617,0.725,0.647,-0.236,0.725,0.647,-0.236,0,0.647,-0.762
,0,0.647,-0.762,-0.725,0.647,-0.236,-0.725,0.647,-0.236,-0.448,0.647,0.617,-0.448,0.647,0.617,-0.448,0.647,0.617,0.448,-0.647,-0.617,0.448,-0.647,-0.617,0.448,-0.647,-0.617,0.725,-0.647,0.236,0.725,-0.647,0.236,0.725,-0.647,0.236,0,-0.647,0.762,0,-0.647,0.762,0,-0.647,0.762,-0.725,-0.647,0.236,-0.725,-0.647,0.236
,-0.725,-0.647,0.236,-0.448,-0.647,-0.617,-0.448,-0.647,-0.617,-0.448,-0.647,-0.617]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,0,30,1,31,32,4,33,34,7,35,36,10,37,38,39,40,41,42,43,44,45
,46,47,48,49,50,51,52,53,54]
}
,{"name":"d4","id":"d4","billboardMode":0,"position":[0.6,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false
,"positions":[-0.0053,0.0999,0,-0.0284,0.0346,0.04,-0.0284,0.0346,-0.04,0.0489,0.0346,0.0046,0.0951,-0.0308,0.0046,0.0258,-0.0308,0.0446,0.0027,0.0999,0.0046,-0.0204,0.0346,0.0446,0.0489,0.0346,-0.0046,0.0258,-0.0308,-0.0446,0.0951,-0.0308,-0.0046,-0.0515,-0.0308,0.08,-0.0515,-0.0308,0,-0.0204,0.0346,-0.0446,-0.0435,-0.0308,-0.0847,-0.0435,-0.0308,0.0847,0.0231,-0.0383,-0.04
,-0.0462,-0.0383,-0.08,-0.0462,-0.0383,0,-0.0515,-0.0308,-0.08,0.0231,-0.0383,0.04,-0.0462,-0.0383,0.08,0.0924,-0.0383,0,0,0.1045,0,-0.0024,0.1015,0.0042,0.0027,0.0999,-0.0046,0,0.1045,0,-0.0024,0.1015,-0.0042,0,0.1045,0,0.0049,0.1015,0,0.0985,-0.0348,0,0.0973,-0.0292,0,0.0985,-0.0348,0,0.0949,-0.0361,-0.0042
,0.0985,-0.0348,0,0.0949,-0.0361,0.0042,-0.0492,-0.0348,0.0853,-0.0511,-0.0361,0.08,-0.0492,-0.0348,0.0853,-0.0486,-0.0292,0.0843,-0.0492,-0.0348,0.0853,-0.0438,-0.0361,0.0843,-0.0492,-0.0348,-0.0853,-0.0438,-0.0361,-0.0843,-0.0492,-0.0348,-0.0853,-0.0486,-0.0292,-0.0843,-0.0492,-0.0348,-0.0853,-0.0511,-0.0361,-0.08,-0.0255,0.0361,-0.0442,-0.0255,0.0361,-0.0442,0.0511,0.0361,0
,0.0973,-0.0292,0,0.0511,0.0361,0,-0.0255,0.0361,0.0442,-0.0255,0.0361,0.0442,0.0255,-0.0361,0.0442,0.0255,-0.0361,0.0442,-0.0511,-0.0361,0,-0.0511,-0.0361,-0.08,-0.0511,-0.0361,0,0.0255,-0.0361,-0.0442,0.0255,-0.0361,-0.0442,-0.0024,0.1015,-0.0042,0.0049,0.1015,0,0.0511,0.0361,0,-0.0024,0.1015,0.0042,0.0949,-0.0361,0.0042,-0.0511,-0.0361,0.08
,-0.0511,-0.0361,0,0.0949,-0.0361,-0.0042,-0.0024,0.1015,-0.0042,0.0049,0.1015,0,0,0.1045,0,-0.0024,0.1015,0.0042,0,0.1045,0,0.0949,-0.0361,-0.0042,0.0949,-0.0361,0.0042,0.0985,-0.0348,0,0.0973,-0.0292,0,0.0985,-0.0348,0,-0.0486,-0.0292,0.0843,-0.0438,-0.0361,0.0843,-0.0492,-0.0348,0.0853,-0.0511,-0.0361,0.08,-0.0492,-0.0348,0.0853
,-0.0486,-0.0292,-0.0843,-0.0511,-0.0361,-0.08,-0.0492,-0.0348,-0.0853,-0.0438,-0.0361,-0.0843,-0.0492,-0.0348,-0.0853,-0.0255,0.0361,-0.0442,-0.0486,-0.0292,-0.0843,0.0973,-0.0292,0,-0.0255,0.0361,0.0442,-0.0486,-0.0292,0.0843,0.0255,-0.0361,0.0442,-0.0438,-0.0361,0.0843,-0.0511,-0.0361,-0.08,0.0255,-0.0361,-0.0442,-0.0438,-0.0361,-0.0843,-0.0255,0.0361,-0.0442,0.0049,0.1015,0
,0.0511,0.0361,0,-0.0024,0.1015,0.0042,-0.0255,0.0361,0.0442,0.0949,-0.0361,0.0042,0.0255,-0.0361,0.0442,-0.0511,-0.0361,0.08,-0.0511,-0.0361,0,0.0949,-0.0361,-0.0042,0.0255,-0.0361,-0.0442]
,"normals":[-0.815,0.579,0,-0.886,0.425,0.183,-0.886,0.425,-0.183,0.602,0.425,0.676,0.682,0.191,0.706,0.496,0.127,0.859,0.408,0.579,0.706,0.285,0.425,0.859,0.602,0.425,-0.676,0.496,0.127,-0.859,0.682,0.191,-0.706,-0.952,0.191,0.237,-0.992,0.127,0,0.285,0.425,-0.859,0.271,0.191,-0.943,0.271,0.191,0.943,0.106,-0.977,-0.183
,-0.137,-0.962,-0.237,-0.211,-0.977,0,-0.952,0.191,-0.237,0.106,-0.977,0.183,-0.137,-0.962,0.237,0.274,-0.962,0,0,1,0,-0.346,0.722,0.599,0.408,0.579,-0.706,0,1,0,-0.346,0.722,-0.599,0,1,0,0.692,0.722,0,0.943,-0.333,0,0.911,0.412,0,0.943,-0.333,0,0.565,-0.567,-0.599
,0.943,-0.333,0,0.565,-0.567,0.599,-0.471,-0.333,0.816,-0.802,-0.567,0.19,-0.471,-0.333,0.816,-0.456,0.412,0.789,-0.471,-0.333,0.816,0.236,-0.567,0.789,-0.471,-0.333,-0.816,0.236,-0.567,-0.789,-0.471,-0.333,-0.816,-0.456,0.412,-0.789,-0.471,-0.333,-0.816,-0.802,-0.567,-0.19,-0.408,0.577,-0.707,-0.408,0.577,-0.707,0.816,0.577,0
,0.911,0.412,0,0.816,0.577,0,-0.408,0.577,0.707,-0.408,0.577,0.707,0.408,-0.577,0.707,0.408,-0.577,0.707,-0.816,-0.577,0,-0.802,-0.567,-0.19,-0.816,-0.577,0,0.408,-0.577,-0.707,0.408,-0.577,-0.707,-0.346,0.722,-0.599,0.692,0.722,0,0.816,0.577,0,-0.346,0.722,0.599,0.565,-0.567,0.599,-0.802,-0.567,0.19
,-0.816,-0.577,0,0.565,-0.567,-0.599,-0.346,0.722,-0.599,0.692,0.722,0,0,1,0,-0.346,0.722,0.599,0,1,0,0.565,-0.567,-0.599,0.565,-0.567,0.599,0.943,-0.333,0,0.911,0.412,0,0.943,-0.333,0,-0.456,0.412,0.789,0.236,-0.567,0.789,-0.471,-0.333,0.816,-0.802,-0.567,0.19,-0.471,-0.333,0.816
,-0.456,0.412,-0.789,-0.802,-0.567,-0.19,-0.471,-0.333,-0.816,0.236,-0.567,-0.789,-0.471,-0.333,-0.816,-0.408,0.577,-0.707,-0.456,0.412,-0.789,0.911,0.412,0,-0.408,0.577,0.707,-0.456,0.412,0.789,0.408,-0.577,0.707,0.236,-0.567,0.789,-0.802,-0.567,-0.19,0.408,-0.577,-0.707,0.236,-0.567,-0.789,-0.408,0.577,-0.707,0.692,0.722,0
,0.816,0.577,0,-0.346,0.722,0.599,-0.408,0.577,0.707,0.565,-0.567,0.599,0.408,-0.577,0.707,-0.802,-0.567,0.19,-0.816,-0.577,0,0.565,-0.567,-0.599,0.408,-0.577,-0.707]
,"tangents":[0.002,0.003,-1,1,-0.16,0.089,-0.983,1,0.163,-0.084,-0.983,1,-0.58,0.815,0.003,1,-0.443,0.876,0.19,1,-0.502,0.849,0.164,1,-0.684,0.706,-0.184,1,-0.637,0.753,-0.162,1,0.174,0.756,0.631,1,0.389,0.852,0.351,1,0.287,0.817,0.499,1,-0.228,0.068,-0.971,1,0,0.001
,-1,1,0.287,0.817,0.5,1,0.382,0.878,0.288,1,-0.58,0.815,0.001,1,0.863,0.181,-0.471,1,0.865,0.001,-0.502,1,0.837,-0.181,-0.516,1,0.228,-0.068,-0.971,1,0.866,0,-0.5,1,0.847,-0.238,-0.475,1,0.835,0.238,-0.496,1,0,0,-1,1,-0.386,0.473,-0.792,1
,0.178,0.708,0.683,1,0.107,0,0.994,1,0.236,0.685,0.689,1,-0.917,0,-0.398,1,-0.715,0.686,-0.135,1,0.289,0.817,0.5,1,-0.282,0.623,0.73,1,0.269,0.76,-0.592,1,0.562,0.796,-0.223,1,0.305,0.861,0.407,1,-0.033,0.71,0.703,1,-0.843,-0.102,-0.528,1,-0.234,0.006
,-0.972,1,-0.58,0.814,-0.002,1,-0.496,0.619,-0.609,1,0.646,-0.761,0.063,1,0.878,-0.223,-0.423,1,0.194,0.864,-0.465,1,0.618,0.714,-0.328,1,0.842,0.104,-0.529,1,0.723,-0.345,-0.598,1,0.866,0,-0.5,1,0.528,-0.522,-0.67,1,0.552,-0.461,-0.695,1,0.288,0.816,0.501,1
,-0.326,0.462,0.825,1,-0.408,0.902,0.144,1,-0.577,0.816,0.005,1,-0.556,0.457,-0.694,1,-0.553,0.46,-0.695,1,0.866,0.001,-0.5,1,-0.255,0.671,0.696,1,0.477,-0.674,-0.565,1,0.234,-0.005,-0.972,1,0,-0.001,-1,1,0.726,0.675,-0.132,1,0.727,0.674,-0.131,1,0.387,-0.472
,-0.792,1,-0.277,0.266,0.923,1,-0.577,0.816,0.005,1,-0.665,0.262,-0.699,1,0.806,0.222,-0.549,1,0.474,-0.796,-0.377,1,0,-0.001,-1,1,0.738,0.672,0.06,1,0.387,-0.472,-0.792,1,-0.277,0.266,0.923,1,0.107,0,0.994,1,-0.665,0.262,-0.699,1,-0.917,0,-0.398,1
,0.738,0.672,0.06,1,0.806,0.222,-0.549,1,0.269,0.76,-0.592,1,-0.408,0.902,0.144,1,0.305,0.861,0.407,1,-0.722,0.347,-0.598,1,-0.426,0.669,0.609,1,-0.58,0.814,-0.002,1,0.474,-0.796,-0.377,1,0.646,-0.761,0.063,1,0.325,0.902,0.284,1,0.234,-0.005,-0.972,1,0.842,0.104
,-0.529,1,0.844,0.522,-0.122,1,0.866,0,-0.5,1,0.288,0.816,0.501,1,0.325,0.902,0.284,1,-0.408,0.902,0.144,1,-0.553,0.46,-0.695,1,-0.722,0.347,-0.598,1,-0.255,0.671,0.696,1,-0.426,0.669,0.609,1,0.234,-0.005,-0.972,1,0.727,0.674,-0.131,1,0.844,0.522,-0.122,1
,0.288,0.816,0.501,1,-0.277,0.266,0.923,1,-0.577,0.816,0.005,1,-0.665,0.262,-0.699,1,-0.553,0.46,-0.695,1,0.806,0.222,-0.549,1,-0.255,0.671,0.696,1,0.474,-0.796,-0.377,1,0,-0.001,-1,1,0.738,0.672,0.06,1,0.727,0.674,-0.131,1]
,"uvs":[0.882,0.427,0.835,0.349,0.93,0.348,0.859,0.601,0.767,0.599,0.812,0.519,0.95,0.6,0.906,0.519,0.512,0.788,0.417,0.789,0.465,0.71,0.791,0.268,0.882,0.267,0.465,0.87,0.373,0.868,0.859,0.441,0.364,0.848,0.316,0.927,0.27,0.849,0.974,0.268,0.316,0.767,0.225,0.769,0.408,0.769,0.882,0.435,0.877,0.43
,0.556,0.868,0.563,0.872,0.557,0.875,0.957,0.604,0.95,0.606,0.465,0.702,0.47,0.706,0.415,0.765,0.414,0.771,0.76,0.603,0.761,0.596,0.784,0.264,0.79,0.262,0.859,0.433,0.864,0.437,0.218,0.765,0.225,0.763,0.366,0.873,0.368,0.866,0.981,0.264,0.979,0.271,0.316,0.935,0.311,0.931,0.935,0.351,0.465,0.876
,0.517,0.785,0.766,0.605,0.859,0.607,0.911,0.516,0.83,0.352,0.316,0.761,0.806,0.516,0.264,0.852,0.974,0.262,0.882,0.26,0.412,0.786,0.369,0.852,0.887,0.43,0.562,0.866,0.859,0.607,0.956,0.597,0.409,0.763,0.219,0.771,0.882,0.26,0.46,0.706,0.887,0.43,0.562,0.866,0.563,0.872,0.956,0.597,0.957,0.604
,0.46,0.706,0.409,0.763,0.415,0.765,0.766,0.605,0.76,0.603,0.785,0.271,0.854,0.437,0.859,0.433,0.219,0.771,0.218,0.765,0.373,0.875,0.974,0.262,0.981,0.264,0.322,0.931,0.316,0.935,0.465,0.876,0.373,0.875,0.766,0.605,0.83,0.352,0.785,0.271,0.806,0.516,0.854,0.437,0.974,0.262,0.369,0.852,0.322,0.931
,0.465,0.876,0.562,0.866,0.859,0.607,0.956,0.597,0.83,0.352,0.409,0.763,0.806,0.516,0.219,0.771,0.882,0.26,0.46,0.706,0.369,0.852]
,"indices":[0,1,2,3,4,5,6,3,7,8,9,10,1,11,12,13,14,9,7,5,15,2,1,12,8,13,9,16,17,18,7,3,5,2,12,19,20,18,21,20,16,18,22,16,20,0,23,24,25,26,27
,6,28,29,10,30,31,22,32,33,4,34,35,11,36,37,15,38,39,21,40,41,14,42,43,19,44,45,17,46,47,19,48,2,49,14,13,10,50,8,51,3,52,15,53,7,54,11,1,21,55,20
,56,15,5,17,57,18,58,12,59,14,60,9,61,17,16,0,48,62,27,13,25,8,63,25,64,6,29,7,65,6,24,1,0,20,66,22,35,5,4,18,67,21,68,11,37,9,69,10,33,16,22
,25,13,8,0,70,23,25,71,72,6,73,74,10,75,30,22,76,77,4,78,79,11,80,36,15,81,82,21,83,84,14,85,42,19,86,87,17,88,89,19,45,48,90,91,14,10,31,50,92,4,3
,15,39,53,93,94,11,21,41,55,95,96,15,17,47,57,97,19,12,14,43,60,98,99,17,0,2,48,27,100,13,8,50,101,102,3,6,7,53,103,24,104,1,20,55,105,35,106,5,18,57,107
,108,12,11,9,60,109,33,110,16]
}
,{"name":"d6","id":"d6","billboardMode":0,"position":[0.4,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false
,"positions":[-0.0664,0.0584,-0.0584,-0.0664,-0.0584,0.0584,-0.0664,-0.0584,-0.0584,-0.0584,-0.0664,0.0584,0.0584,-0.0664,-0.0584,-0.0584,-0.0664,-0.0584,0.0664,0.0584,-0.0584,0.0664,-0.0584,0.0584,0.0664,0.0584,0.0584,0.0584,-0.0584,0.0664,-0.0584,0.0584,0.0664,0.0584,0.0584,0.0664,-0.0584,0.0664,0.0584,0.0584,0.0664,-0.0584,0.0584,0.0664,0.0584,-0.0584,-0.0584,-0.0664,-0.063,-0.063,-0.063
,-0.0584,-0.0641,-0.0641,-0.063,-0.063,-0.063,-0.0641,-0.0584,-0.0641,-0.063,-0.063,-0.063,-0.0641,-0.0641,-0.0584,0.0584,-0.0584,-0.0664,0.063,-0.063,-0.063,0.0641,-0.0584,-0.0641,0.063,-0.063,-0.063,0.0584,-0.0641,-0.0641,0.0664,-0.0584,-0.0584,0.063,-0.063,-0.063,0.0641,-0.0641,-0.0584,0.063,-0.063,0.063,0.0584,-0.0641,0.0641,0.063,-0.063,0.063,0.0641,-0.0584,0.0641
,0.0584,-0.0664,0.0584,0.063,-0.063,0.063,0.0641,-0.0641,0.0584,-0.0584,-0.0584,0.0664,-0.063,-0.063,0.063,-0.0641,-0.0584,0.0641,-0.063,-0.063,0.063,-0.0584,-0.0641,0.0641,-0.063,-0.063,0.063,-0.0641,-0.0641,0.0584,-0.0584,0.0584,-0.0664,-0.063,0.063,-0.063,-0.0641,0.0584,-0.0641,-0.0584,0.0664,-0.0584,-0.063,0.063,-0.063,-0.0584,0.0641,-0.0641,-0.063,0.063,-0.063
,-0.0641,0.0641,-0.0584,0.0584,0.0584,-0.0664,0.063,0.063,-0.063,0.0584,0.0641,-0.0641,0.063,0.063,-0.063,0.0641,0.0584,-0.0641,0.063,0.063,-0.063,0.0641,0.0641,-0.0584,0.063,0.063,0.063,0.0641,0.0584,0.0641,0.063,0.063,0.063,0.0584,0.0641,0.0641,0.063,0.063,0.063,0.0641,0.0641,0.0584,-0.0664,0.0584,0.0584,-0.063,0.063,0.063,-0.0641,0.0584,0.0641
,-0.063,0.063,0.063,-0.0641,0.0641,0.0584,-0.063,0.063,0.063,-0.0584,0.0641,0.0641,0.0584,-0.0641,0.0641,-0.0584,-0.0641,0.0641,-0.0584,-0.0641,-0.0641,0.0584,-0.0641,-0.0641,0.0641,-0.0641,-0.0584,0.0641,-0.0641,0.0584,-0.0641,-0.0641,-0.0584,-0.0641,-0.0641,0.0584,-0.0641,-0.0584,-0.0641,-0.0641,0.0584,-0.0641,0.0641,-0.0584,-0.0641,0.0641,0.0584,-0.0641,0.0641,-0.0584,0.0641
,0.0641,0.0584,0.0641,-0.0641,0.0641,-0.0584,-0.0641,0.0641,0.0584,0.0641,0.0641,-0.0584,0.0641,0.0641,0.0584,0.0584,0.0641,0.0641,-0.0584,0.0641,0.0641,-0.0584,0.0641,-0.0641,0.0584,0.0641,-0.0641,-0.0641,-0.0584,0.0641,-0.0641,0.0584,0.0641,-0.0641,-0.0584,-0.0641,-0.0641,-0.0641,-0.0584,-0.063,-0.063,-0.063,-0.0584,-0.0641,-0.0641,-0.063,-0.063,-0.063,0.0584,-0.0641,-0.0641
,0.0641,-0.0641,-0.0584,0.063,-0.063,-0.063,0.0641,-0.0584,-0.0641,0.063,-0.063,-0.063,0.0641,-0.0584,0.0641,0.0641,-0.0641,0.0584,0.063,-0.063,0.063,0.0584,-0.0641,0.0641,0.063,-0.063,0.063,-0.0584,-0.0641,0.0641,-0.0641,-0.0641,0.0584,-0.063,-0.063,0.063,-0.0641,-0.0584,0.0641,-0.063,-0.063,0.063,-0.0584,0.0641,-0.0641,-0.0641,0.0641,-0.0584,-0.063,0.063,-0.063
,-0.0641,0.0584,-0.0641,-0.063,0.063,-0.063,0.0641,0.0584,-0.0641,0.0641,0.0641,-0.0584,0.063,0.063,-0.063,0.0584,0.0641,-0.0641,0.063,0.063,-0.063,0.0584,0.0641,0.0641,0.0641,0.0641,0.0584,0.063,0.063,0.063,0.0641,0.0584,0.0641,0.063,0.063,0.063,-0.0641,0.0641,0.0584,-0.0584,0.0641,0.0641,-0.063,0.063,0.063,-0.0641,0.0584,0.0641,-0.063,0.063,0.063
,0.0584,-0.0641,0.0641,-0.0584,-0.0641,0.0641,-0.0584,-0.0641,-0.0641,0.0584,-0.0641,-0.0641,0.0641,-0.0641,-0.0584,0.0641,-0.0641,0.0584,-0.0641,-0.0641,-0.0584,-0.0641,-0.0641,0.0584,-0.0641,-0.0584,-0.0641,-0.0641,0.0584,-0.0641,0.0641,-0.0584,-0.0641,0.0641,0.0584,-0.0641,0.0641,-0.0584,0.0641,0.0641,0.0584,0.0641,-0.0641,0.0641,-0.0584,-0.0641,0.0641,0.0584,0.0641,0.0641,-0.0584
,0.0641,0.0641,0.0584,0.0584,0.0641,0.0641,-0.0584,0.0641,0.0641,-0.0584,0.0641,-0.0641,0.0584,0.0641,-0.0641,-0.0641,-0.0584,0.0641,-0.0641,0.0584,0.0641]
,"normals":[-0.967,0.179,-0.179,-0.967,-0.179,0.179,-0.967,-0.179,-0.179,-0.179,-0.967,0.179,0.179,-0.967,-0.179,-0.179,-0.967,-0.179,0.967,0.179,-0.179,0.967,-0.179,0.179,0.967,0.179,0.179,0.179,-0.179,0.967,-0.179,0.179,0.967,0.179,0.179,0.967,-0.179,0.967,0.179,0.179,0.967,-0.179,0.179,0.967,0.179,-0.179,-0.179,-0.967,-0.577,-0.577,-0.577
,-0.148,-0.699,-0.699,-0.577,-0.577,-0.577,-0.699,-0.148,-0.699,-0.577,-0.577,-0.577,-0.699,-0.699,-0.148,0.179,-0.179,-0.967,0.577,-0.577,-0.577,0.699,-0.148,-0.699,0.577,-0.577,-0.577,0.148,-0.699,-0.699,0.967,-0.179,-0.179,0.577,-0.577,-0.577,0.699,-0.699,-0.148,0.577,-0.577,0.577,0.148,-0.699,0.699,0.577,-0.577,0.577,0.699,-0.148,0.699
,0.179,-0.967,0.179,0.577,-0.577,0.577,0.699,-0.699,0.148,-0.179,-0.179,0.967,-0.577,-0.577,0.577,-0.699,-0.148,0.699,-0.577,-0.577,0.577,-0.148,-0.699,0.699,-0.577,-0.577,0.577,-0.699,-0.699,0.148,-0.179,0.179,-0.967,-0.577,0.577,-0.577,-0.699,0.148,-0.699,-0.179,0.967,-0.179,-0.577,0.577,-0.577,-0.148,0.699,-0.699,-0.577,0.577,-0.577
,-0.699,0.699,-0.148,0.179,0.179,-0.967,0.577,0.577,-0.577,0.148,0.699,-0.699,0.577,0.577,-0.577,0.699,0.148,-0.699,0.577,0.577,-0.577,0.699,0.699,-0.148,0.577,0.577,0.577,0.699,0.148,0.699,0.577,0.577,0.577,0.148,0.699,0.699,0.577,0.577,0.577,0.699,0.699,0.148,-0.967,0.179,0.179,-0.577,0.577,0.577,-0.699,0.148,0.699
,-0.577,0.577,0.577,-0.699,0.699,0.148,-0.577,0.577,0.577,-0.148,0.699,0.699,0.148,-0.699,0.699,-0.148,-0.699,0.699,-0.148,-0.699,-0.699,0.148,-0.699,-0.699,0.699,-0.699,-0.148,0.699,-0.699,0.148,-0.699,-0.699,-0.148,-0.699,-0.699,0.148,-0.699,-0.148,-0.699,-0.699,0.148,-0.699,0.699,-0.148,-0.699,0.699,0.148,-0.699,0.699,-0.148,0.699
,0.699,0.148,0.699,-0.699,0.699,-0.148,-0.699,0.699,0.148,0.699,0.699,-0.148,0.699,0.699,0.148,0.148,0.699,0.699,-0.148,0.699,0.699,-0.148,0.699,-0.699,0.148,0.699,-0.699,-0.699,-0.148,0.699,-0.699,0.148,0.699,-0.699,-0.148,-0.699,-0.699,-0.699,-0.148,-0.577,-0.577,-0.577,-0.148,-0.699,-0.699,-0.577,-0.577,-0.577,0.148,-0.699,-0.699
,0.699,-0.699,-0.148,0.577,-0.577,-0.577,0.699,-0.148,-0.699,0.577,-0.577,-0.577,0.699,-0.148,0.699,0.699,-0.699,0.148,0.577,-0.577,0.577,0.148,-0.699,0.699,0.577,-0.577,0.577,-0.148,-0.699,0.699,-0.699,-0.699,0.148,-0.577,-0.577,0.577,-0.699,-0.148,0.699,-0.577,-0.577,0.577,-0.148,0.699,-0.699,-0.699,0.699,-0.148,-0.577,0.577,-0.577
,-0.699,0.148,-0.699,-0.577,0.577,-0.577,0.699,0.148,-0.699,0.699,0.699,-0.148,0.577,0.577,-0.577,0.148,0.699,-0.699,0.577,0.577,-0.577,0.148,0.699,0.699,0.699,0.699,0.148,0.577,0.577,0.577,0.699,0.148,0.699,0.577,0.577,0.577,-0.699,0.699,0.148,-0.148,0.699,0.699,-0.577,0.577,0.577,-0.699,0.148,0.699,-0.577,0.577,0.577
,0.148,-0.699,0.699,-0.148,-0.699,0.699,-0.148,-0.699,-0.699,0.148,-0.699,-0.699,0.699,-0.699,-0.148,0.699,-0.699,0.148,-0.699,-0.699,-0.148,-0.699,-0.699,0.148,-0.699,-0.148,-0.699,-0.699,0.148,-0.699,0.699,-0.148,-0.699,0.699,0.148,-0.699,0.699,-0.148,0.699,0.699,0.148,0.699,-0.699,0.699,-0.148,-0.699,0.699,0.148,0.699,0.699,-0.148
,0.699,0.699,0.148,0.148,0.699,0.699,-0.148,0.699,0.699,-0.148,0.699,-0.699,0.148,0.699,-0.699,-0.699,-0.148,0.699,-0.699,0.148,0.699]
,"tangents":[0.179,0.984,0.016,1,-0.179,0.984,0.016,1,-0.177,0.984,-0.029,1,-0.016,-0.179,-0.984,1,-0.016,0.179,-0.984,1,0.029,0.177,-0.984,1,0.179,0.016,0.984,1,-0.179,0.016,0.984,1,-0.177,-0.029,0.984,1,-0.016,-0.984,-0.179,1,-0.016,-0.984,0.179,1,0.029,-0.984,0.177,1,0.984,0.179
,0.016,1,0.984,-0.179,0.016,1,0.984,-0.177,-0.029,1,0.984,-0.029,-0.177,1,0.799,-0.252,-0.547,1,0.986,-0.05,-0.158,1,-0.547,0.798,-0.252,1,-0.158,0.986,-0.05,1,0.252,0.547,-0.799,1,0.05,0.158,-0.986,1,0.984,0.016,0.179,1,0.797,0.244,0.553,1,0.714,0.107,0.692,1
,-0.244,0.553,-0.797,1,-0.107,0.692,-0.714,1,0.177,-0.029,0.984,1,0.547,-0.252,0.799,1,0.158,-0.05,0.986,1,-0.244,-0.797,-0.553,1,-0.107,-0.714,-0.692,1,-0.553,0.244,0.797,1,-0.692,0.107,0.714,1,0.029,-0.177,-0.984,1,0.252,-0.547,-0.799,1,0.05,-0.158,-0.986,1,0.029,-0.984
,-0.177,1,0.252,-0.798,-0.547,1,0.05,-0.986,-0.158,1,-0.244,-0.553,-0.797,1,-0.107,-0.692,-0.714,1,-0.553,0.797,0.244,1,-0.692,0.714,0.107,1,0.984,0.016,-0.179,1,0.797,0.244,-0.553,1,0.714,0.107,-0.692,1,0.984,0.177,-0.029,1,0.799,0.547,-0.252,1,0.986,0.158,-0.05,1
,0.553,0.797,0.244,1,0.692,0.714,0.107,1,0.984,-0.029,0.177,1,0.799,-0.252,0.547,1,0.986,-0.05,0.158,1,0.553,0.244,0.797,1,0.692,0.107,0.714,1,0.797,-0.553,0.244,1,0.714,-0.692,0.107,1,0.252,-0.798,0.547,1,0.05,-0.986,0.158,1,0.799,-0.547,-0.252,1,0.986,-0.158
,-0.05,1,-0.547,-0.252,0.799,1,-0.158,-0.05,0.986,1,0.177,0.984,-0.029,1,0.547,0.799,-0.252,1,0.158,0.986,-0.05,1,0.797,0.553,0.244,1,0.714,0.692,0.107,1,-0.244,-0.797,0.553,1,-0.107,-0.714,0.692,1,0.111,-0.691,-0.714,1,0.111,-0.714,-0.691,1,0.111,0.691,-0.714,1
,0.985,0.04,0.168,1,-0.04,0.168,-0.985,1,-0.168,0.04,0.985,1,-0.691,0.714,-0.111,1,-0.04,-0.168,-0.985,1,0.714,-0.111,-0.691,1,0.168,0.985,0.04,1,0.691,-0.111,0.714,1,0.714,-0.111,0.691,1,-0.04,-0.985,-0.168,1,-0.691,-0.111,0.714,1,0.714,0.691,-0.111,1,0.691,0.714
,-0.111,1,0.168,0.04,0.985,1,0.714,-0.691,-0.111,1,0.111,-0.714,0.691,1,0.985,0.168,0.04,1,0.985,0.04,-0.168,1,0.985,-0.168,0.04,1,-0.168,0.985,0.04,1,-0.04,-0.985,0.168,1,0.714,-0.111,-0.691,1,-0.691,0.714,-0.111,1,-0.547,0.798,-0.252,1,0.111,0.691,-0.714,1
,0.252,0.547,-0.799,1,0.985,0.04,0.168,1,-0.04,0.168,-0.985,1,-0.244,0.553,-0.797,1,0.691,-0.111,0.714,1,0.547,-0.252,0.799,1,-0.04,-0.985,-0.168,1,-0.168,0.04,0.985,1,-0.553,0.244,0.797,1,0.111,-0.691,-0.714,1,0.252,-0.547,-0.799,1,0.111,-0.714,-0.691,1,-0.04,-0.168
,-0.985,1,-0.244,-0.553,-0.797,1,-0.168,0.985,0.04,1,-0.553,0.797,0.244,1,0.985,0.04,-0.168,1,0.714,0.691,-0.111,1,0.799,0.547,-0.252,1,0.168,0.985,0.04,1,0.553,0.797,0.244,1,0.714,-0.111,0.691,1,0.168,0.04,0.985,1,0.553,0.244,0.797,1,0.985,-0.168,0.04,1
,0.797,-0.553,0.244,1,0.111,-0.714,0.691,1,0.714,-0.691,-0.111,1,0.799,-0.547,-0.252,1,-0.691,-0.111,0.714,1,-0.547,-0.252,0.799,1,0.691,0.714,-0.111,1,0.985,0.168,0.04,1,0.797,0.553,0.244,1,-0.04,-0.985,0.168,1,-0.244,-0.797,0.553,1,0.111,-0.691,-0.714,1,0.111,-0.714
,-0.691,1,0.111,0.691,-0.714,1,0.985,0.04,0.168,1,-0.04,0.168,-0.985,1,-0.168,0.04,0.985,1,-0.691,0.714,-0.111,1,-0.04,-0.168,-0.985,1,0.714,-0.111,-0.691,1,0.168,0.985,0.04,1,0.691,-0.111,0.714,1,0.714,-0.111,0.691,1,-0.04,-0.985,-0.168,1,-0.691,-0.111,0.714,1
,0.714,0.691,-0.111,1,0.691,0.714,-0.111,1,0.168,0.04,0.985,1,0.714,-0.691,-0.111,1,0.111,-0.714,0.691,1,0.985,0.168,0.04,1,0.985,0.04,-0.168,1,0.985,-0.168,0.04,1,-0.168,0.985,0.04,1,-0.04,-0.985,0.168,1]
,"uvs":[0.449,0.163,0.315,0.295,0.315,0.161,0.164,0.295,0.298,0.162,0.298,0.296,0.013,0.143,0.147,0.01,0.147,0.144,0.449,0.013,0.315,0.146,0.315,0.012,0.013,0.294,0.147,0.161,0.147,0.295,0.164,0.011,0.158,0.005,0.164,0.004,0.309,0.155,0.315,0.154,0.304,0.302,0.298,0.303,0.298,0.012,0.304,0.006,0.305,0.012
,0.304,0.156,0.305,0.162,0.013,0.009,0.007,0.003,0.013,0.002,0.455,0.007,0.456,0.013,0.153,0.004,0.154,0.01,0.164,0.161,0.158,0.155,0.164,0.154,0.449,0.147,0.455,0.153,0.449,0.154,0.158,0.301,0.157,0.295,0.309,0.301,0.308,0.296,0.164,0.145,0.158,0.151,0.157,0.145,0.013,0.16,0.007,0.154,0.013,0.153
,0.455,0.156,0.456,0.162,0.298,0.146,0.304,0.152,0.298,0.153,0.007,0.149,0.006,0.143,0.153,0.155,0.154,0.161,0.309,0.006,0.314,0.005,0.153,0.301,0.147,0.302,0.153,0.15,0.147,0.151,0.449,0.296,0.455,0.303,0.449,0.304,0.007,0.3,0.006,0.294,0.309,0.152,0.308,0.146,0.157,0.161,0.456,0.147,0.305,0.296
,0.298,0.005,0.298,0.155,0.147,0.003,0.308,0.161,0.164,0.302,0.157,0.011,0.449,0.155,0.006,0.009,0.305,0.147,0.449,0.006,0.154,0.145,0.006,0.16,0.456,0.297,0.012,0.15,0.154,0.295,0.308,0.011,0.012,0.301,0.164,0.152,0.147,0.154,0.314,0.302,0.314,0.153,0.157,0.011,0.308,0.161,0.309,0.155,0.305,0.296
,0.304,0.302,0.298,0.005,0.298,0.155,0.304,0.156,0.006,0.009,0.007,0.003,0.449,0.006,0.147,0.003,0.153,0.004,0.157,0.161,0.158,0.155,0.456,0.147,0.164,0.302,0.158,0.301,0.314,0.302,0.309,0.301,0.164,0.152,0.006,0.16,0.007,0.154,0.449,0.155,0.455,0.156,0.305,0.147,0.012,0.15,0.007,0.149,0.147,0.154
,0.153,0.155,0.308,0.011,0.154,0.295,0.153,0.301,0.154,0.145,0.153,0.15,0.456,0.297,0.012,0.301,0.007,0.3,0.314,0.153,0.309,0.152,0.157,0.161,0.456,0.147,0.305,0.296,0.298,0.005,0.298,0.155,0.147,0.003,0.308,0.161,0.164,0.302,0.157,0.011,0.449,0.155,0.006,0.009,0.305,0.147,0.449,0.006,0.154,0.145
,0.006,0.16,0.456,0.297,0.012,0.15,0.154,0.295,0.308,0.011,0.012,0.301,0.164,0.152,0.147,0.154,0.314,0.302,0.314,0.153]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,2,18,19,5,20,21,22,23,24,4,25,26,27,28,29,9,30,31,7,32,33,34,35,36,37,38,39,3,40,41,1,42,43
,44,45,46,47,48,49,0,50,51,52,53,54,6,55,56,13,57,58,11,59,60,14,61,62,8,63,64,65,66,67,12,68,69,10,70,71,3,72,34,73,9,31,4,74,5,75,15,17,34,76,4
,77,27,29,1,78,2,79,5,21,44,80,15,81,2,19,6,82,27,83,22,24,11,84,9,85,7,33,12,86,47,87,0,51,8,88,6,89,13,58,10,90,11,91,14,62,52,92,44,93,47,49
,65,94,1,95,37,39,22,44,15,0,65,1,3,34,4,6,27,7,9,37,10,12,47,13,15,96,16,2,97,98,5,99,100,22,101,23,4,102,103,27,104,105,9,106,30,7,107,108,34,109,110
,37,111,38,3,112,113,1,114,115,44,116,45,47,117,118,0,119,120,52,121,53,6,122,123,13,124,125,11,126,59,14,127,128,8,129,130,65,131,66,12,132,133,10,134,135,3,41,136,137,37,9
,4,26,138,139,22,15,34,36,140,141,7,27,1,43,142,143,3,5,44,46,144,145,0,2,6,56,146,147,52,22,11,60,148,149,8,7,12,69,150,151,65,0,8,64,152,153,14,13,10,71,154
,155,12,14,52,54,156,157,13,47,65,67,158,159,10,37,22,52,44]
}
,{"name":"d8","id":"d8","billboardMode":0,"position":[0.2,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false
,"positions":[-0.0065,-0.0869,-0.0065,-0.0065,-0.0065,-0.0869,-0.0869,-0.0065,-0.0065,-0.0065,0.0869,-0.0065,-0.0869,0.0065,-0.0065,-0.0065,0.0065,-0.0869,0.0065,0.0869,0.0065,0.0869,0.0065,0.0065,0.0065,0.0065,0.0869,0.0065,-0.0869,-0.0065,0.0869,-0.0065,-0.0065,0.0065,-0.0065,-0.0869,-0.0065,0.0869,0.0065,-0.0065,0.0065,0.0869,-0.0869,0.0065,0.0065,-0.0065,-0.0869,0.0065,-0.0869,-0.0065,0.0065
,-0.0065,-0.0065,0.0869,0.0065,0.0869,-0.0065,0.0065,0.0065,-0.0869,0.0869,0.0065,-0.0065,0.0917,0,0,0.0883,0,0.0079,0.0917,0,0,0.0883,0.0079,0,0.0917,0,0,0.0883,0,-0.0079,0.0869,-0.0065,0.0065,0.0917,0,0,0.0883,-0.0079,0,-0.0917,0,0,-0.0883,0,-0.0079,-0.0917,0,0,-0.0883,0.0079,0
,-0.0917,0,0,-0.0883,0,0.0079,-0.0917,0,0,-0.0883,-0.0079,0,0.0065,-0.0065,0.0869,0,0,0.0917,0.0079,0,0.0883,0,0,0.0917,0,-0.0079,0.0883,0,0,0.0917,-0.0079,0,0.0883,0,0,0.0917,0,0.0079,0.0883,0,0,-0.0917,-0.0079,0,-0.0883,0,0,-0.0917,0,-0.0079,-0.0883
,0,0,-0.0917,0.0079,0,-0.0883,0,0,-0.0917,0,0.0079,-0.0883,0,0.0917,0,0,0.0883,0.0079,0,0.0917,0,-0.0079,0.0883,0,0,0.0917,0,0,0.0883,-0.0079,0,0.0917,0,0.0079,0.0883,0,0,-0.0917,0,0.0079,-0.0883,0,0,-0.0917,0,0,-0.0883,-0.0079,0,-0.0917,0
,-0.0079,-0.0883,0,0.0065,-0.0869,0.0065,0,-0.0917,0,0,-0.0883,0.0079,0.0883,0,0.0079,0.0079,0,0.0883,-0.0883,0,-0.0079,-0.0079,0,-0.0883,0,0.0079,0.0883,0.0883,-0.0079,0,0.0079,-0.0883,0,0,-0.0079,0.0883,-0.0883,-0.0079,0,0,0.0079,-0.0883,0.0883,0,-0.0079,0.0079,0,-0.0883,0,-0.0079,-0.0883
,-0.0883,0,0.0079,-0.0079,0,0.0883,0.0883,0.0079,0,0.0079,0.0883,0,-0.0883,0.0079,0,0.0883,0.0079,0,0.0883,0,-0.0079,0.0917,0,0,0.0883,-0.0079,0,0.0917,0,0,0.0883,0,0.0079,0.0917,0,0,-0.0883,0.0079,0,-0.0883,0,0.0079,-0.0917,0,0,-0.0883,-0.0079,0,-0.0917,0,0
,-0.0883,0,-0.0079,-0.0917,0,0,0,-0.0079,0.0883,-0.0079,0,0.0883,0,0,0.0917,0,0.0079,0.0883,0,0,0.0917,0.0079,0,0.0883,0,0,0.0917,0,-0.0079,-0.0883,0.0079,0,-0.0883,0,0,-0.0917,0,0.0079,-0.0883,0,0,-0.0917,-0.0079,0,-0.0883,0,0,-0.0917,-0.0079,0.0883,0
,0,0.0883,-0.0079,0,0.0917,0,0.0079,0.0883,0,0,0.0917,0,0,0.0883,0.0079,0,0.0917,0,0,-0.0883,-0.0079,-0.0079,-0.0883,0,0,-0.0917,0,0,-0.0883,0.0079,0,-0.0917,0,0.0079,-0.0883,0,0,-0.0917,0,0.0079,0,0.0883,-0.0079,0,-0.0883,0,0.0079,0.0883,0,0.0883,0.0079
,0.0079,-0.0883,0,0,-0.0079,0.0883,0,-0.0883,0.0079,-0.0079,-0.0883,0,0,0.0079,-0.0883,0,0.0883,-0.0079,0.0079,0,-0.0883,0,-0.0079,-0.0883,0,-0.0883,-0.0079,-0.0079,0,0.0883,0.0079,0.0883,0,-0.0079,0.0883,0]
,"normals":[-0.464,-0.754,-0.464,-0.464,-0.464,-0.754,-0.754,-0.464,-0.464,-0.464,0.754,-0.464,-0.754,0.464,-0.464,-0.464,0.464,-0.754,0.464,0.754,0.464,0.754,0.464,0.464,0.464,0.464,0.754,0.464,-0.754,-0.464,0.754,-0.464,-0.464,0.464,-0.464,-0.754,-0.464,0.754,0.464,-0.464,0.464,0.754,-0.754,0.464,0.464,-0.464,-0.754,0.464,-0.754,-0.464,0.464
,-0.464,-0.464,0.754,0.464,0.754,-0.464,0.464,0.464,-0.754,0.754,0.464,-0.464,1,0,0,0.823,0,0.568,1,0,0,0.823,0.568,0,1,0,0,0.823,0,-0.568,0.754,-0.464,0.464,1,0,0,0.823,-0.568,0,-1,0,0,-0.823,0,-0.568,-1,0,0,-0.823,0.568,0
,-1,0,0,-0.823,0,0.568,-1,0,0,-0.823,-0.568,0,0.464,-0.464,0.754,0,0,1,0.568,0,0.823,0,0,1,0,-0.568,0.823,0,0,1,-0.568,0,0.823,0,0,1,0,0.568,0.823,0,0,-1,-0.568,0,-0.823,0,0,-1,0,-0.568,-0.823
,0,0,-1,0.568,0,-0.823,0,0,-1,0,0.568,-0.823,0,1,0,0,0.823,0.568,0,1,0,-0.568,0.823,0,0,1,0,0,0.823,-0.568,0,1,0,0.568,0.823,0,0,-1,0,0.568,-0.823,0,0,-1,0,0,-0.823,-0.568,0,-1,0
,-0.568,-0.823,0,0.464,-0.754,0.464,0,-1,0,0,-0.823,0.568,0.823,0,0.568,0.568,0,0.823,-0.823,0,-0.568,-0.568,0,-0.823,0,0.568,0.823,0.823,-0.568,0,0.568,-0.823,0,0,-0.568,0.823,-0.823,-0.568,0,0,0.568,-0.823,0.823,0,-0.568,0.568,0,-0.823,0,-0.568,-0.823
,-0.823,0,0.568,-0.568,0,0.823,0.823,0.568,0,0.568,0.823,0,-0.823,0.568,0,0.823,0.568,0,0.823,0,-0.568,1,0,0,0.823,-0.568,0,1,0,0,0.823,0,0.568,1,0,0,-0.823,0.568,0,-0.823,0,0.568,-1,0,0,-0.823,-0.568,0,-1,0,0
,-0.823,0,-0.568,-1,0,0,0,-0.568,0.823,-0.568,0,0.823,0,0,1,0,0.568,0.823,0,0,1,0.568,0,0.823,0,0,1,0,-0.568,-0.823,0.568,0,-0.823,0,0,-1,0,0.568,-0.823,0,0,-1,-0.568,0,-0.823,0,0,-1,-0.568,0.823,0
,0,0.823,-0.568,0,1,0,0.568,0.823,0,0,1,0,0,0.823,0.568,0,1,0,0,-0.823,-0.568,-0.568,-0.823,0,0,-1,0,0,-0.823,0.568,0,-1,0,0.568,-0.823,0,0,-1,0,0.568,0,0.823,-0.568,0,-0.823,0,0.568,0.823,0,0.823,0.568
,0.568,-0.823,0,0,-0.568,0.823,0,-0.823,0.568,-0.568,-0.823,0,0,0.568,-0.823,0,0.823,-0.568,0.568,0,-0.823,0,-0.568,-0.823,0,-0.823,-0.568,-0.568,0,0.823,0.568,0.823,0,-0.568,0.823,0]
,"tangents":[-0.104,0.567,-0.817,1,0.109,0.815,-0.569,1,0.003,0.705,-0.709,1,-0.816,-0.568,-0.105,1,-0.569,-0.816,0.108,1,-0.709,-0.705,0.003,1,0.093,-0.563,0.821,1,-0.008,-0.7,0.714,1,-0.12,-0.811,0.573,1,0.708,0,0.707,1,0.569,0.108,0.815,1,0.817,-0.105,0.567,1,0.113,0.571
,-0.813,1,-0.1,0.818,-0.566,1,0.004,0.71,-0.704,1,-0.707,0,-0.707,1,-0.569,0.107,-0.816,1,-0.816,-0.106,-0.568,1,-0.819,0.565,0.099,1,-0.71,0.704,-0.004,1,-0.571,0.813,-0.114,1,0,-0.699,0.715,1,-0.339,-0.802,0.492,1,0,0.974,-0.225,1,-0.565,0.82,-0.093,1
,0,0.218,0.976,1,0.566,0.087,0.82,1,0.567,0.104,-0.817,1,0,0.214,-0.977,1,0.236,0.343,-0.909,1,0,-0.976,0.218,1,-0.238,-0.908,0.346,1,0,0.709,-0.705,1,0.335,0.486,-0.807,1,0,0.217,-0.976,1,-0.566,0.086,-0.82,1,0,0.703,-0.711,1,-0.331,0.48
,-0.813,1,0.815,-0.109,-0.569,1,0.976,-0.219,0,1,0.82,-0.087,-0.566,1,-0.976,-0.216,0,1,-0.907,-0.346,-0.239,1,-0.21,0.978,0,1,-0.341,0.91,-0.235,1,-0.232,-0.973,0,1,-0.1,-0.819,0.565,1,0.22,0.976,0,1,0.349,0.906,-0.241,1,0.977,-0.215,0,1
,0.908,-0.345,0.238,1,-0.71,0.704,0,1,-0.487,0.806,-0.336,1,-0.71,-0.704,0,1,-0.812,-0.48,-0.331,1,0.224,0,-0.975,1,0.092,0.565,-0.82,1,-0.977,0,-0.215,1,-0.82,-0.566,-0.083,1,-0.978,0,0.208,1,-0.912,0.233,0.338,1,0.201,0,0.98,1,0.335,-0.231
,0.914,1,0.706,0,0.708,1,0.483,0.333,0.81,1,-0.214,0,-0.977,1,-0.082,0.566,-0.82,1,-0.705,0,-0.709,1,-0.482,0.333,-0.811,1,0.708,0.001,-0.706,1,0.708,0,-0.706,1,0.81,-0.333,-0.483,1,0.566,0.085,-0.82,1,-0.362,-0.898,0.249,1,0.336,0.806,-0.487,1
,-0.486,-0.807,0.336,1,-0.081,0.82,-0.566,1,0.241,0.35,0.905,1,0.484,0.334,-0.809,1,0.904,-0.352,-0.243,1,-0.241,0.349,-0.906,1,-0.813,0.48,0.331,1,-0.245,0.902,-0.355,1,0.82,-0.086,0.566,1,0.091,0.82,-0.565,1,-0.332,0.812,-0.481,1,-0.82,-0.087,-0.566,1,0.328,-0.475
,0.817,1,-0.821,0.566,0.08,1,-0.566,-0.82,0.089,1,0.328,-0.475,0.817,1,-0.245,0.902,-0.355,1,0,0.974,-0.225,1,0.241,0.35,0.905,1,0,0.218,0.976,1,0.566,0.085,-0.82,1,0,0.214,-0.977,1,-0.566,-0.82,0.089,1,-0.332,0.812,-0.481,1,0,0.709,-0.705,1
,-0.241,0.349,-0.906,1,0,0.217,-0.976,1,0.336,0.806,-0.487,1,0,0.703,-0.711,1,0.904,-0.352,-0.243,1,-0.82,-0.087,-0.566,1,-0.976,-0.216,0,1,-0.081,0.82,-0.566,1,-0.21,0.978,0,1,-0.362,-0.898,0.249,1,-0.232,-0.973,0,1,0.091,0.82,-0.565,1,0.82,-0.086
,0.566,1,0.977,-0.215,0,1,-0.813,0.48,0.331,1,-0.71,0.704,0,1,-0.486,-0.807,0.336,1,-0.71,-0.704,0,1,0.353,0.244,-0.903,1,-0.907,-0.239,-0.347,1,-0.977,0,-0.215,1,-0.821,0.566,0.08,1,-0.978,0,0.208,1,0.073,-0.566,0.821,1,0.201,0,0.98,1
,0.809,-0.334,0.484,1,-0.346,0.239,-0.907,1,-0.214,0,-0.977,1,-0.808,-0.334,-0.485,1,-0.705,0,-0.709,1,0.484,0.334,-0.809,1,0.708,0,-0.706,1,-0.362,-0.898,0.249,1,-0.486,-0.807,0.336,1,-0.081,0.82,-0.566,1,0.073,-0.566,0.821,1,0.484,0.334,-0.809,1,0.904,-0.352
,-0.243,1,-0.808,-0.334,-0.485,1,-0.346,0.239,-0.907,1,-0.813,0.48,0.331,1,-0.907,-0.239,-0.347,1,0.82,-0.086,0.566,1,0.091,0.82,-0.565,1,0.809,-0.334,0.484,1,-0.82,-0.087,-0.566,1,-0.821,0.566,0.08,1,0.353,0.244,-0.903,1]
,"uvs":[0.639,0.27,0.768,0.271,0.703,0.383,0.716,0.418,0.846,0.418,0.781,0.53,0.485,0.549,0.548,0.436,0.614,0.547,0.781,0.287,0.846,0.399,0.717,0.399,0.69,0.399,0.561,0.4,0.625,0.288,0.704,0.435,0.769,0.547,0.64,0.547,0.692,0.418,0.628,0.531,0.562,0.419,0.547,0.424,0.554,0.432,0.552,0.413,0.562,0.411
,0.857,0.405,0.846,0.407,0.613,0.271,0.623,0.265,0.62,0.275,0.856,0.412,0.853,0.422,0.625,0.276,0.632,0.283,0.78,0.553,0.769,0.555,0.703,0.395,0.696,0.387,0.483,0.272,0.473,0.266,0.483,0.264,0.629,0.553,0.633,0.544,0.551,0.406,0.554,0.397,0.625,0.553,0.614,0.555,0.779,0.265,0.775,0.275,0.706,0.405
,0.71,0.396,0.628,0.543,0.621,0.535,0.781,0.542,0.774,0.535,0.701,0.405,0.691,0.407,0.706,0.412,0.716,0.41,0.702,0.412,0.699,0.422,0.474,0.555,0.478,0.546,0.781,0.275,0.788,0.283,0.628,0.264,0.638,0.263,0.704,0.423,0.711,0.431,0.548,0.384,0.548,0.396,0.542,0.388,0.613,0.264,0.621,0.544,0.71,0.387
,0.787,0.535,0.561,0.408,0.853,0.395,0.555,0.388,0.476,0.275,0.776,0.544,0.635,0.535,0.555,0.423,0.716,0.407,0.768,0.263,0.618,0.284,0.639,0.555,0.541,0.432,0.692,0.41,0.846,0.411,0.541,0.432,0.555,0.423,0.552,0.413,0.853,0.395,0.857,0.405,0.613,0.264,0.623,0.265,0.846,0.411,0.618,0.284,0.625,0.276
,0.776,0.544,0.78,0.553,0.71,0.387,0.703,0.395,0.476,0.275,0.639,0.555,0.629,0.553,0.561,0.408,0.551,0.406,0.621,0.544,0.625,0.553,0.768,0.263,0.716,0.407,0.706,0.405,0.635,0.535,0.628,0.543,0.787,0.535,0.781,0.542,0.697,0.396,0.709,0.422,0.706,0.412,0.692,0.41,0.702,0.412,0.484,0.557,0.474,0.555
,0.775,0.283,0.632,0.274,0.628,0.264,0.698,0.431,0.704,0.423,0.555,0.388,0.548,0.396,0.621,0.544,0.787,0.535,0.561,0.408,0.484,0.557,0.555,0.388,0.476,0.275,0.698,0.431,0.632,0.274,0.635,0.535,0.709,0.422,0.716,0.407,0.768,0.263,0.775,0.283,0.639,0.555,0.692,0.41,0.697,0.396]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,7,21,22,20,23,24,10,25,26,27,28,29,4,30,31,14,32,33,16,34,35,2,36,37,38,39,40,17,41,42
,13,43,44,8,45,46,1,47,48,11,49,50,19,51,52,5,53,54,12,55,56,3,57,58,18,59,60,6,61,62,9,63,64,0,65,66,15,67,68,69,70,71,27,40,72,73,7,22,2,48,74
,75,4,31,12,76,13,46,6,8,10,64,77,78,27,29,69,79,38,42,15,17,16,68,80,37,0,2,18,81,19,54,3,5,20,52,82,83,10,26,0,84,1,50,9,11,14,44,85,86,16,35
,7,62,87,88,20,24,4,58,89,33,12,14,69,38,27,7,90,21,20,91,92,10,93,94,27,95,96,4,97,30,14,98,99,16,100,101,2,102,103,38,104,39,17,105,106,13,107,108,8,109,110
,1,111,47,11,112,113,19,114,115,5,116,117,12,118,55,3,119,120,18,121,122,6,123,124,9,125,63,0,126,127,15,128,129,69,130,131,27,38,40,132,8,7,2,1,48,133,5,4,12,56,134
,46,135,6,10,9,64,136,69,27,69,71,137,42,138,15,16,15,68,37,139,0,18,60,140,54,141,3,20,19,52,142,11,10,0,66,143,50,144,9,14,13,44,145,17,16,7,6,62,146,18,20
,4,3,58,33,147,12]
}
,{"name":"d10","id":"d10","billboardMode":0,"position":[0,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false
,"positions":[-0.0562,-0.0133,0.0652,-0.0838,-0.0133,-0.0197,-0.0838,0.0037,0.0272,-0.0562,0.0133,-0.0652,-0.0838,0.0133,0.0197,-0.0838,-0.0037,-0.0272,0.0072,0.0133,0.0858,0.0794,0.0133,0.0333,0.0518,-0.0037,0.0713,-0.0794,0.0133,0.0333,-0.0072,0.0133,0.0858,-0.0518,-0.0037,0.0713,0.0446,0.0133,-0.0736,-0.0446,0.0133,-0.0736,0,-0.0037,-0.0881,-0.0794,-0.0133,-0.0333,-0.0072,-0.0133,-0.0858
,-0.0518,0.0037,-0.0713,0.0794,-0.0133,-0.0333,0.0072,-0.0133,-0.0858,0.0072,-0.0857,-0.0098,0.0838,-0.0133,-0.0197,0.0562,-0.0133,0.0652,0.0838,0.0037,0.0272,0.0446,-0.0133,0.0736,-0.0446,-0.0133,0.0736,0,0.0037,0.0881,0.0072,0.0857,0.0098,0,0.0915,0,0.0103,0.0868,0.0034,-0.0072,0.0857,0.0098,0,0.0915,0,0,0.0868,0.0109,-0.0116,0.0857,-0.0038
,0,0.0915,0,-0.0103,0.0868,0.0034,0,0.0857,-0.0122,0,0.0915,0,-0.0064,0.0868,-0.0088,0.0116,0.0857,-0.0038,0,0.0915,0,0.0064,0.0868,-0.0088,-0.0116,-0.0857,0.0038,0,-0.0915,0,-0.0103,-0.0868,-0.0034,0,-0.0857,0.0122,0,-0.0915,0,-0.0064,-0.0868,0.0088,0.0116,-0.0857,0.0038,0,-0.0915,0,0.0064,-0.0868,0.0088
,0,-0.0915,0,0.0103,-0.0868,-0.0034,-0.0072,-0.0857,-0.0098,0,-0.0915,0,0,-0.0868,-0.0109,0.0525,-0.0103,0.0722,0.0562,-0.008,0.0687,0.0525,-0.0103,0.0722,0.0511,-0.0148,0.0704,0.0525,-0.0103,0.0722,0.048,-0.008,0.0747,0.0849,0.0103,0.0276,0.0827,0.008,0.0322,0.0838,0.0133,0.0197,0.0849,0.0103,0.0276,0.0827,0.0148,0.0269,0.0849,0.0103,0.0276
,0.0859,0.008,0.0226,0,0.0103,0.0893,0,0.0148,0.087,0,0.0103,0.0893,0.0051,0.008,0.0886,0,0.0103,0.0893,-0.0051,0.008,0.0886,0.0525,0.0103,-0.0722,0.0511,0.0148,-0.0704,0.0518,0.0037,-0.0713,0.0525,0.0103,-0.0722,0.048,0.008,-0.0747,0.0562,0.0133,-0.0652,0.0525,0.0103,-0.0722,0.0562,0.008,-0.0687,0.0849,-0.0103,-0.0276,0.0827,-0.0148,-0.0269
,0.0838,-0.0037,-0.0272,0.0849,-0.0103,-0.0276,0.0859,-0.008,-0.0226,0.0849,-0.0103,-0.0276,0.0827,-0.008,-0.0322,-0.0525,0.0103,-0.0722,-0.0511,0.0148,-0.0704,-0.0525,0.0103,-0.0722,-0.0562,0.008,-0.0687,-0.0525,0.0103,-0.0722,-0.048,0.008,-0.0747,0,-0.0103,-0.0893,0,-0.0148,-0.087,0,-0.0103,-0.0893,0.0051,-0.008,-0.0886,0,-0.0103,-0.0893,-0.0051,-0.008,-0.0886
,-0.0849,-0.0103,-0.0276,-0.0827,-0.008,-0.0322,-0.0849,-0.0103,-0.0276,-0.0859,-0.008,-0.0226,-0.0849,-0.0103,-0.0276,-0.0827,-0.0148,-0.0269,-0.0849,0.0103,0.0276,-0.0859,0.008,0.0226,-0.0849,0.0103,0.0276,-0.0827,0.0148,0.0269,-0.0849,0.0103,0.0276,-0.0827,0.008,0.0322,-0.0525,-0.0103,0.0722,-0.0511,-0.0148,0.0704,-0.0525,-0.0103,0.0722,-0.0562,-0.008,0.0687,-0.0525,-0.0103,0.0722
,-0.048,-0.008,0.0747,-0.0064,-0.0868,0.0088,-0.0511,-0.0148,0.0704,0.0064,-0.0868,0.0088,0.0511,-0.0148,0.0704,0.0103,0.0868,0.0034,0.0827,0.0148,0.0269,0.048,-0.008,0.0747,0.0064,0.0868,-0.0088,0.0511,0.0148,-0.0704,0.0859,0.008,0.0226,0.0562,0.008,-0.0687,0.0827,-0.008,-0.0322,0.048,0.008,-0.0747,-0.0562,0.008,-0.0687,-0.0103,0.0868,0.0034,-0.0827,0.0148,0.0269
,-0.0051,0.008,0.0886,-0.048,-0.008,0.0747,0,0.0868,0.0109,0,0.0148,0.087,0.0562,-0.008,0.0687,0.0827,0.008,0.0322,-0.048,0.008,-0.0747,-0.0051,-0.008,-0.0886,-0.0064,0.0868,-0.0088,-0.0511,0.0148,-0.0704,0.0103,-0.0868,-0.0034,0.0827,-0.0148,-0.0269,-0.0827,0.008,0.0322,0,-0.0868,-0.0109,0,-0.0148,-0.087,-0.0103,-0.0868,-0.0034,-0.0827,-0.0148,-0.0269
,-0.0859,-0.008,-0.0226,-0.0859,0.008,0.0226,0,0.0868,0.0109,-0.0103,0.0868,0.0034,0,0.0915,0,-0.0064,0.0868,-0.0088,0,0.0915,0,0.0064,0.0868,-0.0088,0,0.0915,0,0.0103,0.0868,0.0034,0,0.0915,0,-0.0064,-0.0868,0.0088,0.0064,-0.0868,0.0088,0,-0.0915,0,0.0103,-0.0868,-0.0034,0,-0.0915,0,0,-0.0868,-0.0109
,0,-0.0915,0,-0.0103,-0.0868,-0.0034,0,-0.0915,0,0.0511,-0.0148,0.0704,0.048,-0.008,0.0747,0.0525,-0.0103,0.0722,0.0562,-0.008,0.0687,0.0525,-0.0103,0.0722,0.0827,0.0148,0.0269,0.0859,0.008,0.0226,0.0849,0.0103,0.0276,0.0827,0.008,0.0322,0.0849,0.0103,0.0276,0.0051,0.008,0.0886,-0.0051,0.008,0.0886,0,0.0103,0.0893,0,0.0148,0.087
,0,0.0103,0.0893,0.048,0.008,-0.0747,0.0562,0.008,-0.0687,0.0525,0.0103,-0.0722,0.0511,0.0148,-0.0704,0.0525,0.0103,-0.0722,0.0859,-0.008,-0.0226,0.0827,-0.008,-0.0322,0.0849,-0.0103,-0.0276,0.0827,-0.0148,-0.0269,0.0849,-0.0103,-0.0276,-0.0562,0.008,-0.0687,-0.048,0.008,-0.0747,-0.0525,0.0103,-0.0722,-0.0511,0.0148,-0.0704,-0.0525,0.0103,-0.0722,0.0051,-0.008,-0.0886
,-0.0051,-0.008,-0.0886,0,-0.0103,-0.0893,0,-0.0148,-0.087,0,-0.0103,-0.0893,-0.0859,-0.008,-0.0226,-0.0827,-0.0148,-0.0269,-0.0849,-0.0103,-0.0276,-0.0827,-0.008,-0.0322,-0.0849,-0.0103,-0.0276,-0.0827,0.0148,0.0269,-0.0827,0.008,0.0322,-0.0849,0.0103,0.0276,-0.0859,0.008,0.0226,-0.0849,0.0103,0.0276,-0.0562,-0.008,0.0687,-0.048,-0.008,0.0747,-0.0525,-0.0103,0.0722
,-0.0511,-0.0148,0.0704,-0.0525,-0.0103,0.0722,-0.0511,-0.0148,0.0704,0.0511,-0.0148,0.0704,0.0827,0.0148,0.0269,0.0051,0.008,0.0886,0.0511,0.0148,-0.0704,0.0859,-0.008,-0.0226,0.0562,0.008,-0.0687,0.0827,-0.008,-0.0322,0.0051,-0.008,-0.0886,-0.0827,-0.008,-0.0322,-0.0827,0.0148,0.0269,-0.0051,0.008,0.0886,-0.048,-0.008,0.0747,0,0.0148,0.087,0.0562,-0.008,0.0687
,0.0827,0.008,0.0322,-0.048,0.008,-0.0747,-0.0051,-0.008,-0.0886,-0.0511,0.0148,-0.0704,0.0827,-0.0148,-0.0269,-0.0562,-0.008,0.0687,0,-0.0148,-0.087,-0.0827,-0.0148,-0.0269,-0.0859,-0.008,-0.0226,-0.0859,0.008,0.0226]
,"normals":[-0.739,-0.526,0.42,-0.845,-0.526,0.095,-0.868,-0.41,0.282,-0.739,0.526,-0.42,-0.845,0.526,-0.095,-0.868,0.41,-0.282,0.351,0.526,0.774,0.628,0.526,0.573,0.536,0.41,0.738,-0.628,0.526,0.573,-0.351,0.526,0.774,-0.536,0.41,0.738,0.171,0.526,-0.833,-0.171,0.526,-0.833,0,0.41,-0.912,-0.628,-0.526,-0.573,-0.351,-0.526,-0.774
,-0.536,-0.41,-0.738,0.628,-0.526,-0.573,0.351,-0.526,-0.774,0.361,-0.789,-0.497,0.845,-0.526,0.095,0.739,-0.526,0.42,0.868,-0.41,0.282,0.171,-0.526,0.833,-0.171,-0.526,0.833,0,-0.41,0.912,0.361,0.789,0.497,0,1,0,0.529,0.831,0.172,-0.361,0.789,0.497,0,1,0,0,0.831,0.556,-0.585,0.789,-0.19
,0,1,0,-0.529,0.831,0.172,0,0.789,-0.615,0,1,0,-0.327,0.831,-0.45,0.585,0.789,-0.19,0,1,0,0.327,0.831,-0.45,-0.585,-0.789,0.19,0,-1,0,-0.529,-0.831,-0.172,0,-0.789,0.615,0,-1,0,-0.327,-0.831,0.45,0.585,-0.789,0.19,0,-1,0,0.327,-0.831,0.45
,0,-1,0,0.529,-0.831,-0.172,-0.361,-0.789,-0.497,0,-1,0,0,-0.831,-0.556,0.575,-0.203,0.792,0.766,-0.025,0.643,0.575,-0.203,0.792,0.47,-0.602,0.646,0.575,-0.203,0.792,0.375,-0.025,0.927,0.931,0.203,0.303,0.848,0.025,0.529,0.845,0.526,-0.095,0.931,0.203,0.303,0.76,0.602,0.247,0.931,0.203,0.303
,0.997,0.025,0.07,0,0.203,0.979,0,0.602,0.799,0,0.203,0.979,0.241,0.025,0.97,0,0.203,0.979,-0.241,0.025,0.97,0.575,0.203,-0.792,0.47,0.602,-0.646,0.536,-0.41,-0.738,0.575,0.203,-0.792,0.375,0.025,-0.927,0.739,0.526,-0.42,0.575,0.203,-0.792,0.766,0.025,-0.643,0.931,-0.203,-0.303,0.76,-0.602,-0.247
,0.868,0.41,-0.282,0.931,-0.203,-0.303,0.997,-0.025,-0.07,0.931,-0.203,-0.303,0.848,-0.025,-0.529,-0.575,0.203,-0.792,-0.47,0.602,-0.646,-0.575,0.203,-0.792,-0.766,0.025,-0.643,-0.575,0.203,-0.792,-0.375,0.025,-0.927,0,-0.203,-0.979,0,-0.602,-0.799,0,-0.203,-0.979,0.241,-0.025,-0.97,0,-0.203,-0.979,-0.241,-0.025,-0.97
,-0.931,-0.203,-0.303,-0.848,-0.025,-0.529,-0.931,-0.203,-0.303,-0.997,-0.025,-0.07,-0.931,-0.203,-0.303,-0.76,-0.602,-0.247,-0.931,0.203,0.303,-0.997,0.025,0.07,-0.931,0.203,0.303,-0.76,0.602,0.247,-0.931,0.203,0.303,-0.848,0.025,0.529,-0.575,-0.203,0.792,-0.47,-0.602,0.646,-0.575,-0.203,0.792,-0.766,-0.025,0.643,-0.575,-0.203,0.792
,-0.375,-0.025,0.927,-0.327,-0.831,0.45,-0.47,-0.602,0.646,0.327,-0.831,0.45,0.47,-0.602,0.646,0.529,0.831,0.172,0.76,0.602,0.247,0.375,-0.025,0.927,0.327,0.831,-0.45,0.47,0.602,-0.646,0.997,0.025,0.07,0.766,0.025,-0.643,0.848,-0.025,-0.529,0.375,0.025,-0.927,-0.766,0.025,-0.643,-0.529,0.831,0.172,-0.76,0.602,0.247
,-0.241,0.025,0.97,-0.375,-0.025,0.927,0,0.831,0.556,0,0.602,0.799,0.766,-0.025,0.643,0.848,0.025,0.529,-0.375,0.025,-0.927,-0.241,-0.025,-0.97,-0.327,0.831,-0.45,-0.47,0.602,-0.646,0.529,-0.831,-0.172,0.76,-0.602,-0.247,-0.848,0.025,0.529,0,-0.831,-0.556,0,-0.602,-0.799,-0.529,-0.831,-0.172,-0.76,-0.602,-0.247
,-0.997,-0.025,-0.07,-0.997,0.025,0.07,0,0.831,0.556,-0.529,0.831,0.172,0,1,0,-0.327,0.831,-0.45,0,1,0,0.327,0.831,-0.45,0,1,0,0.529,0.831,0.172,0,1,0,-0.327,-0.831,0.45,0.327,-0.831,0.45,0,-1,0,0.529,-0.831,-0.172,0,-1,0,0,-0.831,-0.556
,0,-1,0,-0.529,-0.831,-0.172,0,-1,0,0.47,-0.602,0.646,0.375,-0.025,0.927,0.575,-0.203,0.792,0.766,-0.025,0.643,0.575,-0.203,0.792,0.76,0.602,0.247,0.997,0.025,0.07,0.931,0.203,0.303,0.848,0.025,0.529,0.931,0.203,0.303,0.241,0.025,0.97,-0.241,0.025,0.97,0,0.203,0.979,0,0.602,0.799
,0,0.203,0.979,0.375,0.025,-0.927,0.766,0.025,-0.643,0.575,0.203,-0.792,0.47,0.602,-0.646,0.575,0.203,-0.792,0.997,-0.025,-0.07,0.848,-0.025,-0.529,0.931,-0.203,-0.303,0.76,-0.602,-0.247,0.931,-0.203,-0.303,-0.766,0.025,-0.643,-0.375,0.025,-0.927,-0.575,0.203,-0.792,-0.47,0.602,-0.646,-0.575,0.203,-0.792,0.241,-0.025,-0.97
,-0.241,-0.025,-0.97,0,-0.203,-0.979,0,-0.602,-0.799,0,-0.203,-0.979,-0.997,-0.025,-0.07,-0.76,-0.602,-0.247,-0.931,-0.203,-0.303,-0.848,-0.025,-0.529,-0.931,-0.203,-0.303,-0.76,0.602,0.247,-0.848,0.025,0.529,-0.931,0.203,0.303,-0.997,0.025,0.07,-0.931,0.203,0.303,-0.766,-0.025,0.643,-0.375,-0.025,0.927,-0.575,-0.203,0.792
,-0.47,-0.602,0.646,-0.575,-0.203,0.792,-0.47,-0.602,0.646,0.47,-0.602,0.646,0.76,0.602,0.247,0.241,0.025,0.97,0.47,0.602,-0.646,0.997,-0.025,-0.07,0.766,0.025,-0.643,0.848,-0.025,-0.529,0.241,-0.025,-0.97,-0.848,-0.025,-0.529,-0.76,0.602,0.247,-0.241,0.025,0.97,-0.375,-0.025,0.927,0,0.602,0.799,0.766,-0.025,0.643
,0.848,0.025,0.529,-0.375,0.025,-0.927,-0.241,-0.025,-0.97,-0.47,0.602,-0.646,0.76,-0.602,-0.247,-0.766,-0.025,0.643,0,-0.602,-0.799,-0.76,-0.602,-0.247,-0.997,-0.025,-0.07,-0.997,0.025,0.07]
,"tangents":[0.151,0.479,0.865,1,-0.078,0.296,0.952,1,0.102,0.408,0.907,1,-0.44,0.095,0.893,1,-0.176,-0.106,0.979,1,-0.311,-0.006,0.95,1,-0.674,0.716,-0.181,1,-0.577,0.809,-0.11,1,-0.571,0.82,-0.04,1,0.042,-0.712,0.701,1,0.081,-0.807,0.585,1,0.145,-0.817,0.558,1,-0.42,0.804
,0.422,1,-0.456,0.707,0.541,1,-0.456,0.812,0.364,1,0.776,-0.48,-0.409,1,0.929,-0.298,-0.219,1,0.831,-0.41,-0.376,1,0.512,-0.275,0.814,1,0.648,-0.46,0.607,1,0.532,-0.264,0.805,1,0.064,0.275,0.959,1,-0.168,0.46,0.872,1,-0.114,0.387,0.915,1,0.897,-0.266,-0.353,1
,0.886,-0.452,-0.103,1,0.91,-0.378,-0.17,1,-0.768,0.554,-0.321,1,-0.896,0,-0.444,1,-0.769,0.555,-0.318,1,-0.06,-0.552,0.832,1,-0.136,0,0.991,1,-0.057,-0.555,0.83,1,-0.314,-0.004,0.949,1,-0.315,0,0.949,1,-0.137,-0.283,0.949,1,-0.451,0.549,0.704,1,-0.483,0
,0.876,1,-0.404,0.307,0.862,1,0.602,-0.264,0.754,1,0.664,0,0.748,1,0.766,0.046,0.641,1,-0.064,0.278,0.958,1,-0.121,0,0.993,1,-0.263,-0.032,0.964,1,0.908,-0.258,-0.33,1,0.921,0,-0.389,1,0.865,-0.454,-0.211,1,0.043,0.264,0.964,1,0.096,0,0.995,1
,-0.056,0.458,0.887,1,0.507,0,0.862,1,0.374,0.047,0.926,1,0.931,-0.279,-0.234,1,0.982,0,-0.19,1,0.998,0.031,-0.046,1,-0.522,0.654,0.547,1,-0.52,0.564,0.641,1,0.776,-0.17,-0.607,1,0.786,-0.048,-0.616,1,-0.254,0.876,0.41,1,-0.47,0.856,0.213,1,-0.233,0.97
,0.066,1,-0.159,0.965,0.21,1,0.377,-0.461,0.803,1,-0.1,-0.655,0.749,1,0.224,-0.598,0.769,1,-0.361,0.407,0.839,1,-0.074,0.357,0.931,1,-0.667,0.73,-0.152,1,-0.728,0.548,-0.413,1,0.914,-0.397,0.083,1,0.912,-0.347,-0.218,1,0.143,-0.969,0.201,1,0.257,-0.962,0.089,1
,-0.244,0.967,0.071,1,-0.411,0.797,0.443,1,0.63,-0.387,0.673,1,0.786,-0.407,0.466,1,0.82,-0.475,0.319,1,0.616,-0.276,0.738,1,0.817,-0.182,0.547,1,0.623,-0.28,0.731,1,0.339,0.181,0.923,1,0.349,0.057,0.935,1,0.445,-0.388,0.807,1,0.2,-0.408,0.891,1,0.05,-0.476
,0.878,1,0.268,-0.181,0.946,1,0.503,-0.279,0.818,1,-0.752,0.25,0.61,1,-0.619,0.298,0.727,1,0.674,-0.431,-0.6,1,0.547,-0.5,-0.671,1,-0.463,0.717,0.521,1,-0.557,0.793,0.247,1,0.744,-0.654,0.136,1,0.663,-0.598,0.45,1,-0.465,0.867,-0.18,1,-0.375,0.919,-0.117,1
,0.977,-0.208,0.043,1,0.926,-0.305,-0.223,1,-0.308,-0.006,0.951,1,-0.53,0.055,0.846,1,-0.343,0.206,0.917,1,-0.074,0.303,0.95,1,0.357,-0.675,-0.645,1,0.637,-0.613,-0.468,1,0.246,-0.263,0.933,1,0.065,-0.156,0.986,1,0.065,-0.725,0.686,1,-0.162,-0.543,0.824,1,0.363,0.429
,0.827,1,0.47,0.498,0.729,1,0.505,0.674,0.54,1,0.25,0.611,0.751,1,0.474,-0.872,0.12,1,0.353,-0.852,0.387,1,0.687,-0.645,0.334,1,0.776,-0.555,0.299,1,0.032,0.466,0.884,1,0.806,-0.592,0.034,1,0.852,0.053,-0.521,1,-0.272,0.598,0.754,1,0.477,-0.458,0.75,1
,-0.588,0.798,-0.135,1,0.891,-0.268,-0.367,1,-0.451,0.555,0.699,1,0.833,-0.058,0.551,1,-0.044,-0.565,0.824,1,0.607,-0.357,0.709,1,0.487,-0.358,0.797,1,-0.271,0.959,-0.084,1,-0.634,0.144,0.76,1,-0.19,-0.313,0.931,1,0.065,-0.307,0.949,1,0.856,-0.465,0.225,1,0.362,-0.924
,0.121,1,-0.822,0.317,-0.474,1,0.061,-0.797,0.6,1,-0.222,0.928,0.301,1,-0.476,0.475,0.74,1,0.853,-0.382,-0.355,1,-0.522,0.846,0.108,1,-0.457,0.277,0.845,1,-0.362,0.536,0.762,1,0.242,-0.047,0.969,1,0.267,-0.057,0.962,1,0.301,-0.8,0.519,1,0.567,-0.458,0.685,1
,0.995,-0.08,0.06,1,0.832,-0.467,-0.301,1,-0.364,0.078,0.928,1,-0.068,-0.067,0.995,1,0.074,0.38,0.922,1,-0.822,0.317,-0.474,1,-0.19,-0.313,0.931,1,-0.136,0,0.991,1,-0.457,0.277,0.845,1,-0.315,0,0.949,1,-0.451,0.555,0.699,1,-0.483,0,0.876,1,0.477,-0.458
,0.75,1,0.664,0,0.748,1,0.032,0.466,0.884,1,0.852,0.053,-0.521,1,0.921,0,-0.389,1,0.242,-0.047,0.969,1,0.096,0,0.995,1,0.567,-0.458,0.685,1,0.507,0,0.862,1,0.832,-0.467,-0.301,1,0.982,0,-0.19,1,-0.272,0.598,0.754,1,0.891,-0.268,-0.367,1
,0.776,-0.17,-0.607,1,-0.222,0.928,0.301,1,-0.254,0.876,0.41,1,-0.588,0.798,-0.135,1,-0.044,-0.565,0.824,1,-0.1,-0.655,0.749,1,-0.476,0.475,0.74,1,-0.361,0.407,0.839,1,-0.58,0.805,0.124,1,0.856,-0.465,0.225,1,0.914,-0.397,0.083,1,0.061,-0.797,0.6,1,0.143,-0.969
,0.201,1,-0.271,0.959,-0.084,1,0.607,-0.357,0.709,1,0.786,-0.407,0.466,1,0.833,-0.058,0.551,1,0.817,-0.182,0.547,1,0.074,0.279,0.958,1,0.487,-0.358,0.797,1,0.2,-0.408,0.891,1,0.267,-0.057,0.962,1,0.268,-0.181,0.946,1,-0.634,0.144,0.76,1,0.853,-0.382,-0.355,1
,0.674,-0.431,-0.6,1,-0.362,0.536,0.762,1,-0.463,0.717,0.521,1,0.798,-0.564,0.213,1,-0.522,0.846,0.108,1,-0.465,0.867,-0.18,1,0.995,-0.08,0.06,1,0.977,-0.208,0.043,1,-0.068,-0.067,0.995,1,-0.364,0.078,0.928,1,-0.343,0.206,0.917,1,0.441,-0.588,-0.678,1,0.357,-0.675
,-0.645,1,0.065,-0.307,0.949,1,0.301,-0.8,0.519,1,0.065,-0.725,0.686,1,0.074,0.38,0.922,1,0.363,0.429,0.827,1,0.51,0.586,0.63,1,0.362,-0.924,0.121,1,0.474,-0.872,0.12,1,0.806,-0.592,0.034,1,0.687,-0.645,0.334,1,0.806,-0.592,0.034,1,-0.272,0.598,0.754,1
,-0.588,0.798,-0.135,1,-0.58,0.805,0.124,1,0.833,-0.058,0.551,1,0.074,0.279,0.958,1,0.607,-0.357,0.709,1,0.487,-0.358,0.797,1,0.798,-0.564,0.213,1,0.441,-0.588,-0.678,1,0.065,-0.307,0.949,1,0.856,-0.465,0.225,1,0.362,-0.924,0.121,1,0.061,-0.797,0.6,1,-0.222,0.928
,0.301,1,-0.476,0.475,0.74,1,0.853,-0.382,-0.355,1,-0.522,0.846,0.108,1,-0.362,0.536,0.762,1,0.267,-0.057,0.962,1,0.51,0.586,0.63,1,0.995,-0.08,0.06,1,-0.364,0.078,0.928,1,-0.068,-0.067,0.995,1,0.074,0.38,0.922,1]
,"uvs":[0.333,0.617,0.245,0.572,0.3,0.572,0.159,0.896,0.258,0.895,0.209,0.921,0.062,0.451,0.019,0.54,0.018,0.484,0.608,0.858,0.651,0.769,0.652,0.825,0.018,0.321,0.062,0.409,0.017,0.376,0.246,0.706,0.334,0.751,0.279,0.751,0.107,0.749,0.018,0.706,0.108,0.635,0.129,0.749,0.217,0.706,0.184,0.75,0.225,0.572
,0.135,0.614,0.169,0.57,0.134,0.539,0.147,0.545,0.134,0.547,0.536,0.769,0.523,0.762,0.536,0.761,0.208,0.793,0.208,0.778,0.215,0.789,0.132,0.319,0.145,0.312,0.138,0.323,0.012,0.687,0.005,0.7,0.004,0.688,0.242,0.686,0.235,0.699,0.234,0.686,0.224,0.686,0.23,0.699,0.219,0.692,0.128,0.635,0.122,0.622
,0.133,0.629,0.114,0.621,0.116,0.634,0.338,0.637,0.344,0.624,0.346,0.637,0.227,0.704,0.224,0.71,0.232,0.566,0.233,0.572,0.011,0.481,0.016,0.477,0.014,0.547,0.012,0.541,0.101,0.616,0.11,0.618,0.106,0.622,0.187,0.757,0.181,0.757,0.064,0.441,0.068,0.445,0.166,0.563,0.173,0.563,0.656,0.762,0.658,0.768
,0.012,0.313,0.017,0.312,0.052,0.75,0.049,0.756,0.045,0.751,0.012,0.573,0.005,0.567,0.011,0.566,0.121,0.755,0.12,0.749,0.068,0.572,0.071,0.565,0.075,0.57,0.115,0.755,0.109,0.756,0.15,0.898,0.152,0.893,0.275,0.757,0.272,0.752,0.064,0.418,0.058,0.415,0.009,0.704,0.013,0.699,0.011,0.379,0.011,0.373
,0.341,0.757,0.335,0.758,0.209,0.928,0.203,0.925,0.238,0.566,0.244,0.565,0.237,0.703,0.241,0.7,0.267,0.897,0.262,0.901,0.605,0.867,0.601,0.863,0.304,0.565,0.308,0.571,0.342,0.619,0.338,0.623,0.658,0.828,0.653,0.832,0.126,0.616,0.129,0.61,0.246,0.692,0.13,0.62,0.232,0.686,0.223,0.7,0.016,0.694
,0.019,0.548,0.226,0.565,0.132,0.311,0.004,0.573,0.107,0.613,0.055,0.756,0.064,0.565,0.011,0.319,0.155,0.902,0.53,0.774,0.266,0.892,0.162,0.568,0.658,0.821,0.14,0.534,0.651,0.761,0.011,0.488,0.191,0.752,0.282,0.758,0.016,0.383,0.201,0.789,0.068,0.414,0.12,0.635,0.116,0.749,0.611,0.864,0.103,0.628
,0.342,0.752,0.333,0.631,0.237,0.571,0.215,0.925,0.297,0.565,0.14,0.534,0.53,0.774,0.523,0.762,0.201,0.789,0.208,0.778,0.132,0.311,0.145,0.312,0.016,0.694,0.005,0.7,0.246,0.692,0.232,0.686,0.23,0.699,0.12,0.635,0.122,0.622,0.103,0.628,0.114,0.621,0.333,0.631,0.344,0.624,0.223,0.7,0.226,0.565
,0.232,0.566,0.011,0.488,0.011,0.481,0.019,0.548,0.107,0.613,0.11,0.618,0.191,0.752,0.187,0.757,0.058,0.444,0.162,0.568,0.166,0.563,0.651,0.761,0.656,0.762,0.011,0.319,0.055,0.756,0.049,0.756,0.004,0.573,0.005,0.567,0.127,0.756,0.064,0.565,0.071,0.565,0.116,0.749,0.115,0.755,0.155,0.902,0.282,0.758
,0.275,0.757,0.068,0.414,0.064,0.418,0.012,0.709,0.016,0.383,0.011,0.379,0.342,0.752,0.341,0.757,0.215,0.925,0.237,0.571,0.238,0.566,0.24,0.709,0.237,0.703,0.266,0.892,0.611,0.864,0.605,0.867,0.297,0.565,0.304,0.565,0.339,0.614,0.658,0.821,0.658,0.828,0.13,0.62,0.126,0.616,0.13,0.62,0.223,0.7
,0.019,0.548,0.058,0.444,0.004,0.573,0.127,0.756,0.055,0.756,0.064,0.565,0.012,0.709,0.24,0.709,0.266,0.892,0.162,0.568,0.658,0.821,0.651,0.761,0.011,0.488,0.191,0.752,0.282,0.758,0.016,0.383,0.068,0.414,0.116,0.749,0.339,0.614,0.342,0.752,0.237,0.571,0.215,0.925,0.297,0.565]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50
,20,51,52,53,54,55,22,56,57,24,58,59,8,60,61,7,62,63,64,65,66,23,67,68,6,69,70,26,71,72,10,73,74,12,75,76,77,78,79,80,81,82,21,83,84,85,86,87,18,88,89
,3,90,91,17,92,93,13,94,95,19,96,97,14,98,99,16,100,101,5,102,103,1,104,105,15,106,107,4,108,109,9,110,111,2,112,113,0,114,115,11,116,117,25,118,119,42,115,120,121,45,47
,45,59,122,123,48,50,39,66,124,125,27,29,24,72,126,61,6,8,36,76,127,128,39,41,64,87,129,68,21,23,18,130,77,131,80,82,12,99,132,79,19,77,3,103,133,93,15,17,30,111,134
,135,33,35,25,136,26,137,10,74,27,70,138,139,30,32,7,140,8,141,22,57,16,142,17,143,13,95,33,91,144,145,36,38,48,84,146,147,20,52,9,117,148,113,0,2,20,97,149,150,53,55
,53,107,151,152,42,44,4,153,5,154,1,105,64,80,85,0,42,1,3,33,4,6,27,7,9,30,10,12,36,13,15,53,16,18,77,19,21,48,22,24,45,25,27,155,28,30,156,157,33,158,159
,36,160,161,39,162,163,42,164,43,45,165,166,48,167,168,20,169,170,53,171,172,22,173,56,24,174,175,8,176,177,7,178,62,64,179,180,23,181,182,6,183,69,26,184,185,10,186,187,12,188,75
,77,189,190,80,191,192,21,193,83,85,194,195,18,196,197,3,198,90,17,199,200,13,201,202,19,203,96,14,204,205,16,206,207,5,208,102,1,209,210,15,211,212,4,213,108,9,214,215,2,216,217
,0,218,114,11,219,220,25,221,222,42,0,115,223,25,45,45,24,59,224,22,48,39,64,66,225,7,27,24,26,72,61,226,6,36,12,76,227,80,39,64,85,87,68,228,21,18,89,229,230,85,80
,12,14,99,79,231,19,3,5,103,93,232,15,30,9,111,233,4,33,25,119,234,235,11,10,27,6,70,236,10,30,7,63,237,238,23,22,16,101,239,240,14,13,33,3,91,241,13,36,48,21,84
,242,18,20,9,11,117,113,243,0,20,19,97,244,16,53,53,15,107,245,1,42,4,109,246,247,2,1,64,39,80]
}
,{"name":"d12","id":"d12","billboardMode":0,"position":[-0.2,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false
,"positions":[-0.0593,0.0483,-0.0551,-0.0892,-0.0299,-0.0068,-0.0593,-0.0483,-0.0551,0.0483,-0.0551,-0.0593,-0.0299,-0.0068,-0.0892,-0.0483,-0.0551,-0.0593,0.0409,0,-0.085,0.0892,-0.0299,-0.0068,0.0892,0.0299,-0.0068,-0.0551,-0.0593,0.0483,-0.0068,-0.0892,-0.0299,-0.0551,-0.0593,-0.0483,-0.0892,0.0299,0.0068,-0.0593,0.0483,0.0551,-0.0409,0,0.085,0,-0.085,0.0409,-0.0299,-0.0068,0.0892
,0.0299,-0.0068,0.0892,-0.085,0.0409,0,-0.0551,0.0593,-0.0483,-0.0068,0.0892,-0.0299,-0.0299,0.0068,0.0892,0,0.085,0.0409,0.0483,0.0551,0.0593,0.0299,0.0068,-0.0892,0,0.085,-0.0409,-0.0483,0.0551,-0.0593,0.0551,0.0593,-0.0483,0.085,0.0409,0,0.0551,0.0593,0.0483,0.0551,-0.0593,0.0483,0.085,-0.0409,0,0.0551,-0.0593,-0.0483,0.0557,0.0557,0.0557
,0.0547,0.0523,0.0586,0.0557,0.0557,0.0557,0.0523,0.0586,0.0547,0.0593,0.0483,0.0551,0.0557,0.0557,0.0557,0.0586,0.0547,0.0523,0.0557,-0.0557,0.0557,0.0586,-0.0547,0.0523,0.0483,-0.0551,0.0593,0.0557,-0.0557,0.0557,0.0523,-0.0586,0.0547,0.0593,-0.0483,0.0551,0.0557,-0.0557,0.0557,0.0547,-0.0523,0.0586,0.0483,0.0551,-0.0593,0.0557,0.0557,-0.0557,0.0523,0.0586,-0.0547
,0.0593,0.0483,-0.0551,0.0557,0.0557,-0.0557,0.0547,0.0523,-0.0586,0.0557,0.0557,-0.0557,0.0586,0.0547,-0.0523,0.0557,-0.0557,-0.0557,0.0523,-0.0586,-0.0547,0.0593,-0.0483,-0.0551,0.0557,-0.0557,-0.0557,0.0586,-0.0547,-0.0523,0.0557,-0.0557,-0.0557,0.0547,-0.0523,-0.0586,-0.0551,0.0593,0.0483,-0.0557,0.0557,0.0557,-0.0586,0.0547,0.0523,-0.0483,0.0551,0.0593,-0.0557,0.0557,0.0557
,-0.0523,0.0586,0.0547,-0.0557,0.0557,0.0557,-0.0547,0.0523,0.0586,-0.0483,-0.0551,0.0593,-0.0557,-0.0557,0.0557,-0.0547,-0.0523,0.0586,-0.0557,-0.0557,0.0557,-0.0523,-0.0586,0.0547,-0.0593,-0.0483,0.0551,-0.0557,-0.0557,0.0557,-0.0586,-0.0547,0.0523,-0.0557,0.0557,-0.0557,-0.0586,0.0547,-0.0523,-0.0557,0.0557,-0.0557,-0.0547,0.0523,-0.0586,-0.0557,0.0557,-0.0557,-0.0523,0.0586,-0.0547
,-0.0557,-0.0557,-0.0557,-0.0547,-0.0523,-0.0586,-0.0557,-0.0557,-0.0557,-0.0586,-0.0547,-0.0523,-0.0557,-0.0557,-0.0557,-0.0523,-0.0586,-0.0547,0.0409,0,0.085,0.0344,0,0.0901,0.0362,0.0039,0.0885,0.0344,0,0.0901,0.0362,-0.0039,0.0885,0.0299,0.0068,0.0892,0.0344,0,0.0901,0.0299,0,0.091,-0.0344,0,0.0901,-0.0299,0,0.091,-0.0344,0,0.0901
,-0.0362,-0.0039,0.0885,-0.0344,0,0.0901,-0.0362,0.0039,0.0885,0.0344,0,-0.0901,0.0362,-0.0039,-0.0885,0.0344,0,-0.0901,0.0362,0.0039,-0.0885,0.0299,-0.0068,-0.0892,0.0344,0,-0.0901,0.0299,0,-0.091,-0.0409,0,-0.085,-0.0344,0,-0.0901,-0.0362,0.0039,-0.0885,-0.0344,0,-0.0901,-0.0362,-0.0039,-0.0885,-0.0299,0.0068,-0.0892,-0.0344,0,-0.0901
,-0.0299,0,-0.091,0.0901,0.0344,0,0.0885,0.0362,0.0039,0.0901,0.0344,0,0.0885,0.0362,-0.0039,0.0892,0.0299,0.0068,0.0901,0.0344,0,0.091,0.0299,0,0.0901,-0.0344,0,0.091,-0.0299,0,0.0901,-0.0344,0,0.0885,-0.0362,-0.0039,0.0892,-0.0299,0.0068,0.0901,-0.0344,0,0.0885,-0.0362,0.0039,-0.0901,0.0344,0,-0.0885,0.0362,-0.0039
,-0.0901,0.0344,0,-0.0885,0.0362,0.0039,-0.0892,0.0299,-0.0068,-0.0901,0.0344,0,-0.091,0.0299,0,-0.0901,-0.0344,0,-0.0885,-0.0362,-0.0039,-0.0892,-0.0299,0.0068,-0.0901,-0.0344,0,-0.091,-0.0299,0,-0.085,-0.0409,0,-0.0901,-0.0344,0,-0.0885,-0.0362,0.0039,0,0.0901,0.0344,0.0039,0.0885,0.0362,-0.0068,0.0892,0.0299,0,0.0901,0.0344
,-0.0039,0.0885,0.0362,0.0068,0.0892,0.0299,0,0.0901,0.0344,0,0.091,0.0299,0.0068,0.0892,-0.0299,0,0.0901,-0.0344,0.0039,0.0885,-0.0362,0,0.0901,-0.0344,0,0.091,-0.0299,0,0.0901,-0.0344,-0.0039,0.0885,-0.0362,-0.0068,-0.0892,0.0299,0,-0.0901,0.0344,0,-0.091,0.0299,0,-0.0901,0.0344,-0.0039,-0.0885,0.0362,0.0068,-0.0892,0.0299
,0,-0.0901,0.0344,0.0039,-0.0885,0.0362,0.0068,-0.0892,-0.0299,0,-0.0901,-0.0344,0,-0.091,-0.0299,0,-0.085,-0.0409,0,-0.0901,-0.0344,0.0039,-0.0885,-0.0362,0,-0.0901,-0.0344,-0.0039,-0.0885,-0.0362,-0.0523,-0.0586,0.0547,-0.0039,-0.0885,0.0362,-0.0586,-0.0547,-0.0523,-0.0885,-0.0362,-0.0039,0.0547,0.0523,0.0586,0.0299,0,0.091,-0.0299,0,0.091
,0.0547,0.0523,-0.0586,-0.0547,0.0523,-0.0586,0.0586,0.0547,0.0523,0.0885,0.0362,0.0039,0.091,0.0299,0,0.091,-0.0299,0,-0.0586,0.0547,0.0523,-0.0885,0.0362,0.0039,-0.0586,-0.0547,0.0523,-0.0885,-0.0362,0.0039,0.0523,0.0586,0.0547,0.0039,0.0885,0.0362,0,0.091,0.0299,0,0.091,-0.0299,0.0523,-0.0586,0.0547,0.0039,-0.0885,0.0362,0.0523,-0.0586,-0.0547
,0.0039,-0.0885,-0.0362,-0.0523,-0.0586,-0.0547,-0.0039,-0.0885,-0.0362,-0.0523,0.0586,-0.0547,-0.0039,0.0885,-0.0362,0.0299,0,-0.091,-0.0299,0,-0.091,0.0547,-0.0523,0.0586,-0.0547,-0.0523,-0.0586,-0.091,0.0299,0,-0.091,-0.0299,0,0.0586,-0.0547,0.0523,0.0885,-0.0362,0.0039,0.0547,-0.0523,-0.0586,0.0586,0.0547,-0.0523,0.0885,0.0362,-0.0039,-0.0547,0.0523,0.0586
,-0.0547,-0.0523,0.0586,0.0586,-0.0547,-0.0523,0.0885,-0.0362,-0.0039,0.0523,0.0586,-0.0547,0.0039,0.0885,-0.0362,0,-0.091,0.0299,0,-0.091,-0.0299,-0.0523,0.0586,0.0547,-0.0039,0.0885,0.0362,-0.0586,0.0547,-0.0523,-0.0885,0.0362,-0.0039,0.0523,0.0586,0.0547,0.0586,0.0547,0.0523,0.0557,0.0557,0.0557,0.0547,0.0523,0.0586,0.0557,0.0557,0.0557,0.0523,-0.0586,0.0547
,0.0547,-0.0523,0.0586,0.0557,-0.0557,0.0557,0.0586,-0.0547,0.0523,0.0557,-0.0557,0.0557,0.0547,0.0523,-0.0586,0.0586,0.0547,-0.0523,0.0557,0.0557,-0.0557,0.0523,0.0586,-0.0547,0.0557,0.0557,-0.0557,0.0586,-0.0547,-0.0523,0.0547,-0.0523,-0.0586,0.0557,-0.0557,-0.0557,0.0523,-0.0586,-0.0547,0.0557,-0.0557,-0.0557,-0.0523,0.0586,0.0547,-0.0547,0.0523,0.0586,-0.0557,0.0557,0.0557
,-0.0586,0.0547,0.0523,-0.0557,0.0557,0.0557,-0.0523,-0.0586,0.0547,-0.0586,-0.0547,0.0523,-0.0557,-0.0557,0.0557,-0.0547,-0.0523,0.0586,-0.0557,-0.0557,0.0557,-0.0547,0.0523,-0.0586,-0.0523,0.0586,-0.0547,-0.0557,0.0557,-0.0557,-0.0586,0.0547,-0.0523,-0.0557,0.0557,-0.0557,-0.0586,-0.0547,-0.0523,-0.0523,-0.0586,-0.0547,-0.0557,-0.0557,-0.0557,-0.0547,-0.0523,-0.0586,-0.0557,-0.0557,-0.0557
,0.0362,-0.0039,0.0885,0.0299,0,0.091,0.0344,0,0.0901,0.0362,0.0039,0.0885,0.0344,0,0.0901,-0.0362,-0.0039,0.0885,-0.0362,0.0039,0.0885,-0.0344,0,0.0901,-0.0299,0,0.091,-0.0344,0,0.0901,0.0362,0.0039,-0.0885,0.0299,0,-0.091,0.0344,0,-0.0901,0.0362,-0.0039,-0.0885,0.0344,0,-0.0901,-0.0362,-0.0039,-0.0885,-0.0299,0,-0.091
,-0.0344,0,-0.0901,-0.0362,0.0039,-0.0885,-0.0344,0,-0.0901,0.0885,0.0362,-0.0039,0.091,0.0299,0,0.0901,0.0344,0,0.0885,0.0362,0.0039,0.0901,0.0344,0,0.0885,-0.0362,-0.0039,0.0885,-0.0362,0.0039,0.0901,-0.0344,0,0.091,-0.0299,0,0.0901,-0.0344,0,-0.0885,0.0362,0.0039,-0.091,0.0299,0,-0.0901,0.0344,0,-0.0885,0.0362,-0.0039
,-0.0901,0.0344,0,-0.091,-0.0299,0,-0.0885,-0.0362,0.0039,-0.0901,-0.0344,0,-0.0885,-0.0362,-0.0039,-0.0901,-0.0344,0,-0.0039,0.0885,0.0362,0,0.091,0.0299,0,0.0901,0.0344,0.0039,0.0885,0.0362,0,0.0901,0.0344,0,0.091,-0.0299,-0.0039,0.0885,-0.0362,0,0.0901,-0.0344,0.0039,0.0885,-0.0362,0,0.0901,-0.0344,-0.0039,-0.0885,0.0362
,0.0039,-0.0885,0.0362,0,-0.0901,0.0344,0,-0.091,0.0299,0,-0.0901,0.0344,0.0039,-0.0885,-0.0362,-0.0039,-0.0885,-0.0362,0,-0.0901,-0.0344,0,-0.091,-0.0299,0,-0.0901,-0.0344,-0.0039,-0.0885,0.0362,-0.0885,-0.0362,-0.0039,0.0547,0.0523,0.0586,0.0362,0.0039,0.0885,0.0299,0,0.091,-0.0299,0,0.091,0.0547,0.0523,-0.0586,0.0362,0.0039,-0.0885
,-0.0547,0.0523,-0.0586,-0.0362,0.0039,-0.0885,0.0885,0.0362,0.0039,0.091,0.0299,0,0.091,-0.0299,0,-0.0885,0.0362,0.0039,-0.0885,-0.0362,0.0039,0.0523,0.0586,0.0547,0.0039,0.0885,0.0362,0,0.091,0.0299,0,0.091,-0.0299,0.0523,-0.0586,0.0547,0.0039,-0.0885,0.0362,0.0523,-0.0586,-0.0547,0.0039,-0.0885,-0.0362,-0.0523,-0.0586,-0.0547,-0.0039,-0.0885,-0.0362
,-0.0039,0.0885,-0.0362,0.0299,0,-0.091,-0.0299,0,-0.091,0.0547,-0.0523,0.0586,0.0362,-0.0039,0.0885,-0.0547,-0.0523,-0.0586,-0.0362,-0.0039,-0.0885,-0.091,0.0299,0,-0.091,-0.0299,0,0.0885,-0.0362,0.0039,0.0362,-0.0039,-0.0885,0.0885,0.0362,-0.0039,-0.0547,0.0523,0.0586,-0.0362,0.0039,0.0885,-0.0362,-0.0039,0.0885,0.0885,-0.0362,-0.0039,0.0523,0.0586,-0.0547
,0.0039,0.0885,-0.0362,0,-0.091,0.0299,0,-0.091,-0.0299,-0.0523,0.0586,0.0547,-0.0039,0.0885,0.0362,-0.0885,0.0362,-0.0039]
,"normals":[-0.804,0.182,-0.566,-0.916,-0.112,-0.385,-0.804,-0.182,-0.566,0.182,-0.566,-0.804,-0.112,-0.385,-0.916,-0.182,-0.566,-0.804,0.734,0,-0.679,0.916,-0.112,-0.385,0.916,0.112,-0.385,-0.566,-0.804,0.182,-0.385,-0.916,-0.112,-0.566,-0.804,-0.182,-0.916,0.112,0.385,-0.804,0.182,0.566,-0.734,0,0.679,0,-0.679,0.734,-0.112,-0.385,0.916
,0.112,-0.385,0.916,-0.679,0.734,0,-0.566,0.804,-0.182,-0.385,0.916,-0.112,-0.112,0.385,0.916,0,0.679,0.734,0.182,0.566,0.804,0.112,0.385,-0.916,0,0.679,-0.734,-0.182,0.566,-0.804,0.566,0.804,-0.182,0.679,0.734,0,0.566,0.804,0.182,0.566,-0.804,0.182,0.679,-0.734,0,0.566,-0.804,-0.182,0.577,0.577,0.577
,0.527,0.383,0.759,0.577,0.577,0.577,0.383,0.759,0.527,0.804,0.182,0.566,0.577,0.577,0.577,0.759,0.527,0.383,0.577,-0.577,0.577,0.759,-0.527,0.383,0.182,-0.566,0.804,0.577,-0.577,0.577,0.383,-0.759,0.527,0.804,-0.182,0.566,0.577,-0.577,0.577,0.527,-0.383,0.759,0.182,0.566,-0.804,0.577,0.577,-0.577,0.383,0.759,-0.527
,0.804,0.182,-0.566,0.577,0.577,-0.577,0.527,0.383,-0.759,0.577,0.577,-0.577,0.759,0.527,-0.383,0.577,-0.577,-0.577,0.383,-0.759,-0.527,0.804,-0.182,-0.566,0.577,-0.577,-0.577,0.759,-0.527,-0.383,0.577,-0.577,-0.577,0.527,-0.383,-0.759,-0.566,0.804,0.182,-0.577,0.577,0.577,-0.759,0.527,0.383,-0.182,0.566,0.804,-0.577,0.577,0.577
,-0.383,0.759,0.527,-0.577,0.577,0.577,-0.527,0.383,0.759,-0.182,-0.566,0.804,-0.577,-0.577,0.577,-0.527,-0.383,0.759,-0.577,-0.577,0.577,-0.383,-0.759,0.527,-0.804,-0.182,0.566,-0.577,-0.577,0.577,-0.759,-0.527,0.383,-0.577,0.577,-0.577,-0.759,0.527,-0.383,-0.577,0.577,-0.577,-0.527,0.383,-0.759,-0.577,0.577,-0.577,-0.383,0.759,-0.527
,-0.577,-0.577,-0.577,-0.527,-0.383,-0.759,-0.577,-0.577,-0.577,-0.759,-0.527,-0.383,-0.577,-0.577,-0.577,-0.383,-0.759,-0.527,0.734,0,0.679,0.357,0,0.934,0.469,0.233,0.852,0.357,0,0.934,0.469,-0.233,0.852,0.112,0.385,0.916,0.357,0,0.934,0.093,0,0.996,-0.357,0,0.934,-0.093,0,0.996,-0.357,0,0.934
,-0.469,-0.233,0.852,-0.357,0,0.934,-0.469,0.233,0.852,0.357,0,-0.934,0.469,-0.233,-0.852,0.357,0,-0.934,0.469,0.233,-0.852,0.112,-0.385,-0.916,0.357,0,-0.934,0.093,0,-0.996,-0.734,0,-0.679,-0.357,0,-0.934,-0.469,0.233,-0.852,-0.357,0,-0.934,-0.469,-0.233,-0.852,-0.112,0.385,-0.916,-0.357,0,-0.934
,-0.093,0,-0.996,0.934,0.357,0,0.852,0.469,0.233,0.934,0.357,0,0.852,0.469,-0.233,0.916,0.112,0.385,0.934,0.357,0,0.996,0.093,0,0.934,-0.357,0,0.996,-0.093,0,0.934,-0.357,0,0.852,-0.469,-0.233,0.916,-0.112,0.385,0.934,-0.357,0,0.852,-0.469,0.233,-0.934,0.357,0,-0.852,0.469,-0.233
,-0.934,0.357,0,-0.852,0.469,0.233,-0.916,0.112,-0.385,-0.934,0.357,0,-0.996,0.093,0,-0.934,-0.357,0,-0.852,-0.469,-0.233,-0.916,-0.112,0.385,-0.934,-0.357,0,-0.996,-0.093,0,-0.679,-0.734,0,-0.934,-0.357,0,-0.852,-0.469,0.233,0,0.934,0.357,0.233,0.852,0.469,-0.385,0.916,0.112,0,0.934,0.357
,-0.233,0.852,0.469,0.385,0.916,0.112,0,0.934,0.357,0,0.996,0.093,0.385,0.916,-0.112,0,0.934,-0.357,0.233,0.852,-0.469,0,0.934,-0.357,0,0.996,-0.093,0,0.934,-0.357,-0.233,0.852,-0.469,-0.385,-0.916,0.112,0,-0.934,0.357,0,-0.996,0.093,0,-0.934,0.357,-0.233,-0.852,0.469,0.385,-0.916,0.112
,0,-0.934,0.357,0.233,-0.852,0.469,0.385,-0.916,-0.112,0,-0.934,-0.357,0,-0.996,-0.093,0,-0.679,-0.734,0,-0.934,-0.357,0.233,-0.852,-0.469,0,-0.934,-0.357,-0.233,-0.852,-0.469,-0.383,-0.759,0.527,-0.233,-0.852,0.469,-0.759,-0.527,-0.383,-0.852,-0.469,-0.233,0.527,0.383,0.759,0.093,0,0.996,-0.093,0,0.996
,0.527,0.383,-0.759,-0.527,0.383,-0.759,0.759,0.527,0.383,0.852,0.469,0.233,0.996,0.093,0,0.996,-0.093,0,-0.759,0.527,0.383,-0.852,0.469,0.233,-0.759,-0.527,0.383,-0.852,-0.469,0.233,0.383,0.759,0.527,0.233,0.852,0.469,0,0.996,0.093,0,0.996,-0.093,0.383,-0.759,0.527,0.233,-0.852,0.469,0.383,-0.759,-0.527
,0.233,-0.852,-0.469,-0.383,-0.759,-0.527,-0.233,-0.852,-0.469,-0.383,0.759,-0.527,-0.233,0.852,-0.469,0.093,0,-0.996,-0.093,0,-0.996,0.527,-0.383,0.759,-0.527,-0.383,-0.759,-0.996,0.093,0,-0.996,-0.093,0,0.759,-0.527,0.383,0.852,-0.469,0.233,0.527,-0.383,-0.759,0.759,0.527,-0.383,0.852,0.469,-0.233,-0.527,0.383,0.759
,-0.527,-0.383,0.759,0.759,-0.527,-0.383,0.852,-0.469,-0.233,0.383,0.759,-0.527,0.233,0.852,-0.469,0,-0.996,0.093,0,-0.996,-0.093,-0.383,0.759,0.527,-0.233,0.852,0.469,-0.759,0.527,-0.383,-0.852,0.469,-0.233,0.383,0.759,0.527,0.759,0.527,0.383,0.577,0.577,0.577,0.527,0.383,0.759,0.577,0.577,0.577,0.383,-0.759,0.527
,0.527,-0.383,0.759,0.577,-0.577,0.577,0.759,-0.527,0.383,0.577,-0.577,0.577,0.527,0.383,-0.759,0.759,0.527,-0.383,0.577,0.577,-0.577,0.383,0.759,-0.527,0.577,0.577,-0.577,0.759,-0.527,-0.383,0.527,-0.383,-0.759,0.577,-0.577,-0.577,0.383,-0.759,-0.527,0.577,-0.577,-0.577,-0.383,0.759,0.527,-0.527,0.383,0.759,-0.577,0.577,0.577
,-0.759,0.527,0.383,-0.577,0.577,0.577,-0.383,-0.759,0.527,-0.759,-0.527,0.383,-0.577,-0.577,0.577,-0.527,-0.383,0.759,-0.577,-0.577,0.577,-0.527,0.383,-0.759,-0.383,0.759,-0.527,-0.577,0.577,-0.577,-0.759,0.527,-0.383,-0.577,0.577,-0.577,-0.759,-0.527,-0.383,-0.383,-0.759,-0.527,-0.577,-0.577,-0.577,-0.527,-0.383,-0.759,-0.577,-0.577,-0.577
,0.469,-0.233,0.852,0.093,0,0.996,0.357,0,0.934,0.469,0.233,0.852,0.357,0,0.934,-0.469,-0.233,0.852,-0.469,0.233,0.852,-0.357,0,0.934,-0.093,0,0.996,-0.357,0,0.934,0.469,0.233,-0.852,0.093,0,-0.996,0.357,0,-0.934,0.469,-0.233,-0.852,0.357,0,-0.934,-0.469,-0.233,-0.852,-0.093,0,-0.996
,-0.357,0,-0.934,-0.469,0.233,-0.852,-0.357,0,-0.934,0.852,0.469,-0.233,0.996,0.093,0,0.934,0.357,0,0.852,0.469,0.233,0.934,0.357,0,0.852,-0.469,-0.233,0.852,-0.469,0.233,0.934,-0.357,0,0.996,-0.093,0,0.934,-0.357,0,-0.852,0.469,0.233,-0.996,0.093,0,-0.934,0.357,0,-0.852,0.469,-0.233
,-0.934,0.357,0,-0.996,-0.093,0,-0.852,-0.469,0.233,-0.934,-0.357,0,-0.852,-0.469,-0.233,-0.934,-0.357,0,-0.233,0.852,0.469,0,0.996,0.093,0,0.934,0.357,0.233,0.852,0.469,0,0.934,0.357,0,0.996,-0.093,-0.233,0.852,-0.469,0,0.934,-0.357,0.233,0.852,-0.469,0,0.934,-0.357,-0.233,-0.852,0.469
,0.233,-0.852,0.469,0,-0.934,0.357,0,-0.996,0.093,0,-0.934,0.357,0.233,-0.852,-0.469,-0.233,-0.852,-0.469,0,-0.934,-0.357,0,-0.996,-0.093,0,-0.934,-0.357,-0.233,-0.852,0.469,-0.852,-0.469,-0.233,0.527,0.383,0.759,0.469,0.233,0.852,0.093,0,0.996,-0.093,0,0.996,0.527,0.383,-0.759,0.469,0.233,-0.852
,-0.527,0.383,-0.759,-0.469,0.233,-0.852,0.852,0.469,0.233,0.996,0.093,0,0.996,-0.093,0,-0.852,0.469,0.233,-0.852,-0.469,0.233,0.383,0.759,0.527,0.233,0.852,0.469,0,0.996,0.093,0,0.996,-0.093,0.383,-0.759,0.527,0.233,-0.852,0.469,0.383,-0.759,-0.527,0.233,-0.852,-0.469,-0.383,-0.759,-0.527,-0.233,-0.852,-0.469
,-0.233,0.852,-0.469,0.093,0,-0.996,-0.093,0,-0.996,0.527,-0.383,0.759,0.469,-0.233,0.852,-0.527,-0.383,-0.759,-0.469,-0.233,-0.852,-0.996,0.093,0,-0.996,-0.093,0,0.852,-0.469,0.233,0.469,-0.233,-0.852,0.852,0.469,-0.233,-0.527,0.383,0.759,-0.469,0.233,0.852,-0.469,-0.233,0.852,0.852,-0.469,-0.233,0.383,0.759,-0.527
,0.233,0.852,-0.469,0,-0.996,0.093,0,-0.996,-0.093,-0.383,0.759,0.527,-0.233,0.852,0.469,-0.852,0.469,-0.233]
,"tangents":[-0.498,0.316,0.808,1,-0.4,0.326,0.857,1,-0.594,0.299,0.747,1,0.789,-0.404,0.463,1,0.798,-0.584,0.147,1,0.794,-0.567,0.22,1,0.645,0.311,0.698,1,0.4,0.317,0.86,1,0.339,0.296,0.893,1,-0.607,0.556,0.568,1,-0.778,0.256,0.574,1,-0.724,0.379,0.577,1,-0.339,0.294
,-0.894,1,-0.501,0.306,-0.81,1,-0.645,0.31,-0.698,1,1,0.003,0.002,1,0.994,-0.045,0.103,1,0.994,0.05,-0.101,1,0.432,0.399,-0.808,1,0.569,0.221,-0.792,1,0.586,0.148,-0.797,1,0.323,-0.858,0.4,1,0.314,-0.697,0.644,1,0.312,-0.809,0.499,1,0.299,-0.892,-0.338,1
,0.315,-0.697,-0.644,1,0.298,-0.747,-0.594,1,0.81,-0.501,0.306,1,0.699,-0.645,0.309,1,0.749,-0.594,0.293,1,-0.749,-0.594,-0.293,1,-0.698,-0.645,-0.311,1,-0.809,-0.501,-0.308,1,0.312,-0.809,0.498,1,0.222,-0.924,0.312,1,0.6,-0.78,0.179,1,0.758,-0.584,0.29,1,-0.459,0.795
,0.396,1,-0.769,0.623,0.146,1,-0.641,0.706,0.301,1,-0.599,-0.78,-0.182,1,-0.495,-0.849,-0.187,1,0.983,0.106,-0.148,1,0.815,0.365,-0.45,1,0.921,0.266,-0.286,1,-0.215,0.799,0.561,1,-0.033,0.69,0.723,1,-0.227,0.797,0.559,1,0.311,-0.809,-0.499,1,0.31,-0.809,-0.499,1
,0.381,-0.649,-0.658,1,0.501,0.307,0.809,1,0.502,0.306,0.809,1,0.662,0.376,0.649,1,0.809,-0.503,0.306,1,0.649,-0.662,0.375,1,-0.809,-0.5,-0.309,1,-0.924,-0.32,-0.21,1,0.594,0.295,0.748,1,0.782,0.188,0.594,1,0.587,0.3,0.752,1,0.619,-0.152,0.771,1,0.701,-0.309
,0.642,1,0.406,0.464,-0.787,1,0.157,0.772,-0.616,1,0.146,0.711,-0.688,1,0.297,-0.748,0.594,1,0.184,-0.597,0.781,1,0.188,-0.494,0.849,1,-0.503,0.305,-0.808,1,-0.662,0.376,-0.649,1,0.983,-0.1,0.152,1,0.815,-0.359,0.456,1,0.85,-0.265,0.456,1,-0.401,0.816,0.415,1
,-0.564,0.643,0.518,1,-0.594,0.291,-0.75,1,-0.779,0.179,-0.6,1,-0.583,0.288,-0.76,1,-0.495,0.314,0.81,1,-0.309,0.226,0.924,1,0.183,-0.598,-0.781,1,0.294,-0.755,-0.585,1,0.727,0.041,-0.685,1,0.749,-0.079,-0.658,1,-0.782,0.186,0.595,1,-0.849,0.192,0.492,1,-0.806,0.288
,0.518,1,-0.635,0.469,0.614,1,0.686,-0.727,0.041,1,0.794,-0.562,0.233,1,-0.393,0.815,0.426,1,-0.532,0.822,0.203,1,-0.622,0.771,0.132,1,0.93,0.094,-0.355,1,0.882,0.171,-0.439,1,0.296,-0.893,0.338,1,0.186,-0.98,-0.071,1,0.27,-0.963,-0.025,1,0.931,-0.084,0.356,1
,0.995,-0.035,0.093,1,-0.886,0.317,-0.338,1,-0.875,0.253,-0.413,1,0.396,-0.905,0.151,1,0.326,-0.851,0.412,1,0.886,0.318,0.338,1,0.875,0.254,0.412,1,0.187,-0.98,0.072,1,0.218,-0.965,-0.144,1,0.807,-0.503,0.31,1,0.807,-0.505,0.308,1,0.832,-0.55,0.078,1,-0.644,0.317
,0.697,1,-0.884,0.323,0.338,1,-0.773,0.359,0.523,1,0.697,-0.665,-0.266,1,0.681,-0.71,-0.181,1,0.323,-0.858,-0.4,1,0.395,-0.906,-0.151,1,0.36,-0.932,-0.034,1,0.339,-0.887,0.315,1,0.413,-0.875,0.251,1,-0.071,0.186,0.98,1,0.146,0.214,0.966,1,-0.308,0.812,0.497,1
,-0.31,0.811,0.496,1,-0.078,0.838,0.54,1,0.149,0.391,0.908,1,0.033,0.356,0.934,1,-0.338,-0.886,-0.318,1,-0.523,-0.775,-0.354,1,-0.143,0.805,0.576,1,0.27,0.706,0.655,1,0.187,0.687,0.702,1,0.206,0.54,-0.816,1,0.436,0.389,-0.811,1,0.07,0.184,-0.98,1,-0.147,0.212
,-0.966,1,-0.338,0.299,0.892,1,0.072,0.19,0.979,1,0.026,0.273,0.962,1,-0.153,0.399,0.904,1,-0.413,0.329,0.85,1,-0.4,0.315,-0.861,1,-0.149,0.391,-0.908,1,-0.033,0.356,-0.934,1,-0.593,0.548,0.591,1,-0.286,0.749,0.597,1,-0.291,0.793,0.535,1,0.32,-0.338,0.885,1
,0.356,-0.523,0.774,1,0.504,0.31,-0.806,1,0.504,0.308,-0.807,1,0.432,0.523,-0.735,1,0.86,-0.4,0.316,1,0.909,-0.148,0.389,1,0.935,-0.033,0.353,1,0.894,-0.339,0.294,1,0.981,0.07,0.183,1,0.966,-0.146,0.214,1,0.666,-0.266,-0.697,1,0.617,-0.073,-0.784,1,0.32,-0.338
,-0.885,1,0.256,-0.412,-0.875,1,-0.716,0.373,0.59,1,-0.74,0.24,0.629,1,-0.778,0.058,0.626,1,1,0.002,0.005,1,0.972,-0.185,0.147,1,-0.86,-0.4,-0.318,1,-0.907,-0.15,-0.394,1,-0.854,-0.41,-0.321,1,-0.894,-0.339,-0.294,1,-0.98,0.071,-0.185,1,-0.963,0.025,-0.268,1
,0.809,-0.432,0.399,1,0.814,-0.207,0.542,1,0.763,-0.14,0.632,1,-0.868,-0.177,0.464,1,-0.883,-0.017,0.469,1,0.92,-0.262,0.291,1,-0.675,0.489,0.552,1,-0.586,0.296,0.754,1,-0.503,0.609,0.614,1,-0.702,0.699,0.135,1,0.995,0.041,-0.093,1,0.36,-0.932,0.034,1,0.223,-0.924
,-0.311,1,-0.655,0.386,0.649,1,0.495,-0.849,0.185,1,-0.523,0.74,0.424,1,-0.025,0.272,0.962,1,0.074,0.793,0.604,1,-0.315,0.218,-0.924,1,0.139,0.631,-0.763,1,-0.339,0.822,0.459,1,-0.409,0.319,-0.855,1,0.384,-0.649,0.657,1,0.854,-0.409,0.32,1,0.548,0.078,-0.833,1
,0.963,0.025,0.269,1,-0.758,-0.584,-0.29,1,0.972,0.189,-0.139,1,0.691,-0.143,0.708,1,-0.966,-0.147,-0.212,1,-0.88,0.126,0.458,1,0.812,-0.435,0.388,1,0.189,-0.494,-0.849,1,0.712,-0.179,-0.679,1,0.274,-0.961,0.026,1,0.785,-0.615,-0.073,1,0.849,0.273,-0.452,1,0.66,-0.747
,-0.081,1,0.025,0.271,-0.962,1,-0.034,0.363,0.931,1,0.087,0.665,0.742,1,-0.413,-0.875,-0.253,1,0.849,0.184,0.496,1,0.313,0.22,0.924,1,0.523,-0.776,0.352,1,0.294,-0.756,0.585,1,-0.849,0.185,-0.495,1,-0.649,-0.653,-0.389,1,0.41,0.32,0.854,1,0.924,-0.314,0.219,1
,0.358,-0.523,-0.773,1,-0.933,-0.033,-0.357,1,-0.829,-0.052,0.557,1,0.315,0.643,-0.698,1,0.255,-0.412,0.875,1,0.563,0.236,-0.792,1,-0.144,0.216,0.966,1,0.384,-0.649,0.657,1,0.495,-0.849,0.185,1,0.6,-0.78,0.179,1,-0.702,0.699,0.135,1,-0.769,0.623,0.146,1,-0.758,-0.584
,-0.29,1,0.849,0.273,-0.452,1,0.815,0.365,-0.45,1,0.087,0.665,0.742,1,-0.033,0.69,0.723,1,0.223,-0.924,-0.311,1,0.313,0.22,0.924,1,0.502,0.306,0.809,1,0.924,-0.314,0.219,1,0.809,-0.503,0.306,1,-0.649,-0.653,-0.389,1,0.849,0.184,0.496,1,0.782,0.188,0.594,1
,0.691,-0.143,0.708,1,0.619,-0.152,0.771,1,0.315,0.643,-0.698,1,0.294,-0.756,0.585,1,0.184,-0.597,0.781,1,-0.315,0.218,-0.924,1,-0.503,0.305,-0.808,1,0.92,-0.262,0.291,1,-0.339,0.822,0.459,1,-0.401,0.816,0.415,1,-0.849,0.185,-0.495,1,-0.779,0.179,-0.6,1,-0.655,0.386
,0.649,1,0.189,-0.494,-0.849,1,0.183,-0.598,-0.781,1,0.563,0.236,-0.792,1,0.727,0.041,-0.685,1,-0.586,0.296,0.754,1,-0.88,0.126,0.458,1,-0.806,0.288,0.518,1,0.66,-0.747,-0.081,1,0.686,-0.727,0.041,1,-0.381,0.817,0.433,1,0.995,0.041,-0.093,1,0.93,0.094,-0.355,1
,0.215,-0.966,0.145,1,0.186,-0.98,-0.071,1,0.882,-0.162,0.442,1,-0.776,0.352,-0.523,1,-0.886,0.317,-0.338,1,0.36,-0.932,0.034,1,0.396,-0.905,0.151,1,0.776,0.352,0.523,1,0.274,-0.961,0.026,1,0.187,-0.98,0.072,1,0.736,-0.43,0.523,1,0.807,-0.505,0.308,1,-0.874,0.26
,0.41,1,0.785,-0.615,-0.073,1,0.697,-0.665,-0.266,1,0.326,-0.851,-0.412,1,0.395,-0.906,-0.151,1,0.523,-0.776,0.352,1,-0.025,0.272,0.962,1,-0.071,0.186,0.98,1,-0.523,0.74,0.424,1,-0.31,0.811,0.496,1,0.41,0.32,0.854,1,-0.413,-0.875,-0.253,1,-0.338,-0.886,-0.318,1
,0.074,0.793,0.604,1,0.27,0.706,0.655,1,0.139,0.631,-0.763,1,0.025,0.271,-0.962,1,0.07,0.184,-0.98,1,-0.144,0.216,0.966,1,0.072,0.19,0.979,1,-0.034,0.363,0.931,1,-0.409,0.319,-0.855,1,-0.149,0.391,-0.908,1,-0.503,0.609,0.614,1,-0.286,0.749,0.597,1,0.255,-0.412
,0.875,1,0.548,0.078,-0.833,1,0.504,0.308,-0.807,1,0.854,-0.409,0.32,1,0.909,-0.148,0.389,1,0.963,0.025,0.269,1,0.712,-0.179,-0.679,1,0.666,-0.266,-0.697,1,0.358,-0.523,-0.773,1,0.32,-0.338,-0.885,1,-0.675,0.489,0.552,1,0.972,0.189,-0.139,1,1,0.002,0.005,1
,-0.933,-0.033,-0.357,1,-0.907,-0.15,-0.394,1,-0.966,-0.147,-0.212,1,0.812,-0.435,0.388,1,0.814,-0.207,0.542,1,-0.829,-0.052,0.557,1,-0.868,-0.177,0.464,1,-0.675,0.489,0.552,1,-0.503,0.609,0.614,1,-0.702,0.699,0.135,1,0.215,-0.966,0.145,1,0.995,0.041,-0.093,1,0.36,-0.932
,0.034,1,0.223,-0.924,-0.311,1,0.776,0.352,0.523,1,-0.655,0.386,0.649,1,0.326,-0.851,-0.412,1,-0.523,0.74,0.424,1,-0.025,0.272,0.962,1,0.074,0.793,0.604,1,0.139,0.631,-0.763,1,-0.409,0.319,-0.855,1,0.384,-0.649,0.657,1,0.854,-0.409,0.32,1,0.548,0.078,-0.833,1
,0.963,0.025,0.269,1,-0.758,-0.584,-0.29,1,0.972,0.189,-0.139,1,0.691,-0.143,0.708,1,-0.966,-0.147,-0.212,1,-0.88,0.126,0.458,1,0.812,-0.435,0.388,1,0.712,-0.179,-0.679,1,0.274,-0.961,0.026,1,0.785,-0.615,-0.073,1,0.849,0.273,-0.452,1,-0.381,0.817,0.433,1,0.66,-0.747
,-0.081,1,-0.874,0.26,0.41,1,0.025,0.271,-0.962,1,-0.034,0.363,0.931,1,-0.413,-0.875,-0.253,1,0.736,-0.43,0.523,1,0.523,-0.776,0.352,1,0.294,-0.756,0.585,1,-0.776,0.352,-0.523,1,0.882,-0.162,0.442,1,0.41,0.32,0.854,1,0.924,-0.314,0.219,1,0.358,-0.523,-0.773,1
,-0.933,-0.033,-0.357,1,-0.829,-0.052,0.557,1,0.315,0.643,-0.698,1,0.255,-0.412,0.875,1,-0.144,0.216,0.966,1]
,"uvs":[0.828,0.698,0.86,0.798,0.795,0.798,0.817,0.682,0.712,0.682,0.732,0.62,0.839,0.683,0.924,0.621,0.944,0.683,0.987,0.485,0.886,0.452,0.925,0.4,0.449,0.948,0.396,0.986,0.344,0.947,0.826,0.918,0.794,0.817,0.859,0.817,0.898,0.742,0.963,0.741,0.983,0.803,0.93,0.989,0.845,0.927,0.898,0.889,0.685,0.951
,0.58,0.951,0.6,0.889,0.749,0.885,0.801,0.923,0.781,0.985,0.482,0.986,0.462,0.924,0.515,0.886,0.898,0.88,0.902,0.883,0.786,0.993,0.781,0.993,0.775,0.805,0.784,0.807,0.78,0.811,0.477,0.993,0.475,0.988,0.879,0.879,0.887,0.882,0.883,0.886,0.689,0.743,0.684,0.736,0.689,0.735,0.633,0.989,0.633,0.998
,0.628,0.995,0.891,0.721,0.891,0.73,0.887,0.727,0.749,0.876,0.753,0.879,0.515,0.877,0.519,0.879,0.859,0.621,0.853,0.613,0.858,0.613,0.826,0.685,0.822,0.688,0.878,0.804,0.869,0.806,0.87,0.801,0.865,0.989,0.859,0.997,0.857,0.992,0.396,0.995,0.392,0.992,0.773,0.879,0.765,0.882,0.766,0.877,0.994,0.49
,0.989,0.492,0.364,0.885,0.358,0.878,0.364,0.878,0.828,0.689,0.832,0.692,0.595,0.882,0.6,0.882,0.968,0.734,0.97,0.738,0.79,0.805,0.788,0.8,0.922,0.391,0.927,0.392,0.727,0.613,0.732,0.612,0.754,0.743,0.76,0.736,0.762,0.74,0.864,0.81,0.866,0.815,0.95,0.928,0.959,0.925,0.958,0.93,0.789,0.81
,0.794,0.81,0.335,0.95,0.336,0.945,0.935,0.997,0.93,0.997,0.83,0.685,0.831,0.68,0.694,0.953,0.69,0.957,0.764,0.721,0.764,0.73,0.76,0.727,0.775,0.736,0.767,0.733,0.77,0.73,0.703,0.685,0.705,0.68,0.665,0.889,0.67,0.882,0.672,0.886,0.81,0.921,0.809,0.926,0.952,0.686,0.948,0.689,0.723,0.843
,0.723,0.852,0.718,0.85,0.929,0.614,0.931,0.618,0.454,0.921,0.458,0.918,0.67,0.805,0.661,0.808,0.662,0.803,0.893,0.734,0.898,0.734,0.458,0.951,0.454,0.954,0.881,0.736,0.889,0.734,0.888,0.739,0.865,0.805,0.86,0.806,0.429,0.886,0.434,0.879,0.436,0.883,0.987,0.42,0.994,0.415,0.995,0.42,0.836,0.925
,0.84,0.921,0.931,0.841,0.931,0.851,0.926,0.848,0.716,0.985,0.711,0.993,0.709,0.988,0.696,0.923,0.688,0.92,0.692,0.917,0.992,0.806,0.988,0.809,0.571,0.954,0.572,0.949,0.925,0.505,0.922,0.513,0.918,0.509,0.826,0.927,0.821,0.924,0.548,0.986,0.553,0.993,0.548,0.993,0.568,0.924,0.576,0.921,0.575,0.926
,0.797,0.62,0.803,0.613,0.805,0.618,0.877,0.452,0.88,0.448,0.769,0.885,0.927,0.512,0.795,0.805,0.989,0.413,0.782,0.802,0.859,0.81,0.937,0.992,0.637,0.995,0.824,0.692,0.788,0.988,0.727,0.849,0.951,0.681,0.665,0.811,0.401,0.992,0.891,0.739,0.994,0.485,0.429,0.878,0.893,0.883,0.716,0.993,0.935,0.848
,0.689,0.925,0.482,0.994,0.83,0.924,0.825,0.68,0.572,0.918,0.919,0.395,0.798,0.612,0.593,0.887,0.991,0.801,0.693,0.948,0.707,0.688,0.886,0.877,0.725,0.617,0.456,0.946,0.867,0.801,0.682,0.741,0.455,0.926,0.851,0.618,0.895,0.727,0.806,0.917,0.865,0.997,0.356,0.883,0.511,0.879,0.924,0.613,0.745,0.879
,0.575,0.957,0.555,0.988,0.88,0.456,0.873,0.81,0.837,0.93,0.963,0.733,0.885,0.73,0.893,0.883,0.788,0.988,0.786,0.993,0.782,0.802,0.784,0.807,0.482,0.994,0.886,0.877,0.887,0.882,0.682,0.741,0.684,0.736,0.637,0.995,0.895,0.727,0.891,0.73,0.745,0.879,0.749,0.876,0.511,0.879,0.851,0.618,0.853,0.613
,0.825,0.68,0.826,0.685,0.873,0.81,0.865,0.997,0.859,0.997,0.401,0.992,0.396,0.995,0.769,0.885,0.994,0.485,0.994,0.49,0.356,0.883,0.358,0.878,0.824,0.692,0.593,0.887,0.595,0.882,0.963,0.733,0.968,0.734,0.795,0.805,0.919,0.395,0.922,0.391,0.725,0.617,0.727,0.613,0.754,0.735,0.859,0.81,0.864,0.81
,0.955,0.921,0.959,0.925,0.787,0.815,0.339,0.953,0.335,0.95,0.937,0.992,0.935,0.997,0.834,0.689,0.693,0.948,0.694,0.953,0.769,0.727,0.764,0.73,0.768,0.738,0.707,0.688,0.703,0.685,0.665,0.881,0.67,0.882,0.806,0.917,0.951,0.681,0.952,0.686,0.727,0.849,0.723,0.852,0.924,0.613,0.455,0.926,0.454,0.921
,0.665,0.811,0.661,0.808,0.891,0.739,0.456,0.946,0.458,0.951,0.885,0.73,0.889,0.734,0.867,0.801,0.429,0.878,0.434,0.879,0.989,0.413,0.994,0.415,0.837,0.93,0.935,0.848,0.931,0.851,0.716,0.993,0.711,0.993,0.689,0.925,0.991,0.801,0.992,0.806,0.575,0.957,0.571,0.954,0.927,0.512,0.83,0.924,0.826,0.927
,0.555,0.988,0.553,0.993,0.572,0.918,0.798,0.612,0.803,0.613,0.88,0.456,0.877,0.452,0.927,0.512,0.989,0.413,0.782,0.802,0.955,0.921,0.859,0.81,0.937,0.992,0.637,0.995,0.834,0.689,0.824,0.692,0.665,0.881,0.727,0.849,0.951,0.681,0.665,0.811,0.891,0.739,0.429,0.878,0.893,0.883,0.716,0.993,0.935,0.848
,0.689,0.925,0.482,0.994,0.83,0.924,0.825,0.68,0.572,0.918,0.919,0.395,0.798,0.612,0.991,0.801,0.693,0.948,0.707,0.688,0.886,0.877,0.754,0.735,0.725,0.617,0.768,0.738,0.456,0.946,0.867,0.801,0.455,0.926,0.769,0.727,0.806,0.917,0.865,0.997,0.339,0.953,0.787,0.815,0.924,0.613,0.745,0.879,0.575,0.957
,0.555,0.988,0.88,0.456,0.873,0.81,0.837,0.93,0.885,0.73]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,23,33,34,29,35,36,37,38,39,30,40,41,42,43,44,45,46,47
,48,49,50,51,52,53,27,54,55,32,56,57,58,59,60,3,61,62,63,64,65,66,67,68,13,69,70,71,72,73,9,74,75,76,77,78,0,79,80,26,81,82,19,83,84,2,85,86,11,87,88
,5,89,90,91,92,93,17,94,95,96,97,98,16,99,100,14,101,102,21,103,104,6,105,106,24,107,108,109,110,111,112,113,114,4,115,116,117,118,119,28,120,121,8,122,123,124,125,126,7,127,128
,31,129,130,131,132,133,18,134,135,12,136,137,138,139,140,1,141,142,143,144,145,146,147,148,22,149,150,151,152,153,154,155,156,157,158,159,20,160,161,25,162,163,164,165,166,15,167,168,169,170,171
,172,173,174,175,176,177,10,178,179,71,168,180,181,9,75,2,142,182,183,11,88,91,184,37,34,96,23,16,185,17,186,96,98,24,187,48,53,6,51,112,188,0,82,117,26,29,121,189,190,37,39
,7,191,8,192,124,126,13,137,193,194,63,65,9,148,195,196,76,78,22,197,23,198,29,36,20,199,151,200,154,156,169,201,30,202,42,44,175,203,3,204,32,57,10,205,11,206,5,90,26,163,207
,208,19,84,117,209,24,210,109,111,17,211,42,47,91,45,4,212,5,86,112,2,143,213,12,214,138,140,45,133,215,216,30,41,58,106,217,62,109,3,51,123,218,219,27,55,21,220,66,70,14,13
,76,102,221,73,16,71,32,130,222,223,58,60,157,224,27,225,48,50,172,226,169,227,164,166,151,228,63,229,66,68,19,135,230,231,0,80,131,45,91,2,112,0,0,138,1,5,175,3,3,109,4
,8,51,6,6,58,7,11,146,9,9,164,10,14,76,143,143,12,14,17,42,15,15,71,16,151,63,20,63,18,20,23,96,21,21,66,22,26,117,24,24,48,25,29,154,157,157,27,29,32,172,169
,169,30,32,23,232,33,29,233,234,37,235,236,30,237,40,42,238,239,45,240,241,48,242,49,51,243,244,27,245,246,32,247,56,58,248,249,3,250,251,63,252,64,66,253,254,13,255,256,71,257,72
,9,258,259,76,260,261,0,262,79,26,263,264,19,265,266,2,267,85,11,268,269,5,270,271,91,272,92,17,273,274,96,275,276,16,277,99,14,278,279,21,280,281,6,282,105,24,283,284,109,285,286
,112,287,113,4,288,289,117,290,291,28,292,120,8,293,294,124,295,296,7,297,127,31,298,299,131,300,301,18,302,134,12,303,304,138,305,306,1,307,141,143,308,309,146,310,311,22,312,149,151,313,314
,154,315,316,157,317,158,20,318,319,25,320,321,164,322,165,15,323,324,169,325,326,172,327,173,175,328,329,10,330,331,71,15,168,332,164,9,2,1,142,333,146,11,91,93,334,34,335,96,16,100,336
,337,21,96,24,108,338,53,339,6,112,114,340,82,341,117,29,28,121,342,124,37,7,128,343,344,131,124,13,12,137,345,18,63,9,146,148,346,143,76,22,150,347,348,154,29,20,161,349,350,157,154
,169,171,351,352,15,42,175,177,353,354,172,32,10,179,355,356,175,5,26,25,163,357,20,19,117,119,358,359,4,109,17,95,360,47,361,91,4,116,362,86,363,112,143,145,364,365,1,138,45,131,133
,366,31,30,58,6,106,62,367,109,51,8,123,368,28,27,21,104,369,70,370,14,76,14,102,73,371,16,32,31,130,372,7,58,157,159,373,374,25,48,172,174,375,376,10,164,151,153,377,378,22,66
,19,18,135,379,138,0,37,124,91,124,131,91]
}
,{"name":"d20","id":"d20","billboardMode":0,"position":[-0.4,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false
,"positions":[0.0807,0,0.0637,0.0069,-0.0456,0.0919,0.0069,0.0456,0.0919,0.085,0.0112,0.0568,0.0112,0.0568,0.085,0.0568,0.085,0.0112,-0.085,0.0112,-0.0568,-0.0112,0.0568,-0.085,-0.0568,0.085,-0.0112,0.085,0.0112,-0.0568,0.0568,0.085,-0.0112,0.0112,0.0568,-0.085,0.0807,0,-0.0637,0.0069,0.0456,-0.0919,0.0069,-0.0456,-0.0919,-0.0637,0.0807,0,-0.0919,0.0069,0.0456
,-0.0919,0.0069,-0.0456,-0.0807,0,-0.0637,-0.0069,-0.0456,-0.0919,-0.0069,0.0456,-0.0919,0,0.0637,-0.0807,0.0456,0.0919,-0.0069,-0.0456,0.0919,-0.0069,-0.0637,-0.0807,0,-0.0919,-0.0069,-0.0456,-0.0919,-0.0069,0.0456,-0.085,-0.0112,0.0568,-0.0112,-0.0568,0.085,-0.0568,-0.085,0.0112,0.085,-0.0112,-0.0568,0.0112,-0.0568,-0.085,0.0568,-0.085,-0.0112,-0.085,-0.0112,-0.0568
,-0.0568,-0.085,-0.0112,-0.0112,-0.0568,-0.085,0.085,-0.0112,0.0568,0.0568,-0.085,0.0112,0.0112,-0.0568,0.085,0.0637,0.0807,0,0.0919,0.0069,-0.0456,0.0919,0.0069,0.0456,-0.085,0.0112,0.0568,-0.0568,0.085,0.0112,-0.0112,0.0568,0.085,-0.0807,0,0.0637,-0.0069,0.0456,0.0919,-0.0069,-0.0456,0.0919,0,-0.0637,-0.0807,-0.0456,-0.0919,-0.0069,0.0456,-0.0919,-0.0069
,0,0.0637,0.0807,-0.0456,0.0919,0.0069,0.0456,0.0919,0.0069,0,-0.0637,0.0807,0.0456,-0.0919,0.0069,-0.0456,-0.0919,0.0069,0.0919,-0.0069,0.0456,0.0901,0,0.0557,0.093,0,0.0456,0.0901,0,0.0557,0.0893,-0.0096,0.0515,0.0901,0,0.0557,0.0834,-0.0059,0.0611,0.0901,0,0.0557,0.0834,0.0059,0.0611,0.0901,0,0.0557,0.0893,0.0096,0.0515
,-0.0901,0,0.0557,-0.0893,-0.0096,0.0515,-0.0901,0,0.0557,-0.093,0,0.0456,-0.0901,0,0.0557,-0.0893,0.0096,0.0515,-0.0901,0,0.0557,-0.0834,0.0059,0.0611,-0.0901,0,0.0557,-0.0834,-0.0059,0.0611,0.0919,-0.0069,-0.0456,0.0901,0,-0.0557,0.0893,-0.0096,-0.0515,0.0901,0,-0.0557,0.093,0,-0.0456,0.0901,0,-0.0557,0.0893,0.0096,-0.0515
,0.0901,0,-0.0557,0.0834,0.0059,-0.0611,0.0901,0,-0.0557,0.0834,-0.0059,-0.0611,-0.0901,0,-0.0557,-0.093,0,-0.0456,-0.0901,0,-0.0557,-0.0893,-0.0096,-0.0515,-0.0901,0,-0.0557,-0.0834,-0.0059,-0.0611,-0.0901,0,-0.0557,-0.0834,0.0059,-0.0611,-0.0901,0,-0.0557,-0.0893,0.0096,-0.0515,0.0557,0.0901,0,0.0611,0.0834,0.0059,0.0557,0.0901,0
,0.0515,0.0893,0.0096,0.0557,0.0901,0,0.0456,0.093,0,0.0557,0.0901,0,0.0515,0.0893,-0.0096,0.0557,0.0901,0,0.0611,0.0834,-0.0059,0.0557,-0.0901,0,0.0515,-0.0893,0.0096,0.0637,-0.0807,0,0.0557,-0.0901,0,0.0611,-0.0834,0.0059,0.0557,-0.0901,0,0.0611,-0.0834,-0.0059,0.0557,-0.0901,0,0.0515,-0.0893,-0.0096,0.0557,-0.0901,0
,0.0456,-0.093,0,-0.0557,0.0901,0,-0.0515,0.0893,0.0096,-0.0557,0.0901,0,-0.0611,0.0834,0.0059,-0.0557,0.0901,0,-0.0611,0.0834,-0.0059,-0.0557,0.0901,0,-0.0515,0.0893,-0.0096,-0.0557,0.0901,0,-0.0456,0.093,0,-0.0557,-0.0901,0,-0.0611,-0.0834,0.0059,-0.0557,-0.0901,0,-0.0515,-0.0893,0.0096,-0.0557,-0.0901,0,-0.0456,-0.093,0
,-0.0557,-0.0901,0,-0.0515,-0.0893,-0.0096,-0.0557,-0.0901,0,-0.0611,-0.0834,-0.0059,0,0.0557,0.0901,0.0096,0.0515,0.0893,0,0.0557,0.0901,0,0.0456,0.093,0,0.0557,0.0901,-0.0096,0.0515,0.0893,0,0.0557,0.0901,-0.0059,0.0611,0.0834,0,0.0557,0.0901,0.0059,0.0611,0.0834,0,0.0557,-0.0901,-0.0096,0.0515,-0.0893,0,0.0557,-0.0901
,0,0.0456,-0.093,0,0.0557,-0.0901,0.0096,0.0515,-0.0893,0,0.0557,-0.0901,0.0059,0.0611,-0.0834,0,0.0557,-0.0901,-0.0059,0.0611,-0.0834,0,-0.0557,0.0901,0,-0.0456,0.093,0,-0.0557,0.0901,0.0096,-0.0515,0.0893,0,-0.0557,0.0901,0.0059,-0.0611,0.0834,0,-0.0557,0.0901,-0.0059,-0.0611,0.0834,0,-0.0557,0.0901,-0.0096,-0.0515,0.0893
,0,-0.0557,-0.0901,0,-0.0456,-0.093,0,-0.0557,-0.0901,-0.0096,-0.0515,-0.0893,0,-0.0557,-0.0901,-0.0059,-0.0611,-0.0834,0,-0.0557,-0.0901,0.0059,-0.0611,-0.0834,0,-0.0557,-0.0901,0.0096,-0.0515,-0.0893,0,0.0456,-0.093,0,-0.0456,-0.093,0.093,0,0.0456,0.093,0,-0.0456,-0.093,0,0.0456,-0.093,0,-0.0456,0.0893,0.0096,0.0515
,0.0893,-0.0096,0.0515,-0.0893,0.0096,0.0515,-0.0611,0.0834,0.0059,-0.0893,-0.0096,0.0515,0.0834,0.0059,0.0611,0.0096,0.0515,0.0893,0.0834,0.0059,-0.0611,0.0834,-0.0059,0.0611,0.0096,-0.0515,0.0893,0.0834,-0.0059,-0.0611,0.0096,-0.0515,-0.0893,0.0893,0.0096,-0.0515,0.0611,0.0834,-0.0059,0.0893,-0.0096,-0.0515,0.0611,-0.0834,-0.0059,-0.0834,0.0059,0.0611,-0.0096,0.0515,0.0893
,-0.0893,0.0096,-0.0515,-0.0611,0.0834,-0.0059,-0.0834,-0.0059,0.0611,-0.0096,-0.0515,0.0893,-0.0893,-0.0096,-0.0515,0.0456,0.093,0,-0.0456,0.093,0,-0.0834,0.0059,-0.0611,0.0515,0.0893,0.0096,0.0059,0.0611,0.0834,0.0456,-0.093,0,-0.0456,-0.093,0,0.0515,0.0893,-0.0096,0.0059,0.0611,-0.0834,-0.0834,-0.0059,-0.0611,-0.0515,0.0893,0.0096,-0.0059,0.0611,0.0834
,0.0515,-0.0893,0.0096,0.0059,-0.0611,0.0834,-0.0515,0.0893,-0.0096,-0.0059,0.0611,-0.0834,0.0515,-0.0893,-0.0096,0.0059,-0.0611,-0.0834,-0.0515,-0.0893,0.0096,-0.0059,-0.0611,0.0834,-0.0515,-0.0893,-0.0096,-0.0059,-0.0611,-0.0834,0,0.0456,0.093,0,-0.0456,0.093,0.0893,-0.0096,0.0515,0.0834,-0.0059,0.0611,0.0901,0,0.0557,0.0834,0.0059,0.0611,0.0901,0,0.0557
,0.0893,0.0096,0.0515,0.0901,0,0.0557,0.093,0,0.0456,0.0901,0,0.0557,-0.093,0,0.0456,-0.0893,0.0096,0.0515,-0.0901,0,0.0557,-0.0834,0.0059,0.0611,-0.0901,0,0.0557,-0.0834,-0.0059,0.0611,-0.0901,0,0.0557,-0.0893,-0.0096,0.0515,-0.0901,0,0.0557,0.093,0,-0.0456,0.0893,0.0096,-0.0515,0.0901,0,-0.0557,0.0834,0.0059,-0.0611
,0.0901,0,-0.0557,0.0834,-0.0059,-0.0611,0.0901,0,-0.0557,0.0893,-0.0096,-0.0515,0.0901,0,-0.0557,-0.0893,-0.0096,-0.0515,-0.0834,-0.0059,-0.0611,-0.0901,0,-0.0557,-0.0834,0.0059,-0.0611,-0.0901,0,-0.0557,-0.0893,0.0096,-0.0515,-0.0901,0,-0.0557,-0.093,0,-0.0456,-0.0901,0,-0.0557,0.0515,0.0893,0.0096,0.0456,0.093,0,0.0557,0.0901,0
,0.0515,0.0893,-0.0096,0.0557,0.0901,0,0.0611,0.0834,-0.0059,0.0557,0.0901,0,0.0611,0.0834,0.0059,0.0557,0.0901,0,0.0611,-0.0834,0.0059,0.0611,-0.0834,-0.0059,0.0557,-0.0901,0,0.0515,-0.0893,-0.0096,0.0557,-0.0901,0,0.0456,-0.093,0,0.0557,-0.0901,0,0.0515,-0.0893,0.0096,0.0557,-0.0901,0,-0.0611,0.0834,0.0059,-0.0611,0.0834,-0.0059
,-0.0557,0.0901,0,-0.0515,0.0893,-0.0096,-0.0557,0.0901,0,-0.0456,0.093,0,-0.0557,0.0901,0,-0.0515,0.0893,0.0096,-0.0557,0.0901,0,-0.0515,-0.0893,0.0096,-0.0456,-0.093,0,-0.0557,-0.0901,0,-0.0515,-0.0893,-0.0096,-0.0557,-0.0901,0,-0.0611,-0.0834,-0.0059,-0.0557,-0.0901,0,-0.0611,-0.0834,0.0059,-0.0557,-0.0901,0,0,0.0456,0.093
,-0.0096,0.0515,0.0893,0,0.0557,0.0901,-0.0059,0.0611,0.0834,0,0.0557,0.0901,0.0059,0.0611,0.0834,0,0.0557,0.0901,0.0096,0.0515,0.0893,0,0.0557,0.0901,0,0.0456,-0.093,0.0096,0.0515,-0.0893,0,0.0557,-0.0901,0.0059,0.0611,-0.0834,0,0.0557,-0.0901,-0.0059,0.0611,-0.0834,0,0.0557,-0.0901,-0.0096,0.0515,-0.0893,0,0.0557,-0.0901
,0.0096,-0.0515,0.0893,0.0059,-0.0611,0.0834,0,-0.0557,0.0901,-0.0059,-0.0611,0.0834,0,-0.0557,0.0901,-0.0096,-0.0515,0.0893,0,-0.0557,0.0901,0,-0.0456,0.093,0,-0.0557,0.0901,-0.0096,-0.0515,-0.0893,-0.0059,-0.0611,-0.0834,0,-0.0557,-0.0901,0.0059,-0.0611,-0.0834,0,-0.0557,-0.0901,0.0096,-0.0515,-0.0893,0,-0.0557,-0.0901,0,-0.0456,-0.093
,0,-0.0557,-0.0901,0,0.0456,-0.093,0,-0.0456,-0.093,0.093,0,0.0456,0.093,0,-0.0456,-0.093,0,0.0456,-0.093,0,-0.0456,0.0611,0.0834,0.0059,0.0893,-0.0096,0.0515,0.0611,-0.0834,0.0059,-0.0893,0.0096,0.0515,-0.0611,0.0834,0.0059,-0.0611,-0.0834,0.0059,0.0096,0.0515,0.0893,0.0096,0.0515,-0.0893,0.0096,-0.0515,0.0893,0.0834,-0.0059,-0.0611
,0.0096,-0.0515,-0.0893,0.0893,0.0096,-0.0515,0.0611,0.0834,-0.0059,0.0893,-0.0096,-0.0515,0.0611,-0.0834,-0.0059,-0.0096,0.0515,0.0893,-0.0611,0.0834,-0.0059,-0.0096,-0.0515,0.0893,-0.0893,-0.0096,-0.0515,-0.0611,-0.0834,-0.0059,0.0456,0.093,0,-0.0456,0.093,0,-0.0834,0.0059,-0.0611,-0.0096,0.0515,-0.0893,0.0515,0.0893,0.0096,0.0059,0.0611,0.0834,0.0456,-0.093,0
,-0.0456,-0.093,0,0.0059,0.0611,-0.0834,-0.0834,-0.0059,-0.0611,-0.0096,-0.0515,-0.0893,-0.0515,0.0893,0.0096,-0.0059,0.0611,0.0834,0.0515,-0.0893,0.0096,0.0059,-0.0611,0.0834,-0.0515,0.0893,-0.0096,-0.0059,0.0611,-0.0834,0.0059,-0.0611,-0.0834,-0.0515,-0.0893,0.0096,-0.0059,-0.0611,0.0834,-0.0059,-0.0611,-0.0834,0,0.0456,0.093,0,-0.0456,0.093]
,"normals":[0.505,0,0.863,0.275,-0.142,0.951,0.275,0.142,0.951,0.676,0.445,0.588,0.445,0.588,0.676,0.588,0.676,0.445,-0.676,0.445,-0.588,-0.445,0.588,-0.676,-0.588,0.676,-0.445,0.676,0.445,-0.588,0.588,0.676,-0.445,0.445,0.588,-0.676,0.505,0,-0.863,0.275,0.142,-0.951,0.275,-0.142,-0.951,-0.863,0.505,0,-0.951,0.275,0.142
,-0.951,0.275,-0.142,-0.505,0,-0.863,-0.275,-0.142,-0.951,-0.275,0.142,-0.951,0,0.863,-0.505,0.142,0.951,-0.275,-0.142,0.951,-0.275,-0.863,-0.505,0,-0.951,-0.275,-0.142,-0.951,-0.275,0.142,-0.676,-0.445,0.588,-0.445,-0.588,0.676,-0.588,-0.676,0.445,0.676,-0.445,-0.588,0.445,-0.588,-0.676,0.588,-0.676,-0.445,-0.676,-0.445,-0.588
,-0.588,-0.676,-0.445,-0.445,-0.588,-0.676,0.676,-0.445,0.588,0.588,-0.676,0.445,0.445,-0.588,0.676,0.863,0.505,0,0.951,0.275,-0.142,0.951,0.275,0.142,-0.676,0.445,0.588,-0.588,0.676,0.445,-0.445,0.588,0.676,-0.505,0,0.863,-0.275,0.142,0.951,-0.275,-0.142,0.951,0,-0.863,-0.505,-0.142,-0.951,-0.275,0.142,-0.951,-0.275
,0,0.863,0.505,-0.142,0.951,0.275,0.142,0.951,0.275,0,-0.863,0.505,0.142,-0.951,0.275,-0.142,-0.951,0.275,0.951,-0.275,0.142,0.851,0,0.526,0.991,0,0.137,0.851,0,0.526,0.844,-0.384,0.375,0.851,0,0.526,0.606,-0.237,0.759,0.851,0,0.526,0.606,0.237,0.759,0.851,0,0.526,0.844,0.384,0.375
,-0.851,0,0.526,-0.844,-0.384,0.375,-0.851,0,0.526,-0.991,0,0.137,-0.851,0,0.526,-0.844,0.384,0.375,-0.851,0,0.526,-0.606,0.237,0.759,-0.851,0,0.526,-0.606,-0.237,0.759,0.951,-0.275,-0.142,0.851,0,-0.526,0.844,-0.384,-0.375,0.851,0,-0.526,0.991,0,-0.137,0.851,0,-0.526,0.844,0.384,-0.375
,0.851,0,-0.526,0.606,0.237,-0.759,0.851,0,-0.526,0.606,-0.237,-0.759,-0.851,0,-0.526,-0.991,0,-0.137,-0.851,0,-0.526,-0.844,-0.384,-0.375,-0.851,0,-0.526,-0.606,-0.237,-0.759,-0.851,0,-0.526,-0.606,0.237,-0.759,-0.851,0,-0.526,-0.844,0.384,-0.375,0.526,0.851,0,0.759,0.606,0.237,0.526,0.851,0
,0.375,0.844,0.384,0.526,0.851,0,0.137,0.991,0,0.526,0.851,0,0.375,0.844,-0.384,0.526,0.851,0,0.759,0.606,-0.237,0.526,-0.851,0,0.375,-0.844,0.384,0.863,-0.505,0,0.526,-0.851,0,0.759,-0.606,0.237,0.526,-0.851,0,0.759,-0.606,-0.237,0.526,-0.851,0,0.375,-0.844,-0.384,0.526,-0.851,0
,0.137,-0.991,0,-0.526,0.851,0,-0.375,0.844,0.384,-0.526,0.851,0,-0.759,0.606,0.237,-0.526,0.851,0,-0.759,0.606,-0.237,-0.526,0.851,0,-0.375,0.844,-0.384,-0.526,0.851,0,-0.137,0.991,0,-0.526,-0.851,0,-0.759,-0.606,0.237,-0.526,-0.851,0,-0.375,-0.844,0.384,-0.526,-0.851,0,-0.137,-0.991,0
,-0.526,-0.851,0,-0.375,-0.844,-0.384,-0.526,-0.851,0,-0.759,-0.606,-0.237,0,0.526,0.851,0.384,0.375,0.844,0,0.526,0.851,0,0.137,0.991,0,0.526,0.851,-0.384,0.375,0.844,0,0.526,0.851,-0.237,0.759,0.606,0,0.526,0.851,0.237,0.759,0.606,0,0.526,-0.851,-0.384,0.375,-0.844,0,0.526,-0.851
,0,0.137,-0.991,0,0.526,-0.851,0.384,0.375,-0.844,0,0.526,-0.851,0.237,0.759,-0.606,0,0.526,-0.851,-0.237,0.759,-0.606,0,-0.526,0.851,0,-0.137,0.991,0,-0.526,0.851,0.384,-0.375,0.844,0,-0.526,0.851,0.237,-0.759,0.606,0,-0.526,0.851,-0.237,-0.759,0.606,0,-0.526,0.851,-0.384,-0.375,0.844
,0,-0.526,-0.851,0,-0.137,-0.991,0,-0.526,-0.851,-0.384,-0.375,-0.844,0,-0.526,-0.851,-0.237,-0.759,-0.606,0,-0.526,-0.851,0.237,-0.759,-0.606,0,-0.526,-0.851,0.384,-0.375,-0.844,0,0.137,-0.991,0,-0.137,-0.991,0.991,0,0.137,0.991,0,-0.137,-0.991,0,0.137,-0.991,0,-0.137,0.844,0.384,0.375
,0.844,-0.384,0.375,-0.844,0.384,0.375,-0.759,0.606,0.237,-0.844,-0.384,0.375,0.606,0.237,0.759,0.384,0.375,0.844,0.606,0.237,-0.759,0.606,-0.237,0.759,0.384,-0.375,0.844,0.606,-0.237,-0.759,0.384,-0.375,-0.844,0.844,0.384,-0.375,0.759,0.606,-0.237,0.844,-0.384,-0.375,0.759,-0.606,-0.237,-0.606,0.237,0.759,-0.384,0.375,0.844
,-0.844,0.384,-0.375,-0.759,0.606,-0.237,-0.606,-0.237,0.759,-0.384,-0.375,0.844,-0.844,-0.384,-0.375,0.137,0.991,0,-0.137,0.991,0,-0.606,0.237,-0.759,0.375,0.844,0.384,0.237,0.759,0.606,0.137,-0.991,0,-0.137,-0.991,0,0.375,0.844,-0.384,0.237,0.759,-0.606,-0.606,-0.237,-0.759,-0.375,0.844,0.384,-0.237,0.759,0.606
,0.375,-0.844,0.384,0.237,-0.759,0.606,-0.375,0.844,-0.384,-0.237,0.759,-0.606,0.375,-0.844,-0.384,0.237,-0.759,-0.606,-0.375,-0.844,0.384,-0.237,-0.759,0.606,-0.375,-0.844,-0.384,-0.237,-0.759,-0.606,0,0.137,0.991,0,-0.137,0.991,0.844,-0.384,0.375,0.606,-0.237,0.759,0.851,0,0.526,0.606,0.237,0.759,0.851,0,0.526
,0.844,0.384,0.375,0.851,0,0.526,0.991,0,0.137,0.851,0,0.526,-0.991,0,0.137,-0.844,0.384,0.375,-0.851,0,0.526,-0.606,0.237,0.759,-0.851,0,0.526,-0.606,-0.237,0.759,-0.851,0,0.526,-0.844,-0.384,0.375,-0.851,0,0.526,0.991,0,-0.137,0.844,0.384,-0.375,0.851,0,-0.526,0.606,0.237,-0.759
,0.851,0,-0.526,0.606,-0.237,-0.759,0.851,0,-0.526,0.844,-0.384,-0.375,0.851,0,-0.526,-0.844,-0.384,-0.375,-0.606,-0.237,-0.759,-0.851,0,-0.526,-0.606,0.237,-0.759,-0.851,0,-0.526,-0.844,0.384,-0.375,-0.851,0,-0.526,-0.991,0,-0.137,-0.851,0,-0.526,0.375,0.844,0.384,0.137,0.991,0,0.526,0.851,0
,0.375,0.844,-0.384,0.526,0.851,0,0.759,0.606,-0.237,0.526,0.851,0,0.759,0.606,0.237,0.526,0.851,0,0.759,-0.606,0.237,0.759,-0.606,-0.237,0.526,-0.851,0,0.375,-0.844,-0.384,0.526,-0.851,0,0.137,-0.991,0,0.526,-0.851,0,0.375,-0.844,0.384,0.526,-0.851,0,-0.759,0.606,0.237,-0.759,0.606,-0.237
,-0.526,0.851,0,-0.375,0.844,-0.384,-0.526,0.851,0,-0.137,0.991,0,-0.526,0.851,0,-0.375,0.844,0.384,-0.526,0.851,0,-0.375,-0.844,0.384,-0.137,-0.991,0,-0.526,-0.851,0,-0.375,-0.844,-0.384,-0.526,-0.851,0,-0.759,-0.606,-0.237,-0.526,-0.851,0,-0.759,-0.606,0.237,-0.526,-0.851,0,0,0.137,0.991
,-0.384,0.375,0.844,0,0.526,0.851,-0.237,0.759,0.606,0,0.526,0.851,0.237,0.759,0.606,0,0.526,0.851,0.384,0.375,0.844,0,0.526,0.851,0,0.137,-0.991,0.384,0.375,-0.844,0,0.526,-0.851,0.237,0.759,-0.606,0,0.526,-0.851,-0.237,0.759,-0.606,0,0.526,-0.851,-0.384,0.375,-0.844,0,0.526,-0.851
,0.384,-0.375,0.844,0.237,-0.759,0.606,0,-0.526,0.851,-0.237,-0.759,0.606,0,-0.526,0.851,-0.384,-0.375,0.844,0,-0.526,0.851,0,-0.137,0.991,0,-0.526,0.851,-0.384,-0.375,-0.844,-0.237,-0.759,-0.606,0,-0.526,-0.851,0.237,-0.759,-0.606,0,-0.526,-0.851,0.384,-0.375,-0.844,0,-0.526,-0.851,0,-0.137,-0.991
,0,-0.526,-0.851,0,0.137,-0.991,0,-0.137,-0.991,0.991,0,0.137,0.991,0,-0.137,-0.991,0,0.137,-0.991,0,-0.137,0.759,0.606,0.237,0.844,-0.384,0.375,0.759,-0.606,0.237,-0.844,0.384,0.375,-0.759,0.606,0.237,-0.759,-0.606,0.237,0.384,0.375,0.844,0.384,0.375,-0.844,0.384,-0.375,0.844,0.606,-0.237,-0.759
,0.384,-0.375,-0.844,0.844,0.384,-0.375,0.759,0.606,-0.237,0.844,-0.384,-0.375,0.759,-0.606,-0.237,-0.384,0.375,0.844,-0.759,0.606,-0.237,-0.384,-0.375,0.844,-0.844,-0.384,-0.375,-0.759,-0.606,-0.237,0.137,0.991,0,-0.137,0.991,0,-0.606,0.237,-0.759,-0.384,0.375,-0.844,0.375,0.844,0.384,0.237,0.759,0.606,0.137,-0.991,0
,-0.137,-0.991,0,0.237,0.759,-0.606,-0.606,-0.237,-0.759,-0.384,-0.375,-0.844,-0.375,0.844,0.384,-0.237,0.759,0.606,0.375,-0.844,0.384,0.237,-0.759,0.606,-0.375,0.844,-0.384,-0.237,0.759,-0.606,0.237,-0.759,-0.606,-0.375,-0.844,0.384,-0.237,-0.759,0.606,-0.237,-0.759,-0.606,0,0.137,0.991,0,-0.137,0.991]
,"tangents":[0.745,0.504,-0.437,1,0.856,0.486,-0.175,1,0.808,0.501,-0.309,1,-0.216,0.882,-0.42,1,-0.311,0.809,-0.499,1,-0.395,0.72,-0.57,1,0.5,-0.309,-0.809,1,0.57,-0.395,-0.72,1,0.42,-0.216,-0.882,1,0.721,-0.566,0.4,1,0.809,-0.498,0.312,1,0.882,-0.416,0.22,1,-0.745,-0.504
,-0.437,1,-0.81,-0.499,-0.309,1,-0.856,-0.486,-0.175,1,-0.437,-0.745,-0.504,1,-0.309,-0.81,-0.498,1,-0.175,-0.856,-0.486,1,-0.745,0.504,0.437,1,-0.856,0.486,0.175,1,-0.808,0.502,0.309,1,-0.504,-0.437,-0.745,1,-0.486,-0.175,-0.856,1,-0.502,-0.309,-0.808,1,-0.436,0.744,-0.506,1
,-0.175,0.855,-0.488,1,-0.309,0.807,-0.503,1,-0.498,-0.313,-0.809,1,-0.568,-0.398,-0.721,1,-0.417,-0.219,-0.882,1,-0.216,-0.882,0.42,1,-0.31,-0.809,0.499,1,-0.395,-0.72,0.57,1,-0.72,0.569,0.397,1,-0.809,0.499,0.31,1,-0.882,0.418,0.218,1,-0.211,-0.88,-0.424,1,-0.391,-0.719
,-0.575,1,-0.302,-0.809,-0.504,1,0.437,-0.745,0.504,1,0.309,-0.81,0.498,1,0.175,-0.856,0.486,1,0.498,-0.312,0.809,1,0.416,-0.22,0.882,1,0.567,-0.399,0.721,1,0.005,-1,0.003,1,-0.037,-0.99,0.137,1,0.045,-0.99,-0.135,1,0.504,0.437,-0.745,1,0.486,0.175,-0.856,1
,0.502,0.309,-0.808,1,-0.52,0.432,-0.737,1,-0.502,0.17,-0.848,1,-0.517,0.308,-0.798,1,-1,0.005,0.008,1,-0.99,-0.133,0.052,1,-0.99,0.139,-0.03,1,0.175,0.857,0.485,1,-0.204,0.922,0.33,1,-0.063,0.89,0.452,1,0.123,-0.972,-0.199,1,-0.21,-0.879,-0.428,1,0.45,0.517
,-0.728,1,0.744,0.507,-0.436,1,0.119,0.974,-0.193,1,-0.06,0.965,-0.254,1,-0.204,-0.921,0.33,1,0.176,-0.858,0.483,1,-0.311,0.807,-0.503,1,-0.526,0.729,-0.438,1,-0.308,-0.81,-0.499,1,-0.074,-0.841,-0.536,1,0.5,-0.312,0.808,1,0.313,-0.215,0.925,1,0.003,-1,0.005,1
,-0.133,-0.971,0.197,1,-0.499,-0.314,-0.808,1,-0.655,-0.393,-0.646,1,0.309,0.808,0.501,1,0.309,0.809,0.5,1,0.526,0.731,0.435,1,0.308,-0.81,0.499,1,0.074,-0.841,0.536,1,0.4,-0.65,0.646,1,0.534,-0.669,0.517,1,-0.45,-0.517,-0.728,1,-0.611,-0.472,-0.636,1,0.119,-0.974
,0.193,1,-0.06,-0.965,0.254,1,0.206,0.92,-0.333,1,0.063,0.888,-0.455,1,-0.398,0.653,0.644,1,-0.534,0.673,0.512,1,-0.45,0.517,0.728,1,-0.744,0.507,0.436,1,0.5,-0.31,-0.809,1,0.656,-0.39,-0.646,1,0.204,-0.921,-0.33,1,-0.176,-0.858,-0.483,1,-0.643,0.398,-0.654,1
,-0.398,0.721,-0.568,1,-0.513,0.317,-0.798,1,-0.45,0.528,-0.72,1,-0.331,0.204,-0.921,1,-0.453,0.063,-0.889,1,0.808,-0.499,0.313,1,0.925,-0.313,0.216,1,0.728,-0.45,0.517,1,0.635,-0.61,0.473,1,-0.639,-0.395,-0.66,1,-0.507,-0.533,-0.677,1,0.437,0.746,0.503,1,0.728,0.45
,0.516,1,0.436,0.744,0.506,1,-0.643,-0.398,0.654,1,-0.398,-0.72,0.568,1,0.501,0.31,-0.808,1,0.435,0.526,-0.731,1,-0.847,-0.523,0.096,1,-0.989,-0.137,0.049,1,0.19,0.117,0.975,1,0.418,-0.216,0.882,1,-0.728,-0.45,-0.517,1,-0.635,-0.61,-0.473,1,0.193,0.119,-0.974,1
,0.252,-0.062,-0.966,1,-0.501,-0.31,-0.808,1,-0.435,-0.526,-0.731,1,-0.345,-0.213,-0.914,1,-0.47,-0.065,-0.88,1,-0.19,0.118,-0.975,1,-0.25,-0.065,-0.966,1,-0.848,0.524,-0.073,1,-0.926,0.36,-0.113,1,0.331,-0.204,-0.921,1,0.453,-0.063,-0.889,1,-0.809,0.5,0.309,1,-0.925,0.314
,0.213,1,-0.727,0.449,-0.519,1,-0.435,0.743,-0.509,1,0.808,0.501,-0.31,1,0.731,0.436,-0.526,1,-0.08,-0.848,0.524,1,-0.033,-0.99,0.137,1,0.651,-0.646,0.399,1,0.671,-0.514,0.534,1,-0.533,0.72,-0.445,1,-0.522,0.427,-0.738,1,-0.31,0.809,-0.5,1,-0.39,0.646,-0.656,1
,-0.808,0.501,0.31,1,-0.731,0.435,0.526,1,-0.81,-0.499,-0.308,1,-0.841,-0.536,-0.074,1,0.975,-0.189,-0.117,1,0.883,-0.418,0.216,1,-0.517,-0.728,-0.45,1,-0.507,-0.436,-0.744,1,0.654,-0.643,-0.398,1,0.568,-0.398,-0.72,1,0.921,0.331,0.204,1,0.889,0.453,0.063,1,-0.301,-0.811
,-0.501,1,-0.204,-0.926,-0.318,1,-1,0.008,0.005,1,-0.971,-0.188,0.145,1,-0.651,-0.645,-0.399,1,-0.565,-0.4,-0.722,1,0.089,-0.847,-0.524,1,0.129,-0.927,-0.353,1,-0.921,0.331,-0.204,1,-0.889,0.453,-0.063,1,-0.974,0.192,-0.118,1,-0.882,0.42,0.215,1,0.517,0.728,-0.45,1
,0.507,0.436,-0.744,1,-0.31,-0.809,0.5,1,-0.39,-0.646,0.656,1,-0.921,-0.33,0.204,1,-0.858,-0.483,-0.176,1,-0.84,0.538,0.075,1,-0.887,-0.457,0.063,1,-0.063,-0.887,0.457,1,0.074,0.84,0.537,1,-0.075,0.838,-0.54,1,0.063,-0.887,-0.457,1,-0.214,0.881,-0.421,1,0.176,0.858
,0.483,1,-0.526,-0.732,-0.433,1,0.248,-0.067,0.966,1,-0.312,-0.216,-0.925,1,0.611,0.471,-0.636,1,-0.213,0.925,-0.314,1,0.722,-0.565,0.4,1,-0.057,-0.965,-0.257,1,0.857,0.484,-0.175,1,-0.744,-0.506,-0.437,1,-0.213,-0.925,0.314,1,0.526,-0.732,0.433,1,0.646,-0.655,0.392,1
,-0.214,-0.881,0.421,1,0.636,0.613,0.469,1,0.655,-0.391,0.646,1,-0.123,-0.927,0.355,1,0.314,-0.213,-0.925,1,-0.437,-0.744,-0.506,1,0.142,-0.971,-0.19,1,-0.673,-0.512,-0.534,1,-0.174,0.856,-0.486,1,-0.553,0.077,-0.83,1,-0.538,-0.075,-0.84,1,-0.612,0.47,0.636,1,-0.509,0.534
,-0.676,1,-0.486,0.633,-0.603,1,0.538,0.075,-0.84,1,-0.99,0.137,-0.028,1,-0.484,-0.175,-0.857,1,0.966,-0.248,0.068,1,-0.721,0.567,0.398,1,-0.499,0.166,-0.851,1,0.566,-0.4,0.721,1,-0.927,-0.349,0.138,1,-0.381,-0.647,-0.661,1,0.421,-0.214,-0.881,1,-0.47,-0.636,-0.612,1
,-0.51,-0.534,0.674,1,0.47,0.636,-0.612,1,-0.418,-0.216,-0.882,1,-0.971,0.2,-0.13,1,0.484,0.175,-0.857,1,-0.966,0.25,0.066,1,0.84,0.538,-0.075,1,0.044,-0.99,-0.137,1,0.176,0.858,0.483,1,-0.057,-0.965,-0.257,1,0.123,-0.972,-0.199,1,0.611,0.471,-0.636,1,0.45,0.517
,-0.728,1,-0.214,0.881,-0.421,1,0.119,0.974,-0.193,1,-0.063,-0.887,0.457,1,-0.204,-0.921,0.33,1,-0.075,0.838,-0.54,1,-0.526,-0.732,-0.433,1,-0.308,-0.81,-0.499,1,0.655,-0.391,0.646,1,0.5,-0.312,0.808,1,0.142,-0.971,-0.19,1,0.003,-1,0.005,1,-0.312,-0.216,-0.925,1
,-0.499,-0.314,-0.808,1,0.074,0.84,0.537,1,0.526,-0.732,0.433,1,0.308,-0.81,0.499,1,0.722,-0.565,0.4,1,0.4,-0.65,0.646,1,-0.744,-0.506,-0.437,1,-0.45,-0.517,-0.728,1,-0.214,-0.881,0.421,1,0.119,-0.974,0.193,1,-0.174,0.856,-0.486,1,-0.721,0.567,0.398,1,-0.398,0.653
,0.644,1,-0.612,0.47,0.636,1,-0.45,0.517,0.728,1,0.314,-0.213,-0.925,1,0.5,-0.31,-0.809,1,0.063,-0.887,-0.457,1,0.204,-0.921,-0.33,1,-0.509,0.534,-0.676,1,-0.553,0.077,-0.83,1,-0.513,0.317,-0.798,1,-0.484,-0.175,-0.857,1,-0.331,0.204,-0.921,1,0.646,-0.655,0.392,1
,0.808,-0.499,0.313,1,0.436,-0.744,0.506,1,0.728,-0.45,0.517,1,-0.394,-0.718,-0.574,1,0.636,0.613,0.469,1,0.728,0.45,0.516,1,-0.51,-0.534,0.674,1,-0.643,-0.398,0.654,1,0.538,0.075,-0.84,1,0.501,0.31,-0.808,1,-0.927,-0.349,0.138,1,-0.847,-0.523,0.096,1,0.248,-0.067
,0.966,1,-0.437,-0.744,-0.506,1,-0.728,-0.45,-0.517,1,0.421,-0.214,-0.881,1,0.193,0.119,-0.974,1,-0.538,-0.075,-0.84,1,-0.501,-0.31,-0.808,1,-0.499,0.166,-0.851,1,-0.345,-0.213,-0.914,1,-0.418,-0.216,-0.882,1,-0.99,0.137,-0.028,1,-0.848,0.524,-0.073,1,0.484,0.175,-0.857,1
,0.331,-0.204,-0.921,1,-0.646,0.657,0.389,1,-0.809,0.5,0.309,1,-0.635,0.61,-0.473,1,-0.727,0.449,-0.519,1,0.84,0.538,-0.075,1,-0.123,-0.927,0.355,1,-0.08,-0.848,0.524,1,0.566,-0.4,0.721,1,0.651,-0.646,0.399,1,-0.486,0.633,-0.603,1,-0.533,0.72,-0.445,1,-0.213,0.925
,-0.314,1,-0.31,0.809,-0.5,1,-0.84,0.538,0.075,1,-0.732,-0.433,-0.526,1,-0.81,-0.499,-0.308,1,0.966,-0.248,0.068,1,0.975,-0.189,-0.117,1,-0.47,-0.636,-0.612,1,-0.517,-0.728,-0.45,1,0.674,-0.51,-0.534,1,0.654,-0.643,-0.398,1,0.857,0.484,-0.175,1,-0.381,-0.647,-0.661,1
,-0.301,-0.811,-0.501,1,-0.971,0.2,-0.13,1,-1,0.008,0.005,1,-0.673,-0.512,-0.534,1,-0.651,-0.645,-0.399,1,0.044,-0.99,-0.137,1,0.089,-0.847,-0.524,1,-0.857,0.484,0.175,1,-0.966,0.25,0.066,1,-0.974,0.192,-0.118,1,0.47,0.636,-0.612,1,0.517,0.728,-0.45,1,-0.213,-0.925
,0.314,1,-0.31,-0.809,0.5,1,-0.887,-0.457,0.063,1,-0.921,-0.33,0.204,1,-0.84,0.538,0.075,1,-0.887,-0.457,0.063,1,-0.063,-0.887,0.457,1,0.074,0.84,0.537,1,-0.075,0.838,-0.54,1,0.063,-0.887,-0.457,1,0.436,-0.744,0.506,1,0.176,0.858,0.483,1,-0.394,-0.718,-0.574,1
,-0.526,-0.732,-0.433,1,0.248,-0.067,0.966,1,-0.635,0.61,-0.473,1,-0.213,0.925,-0.314,1,-0.732,-0.433,-0.526,1,0.857,0.484,-0.175,1,-0.744,-0.506,-0.437,1,-0.213,-0.925,0.314,1,0.526,-0.732,0.433,1,0.646,-0.655,0.392,1,-0.214,-0.881,0.421,1,0.636,0.613,0.469,1,-0.123,-0.927
,0.355,1,-0.437,-0.744,-0.506,1,-0.673,-0.512,-0.534,1,-0.174,0.856,-0.486,1,-0.646,0.657,0.389,1,-0.553,0.077,-0.83,1,-0.538,-0.075,-0.84,1,-0.612,0.47,0.636,1,0.674,-0.51,-0.534,1,-0.509,0.534,-0.676,1,-0.486,0.633,-0.603,1,0.538,0.075,-0.84,1,-0.99,0.137,-0.028,1
,0.966,-0.248,0.068,1,-0.721,0.567,0.398,1,-0.857,0.484,0.175,1,-0.499,0.166,-0.851,1,0.566,-0.4,0.721,1,-0.927,-0.349,0.138,1,-0.381,-0.647,-0.661,1,0.421,-0.214,-0.881,1,-0.47,-0.636,-0.612,1,0.47,0.636,-0.612,1,-0.418,-0.216,-0.882,1,-0.971,0.2,-0.13,1,-0.966,0.25
,0.066,1,0.84,0.538,-0.075,1,0.044,-0.99,-0.137,1]
,"uvs":[0.37,0.422,0.26,0.422,0.315,0.327,0.334,0.55,0.39,0.455,0.445,0.55,0.677,0.026,0.732,0.121,0.621,0.121,0.73,0.142,0.676,0.238,0.62,0.143,0.114,0.421,0.169,0.326,0.224,0.421,0.549,0.25,0.604,0.154,0.659,0.25,0.518,0.423,0.408,0.423,0.463,0.327,0.297,0.549,0.187,0.549,0.242,0.454,0.113,0.443
,0.224,0.443,0.168,0.538,0.241,0.411,0.186,0.315,0.297,0.316,0.768,0.121,0.823,0.025,0.878,0.121,0.805,0.015,0.75,0.11,0.695,0.015,0.335,0.316,0.445,0.317,0.389,0.412,0.474,0.121,0.529,0.026,0.584,0.121,0.602,0.111,0.547,0.016,0.657,0.015,0.315,0.539,0.261,0.444,0.371,0.444,0.803,0.248,0.693,0.248
,0.748,0.152,0.768,0.141,0.878,0.144,0.821,0.238,0.464,0.54,0.408,0.446,0.518,0.444,0.586,0.144,0.599,0.137,0.594,0.148,0.322,0.308,0.335,0.308,0.383,0.43,0.371,0.431,0.321,0.557,0.327,0.546,0.597,0.129,0.585,0.13,0.168,0.553,0.161,0.543,0.604,0.139,0.611,0.15,0.602,0.126,0.595,0.115,0.315,0.554
,0.308,0.544,0.241,0.426,0.234,0.415,0.531,0.24,0.531,0.255,0.524,0.244,0.529,0.011,0.537,0.021,0.743,0.135,0.738,0.146,0.101,0.429,0.106,0.417,0.755,0.128,0.761,0.117,0.237,0.436,0.231,0.447,0.818,0.007,0.813,0.019,0.531,0.43,0.518,0.431,0.677,0.01,0.684,0.021,0.672,0.257,0.659,0.258,0.458,0.558
,0.445,0.559,0.821,0.253,0.814,0.242,0.174,0.557,0.18,0.545,0.676,0.253,0.669,0.242,0.461,0.129,0.467,0.117,0.458,0.309,0.453,0.321,0.476,0.144,0.463,0.137,0.476,0.136,0.891,0.128,0.879,0.129,0.748,0.137,0.755,0.148,0.395,0.438,0.408,0.437,0.533,0.008,0.546,0.007,0.535,0.257,0.541,0.246,0.608,0.128
,0.614,0.117,0.242,0.439,0.249,0.449,0.891,0.136,0.886,0.148,0.31,0.308,0.304,0.32,0.531,0.437,0.526,0.448,0.68,0.255,0.685,0.244,0.75,0.125,0.743,0.115,0.1,0.435,0.113,0.434,0.315,0.312,0.323,0.322,0.248,0.436,0.26,0.435,0.67,0.008,0.664,0.019,0.755,0.134,0.768,0.133,0.39,0.439,0.397,0.45
,0.463,0.312,0.47,0.323,0.169,0.311,0.176,0.321,0.607,0.135,0.62,0.134,0.31,0.557,0.297,0.558,0.745,0.128,0.732,0.129,0.247,0.43,0.253,0.418,0.389,0.427,0.382,0.416,0.464,0.555,0.457,0.545,0.173,0.308,0.186,0.307,0.384,0.437,0.378,0.448,0.395,0.43,0.4,0.419,0.682,0.008,0.695,0.007,0.816,0.255
,0.803,0.256,0.823,0.01,0.831,0.021,0.237,0.429,0.224,0.43,0.456,0.323,0.231,0.417,0.592,0.117,0.538,0.244,0.176,0.543,0.666,0.246,0.334,0.559,0.586,0.136,0.596,0.15,0.539,0.02,0.248,0.415,0.378,0.418,0.382,0.45,0.731,0.134,0.327,0.32,0.26,0.431,0.113,0.43,0.816,0.021,0.522,0.021,0.683,0.242
,0.768,0.129,0.468,0.148,0.609,0.115,0.253,0.448,0.669,0.021,0.548,0.258,0.323,0.544,0.179,0.319,0.224,0.434,0.828,0.243,0.235,0.449,0.525,0.419,0.452,0.546,0.76,0.145,0.741,0.148,0.518,0.436,0.187,0.558,0.613,0.147,0.805,0.006,0.879,0.135,0.657,0.007,0.401,0.45,0.397,0.416,0.621,0.129,0.305,0.545
,0.886,0.117,0.811,0.244,0.297,0.307,0.472,0.545,0.693,0.256,0.687,0.019,0.308,0.322,0.371,0.436,0.586,0.136,0.327,0.32,0.322,0.308,0.378,0.418,0.383,0.43,0.334,0.559,0.321,0.557,0.592,0.117,0.597,0.129,0.176,0.543,0.596,0.15,0.604,0.139,0.609,0.115,0.602,0.126,0.323,0.544,0.315,0.554,0.248,0.415
,0.241,0.426,0.538,0.244,0.522,0.021,0.529,0.011,0.731,0.134,0.743,0.135,0.113,0.43,0.101,0.429,0.768,0.129,0.755,0.128,0.224,0.434,0.805,0.006,0.818,0.007,0.525,0.419,0.531,0.43,0.669,0.021,0.677,0.01,0.666,0.246,0.672,0.257,0.452,0.546,0.828,0.243,0.821,0.253,0.187,0.558,0.174,0.557,0.683,0.242
,0.676,0.253,0.474,0.13,0.461,0.129,0.446,0.308,0.468,0.148,0.463,0.137,0.886,0.117,0.891,0.128,0.741,0.148,0.748,0.137,0.401,0.45,0.395,0.438,0.539,0.02,0.548,0.258,0.535,0.257,0.621,0.129,0.608,0.128,0.235,0.449,0.242,0.439,0.879,0.135,0.891,0.136,0.297,0.307,0.518,0.436,0.531,0.437,0.693,0.256
,0.68,0.255,0.758,0.115,0.75,0.125,0.106,0.447,0.1,0.435,0.308,0.322,0.253,0.448,0.248,0.436,0.657,0.007,0.67,0.008,0.76,0.145,0.755,0.134,0.382,0.45,0.39,0.439,0.456,0.323,0.162,0.321,0.169,0.311,0.613,0.147,0.607,0.135,0.305,0.545,0.31,0.557,0.739,0.117,0.745,0.128,0.26,0.431,0.397,0.416
,0.389,0.427,0.472,0.545,0.464,0.555,0.179,0.319,0.173,0.308,0.371,0.436,0.384,0.437,0.408,0.431,0.687,0.019,0.682,0.008,0.811,0.244,0.816,0.255,0.816,0.021,0.823,0.01,0.231,0.417,0.237,0.429,0.456,0.323,0.231,0.417,0.592,0.117,0.538,0.244,0.176,0.543,0.666,0.246,0.474,0.13,0.586,0.136,0.446,0.308
,0.596,0.15,0.539,0.02,0.106,0.447,0.382,0.45,0.162,0.321,0.26,0.431,0.113,0.43,0.816,0.021,0.522,0.021,0.683,0.242,0.768,0.129,0.468,0.148,0.253,0.448,0.548,0.258,0.179,0.319,0.224,0.434,0.758,0.115,0.828,0.243,0.235,0.449,0.525,0.419,0.739,0.117,0.452,0.546,0.76,0.145,0.741,0.148,0.518,0.436
,0.613,0.147,0.805,0.006,0.408,0.431,0.879,0.135,0.657,0.007,0.401,0.45,0.397,0.416,0.621,0.129,0.305,0.545,0.811,0.244,0.297,0.307,0.472,0.545,0.687,0.019,0.308,0.322,0.371,0.436]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50
,51,52,53,54,55,56,57,58,59,36,60,61,0,62,63,3,64,65,41,66,67,26,68,69,16,70,71,42,72,73,45,74,75,27,76,77,78,79,80,40,81,82,9,83,84,12,85,86,30,87,88
,25,89,90,33,91,92,18,93,94,6,95,96,17,97,98,5,99,100,53,101,102,22,103,104,10,105,106,39,107,108,37,109,110,111,112,113,32,114,115,50,116,117,55,118,119,43,120,121,15,122,123
,8,124,125,23,126,127,52,128,129,29,130,131,56,132,133,49,134,135,34,136,137,24,138,139,2,140,141,46,142,143,44,144,145,51,146,147,4,148,149,20,150,151,13,152,153,11,154,155,21,156,157
,7,158,159,1,160,161,38,162,163,54,164,165,28,166,167,47,168,169,19,170,171,35,172,173,48,174,175,31,176,177,14,178,179,19,180,20,181,13,153,40,182,41,183,57,59,25,184,26,185,16,71
,3,100,186,67,39,41,111,187,57,61,37,36,15,188,16,189,42,73,27,131,190,69,24,26,0,141,191,192,3,65,9,155,193,86,13,12,36,163,194,195,0,63,14,196,12,197,30,88,39,198,40
,199,9,84,32,200,30,201,78,80,42,145,202,203,45,75,6,125,204,205,17,98,45,169,206,207,27,77,24,208,25,92,34,33,52,209,53,210,22,104,20,211,18,96,7,6,4,212,5,213,53,102
,49,214,50,215,55,119,22,157,216,217,10,106,35,218,33,94,19,18,51,219,52,220,43,121,54,221,55,222,37,110,7,223,8,224,23,127,32,177,225,226,50,117,28,227,29,228,56,133,49,175,229
,230,34,137,1,231,2,232,46,143,111,57,78,57,233,58,36,234,235,0,236,237,3,238,239,41,240,241,26,242,68,16,243,244,42,245,246,45,247,248,27,249,250,78,251,79,40,252,253,9,254,255
,12,256,257,30,258,259,25,260,89,33,261,262,18,263,264,6,265,266,17,267,268,5,269,99,53,270,271,22,272,273,10,274,275,39,276,277,37,278,109,111,279,280,32,281,282,50,283,284,55,285,286
,43,287,120,15,288,289,8,290,291,23,292,293,52,294,295,29,296,130,56,297,298,49,299,300,34,301,302,24,303,304,2,305,140,46,306,307,44,308,309,51,310,311,4,312,313,20,314,150,13,315,316
,11,317,318,21,319,320,7,321,322,1,323,160,38,324,325,54,326,327,28,328,329,47,330,331,19,332,170,35,333,334,48,335,336,31,337,338,14,339,340,19,171,341,342,14,13,40,82,343,344,78,57
,25,90,345,346,17,16,3,5,100,67,347,39,111,113,348,61,349,37,15,123,350,351,43,42,27,29,131,69,352,24,0,2,141,353,4,3,9,11,155,86,354,13,36,38,163,355,1,0,14,179,356
,357,31,30,39,108,358,359,10,9,32,115,360,361,111,78,42,44,145,362,46,45,6,8,125,363,15,17,45,47,169,364,28,27,24,139,365,92,366,34,52,129,367,368,23,22,20,151,369,96,370,7
,4,149,371,372,51,53,49,135,373,374,56,55,22,21,157,375,11,10,35,173,376,94,377,19,51,147,378,379,44,43,54,165,380,381,38,37,7,159,382,383,21,23,32,31,177,384,48,50,28,167,385
,386,54,56,49,48,175,387,35,34,1,161,388,389,47,46]
}
,{"name":"d100","id":"d100","billboardMode":0,"position":[-0.6,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false
,"positions":[-0.0562,-0.0133,0.0652,-0.0838,-0.0133,-0.0197,-0.0838,0.0037,0.0272,-0.0562,0.0133,-0.0652,-0.0838,0.0133,0.0197,-0.0838,-0.0037,-0.0272,0.0072,0.0133,0.0858,0.0794,0.0133,0.0333,0.0518,-0.0037,0.0713,-0.0794,0.0133,0.0333,-0.0072,0.0133,0.0858,-0.0518,-0.0037,0.0713,0.0446,0.0133,-0.0736,-0.0446,0.0133,-0.0736,0,-0.0037,-0.0881,-0.0794,-0.0133,-0.0333,-0.0072,-0.0133,-0.0858
,-0.0518,0.0037,-0.0713,0.0794,-0.0133,-0.0333,0.0072,-0.0133,-0.0858,0.0072,-0.0857,-0.0098,0.0838,-0.0133,-0.0197,0.0562,-0.0133,0.0652,0.0838,0.0037,0.0272,0.0446,-0.0133,0.0736,-0.0446,-0.0133,0.0736,0,0.0037,0.0881,0.0072,0.0857,0.0098,0,0.0915,0,0.0103,0.0868,0.0034,-0.0072,0.0857,0.0098,0,0.0915,0,0,0.0868,0.0109,-0.0116,0.0857,-0.0038
,0,0.0915,0,-0.0103,0.0868,0.0034,0,0.0857,-0.0122,0,0.0915,0,-0.0064,0.0868,-0.0088,0.0116,0.0857,-0.0038,0,0.0915,0,0.0064,0.0868,-0.0088,-0.0116,-0.0857,0.0038,0,-0.0915,0,-0.0103,-0.0868,-0.0034,0,-0.0857,0.0122,0,-0.0915,0,-0.0064,-0.0868,0.0088,0.0116,-0.0857,0.0038,0,-0.0915,0,0.0064,-0.0868,0.0088
,0,-0.0915,0,0.0103,-0.0868,-0.0034,-0.0072,-0.0857,-0.0098,0,-0.0915,0,0,-0.0868,-0.0109,0.0525,-0.0103,0.0722,0.0562,-0.008,0.0687,0.0525,-0.0103,0.0722,0.0511,-0.0148,0.0704,0.0525,-0.0103,0.0722,0.048,-0.008,0.0747,0.0849,0.0103,0.0276,0.0827,0.008,0.0322,0.0838,0.0133,0.0197,0.0849,0.0103,0.0276,0.0827,0.0148,0.0269,0.0849,0.0103,0.0276
,0.0859,0.008,0.0226,0,0.0103,0.0893,0,0.0148,0.087,0,0.0103,0.0893,0.0051,0.008,0.0886,0,0.0103,0.0893,-0.0051,0.008,0.0886,0.0525,0.0103,-0.0722,0.0511,0.0148,-0.0704,0.0518,0.0037,-0.0713,0.0525,0.0103,-0.0722,0.048,0.008,-0.0747,0.0562,0.0133,-0.0652,0.0525,0.0103,-0.0722,0.0562,0.008,-0.0687,0.0849,-0.0103,-0.0276,0.0827,-0.0148,-0.0269
,0.0838,-0.0037,-0.0272,0.0849,-0.0103,-0.0276,0.0859,-0.008,-0.0226,0.0849,-0.0103,-0.0276,0.0827,-0.008,-0.0322,-0.0525,0.0103,-0.0722,-0.0511,0.0148,-0.0704,-0.0525,0.0103,-0.0722,-0.0562,0.008,-0.0687,-0.0525,0.0103,-0.0722,-0.048,0.008,-0.0747,0,-0.0103,-0.0893,0,-0.0148,-0.087,0,-0.0103,-0.0893,0.0051,-0.008,-0.0886,0,-0.0103,-0.0893,-0.0051,-0.008,-0.0886
,-0.0849,-0.0103,-0.0276,-0.0827,-0.008,-0.0322,-0.0849,-0.0103,-0.0276,-0.0859,-0.008,-0.0226,-0.0849,-0.0103,-0.0276,-0.0827,-0.0148,-0.0269,-0.0849,0.0103,0.0276,-0.0859,0.008,0.0226,-0.0849,0.0103,0.0276,-0.0827,0.0148,0.0269,-0.0849,0.0103,0.0276,-0.0827,0.008,0.0322,-0.0525,-0.0103,0.0722,-0.0511,-0.0148,0.0704,-0.0525,-0.0103,0.0722,-0.0562,-0.008,0.0687,-0.0525,-0.0103,0.0722
,-0.048,-0.008,0.0747,-0.0064,-0.0868,0.0088,-0.0511,-0.0148,0.0704,0.0064,-0.0868,0.0088,0.0511,-0.0148,0.0704,0.0103,0.0868,0.0034,0.0827,0.0148,0.0269,0.048,-0.008,0.0747,0.0064,0.0868,-0.0088,0.0511,0.0148,-0.0704,0.0859,0.008,0.0226,0.0562,0.008,-0.0687,0.0827,-0.008,-0.0322,0.048,0.008,-0.0747,-0.0562,0.008,-0.0687,-0.0103,0.0868,0.0034,-0.0827,0.0148,0.0269
,-0.0051,0.008,0.0886,-0.048,-0.008,0.0747,0,0.0868,0.0109,0,0.0148,0.087,0.0562,-0.008,0.0687,0.0827,0.008,0.0322,-0.048,0.008,-0.0747,-0.0051,-0.008,-0.0886,-0.0064,0.0868,-0.0088,-0.0511,0.0148,-0.0704,0.0103,-0.0868,-0.0034,0.0827,-0.0148,-0.0269,-0.0827,0.008,0.0322,0,-0.0868,-0.0109,0,-0.0148,-0.087,-0.0103,-0.0868,-0.0034,-0.0827,-0.0148,-0.0269
,-0.0859,-0.008,-0.0226,-0.0859,0.008,0.0226,0,0.0868,0.0109,-0.0103,0.0868,0.0034,0,0.0915,0,-0.0064,0.0868,-0.0088,0,0.0915,0,0.0064,0.0868,-0.0088,0,0.0915,0,0.0103,0.0868,0.0034,0,0.0915,0,-0.0064,-0.0868,0.0088,0.0064,-0.0868,0.0088,0,-0.0915,0,0.0103,-0.0868,-0.0034,0,-0.0915,0,0,-0.0868,-0.0109
,0,-0.0915,0,-0.0103,-0.0868,-0.0034,0,-0.0915,0,0.0511,-0.0148,0.0704,0.048,-0.008,0.0747,0.0525,-0.0103,0.0722,0.0562,-0.008,0.0687,0.0525,-0.0103,0.0722,0.0827,0.0148,0.0269,0.0859,0.008,0.0226,0.0849,0.0103,0.0276,0.0827,0.008,0.0322,0.0849,0.0103,0.0276,0.0051,0.008,0.0886,-0.0051,0.008,0.0886,0,0.0103,0.0893,0,0.0148,0.087
,0,0.0103,0.0893,0.048,0.008,-0.0747,0.0562,0.008,-0.0687,0.0525,0.0103,-0.0722,0.0511,0.0148,-0.0704,0.0525,0.0103,-0.0722,0.0859,-0.008,-0.0226,0.0827,-0.008,-0.0322,0.0849,-0.0103,-0.0276,0.0827,-0.0148,-0.0269,0.0849,-0.0103,-0.0276,-0.0562,0.008,-0.0687,-0.048,0.008,-0.0747,-0.0525,0.0103,-0.0722,-0.0511,0.0148,-0.0704,-0.0525,0.0103,-0.0722,0.0051,-0.008,-0.0886
,-0.0051,-0.008,-0.0886,0,-0.0103,-0.0893,0,-0.0148,-0.087,0,-0.0103,-0.0893,-0.0859,-0.008,-0.0226,-0.0827,-0.0148,-0.0269,-0.0849,-0.0103,-0.0276,-0.0827,-0.008,-0.0322,-0.0849,-0.0103,-0.0276,-0.0827,0.0148,0.0269,-0.0827,0.008,0.0322,-0.0849,0.0103,0.0276,-0.0859,0.008,0.0226,-0.0849,0.0103,0.0276,-0.0562,-0.008,0.0687,-0.048,-0.008,0.0747,-0.0525,-0.0103,0.0722
,-0.0511,-0.0148,0.0704,-0.0525,-0.0103,0.0722,-0.0511,-0.0148,0.0704,0.0511,-0.0148,0.0704,0.0827,0.0148,0.0269,0.0051,0.008,0.0886,0.0511,0.0148,-0.0704,0.0859,-0.008,-0.0226,0.0562,0.008,-0.0687,0.0827,-0.008,-0.0322,0.0051,-0.008,-0.0886,-0.0827,-0.008,-0.0322,-0.0827,0.0148,0.0269,-0.0051,0.008,0.0886,-0.048,-0.008,0.0747,0,0.0148,0.087,0.0562,-0.008,0.0687
,0.0827,0.008,0.0322,-0.048,0.008,-0.0747,-0.0051,-0.008,-0.0886,-0.0511,0.0148,-0.0704,0.0827,-0.0148,-0.0269,-0.0562,-0.008,0.0687,0,-0.0148,-0.087,-0.0827,-0.0148,-0.0269,-0.0859,-0.008,-0.0226,-0.0859,0.008,0.0226]
,"normals":[-0.739,-0.526,0.42,-0.845,-0.526,0.095,-0.868,-0.41,0.282,-0.739,0.526,-0.42,-0.845,0.526,-0.095,-0.868,0.41,-0.282,0.351,0.526,0.774,0.628,0.526,0.573,0.536,0.41,0.738,-0.628,0.526,0.573,-0.351,0.526,0.774,-0.536,0.41,0.738,0.171,0.526,-0.833,-0.171,0.526,-0.833,0,0.41,-0.912,-0.628,-0.526,-0.573,-0.351,-0.526,-0.774
,-0.536,-0.41,-0.738,0.628,-0.526,-0.573,0.351,-0.526,-0.774,0.361,-0.789,-0.497,0.845,-0.526,0.095,0.739,-0.526,0.42,0.868,-0.41,0.282,0.171,-0.526,0.833,-0.171,-0.526,0.833,0,-0.41,0.912,0.361,0.789,0.497,0,1,0,0.529,0.831,0.172,-0.361,0.789,0.497,0,1,0,0,0.831,0.556,-0.585,0.789,-0.19
,0,1,0,-0.529,0.831,0.172,0,0.789,-0.615,0,1,0,-0.327,0.831,-0.45,0.585,0.789,-0.19,0,1,0,0.327,0.831,-0.45,-0.585,-0.789,0.19,0,-1,0,-0.529,-0.831,-0.172,0,-0.789,0.615,0,-1,0,-0.327,-0.831,0.45,0.585,-0.789,0.19,0,-1,0,0.327,-0.831,0.45
,0,-1,0,0.529,-0.831,-0.172,-0.361,-0.789,-0.497,0,-1,0,0,-0.831,-0.556,0.575,-0.203,0.792,0.766,-0.025,0.643,0.575,-0.203,0.792,0.47,-0.602,0.646,0.575,-0.203,0.792,0.375,-0.025,0.927,0.931,0.203,0.303,0.848,0.025,0.529,0.845,0.526,-0.095,0.931,0.203,0.303,0.76,0.602,0.247,0.931,0.203,0.303
,0.997,0.025,0.07,0,0.203,0.979,0,0.602,0.799,0,0.203,0.979,0.241,0.025,0.97,0,0.203,0.979,-0.241,0.025,0.97,0.575,0.203,-0.792,0.47,0.602,-0.646,0.536,-0.41,-0.738,0.575,0.203,-0.792,0.375,0.025,-0.927,0.739,0.526,-0.42,0.575,0.203,-0.792,0.766,0.025,-0.643,0.931,-0.203,-0.303,0.76,-0.602,-0.247
,0.868,0.41,-0.282,0.931,-0.203,-0.303,0.997,-0.025,-0.07,0.931,-0.203,-0.303,0.848,-0.025,-0.529,-0.575,0.203,-0.792,-0.47,0.602,-0.646,-0.575,0.203,-0.792,-0.766,0.025,-0.643,-0.575,0.203,-0.792,-0.375,0.025,-0.927,0,-0.203,-0.979,0,-0.602,-0.799,0,-0.203,-0.979,0.241,-0.025,-0.97,0,-0.203,-0.979,-0.241,-0.025,-0.97
,-0.931,-0.203,-0.303,-0.848,-0.025,-0.529,-0.931,-0.203,-0.303,-0.997,-0.025,-0.07,-0.931,-0.203,-0.303,-0.76,-0.602,-0.247,-0.931,0.203,0.303,-0.997,0.025,0.07,-0.931,0.203,0.303,-0.76,0.602,0.247,-0.931,0.203,0.303,-0.848,0.025,0.529,-0.575,-0.203,0.792,-0.47,-0.602,0.646,-0.575,-0.203,0.792,-0.766,-0.025,0.643,-0.575,-0.203,0.792
,-0.375,-0.025,0.927,-0.327,-0.831,0.45,-0.47,-0.602,0.646,0.327,-0.831,0.45,0.47,-0.602,0.646,0.529,0.831,0.172,0.76,0.602,0.247,0.375,-0.025,0.927,0.327,0.831,-0.45,0.47,0.602,-0.646,0.997,0.025,0.07,0.766,0.025,-0.643,0.848,-0.025,-0.529,0.375,0.025,-0.927,-0.766,0.025,-0.643,-0.529,0.831,0.172,-0.76,0.602,0.247
,-0.241,0.025,0.97,-0.375,-0.025,0.927,0,0.831,0.556,0,0.602,0.799,0.766,-0.025,0.643,0.848,0.025,0.529,-0.375,0.025,-0.927,-0.241,-0.025,-0.97,-0.327,0.831,-0.45,-0.47,0.602,-0.646,0.529,-0.831,-0.172,0.76,-0.602,-0.247,-0.848,0.025,0.529,0,-0.831,-0.556,0,-0.602,-0.799,-0.529,-0.831,-0.172,-0.76,-0.602,-0.247
,-0.997,-0.025,-0.07,-0.997,0.025,0.07,0,0.831,0.556,-0.529,0.831,0.172,0,1,0,-0.327,0.831,-0.45,0,1,0,0.327,0.831,-0.45,0,1,0,0.529,0.831,0.172,0,1,0,-0.327,-0.831,0.45,0.327,-0.831,0.45,0,-1,0,0.529,-0.831,-0.172,0,-1,0,0,-0.831,-0.556
,0,-1,0,-0.529,-0.831,-0.172,0,-1,0,0.47,-0.602,0.646,0.375,-0.025,0.927,0.575,-0.203,0.792,0.766,-0.025,0.643,0.575,-0.203,0.792,0.76,0.602,0.247,0.997,0.025,0.07,0.931,0.203,0.303,0.848,0.025,0.529,0.931,0.203,0.303,0.241,0.025,0.97,-0.241,0.025,0.97,0,0.203,0.979,0,0.602,0.799
,0,0.203,0.979,0.375,0.025,-0.927,0.766,0.025,-0.643,0.575,0.203,-0.792,0.47,0.602,-0.646,0.575,0.203,-0.792,0.997,-0.025,-0.07,0.848,-0.025,-0.529,0.931,-0.203,-0.303,0.76,-0.602,-0.247,0.931,-0.203,-0.303,-0.766,0.025,-0.643,-0.375,0.025,-0.927,-0.575,0.203,-0.792,-0.47,0.602,-0.646,-0.575,0.203,-0.792,0.241,-0.025,-0.97
,-0.241,-0.025,-0.97,0,-0.203,-0.979,0,-0.602,-0.799,0,-0.203,-0.979,-0.997,-0.025,-0.07,-0.76,-0.602,-0.247,-0.931,-0.203,-0.303,-0.848,-0.025,-0.529,-0.931,-0.203,-0.303,-0.76,0.602,0.247,-0.848,0.025,0.529,-0.931,0.203,0.303,-0.997,0.025,0.07,-0.931,0.203,0.303,-0.766,-0.025,0.643,-0.375,-0.025,0.927,-0.575,-0.203,0.792
,-0.47,-0.602,0.646,-0.575,-0.203,0.792,-0.47,-0.602,0.646,0.47,-0.602,0.646,0.76,0.602,0.247,0.241,0.025,0.97,0.47,0.602,-0.646,0.997,-0.025,-0.07,0.766,0.025,-0.643,0.848,-0.025,-0.529,0.241,-0.025,-0.97,-0.848,-0.025,-0.529,-0.76,0.602,0.247,-0.241,0.025,0.97,-0.375,-0.025,0.927,0,0.602,0.799,0.766,-0.025,0.643
,0.848,0.025,0.529,-0.375,0.025,-0.927,-0.241,-0.025,-0.97,-0.47,0.602,-0.646,0.76,-0.602,-0.247,-0.766,-0.025,0.643,0,-0.602,-0.799,-0.76,-0.602,-0.247,-0.997,-0.025,-0.07,-0.997,0.025,0.07]
,"tangents":[-0.214,0.775,0.594,1,-0.338,0.662,0.669,1,-0.164,0.771,0.616,1,-0.615,-0.273,0.74,1,-0.375,-0.458,0.806,1,-0.445,-0.385,0.809,1,-0.931,0.284,0.229,1,-0.777,0.468,0.421,1,-0.833,0.396,0.386,1,0.501,-0.289,0.815,1,0.636,-0.473,0.61,1,0.62,-0.402,0.674,1,-0.879,0.463
,0.112,1,-0.89,0.279,0.359,1,-0.903,0.391,0.176,1,-0.515,-0.272,0.813,1,-0.651,-0.457,0.606,1,-0.633,-0.384,0.673,1,0.647,0.762,0.009,1,0.76,0.644,-0.093,1,0.837,0.51,-0.2,1,-0.532,-0.807,0.257,1,-0.653,-0.713,0.256,1,-0.486,-0.817,0.31,1,-0.892,0.277,0.358,1
,-0.88,0.461,0.111,1,-0.905,0.389,0.175,1,-0.93,0.27,0.248,1,-0.979,0,0.206,1,-0.829,0.461,0.317,1,0.518,-0.274,0.81,1,0.493,0,0.87,1,0.552,-0.463,0.693,1,-0.6,-0.262,0.756,1,-0.661,0,0.751,1,-0.474,-0.457,0.752,1,-0.901,0.267,0.342,1,-0.915,0
,0.403,1,-0.845,-0.044,0.533,1,0.601,-0.263,0.755,1,0.662,0,0.749,1,0.765,0.047,0.643,1,-0.472,0.521,0.711,1,-0.612,0,0.791,1,-0.647,0.263,0.716,1,-0.902,0.265,0.34,1,-0.916,0,0.401,1,-0.86,0.459,0.223,1,-0.81,-0.552,0.2,1,-0.984,0,0.176,1
,-0.944,-0.313,0.107,1,0.953,0,-0.303,1,0.812,0.554,-0.182,1,-0.535,-0.261,0.803,1,-0.511,0,0.86,1,-0.57,-0.457,0.683,1,-0.632,-0.725,0.273,1,-0.401,-0.8,0.446,1,-0.772,0.183,0.608,1,-0.781,0.059,0.622,1,-0.681,0.416,0.602,1,-0.859,0.367,0.357,1,-0.358,0.662
,0.658,1,-0.446,0.574,0.687,1,0.376,-0.459,0.805,1,-0.101,-0.653,0.75,1,0.222,-0.597,0.771,1,0.032,-0.873,0.488,1,-0.004,-0.925,0.381,1,-0.981,0.191,-0.04,1,-0.997,0.066,-0.05,1,-0.909,0.409,-0.085,1,-0.908,0.359,0.217,1,0.732,-0.668,0.139,1,0.787,-0.579,0.211,1
,-0.68,0.658,-0.325,1,-0.799,0.6,-0.022,1,0.655,0.753,0.058,1,0.366,0.802,0.472,1,0.581,0.773,0.256,1,0.615,-0.274,0.739,1,0.817,-0.18,0.547,1,0.623,-0.278,0.731,1,-0.147,-0.969,0.198,1,-0.552,-0.797,0.243,1,0.445,-0.386,0.808,1,0.201,-0.406,0.891,1,0.05,-0.474
,0.879,1,0.272,0.94,0.205,1,0.234,0.914,0.331,1,-0.817,-0.178,0.548,1,-0.831,-0.055,0.553,1,-0.786,-0.403,0.468,1,-0.608,-0.354,0.711,1,-0.772,0.186,0.608,1,-0.886,0.283,0.366,1,0.763,0.633,-0.132,1,0.819,0.459,-0.346,1,-0.908,0.411,-0.085,1,-0.849,0.48,-0.224,1
,-0.747,-0.651,0.135,1,-0.8,-0.561,0.214,1,-0.201,-0.405,0.892,1,-0.488,-0.355,0.798,1,-0.359,0.657,0.663,1,-0.066,0.737,0.673,1,-0.269,-0.177,0.947,1,-0.27,-0.054,0.961,1,0.102,-0.652,0.752,1,0.044,-0.562,0.826,1,0.263,-0.198,0.944,1,0.256,-0.072,0.964,1,0.331,0.821
,0.465,1,0.271,0.879,0.393,1,0.082,0.949,0.303,1,-0.22,0.789,0.574,1,0.781,-0.422,0.459,1,0.604,-0.373,0.704,1,-0.681,0.655,-0.326,1,-0.769,0.566,-0.296,1,-0.453,0.555,0.698,1,-0.801,0.599,-0.024,1,-0.846,-0.045,0.531,1,-0.834,-0.543,0.1,1,0.476,-0.458,0.751,1
,-0.635,0.604,0.483,1,-0.887,0.281,0.366,1,-0.859,0.459,0.225,1,0.832,-0.056,0.552,1,-0.044,-0.564,0.825,1,0.31,0.861,0.403,1,0.487,-0.356,0.797,1,-0.768,0.569,-0.295,1,-0.623,-0.276,0.732,1,0.36,0.037,0.932,1,-0.221,-0.596,0.772,1,-0.85,0.477,-0.224,1,0.812,-0.491
,0.315,1,-0.997,-0.04,0.06,1,0.65,-0.607,0.457,1,-0.553,0.485,0.678,1,-0.259,-0.852,0.454,1,-0.822,-0.472,0.32,1,-0.907,0.362,0.216,1,-0.764,0.048,0.644,1,-0.78,0.061,0.623,1,-0.807,-0.555,0.202,1,0.621,0.784,0.001,1,0.5,-0.295,0.814,1,0.897,0.246,-0.368,1
,-0.667,-0.595,0.448,1,-0.377,0.049,0.925,1,-0.591,0.481,0.647,1,-0.05,-0.473,0.88,1,0.062,0.794,0.604,1,-0.997,-0.04,0.06,1,0.36,0.037,0.932,1,0.493,0,0.87,1,-0.764,0.048,0.644,1,-0.661,0,0.751,1,-0.859,0.459,0.225,1,-0.915,0,0.403,1,0.476,-0.458
,0.751,1,0.662,0,0.749,1,-0.453,0.555,0.698,1,-0.846,-0.045,0.531,1,-0.916,0,0.401,1,-0.807,-0.555,0.202,1,-0.984,0,0.176,1,0.897,0.246,-0.368,1,0.953,0,-0.303,1,-0.377,0.049,0.925,1,-0.511,0,0.86,1,-0.834,-0.543,0.1,1,-0.887,0.281,0.366,1
,-0.772,0.183,0.608,1,-0.553,0.485,0.678,1,-0.681,0.416,0.602,1,-0.635,0.604,0.483,1,-0.044,-0.564,0.825,1,-0.101,-0.653,0.75,1,-0.259,-0.852,0.454,1,0.032,-0.873,0.488,1,-0.931,0.289,0.224,1,-0.85,0.477,-0.224,1,-0.909,0.409,-0.085,1,0.65,-0.607,0.457,1,0.732,-0.668
,0.139,1,-0.768,0.569,-0.295,1,0.31,0.861,0.403,1,0.366,0.802,0.472,1,0.832,-0.056,0.552,1,0.817,-0.18,0.547,1,-0.005,-0.963,0.271,1,0.487,-0.356,0.797,1,0.201,-0.406,0.891,1,0.621,0.784,0.001,1,0.272,0.94,0.205,1,-0.623,-0.276,0.732,1,-0.822,-0.472,0.32,1
,-0.786,-0.403,0.468,1,-0.78,0.061,0.623,1,-0.772,0.186,0.608,1,0.684,0.714,0.152,1,-0.907,0.362,0.216,1,-0.908,0.411,-0.085,1,-0.667,-0.595,0.448,1,-0.747,-0.651,0.135,1,-0.05,-0.473,0.88,1,-0.591,0.481,0.647,1,-0.359,0.657,0.663,1,-0.503,-0.275,0.819,1,-0.269,-0.177
,0.947,1,-0.221,-0.596,0.772,1,0.5,-0.295,0.814,1,0.263,-0.198,0.944,1,0.062,0.794,0.604,1,0.331,0.821,0.465,1,0.221,0.928,0.299,1,0.812,-0.491,0.315,1,0.781,-0.422,0.459,1,-0.801,0.599,-0.024,1,-0.681,0.655,-0.326,1,-0.801,0.599,-0.024,1,-0.834,-0.543,0.1,1
,-0.635,0.604,0.483,1,-0.931,0.289,0.224,1,0.832,-0.056,0.552,1,-0.005,-0.963,0.271,1,0.31,0.861,0.403,1,0.487,-0.356,0.797,1,0.684,0.714,0.152,1,-0.503,-0.275,0.819,1,-0.221,-0.596,0.772,1,-0.85,0.477,-0.224,1,0.812,-0.491,0.315,1,0.65,-0.607,0.457,1,-0.553,0.485
,0.678,1,-0.259,-0.852,0.454,1,-0.822,-0.472,0.32,1,-0.907,0.362,0.216,1,-0.78,0.061,0.623,1,0.621,0.784,0.001,1,0.221,0.928,0.299,1,-0.667,-0.595,0.448,1,-0.591,0.481,0.647,1,-0.05,-0.473,0.88,1,0.062,0.794,0.604,1]
,"uvs":[0.952,0.236,0.9,0.152,0.947,0.181,0.589,0.749,0.678,0.707,0.645,0.75,0.45,0.572,0.362,0.616,0.395,0.572,0.359,0.752,0.447,0.707,0.414,0.752,0.481,0.706,0.569,0.749,0.514,0.75,0.686,0.572,0.597,0.614,0.631,0.57,0.952,0.029,0.898,0.111,0.839,0.013,0.057,0.773,0.1,0.861,0.056,0.828,0.016,0.935
,0.105,0.892,0.071,0.936,0.452,0.686,0.458,0.699,0.447,0.693,0.356,0.637,0.35,0.624,0.361,0.631,0.589,0.635,0.583,0.622,0.594,0.629,0.57,0.635,0.577,0.622,0.578,0.635,0.476,0.685,0.469,0.699,0.468,0.686,0.838,0.248,0.826,0.256,0.832,0.244,0.016,0.821,0.009,0.808,0.02,0.815,0.171,0.772,0.184,0.766
,0.177,0.777,0.827,0.005,0.84,0.005,0.686,0.686,0.693,0.699,0.682,0.692,0.102,0.871,0.096,0.868,0.009,0.941,0.008,0.935,0.392,0.565,0.398,0.565,0.353,0.618,0.356,0.613,0.565,0.614,0.574,0.616,0.57,0.62,0.049,0.831,0.049,0.825,0.458,0.566,0.459,0.572,0.075,0.943,0.068,0.943,0.456,0.705,0.453,0.71
,0.472,0.704,0.476,0.7,0.946,0.084,0.952,0.088,0.947,0.091,0.476,0.571,0.468,0.566,0.474,0.564,0.051,0.765,0.057,0.764,0.531,0.57,0.534,0.564,0.538,0.569,0.959,0.022,0.96,0.029,0.582,0.755,0.581,0.749,0.628,0.564,0.634,0.564,0.577,0.755,0.571,0.756,0.894,0.12,0.891,0.116,0.511,0.757,0.507,0.752
,0.588,0.617,0.591,0.611,0.648,0.757,0.641,0.757,0.897,0.143,0.903,0.145,0.694,0.566,0.695,0.572,0.688,0.704,0.685,0.71,0.351,0.757,0.351,0.752,0.954,0.177,0.954,0.183,0.958,0.243,0.953,0.244,0.417,0.758,0.411,0.758,0.114,0.89,0.111,0.896,0.839,0.256,0.11,0.886,0.008,0.821,0.106,0.867,0.48,0.692
,0.357,0.622,0.015,0.942,0.566,0.629,0.468,0.571,0.571,0.611,0.953,0.082,0.528,0.564,0.474,0.709,0.588,0.756,0.349,0.637,0.684,0.7,0.078,0.938,0.421,0.753,0.46,0.686,0.452,0.701,0.388,0.57,0.054,0.835,0.624,0.569,0.517,0.757,0.581,0.635,0.578,0.75,0.171,0.764,0.954,0.021,0.358,0.759,0.832,0.017
,0.592,0.621,0.694,0.686,0.893,0.147,0.652,0.752,0.948,0.174,0.46,0.686,0.349,0.637,0.35,0.624,0.581,0.635,0.583,0.622,0.566,0.629,0.577,0.622,0.48,0.692,0.469,0.699,0.839,0.256,0.008,0.821,0.009,0.808,0.171,0.764,0.184,0.766,0.832,0.017,0.827,0.005,0.694,0.686,0.693,0.699,0.106,0.867,0.015,0.942
,0.009,0.941,0.388,0.57,0.392,0.565,0.357,0.622,0.571,0.611,0.574,0.616,0.054,0.835,0.049,0.831,0.452,0.565,0.078,0.938,0.075,0.943,0.452,0.701,0.456,0.705,0.474,0.709,0.953,0.082,0.952,0.088,0.468,0.571,0.468,0.566,0.05,0.771,0.528,0.564,0.534,0.564,0.954,0.021,0.959,0.022,0.588,0.756,0.624,0.569
,0.628,0.564,0.578,0.75,0.577,0.755,0.9,0.118,0.517,0.757,0.511,0.757,0.592,0.621,0.588,0.617,0.652,0.752,0.893,0.147,0.897,0.143,0.688,0.565,0.694,0.566,0.684,0.7,0.358,0.759,0.351,0.757,0.948,0.174,0.954,0.177,0.959,0.236,0.421,0.753,0.417,0.758,0.11,0.886,0.114,0.89,0.11,0.886,0.106,0.867
,0.357,0.622,0.452,0.565,0.468,0.571,0.05,0.771,0.953,0.082,0.528,0.564,0.9,0.118,0.688,0.565,0.684,0.7,0.078,0.938,0.421,0.753,0.452,0.701,0.388,0.57,0.054,0.835,0.624,0.569,0.517,0.757,0.578,0.75,0.954,0.021,0.959,0.236,0.592,0.621,0.893,0.147,0.652,0.752,0.948,0.174]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50
,20,51,52,53,54,55,22,56,57,24,58,59,8,60,61,7,62,63,64,65,66,23,67,68,6,69,70,26,71,72,10,73,74,12,75,76,77,78,79,80,81,82,21,83,84,85,86,87,18,88,89
,3,90,91,17,92,93,13,94,95,19,96,97,14,98,99,16,100,101,5,102,103,1,104,105,15,106,107,4,108,109,9,110,111,2,112,113,0,114,115,11,116,117,25,118,119,42,115,120,121,45,47
,45,59,122,123,48,50,39,66,124,125,27,29,24,72,126,61,6,8,36,76,127,128,39,41,64,87,129,68,21,23,18,130,77,131,80,82,12,99,132,79,19,77,3,103,133,93,15,17,30,111,134
,135,33,35,25,136,26,137,10,74,27,70,138,139,30,32,7,140,8,141,22,57,16,142,17,143,13,95,33,91,144,145,36,38,48,84,146,147,20,52,9,117,148,113,0,2,20,97,149,150,53,55
,53,107,151,152,42,44,4,153,5,154,1,105,64,80,85,0,42,1,3,33,4,6,27,7,9,30,10,12,36,13,15,53,16,18,77,19,21,48,22,24,45,25,27,155,28,30,156,157,33,158,159
,36,160,161,39,162,163,42,164,43,45,165,166,48,167,168,20,169,170,53,171,172,22,173,56,24,174,175,8,176,177,7,178,62,64,179,180,23,181,182,6,183,69,26,184,185,10,186,187,12,188,75
,77,189,190,80,191,192,21,193,83,85,194,195,18,196,197,3,198,90,17,199,200,13,201,202,19,203,96,14,204,205,16,206,207,5,208,102,1,209,210,15,211,212,4,213,108,9,214,215,2,216,217
,0,218,114,11,219,220,25,221,222,42,0,115,223,25,45,45,24,59,224,22,48,39,64,66,225,7,27,24,26,72,61,226,6,36,12,76,227,80,39,64,85,87,68,228,21,18,89,229,230,85,80
,12,14,99,79,231,19,3,5,103,93,232,15,30,9,111,233,4,33,25,119,234,235,11,10,27,6,70,236,10,30,7,63,237,238,23,22,16,101,239,240,14,13,33,3,91,241,13,36,48,21,84
,242,18,20,9,11,117,113,243,0,20,19,97,244,16,53,53,15,107,245,1,42,4,109,246,247,2,1,64,39,80]
}
],
"colliderFaceMap": {
"d4": {
"3": 1,
"0": 2,
"1": 3,
"2": 4
},
"d6": {
"0": 1,
"6": 1,
"4": 2,
"10": 2,
"8": 3,
"2": 3,
"3": 4,
"9": 4,
"7": 5,
"1": 5,
"5": 6,
"11": 6
},
"d8": {
"3": 1,
"7": 2,
"6": 3,
"2": 4,
"1": 5,
"5": 6,
"4": 7,
"0": 8
},
"d10": {
"9": 1,
"19": 1,
"1": 2,
"11": 2,
"7": 3,
"17": 3,
"3": 4,
"13": 4,
"6": 5,
"16": 5,
"2": 6,
"12": 6,
"8": 7,
"18": 7,
"10": 8,
"0": 8,
"5": 9,
"15": 9,
"4": 0,
"14": 0
},
"d12": {
"2": 1,
"16": 1,
"17": 1,
"6": 2,
"24": 2,
"25": 2,
"0": 3,
"12": 3,
"13": 3,
"1": 4,
"14": 4,
"15": 4,
"5": 5,
"22": 5,
"23": 5,
"9": 6,
"30": 6,
"31": 6,
"7": 7,
"26": 7,
"27": 7,
"10": 8,
"32": 8,
"33": 8,
"11": 9,
"34": 9,
"35": 9,
"8": 10,
"28": 10,
"29": 10,
"4": 11,
"20": 11,
"21": 11,
"3": 12,
"18": 12,
"19": 12
},
"d20": {
"19": 1,
"2": 2,
"8": 3,
"3": 4,
"15": 5,
"0": 6,
"14": 7,
"1": 8,
"17": 9,
"9": 10,
"10": 11,
"18": 12,
"6": 13,
"13": 14,
"7": 15,
"12": 16,
"4": 17,
"11": 18,
"5": 19,
"16": 20
},
"d100": {
"3": 10,
"13": 10,
"9": 20,
"19": 20,
"4": 30,
"14": 30,
"1": 40,
"11": 40,
"7": 50,
"17": 50,
"2": 60,
"12": 60,
"8": 70,
"18": 70,
"5": 80,
"15": 80,
"0": 90,
"10": 90,
"6": 0,
"16": 0
}
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 62 KiB

View File

@ -1,18 +0,0 @@
{
"name": "Dice of Rolling",
"systemName": "diceOfRolling",
"author": "Frank Ali",
"version": 0.2,
"meshName": "smoothDice",
"meshFile": "smoothDice.json",
"material": {
"type": "standard",
"diffuseTexture": "diffuse.jpg",
"bumpTexture": "normal.png",
"specularTexture": "specularity.jpg",
"diffuseLevel": 1,
"bumpLevel": 0.6,
"specularPower": 1
},
"diceAvailable": ["d4","d6","d8","d10","d12","d20","d100"]
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.0 KiB

View File

@ -1,636 +0,0 @@
{"producer":{"name":"Blender","version":"2.93.4","exporter_version":"2.93.5","file":"gemstone.babylon"},"gravity":[0,-9.81,0],"physicsEnabled":true,
"meshes":[{"name":"d4","id":"d4","billboardMode":0,"position":[0,0,-0.8524],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false
,"positions":[-0.0415,-0.0543,-0.099,0.0411,-0.0543,-0.099,-0.0002,-0.013,-0.1204,0.0543,0.0413,0.0994,0.0543,-0.0417,0.0994,0.0127,-0.0002,0.1208,0.0412,0.0544,-0.0998,-0.0419,0.0544,-0.0998,-0.0002,0.0129,-0.1204,-0.0537,0.063,-0.0862,0.053,0.063,0.0858,-0.0537,0.063,0.0858,0.0628,-0.0535,-0.0862,0.0628,0.0531,0.0858,0.0628,0.0531,-0.0862,0.053,-0.0633,0.0858,-0.0532,-0.0628,-0.0856
,-0.0532,-0.0628,0.0854,0.0543,-0.0417,-0.0998,0.0543,0.0413,-0.0998,0.0127,-0.0002,-0.1212,0.0412,-0.0547,0.0994,-0.0415,-0.0543,0.0989,-0.0003,-0.0132,0.1208,-0.0419,0.0544,0.0994,0.0412,0.0544,0.0994,-0.0003,0.0129,0.1208,-0.0545,-0.0413,0.0989,-0.0549,0.0413,0.0994,-0.0134,-0.0002,0.1208,-0.063,0.0529,0.0854,-0.063,-0.0531,-0.0856,-0.063,0.0529,-0.0856,-0.0483,0.048,-0.1002
,-0.0605,0.047,-0.0933,-0.0545,0.0412,-0.099,-0.0478,0.0604,-0.094,-0.0537,0.063,-0.0862,-0.0572,0.0566,-0.0941,-0.063,0.0529,-0.0856,-0.0606,0.0601,-0.0862,-0.0605,-0.0472,-0.0933,-0.0483,-0.0482,-0.1002,-0.0545,-0.0413,-0.099,-0.063,-0.0531,-0.0856,-0.0567,-0.0565,-0.0934,-0.0532,-0.0628,-0.0856,-0.0601,-0.06,-0.0856,-0.0474,-0.0603,-0.0933,-0.0537,0.063,0.0858,-0.0572,0.0566,0.0937
,-0.0606,0.0601,0.0858,-0.0488,0.0482,0.1006,-0.0478,0.0604,0.0936,-0.0605,0.047,0.0931,-0.063,0.0529,0.0854,-0.0532,-0.0628,0.0854,-0.0567,-0.0565,0.0933,-0.0474,-0.0603,0.0931,-0.063,-0.0531,0.0854,-0.0601,-0.06,0.0854,-0.0483,-0.0482,0.1001,-0.0605,-0.0472,0.0931,0.0603,0.0472,-0.094,0.0481,0.0482,-0.101,0.0628,0.0531,-0.0862,0.0565,0.0566,-0.0941,0.053,0.063,-0.0862
,0.06,0.0601,-0.0862,0.0471,0.0604,-0.094,0.053,-0.0633,-0.0862,0.0565,-0.057,-0.0941,0.0469,-0.0603,-0.0933,0.0628,-0.0535,-0.0862,0.06,-0.0604,-0.0862,0.0481,-0.0486,-0.101,0.0603,-0.0476,-0.094,0.0628,-0.0535,0.0858,0.0565,-0.057,0.0937,0.0603,-0.0476,0.0936,0.053,-0.0633,0.0858,0.06,-0.0604,0.0858,0.0481,-0.0486,0.1006,0.0471,-0.0608,0.0936,-0.0003,-0.0002,-0.1257
,0.0065,-0.0071,-0.1224,-0.007,0.0068,-0.1216,0.0065,0.0067,-0.1224,-0.007,-0.0069,-0.1216,-0.0132,-0.0001,-0.1204,0.0471,0.0604,0.0936,0.0481,0.0482,0.1006,0.053,0.063,0.0858,0.0565,0.0566,0.0937,0.0628,0.0531,0.0858,0.06,0.0601,0.0858,0.0603,0.0472,0.0936,-0.0003,-0.0002,0.1254,0.0065,-0.0071,0.122,-0.0072,-0.0071,0.122,-0.0072,0.0067,0.122,0.0065,0.0067,0.122
,-0.063,0.0529,-0.0856,-0.0606,0.0601,-0.0862,-0.0606,0.0601,0.0858,-0.0606,0.0601,-0.0862,-0.063,-0.0531,0.0854,-0.0601,-0.06,-0.0856,-0.0601,-0.06,0.0854,-0.0601,-0.06,-0.0856,-0.063,0.0529,0.0854,0.06,-0.0604,-0.0862,0.053,-0.0633,-0.0862,0.06,-0.0604,0.0858,0.06,-0.0604,-0.0862,0.0628,0.0531,-0.0862,0.053,0.063,0.0858,0.06,0.0601,-0.0862,0.06,0.0601,0.0858
,0.053,0.063,-0.0862,0.06,0.0601,-0.0862,-0.0532,-0.0628,-0.0856,0.053,-0.0633,0.0858,-0.0532,-0.0628,0.0854,-0.0537,0.063,-0.0862,0.053,0.063,-0.0862,0.0628,-0.0535,0.0858,0.053,-0.0633,-0.0862,-0.063,-0.0531,0.0854,-0.0537,0.063,-0.0862,-0.0606,0.0601,-0.0862,-0.063,0.0529,-0.0856,-0.063,-0.0531,-0.0856,-0.0601,-0.06,-0.0856,-0.0532,-0.0628,-0.0856,-0.0537,0.063,0.0858
,-0.063,0.0529,0.0854,-0.0606,0.0601,0.0858,-0.0532,-0.0628,0.0854,-0.0601,-0.06,0.0854,0.0628,0.0531,-0.0862,0.06,0.0601,-0.0862,0.06,-0.0604,-0.0862,0.0628,-0.0535,-0.0862,0.06,-0.0604,0.0858,0.053,-0.0633,0.0858,0.053,0.063,0.0858,0.06,0.0601,0.0858,0.0628,0.0531,0.0858,-0.063,0.0529,-0.0856,-0.063,-0.0531,-0.0856,-0.0606,0.0601,0.0858,-0.0606,0.0601,-0.0862
,-0.0606,0.0601,0.0858,-0.063,-0.0531,0.0854,-0.0601,-0.06,0.0854,-0.0601,-0.06,-0.0856,-0.0601,-0.06,0.0854,-0.063,0.0529,0.0854,0.06,-0.0604,0.0858,0.06,-0.0604,-0.0862,0.06,-0.0604,0.0858,0.0628,-0.0535,0.0858,0.0628,-0.0535,-0.0862,0.0628,0.0531,-0.0862,-0.0537,0.063,0.0858,0.053,0.063,0.0858,0.06,0.0601,0.0858,0.06,0.0601,-0.0862,0.06,0.0601,0.0858
,0.053,0.063,-0.0862,-0.0532,-0.0628,-0.0856,0.053,-0.0633,0.0858,0.0628,0.0531,0.0858,-0.0537,0.063,-0.0862]
,"normals":[-0.115,-0.53,-0.84,0.079,-0.556,-0.827,-0.033,-0.363,-0.931,0.53,0.115,0.84,0.53,-0.115,0.84,0.366,0,0.93,0.113,0.526,-0.843,-0.149,0.5,-0.853,-0.031,0.355,-0.934,-0.216,0.95,-0.224,0.216,0.95,0.224,-0.216,0.95,0.224,0.95,-0.216,-0.224,0.95,0.216,0.224,0.95,0.216,-0.224,0.214,-0.951,0.224,-0.217,-0.95,-0.225
,-0.218,-0.95,0.224,0.53,-0.115,-0.84,0.53,0.115,-0.84,0.366,0,-0.93,0.111,-0.533,0.839,-0.12,-0.531,0.839,-0.004,-0.37,0.929,-0.115,0.53,0.84,0.115,0.53,0.84,0,0.367,0.93,-0.534,-0.118,0.837,-0.568,0.123,0.814,-0.37,-0.004,0.929,-0.962,0.172,0.211,-0.95,-0.216,-0.224,-0.964,0.169,-0.207,-0.33,0.27,-0.905
,-0.795,0.106,-0.597,-0.53,0.115,-0.84,-0.141,0.776,-0.614,-0.216,0.95,-0.224,-0.531,0.466,-0.708,-0.964,0.169,-0.207,-0.713,0.65,-0.265,-0.787,-0.136,-0.602,-0.311,-0.312,-0.898,-0.53,-0.115,-0.84,-0.95,-0.216,-0.224,-0.51,-0.51,-0.693,-0.217,-0.95,-0.225,-0.686,-0.681,-0.258,-0.136,-0.787,-0.602,-0.216,0.95,0.224,-0.538,0.484,0.69
,-0.712,0.653,0.258,-0.323,0.311,0.894,-0.136,0.787,0.602,-0.81,0.117,0.575,-0.962,0.172,0.211,-0.218,-0.95,0.224,-0.51,-0.51,0.693,-0.139,-0.786,0.603,-0.95,-0.216,0.224,-0.681,-0.686,0.258,-0.315,-0.315,0.895,-0.787,-0.136,0.602,0.787,0.136,-0.602,0.308,0.311,-0.899,0.95,0.216,-0.224,0.51,0.51,-0.693,0.216,0.95,-0.224
,0.686,0.681,-0.258,0.136,0.787,-0.602,0.202,-0.949,-0.244,0.485,-0.524,-0.701,0.093,-0.782,-0.617,0.95,-0.216,-0.224,0.673,-0.691,-0.266,0.28,-0.342,-0.897,0.787,-0.136,-0.602,0.95,-0.216,0.224,0.51,-0.51,0.693,0.787,-0.136,0.602,0.214,-0.951,0.224,0.686,-0.681,0.258,0.311,-0.312,0.898,0.132,-0.789,0.6,-0.085,-0.002,-0.996
,0.173,-0.267,-0.948,-0.233,0.219,-0.947,0.175,0.265,-0.948,-0.235,-0.22,-0.947,-0.332,0,-0.943,0.136,0.787,0.602,0.311,0.312,0.898,0.216,0.95,0.224,0.51,0.51,0.693,0.95,0.216,0.224,0.681,0.686,0.258,0.787,0.136,0.602,0,0,1,0.235,-0.235,0.943,-0.239,-0.239,0.941,-0.235,0.235,0.943,0.235,0.235,0.943
,-0.964,0.169,-0.207,-0.716,0.648,-0.26,-0.708,0.656,0.262,-0.713,0.65,-0.265,-0.95,-0.216,0.224,-0.678,-0.688,-0.258,-0.688,-0.678,0.258,-0.686,-0.681,-0.258,-0.962,0.172,0.211,0.698,-0.67,-0.253,0.202,-0.949,-0.244,0.678,-0.688,0.258,0.673,-0.691,-0.266,0.95,0.216,-0.224,0.216,0.95,0.224,0.678,0.688,-0.258,0.688,0.678,0.258
,0.216,0.95,-0.224,0.686,0.681,-0.258,-0.217,-0.95,-0.225,0.214,-0.951,0.224,-0.218,-0.95,0.224,-0.216,0.95,-0.224,0.216,0.95,-0.224,0.95,-0.216,0.224,0.202,-0.949,-0.244,-0.95,-0.216,0.224,-0.216,0.95,-0.224,-0.716,0.648,-0.26,-0.964,0.169,-0.207,-0.95,-0.216,-0.224,-0.678,-0.688,-0.258,-0.217,-0.95,-0.225,-0.216,0.95,0.224
,-0.962,0.172,0.211,-0.708,0.656,0.262,-0.218,-0.95,0.224,-0.688,-0.678,0.258,0.95,0.216,-0.224,0.678,0.688,-0.258,0.698,-0.67,-0.253,0.95,-0.216,-0.224,0.678,-0.688,0.258,0.214,-0.951,0.224,0.216,0.95,0.224,0.688,0.678,0.258,0.95,0.216,0.224,-0.964,0.169,-0.207,-0.95,-0.216,-0.224,-0.712,0.653,0.258,-0.716,0.648,-0.26
,-0.708,0.656,0.262,-0.95,-0.216,0.224,-0.681,-0.686,0.258,-0.678,-0.688,-0.258,-0.688,-0.678,0.258,-0.962,0.172,0.211,0.686,-0.681,0.258,0.698,-0.67,-0.253,0.678,-0.688,0.258,0.95,-0.216,0.224,0.95,-0.216,-0.224,0.95,0.216,-0.224,-0.216,0.95,0.224,0.216,0.95,0.224,0.681,0.686,0.258,0.678,0.688,-0.258,0.688,0.678,0.258
,0.216,0.95,-0.224,-0.217,-0.95,-0.225,0.214,-0.951,0.224,0.95,0.216,0.224,-0.216,0.95,-0.224]
,"uvs":[0.296,0.555,0.385,0.555,0.34,0.6,0.866,0.844,0.955,0.844,0.91,0.889,0.385,0.671,0.296,0.67,0.34,0.626,0.834,0.88,0.653,0.992,0.653,0.88,0.834,0.608,0.653,0.496,0.834,0.496,0.653,0.624,0.834,0.736,0.653,0.736,0.398,0.568,0.398,0.657,0.353,0.613,0.968,0.857,0.968,0.946,0.923,0.902,0.852,0.946
,0.853,0.857,0.897,0.902,0.954,0.96,0.866,0.959,0.91,0.915,0.653,0.864,0.834,0.752,0.834,0.864,0.289,0.664,0.274,0.664,0.282,0.657,0.289,0.679,0.28,0.689,0.278,0.675,0.264,0.673,0.27,0.683,0.274,0.561,0.289,0.561,0.283,0.568,0.264,0.552,0.278,0.551,0.28,0.537,0.27,0.542,0.289,0.546,0.834,0.963
,0.848,0.964,0.84,0.972,0.859,0.953,0.843,0.953,0.859,0.968,0.85,0.978,0.986,0.962,0.972,0.964,0.977,0.953,0.971,0.978,0.981,0.972,0.961,0.953,0.962,0.969,0.407,0.664,0.392,0.664,0.416,0.673,0.402,0.675,0.401,0.689,0.411,0.683,0.392,0.679,0.401,0.537,0.402,0.551,0.392,0.546,0.416,0.552,0.411,0.542
,0.392,0.561,0.407,0.561,0.971,0.826,0.972,0.84,0.962,0.835,0.986,0.841,0.981,0.831,0.962,0.85,0.977,0.85,0.34,0.613,0.347,0.606,0.334,0.619,0.347,0.619,0.334,0.606,0.327,0.613,0.844,0.85,0.859,0.85,0.834,0.841,0.848,0.84,0.849,0.826,0.84,0.831,0.859,0.835,0.91,0.902,0.917,0.895,0.917,0.909
,0.903,0.908,0.903,0.895,0.264,0.673,0.834,0.872,0.653,0.872,0.834,0.872,0.653,0.752,0.834,0.744,0.653,0.744,0.834,0.744,0.85,0.978,0.834,0.616,0.834,0.624,0.653,0.616,0.834,0.616,0.416,0.673,0.834,0.841,0.834,0.488,0.653,1,0.834,0.992,0.834,1,0.28,0.537,0.986,0.841,0.986,0.962,0.28,0.689
,0.834,0.992,0.653,0.608,0.834,0.624,0.653,0.752,0.28,0.689,0.27,0.683,0.264,0.673,0.264,0.552,0.27,0.542,0.28,0.537,0.834,0.963,0.85,0.978,0.84,0.972,0.986,0.962,0.981,0.972,0.416,0.673,0.411,0.683,0.411,0.542,0.416,0.552,0.981,0.831,0.986,0.841,0.834,0.841,0.84,0.831,0.849,0.826,0.264,0.673
,0.264,0.552,0.653,0.872,0.834,0.872,0.653,0.872,0.653,0.752,0.653,0.744,0.834,0.744,0.653,0.744,0.85,0.978,0.653,0.616,0.834,0.616,0.653,0.616,0.653,0.608,0.416,0.552,0.416,0.673,0.834,0.963,0.834,0.841,0.653,0.488,0.834,0.488,0.653,1,0.834,0.992,0.28,0.537,0.986,0.841,0.849,0.826,0.28,0.689
]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,33,7,37,38,36,39,38,40,41,42,43,44,45,41
,46,45,47,42,48,0,49,50,51,52,53,24,54,52,28,55,50,54,56,57,58,59,57,60,61,62,27,58,61,22,63,64,19,65,66,63,67,66,68,64,69,6,70,71,72,73,71,74,75,76,18
,72,75,1,77,78,79,80,78,81,82,83,21,79,82,4,20,84,85,86,87,8,88,86,89,85,88,2,90,91,25,92,93,90,94,93,95,91,96,3,23,97,98,29,97,99,26,97,100,5,97,101
,102,41,34,41,35,34,11,103,9,104,32,105,106,107,31,108,16,109,27,54,28,62,110,54,15,111,112,113,12,114,18,63,19,76,115,63,24,90,25,53,116,90,13,117,14,118,119,120,18,85,75
,75,2,1,0,88,42,88,43,42,0,72,1,72,121,70,22,83,58,58,122,123,3,79,4,96,77,79,21,98,82,98,4,82,7,69,36,69,124,36,3,101,91,101,25,91,8,64,6,87,19,64
,35,86,33,33,8,7,24,100,52,100,28,52,27,99,61,99,22,61,35,43,89,9,125,10,12,126,13,15,127,16,30,128,31,33,38,34,36,38,33,129,130,38,131,34,38,41,45,42,132,133,45
,134,48,45,42,45,48,135,53,50,52,50,53,54,50,52,136,137,50,138,139,57,59,62,57,61,57,62,58,57,61,63,66,64,140,141,66,67,69,66,64,66,69,70,142,71,143,76,71,75,71,76
,72,71,75,77,144,78,145,83,78,82,78,83,79,78,82,20,87,84,86,84,87,88,84,86,85,84,88,90,93,91,146,147,93,148,96,93,91,93,96,23,99,97,29,100,97,26,101,97,5,98,97
,149,150,41,41,43,35,11,151,152,153,30,32,154,155,156,157,17,16,27,62,54,62,59,158,15,159,160,161,162,12,18,76,63,76,163,164,24,53,90,53,165,166,13,167,168,169,10,170,18,20,85
,75,85,2,0,2,88,88,89,43,0,48,72,72,48,171,22,21,83,58,83,172,3,96,79,96,173,77,21,23,98,98,5,4,7,6,69,69,67,174,3,5,101,101,26,25,8,87,64,87,20,19
,35,89,86,33,86,8,24,26,100,100,29,28,27,29,99,99,23,22]
}
,{"name":"d20","id":"d20","billboardMode":0,"position":[0,0,0.9985],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false,"physicsImpostor":8,"physicsMass":0.01,"physicsFriction":0.5,"physicsRestitution":0
,"positions":[0.095,0.0282,-0.1197,0.095,-0.0284,-0.1197,0.0999,-0.0001,0.1046,0.0603,0.0784,-0.1197,0.0936,0.0325,-0.1197,0.0807,0.058,0.1046,0.0029,0.0988,-0.1197,0.0567,0.0811,-0.1197,0.0323,0.0952,0.1061,-0.0808,0.0566,0.1206,-0.0996,0.0022,0.1206,-0.094,0.0308,-0.1064,-0.0317,0.094,0.1208,-0.0781,0.0603,0.1206,-0.0576,0.081,-0.1065,-0.0051,-0.0021,0.1749,-0.0756,-0.0533,0.1302
,-0.0932,-0.002,0.1302,-0.0051,0.002,0.1749,-0.0932,0.0019,0.1302,-0.0756,0.0532,0.1302,-0.0027,0.0054,0.1749,-0.0732,0.0564,0.1302,-0.0294,0.088,0.1302,0.0934,0.0019,0.1286,0.007,0.002,0.1728,0.0766,0.0526,0.1286,0.0936,-0.0327,-0.1197,0.0605,-0.0786,-0.1197,0.0807,-0.0581,0.1046,0.0766,-0.0527,0.1286,0.007,-0.0021,0.1728,0.0934,-0.002,0.1286,-0.0258,-0.0895,0.1302
,0.0013,-0.0068,0.1749,0.0272,-0.0884,0.1285,0.0742,0.0558,0.1286,0.0046,0.0053,0.1728,0.0311,0.0871,0.1286,0.0012,0.0066,0.1751,-0.0257,0.0893,0.1304,0.0283,0.0895,0.1304,-0.0274,0.0954,0.1208,0.0012,0.1005,-0.1065,0.029,0.0943,0.1191,0.0587,0.08,-0.1051,0.0791,0.0596,0.1191,0.0333,0.0929,0.1191,0.0791,-0.0597,0.1191,0.0589,-0.0802,-0.1052,0.0331,-0.0931,0.1191
,-0.0297,-0.0952,0.1059,-0.001,-0.1001,-0.121,-0.0554,-0.0821,-0.121,-0.0555,0.0821,-0.1212,-0.001,0.1001,-0.1212,-0.0297,0.095,0.1061,0.031,-0.0872,0.1285,0.0045,-0.0054,0.1728,0.0742,-0.0559,0.1286,-0.0797,0.0587,0.106,-0.0929,0.0328,-0.121,-0.0591,0.0793,-0.121,-0.0943,0.0285,-0.121,-0.0999,-0.0001,0.1059,-0.0943,-0.0286,-0.121,-0.0797,-0.0588,0.106,-0.0591,-0.0794,-0.121
,-0.0929,-0.033,-0.121,-0.0007,-0.0938,-0.1306,-0.0008,-0.0065,-0.1736,-0.052,-0.0769,-0.1306,0.0878,-0.0305,-0.1291,0.0067,-0.0041,-0.1738,0.0566,-0.0738,-0.1291,0.008,-0.0001,-0.1738,0.089,-0.0268,-0.1291,0.089,0.0265,-0.1291,0.0878,0.0303,-0.1291,0.0564,0.0735,-0.1291,0.0067,0.0039,-0.1738,0.0027,0.0063,-0.1716,0.0533,0.0759,-0.1291,0.0026,0.0926,-0.1291,0.0534,-0.0761,-0.1291
,0.0033,-0.0065,-0.1738,0.0027,-0.0926,-0.129,0.0996,-0.0023,0.1191,0.0947,-0.0307,-0.1051,0.0817,-0.0561,0.1191,0.0289,-0.0943,0.119,0.0013,-0.1005,-0.1063,-0.0274,-0.0956,0.1206,-0.0318,-0.0942,0.1206,-0.0575,-0.0811,-0.1063,-0.0781,-0.0604,0.1206,-0.0996,-0.0023,0.1206,-0.0808,-0.0568,0.1206,-0.094,-0.0309,-0.1064,-0.0008,0.0063,-0.1738,-0.0008,0.0938,-0.1308,-0.052,0.0768,-0.1306
,-0.0041,0.0039,-0.1736,-0.0552,0.0744,-0.1306,-0.087,0.0306,-0.1306,-0.0882,-0.027,-0.1306,-0.0055,-0.0001,-0.1736,-0.0882,0.0268,-0.1306,-0.0552,-0.0745,-0.1306,-0.0041,-0.004,-0.1736,-0.087,-0.0308,-0.1306,-0.0027,-0.0055,0.1749,-0.0296,-0.0883,0.1302,-0.0732,-0.0565,0.1302,0.0817,0.056,0.1191,0.0947,0.0304,-0.1051,0.0996,0.0022,0.1191,0.0568,-0.0813,-0.1197,0.0605,-0.0786,-0.1197
,0.095,-0.0284,-0.1197,0.0878,-0.0305,-0.1291,0.0936,-0.0327,-0.1197,0.0027,-0.0926,-0.129,-0.001,-0.1001,-0.121,0.003,-0.0988,-0.1195,0.095,0.0282,-0.1197,0.0947,0.0304,-0.1051,0.0936,0.0325,-0.1197,-0.052,-0.0769,-0.1306,-0.0591,-0.0794,-0.121,-0.0554,-0.0821,-0.121,0.0533,0.0759,-0.1291,0.0603,0.0784,-0.1197,0.0567,0.0811,-0.1197,-0.0929,-0.033,-0.121,-0.0882,-0.027,-0.1306
,-0.0943,-0.0286,-0.121,-0.001,0.1001,-0.1212,0.0026,0.0926,-0.1291,0.0029,0.0988,-0.1197,-0.0882,0.0268,-0.1306,-0.0929,0.0328,-0.121,-0.0943,0.0285,-0.121,-0.0555,0.0821,-0.1212,-0.0576,0.081,-0.1065,-0.0591,0.0793,-0.121,0.0027,0.0063,-0.1716,-0.0041,0.0039,-0.1736,-0.0041,-0.004,-0.1736,0.0791,-0.0597,0.1191,0.0766,-0.0527,0.1286,0.0817,-0.0561,0.1191,0.0289,-0.0943,0.119
,0.0331,-0.0931,0.1191,0.0311,-0.0941,0.1046,-0.0318,-0.0942,0.1206,-0.0258,-0.0895,0.1302,-0.0274,-0.0956,0.1206,-0.0756,-0.0533,0.1302,-0.0781,-0.0604,0.1206,-0.0808,-0.0568,0.1206,-0.0932,0.0019,0.1302,-0.0996,-0.0023,0.1206,-0.0996,0.0022,0.1206,-0.0781,0.0603,0.1206,-0.0756,0.0532,0.1302,-0.0808,0.0566,0.1206,0.0996,-0.0023,0.1191,0.0996,0.0022,0.1191,0.0766,0.0526,0.1286
,0.0791,0.0596,0.1191,0.0817,0.056,0.1191,0.029,0.0943,0.1191,0.0323,0.0952,0.1061,0.0333,0.0929,0.1191,-0.0274,0.0954,0.1208,-0.0317,0.094,0.1208,-0.0051,-0.0021,0.1749,-0.0051,0.002,0.1749,0.007,0.002,0.1728,-0.0943,0.0285,-0.121,-0.0257,0.0893,0.1304,-0.0027,0.0054,0.1749,-0.0294,0.088,0.1302,0.0934,-0.002,0.1286,0.007,0.002,0.1728,0.0934,0.0019,0.1286
,0.0046,0.0053,0.1728,0.0283,0.0895,0.1304,0.0311,0.0871,0.1286,0.0817,0.056,0.1191,0.0934,0.0019,0.1286,0.0766,0.0526,0.1286,0.0272,-0.0884,0.1285,0.0045,-0.0054,0.1728,0.031,-0.0872,0.1285,0.0791,-0.0597,0.1191,0.031,-0.0872,0.1285,0.0742,-0.0559,0.1286,-0.0554,-0.0821,-0.121,-0.0929,-0.033,-0.121,0.0742,-0.0559,0.1286,0.007,-0.0021,0.1728,0.0766,-0.0527,0.1286
,-0.0576,0.081,-0.1065,-0.0555,0.0821,-0.1212,0.0807,-0.0581,0.1046,0.0936,-0.0327,-0.1197,0.007,0.002,0.1728,0.0742,0.0558,0.1286,0.0766,0.0526,0.1286,0.0936,-0.0327,-0.1197,0.0566,-0.0738,-0.1291,0.0605,-0.0786,-0.1197,0.0323,0.0952,0.1061,0.0012,0.1005,-0.1065,0.0029,0.0988,-0.1197,0.0272,-0.0884,0.1285,-0.0274,-0.0956,0.1206,-0.0258,-0.0895,0.1302,0.095,0.0282,-0.1197
,0.089,-0.0268,-0.1291,0.095,-0.0284,-0.1197,-0.0943,-0.0286,-0.121,-0.0051,0.002,0.1749,-0.0932,-0.002,0.1302,-0.0932,0.0019,0.1302,-0.0943,-0.0286,-0.121,-0.0882,0.0268,-0.1306,-0.0943,0.0285,-0.121,0.0587,0.08,-0.1051,0.0603,0.0784,-0.1197,0.0947,0.0304,-0.1051,0.095,0.0282,-0.1197,0.0807,-0.0581,0.1046,0.0605,-0.0786,-0.1197,-0.0808,-0.0568,0.1206,-0.0932,-0.002,0.1302
,-0.0756,-0.0533,0.1302,-0.0296,-0.0883,0.1302,-0.0781,-0.0604,0.1206,-0.0732,-0.0565,0.1302,-0.0797,0.0587,0.106,-0.0929,0.0328,-0.121,-0.0008,-0.0065,-0.1736,-0.0552,-0.0745,-0.1306,-0.052,-0.0769,-0.1306,-0.0591,-0.0794,-0.121,-0.0732,0.0564,0.1302,-0.0051,0.002,0.1749,-0.0756,0.0532,0.1302,0.0936,0.0325,-0.1197,0.0564,0.0735,-0.1291,0.0878,0.0303,-0.1291,-0.087,-0.0308,-0.1306
,-0.0591,-0.0794,-0.121,-0.0552,-0.0745,-0.1306,0.0013,-0.1005,-0.1063,0.003,-0.0988,-0.1195,0.0568,-0.0813,-0.1197,0.0027,-0.0926,-0.129,0.0817,-0.0561,0.1191,0.0934,-0.002,0.1286,0.0996,-0.0023,0.1191,-0.087,-0.0308,-0.1306,-0.0055,-0.0001,-0.1736,-0.0882,-0.027,-0.1306,0.0567,0.0811,-0.1197,0.0026,0.0926,-0.1291,0.0533,0.0759,-0.1291,-0.0007,-0.0938,-0.1306,-0.0554,-0.0821,-0.121
,-0.001,-0.1001,-0.121,0.089,-0.0268,-0.1291,0.0067,-0.0041,-0.1738,0.0878,-0.0305,-0.1291,0.0791,0.0596,0.1191,0.0311,0.0871,0.1286,0.0333,0.0929,0.1191,0.0947,0.0304,-0.1051,0.0817,0.056,0.1191,-0.0808,0.0566,0.1206,-0.0932,0.0019,0.1302,-0.0996,0.0022,0.1206,0.0566,-0.0738,-0.1291,0.0033,-0.0065,-0.1738,0.0534,-0.0761,-0.1291,0.0012,0.1005,-0.1065,-0.0274,0.0954,0.1208
,0.0323,0.0952,0.1061,0.0587,0.08,-0.1051,0.0333,0.0929,0.1191,-0.0552,0.0744,-0.1306,-0.0929,0.0328,-0.121,-0.087,0.0306,-0.1306,0.0013,-0.1005,-0.1063,-0.001,-0.1001,-0.121,-0.0317,0.094,0.1208,-0.0732,0.0564,0.1302,-0.0781,0.0603,0.1206,-0.0576,0.081,-0.1065,-0.0797,0.0587,0.106,-0.0591,0.0793,-0.121,-0.001,0.1001,-0.1212,-0.052,0.0768,-0.1306,-0.0008,0.0938,-0.1308
,0.0027,-0.0926,-0.129,-0.0008,-0.0065,-0.1736,-0.0007,-0.0938,-0.1306,0.029,0.0943,0.1191,-0.0257,0.0893,0.1304,-0.0274,0.0954,0.1208,-0.0055,-0.0001,-0.1736,-0.087,0.0306,-0.1306,-0.0882,0.0268,-0.1306,-0.0008,0.0938,-0.1308,0.0027,0.0063,-0.1716,0.0026,0.0926,-0.1291,0.0996,-0.0023,0.1191,-0.0027,-0.0055,0.1749,-0.0258,-0.0895,0.1302,-0.0296,-0.0883,0.1302,-0.0041,0.0039,-0.1736
,-0.052,0.0768,-0.1306,-0.0552,0.0744,-0.1306,-0.0051,-0.0021,0.1749,-0.0732,-0.0565,0.1302,-0.0756,-0.0533,0.1302,0.0067,0.0039,-0.1738,0.089,0.0265,-0.1291,0.0878,0.0303,-0.1291,0.0027,0.0063,-0.1716,0.0564,0.0735,-0.1291,0.0533,0.0759,-0.1291,0.0311,-0.0941,0.1046,0.0568,-0.0813,-0.1197,0.003,-0.0988,-0.1195,-0.0996,0.0022,0.1206,-0.0996,-0.0023,0.1206,-0.0797,0.0587,0.106
,-0.0781,0.0603,0.1206,-0.0808,0.0566,0.1206,-0.0294,0.088,0.1302,-0.0274,0.0954,0.1208,-0.0257,0.0893,0.1304,0.029,0.0943,0.1191,0.0311,0.0871,0.1286,0.0283,0.0895,0.1304,0.0817,0.056,0.1191,0.0791,0.0596,0.1191,0.0934,0.0019,0.1286,0.0996,-0.0023,0.1191,0.0934,-0.002,0.1286,0.0807,-0.0581,0.1046,0.0791,-0.0597,0.1191,0.0817,-0.0561,0.1191,0.0272,-0.0884,0.1285
,0.0331,-0.0931,0.1191,0.0289,-0.0943,0.119,-0.0318,-0.0942,0.1206,-0.0274,-0.0956,0.1206,-0.0808,-0.0568,0.1206,-0.0781,-0.0604,0.1206,-0.0943,0.0285,-0.121,-0.0929,0.0328,-0.121,-0.0555,0.0821,-0.1212,-0.0552,0.0744,-0.1306,-0.052,0.0768,-0.1306,0.0012,0.1005,-0.1065,-0.001,0.1001,-0.1212,0.0029,0.0988,-0.1197,0.0587,0.08,-0.1051,0.0567,0.0811,-0.1197,0.0603,0.0784,-0.1197
,0.089,0.0265,-0.1291,0.0936,0.0325,-0.1197,0.0878,0.0303,-0.1291,0.095,-0.0284,-0.1197,0.0936,-0.0327,-0.1197,0.0534,-0.0761,-0.1291,0.0605,-0.0786,-0.1197,0.0566,-0.0738,-0.1291,0.0013,-0.1005,-0.1063,0.003,-0.0988,-0.1195,-0.001,-0.1001,-0.121,-0.0554,-0.0821,-0.121,-0.0591,-0.0794,-0.121,-0.0929,-0.033,-0.121,-0.0943,-0.0286,-0.121,0.095,-0.0284,-0.1197,0.089,-0.0268,-0.1291
,0.0878,-0.0305,-0.1291,0.0027,-0.0926,-0.129,-0.0007,-0.0938,-0.1306,-0.001,-0.1001,-0.121,-0.052,-0.0769,-0.1306,-0.0552,-0.0745,-0.1306,-0.0591,-0.0794,-0.121,0.0533,0.0759,-0.1291,0.0564,0.0735,-0.1291,0.0603,0.0784,-0.1197,-0.0929,-0.033,-0.121,-0.087,-0.0308,-0.1306,-0.0882,-0.027,-0.1306,-0.001,0.1001,-0.1212,-0.0008,0.0938,-0.1308,0.0026,0.0926,-0.1291,-0.0882,0.0268,-0.1306
,-0.087,0.0306,-0.1306,-0.0929,0.0328,-0.121,-0.0041,-0.004,-0.1736,-0.0008,-0.0065,-0.1736,0.0027,0.0063,-0.1716,-0.0008,-0.0065,-0.1736,0.0033,-0.0065,-0.1738,0.0067,-0.0041,-0.1738,0.008,-0.0001,-0.1738,-0.0008,-0.0065,-0.1736,0.0067,-0.0041,-0.1738,0.008,-0.0001,-0.1738,0.0067,0.0039,-0.1738,0.0027,0.0063,-0.1716,0.0027,0.0063,-0.1716,-0.0008,0.0063,-0.1738,-0.0041,0.0039,-0.1736
,-0.0041,0.0039,-0.1736,-0.0055,-0.0001,-0.1736,-0.0041,-0.004,-0.1736,-0.0008,-0.0065,-0.1736,0.008,-0.0001,-0.1738,0.0027,0.0063,-0.1716,0.0791,-0.0597,0.1191,0.0742,-0.0559,0.1286,0.0766,-0.0527,0.1286,-0.0318,-0.0942,0.1206,-0.0296,-0.0883,0.1302,-0.0258,-0.0895,0.1302,-0.0756,-0.0533,0.1302,-0.0732,-0.0565,0.1302,-0.0781,-0.0604,0.1206,-0.0932,0.0019,0.1302,-0.0932,-0.002,0.1302
,-0.0996,-0.0023,0.1206,-0.0781,0.0603,0.1206,-0.0732,0.0564,0.1302,-0.0756,0.0532,0.1302,0.0766,0.0526,0.1286,0.0742,0.0558,0.1286,0.0791,0.0596,0.1191,-0.0051,0.002,0.1749,-0.0027,0.0054,0.1749,0.0046,0.0053,0.1728,-0.0027,0.0054,0.1749,0.0012,0.0066,0.1751,0.0046,0.0053,0.1728,0.0046,0.0053,0.1728,0.007,0.002,0.1728,-0.0051,0.002,0.1749,0.007,0.002,0.1728
,0.007,-0.0021,0.1728,-0.0051,-0.0021,0.1749,0.007,-0.0021,0.1728,0.0045,-0.0054,0.1728,-0.0051,-0.0021,0.1749,0.0045,-0.0054,0.1728,0.0013,-0.0068,0.1749,-0.0027,-0.0055,0.1749,-0.0027,-0.0055,0.1749,-0.0051,-0.0021,0.1749,0.0045,-0.0054,0.1728,-0.0996,0.0022,0.1206,-0.0257,0.0893,0.1304,0.0012,0.0066,0.1751,-0.0027,0.0054,0.1749,0.0934,-0.002,0.1286,0.007,-0.0021,0.1728
,0.007,0.002,0.1728,0.0046,0.0053,0.1728,0.0012,0.0066,0.1751,0.0283,0.0895,0.1304,0.0817,0.056,0.1191,0.0996,0.0022,0.1191,0.0934,0.0019,0.1286,0.0272,-0.0884,0.1285,0.0013,-0.0068,0.1749,0.0045,-0.0054,0.1728,0.0791,-0.0597,0.1191,0.0331,-0.0931,0.1191,0.031,-0.0872,0.1285,-0.0318,-0.0942,0.1206,-0.0808,-0.0568,0.1206,0.0742,-0.0559,0.1286,0.0045,-0.0054,0.1728
,0.007,-0.0021,0.1728,-0.0317,0.094,0.1208,-0.0576,0.081,-0.1065,0.0807,-0.0581,0.1046,0.0817,-0.0561,0.1191,0.007,0.002,0.1728,0.0046,0.0053,0.1728,0.0742,0.0558,0.1286,0.0331,-0.0931,0.1191,0.0936,-0.0327,-0.1197,0.0878,-0.0305,-0.1291,0.0566,-0.0738,-0.1291,0.0323,0.0952,0.1061,0.029,0.0943,0.1191,0.0012,0.1005,-0.1065,0.0272,-0.0884,0.1285,0.0289,-0.0943,0.119
,-0.0274,-0.0956,0.1206,0.095,0.0282,-0.1197,0.089,0.0265,-0.1291,0.089,-0.0268,-0.1291,-0.0996,-0.0023,0.1206,-0.0051,0.002,0.1749,-0.0051,-0.0021,0.1749,-0.0932,-0.002,0.1302,-0.0943,-0.0286,-0.121,-0.0882,-0.027,-0.1306,-0.0882,0.0268,-0.1306,0.0791,0.0596,0.1191,0.0587,0.08,-0.1051,0.0996,0.0022,0.1191,0.0947,0.0304,-0.1051,0.0791,-0.0597,0.1191,0.0807,-0.0581,0.1046
,-0.0808,-0.0568,0.1206,-0.0996,-0.0023,0.1206,-0.0932,-0.002,0.1302,-0.0296,-0.0883,0.1302,-0.0318,-0.0942,0.1206,-0.0781,-0.0604,0.1206,-0.0797,0.0587,0.106,-0.0808,0.0566,0.1206,-0.0008,-0.0065,-0.1736,-0.0041,-0.004,-0.1736,-0.0552,-0.0745,-0.1306,-0.0781,-0.0604,0.1206,-0.0732,0.0564,0.1302,-0.0027,0.0054,0.1749,-0.0051,0.002,0.1749,0.0936,0.0325,-0.1197,0.0603,0.0784,-0.1197
,0.0564,0.0735,-0.1291,-0.087,-0.0308,-0.1306,-0.0929,-0.033,-0.121,-0.0591,-0.0794,-0.121,0.0013,-0.1005,-0.1063,0.0289,-0.0943,0.119,0.0568,-0.0813,-0.1197,0.0534,-0.0761,-0.1291,0.0027,-0.0926,-0.129,0.0817,-0.0561,0.1191,0.0766,-0.0527,0.1286,0.0934,-0.002,0.1286,-0.087,-0.0308,-0.1306,-0.0041,-0.004,-0.1736,-0.0055,-0.0001,-0.1736,0.0567,0.0811,-0.1197,0.0029,0.0988,-0.1197
,0.0026,0.0926,-0.1291,-0.0007,-0.0938,-0.1306,-0.052,-0.0769,-0.1306,-0.0554,-0.0821,-0.121,0.089,-0.0268,-0.1291,0.008,-0.0001,-0.1738,0.0067,-0.0041,-0.1738,0.0791,0.0596,0.1191,0.0742,0.0558,0.1286,0.0311,0.0871,0.1286,0.0936,0.0325,-0.1197,0.0947,0.0304,-0.1051,-0.0808,0.0566,0.1206,-0.0756,0.0532,0.1302,-0.0932,0.0019,0.1302,0.0566,-0.0738,-0.1291,0.0067,-0.0041,-0.1738
,0.0033,-0.0065,-0.1738,-0.001,0.1001,-0.1212,0.0012,0.1005,-0.1065,0.0323,0.0952,0.1061,0.0567,0.0811,-0.1197,0.0587,0.08,-0.1051,-0.0552,0.0744,-0.1306,-0.0591,0.0793,-0.121,-0.0929,0.0328,-0.121,-0.0274,-0.0956,0.1206,0.0013,-0.1005,-0.1063,-0.0317,0.094,0.1208,-0.0294,0.088,0.1302,-0.0732,0.0564,0.1302,-0.0576,0.081,-0.1065,-0.0781,0.0603,0.1206,-0.0797,0.0587,0.106
,-0.001,0.1001,-0.1212,-0.0555,0.0821,-0.1212,-0.052,0.0768,-0.1306,0.0027,-0.0926,-0.129,0.0033,-0.0065,-0.1738,-0.0008,-0.0065,-0.1736,0.029,0.0943,0.1191,0.0283,0.0895,0.1304,-0.0257,0.0893,0.1304,-0.0055,-0.0001,-0.1736,-0.0041,0.0039,-0.1736,-0.087,0.0306,-0.1306,-0.0008,0.0938,-0.1308,-0.0008,0.0063,-0.1738,0.0027,0.0063,-0.1716,0.095,-0.0284,-0.1197,-0.0027,-0.0055,0.1749
,0.0013,-0.0068,0.1749,-0.0258,-0.0895,0.1302,-0.0041,0.0039,-0.1736,-0.0008,0.0063,-0.1738,-0.052,0.0768,-0.1306,-0.0051,-0.0021,0.1749,-0.0027,-0.0055,0.1749,-0.0732,-0.0565,0.1302,0.0067,0.0039,-0.1738,0.008,-0.0001,-0.1738,0.089,0.0265,-0.1291,0.0027,0.0063,-0.1716,0.0067,0.0039,-0.1738,0.0564,0.0735,-0.1291,-0.0294,0.088,0.1302,-0.0317,0.094,0.1208,-0.0274,0.0954,0.1208
,0.029,0.0943,0.1191,0.0333,0.0929,0.1191,0.0311,0.0871,0.1286,0.0934,0.0019,0.1286,0.0996,0.0022,0.1191,0.0996,-0.0023,0.1191,0.0272,-0.0884,0.1285,0.031,-0.0872,0.1285,0.0331,-0.0931,0.1191,-0.0555,0.0821,-0.1212,-0.0591,0.0793,-0.121,-0.0552,0.0744,-0.1306,0.089,0.0265,-0.1291,0.095,0.0282,-0.1197,0.0936,0.0325,-0.1197,0.0534,-0.0761,-0.1291,0.0568,-0.0813,-0.1197
,0.0605,-0.0786,-0.1197]
,"normals":[0.946,0.152,-0.288,0.946,-0.151,-0.288,1,0,-0.001,0.677,0.678,-0.287,0.854,0.434,-0.287,0.808,0.589,0,0.347,0.9,-0.264,0.448,0.846,-0.287,0.402,0.916,0.018,-0.848,0.447,0.285,-0.945,0.156,0.286,-0.948,0.317,-0.003,-0.438,0.851,0.29,-0.676,0.679,0.287,-0.596,0.803,-0.001,-0.174,-0.09,0.981,-0.607,-0.319,0.728
,-0.674,-0.113,0.73,-0.174,0.085,0.981,-0.674,0.113,0.73,-0.606,0.32,0.728,-0.087,0.218,0.972,-0.481,0.487,0.729,-0.328,0.602,0.728,0.676,0.11,0.728,0.336,0.08,0.938,0.61,0.314,0.728,0.855,-0.432,-0.287,0.678,-0.677,-0.287,0.809,-0.588,0.001,0.61,-0.314,0.728,0.336,-0.086,0.938,0.676,-0.11,0.728,-0.089,-0.68,0.728
,0.146,-0.261,0.954,0.186,-0.664,0.724,0.484,0.486,0.728,0.385,0.161,0.909,0.515,0.539,0.666,0.193,0.221,0.956,-0.122,0.688,0.715,0.316,0.647,0.694,-0.149,0.951,0.273,0.015,1,-0.001,0.216,0.939,0.268,0.663,0.748,0.01,0.678,0.677,0.286,0.499,0.819,0.283,0.677,-0.677,0.288,0.589,-0.808,0,0.42,-0.859,0.294
,-0.312,-0.95,0.001,0.054,-0.947,-0.315,-0.439,-0.851,-0.287,-0.451,0.843,-0.294,0.049,0.947,-0.317,-0.312,0.95,0.002,0.369,-0.588,0.72,0.309,-0.205,0.929,0.482,-0.486,0.729,-0.811,0.585,-0.001,-0.854,0.434,-0.288,-0.687,0.667,-0.287,-0.945,0.152,-0.289,-1,0,-0.003,-0.945,-0.153,-0.289,-0.807,-0.591,0,-0.677,-0.678,-0.287
,-0.854,-0.435,-0.287,0.069,-0.669,-0.74,-0.019,-0.229,-0.973,-0.311,-0.605,-0.733,0.613,-0.311,-0.726,0.224,-0.138,-0.965,0.487,-0.485,-0.726,0.276,0.024,-0.961,0.679,-0.107,-0.726,0.679,0.107,-0.726,0.613,0.312,-0.726,0.437,0.525,-0.73,0.177,0.217,-0.96,0.188,0.326,-0.927,0.258,0.64,-0.724,0.372,0.63,-0.682,0.312,-0.612,-0.727
,0.148,-0.232,-0.961,0.301,-0.647,-0.701,0.946,-0.151,0.286,0.95,-0.312,-0.001,0.851,-0.44,0.286,0.16,-0.945,0.285,0.097,-0.995,-0.011,-0.139,-0.947,0.289,-0.435,-0.854,0.286,-0.589,-0.808,0,-0.677,-0.679,0.285,-0.945,-0.156,0.286,-0.848,-0.447,0.285,-0.948,-0.317,-0.003,0.029,0.263,-0.964,0.141,0.665,-0.733,-0.321,0.595,-0.737
,-0.216,0.173,-0.961,-0.491,0.47,-0.734,-0.606,0.309,-0.733,-0.671,-0.106,-0.733,-0.263,0.023,-0.965,-0.671,0.106,-0.733,-0.482,-0.48,-0.733,-0.212,-0.13,-0.969,-0.606,-0.309,-0.733,-0.074,-0.226,0.971,-0.312,-0.611,0.728,-0.483,-0.487,0.728,0.851,0.44,0.286,0.95,0.312,-0.002,0.946,0.151,0.286,0.437,-0.852,-0.287,0.678,-0.677,-0.287
,0.946,-0.152,-0.288,0.614,-0.312,-0.725,0.855,-0.432,-0.287,0.31,-0.646,-0.697,0.049,-0.946,-0.319,0.362,-0.892,-0.271,0.946,0.152,-0.288,0.95,0.312,-0.001,0.854,0.433,-0.287,-0.311,-0.605,-0.733,-0.677,-0.678,-0.287,-0.439,-0.851,-0.287,0.258,0.641,-0.723,0.677,0.678,-0.287,0.438,0.852,-0.289,-0.853,-0.434,-0.288,-0.672,-0.106,-0.732
,-0.945,-0.153,-0.289,0.041,0.947,-0.318,0.381,0.629,-0.677,0.358,0.893,-0.272,-0.671,0.106,-0.733,-0.854,0.434,-0.288,-0.945,0.153,-0.289,-0.454,0.841,-0.295,-0.602,0.798,-0.002,-0.693,0.662,-0.285,0.135,0.299,-0.945,-0.098,0.099,-0.99,-0.156,-0.121,-0.98,0.677,-0.678,0.286,0.61,-0.315,0.727,0.851,-0.44,0.286,0.141,-0.948,0.285
,0.416,-0.86,0.295,0.3,-0.954,0.006,-0.435,-0.854,0.286,-0.089,-0.683,0.725,-0.138,-0.947,0.288,-0.607,-0.32,0.727,-0.677,-0.678,0.286,-0.848,-0.446,0.285,-0.674,0.113,0.73,-0.945,-0.156,0.286,-0.945,0.156,0.286,-0.676,0.68,0.285,-0.607,0.32,0.727,-0.848,0.447,0.285,0.946,-0.151,0.286,0.946,0.151,0.286,0.61,0.315,0.727
,0.678,0.677,0.286,0.851,0.44,0.286,0.142,0.952,0.272,0.373,0.926,0.055,0.43,0.843,0.323,-0.14,0.944,0.298,-0.43,0.853,0.295,-0.176,-0.071,0.982,-0.176,0.072,0.982,0.323,0.105,0.941,-0.945,0.153,-0.289,-0.124,0.688,0.715,-0.057,0.082,0.995,-0.329,0.602,0.728,0.676,-0.11,0.728,0.323,0.105,0.941,0.676,0.11,0.728
,0.378,0.137,0.916,0.327,0.642,0.693,0.524,0.536,0.662,0.851,0.44,0.286,0.676,0.11,0.728,0.61,0.315,0.727,-0.069,-0.734,0.676,0.373,-0.151,0.916,0.126,-0.647,0.752,0.677,-0.678,0.286,0.377,-0.576,0.725,0.483,-0.489,0.726,-0.439,-0.851,-0.287,-0.853,-0.434,-0.288,0.482,-0.486,0.729,0.323,-0.104,0.941,0.61,-0.314,0.728
,-0.602,0.798,-0.002,-0.454,0.841,-0.295,0.809,-0.588,0.001,0.855,-0.432,-0.287,0.323,0.105,0.941,0.484,0.486,0.728,0.61,0.314,0.728,0.855,-0.432,-0.287,0.487,-0.484,-0.727,0.678,-0.677,-0.287,0.373,0.926,0.055,0.174,0.984,-0.026,0.358,0.893,-0.272,0.191,-0.659,0.727,-0.138,-0.947,0.288,-0.089,-0.683,0.725,0.946,0.152,-0.288
,0.678,-0.107,-0.727,0.946,-0.152,-0.288,-0.945,-0.153,-0.289,-0.176,0.072,0.982,-0.674,-0.113,0.73,-0.674,0.113,0.73,-0.945,-0.153,-0.289,-0.671,0.106,-0.733,-0.945,0.153,-0.289,0.596,0.803,-0.002,0.677,0.678,-0.287,0.95,0.312,-0.001,0.946,0.152,-0.288,0.809,-0.588,0.001,0.678,-0.677,-0.287,-0.848,-0.446,0.285,-0.673,-0.113,0.731
,-0.607,-0.32,0.727,-0.312,-0.61,0.729,-0.677,-0.678,0.286,-0.482,-0.487,0.728,-0.807,0.591,0,-0.854,0.434,-0.288,-0.106,-0.202,-0.974,-0.482,-0.48,-0.733,-0.311,-0.605,-0.733,-0.677,-0.678,-0.287,-0.481,0.487,0.729,-0.176,0.072,0.982,-0.607,0.319,0.728,0.854,0.433,-0.287,0.436,0.525,-0.731,0.613,0.312,-0.726,-0.605,-0.308,-0.734
,-0.677,-0.678,-0.287,-0.482,-0.48,-0.733,0.19,-0.981,-0.025,0.362,-0.892,-0.271,0.437,-0.852,-0.287,0.31,-0.646,-0.697,0.851,-0.44,0.286,0.675,-0.11,0.729,0.946,-0.151,0.286,-0.606,-0.309,-0.733,-0.269,-0.003,-0.963,-0.671,-0.106,-0.733,0.438,0.852,-0.289,0.381,0.629,-0.677,0.258,0.641,-0.723,0.084,-0.671,-0.737,-0.439,-0.851,-0.287
,0.049,-0.946,-0.319,0.679,-0.107,-0.726,0.208,-0.155,-0.966,0.613,-0.311,-0.726,0.678,0.677,0.286,0.586,0.506,0.632,0.43,0.843,0.323,0.95,0.312,-0.001,0.851,0.44,0.286,-0.848,0.447,0.285,-0.674,0.113,0.73,-0.945,0.156,0.286,0.487,-0.485,-0.726,0.039,-0.23,-0.972,0.311,-0.612,-0.727,0.174,0.984,-0.026,-0.14,0.944,0.298
,0.373,0.926,0.055,0.596,0.803,-0.002,0.43,0.843,0.323,-0.485,0.473,-0.735,-0.854,0.434,-0.288,-0.606,0.309,-0.733,0.19,-0.981,-0.025,0.049,-0.946,-0.319,-0.43,0.853,0.295,-0.482,0.488,0.728,-0.676,0.68,0.285,-0.602,0.798,-0.002,-0.807,0.591,0,-0.693,0.662,-0.285,0.041,0.947,-0.318,-0.308,0.595,-0.742,0.153,0.672,-0.724
,0.555,-0.601,-0.576,-0.106,-0.202,-0.974,0.372,-0.61,-0.7,0.142,0.952,0.272,-0.127,0.664,0.736,-0.14,0.944,0.298,-0.269,-0.003,-0.963,-0.606,0.309,-0.733,-0.671,0.106,-0.733,0.153,0.664,-0.732,0.135,0.299,-0.945,0.382,0.629,-0.677,0.946,-0.151,0.286,-0.045,-0.096,0.994,-0.089,-0.68,0.728,-0.312,-0.611,0.728,-0.098,0.099,-0.99
,-0.302,0.609,-0.734,-0.47,0.484,-0.738,-0.176,-0.071,0.982,-0.483,-0.487,0.728,-0.607,-0.319,0.728,-0.141,0.15,-0.979,0.679,0.107,-0.726,0.613,0.312,-0.726,0.135,0.299,-0.945,0.626,0.375,-0.684,0.434,0.49,-0.756,0.384,-0.923,-0.007,0.437,-0.852,-0.287,0.359,-0.895,-0.264,-0.945,0.156,0.286,-0.945,-0.156,0.286,-0.807,0.591,0
,-0.676,0.68,0.285,-0.848,0.447,0.285,-0.332,0.599,0.729,-0.14,0.944,0.298,-0.127,0.664,0.736,0.142,0.952,0.272,0.586,0.506,0.632,0.425,0.665,0.615,0.851,0.44,0.286,0.678,0.677,0.286,0.676,0.11,0.728,0.946,-0.151,0.286,0.675,-0.11,0.729,0.809,-0.588,0.001,0.677,-0.678,0.286,0.851,-0.44,0.286,0.191,-0.659,0.727
,0.416,-0.86,0.295,0.141,-0.948,0.285,-0.435,-0.854,0.286,-0.138,-0.947,0.288,-0.848,-0.446,0.285,-0.677,-0.678,0.286,-0.945,0.153,-0.289,-0.854,0.434,-0.288,-0.454,0.841,-0.295,-0.485,0.473,-0.735,-0.308,0.595,-0.742,0.174,0.984,-0.026,0.041,0.947,-0.318,0.358,0.893,-0.272,0.596,0.803,-0.002,0.438,0.852,-0.289,0.677,0.678,-0.287
,0.68,0.107,-0.725,0.854,0.433,-0.287,0.613,0.312,-0.726,0.946,-0.152,-0.288,0.855,-0.432,-0.287,0.312,-0.613,-0.726,0.678,-0.677,-0.287,0.487,-0.484,-0.727,0.19,-0.981,-0.025,0.362,-0.892,-0.271,0.049,-0.946,-0.319,-0.439,-0.851,-0.287,-0.677,-0.678,-0.287,-0.853,-0.434,-0.288,-0.945,-0.153,-0.289,0.946,-0.152,-0.288,0.678,-0.107,-0.727
,0.614,-0.312,-0.725,0.31,-0.646,-0.697,0.084,-0.671,-0.737,0.049,-0.946,-0.319,-0.311,-0.605,-0.733,-0.482,-0.48,-0.733,-0.677,-0.678,-0.287,0.258,0.641,-0.723,0.436,0.525,-0.731,0.677,0.678,-0.287,-0.853,-0.434,-0.288,-0.605,-0.308,-0.734,-0.672,-0.106,-0.732,0.041,0.947,-0.318,0.153,0.672,-0.724,0.381,0.629,-0.677,-0.671,0.106,-0.733
,-0.606,0.309,-0.733,-0.854,0.434,-0.288,-0.156,-0.121,-0.98,-0.106,-0.202,-0.974,0.135,0.299,-0.945,-0.106,-0.202,-0.974,0.039,-0.23,-0.972,0.208,-0.155,-0.966,0.185,0.039,-0.982,-0.106,-0.202,-0.974,0.208,-0.155,-0.966,0.185,0.039,-0.982,-0.141,0.15,-0.979,0.135,0.299,-0.945,0.135,0.299,-0.945,0.252,-0.064,-0.965,-0.098,0.099,-0.99
,-0.098,0.099,-0.99,-0.269,-0.003,-0.963,-0.156,-0.121,-0.98,-0.106,-0.202,-0.974,0.185,0.039,-0.982,0.135,0.299,-0.945,0.677,-0.678,0.286,0.483,-0.489,0.726,0.61,-0.315,0.727,-0.435,-0.854,0.286,-0.312,-0.61,0.729,-0.089,-0.683,0.725,-0.607,-0.32,0.727,-0.482,-0.487,0.728,-0.677,-0.678,0.286,-0.674,0.113,0.73,-0.673,-0.113,0.731
,-0.945,-0.156,0.286,-0.676,0.68,0.285,-0.482,0.488,0.728,-0.607,0.32,0.727,0.61,0.315,0.727,0.484,0.486,0.728,0.678,0.677,0.286,-0.176,0.072,0.982,-0.057,0.082,0.995,0.378,0.137,0.916,-0.057,0.082,0.995,0.222,-0.133,0.966,0.378,0.137,0.916,0.378,0.137,0.916,0.323,0.105,0.941,-0.176,0.072,0.982,0.323,0.105,0.941
,0.323,-0.104,0.941,-0.176,-0.071,0.982,0.323,-0.104,0.941,0.373,-0.151,0.916,-0.176,-0.071,0.982,0.373,-0.151,0.916,0.246,0.076,0.966,-0.045,-0.096,0.994,-0.045,-0.096,0.994,-0.176,-0.071,0.982,0.373,-0.151,0.916,-0.945,0.156,0.286,-0.124,0.688,0.715,0.222,-0.133,0.966,-0.057,0.082,0.995,0.676,-0.11,0.728,0.323,-0.104,0.941
,0.323,0.105,0.941,0.378,0.137,0.916,0.222,-0.133,0.966,0.327,0.642,0.693,0.851,0.44,0.286,0.946,0.151,0.286,0.676,0.11,0.728,-0.069,-0.734,0.676,0.246,0.076,0.966,0.373,-0.151,0.916,0.677,-0.678,0.286,0.416,-0.86,0.295,0.377,-0.576,0.725,-0.435,-0.854,0.286,-0.848,-0.446,0.285,0.482,-0.486,0.729,0.373,-0.151,0.916
,0.323,-0.104,0.941,-0.43,0.853,0.295,-0.602,0.798,-0.002,0.809,-0.588,0.001,0.851,-0.44,0.286,0.323,0.105,0.941,0.378,0.137,0.916,0.484,0.486,0.728,0.416,-0.86,0.295,0.855,-0.432,-0.287,0.614,-0.312,-0.725,0.487,-0.484,-0.727,0.373,0.926,0.055,0.142,0.952,0.272,0.174,0.984,-0.026,0.191,-0.659,0.727,0.141,-0.948,0.285
,-0.138,-0.947,0.288,0.946,0.152,-0.288,0.68,0.107,-0.725,0.678,-0.107,-0.727,-0.945,-0.156,0.286,-0.176,0.072,0.982,-0.176,-0.071,0.982,-0.674,-0.113,0.73,-0.945,-0.153,-0.289,-0.672,-0.106,-0.732,-0.671,0.106,-0.733,0.678,0.677,0.286,0.596,0.803,-0.002,0.946,0.151,0.286,0.95,0.312,-0.001,0.677,-0.678,0.286,0.809,-0.588,0.001
,-0.848,-0.446,0.285,-0.945,-0.156,0.286,-0.673,-0.113,0.731,-0.312,-0.61,0.729,-0.435,-0.854,0.286,-0.677,-0.678,0.286,-0.807,0.591,0,-0.848,0.447,0.285,-0.106,-0.202,-0.974,-0.156,-0.121,-0.98,-0.482,-0.48,-0.733,-0.677,-0.678,0.286,-0.481,0.487,0.729,-0.057,0.082,0.995,-0.176,0.072,0.982,0.854,0.433,-0.287,0.677,0.678,-0.287
,0.436,0.525,-0.731,-0.605,-0.308,-0.734,-0.853,-0.434,-0.288,-0.677,-0.678,-0.287,0.19,-0.981,-0.025,0.141,-0.948,0.285,0.437,-0.852,-0.287,0.312,-0.613,-0.726,0.31,-0.646,-0.697,0.851,-0.44,0.286,0.61,-0.315,0.727,0.675,-0.11,0.729,-0.606,-0.309,-0.733,-0.156,-0.121,-0.98,-0.269,-0.003,-0.963,0.438,0.852,-0.289,0.358,0.893,-0.272
,0.381,0.629,-0.677,0.084,-0.671,-0.737,-0.311,-0.605,-0.733,-0.439,-0.851,-0.287,0.679,-0.107,-0.726,0.185,0.039,-0.982,0.208,-0.155,-0.966,0.678,0.677,0.286,0.484,0.486,0.728,0.586,0.506,0.632,0.854,0.433,-0.287,0.95,0.312,-0.001,-0.848,0.447,0.285,-0.607,0.32,0.727,-0.674,0.113,0.73,0.487,-0.485,-0.726,0.208,-0.155,-0.966
,0.039,-0.23,-0.972,0.041,0.947,-0.318,0.174,0.984,-0.026,0.373,0.926,0.055,0.438,0.852,-0.289,0.596,0.803,-0.002,-0.485,0.473,-0.735,-0.693,0.662,-0.285,-0.854,0.434,-0.288,-0.138,-0.947,0.288,0.19,-0.981,-0.025,-0.43,0.853,0.295,-0.332,0.599,0.729,-0.482,0.488,0.728,-0.602,0.798,-0.002,-0.676,0.68,0.285,-0.807,0.591,0
,0.041,0.947,-0.318,-0.454,0.841,-0.295,-0.308,0.595,-0.742,0.555,-0.601,-0.576,0.039,-0.23,-0.972,-0.106,-0.202,-0.974,0.142,0.952,0.272,0.425,0.665,0.615,-0.127,0.664,0.736,-0.269,-0.003,-0.963,-0.098,0.099,-0.99,-0.606,0.309,-0.733,0.153,0.664,-0.732,0.252,-0.064,-0.965,0.135,0.299,-0.945,0.946,-0.152,-0.288,-0.045,-0.096,0.994
,0.246,0.076,0.966,-0.089,-0.68,0.728,-0.098,0.099,-0.99,0.252,-0.064,-0.965,-0.302,0.609,-0.734,-0.176,-0.071,0.982,-0.045,-0.096,0.994,-0.483,-0.487,0.728,-0.141,0.15,-0.979,0.185,0.039,-0.982,0.679,0.107,-0.726,0.135,0.299,-0.945,-0.141,0.15,-0.979,0.626,0.375,-0.684,-0.332,0.599,0.729,-0.43,0.853,0.295,-0.14,0.944,0.298
,0.142,0.952,0.272,0.43,0.843,0.323,0.586,0.506,0.632,0.676,0.11,0.728,0.946,0.151,0.286,0.946,-0.151,0.286,0.191,-0.659,0.727,0.377,-0.576,0.725,0.416,-0.86,0.295,-0.454,0.841,-0.295,-0.693,0.662,-0.285,-0.485,0.473,-0.735,0.68,0.107,-0.725,0.946,0.152,-0.288,0.854,0.433,-0.287,0.312,-0.613,-0.726,0.437,-0.852,-0.287
,0.678,-0.677,-0.287]
,"uvs":[0.264,0.007,0.264,0.068,0.025,0.037,0.264,0.598,0.264,0.659,0.025,0.629,0.264,0.533,0.264,0.594,0.025,0.563,0.009,0.429,0.009,0.368,0.249,0.399,0.009,0.495,0.009,0.434,0.249,0.465,0.123,0.803,0.123,0.705,0.181,0.723,0.126,0.805,0.184,0.725,0.219,0.775,0.128,0.809,0.22,0.779,0.22,0.839,0.062,0.894
,0.119,0.815,0.119,0.912,0.264,0.072,0.264,0.133,0.025,0.103,0.023,0.843,0.116,0.813,0.058,0.892,0.058,0.727,0.116,0.805,0.023,0.775,0.123,0.912,0.123,0.815,0.18,0.894,0.126,0.813,0.219,0.843,0.184,0.892,0.009,0.5,0.249,0.53,0.009,0.561,0.249,0.596,0.009,0.627,0.009,0.566,0.009,0.105,0.249,0.136
,0.009,0.166,0.025,0.234,0.264,0.204,0.264,0.265,0.264,0.467,0.264,0.528,0.025,0.498,0.022,0.779,0.114,0.809,0.022,0.839,0.025,0.432,0.264,0.401,0.264,0.462,0.264,0.396,0.025,0.366,0.264,0.336,0.025,0.3,0.264,0.27,0.264,0.331,0.285,0.893,0.342,0.815,0.342,0.912,0.246,0.778,0.338,0.808,0.246,0.838
,0.339,0.804,0.247,0.774,0.282,0.726,0.286,0.724,0.343,0.705,0.342,0.802,0.347,0.802,0.347,0.705,0.404,0.724,0.247,0.842,0.339,0.812,0.282,0.891,0.009,0.039,0.249,0.07,0.009,0.1,0.009,0.171,0.249,0.201,0.009,0.232,0.009,0.237,0.249,0.267,0.009,0.297,0.009,0.363,0.009,0.302,0.249,0.333,0.35,0.804
,0.407,0.726,0.442,0.775,0.351,0.808,0.443,0.779,0.443,0.839,0.407,0.891,0.35,0.812,0.442,0.843,0.346,0.912,0.346,0.815,0.403,0.893,0.119,0.803,0.062,0.724,0.119,0.705,0.009,0.631,0.249,0.662,0.009,0.692,0.264,0.138,0.264,0.133,0.235,0.77,0.246,0.778,0.233,0.775,0.282,0.891,0.278,0.904,0.273,0.901
,0.264,0.007,0.249,0.004,0.264,0.002,0.342,0.912,0.347,0.925,0.341,0.925,0.347,0.705,0.342,0.692,0.348,0.692,0.411,0.904,0.407,0.891,0.415,0.901,0.415,0.716,0.404,0.724,0.411,0.713,0.442,0.843,0.456,0.842,0.454,0.847,0.264,0.467,0.249,0.465,0.264,0.462,0.347,0.802,0.351,0.808,0.346,0.815,0.009,0.843
,0.023,0.843,0.011,0.848,0.009,0.171,0.009,0.166,0.025,0.169,0.054,0.713,0.058,0.727,0.05,0.716,0.123,0.705,0.118,0.692,0.124,0.692,0.184,0.725,0.188,0.712,0.192,0.715,0.233,0.775,0.219,0.775,0.231,0.77,0.009,0.039,0.009,0.034,0.119,0.912,0.124,0.926,0.118,0.925,0.009,0.561,0.025,0.563,0.009,0.566
,0.009,0.5,0.009,0.495,0.123,0.803,0.126,0.805,0.119,0.815,0.264,0.396,0.219,0.843,0.128,0.809,0.22,0.839,0.058,0.892,0.119,0.815,0.062,0.894,0.123,0.815,0.184,0.892,0.18,0.894,0.118,0.925,0.062,0.894,0.119,0.912,0.023,0.775,0.114,0.809,0.022,0.779,0.009,0.843,0.022,0.779,0.022,0.839,0.264,0.265
,0.264,0.331,0.022,0.839,0.116,0.813,0.023,0.843,0.249,0.465,0.264,0.467,0.025,0.103,0.264,0.072,0.119,0.815,0.123,0.912,0.119,0.912,0.233,0.775,0.246,0.838,0.233,0.842,0.025,0.563,0.249,0.53,0.264,0.533,0.023,0.775,0.05,0.716,0.058,0.727,0.274,0.716,0.247,0.774,0.235,0.77,0.264,0.336,0.126,0.805
,0.181,0.723,0.184,0.725,0.415,0.901,0.442,0.843,0.454,0.847,0.249,0.596,0.264,0.598,0.249,0.004,0.264,0.007,0.025,0.103,0.264,0.133,0.124,0.692,0.181,0.723,0.123,0.705,0.062,0.724,0.118,0.692,0.119,0.705,0.025,0.432,0.264,0.401,0.342,0.815,0.346,0.912,0.342,0.912,0.264,0.27,0.22,0.779,0.126,0.805
,0.219,0.775,0.278,0.712,0.343,0.705,0.286,0.724,0.403,0.893,0.347,0.925,0.346,0.912,0.249,0.201,0.264,0.199,0.235,0.847,0.282,0.891,0.011,0.848,0.058,0.892,0.05,0.902,0.403,0.893,0.35,0.812,0.407,0.891,0.348,0.692,0.404,0.724,0.347,0.705,0.285,0.893,0.341,0.925,0.278,0.904,0.247,0.774,0.338,0.808
,0.246,0.778,0.124,0.926,0.18,0.894,0.187,0.905,0.249,0.662,0.009,0.631,0.231,0.77,0.184,0.725,0.192,0.715,0.246,0.838,0.339,0.812,0.247,0.842,0.249,0.53,0.009,0.5,0.025,0.563,0.249,0.596,0.009,0.566,0.443,0.779,0.456,0.842,0.443,0.839,0.249,0.201,0.264,0.204,0.233,0.842,0.22,0.779,0.233,0.775
,0.249,0.465,0.025,0.432,0.264,0.462,0.415,0.716,0.442,0.775,0.407,0.726,0.282,0.891,0.342,0.815,0.285,0.893,0.192,0.902,0.219,0.843,0.231,0.848,0.35,0.812,0.443,0.839,0.442,0.843,0.407,0.726,0.347,0.802,0.404,0.724,0.009,0.039,0.119,0.803,0.058,0.727,0.062,0.724,0.351,0.808,0.442,0.775,0.443,0.779
,0.123,0.803,0.119,0.705,0.123,0.705,0.342,0.802,0.282,0.726,0.286,0.724,0.347,0.802,0.343,0.705,0.347,0.705,0.025,0.169,0.264,0.138,0.264,0.199,0.009,0.368,0.009,0.363,0.025,0.432,0.009,0.434,0.009,0.429,0.22,0.839,0.231,0.848,0.219,0.843,0.192,0.902,0.18,0.894,0.184,0.892,0.009,0.631,0.009,0.627
,0.062,0.894,0.05,0.902,0.058,0.892,0.025,0.103,0.009,0.105,0.009,0.1,0.023,0.775,0.009,0.776,0.011,0.771,0.009,0.237,0.009,0.232,0.009,0.302,0.009,0.297,0.264,0.396,0.264,0.401,0.454,0.77,0.443,0.779,0.442,0.775,0.249,0.53,0.264,0.528,0.264,0.533,0.249,0.596,0.264,0.594,0.264,0.598,0.282,0.726
,0.278,0.712,0.286,0.724,0.264,0.068,0.264,0.072,0.247,0.842,0.233,0.842,0.246,0.838,0.249,0.201,0.264,0.199,0.264,0.204,0.264,0.265,0.264,0.27,0.264,0.331,0.264,0.336,0.235,0.77,0.247,0.774,0.246,0.778,0.282,0.891,0.285,0.893,0.278,0.904,0.342,0.912,0.346,0.912,0.347,0.925,0.347,0.705,0.343,0.705
,0.342,0.692,0.411,0.904,0.403,0.893,0.407,0.891,0.415,0.716,0.407,0.726,0.404,0.724,0.442,0.843,0.443,0.839,0.456,0.842,0.346,0.815,0.342,0.815,0.347,0.802,0.342,0.815,0.339,0.812,0.338,0.808,0.339,0.804,0.342,0.815,0.338,0.808,0.339,0.804,0.342,0.802,0.347,0.802,0.347,0.802,0.35,0.804,0.351,0.808
,0.351,0.808,0.35,0.812,0.346,0.815,0.342,0.815,0.339,0.804,0.347,0.802,0.009,0.843,0.022,0.839,0.023,0.843,0.054,0.713,0.062,0.724,0.058,0.727,0.123,0.705,0.119,0.705,0.118,0.692,0.184,0.725,0.181,0.723,0.188,0.712,0.233,0.775,0.22,0.779,0.219,0.775,0.119,0.912,0.123,0.912,0.124,0.926,0.126,0.805
,0.128,0.809,0.123,0.815,0.128,0.809,0.126,0.813,0.123,0.815,0.123,0.815,0.119,0.815,0.126,0.805,0.119,0.815,0.116,0.813,0.123,0.803,0.116,0.813,0.114,0.809,0.123,0.803,0.114,0.809,0.116,0.805,0.119,0.803,0.119,0.803,0.123,0.803,0.114,0.809,0.009,0.368,0.219,0.843,0.126,0.813,0.128,0.809,0.058,0.892
,0.116,0.813,0.119,0.815,0.123,0.815,0.126,0.813,0.184,0.892,0.118,0.925,0.055,0.905,0.062,0.894,0.023,0.775,0.116,0.805,0.114,0.809,0.009,0.843,0.009,0.776,0.022,0.779,0.009,0.237,0.009,0.302,0.022,0.839,0.114,0.809,0.116,0.813,0.009,0.495,0.249,0.465,0.025,0.103,0.009,0.1,0.119,0.815,0.123,0.815
,0.123,0.912,0.009,0.166,0.233,0.775,0.246,0.778,0.246,0.838,0.025,0.563,0.009,0.561,0.249,0.53,0.023,0.775,0.011,0.771,0.05,0.716,0.274,0.716,0.282,0.726,0.247,0.774,0.009,0.363,0.126,0.805,0.123,0.803,0.181,0.723,0.415,0.901,0.407,0.891,0.442,0.843,0.009,0.627,0.249,0.596,0.009,0.034,0.249,0.004
,0.009,0.105,0.025,0.103,0.124,0.692,0.188,0.712,0.181,0.723,0.062,0.724,0.054,0.713,0.118,0.692,0.025,0.432,0.009,0.429,0.342,0.815,0.346,0.815,0.346,0.912,0.009,0.297,0.22,0.779,0.128,0.809,0.126,0.805,0.278,0.712,0.342,0.692,0.343,0.705,0.403,0.893,0.411,0.904,0.347,0.925,0.249,0.201,0.009,0.171
,0.235,0.847,0.247,0.842,0.282,0.891,0.011,0.848,0.023,0.843,0.058,0.892,0.403,0.893,0.346,0.815,0.35,0.812,0.348,0.692,0.411,0.713,0.404,0.724,0.285,0.893,0.342,0.912,0.341,0.925,0.247,0.774,0.339,0.804,0.338,0.808,0.124,0.926,0.123,0.912,0.18,0.894,0.264,0.659,0.249,0.662,0.231,0.77,0.219,0.775
,0.184,0.725,0.246,0.838,0.338,0.808,0.339,0.812,0.264,0.528,0.249,0.53,0.025,0.563,0.264,0.594,0.249,0.596,0.443,0.779,0.456,0.775,0.456,0.842,0.009,0.232,0.249,0.201,0.233,0.842,0.22,0.839,0.22,0.779,0.249,0.465,0.009,0.434,0.025,0.432,0.415,0.716,0.454,0.77,0.442,0.775,0.282,0.891,0.339,0.812
,0.342,0.815,0.192,0.902,0.184,0.892,0.219,0.843,0.35,0.812,0.351,0.808,0.443,0.839,0.407,0.726,0.35,0.804,0.347,0.802,0.264,0.068,0.119,0.803,0.116,0.805,0.058,0.727,0.351,0.808,0.35,0.804,0.442,0.775,0.123,0.803,0.119,0.803,0.119,0.705,0.342,0.802,0.339,0.804,0.282,0.726,0.347,0.802,0.342,0.802
,0.343,0.705,0.22,0.839,0.233,0.842,0.231,0.848,0.192,0.902,0.187,0.905,0.18,0.894,0.062,0.894,0.055,0.905,0.05,0.902,0.023,0.775,0.022,0.779,0.009,0.776,0.454,0.77,0.456,0.775,0.443,0.779,0.282,0.726,0.274,0.716,0.278,0.712,0.247,0.842,0.235,0.847,0.233,0.842]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50
,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101
,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,49,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151
,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,2,169,170,171,172,173,174,175,176,56,177,178,179,11,64,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198
,94,51,199,98,66,200,201,202,203,56,204,205,206,88,207,208,209,210,154,49,117,211,212,213,214,215,216,217,218,219,220,221,222,64,98,223,224,225,226,227,228,229,5,230,231,2,232,233,49,234,235
,236,237,238,239,240,241,242,11,243,244,245,246,66,94,247,248,249,250,251,252,253,254,255,256,257,154,258,259,260,124,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,5,279,280
,281,282,283,284,285,286,56,287,288,289,290,291,292,293,294,51,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,2,88,318,319,320,321,322,323,324,325,326,327
,328,329,330,331,332,333,334,335,336,64,337,338,339,340,341,342,343,344,345,346,347,5,348,349,350,351,352,353,354,355,356,357,358,51,359,360,66,361,362,11,363,364,365,366,367,368,369,370,371,372,373
,374,375,376,88,377,378,379,380,381,382,383,384,94,385,386,98,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421
,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,11,470,64
,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,94,489,51,98,490,66,491,492,493,56,494,495,496,497,88,498,499,500,154,501,49,502,503,504,505,506,507,508,509,510,511,512,513
,64,514,98,515,516,517,518,519,520,5,521,522,2,523,524,49,525,526,527,528,529,530,531,532,533,534,11,535,536,537,66,538,94,539,540,541,542,543,544,545,546,547,548,549,154,550,551,552,553,554,555
,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,5,571,572,573,574,575,576,577,578,56,579,580,581,582,583,584,585,586,51,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603
,604,605,606,607,608,609,2,610,88,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646]
}
,{"name":"d12","id":"d12","billboardMode":0,"position":[0,0,0.6432],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false
,"positions":[-0.0331,0.0623,0.0802,-0.0599,0.0384,-0.092,-0.0002,0.0714,-0.0915,0.0636,-0.0321,-0.0895,0.072,0.0002,0.0785,0.0636,0.0326,-0.0895,0.037,-0.0604,0.0785,0.0608,-0.0369,-0.0895,0.0046,-0.0697,-0.09,-0.0315,0.0544,0.0989,-0.0024,0.0019,0.1261,-0.0634,0.0026,0.0989,-0.0538,-0.034,-0.0989,0.0001,-0.064,-0.0989,0.0008,-0.0028,-0.1256,0.0549,0.0335,-0.0962,0.0043,0.0627,-0.0962
,0.0037,0.0031,-0.1222,0.0549,-0.033,-0.0962,0.0037,-0.0027,-0.1222,0.0042,-0.0627,-0.0967,-0.0538,0.0344,-0.0989,0.001,0.0032,-0.125,0.0003,0.0642,-0.0984,-0.0562,0.0302,-0.0989,-0.0562,-0.0299,-0.0989,-0.0029,0.0002,-0.1256,-0.0634,-0.0022,0.0989,-0.0024,-0.0015,0.1261,-0.0315,-0.054,0.0989,0.0049,0.0019,0.1228,0.0351,0.053,0.0962,0.0642,0.0026,0.0962,-0.0706,0.003,0.092
,-0.0619,0.0363,-0.0806,-0.0371,0.0602,0.0915,-0.0303,0.063,0.0915,0.0027,0.0721,-0.0802,0.0342,0.0616,0.0895,0.0351,-0.0525,0.0962,0.0049,-0.0014,0.1228,0.0642,-0.0021,0.0962,0.0025,-0.0033,0.1261,0.0311,-0.0552,0.0967,-0.0274,-0.0564,0.0989,-0.0619,-0.0359,-0.0806,-0.0706,-0.0027,0.092,-0.0375,-0.06,0.092,0.0311,0.0553,0.0962,0.0027,0.0037,0.1255,-0.0271,0.0566,0.0984
,0.0573,-0.029,-0.0962,0.0573,0.0295,-0.0962,0.0061,0.0003,-0.125,0.037,0.0609,0.0785,0.0047,0.0698,-0.0895,0.0608,0.0374,-0.0895,-0.0714,0.0002,0.0806,-0.0627,-0.0331,-0.092,-0.0627,0.0335,-0.092,-0.0306,-0.0629,0.092,0.0356,-0.0625,0.0915,0.0025,-0.072,-0.0806,0.0628,0.0354,-0.0784,0.0712,0.003,0.0895,0.039,0.0588,0.0895,-0.0003,-0.0713,-0.092,-0.0599,-0.038,-0.092
,-0.0335,-0.0621,0.0806,0.0608,-0.0369,-0.0895,0.0636,-0.0321,-0.0895,0.0356,-0.0625,0.0915,0.039,-0.0584,0.0895,0.0712,-0.0025,0.0895,0.0712,0.003,0.0895,-0.0306,-0.0629,0.092,-0.0375,-0.06,0.092,0.0628,0.0354,-0.0784,0.0608,0.0374,-0.0895,0.0628,-0.0349,-0.0784,0.0046,-0.0697,-0.09,0.0608,-0.0369,-0.0895,-0.0003,-0.0713,-0.092,-0.0599,-0.038,-0.092,-0.0371,0.0602,0.0915
,-0.0706,0.003,0.092,-0.0002,0.0714,-0.0915,-0.0599,0.0384,-0.092,0.039,0.0588,0.0895,0.0712,0.003,0.0895,-0.0303,0.063,0.0915,0.0628,0.0354,-0.0784,-0.0375,-0.06,0.092,-0.0627,-0.0331,-0.092,-0.0627,0.0335,-0.092,0.0047,0.0698,-0.0895,0.0636,0.0326,-0.0895,-0.0306,-0.0629,0.092,0.0356,-0.0625,0.0915,0.039,-0.0584,0.0895,-0.0303,0.063,0.0915,0.0342,0.0616,0.0895
,0.0712,-0.0025,0.0895,0.039,-0.0584,0.0895,-0.0706,-0.0027,0.092,-0.0599,0.0384,-0.092,-0.0627,0.0335,-0.092,-0.0599,-0.038,-0.092,-0.0003,-0.0713,-0.092,0.0046,-0.0697,-0.09,0.0608,0.0374,-0.0895,-0.0002,0.0714,-0.0915,0.0608,-0.0369,-0.0895,0.0356,-0.0625,0.0915,-0.0306,-0.0629,0.092,0.039,-0.0584,0.0895,0.0046,-0.0697,-0.09,-0.0003,-0.0713,-0.092,0.0712,-0.0025,0.0895
,-0.0371,0.0602,0.0915,-0.0002,0.0714,-0.0915,0.039,0.0588,0.0895,-0.0303,0.063,0.0915,0.0342,0.0616,0.0895,0.0712,0.003,0.0895,0.0628,0.0354,-0.0784,-0.0375,-0.06,0.092,-0.0706,-0.0027,0.092,-0.0627,-0.0331,-0.092,0.0608,0.0374,-0.0895,0.0047,0.0698,-0.0895,0.0636,-0.0321,-0.0895,0.0636,0.0326,-0.0895,-0.0306,-0.0629,0.092,-0.0371,0.0602,0.0915,-0.0303,0.063,0.0915
,0.0342,0.0616,0.0895,0.039,0.0588,0.0895,0.0712,0.003,0.0895,0.0712,-0.0025,0.0895,-0.0706,-0.0027,0.092,-0.0706,0.003,0.092,-0.0599,0.0384,-0.092,-0.0627,-0.0331,-0.092,-0.0599,-0.038,-0.092,-0.0003,-0.0713,-0.092,0.0636,0.0326,-0.0895,0.0608,0.0374,-0.0895,0.0047,0.0698,-0.0895,-0.0002,0.0714,-0.0915]
,"normals":[-0.407,0.913,-0.014,-0.647,0.655,-0.391,-0.019,0.9,-0.436,0.887,-0.242,-0.393,1,0,0.004,0.887,0.242,-0.393,0.648,-0.761,-0.034,0.656,-0.645,-0.392,0.457,-0.81,-0.367,-0.346,0.447,0.825,-0.169,0.18,0.969,-0.563,0.163,0.81,-0.403,-0.419,-0.814,0.129,-0.565,-0.815,0.325,-0.191,-0.926,0.406,0.415,-0.814,0.433,0.512,-0.741
,0.395,0.586,-0.708,0.409,-0.411,-0.814,0.371,-0.431,-0.823,0.434,-0.51,-0.743,-0.398,0.422,-0.814,0.226,0.318,-0.921,0.136,0.567,-0.812,-0.563,0.145,-0.814,-0.563,-0.145,-0.814,-0.203,0.054,-0.978,-0.562,-0.159,0.812,-0.211,-0.151,0.966,-0.374,-0.41,0.832,0.638,0.024,0.769,0.418,0.41,0.811,0.564,0.157,0.811,-0.888,0.237,0.393
,-0.86,0.509,0.002,-0.602,0.698,0.388,-0.175,0.905,0.388,0.184,0.982,-0.041,0.257,0.883,0.393,0.473,-0.324,0.819,0.659,-0.003,0.752,0.564,-0.157,0.811,0.356,-0.146,0.923,0.184,-0.451,0.873,-0.126,-0.576,0.808,-0.862,-0.507,0.001,-0.889,-0.234,0.393,-0.598,-0.689,0.409,0.17,0.564,0.808,0.381,0.207,0.901,-0.071,0.598,0.798
,0.567,-0.151,-0.81,0.567,0.151,-0.81,0.088,-0.037,-0.995,0.51,0.86,0.006,0.46,0.808,-0.368,0.654,0.647,-0.393,-1,0,0.004,-0.887,-0.242,-0.393,-0.887,0.242,-0.393,-0.186,-0.898,0.4,0.439,-0.775,0.454,0.179,-0.983,-0.04,0.866,0.5,-0.001,0.889,0.234,0.393,0.647,0.653,0.393,-0.027,-0.899,-0.437,-0.649,-0.652,-0.391
,-0.409,-0.912,-0.015,0.656,-0.645,-0.392,0.887,-0.242,-0.393,0.439,-0.775,0.454,0.801,-0.505,0.321,0.889,-0.234,0.393,0.889,0.234,0.393,-0.186,-0.898,0.4,-0.598,-0.689,0.409,0.866,0.5,-0.001,0.654,0.647,-0.393,0.866,-0.5,-0.001,0.457,-0.81,-0.367,0.656,-0.645,-0.392,-0.027,-0.899,-0.437,-0.649,-0.652,-0.391,-0.602,0.698,0.388
,-0.888,0.237,0.393,-0.019,0.9,-0.436,-0.647,0.655,-0.391,0.647,0.653,0.393,0.889,0.234,0.393,-0.175,0.905,0.388,0.866,0.5,-0.001,-0.598,-0.689,0.409,-0.887,-0.242,-0.393,-0.887,0.242,-0.393,0.46,0.808,-0.368,0.887,0.242,-0.393,-0.186,-0.898,0.4,0.439,-0.775,0.454,0.801,-0.505,0.321,-0.175,0.905,0.388,0.257,0.883,0.393
,0.889,-0.234,0.393,0.801,-0.505,0.321,-0.889,-0.234,0.393,-0.647,0.655,-0.391,-0.887,0.242,-0.393,-0.649,-0.652,-0.391,-0.027,-0.899,-0.437,0.457,-0.81,-0.367,0.654,0.647,-0.393,-0.019,0.9,-0.436,0.656,-0.645,-0.392,0.439,-0.775,0.454,-0.186,-0.898,0.4,0.801,-0.505,0.321,0.457,-0.81,-0.367,-0.027,-0.899,-0.437,0.889,-0.234,0.393
,-0.602,0.698,0.388,-0.019,0.9,-0.436,0.647,0.653,0.393,-0.175,0.905,0.388,0.257,0.883,0.393,0.889,0.234,0.393,0.866,0.5,-0.001,-0.598,-0.689,0.409,-0.889,-0.234,0.393,-0.887,-0.242,-0.393,0.654,0.647,-0.393,0.46,0.808,-0.368,0.887,-0.242,-0.393,0.887,0.242,-0.393,-0.186,-0.898,0.4,-0.602,0.698,0.388,-0.175,0.905,0.388
,0.257,0.883,0.393,0.647,0.653,0.393,0.889,0.234,0.393,0.889,-0.234,0.393,-0.889,-0.234,0.393,-0.888,0.237,0.393,-0.647,0.655,-0.391,-0.887,-0.242,-0.393,-0.649,-0.652,-0.391,-0.027,-0.899,-0.437,0.887,0.242,-0.393,0.654,0.647,-0.393,0.46,0.808,-0.368,-0.019,0.9,-0.436]
,"uvs":[0.641,0.152,0.459,0.187,0.459,0.116,0.459,0.425,0.641,0.46,0.46,0.496,0.641,0.383,0.459,0.419,0.459,0.348,0.981,0.281,0.923,0.248,0.982,0.215,0.917,0.154,0.859,0.121,0.918,0.087,0.922,0.013,0.979,0.047,0.921,0.081,0.857,0.051,0.916,0.084,0.857,0.117,0.982,0.117,0.923,0.084,0.982,0.051,0.979,0.121
,0.922,0.154,0.921,0.087,0.979,0.211,0.921,0.245,0.922,0.177,0.918,0.251,0.917,0.318,0.86,0.285,0.653,0.226,0.471,0.19,0.653,0.155,0.653,0.149,0.471,0.113,0.653,0.078,0.857,0.215,0.916,0.248,0.857,0.281,0.918,0.245,0.86,0.21,0.917,0.178,0.471,0.268,0.653,0.232,0.653,0.303,0.922,0.318,0.921,0.251
,0.979,0.285,0.86,0.046,0.917,0.013,0.918,0.081,0.641,0.075,0.459,0.11,0.459,0.039,0.641,0.229,0.459,0.264,0.459,0.193,0.653,0.309,0.653,0.38,0.471,0.345,0.471,0.035,0.653,0.002,0.653,0.072,0.459,0.342,0.459,0.271,0.641,0.306,0.846,0.046,0.85,0.04,0.85,0.204,0.846,0.21,0.653,0.457,0.653,0.463
,0.916,0.166,0.923,0.166,0.472,0.5,0.46,0.502,0.472,0.422,0.846,0.122,0.846,0.046,0.85,0.128,0.916,0.166,0.992,0.286,0.992,0.21,0.992,0.046,0.992,0.122,0.916,0.33,0.85,0.292,0.988,0.292,0.472,0.5,0.923,0.166,0.923,0.166,0.989,0.128,0.989,0.04,0.916,0.002,0.916,0.166,0.85,0.204,0.653,0.386
,0.988,0.292,0.923,0.33,0.847,0.286,0.653,0.386,0.988,0.204,0.992,0.122,0.989,0.128,0.916,0.166,0.85,0.128,0.846,0.122,0.923,0.002,0.992,0.046,0.846,0.046,0.85,0.204,0.916,0.166,0.653,0.386,0.846,0.122,0.85,0.128,0.847,0.286,0.992,0.286,0.992,0.046,0.916,0.33,0.988,0.292,0.923,0.33,0.653,0.463
,0.472,0.5,0.923,0.166,0.988,0.204,0.923,0.166,0.923,0.002,0.989,0.04,0.85,0.04,0.916,0.002,0.916,0.166,0.992,0.286,0.988,0.292,0.923,0.33,0.916,0.33,0.85,0.292,0.847,0.286,0.988,0.204,0.992,0.21,0.992,0.122,0.923,0.166,0.916,0.166,0.85,0.128,0.916,0.002,0.923,0.002,0.989,0.04,0.992,0.046
]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50
,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,51,69,70,71,39,72,8,66,62,73,74,4,59,1,34,35,0,36,55,37,2,29,75,76,5,77,78,19,53,22,58,45,67
,42,28,10,38,54,65,46,57,33,48,30,49,17,23,22,21,26,22,27,10,28,6,79,7,18,80,81,26,12,14,82,12,83,41,72,39,62,6,8,40,43,42,4,79,73,52,17,53,84,11,85
,0,34,1,21,86,87,32,88,89,90,48,50,54,63,65,19,51,53,4,91,5,54,37,55,92,27,29,32,40,30,37,0,2,13,19,14,93,24,94,34,57,59,15,95,16,44,28,42,62,68,60
,51,96,52,97,43,98,45,68,67,10,50,49,57,45,58,79,99,73,9,100,50,101,31,48,32,102,41,6,61,103,68,47,60,104,11,27,24,105,106,25,107,12,20,108,109,79,3,7,52,110,15
,16,111,23,51,18,112,113,43,39,29,44,114,53,17,22,22,26,14,14,19,22,10,49,42,49,30,40,42,49,40,48,31,30,17,16,23,21,24,26,27,11,10,6,115,79,18,20,116,26,25,12
,117,13,12,41,118,72,62,61,6,40,39,43,4,3,79,52,15,17,119,9,11,0,35,34,21,23,120,32,31,121,122,123,48,54,56,63,19,18,51,4,124,125,54,38,37,126,127,27,32,41,40
,37,36,0,13,20,19,128,25,24,34,33,57,15,129,130,44,29,28,62,66,68,51,131,132,133,44,43,45,47,68,10,9,50,57,46,45,9,134,135,136,137,31,32,138,139,140,141,11,24,21,142
,25,143,144,20,13,145,52,146,147,16,148,149]
}
,{"name":"d10","id":"d10","billboardMode":0,"position":[0,0,0.2585],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false
,"positions":[0.0022,0.0776,-0.0802,0.0417,0.063,0.0894,-0.0394,0.0648,0.0919,-0.0724,-0.0196,0.0921,-0.0716,0.0241,-0.0804,-0.0466,0.0598,0.0921,0.0684,0.018,-0.0963,0.0073,-0.0018,-0.1227,0.0446,-0.0542,-0.0963,-0.0017,-0.0724,0.098,-0.0656,-0.026,0.098,-0.0017,-0.0052,0.126,-0.0647,0.0259,-0.0994,-0.0016,0.0055,-0.1263,-0.0016,0.0716,-0.0991,0.0408,-0.0624,-0.0906,-0.0386,-0.0644,-0.0936
,0.0022,-0.0782,0.0787,-0.068,-0.0186,0.098,-0.0436,0.0565,0.098,-0.0041,0.0022,0.126,0.0734,-0.0233,0.0766,0.0727,0.019,-0.0906,0.0476,-0.0575,-0.0906,-0.0671,0.0185,-0.0994,-0.0426,-0.0559,-0.0994,-0.0041,-0.0019,-0.1266,-0.0371,0.0609,0.0977,0.0395,0.0592,0.0951,0.0022,0.0067,0.1257,0.0054,0.0739,-0.0906,0.0701,0.0269,-0.0906,0.0459,0.0616,0.0765,-0.0697,-0.0278,0.0921
,-0.0021,-0.0769,0.0921,-0.043,-0.0631,-0.0805,0.0456,0.0548,0.0951,0.0692,-0.018,0.0951,0.0073,0.0021,0.1222,-0.0456,-0.0594,-0.0936,-0.0716,0.0195,-0.0935,-0.0723,-0.0241,0.079,0.0669,-0.0251,0.0951,0.0049,-0.0703,0.0953,0.0061,-0.0052,0.1257,0.0709,-0.0269,0.0894,0.045,-0.0611,-0.078,0.0054,-0.0745,0.0894,-0.0689,0.0278,-0.0935,-0.0021,0.0761,-0.0933,-0.0437,0.0634,0.0786
,0.0735,-0.0189,0.0894,0.0485,0.0581,0.0894,0.0728,0.0234,-0.0779,0.0386,-0.0588,-0.0965,0.0022,-0.0065,-0.1263,-0.0364,-0.0605,-0.0994,0.0054,0.0739,-0.0906,0.0022,0.0776,-0.0802,-0.0021,0.0761,-0.0933,0.0727,0.019,-0.0906,0.0728,0.0234,-0.0779,0.0701,0.0269,-0.0906,0.0456,0.0548,0.0951,0.0417,0.063,0.0894,0.0485,0.0581,0.0894,-0.0724,-0.0196,0.0921,-0.0656,-0.026,0.098
,-0.0697,-0.0278,0.0921,0.0054,-0.0745,0.0894,0.0022,-0.0782,0.0787,-0.0021,-0.0769,0.0921,-0.0364,-0.0605,-0.0994,-0.0456,-0.0594,-0.0936,-0.0386,-0.0644,-0.0936,-0.0689,0.0278,-0.0935,-0.0716,0.0241,-0.0804,-0.0716,0.0195,-0.0935,-0.0394,0.0648,0.0919,-0.0466,0.0598,0.0921,-0.0437,0.0634,0.0786,0.0735,-0.0189,0.0894,0.0709,-0.0269,0.0894,0.0408,-0.0624,-0.0906,0.045,-0.0611,-0.078
,0.0476,-0.0575,-0.0906,0.0073,-0.0018,-0.1227,-0.0016,0.0055,-0.1263,-0.0041,-0.0019,-0.1266,-0.0041,0.0022,0.126,0.0022,0.0067,0.1257,0.0073,0.0021,0.1222,0.0728,0.0234,-0.0779,0.0727,0.019,-0.0906,0.0728,0.0234,-0.0779,0.0459,0.0616,0.0765,0.0701,0.0269,-0.0906,-0.0017,-0.0052,0.126,0.0049,-0.0703,0.0953,-0.0017,-0.0724,0.098,0.0661,0.0252,-0.0963,0.0054,0.0739,-0.0906
,0.005,0.0696,-0.0963,-0.0697,-0.0278,0.0921,-0.0386,-0.0644,-0.0936,0.0386,-0.0588,-0.0965,-0.0364,-0.0605,-0.0994,0.0395,0.0592,0.0951,-0.0394,0.0648,0.0919,0.0417,0.063,0.0894,0.0073,0.0021,0.1222,0.0395,0.0592,0.0951,0.0456,0.0548,0.0951,0.045,-0.0611,-0.078,0.0476,-0.0575,-0.0906,-0.0437,0.0634,0.0786,-0.0716,0.0241,-0.0804,-0.0689,0.0278,-0.0935,0.0735,-0.0189,0.0894
,0.0456,0.0548,0.0951,0.0485,0.0581,0.0894,0.0669,-0.0251,0.0951,0.0073,0.0021,0.1222,0.0692,-0.018,0.0951,0.0022,-0.0065,-0.1263,-0.0426,-0.0559,-0.0994,-0.0364,-0.0605,-0.0994,0.0459,0.0616,0.0765,0.0022,0.0776,-0.0802,0.0054,0.0739,-0.0906,-0.0724,-0.0196,0.0921,-0.0436,0.0565,0.098,-0.068,-0.0186,0.098,-0.0437,0.0634,0.0786,0.0022,0.0776,-0.0802,-0.0394,0.0648,0.0919
,-0.0017,-0.0724,0.098,-0.0697,-0.0278,0.0921,-0.0656,-0.026,0.098,0.0054,-0.0745,0.0894,0.0669,-0.0251,0.0951,0.0709,-0.0269,0.0894,-0.0716,0.0241,-0.0804,-0.0724,-0.0196,0.0921,-0.0689,0.0278,-0.0935,-0.0016,0.0716,-0.0991,-0.0021,0.0761,-0.0933,-0.0041,0.0022,0.126,-0.0656,-0.026,0.098,-0.068,-0.0186,0.098,0.0476,-0.0575,-0.0906,0.0684,0.018,-0.0963,0.0446,-0.0542,-0.0963
,0.0022,0.0067,0.1257,-0.0436,0.0565,0.098,-0.0371,0.0609,0.0977,-0.0456,-0.0594,-0.0936,-0.0671,0.0185,-0.0994,-0.0716,0.0195,-0.0935,-0.0016,0.0716,-0.0991,0.005,0.0053,-0.1227,0.005,0.0696,-0.0963,0.0684,0.018,-0.0963,0.0661,0.0252,-0.0963,-0.0671,0.0185,-0.0994,-0.0016,0.0055,-0.1263,-0.0647,0.0259,-0.0994,0.0022,-0.0782,0.0787,-0.0021,-0.0769,0.0921,0.045,-0.0611,-0.078
,0.0022,-0.0782,0.0787,0.0054,-0.0745,0.0894,0.0073,-0.0018,-0.1227,0.0386,-0.0588,-0.0965,0.0446,-0.0542,-0.0963,0.0661,0.0252,-0.0963,0.005,0.0696,-0.0963,0.005,0.0053,-0.1227,0.0459,0.0616,0.0765,0.0485,0.0581,0.0894,0.0417,0.063,0.0894,-0.0371,0.0609,0.0977,-0.0466,0.0598,0.0921,-0.0394,0.0648,0.0919,-0.0724,-0.0196,0.0921,-0.0697,-0.0278,0.0921,0.0049,-0.0703,0.0953
,-0.0021,-0.0769,0.0921,-0.0017,-0.0724,0.098,0.0735,-0.0189,0.0894,0.0669,-0.0251,0.0951,0.0692,-0.018,0.0951,0.005,0.0696,-0.0963,-0.0021,0.0761,-0.0933,-0.0016,0.0716,-0.0991,-0.0647,0.0259,-0.0994,-0.0716,0.0195,-0.0935,-0.0671,0.0185,-0.0994,-0.0386,-0.0644,-0.0936,-0.0456,-0.0594,-0.0936,0.0408,-0.0624,-0.0906,0.0446,-0.0542,-0.0963,0.0386,-0.0588,-0.0965,0.0727,0.019,-0.0906
,0.0661,0.0252,-0.0963,0.0684,0.018,-0.0963,0.0456,0.0548,0.0951,0.0395,0.0592,0.0951,0.0417,0.063,0.0894,-0.0724,-0.0196,0.0921,-0.068,-0.0186,0.098,-0.0656,-0.026,0.098,-0.0364,-0.0605,-0.0994,-0.0426,-0.0559,-0.0994,-0.0456,-0.0594,-0.0936,-0.0041,-0.0019,-0.1266,0.0022,-0.0065,-0.1263,0.0073,-0.0018,-0.1227,0.0073,-0.0018,-0.1227,-0.0016,0.0055,-0.1263,0.0061,-0.0052,0.1257
,-0.0017,-0.0052,0.126,0.0073,0.0021,0.1222,-0.0017,-0.0052,0.126,-0.0041,0.0022,0.126,0.0073,0.0021,0.1222,0.0735,-0.0189,0.0894,0.0728,0.0234,-0.0779,0.0728,0.0234,-0.0779,0.0485,0.0581,0.0894,0.0459,0.0616,0.0765,-0.0017,-0.0052,0.126,0.0061,-0.0052,0.1257,0.0049,-0.0703,0.0953,0.0701,0.0269,-0.0906,0.0054,0.0739,-0.0906,-0.0456,-0.0594,-0.0936,-0.0386,-0.0644,-0.0936
,0.0408,-0.0624,-0.0906,0.0386,-0.0588,-0.0965,0.0395,0.0592,0.0951,-0.0371,0.0609,0.0977,-0.0394,0.0648,0.0919,0.0073,0.0021,0.1222,0.0022,0.0067,0.1257,0.0395,0.0592,0.0951,0.045,-0.0611,-0.078,0.0709,-0.0269,0.0894,-0.0437,0.0634,0.0786,-0.0466,0.0598,0.0921,-0.0716,0.0241,-0.0804,0.0735,-0.0189,0.0894,0.0692,-0.018,0.0951,0.0456,0.0548,0.0951,0.0669,-0.0251,0.0951
,0.0061,-0.0052,0.1257,0.0073,0.0021,0.1222,0.0022,-0.0065,-0.1263,-0.0041,-0.0019,-0.1266,-0.0426,-0.0559,-0.0994,0.0459,0.0616,0.0765,0.0417,0.063,0.0894,0.0022,0.0776,-0.0802,-0.0724,-0.0196,0.0921,-0.0466,0.0598,0.0921,-0.0436,0.0565,0.098,-0.0437,0.0634,0.0786,-0.0021,0.0761,-0.0933,0.0022,0.0776,-0.0802,-0.0017,-0.0724,0.098,-0.0021,-0.0769,0.0921,-0.0697,-0.0278,0.0921
,0.0054,-0.0745,0.0894,0.0049,-0.0703,0.0953,0.0669,-0.0251,0.0951,-0.0716,0.0195,-0.0935,-0.0716,0.0241,-0.0804,-0.0689,0.0278,-0.0935,-0.0647,0.0259,-0.0994,-0.0016,0.0716,-0.0991,-0.0041,0.0022,0.126,-0.0017,-0.0052,0.126,-0.0656,-0.026,0.098,0.0476,-0.0575,-0.0906,0.0727,0.019,-0.0906,0.0684,0.018,-0.0963,0.0022,0.0067,0.1257,-0.0041,0.0022,0.126,-0.0436,0.0565,0.098
,-0.0456,-0.0594,-0.0936,-0.0426,-0.0559,-0.0994,-0.0671,0.0185,-0.0994,-0.0016,0.0716,-0.0991,-0.0016,0.0055,-0.1263,0.0073,-0.0018,-0.1227,0.0684,0.018,-0.0963,-0.0671,0.0185,-0.0994,-0.0041,-0.0019,-0.1266,-0.0016,0.0055,-0.1263,0.0022,-0.0782,0.0787,-0.0386,-0.0644,-0.0936,0.045,-0.0611,-0.078,0.0408,-0.0624,-0.0906,0.0022,-0.0782,0.0787,0.0073,-0.0018,-0.1227,0.0022,-0.0065,-0.1263
,0.0386,-0.0588,-0.0965,-0.0371,0.0609,0.0977,-0.0436,0.0565,0.098,-0.0466,0.0598,0.0921,0.0049,-0.0703,0.0953,0.0054,-0.0745,0.0894,-0.0021,-0.0769,0.0921,0.0735,-0.0189,0.0894,0.0709,-0.0269,0.0894,0.0669,-0.0251,0.0951,0.005,0.0696,-0.0963,0.0054,0.0739,-0.0906,-0.0021,0.0761,-0.0933,-0.0647,0.0259,-0.0994,-0.0689,0.0278,-0.0935,-0.0716,0.0195,-0.0935,0.0408,-0.0624,-0.0906
,0.0476,-0.0575,-0.0906,0.0446,-0.0542,-0.0963,0.0727,0.019,-0.0906,0.0701,0.0269,-0.0906,0.0661,0.0252,-0.0963]
,"normals":[0.107,0.994,-0.038,0.325,0.887,0.328,-0.27,0.904,0.333,-0.943,-0.004,0.333,-0.949,0.314,-0.011,-0.751,0.57,0.335,0.646,-0.009,-0.763,0.402,-0.002,-0.916,0.586,-0.331,-0.74,-0.038,-0.636,0.771,-0.523,-0.388,0.759,-0.011,-0.187,0.982,-0.515,0.39,-0.763,0.084,0.24,-0.967,0.026,0.627,-0.778,0.331,-0.885,-0.327,-0.279,-0.898,-0.341
,0.113,-0.993,0.031,-0.651,0.007,0.759,-0.516,0.391,0.762,-0.16,0.11,0.981,0.951,-0.311,0,0.94,0.002,-0.341,0.761,-0.555,-0.336,-0.645,-0.004,-0.764,-0.522,-0.377,-0.765,-0.119,-0.039,-0.992,-0.159,0.635,0.756,0.269,0.598,0.755,0.137,0.258,0.956,0.473,0.82,-0.324,0.763,0.549,-0.341,0.645,0.764,-0.015,-0.765,-0.551,0.333
,-0.108,-0.92,0.376,-0.587,-0.809,-0.009,0.579,0.339,0.742,0.668,0.066,0.742,0.38,0.124,0.917,-0.757,-0.557,-0.341,-0.94,0.002,-0.341,-0.951,-0.311,0,0.562,-0.343,0.753,0.391,-0.594,0.703,0.315,-0.137,0.939,0.766,-0.552,0.33,0.648,-0.762,0.008,0.481,-0.82,0.311,-0.761,0.551,-0.342,-0.111,0.916,-0.386,-0.581,0.814,-0.002
,0.943,-0.004,0.333,0.76,0.557,0.333,0.951,0.308,-0.01,0.281,-0.595,-0.753,0.184,-0.189,-0.964,-0.169,-0.628,-0.76,0.492,0.8,-0.344,0.175,0.983,-0.061,-0.111,0.916,-0.386,0.94,0.002,-0.342,0.951,0.308,-0.01,0.763,0.549,-0.341,0.579,0.339,0.742,0.296,0.894,0.335,0.76,0.557,0.333,-0.943,-0.004,0.333,-0.523,-0.388,0.759
,-0.765,-0.551,0.333,0.505,-0.801,0.323,0.183,-0.981,0.055,-0.107,-0.921,0.376,-0.17,-0.628,-0.76,-0.757,-0.557,-0.341,-0.279,-0.898,-0.34,-0.763,0.55,-0.341,-0.951,0.309,-0.009,-0.94,0.002,-0.342,-0.27,0.903,0.334,-0.749,0.572,0.334,-0.576,0.817,-0.003,0.943,-0.004,0.333,0.766,-0.552,0.33,0.301,-0.893,-0.334,0.593,-0.805,-0.014
,0.754,-0.56,-0.345,0.451,0.047,-0.891,0.091,0.201,-0.975,-0.129,-0.05,-0.99,-0.132,0.058,0.99,0.229,0.059,0.972,0.444,0.136,0.886,0.951,0.308,-0.01,0.94,0.002,-0.342,0.951,0.308,-0.01,0.593,0.805,0.005,0.763,0.549,-0.341,-0.08,-0.136,0.987,0.557,-0.555,0.617,0.187,-0.598,0.779,0.519,0.385,-0.763,0.473,0.82,-0.324
,0.442,0.563,-0.698,-0.765,-0.551,0.333,-0.279,-0.895,-0.347,0.281,-0.6,-0.749,-0.171,-0.621,-0.765,0.269,0.589,0.762,-0.27,0.907,0.323,0.323,0.883,0.34,0.444,0.136,0.886,0.079,0.705,0.705,0.382,0.456,0.804,0.593,-0.805,-0.014,0.754,-0.56,-0.345,-0.576,0.817,-0.003,-0.951,0.309,-0.009,-0.763,0.55,-0.341,0.943,-0.004,0.333
,0.579,0.339,0.742,0.76,0.557,0.333,0.47,-0.541,0.698,0.444,0.136,0.886,0.577,-0.145,0.804,0.228,-0.062,-0.972,-0.536,-0.366,-0.761,-0.185,-0.615,-0.767,0.593,0.805,0.005,0.175,0.983,-0.061,0.492,0.8,-0.344,-0.943,-0.004,0.333,-0.516,0.391,0.762,-0.651,0.007,0.759,-0.576,0.817,-0.003,0.175,0.983,-0.061,-0.27,0.903,0.334
,-0.038,-0.636,0.771,-0.765,-0.551,0.334,-0.523,-0.388,0.759,0.484,-0.824,0.295,0.554,-0.332,0.763,0.76,-0.55,0.347,-0.951,0.309,-0.009,-0.943,-0.004,0.333,-0.761,0.551,-0.341,0.027,0.627,-0.779,-0.111,0.915,-0.387,-0.132,0.058,0.99,-0.523,-0.388,0.759,-0.651,0.007,0.759,0.761,-0.555,-0.336,0.646,-0.009,-0.763,0.586,-0.331,-0.74
,0.229,0.059,0.972,-0.516,0.391,0.762,-0.159,0.635,0.756,-0.757,-0.557,-0.341,-0.645,-0.004,-0.764,-0.94,0.002,-0.341,0.026,0.627,-0.778,0.417,0.239,-0.877,0.442,0.563,-0.698,0.646,-0.009,-0.763,0.519,0.385,-0.763,-0.648,-0.02,-0.761,0.091,0.201,-0.975,-0.52,0.371,-0.769,0.183,-0.981,0.055,-0.107,-0.921,0.376,0.593,-0.805,-0.014
,0.183,-0.981,0.055,0.505,-0.801,0.323,0.451,0.047,-0.891,0.099,-0.699,-0.709,0.397,-0.442,-0.805,0.519,0.385,-0.763,0.442,0.563,-0.698,0.377,0.226,-0.898,0.593,0.805,0.005,0.76,0.557,0.333,0.296,0.894,0.335,-0.159,0.635,0.756,-0.749,0.572,0.334,-0.27,0.903,0.334,-0.943,-0.004,0.333,-0.765,-0.551,0.333,0.391,-0.594,0.703
,-0.107,-0.921,0.376,-0.03,-0.641,0.767,0.943,-0.004,0.333,0.562,-0.343,0.753,0.667,0.067,0.742,0.441,0.562,-0.7,-0.111,0.916,-0.386,0.057,0.648,-0.76,-0.515,0.39,-0.763,-0.94,0.002,-0.342,-0.644,-0.005,-0.765,-0.279,-0.898,-0.34,-0.757,-0.557,-0.341,0.301,-0.893,-0.334,0.585,-0.329,-0.741,0.311,-0.599,-0.738,0.94,0.002,-0.342
,0.519,0.385,-0.763,0.645,-0.01,-0.764,0.579,0.339,0.742,0.269,0.598,0.755,0.296,0.894,0.335,-0.943,-0.004,0.333,-0.651,0.007,0.759,-0.523,-0.388,0.759,-0.17,-0.628,-0.76,-0.523,-0.374,-0.766,-0.757,-0.557,-0.341,-0.129,-0.05,-0.99,0.228,-0.062,-0.972,0.451,0.047,-0.891,0.451,0.047,-0.891,0.091,0.201,-0.975,0.205,0.053,0.977
,-0.08,-0.136,0.987,0.444,0.136,0.886,-0.08,-0.136,0.987,-0.132,0.058,0.99,0.444,0.136,0.886,0.943,-0.004,0.333,0.951,0.308,-0.01,0.951,0.308,-0.01,0.76,0.557,0.333,0.593,0.805,0.005,-0.08,-0.136,0.987,0.205,0.053,0.977,0.557,-0.555,0.617,0.763,0.549,-0.341,0.473,0.82,-0.324,-0.757,-0.557,-0.341,-0.279,-0.895,-0.347
,0.332,-0.887,-0.32,0.281,-0.6,-0.749,0.269,0.589,0.762,-0.158,0.645,0.747,-0.27,0.907,0.323,0.444,0.136,0.886,0.229,0.059,0.972,0.079,0.705,0.705,0.593,-0.805,-0.014,0.766,-0.552,0.33,-0.576,0.817,-0.003,-0.749,0.572,0.334,-0.951,0.309,-0.009,0.943,-0.004,0.333,0.668,0.066,0.742,0.579,0.339,0.742,0.47,-0.541,0.698
,0.205,0.053,0.977,0.444,0.136,0.886,0.228,-0.062,-0.972,-0.129,-0.05,-0.99,-0.536,-0.366,-0.761,0.593,0.805,0.005,0.296,0.894,0.335,0.175,0.983,-0.061,-0.943,-0.004,0.333,-0.751,0.57,0.335,-0.516,0.391,0.762,-0.576,0.817,-0.003,-0.111,0.916,-0.386,0.175,0.983,-0.061,-0.038,-0.636,0.771,-0.108,-0.92,0.376,-0.765,-0.551,0.334
,0.484,-0.824,0.295,0.401,-0.604,0.689,0.554,-0.332,0.763,-0.94,0.002,-0.342,-0.951,0.309,-0.009,-0.761,0.551,-0.341,-0.515,0.391,-0.762,0.027,0.627,-0.779,-0.132,0.058,0.99,-0.08,-0.136,0.987,-0.523,-0.388,0.759,0.761,-0.555,-0.336,0.94,0.002,-0.341,0.646,-0.009,-0.763,0.229,0.059,0.972,-0.132,0.058,0.99,-0.516,0.391,0.762
,-0.757,-0.557,-0.341,-0.522,-0.377,-0.765,-0.645,-0.004,-0.764,0.026,0.627,-0.778,0.091,0.201,-0.975,0.451,0.047,-0.891,0.646,-0.009,-0.763,-0.648,-0.02,-0.761,-0.129,-0.05,-0.99,0.091,0.201,-0.975,0.183,-0.981,0.055,-0.279,-0.898,-0.34,0.593,-0.805,-0.014,0.301,-0.893,-0.334,0.183,-0.981,0.055,0.451,0.047,-0.891,0.228,-0.062,-0.972
,0.099,-0.699,-0.709,-0.159,0.635,0.756,-0.516,0.394,0.761,-0.749,0.572,0.334,0.391,-0.594,0.703,0.505,-0.801,0.323,-0.107,-0.921,0.376,0.943,-0.004,0.333,0.766,-0.552,0.33,0.562,-0.343,0.753,0.441,0.562,-0.7,0.492,0.8,-0.344,-0.111,0.916,-0.386,-0.515,0.39,-0.763,-0.763,0.55,-0.341,-0.94,0.002,-0.342,0.301,-0.893,-0.334
,0.754,-0.56,-0.345,0.585,-0.329,-0.741,0.94,0.002,-0.342,0.763,0.549,-0.341,0.519,0.385,-0.763]
,"uvs":[0.444,0.395,0.265,0.441,0.265,0.352,0.264,0.254,0.443,0.298,0.265,0.342,0.986,0.785,0.927,0.742,0.986,0.699,0.843,0.568,0.893,0.499,0.916,0.569,0.843,0.746,0.915,0.746,0.893,0.815,0.458,0.109,0.457,0.195,0.279,0.151,0.901,0.497,0.983,0.523,0.923,0.566,0.279,0.053,0.459,0.011,0.458,0.099,0.843,0.738
,0.893,0.669,0.915,0.738,0.988,0.529,0.988,0.616,0.928,0.573,0.458,0.399,0.459,0.487,0.28,0.445,0.264,0.244,0.265,0.156,0.443,0.2,0.983,0.623,0.9,0.649,0.923,0.579,0.457,0.205,0.457,0.293,0.278,0.249,0.892,0.646,0.843,0.576,0.916,0.577,0.265,0.058,0.444,0.104,0.265,0.146,0.457,0.302,0.458,0.39
,0.279,0.347,0.266,0.537,0.266,0.45,0.445,0.492,0.981,0.692,0.923,0.735,0.901,0.666,0.458,0.399,0.444,0.395,0.458,0.39,0.459,0.011,0.445,0.006,0.459,0.002,0.983,0.623,0.996,0.62,0.989,0.629,0.9,0.488,0.893,0.499,0.889,0.492,0.265,0.146,0.279,0.151,0.265,0.156,0.901,0.666,0.889,0.661,0.9,0.658
,0.457,0.302,0.443,0.298,0.457,0.293,0.265,0.352,0.265,0.342,0.279,0.347,0.265,0.048,0.265,0.058,0.458,0.109,0.444,0.104,0.458,0.099,0.927,0.742,0.915,0.746,0.915,0.738,0.923,0.566,0.928,0.573,0.923,0.579,0.445,0.006,0.459,0.011,0.445,0.492,0.28,0.445,0.459,0.487,0.916,0.569,0.843,0.576,0.843,0.568
,0.981,0.791,0.899,0.826,0.901,0.817,0.264,0.244,0.9,0.658,0.981,0.692,0.901,0.666,0.988,0.616,0.996,0.525,0.996,0.62,0.923,0.579,0.988,0.616,0.983,0.623,0.444,0.104,0.458,0.099,0.279,0.347,0.443,0.298,0.457,0.302,0.899,0.658,0.983,0.623,0.989,0.629,0.892,0.646,0.923,0.579,0.9,0.649,0.923,0.735
,0.893,0.669,0.901,0.666,0.28,0.445,0.444,0.395,0.458,0.399,0.9,0.488,0.983,0.523,0.901,0.497,0.279,0.347,0.444,0.395,0.265,0.352,0.843,0.568,0.889,0.492,0.893,0.499,0.834,0.577,0.892,0.646,0.888,0.654,0.443,0.298,0.264,0.254,0.835,0.748,0.893,0.815,0.889,0.822,0.923,0.566,0.893,0.499,0.901,0.497
,0.994,0.695,0.986,0.785,0.986,0.699,0.928,0.573,0.983,0.523,0.988,0.529,0.889,0.661,0.843,0.738,0.834,0.737,0.893,0.815,0.923,0.748,0.901,0.817,0.986,0.785,0.981,0.791,0.843,0.738,0.915,0.746,0.843,0.746,0.279,0.151,0.265,0.156,0.444,0.104,0.279,0.151,0.265,0.146,0.927,0.742,0.981,0.692,0.986,0.699
,0.981,0.791,0.901,0.817,0.923,0.748,0.28,0.445,0.266,0.45,0.265,0.441,0.988,0.529,0.989,0.516,0.996,0.525,0.264,0.254,0.264,0.244,0.843,0.576,0.835,0.567,0.843,0.568,0.899,0.658,0.892,0.646,0.9,0.649,0.901,0.817,0.889,0.822,0.893,0.815,0.843,0.746,0.834,0.737,0.843,0.738,0.457,0.195,0.457,0.205
,0.987,0.686,0.986,0.699,0.981,0.692,0.994,0.789,0.981,0.791,0.986,0.785,0.983,0.623,0.988,0.616,0.996,0.62,0.9,0.488,0.901,0.497,0.893,0.499,0.901,0.666,0.893,0.669,0.889,0.661,0.915,0.738,0.923,0.735,0.927,0.742,0.927,0.742,0.915,0.746,0.916,0.577,0.916,0.569,0.923,0.579,0.916,0.569,0.923,0.566
,0.923,0.579,0.265,0.048,0.445,0.006,0.445,0.492,0.266,0.45,0.28,0.445,0.916,0.569,0.916,0.577,0.843,0.576,0.987,0.797,0.899,0.826,0.457,0.205,0.9,0.658,0.987,0.686,0.981,0.692,0.988,0.616,0.988,0.529,0.996,0.525,0.923,0.579,0.928,0.573,0.988,0.616,0.444,0.104,0.265,0.058,0.279,0.347,0.265,0.342
,0.443,0.298,0.899,0.658,0.9,0.649,0.983,0.623,0.892,0.646,0.916,0.577,0.923,0.579,0.923,0.735,0.915,0.738,0.893,0.669,0.28,0.445,0.265,0.441,0.444,0.395,0.9,0.488,0.989,0.516,0.983,0.523,0.279,0.347,0.458,0.39,0.444,0.395,0.843,0.568,0.835,0.567,0.889,0.492,0.834,0.577,0.843,0.576,0.892,0.646
,0.457,0.293,0.443,0.298,0.835,0.748,0.843,0.746,0.893,0.815,0.923,0.566,0.916,0.569,0.893,0.499,0.994,0.695,0.994,0.789,0.986,0.785,0.928,0.573,0.923,0.566,0.983,0.523,0.889,0.661,0.893,0.669,0.843,0.738,0.893,0.815,0.915,0.746,0.927,0.742,0.986,0.785,0.843,0.738,0.915,0.738,0.915,0.746,0.279,0.151
,0.457,0.195,0.444,0.104,0.458,0.109,0.279,0.151,0.927,0.742,0.923,0.735,0.981,0.692,0.988,0.529,0.983,0.523,0.989,0.516,0.843,0.576,0.834,0.577,0.835,0.567,0.899,0.658,0.888,0.654,0.892,0.646,0.901,0.817,0.899,0.826,0.889,0.822,0.843,0.746,0.835,0.748,0.834,0.737,0.987,0.686,0.994,0.695,0.986,0.699
,0.994,0.789,0.987,0.797,0.981,0.791]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50
,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,21,82,83,84,85,86,87,88,89,90,91,21,92,93,94,95,96,97,98,99
,100,101,102,35,41,103,104,105,106,107,108,109,110,111,112,113,21,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,41,142,143,144,145,146
,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,160,162,163,164,165,166,167,35,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,41,184,185,186,187,188,189,190,191,192,193,194
,195,196,197,35,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,160,219,220,221,222,223,224,225,21,226,227,228,229,230,231,232,233,100,234,235,35,236,41,237,238,239
,240,241,242,243,244,245,246,247,21,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,41,275,276,277,278,279,280,281,282,283,284,285,286,287,288
,289,290,291,292,293,160,160,294,295,296,297,298,299,300,35,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327]
}
,{"name":"d8","id":"d8","billboardMode":0,"position":[0,0,-0.1119],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false
,"positions":[-0.0484,0.0504,-0.0752,-0.0041,0.0698,0.091,-0.0701,0.006,0.0931,-0.0459,-0.0517,-0.0941,0.0007,-0.0727,0.0766,0.0455,-0.0511,-0.0912,-0.0538,-0.0437,-0.0941,-0.0525,0.0457,-0.0938,-0.0723,0.0004,0.076,-0.0044,-0.0633,0.1015,-0.0629,-0.0049,0.1015,-0.0038,-0.0044,0.1248,-0.0629,0.0056,0.1015,-0.0038,0.0628,0.0992,-0.0038,0.0058,0.1248,0.0635,-0.0044,0.0992,0.0065,-0.0614,0.0992
,0.0065,-0.0044,0.1248,-0.0472,0.0409,-0.1022,-0.0484,-0.039,-0.1025,-0.0068,0.0005,-0.1282,0.0705,-0.0048,0.091,0.0511,-0.049,-0.0752,0.0068,-0.0684,0.091,0.0511,0.0504,-0.0752,0.0705,0.0062,0.091,0.0068,0.0698,0.091,-0.0048,-0.0705,0.0931,-0.0515,-0.0494,-0.0777,-0.0701,-0.0052,0.0931,0.048,-0.0388,-0.0994,0.048,0.0402,-0.0994,0.0086,0.0007,-0.1248,-0.0428,0.0526,-0.0912
,0.0455,0.0526,-0.0912,0.0014,0.072,0.0746,0.0065,0.0628,0.0992,0.0635,0.0058,0.0992,0.0065,0.0058,0.1248,0.0533,0.0449,-0.0912,0.0533,-0.0435,-0.0912,0.0726,0.0007,0.0746,0.0408,0.0474,-0.0994,-0.0381,0.0474,-0.0994,0.0014,0.0079,-0.1248,-0.0459,-0.0517,-0.0941,-0.0484,-0.039,-0.1025,-0.0538,-0.0437,-0.0941,0.0455,-0.0511,-0.0912,0.0511,-0.049,-0.0752,0.0533,-0.0435,-0.0912
,0.0533,0.0449,-0.0912,0.0511,0.0504,-0.0752,0.0455,0.0526,-0.0912,-0.0525,0.0457,-0.0938,-0.0381,0.0474,-0.0994,-0.0428,0.0526,-0.0912,0.0007,-0.0069,-0.1282,0.0014,0.0079,-0.1248,-0.0068,0.0005,-0.1282,0.0065,0.0628,0.0992,-0.0041,0.0698,0.091,0.0068,0.0698,0.091,0.0635,-0.0044,0.0992,0.0705,0.0062,0.091,0.0705,-0.0048,0.091,0.0068,-0.0684,0.091,0.0007,-0.0727,0.0766
,-0.0048,-0.0705,0.0931,-0.0701,-0.0052,0.0931,-0.0723,0.0004,0.076,-0.0701,0.006,0.0931,-0.0038,0.0058,0.1248,0.0065,-0.0044,0.1248,-0.0038,-0.0044,0.1248,0.0455,-0.0511,-0.0912,-0.0409,-0.0464,-0.1025,-0.0459,-0.0517,-0.0941,-0.0409,-0.0464,-0.1025,-0.0068,0.0005,-0.1282,-0.0484,-0.039,-0.1025,0.0068,-0.0684,0.091,0.0635,-0.0044,0.0992,0.0705,-0.0048,0.091,0.0068,0.0698,0.091
,0.0635,0.0058,0.0992,0.0065,0.0628,0.0992,-0.0515,-0.0494,-0.0777,0.0007,-0.0727,0.0766,-0.0459,-0.0517,-0.0941,-0.0629,0.0056,0.1015,-0.0038,-0.0044,0.1248,-0.0629,-0.0049,0.1015,0.0726,0.0007,0.0746,0.0511,0.0504,-0.0752,0.0533,0.0449,-0.0912,0.0014,0.0079,-0.1248,0.048,0.0402,-0.0994,0.0408,0.0474,-0.0994,0.0065,0.0058,0.1248,-0.0038,0.0628,0.0992,0.0065,0.0628,0.0992
,-0.0701,0.006,0.0931,-0.0038,0.0628,0.0992,-0.0629,0.0056,0.1015,0.0086,0.0007,-0.1248,0.0411,-0.0474,-0.1022,0.048,-0.0388,-0.0994,0.0007,-0.0727,0.0766,0.0511,-0.049,-0.0752,0.0455,-0.0511,-0.0912,-0.0038,-0.0044,0.1248,0.0065,-0.0614,0.0992,-0.0044,-0.0633,0.1015,0.0065,-0.0044,0.1248,0.0635,0.0058,0.0992,0.0635,-0.0044,0.0992,0.0511,-0.049,-0.0752,0.0726,0.0007,0.0746
,0.0533,-0.0435,-0.0912,-0.0525,0.0457,-0.0938,-0.0484,-0.039,-0.1025,-0.0472,0.0409,-0.1022,-0.0515,-0.0494,-0.0777,-0.0723,0.0004,0.076,-0.0701,-0.0052,0.0931,-0.0472,0.0409,-0.1022,0.0014,0.0079,-0.1248,-0.0381,0.0474,-0.0994,-0.0048,-0.0705,0.0931,-0.0629,-0.0049,0.1015,-0.0044,-0.0633,0.1015,-0.0723,0.0004,0.076,-0.0484,0.0504,-0.0752,-0.0701,0.006,0.0931,0.0014,0.072,0.0746
,-0.0484,0.0504,-0.0752,-0.0428,0.0526,-0.0912,0.0014,0.072,0.0746,0.0511,0.0504,-0.0752,0.0068,0.0698,0.091,-0.0428,0.0526,-0.0912,0.0408,0.0474,-0.0994,0.0455,0.0526,-0.0912,0.0533,0.0449,-0.0912,0.048,-0.0388,-0.0994,0.0533,-0.0435,-0.0912,-0.0409,-0.0464,-0.1025,0.0411,-0.0474,-0.1022,0.0007,-0.0069,-0.1282,0.0014,0.072,0.0746,0.0068,0.0698,0.091,-0.0041,0.0698,0.091
,0.0726,0.0007,0.0746,0.0705,-0.0048,0.091,0.0705,0.0062,0.091,0.0065,-0.0614,0.0992,-0.0048,-0.0705,0.0931,-0.0044,-0.0633,0.1015,-0.0701,-0.0052,0.0931,-0.0629,0.0056,0.1015,-0.0629,-0.0049,0.1015,-0.0484,0.0504,-0.0752,-0.0525,0.0457,-0.0938,-0.0428,0.0526,-0.0912,-0.0459,-0.0517,-0.0941,-0.0538,-0.0437,-0.0941,0.0455,-0.0511,-0.0912,0.048,-0.0388,-0.0994,0.0411,-0.0474,-0.1022
,0.0533,0.0449,-0.0912,0.0408,0.0474,-0.0994,0.048,0.0402,-0.0994,-0.0459,-0.0517,-0.0941,-0.0409,-0.0464,-0.1025,-0.0484,-0.039,-0.1025,-0.0525,0.0457,-0.0938,-0.0472,0.0409,-0.1022,-0.0381,0.0474,-0.0994,0.0086,0.0007,-0.1248,0.0014,0.0079,-0.1248,0.0065,0.0628,0.0992,-0.0038,0.0628,0.0992,-0.0041,0.0698,0.091,0.0635,-0.0044,0.0992,0.0635,0.0058,0.0992,0.0705,0.0062,0.091
,-0.0038,0.0058,0.1248,0.0065,0.0058,0.1248,0.0065,-0.0044,0.1248,0.0455,-0.0511,-0.0912,0.0411,-0.0474,-0.1022,-0.0409,-0.0464,-0.1025,-0.0068,0.0005,-0.1282,0.0068,-0.0684,0.091,0.0065,-0.0614,0.0992,0.0635,-0.0044,0.0992,0.0068,0.0698,0.091,0.0705,0.0062,0.091,0.0635,0.0058,0.0992,-0.0515,-0.0494,-0.0777,-0.0048,-0.0705,0.0931,0.0007,-0.0727,0.0766,-0.0629,0.0056,0.1015
,-0.0038,0.0058,0.1248,-0.0038,-0.0044,0.1248,0.0726,0.0007,0.0746,0.0705,0.0062,0.091,0.0511,0.0504,-0.0752,0.0014,0.0079,-0.1248,0.0086,0.0007,-0.1248,0.048,0.0402,-0.0994,0.0065,0.0058,0.1248,-0.0038,0.0058,0.1248,-0.0038,0.0628,0.0992,-0.0701,0.006,0.0931,-0.0041,0.0698,0.091,-0.0038,0.0628,0.0992,0.0086,0.0007,-0.1248,0.0007,-0.0727,0.0766,0.0068,-0.0684,0.091
,0.0511,-0.049,-0.0752,-0.0038,-0.0044,0.1248,0.0065,-0.0044,0.1248,0.0065,-0.0614,0.0992,0.0065,-0.0044,0.1248,0.0065,0.0058,0.1248,0.0635,0.0058,0.0992,0.0511,-0.049,-0.0752,0.0705,-0.0048,0.091,0.0726,0.0007,0.0746,-0.0525,0.0457,-0.0938,-0.0538,-0.0437,-0.0941,-0.0484,-0.039,-0.1025,-0.0515,-0.0494,-0.0777,-0.0538,-0.0437,-0.0941,-0.0723,0.0004,0.076,-0.0472,0.0409,-0.1022
,-0.0068,0.0005,-0.1282,0.0014,0.0079,-0.1248,-0.0048,-0.0705,0.0931,-0.0701,-0.0052,0.0931,-0.0629,-0.0049,0.1015,-0.0723,0.0004,0.076,-0.0525,0.0457,-0.0938,-0.0484,0.0504,-0.0752,0.0014,0.072,0.0746,-0.0041,0.0698,0.091,-0.0484,0.0504,-0.0752,0.0014,0.072,0.0746,0.0455,0.0526,-0.0912,0.0511,0.0504,-0.0752,-0.0428,0.0526,-0.0912,-0.0381,0.0474,-0.0994,0.0408,0.0474,-0.0994
,0.0533,0.0449,-0.0912,0.048,0.0402,-0.0994,0.048,-0.0388,-0.0994,0.0065,-0.0614,0.0992,0.0068,-0.0684,0.091,-0.0048,-0.0705,0.0931,-0.0701,-0.0052,0.0931,-0.0701,0.006,0.0931,-0.0629,0.0056,0.1015,0.0455,-0.0511,-0.0912,0.0533,-0.0435,-0.0912,0.048,-0.0388,-0.0994,0.0533,0.0449,-0.0912,0.0455,0.0526,-0.0912,0.0408,0.0474,-0.0994]
,"normals":[-0.661,0.75,0.006,-0.339,0.871,0.355,-0.857,0.365,0.364,-0.367,-0.863,-0.346,0.048,-0.999,0.016,0.413,-0.853,-0.318,-0.86,-0.355,-0.367,-0.798,0.472,-0.374,-0.999,0.047,0.011,-0.17,-0.603,0.779,-0.583,-0.266,0.767,-0.145,-0.186,0.972,-0.577,0.279,0.767,-0.258,0.604,0.754,-0.18,0.202,0.963,0.598,-0.271,0.754,0.367,-0.572,0.734
,0.235,-0.193,0.953,-0.525,0.35,-0.776,-0.614,-0.224,-0.757,-0.181,0.108,-0.978,0.867,-0.346,0.359,0.729,-0.684,-0.004,0.457,-0.82,0.346,0.707,0.707,-0.012,0.867,0.346,0.359,0.346,0.867,0.359,-0.246,-0.887,0.391,-0.712,-0.702,-0.011,-0.867,-0.344,0.36,0.689,-0.171,-0.704,0.614,0.232,-0.754,0.385,0.104,-0.917,-0.276,0.905,-0.322
,0.366,0.856,-0.366,0,1,-0.001,0.271,0.598,0.754,0.598,0.271,0.754,0.201,0.201,0.959,0.856,0.366,-0.366,0.876,-0.35,-0.332,1,0,-0.001,0.232,0.614,-0.754,-0.113,0.691,-0.713,0.109,0.387,-0.916,-0.368,-0.863,-0.346,-0.614,-0.225,-0.757,-0.862,-0.354,-0.364,0.404,-0.857,-0.32,0.729,-0.684,-0.004,0.827,-0.397,-0.399
,0.855,0.366,-0.366,0.707,0.707,-0.012,0.366,0.856,-0.366,-0.798,0.473,-0.374,-0.113,0.691,-0.714,-0.28,0.902,-0.329,0.101,-0.184,-0.978,0.109,0.387,-0.916,-0.185,0.107,-0.977,0.271,0.598,0.754,-0.339,0.871,0.355,0.346,0.867,0.359,0.598,-0.271,0.754,0.867,0.346,0.359,0.867,-0.346,0.359,0.452,-0.819,0.352,0.048,-0.999,0.016
,-0.245,-0.887,0.391,-0.867,-0.344,0.36,-0.999,0.047,0.011,-0.857,0.366,0.363,-0.18,0.202,0.963,0.19,-0.203,0.96,-0.182,-0.193,0.964,0.412,-0.88,-0.238,-0.228,-0.56,-0.796,-0.339,-0.827,-0.45,-0.233,-0.645,-0.728,-0.185,0.107,-0.977,-0.614,-0.224,-0.757,0.457,-0.82,0.346,0.598,-0.271,0.754,0.867,-0.346,0.359,0.346,0.867,0.359
,0.598,0.271,0.754,0.271,0.598,0.754,-0.712,-0.702,-0.011,0.048,-0.999,0.016,-0.367,-0.863,-0.346,-0.577,0.279,0.767,-0.182,-0.193,0.964,-0.583,-0.266,0.767,1,0,-0.001,0.707,0.707,-0.012,0.856,0.366,-0.366,0.109,0.387,-0.916,0.614,0.232,-0.754,0.232,0.614,-0.754,0.201,0.201,0.959,-0.258,0.604,0.754,0.271,0.598,0.754
,-0.86,0.368,0.354,-0.251,0.597,0.761,-0.584,0.289,0.758,0.387,0.103,-0.916,0.328,-0.603,-0.727,0.689,-0.171,-0.704,0.117,-0.992,0.038,0.678,-0.735,-0.027,0.346,-0.871,-0.348,-0.182,-0.193,0.964,0.459,-0.549,0.699,-0.04,-0.585,0.81,0.19,-0.203,0.96,0.598,0.271,0.754,0.598,-0.271,0.754,0.729,-0.684,-0.004,1,0,-0.001
,0.876,-0.35,-0.332,-0.798,0.472,-0.374,-0.614,-0.224,-0.757,-0.525,0.35,-0.776,-0.712,-0.702,-0.011,-0.999,0.047,0.011,-0.867,-0.344,0.36,-0.525,0.35,-0.776,0.109,0.387,-0.916,-0.113,0.691,-0.713,-0.246,-0.887,0.391,-0.583,-0.266,0.767,-0.17,-0.603,0.779,-0.999,-0.037,-0.014,-0.601,0.799,0.029,-0.894,0.302,0.33,0,1,-0.001
,-0.661,0.75,0.006,-0.276,0.905,-0.322,0,1,-0.001,0.707,0.707,-0.012,0.346,0.867,0.359,-0.276,0.905,-0.322,0.232,0.614,-0.754,0.366,0.856,-0.366,0.856,0.366,-0.366,0.69,-0.171,-0.704,0.876,-0.35,-0.332,-0.233,-0.645,-0.728,0.328,-0.603,-0.727,0.101,-0.184,-0.978,0,1,-0.001,0.346,0.867,0.359,-0.339,0.871,0.355
,1,0,-0.001,0.867,-0.346,0.359,0.867,0.346,0.359,0.367,-0.571,0.734,-0.245,-0.887,0.391,-0.159,-0.613,0.774,-0.867,-0.344,0.36,-0.578,0.279,0.767,-0.581,-0.268,0.768,-0.661,0.75,0.006,-0.798,0.473,-0.374,-0.28,0.902,-0.329,-0.368,-0.863,-0.346,-0.862,-0.354,-0.364,0.404,-0.857,-0.32,0.688,-0.162,-0.707,0.477,-0.584,-0.657
,0.855,0.366,-0.366,0.232,0.614,-0.754,0.614,0.232,-0.754,-0.368,-0.863,-0.346,-0.226,-0.645,-0.73,-0.614,-0.225,-0.757,-0.798,0.473,-0.374,-0.523,0.368,-0.769,-0.113,0.691,-0.714,0.387,0.103,-0.916,0.109,0.387,-0.916,0.271,0.598,0.754,-0.258,0.604,0.754,-0.339,0.871,0.355,0.598,-0.271,0.754,0.598,0.271,0.754,0.867,0.346,0.359
,-0.18,0.202,0.963,0.201,0.201,0.959,0.19,-0.203,0.96,0.412,-0.88,-0.238,0.304,-0.698,-0.648,-0.233,-0.645,-0.728,-0.185,0.107,-0.977,0.457,-0.82,0.346,0.367,-0.572,0.734,0.598,-0.271,0.754,0.346,0.867,0.359,0.867,0.346,0.359,0.598,0.271,0.754,-0.712,-0.702,-0.011,-0.246,-0.887,0.391,0.048,-0.999,0.016,-0.577,0.279,0.767
,-0.18,0.202,0.963,-0.182,-0.193,0.964,1,0,-0.001,0.867,0.346,0.359,0.707,0.707,-0.012,0.109,0.387,-0.916,0.387,0.103,-0.916,0.614,0.232,-0.754,0.201,0.201,0.959,-0.18,0.202,0.963,-0.258,0.604,0.754,-0.86,0.368,0.354,-0.338,0.867,0.367,-0.251,0.597,0.761,0.387,0.103,-0.916,0.117,-0.992,0.038,0.506,-0.777,0.375
,0.678,-0.735,-0.027,-0.182,-0.193,0.964,0.19,-0.203,0.96,0.459,-0.549,0.699,0.19,-0.203,0.96,0.201,0.201,0.959,0.598,0.271,0.754,0.729,-0.684,-0.004,0.867,-0.346,0.359,1,0,-0.001,-0.798,0.472,-0.374,-0.86,-0.355,-0.367,-0.614,-0.224,-0.757,-0.712,-0.702,-0.011,-0.86,-0.355,-0.367,-0.999,0.047,0.011,-0.525,0.35,-0.776
,-0.185,0.107,-0.977,0.109,0.387,-0.916,-0.246,-0.887,0.391,-0.867,-0.344,0.36,-0.583,-0.266,0.767,-0.999,-0.037,-0.014,-0.771,0.537,-0.342,-0.601,0.799,0.029,0,1,-0.001,-0.339,0.871,0.355,-0.661,0.75,0.006,0,1,-0.001,0.366,0.856,-0.366,0.707,0.707,-0.012,-0.276,0.905,-0.322,-0.113,0.691,-0.713,0.232,0.614,-0.754
,0.856,0.366,-0.366,0.614,0.232,-0.754,0.69,-0.171,-0.704,0.367,-0.571,0.734,0.452,-0.819,0.352,-0.245,-0.887,0.391,-0.867,-0.344,0.36,-0.857,0.366,0.363,-0.578,0.279,0.767,0.404,-0.857,-0.32,0.827,-0.397,-0.399,0.688,-0.162,-0.707,0.855,0.366,-0.366,0.366,0.856,-0.366,0.232,0.614,-0.754]
,"uvs":[0.827,0.331,0.655,0.382,0.654,0.285,0.845,0.218,0.671,0.169,0.844,0.121,0.845,0.231,0.845,0.325,0.672,0.278,0.954,0.445,0.865,0.445,0.91,0.4,0.857,0.437,0.858,0.349,0.902,0.393,0.962,0.349,0.961,0.437,0.917,0.393,0.546,0.851,0.632,0.851,0.589,0.895,0.654,0.065,0.827,0.115,0.653,0.162,0.83,0.44
,0.656,0.488,0.655,0.394,0.653,0.175,0.827,0.225,0.654,0.272,0.632,0.955,0.545,0.953,0.588,0.91,0.845,0.338,0.846,0.433,0.673,0.388,0.865,0.341,0.954,0.341,0.91,0.386,0.846,0.013,0.844,0.109,0.672,0.059,0.537,0.946,0.538,0.859,0.581,0.903,0.65,0.851,0.632,0.851,0.639,0.84,0.844,0.121,0.827,0.115
,0.844,0.109,0.846,0.013,0.829,0.007,0.846,0.002,0.538,0.84,0.538,0.859,0.527,0.851,0.596,0.903,0.581,0.903,0.589,0.895,0.865,0.341,0.846,0.34,0.857,0.33,0.962,0.349,0.962,0.33,0.973,0.341,0.653,0.162,0.671,0.169,0.653,0.175,0.654,0.272,0.672,0.278,0.654,0.285,0.902,0.393,0.917,0.393,0.91,0.4
,0.65,0.955,0.639,0.859,0.65,0.851,0.639,0.859,0.589,0.895,0.632,0.851,0.973,0.446,0.962,0.349,0.973,0.341,0.857,0.33,0.954,0.341,0.865,0.341,0.827,0.225,0.671,0.169,0.845,0.218,0.857,0.437,0.91,0.4,0.865,0.445,0.672,0.059,0.829,0.007,0.846,0.013,0.581,0.903,0.545,0.953,0.537,0.946,0.91,0.386
,0.858,0.349,0.865,0.341,0.846,0.445,0.858,0.349,0.857,0.437,0.588,0.91,0.639,0.947,0.632,0.955,0.671,0.169,0.827,0.115,0.844,0.121,0.91,0.4,0.961,0.437,0.954,0.445,0.917,0.393,0.954,0.341,0.962,0.349,0.827,0.115,0.672,0.059,0.844,0.109,0.538,0.84,0.632,0.851,0.546,0.851,0.827,0.225,0.672,0.278
,0.654,0.272,0.546,0.851,0.581,0.903,0.538,0.859,0.961,0.456,0.865,0.445,0.954,0.445,0.672,0.278,0.827,0.331,0.654,0.285,0.673,0.388,0.827,0.331,0.845,0.338,0.673,0.388,0.83,0.44,0.655,0.394,0.527,0.851,0.537,0.946,0.526,0.954,0.536,0.965,0.632,0.955,0.639,0.966,0.639,0.859,0.639,0.947,0.596,0.903
,0.673,0.388,0.655,0.394,0.655,0.382,0.672,0.059,0.654,0.065,0.654,0.053,0.961,0.437,0.961,0.456,0.954,0.445,0.857,0.456,0.857,0.437,0.865,0.445,0.827,0.331,0.845,0.325,0.845,0.338,0.845,0.218,0.845,0.231,0.65,0.955,0.632,0.955,0.639,0.947,0.536,0.965,0.537,0.946,0.545,0.953,0.65,0.851,0.639,0.859
,0.632,0.851,0.538,0.84,0.546,0.851,0.538,0.859,0.588,0.91,0.581,0.903,0.865,0.341,0.858,0.349,0.846,0.34,0.962,0.349,0.954,0.341,0.962,0.33,0.902,0.393,0.91,0.386,0.917,0.393,0.65,0.955,0.639,0.947,0.639,0.859,0.589,0.895,0.973,0.446,0.961,0.437,0.962,0.349,0.857,0.33,0.962,0.33,0.954,0.341
,0.827,0.225,0.653,0.175,0.671,0.169,0.857,0.437,0.902,0.393,0.91,0.4,0.672,0.059,0.654,0.053,0.829,0.007,0.581,0.903,0.588,0.91,0.545,0.953,0.91,0.386,0.902,0.393,0.858,0.349,0.846,0.445,0.846,0.34,0.858,0.349,0.588,0.91,0.671,0.169,0.653,0.162,0.827,0.115,0.91,0.4,0.917,0.393,0.961,0.437
,0.917,0.393,0.91,0.386,0.954,0.341,0.827,0.115,0.654,0.065,0.672,0.059,0.538,0.84,0.639,0.84,0.632,0.851,0.827,0.225,0.845,0.231,0.672,0.278,0.546,0.851,0.589,0.895,0.581,0.903,0.961,0.456,0.857,0.456,0.865,0.445,0.672,0.278,0.845,0.325,0.827,0.331,0.673,0.388,0.655,0.382,0.827,0.331,0.673,0.388
,0.846,0.433,0.83,0.44,0.527,0.851,0.538,0.859,0.537,0.946,0.536,0.965,0.545,0.953,0.632,0.955,0.961,0.437,0.973,0.446,0.961,0.456,0.857,0.456,0.846,0.445,0.857,0.437,0.65,0.955,0.639,0.966,0.632,0.955,0.536,0.965,0.526,0.954,0.537,0.946]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50
,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101
,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152
,153,154,155,156,157,158,159,160,161,162,163,164,28,165,166,167,168,169,170,171,172,173,174,175,176,177,178,57,179,180,181,182,183,184,185,186,187,188,189,190,191,76,192,57,193,194,195,196,197,198,199
,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,57,106,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248
,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269]
}
,{"name":"d6","id":"d6","billboardMode":0,"position":[0,0,-0.4823],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false
,"positions":[0.0519,0.0296,-0.0793,0.0519,-0.0257,0.092,0.004,0.0572,0.092,0.0041,0.0496,0.0989,0.0453,-0.0218,0.0989,0.0041,0.002,0.121,-0.0517,-0.0259,0.0948,-0.0529,0.0313,-0.0824,-0.0024,0.0602,0.0965,0.0049,-0.0596,-0.0962,0.0519,-0.0296,0.0792,0.0519,0.0256,-0.0922,0.0444,-0.0289,0.1037,-0.0412,-0.0282,0.1018,0.0013,-0.004,0.1269,-0.0449,-0.0219,0.1018,-0.0024,0.0523,0.1036
,-0.0024,0.0024,0.1269,-0.0449,0.0228,-0.101,-0.0021,-0.0506,-0.1014,-0.0021,-0.0017,-0.1241,0.005,-0.0516,-0.1034,0.0453,0.0217,-0.099,0.005,-0.0018,-0.1264,-0.002,-0.0584,-0.0944,-0.0517,0.0268,-0.094,-0.0517,-0.03,0.0817,-0.0482,-0.032,0.0948,0.0514,-0.0328,0.0965,0.0013,-0.0617,-0.0829,0.0484,0.0316,-0.0921,0.0012,0.0623,0.0832,-0.0493,0.0333,-0.0957,0.0519,0.0256,-0.0922
,0.0519,0.0296,-0.0793,0.0484,0.0316,-0.0921,-0.0493,0.0333,-0.0957,-0.0529,0.0313,-0.0824,-0.0517,0.0268,-0.094,-0.002,-0.0584,-0.0944,0.0013,-0.0617,-0.0829,0.0049,-0.0596,-0.0962,-0.0021,-0.0017,-0.1241,0.005,-0.0018,-0.1264,0.0013,0.0045,-0.1264,-0.0449,-0.0219,0.1018,-0.0482,-0.032,0.0948,-0.0517,-0.0259,0.0948,-0.0024,0.0602,0.0965,0.0012,0.0623,0.0832,0.004,0.0572,0.092
,0.0514,-0.0328,0.0965,0.0453,-0.0218,0.0989,0.0519,-0.0257,0.092,0.0041,0.002,0.121,0.0013,-0.004,0.1269,-0.0024,0.0024,0.1269,-0.0021,-0.0017,-0.1241,-0.0423,0.0294,-0.1029,-0.0449,0.0228,-0.101,-0.0529,0.0313,-0.0824,-0.0517,-0.03,0.0817,-0.0517,0.0268,-0.094,-0.002,-0.0584,-0.0944,-0.0449,0.0228,-0.101,-0.0517,0.0268,-0.094,0.0013,-0.0617,-0.0829,0.0519,-0.0296,0.0792
,0.0049,-0.0596,-0.0962,0.0453,0.0217,-0.099,0.0418,0.0278,-0.0989,0.0519,0.0296,-0.0793,0.0519,-0.0296,0.0792,0.0519,-0.0257,0.092,0.0444,-0.0289,0.1037,0.0041,0.002,0.121,0.0453,-0.0218,0.0989,0.0012,0.0623,0.0832,-0.0529,0.0313,-0.0824,-0.0493,0.0333,-0.0957,0.0519,0.0296,-0.0793,0.0012,0.0623,0.0832,0.0484,0.0316,-0.0921,-0.0493,0.0333,-0.0957,0.0418,0.0278,-0.0989
,0.0484,0.0316,-0.0921,-0.0024,0.0024,0.1269,-0.0412,-0.0282,0.1018,-0.0449,-0.0219,0.1018,-0.0024,0.0602,0.0965,-0.0449,-0.0219,0.1018,-0.0517,-0.0259,0.0948,0.0519,-0.0257,0.092,0.0041,0.0496,0.0989,0.004,0.0572,0.092,0.0514,-0.0328,0.0965,-0.0412,-0.0282,0.1018,0.0444,-0.0289,0.1037,-0.0517,-0.03,0.0817,0.0013,-0.0617,-0.0829,-0.002,-0.0584,-0.0944,0.005,-0.0516,-0.1034
,-0.0021,-0.0017,-0.1241,-0.0021,-0.0506,-0.1014,0.0041,0.002,0.121,-0.0024,0.0523,0.1036,0.0041,0.0496,0.0989,0.0049,-0.0596,-0.0962,0.0453,0.0217,-0.099,0.005,-0.0516,-0.1034,0.0418,0.0278,-0.0989,-0.0423,0.0294,-0.1029,0.0013,0.0045,-0.1264,-0.0024,0.0602,0.0965,0.0041,0.0496,0.0989,-0.0024,0.0523,0.1036,0.0519,-0.0296,0.0792,0.0514,-0.0328,0.0965,0.0519,-0.0257,0.092
,-0.0517,-0.0259,0.0948,-0.0482,-0.032,0.0948,-0.0493,0.0333,-0.0957,-0.0449,0.0228,-0.101,-0.0423,0.0294,-0.1029,0.0519,0.0256,-0.0922,0.0453,0.0217,-0.099,-0.0021,-0.0506,-0.1014,0.0049,-0.0596,-0.0962,0.005,-0.0516,-0.1034,-0.0449,-0.0219,0.1018,-0.0412,-0.0282,0.1018,-0.0482,-0.032,0.0948,0.0514,-0.0328,0.0965,0.0444,-0.0289,0.1037,0.0453,-0.0218,0.0989,-0.0021,-0.0017,-0.1241
,-0.0529,0.0313,-0.0824,-0.0517,-0.0259,0.0948,-0.0517,-0.03,0.0817,-0.002,-0.0584,-0.0944,-0.0021,-0.0506,-0.1014,-0.0449,0.0228,-0.101,0.0013,-0.0617,-0.0829,0.0514,-0.0328,0.0965,0.0519,-0.0296,0.0792,0.005,-0.0018,-0.1264,0.0453,0.0217,-0.099,0.0519,0.0296,-0.0793,0.0519,0.0256,-0.0922,0.0519,-0.0296,0.0792,0.0444,-0.0289,0.1037,0.0013,-0.004,0.1269,0.0041,0.002,0.121
,0.0012,0.0623,0.0832,-0.0024,0.0602,0.0965,-0.0529,0.0313,-0.0824,0.0519,0.0296,-0.0793,0.004,0.0572,0.092,0.0012,0.0623,0.0832,-0.0493,0.0333,-0.0957,-0.0423,0.0294,-0.1029,0.0418,0.0278,-0.0989,-0.0024,0.0024,0.1269,0.0013,-0.004,0.1269,-0.0412,-0.0282,0.1018,-0.0024,0.0602,0.0965,-0.0024,0.0523,0.1036,-0.0449,-0.0219,0.1018,0.0519,-0.0257,0.092,0.0453,-0.0218,0.0989
,0.0041,0.0496,0.0989,0.0514,-0.0328,0.0965,-0.0482,-0.032,0.0948,-0.0412,-0.0282,0.1018,-0.0517,-0.03,0.0817,-0.0482,-0.032,0.0948,0.0013,-0.0617,-0.0829,0.005,-0.0516,-0.1034,0.005,-0.0018,-0.1264,-0.0021,-0.0017,-0.1241,0.0041,0.002,0.121,-0.0024,0.0024,0.1269,-0.0024,0.0523,0.1036,0.0049,-0.0596,-0.0962,0.0519,0.0256,-0.0922,0.0453,0.0217,-0.099,-0.0024,0.0602,0.0965
,0.004,0.0572,0.092,0.0041,0.0496,0.0989,-0.0493,0.0333,-0.0957,-0.0517,0.0268,-0.094,-0.0449,0.0228,-0.101,0.0519,0.0256,-0.0922,0.0484,0.0316,-0.0921,-0.0021,-0.0506,-0.1014,-0.002,-0.0584,-0.0944,0.0049,-0.0596,-0.0962]
,"normals":[0.903,0.428,0.026,0.935,0.238,0.264,0.707,0.625,0.331,0.685,0.423,0.593,0.708,0.382,0.593,0.616,0.355,0.704,-0.911,-0.044,0.41,-0.888,0.459,-0.014,-0.149,0.85,0.506,0.341,-0.813,-0.472,0.91,-0.413,-0.035,0.913,0.043,-0.407,0.465,-0.341,0.817,-0.281,-0.604,0.746,0.193,-0.148,0.97,-0.663,0.059,0.747,-0.061,0.573,0.817
,-0.029,0.24,0.97,-0.686,-0.203,-0.699,-0.517,-0.493,-0.699,-0.447,-0.256,-0.857,0.264,-0.543,-0.797,0.682,-0.041,-0.73,0.216,-0.186,-0.959,-0.546,-0.746,-0.382,-0.918,-0.102,-0.382,-0.865,-0.501,-0.021,-0.495,-0.766,0.41,0.686,-0.565,0.458,0.02,-0.999,-0.04,0.512,0.758,-0.403,0.124,0.991,0.043,-0.555,0.689,-0.466,0.913,0.041,-0.406
,0.903,0.428,0.026,0.511,0.759,-0.403,-0.555,0.689,-0.466,-0.888,0.459,-0.014,-0.919,-0.104,-0.38,-0.549,-0.745,-0.379,0.02,-0.999,-0.04,0.341,-0.814,-0.471,-0.447,-0.257,-0.857,0.215,-0.186,-0.959,-0.055,0.289,-0.956,-0.662,0.059,0.747,-0.494,-0.768,0.409,-0.911,-0.043,0.41,-0.148,0.85,0.506,0.124,0.991,0.043,0.708,0.625,0.329
,0.687,-0.564,0.458,0.708,0.382,0.594,0.935,0.239,0.261,0.616,0.355,0.704,0.193,-0.148,0.97,-0.044,0.244,0.969,-0.447,-0.257,-0.857,-0.341,0.501,-0.795,-0.686,-0.203,-0.699,-0.919,0.393,-0.037,-0.899,-0.438,0.001,-0.897,-0.164,-0.411,-0.546,-0.746,-0.382,-0.686,-0.203,-0.699,-0.918,-0.102,-0.382,-0.138,-0.99,0.001,0.961,-0.267,-0.075
,0.243,-0.877,-0.414,0.683,-0.042,-0.73,0.303,0.614,-0.729,0.903,0.428,0.026,0.91,-0.413,-0.035,0.935,0.238,0.264,0.465,-0.341,0.817,0.616,0.355,0.704,0.708,0.382,0.593,0.124,0.991,0.043,-0.888,0.459,-0.014,-0.555,0.689,-0.466,0.813,0.582,-0.029,0.304,0.947,0.102,0.352,0.806,-0.476,-0.557,0.699,-0.447,0.303,0.591,-0.748
,0.506,0.748,-0.43,-0.044,0.244,0.969,-0.281,-0.604,0.745,-0.663,0.059,0.747,-0.153,0.853,0.499,-0.654,0.054,0.754,-0.906,-0.044,0.421,0.935,0.238,0.264,0.685,0.423,0.593,0.707,0.625,0.331,0.687,-0.57,0.452,-0.281,-0.595,0.753,0.462,-0.355,0.812,-0.828,-0.561,0.001,-0.054,-0.997,-0.061,-0.589,-0.696,-0.411,0.264,-0.543,-0.797
,-0.447,-0.257,-0.857,-0.517,-0.493,-0.699,0.616,0.355,0.704,-0.061,0.573,0.817,0.685,0.423,0.593,0.35,-0.821,-0.452,0.661,-0.029,-0.75,0.295,-0.555,-0.778,0.303,0.614,-0.729,-0.342,0.501,-0.795,-0.056,0.282,-0.958,-0.148,0.85,0.506,0.685,0.423,0.594,-0.067,0.57,0.819,0.91,-0.413,-0.035,0.687,-0.564,0.458,0.935,0.239,0.261
,-0.911,-0.043,0.41,-0.494,-0.768,0.409,-0.555,0.689,-0.466,-0.685,-0.202,-0.7,-0.336,0.504,-0.796,0.913,0.041,-0.406,0.682,-0.044,-0.73,-0.516,-0.493,-0.7,0.341,-0.814,-0.471,0.271,-0.538,-0.798,-0.662,0.059,0.747,-0.28,-0.605,0.746,-0.494,-0.768,0.409,0.687,-0.564,0.458,0.457,-0.347,0.819,0.708,0.382,0.594,-0.447,-0.257,-0.857
,-0.919,0.393,-0.037,-0.898,0.019,0.439,-0.899,-0.438,0.001,-0.546,-0.746,-0.382,-0.517,-0.493,-0.699,-0.686,-0.203,-0.699,-0.138,-0.99,0.001,0.777,-0.485,0.401,0.961,-0.267,-0.075,0.215,-0.186,-0.959,0.683,-0.042,-0.73,0.903,0.428,0.026,0.913,0.043,-0.406,0.91,-0.413,-0.035,0.465,-0.341,0.817,0.193,-0.148,0.97,0.616,0.355,0.704
,0.124,0.991,0.043,-0.149,0.85,0.506,-0.888,0.459,-0.014,0.813,0.582,-0.029,0.788,0.47,0.398,0.304,0.947,0.102,-0.557,0.699,-0.447,-0.337,0.532,-0.777,0.303,0.591,-0.748,-0.044,0.244,0.969,0.193,-0.148,0.97,-0.281,-0.604,0.745,-0.153,0.853,0.499,-0.074,0.578,0.812,-0.654,0.054,0.754,0.935,0.238,0.264,0.708,0.382,0.593
,0.685,0.423,0.593,0.687,-0.57,0.452,-0.492,-0.762,0.42,-0.281,-0.595,0.753,-0.828,-0.561,0.001,-0.435,-0.786,0.438,-0.054,-0.997,-0.061,0.264,-0.543,-0.797,0.215,-0.186,-0.959,-0.447,-0.257,-0.857,0.616,0.355,0.704,-0.044,0.244,0.969,-0.061,0.573,0.817,0.35,-0.821,-0.452,0.9,0.044,-0.434,0.661,-0.029,-0.75,-0.148,0.85,0.506
,0.708,0.625,0.329,0.685,0.423,0.594,-0.555,0.689,-0.466,-0.919,-0.104,-0.38,-0.685,-0.202,-0.7,0.913,0.041,-0.406,0.511,0.759,-0.403,-0.516,-0.493,-0.7,-0.549,-0.745,-0.379,0.341,-0.814,-0.471]
,"uvs":[0.475,0.526,0.652,0.473,0.652,0.579,0.512,0.87,0.512,0.962,0.485,0.916,0.652,0.693,0.476,0.64,0.652,0.587,0.461,0.758,0.639,0.811,0.459,0.857,0.505,0.966,0.425,0.92,0.479,0.919,0.425,0.912,0.505,0.866,0.479,0.912,0.184,0.957,0.23,0.876,0.231,0.93,0.238,0.876,0.285,0.955,0.238,0.93,0.461,0.75
,0.461,0.644,0.637,0.697,0.652,0.701,0.652,0.807,0.475,0.754,0.461,0.53,0.637,0.583,0.461,0.636,0.461,0.522,0.475,0.526,0.461,0.53,0.461,0.636,0.476,0.64,0.461,0.644,0.461,0.75,0.475,0.754,0.461,0.758,0.231,0.93,0.238,0.93,0.235,0.936,0.425,0.912,0.41,0.921,0.41,0.91,0.652,0.587,0.637,0.583
,0.652,0.579,0.511,0.98,0.512,0.962,0.521,0.974,0.485,0.916,0.479,0.919,0.479,0.912,0.231,0.93,0.188,0.964,0.184,0.957,0.476,0.64,0.637,0.697,0.461,0.644,0.227,0.862,0.184,0.957,0.171,0.963,0.475,0.754,0.639,0.811,0.461,0.758,0.285,0.955,0.281,0.962,0.475,0.526,0.638,0.469,0.652,0.473,0.505,0.966
,0.485,0.916,0.512,0.962,0.637,0.583,0.476,0.64,0.461,0.636,0.475,0.526,0.637,0.583,0.461,0.53,0.176,0.973,0.281,0.962,0.293,0.971,0.479,0.912,0.425,0.92,0.425,0.912,0.511,0.852,0.425,0.912,0.41,0.91,0.521,0.974,0.512,0.87,0.521,0.858,0.511,0.98,0.425,0.92,0.505,0.966,0.637,0.697,0.475,0.754
,0.461,0.75,0.238,0.876,0.231,0.93,0.23,0.876,0.485,0.916,0.505,0.866,0.512,0.87,0.239,0.861,0.285,0.955,0.238,0.876,0.281,0.962,0.188,0.964,0.235,0.936,0.511,0.852,0.512,0.87,0.505,0.866,0.638,0.469,0.652,0.466,0.652,0.473,0.652,0.693,0.652,0.701,0.176,0.973,0.184,0.957,0.188,0.964,0.299,0.961
,0.285,0.955,0.23,0.876,0.239,0.861,0.238,0.876,0.425,0.912,0.425,0.92,0.41,0.921,0.511,0.98,0.505,0.966,0.512,0.962,0.231,0.93,0.476,0.64,0.652,0.693,0.637,0.697,0.227,0.862,0.23,0.876,0.184,0.957,0.475,0.754,0.652,0.807,0.639,0.811,0.238,0.93,0.285,0.955,0.475,0.526,0.461,0.522,0.638,0.469
,0.505,0.966,0.479,0.919,0.485,0.916,0.637,0.583,0.652,0.587,0.476,0.64,0.475,0.526,0.652,0.579,0.637,0.583,0.176,0.973,0.188,0.964,0.281,0.962,0.479,0.912,0.479,0.919,0.425,0.92,0.511,0.852,0.505,0.866,0.425,0.912,0.521,0.974,0.512,0.962,0.512,0.87,0.511,0.98,0.41,0.921,0.425,0.92,0.637,0.697
,0.652,0.701,0.475,0.754,0.238,0.876,0.238,0.93,0.231,0.93,0.485,0.916,0.479,0.912,0.505,0.866,0.239,0.861,0.299,0.961,0.285,0.955,0.511,0.852,0.521,0.858,0.512,0.87,0.176,0.973,0.171,0.963,0.184,0.957,0.299,0.961,0.293,0.971,0.23,0.876,0.227,0.862,0.239,0.861]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50
,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,44,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100
,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,26,119,120,121,122,123,124,70,125,126,127,128,129,130,131,132,133,134,135,44,58,136,137,138,139,140,141,142,143,144,44,145,146
,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,70,194,195,196
]
}
,{"name":"d8_collider","id":"d8_collider","billboardMode":0,"position":[0,0,-0.1119],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false,"physicsImpostor":8,"physicsMass":0.1,"physicsFriction":0.5,"physicsRestitution":0
,"positions":[-0.0491,0.0508,-0.0951,0.0014,0.0723,0.0937,-0.0725,0.0004,0.0958,-0.0516,-0.0493,-0.0969,0.001,-0.0721,0.095,0.0512,-0.0492,-0.0945,-0.0516,-0.0493,-0.0969,-0.0491,0.0508,-0.0951,-0.0725,0.0004,0.0958,0.001,-0.0721,0.095,-0.0725,0.0004,0.0958,0,0,0.1285,-0.0725,0.0004,0.0958,0.0014,0.0723,0.0937,0,0,0.1285,0.073,0.0008,0.0937,0.001,-0.0721,0.095
,0,0,0.1285,-0.0491,0.0508,-0.0951,-0.0516,-0.0493,-0.0969,0,0,-0.1302,0.073,0.0008,0.0937,0.0512,-0.0492,-0.0945,0.001,-0.0721,0.095,0.0512,0.0505,-0.094,0.073,0.0008,0.0937,0.0014,0.0723,0.0937,0.001,-0.0721,0.095,-0.0516,-0.0493,-0.0969,-0.0725,0.0004,0.0958,0.0512,-0.0492,-0.0945,0.0512,0.0505,-0.094,0,0,-0.1302,-0.0491,0.0508,-0.0951
,0.0512,0.0505,-0.094,0.0014,0.0723,0.0937,0.0014,0.0723,0.0937,0.073,0.0008,0.0937,0,0,0.1285,0.0512,0.0505,-0.094,0.0512,-0.0492,-0.0945,0.073,0.0008,0.0937,0.0512,0.0505,-0.094,-0.0491,0.0508,-0.0951,0,0,-0.1302,-0.0516,-0.0493,-0.0969,0.0512,-0.0492,-0.0945,0,0,-0.1302]
,"normals":[-0.692,0.715,0.104,-0.692,0.715,0.104,-0.692,0.715,0.104,0.004,-0.993,-0.119,0.004,-0.993,-0.119,0.004,-0.993,-0.119,-0.993,0.027,-0.115,-0.993,0.027,-0.115,-0.993,0.027,-0.115,-0.38,-0.394,0.837,-0.38,-0.394,0.837,-0.38,-0.394,0.837,-0.374,0.409,0.833,-0.374,0.409,0.833,-0.374,0.409,0.833,0.401,-0.382,0.833,0.401,-0.382,0.833
,0.401,-0.382,0.833,-0.562,0.029,-0.827,-0.562,0.029,-0.827,-0.562,0.029,-0.827,0.708,-0.698,0.104,0.708,-0.698,0.104,0.708,-0.698,0.104,0.703,0.703,0.105,0.703,0.703,0.105,0.703,0.703,0.105,-0.697,-0.709,0.107,-0.697,-0.709,0.107,-0.697,-0.709,0.107,0.575,0.005,-0.818,0.575,0.005,-0.818,0.575,0.005,-0.818,0.005,0.993,-0.114
,0.005,0.993,-0.114,0.005,0.993,-0.114,0.393,0.393,0.832,0.393,0.393,0.832,0.393,0.393,0.832,0.993,0.001,-0.115,0.993,0.001,-0.115,0.993,0.001,-0.115,0.011,0.576,-0.817,0.011,0.576,-0.817,0.011,0.576,-0.817,0.02,-0.573,-0.819,0.02,-0.573,-0.819,0.02,-0.573,-0.819]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47]
}
,{"name":"d6_collider","id":"d6_collider","billboardMode":0,"position":[0,0,-0.4823],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false,"physicsImpostor":8,"physicsMass":0.08,"physicsFriction":0.5,"physicsRestitution":0
,"positions":[0.0509,0.029,-0.0938,0.0521,-0.0295,0.0955,0.001,0.0599,0.0963,0.001,0.0599,0.0963,0.0521,-0.0295,0.0955,0,0,0.1269,-0.0506,-0.0294,0.0965,-0.0513,0.0306,-0.0967,0.001,0.0599,0.0963,0.0015,-0.06,-0.0972,0.0521,-0.0295,0.0955,0.0509,0.029,-0.0938,0.0521,-0.0295,0.0955,-0.0506,-0.0294,0.0965,0,0,0.1269,-0.0506,-0.0294,0.0965,0.001,0.0599,0.0963
,0,0,0.1269,-0.0513,0.0306,-0.0967,0.0015,-0.06,-0.0972,0,0,-0.1276,0.0015,-0.06,-0.0972,0.0509,0.029,-0.0938,0,0,-0.1276,0.0015,-0.06,-0.0972,-0.0513,0.0306,-0.0967,-0.0506,-0.0294,0.0965,-0.0506,-0.0294,0.0965,0.0521,-0.0295,0.0955,0.0015,-0.06,-0.0972,0.0509,0.029,-0.0938,0.001,0.0599,0.0963,-0.0513,0.0306,-0.0967,0.0509,0.029,-0.0938
,-0.0513,0.0306,-0.0967,0,0,-0.1276]
,"normals":[0.859,0.49,0.146,0.859,0.49,0.146,0.859,0.49,0.146,0.621,0.348,0.702,0.621,0.348,0.702,0.621,0.348,0.702,-0.855,0.494,0.157,-0.855,0.494,0.157,-0.855,0.494,0.157,0.867,-0.475,-0.152,0.867,-0.475,-0.152,0.867,-0.475,-0.152,0.006,-0.724,0.69,0.006,-0.724,0.69,0.006,-0.724,0.69,-0.626,0.362,0.691,-0.626,0.362,0.691
,-0.626,0.362,0.691,-0.631,-0.364,-0.686,-0.631,-0.364,-0.686,-0.631,-0.364,-0.686,0.647,-0.333,-0.686,0.647,-0.333,-0.686,0.647,-0.333,-0.686,-0.854,-0.497,-0.151,-0.854,-0.497,-0.151,-0.854,-0.497,-0.151,0,-0.988,0.156,0,-0.988,0.156,0,-0.988,0.156,0.019,0.988,-0.155,0.019,0.988,-0.155,0.019,0.988,-0.155,0.03,0.736,-0.676
,0.03,0.736,-0.676,0.03,0.736,-0.676]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35]
}
,{"name":"d4_collider","id":"d4_collider","billboardMode":0,"position":[0,0,-0.8],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false,"physicsImpostor":8,"physicsMass":0.16,"physicsFriction":0.5,"physicsRestitution":0
,"positions":[0.0529,0.0531,-0.0972,-0.0534,0.053,-0.0969,0,0,-0.1261,0,0,0.1262,0.0529,-0.0534,0.0968,-0.0531,-0.053,0.0963,-0.0537,0.063,-0.0862,0.053,0.063,0.0858,-0.0537,0.063,0.0858,0.0628,-0.0535,-0.0862,0.0628,0.0531,0.0858,0.0628,0.0531,-0.0862,0.053,-0.0633,0.0858,-0.0532,-0.0628,-0.0856,-0.0532,-0.0628,0.0854,-0.0531,-0.053,-0.0965,0.0529,-0.0532,-0.0969
,0,0,-0.1261,-0.0531,-0.053,-0.0965,0,0,-0.1261,-0.0534,0.053,-0.0969,-0.0531,-0.053,0.0963,-0.0534,0.053,0.0966,0,0,0.1262,0.0529,0.0531,0.0968,0.0529,-0.0534,0.0968,0,0,0.1262,-0.063,0.0529,0.0854,-0.063,-0.0531,-0.0856,-0.063,0.0529,-0.0856,-0.0537,0.063,-0.0862,-0.0606,0.0601,-0.0862,-0.0534,0.053,-0.0969,-0.063,0.0529,-0.0856
,-0.0534,0.053,-0.0969,-0.0606,0.0601,-0.0862,-0.063,-0.0531,-0.0856,-0.0601,-0.06,-0.0856,-0.0531,-0.053,-0.0965,-0.0532,-0.0628,-0.0856,-0.0531,-0.053,-0.0965,-0.0601,-0.06,-0.0856,-0.0537,0.063,0.0858,-0.0534,0.053,0.0966,-0.0606,0.0601,0.0858,-0.063,0.0529,0.0854,-0.0606,0.0601,0.0858,-0.0534,0.053,0.0966,-0.0532,-0.0628,0.0854,-0.0601,-0.06,0.0854,-0.0531,-0.053,0.0963
,-0.063,-0.0531,0.0854,-0.0531,-0.053,0.0963,-0.0601,-0.06,0.0854,0.0628,0.0531,-0.0862,0.06,0.0601,-0.0862,0.0529,0.0531,-0.0972,0.053,0.063,-0.0862,0.0529,0.0531,-0.0972,0.06,0.0601,-0.0862,0.053,-0.0633,-0.0862,0.06,-0.0604,-0.0862,0.0529,-0.0532,-0.0969,0.0628,-0.0535,-0.0862,0.0529,-0.0532,-0.0969,0.06,-0.0604,-0.0862,0.0628,-0.0535,0.0858,0.06,-0.0604,0.0858
,0.0529,-0.0534,0.0968,0.053,-0.0633,0.0858,0.0529,-0.0534,0.0968,0.06,-0.0604,0.0858,0.053,0.063,0.0858,0.06,0.0601,0.0858,0.0529,0.0531,0.0968,0.0628,0.0531,0.0858,0.0529,0.0531,0.0968,0.06,0.0601,0.0858,-0.063,0.0529,-0.0856,-0.0531,-0.053,-0.0965,-0.0534,0.053,-0.0969,0,0,-0.1261,0.0529,-0.0532,-0.0969,0.0529,0.0531,-0.0972,-0.0537,0.063,0.0858
,-0.0606,0.0601,-0.0862,-0.0537,0.063,-0.0862,-0.0606,0.0601,0.0858,-0.063,0.0529,-0.0856,-0.0606,0.0601,-0.0862,-0.063,-0.0531,0.0854,-0.0601,-0.06,-0.0856,-0.063,-0.0531,-0.0856,-0.0601,-0.06,0.0854,-0.0532,-0.0628,-0.0856,-0.0601,-0.06,-0.0856,-0.0531,-0.053,0.0963,-0.063,0.0529,0.0854,-0.0534,0.053,0.0966,0.053,-0.0633,0.0858,0.06,-0.0604,-0.0862,0.053,-0.0633,-0.0862
,0.06,-0.0604,0.0858,0.0628,-0.0535,-0.0862,0.06,-0.0604,-0.0862,0.0529,-0.0532,-0.0969,0.0628,0.0531,-0.0862,0.0529,0.0531,-0.0972,-0.0534,0.053,0.0966,0.053,0.063,0.0858,0.0529,0.0531,0.0968,0.0628,0.0531,0.0858,0.06,0.0601,-0.0862,0.0628,0.0531,-0.0862,0.06,0.0601,0.0858,0.053,0.063,-0.0862,0.06,0.0601,-0.0862,0.0529,-0.0532,-0.0969,-0.0532,-0.0628,-0.0856
,0.053,-0.0633,-0.0862,-0.0531,-0.053,0.0963,0.053,-0.0633,0.0858,-0.0532,-0.0628,0.0854,0.0529,-0.0534,0.0968,0.0628,0.0531,0.0858,0.0628,-0.0535,0.0858,-0.0534,0.053,-0.0969,0.053,0.063,-0.0862,-0.0537,0.063,-0.0862,-0.0534,0.053,0.0966,0.0529,0.0531,0.0968,0,0,0.1262,0.053,0.063,-0.0862,0.0628,-0.0535,0.0858,0.053,-0.0633,-0.0862,-0.063,-0.0531,0.0854
,-0.063,0.0529,-0.0856,-0.063,-0.0531,-0.0856,-0.0531,-0.053,-0.0965,-0.0537,0.063,0.0858,-0.0606,0.0601,0.0858,-0.0606,0.0601,-0.0862,-0.0606,0.0601,0.0858,-0.063,0.0529,0.0854,-0.063,0.0529,-0.0856,-0.063,-0.0531,0.0854,-0.0601,-0.06,0.0854,-0.0601,-0.06,-0.0856,-0.0601,-0.06,0.0854,-0.0532,-0.0628,0.0854,-0.0532,-0.0628,-0.0856,-0.0531,-0.053,0.0963,-0.063,-0.0531,0.0854
,-0.063,0.0529,0.0854,0.053,-0.0633,0.0858,0.06,-0.0604,0.0858,0.06,-0.0604,-0.0862,0.06,-0.0604,0.0858,0.0628,-0.0535,0.0858,0.0628,-0.0535,-0.0862,0.0529,-0.0532,-0.0969,0.0628,-0.0535,-0.0862,0.0628,0.0531,-0.0862,-0.0534,0.053,0.0966,-0.0537,0.063,0.0858,0.053,0.063,0.0858,0.0628,0.0531,0.0858,0.06,0.0601,0.0858,0.06,0.0601,-0.0862,0.06,0.0601,0.0858
,0.053,0.063,0.0858,0.053,0.063,-0.0862,0.0529,-0.0532,-0.0969,-0.0531,-0.053,-0.0965,-0.0532,-0.0628,-0.0856,-0.0531,-0.053,0.0963,0.0529,-0.0534,0.0968,0.053,-0.0633,0.0858,0.0529,-0.0534,0.0968,0.0529,0.0531,0.0968,0.0628,0.0531,0.0858,-0.0534,0.053,-0.0969,0.0529,0.0531,-0.0972,0.053,0.063,-0.0862]
,"normals":[-0.002,0.481,-0.877,-0.002,0.481,-0.877,-0.002,0.481,-0.877,-0.006,-0.487,0.873,-0.006,-0.487,0.873,-0.006,-0.487,0.873,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,-0.004,-1,0,-0.004,-1,0,-0.004,-1,0,-0.005,-0.485,-0.875,-0.005,-0.485,-0.875
,-0.005,-0.485,-0.875,-0.483,-0.005,-0.875,-0.483,-0.005,-0.875,-0.483,-0.005,-0.875,-0.488,-0.004,0.873,-0.488,-0.004,0.873,-0.488,-0.004,0.873,0.486,0,0.874,0.486,0,0.874,0.486,0,0.874,-1,0,0,-1,0,0,-1,0,0,-0.289,0.697,-0.656,-0.289,0.697,-0.656,-0.289,0.697,-0.656,-0.752,0.191,-0.631
,-0.752,0.191,-0.631,-0.752,0.191,-0.631,-0.708,-0.293,-0.643,-0.708,-0.293,-0.643,-0.708,-0.293,-0.643,-0.293,-0.708,-0.643,-0.293,-0.708,-0.643,-0.293,-0.708,-0.643,-0.29,0.699,0.654,-0.29,0.699,0.654,-0.29,0.699,0.654,-0.745,0.207,0.634,-0.745,0.207,0.634,-0.745,0.207,0.634,-0.293,-0.708,0.643,-0.293,-0.708,0.643,-0.293,-0.708,0.643
,-0.708,-0.293,0.643,-0.708,-0.293,0.643,-0.708,-0.293,0.643,0.708,0.293,-0.643,0.708,0.293,-0.643,0.708,0.293,-0.643,0.293,0.708,-0.643,0.293,0.708,-0.643,0.293,0.708,-0.643,0.288,-0.696,-0.657,0.288,-0.696,-0.657,0.288,-0.696,-0.657,0.698,-0.289,-0.655,0.698,-0.289,-0.655,0.698,-0.289,-0.655,0.708,-0.293,0.643,0.708,-0.293,0.643
,0.708,-0.293,0.643,0.293,-0.708,0.643,0.293,-0.708,0.643,0.293,-0.708,0.643,0.293,0.708,0.643,0.293,0.708,0.643,0.293,0.708,0.643,0.708,0.293,0.643,0.708,0.293,0.643,0.708,0.293,0.643,-0.765,-0.005,-0.644,-0.765,-0.005,-0.644,-0.765,-0.005,-0.644,0.482,-0.002,-0.876,0.482,-0.002,-0.876,0.482,-0.002,-0.876,-0.383,0.924,0
,-0.383,0.924,0,-0.383,0.924,0,-0.95,0.312,0,-0.95,0.312,0,-0.95,0.312,0,-0.924,-0.383,0,-0.924,-0.383,0,-0.924,-0.383,0,-0.383,-0.924,0,-0.383,-0.924,0,-0.383,-0.924,0,-0.761,-0.004,0.649,-0.761,-0.004,0.649,-0.761,-0.004,0.649,0.383,-0.924,0,0.383,-0.924,0,0.383,-0.924,0
,0.924,-0.383,0,0.924,-0.383,0,0.924,-0.383,0,0.741,-0.002,-0.671,0.741,-0.002,-0.671,0.741,-0.002,-0.671,-0.001,0.741,0.671,-0.001,0.741,0.671,-0.001,0.741,0.671,0.924,0.383,0,0.924,0.383,0,0.924,0.383,0,0.383,0.924,0,0.383,0.924,0,0.383,0.924,0,-0.007,-0.729,-0.684,-0.007,-0.729,-0.684
,-0.007,-0.729,-0.684,-0.006,-0.741,0.671,-0.006,-0.741,0.671,-0.006,-0.741,0.671,0.741,0,0.671,0.741,0,0.671,0.741,0,0.671,0,0.732,-0.681,0,0.732,-0.681,0,0.732,-0.681,-0.002,0.486,0.874,-0.002,0.486,0.874,-0.002,0.486,0.874,0,1,0,1,0,0,-0.004,-1,0,-1,0,0
,-0.741,0,-0.671,-0.741,0,-0.671,-0.741,0,-0.671,-0.383,0.924,0,-0.383,0.924,0,-0.383,0.924,0,-0.95,0.312,0,-0.95,0.312,0,-0.95,0.312,0,-0.924,-0.383,0,-0.924,-0.383,0,-0.924,-0.383,0,-0.383,-0.924,0,-0.383,-0.924,0,-0.383,-0.924,0,-0.741,0,0.671,-0.741,0,0.671
,-0.741,0,0.671,0.383,-0.924,0,0.383,-0.924,0,0.383,-0.924,0,0.924,-0.383,0,0.924,-0.383,0,0.924,-0.383,0,0.732,0,-0.681,0.732,0,-0.681,0.732,0,-0.681,0,0.734,0.679,0,0.734,0.679,0,0.734,0.679,0.924,0.383,0,0.924,0.383,0,0.924,0.383,0,0.383,0.924,0
,0.383,0.924,0,0.383,0.924,0,-0.005,-0.741,-0.671,-0.005,-0.741,-0.671,-0.005,-0.741,-0.671,-0.006,-0.741,0.671,-0.006,-0.741,0.671,-0.006,-0.741,0.671,0.741,0,0.671,0.741,0,0.671,0.741,0,0.671,-0.002,0.742,-0.671,-0.002,0.742,-0.671,-0.002,0.742,-0.671]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50
,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101
,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,6,132,7,9,133,10,12,134,13,27,135,28,136,137,138,139,140,141,142,143,144
,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183]}
,{"name":"d20_collider","id":"d20_collider","billboardMode":0,"position":[0,0,0.9985],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false,"physicsImpostor":8,"physicsMass":0.2,"physicsFriction":0.5,"physicsRestitution":0
,"positions":[0.0943,0.0303,-0.1233,0.0942,-0.0306,-0.1233,0.0995,-0.0001,0.1227,0.0584,0.0796,-0.1233,0.0943,0.0303,-0.1233,0.0803,0.0577,0.1227,0.001,0.0995,-0.1242,0.0584,0.0796,-0.1233,0.0315,0.094,0.1234,-0.0793,0.0584,0.1243,-0.0994,-0.0001,0.1243,-0.0935,0.0306,-0.1247,-0.0295,0.0946,0.1244,-0.0793,0.0584,0.1243,-0.0572,0.0806,-0.1247,0.001,-0.0001,0.178,-0.0793,-0.0586,0.1243
,-0.0994,-0.0001,0.1243,0.001,-0.0001,0.178,-0.0994,-0.0001,0.1243,-0.0793,0.0584,0.1243,0.001,-0.0001,0.178,-0.0793,0.0584,0.1243,-0.0295,0.0946,0.1244,0.0995,-0.0001,0.1227,0.001,-0.0001,0.178,0.0803,0.0577,0.1227,0.0942,-0.0306,-0.1233,0.0586,-0.0799,-0.1233,0.0803,-0.0578,0.1227,0.0803,-0.0578,0.1227,0.001,-0.0001,0.178,0.0995,-0.0001,0.1227,-0.0296,-0.0948,0.1243
,0.001,-0.0001,0.178,0.031,-0.0936,0.1226,0.0803,0.0577,0.1227,0.001,-0.0001,0.178,0.0315,0.094,0.1234,0.001,-0.0001,0.178,-0.0295,0.0946,0.1244,0.0315,0.094,0.1234,-0.0295,0.0946,0.1244,0.001,0.0995,-0.1242,0.0315,0.094,0.1234,0.0584,0.0796,-0.1233,0.0803,0.0577,0.1227,0.0315,0.094,0.1234,0.0803,-0.0578,0.1227,0.0586,-0.0799,-0.1233,0.031,-0.0936,0.1226
,-0.0296,-0.0948,0.1243,0.0011,-0.0995,-0.124,-0.0572,-0.0807,-0.1247,-0.0572,0.0806,-0.1247,0.001,0.0995,-0.1242,-0.0295,0.0946,0.1244,0.031,-0.0936,0.1226,0.001,-0.0001,0.178,0.0803,-0.0578,0.1227,-0.0793,0.0584,0.1243,-0.0935,0.0306,-0.1247,-0.0572,0.0806,-0.1247,-0.0935,0.0306,-0.1247,-0.0994,-0.0001,0.1243,-0.0935,-0.0308,-0.1247,-0.0793,-0.0586,0.1243,-0.0572,-0.0807,-0.1247
,-0.0935,-0.0308,-0.1247,0.0011,-0.0995,-0.124,0.0012,-0.0001,-0.1774,-0.0572,-0.0807,-0.1247,0.0942,-0.0306,-0.1233,0.0012,-0.0001,-0.1774,0.0586,-0.0799,-0.1233,0.0012,-0.0001,-0.1774,0.0942,-0.0306,-0.1233,0.0943,0.0303,-0.1233,0.0943,0.0303,-0.1233,0.0584,0.0796,-0.1233,0.0012,-0.0001,-0.1774,0.0012,-0.0001,-0.1774,0.0584,0.0796,-0.1233,0.001,0.0995,-0.1242,0.0586,-0.0799,-0.1233
,0.0012,-0.0001,-0.1774,0.0011,-0.0995,-0.124,0.0995,-0.0001,0.1227,0.0942,-0.0306,-0.1233,0.0803,-0.0578,0.1227,0.031,-0.0936,0.1226,0.0011,-0.0995,-0.124,-0.0296,-0.0948,0.1243,-0.0296,-0.0948,0.1243,-0.0572,-0.0807,-0.1247,-0.0793,-0.0586,0.1243,-0.0994,-0.0001,0.1243,-0.0793,-0.0586,0.1243,-0.0935,-0.0308,-0.1247,0.0012,-0.0001,-0.1774,0.001,0.0995,-0.1242,-0.0572,0.0806,-0.1247
,0.0012,-0.0001,-0.1774,-0.0572,0.0806,-0.1247,-0.0935,0.0306,-0.1247,-0.0935,-0.0308,-0.1247,0.0012,-0.0001,-0.1774,-0.0935,0.0306,-0.1247,-0.0572,-0.0807,-0.1247,0.0012,-0.0001,-0.1774,-0.0935,-0.0308,-0.1247,0.001,-0.0001,0.178,-0.0296,-0.0948,0.1243,-0.0793,-0.0586,0.1243,0.0803,0.0577,0.1227,0.0943,0.0303,-0.1233,0.0995,-0.0001,0.1227,0.031,-0.0936,0.1226,0.0586,-0.0799,-0.1233
,0.0011,-0.0995,-0.124]
,"normals":[1,0,-0.021,1,0,-0.021,1,0,-0.021,0.809,0.587,-0.02,0.809,0.587,-0.02,0.809,0.587,-0.02,0.327,0.945,-0.019,0.327,0.945,-0.019,0.327,0.945,-0.019,-0.946,0.325,0.017,-0.946,0.325,0.017,-0.946,0.325,0.017,-0.587,0.81,0.02,-0.587,0.81,0.02,-0.587,0.81,0.02,-0.466,-0.16,0.87,-0.466,-0.16,0.87
,-0.466,-0.16,0.87,-0.466,0.16,0.87,-0.466,0.16,0.87,-0.466,0.16,0.87,-0.291,0.399,0.87,-0.291,0.399,0.87,-0.291,0.399,0.87,0.483,0.16,0.861,0.483,0.16,0.861,0.483,0.16,0.861,0.81,-0.586,-0.019,0.81,-0.586,-0.019,0.81,-0.586,-0.019,0.483,-0.16,0.861,0.483,-0.16,0.861,0.483,-0.16,0.861,0.033,-0.501,0.865
,0.033,-0.501,0.865,0.033,-0.501,0.865,0.309,0.4,0.863,0.309,0.4,0.863,0.309,0.4,0.863,0.019,0.497,0.867,0.019,0.497,0.867,0.019,0.497,0.867,0.009,1,0.021,0.009,1,0.021,0.009,1,0.021,0.597,0.802,0.018,0.597,0.802,0.018,0.597,0.802,0.018,0.587,-0.81,0.021,0.587,-0.81,0.021,0.587,-0.81,0.021
,-0.307,-0.952,-0.02,-0.307,-0.952,-0.02,-0.307,-0.952,-0.02,-0.308,0.951,-0.019,-0.308,0.951,-0.019,-0.308,0.951,-0.019,0.298,-0.414,0.86,0.298,-0.414,0.86,0.298,-0.414,0.86,-0.809,0.587,-0.02,-0.809,0.587,-0.02,-0.809,0.587,-0.02,-1,0,-0.024,-1,0,-0.024,-1,0,-0.024,-0.809,-0.588,-0.02,-0.809,-0.588,-0.02
,-0.809,-0.588,-0.02,-0.141,-0.468,-0.872,-0.141,-0.468,-0.872,-0.141,-0.468,-0.872,0.407,-0.294,-0.865,0.407,-0.294,-0.865,0.407,-0.294,-0.865,0.503,0,-0.864,0.503,0,-0.864,0.503,0,-0.864,0.407,0.295,-0.864,0.407,0.295,-0.864,0.407,0.295,-0.864,0.175,0.465,-0.868,0.175,0.465,-0.868,0.175,0.465,-0.868,0.171,-0.467,-0.868
,0.171,-0.467,-0.868,0.171,-0.467,-0.868,0.949,-0.315,0.019,0.949,-0.315,0.019,0.949,-0.315,0.019,0.02,-1,0.021,0.02,-1,0.021,0.02,-1,0.021,-0.588,-0.808,0.02,-0.588,-0.808,0.02,-0.588,-0.808,0.02,-0.946,-0.324,0.017,-0.946,-0.324,0.017,-0.946,-0.324,0.017,-0.143,0.466,-0.873,-0.143,0.466,-0.873,-0.143,0.466,-0.873
,-0.394,0.285,-0.874,-0.394,0.285,-0.874,-0.394,0.285,-0.874,-0.487,0,-0.874,-0.487,0,-0.874,-0.487,0,-0.874,-0.394,-0.286,-0.873,-0.394,-0.286,-0.873,-0.394,-0.286,-0.873,-0.29,-0.399,0.87,-0.29,-0.399,0.87,-0.29,-0.399,0.87,0.949,0.315,0.019,0.949,0.315,0.019,0.949,0.315,0.019,0.323,-0.946,-0.017,0.323,-0.946,-0.017
,0.323,-0.946,-0.017]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50
,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101
,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119]
}
,{"name":"d12_collider","id":"d12_collider","billboardMode":0,"position":[0,0,0.6432],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false,"physicsImpostor":8,"physicsMass":0.12,"physicsFriction":0.5,"physicsRestitution":0
,"positions":[-0.0326,0.0607,0.0933,-0.0603,0.0354,-0.0937,0.0024,0.0696,-0.0924,0.0613,-0.034,-0.0912,0.0702,0.0002,0.0912,0.0613,0.0345,-0.0912,0.0364,-0.0592,0.0917,0.0613,-0.034,-0.0912,0.0023,-0.0696,-0.0929,-0.0326,0.0607,0.0933,0,0,0.1265,-0.0695,0.0002,0.0937,-0.0603,-0.035,-0.0937,0.0023,-0.0696,-0.0929,0,0,-0.1259,0.0613,0.0345,-0.0912,0.0024,0.0696,-0.0924
,0,0,-0.1259,0.0613,-0.034,-0.0912,0,0,-0.1259,0.0023,-0.0696,-0.0929,-0.0603,0.0354,-0.0937,0,0,-0.1259,0.0024,0.0696,-0.0924,-0.0603,0.0354,-0.0937,-0.0603,-0.035,-0.0937,0,0,-0.1259,-0.0695,0.0002,0.0937,0,0,0.1265,-0.0329,-0.0605,0.0937,0,0,0.1265,0.0361,0.0593,0.0912,0.0702,0.0002,0.0912,-0.0695,0.0002,0.0937
,-0.0603,0.0354,-0.0937,-0.0326,0.0607,0.0933,-0.0326,0.0607,0.0933,0.0024,0.0696,-0.0924,0.0361,0.0593,0.0912,0.0364,-0.0592,0.0917,0,0,0.1265,0.0702,0.0002,0.0912,0,0,0.1265,0.0364,-0.0592,0.0917,-0.0329,-0.0605,0.0937,-0.0603,-0.035,-0.0937,-0.0695,0.0002,0.0937,-0.0329,-0.0605,0.0937,0.0361,0.0593,0.0912,0,0,0.1265,-0.0326,0.0607,0.0933
,0.0613,-0.034,-0.0912,0.0613,0.0345,-0.0912,0,0,-0.1259,0.0361,0.0593,0.0912,0.0024,0.0696,-0.0924,0.0613,0.0345,-0.0912,-0.0695,0.0002,0.0937,-0.0603,-0.035,-0.0937,-0.0603,0.0354,-0.0937,-0.0329,-0.0605,0.0937,0.0364,-0.0592,0.0917,0.0023,-0.0696,-0.0929,0.0613,0.0345,-0.0912,0.0702,0.0002,0.0912,0.0361,0.0593,0.0912,0.0023,-0.0696,-0.0929,-0.0603,-0.035,-0.0937
,-0.0329,-0.0605,0.0937,0.0613,-0.034,-0.0912,0.0364,-0.0592,0.0917,0.0702,0.0002,0.0912]
,"normals":[-0.478,0.877,-0.048,-0.478,0.877,-0.048,-0.478,0.877,-0.048,0.999,0,-0.049,0.999,0,-0.049,0.999,0,-0.049,0.517,-0.855,-0.047,0.517,-0.855,-0.047,0.517,-0.855,-0.047,-0.413,0.257,0.874,-0.413,0.257,0.874,-0.413,0.257,0.874,-0.222,-0.424,-0.878,-0.222,-0.424,-0.878,-0.222,-0.424,-0.878,0.263,0.411,-0.873,0.263,0.411,-0.873
,0.263,0.411,-0.873,0.27,-0.406,-0.873,0.27,-0.406,-0.873,0.27,-0.406,-0.873,-0.216,0.43,-0.877,-0.216,0.43,-0.877,-0.216,0.43,-0.877,-0.471,0,-0.882,-0.471,0,-0.882,-0.471,0,-0.882,-0.415,-0.25,0.875,-0.415,-0.25,0.875,-0.415,-0.25,0.875,0.435,0.251,0.865,0.435,0.251,0.865,0.435,0.251,0.865,-0.852,0.52,0.056
,-0.852,0.52,0.056,-0.852,0.52,0.056,0.022,0.998,0.052,0.022,0.998,0.052,0.022,0.998,0.052,0.437,-0.241,0.866,0.437,-0.241,0.866,0.437,-0.241,0.866,0.034,-0.491,0.87,0.034,-0.491,0.87,0.034,-0.491,0.87,-0.855,-0.516,0.055,-0.855,-0.516,0.055,-0.855,-0.516,0.055,0.037,0.495,0.868,0.037,0.495,0.868,0.037,0.495,0.868
,0.493,0,-0.87,0.493,0,-0.87,0.493,0,-0.87,0.513,0.857,-0.046,0.513,0.857,-0.046,0.513,0.857,-0.046,-0.999,0,-0.049,-0.999,0,-0.049,-0.999,0,-0.049,0.021,-0.998,0.052,0.021,-0.998,0.052,0.021,-0.998,0.052,0.865,0.499,0.051,0.865,0.499,0.051,0.865,0.499,0.051,-0.482,-0.875,-0.048,-0.482,-0.875,-0.048
,-0.482,-0.875,-0.048,0.868,-0.494,0.05,0.868,-0.494,0.05,0.868,-0.494,0.05]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50
,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71]
}
,{"name":"d10_collider","id":"d10_collider","billboardMode":0,"position":[0,0,0.2585],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false,"physicsImpostor":8,"physicsMass":0.12,"physicsFriction":0.5,"physicsRestitution":0
,"positions":[0.0019,0.077,-0.0935,0.0462,0.062,0.0906,-0.0439,0.0638,0.0932,-0.0727,-0.0242,0.0934,-0.0718,0.0242,-0.0948,-0.0439,0.0638,0.0932,0.0731,0.0235,-0.0918,0,0,-0.127,0.0452,-0.0614,-0.092,0.0018,-0.0778,0.0922,-0.0727,-0.0242,0.0934,0,0,0.1273,-0.0718,0.0242,-0.0948,0,0,-0.127,0.0019,0.077,-0.0935,0.0452,-0.0614,-0.092,-0.0431,-0.0634,-0.0949
,0.0018,-0.0778,0.0922,-0.0727,-0.0242,0.0934,-0.0439,0.0638,0.0932,0,0,0.1273,0.0739,-0.0235,0.0906,0.0731,0.0235,-0.0918,0.0452,-0.0614,-0.092,-0.0718,0.0242,-0.0948,-0.0431,-0.0634,-0.0949,0,0,-0.127,-0.0439,0.0638,0.0932,0.0462,0.062,0.0906,0,0,0.1273,0.0019,0.077,-0.0935,0.0731,0.0235,-0.0918,0.0462,0.062,0.0906,-0.0727,-0.0242,0.0934
,0.0018,-0.0778,0.0922,-0.0431,-0.0634,-0.0949,0.0462,0.062,0.0906,0.0739,-0.0235,0.0906,0,0,0.1273,-0.0431,-0.0634,-0.0949,-0.0718,0.0242,-0.0948,-0.0727,-0.0242,0.0934,0.0739,-0.0235,0.0906,0.0018,-0.0778,0.0922,0,0,0.1273,0.0739,-0.0235,0.0906,0.0452,-0.0614,-0.092,0.0018,-0.0778,0.0922,-0.0718,0.0242,-0.0948,0.0019,0.077,-0.0935,-0.0439,0.0638,0.0932
,0.0739,-0.0235,0.0906,0.0462,0.062,0.0906,0.0731,0.0235,-0.0918,0.0452,-0.0614,-0.092,0,0,-0.127,-0.0431,-0.0634,-0.0949,0.0731,0.0235,-0.0918,0.0019,0.077,-0.0935,0,0,-0.127]
,"normals":[0.023,0.997,0.076,0.023,0.997,0.076,0.023,0.997,0.076,-0.948,0.309,0.075,-0.948,0.309,0.075,-0.948,0.309,0.075,0.468,-0.152,-0.871,0.468,-0.152,-0.871,0.468,-0.152,-0.871,-0.274,-0.4,0.874,-0.274,-0.4,0.874,-0.274,-0.4,0.874,-0.264,0.391,-0.882,-0.264,0.391,-0.882,-0.264,0.391,-0.882,0.025,-0.996,-0.083,0.025,-0.996,-0.083
,0.025,-0.996,-0.083,-0.459,0.151,0.876,-0.459,0.151,0.876,-0.459,0.151,0.876,0.947,-0.311,-0.084,0.947,-0.311,-0.084,0.947,-0.311,-0.084,-0.445,-0.146,-0.884,-0.445,-0.146,-0.884,-0.445,-0.146,-0.884,0.035,0.489,0.871,0.035,0.489,0.871,0.035,0.489,0.871,0.6,0.796,-0.079,0.6,0.796,-0.079,0.6,0.796,-0.079,-0.581,-0.81,0.077
,-0.581,-0.81,0.077,-0.581,-0.81,0.077,0.478,0.155,0.865,0.478,0.155,0.865,0.478,0.155,0.865,-0.947,-0.311,-0.084,-0.947,-0.311,-0.084,-0.947,-0.311,-0.084,0.309,-0.385,0.87,0.309,-0.385,0.87,0.309,-0.385,0.87,0.601,-0.796,0.071,0.601,-0.796,0.071,0.601,-0.796,0.071,-0.579,0.811,-0.085,-0.579,0.811,-0.085,-0.579,0.811,-0.085
,0.948,0.308,0.075,0.948,0.308,0.075,0.948,0.308,0.075,0.04,-0.473,-0.88,0.04,-0.473,-0.88,0.04,-0.473,-0.88,0.301,0.375,-0.877,0.301,0.375,-0.877,0.301,0.375,-0.877]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50
,51,52,53,54,55,56,57,58,59]
}
],
"colliderFaceMap": {
"d4": {
"1": 1,
"4": 1,
"5": 1,
"13": 1,
"16": 1,
"20": 1,
"23": 1,
"31": 1,
"33": 1,
"39": 1,
"40": 1,
"46": 1,
"52": 1,
"54": 1,
"60": 1,
"61": 1,
"3": 2,
"8": 2,
"18": 2,
"22": 2,
"21": 2,
"25": 2,
"27": 2,
"35": 2,
"34": 2,
"37": 2,
"41": 2,
"45": 2,
"55": 2,
"56": 2,
"58": 2,
"62": 2,
"0": 3,
"2": 3,
"10": 3,
"14": 3,
"19": 3,
"24": 3,
"28": 3,
"36": 3,
"38": 3,
"42": 3,
"43": 3,
"44": 3,
"49": 3,
"57": 3,
"59": 3,
"63": 3,
"6": 4,
"7": 4,
"9": 4,
"11": 4,
"12": 4,
"15": 4,
"17": 4,
"26": 4,
"29": 4,
"30": 4,
"32": 4,
"47": 4,
"48": 4,
"50": 4,
"51": 4,
"53": 4
},
"d6": {
"6": 1,
"8": 1,
"2": 2,
"5": 2,
"0": 3,
"1": 3,
"3": 4,
"7": 4,
"10": 5,
"11": 5,
"4": 6,
"9": 6
},
"d8": {
"11": 1,
"14": 1,
"5": 2,
"7": 2,
"8": 3,
"12": 3,
"2": 4,
"6": 4,
"10": 5,
"13": 5,
"3": 6,
"9": 6,
"0": 7,
"4": 7,
"1": 8,
"15": 8
},
"d10": {
"0": 1,
"9": 1,
"8": 2,
"13": 2,
"14": 3,
"15": 3,
"1": 4,
"6": 4,
"2": 5,
"7": 5,
"3": 6,
"11": 6,
"4": 7,
"16": 7,
"12": 8,
"17": 8,
"10": 9,
"19": 9,
"5": 0,
"18": 0
},
"d12": {
"4": 1,
"22": 1,
"10": 2,
"21": 2,
"11": 3,
"3": 3,
"13": 4,
"23": 4,
"12": 5,
"16": 5,
"1": 6,
"17": 6,
"8": 7,
"19": 7,
"14": 8,
"20": 9,
"0": 9,
"2": 10,
"6": 10,
"9": 11,
"15": 11,
"5": 12,
"18": 12
},
"d20": {
"12": 1,
"15": 1,
"28": 2,
"39": 2,
"8": 3,
"38": 3,
"9": 4,
"24": 4,
"10": 5,
"29": 5,
"0": 6,
"25": 6,
"16": 7,
"19": 7,
"1": 8,
"26": 8,
"11": 9,
"30": 9,
"2": 10,
"27": 10,
"31": 11,
"37": 11,
"18": 12,
"33": 12,
"32": 13,
"5": 13,
"20": 14,
"34": 14,
"3": 15,
"6": 15,
"21": 16,
"35": 16,
"4": 17,
"7": 17,
"22": 18,
"36": 18,
"13": 19,
"14": 19,
"17": 20,
"23": 20
}
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 106 KiB

View File

@ -1,33 +0,0 @@
{
"name": "@3d-dice/theme-gemstone",
"private": false,
"author": {
"name": "Frank Ali"
},
"description": "Gemstone dice with configurable colors",
"version": "0.2.0",
"keywords": [
"3D",
"dice",
"skins",
"theme",
"javascript",
"rpg",
"dnd",
"d&d",
"tabletop"
],
"license": "MIT",
"homepage": "https://fantasticdice.games",
"repository": {
"type": "git",
"url": "https://github.com/3d-dice/dice-themes",
"directory": "themes/gemstone"
},
"bugs": {
"url": "https://github.com/3d-dice/dice-themes/issues"
},
"files": [
"*"
]
}

View File

@ -1,20 +0,0 @@
{
"name": "Gemstone",
"systemName": "gemstone",
"author": "Frank Ali",
"version": 0.2,
"meshName": "gemstone",
"meshFile": "gemstone.json",
"material": {
"type": "color",
"diffuseTexture": {
"light": "gemstone-light.png",
"dark": "gemstone-dark.png"
},
"bumpTexture": "normal.png",
"diffuseLevel": 1,
"bumpLevel": 0.5
},
"d4FaceDown": false,
"diceAvailable": ["d4","d6","d8","d10","d12","d20","d100"]
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 63 KiB

View File

@ -1,636 +0,0 @@
{"producer":{"name":"Blender","version":"2.93.4","exporter_version":"2.93.5","file":"gemstone.babylon"},"gravity":[0,-9.81,0],"physicsEnabled":true,
"meshes":[{"name":"d4","id":"d4","billboardMode":0,"position":[0,0,-0.8524],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false
,"positions":[-0.0415,-0.0543,-0.099,0.0411,-0.0543,-0.099,-0.0002,-0.013,-0.1204,0.0543,0.0413,0.0994,0.0543,-0.0417,0.0994,0.0127,-0.0002,0.1208,0.0412,0.0544,-0.0998,-0.0419,0.0544,-0.0998,-0.0002,0.0129,-0.1204,-0.0537,0.063,-0.0862,0.053,0.063,0.0858,-0.0537,0.063,0.0858,0.0628,-0.0535,-0.0862,0.0628,0.0531,0.0858,0.0628,0.0531,-0.0862,0.053,-0.0633,0.0858,-0.0532,-0.0628,-0.0856
,-0.0532,-0.0628,0.0854,0.0543,-0.0417,-0.0998,0.0543,0.0413,-0.0998,0.0127,-0.0002,-0.1212,0.0412,-0.0547,0.0994,-0.0415,-0.0543,0.0989,-0.0003,-0.0132,0.1208,-0.0419,0.0544,0.0994,0.0412,0.0544,0.0994,-0.0003,0.0129,0.1208,-0.0545,-0.0413,0.0989,-0.0549,0.0413,0.0994,-0.0134,-0.0002,0.1208,-0.063,0.0529,0.0854,-0.063,-0.0531,-0.0856,-0.063,0.0529,-0.0856,-0.0483,0.048,-0.1002
,-0.0605,0.047,-0.0933,-0.0545,0.0412,-0.099,-0.0478,0.0604,-0.094,-0.0537,0.063,-0.0862,-0.0572,0.0566,-0.0941,-0.063,0.0529,-0.0856,-0.0606,0.0601,-0.0862,-0.0605,-0.0472,-0.0933,-0.0483,-0.0482,-0.1002,-0.0545,-0.0413,-0.099,-0.063,-0.0531,-0.0856,-0.0567,-0.0565,-0.0934,-0.0532,-0.0628,-0.0856,-0.0601,-0.06,-0.0856,-0.0474,-0.0603,-0.0933,-0.0537,0.063,0.0858,-0.0572,0.0566,0.0937
,-0.0606,0.0601,0.0858,-0.0488,0.0482,0.1006,-0.0478,0.0604,0.0936,-0.0605,0.047,0.0931,-0.063,0.0529,0.0854,-0.0532,-0.0628,0.0854,-0.0567,-0.0565,0.0933,-0.0474,-0.0603,0.0931,-0.063,-0.0531,0.0854,-0.0601,-0.06,0.0854,-0.0483,-0.0482,0.1001,-0.0605,-0.0472,0.0931,0.0603,0.0472,-0.094,0.0481,0.0482,-0.101,0.0628,0.0531,-0.0862,0.0565,0.0566,-0.0941,0.053,0.063,-0.0862
,0.06,0.0601,-0.0862,0.0471,0.0604,-0.094,0.053,-0.0633,-0.0862,0.0565,-0.057,-0.0941,0.0469,-0.0603,-0.0933,0.0628,-0.0535,-0.0862,0.06,-0.0604,-0.0862,0.0481,-0.0486,-0.101,0.0603,-0.0476,-0.094,0.0628,-0.0535,0.0858,0.0565,-0.057,0.0937,0.0603,-0.0476,0.0936,0.053,-0.0633,0.0858,0.06,-0.0604,0.0858,0.0481,-0.0486,0.1006,0.0471,-0.0608,0.0936,-0.0003,-0.0002,-0.1257
,0.0065,-0.0071,-0.1224,-0.007,0.0068,-0.1216,0.0065,0.0067,-0.1224,-0.007,-0.0069,-0.1216,-0.0132,-0.0001,-0.1204,0.0471,0.0604,0.0936,0.0481,0.0482,0.1006,0.053,0.063,0.0858,0.0565,0.0566,0.0937,0.0628,0.0531,0.0858,0.06,0.0601,0.0858,0.0603,0.0472,0.0936,-0.0003,-0.0002,0.1254,0.0065,-0.0071,0.122,-0.0072,-0.0071,0.122,-0.0072,0.0067,0.122,0.0065,0.0067,0.122
,-0.063,0.0529,-0.0856,-0.0606,0.0601,-0.0862,-0.0606,0.0601,0.0858,-0.0606,0.0601,-0.0862,-0.063,-0.0531,0.0854,-0.0601,-0.06,-0.0856,-0.0601,-0.06,0.0854,-0.0601,-0.06,-0.0856,-0.063,0.0529,0.0854,0.06,-0.0604,-0.0862,0.053,-0.0633,-0.0862,0.06,-0.0604,0.0858,0.06,-0.0604,-0.0862,0.0628,0.0531,-0.0862,0.053,0.063,0.0858,0.06,0.0601,-0.0862,0.06,0.0601,0.0858
,0.053,0.063,-0.0862,0.06,0.0601,-0.0862,-0.0532,-0.0628,-0.0856,0.053,-0.0633,0.0858,-0.0532,-0.0628,0.0854,-0.0537,0.063,-0.0862,0.053,0.063,-0.0862,0.0628,-0.0535,0.0858,0.053,-0.0633,-0.0862,-0.063,-0.0531,0.0854,-0.0537,0.063,-0.0862,-0.0606,0.0601,-0.0862,-0.063,0.0529,-0.0856,-0.063,-0.0531,-0.0856,-0.0601,-0.06,-0.0856,-0.0532,-0.0628,-0.0856,-0.0537,0.063,0.0858
,-0.063,0.0529,0.0854,-0.0606,0.0601,0.0858,-0.0532,-0.0628,0.0854,-0.0601,-0.06,0.0854,0.0628,0.0531,-0.0862,0.06,0.0601,-0.0862,0.06,-0.0604,-0.0862,0.0628,-0.0535,-0.0862,0.06,-0.0604,0.0858,0.053,-0.0633,0.0858,0.053,0.063,0.0858,0.06,0.0601,0.0858,0.0628,0.0531,0.0858,-0.063,0.0529,-0.0856,-0.063,-0.0531,-0.0856,-0.0606,0.0601,0.0858,-0.0606,0.0601,-0.0862
,-0.0606,0.0601,0.0858,-0.063,-0.0531,0.0854,-0.0601,-0.06,0.0854,-0.0601,-0.06,-0.0856,-0.0601,-0.06,0.0854,-0.063,0.0529,0.0854,0.06,-0.0604,0.0858,0.06,-0.0604,-0.0862,0.06,-0.0604,0.0858,0.0628,-0.0535,0.0858,0.0628,-0.0535,-0.0862,0.0628,0.0531,-0.0862,-0.0537,0.063,0.0858,0.053,0.063,0.0858,0.06,0.0601,0.0858,0.06,0.0601,-0.0862,0.06,0.0601,0.0858
,0.053,0.063,-0.0862,-0.0532,-0.0628,-0.0856,0.053,-0.0633,0.0858,0.0628,0.0531,0.0858,-0.0537,0.063,-0.0862]
,"normals":[-0.115,-0.53,-0.84,0.079,-0.556,-0.827,-0.033,-0.363,-0.931,0.53,0.115,0.84,0.53,-0.115,0.84,0.366,0,0.93,0.113,0.526,-0.843,-0.149,0.5,-0.853,-0.031,0.355,-0.934,-0.216,0.95,-0.224,0.216,0.95,0.224,-0.216,0.95,0.224,0.95,-0.216,-0.224,0.95,0.216,0.224,0.95,0.216,-0.224,0.214,-0.951,0.224,-0.217,-0.95,-0.225
,-0.218,-0.95,0.224,0.53,-0.115,-0.84,0.53,0.115,-0.84,0.366,0,-0.93,0.111,-0.533,0.839,-0.12,-0.531,0.839,-0.004,-0.37,0.929,-0.115,0.53,0.84,0.115,0.53,0.84,0,0.367,0.93,-0.534,-0.118,0.837,-0.568,0.123,0.814,-0.37,-0.004,0.929,-0.962,0.172,0.211,-0.95,-0.216,-0.224,-0.964,0.169,-0.207,-0.33,0.27,-0.905
,-0.795,0.106,-0.597,-0.53,0.115,-0.84,-0.141,0.776,-0.614,-0.216,0.95,-0.224,-0.531,0.466,-0.708,-0.964,0.169,-0.207,-0.713,0.65,-0.265,-0.787,-0.136,-0.602,-0.311,-0.312,-0.898,-0.53,-0.115,-0.84,-0.95,-0.216,-0.224,-0.51,-0.51,-0.693,-0.217,-0.95,-0.225,-0.686,-0.681,-0.258,-0.136,-0.787,-0.602,-0.216,0.95,0.224,-0.538,0.484,0.69
,-0.712,0.653,0.258,-0.323,0.311,0.894,-0.136,0.787,0.602,-0.81,0.117,0.575,-0.962,0.172,0.211,-0.218,-0.95,0.224,-0.51,-0.51,0.693,-0.139,-0.786,0.603,-0.95,-0.216,0.224,-0.681,-0.686,0.258,-0.315,-0.315,0.895,-0.787,-0.136,0.602,0.787,0.136,-0.602,0.308,0.311,-0.899,0.95,0.216,-0.224,0.51,0.51,-0.693,0.216,0.95,-0.224
,0.686,0.681,-0.258,0.136,0.787,-0.602,0.202,-0.949,-0.244,0.485,-0.524,-0.701,0.093,-0.782,-0.617,0.95,-0.216,-0.224,0.673,-0.691,-0.266,0.28,-0.342,-0.897,0.787,-0.136,-0.602,0.95,-0.216,0.224,0.51,-0.51,0.693,0.787,-0.136,0.602,0.214,-0.951,0.224,0.686,-0.681,0.258,0.311,-0.312,0.898,0.132,-0.789,0.6,-0.085,-0.002,-0.996
,0.173,-0.267,-0.948,-0.233,0.219,-0.947,0.175,0.265,-0.948,-0.235,-0.22,-0.947,-0.332,0,-0.943,0.136,0.787,0.602,0.311,0.312,0.898,0.216,0.95,0.224,0.51,0.51,0.693,0.95,0.216,0.224,0.681,0.686,0.258,0.787,0.136,0.602,0,0,1,0.235,-0.235,0.943,-0.239,-0.239,0.941,-0.235,0.235,0.943,0.235,0.235,0.943
,-0.964,0.169,-0.207,-0.716,0.648,-0.26,-0.708,0.656,0.262,-0.713,0.65,-0.265,-0.95,-0.216,0.224,-0.678,-0.688,-0.258,-0.688,-0.678,0.258,-0.686,-0.681,-0.258,-0.962,0.172,0.211,0.698,-0.67,-0.253,0.202,-0.949,-0.244,0.678,-0.688,0.258,0.673,-0.691,-0.266,0.95,0.216,-0.224,0.216,0.95,0.224,0.678,0.688,-0.258,0.688,0.678,0.258
,0.216,0.95,-0.224,0.686,0.681,-0.258,-0.217,-0.95,-0.225,0.214,-0.951,0.224,-0.218,-0.95,0.224,-0.216,0.95,-0.224,0.216,0.95,-0.224,0.95,-0.216,0.224,0.202,-0.949,-0.244,-0.95,-0.216,0.224,-0.216,0.95,-0.224,-0.716,0.648,-0.26,-0.964,0.169,-0.207,-0.95,-0.216,-0.224,-0.678,-0.688,-0.258,-0.217,-0.95,-0.225,-0.216,0.95,0.224
,-0.962,0.172,0.211,-0.708,0.656,0.262,-0.218,-0.95,0.224,-0.688,-0.678,0.258,0.95,0.216,-0.224,0.678,0.688,-0.258,0.698,-0.67,-0.253,0.95,-0.216,-0.224,0.678,-0.688,0.258,0.214,-0.951,0.224,0.216,0.95,0.224,0.688,0.678,0.258,0.95,0.216,0.224,-0.964,0.169,-0.207,-0.95,-0.216,-0.224,-0.712,0.653,0.258,-0.716,0.648,-0.26
,-0.708,0.656,0.262,-0.95,-0.216,0.224,-0.681,-0.686,0.258,-0.678,-0.688,-0.258,-0.688,-0.678,0.258,-0.962,0.172,0.211,0.686,-0.681,0.258,0.698,-0.67,-0.253,0.678,-0.688,0.258,0.95,-0.216,0.224,0.95,-0.216,-0.224,0.95,0.216,-0.224,-0.216,0.95,0.224,0.216,0.95,0.224,0.681,0.686,0.258,0.678,0.688,-0.258,0.688,0.678,0.258
,0.216,0.95,-0.224,-0.217,-0.95,-0.225,0.214,-0.951,0.224,0.95,0.216,0.224,-0.216,0.95,-0.224]
,"uvs":[0.296,0.555,0.385,0.555,0.34,0.6,0.866,0.844,0.955,0.844,0.91,0.889,0.385,0.671,0.296,0.67,0.34,0.626,0.834,0.88,0.653,0.992,0.653,0.88,0.834,0.608,0.653,0.496,0.834,0.496,0.653,0.624,0.834,0.736,0.653,0.736,0.398,0.568,0.398,0.657,0.353,0.613,0.968,0.857,0.968,0.946,0.923,0.902,0.852,0.946
,0.853,0.857,0.897,0.902,0.954,0.96,0.866,0.959,0.91,0.915,0.653,0.864,0.834,0.752,0.834,0.864,0.289,0.664,0.274,0.664,0.282,0.657,0.289,0.679,0.28,0.689,0.278,0.675,0.264,0.673,0.27,0.683,0.274,0.561,0.289,0.561,0.283,0.568,0.264,0.552,0.278,0.551,0.28,0.537,0.27,0.542,0.289,0.546,0.834,0.963
,0.848,0.964,0.84,0.972,0.859,0.953,0.843,0.953,0.859,0.968,0.85,0.978,0.986,0.962,0.972,0.964,0.977,0.953,0.971,0.978,0.981,0.972,0.961,0.953,0.962,0.969,0.407,0.664,0.392,0.664,0.416,0.673,0.402,0.675,0.401,0.689,0.411,0.683,0.392,0.679,0.401,0.537,0.402,0.551,0.392,0.546,0.416,0.552,0.411,0.542
,0.392,0.561,0.407,0.561,0.971,0.826,0.972,0.84,0.962,0.835,0.986,0.841,0.981,0.831,0.962,0.85,0.977,0.85,0.34,0.613,0.347,0.606,0.334,0.619,0.347,0.619,0.334,0.606,0.327,0.613,0.844,0.85,0.859,0.85,0.834,0.841,0.848,0.84,0.849,0.826,0.84,0.831,0.859,0.835,0.91,0.902,0.917,0.895,0.917,0.909
,0.903,0.908,0.903,0.895,0.264,0.673,0.834,0.872,0.653,0.872,0.834,0.872,0.653,0.752,0.834,0.744,0.653,0.744,0.834,0.744,0.85,0.978,0.834,0.616,0.834,0.624,0.653,0.616,0.834,0.616,0.416,0.673,0.834,0.841,0.834,0.488,0.653,1,0.834,0.992,0.834,1,0.28,0.537,0.986,0.841,0.986,0.962,0.28,0.689
,0.834,0.992,0.653,0.608,0.834,0.624,0.653,0.752,0.28,0.689,0.27,0.683,0.264,0.673,0.264,0.552,0.27,0.542,0.28,0.537,0.834,0.963,0.85,0.978,0.84,0.972,0.986,0.962,0.981,0.972,0.416,0.673,0.411,0.683,0.411,0.542,0.416,0.552,0.981,0.831,0.986,0.841,0.834,0.841,0.84,0.831,0.849,0.826,0.264,0.673
,0.264,0.552,0.653,0.872,0.834,0.872,0.653,0.872,0.653,0.752,0.653,0.744,0.834,0.744,0.653,0.744,0.85,0.978,0.653,0.616,0.834,0.616,0.653,0.616,0.653,0.608,0.416,0.552,0.416,0.673,0.834,0.963,0.834,0.841,0.653,0.488,0.834,0.488,0.653,1,0.834,0.992,0.28,0.537,0.986,0.841,0.849,0.826,0.28,0.689
]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,33,7,37,38,36,39,38,40,41,42,43,44,45,41
,46,45,47,42,48,0,49,50,51,52,53,24,54,52,28,55,50,54,56,57,58,59,57,60,61,62,27,58,61,22,63,64,19,65,66,63,67,66,68,64,69,6,70,71,72,73,71,74,75,76,18
,72,75,1,77,78,79,80,78,81,82,83,21,79,82,4,20,84,85,86,87,8,88,86,89,85,88,2,90,91,25,92,93,90,94,93,95,91,96,3,23,97,98,29,97,99,26,97,100,5,97,101
,102,41,34,41,35,34,11,103,9,104,32,105,106,107,31,108,16,109,27,54,28,62,110,54,15,111,112,113,12,114,18,63,19,76,115,63,24,90,25,53,116,90,13,117,14,118,119,120,18,85,75
,75,2,1,0,88,42,88,43,42,0,72,1,72,121,70,22,83,58,58,122,123,3,79,4,96,77,79,21,98,82,98,4,82,7,69,36,69,124,36,3,101,91,101,25,91,8,64,6,87,19,64
,35,86,33,33,8,7,24,100,52,100,28,52,27,99,61,99,22,61,35,43,89,9,125,10,12,126,13,15,127,16,30,128,31,33,38,34,36,38,33,129,130,38,131,34,38,41,45,42,132,133,45
,134,48,45,42,45,48,135,53,50,52,50,53,54,50,52,136,137,50,138,139,57,59,62,57,61,57,62,58,57,61,63,66,64,140,141,66,67,69,66,64,66,69,70,142,71,143,76,71,75,71,76
,72,71,75,77,144,78,145,83,78,82,78,83,79,78,82,20,87,84,86,84,87,88,84,86,85,84,88,90,93,91,146,147,93,148,96,93,91,93,96,23,99,97,29,100,97,26,101,97,5,98,97
,149,150,41,41,43,35,11,151,152,153,30,32,154,155,156,157,17,16,27,62,54,62,59,158,15,159,160,161,162,12,18,76,63,76,163,164,24,53,90,53,165,166,13,167,168,169,10,170,18,20,85
,75,85,2,0,2,88,88,89,43,0,48,72,72,48,171,22,21,83,58,83,172,3,96,79,96,173,77,21,23,98,98,5,4,7,6,69,69,67,174,3,5,101,101,26,25,8,87,64,87,20,19
,35,89,86,33,86,8,24,26,100,100,29,28,27,29,99,99,23,22]
}
,{"name":"d20","id":"d20","billboardMode":0,"position":[0,0,0.9985],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false,"physicsImpostor":8,"physicsMass":0.01,"physicsFriction":0.5,"physicsRestitution":0
,"positions":[0.095,0.0282,-0.1197,0.095,-0.0284,-0.1197,0.0999,-0.0001,0.1046,0.0603,0.0784,-0.1197,0.0936,0.0325,-0.1197,0.0807,0.058,0.1046,0.0029,0.0988,-0.1197,0.0567,0.0811,-0.1197,0.0323,0.0952,0.1061,-0.0808,0.0566,0.1206,-0.0996,0.0022,0.1206,-0.094,0.0308,-0.1064,-0.0317,0.094,0.1208,-0.0781,0.0603,0.1206,-0.0576,0.081,-0.1065,-0.0051,-0.0021,0.1749,-0.0756,-0.0533,0.1302
,-0.0932,-0.002,0.1302,-0.0051,0.002,0.1749,-0.0932,0.0019,0.1302,-0.0756,0.0532,0.1302,-0.0027,0.0054,0.1749,-0.0732,0.0564,0.1302,-0.0294,0.088,0.1302,0.0934,0.0019,0.1286,0.007,0.002,0.1728,0.0766,0.0526,0.1286,0.0936,-0.0327,-0.1197,0.0605,-0.0786,-0.1197,0.0807,-0.0581,0.1046,0.0766,-0.0527,0.1286,0.007,-0.0021,0.1728,0.0934,-0.002,0.1286,-0.0258,-0.0895,0.1302
,0.0013,-0.0068,0.1749,0.0272,-0.0884,0.1285,0.0742,0.0558,0.1286,0.0046,0.0053,0.1728,0.0311,0.0871,0.1286,0.0012,0.0066,0.1751,-0.0257,0.0893,0.1304,0.0283,0.0895,0.1304,-0.0274,0.0954,0.1208,0.0012,0.1005,-0.1065,0.029,0.0943,0.1191,0.0587,0.08,-0.1051,0.0791,0.0596,0.1191,0.0333,0.0929,0.1191,0.0791,-0.0597,0.1191,0.0589,-0.0802,-0.1052,0.0331,-0.0931,0.1191
,-0.0297,-0.0952,0.1059,-0.001,-0.1001,-0.121,-0.0554,-0.0821,-0.121,-0.0555,0.0821,-0.1212,-0.001,0.1001,-0.1212,-0.0297,0.095,0.1061,0.031,-0.0872,0.1285,0.0045,-0.0054,0.1728,0.0742,-0.0559,0.1286,-0.0797,0.0587,0.106,-0.0929,0.0328,-0.121,-0.0591,0.0793,-0.121,-0.0943,0.0285,-0.121,-0.0999,-0.0001,0.1059,-0.0943,-0.0286,-0.121,-0.0797,-0.0588,0.106,-0.0591,-0.0794,-0.121
,-0.0929,-0.033,-0.121,-0.0007,-0.0938,-0.1306,-0.0008,-0.0065,-0.1736,-0.052,-0.0769,-0.1306,0.0878,-0.0305,-0.1291,0.0067,-0.0041,-0.1738,0.0566,-0.0738,-0.1291,0.008,-0.0001,-0.1738,0.089,-0.0268,-0.1291,0.089,0.0265,-0.1291,0.0878,0.0303,-0.1291,0.0564,0.0735,-0.1291,0.0067,0.0039,-0.1738,0.0027,0.0063,-0.1716,0.0533,0.0759,-0.1291,0.0026,0.0926,-0.1291,0.0534,-0.0761,-0.1291
,0.0033,-0.0065,-0.1738,0.0027,-0.0926,-0.129,0.0996,-0.0023,0.1191,0.0947,-0.0307,-0.1051,0.0817,-0.0561,0.1191,0.0289,-0.0943,0.119,0.0013,-0.1005,-0.1063,-0.0274,-0.0956,0.1206,-0.0318,-0.0942,0.1206,-0.0575,-0.0811,-0.1063,-0.0781,-0.0604,0.1206,-0.0996,-0.0023,0.1206,-0.0808,-0.0568,0.1206,-0.094,-0.0309,-0.1064,-0.0008,0.0063,-0.1738,-0.0008,0.0938,-0.1308,-0.052,0.0768,-0.1306
,-0.0041,0.0039,-0.1736,-0.0552,0.0744,-0.1306,-0.087,0.0306,-0.1306,-0.0882,-0.027,-0.1306,-0.0055,-0.0001,-0.1736,-0.0882,0.0268,-0.1306,-0.0552,-0.0745,-0.1306,-0.0041,-0.004,-0.1736,-0.087,-0.0308,-0.1306,-0.0027,-0.0055,0.1749,-0.0296,-0.0883,0.1302,-0.0732,-0.0565,0.1302,0.0817,0.056,0.1191,0.0947,0.0304,-0.1051,0.0996,0.0022,0.1191,0.0568,-0.0813,-0.1197,0.0605,-0.0786,-0.1197
,0.095,-0.0284,-0.1197,0.0878,-0.0305,-0.1291,0.0936,-0.0327,-0.1197,0.0027,-0.0926,-0.129,-0.001,-0.1001,-0.121,0.003,-0.0988,-0.1195,0.095,0.0282,-0.1197,0.0947,0.0304,-0.1051,0.0936,0.0325,-0.1197,-0.052,-0.0769,-0.1306,-0.0591,-0.0794,-0.121,-0.0554,-0.0821,-0.121,0.0533,0.0759,-0.1291,0.0603,0.0784,-0.1197,0.0567,0.0811,-0.1197,-0.0929,-0.033,-0.121,-0.0882,-0.027,-0.1306
,-0.0943,-0.0286,-0.121,-0.001,0.1001,-0.1212,0.0026,0.0926,-0.1291,0.0029,0.0988,-0.1197,-0.0882,0.0268,-0.1306,-0.0929,0.0328,-0.121,-0.0943,0.0285,-0.121,-0.0555,0.0821,-0.1212,-0.0576,0.081,-0.1065,-0.0591,0.0793,-0.121,0.0027,0.0063,-0.1716,-0.0041,0.0039,-0.1736,-0.0041,-0.004,-0.1736,0.0791,-0.0597,0.1191,0.0766,-0.0527,0.1286,0.0817,-0.0561,0.1191,0.0289,-0.0943,0.119
,0.0331,-0.0931,0.1191,0.0311,-0.0941,0.1046,-0.0318,-0.0942,0.1206,-0.0258,-0.0895,0.1302,-0.0274,-0.0956,0.1206,-0.0756,-0.0533,0.1302,-0.0781,-0.0604,0.1206,-0.0808,-0.0568,0.1206,-0.0932,0.0019,0.1302,-0.0996,-0.0023,0.1206,-0.0996,0.0022,0.1206,-0.0781,0.0603,0.1206,-0.0756,0.0532,0.1302,-0.0808,0.0566,0.1206,0.0996,-0.0023,0.1191,0.0996,0.0022,0.1191,0.0766,0.0526,0.1286
,0.0791,0.0596,0.1191,0.0817,0.056,0.1191,0.029,0.0943,0.1191,0.0323,0.0952,0.1061,0.0333,0.0929,0.1191,-0.0274,0.0954,0.1208,-0.0317,0.094,0.1208,-0.0051,-0.0021,0.1749,-0.0051,0.002,0.1749,0.007,0.002,0.1728,-0.0943,0.0285,-0.121,-0.0257,0.0893,0.1304,-0.0027,0.0054,0.1749,-0.0294,0.088,0.1302,0.0934,-0.002,0.1286,0.007,0.002,0.1728,0.0934,0.0019,0.1286
,0.0046,0.0053,0.1728,0.0283,0.0895,0.1304,0.0311,0.0871,0.1286,0.0817,0.056,0.1191,0.0934,0.0019,0.1286,0.0766,0.0526,0.1286,0.0272,-0.0884,0.1285,0.0045,-0.0054,0.1728,0.031,-0.0872,0.1285,0.0791,-0.0597,0.1191,0.031,-0.0872,0.1285,0.0742,-0.0559,0.1286,-0.0554,-0.0821,-0.121,-0.0929,-0.033,-0.121,0.0742,-0.0559,0.1286,0.007,-0.0021,0.1728,0.0766,-0.0527,0.1286
,-0.0576,0.081,-0.1065,-0.0555,0.0821,-0.1212,0.0807,-0.0581,0.1046,0.0936,-0.0327,-0.1197,0.007,0.002,0.1728,0.0742,0.0558,0.1286,0.0766,0.0526,0.1286,0.0936,-0.0327,-0.1197,0.0566,-0.0738,-0.1291,0.0605,-0.0786,-0.1197,0.0323,0.0952,0.1061,0.0012,0.1005,-0.1065,0.0029,0.0988,-0.1197,0.0272,-0.0884,0.1285,-0.0274,-0.0956,0.1206,-0.0258,-0.0895,0.1302,0.095,0.0282,-0.1197
,0.089,-0.0268,-0.1291,0.095,-0.0284,-0.1197,-0.0943,-0.0286,-0.121,-0.0051,0.002,0.1749,-0.0932,-0.002,0.1302,-0.0932,0.0019,0.1302,-0.0943,-0.0286,-0.121,-0.0882,0.0268,-0.1306,-0.0943,0.0285,-0.121,0.0587,0.08,-0.1051,0.0603,0.0784,-0.1197,0.0947,0.0304,-0.1051,0.095,0.0282,-0.1197,0.0807,-0.0581,0.1046,0.0605,-0.0786,-0.1197,-0.0808,-0.0568,0.1206,-0.0932,-0.002,0.1302
,-0.0756,-0.0533,0.1302,-0.0296,-0.0883,0.1302,-0.0781,-0.0604,0.1206,-0.0732,-0.0565,0.1302,-0.0797,0.0587,0.106,-0.0929,0.0328,-0.121,-0.0008,-0.0065,-0.1736,-0.0552,-0.0745,-0.1306,-0.052,-0.0769,-0.1306,-0.0591,-0.0794,-0.121,-0.0732,0.0564,0.1302,-0.0051,0.002,0.1749,-0.0756,0.0532,0.1302,0.0936,0.0325,-0.1197,0.0564,0.0735,-0.1291,0.0878,0.0303,-0.1291,-0.087,-0.0308,-0.1306
,-0.0591,-0.0794,-0.121,-0.0552,-0.0745,-0.1306,0.0013,-0.1005,-0.1063,0.003,-0.0988,-0.1195,0.0568,-0.0813,-0.1197,0.0027,-0.0926,-0.129,0.0817,-0.0561,0.1191,0.0934,-0.002,0.1286,0.0996,-0.0023,0.1191,-0.087,-0.0308,-0.1306,-0.0055,-0.0001,-0.1736,-0.0882,-0.027,-0.1306,0.0567,0.0811,-0.1197,0.0026,0.0926,-0.1291,0.0533,0.0759,-0.1291,-0.0007,-0.0938,-0.1306,-0.0554,-0.0821,-0.121
,-0.001,-0.1001,-0.121,0.089,-0.0268,-0.1291,0.0067,-0.0041,-0.1738,0.0878,-0.0305,-0.1291,0.0791,0.0596,0.1191,0.0311,0.0871,0.1286,0.0333,0.0929,0.1191,0.0947,0.0304,-0.1051,0.0817,0.056,0.1191,-0.0808,0.0566,0.1206,-0.0932,0.0019,0.1302,-0.0996,0.0022,0.1206,0.0566,-0.0738,-0.1291,0.0033,-0.0065,-0.1738,0.0534,-0.0761,-0.1291,0.0012,0.1005,-0.1065,-0.0274,0.0954,0.1208
,0.0323,0.0952,0.1061,0.0587,0.08,-0.1051,0.0333,0.0929,0.1191,-0.0552,0.0744,-0.1306,-0.0929,0.0328,-0.121,-0.087,0.0306,-0.1306,0.0013,-0.1005,-0.1063,-0.001,-0.1001,-0.121,-0.0317,0.094,0.1208,-0.0732,0.0564,0.1302,-0.0781,0.0603,0.1206,-0.0576,0.081,-0.1065,-0.0797,0.0587,0.106,-0.0591,0.0793,-0.121,-0.001,0.1001,-0.1212,-0.052,0.0768,-0.1306,-0.0008,0.0938,-0.1308
,0.0027,-0.0926,-0.129,-0.0008,-0.0065,-0.1736,-0.0007,-0.0938,-0.1306,0.029,0.0943,0.1191,-0.0257,0.0893,0.1304,-0.0274,0.0954,0.1208,-0.0055,-0.0001,-0.1736,-0.087,0.0306,-0.1306,-0.0882,0.0268,-0.1306,-0.0008,0.0938,-0.1308,0.0027,0.0063,-0.1716,0.0026,0.0926,-0.1291,0.0996,-0.0023,0.1191,-0.0027,-0.0055,0.1749,-0.0258,-0.0895,0.1302,-0.0296,-0.0883,0.1302,-0.0041,0.0039,-0.1736
,-0.052,0.0768,-0.1306,-0.0552,0.0744,-0.1306,-0.0051,-0.0021,0.1749,-0.0732,-0.0565,0.1302,-0.0756,-0.0533,0.1302,0.0067,0.0039,-0.1738,0.089,0.0265,-0.1291,0.0878,0.0303,-0.1291,0.0027,0.0063,-0.1716,0.0564,0.0735,-0.1291,0.0533,0.0759,-0.1291,0.0311,-0.0941,0.1046,0.0568,-0.0813,-0.1197,0.003,-0.0988,-0.1195,-0.0996,0.0022,0.1206,-0.0996,-0.0023,0.1206,-0.0797,0.0587,0.106
,-0.0781,0.0603,0.1206,-0.0808,0.0566,0.1206,-0.0294,0.088,0.1302,-0.0274,0.0954,0.1208,-0.0257,0.0893,0.1304,0.029,0.0943,0.1191,0.0311,0.0871,0.1286,0.0283,0.0895,0.1304,0.0817,0.056,0.1191,0.0791,0.0596,0.1191,0.0934,0.0019,0.1286,0.0996,-0.0023,0.1191,0.0934,-0.002,0.1286,0.0807,-0.0581,0.1046,0.0791,-0.0597,0.1191,0.0817,-0.0561,0.1191,0.0272,-0.0884,0.1285
,0.0331,-0.0931,0.1191,0.0289,-0.0943,0.119,-0.0318,-0.0942,0.1206,-0.0274,-0.0956,0.1206,-0.0808,-0.0568,0.1206,-0.0781,-0.0604,0.1206,-0.0943,0.0285,-0.121,-0.0929,0.0328,-0.121,-0.0555,0.0821,-0.1212,-0.0552,0.0744,-0.1306,-0.052,0.0768,-0.1306,0.0012,0.1005,-0.1065,-0.001,0.1001,-0.1212,0.0029,0.0988,-0.1197,0.0587,0.08,-0.1051,0.0567,0.0811,-0.1197,0.0603,0.0784,-0.1197
,0.089,0.0265,-0.1291,0.0936,0.0325,-0.1197,0.0878,0.0303,-0.1291,0.095,-0.0284,-0.1197,0.0936,-0.0327,-0.1197,0.0534,-0.0761,-0.1291,0.0605,-0.0786,-0.1197,0.0566,-0.0738,-0.1291,0.0013,-0.1005,-0.1063,0.003,-0.0988,-0.1195,-0.001,-0.1001,-0.121,-0.0554,-0.0821,-0.121,-0.0591,-0.0794,-0.121,-0.0929,-0.033,-0.121,-0.0943,-0.0286,-0.121,0.095,-0.0284,-0.1197,0.089,-0.0268,-0.1291
,0.0878,-0.0305,-0.1291,0.0027,-0.0926,-0.129,-0.0007,-0.0938,-0.1306,-0.001,-0.1001,-0.121,-0.052,-0.0769,-0.1306,-0.0552,-0.0745,-0.1306,-0.0591,-0.0794,-0.121,0.0533,0.0759,-0.1291,0.0564,0.0735,-0.1291,0.0603,0.0784,-0.1197,-0.0929,-0.033,-0.121,-0.087,-0.0308,-0.1306,-0.0882,-0.027,-0.1306,-0.001,0.1001,-0.1212,-0.0008,0.0938,-0.1308,0.0026,0.0926,-0.1291,-0.0882,0.0268,-0.1306
,-0.087,0.0306,-0.1306,-0.0929,0.0328,-0.121,-0.0041,-0.004,-0.1736,-0.0008,-0.0065,-0.1736,0.0027,0.0063,-0.1716,-0.0008,-0.0065,-0.1736,0.0033,-0.0065,-0.1738,0.0067,-0.0041,-0.1738,0.008,-0.0001,-0.1738,-0.0008,-0.0065,-0.1736,0.0067,-0.0041,-0.1738,0.008,-0.0001,-0.1738,0.0067,0.0039,-0.1738,0.0027,0.0063,-0.1716,0.0027,0.0063,-0.1716,-0.0008,0.0063,-0.1738,-0.0041,0.0039,-0.1736
,-0.0041,0.0039,-0.1736,-0.0055,-0.0001,-0.1736,-0.0041,-0.004,-0.1736,-0.0008,-0.0065,-0.1736,0.008,-0.0001,-0.1738,0.0027,0.0063,-0.1716,0.0791,-0.0597,0.1191,0.0742,-0.0559,0.1286,0.0766,-0.0527,0.1286,-0.0318,-0.0942,0.1206,-0.0296,-0.0883,0.1302,-0.0258,-0.0895,0.1302,-0.0756,-0.0533,0.1302,-0.0732,-0.0565,0.1302,-0.0781,-0.0604,0.1206,-0.0932,0.0019,0.1302,-0.0932,-0.002,0.1302
,-0.0996,-0.0023,0.1206,-0.0781,0.0603,0.1206,-0.0732,0.0564,0.1302,-0.0756,0.0532,0.1302,0.0766,0.0526,0.1286,0.0742,0.0558,0.1286,0.0791,0.0596,0.1191,-0.0051,0.002,0.1749,-0.0027,0.0054,0.1749,0.0046,0.0053,0.1728,-0.0027,0.0054,0.1749,0.0012,0.0066,0.1751,0.0046,0.0053,0.1728,0.0046,0.0053,0.1728,0.007,0.002,0.1728,-0.0051,0.002,0.1749,0.007,0.002,0.1728
,0.007,-0.0021,0.1728,-0.0051,-0.0021,0.1749,0.007,-0.0021,0.1728,0.0045,-0.0054,0.1728,-0.0051,-0.0021,0.1749,0.0045,-0.0054,0.1728,0.0013,-0.0068,0.1749,-0.0027,-0.0055,0.1749,-0.0027,-0.0055,0.1749,-0.0051,-0.0021,0.1749,0.0045,-0.0054,0.1728,-0.0996,0.0022,0.1206,-0.0257,0.0893,0.1304,0.0012,0.0066,0.1751,-0.0027,0.0054,0.1749,0.0934,-0.002,0.1286,0.007,-0.0021,0.1728
,0.007,0.002,0.1728,0.0046,0.0053,0.1728,0.0012,0.0066,0.1751,0.0283,0.0895,0.1304,0.0817,0.056,0.1191,0.0996,0.0022,0.1191,0.0934,0.0019,0.1286,0.0272,-0.0884,0.1285,0.0013,-0.0068,0.1749,0.0045,-0.0054,0.1728,0.0791,-0.0597,0.1191,0.0331,-0.0931,0.1191,0.031,-0.0872,0.1285,-0.0318,-0.0942,0.1206,-0.0808,-0.0568,0.1206,0.0742,-0.0559,0.1286,0.0045,-0.0054,0.1728
,0.007,-0.0021,0.1728,-0.0317,0.094,0.1208,-0.0576,0.081,-0.1065,0.0807,-0.0581,0.1046,0.0817,-0.0561,0.1191,0.007,0.002,0.1728,0.0046,0.0053,0.1728,0.0742,0.0558,0.1286,0.0331,-0.0931,0.1191,0.0936,-0.0327,-0.1197,0.0878,-0.0305,-0.1291,0.0566,-0.0738,-0.1291,0.0323,0.0952,0.1061,0.029,0.0943,0.1191,0.0012,0.1005,-0.1065,0.0272,-0.0884,0.1285,0.0289,-0.0943,0.119
,-0.0274,-0.0956,0.1206,0.095,0.0282,-0.1197,0.089,0.0265,-0.1291,0.089,-0.0268,-0.1291,-0.0996,-0.0023,0.1206,-0.0051,0.002,0.1749,-0.0051,-0.0021,0.1749,-0.0932,-0.002,0.1302,-0.0943,-0.0286,-0.121,-0.0882,-0.027,-0.1306,-0.0882,0.0268,-0.1306,0.0791,0.0596,0.1191,0.0587,0.08,-0.1051,0.0996,0.0022,0.1191,0.0947,0.0304,-0.1051,0.0791,-0.0597,0.1191,0.0807,-0.0581,0.1046
,-0.0808,-0.0568,0.1206,-0.0996,-0.0023,0.1206,-0.0932,-0.002,0.1302,-0.0296,-0.0883,0.1302,-0.0318,-0.0942,0.1206,-0.0781,-0.0604,0.1206,-0.0797,0.0587,0.106,-0.0808,0.0566,0.1206,-0.0008,-0.0065,-0.1736,-0.0041,-0.004,-0.1736,-0.0552,-0.0745,-0.1306,-0.0781,-0.0604,0.1206,-0.0732,0.0564,0.1302,-0.0027,0.0054,0.1749,-0.0051,0.002,0.1749,0.0936,0.0325,-0.1197,0.0603,0.0784,-0.1197
,0.0564,0.0735,-0.1291,-0.087,-0.0308,-0.1306,-0.0929,-0.033,-0.121,-0.0591,-0.0794,-0.121,0.0013,-0.1005,-0.1063,0.0289,-0.0943,0.119,0.0568,-0.0813,-0.1197,0.0534,-0.0761,-0.1291,0.0027,-0.0926,-0.129,0.0817,-0.0561,0.1191,0.0766,-0.0527,0.1286,0.0934,-0.002,0.1286,-0.087,-0.0308,-0.1306,-0.0041,-0.004,-0.1736,-0.0055,-0.0001,-0.1736,0.0567,0.0811,-0.1197,0.0029,0.0988,-0.1197
,0.0026,0.0926,-0.1291,-0.0007,-0.0938,-0.1306,-0.052,-0.0769,-0.1306,-0.0554,-0.0821,-0.121,0.089,-0.0268,-0.1291,0.008,-0.0001,-0.1738,0.0067,-0.0041,-0.1738,0.0791,0.0596,0.1191,0.0742,0.0558,0.1286,0.0311,0.0871,0.1286,0.0936,0.0325,-0.1197,0.0947,0.0304,-0.1051,-0.0808,0.0566,0.1206,-0.0756,0.0532,0.1302,-0.0932,0.0019,0.1302,0.0566,-0.0738,-0.1291,0.0067,-0.0041,-0.1738
,0.0033,-0.0065,-0.1738,-0.001,0.1001,-0.1212,0.0012,0.1005,-0.1065,0.0323,0.0952,0.1061,0.0567,0.0811,-0.1197,0.0587,0.08,-0.1051,-0.0552,0.0744,-0.1306,-0.0591,0.0793,-0.121,-0.0929,0.0328,-0.121,-0.0274,-0.0956,0.1206,0.0013,-0.1005,-0.1063,-0.0317,0.094,0.1208,-0.0294,0.088,0.1302,-0.0732,0.0564,0.1302,-0.0576,0.081,-0.1065,-0.0781,0.0603,0.1206,-0.0797,0.0587,0.106
,-0.001,0.1001,-0.1212,-0.0555,0.0821,-0.1212,-0.052,0.0768,-0.1306,0.0027,-0.0926,-0.129,0.0033,-0.0065,-0.1738,-0.0008,-0.0065,-0.1736,0.029,0.0943,0.1191,0.0283,0.0895,0.1304,-0.0257,0.0893,0.1304,-0.0055,-0.0001,-0.1736,-0.0041,0.0039,-0.1736,-0.087,0.0306,-0.1306,-0.0008,0.0938,-0.1308,-0.0008,0.0063,-0.1738,0.0027,0.0063,-0.1716,0.095,-0.0284,-0.1197,-0.0027,-0.0055,0.1749
,0.0013,-0.0068,0.1749,-0.0258,-0.0895,0.1302,-0.0041,0.0039,-0.1736,-0.0008,0.0063,-0.1738,-0.052,0.0768,-0.1306,-0.0051,-0.0021,0.1749,-0.0027,-0.0055,0.1749,-0.0732,-0.0565,0.1302,0.0067,0.0039,-0.1738,0.008,-0.0001,-0.1738,0.089,0.0265,-0.1291,0.0027,0.0063,-0.1716,0.0067,0.0039,-0.1738,0.0564,0.0735,-0.1291,-0.0294,0.088,0.1302,-0.0317,0.094,0.1208,-0.0274,0.0954,0.1208
,0.029,0.0943,0.1191,0.0333,0.0929,0.1191,0.0311,0.0871,0.1286,0.0934,0.0019,0.1286,0.0996,0.0022,0.1191,0.0996,-0.0023,0.1191,0.0272,-0.0884,0.1285,0.031,-0.0872,0.1285,0.0331,-0.0931,0.1191,-0.0555,0.0821,-0.1212,-0.0591,0.0793,-0.121,-0.0552,0.0744,-0.1306,0.089,0.0265,-0.1291,0.095,0.0282,-0.1197,0.0936,0.0325,-0.1197,0.0534,-0.0761,-0.1291,0.0568,-0.0813,-0.1197
,0.0605,-0.0786,-0.1197]
,"normals":[0.946,0.152,-0.288,0.946,-0.151,-0.288,1,0,-0.001,0.677,0.678,-0.287,0.854,0.434,-0.287,0.808,0.589,0,0.347,0.9,-0.264,0.448,0.846,-0.287,0.402,0.916,0.018,-0.848,0.447,0.285,-0.945,0.156,0.286,-0.948,0.317,-0.003,-0.438,0.851,0.29,-0.676,0.679,0.287,-0.596,0.803,-0.001,-0.174,-0.09,0.981,-0.607,-0.319,0.728
,-0.674,-0.113,0.73,-0.174,0.085,0.981,-0.674,0.113,0.73,-0.606,0.32,0.728,-0.087,0.218,0.972,-0.481,0.487,0.729,-0.328,0.602,0.728,0.676,0.11,0.728,0.336,0.08,0.938,0.61,0.314,0.728,0.855,-0.432,-0.287,0.678,-0.677,-0.287,0.809,-0.588,0.001,0.61,-0.314,0.728,0.336,-0.086,0.938,0.676,-0.11,0.728,-0.089,-0.68,0.728
,0.146,-0.261,0.954,0.186,-0.664,0.724,0.484,0.486,0.728,0.385,0.161,0.909,0.515,0.539,0.666,0.193,0.221,0.956,-0.122,0.688,0.715,0.316,0.647,0.694,-0.149,0.951,0.273,0.015,1,-0.001,0.216,0.939,0.268,0.663,0.748,0.01,0.678,0.677,0.286,0.499,0.819,0.283,0.677,-0.677,0.288,0.589,-0.808,0,0.42,-0.859,0.294
,-0.312,-0.95,0.001,0.054,-0.947,-0.315,-0.439,-0.851,-0.287,-0.451,0.843,-0.294,0.049,0.947,-0.317,-0.312,0.95,0.002,0.369,-0.588,0.72,0.309,-0.205,0.929,0.482,-0.486,0.729,-0.811,0.585,-0.001,-0.854,0.434,-0.288,-0.687,0.667,-0.287,-0.945,0.152,-0.289,-1,0,-0.003,-0.945,-0.153,-0.289,-0.807,-0.591,0,-0.677,-0.678,-0.287
,-0.854,-0.435,-0.287,0.069,-0.669,-0.74,-0.019,-0.229,-0.973,-0.311,-0.605,-0.733,0.613,-0.311,-0.726,0.224,-0.138,-0.965,0.487,-0.485,-0.726,0.276,0.024,-0.961,0.679,-0.107,-0.726,0.679,0.107,-0.726,0.613,0.312,-0.726,0.437,0.525,-0.73,0.177,0.217,-0.96,0.188,0.326,-0.927,0.258,0.64,-0.724,0.372,0.63,-0.682,0.312,-0.612,-0.727
,0.148,-0.232,-0.961,0.301,-0.647,-0.701,0.946,-0.151,0.286,0.95,-0.312,-0.001,0.851,-0.44,0.286,0.16,-0.945,0.285,0.097,-0.995,-0.011,-0.139,-0.947,0.289,-0.435,-0.854,0.286,-0.589,-0.808,0,-0.677,-0.679,0.285,-0.945,-0.156,0.286,-0.848,-0.447,0.285,-0.948,-0.317,-0.003,0.029,0.263,-0.964,0.141,0.665,-0.733,-0.321,0.595,-0.737
,-0.216,0.173,-0.961,-0.491,0.47,-0.734,-0.606,0.309,-0.733,-0.671,-0.106,-0.733,-0.263,0.023,-0.965,-0.671,0.106,-0.733,-0.482,-0.48,-0.733,-0.212,-0.13,-0.969,-0.606,-0.309,-0.733,-0.074,-0.226,0.971,-0.312,-0.611,0.728,-0.483,-0.487,0.728,0.851,0.44,0.286,0.95,0.312,-0.002,0.946,0.151,0.286,0.437,-0.852,-0.287,0.678,-0.677,-0.287
,0.946,-0.152,-0.288,0.614,-0.312,-0.725,0.855,-0.432,-0.287,0.31,-0.646,-0.697,0.049,-0.946,-0.319,0.362,-0.892,-0.271,0.946,0.152,-0.288,0.95,0.312,-0.001,0.854,0.433,-0.287,-0.311,-0.605,-0.733,-0.677,-0.678,-0.287,-0.439,-0.851,-0.287,0.258,0.641,-0.723,0.677,0.678,-0.287,0.438,0.852,-0.289,-0.853,-0.434,-0.288,-0.672,-0.106,-0.732
,-0.945,-0.153,-0.289,0.041,0.947,-0.318,0.381,0.629,-0.677,0.358,0.893,-0.272,-0.671,0.106,-0.733,-0.854,0.434,-0.288,-0.945,0.153,-0.289,-0.454,0.841,-0.295,-0.602,0.798,-0.002,-0.693,0.662,-0.285,0.135,0.299,-0.945,-0.098,0.099,-0.99,-0.156,-0.121,-0.98,0.677,-0.678,0.286,0.61,-0.315,0.727,0.851,-0.44,0.286,0.141,-0.948,0.285
,0.416,-0.86,0.295,0.3,-0.954,0.006,-0.435,-0.854,0.286,-0.089,-0.683,0.725,-0.138,-0.947,0.288,-0.607,-0.32,0.727,-0.677,-0.678,0.286,-0.848,-0.446,0.285,-0.674,0.113,0.73,-0.945,-0.156,0.286,-0.945,0.156,0.286,-0.676,0.68,0.285,-0.607,0.32,0.727,-0.848,0.447,0.285,0.946,-0.151,0.286,0.946,0.151,0.286,0.61,0.315,0.727
,0.678,0.677,0.286,0.851,0.44,0.286,0.142,0.952,0.272,0.373,0.926,0.055,0.43,0.843,0.323,-0.14,0.944,0.298,-0.43,0.853,0.295,-0.176,-0.071,0.982,-0.176,0.072,0.982,0.323,0.105,0.941,-0.945,0.153,-0.289,-0.124,0.688,0.715,-0.057,0.082,0.995,-0.329,0.602,0.728,0.676,-0.11,0.728,0.323,0.105,0.941,0.676,0.11,0.728
,0.378,0.137,0.916,0.327,0.642,0.693,0.524,0.536,0.662,0.851,0.44,0.286,0.676,0.11,0.728,0.61,0.315,0.727,-0.069,-0.734,0.676,0.373,-0.151,0.916,0.126,-0.647,0.752,0.677,-0.678,0.286,0.377,-0.576,0.725,0.483,-0.489,0.726,-0.439,-0.851,-0.287,-0.853,-0.434,-0.288,0.482,-0.486,0.729,0.323,-0.104,0.941,0.61,-0.314,0.728
,-0.602,0.798,-0.002,-0.454,0.841,-0.295,0.809,-0.588,0.001,0.855,-0.432,-0.287,0.323,0.105,0.941,0.484,0.486,0.728,0.61,0.314,0.728,0.855,-0.432,-0.287,0.487,-0.484,-0.727,0.678,-0.677,-0.287,0.373,0.926,0.055,0.174,0.984,-0.026,0.358,0.893,-0.272,0.191,-0.659,0.727,-0.138,-0.947,0.288,-0.089,-0.683,0.725,0.946,0.152,-0.288
,0.678,-0.107,-0.727,0.946,-0.152,-0.288,-0.945,-0.153,-0.289,-0.176,0.072,0.982,-0.674,-0.113,0.73,-0.674,0.113,0.73,-0.945,-0.153,-0.289,-0.671,0.106,-0.733,-0.945,0.153,-0.289,0.596,0.803,-0.002,0.677,0.678,-0.287,0.95,0.312,-0.001,0.946,0.152,-0.288,0.809,-0.588,0.001,0.678,-0.677,-0.287,-0.848,-0.446,0.285,-0.673,-0.113,0.731
,-0.607,-0.32,0.727,-0.312,-0.61,0.729,-0.677,-0.678,0.286,-0.482,-0.487,0.728,-0.807,0.591,0,-0.854,0.434,-0.288,-0.106,-0.202,-0.974,-0.482,-0.48,-0.733,-0.311,-0.605,-0.733,-0.677,-0.678,-0.287,-0.481,0.487,0.729,-0.176,0.072,0.982,-0.607,0.319,0.728,0.854,0.433,-0.287,0.436,0.525,-0.731,0.613,0.312,-0.726,-0.605,-0.308,-0.734
,-0.677,-0.678,-0.287,-0.482,-0.48,-0.733,0.19,-0.981,-0.025,0.362,-0.892,-0.271,0.437,-0.852,-0.287,0.31,-0.646,-0.697,0.851,-0.44,0.286,0.675,-0.11,0.729,0.946,-0.151,0.286,-0.606,-0.309,-0.733,-0.269,-0.003,-0.963,-0.671,-0.106,-0.733,0.438,0.852,-0.289,0.381,0.629,-0.677,0.258,0.641,-0.723,0.084,-0.671,-0.737,-0.439,-0.851,-0.287
,0.049,-0.946,-0.319,0.679,-0.107,-0.726,0.208,-0.155,-0.966,0.613,-0.311,-0.726,0.678,0.677,0.286,0.586,0.506,0.632,0.43,0.843,0.323,0.95,0.312,-0.001,0.851,0.44,0.286,-0.848,0.447,0.285,-0.674,0.113,0.73,-0.945,0.156,0.286,0.487,-0.485,-0.726,0.039,-0.23,-0.972,0.311,-0.612,-0.727,0.174,0.984,-0.026,-0.14,0.944,0.298
,0.373,0.926,0.055,0.596,0.803,-0.002,0.43,0.843,0.323,-0.485,0.473,-0.735,-0.854,0.434,-0.288,-0.606,0.309,-0.733,0.19,-0.981,-0.025,0.049,-0.946,-0.319,-0.43,0.853,0.295,-0.482,0.488,0.728,-0.676,0.68,0.285,-0.602,0.798,-0.002,-0.807,0.591,0,-0.693,0.662,-0.285,0.041,0.947,-0.318,-0.308,0.595,-0.742,0.153,0.672,-0.724
,0.555,-0.601,-0.576,-0.106,-0.202,-0.974,0.372,-0.61,-0.7,0.142,0.952,0.272,-0.127,0.664,0.736,-0.14,0.944,0.298,-0.269,-0.003,-0.963,-0.606,0.309,-0.733,-0.671,0.106,-0.733,0.153,0.664,-0.732,0.135,0.299,-0.945,0.382,0.629,-0.677,0.946,-0.151,0.286,-0.045,-0.096,0.994,-0.089,-0.68,0.728,-0.312,-0.611,0.728,-0.098,0.099,-0.99
,-0.302,0.609,-0.734,-0.47,0.484,-0.738,-0.176,-0.071,0.982,-0.483,-0.487,0.728,-0.607,-0.319,0.728,-0.141,0.15,-0.979,0.679,0.107,-0.726,0.613,0.312,-0.726,0.135,0.299,-0.945,0.626,0.375,-0.684,0.434,0.49,-0.756,0.384,-0.923,-0.007,0.437,-0.852,-0.287,0.359,-0.895,-0.264,-0.945,0.156,0.286,-0.945,-0.156,0.286,-0.807,0.591,0
,-0.676,0.68,0.285,-0.848,0.447,0.285,-0.332,0.599,0.729,-0.14,0.944,0.298,-0.127,0.664,0.736,0.142,0.952,0.272,0.586,0.506,0.632,0.425,0.665,0.615,0.851,0.44,0.286,0.678,0.677,0.286,0.676,0.11,0.728,0.946,-0.151,0.286,0.675,-0.11,0.729,0.809,-0.588,0.001,0.677,-0.678,0.286,0.851,-0.44,0.286,0.191,-0.659,0.727
,0.416,-0.86,0.295,0.141,-0.948,0.285,-0.435,-0.854,0.286,-0.138,-0.947,0.288,-0.848,-0.446,0.285,-0.677,-0.678,0.286,-0.945,0.153,-0.289,-0.854,0.434,-0.288,-0.454,0.841,-0.295,-0.485,0.473,-0.735,-0.308,0.595,-0.742,0.174,0.984,-0.026,0.041,0.947,-0.318,0.358,0.893,-0.272,0.596,0.803,-0.002,0.438,0.852,-0.289,0.677,0.678,-0.287
,0.68,0.107,-0.725,0.854,0.433,-0.287,0.613,0.312,-0.726,0.946,-0.152,-0.288,0.855,-0.432,-0.287,0.312,-0.613,-0.726,0.678,-0.677,-0.287,0.487,-0.484,-0.727,0.19,-0.981,-0.025,0.362,-0.892,-0.271,0.049,-0.946,-0.319,-0.439,-0.851,-0.287,-0.677,-0.678,-0.287,-0.853,-0.434,-0.288,-0.945,-0.153,-0.289,0.946,-0.152,-0.288,0.678,-0.107,-0.727
,0.614,-0.312,-0.725,0.31,-0.646,-0.697,0.084,-0.671,-0.737,0.049,-0.946,-0.319,-0.311,-0.605,-0.733,-0.482,-0.48,-0.733,-0.677,-0.678,-0.287,0.258,0.641,-0.723,0.436,0.525,-0.731,0.677,0.678,-0.287,-0.853,-0.434,-0.288,-0.605,-0.308,-0.734,-0.672,-0.106,-0.732,0.041,0.947,-0.318,0.153,0.672,-0.724,0.381,0.629,-0.677,-0.671,0.106,-0.733
,-0.606,0.309,-0.733,-0.854,0.434,-0.288,-0.156,-0.121,-0.98,-0.106,-0.202,-0.974,0.135,0.299,-0.945,-0.106,-0.202,-0.974,0.039,-0.23,-0.972,0.208,-0.155,-0.966,0.185,0.039,-0.982,-0.106,-0.202,-0.974,0.208,-0.155,-0.966,0.185,0.039,-0.982,-0.141,0.15,-0.979,0.135,0.299,-0.945,0.135,0.299,-0.945,0.252,-0.064,-0.965,-0.098,0.099,-0.99
,-0.098,0.099,-0.99,-0.269,-0.003,-0.963,-0.156,-0.121,-0.98,-0.106,-0.202,-0.974,0.185,0.039,-0.982,0.135,0.299,-0.945,0.677,-0.678,0.286,0.483,-0.489,0.726,0.61,-0.315,0.727,-0.435,-0.854,0.286,-0.312,-0.61,0.729,-0.089,-0.683,0.725,-0.607,-0.32,0.727,-0.482,-0.487,0.728,-0.677,-0.678,0.286,-0.674,0.113,0.73,-0.673,-0.113,0.731
,-0.945,-0.156,0.286,-0.676,0.68,0.285,-0.482,0.488,0.728,-0.607,0.32,0.727,0.61,0.315,0.727,0.484,0.486,0.728,0.678,0.677,0.286,-0.176,0.072,0.982,-0.057,0.082,0.995,0.378,0.137,0.916,-0.057,0.082,0.995,0.222,-0.133,0.966,0.378,0.137,0.916,0.378,0.137,0.916,0.323,0.105,0.941,-0.176,0.072,0.982,0.323,0.105,0.941
,0.323,-0.104,0.941,-0.176,-0.071,0.982,0.323,-0.104,0.941,0.373,-0.151,0.916,-0.176,-0.071,0.982,0.373,-0.151,0.916,0.246,0.076,0.966,-0.045,-0.096,0.994,-0.045,-0.096,0.994,-0.176,-0.071,0.982,0.373,-0.151,0.916,-0.945,0.156,0.286,-0.124,0.688,0.715,0.222,-0.133,0.966,-0.057,0.082,0.995,0.676,-0.11,0.728,0.323,-0.104,0.941
,0.323,0.105,0.941,0.378,0.137,0.916,0.222,-0.133,0.966,0.327,0.642,0.693,0.851,0.44,0.286,0.946,0.151,0.286,0.676,0.11,0.728,-0.069,-0.734,0.676,0.246,0.076,0.966,0.373,-0.151,0.916,0.677,-0.678,0.286,0.416,-0.86,0.295,0.377,-0.576,0.725,-0.435,-0.854,0.286,-0.848,-0.446,0.285,0.482,-0.486,0.729,0.373,-0.151,0.916
,0.323,-0.104,0.941,-0.43,0.853,0.295,-0.602,0.798,-0.002,0.809,-0.588,0.001,0.851,-0.44,0.286,0.323,0.105,0.941,0.378,0.137,0.916,0.484,0.486,0.728,0.416,-0.86,0.295,0.855,-0.432,-0.287,0.614,-0.312,-0.725,0.487,-0.484,-0.727,0.373,0.926,0.055,0.142,0.952,0.272,0.174,0.984,-0.026,0.191,-0.659,0.727,0.141,-0.948,0.285
,-0.138,-0.947,0.288,0.946,0.152,-0.288,0.68,0.107,-0.725,0.678,-0.107,-0.727,-0.945,-0.156,0.286,-0.176,0.072,0.982,-0.176,-0.071,0.982,-0.674,-0.113,0.73,-0.945,-0.153,-0.289,-0.672,-0.106,-0.732,-0.671,0.106,-0.733,0.678,0.677,0.286,0.596,0.803,-0.002,0.946,0.151,0.286,0.95,0.312,-0.001,0.677,-0.678,0.286,0.809,-0.588,0.001
,-0.848,-0.446,0.285,-0.945,-0.156,0.286,-0.673,-0.113,0.731,-0.312,-0.61,0.729,-0.435,-0.854,0.286,-0.677,-0.678,0.286,-0.807,0.591,0,-0.848,0.447,0.285,-0.106,-0.202,-0.974,-0.156,-0.121,-0.98,-0.482,-0.48,-0.733,-0.677,-0.678,0.286,-0.481,0.487,0.729,-0.057,0.082,0.995,-0.176,0.072,0.982,0.854,0.433,-0.287,0.677,0.678,-0.287
,0.436,0.525,-0.731,-0.605,-0.308,-0.734,-0.853,-0.434,-0.288,-0.677,-0.678,-0.287,0.19,-0.981,-0.025,0.141,-0.948,0.285,0.437,-0.852,-0.287,0.312,-0.613,-0.726,0.31,-0.646,-0.697,0.851,-0.44,0.286,0.61,-0.315,0.727,0.675,-0.11,0.729,-0.606,-0.309,-0.733,-0.156,-0.121,-0.98,-0.269,-0.003,-0.963,0.438,0.852,-0.289,0.358,0.893,-0.272
,0.381,0.629,-0.677,0.084,-0.671,-0.737,-0.311,-0.605,-0.733,-0.439,-0.851,-0.287,0.679,-0.107,-0.726,0.185,0.039,-0.982,0.208,-0.155,-0.966,0.678,0.677,0.286,0.484,0.486,0.728,0.586,0.506,0.632,0.854,0.433,-0.287,0.95,0.312,-0.001,-0.848,0.447,0.285,-0.607,0.32,0.727,-0.674,0.113,0.73,0.487,-0.485,-0.726,0.208,-0.155,-0.966
,0.039,-0.23,-0.972,0.041,0.947,-0.318,0.174,0.984,-0.026,0.373,0.926,0.055,0.438,0.852,-0.289,0.596,0.803,-0.002,-0.485,0.473,-0.735,-0.693,0.662,-0.285,-0.854,0.434,-0.288,-0.138,-0.947,0.288,0.19,-0.981,-0.025,-0.43,0.853,0.295,-0.332,0.599,0.729,-0.482,0.488,0.728,-0.602,0.798,-0.002,-0.676,0.68,0.285,-0.807,0.591,0
,0.041,0.947,-0.318,-0.454,0.841,-0.295,-0.308,0.595,-0.742,0.555,-0.601,-0.576,0.039,-0.23,-0.972,-0.106,-0.202,-0.974,0.142,0.952,0.272,0.425,0.665,0.615,-0.127,0.664,0.736,-0.269,-0.003,-0.963,-0.098,0.099,-0.99,-0.606,0.309,-0.733,0.153,0.664,-0.732,0.252,-0.064,-0.965,0.135,0.299,-0.945,0.946,-0.152,-0.288,-0.045,-0.096,0.994
,0.246,0.076,0.966,-0.089,-0.68,0.728,-0.098,0.099,-0.99,0.252,-0.064,-0.965,-0.302,0.609,-0.734,-0.176,-0.071,0.982,-0.045,-0.096,0.994,-0.483,-0.487,0.728,-0.141,0.15,-0.979,0.185,0.039,-0.982,0.679,0.107,-0.726,0.135,0.299,-0.945,-0.141,0.15,-0.979,0.626,0.375,-0.684,-0.332,0.599,0.729,-0.43,0.853,0.295,-0.14,0.944,0.298
,0.142,0.952,0.272,0.43,0.843,0.323,0.586,0.506,0.632,0.676,0.11,0.728,0.946,0.151,0.286,0.946,-0.151,0.286,0.191,-0.659,0.727,0.377,-0.576,0.725,0.416,-0.86,0.295,-0.454,0.841,-0.295,-0.693,0.662,-0.285,-0.485,0.473,-0.735,0.68,0.107,-0.725,0.946,0.152,-0.288,0.854,0.433,-0.287,0.312,-0.613,-0.726,0.437,-0.852,-0.287
,0.678,-0.677,-0.287]
,"uvs":[0.264,0.007,0.264,0.068,0.025,0.037,0.264,0.598,0.264,0.659,0.025,0.629,0.264,0.533,0.264,0.594,0.025,0.563,0.009,0.429,0.009,0.368,0.249,0.399,0.009,0.495,0.009,0.434,0.249,0.465,0.123,0.803,0.123,0.705,0.181,0.723,0.126,0.805,0.184,0.725,0.219,0.775,0.128,0.809,0.22,0.779,0.22,0.839,0.062,0.894
,0.119,0.815,0.119,0.912,0.264,0.072,0.264,0.133,0.025,0.103,0.023,0.843,0.116,0.813,0.058,0.892,0.058,0.727,0.116,0.805,0.023,0.775,0.123,0.912,0.123,0.815,0.18,0.894,0.126,0.813,0.219,0.843,0.184,0.892,0.009,0.5,0.249,0.53,0.009,0.561,0.249,0.596,0.009,0.627,0.009,0.566,0.009,0.105,0.249,0.136
,0.009,0.166,0.025,0.234,0.264,0.204,0.264,0.265,0.264,0.467,0.264,0.528,0.025,0.498,0.022,0.779,0.114,0.809,0.022,0.839,0.025,0.432,0.264,0.401,0.264,0.462,0.264,0.396,0.025,0.366,0.264,0.336,0.025,0.3,0.264,0.27,0.264,0.331,0.285,0.893,0.342,0.815,0.342,0.912,0.246,0.778,0.338,0.808,0.246,0.838
,0.339,0.804,0.247,0.774,0.282,0.726,0.286,0.724,0.343,0.705,0.342,0.802,0.347,0.802,0.347,0.705,0.404,0.724,0.247,0.842,0.339,0.812,0.282,0.891,0.009,0.039,0.249,0.07,0.009,0.1,0.009,0.171,0.249,0.201,0.009,0.232,0.009,0.237,0.249,0.267,0.009,0.297,0.009,0.363,0.009,0.302,0.249,0.333,0.35,0.804
,0.407,0.726,0.442,0.775,0.351,0.808,0.443,0.779,0.443,0.839,0.407,0.891,0.35,0.812,0.442,0.843,0.346,0.912,0.346,0.815,0.403,0.893,0.119,0.803,0.062,0.724,0.119,0.705,0.009,0.631,0.249,0.662,0.009,0.692,0.264,0.138,0.264,0.133,0.235,0.77,0.246,0.778,0.233,0.775,0.282,0.891,0.278,0.904,0.273,0.901
,0.264,0.007,0.249,0.004,0.264,0.002,0.342,0.912,0.347,0.925,0.341,0.925,0.347,0.705,0.342,0.692,0.348,0.692,0.411,0.904,0.407,0.891,0.415,0.901,0.415,0.716,0.404,0.724,0.411,0.713,0.442,0.843,0.456,0.842,0.454,0.847,0.264,0.467,0.249,0.465,0.264,0.462,0.347,0.802,0.351,0.808,0.346,0.815,0.009,0.843
,0.023,0.843,0.011,0.848,0.009,0.171,0.009,0.166,0.025,0.169,0.054,0.713,0.058,0.727,0.05,0.716,0.123,0.705,0.118,0.692,0.124,0.692,0.184,0.725,0.188,0.712,0.192,0.715,0.233,0.775,0.219,0.775,0.231,0.77,0.009,0.039,0.009,0.034,0.119,0.912,0.124,0.926,0.118,0.925,0.009,0.561,0.025,0.563,0.009,0.566
,0.009,0.5,0.009,0.495,0.123,0.803,0.126,0.805,0.119,0.815,0.264,0.396,0.219,0.843,0.128,0.809,0.22,0.839,0.058,0.892,0.119,0.815,0.062,0.894,0.123,0.815,0.184,0.892,0.18,0.894,0.118,0.925,0.062,0.894,0.119,0.912,0.023,0.775,0.114,0.809,0.022,0.779,0.009,0.843,0.022,0.779,0.022,0.839,0.264,0.265
,0.264,0.331,0.022,0.839,0.116,0.813,0.023,0.843,0.249,0.465,0.264,0.467,0.025,0.103,0.264,0.072,0.119,0.815,0.123,0.912,0.119,0.912,0.233,0.775,0.246,0.838,0.233,0.842,0.025,0.563,0.249,0.53,0.264,0.533,0.023,0.775,0.05,0.716,0.058,0.727,0.274,0.716,0.247,0.774,0.235,0.77,0.264,0.336,0.126,0.805
,0.181,0.723,0.184,0.725,0.415,0.901,0.442,0.843,0.454,0.847,0.249,0.596,0.264,0.598,0.249,0.004,0.264,0.007,0.025,0.103,0.264,0.133,0.124,0.692,0.181,0.723,0.123,0.705,0.062,0.724,0.118,0.692,0.119,0.705,0.025,0.432,0.264,0.401,0.342,0.815,0.346,0.912,0.342,0.912,0.264,0.27,0.22,0.779,0.126,0.805
,0.219,0.775,0.278,0.712,0.343,0.705,0.286,0.724,0.403,0.893,0.347,0.925,0.346,0.912,0.249,0.201,0.264,0.199,0.235,0.847,0.282,0.891,0.011,0.848,0.058,0.892,0.05,0.902,0.403,0.893,0.35,0.812,0.407,0.891,0.348,0.692,0.404,0.724,0.347,0.705,0.285,0.893,0.341,0.925,0.278,0.904,0.247,0.774,0.338,0.808
,0.246,0.778,0.124,0.926,0.18,0.894,0.187,0.905,0.249,0.662,0.009,0.631,0.231,0.77,0.184,0.725,0.192,0.715,0.246,0.838,0.339,0.812,0.247,0.842,0.249,0.53,0.009,0.5,0.025,0.563,0.249,0.596,0.009,0.566,0.443,0.779,0.456,0.842,0.443,0.839,0.249,0.201,0.264,0.204,0.233,0.842,0.22,0.779,0.233,0.775
,0.249,0.465,0.025,0.432,0.264,0.462,0.415,0.716,0.442,0.775,0.407,0.726,0.282,0.891,0.342,0.815,0.285,0.893,0.192,0.902,0.219,0.843,0.231,0.848,0.35,0.812,0.443,0.839,0.442,0.843,0.407,0.726,0.347,0.802,0.404,0.724,0.009,0.039,0.119,0.803,0.058,0.727,0.062,0.724,0.351,0.808,0.442,0.775,0.443,0.779
,0.123,0.803,0.119,0.705,0.123,0.705,0.342,0.802,0.282,0.726,0.286,0.724,0.347,0.802,0.343,0.705,0.347,0.705,0.025,0.169,0.264,0.138,0.264,0.199,0.009,0.368,0.009,0.363,0.025,0.432,0.009,0.434,0.009,0.429,0.22,0.839,0.231,0.848,0.219,0.843,0.192,0.902,0.18,0.894,0.184,0.892,0.009,0.631,0.009,0.627
,0.062,0.894,0.05,0.902,0.058,0.892,0.025,0.103,0.009,0.105,0.009,0.1,0.023,0.775,0.009,0.776,0.011,0.771,0.009,0.237,0.009,0.232,0.009,0.302,0.009,0.297,0.264,0.396,0.264,0.401,0.454,0.77,0.443,0.779,0.442,0.775,0.249,0.53,0.264,0.528,0.264,0.533,0.249,0.596,0.264,0.594,0.264,0.598,0.282,0.726
,0.278,0.712,0.286,0.724,0.264,0.068,0.264,0.072,0.247,0.842,0.233,0.842,0.246,0.838,0.249,0.201,0.264,0.199,0.264,0.204,0.264,0.265,0.264,0.27,0.264,0.331,0.264,0.336,0.235,0.77,0.247,0.774,0.246,0.778,0.282,0.891,0.285,0.893,0.278,0.904,0.342,0.912,0.346,0.912,0.347,0.925,0.347,0.705,0.343,0.705
,0.342,0.692,0.411,0.904,0.403,0.893,0.407,0.891,0.415,0.716,0.407,0.726,0.404,0.724,0.442,0.843,0.443,0.839,0.456,0.842,0.346,0.815,0.342,0.815,0.347,0.802,0.342,0.815,0.339,0.812,0.338,0.808,0.339,0.804,0.342,0.815,0.338,0.808,0.339,0.804,0.342,0.802,0.347,0.802,0.347,0.802,0.35,0.804,0.351,0.808
,0.351,0.808,0.35,0.812,0.346,0.815,0.342,0.815,0.339,0.804,0.347,0.802,0.009,0.843,0.022,0.839,0.023,0.843,0.054,0.713,0.062,0.724,0.058,0.727,0.123,0.705,0.119,0.705,0.118,0.692,0.184,0.725,0.181,0.723,0.188,0.712,0.233,0.775,0.22,0.779,0.219,0.775,0.119,0.912,0.123,0.912,0.124,0.926,0.126,0.805
,0.128,0.809,0.123,0.815,0.128,0.809,0.126,0.813,0.123,0.815,0.123,0.815,0.119,0.815,0.126,0.805,0.119,0.815,0.116,0.813,0.123,0.803,0.116,0.813,0.114,0.809,0.123,0.803,0.114,0.809,0.116,0.805,0.119,0.803,0.119,0.803,0.123,0.803,0.114,0.809,0.009,0.368,0.219,0.843,0.126,0.813,0.128,0.809,0.058,0.892
,0.116,0.813,0.119,0.815,0.123,0.815,0.126,0.813,0.184,0.892,0.118,0.925,0.055,0.905,0.062,0.894,0.023,0.775,0.116,0.805,0.114,0.809,0.009,0.843,0.009,0.776,0.022,0.779,0.009,0.237,0.009,0.302,0.022,0.839,0.114,0.809,0.116,0.813,0.009,0.495,0.249,0.465,0.025,0.103,0.009,0.1,0.119,0.815,0.123,0.815
,0.123,0.912,0.009,0.166,0.233,0.775,0.246,0.778,0.246,0.838,0.025,0.563,0.009,0.561,0.249,0.53,0.023,0.775,0.011,0.771,0.05,0.716,0.274,0.716,0.282,0.726,0.247,0.774,0.009,0.363,0.126,0.805,0.123,0.803,0.181,0.723,0.415,0.901,0.407,0.891,0.442,0.843,0.009,0.627,0.249,0.596,0.009,0.034,0.249,0.004
,0.009,0.105,0.025,0.103,0.124,0.692,0.188,0.712,0.181,0.723,0.062,0.724,0.054,0.713,0.118,0.692,0.025,0.432,0.009,0.429,0.342,0.815,0.346,0.815,0.346,0.912,0.009,0.297,0.22,0.779,0.128,0.809,0.126,0.805,0.278,0.712,0.342,0.692,0.343,0.705,0.403,0.893,0.411,0.904,0.347,0.925,0.249,0.201,0.009,0.171
,0.235,0.847,0.247,0.842,0.282,0.891,0.011,0.848,0.023,0.843,0.058,0.892,0.403,0.893,0.346,0.815,0.35,0.812,0.348,0.692,0.411,0.713,0.404,0.724,0.285,0.893,0.342,0.912,0.341,0.925,0.247,0.774,0.339,0.804,0.338,0.808,0.124,0.926,0.123,0.912,0.18,0.894,0.264,0.659,0.249,0.662,0.231,0.77,0.219,0.775
,0.184,0.725,0.246,0.838,0.338,0.808,0.339,0.812,0.264,0.528,0.249,0.53,0.025,0.563,0.264,0.594,0.249,0.596,0.443,0.779,0.456,0.775,0.456,0.842,0.009,0.232,0.249,0.201,0.233,0.842,0.22,0.839,0.22,0.779,0.249,0.465,0.009,0.434,0.025,0.432,0.415,0.716,0.454,0.77,0.442,0.775,0.282,0.891,0.339,0.812
,0.342,0.815,0.192,0.902,0.184,0.892,0.219,0.843,0.35,0.812,0.351,0.808,0.443,0.839,0.407,0.726,0.35,0.804,0.347,0.802,0.264,0.068,0.119,0.803,0.116,0.805,0.058,0.727,0.351,0.808,0.35,0.804,0.442,0.775,0.123,0.803,0.119,0.803,0.119,0.705,0.342,0.802,0.339,0.804,0.282,0.726,0.347,0.802,0.342,0.802
,0.343,0.705,0.22,0.839,0.233,0.842,0.231,0.848,0.192,0.902,0.187,0.905,0.18,0.894,0.062,0.894,0.055,0.905,0.05,0.902,0.023,0.775,0.022,0.779,0.009,0.776,0.454,0.77,0.456,0.775,0.443,0.779,0.282,0.726,0.274,0.716,0.278,0.712,0.247,0.842,0.235,0.847,0.233,0.842]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50
,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101
,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,49,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151
,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,2,169,170,171,172,173,174,175,176,56,177,178,179,11,64,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198
,94,51,199,98,66,200,201,202,203,56,204,205,206,88,207,208,209,210,154,49,117,211,212,213,214,215,216,217,218,219,220,221,222,64,98,223,224,225,226,227,228,229,5,230,231,2,232,233,49,234,235
,236,237,238,239,240,241,242,11,243,244,245,246,66,94,247,248,249,250,251,252,253,254,255,256,257,154,258,259,260,124,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,5,279,280
,281,282,283,284,285,286,56,287,288,289,290,291,292,293,294,51,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,2,88,318,319,320,321,322,323,324,325,326,327
,328,329,330,331,332,333,334,335,336,64,337,338,339,340,341,342,343,344,345,346,347,5,348,349,350,351,352,353,354,355,356,357,358,51,359,360,66,361,362,11,363,364,365,366,367,368,369,370,371,372,373
,374,375,376,88,377,378,379,380,381,382,383,384,94,385,386,98,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421
,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,11,470,64
,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,94,489,51,98,490,66,491,492,493,56,494,495,496,497,88,498,499,500,154,501,49,502,503,504,505,506,507,508,509,510,511,512,513
,64,514,98,515,516,517,518,519,520,5,521,522,2,523,524,49,525,526,527,528,529,530,531,532,533,534,11,535,536,537,66,538,94,539,540,541,542,543,544,545,546,547,548,549,154,550,551,552,553,554,555
,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,5,571,572,573,574,575,576,577,578,56,579,580,581,582,583,584,585,586,51,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603
,604,605,606,607,608,609,2,610,88,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646]
}
,{"name":"d12","id":"d12","billboardMode":0,"position":[0,0,0.6432],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false
,"positions":[-0.0331,0.0623,0.0802,-0.0599,0.0384,-0.092,-0.0002,0.0714,-0.0915,0.0636,-0.0321,-0.0895,0.072,0.0002,0.0785,0.0636,0.0326,-0.0895,0.037,-0.0604,0.0785,0.0608,-0.0369,-0.0895,0.0046,-0.0697,-0.09,-0.0315,0.0544,0.0989,-0.0024,0.0019,0.1261,-0.0634,0.0026,0.0989,-0.0538,-0.034,-0.0989,0.0001,-0.064,-0.0989,0.0008,-0.0028,-0.1256,0.0549,0.0335,-0.0962,0.0043,0.0627,-0.0962
,0.0037,0.0031,-0.1222,0.0549,-0.033,-0.0962,0.0037,-0.0027,-0.1222,0.0042,-0.0627,-0.0967,-0.0538,0.0344,-0.0989,0.001,0.0032,-0.125,0.0003,0.0642,-0.0984,-0.0562,0.0302,-0.0989,-0.0562,-0.0299,-0.0989,-0.0029,0.0002,-0.1256,-0.0634,-0.0022,0.0989,-0.0024,-0.0015,0.1261,-0.0315,-0.054,0.0989,0.0049,0.0019,0.1228,0.0351,0.053,0.0962,0.0642,0.0026,0.0962,-0.0706,0.003,0.092
,-0.0619,0.0363,-0.0806,-0.0371,0.0602,0.0915,-0.0303,0.063,0.0915,0.0027,0.0721,-0.0802,0.0342,0.0616,0.0895,0.0351,-0.0525,0.0962,0.0049,-0.0014,0.1228,0.0642,-0.0021,0.0962,0.0025,-0.0033,0.1261,0.0311,-0.0552,0.0967,-0.0274,-0.0564,0.0989,-0.0619,-0.0359,-0.0806,-0.0706,-0.0027,0.092,-0.0375,-0.06,0.092,0.0311,0.0553,0.0962,0.0027,0.0037,0.1255,-0.0271,0.0566,0.0984
,0.0573,-0.029,-0.0962,0.0573,0.0295,-0.0962,0.0061,0.0003,-0.125,0.037,0.0609,0.0785,0.0047,0.0698,-0.0895,0.0608,0.0374,-0.0895,-0.0714,0.0002,0.0806,-0.0627,-0.0331,-0.092,-0.0627,0.0335,-0.092,-0.0306,-0.0629,0.092,0.0356,-0.0625,0.0915,0.0025,-0.072,-0.0806,0.0628,0.0354,-0.0784,0.0712,0.003,0.0895,0.039,0.0588,0.0895,-0.0003,-0.0713,-0.092,-0.0599,-0.038,-0.092
,-0.0335,-0.0621,0.0806,0.0608,-0.0369,-0.0895,0.0636,-0.0321,-0.0895,0.0356,-0.0625,0.0915,0.039,-0.0584,0.0895,0.0712,-0.0025,0.0895,0.0712,0.003,0.0895,-0.0306,-0.0629,0.092,-0.0375,-0.06,0.092,0.0628,0.0354,-0.0784,0.0608,0.0374,-0.0895,0.0628,-0.0349,-0.0784,0.0046,-0.0697,-0.09,0.0608,-0.0369,-0.0895,-0.0003,-0.0713,-0.092,-0.0599,-0.038,-0.092,-0.0371,0.0602,0.0915
,-0.0706,0.003,0.092,-0.0002,0.0714,-0.0915,-0.0599,0.0384,-0.092,0.039,0.0588,0.0895,0.0712,0.003,0.0895,-0.0303,0.063,0.0915,0.0628,0.0354,-0.0784,-0.0375,-0.06,0.092,-0.0627,-0.0331,-0.092,-0.0627,0.0335,-0.092,0.0047,0.0698,-0.0895,0.0636,0.0326,-0.0895,-0.0306,-0.0629,0.092,0.0356,-0.0625,0.0915,0.039,-0.0584,0.0895,-0.0303,0.063,0.0915,0.0342,0.0616,0.0895
,0.0712,-0.0025,0.0895,0.039,-0.0584,0.0895,-0.0706,-0.0027,0.092,-0.0599,0.0384,-0.092,-0.0627,0.0335,-0.092,-0.0599,-0.038,-0.092,-0.0003,-0.0713,-0.092,0.0046,-0.0697,-0.09,0.0608,0.0374,-0.0895,-0.0002,0.0714,-0.0915,0.0608,-0.0369,-0.0895,0.0356,-0.0625,0.0915,-0.0306,-0.0629,0.092,0.039,-0.0584,0.0895,0.0046,-0.0697,-0.09,-0.0003,-0.0713,-0.092,0.0712,-0.0025,0.0895
,-0.0371,0.0602,0.0915,-0.0002,0.0714,-0.0915,0.039,0.0588,0.0895,-0.0303,0.063,0.0915,0.0342,0.0616,0.0895,0.0712,0.003,0.0895,0.0628,0.0354,-0.0784,-0.0375,-0.06,0.092,-0.0706,-0.0027,0.092,-0.0627,-0.0331,-0.092,0.0608,0.0374,-0.0895,0.0047,0.0698,-0.0895,0.0636,-0.0321,-0.0895,0.0636,0.0326,-0.0895,-0.0306,-0.0629,0.092,-0.0371,0.0602,0.0915,-0.0303,0.063,0.0915
,0.0342,0.0616,0.0895,0.039,0.0588,0.0895,0.0712,0.003,0.0895,0.0712,-0.0025,0.0895,-0.0706,-0.0027,0.092,-0.0706,0.003,0.092,-0.0599,0.0384,-0.092,-0.0627,-0.0331,-0.092,-0.0599,-0.038,-0.092,-0.0003,-0.0713,-0.092,0.0636,0.0326,-0.0895,0.0608,0.0374,-0.0895,0.0047,0.0698,-0.0895,-0.0002,0.0714,-0.0915]
,"normals":[-0.407,0.913,-0.014,-0.647,0.655,-0.391,-0.019,0.9,-0.436,0.887,-0.242,-0.393,1,0,0.004,0.887,0.242,-0.393,0.648,-0.761,-0.034,0.656,-0.645,-0.392,0.457,-0.81,-0.367,-0.346,0.447,0.825,-0.169,0.18,0.969,-0.563,0.163,0.81,-0.403,-0.419,-0.814,0.129,-0.565,-0.815,0.325,-0.191,-0.926,0.406,0.415,-0.814,0.433,0.512,-0.741
,0.395,0.586,-0.708,0.409,-0.411,-0.814,0.371,-0.431,-0.823,0.434,-0.51,-0.743,-0.398,0.422,-0.814,0.226,0.318,-0.921,0.136,0.567,-0.812,-0.563,0.145,-0.814,-0.563,-0.145,-0.814,-0.203,0.054,-0.978,-0.562,-0.159,0.812,-0.211,-0.151,0.966,-0.374,-0.41,0.832,0.638,0.024,0.769,0.418,0.41,0.811,0.564,0.157,0.811,-0.888,0.237,0.393
,-0.86,0.509,0.002,-0.602,0.698,0.388,-0.175,0.905,0.388,0.184,0.982,-0.041,0.257,0.883,0.393,0.473,-0.324,0.819,0.659,-0.003,0.752,0.564,-0.157,0.811,0.356,-0.146,0.923,0.184,-0.451,0.873,-0.126,-0.576,0.808,-0.862,-0.507,0.001,-0.889,-0.234,0.393,-0.598,-0.689,0.409,0.17,0.564,0.808,0.381,0.207,0.901,-0.071,0.598,0.798
,0.567,-0.151,-0.81,0.567,0.151,-0.81,0.088,-0.037,-0.995,0.51,0.86,0.006,0.46,0.808,-0.368,0.654,0.647,-0.393,-1,0,0.004,-0.887,-0.242,-0.393,-0.887,0.242,-0.393,-0.186,-0.898,0.4,0.439,-0.775,0.454,0.179,-0.983,-0.04,0.866,0.5,-0.001,0.889,0.234,0.393,0.647,0.653,0.393,-0.027,-0.899,-0.437,-0.649,-0.652,-0.391
,-0.409,-0.912,-0.015,0.656,-0.645,-0.392,0.887,-0.242,-0.393,0.439,-0.775,0.454,0.801,-0.505,0.321,0.889,-0.234,0.393,0.889,0.234,0.393,-0.186,-0.898,0.4,-0.598,-0.689,0.409,0.866,0.5,-0.001,0.654,0.647,-0.393,0.866,-0.5,-0.001,0.457,-0.81,-0.367,0.656,-0.645,-0.392,-0.027,-0.899,-0.437,-0.649,-0.652,-0.391,-0.602,0.698,0.388
,-0.888,0.237,0.393,-0.019,0.9,-0.436,-0.647,0.655,-0.391,0.647,0.653,0.393,0.889,0.234,0.393,-0.175,0.905,0.388,0.866,0.5,-0.001,-0.598,-0.689,0.409,-0.887,-0.242,-0.393,-0.887,0.242,-0.393,0.46,0.808,-0.368,0.887,0.242,-0.393,-0.186,-0.898,0.4,0.439,-0.775,0.454,0.801,-0.505,0.321,-0.175,0.905,0.388,0.257,0.883,0.393
,0.889,-0.234,0.393,0.801,-0.505,0.321,-0.889,-0.234,0.393,-0.647,0.655,-0.391,-0.887,0.242,-0.393,-0.649,-0.652,-0.391,-0.027,-0.899,-0.437,0.457,-0.81,-0.367,0.654,0.647,-0.393,-0.019,0.9,-0.436,0.656,-0.645,-0.392,0.439,-0.775,0.454,-0.186,-0.898,0.4,0.801,-0.505,0.321,0.457,-0.81,-0.367,-0.027,-0.899,-0.437,0.889,-0.234,0.393
,-0.602,0.698,0.388,-0.019,0.9,-0.436,0.647,0.653,0.393,-0.175,0.905,0.388,0.257,0.883,0.393,0.889,0.234,0.393,0.866,0.5,-0.001,-0.598,-0.689,0.409,-0.889,-0.234,0.393,-0.887,-0.242,-0.393,0.654,0.647,-0.393,0.46,0.808,-0.368,0.887,-0.242,-0.393,0.887,0.242,-0.393,-0.186,-0.898,0.4,-0.602,0.698,0.388,-0.175,0.905,0.388
,0.257,0.883,0.393,0.647,0.653,0.393,0.889,0.234,0.393,0.889,-0.234,0.393,-0.889,-0.234,0.393,-0.888,0.237,0.393,-0.647,0.655,-0.391,-0.887,-0.242,-0.393,-0.649,-0.652,-0.391,-0.027,-0.899,-0.437,0.887,0.242,-0.393,0.654,0.647,-0.393,0.46,0.808,-0.368,-0.019,0.9,-0.436]
,"uvs":[0.641,0.152,0.459,0.187,0.459,0.116,0.459,0.425,0.641,0.46,0.46,0.496,0.641,0.383,0.459,0.419,0.459,0.348,0.981,0.281,0.923,0.248,0.982,0.215,0.917,0.154,0.859,0.121,0.918,0.087,0.922,0.013,0.979,0.047,0.921,0.081,0.857,0.051,0.916,0.084,0.857,0.117,0.982,0.117,0.923,0.084,0.982,0.051,0.979,0.121
,0.922,0.154,0.921,0.087,0.979,0.211,0.921,0.245,0.922,0.177,0.918,0.251,0.917,0.318,0.86,0.285,0.653,0.226,0.471,0.19,0.653,0.155,0.653,0.149,0.471,0.113,0.653,0.078,0.857,0.215,0.916,0.248,0.857,0.281,0.918,0.245,0.86,0.21,0.917,0.178,0.471,0.268,0.653,0.232,0.653,0.303,0.922,0.318,0.921,0.251
,0.979,0.285,0.86,0.046,0.917,0.013,0.918,0.081,0.641,0.075,0.459,0.11,0.459,0.039,0.641,0.229,0.459,0.264,0.459,0.193,0.653,0.309,0.653,0.38,0.471,0.345,0.471,0.035,0.653,0.002,0.653,0.072,0.459,0.342,0.459,0.271,0.641,0.306,0.846,0.046,0.85,0.04,0.85,0.204,0.846,0.21,0.653,0.457,0.653,0.463
,0.916,0.166,0.923,0.166,0.472,0.5,0.46,0.502,0.472,0.422,0.846,0.122,0.846,0.046,0.85,0.128,0.916,0.166,0.992,0.286,0.992,0.21,0.992,0.046,0.992,0.122,0.916,0.33,0.85,0.292,0.988,0.292,0.472,0.5,0.923,0.166,0.923,0.166,0.989,0.128,0.989,0.04,0.916,0.002,0.916,0.166,0.85,0.204,0.653,0.386
,0.988,0.292,0.923,0.33,0.847,0.286,0.653,0.386,0.988,0.204,0.992,0.122,0.989,0.128,0.916,0.166,0.85,0.128,0.846,0.122,0.923,0.002,0.992,0.046,0.846,0.046,0.85,0.204,0.916,0.166,0.653,0.386,0.846,0.122,0.85,0.128,0.847,0.286,0.992,0.286,0.992,0.046,0.916,0.33,0.988,0.292,0.923,0.33,0.653,0.463
,0.472,0.5,0.923,0.166,0.988,0.204,0.923,0.166,0.923,0.002,0.989,0.04,0.85,0.04,0.916,0.002,0.916,0.166,0.992,0.286,0.988,0.292,0.923,0.33,0.916,0.33,0.85,0.292,0.847,0.286,0.988,0.204,0.992,0.21,0.992,0.122,0.923,0.166,0.916,0.166,0.85,0.128,0.916,0.002,0.923,0.002,0.989,0.04,0.992,0.046
]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50
,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,51,69,70,71,39,72,8,66,62,73,74,4,59,1,34,35,0,36,55,37,2,29,75,76,5,77,78,19,53,22,58,45,67
,42,28,10,38,54,65,46,57,33,48,30,49,17,23,22,21,26,22,27,10,28,6,79,7,18,80,81,26,12,14,82,12,83,41,72,39,62,6,8,40,43,42,4,79,73,52,17,53,84,11,85
,0,34,1,21,86,87,32,88,89,90,48,50,54,63,65,19,51,53,4,91,5,54,37,55,92,27,29,32,40,30,37,0,2,13,19,14,93,24,94,34,57,59,15,95,16,44,28,42,62,68,60
,51,96,52,97,43,98,45,68,67,10,50,49,57,45,58,79,99,73,9,100,50,101,31,48,32,102,41,6,61,103,68,47,60,104,11,27,24,105,106,25,107,12,20,108,109,79,3,7,52,110,15
,16,111,23,51,18,112,113,43,39,29,44,114,53,17,22,22,26,14,14,19,22,10,49,42,49,30,40,42,49,40,48,31,30,17,16,23,21,24,26,27,11,10,6,115,79,18,20,116,26,25,12
,117,13,12,41,118,72,62,61,6,40,39,43,4,3,79,52,15,17,119,9,11,0,35,34,21,23,120,32,31,121,122,123,48,54,56,63,19,18,51,4,124,125,54,38,37,126,127,27,32,41,40
,37,36,0,13,20,19,128,25,24,34,33,57,15,129,130,44,29,28,62,66,68,51,131,132,133,44,43,45,47,68,10,9,50,57,46,45,9,134,135,136,137,31,32,138,139,140,141,11,24,21,142
,25,143,144,20,13,145,52,146,147,16,148,149]
}
,{"name":"d10","id":"d10","billboardMode":0,"position":[0,0,0.2585],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false
,"positions":[0.0022,0.0776,-0.0802,0.0417,0.063,0.0894,-0.0394,0.0648,0.0919,-0.0724,-0.0196,0.0921,-0.0716,0.0241,-0.0804,-0.0466,0.0598,0.0921,0.0684,0.018,-0.0963,0.0073,-0.0018,-0.1227,0.0446,-0.0542,-0.0963,-0.0017,-0.0724,0.098,-0.0656,-0.026,0.098,-0.0017,-0.0052,0.126,-0.0647,0.0259,-0.0994,-0.0016,0.0055,-0.1263,-0.0016,0.0716,-0.0991,0.0408,-0.0624,-0.0906,-0.0386,-0.0644,-0.0936
,0.0022,-0.0782,0.0787,-0.068,-0.0186,0.098,-0.0436,0.0565,0.098,-0.0041,0.0022,0.126,0.0734,-0.0233,0.0766,0.0727,0.019,-0.0906,0.0476,-0.0575,-0.0906,-0.0671,0.0185,-0.0994,-0.0426,-0.0559,-0.0994,-0.0041,-0.0019,-0.1266,-0.0371,0.0609,0.0977,0.0395,0.0592,0.0951,0.0022,0.0067,0.1257,0.0054,0.0739,-0.0906,0.0701,0.0269,-0.0906,0.0459,0.0616,0.0765,-0.0697,-0.0278,0.0921
,-0.0021,-0.0769,0.0921,-0.043,-0.0631,-0.0805,0.0456,0.0548,0.0951,0.0692,-0.018,0.0951,0.0073,0.0021,0.1222,-0.0456,-0.0594,-0.0936,-0.0716,0.0195,-0.0935,-0.0723,-0.0241,0.079,0.0669,-0.0251,0.0951,0.0049,-0.0703,0.0953,0.0061,-0.0052,0.1257,0.0709,-0.0269,0.0894,0.045,-0.0611,-0.078,0.0054,-0.0745,0.0894,-0.0689,0.0278,-0.0935,-0.0021,0.0761,-0.0933,-0.0437,0.0634,0.0786
,0.0735,-0.0189,0.0894,0.0485,0.0581,0.0894,0.0728,0.0234,-0.0779,0.0386,-0.0588,-0.0965,0.0022,-0.0065,-0.1263,-0.0364,-0.0605,-0.0994,0.0054,0.0739,-0.0906,0.0022,0.0776,-0.0802,-0.0021,0.0761,-0.0933,0.0727,0.019,-0.0906,0.0728,0.0234,-0.0779,0.0701,0.0269,-0.0906,0.0456,0.0548,0.0951,0.0417,0.063,0.0894,0.0485,0.0581,0.0894,-0.0724,-0.0196,0.0921,-0.0656,-0.026,0.098
,-0.0697,-0.0278,0.0921,0.0054,-0.0745,0.0894,0.0022,-0.0782,0.0787,-0.0021,-0.0769,0.0921,-0.0364,-0.0605,-0.0994,-0.0456,-0.0594,-0.0936,-0.0386,-0.0644,-0.0936,-0.0689,0.0278,-0.0935,-0.0716,0.0241,-0.0804,-0.0716,0.0195,-0.0935,-0.0394,0.0648,0.0919,-0.0466,0.0598,0.0921,-0.0437,0.0634,0.0786,0.0735,-0.0189,0.0894,0.0709,-0.0269,0.0894,0.0408,-0.0624,-0.0906,0.045,-0.0611,-0.078
,0.0476,-0.0575,-0.0906,0.0073,-0.0018,-0.1227,-0.0016,0.0055,-0.1263,-0.0041,-0.0019,-0.1266,-0.0041,0.0022,0.126,0.0022,0.0067,0.1257,0.0073,0.0021,0.1222,0.0728,0.0234,-0.0779,0.0727,0.019,-0.0906,0.0728,0.0234,-0.0779,0.0459,0.0616,0.0765,0.0701,0.0269,-0.0906,-0.0017,-0.0052,0.126,0.0049,-0.0703,0.0953,-0.0017,-0.0724,0.098,0.0661,0.0252,-0.0963,0.0054,0.0739,-0.0906
,0.005,0.0696,-0.0963,-0.0697,-0.0278,0.0921,-0.0386,-0.0644,-0.0936,0.0386,-0.0588,-0.0965,-0.0364,-0.0605,-0.0994,0.0395,0.0592,0.0951,-0.0394,0.0648,0.0919,0.0417,0.063,0.0894,0.0073,0.0021,0.1222,0.0395,0.0592,0.0951,0.0456,0.0548,0.0951,0.045,-0.0611,-0.078,0.0476,-0.0575,-0.0906,-0.0437,0.0634,0.0786,-0.0716,0.0241,-0.0804,-0.0689,0.0278,-0.0935,0.0735,-0.0189,0.0894
,0.0456,0.0548,0.0951,0.0485,0.0581,0.0894,0.0669,-0.0251,0.0951,0.0073,0.0021,0.1222,0.0692,-0.018,0.0951,0.0022,-0.0065,-0.1263,-0.0426,-0.0559,-0.0994,-0.0364,-0.0605,-0.0994,0.0459,0.0616,0.0765,0.0022,0.0776,-0.0802,0.0054,0.0739,-0.0906,-0.0724,-0.0196,0.0921,-0.0436,0.0565,0.098,-0.068,-0.0186,0.098,-0.0437,0.0634,0.0786,0.0022,0.0776,-0.0802,-0.0394,0.0648,0.0919
,-0.0017,-0.0724,0.098,-0.0697,-0.0278,0.0921,-0.0656,-0.026,0.098,0.0054,-0.0745,0.0894,0.0669,-0.0251,0.0951,0.0709,-0.0269,0.0894,-0.0716,0.0241,-0.0804,-0.0724,-0.0196,0.0921,-0.0689,0.0278,-0.0935,-0.0016,0.0716,-0.0991,-0.0021,0.0761,-0.0933,-0.0041,0.0022,0.126,-0.0656,-0.026,0.098,-0.068,-0.0186,0.098,0.0476,-0.0575,-0.0906,0.0684,0.018,-0.0963,0.0446,-0.0542,-0.0963
,0.0022,0.0067,0.1257,-0.0436,0.0565,0.098,-0.0371,0.0609,0.0977,-0.0456,-0.0594,-0.0936,-0.0671,0.0185,-0.0994,-0.0716,0.0195,-0.0935,-0.0016,0.0716,-0.0991,0.005,0.0053,-0.1227,0.005,0.0696,-0.0963,0.0684,0.018,-0.0963,0.0661,0.0252,-0.0963,-0.0671,0.0185,-0.0994,-0.0016,0.0055,-0.1263,-0.0647,0.0259,-0.0994,0.0022,-0.0782,0.0787,-0.0021,-0.0769,0.0921,0.045,-0.0611,-0.078
,0.0022,-0.0782,0.0787,0.0054,-0.0745,0.0894,0.0073,-0.0018,-0.1227,0.0386,-0.0588,-0.0965,0.0446,-0.0542,-0.0963,0.0661,0.0252,-0.0963,0.005,0.0696,-0.0963,0.005,0.0053,-0.1227,0.0459,0.0616,0.0765,0.0485,0.0581,0.0894,0.0417,0.063,0.0894,-0.0371,0.0609,0.0977,-0.0466,0.0598,0.0921,-0.0394,0.0648,0.0919,-0.0724,-0.0196,0.0921,-0.0697,-0.0278,0.0921,0.0049,-0.0703,0.0953
,-0.0021,-0.0769,0.0921,-0.0017,-0.0724,0.098,0.0735,-0.0189,0.0894,0.0669,-0.0251,0.0951,0.0692,-0.018,0.0951,0.005,0.0696,-0.0963,-0.0021,0.0761,-0.0933,-0.0016,0.0716,-0.0991,-0.0647,0.0259,-0.0994,-0.0716,0.0195,-0.0935,-0.0671,0.0185,-0.0994,-0.0386,-0.0644,-0.0936,-0.0456,-0.0594,-0.0936,0.0408,-0.0624,-0.0906,0.0446,-0.0542,-0.0963,0.0386,-0.0588,-0.0965,0.0727,0.019,-0.0906
,0.0661,0.0252,-0.0963,0.0684,0.018,-0.0963,0.0456,0.0548,0.0951,0.0395,0.0592,0.0951,0.0417,0.063,0.0894,-0.0724,-0.0196,0.0921,-0.068,-0.0186,0.098,-0.0656,-0.026,0.098,-0.0364,-0.0605,-0.0994,-0.0426,-0.0559,-0.0994,-0.0456,-0.0594,-0.0936,-0.0041,-0.0019,-0.1266,0.0022,-0.0065,-0.1263,0.0073,-0.0018,-0.1227,0.0073,-0.0018,-0.1227,-0.0016,0.0055,-0.1263,0.0061,-0.0052,0.1257
,-0.0017,-0.0052,0.126,0.0073,0.0021,0.1222,-0.0017,-0.0052,0.126,-0.0041,0.0022,0.126,0.0073,0.0021,0.1222,0.0735,-0.0189,0.0894,0.0728,0.0234,-0.0779,0.0728,0.0234,-0.0779,0.0485,0.0581,0.0894,0.0459,0.0616,0.0765,-0.0017,-0.0052,0.126,0.0061,-0.0052,0.1257,0.0049,-0.0703,0.0953,0.0701,0.0269,-0.0906,0.0054,0.0739,-0.0906,-0.0456,-0.0594,-0.0936,-0.0386,-0.0644,-0.0936
,0.0408,-0.0624,-0.0906,0.0386,-0.0588,-0.0965,0.0395,0.0592,0.0951,-0.0371,0.0609,0.0977,-0.0394,0.0648,0.0919,0.0073,0.0021,0.1222,0.0022,0.0067,0.1257,0.0395,0.0592,0.0951,0.045,-0.0611,-0.078,0.0709,-0.0269,0.0894,-0.0437,0.0634,0.0786,-0.0466,0.0598,0.0921,-0.0716,0.0241,-0.0804,0.0735,-0.0189,0.0894,0.0692,-0.018,0.0951,0.0456,0.0548,0.0951,0.0669,-0.0251,0.0951
,0.0061,-0.0052,0.1257,0.0073,0.0021,0.1222,0.0022,-0.0065,-0.1263,-0.0041,-0.0019,-0.1266,-0.0426,-0.0559,-0.0994,0.0459,0.0616,0.0765,0.0417,0.063,0.0894,0.0022,0.0776,-0.0802,-0.0724,-0.0196,0.0921,-0.0466,0.0598,0.0921,-0.0436,0.0565,0.098,-0.0437,0.0634,0.0786,-0.0021,0.0761,-0.0933,0.0022,0.0776,-0.0802,-0.0017,-0.0724,0.098,-0.0021,-0.0769,0.0921,-0.0697,-0.0278,0.0921
,0.0054,-0.0745,0.0894,0.0049,-0.0703,0.0953,0.0669,-0.0251,0.0951,-0.0716,0.0195,-0.0935,-0.0716,0.0241,-0.0804,-0.0689,0.0278,-0.0935,-0.0647,0.0259,-0.0994,-0.0016,0.0716,-0.0991,-0.0041,0.0022,0.126,-0.0017,-0.0052,0.126,-0.0656,-0.026,0.098,0.0476,-0.0575,-0.0906,0.0727,0.019,-0.0906,0.0684,0.018,-0.0963,0.0022,0.0067,0.1257,-0.0041,0.0022,0.126,-0.0436,0.0565,0.098
,-0.0456,-0.0594,-0.0936,-0.0426,-0.0559,-0.0994,-0.0671,0.0185,-0.0994,-0.0016,0.0716,-0.0991,-0.0016,0.0055,-0.1263,0.0073,-0.0018,-0.1227,0.0684,0.018,-0.0963,-0.0671,0.0185,-0.0994,-0.0041,-0.0019,-0.1266,-0.0016,0.0055,-0.1263,0.0022,-0.0782,0.0787,-0.0386,-0.0644,-0.0936,0.045,-0.0611,-0.078,0.0408,-0.0624,-0.0906,0.0022,-0.0782,0.0787,0.0073,-0.0018,-0.1227,0.0022,-0.0065,-0.1263
,0.0386,-0.0588,-0.0965,-0.0371,0.0609,0.0977,-0.0436,0.0565,0.098,-0.0466,0.0598,0.0921,0.0049,-0.0703,0.0953,0.0054,-0.0745,0.0894,-0.0021,-0.0769,0.0921,0.0735,-0.0189,0.0894,0.0709,-0.0269,0.0894,0.0669,-0.0251,0.0951,0.005,0.0696,-0.0963,0.0054,0.0739,-0.0906,-0.0021,0.0761,-0.0933,-0.0647,0.0259,-0.0994,-0.0689,0.0278,-0.0935,-0.0716,0.0195,-0.0935,0.0408,-0.0624,-0.0906
,0.0476,-0.0575,-0.0906,0.0446,-0.0542,-0.0963,0.0727,0.019,-0.0906,0.0701,0.0269,-0.0906,0.0661,0.0252,-0.0963]
,"normals":[0.107,0.994,-0.038,0.325,0.887,0.328,-0.27,0.904,0.333,-0.943,-0.004,0.333,-0.949,0.314,-0.011,-0.751,0.57,0.335,0.646,-0.009,-0.763,0.402,-0.002,-0.916,0.586,-0.331,-0.74,-0.038,-0.636,0.771,-0.523,-0.388,0.759,-0.011,-0.187,0.982,-0.515,0.39,-0.763,0.084,0.24,-0.967,0.026,0.627,-0.778,0.331,-0.885,-0.327,-0.279,-0.898,-0.341
,0.113,-0.993,0.031,-0.651,0.007,0.759,-0.516,0.391,0.762,-0.16,0.11,0.981,0.951,-0.311,0,0.94,0.002,-0.341,0.761,-0.555,-0.336,-0.645,-0.004,-0.764,-0.522,-0.377,-0.765,-0.119,-0.039,-0.992,-0.159,0.635,0.756,0.269,0.598,0.755,0.137,0.258,0.956,0.473,0.82,-0.324,0.763,0.549,-0.341,0.645,0.764,-0.015,-0.765,-0.551,0.333
,-0.108,-0.92,0.376,-0.587,-0.809,-0.009,0.579,0.339,0.742,0.668,0.066,0.742,0.38,0.124,0.917,-0.757,-0.557,-0.341,-0.94,0.002,-0.341,-0.951,-0.311,0,0.562,-0.343,0.753,0.391,-0.594,0.703,0.315,-0.137,0.939,0.766,-0.552,0.33,0.648,-0.762,0.008,0.481,-0.82,0.311,-0.761,0.551,-0.342,-0.111,0.916,-0.386,-0.581,0.814,-0.002
,0.943,-0.004,0.333,0.76,0.557,0.333,0.951,0.308,-0.01,0.281,-0.595,-0.753,0.184,-0.189,-0.964,-0.169,-0.628,-0.76,0.492,0.8,-0.344,0.175,0.983,-0.061,-0.111,0.916,-0.386,0.94,0.002,-0.342,0.951,0.308,-0.01,0.763,0.549,-0.341,0.579,0.339,0.742,0.296,0.894,0.335,0.76,0.557,0.333,-0.943,-0.004,0.333,-0.523,-0.388,0.759
,-0.765,-0.551,0.333,0.505,-0.801,0.323,0.183,-0.981,0.055,-0.107,-0.921,0.376,-0.17,-0.628,-0.76,-0.757,-0.557,-0.341,-0.279,-0.898,-0.34,-0.763,0.55,-0.341,-0.951,0.309,-0.009,-0.94,0.002,-0.342,-0.27,0.903,0.334,-0.749,0.572,0.334,-0.576,0.817,-0.003,0.943,-0.004,0.333,0.766,-0.552,0.33,0.301,-0.893,-0.334,0.593,-0.805,-0.014
,0.754,-0.56,-0.345,0.451,0.047,-0.891,0.091,0.201,-0.975,-0.129,-0.05,-0.99,-0.132,0.058,0.99,0.229,0.059,0.972,0.444,0.136,0.886,0.951,0.308,-0.01,0.94,0.002,-0.342,0.951,0.308,-0.01,0.593,0.805,0.005,0.763,0.549,-0.341,-0.08,-0.136,0.987,0.557,-0.555,0.617,0.187,-0.598,0.779,0.519,0.385,-0.763,0.473,0.82,-0.324
,0.442,0.563,-0.698,-0.765,-0.551,0.333,-0.279,-0.895,-0.347,0.281,-0.6,-0.749,-0.171,-0.621,-0.765,0.269,0.589,0.762,-0.27,0.907,0.323,0.323,0.883,0.34,0.444,0.136,0.886,0.079,0.705,0.705,0.382,0.456,0.804,0.593,-0.805,-0.014,0.754,-0.56,-0.345,-0.576,0.817,-0.003,-0.951,0.309,-0.009,-0.763,0.55,-0.341,0.943,-0.004,0.333
,0.579,0.339,0.742,0.76,0.557,0.333,0.47,-0.541,0.698,0.444,0.136,0.886,0.577,-0.145,0.804,0.228,-0.062,-0.972,-0.536,-0.366,-0.761,-0.185,-0.615,-0.767,0.593,0.805,0.005,0.175,0.983,-0.061,0.492,0.8,-0.344,-0.943,-0.004,0.333,-0.516,0.391,0.762,-0.651,0.007,0.759,-0.576,0.817,-0.003,0.175,0.983,-0.061,-0.27,0.903,0.334
,-0.038,-0.636,0.771,-0.765,-0.551,0.334,-0.523,-0.388,0.759,0.484,-0.824,0.295,0.554,-0.332,0.763,0.76,-0.55,0.347,-0.951,0.309,-0.009,-0.943,-0.004,0.333,-0.761,0.551,-0.341,0.027,0.627,-0.779,-0.111,0.915,-0.387,-0.132,0.058,0.99,-0.523,-0.388,0.759,-0.651,0.007,0.759,0.761,-0.555,-0.336,0.646,-0.009,-0.763,0.586,-0.331,-0.74
,0.229,0.059,0.972,-0.516,0.391,0.762,-0.159,0.635,0.756,-0.757,-0.557,-0.341,-0.645,-0.004,-0.764,-0.94,0.002,-0.341,0.026,0.627,-0.778,0.417,0.239,-0.877,0.442,0.563,-0.698,0.646,-0.009,-0.763,0.519,0.385,-0.763,-0.648,-0.02,-0.761,0.091,0.201,-0.975,-0.52,0.371,-0.769,0.183,-0.981,0.055,-0.107,-0.921,0.376,0.593,-0.805,-0.014
,0.183,-0.981,0.055,0.505,-0.801,0.323,0.451,0.047,-0.891,0.099,-0.699,-0.709,0.397,-0.442,-0.805,0.519,0.385,-0.763,0.442,0.563,-0.698,0.377,0.226,-0.898,0.593,0.805,0.005,0.76,0.557,0.333,0.296,0.894,0.335,-0.159,0.635,0.756,-0.749,0.572,0.334,-0.27,0.903,0.334,-0.943,-0.004,0.333,-0.765,-0.551,0.333,0.391,-0.594,0.703
,-0.107,-0.921,0.376,-0.03,-0.641,0.767,0.943,-0.004,0.333,0.562,-0.343,0.753,0.667,0.067,0.742,0.441,0.562,-0.7,-0.111,0.916,-0.386,0.057,0.648,-0.76,-0.515,0.39,-0.763,-0.94,0.002,-0.342,-0.644,-0.005,-0.765,-0.279,-0.898,-0.34,-0.757,-0.557,-0.341,0.301,-0.893,-0.334,0.585,-0.329,-0.741,0.311,-0.599,-0.738,0.94,0.002,-0.342
,0.519,0.385,-0.763,0.645,-0.01,-0.764,0.579,0.339,0.742,0.269,0.598,0.755,0.296,0.894,0.335,-0.943,-0.004,0.333,-0.651,0.007,0.759,-0.523,-0.388,0.759,-0.17,-0.628,-0.76,-0.523,-0.374,-0.766,-0.757,-0.557,-0.341,-0.129,-0.05,-0.99,0.228,-0.062,-0.972,0.451,0.047,-0.891,0.451,0.047,-0.891,0.091,0.201,-0.975,0.205,0.053,0.977
,-0.08,-0.136,0.987,0.444,0.136,0.886,-0.08,-0.136,0.987,-0.132,0.058,0.99,0.444,0.136,0.886,0.943,-0.004,0.333,0.951,0.308,-0.01,0.951,0.308,-0.01,0.76,0.557,0.333,0.593,0.805,0.005,-0.08,-0.136,0.987,0.205,0.053,0.977,0.557,-0.555,0.617,0.763,0.549,-0.341,0.473,0.82,-0.324,-0.757,-0.557,-0.341,-0.279,-0.895,-0.347
,0.332,-0.887,-0.32,0.281,-0.6,-0.749,0.269,0.589,0.762,-0.158,0.645,0.747,-0.27,0.907,0.323,0.444,0.136,0.886,0.229,0.059,0.972,0.079,0.705,0.705,0.593,-0.805,-0.014,0.766,-0.552,0.33,-0.576,0.817,-0.003,-0.749,0.572,0.334,-0.951,0.309,-0.009,0.943,-0.004,0.333,0.668,0.066,0.742,0.579,0.339,0.742,0.47,-0.541,0.698
,0.205,0.053,0.977,0.444,0.136,0.886,0.228,-0.062,-0.972,-0.129,-0.05,-0.99,-0.536,-0.366,-0.761,0.593,0.805,0.005,0.296,0.894,0.335,0.175,0.983,-0.061,-0.943,-0.004,0.333,-0.751,0.57,0.335,-0.516,0.391,0.762,-0.576,0.817,-0.003,-0.111,0.916,-0.386,0.175,0.983,-0.061,-0.038,-0.636,0.771,-0.108,-0.92,0.376,-0.765,-0.551,0.334
,0.484,-0.824,0.295,0.401,-0.604,0.689,0.554,-0.332,0.763,-0.94,0.002,-0.342,-0.951,0.309,-0.009,-0.761,0.551,-0.341,-0.515,0.391,-0.762,0.027,0.627,-0.779,-0.132,0.058,0.99,-0.08,-0.136,0.987,-0.523,-0.388,0.759,0.761,-0.555,-0.336,0.94,0.002,-0.341,0.646,-0.009,-0.763,0.229,0.059,0.972,-0.132,0.058,0.99,-0.516,0.391,0.762
,-0.757,-0.557,-0.341,-0.522,-0.377,-0.765,-0.645,-0.004,-0.764,0.026,0.627,-0.778,0.091,0.201,-0.975,0.451,0.047,-0.891,0.646,-0.009,-0.763,-0.648,-0.02,-0.761,-0.129,-0.05,-0.99,0.091,0.201,-0.975,0.183,-0.981,0.055,-0.279,-0.898,-0.34,0.593,-0.805,-0.014,0.301,-0.893,-0.334,0.183,-0.981,0.055,0.451,0.047,-0.891,0.228,-0.062,-0.972
,0.099,-0.699,-0.709,-0.159,0.635,0.756,-0.516,0.394,0.761,-0.749,0.572,0.334,0.391,-0.594,0.703,0.505,-0.801,0.323,-0.107,-0.921,0.376,0.943,-0.004,0.333,0.766,-0.552,0.33,0.562,-0.343,0.753,0.441,0.562,-0.7,0.492,0.8,-0.344,-0.111,0.916,-0.386,-0.515,0.39,-0.763,-0.763,0.55,-0.341,-0.94,0.002,-0.342,0.301,-0.893,-0.334
,0.754,-0.56,-0.345,0.585,-0.329,-0.741,0.94,0.002,-0.342,0.763,0.549,-0.341,0.519,0.385,-0.763]
,"uvs":[0.444,0.395,0.265,0.441,0.265,0.352,0.264,0.254,0.443,0.298,0.265,0.342,0.986,0.785,0.927,0.742,0.986,0.699,0.843,0.568,0.893,0.499,0.916,0.569,0.843,0.746,0.915,0.746,0.893,0.815,0.458,0.109,0.457,0.195,0.279,0.151,0.901,0.497,0.983,0.523,0.923,0.566,0.279,0.053,0.459,0.011,0.458,0.099,0.843,0.738
,0.893,0.669,0.915,0.738,0.988,0.529,0.988,0.616,0.928,0.573,0.458,0.399,0.459,0.487,0.28,0.445,0.264,0.244,0.265,0.156,0.443,0.2,0.983,0.623,0.9,0.649,0.923,0.579,0.457,0.205,0.457,0.293,0.278,0.249,0.892,0.646,0.843,0.576,0.916,0.577,0.265,0.058,0.444,0.104,0.265,0.146,0.457,0.302,0.458,0.39
,0.279,0.347,0.266,0.537,0.266,0.45,0.445,0.492,0.981,0.692,0.923,0.735,0.901,0.666,0.458,0.399,0.444,0.395,0.458,0.39,0.459,0.011,0.445,0.006,0.459,0.002,0.983,0.623,0.996,0.62,0.989,0.629,0.9,0.488,0.893,0.499,0.889,0.492,0.265,0.146,0.279,0.151,0.265,0.156,0.901,0.666,0.889,0.661,0.9,0.658
,0.457,0.302,0.443,0.298,0.457,0.293,0.265,0.352,0.265,0.342,0.279,0.347,0.265,0.048,0.265,0.058,0.458,0.109,0.444,0.104,0.458,0.099,0.927,0.742,0.915,0.746,0.915,0.738,0.923,0.566,0.928,0.573,0.923,0.579,0.445,0.006,0.459,0.011,0.445,0.492,0.28,0.445,0.459,0.487,0.916,0.569,0.843,0.576,0.843,0.568
,0.981,0.791,0.899,0.826,0.901,0.817,0.264,0.244,0.9,0.658,0.981,0.692,0.901,0.666,0.988,0.616,0.996,0.525,0.996,0.62,0.923,0.579,0.988,0.616,0.983,0.623,0.444,0.104,0.458,0.099,0.279,0.347,0.443,0.298,0.457,0.302,0.899,0.658,0.983,0.623,0.989,0.629,0.892,0.646,0.923,0.579,0.9,0.649,0.923,0.735
,0.893,0.669,0.901,0.666,0.28,0.445,0.444,0.395,0.458,0.399,0.9,0.488,0.983,0.523,0.901,0.497,0.279,0.347,0.444,0.395,0.265,0.352,0.843,0.568,0.889,0.492,0.893,0.499,0.834,0.577,0.892,0.646,0.888,0.654,0.443,0.298,0.264,0.254,0.835,0.748,0.893,0.815,0.889,0.822,0.923,0.566,0.893,0.499,0.901,0.497
,0.994,0.695,0.986,0.785,0.986,0.699,0.928,0.573,0.983,0.523,0.988,0.529,0.889,0.661,0.843,0.738,0.834,0.737,0.893,0.815,0.923,0.748,0.901,0.817,0.986,0.785,0.981,0.791,0.843,0.738,0.915,0.746,0.843,0.746,0.279,0.151,0.265,0.156,0.444,0.104,0.279,0.151,0.265,0.146,0.927,0.742,0.981,0.692,0.986,0.699
,0.981,0.791,0.901,0.817,0.923,0.748,0.28,0.445,0.266,0.45,0.265,0.441,0.988,0.529,0.989,0.516,0.996,0.525,0.264,0.254,0.264,0.244,0.843,0.576,0.835,0.567,0.843,0.568,0.899,0.658,0.892,0.646,0.9,0.649,0.901,0.817,0.889,0.822,0.893,0.815,0.843,0.746,0.834,0.737,0.843,0.738,0.457,0.195,0.457,0.205
,0.987,0.686,0.986,0.699,0.981,0.692,0.994,0.789,0.981,0.791,0.986,0.785,0.983,0.623,0.988,0.616,0.996,0.62,0.9,0.488,0.901,0.497,0.893,0.499,0.901,0.666,0.893,0.669,0.889,0.661,0.915,0.738,0.923,0.735,0.927,0.742,0.927,0.742,0.915,0.746,0.916,0.577,0.916,0.569,0.923,0.579,0.916,0.569,0.923,0.566
,0.923,0.579,0.265,0.048,0.445,0.006,0.445,0.492,0.266,0.45,0.28,0.445,0.916,0.569,0.916,0.577,0.843,0.576,0.987,0.797,0.899,0.826,0.457,0.205,0.9,0.658,0.987,0.686,0.981,0.692,0.988,0.616,0.988,0.529,0.996,0.525,0.923,0.579,0.928,0.573,0.988,0.616,0.444,0.104,0.265,0.058,0.279,0.347,0.265,0.342
,0.443,0.298,0.899,0.658,0.9,0.649,0.983,0.623,0.892,0.646,0.916,0.577,0.923,0.579,0.923,0.735,0.915,0.738,0.893,0.669,0.28,0.445,0.265,0.441,0.444,0.395,0.9,0.488,0.989,0.516,0.983,0.523,0.279,0.347,0.458,0.39,0.444,0.395,0.843,0.568,0.835,0.567,0.889,0.492,0.834,0.577,0.843,0.576,0.892,0.646
,0.457,0.293,0.443,0.298,0.835,0.748,0.843,0.746,0.893,0.815,0.923,0.566,0.916,0.569,0.893,0.499,0.994,0.695,0.994,0.789,0.986,0.785,0.928,0.573,0.923,0.566,0.983,0.523,0.889,0.661,0.893,0.669,0.843,0.738,0.893,0.815,0.915,0.746,0.927,0.742,0.986,0.785,0.843,0.738,0.915,0.738,0.915,0.746,0.279,0.151
,0.457,0.195,0.444,0.104,0.458,0.109,0.279,0.151,0.927,0.742,0.923,0.735,0.981,0.692,0.988,0.529,0.983,0.523,0.989,0.516,0.843,0.576,0.834,0.577,0.835,0.567,0.899,0.658,0.888,0.654,0.892,0.646,0.901,0.817,0.899,0.826,0.889,0.822,0.843,0.746,0.835,0.748,0.834,0.737,0.987,0.686,0.994,0.695,0.986,0.699
,0.994,0.789,0.987,0.797,0.981,0.791]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50
,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,21,82,83,84,85,86,87,88,89,90,91,21,92,93,94,95,96,97,98,99
,100,101,102,35,41,103,104,105,106,107,108,109,110,111,112,113,21,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,41,142,143,144,145,146
,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,160,162,163,164,165,166,167,35,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,41,184,185,186,187,188,189,190,191,192,193,194
,195,196,197,35,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,160,219,220,221,222,223,224,225,21,226,227,228,229,230,231,232,233,100,234,235,35,236,41,237,238,239
,240,241,242,243,244,245,246,247,21,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,41,275,276,277,278,279,280,281,282,283,284,285,286,287,288
,289,290,291,292,293,160,160,294,295,296,297,298,299,300,35,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327]
}
,{"name":"d8","id":"d8","billboardMode":0,"position":[0,0,-0.1119],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false
,"positions":[-0.0484,0.0504,-0.0752,-0.0041,0.0698,0.091,-0.0701,0.006,0.0931,-0.0459,-0.0517,-0.0941,0.0007,-0.0727,0.0766,0.0455,-0.0511,-0.0912,-0.0538,-0.0437,-0.0941,-0.0525,0.0457,-0.0938,-0.0723,0.0004,0.076,-0.0044,-0.0633,0.1015,-0.0629,-0.0049,0.1015,-0.0038,-0.0044,0.1248,-0.0629,0.0056,0.1015,-0.0038,0.0628,0.0992,-0.0038,0.0058,0.1248,0.0635,-0.0044,0.0992,0.0065,-0.0614,0.0992
,0.0065,-0.0044,0.1248,-0.0472,0.0409,-0.1022,-0.0484,-0.039,-0.1025,-0.0068,0.0005,-0.1282,0.0705,-0.0048,0.091,0.0511,-0.049,-0.0752,0.0068,-0.0684,0.091,0.0511,0.0504,-0.0752,0.0705,0.0062,0.091,0.0068,0.0698,0.091,-0.0048,-0.0705,0.0931,-0.0515,-0.0494,-0.0777,-0.0701,-0.0052,0.0931,0.048,-0.0388,-0.0994,0.048,0.0402,-0.0994,0.0086,0.0007,-0.1248,-0.0428,0.0526,-0.0912
,0.0455,0.0526,-0.0912,0.0014,0.072,0.0746,0.0065,0.0628,0.0992,0.0635,0.0058,0.0992,0.0065,0.0058,0.1248,0.0533,0.0449,-0.0912,0.0533,-0.0435,-0.0912,0.0726,0.0007,0.0746,0.0408,0.0474,-0.0994,-0.0381,0.0474,-0.0994,0.0014,0.0079,-0.1248,-0.0459,-0.0517,-0.0941,-0.0484,-0.039,-0.1025,-0.0538,-0.0437,-0.0941,0.0455,-0.0511,-0.0912,0.0511,-0.049,-0.0752,0.0533,-0.0435,-0.0912
,0.0533,0.0449,-0.0912,0.0511,0.0504,-0.0752,0.0455,0.0526,-0.0912,-0.0525,0.0457,-0.0938,-0.0381,0.0474,-0.0994,-0.0428,0.0526,-0.0912,0.0007,-0.0069,-0.1282,0.0014,0.0079,-0.1248,-0.0068,0.0005,-0.1282,0.0065,0.0628,0.0992,-0.0041,0.0698,0.091,0.0068,0.0698,0.091,0.0635,-0.0044,0.0992,0.0705,0.0062,0.091,0.0705,-0.0048,0.091,0.0068,-0.0684,0.091,0.0007,-0.0727,0.0766
,-0.0048,-0.0705,0.0931,-0.0701,-0.0052,0.0931,-0.0723,0.0004,0.076,-0.0701,0.006,0.0931,-0.0038,0.0058,0.1248,0.0065,-0.0044,0.1248,-0.0038,-0.0044,0.1248,0.0455,-0.0511,-0.0912,-0.0409,-0.0464,-0.1025,-0.0459,-0.0517,-0.0941,-0.0409,-0.0464,-0.1025,-0.0068,0.0005,-0.1282,-0.0484,-0.039,-0.1025,0.0068,-0.0684,0.091,0.0635,-0.0044,0.0992,0.0705,-0.0048,0.091,0.0068,0.0698,0.091
,0.0635,0.0058,0.0992,0.0065,0.0628,0.0992,-0.0515,-0.0494,-0.0777,0.0007,-0.0727,0.0766,-0.0459,-0.0517,-0.0941,-0.0629,0.0056,0.1015,-0.0038,-0.0044,0.1248,-0.0629,-0.0049,0.1015,0.0726,0.0007,0.0746,0.0511,0.0504,-0.0752,0.0533,0.0449,-0.0912,0.0014,0.0079,-0.1248,0.048,0.0402,-0.0994,0.0408,0.0474,-0.0994,0.0065,0.0058,0.1248,-0.0038,0.0628,0.0992,0.0065,0.0628,0.0992
,-0.0701,0.006,0.0931,-0.0038,0.0628,0.0992,-0.0629,0.0056,0.1015,0.0086,0.0007,-0.1248,0.0411,-0.0474,-0.1022,0.048,-0.0388,-0.0994,0.0007,-0.0727,0.0766,0.0511,-0.049,-0.0752,0.0455,-0.0511,-0.0912,-0.0038,-0.0044,0.1248,0.0065,-0.0614,0.0992,-0.0044,-0.0633,0.1015,0.0065,-0.0044,0.1248,0.0635,0.0058,0.0992,0.0635,-0.0044,0.0992,0.0511,-0.049,-0.0752,0.0726,0.0007,0.0746
,0.0533,-0.0435,-0.0912,-0.0525,0.0457,-0.0938,-0.0484,-0.039,-0.1025,-0.0472,0.0409,-0.1022,-0.0515,-0.0494,-0.0777,-0.0723,0.0004,0.076,-0.0701,-0.0052,0.0931,-0.0472,0.0409,-0.1022,0.0014,0.0079,-0.1248,-0.0381,0.0474,-0.0994,-0.0048,-0.0705,0.0931,-0.0629,-0.0049,0.1015,-0.0044,-0.0633,0.1015,-0.0723,0.0004,0.076,-0.0484,0.0504,-0.0752,-0.0701,0.006,0.0931,0.0014,0.072,0.0746
,-0.0484,0.0504,-0.0752,-0.0428,0.0526,-0.0912,0.0014,0.072,0.0746,0.0511,0.0504,-0.0752,0.0068,0.0698,0.091,-0.0428,0.0526,-0.0912,0.0408,0.0474,-0.0994,0.0455,0.0526,-0.0912,0.0533,0.0449,-0.0912,0.048,-0.0388,-0.0994,0.0533,-0.0435,-0.0912,-0.0409,-0.0464,-0.1025,0.0411,-0.0474,-0.1022,0.0007,-0.0069,-0.1282,0.0014,0.072,0.0746,0.0068,0.0698,0.091,-0.0041,0.0698,0.091
,0.0726,0.0007,0.0746,0.0705,-0.0048,0.091,0.0705,0.0062,0.091,0.0065,-0.0614,0.0992,-0.0048,-0.0705,0.0931,-0.0044,-0.0633,0.1015,-0.0701,-0.0052,0.0931,-0.0629,0.0056,0.1015,-0.0629,-0.0049,0.1015,-0.0484,0.0504,-0.0752,-0.0525,0.0457,-0.0938,-0.0428,0.0526,-0.0912,-0.0459,-0.0517,-0.0941,-0.0538,-0.0437,-0.0941,0.0455,-0.0511,-0.0912,0.048,-0.0388,-0.0994,0.0411,-0.0474,-0.1022
,0.0533,0.0449,-0.0912,0.0408,0.0474,-0.0994,0.048,0.0402,-0.0994,-0.0459,-0.0517,-0.0941,-0.0409,-0.0464,-0.1025,-0.0484,-0.039,-0.1025,-0.0525,0.0457,-0.0938,-0.0472,0.0409,-0.1022,-0.0381,0.0474,-0.0994,0.0086,0.0007,-0.1248,0.0014,0.0079,-0.1248,0.0065,0.0628,0.0992,-0.0038,0.0628,0.0992,-0.0041,0.0698,0.091,0.0635,-0.0044,0.0992,0.0635,0.0058,0.0992,0.0705,0.0062,0.091
,-0.0038,0.0058,0.1248,0.0065,0.0058,0.1248,0.0065,-0.0044,0.1248,0.0455,-0.0511,-0.0912,0.0411,-0.0474,-0.1022,-0.0409,-0.0464,-0.1025,-0.0068,0.0005,-0.1282,0.0068,-0.0684,0.091,0.0065,-0.0614,0.0992,0.0635,-0.0044,0.0992,0.0068,0.0698,0.091,0.0705,0.0062,0.091,0.0635,0.0058,0.0992,-0.0515,-0.0494,-0.0777,-0.0048,-0.0705,0.0931,0.0007,-0.0727,0.0766,-0.0629,0.0056,0.1015
,-0.0038,0.0058,0.1248,-0.0038,-0.0044,0.1248,0.0726,0.0007,0.0746,0.0705,0.0062,0.091,0.0511,0.0504,-0.0752,0.0014,0.0079,-0.1248,0.0086,0.0007,-0.1248,0.048,0.0402,-0.0994,0.0065,0.0058,0.1248,-0.0038,0.0058,0.1248,-0.0038,0.0628,0.0992,-0.0701,0.006,0.0931,-0.0041,0.0698,0.091,-0.0038,0.0628,0.0992,0.0086,0.0007,-0.1248,0.0007,-0.0727,0.0766,0.0068,-0.0684,0.091
,0.0511,-0.049,-0.0752,-0.0038,-0.0044,0.1248,0.0065,-0.0044,0.1248,0.0065,-0.0614,0.0992,0.0065,-0.0044,0.1248,0.0065,0.0058,0.1248,0.0635,0.0058,0.0992,0.0511,-0.049,-0.0752,0.0705,-0.0048,0.091,0.0726,0.0007,0.0746,-0.0525,0.0457,-0.0938,-0.0538,-0.0437,-0.0941,-0.0484,-0.039,-0.1025,-0.0515,-0.0494,-0.0777,-0.0538,-0.0437,-0.0941,-0.0723,0.0004,0.076,-0.0472,0.0409,-0.1022
,-0.0068,0.0005,-0.1282,0.0014,0.0079,-0.1248,-0.0048,-0.0705,0.0931,-0.0701,-0.0052,0.0931,-0.0629,-0.0049,0.1015,-0.0723,0.0004,0.076,-0.0525,0.0457,-0.0938,-0.0484,0.0504,-0.0752,0.0014,0.072,0.0746,-0.0041,0.0698,0.091,-0.0484,0.0504,-0.0752,0.0014,0.072,0.0746,0.0455,0.0526,-0.0912,0.0511,0.0504,-0.0752,-0.0428,0.0526,-0.0912,-0.0381,0.0474,-0.0994,0.0408,0.0474,-0.0994
,0.0533,0.0449,-0.0912,0.048,0.0402,-0.0994,0.048,-0.0388,-0.0994,0.0065,-0.0614,0.0992,0.0068,-0.0684,0.091,-0.0048,-0.0705,0.0931,-0.0701,-0.0052,0.0931,-0.0701,0.006,0.0931,-0.0629,0.0056,0.1015,0.0455,-0.0511,-0.0912,0.0533,-0.0435,-0.0912,0.048,-0.0388,-0.0994,0.0533,0.0449,-0.0912,0.0455,0.0526,-0.0912,0.0408,0.0474,-0.0994]
,"normals":[-0.661,0.75,0.006,-0.339,0.871,0.355,-0.857,0.365,0.364,-0.367,-0.863,-0.346,0.048,-0.999,0.016,0.413,-0.853,-0.318,-0.86,-0.355,-0.367,-0.798,0.472,-0.374,-0.999,0.047,0.011,-0.17,-0.603,0.779,-0.583,-0.266,0.767,-0.145,-0.186,0.972,-0.577,0.279,0.767,-0.258,0.604,0.754,-0.18,0.202,0.963,0.598,-0.271,0.754,0.367,-0.572,0.734
,0.235,-0.193,0.953,-0.525,0.35,-0.776,-0.614,-0.224,-0.757,-0.181,0.108,-0.978,0.867,-0.346,0.359,0.729,-0.684,-0.004,0.457,-0.82,0.346,0.707,0.707,-0.012,0.867,0.346,0.359,0.346,0.867,0.359,-0.246,-0.887,0.391,-0.712,-0.702,-0.011,-0.867,-0.344,0.36,0.689,-0.171,-0.704,0.614,0.232,-0.754,0.385,0.104,-0.917,-0.276,0.905,-0.322
,0.366,0.856,-0.366,0,1,-0.001,0.271,0.598,0.754,0.598,0.271,0.754,0.201,0.201,0.959,0.856,0.366,-0.366,0.876,-0.35,-0.332,1,0,-0.001,0.232,0.614,-0.754,-0.113,0.691,-0.713,0.109,0.387,-0.916,-0.368,-0.863,-0.346,-0.614,-0.225,-0.757,-0.862,-0.354,-0.364,0.404,-0.857,-0.32,0.729,-0.684,-0.004,0.827,-0.397,-0.399
,0.855,0.366,-0.366,0.707,0.707,-0.012,0.366,0.856,-0.366,-0.798,0.473,-0.374,-0.113,0.691,-0.714,-0.28,0.902,-0.329,0.101,-0.184,-0.978,0.109,0.387,-0.916,-0.185,0.107,-0.977,0.271,0.598,0.754,-0.339,0.871,0.355,0.346,0.867,0.359,0.598,-0.271,0.754,0.867,0.346,0.359,0.867,-0.346,0.359,0.452,-0.819,0.352,0.048,-0.999,0.016
,-0.245,-0.887,0.391,-0.867,-0.344,0.36,-0.999,0.047,0.011,-0.857,0.366,0.363,-0.18,0.202,0.963,0.19,-0.203,0.96,-0.182,-0.193,0.964,0.412,-0.88,-0.238,-0.228,-0.56,-0.796,-0.339,-0.827,-0.45,-0.233,-0.645,-0.728,-0.185,0.107,-0.977,-0.614,-0.224,-0.757,0.457,-0.82,0.346,0.598,-0.271,0.754,0.867,-0.346,0.359,0.346,0.867,0.359
,0.598,0.271,0.754,0.271,0.598,0.754,-0.712,-0.702,-0.011,0.048,-0.999,0.016,-0.367,-0.863,-0.346,-0.577,0.279,0.767,-0.182,-0.193,0.964,-0.583,-0.266,0.767,1,0,-0.001,0.707,0.707,-0.012,0.856,0.366,-0.366,0.109,0.387,-0.916,0.614,0.232,-0.754,0.232,0.614,-0.754,0.201,0.201,0.959,-0.258,0.604,0.754,0.271,0.598,0.754
,-0.86,0.368,0.354,-0.251,0.597,0.761,-0.584,0.289,0.758,0.387,0.103,-0.916,0.328,-0.603,-0.727,0.689,-0.171,-0.704,0.117,-0.992,0.038,0.678,-0.735,-0.027,0.346,-0.871,-0.348,-0.182,-0.193,0.964,0.459,-0.549,0.699,-0.04,-0.585,0.81,0.19,-0.203,0.96,0.598,0.271,0.754,0.598,-0.271,0.754,0.729,-0.684,-0.004,1,0,-0.001
,0.876,-0.35,-0.332,-0.798,0.472,-0.374,-0.614,-0.224,-0.757,-0.525,0.35,-0.776,-0.712,-0.702,-0.011,-0.999,0.047,0.011,-0.867,-0.344,0.36,-0.525,0.35,-0.776,0.109,0.387,-0.916,-0.113,0.691,-0.713,-0.246,-0.887,0.391,-0.583,-0.266,0.767,-0.17,-0.603,0.779,-0.999,-0.037,-0.014,-0.601,0.799,0.029,-0.894,0.302,0.33,0,1,-0.001
,-0.661,0.75,0.006,-0.276,0.905,-0.322,0,1,-0.001,0.707,0.707,-0.012,0.346,0.867,0.359,-0.276,0.905,-0.322,0.232,0.614,-0.754,0.366,0.856,-0.366,0.856,0.366,-0.366,0.69,-0.171,-0.704,0.876,-0.35,-0.332,-0.233,-0.645,-0.728,0.328,-0.603,-0.727,0.101,-0.184,-0.978,0,1,-0.001,0.346,0.867,0.359,-0.339,0.871,0.355
,1,0,-0.001,0.867,-0.346,0.359,0.867,0.346,0.359,0.367,-0.571,0.734,-0.245,-0.887,0.391,-0.159,-0.613,0.774,-0.867,-0.344,0.36,-0.578,0.279,0.767,-0.581,-0.268,0.768,-0.661,0.75,0.006,-0.798,0.473,-0.374,-0.28,0.902,-0.329,-0.368,-0.863,-0.346,-0.862,-0.354,-0.364,0.404,-0.857,-0.32,0.688,-0.162,-0.707,0.477,-0.584,-0.657
,0.855,0.366,-0.366,0.232,0.614,-0.754,0.614,0.232,-0.754,-0.368,-0.863,-0.346,-0.226,-0.645,-0.73,-0.614,-0.225,-0.757,-0.798,0.473,-0.374,-0.523,0.368,-0.769,-0.113,0.691,-0.714,0.387,0.103,-0.916,0.109,0.387,-0.916,0.271,0.598,0.754,-0.258,0.604,0.754,-0.339,0.871,0.355,0.598,-0.271,0.754,0.598,0.271,0.754,0.867,0.346,0.359
,-0.18,0.202,0.963,0.201,0.201,0.959,0.19,-0.203,0.96,0.412,-0.88,-0.238,0.304,-0.698,-0.648,-0.233,-0.645,-0.728,-0.185,0.107,-0.977,0.457,-0.82,0.346,0.367,-0.572,0.734,0.598,-0.271,0.754,0.346,0.867,0.359,0.867,0.346,0.359,0.598,0.271,0.754,-0.712,-0.702,-0.011,-0.246,-0.887,0.391,0.048,-0.999,0.016,-0.577,0.279,0.767
,-0.18,0.202,0.963,-0.182,-0.193,0.964,1,0,-0.001,0.867,0.346,0.359,0.707,0.707,-0.012,0.109,0.387,-0.916,0.387,0.103,-0.916,0.614,0.232,-0.754,0.201,0.201,0.959,-0.18,0.202,0.963,-0.258,0.604,0.754,-0.86,0.368,0.354,-0.338,0.867,0.367,-0.251,0.597,0.761,0.387,0.103,-0.916,0.117,-0.992,0.038,0.506,-0.777,0.375
,0.678,-0.735,-0.027,-0.182,-0.193,0.964,0.19,-0.203,0.96,0.459,-0.549,0.699,0.19,-0.203,0.96,0.201,0.201,0.959,0.598,0.271,0.754,0.729,-0.684,-0.004,0.867,-0.346,0.359,1,0,-0.001,-0.798,0.472,-0.374,-0.86,-0.355,-0.367,-0.614,-0.224,-0.757,-0.712,-0.702,-0.011,-0.86,-0.355,-0.367,-0.999,0.047,0.011,-0.525,0.35,-0.776
,-0.185,0.107,-0.977,0.109,0.387,-0.916,-0.246,-0.887,0.391,-0.867,-0.344,0.36,-0.583,-0.266,0.767,-0.999,-0.037,-0.014,-0.771,0.537,-0.342,-0.601,0.799,0.029,0,1,-0.001,-0.339,0.871,0.355,-0.661,0.75,0.006,0,1,-0.001,0.366,0.856,-0.366,0.707,0.707,-0.012,-0.276,0.905,-0.322,-0.113,0.691,-0.713,0.232,0.614,-0.754
,0.856,0.366,-0.366,0.614,0.232,-0.754,0.69,-0.171,-0.704,0.367,-0.571,0.734,0.452,-0.819,0.352,-0.245,-0.887,0.391,-0.867,-0.344,0.36,-0.857,0.366,0.363,-0.578,0.279,0.767,0.404,-0.857,-0.32,0.827,-0.397,-0.399,0.688,-0.162,-0.707,0.855,0.366,-0.366,0.366,0.856,-0.366,0.232,0.614,-0.754]
,"uvs":[0.827,0.331,0.655,0.382,0.654,0.285,0.845,0.218,0.671,0.169,0.844,0.121,0.845,0.231,0.845,0.325,0.672,0.278,0.954,0.445,0.865,0.445,0.91,0.4,0.857,0.437,0.858,0.349,0.902,0.393,0.962,0.349,0.961,0.437,0.917,0.393,0.546,0.851,0.632,0.851,0.589,0.895,0.654,0.065,0.827,0.115,0.653,0.162,0.83,0.44
,0.656,0.488,0.655,0.394,0.653,0.175,0.827,0.225,0.654,0.272,0.632,0.955,0.545,0.953,0.588,0.91,0.845,0.338,0.846,0.433,0.673,0.388,0.865,0.341,0.954,0.341,0.91,0.386,0.846,0.013,0.844,0.109,0.672,0.059,0.537,0.946,0.538,0.859,0.581,0.903,0.65,0.851,0.632,0.851,0.639,0.84,0.844,0.121,0.827,0.115
,0.844,0.109,0.846,0.013,0.829,0.007,0.846,0.002,0.538,0.84,0.538,0.859,0.527,0.851,0.596,0.903,0.581,0.903,0.589,0.895,0.865,0.341,0.846,0.34,0.857,0.33,0.962,0.349,0.962,0.33,0.973,0.341,0.653,0.162,0.671,0.169,0.653,0.175,0.654,0.272,0.672,0.278,0.654,0.285,0.902,0.393,0.917,0.393,0.91,0.4
,0.65,0.955,0.639,0.859,0.65,0.851,0.639,0.859,0.589,0.895,0.632,0.851,0.973,0.446,0.962,0.349,0.973,0.341,0.857,0.33,0.954,0.341,0.865,0.341,0.827,0.225,0.671,0.169,0.845,0.218,0.857,0.437,0.91,0.4,0.865,0.445,0.672,0.059,0.829,0.007,0.846,0.013,0.581,0.903,0.545,0.953,0.537,0.946,0.91,0.386
,0.858,0.349,0.865,0.341,0.846,0.445,0.858,0.349,0.857,0.437,0.588,0.91,0.639,0.947,0.632,0.955,0.671,0.169,0.827,0.115,0.844,0.121,0.91,0.4,0.961,0.437,0.954,0.445,0.917,0.393,0.954,0.341,0.962,0.349,0.827,0.115,0.672,0.059,0.844,0.109,0.538,0.84,0.632,0.851,0.546,0.851,0.827,0.225,0.672,0.278
,0.654,0.272,0.546,0.851,0.581,0.903,0.538,0.859,0.961,0.456,0.865,0.445,0.954,0.445,0.672,0.278,0.827,0.331,0.654,0.285,0.673,0.388,0.827,0.331,0.845,0.338,0.673,0.388,0.83,0.44,0.655,0.394,0.527,0.851,0.537,0.946,0.526,0.954,0.536,0.965,0.632,0.955,0.639,0.966,0.639,0.859,0.639,0.947,0.596,0.903
,0.673,0.388,0.655,0.394,0.655,0.382,0.672,0.059,0.654,0.065,0.654,0.053,0.961,0.437,0.961,0.456,0.954,0.445,0.857,0.456,0.857,0.437,0.865,0.445,0.827,0.331,0.845,0.325,0.845,0.338,0.845,0.218,0.845,0.231,0.65,0.955,0.632,0.955,0.639,0.947,0.536,0.965,0.537,0.946,0.545,0.953,0.65,0.851,0.639,0.859
,0.632,0.851,0.538,0.84,0.546,0.851,0.538,0.859,0.588,0.91,0.581,0.903,0.865,0.341,0.858,0.349,0.846,0.34,0.962,0.349,0.954,0.341,0.962,0.33,0.902,0.393,0.91,0.386,0.917,0.393,0.65,0.955,0.639,0.947,0.639,0.859,0.589,0.895,0.973,0.446,0.961,0.437,0.962,0.349,0.857,0.33,0.962,0.33,0.954,0.341
,0.827,0.225,0.653,0.175,0.671,0.169,0.857,0.437,0.902,0.393,0.91,0.4,0.672,0.059,0.654,0.053,0.829,0.007,0.581,0.903,0.588,0.91,0.545,0.953,0.91,0.386,0.902,0.393,0.858,0.349,0.846,0.445,0.846,0.34,0.858,0.349,0.588,0.91,0.671,0.169,0.653,0.162,0.827,0.115,0.91,0.4,0.917,0.393,0.961,0.437
,0.917,0.393,0.91,0.386,0.954,0.341,0.827,0.115,0.654,0.065,0.672,0.059,0.538,0.84,0.639,0.84,0.632,0.851,0.827,0.225,0.845,0.231,0.672,0.278,0.546,0.851,0.589,0.895,0.581,0.903,0.961,0.456,0.857,0.456,0.865,0.445,0.672,0.278,0.845,0.325,0.827,0.331,0.673,0.388,0.655,0.382,0.827,0.331,0.673,0.388
,0.846,0.433,0.83,0.44,0.527,0.851,0.538,0.859,0.537,0.946,0.536,0.965,0.545,0.953,0.632,0.955,0.961,0.437,0.973,0.446,0.961,0.456,0.857,0.456,0.846,0.445,0.857,0.437,0.65,0.955,0.639,0.966,0.632,0.955,0.536,0.965,0.526,0.954,0.537,0.946]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50
,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101
,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152
,153,154,155,156,157,158,159,160,161,162,163,164,28,165,166,167,168,169,170,171,172,173,174,175,176,177,178,57,179,180,181,182,183,184,185,186,187,188,189,190,191,76,192,57,193,194,195,196,197,198,199
,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,57,106,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248
,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269]
}
,{"name":"d6","id":"d6","billboardMode":0,"position":[0,0,-0.4823],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false
,"positions":[0.0519,0.0296,-0.0793,0.0519,-0.0257,0.092,0.004,0.0572,0.092,0.0041,0.0496,0.0989,0.0453,-0.0218,0.0989,0.0041,0.002,0.121,-0.0517,-0.0259,0.0948,-0.0529,0.0313,-0.0824,-0.0024,0.0602,0.0965,0.0049,-0.0596,-0.0962,0.0519,-0.0296,0.0792,0.0519,0.0256,-0.0922,0.0444,-0.0289,0.1037,-0.0412,-0.0282,0.1018,0.0013,-0.004,0.1269,-0.0449,-0.0219,0.1018,-0.0024,0.0523,0.1036
,-0.0024,0.0024,0.1269,-0.0449,0.0228,-0.101,-0.0021,-0.0506,-0.1014,-0.0021,-0.0017,-0.1241,0.005,-0.0516,-0.1034,0.0453,0.0217,-0.099,0.005,-0.0018,-0.1264,-0.002,-0.0584,-0.0944,-0.0517,0.0268,-0.094,-0.0517,-0.03,0.0817,-0.0482,-0.032,0.0948,0.0514,-0.0328,0.0965,0.0013,-0.0617,-0.0829,0.0484,0.0316,-0.0921,0.0012,0.0623,0.0832,-0.0493,0.0333,-0.0957,0.0519,0.0256,-0.0922
,0.0519,0.0296,-0.0793,0.0484,0.0316,-0.0921,-0.0493,0.0333,-0.0957,-0.0529,0.0313,-0.0824,-0.0517,0.0268,-0.094,-0.002,-0.0584,-0.0944,0.0013,-0.0617,-0.0829,0.0049,-0.0596,-0.0962,-0.0021,-0.0017,-0.1241,0.005,-0.0018,-0.1264,0.0013,0.0045,-0.1264,-0.0449,-0.0219,0.1018,-0.0482,-0.032,0.0948,-0.0517,-0.0259,0.0948,-0.0024,0.0602,0.0965,0.0012,0.0623,0.0832,0.004,0.0572,0.092
,0.0514,-0.0328,0.0965,0.0453,-0.0218,0.0989,0.0519,-0.0257,0.092,0.0041,0.002,0.121,0.0013,-0.004,0.1269,-0.0024,0.0024,0.1269,-0.0021,-0.0017,-0.1241,-0.0423,0.0294,-0.1029,-0.0449,0.0228,-0.101,-0.0529,0.0313,-0.0824,-0.0517,-0.03,0.0817,-0.0517,0.0268,-0.094,-0.002,-0.0584,-0.0944,-0.0449,0.0228,-0.101,-0.0517,0.0268,-0.094,0.0013,-0.0617,-0.0829,0.0519,-0.0296,0.0792
,0.0049,-0.0596,-0.0962,0.0453,0.0217,-0.099,0.0418,0.0278,-0.0989,0.0519,0.0296,-0.0793,0.0519,-0.0296,0.0792,0.0519,-0.0257,0.092,0.0444,-0.0289,0.1037,0.0041,0.002,0.121,0.0453,-0.0218,0.0989,0.0012,0.0623,0.0832,-0.0529,0.0313,-0.0824,-0.0493,0.0333,-0.0957,0.0519,0.0296,-0.0793,0.0012,0.0623,0.0832,0.0484,0.0316,-0.0921,-0.0493,0.0333,-0.0957,0.0418,0.0278,-0.0989
,0.0484,0.0316,-0.0921,-0.0024,0.0024,0.1269,-0.0412,-0.0282,0.1018,-0.0449,-0.0219,0.1018,-0.0024,0.0602,0.0965,-0.0449,-0.0219,0.1018,-0.0517,-0.0259,0.0948,0.0519,-0.0257,0.092,0.0041,0.0496,0.0989,0.004,0.0572,0.092,0.0514,-0.0328,0.0965,-0.0412,-0.0282,0.1018,0.0444,-0.0289,0.1037,-0.0517,-0.03,0.0817,0.0013,-0.0617,-0.0829,-0.002,-0.0584,-0.0944,0.005,-0.0516,-0.1034
,-0.0021,-0.0017,-0.1241,-0.0021,-0.0506,-0.1014,0.0041,0.002,0.121,-0.0024,0.0523,0.1036,0.0041,0.0496,0.0989,0.0049,-0.0596,-0.0962,0.0453,0.0217,-0.099,0.005,-0.0516,-0.1034,0.0418,0.0278,-0.0989,-0.0423,0.0294,-0.1029,0.0013,0.0045,-0.1264,-0.0024,0.0602,0.0965,0.0041,0.0496,0.0989,-0.0024,0.0523,0.1036,0.0519,-0.0296,0.0792,0.0514,-0.0328,0.0965,0.0519,-0.0257,0.092
,-0.0517,-0.0259,0.0948,-0.0482,-0.032,0.0948,-0.0493,0.0333,-0.0957,-0.0449,0.0228,-0.101,-0.0423,0.0294,-0.1029,0.0519,0.0256,-0.0922,0.0453,0.0217,-0.099,-0.0021,-0.0506,-0.1014,0.0049,-0.0596,-0.0962,0.005,-0.0516,-0.1034,-0.0449,-0.0219,0.1018,-0.0412,-0.0282,0.1018,-0.0482,-0.032,0.0948,0.0514,-0.0328,0.0965,0.0444,-0.0289,0.1037,0.0453,-0.0218,0.0989,-0.0021,-0.0017,-0.1241
,-0.0529,0.0313,-0.0824,-0.0517,-0.0259,0.0948,-0.0517,-0.03,0.0817,-0.002,-0.0584,-0.0944,-0.0021,-0.0506,-0.1014,-0.0449,0.0228,-0.101,0.0013,-0.0617,-0.0829,0.0514,-0.0328,0.0965,0.0519,-0.0296,0.0792,0.005,-0.0018,-0.1264,0.0453,0.0217,-0.099,0.0519,0.0296,-0.0793,0.0519,0.0256,-0.0922,0.0519,-0.0296,0.0792,0.0444,-0.0289,0.1037,0.0013,-0.004,0.1269,0.0041,0.002,0.121
,0.0012,0.0623,0.0832,-0.0024,0.0602,0.0965,-0.0529,0.0313,-0.0824,0.0519,0.0296,-0.0793,0.004,0.0572,0.092,0.0012,0.0623,0.0832,-0.0493,0.0333,-0.0957,-0.0423,0.0294,-0.1029,0.0418,0.0278,-0.0989,-0.0024,0.0024,0.1269,0.0013,-0.004,0.1269,-0.0412,-0.0282,0.1018,-0.0024,0.0602,0.0965,-0.0024,0.0523,0.1036,-0.0449,-0.0219,0.1018,0.0519,-0.0257,0.092,0.0453,-0.0218,0.0989
,0.0041,0.0496,0.0989,0.0514,-0.0328,0.0965,-0.0482,-0.032,0.0948,-0.0412,-0.0282,0.1018,-0.0517,-0.03,0.0817,-0.0482,-0.032,0.0948,0.0013,-0.0617,-0.0829,0.005,-0.0516,-0.1034,0.005,-0.0018,-0.1264,-0.0021,-0.0017,-0.1241,0.0041,0.002,0.121,-0.0024,0.0024,0.1269,-0.0024,0.0523,0.1036,0.0049,-0.0596,-0.0962,0.0519,0.0256,-0.0922,0.0453,0.0217,-0.099,-0.0024,0.0602,0.0965
,0.004,0.0572,0.092,0.0041,0.0496,0.0989,-0.0493,0.0333,-0.0957,-0.0517,0.0268,-0.094,-0.0449,0.0228,-0.101,0.0519,0.0256,-0.0922,0.0484,0.0316,-0.0921,-0.0021,-0.0506,-0.1014,-0.002,-0.0584,-0.0944,0.0049,-0.0596,-0.0962]
,"normals":[0.903,0.428,0.026,0.935,0.238,0.264,0.707,0.625,0.331,0.685,0.423,0.593,0.708,0.382,0.593,0.616,0.355,0.704,-0.911,-0.044,0.41,-0.888,0.459,-0.014,-0.149,0.85,0.506,0.341,-0.813,-0.472,0.91,-0.413,-0.035,0.913,0.043,-0.407,0.465,-0.341,0.817,-0.281,-0.604,0.746,0.193,-0.148,0.97,-0.663,0.059,0.747,-0.061,0.573,0.817
,-0.029,0.24,0.97,-0.686,-0.203,-0.699,-0.517,-0.493,-0.699,-0.447,-0.256,-0.857,0.264,-0.543,-0.797,0.682,-0.041,-0.73,0.216,-0.186,-0.959,-0.546,-0.746,-0.382,-0.918,-0.102,-0.382,-0.865,-0.501,-0.021,-0.495,-0.766,0.41,0.686,-0.565,0.458,0.02,-0.999,-0.04,0.512,0.758,-0.403,0.124,0.991,0.043,-0.555,0.689,-0.466,0.913,0.041,-0.406
,0.903,0.428,0.026,0.511,0.759,-0.403,-0.555,0.689,-0.466,-0.888,0.459,-0.014,-0.919,-0.104,-0.38,-0.549,-0.745,-0.379,0.02,-0.999,-0.04,0.341,-0.814,-0.471,-0.447,-0.257,-0.857,0.215,-0.186,-0.959,-0.055,0.289,-0.956,-0.662,0.059,0.747,-0.494,-0.768,0.409,-0.911,-0.043,0.41,-0.148,0.85,0.506,0.124,0.991,0.043,0.708,0.625,0.329
,0.687,-0.564,0.458,0.708,0.382,0.594,0.935,0.239,0.261,0.616,0.355,0.704,0.193,-0.148,0.97,-0.044,0.244,0.969,-0.447,-0.257,-0.857,-0.341,0.501,-0.795,-0.686,-0.203,-0.699,-0.919,0.393,-0.037,-0.899,-0.438,0.001,-0.897,-0.164,-0.411,-0.546,-0.746,-0.382,-0.686,-0.203,-0.699,-0.918,-0.102,-0.382,-0.138,-0.99,0.001,0.961,-0.267,-0.075
,0.243,-0.877,-0.414,0.683,-0.042,-0.73,0.303,0.614,-0.729,0.903,0.428,0.026,0.91,-0.413,-0.035,0.935,0.238,0.264,0.465,-0.341,0.817,0.616,0.355,0.704,0.708,0.382,0.593,0.124,0.991,0.043,-0.888,0.459,-0.014,-0.555,0.689,-0.466,0.813,0.582,-0.029,0.304,0.947,0.102,0.352,0.806,-0.476,-0.557,0.699,-0.447,0.303,0.591,-0.748
,0.506,0.748,-0.43,-0.044,0.244,0.969,-0.281,-0.604,0.745,-0.663,0.059,0.747,-0.153,0.853,0.499,-0.654,0.054,0.754,-0.906,-0.044,0.421,0.935,0.238,0.264,0.685,0.423,0.593,0.707,0.625,0.331,0.687,-0.57,0.452,-0.281,-0.595,0.753,0.462,-0.355,0.812,-0.828,-0.561,0.001,-0.054,-0.997,-0.061,-0.589,-0.696,-0.411,0.264,-0.543,-0.797
,-0.447,-0.257,-0.857,-0.517,-0.493,-0.699,0.616,0.355,0.704,-0.061,0.573,0.817,0.685,0.423,0.593,0.35,-0.821,-0.452,0.661,-0.029,-0.75,0.295,-0.555,-0.778,0.303,0.614,-0.729,-0.342,0.501,-0.795,-0.056,0.282,-0.958,-0.148,0.85,0.506,0.685,0.423,0.594,-0.067,0.57,0.819,0.91,-0.413,-0.035,0.687,-0.564,0.458,0.935,0.239,0.261
,-0.911,-0.043,0.41,-0.494,-0.768,0.409,-0.555,0.689,-0.466,-0.685,-0.202,-0.7,-0.336,0.504,-0.796,0.913,0.041,-0.406,0.682,-0.044,-0.73,-0.516,-0.493,-0.7,0.341,-0.814,-0.471,0.271,-0.538,-0.798,-0.662,0.059,0.747,-0.28,-0.605,0.746,-0.494,-0.768,0.409,0.687,-0.564,0.458,0.457,-0.347,0.819,0.708,0.382,0.594,-0.447,-0.257,-0.857
,-0.919,0.393,-0.037,-0.898,0.019,0.439,-0.899,-0.438,0.001,-0.546,-0.746,-0.382,-0.517,-0.493,-0.699,-0.686,-0.203,-0.699,-0.138,-0.99,0.001,0.777,-0.485,0.401,0.961,-0.267,-0.075,0.215,-0.186,-0.959,0.683,-0.042,-0.73,0.903,0.428,0.026,0.913,0.043,-0.406,0.91,-0.413,-0.035,0.465,-0.341,0.817,0.193,-0.148,0.97,0.616,0.355,0.704
,0.124,0.991,0.043,-0.149,0.85,0.506,-0.888,0.459,-0.014,0.813,0.582,-0.029,0.788,0.47,0.398,0.304,0.947,0.102,-0.557,0.699,-0.447,-0.337,0.532,-0.777,0.303,0.591,-0.748,-0.044,0.244,0.969,0.193,-0.148,0.97,-0.281,-0.604,0.745,-0.153,0.853,0.499,-0.074,0.578,0.812,-0.654,0.054,0.754,0.935,0.238,0.264,0.708,0.382,0.593
,0.685,0.423,0.593,0.687,-0.57,0.452,-0.492,-0.762,0.42,-0.281,-0.595,0.753,-0.828,-0.561,0.001,-0.435,-0.786,0.438,-0.054,-0.997,-0.061,0.264,-0.543,-0.797,0.215,-0.186,-0.959,-0.447,-0.257,-0.857,0.616,0.355,0.704,-0.044,0.244,0.969,-0.061,0.573,0.817,0.35,-0.821,-0.452,0.9,0.044,-0.434,0.661,-0.029,-0.75,-0.148,0.85,0.506
,0.708,0.625,0.329,0.685,0.423,0.594,-0.555,0.689,-0.466,-0.919,-0.104,-0.38,-0.685,-0.202,-0.7,0.913,0.041,-0.406,0.511,0.759,-0.403,-0.516,-0.493,-0.7,-0.549,-0.745,-0.379,0.341,-0.814,-0.471]
,"uvs":[0.475,0.526,0.652,0.473,0.652,0.579,0.512,0.87,0.512,0.962,0.485,0.916,0.652,0.693,0.476,0.64,0.652,0.587,0.461,0.758,0.639,0.811,0.459,0.857,0.505,0.966,0.425,0.92,0.479,0.919,0.425,0.912,0.505,0.866,0.479,0.912,0.184,0.957,0.23,0.876,0.231,0.93,0.238,0.876,0.285,0.955,0.238,0.93,0.461,0.75
,0.461,0.644,0.637,0.697,0.652,0.701,0.652,0.807,0.475,0.754,0.461,0.53,0.637,0.583,0.461,0.636,0.461,0.522,0.475,0.526,0.461,0.53,0.461,0.636,0.476,0.64,0.461,0.644,0.461,0.75,0.475,0.754,0.461,0.758,0.231,0.93,0.238,0.93,0.235,0.936,0.425,0.912,0.41,0.921,0.41,0.91,0.652,0.587,0.637,0.583
,0.652,0.579,0.511,0.98,0.512,0.962,0.521,0.974,0.485,0.916,0.479,0.919,0.479,0.912,0.231,0.93,0.188,0.964,0.184,0.957,0.476,0.64,0.637,0.697,0.461,0.644,0.227,0.862,0.184,0.957,0.171,0.963,0.475,0.754,0.639,0.811,0.461,0.758,0.285,0.955,0.281,0.962,0.475,0.526,0.638,0.469,0.652,0.473,0.505,0.966
,0.485,0.916,0.512,0.962,0.637,0.583,0.476,0.64,0.461,0.636,0.475,0.526,0.637,0.583,0.461,0.53,0.176,0.973,0.281,0.962,0.293,0.971,0.479,0.912,0.425,0.92,0.425,0.912,0.511,0.852,0.425,0.912,0.41,0.91,0.521,0.974,0.512,0.87,0.521,0.858,0.511,0.98,0.425,0.92,0.505,0.966,0.637,0.697,0.475,0.754
,0.461,0.75,0.238,0.876,0.231,0.93,0.23,0.876,0.485,0.916,0.505,0.866,0.512,0.87,0.239,0.861,0.285,0.955,0.238,0.876,0.281,0.962,0.188,0.964,0.235,0.936,0.511,0.852,0.512,0.87,0.505,0.866,0.638,0.469,0.652,0.466,0.652,0.473,0.652,0.693,0.652,0.701,0.176,0.973,0.184,0.957,0.188,0.964,0.299,0.961
,0.285,0.955,0.23,0.876,0.239,0.861,0.238,0.876,0.425,0.912,0.425,0.92,0.41,0.921,0.511,0.98,0.505,0.966,0.512,0.962,0.231,0.93,0.476,0.64,0.652,0.693,0.637,0.697,0.227,0.862,0.23,0.876,0.184,0.957,0.475,0.754,0.652,0.807,0.639,0.811,0.238,0.93,0.285,0.955,0.475,0.526,0.461,0.522,0.638,0.469
,0.505,0.966,0.479,0.919,0.485,0.916,0.637,0.583,0.652,0.587,0.476,0.64,0.475,0.526,0.652,0.579,0.637,0.583,0.176,0.973,0.188,0.964,0.281,0.962,0.479,0.912,0.479,0.919,0.425,0.92,0.511,0.852,0.505,0.866,0.425,0.912,0.521,0.974,0.512,0.962,0.512,0.87,0.511,0.98,0.41,0.921,0.425,0.92,0.637,0.697
,0.652,0.701,0.475,0.754,0.238,0.876,0.238,0.93,0.231,0.93,0.485,0.916,0.479,0.912,0.505,0.866,0.239,0.861,0.299,0.961,0.285,0.955,0.511,0.852,0.521,0.858,0.512,0.87,0.176,0.973,0.171,0.963,0.184,0.957,0.299,0.961,0.293,0.971,0.23,0.876,0.227,0.862,0.239,0.861]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50
,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,44,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100
,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,26,119,120,121,122,123,124,70,125,126,127,128,129,130,131,132,133,134,135,44,58,136,137,138,139,140,141,142,143,144,44,145,146
,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,70,194,195,196
]
}
,{"name":"d8_collider","id":"d8_collider","billboardMode":0,"position":[0,0,-0.1119],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false,"physicsImpostor":8,"physicsMass":0.1,"physicsFriction":0.5,"physicsRestitution":0
,"positions":[-0.0491,0.0508,-0.0951,0.0014,0.0723,0.0937,-0.0725,0.0004,0.0958,-0.0516,-0.0493,-0.0969,0.001,-0.0721,0.095,0.0512,-0.0492,-0.0945,-0.0516,-0.0493,-0.0969,-0.0491,0.0508,-0.0951,-0.0725,0.0004,0.0958,0.001,-0.0721,0.095,-0.0725,0.0004,0.0958,0,0,0.1285,-0.0725,0.0004,0.0958,0.0014,0.0723,0.0937,0,0,0.1285,0.073,0.0008,0.0937,0.001,-0.0721,0.095
,0,0,0.1285,-0.0491,0.0508,-0.0951,-0.0516,-0.0493,-0.0969,0,0,-0.1302,0.073,0.0008,0.0937,0.0512,-0.0492,-0.0945,0.001,-0.0721,0.095,0.0512,0.0505,-0.094,0.073,0.0008,0.0937,0.0014,0.0723,0.0937,0.001,-0.0721,0.095,-0.0516,-0.0493,-0.0969,-0.0725,0.0004,0.0958,0.0512,-0.0492,-0.0945,0.0512,0.0505,-0.094,0,0,-0.1302,-0.0491,0.0508,-0.0951
,0.0512,0.0505,-0.094,0.0014,0.0723,0.0937,0.0014,0.0723,0.0937,0.073,0.0008,0.0937,0,0,0.1285,0.0512,0.0505,-0.094,0.0512,-0.0492,-0.0945,0.073,0.0008,0.0937,0.0512,0.0505,-0.094,-0.0491,0.0508,-0.0951,0,0,-0.1302,-0.0516,-0.0493,-0.0969,0.0512,-0.0492,-0.0945,0,0,-0.1302]
,"normals":[-0.692,0.715,0.104,-0.692,0.715,0.104,-0.692,0.715,0.104,0.004,-0.993,-0.119,0.004,-0.993,-0.119,0.004,-0.993,-0.119,-0.993,0.027,-0.115,-0.993,0.027,-0.115,-0.993,0.027,-0.115,-0.38,-0.394,0.837,-0.38,-0.394,0.837,-0.38,-0.394,0.837,-0.374,0.409,0.833,-0.374,0.409,0.833,-0.374,0.409,0.833,0.401,-0.382,0.833,0.401,-0.382,0.833
,0.401,-0.382,0.833,-0.562,0.029,-0.827,-0.562,0.029,-0.827,-0.562,0.029,-0.827,0.708,-0.698,0.104,0.708,-0.698,0.104,0.708,-0.698,0.104,0.703,0.703,0.105,0.703,0.703,0.105,0.703,0.703,0.105,-0.697,-0.709,0.107,-0.697,-0.709,0.107,-0.697,-0.709,0.107,0.575,0.005,-0.818,0.575,0.005,-0.818,0.575,0.005,-0.818,0.005,0.993,-0.114
,0.005,0.993,-0.114,0.005,0.993,-0.114,0.393,0.393,0.832,0.393,0.393,0.832,0.393,0.393,0.832,0.993,0.001,-0.115,0.993,0.001,-0.115,0.993,0.001,-0.115,0.011,0.576,-0.817,0.011,0.576,-0.817,0.011,0.576,-0.817,0.02,-0.573,-0.819,0.02,-0.573,-0.819,0.02,-0.573,-0.819]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47]
}
,{"name":"d6_collider","id":"d6_collider","billboardMode":0,"position":[0,0,-0.4823],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false,"physicsImpostor":8,"physicsMass":0.08,"physicsFriction":0.5,"physicsRestitution":0
,"positions":[0.0509,0.029,-0.0938,0.0521,-0.0295,0.0955,0.001,0.0599,0.0963,0.001,0.0599,0.0963,0.0521,-0.0295,0.0955,0,0,0.1269,-0.0506,-0.0294,0.0965,-0.0513,0.0306,-0.0967,0.001,0.0599,0.0963,0.0015,-0.06,-0.0972,0.0521,-0.0295,0.0955,0.0509,0.029,-0.0938,0.0521,-0.0295,0.0955,-0.0506,-0.0294,0.0965,0,0,0.1269,-0.0506,-0.0294,0.0965,0.001,0.0599,0.0963
,0,0,0.1269,-0.0513,0.0306,-0.0967,0.0015,-0.06,-0.0972,0,0,-0.1276,0.0015,-0.06,-0.0972,0.0509,0.029,-0.0938,0,0,-0.1276,0.0015,-0.06,-0.0972,-0.0513,0.0306,-0.0967,-0.0506,-0.0294,0.0965,-0.0506,-0.0294,0.0965,0.0521,-0.0295,0.0955,0.0015,-0.06,-0.0972,0.0509,0.029,-0.0938,0.001,0.0599,0.0963,-0.0513,0.0306,-0.0967,0.0509,0.029,-0.0938
,-0.0513,0.0306,-0.0967,0,0,-0.1276]
,"normals":[0.859,0.49,0.146,0.859,0.49,0.146,0.859,0.49,0.146,0.621,0.348,0.702,0.621,0.348,0.702,0.621,0.348,0.702,-0.855,0.494,0.157,-0.855,0.494,0.157,-0.855,0.494,0.157,0.867,-0.475,-0.152,0.867,-0.475,-0.152,0.867,-0.475,-0.152,0.006,-0.724,0.69,0.006,-0.724,0.69,0.006,-0.724,0.69,-0.626,0.362,0.691,-0.626,0.362,0.691
,-0.626,0.362,0.691,-0.631,-0.364,-0.686,-0.631,-0.364,-0.686,-0.631,-0.364,-0.686,0.647,-0.333,-0.686,0.647,-0.333,-0.686,0.647,-0.333,-0.686,-0.854,-0.497,-0.151,-0.854,-0.497,-0.151,-0.854,-0.497,-0.151,0,-0.988,0.156,0,-0.988,0.156,0,-0.988,0.156,0.019,0.988,-0.155,0.019,0.988,-0.155,0.019,0.988,-0.155,0.03,0.736,-0.676
,0.03,0.736,-0.676,0.03,0.736,-0.676]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35]
}
,{"name":"d4_collider","id":"d4_collider","billboardMode":0,"position":[0,0,-0.8],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false,"physicsImpostor":8,"physicsMass":0.16,"physicsFriction":0.5,"physicsRestitution":0
,"positions":[0.0529,0.0531,-0.0972,-0.0534,0.053,-0.0969,0,0,-0.1261,0,0,0.1262,0.0529,-0.0534,0.0968,-0.0531,-0.053,0.0963,-0.0537,0.063,-0.0862,0.053,0.063,0.0858,-0.0537,0.063,0.0858,0.0628,-0.0535,-0.0862,0.0628,0.0531,0.0858,0.0628,0.0531,-0.0862,0.053,-0.0633,0.0858,-0.0532,-0.0628,-0.0856,-0.0532,-0.0628,0.0854,-0.0531,-0.053,-0.0965,0.0529,-0.0532,-0.0969
,0,0,-0.1261,-0.0531,-0.053,-0.0965,0,0,-0.1261,-0.0534,0.053,-0.0969,-0.0531,-0.053,0.0963,-0.0534,0.053,0.0966,0,0,0.1262,0.0529,0.0531,0.0968,0.0529,-0.0534,0.0968,0,0,0.1262,-0.063,0.0529,0.0854,-0.063,-0.0531,-0.0856,-0.063,0.0529,-0.0856,-0.0537,0.063,-0.0862,-0.0606,0.0601,-0.0862,-0.0534,0.053,-0.0969,-0.063,0.0529,-0.0856
,-0.0534,0.053,-0.0969,-0.0606,0.0601,-0.0862,-0.063,-0.0531,-0.0856,-0.0601,-0.06,-0.0856,-0.0531,-0.053,-0.0965,-0.0532,-0.0628,-0.0856,-0.0531,-0.053,-0.0965,-0.0601,-0.06,-0.0856,-0.0537,0.063,0.0858,-0.0534,0.053,0.0966,-0.0606,0.0601,0.0858,-0.063,0.0529,0.0854,-0.0606,0.0601,0.0858,-0.0534,0.053,0.0966,-0.0532,-0.0628,0.0854,-0.0601,-0.06,0.0854,-0.0531,-0.053,0.0963
,-0.063,-0.0531,0.0854,-0.0531,-0.053,0.0963,-0.0601,-0.06,0.0854,0.0628,0.0531,-0.0862,0.06,0.0601,-0.0862,0.0529,0.0531,-0.0972,0.053,0.063,-0.0862,0.0529,0.0531,-0.0972,0.06,0.0601,-0.0862,0.053,-0.0633,-0.0862,0.06,-0.0604,-0.0862,0.0529,-0.0532,-0.0969,0.0628,-0.0535,-0.0862,0.0529,-0.0532,-0.0969,0.06,-0.0604,-0.0862,0.0628,-0.0535,0.0858,0.06,-0.0604,0.0858
,0.0529,-0.0534,0.0968,0.053,-0.0633,0.0858,0.0529,-0.0534,0.0968,0.06,-0.0604,0.0858,0.053,0.063,0.0858,0.06,0.0601,0.0858,0.0529,0.0531,0.0968,0.0628,0.0531,0.0858,0.0529,0.0531,0.0968,0.06,0.0601,0.0858,-0.063,0.0529,-0.0856,-0.0531,-0.053,-0.0965,-0.0534,0.053,-0.0969,0,0,-0.1261,0.0529,-0.0532,-0.0969,0.0529,0.0531,-0.0972,-0.0537,0.063,0.0858
,-0.0606,0.0601,-0.0862,-0.0537,0.063,-0.0862,-0.0606,0.0601,0.0858,-0.063,0.0529,-0.0856,-0.0606,0.0601,-0.0862,-0.063,-0.0531,0.0854,-0.0601,-0.06,-0.0856,-0.063,-0.0531,-0.0856,-0.0601,-0.06,0.0854,-0.0532,-0.0628,-0.0856,-0.0601,-0.06,-0.0856,-0.0531,-0.053,0.0963,-0.063,0.0529,0.0854,-0.0534,0.053,0.0966,0.053,-0.0633,0.0858,0.06,-0.0604,-0.0862,0.053,-0.0633,-0.0862
,0.06,-0.0604,0.0858,0.0628,-0.0535,-0.0862,0.06,-0.0604,-0.0862,0.0529,-0.0532,-0.0969,0.0628,0.0531,-0.0862,0.0529,0.0531,-0.0972,-0.0534,0.053,0.0966,0.053,0.063,0.0858,0.0529,0.0531,0.0968,0.0628,0.0531,0.0858,0.06,0.0601,-0.0862,0.0628,0.0531,-0.0862,0.06,0.0601,0.0858,0.053,0.063,-0.0862,0.06,0.0601,-0.0862,0.0529,-0.0532,-0.0969,-0.0532,-0.0628,-0.0856
,0.053,-0.0633,-0.0862,-0.0531,-0.053,0.0963,0.053,-0.0633,0.0858,-0.0532,-0.0628,0.0854,0.0529,-0.0534,0.0968,0.0628,0.0531,0.0858,0.0628,-0.0535,0.0858,-0.0534,0.053,-0.0969,0.053,0.063,-0.0862,-0.0537,0.063,-0.0862,-0.0534,0.053,0.0966,0.0529,0.0531,0.0968,0,0,0.1262,0.053,0.063,-0.0862,0.0628,-0.0535,0.0858,0.053,-0.0633,-0.0862,-0.063,-0.0531,0.0854
,-0.063,0.0529,-0.0856,-0.063,-0.0531,-0.0856,-0.0531,-0.053,-0.0965,-0.0537,0.063,0.0858,-0.0606,0.0601,0.0858,-0.0606,0.0601,-0.0862,-0.0606,0.0601,0.0858,-0.063,0.0529,0.0854,-0.063,0.0529,-0.0856,-0.063,-0.0531,0.0854,-0.0601,-0.06,0.0854,-0.0601,-0.06,-0.0856,-0.0601,-0.06,0.0854,-0.0532,-0.0628,0.0854,-0.0532,-0.0628,-0.0856,-0.0531,-0.053,0.0963,-0.063,-0.0531,0.0854
,-0.063,0.0529,0.0854,0.053,-0.0633,0.0858,0.06,-0.0604,0.0858,0.06,-0.0604,-0.0862,0.06,-0.0604,0.0858,0.0628,-0.0535,0.0858,0.0628,-0.0535,-0.0862,0.0529,-0.0532,-0.0969,0.0628,-0.0535,-0.0862,0.0628,0.0531,-0.0862,-0.0534,0.053,0.0966,-0.0537,0.063,0.0858,0.053,0.063,0.0858,0.0628,0.0531,0.0858,0.06,0.0601,0.0858,0.06,0.0601,-0.0862,0.06,0.0601,0.0858
,0.053,0.063,0.0858,0.053,0.063,-0.0862,0.0529,-0.0532,-0.0969,-0.0531,-0.053,-0.0965,-0.0532,-0.0628,-0.0856,-0.0531,-0.053,0.0963,0.0529,-0.0534,0.0968,0.053,-0.0633,0.0858,0.0529,-0.0534,0.0968,0.0529,0.0531,0.0968,0.0628,0.0531,0.0858,-0.0534,0.053,-0.0969,0.0529,0.0531,-0.0972,0.053,0.063,-0.0862]
,"normals":[-0.002,0.481,-0.877,-0.002,0.481,-0.877,-0.002,0.481,-0.877,-0.006,-0.487,0.873,-0.006,-0.487,0.873,-0.006,-0.487,0.873,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,-0.004,-1,0,-0.004,-1,0,-0.004,-1,0,-0.005,-0.485,-0.875,-0.005,-0.485,-0.875
,-0.005,-0.485,-0.875,-0.483,-0.005,-0.875,-0.483,-0.005,-0.875,-0.483,-0.005,-0.875,-0.488,-0.004,0.873,-0.488,-0.004,0.873,-0.488,-0.004,0.873,0.486,0,0.874,0.486,0,0.874,0.486,0,0.874,-1,0,0,-1,0,0,-1,0,0,-0.289,0.697,-0.656,-0.289,0.697,-0.656,-0.289,0.697,-0.656,-0.752,0.191,-0.631
,-0.752,0.191,-0.631,-0.752,0.191,-0.631,-0.708,-0.293,-0.643,-0.708,-0.293,-0.643,-0.708,-0.293,-0.643,-0.293,-0.708,-0.643,-0.293,-0.708,-0.643,-0.293,-0.708,-0.643,-0.29,0.699,0.654,-0.29,0.699,0.654,-0.29,0.699,0.654,-0.745,0.207,0.634,-0.745,0.207,0.634,-0.745,0.207,0.634,-0.293,-0.708,0.643,-0.293,-0.708,0.643,-0.293,-0.708,0.643
,-0.708,-0.293,0.643,-0.708,-0.293,0.643,-0.708,-0.293,0.643,0.708,0.293,-0.643,0.708,0.293,-0.643,0.708,0.293,-0.643,0.293,0.708,-0.643,0.293,0.708,-0.643,0.293,0.708,-0.643,0.288,-0.696,-0.657,0.288,-0.696,-0.657,0.288,-0.696,-0.657,0.698,-0.289,-0.655,0.698,-0.289,-0.655,0.698,-0.289,-0.655,0.708,-0.293,0.643,0.708,-0.293,0.643
,0.708,-0.293,0.643,0.293,-0.708,0.643,0.293,-0.708,0.643,0.293,-0.708,0.643,0.293,0.708,0.643,0.293,0.708,0.643,0.293,0.708,0.643,0.708,0.293,0.643,0.708,0.293,0.643,0.708,0.293,0.643,-0.765,-0.005,-0.644,-0.765,-0.005,-0.644,-0.765,-0.005,-0.644,0.482,-0.002,-0.876,0.482,-0.002,-0.876,0.482,-0.002,-0.876,-0.383,0.924,0
,-0.383,0.924,0,-0.383,0.924,0,-0.95,0.312,0,-0.95,0.312,0,-0.95,0.312,0,-0.924,-0.383,0,-0.924,-0.383,0,-0.924,-0.383,0,-0.383,-0.924,0,-0.383,-0.924,0,-0.383,-0.924,0,-0.761,-0.004,0.649,-0.761,-0.004,0.649,-0.761,-0.004,0.649,0.383,-0.924,0,0.383,-0.924,0,0.383,-0.924,0
,0.924,-0.383,0,0.924,-0.383,0,0.924,-0.383,0,0.741,-0.002,-0.671,0.741,-0.002,-0.671,0.741,-0.002,-0.671,-0.001,0.741,0.671,-0.001,0.741,0.671,-0.001,0.741,0.671,0.924,0.383,0,0.924,0.383,0,0.924,0.383,0,0.383,0.924,0,0.383,0.924,0,0.383,0.924,0,-0.007,-0.729,-0.684,-0.007,-0.729,-0.684
,-0.007,-0.729,-0.684,-0.006,-0.741,0.671,-0.006,-0.741,0.671,-0.006,-0.741,0.671,0.741,0,0.671,0.741,0,0.671,0.741,0,0.671,0,0.732,-0.681,0,0.732,-0.681,0,0.732,-0.681,-0.002,0.486,0.874,-0.002,0.486,0.874,-0.002,0.486,0.874,0,1,0,1,0,0,-0.004,-1,0,-1,0,0
,-0.741,0,-0.671,-0.741,0,-0.671,-0.741,0,-0.671,-0.383,0.924,0,-0.383,0.924,0,-0.383,0.924,0,-0.95,0.312,0,-0.95,0.312,0,-0.95,0.312,0,-0.924,-0.383,0,-0.924,-0.383,0,-0.924,-0.383,0,-0.383,-0.924,0,-0.383,-0.924,0,-0.383,-0.924,0,-0.741,0,0.671,-0.741,0,0.671
,-0.741,0,0.671,0.383,-0.924,0,0.383,-0.924,0,0.383,-0.924,0,0.924,-0.383,0,0.924,-0.383,0,0.924,-0.383,0,0.732,0,-0.681,0.732,0,-0.681,0.732,0,-0.681,0,0.734,0.679,0,0.734,0.679,0,0.734,0.679,0.924,0.383,0,0.924,0.383,0,0.924,0.383,0,0.383,0.924,0
,0.383,0.924,0,0.383,0.924,0,-0.005,-0.741,-0.671,-0.005,-0.741,-0.671,-0.005,-0.741,-0.671,-0.006,-0.741,0.671,-0.006,-0.741,0.671,-0.006,-0.741,0.671,0.741,0,0.671,0.741,0,0.671,0.741,0,0.671,-0.002,0.742,-0.671,-0.002,0.742,-0.671,-0.002,0.742,-0.671]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50
,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101
,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,6,132,7,9,133,10,12,134,13,27,135,28,136,137,138,139,140,141,142,143,144
,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183]}
,{"name":"d20_collider","id":"d20_collider","billboardMode":0,"position":[0,0,0.9985],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false,"physicsImpostor":8,"physicsMass":0.2,"physicsFriction":0.5,"physicsRestitution":0
,"positions":[0.0943,0.0303,-0.1233,0.0942,-0.0306,-0.1233,0.0995,-0.0001,0.1227,0.0584,0.0796,-0.1233,0.0943,0.0303,-0.1233,0.0803,0.0577,0.1227,0.001,0.0995,-0.1242,0.0584,0.0796,-0.1233,0.0315,0.094,0.1234,-0.0793,0.0584,0.1243,-0.0994,-0.0001,0.1243,-0.0935,0.0306,-0.1247,-0.0295,0.0946,0.1244,-0.0793,0.0584,0.1243,-0.0572,0.0806,-0.1247,0.001,-0.0001,0.178,-0.0793,-0.0586,0.1243
,-0.0994,-0.0001,0.1243,0.001,-0.0001,0.178,-0.0994,-0.0001,0.1243,-0.0793,0.0584,0.1243,0.001,-0.0001,0.178,-0.0793,0.0584,0.1243,-0.0295,0.0946,0.1244,0.0995,-0.0001,0.1227,0.001,-0.0001,0.178,0.0803,0.0577,0.1227,0.0942,-0.0306,-0.1233,0.0586,-0.0799,-0.1233,0.0803,-0.0578,0.1227,0.0803,-0.0578,0.1227,0.001,-0.0001,0.178,0.0995,-0.0001,0.1227,-0.0296,-0.0948,0.1243
,0.001,-0.0001,0.178,0.031,-0.0936,0.1226,0.0803,0.0577,0.1227,0.001,-0.0001,0.178,0.0315,0.094,0.1234,0.001,-0.0001,0.178,-0.0295,0.0946,0.1244,0.0315,0.094,0.1234,-0.0295,0.0946,0.1244,0.001,0.0995,-0.1242,0.0315,0.094,0.1234,0.0584,0.0796,-0.1233,0.0803,0.0577,0.1227,0.0315,0.094,0.1234,0.0803,-0.0578,0.1227,0.0586,-0.0799,-0.1233,0.031,-0.0936,0.1226
,-0.0296,-0.0948,0.1243,0.0011,-0.0995,-0.124,-0.0572,-0.0807,-0.1247,-0.0572,0.0806,-0.1247,0.001,0.0995,-0.1242,-0.0295,0.0946,0.1244,0.031,-0.0936,0.1226,0.001,-0.0001,0.178,0.0803,-0.0578,0.1227,-0.0793,0.0584,0.1243,-0.0935,0.0306,-0.1247,-0.0572,0.0806,-0.1247,-0.0935,0.0306,-0.1247,-0.0994,-0.0001,0.1243,-0.0935,-0.0308,-0.1247,-0.0793,-0.0586,0.1243,-0.0572,-0.0807,-0.1247
,-0.0935,-0.0308,-0.1247,0.0011,-0.0995,-0.124,0.0012,-0.0001,-0.1774,-0.0572,-0.0807,-0.1247,0.0942,-0.0306,-0.1233,0.0012,-0.0001,-0.1774,0.0586,-0.0799,-0.1233,0.0012,-0.0001,-0.1774,0.0942,-0.0306,-0.1233,0.0943,0.0303,-0.1233,0.0943,0.0303,-0.1233,0.0584,0.0796,-0.1233,0.0012,-0.0001,-0.1774,0.0012,-0.0001,-0.1774,0.0584,0.0796,-0.1233,0.001,0.0995,-0.1242,0.0586,-0.0799,-0.1233
,0.0012,-0.0001,-0.1774,0.0011,-0.0995,-0.124,0.0995,-0.0001,0.1227,0.0942,-0.0306,-0.1233,0.0803,-0.0578,0.1227,0.031,-0.0936,0.1226,0.0011,-0.0995,-0.124,-0.0296,-0.0948,0.1243,-0.0296,-0.0948,0.1243,-0.0572,-0.0807,-0.1247,-0.0793,-0.0586,0.1243,-0.0994,-0.0001,0.1243,-0.0793,-0.0586,0.1243,-0.0935,-0.0308,-0.1247,0.0012,-0.0001,-0.1774,0.001,0.0995,-0.1242,-0.0572,0.0806,-0.1247
,0.0012,-0.0001,-0.1774,-0.0572,0.0806,-0.1247,-0.0935,0.0306,-0.1247,-0.0935,-0.0308,-0.1247,0.0012,-0.0001,-0.1774,-0.0935,0.0306,-0.1247,-0.0572,-0.0807,-0.1247,0.0012,-0.0001,-0.1774,-0.0935,-0.0308,-0.1247,0.001,-0.0001,0.178,-0.0296,-0.0948,0.1243,-0.0793,-0.0586,0.1243,0.0803,0.0577,0.1227,0.0943,0.0303,-0.1233,0.0995,-0.0001,0.1227,0.031,-0.0936,0.1226,0.0586,-0.0799,-0.1233
,0.0011,-0.0995,-0.124]
,"normals":[1,0,-0.021,1,0,-0.021,1,0,-0.021,0.809,0.587,-0.02,0.809,0.587,-0.02,0.809,0.587,-0.02,0.327,0.945,-0.019,0.327,0.945,-0.019,0.327,0.945,-0.019,-0.946,0.325,0.017,-0.946,0.325,0.017,-0.946,0.325,0.017,-0.587,0.81,0.02,-0.587,0.81,0.02,-0.587,0.81,0.02,-0.466,-0.16,0.87,-0.466,-0.16,0.87
,-0.466,-0.16,0.87,-0.466,0.16,0.87,-0.466,0.16,0.87,-0.466,0.16,0.87,-0.291,0.399,0.87,-0.291,0.399,0.87,-0.291,0.399,0.87,0.483,0.16,0.861,0.483,0.16,0.861,0.483,0.16,0.861,0.81,-0.586,-0.019,0.81,-0.586,-0.019,0.81,-0.586,-0.019,0.483,-0.16,0.861,0.483,-0.16,0.861,0.483,-0.16,0.861,0.033,-0.501,0.865
,0.033,-0.501,0.865,0.033,-0.501,0.865,0.309,0.4,0.863,0.309,0.4,0.863,0.309,0.4,0.863,0.019,0.497,0.867,0.019,0.497,0.867,0.019,0.497,0.867,0.009,1,0.021,0.009,1,0.021,0.009,1,0.021,0.597,0.802,0.018,0.597,0.802,0.018,0.597,0.802,0.018,0.587,-0.81,0.021,0.587,-0.81,0.021,0.587,-0.81,0.021
,-0.307,-0.952,-0.02,-0.307,-0.952,-0.02,-0.307,-0.952,-0.02,-0.308,0.951,-0.019,-0.308,0.951,-0.019,-0.308,0.951,-0.019,0.298,-0.414,0.86,0.298,-0.414,0.86,0.298,-0.414,0.86,-0.809,0.587,-0.02,-0.809,0.587,-0.02,-0.809,0.587,-0.02,-1,0,-0.024,-1,0,-0.024,-1,0,-0.024,-0.809,-0.588,-0.02,-0.809,-0.588,-0.02
,-0.809,-0.588,-0.02,-0.141,-0.468,-0.872,-0.141,-0.468,-0.872,-0.141,-0.468,-0.872,0.407,-0.294,-0.865,0.407,-0.294,-0.865,0.407,-0.294,-0.865,0.503,0,-0.864,0.503,0,-0.864,0.503,0,-0.864,0.407,0.295,-0.864,0.407,0.295,-0.864,0.407,0.295,-0.864,0.175,0.465,-0.868,0.175,0.465,-0.868,0.175,0.465,-0.868,0.171,-0.467,-0.868
,0.171,-0.467,-0.868,0.171,-0.467,-0.868,0.949,-0.315,0.019,0.949,-0.315,0.019,0.949,-0.315,0.019,0.02,-1,0.021,0.02,-1,0.021,0.02,-1,0.021,-0.588,-0.808,0.02,-0.588,-0.808,0.02,-0.588,-0.808,0.02,-0.946,-0.324,0.017,-0.946,-0.324,0.017,-0.946,-0.324,0.017,-0.143,0.466,-0.873,-0.143,0.466,-0.873,-0.143,0.466,-0.873
,-0.394,0.285,-0.874,-0.394,0.285,-0.874,-0.394,0.285,-0.874,-0.487,0,-0.874,-0.487,0,-0.874,-0.487,0,-0.874,-0.394,-0.286,-0.873,-0.394,-0.286,-0.873,-0.394,-0.286,-0.873,-0.29,-0.399,0.87,-0.29,-0.399,0.87,-0.29,-0.399,0.87,0.949,0.315,0.019,0.949,0.315,0.019,0.949,0.315,0.019,0.323,-0.946,-0.017,0.323,-0.946,-0.017
,0.323,-0.946,-0.017]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50
,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101
,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119]
}
,{"name":"d12_collider","id":"d12_collider","billboardMode":0,"position":[0,0,0.6432],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false,"physicsImpostor":8,"physicsMass":0.12,"physicsFriction":0.5,"physicsRestitution":0
,"positions":[-0.0326,0.0607,0.0933,-0.0603,0.0354,-0.0937,0.0024,0.0696,-0.0924,0.0613,-0.034,-0.0912,0.0702,0.0002,0.0912,0.0613,0.0345,-0.0912,0.0364,-0.0592,0.0917,0.0613,-0.034,-0.0912,0.0023,-0.0696,-0.0929,-0.0326,0.0607,0.0933,0,0,0.1265,-0.0695,0.0002,0.0937,-0.0603,-0.035,-0.0937,0.0023,-0.0696,-0.0929,0,0,-0.1259,0.0613,0.0345,-0.0912,0.0024,0.0696,-0.0924
,0,0,-0.1259,0.0613,-0.034,-0.0912,0,0,-0.1259,0.0023,-0.0696,-0.0929,-0.0603,0.0354,-0.0937,0,0,-0.1259,0.0024,0.0696,-0.0924,-0.0603,0.0354,-0.0937,-0.0603,-0.035,-0.0937,0,0,-0.1259,-0.0695,0.0002,0.0937,0,0,0.1265,-0.0329,-0.0605,0.0937,0,0,0.1265,0.0361,0.0593,0.0912,0.0702,0.0002,0.0912,-0.0695,0.0002,0.0937
,-0.0603,0.0354,-0.0937,-0.0326,0.0607,0.0933,-0.0326,0.0607,0.0933,0.0024,0.0696,-0.0924,0.0361,0.0593,0.0912,0.0364,-0.0592,0.0917,0,0,0.1265,0.0702,0.0002,0.0912,0,0,0.1265,0.0364,-0.0592,0.0917,-0.0329,-0.0605,0.0937,-0.0603,-0.035,-0.0937,-0.0695,0.0002,0.0937,-0.0329,-0.0605,0.0937,0.0361,0.0593,0.0912,0,0,0.1265,-0.0326,0.0607,0.0933
,0.0613,-0.034,-0.0912,0.0613,0.0345,-0.0912,0,0,-0.1259,0.0361,0.0593,0.0912,0.0024,0.0696,-0.0924,0.0613,0.0345,-0.0912,-0.0695,0.0002,0.0937,-0.0603,-0.035,-0.0937,-0.0603,0.0354,-0.0937,-0.0329,-0.0605,0.0937,0.0364,-0.0592,0.0917,0.0023,-0.0696,-0.0929,0.0613,0.0345,-0.0912,0.0702,0.0002,0.0912,0.0361,0.0593,0.0912,0.0023,-0.0696,-0.0929,-0.0603,-0.035,-0.0937
,-0.0329,-0.0605,0.0937,0.0613,-0.034,-0.0912,0.0364,-0.0592,0.0917,0.0702,0.0002,0.0912]
,"normals":[-0.478,0.877,-0.048,-0.478,0.877,-0.048,-0.478,0.877,-0.048,0.999,0,-0.049,0.999,0,-0.049,0.999,0,-0.049,0.517,-0.855,-0.047,0.517,-0.855,-0.047,0.517,-0.855,-0.047,-0.413,0.257,0.874,-0.413,0.257,0.874,-0.413,0.257,0.874,-0.222,-0.424,-0.878,-0.222,-0.424,-0.878,-0.222,-0.424,-0.878,0.263,0.411,-0.873,0.263,0.411,-0.873
,0.263,0.411,-0.873,0.27,-0.406,-0.873,0.27,-0.406,-0.873,0.27,-0.406,-0.873,-0.216,0.43,-0.877,-0.216,0.43,-0.877,-0.216,0.43,-0.877,-0.471,0,-0.882,-0.471,0,-0.882,-0.471,0,-0.882,-0.415,-0.25,0.875,-0.415,-0.25,0.875,-0.415,-0.25,0.875,0.435,0.251,0.865,0.435,0.251,0.865,0.435,0.251,0.865,-0.852,0.52,0.056
,-0.852,0.52,0.056,-0.852,0.52,0.056,0.022,0.998,0.052,0.022,0.998,0.052,0.022,0.998,0.052,0.437,-0.241,0.866,0.437,-0.241,0.866,0.437,-0.241,0.866,0.034,-0.491,0.87,0.034,-0.491,0.87,0.034,-0.491,0.87,-0.855,-0.516,0.055,-0.855,-0.516,0.055,-0.855,-0.516,0.055,0.037,0.495,0.868,0.037,0.495,0.868,0.037,0.495,0.868
,0.493,0,-0.87,0.493,0,-0.87,0.493,0,-0.87,0.513,0.857,-0.046,0.513,0.857,-0.046,0.513,0.857,-0.046,-0.999,0,-0.049,-0.999,0,-0.049,-0.999,0,-0.049,0.021,-0.998,0.052,0.021,-0.998,0.052,0.021,-0.998,0.052,0.865,0.499,0.051,0.865,0.499,0.051,0.865,0.499,0.051,-0.482,-0.875,-0.048,-0.482,-0.875,-0.048
,-0.482,-0.875,-0.048,0.868,-0.494,0.05,0.868,-0.494,0.05,0.868,-0.494,0.05]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50
,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71]
}
,{"name":"d10_collider","id":"d10_collider","billboardMode":0,"position":[0,0,0.2585],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false,"physicsImpostor":8,"physicsMass":0.12,"physicsFriction":0.5,"physicsRestitution":0
,"positions":[0.0019,0.077,-0.0935,0.0462,0.062,0.0906,-0.0439,0.0638,0.0932,-0.0727,-0.0242,0.0934,-0.0718,0.0242,-0.0948,-0.0439,0.0638,0.0932,0.0731,0.0235,-0.0918,0,0,-0.127,0.0452,-0.0614,-0.092,0.0018,-0.0778,0.0922,-0.0727,-0.0242,0.0934,0,0,0.1273,-0.0718,0.0242,-0.0948,0,0,-0.127,0.0019,0.077,-0.0935,0.0452,-0.0614,-0.092,-0.0431,-0.0634,-0.0949
,0.0018,-0.0778,0.0922,-0.0727,-0.0242,0.0934,-0.0439,0.0638,0.0932,0,0,0.1273,0.0739,-0.0235,0.0906,0.0731,0.0235,-0.0918,0.0452,-0.0614,-0.092,-0.0718,0.0242,-0.0948,-0.0431,-0.0634,-0.0949,0,0,-0.127,-0.0439,0.0638,0.0932,0.0462,0.062,0.0906,0,0,0.1273,0.0019,0.077,-0.0935,0.0731,0.0235,-0.0918,0.0462,0.062,0.0906,-0.0727,-0.0242,0.0934
,0.0018,-0.0778,0.0922,-0.0431,-0.0634,-0.0949,0.0462,0.062,0.0906,0.0739,-0.0235,0.0906,0,0,0.1273,-0.0431,-0.0634,-0.0949,-0.0718,0.0242,-0.0948,-0.0727,-0.0242,0.0934,0.0739,-0.0235,0.0906,0.0018,-0.0778,0.0922,0,0,0.1273,0.0739,-0.0235,0.0906,0.0452,-0.0614,-0.092,0.0018,-0.0778,0.0922,-0.0718,0.0242,-0.0948,0.0019,0.077,-0.0935,-0.0439,0.0638,0.0932
,0.0739,-0.0235,0.0906,0.0462,0.062,0.0906,0.0731,0.0235,-0.0918,0.0452,-0.0614,-0.092,0,0,-0.127,-0.0431,-0.0634,-0.0949,0.0731,0.0235,-0.0918,0.0019,0.077,-0.0935,0,0,-0.127]
,"normals":[0.023,0.997,0.076,0.023,0.997,0.076,0.023,0.997,0.076,-0.948,0.309,0.075,-0.948,0.309,0.075,-0.948,0.309,0.075,0.468,-0.152,-0.871,0.468,-0.152,-0.871,0.468,-0.152,-0.871,-0.274,-0.4,0.874,-0.274,-0.4,0.874,-0.274,-0.4,0.874,-0.264,0.391,-0.882,-0.264,0.391,-0.882,-0.264,0.391,-0.882,0.025,-0.996,-0.083,0.025,-0.996,-0.083
,0.025,-0.996,-0.083,-0.459,0.151,0.876,-0.459,0.151,0.876,-0.459,0.151,0.876,0.947,-0.311,-0.084,0.947,-0.311,-0.084,0.947,-0.311,-0.084,-0.445,-0.146,-0.884,-0.445,-0.146,-0.884,-0.445,-0.146,-0.884,0.035,0.489,0.871,0.035,0.489,0.871,0.035,0.489,0.871,0.6,0.796,-0.079,0.6,0.796,-0.079,0.6,0.796,-0.079,-0.581,-0.81,0.077
,-0.581,-0.81,0.077,-0.581,-0.81,0.077,0.478,0.155,0.865,0.478,0.155,0.865,0.478,0.155,0.865,-0.947,-0.311,-0.084,-0.947,-0.311,-0.084,-0.947,-0.311,-0.084,0.309,-0.385,0.87,0.309,-0.385,0.87,0.309,-0.385,0.87,0.601,-0.796,0.071,0.601,-0.796,0.071,0.601,-0.796,0.071,-0.579,0.811,-0.085,-0.579,0.811,-0.085,-0.579,0.811,-0.085
,0.948,0.308,0.075,0.948,0.308,0.075,0.948,0.308,0.075,0.04,-0.473,-0.88,0.04,-0.473,-0.88,0.04,-0.473,-0.88,0.301,0.375,-0.877,0.301,0.375,-0.877,0.301,0.375,-0.877]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50
,51,52,53,54,55,56,57,58,59]
}
],
"colliderFaceMap": {
"d4": {
"1": 1,
"4": 1,
"5": 1,
"13": 1,
"16": 1,
"20": 1,
"23": 1,
"31": 1,
"33": 1,
"39": 1,
"40": 1,
"46": 1,
"52": 1,
"54": 1,
"60": 1,
"61": 1,
"3": 2,
"8": 2,
"18": 2,
"22": 2,
"21": 2,
"25": 2,
"27": 2,
"35": 2,
"34": 2,
"37": 2,
"41": 2,
"45": 2,
"55": 2,
"56": 2,
"58": 2,
"62": 2,
"0": 3,
"2": 3,
"10": 3,
"14": 3,
"19": 3,
"24": 3,
"28": 3,
"36": 3,
"38": 3,
"42": 3,
"43": 3,
"44": 3,
"49": 3,
"57": 3,
"59": 3,
"63": 3,
"6": 4,
"7": 4,
"9": 4,
"11": 4,
"12": 4,
"15": 4,
"17": 4,
"26": 4,
"29": 4,
"30": 4,
"32": 4,
"47": 4,
"48": 4,
"50": 4,
"51": 4,
"53": 4
},
"d6": {
"6": 1,
"8": 1,
"2": 2,
"5": 2,
"0": 3,
"1": 3,
"3": 4,
"7": 4,
"10": 5,
"11": 5,
"4": 6,
"9": 6
},
"d8": {
"11": 1,
"14": 1,
"5": 2,
"7": 2,
"8": 3,
"12": 3,
"2": 4,
"6": 4,
"10": 5,
"13": 5,
"3": 6,
"9": 6,
"0": 7,
"4": 7,
"1": 8,
"15": 8
},
"d10": {
"0": 1,
"9": 1,
"8": 2,
"13": 2,
"14": 3,
"15": 3,
"1": 4,
"6": 4,
"2": 5,
"7": 5,
"3": 6,
"11": 6,
"4": 7,
"16": 7,
"12": 8,
"17": 8,
"10": 9,
"19": 9,
"5": 0,
"18": 0
},
"d12": {
"4": 1,
"22": 1,
"10": 2,
"21": 2,
"11": 3,
"3": 3,
"13": 4,
"23": 4,
"12": 5,
"16": 5,
"1": 6,
"17": 6,
"8": 7,
"19": 7,
"14": 8,
"20": 9,
"0": 9,
"2": 10,
"6": 10,
"9": 11,
"15": 11,
"5": 12,
"18": 12
},
"d20": {
"12": 1,
"15": 1,
"28": 2,
"39": 2,
"8": 3,
"38": 3,
"9": 4,
"24": 4,
"10": 5,
"29": 5,
"0": 6,
"25": 6,
"16": 7,
"19": 7,
"1": 8,
"26": 8,
"11": 9,
"30": 9,
"2": 10,
"27": 10,
"31": 11,
"37": 11,
"18": 12,
"33": 12,
"32": 13,
"5": 13,
"20": 14,
"34": 14,
"3": 15,
"6": 15,
"21": 16,
"35": 16,
"4": 17,
"7": 17,
"22": 18,
"36": 18,
"13": 19,
"14": 19,
"17": 20,
"23": 20
}
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 106 KiB

View File

@ -1,33 +0,0 @@
{
"name": "@3d-dice/theme-gemstone-marble",
"private": false,
"author": {
"name": "Frank Ali"
},
"description": "Gemstone dice with a multicolored marble skin",
"version": "0.2.0",
"keywords": [
"3D",
"dice",
"skins",
"theme",
"javascript",
"rpg",
"dnd",
"d&d",
"tabletop"
],
"license": "MIT",
"homepage": "https://fantasticdice.games",
"repository": {
"type": "git",
"url": "https://github.com/3d-dice/dice-themes",
"directory": "themes/gemstoneMarble"
},
"bugs": {
"url": "https://github.com/3d-dice/dice-themes/issues"
},
"files": [
"*"
]
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 58 KiB

View File

@ -1,18 +0,0 @@
{
"name": "Gemstone Rainbow Marble",
"systemName": "gemstoneMarble",
"author": "Frank Ali",
"version": 0.2,
"meshName": "gemstone",
"meshFile": "gemstone.json",
"material": {
"type": "standard",
"diffuseTexture": "diffuse.jpg",
"bumpTexture": "normal.png",
"specularTexture": "roughness.jpg",
"diffuseLevel": 1.3,
"bumpLevel": 0.5
},
"d4FaceDown": false,
"diceAvailable": ["d4","d6","d8","d10","d12","d20","d100"]
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 225 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 218 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 MiB

View File

@ -1,33 +0,0 @@
{
"name": "@3d-dice/theme-rock",
"private": false,
"author": {
"name": "Frank Ali"
},
"description": "Rock textured theme with configurable colors",
"version": "0.2.0",
"keywords": [
"3D",
"dice",
"skins",
"theme",
"javascript",
"rpg",
"dnd",
"d&d",
"tabletop"
],
"license": "MIT",
"homepage": "https://fantasticdice.games",
"repository": {
"type": "git",
"url": "https://github.com/3d-dice/dice-themes",
"directory": "themes/rock"
},
"bugs": {
"url": "https://github.com/3d-dice/dice-themes/issues"
},
"files": [
"*"
]
}

View File

@ -1,707 +0,0 @@
{"producer":{"name":"Blender","version":"2.93.4","exporter_version":"2.93.5","file":"dice_final.babylon"},
"autoClear":true,"clearColor":[0.0509,0.0509,0.0509],"gravity":[0,-9.81,0],"physicsEnabled":true,
"meshes":[
{"name":"d4_collider","id":"d4_collider","billboardMode":0,"position":[0.6,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false,"physicsImpostor":8,"physicsMass":0.07,"physicsFriction":0.8,"physicsRestitution":0
,"positions":[-0.0542,-0.0383,-0.0939,0,0.115,0,-0.0542,-0.0383,0.0939,-0.0542,-0.0383,-0.0939,0.1084,-0.0383,0,0,0.115,0,-0.0542,-0.0383,-0.0939,-0.0542,-0.0383,0.0939,0.1084,-0.0383,0,-0.0542,-0.0383,0.0939,0,0.115,0,0.1084,-0.0383,0]
,"normals":[-0.943,0.333,0,-0.943,0.333,0,-0.943,0.333,0,0.471,0.333,-0.816,0.471,0.333,-0.816,0.471,0.333,-0.816,0,-1,0,0,-1,0,0,-1,0,0.471,0.333,0.816,0.471,0.333,0.816,0.471,0.333,0.816]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11]
}
,{"name":"d6_collider","id":"d6_collider","billboardMode":0,"position":[0.4,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false,"physicsImpostor":8,"physicsMass":0.085,"physicsFriction":0.8,"physicsRestitution":0
,"positions":[-0.0664,-0.0664,0.0664,0.0664,-0.0664,-0.0664,-0.0664,-0.0664,-0.0664,0.0664,-0.0664,-0.0664,-0.0664,0.0664,-0.0664,-0.0664,-0.0664,-0.0664,-0.0664,0.0664,-0.0664,-0.0664,-0.0664,0.0664,-0.0664,-0.0664,-0.0664,0.0664,0.0664,-0.0664,0.0664,-0.0664,0.0664,0.0664,0.0664,0.0664,0.0664,-0.0664,0.0664,-0.0664,0.0664,0.0664,0.0664,0.0664,0.0664,-0.0664,0.0664,0.0664,0.0664,0.0664,-0.0664
,0.0664,0.0664,0.0664,0.0664,-0.0664,0.0664,0.0664,-0.0664,-0.0664,0.0664,0.0664,-0.0664,-0.0664,0.0664,-0.0664,-0.0664,0.0664,0.0664,-0.0664,-0.0664,0.0664,0.0664,-0.0664,-0.0664,0.0664,-0.0664,0.0664,-0.0664,-0.0664,0.0664,-0.0664,0.0664,0.0664,-0.0664,0.0664,-0.0664,0.0664,0.0664,-0.0664]
,"normals":[0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0
,0,1,0,0,-1,0,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,0,18,1,19,20,4,21,22,23,9,24,10,25,26,13,27,28,29]
}
,{"name":"d8_collider","id":"d8_collider","billboardMode":0,"position":[0.2,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false,"physicsImpostor":8,"physicsMass":0.082,"physicsFriction":0.8,"physicsRestitution":0
,"positions":[0,0.1,0,0.1,0,0,0,0,0.1,0,0.1,0,0,0,0.1,-0.1,0,0,0,0.1,0,-0.1,0,0,0,0,-0.1,0,0.1,0,0,0,-0.1,0.1,0,0,0,-0.1,0,0,0,0.1,0.1,0,0,0,-0.1,0,-0.1,0,0
,0,0,0.1,0,-0.1,0,0,0,-0.1,-0.1,0,0,0,-0.1,0,0.1,0,0,0,0,-0.1]
,"normals":[0.577,0.577,0.577,0.577,0.577,0.577,0.577,0.577,0.577,-0.577,0.577,0.577,-0.577,0.577,0.577,-0.577,0.577,0.577,-0.577,0.577,-0.577,-0.577,0.577,-0.577,-0.577,0.577,-0.577,0.577,0.577,-0.577,0.577,0.577,-0.577,0.577,0.577,-0.577,0.577,-0.577,0.577,0.577,-0.577,0.577,0.577,-0.577,0.577,-0.577,-0.577,0.577,-0.577,-0.577,0.577
,-0.577,-0.577,0.577,-0.577,-0.577,-0.577,-0.577,-0.577,-0.577,-0.577,-0.577,-0.577,0.577,-0.577,-0.577,0.577,-0.577,-0.577,0.577,-0.577,-0.577]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23]
}
,{"name":"d10_collider","id":"d10_collider","billboardMode":0,"position":[0,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false,"physicsImpostor":8,"physicsMass":0.082,"physicsFriction":0.8,"physicsRestitution":0
,"positions":[0,0.0106,0.0939,0.0893,0.0106,0.029,0.0552,-0.0106,0.076,0.0893,0.0106,0.029,0.0552,0.0106,-0.076,0.0893,-0.0106,-0.029,0.0552,0.0106,-0.076,-0.0552,0.0106,-0.076,0,-0.0106,-0.0939,-0.0552,0.0106,-0.076,-0.0893,0.0106,0.029,-0.0893,-0.0106,-0.029,-0.0893,0.0106,0.029,0,0.0106,0.0939,-0.0552,-0.0106,0.076,0.0893,-0.0106,-0.029,0,-0.0106,-0.0939
,0,-0.1,0,0.0893,-0.0106,-0.029,0.0552,-0.0106,0.076,0.0893,0.0106,0.029,0.0552,-0.0106,0.076,-0.0552,-0.0106,0.076,0,0.0106,0.0939,-0.0552,-0.0106,0.076,-0.0893,-0.0106,-0.029,-0.0893,0.0106,0.029,-0.0893,-0.0106,-0.029,0,-0.0106,-0.0939,-0.0552,0.0106,-0.076,0,0.1,0,0.0893,0.0106,0.029,0,0.1,0,0.0552,0.0106,-0.076
,0,0.1,0,-0.0552,0.0106,-0.076,0,0.1,0,-0.0893,0.0106,0.029,0,0.1,0,0,0.0106,0.0939,0.0893,-0.0106,-0.029,0.0552,0.0106,-0.076,0,-0.0106,-0.0939,0.0893,-0.0106,-0.029,0,-0.1,0,0.0552,-0.0106,0.076,0.0552,-0.0106,0.076,0,-0.1,0,-0.0552,-0.0106,0.076,-0.0552,-0.0106,0.076,0,-0.1,0
,-0.0893,-0.0106,-0.029,-0.0893,-0.0106,-0.029,0,-0.1,0,0,-0.0106,-0.0939]
,"normals":[0.448,0.647,0.617,0.448,0.647,0.617,0.448,0.647,0.617,0.725,0.647,-0.236,0.725,0.647,-0.236,0.725,0.647,-0.236,0,0.647,-0.762,0,0.647,-0.762,0,0.647,-0.762,-0.725,0.647,-0.236,-0.725,0.647,-0.236,-0.725,0.647,-0.236,-0.448,0.647,0.617,-0.448,0.647,0.617,-0.448,0.647,0.617,0.448,-0.647,-0.617,0.448,-0.647,-0.617
,0.448,-0.647,-0.617,0.725,-0.647,0.236,0.725,-0.647,0.236,0.725,-0.647,0.236,0,-0.647,0.762,0,-0.647,0.762,0,-0.647,0.762,-0.725,-0.647,0.236,-0.725,-0.647,0.236,-0.725,-0.647,0.236,-0.448,-0.647,-0.617,-0.448,-0.647,-0.617,-0.448,-0.647,-0.617,0.448,0.647,0.617,0.725,0.647,-0.236,0.725,0.647,-0.236,0,0.647,-0.762
,0,0.647,-0.762,-0.725,0.647,-0.236,-0.725,0.647,-0.236,-0.448,0.647,0.617,-0.448,0.647,0.617,-0.448,0.647,0.617,0.448,-0.647,-0.617,0.448,-0.647,-0.617,0.448,-0.647,-0.617,0.725,-0.647,0.236,0.725,-0.647,0.236,0.725,-0.647,0.236,0,-0.647,0.762,0,-0.647,0.762,0,-0.647,0.762,-0.725,-0.647,0.236,-0.725,-0.647,0.236
,-0.725,-0.647,0.236,-0.448,-0.647,-0.617,-0.448,-0.647,-0.617,-0.448,-0.647,-0.617]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,0,30,1,31,32,4,33,34,7,35,36,10,37,38,39,40,41,42,43,44,45
,46,47,48,49,50,51,52,53,54]
}
,{"name":"d12_collider","id":"d12_collider","billboardMode":0,"position":[-0.2,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false,"physicsImpostor":8,"physicsMass":0.09,"physicsFriction":0.8,"physicsRestitution":0
,"positions":[-0.0577,-0.0577,0.0577,0,-0.0934,-0.0357,-0.0577,-0.0577,-0.0577,0.0357,0,-0.0934,0,0.0934,-0.0357,-0.0577,0.0577,-0.0577,0,-0.0934,0.0357,0.0934,-0.0357,0,0.0577,-0.0577,-0.0577,-0.0934,0.0357,0,0,0.0934,-0.0357,0,0.0934,0.0357,0.0357,0,-0.0934,-0.0357,0,-0.0934,-0.0577,-0.0577,-0.0577,-0.0577,0.0577,-0.0577,-0.0934,-0.0357,0
,-0.0577,-0.0577,-0.0577,-0.0357,0,0.0934,0,0.0934,0.0357,0.0577,0.0577,0.0577,-0.0934,-0.0357,0,-0.0577,0.0577,0.0577,-0.0357,0,0.0934,0,0.0934,-0.0357,0.0934,0.0357,0,0.0577,0.0577,0.0577,0.0357,0,-0.0934,0.0577,-0.0577,-0.0577,0.0934,-0.0357,0,0.0577,-0.0577,0.0577,0.0357,0,0.0934,0.0577,0.0577,0.0577,0,-0.0934,0.0357
,-0.0357,0,0.0934,0.0357,0,0.0934,-0.0934,-0.0357,0,0,-0.0934,0.0357,-0.0357,0,-0.0934,0.0577,0.0577,-0.0577,0,-0.0934,-0.0357,0.0577,-0.0577,0.0577,-0.0577,0.0577,0.0577,-0.0577,0.0577,-0.0577,0,0.0934,-0.0357,-0.0577,-0.0577,-0.0577,0,-0.0934,-0.0357,0.0577,-0.0577,-0.0577,0.0577,-0.0577,-0.0577,0.0357,0,-0.0934,-0.0577,-0.0577,-0.0577
,-0.0577,-0.0577,-0.0577,-0.0357,0,-0.0934,-0.0577,0.0577,-0.0577,-0.0577,0.0577,-0.0577,-0.0934,0.0357,0,0.0357,0,0.0934,-0.0577,0.0577,0.0577,0,0.0934,0.0357,-0.0357,0,0.0934,-0.0577,-0.0577,0.0577,-0.0934,-0.0357,0,-0.0934,-0.0357,0,-0.0934,0.0357,0,0.0577,0.0577,0.0577,0,0.0934,0.0357,0,0.0934,-0.0357,0,0.0934,-0.0357
,0.0577,0.0577,-0.0577,0.0934,0.0357,0,0.0577,0.0577,-0.0577,0.0934,-0.0357,0,0.0577,0.0577,-0.0577,0.0357,0,-0.0934,0.0934,-0.0357,0,0.0577,0.0577,0.0577,0.0934,0.0357,0,0.0934,-0.0357,0,0.0934,-0.0357,0,0.0577,0.0577,0.0577,0.0357,0,0.0934,0.0577,-0.0577,0.0577,0,-0.0934,0.0357,0,-0.0934,0.0357,-0.0577,-0.0577,0.0577
,-0.0357,0,0.0934]
,"normals":[-0.526,-0.851,0,-0.526,-0.851,0,-0.526,-0.851,0,0,0.526,-0.851,0,0.526,-0.851,0,0.526,-0.851,0.526,-0.851,0,0.526,-0.851,0,0.526,-0.851,0,-0.526,0.851,0,-0.526,0.851,0,-0.526,0.851,0,0,-0.526,-0.851,0,-0.526,-0.851,0,-0.526,-0.851,-0.851,0,-0.526,-0.851,0,-0.526
,-0.851,0,-0.526,0,0.526,0.851,0,0.526,0.851,0,0.526,0.851,-0.851,0,0.526,-0.851,0,0.526,-0.851,0,0.526,0.526,0.851,0,0.526,0.851,0,0.526,0.851,0,0.851,0,-0.526,0.851,0,-0.526,0.851,0,-0.526,0.851,0,0.526,0.851,0,0.526,0.851,0,0.526,0,-0.526,0.851
,0,-0.526,0.851,0,-0.526,0.851,-0.526,-0.851,0,-0.526,-0.851,0,0,0.526,-0.851,0,0.526,-0.851,0.526,-0.851,0,0.526,-0.851,0,-0.526,0.851,0,-0.526,0.851,0,-0.526,0.851,0,0,-0.526,-0.851,0,-0.526,-0.851,0,-0.526,-0.851,0,-0.526,-0.851,0,-0.526,-0.851,0,-0.526,-0.851
,-0.851,0,-0.526,-0.851,0,-0.526,-0.851,0,-0.526,-0.851,0,-0.526,-0.851,0,-0.526,0,0.526,0.851,0,0.526,0.851,0,0.526,0.851,-0.851,0,0.526,-0.851,0,0.526,-0.851,0,0.526,-0.851,0,0.526,-0.851,0,0.526,0.526,0.851,0,0.526,0.851,0,0.526,0.851,0,0.526,0.851,0
,0.526,0.851,0,0.851,0,-0.526,0.851,0,-0.526,0.851,0,-0.526,0.851,0,-0.526,0.851,0,-0.526,0.851,0,-0.526,0.851,0,0.526,0.851,0,0.526,0.851,0,0.526,0.851,0,0.526,0.851,0,0.526,0,-0.526,0.851,0,-0.526,0.851,0,-0.526,0.851,0,-0.526,0.851,0,-0.526,0.851
,0,-0.526,0.851]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,2,36,0,0,37,1,5,38,3,3,39,4,8,40,6
,6,41,7,11,42,9,9,43,44,45,46,47,48,49,50,51,52,53,54,55,16,20,56,18,18,57,58,59,60,61,62,63,22,64,65,66,67,68,25,69,70,71,72,73,74,75,76,77,78,30,79
,80,81,82,83,84,85]
}
,{"name":"d20_collider","id":"d20_collider","billboardMode":0,"position":[-0.4,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1.1109,1.1109,1.1109],"isVisible":true,"isEnabled":true,"pickable":false,"physicsImpostor":8,"physicsMass":0.1,"physicsFriction":0.8,"physicsRestitution":0
,"positions":[0.0851,0,0.0526,0,0.0526,0.0851,0.0526,0.0851,0,0.0526,-0.0851,0,0,-0.0526,0.0851,0.0851,0,-0.0526,0,0.0526,-0.0851,0,-0.0526,-0.0851,-0.0851,0,0.0526,-0.0526,0.0851,0,-0.0526,-0.0851,0,-0.0851,0,-0.0526]
,"normals":[0.851,0,0.526,0,0.526,0.851,0.526,0.851,0,0.526,-0.851,0,0,-0.526,0.851,0.851,0,-0.526,0,0.526,-0.851,0,-0.526,-0.851,-0.851,0,0.526,-0.526,0.851,0,-0.526,-0.851,0,-0.851,0,-0.526]
,"indices":[0,1,2,0,3,4,5,2,6,5,7,3,8,9,1,8,4,10,11,6,9,11,10,7,0,4,1,8,1,4,5,6,7,11,7,6,2,5,0,3,0,5,9,8,11,10,11,8,1,9,2
,6,2,9,4,3,10,7,10,3]
}
,{"name":"d100_collider","id":"d100_collider","billboardMode":0,"position":[-0.6,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false,"physicsImpostor":8,"physicsMass":0.082,"physicsFriction":0.8,"physicsRestitution":0
,"positions":[0,0.0106,0.0939,0.0893,0.0106,0.029,0.0552,-0.0106,0.076,0.0893,0.0106,0.029,0.0552,0.0106,-0.076,0.0893,-0.0106,-0.029,0.0552,0.0106,-0.076,-0.0552,0.0106,-0.076,0,-0.0106,-0.0939,-0.0552,0.0106,-0.076,-0.0893,0.0106,0.029,-0.0893,-0.0106,-0.029,-0.0893,0.0106,0.029,0,0.0106,0.0939,-0.0552,-0.0106,0.076,0.0893,-0.0106,-0.029,0,-0.0106,-0.0939
,0,-0.1,0,0.0893,-0.0106,-0.029,0.0552,-0.0106,0.076,0.0893,0.0106,0.029,0.0552,-0.0106,0.076,-0.0552,-0.0106,0.076,0,0.0106,0.0939,-0.0552,-0.0106,0.076,-0.0893,-0.0106,-0.029,-0.0893,0.0106,0.029,-0.0893,-0.0106,-0.029,0,-0.0106,-0.0939,-0.0552,0.0106,-0.076,0,0.1,0,0.0893,0.0106,0.029,0,0.1,0,0.0552,0.0106,-0.076
,0,0.1,0,-0.0552,0.0106,-0.076,0,0.1,0,-0.0893,0.0106,0.029,0,0.1,0,0,0.0106,0.0939,0.0893,-0.0106,-0.029,0.0552,0.0106,-0.076,0,-0.0106,-0.0939,0.0893,-0.0106,-0.029,0,-0.1,0,0.0552,-0.0106,0.076,0.0552,-0.0106,0.076,0,-0.1,0,-0.0552,-0.0106,0.076,-0.0552,-0.0106,0.076,0,-0.1,0
,-0.0893,-0.0106,-0.029,-0.0893,-0.0106,-0.029,0,-0.1,0,0,-0.0106,-0.0939]
,"normals":[0.448,0.647,0.617,0.448,0.647,0.617,0.448,0.647,0.617,0.725,0.647,-0.236,0.725,0.647,-0.236,0.725,0.647,-0.236,0,0.647,-0.762,0,0.647,-0.762,0,0.647,-0.762,-0.725,0.647,-0.236,-0.725,0.647,-0.236,-0.725,0.647,-0.236,-0.448,0.647,0.617,-0.448,0.647,0.617,-0.448,0.647,0.617,0.448,-0.647,-0.617,0.448,-0.647,-0.617
,0.448,-0.647,-0.617,0.725,-0.647,0.236,0.725,-0.647,0.236,0.725,-0.647,0.236,0,-0.647,0.762,0,-0.647,0.762,0,-0.647,0.762,-0.725,-0.647,0.236,-0.725,-0.647,0.236,-0.725,-0.647,0.236,-0.448,-0.647,-0.617,-0.448,-0.647,-0.617,-0.448,-0.647,-0.617,0.448,0.647,0.617,0.725,0.647,-0.236,0.725,0.647,-0.236,0,0.647,-0.762
,0,0.647,-0.762,-0.725,0.647,-0.236,-0.725,0.647,-0.236,-0.448,0.647,0.617,-0.448,0.647,0.617,-0.448,0.647,0.617,0.448,-0.647,-0.617,0.448,-0.647,-0.617,0.448,-0.647,-0.617,0.725,-0.647,0.236,0.725,-0.647,0.236,0.725,-0.647,0.236,0,-0.647,0.762,0,-0.647,0.762,0,-0.647,0.762,-0.725,-0.647,0.236,-0.725,-0.647,0.236
,-0.725,-0.647,0.236,-0.448,-0.647,-0.617,-0.448,-0.647,-0.617,-0.448,-0.647,-0.617]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,0,30,1,31,32,4,33,34,7,35,36,10,37,38,39,40,41,42,43,44,45
,46,47,48,49,50,51,52,53,54]
}
,{"name":"d4","id":"d4","billboardMode":0,"position":[0.6,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false
,"positions":[-0.0053,0.0999,0,-0.0284,0.0346,0.04,-0.0284,0.0346,-0.04,0.0489,0.0346,0.0046,0.0951,-0.0308,0.0046,0.0258,-0.0308,0.0446,0.0027,0.0999,0.0046,-0.0204,0.0346,0.0446,0.0489,0.0346,-0.0046,0.0258,-0.0308,-0.0446,0.0951,-0.0308,-0.0046,-0.0515,-0.0308,0.08,-0.0515,-0.0308,0,-0.0204,0.0346,-0.0446,-0.0435,-0.0308,-0.0847,-0.0435,-0.0308,0.0847,0.0231,-0.0383,-0.04
,-0.0462,-0.0383,-0.08,-0.0462,-0.0383,0,-0.0515,-0.0308,-0.08,0.0231,-0.0383,0.04,-0.0462,-0.0383,0.08,0.0924,-0.0383,0,0,0.1045,0,-0.0024,0.1015,0.0042,0.0027,0.0999,-0.0046,0,0.1045,0,-0.0024,0.1015,-0.0042,0,0.1045,0,0.0049,0.1015,0,0.0985,-0.0348,0,0.0973,-0.0292,0,0.0985,-0.0348,0,0.0949,-0.0361,-0.0042
,0.0985,-0.0348,0,0.0949,-0.0361,0.0042,-0.0492,-0.0348,0.0853,-0.0511,-0.0361,0.08,-0.0492,-0.0348,0.0853,-0.0486,-0.0292,0.0843,-0.0492,-0.0348,0.0853,-0.0438,-0.0361,0.0843,-0.0492,-0.0348,-0.0853,-0.0438,-0.0361,-0.0843,-0.0492,-0.0348,-0.0853,-0.0486,-0.0292,-0.0843,-0.0492,-0.0348,-0.0853,-0.0511,-0.0361,-0.08,-0.0255,0.0361,-0.0442,-0.0255,0.0361,-0.0442,0.0511,0.0361,0
,0.0973,-0.0292,0,0.0511,0.0361,0,-0.0255,0.0361,0.0442,-0.0255,0.0361,0.0442,0.0255,-0.0361,0.0442,0.0255,-0.0361,0.0442,-0.0511,-0.0361,0,-0.0511,-0.0361,-0.08,-0.0511,-0.0361,0,0.0255,-0.0361,-0.0442,0.0255,-0.0361,-0.0442,-0.0024,0.1015,-0.0042,0.0049,0.1015,0,0.0511,0.0361,0,-0.0024,0.1015,0.0042,0.0949,-0.0361,0.0042,-0.0511,-0.0361,0.08
,-0.0511,-0.0361,0,0.0949,-0.0361,-0.0042,-0.0024,0.1015,-0.0042,0.0049,0.1015,0,0,0.1045,0,-0.0024,0.1015,0.0042,0,0.1045,0,0.0949,-0.0361,-0.0042,0.0949,-0.0361,0.0042,0.0985,-0.0348,0,0.0973,-0.0292,0,0.0985,-0.0348,0,-0.0486,-0.0292,0.0843,-0.0438,-0.0361,0.0843,-0.0492,-0.0348,0.0853,-0.0511,-0.0361,0.08,-0.0492,-0.0348,0.0853
,-0.0486,-0.0292,-0.0843,-0.0511,-0.0361,-0.08,-0.0492,-0.0348,-0.0853,-0.0438,-0.0361,-0.0843,-0.0492,-0.0348,-0.0853,-0.0255,0.0361,-0.0442,-0.0486,-0.0292,-0.0843,0.0973,-0.0292,0,-0.0255,0.0361,0.0442,-0.0486,-0.0292,0.0843,0.0255,-0.0361,0.0442,-0.0438,-0.0361,0.0843,-0.0511,-0.0361,-0.08,0.0255,-0.0361,-0.0442,-0.0438,-0.0361,-0.0843,-0.0255,0.0361,-0.0442,0.0049,0.1015,0
,0.0511,0.0361,0,-0.0024,0.1015,0.0042,-0.0255,0.0361,0.0442,0.0949,-0.0361,0.0042,0.0255,-0.0361,0.0442,-0.0511,-0.0361,0.08,-0.0511,-0.0361,0,0.0949,-0.0361,-0.0042,0.0255,-0.0361,-0.0442]
,"normals":[-0.815,0.579,0,-0.886,0.425,0.183,-0.886,0.425,-0.183,0.602,0.425,0.676,0.682,0.191,0.706,0.496,0.127,0.859,0.408,0.579,0.706,0.285,0.425,0.859,0.602,0.425,-0.676,0.496,0.127,-0.859,0.682,0.191,-0.706,-0.952,0.191,0.237,-0.992,0.127,0,0.285,0.425,-0.859,0.271,0.191,-0.943,0.271,0.191,0.943,0.106,-0.977,-0.183
,-0.137,-0.962,-0.237,-0.211,-0.977,0,-0.952,0.191,-0.237,0.106,-0.977,0.183,-0.137,-0.962,0.237,0.274,-0.962,0,0,1,0,-0.346,0.722,0.599,0.408,0.579,-0.706,0,1,0,-0.346,0.722,-0.599,0,1,0,0.692,0.722,0,0.943,-0.333,0,0.911,0.412,0,0.943,-0.333,0,0.565,-0.567,-0.599
,0.943,-0.333,0,0.565,-0.567,0.599,-0.471,-0.333,0.816,-0.802,-0.567,0.19,-0.471,-0.333,0.816,-0.456,0.412,0.789,-0.471,-0.333,0.816,0.236,-0.567,0.789,-0.471,-0.333,-0.816,0.236,-0.567,-0.789,-0.471,-0.333,-0.816,-0.456,0.412,-0.789,-0.471,-0.333,-0.816,-0.802,-0.567,-0.19,-0.408,0.577,-0.707,-0.408,0.577,-0.707,0.816,0.577,0
,0.911,0.412,0,0.816,0.577,0,-0.408,0.577,0.707,-0.408,0.577,0.707,0.408,-0.577,0.707,0.408,-0.577,0.707,-0.816,-0.577,0,-0.802,-0.567,-0.19,-0.816,-0.577,0,0.408,-0.577,-0.707,0.408,-0.577,-0.707,-0.346,0.722,-0.599,0.692,0.722,0,0.816,0.577,0,-0.346,0.722,0.599,0.565,-0.567,0.599,-0.802,-0.567,0.19
,-0.816,-0.577,0,0.565,-0.567,-0.599,-0.346,0.722,-0.599,0.692,0.722,0,0,1,0,-0.346,0.722,0.599,0,1,0,0.565,-0.567,-0.599,0.565,-0.567,0.599,0.943,-0.333,0,0.911,0.412,0,0.943,-0.333,0,-0.456,0.412,0.789,0.236,-0.567,0.789,-0.471,-0.333,0.816,-0.802,-0.567,0.19,-0.471,-0.333,0.816
,-0.456,0.412,-0.789,-0.802,-0.567,-0.19,-0.471,-0.333,-0.816,0.236,-0.567,-0.789,-0.471,-0.333,-0.816,-0.408,0.577,-0.707,-0.456,0.412,-0.789,0.911,0.412,0,-0.408,0.577,0.707,-0.456,0.412,0.789,0.408,-0.577,0.707,0.236,-0.567,0.789,-0.802,-0.567,-0.19,0.408,-0.577,-0.707,0.236,-0.567,-0.789,-0.408,0.577,-0.707,0.692,0.722,0
,0.816,0.577,0,-0.346,0.722,0.599,-0.408,0.577,0.707,0.565,-0.567,0.599,0.408,-0.577,0.707,-0.802,-0.567,0.19,-0.816,-0.577,0,0.565,-0.567,-0.599,0.408,-0.577,-0.707]
,"tangents":[0.002,0.003,-1,1,-0.16,0.089,-0.983,1,0.163,-0.084,-0.983,1,-0.58,0.815,0.003,1,-0.443,0.876,0.19,1,-0.502,0.849,0.164,1,-0.684,0.706,-0.184,1,-0.637,0.753,-0.162,1,0.174,0.756,0.631,1,0.389,0.852,0.351,1,0.287,0.817,0.499,1,-0.228,0.068,-0.971,1,0,0.001
,-1,1,0.287,0.817,0.5,1,0.382,0.878,0.288,1,-0.58,0.815,0.001,1,0.863,0.181,-0.471,1,0.865,0.001,-0.502,1,0.837,-0.181,-0.516,1,0.228,-0.068,-0.971,1,0.866,0,-0.5,1,0.847,-0.238,-0.475,1,0.835,0.238,-0.496,1,0,0,-1,1,-0.386,0.473,-0.792,1
,0.178,0.708,0.683,1,0.107,0,0.994,1,0.236,0.685,0.689,1,-0.917,0,-0.398,1,-0.715,0.686,-0.135,1,0.289,0.817,0.5,1,-0.282,0.623,0.73,1,0.269,0.76,-0.592,1,0.562,0.796,-0.223,1,0.305,0.861,0.407,1,-0.033,0.71,0.703,1,-0.843,-0.102,-0.528,1,-0.234,0.006
,-0.972,1,-0.58,0.814,-0.002,1,-0.496,0.619,-0.609,1,0.646,-0.761,0.063,1,0.878,-0.223,-0.423,1,0.194,0.864,-0.465,1,0.618,0.714,-0.328,1,0.842,0.104,-0.529,1,0.723,-0.345,-0.598,1,0.866,0,-0.5,1,0.528,-0.522,-0.67,1,0.552,-0.461,-0.695,1,0.288,0.816,0.501,1
,-0.326,0.462,0.825,1,-0.408,0.902,0.144,1,-0.577,0.816,0.005,1,-0.556,0.457,-0.694,1,-0.553,0.46,-0.695,1,0.866,0.001,-0.5,1,-0.255,0.671,0.696,1,0.477,-0.674,-0.565,1,0.234,-0.005,-0.972,1,0,-0.001,-1,1,0.726,0.675,-0.132,1,0.727,0.674,-0.131,1,0.387,-0.472
,-0.792,1,-0.277,0.266,0.923,1,-0.577,0.816,0.005,1,-0.665,0.262,-0.699,1,0.806,0.222,-0.549,1,0.474,-0.796,-0.377,1,0,-0.001,-1,1,0.738,0.672,0.06,1,0.387,-0.472,-0.792,1,-0.277,0.266,0.923,1,0.107,0,0.994,1,-0.665,0.262,-0.699,1,-0.917,0,-0.398,1
,0.738,0.672,0.06,1,0.806,0.222,-0.549,1,0.269,0.76,-0.592,1,-0.408,0.902,0.144,1,0.305,0.861,0.407,1,-0.722,0.347,-0.598,1,-0.426,0.669,0.609,1,-0.58,0.814,-0.002,1,0.474,-0.796,-0.377,1,0.646,-0.761,0.063,1,0.325,0.902,0.284,1,0.234,-0.005,-0.972,1,0.842,0.104
,-0.529,1,0.844,0.522,-0.122,1,0.866,0,-0.5,1,0.288,0.816,0.501,1,0.325,0.902,0.284,1,-0.408,0.902,0.144,1,-0.553,0.46,-0.695,1,-0.722,0.347,-0.598,1,-0.255,0.671,0.696,1,-0.426,0.669,0.609,1,0.234,-0.005,-0.972,1,0.727,0.674,-0.131,1,0.844,0.522,-0.122,1
,0.288,0.816,0.501,1,-0.277,0.266,0.923,1,-0.577,0.816,0.005,1,-0.665,0.262,-0.699,1,-0.553,0.46,-0.695,1,0.806,0.222,-0.549,1,-0.255,0.671,0.696,1,0.474,-0.796,-0.377,1,0,-0.001,-1,1,0.738,0.672,0.06,1,0.727,0.674,-0.131,1]
,"uvs":[0.882,0.427,0.835,0.349,0.93,0.348,0.859,0.601,0.767,0.599,0.812,0.519,0.95,0.6,0.906,0.519,0.512,0.788,0.417,0.789,0.465,0.71,0.791,0.268,0.882,0.267,0.465,0.87,0.373,0.868,0.859,0.441,0.364,0.848,0.316,0.927,0.27,0.849,0.974,0.268,0.316,0.767,0.225,0.769,0.408,0.769,0.882,0.435,0.877,0.43
,0.556,0.868,0.563,0.872,0.557,0.875,0.957,0.604,0.95,0.606,0.465,0.702,0.47,0.706,0.415,0.765,0.414,0.771,0.76,0.603,0.761,0.596,0.784,0.264,0.79,0.262,0.859,0.433,0.864,0.437,0.218,0.765,0.225,0.763,0.366,0.873,0.368,0.866,0.981,0.264,0.979,0.271,0.316,0.935,0.311,0.931,0.935,0.351,0.465,0.876
,0.517,0.785,0.766,0.605,0.859,0.607,0.911,0.516,0.83,0.352,0.316,0.761,0.806,0.516,0.264,0.852,0.974,0.262,0.882,0.26,0.412,0.786,0.369,0.852,0.887,0.43,0.562,0.866,0.859,0.607,0.956,0.597,0.409,0.763,0.219,0.771,0.882,0.26,0.46,0.706,0.887,0.43,0.562,0.866,0.563,0.872,0.956,0.597,0.957,0.604
,0.46,0.706,0.409,0.763,0.415,0.765,0.766,0.605,0.76,0.603,0.785,0.271,0.854,0.437,0.859,0.433,0.219,0.771,0.218,0.765,0.373,0.875,0.974,0.262,0.981,0.264,0.322,0.931,0.316,0.935,0.465,0.876,0.373,0.875,0.766,0.605,0.83,0.352,0.785,0.271,0.806,0.516,0.854,0.437,0.974,0.262,0.369,0.852,0.322,0.931
,0.465,0.876,0.562,0.866,0.859,0.607,0.956,0.597,0.83,0.352,0.409,0.763,0.806,0.516,0.219,0.771,0.882,0.26,0.46,0.706,0.369,0.852]
,"indices":[0,1,2,3,4,5,6,3,7,8,9,10,1,11,12,13,14,9,7,5,15,2,1,12,8,13,9,16,17,18,7,3,5,2,12,19,20,18,21,20,16,18,22,16,20,0,23,24,25,26,27
,6,28,29,10,30,31,22,32,33,4,34,35,11,36,37,15,38,39,21,40,41,14,42,43,19,44,45,17,46,47,19,48,2,49,14,13,10,50,8,51,3,52,15,53,7,54,11,1,21,55,20
,56,15,5,17,57,18,58,12,59,14,60,9,61,17,16,0,48,62,27,13,25,8,63,25,64,6,29,7,65,6,24,1,0,20,66,22,35,5,4,18,67,21,68,11,37,9,69,10,33,16,22
,25,13,8,0,70,23,25,71,72,6,73,74,10,75,30,22,76,77,4,78,79,11,80,36,15,81,82,21,83,84,14,85,42,19,86,87,17,88,89,19,45,48,90,91,14,10,31,50,92,4,3
,15,39,53,93,94,11,21,41,55,95,96,15,17,47,57,97,19,12,14,43,60,98,99,17,0,2,48,27,100,13,8,50,101,102,3,6,7,53,103,24,104,1,20,55,105,35,106,5,18,57,107
,108,12,11,9,60,109,33,110,16]
}
,{"name":"d6","id":"d6","billboardMode":0,"position":[0.4,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false
,"positions":[-0.0664,0.0584,-0.0584,-0.0664,-0.0584,0.0584,-0.0664,-0.0584,-0.0584,-0.0584,-0.0664,0.0584,0.0584,-0.0664,-0.0584,-0.0584,-0.0664,-0.0584,0.0664,0.0584,-0.0584,0.0664,-0.0584,0.0584,0.0664,0.0584,0.0584,0.0584,-0.0584,0.0664,-0.0584,0.0584,0.0664,0.0584,0.0584,0.0664,-0.0584,0.0664,0.0584,0.0584,0.0664,-0.0584,0.0584,0.0664,0.0584,-0.0584,-0.0584,-0.0664,-0.063,-0.063,-0.063
,-0.0584,-0.0641,-0.0641,-0.063,-0.063,-0.063,-0.0641,-0.0584,-0.0641,-0.063,-0.063,-0.063,-0.0641,-0.0641,-0.0584,0.0584,-0.0584,-0.0664,0.063,-0.063,-0.063,0.0641,-0.0584,-0.0641,0.063,-0.063,-0.063,0.0584,-0.0641,-0.0641,0.0664,-0.0584,-0.0584,0.063,-0.063,-0.063,0.0641,-0.0641,-0.0584,0.063,-0.063,0.063,0.0584,-0.0641,0.0641,0.063,-0.063,0.063,0.0641,-0.0584,0.0641
,0.0584,-0.0664,0.0584,0.063,-0.063,0.063,0.0641,-0.0641,0.0584,-0.0584,-0.0584,0.0664,-0.063,-0.063,0.063,-0.0641,-0.0584,0.0641,-0.063,-0.063,0.063,-0.0584,-0.0641,0.0641,-0.063,-0.063,0.063,-0.0641,-0.0641,0.0584,-0.0584,0.0584,-0.0664,-0.063,0.063,-0.063,-0.0641,0.0584,-0.0641,-0.0584,0.0664,-0.0584,-0.063,0.063,-0.063,-0.0584,0.0641,-0.0641,-0.063,0.063,-0.063
,-0.0641,0.0641,-0.0584,0.0584,0.0584,-0.0664,0.063,0.063,-0.063,0.0584,0.0641,-0.0641,0.063,0.063,-0.063,0.0641,0.0584,-0.0641,0.063,0.063,-0.063,0.0641,0.0641,-0.0584,0.063,0.063,0.063,0.0641,0.0584,0.0641,0.063,0.063,0.063,0.0584,0.0641,0.0641,0.063,0.063,0.063,0.0641,0.0641,0.0584,-0.0664,0.0584,0.0584,-0.063,0.063,0.063,-0.0641,0.0584,0.0641
,-0.063,0.063,0.063,-0.0641,0.0641,0.0584,-0.063,0.063,0.063,-0.0584,0.0641,0.0641,0.0584,-0.0641,0.0641,-0.0584,-0.0641,0.0641,-0.0584,-0.0641,-0.0641,0.0584,-0.0641,-0.0641,0.0641,-0.0641,-0.0584,0.0641,-0.0641,0.0584,-0.0641,-0.0641,-0.0584,-0.0641,-0.0641,0.0584,-0.0641,-0.0584,-0.0641,-0.0641,0.0584,-0.0641,0.0641,-0.0584,-0.0641,0.0641,0.0584,-0.0641,0.0641,-0.0584,0.0641
,0.0641,0.0584,0.0641,-0.0641,0.0641,-0.0584,-0.0641,0.0641,0.0584,0.0641,0.0641,-0.0584,0.0641,0.0641,0.0584,0.0584,0.0641,0.0641,-0.0584,0.0641,0.0641,-0.0584,0.0641,-0.0641,0.0584,0.0641,-0.0641,-0.0641,-0.0584,0.0641,-0.0641,0.0584,0.0641,-0.0641,-0.0584,-0.0641,-0.0641,-0.0641,-0.0584,-0.063,-0.063,-0.063,-0.0584,-0.0641,-0.0641,-0.063,-0.063,-0.063,0.0584,-0.0641,-0.0641
,0.0641,-0.0641,-0.0584,0.063,-0.063,-0.063,0.0641,-0.0584,-0.0641,0.063,-0.063,-0.063,0.0641,-0.0584,0.0641,0.0641,-0.0641,0.0584,0.063,-0.063,0.063,0.0584,-0.0641,0.0641,0.063,-0.063,0.063,-0.0584,-0.0641,0.0641,-0.0641,-0.0641,0.0584,-0.063,-0.063,0.063,-0.0641,-0.0584,0.0641,-0.063,-0.063,0.063,-0.0584,0.0641,-0.0641,-0.0641,0.0641,-0.0584,-0.063,0.063,-0.063
,-0.0641,0.0584,-0.0641,-0.063,0.063,-0.063,0.0641,0.0584,-0.0641,0.0641,0.0641,-0.0584,0.063,0.063,-0.063,0.0584,0.0641,-0.0641,0.063,0.063,-0.063,0.0584,0.0641,0.0641,0.0641,0.0641,0.0584,0.063,0.063,0.063,0.0641,0.0584,0.0641,0.063,0.063,0.063,-0.0641,0.0641,0.0584,-0.0584,0.0641,0.0641,-0.063,0.063,0.063,-0.0641,0.0584,0.0641,-0.063,0.063,0.063
,0.0584,-0.0641,0.0641,-0.0584,-0.0641,0.0641,-0.0584,-0.0641,-0.0641,0.0584,-0.0641,-0.0641,0.0641,-0.0641,-0.0584,0.0641,-0.0641,0.0584,-0.0641,-0.0641,-0.0584,-0.0641,-0.0641,0.0584,-0.0641,-0.0584,-0.0641,-0.0641,0.0584,-0.0641,0.0641,-0.0584,-0.0641,0.0641,0.0584,-0.0641,0.0641,-0.0584,0.0641,0.0641,0.0584,0.0641,-0.0641,0.0641,-0.0584,-0.0641,0.0641,0.0584,0.0641,0.0641,-0.0584
,0.0641,0.0641,0.0584,0.0584,0.0641,0.0641,-0.0584,0.0641,0.0641,-0.0584,0.0641,-0.0641,0.0584,0.0641,-0.0641,-0.0641,-0.0584,0.0641,-0.0641,0.0584,0.0641]
,"normals":[-0.967,0.179,-0.179,-0.967,-0.179,0.179,-0.967,-0.179,-0.179,-0.179,-0.967,0.179,0.179,-0.967,-0.179,-0.179,-0.967,-0.179,0.967,0.179,-0.179,0.967,-0.179,0.179,0.967,0.179,0.179,0.179,-0.179,0.967,-0.179,0.179,0.967,0.179,0.179,0.967,-0.179,0.967,0.179,0.179,0.967,-0.179,0.179,0.967,0.179,-0.179,-0.179,-0.967,-0.577,-0.577,-0.577
,-0.148,-0.699,-0.699,-0.577,-0.577,-0.577,-0.699,-0.148,-0.699,-0.577,-0.577,-0.577,-0.699,-0.699,-0.148,0.179,-0.179,-0.967,0.577,-0.577,-0.577,0.699,-0.148,-0.699,0.577,-0.577,-0.577,0.148,-0.699,-0.699,0.967,-0.179,-0.179,0.577,-0.577,-0.577,0.699,-0.699,-0.148,0.577,-0.577,0.577,0.148,-0.699,0.699,0.577,-0.577,0.577,0.699,-0.148,0.699
,0.179,-0.967,0.179,0.577,-0.577,0.577,0.699,-0.699,0.148,-0.179,-0.179,0.967,-0.577,-0.577,0.577,-0.699,-0.148,0.699,-0.577,-0.577,0.577,-0.148,-0.699,0.699,-0.577,-0.577,0.577,-0.699,-0.699,0.148,-0.179,0.179,-0.967,-0.577,0.577,-0.577,-0.699,0.148,-0.699,-0.179,0.967,-0.179,-0.577,0.577,-0.577,-0.148,0.699,-0.699,-0.577,0.577,-0.577
,-0.699,0.699,-0.148,0.179,0.179,-0.967,0.577,0.577,-0.577,0.148,0.699,-0.699,0.577,0.577,-0.577,0.699,0.148,-0.699,0.577,0.577,-0.577,0.699,0.699,-0.148,0.577,0.577,0.577,0.699,0.148,0.699,0.577,0.577,0.577,0.148,0.699,0.699,0.577,0.577,0.577,0.699,0.699,0.148,-0.967,0.179,0.179,-0.577,0.577,0.577,-0.699,0.148,0.699
,-0.577,0.577,0.577,-0.699,0.699,0.148,-0.577,0.577,0.577,-0.148,0.699,0.699,0.148,-0.699,0.699,-0.148,-0.699,0.699,-0.148,-0.699,-0.699,0.148,-0.699,-0.699,0.699,-0.699,-0.148,0.699,-0.699,0.148,-0.699,-0.699,-0.148,-0.699,-0.699,0.148,-0.699,-0.148,-0.699,-0.699,0.148,-0.699,0.699,-0.148,-0.699,0.699,0.148,-0.699,0.699,-0.148,0.699
,0.699,0.148,0.699,-0.699,0.699,-0.148,-0.699,0.699,0.148,0.699,0.699,-0.148,0.699,0.699,0.148,0.148,0.699,0.699,-0.148,0.699,0.699,-0.148,0.699,-0.699,0.148,0.699,-0.699,-0.699,-0.148,0.699,-0.699,0.148,0.699,-0.699,-0.148,-0.699,-0.699,-0.699,-0.148,-0.577,-0.577,-0.577,-0.148,-0.699,-0.699,-0.577,-0.577,-0.577,0.148,-0.699,-0.699
,0.699,-0.699,-0.148,0.577,-0.577,-0.577,0.699,-0.148,-0.699,0.577,-0.577,-0.577,0.699,-0.148,0.699,0.699,-0.699,0.148,0.577,-0.577,0.577,0.148,-0.699,0.699,0.577,-0.577,0.577,-0.148,-0.699,0.699,-0.699,-0.699,0.148,-0.577,-0.577,0.577,-0.699,-0.148,0.699,-0.577,-0.577,0.577,-0.148,0.699,-0.699,-0.699,0.699,-0.148,-0.577,0.577,-0.577
,-0.699,0.148,-0.699,-0.577,0.577,-0.577,0.699,0.148,-0.699,0.699,0.699,-0.148,0.577,0.577,-0.577,0.148,0.699,-0.699,0.577,0.577,-0.577,0.148,0.699,0.699,0.699,0.699,0.148,0.577,0.577,0.577,0.699,0.148,0.699,0.577,0.577,0.577,-0.699,0.699,0.148,-0.148,0.699,0.699,-0.577,0.577,0.577,-0.699,0.148,0.699,-0.577,0.577,0.577
,0.148,-0.699,0.699,-0.148,-0.699,0.699,-0.148,-0.699,-0.699,0.148,-0.699,-0.699,0.699,-0.699,-0.148,0.699,-0.699,0.148,-0.699,-0.699,-0.148,-0.699,-0.699,0.148,-0.699,-0.148,-0.699,-0.699,0.148,-0.699,0.699,-0.148,-0.699,0.699,0.148,-0.699,0.699,-0.148,0.699,0.699,0.148,0.699,-0.699,0.699,-0.148,-0.699,0.699,0.148,0.699,0.699,-0.148
,0.699,0.699,0.148,0.148,0.699,0.699,-0.148,0.699,0.699,-0.148,0.699,-0.699,0.148,0.699,-0.699,-0.699,-0.148,0.699,-0.699,0.148,0.699]
,"tangents":[0.179,0.984,0.016,1,-0.179,0.984,0.016,1,-0.177,0.984,-0.029,1,-0.016,-0.179,-0.984,1,-0.016,0.179,-0.984,1,0.029,0.177,-0.984,1,0.179,0.016,0.984,1,-0.179,0.016,0.984,1,-0.177,-0.029,0.984,1,-0.016,-0.984,-0.179,1,-0.016,-0.984,0.179,1,0.029,-0.984,0.177,1,0.984,0.179
,0.016,1,0.984,-0.179,0.016,1,0.984,-0.177,-0.029,1,0.984,-0.029,-0.177,1,0.799,-0.252,-0.547,1,0.986,-0.05,-0.158,1,-0.547,0.798,-0.252,1,-0.158,0.986,-0.05,1,0.252,0.547,-0.799,1,0.05,0.158,-0.986,1,0.984,0.016,0.179,1,0.797,0.244,0.553,1,0.714,0.107,0.692,1
,-0.244,0.553,-0.797,1,-0.107,0.692,-0.714,1,0.177,-0.029,0.984,1,0.547,-0.252,0.799,1,0.158,-0.05,0.986,1,-0.244,-0.797,-0.553,1,-0.107,-0.714,-0.692,1,-0.553,0.244,0.797,1,-0.692,0.107,0.714,1,0.029,-0.177,-0.984,1,0.252,-0.547,-0.799,1,0.05,-0.158,-0.986,1,0.029,-0.984
,-0.177,1,0.252,-0.798,-0.547,1,0.05,-0.986,-0.158,1,-0.244,-0.553,-0.797,1,-0.107,-0.692,-0.714,1,-0.553,0.797,0.244,1,-0.692,0.714,0.107,1,0.984,0.016,-0.179,1,0.797,0.244,-0.553,1,0.714,0.107,-0.692,1,0.984,0.177,-0.029,1,0.799,0.547,-0.252,1,0.986,0.158,-0.05,1
,0.553,0.797,0.244,1,0.692,0.714,0.107,1,0.984,-0.029,0.177,1,0.799,-0.252,0.547,1,0.986,-0.05,0.158,1,0.553,0.244,0.797,1,0.692,0.107,0.714,1,0.797,-0.553,0.244,1,0.714,-0.692,0.107,1,0.252,-0.798,0.547,1,0.05,-0.986,0.158,1,0.799,-0.547,-0.252,1,0.986,-0.158
,-0.05,1,-0.547,-0.252,0.799,1,-0.158,-0.05,0.986,1,0.177,0.984,-0.029,1,0.547,0.799,-0.252,1,0.158,0.986,-0.05,1,0.797,0.553,0.244,1,0.714,0.692,0.107,1,-0.244,-0.797,0.553,1,-0.107,-0.714,0.692,1,0.111,-0.691,-0.714,1,0.111,-0.714,-0.691,1,0.111,0.691,-0.714,1
,0.985,0.04,0.168,1,-0.04,0.168,-0.985,1,-0.168,0.04,0.985,1,-0.691,0.714,-0.111,1,-0.04,-0.168,-0.985,1,0.714,-0.111,-0.691,1,0.168,0.985,0.04,1,0.691,-0.111,0.714,1,0.714,-0.111,0.691,1,-0.04,-0.985,-0.168,1,-0.691,-0.111,0.714,1,0.714,0.691,-0.111,1,0.691,0.714
,-0.111,1,0.168,0.04,0.985,1,0.714,-0.691,-0.111,1,0.111,-0.714,0.691,1,0.985,0.168,0.04,1,0.985,0.04,-0.168,1,0.985,-0.168,0.04,1,-0.168,0.985,0.04,1,-0.04,-0.985,0.168,1,0.714,-0.111,-0.691,1,-0.691,0.714,-0.111,1,-0.547,0.798,-0.252,1,0.111,0.691,-0.714,1
,0.252,0.547,-0.799,1,0.985,0.04,0.168,1,-0.04,0.168,-0.985,1,-0.244,0.553,-0.797,1,0.691,-0.111,0.714,1,0.547,-0.252,0.799,1,-0.04,-0.985,-0.168,1,-0.168,0.04,0.985,1,-0.553,0.244,0.797,1,0.111,-0.691,-0.714,1,0.252,-0.547,-0.799,1,0.111,-0.714,-0.691,1,-0.04,-0.168
,-0.985,1,-0.244,-0.553,-0.797,1,-0.168,0.985,0.04,1,-0.553,0.797,0.244,1,0.985,0.04,-0.168,1,0.714,0.691,-0.111,1,0.799,0.547,-0.252,1,0.168,0.985,0.04,1,0.553,0.797,0.244,1,0.714,-0.111,0.691,1,0.168,0.04,0.985,1,0.553,0.244,0.797,1,0.985,-0.168,0.04,1
,0.797,-0.553,0.244,1,0.111,-0.714,0.691,1,0.714,-0.691,-0.111,1,0.799,-0.547,-0.252,1,-0.691,-0.111,0.714,1,-0.547,-0.252,0.799,1,0.691,0.714,-0.111,1,0.985,0.168,0.04,1,0.797,0.553,0.244,1,-0.04,-0.985,0.168,1,-0.244,-0.797,0.553,1,0.111,-0.691,-0.714,1,0.111,-0.714
,-0.691,1,0.111,0.691,-0.714,1,0.985,0.04,0.168,1,-0.04,0.168,-0.985,1,-0.168,0.04,0.985,1,-0.691,0.714,-0.111,1,-0.04,-0.168,-0.985,1,0.714,-0.111,-0.691,1,0.168,0.985,0.04,1,0.691,-0.111,0.714,1,0.714,-0.111,0.691,1,-0.04,-0.985,-0.168,1,-0.691,-0.111,0.714,1
,0.714,0.691,-0.111,1,0.691,0.714,-0.111,1,0.168,0.04,0.985,1,0.714,-0.691,-0.111,1,0.111,-0.714,0.691,1,0.985,0.168,0.04,1,0.985,0.04,-0.168,1,0.985,-0.168,0.04,1,-0.168,0.985,0.04,1,-0.04,-0.985,0.168,1]
,"uvs":[0.449,0.163,0.315,0.295,0.315,0.161,0.164,0.295,0.298,0.162,0.298,0.296,0.013,0.143,0.147,0.01,0.147,0.144,0.449,0.013,0.315,0.146,0.315,0.012,0.013,0.294,0.147,0.161,0.147,0.295,0.164,0.011,0.158,0.005,0.164,0.004,0.309,0.155,0.315,0.154,0.304,0.302,0.298,0.303,0.298,0.012,0.304,0.006,0.305,0.012
,0.304,0.156,0.305,0.162,0.013,0.009,0.007,0.003,0.013,0.002,0.455,0.007,0.456,0.013,0.153,0.004,0.154,0.01,0.164,0.161,0.158,0.155,0.164,0.154,0.449,0.147,0.455,0.153,0.449,0.154,0.158,0.301,0.157,0.295,0.309,0.301,0.308,0.296,0.164,0.145,0.158,0.151,0.157,0.145,0.013,0.16,0.007,0.154,0.013,0.153
,0.455,0.156,0.456,0.162,0.298,0.146,0.304,0.152,0.298,0.153,0.007,0.149,0.006,0.143,0.153,0.155,0.154,0.161,0.309,0.006,0.314,0.005,0.153,0.301,0.147,0.302,0.153,0.15,0.147,0.151,0.449,0.296,0.455,0.303,0.449,0.304,0.007,0.3,0.006,0.294,0.309,0.152,0.308,0.146,0.157,0.161,0.456,0.147,0.305,0.296
,0.298,0.005,0.298,0.155,0.147,0.003,0.308,0.161,0.164,0.302,0.157,0.011,0.449,0.155,0.006,0.009,0.305,0.147,0.449,0.006,0.154,0.145,0.006,0.16,0.456,0.297,0.012,0.15,0.154,0.295,0.308,0.011,0.012,0.301,0.164,0.152,0.147,0.154,0.314,0.302,0.314,0.153,0.157,0.011,0.308,0.161,0.309,0.155,0.305,0.296
,0.304,0.302,0.298,0.005,0.298,0.155,0.304,0.156,0.006,0.009,0.007,0.003,0.449,0.006,0.147,0.003,0.153,0.004,0.157,0.161,0.158,0.155,0.456,0.147,0.164,0.302,0.158,0.301,0.314,0.302,0.309,0.301,0.164,0.152,0.006,0.16,0.007,0.154,0.449,0.155,0.455,0.156,0.305,0.147,0.012,0.15,0.007,0.149,0.147,0.154
,0.153,0.155,0.308,0.011,0.154,0.295,0.153,0.301,0.154,0.145,0.153,0.15,0.456,0.297,0.012,0.301,0.007,0.3,0.314,0.153,0.309,0.152,0.157,0.161,0.456,0.147,0.305,0.296,0.298,0.005,0.298,0.155,0.147,0.003,0.308,0.161,0.164,0.302,0.157,0.011,0.449,0.155,0.006,0.009,0.305,0.147,0.449,0.006,0.154,0.145
,0.006,0.16,0.456,0.297,0.012,0.15,0.154,0.295,0.308,0.011,0.012,0.301,0.164,0.152,0.147,0.154,0.314,0.302,0.314,0.153]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,2,18,19,5,20,21,22,23,24,4,25,26,27,28,29,9,30,31,7,32,33,34,35,36,37,38,39,3,40,41,1,42,43
,44,45,46,47,48,49,0,50,51,52,53,54,6,55,56,13,57,58,11,59,60,14,61,62,8,63,64,65,66,67,12,68,69,10,70,71,3,72,34,73,9,31,4,74,5,75,15,17,34,76,4
,77,27,29,1,78,2,79,5,21,44,80,15,81,2,19,6,82,27,83,22,24,11,84,9,85,7,33,12,86,47,87,0,51,8,88,6,89,13,58,10,90,11,91,14,62,52,92,44,93,47,49
,65,94,1,95,37,39,22,44,15,0,65,1,3,34,4,6,27,7,9,37,10,12,47,13,15,96,16,2,97,98,5,99,100,22,101,23,4,102,103,27,104,105,9,106,30,7,107,108,34,109,110
,37,111,38,3,112,113,1,114,115,44,116,45,47,117,118,0,119,120,52,121,53,6,122,123,13,124,125,11,126,59,14,127,128,8,129,130,65,131,66,12,132,133,10,134,135,3,41,136,137,37,9
,4,26,138,139,22,15,34,36,140,141,7,27,1,43,142,143,3,5,44,46,144,145,0,2,6,56,146,147,52,22,11,60,148,149,8,7,12,69,150,151,65,0,8,64,152,153,14,13,10,71,154
,155,12,14,52,54,156,157,13,47,65,67,158,159,10,37,22,52,44]
}
,{"name":"d8","id":"d8","billboardMode":0,"position":[0.2,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false
,"positions":[-0.0065,-0.0869,-0.0065,-0.0065,-0.0065,-0.0869,-0.0869,-0.0065,-0.0065,-0.0065,0.0869,-0.0065,-0.0869,0.0065,-0.0065,-0.0065,0.0065,-0.0869,0.0065,0.0869,0.0065,0.0869,0.0065,0.0065,0.0065,0.0065,0.0869,0.0065,-0.0869,-0.0065,0.0869,-0.0065,-0.0065,0.0065,-0.0065,-0.0869,-0.0065,0.0869,0.0065,-0.0065,0.0065,0.0869,-0.0869,0.0065,0.0065,-0.0065,-0.0869,0.0065,-0.0869,-0.0065,0.0065
,-0.0065,-0.0065,0.0869,0.0065,0.0869,-0.0065,0.0065,0.0065,-0.0869,0.0869,0.0065,-0.0065,0.0917,0,0,0.0883,0,0.0079,0.0917,0,0,0.0883,0.0079,0,0.0917,0,0,0.0883,0,-0.0079,0.0869,-0.0065,0.0065,0.0917,0,0,0.0883,-0.0079,0,-0.0917,0,0,-0.0883,0,-0.0079,-0.0917,0,0,-0.0883,0.0079,0
,-0.0917,0,0,-0.0883,0,0.0079,-0.0917,0,0,-0.0883,-0.0079,0,0.0065,-0.0065,0.0869,0,0,0.0917,0.0079,0,0.0883,0,0,0.0917,0,-0.0079,0.0883,0,0,0.0917,-0.0079,0,0.0883,0,0,0.0917,0,0.0079,0.0883,0,0,-0.0917,-0.0079,0,-0.0883,0,0,-0.0917,0,-0.0079,-0.0883
,0,0,-0.0917,0.0079,0,-0.0883,0,0,-0.0917,0,0.0079,-0.0883,0,0.0917,0,0,0.0883,0.0079,0,0.0917,0,-0.0079,0.0883,0,0,0.0917,0,0,0.0883,-0.0079,0,0.0917,0,0.0079,0.0883,0,0,-0.0917,0,0.0079,-0.0883,0,0,-0.0917,0,0,-0.0883,-0.0079,0,-0.0917,0
,-0.0079,-0.0883,0,0.0065,-0.0869,0.0065,0,-0.0917,0,0,-0.0883,0.0079,0.0883,0,0.0079,0.0079,0,0.0883,-0.0883,0,-0.0079,-0.0079,0,-0.0883,0,0.0079,0.0883,0.0883,-0.0079,0,0.0079,-0.0883,0,0,-0.0079,0.0883,-0.0883,-0.0079,0,0,0.0079,-0.0883,0.0883,0,-0.0079,0.0079,0,-0.0883,0,-0.0079,-0.0883
,-0.0883,0,0.0079,-0.0079,0,0.0883,0.0883,0.0079,0,0.0079,0.0883,0,-0.0883,0.0079,0,0.0883,0.0079,0,0.0883,0,-0.0079,0.0917,0,0,0.0883,-0.0079,0,0.0917,0,0,0.0883,0,0.0079,0.0917,0,0,-0.0883,0.0079,0,-0.0883,0,0.0079,-0.0917,0,0,-0.0883,-0.0079,0,-0.0917,0,0
,-0.0883,0,-0.0079,-0.0917,0,0,0,-0.0079,0.0883,-0.0079,0,0.0883,0,0,0.0917,0,0.0079,0.0883,0,0,0.0917,0.0079,0,0.0883,0,0,0.0917,0,-0.0079,-0.0883,0.0079,0,-0.0883,0,0,-0.0917,0,0.0079,-0.0883,0,0,-0.0917,-0.0079,0,-0.0883,0,0,-0.0917,-0.0079,0.0883,0
,0,0.0883,-0.0079,0,0.0917,0,0.0079,0.0883,0,0,0.0917,0,0,0.0883,0.0079,0,0.0917,0,0,-0.0883,-0.0079,-0.0079,-0.0883,0,0,-0.0917,0,0,-0.0883,0.0079,0,-0.0917,0,0.0079,-0.0883,0,0,-0.0917,0,0.0079,0,0.0883,-0.0079,0,-0.0883,0,0.0079,0.0883,0,0.0883,0.0079
,0.0079,-0.0883,0,0,-0.0079,0.0883,0,-0.0883,0.0079,-0.0079,-0.0883,0,0,0.0079,-0.0883,0,0.0883,-0.0079,0.0079,0,-0.0883,0,-0.0079,-0.0883,0,-0.0883,-0.0079,-0.0079,0,0.0883,0.0079,0.0883,0,-0.0079,0.0883,0]
,"normals":[-0.464,-0.754,-0.464,-0.464,-0.464,-0.754,-0.754,-0.464,-0.464,-0.464,0.754,-0.464,-0.754,0.464,-0.464,-0.464,0.464,-0.754,0.464,0.754,0.464,0.754,0.464,0.464,0.464,0.464,0.754,0.464,-0.754,-0.464,0.754,-0.464,-0.464,0.464,-0.464,-0.754,-0.464,0.754,0.464,-0.464,0.464,0.754,-0.754,0.464,0.464,-0.464,-0.754,0.464,-0.754,-0.464,0.464
,-0.464,-0.464,0.754,0.464,0.754,-0.464,0.464,0.464,-0.754,0.754,0.464,-0.464,1,0,0,0.823,0,0.568,1,0,0,0.823,0.568,0,1,0,0,0.823,0,-0.568,0.754,-0.464,0.464,1,0,0,0.823,-0.568,0,-1,0,0,-0.823,0,-0.568,-1,0,0,-0.823,0.568,0
,-1,0,0,-0.823,0,0.568,-1,0,0,-0.823,-0.568,0,0.464,-0.464,0.754,0,0,1,0.568,0,0.823,0,0,1,0,-0.568,0.823,0,0,1,-0.568,0,0.823,0,0,1,0,0.568,0.823,0,0,-1,-0.568,0,-0.823,0,0,-1,0,-0.568,-0.823
,0,0,-1,0.568,0,-0.823,0,0,-1,0,0.568,-0.823,0,1,0,0,0.823,0.568,0,1,0,-0.568,0.823,0,0,1,0,0,0.823,-0.568,0,1,0,0.568,0.823,0,0,-1,0,0.568,-0.823,0,0,-1,0,0,-0.823,-0.568,0,-1,0
,-0.568,-0.823,0,0.464,-0.754,0.464,0,-1,0,0,-0.823,0.568,0.823,0,0.568,0.568,0,0.823,-0.823,0,-0.568,-0.568,0,-0.823,0,0.568,0.823,0.823,-0.568,0,0.568,-0.823,0,0,-0.568,0.823,-0.823,-0.568,0,0,0.568,-0.823,0.823,0,-0.568,0.568,0,-0.823,0,-0.568,-0.823
,-0.823,0,0.568,-0.568,0,0.823,0.823,0.568,0,0.568,0.823,0,-0.823,0.568,0,0.823,0.568,0,0.823,0,-0.568,1,0,0,0.823,-0.568,0,1,0,0,0.823,0,0.568,1,0,0,-0.823,0.568,0,-0.823,0,0.568,-1,0,0,-0.823,-0.568,0,-1,0,0
,-0.823,0,-0.568,-1,0,0,0,-0.568,0.823,-0.568,0,0.823,0,0,1,0,0.568,0.823,0,0,1,0.568,0,0.823,0,0,1,0,-0.568,-0.823,0.568,0,-0.823,0,0,-1,0,0.568,-0.823,0,0,-1,-0.568,0,-0.823,0,0,-1,-0.568,0.823,0
,0,0.823,-0.568,0,1,0,0.568,0.823,0,0,1,0,0,0.823,0.568,0,1,0,0,-0.823,-0.568,-0.568,-0.823,0,0,-1,0,0,-0.823,0.568,0,-1,0,0.568,-0.823,0,0,-1,0,0.568,0,0.823,-0.568,0,-0.823,0,0.568,0.823,0,0.823,0.568
,0.568,-0.823,0,0,-0.568,0.823,0,-0.823,0.568,-0.568,-0.823,0,0,0.568,-0.823,0,0.823,-0.568,0.568,0,-0.823,0,-0.568,-0.823,0,-0.823,-0.568,-0.568,0,0.823,0.568,0.823,0,-0.568,0.823,0]
,"tangents":[-0.104,0.567,-0.817,1,0.109,0.815,-0.569,1,0.003,0.705,-0.709,1,-0.816,-0.568,-0.105,1,-0.569,-0.816,0.108,1,-0.709,-0.705,0.003,1,0.093,-0.563,0.821,1,-0.008,-0.7,0.714,1,-0.12,-0.811,0.573,1,0.708,0,0.707,1,0.569,0.108,0.815,1,0.817,-0.105,0.567,1,0.113,0.571
,-0.813,1,-0.1,0.818,-0.566,1,0.004,0.71,-0.704,1,-0.707,0,-0.707,1,-0.569,0.107,-0.816,1,-0.816,-0.106,-0.568,1,-0.819,0.565,0.099,1,-0.71,0.704,-0.004,1,-0.571,0.813,-0.114,1,0,-0.699,0.715,1,-0.339,-0.802,0.492,1,0,0.974,-0.225,1,-0.565,0.82,-0.093,1
,0,0.218,0.976,1,0.566,0.087,0.82,1,0.567,0.104,-0.817,1,0,0.214,-0.977,1,0.236,0.343,-0.909,1,0,-0.976,0.218,1,-0.238,-0.908,0.346,1,0,0.709,-0.705,1,0.335,0.486,-0.807,1,0,0.217,-0.976,1,-0.566,0.086,-0.82,1,0,0.703,-0.711,1,-0.331,0.48
,-0.813,1,0.815,-0.109,-0.569,1,0.976,-0.219,0,1,0.82,-0.087,-0.566,1,-0.976,-0.216,0,1,-0.907,-0.346,-0.239,1,-0.21,0.978,0,1,-0.341,0.91,-0.235,1,-0.232,-0.973,0,1,-0.1,-0.819,0.565,1,0.22,0.976,0,1,0.349,0.906,-0.241,1,0.977,-0.215,0,1
,0.908,-0.345,0.238,1,-0.71,0.704,0,1,-0.487,0.806,-0.336,1,-0.71,-0.704,0,1,-0.812,-0.48,-0.331,1,0.224,0,-0.975,1,0.092,0.565,-0.82,1,-0.977,0,-0.215,1,-0.82,-0.566,-0.083,1,-0.978,0,0.208,1,-0.912,0.233,0.338,1,0.201,0,0.98,1,0.335,-0.231
,0.914,1,0.706,0,0.708,1,0.483,0.333,0.81,1,-0.214,0,-0.977,1,-0.082,0.566,-0.82,1,-0.705,0,-0.709,1,-0.482,0.333,-0.811,1,0.708,0.001,-0.706,1,0.708,0,-0.706,1,0.81,-0.333,-0.483,1,0.566,0.085,-0.82,1,-0.362,-0.898,0.249,1,0.336,0.806,-0.487,1
,-0.486,-0.807,0.336,1,-0.081,0.82,-0.566,1,0.241,0.35,0.905,1,0.484,0.334,-0.809,1,0.904,-0.352,-0.243,1,-0.241,0.349,-0.906,1,-0.813,0.48,0.331,1,-0.245,0.902,-0.355,1,0.82,-0.086,0.566,1,0.091,0.82,-0.565,1,-0.332,0.812,-0.481,1,-0.82,-0.087,-0.566,1,0.328,-0.475
,0.817,1,-0.821,0.566,0.08,1,-0.566,-0.82,0.089,1,0.328,-0.475,0.817,1,-0.245,0.902,-0.355,1,0,0.974,-0.225,1,0.241,0.35,0.905,1,0,0.218,0.976,1,0.566,0.085,-0.82,1,0,0.214,-0.977,1,-0.566,-0.82,0.089,1,-0.332,0.812,-0.481,1,0,0.709,-0.705,1
,-0.241,0.349,-0.906,1,0,0.217,-0.976,1,0.336,0.806,-0.487,1,0,0.703,-0.711,1,0.904,-0.352,-0.243,1,-0.82,-0.087,-0.566,1,-0.976,-0.216,0,1,-0.081,0.82,-0.566,1,-0.21,0.978,0,1,-0.362,-0.898,0.249,1,-0.232,-0.973,0,1,0.091,0.82,-0.565,1,0.82,-0.086
,0.566,1,0.977,-0.215,0,1,-0.813,0.48,0.331,1,-0.71,0.704,0,1,-0.486,-0.807,0.336,1,-0.71,-0.704,0,1,0.353,0.244,-0.903,1,-0.907,-0.239,-0.347,1,-0.977,0,-0.215,1,-0.821,0.566,0.08,1,-0.978,0,0.208,1,0.073,-0.566,0.821,1,0.201,0,0.98,1
,0.809,-0.334,0.484,1,-0.346,0.239,-0.907,1,-0.214,0,-0.977,1,-0.808,-0.334,-0.485,1,-0.705,0,-0.709,1,0.484,0.334,-0.809,1,0.708,0,-0.706,1,-0.362,-0.898,0.249,1,-0.486,-0.807,0.336,1,-0.081,0.82,-0.566,1,0.073,-0.566,0.821,1,0.484,0.334,-0.809,1,0.904,-0.352
,-0.243,1,-0.808,-0.334,-0.485,1,-0.346,0.239,-0.907,1,-0.813,0.48,0.331,1,-0.907,-0.239,-0.347,1,0.82,-0.086,0.566,1,0.091,0.82,-0.565,1,0.809,-0.334,0.484,1,-0.82,-0.087,-0.566,1,-0.821,0.566,0.08,1,0.353,0.244,-0.903,1]
,"uvs":[0.639,0.27,0.768,0.271,0.703,0.383,0.716,0.418,0.846,0.418,0.781,0.53,0.485,0.549,0.548,0.436,0.614,0.547,0.781,0.287,0.846,0.399,0.717,0.399,0.69,0.399,0.561,0.4,0.625,0.288,0.704,0.435,0.769,0.547,0.64,0.547,0.692,0.418,0.628,0.531,0.562,0.419,0.547,0.424,0.554,0.432,0.552,0.413,0.562,0.411
,0.857,0.405,0.846,0.407,0.613,0.271,0.623,0.265,0.62,0.275,0.856,0.412,0.853,0.422,0.625,0.276,0.632,0.283,0.78,0.553,0.769,0.555,0.703,0.395,0.696,0.387,0.483,0.272,0.473,0.266,0.483,0.264,0.629,0.553,0.633,0.544,0.551,0.406,0.554,0.397,0.625,0.553,0.614,0.555,0.779,0.265,0.775,0.275,0.706,0.405
,0.71,0.396,0.628,0.543,0.621,0.535,0.781,0.542,0.774,0.535,0.701,0.405,0.691,0.407,0.706,0.412,0.716,0.41,0.702,0.412,0.699,0.422,0.474,0.555,0.478,0.546,0.781,0.275,0.788,0.283,0.628,0.264,0.638,0.263,0.704,0.423,0.711,0.431,0.548,0.384,0.548,0.396,0.542,0.388,0.613,0.264,0.621,0.544,0.71,0.387
,0.787,0.535,0.561,0.408,0.853,0.395,0.555,0.388,0.476,0.275,0.776,0.544,0.635,0.535,0.555,0.423,0.716,0.407,0.768,0.263,0.618,0.284,0.639,0.555,0.541,0.432,0.692,0.41,0.846,0.411,0.541,0.432,0.555,0.423,0.552,0.413,0.853,0.395,0.857,0.405,0.613,0.264,0.623,0.265,0.846,0.411,0.618,0.284,0.625,0.276
,0.776,0.544,0.78,0.553,0.71,0.387,0.703,0.395,0.476,0.275,0.639,0.555,0.629,0.553,0.561,0.408,0.551,0.406,0.621,0.544,0.625,0.553,0.768,0.263,0.716,0.407,0.706,0.405,0.635,0.535,0.628,0.543,0.787,0.535,0.781,0.542,0.697,0.396,0.709,0.422,0.706,0.412,0.692,0.41,0.702,0.412,0.484,0.557,0.474,0.555
,0.775,0.283,0.632,0.274,0.628,0.264,0.698,0.431,0.704,0.423,0.555,0.388,0.548,0.396,0.621,0.544,0.787,0.535,0.561,0.408,0.484,0.557,0.555,0.388,0.476,0.275,0.698,0.431,0.632,0.274,0.635,0.535,0.709,0.422,0.716,0.407,0.768,0.263,0.775,0.283,0.639,0.555,0.692,0.41,0.697,0.396]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,7,21,22,20,23,24,10,25,26,27,28,29,4,30,31,14,32,33,16,34,35,2,36,37,38,39,40,17,41,42
,13,43,44,8,45,46,1,47,48,11,49,50,19,51,52,5,53,54,12,55,56,3,57,58,18,59,60,6,61,62,9,63,64,0,65,66,15,67,68,69,70,71,27,40,72,73,7,22,2,48,74
,75,4,31,12,76,13,46,6,8,10,64,77,78,27,29,69,79,38,42,15,17,16,68,80,37,0,2,18,81,19,54,3,5,20,52,82,83,10,26,0,84,1,50,9,11,14,44,85,86,16,35
,7,62,87,88,20,24,4,58,89,33,12,14,69,38,27,7,90,21,20,91,92,10,93,94,27,95,96,4,97,30,14,98,99,16,100,101,2,102,103,38,104,39,17,105,106,13,107,108,8,109,110
,1,111,47,11,112,113,19,114,115,5,116,117,12,118,55,3,119,120,18,121,122,6,123,124,9,125,63,0,126,127,15,128,129,69,130,131,27,38,40,132,8,7,2,1,48,133,5,4,12,56,134
,46,135,6,10,9,64,136,69,27,69,71,137,42,138,15,16,15,68,37,139,0,18,60,140,54,141,3,20,19,52,142,11,10,0,66,143,50,144,9,14,13,44,145,17,16,7,6,62,146,18,20
,4,3,58,33,147,12]
}
,{"name":"d10","id":"d10","billboardMode":0,"position":[0,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false
,"positions":[-0.0562,-0.0133,0.0652,-0.0838,-0.0133,-0.0197,-0.0838,0.0037,0.0272,-0.0562,0.0133,-0.0652,-0.0838,0.0133,0.0197,-0.0838,-0.0037,-0.0272,0.0072,0.0133,0.0858,0.0794,0.0133,0.0333,0.0518,-0.0037,0.0713,-0.0794,0.0133,0.0333,-0.0072,0.0133,0.0858,-0.0518,-0.0037,0.0713,0.0446,0.0133,-0.0736,-0.0446,0.0133,-0.0736,0,-0.0037,-0.0881,-0.0794,-0.0133,-0.0333,-0.0072,-0.0133,-0.0858
,-0.0518,0.0037,-0.0713,0.0794,-0.0133,-0.0333,0.0072,-0.0133,-0.0858,0.0072,-0.0857,-0.0098,0.0838,-0.0133,-0.0197,0.0562,-0.0133,0.0652,0.0838,0.0037,0.0272,0.0446,-0.0133,0.0736,-0.0446,-0.0133,0.0736,0,0.0037,0.0881,0.0072,0.0857,0.0098,0,0.0915,0,0.0103,0.0868,0.0034,-0.0072,0.0857,0.0098,0,0.0915,0,0,0.0868,0.0109,-0.0116,0.0857,-0.0038
,0,0.0915,0,-0.0103,0.0868,0.0034,0,0.0857,-0.0122,0,0.0915,0,-0.0064,0.0868,-0.0088,0.0116,0.0857,-0.0038,0,0.0915,0,0.0064,0.0868,-0.0088,-0.0116,-0.0857,0.0038,0,-0.0915,0,-0.0103,-0.0868,-0.0034,0,-0.0857,0.0122,0,-0.0915,0,-0.0064,-0.0868,0.0088,0.0116,-0.0857,0.0038,0,-0.0915,0,0.0064,-0.0868,0.0088
,0,-0.0915,0,0.0103,-0.0868,-0.0034,-0.0072,-0.0857,-0.0098,0,-0.0915,0,0,-0.0868,-0.0109,0.0525,-0.0103,0.0722,0.0562,-0.008,0.0687,0.0525,-0.0103,0.0722,0.0511,-0.0148,0.0704,0.0525,-0.0103,0.0722,0.048,-0.008,0.0747,0.0849,0.0103,0.0276,0.0827,0.008,0.0322,0.0838,0.0133,0.0197,0.0849,0.0103,0.0276,0.0827,0.0148,0.0269,0.0849,0.0103,0.0276
,0.0859,0.008,0.0226,0,0.0103,0.0893,0,0.0148,0.087,0,0.0103,0.0893,0.0051,0.008,0.0886,0,0.0103,0.0893,-0.0051,0.008,0.0886,0.0525,0.0103,-0.0722,0.0511,0.0148,-0.0704,0.0518,0.0037,-0.0713,0.0525,0.0103,-0.0722,0.048,0.008,-0.0747,0.0562,0.0133,-0.0652,0.0525,0.0103,-0.0722,0.0562,0.008,-0.0687,0.0849,-0.0103,-0.0276,0.0827,-0.0148,-0.0269
,0.0838,-0.0037,-0.0272,0.0849,-0.0103,-0.0276,0.0859,-0.008,-0.0226,0.0849,-0.0103,-0.0276,0.0827,-0.008,-0.0322,-0.0525,0.0103,-0.0722,-0.0511,0.0148,-0.0704,-0.0525,0.0103,-0.0722,-0.0562,0.008,-0.0687,-0.0525,0.0103,-0.0722,-0.048,0.008,-0.0747,0,-0.0103,-0.0893,0,-0.0148,-0.087,0,-0.0103,-0.0893,0.0051,-0.008,-0.0886,0,-0.0103,-0.0893,-0.0051,-0.008,-0.0886
,-0.0849,-0.0103,-0.0276,-0.0827,-0.008,-0.0322,-0.0849,-0.0103,-0.0276,-0.0859,-0.008,-0.0226,-0.0849,-0.0103,-0.0276,-0.0827,-0.0148,-0.0269,-0.0849,0.0103,0.0276,-0.0859,0.008,0.0226,-0.0849,0.0103,0.0276,-0.0827,0.0148,0.0269,-0.0849,0.0103,0.0276,-0.0827,0.008,0.0322,-0.0525,-0.0103,0.0722,-0.0511,-0.0148,0.0704,-0.0525,-0.0103,0.0722,-0.0562,-0.008,0.0687,-0.0525,-0.0103,0.0722
,-0.048,-0.008,0.0747,-0.0064,-0.0868,0.0088,-0.0511,-0.0148,0.0704,0.0064,-0.0868,0.0088,0.0511,-0.0148,0.0704,0.0103,0.0868,0.0034,0.0827,0.0148,0.0269,0.048,-0.008,0.0747,0.0064,0.0868,-0.0088,0.0511,0.0148,-0.0704,0.0859,0.008,0.0226,0.0562,0.008,-0.0687,0.0827,-0.008,-0.0322,0.048,0.008,-0.0747,-0.0562,0.008,-0.0687,-0.0103,0.0868,0.0034,-0.0827,0.0148,0.0269
,-0.0051,0.008,0.0886,-0.048,-0.008,0.0747,0,0.0868,0.0109,0,0.0148,0.087,0.0562,-0.008,0.0687,0.0827,0.008,0.0322,-0.048,0.008,-0.0747,-0.0051,-0.008,-0.0886,-0.0064,0.0868,-0.0088,-0.0511,0.0148,-0.0704,0.0103,-0.0868,-0.0034,0.0827,-0.0148,-0.0269,-0.0827,0.008,0.0322,0,-0.0868,-0.0109,0,-0.0148,-0.087,-0.0103,-0.0868,-0.0034,-0.0827,-0.0148,-0.0269
,-0.0859,-0.008,-0.0226,-0.0859,0.008,0.0226,0,0.0868,0.0109,-0.0103,0.0868,0.0034,0,0.0915,0,-0.0064,0.0868,-0.0088,0,0.0915,0,0.0064,0.0868,-0.0088,0,0.0915,0,0.0103,0.0868,0.0034,0,0.0915,0,-0.0064,-0.0868,0.0088,0.0064,-0.0868,0.0088,0,-0.0915,0,0.0103,-0.0868,-0.0034,0,-0.0915,0,0,-0.0868,-0.0109
,0,-0.0915,0,-0.0103,-0.0868,-0.0034,0,-0.0915,0,0.0511,-0.0148,0.0704,0.048,-0.008,0.0747,0.0525,-0.0103,0.0722,0.0562,-0.008,0.0687,0.0525,-0.0103,0.0722,0.0827,0.0148,0.0269,0.0859,0.008,0.0226,0.0849,0.0103,0.0276,0.0827,0.008,0.0322,0.0849,0.0103,0.0276,0.0051,0.008,0.0886,-0.0051,0.008,0.0886,0,0.0103,0.0893,0,0.0148,0.087
,0,0.0103,0.0893,0.048,0.008,-0.0747,0.0562,0.008,-0.0687,0.0525,0.0103,-0.0722,0.0511,0.0148,-0.0704,0.0525,0.0103,-0.0722,0.0859,-0.008,-0.0226,0.0827,-0.008,-0.0322,0.0849,-0.0103,-0.0276,0.0827,-0.0148,-0.0269,0.0849,-0.0103,-0.0276,-0.0562,0.008,-0.0687,-0.048,0.008,-0.0747,-0.0525,0.0103,-0.0722,-0.0511,0.0148,-0.0704,-0.0525,0.0103,-0.0722,0.0051,-0.008,-0.0886
,-0.0051,-0.008,-0.0886,0,-0.0103,-0.0893,0,-0.0148,-0.087,0,-0.0103,-0.0893,-0.0859,-0.008,-0.0226,-0.0827,-0.0148,-0.0269,-0.0849,-0.0103,-0.0276,-0.0827,-0.008,-0.0322,-0.0849,-0.0103,-0.0276,-0.0827,0.0148,0.0269,-0.0827,0.008,0.0322,-0.0849,0.0103,0.0276,-0.0859,0.008,0.0226,-0.0849,0.0103,0.0276,-0.0562,-0.008,0.0687,-0.048,-0.008,0.0747,-0.0525,-0.0103,0.0722
,-0.0511,-0.0148,0.0704,-0.0525,-0.0103,0.0722,-0.0511,-0.0148,0.0704,0.0511,-0.0148,0.0704,0.0827,0.0148,0.0269,0.0051,0.008,0.0886,0.0511,0.0148,-0.0704,0.0859,-0.008,-0.0226,0.0562,0.008,-0.0687,0.0827,-0.008,-0.0322,0.0051,-0.008,-0.0886,-0.0827,-0.008,-0.0322,-0.0827,0.0148,0.0269,-0.0051,0.008,0.0886,-0.048,-0.008,0.0747,0,0.0148,0.087,0.0562,-0.008,0.0687
,0.0827,0.008,0.0322,-0.048,0.008,-0.0747,-0.0051,-0.008,-0.0886,-0.0511,0.0148,-0.0704,0.0827,-0.0148,-0.0269,-0.0562,-0.008,0.0687,0,-0.0148,-0.087,-0.0827,-0.0148,-0.0269,-0.0859,-0.008,-0.0226,-0.0859,0.008,0.0226]
,"normals":[-0.739,-0.526,0.42,-0.845,-0.526,0.095,-0.868,-0.41,0.282,-0.739,0.526,-0.42,-0.845,0.526,-0.095,-0.868,0.41,-0.282,0.351,0.526,0.774,0.628,0.526,0.573,0.536,0.41,0.738,-0.628,0.526,0.573,-0.351,0.526,0.774,-0.536,0.41,0.738,0.171,0.526,-0.833,-0.171,0.526,-0.833,0,0.41,-0.912,-0.628,-0.526,-0.573,-0.351,-0.526,-0.774
,-0.536,-0.41,-0.738,0.628,-0.526,-0.573,0.351,-0.526,-0.774,0.361,-0.789,-0.497,0.845,-0.526,0.095,0.739,-0.526,0.42,0.868,-0.41,0.282,0.171,-0.526,0.833,-0.171,-0.526,0.833,0,-0.41,0.912,0.361,0.789,0.497,0,1,0,0.529,0.831,0.172,-0.361,0.789,0.497,0,1,0,0,0.831,0.556,-0.585,0.789,-0.19
,0,1,0,-0.529,0.831,0.172,0,0.789,-0.615,0,1,0,-0.327,0.831,-0.45,0.585,0.789,-0.19,0,1,0,0.327,0.831,-0.45,-0.585,-0.789,0.19,0,-1,0,-0.529,-0.831,-0.172,0,-0.789,0.615,0,-1,0,-0.327,-0.831,0.45,0.585,-0.789,0.19,0,-1,0,0.327,-0.831,0.45
,0,-1,0,0.529,-0.831,-0.172,-0.361,-0.789,-0.497,0,-1,0,0,-0.831,-0.556,0.575,-0.203,0.792,0.766,-0.025,0.643,0.575,-0.203,0.792,0.47,-0.602,0.646,0.575,-0.203,0.792,0.375,-0.025,0.927,0.931,0.203,0.303,0.848,0.025,0.529,0.845,0.526,-0.095,0.931,0.203,0.303,0.76,0.602,0.247,0.931,0.203,0.303
,0.997,0.025,0.07,0,0.203,0.979,0,0.602,0.799,0,0.203,0.979,0.241,0.025,0.97,0,0.203,0.979,-0.241,0.025,0.97,0.575,0.203,-0.792,0.47,0.602,-0.646,0.536,-0.41,-0.738,0.575,0.203,-0.792,0.375,0.025,-0.927,0.739,0.526,-0.42,0.575,0.203,-0.792,0.766,0.025,-0.643,0.931,-0.203,-0.303,0.76,-0.602,-0.247
,0.868,0.41,-0.282,0.931,-0.203,-0.303,0.997,-0.025,-0.07,0.931,-0.203,-0.303,0.848,-0.025,-0.529,-0.575,0.203,-0.792,-0.47,0.602,-0.646,-0.575,0.203,-0.792,-0.766,0.025,-0.643,-0.575,0.203,-0.792,-0.375,0.025,-0.927,0,-0.203,-0.979,0,-0.602,-0.799,0,-0.203,-0.979,0.241,-0.025,-0.97,0,-0.203,-0.979,-0.241,-0.025,-0.97
,-0.931,-0.203,-0.303,-0.848,-0.025,-0.529,-0.931,-0.203,-0.303,-0.997,-0.025,-0.07,-0.931,-0.203,-0.303,-0.76,-0.602,-0.247,-0.931,0.203,0.303,-0.997,0.025,0.07,-0.931,0.203,0.303,-0.76,0.602,0.247,-0.931,0.203,0.303,-0.848,0.025,0.529,-0.575,-0.203,0.792,-0.47,-0.602,0.646,-0.575,-0.203,0.792,-0.766,-0.025,0.643,-0.575,-0.203,0.792
,-0.375,-0.025,0.927,-0.327,-0.831,0.45,-0.47,-0.602,0.646,0.327,-0.831,0.45,0.47,-0.602,0.646,0.529,0.831,0.172,0.76,0.602,0.247,0.375,-0.025,0.927,0.327,0.831,-0.45,0.47,0.602,-0.646,0.997,0.025,0.07,0.766,0.025,-0.643,0.848,-0.025,-0.529,0.375,0.025,-0.927,-0.766,0.025,-0.643,-0.529,0.831,0.172,-0.76,0.602,0.247
,-0.241,0.025,0.97,-0.375,-0.025,0.927,0,0.831,0.556,0,0.602,0.799,0.766,-0.025,0.643,0.848,0.025,0.529,-0.375,0.025,-0.927,-0.241,-0.025,-0.97,-0.327,0.831,-0.45,-0.47,0.602,-0.646,0.529,-0.831,-0.172,0.76,-0.602,-0.247,-0.848,0.025,0.529,0,-0.831,-0.556,0,-0.602,-0.799,-0.529,-0.831,-0.172,-0.76,-0.602,-0.247
,-0.997,-0.025,-0.07,-0.997,0.025,0.07,0,0.831,0.556,-0.529,0.831,0.172,0,1,0,-0.327,0.831,-0.45,0,1,0,0.327,0.831,-0.45,0,1,0,0.529,0.831,0.172,0,1,0,-0.327,-0.831,0.45,0.327,-0.831,0.45,0,-1,0,0.529,-0.831,-0.172,0,-1,0,0,-0.831,-0.556
,0,-1,0,-0.529,-0.831,-0.172,0,-1,0,0.47,-0.602,0.646,0.375,-0.025,0.927,0.575,-0.203,0.792,0.766,-0.025,0.643,0.575,-0.203,0.792,0.76,0.602,0.247,0.997,0.025,0.07,0.931,0.203,0.303,0.848,0.025,0.529,0.931,0.203,0.303,0.241,0.025,0.97,-0.241,0.025,0.97,0,0.203,0.979,0,0.602,0.799
,0,0.203,0.979,0.375,0.025,-0.927,0.766,0.025,-0.643,0.575,0.203,-0.792,0.47,0.602,-0.646,0.575,0.203,-0.792,0.997,-0.025,-0.07,0.848,-0.025,-0.529,0.931,-0.203,-0.303,0.76,-0.602,-0.247,0.931,-0.203,-0.303,-0.766,0.025,-0.643,-0.375,0.025,-0.927,-0.575,0.203,-0.792,-0.47,0.602,-0.646,-0.575,0.203,-0.792,0.241,-0.025,-0.97
,-0.241,-0.025,-0.97,0,-0.203,-0.979,0,-0.602,-0.799,0,-0.203,-0.979,-0.997,-0.025,-0.07,-0.76,-0.602,-0.247,-0.931,-0.203,-0.303,-0.848,-0.025,-0.529,-0.931,-0.203,-0.303,-0.76,0.602,0.247,-0.848,0.025,0.529,-0.931,0.203,0.303,-0.997,0.025,0.07,-0.931,0.203,0.303,-0.766,-0.025,0.643,-0.375,-0.025,0.927,-0.575,-0.203,0.792
,-0.47,-0.602,0.646,-0.575,-0.203,0.792,-0.47,-0.602,0.646,0.47,-0.602,0.646,0.76,0.602,0.247,0.241,0.025,0.97,0.47,0.602,-0.646,0.997,-0.025,-0.07,0.766,0.025,-0.643,0.848,-0.025,-0.529,0.241,-0.025,-0.97,-0.848,-0.025,-0.529,-0.76,0.602,0.247,-0.241,0.025,0.97,-0.375,-0.025,0.927,0,0.602,0.799,0.766,-0.025,0.643
,0.848,0.025,0.529,-0.375,0.025,-0.927,-0.241,-0.025,-0.97,-0.47,0.602,-0.646,0.76,-0.602,-0.247,-0.766,-0.025,0.643,0,-0.602,-0.799,-0.76,-0.602,-0.247,-0.997,-0.025,-0.07,-0.997,0.025,0.07]
,"tangents":[0.151,0.479,0.865,1,-0.078,0.296,0.952,1,0.102,0.408,0.907,1,-0.44,0.095,0.893,1,-0.176,-0.106,0.979,1,-0.311,-0.006,0.95,1,-0.674,0.716,-0.181,1,-0.577,0.809,-0.11,1,-0.571,0.82,-0.04,1,0.042,-0.712,0.701,1,0.081,-0.807,0.585,1,0.145,-0.817,0.558,1,-0.42,0.804
,0.422,1,-0.456,0.707,0.541,1,-0.456,0.812,0.364,1,0.776,-0.48,-0.409,1,0.929,-0.298,-0.219,1,0.831,-0.41,-0.376,1,0.512,-0.275,0.814,1,0.648,-0.46,0.607,1,0.532,-0.264,0.805,1,0.064,0.275,0.959,1,-0.168,0.46,0.872,1,-0.114,0.387,0.915,1,0.897,-0.266,-0.353,1
,0.886,-0.452,-0.103,1,0.91,-0.378,-0.17,1,-0.768,0.554,-0.321,1,-0.896,0,-0.444,1,-0.769,0.555,-0.318,1,-0.06,-0.552,0.832,1,-0.136,0,0.991,1,-0.057,-0.555,0.83,1,-0.314,-0.004,0.949,1,-0.315,0,0.949,1,-0.137,-0.283,0.949,1,-0.451,0.549,0.704,1,-0.483,0
,0.876,1,-0.404,0.307,0.862,1,0.602,-0.264,0.754,1,0.664,0,0.748,1,0.766,0.046,0.641,1,-0.064,0.278,0.958,1,-0.121,0,0.993,1,-0.263,-0.032,0.964,1,0.908,-0.258,-0.33,1,0.921,0,-0.389,1,0.865,-0.454,-0.211,1,0.043,0.264,0.964,1,0.096,0,0.995,1
,-0.056,0.458,0.887,1,0.507,0,0.862,1,0.374,0.047,0.926,1,0.931,-0.279,-0.234,1,0.982,0,-0.19,1,0.998,0.031,-0.046,1,-0.522,0.654,0.547,1,-0.52,0.564,0.641,1,0.776,-0.17,-0.607,1,0.786,-0.048,-0.616,1,-0.254,0.876,0.41,1,-0.47,0.856,0.213,1,-0.233,0.97
,0.066,1,-0.159,0.965,0.21,1,0.377,-0.461,0.803,1,-0.1,-0.655,0.749,1,0.224,-0.598,0.769,1,-0.361,0.407,0.839,1,-0.074,0.357,0.931,1,-0.667,0.73,-0.152,1,-0.728,0.548,-0.413,1,0.914,-0.397,0.083,1,0.912,-0.347,-0.218,1,0.143,-0.969,0.201,1,0.257,-0.962,0.089,1
,-0.244,0.967,0.071,1,-0.411,0.797,0.443,1,0.63,-0.387,0.673,1,0.786,-0.407,0.466,1,0.82,-0.475,0.319,1,0.616,-0.276,0.738,1,0.817,-0.182,0.547,1,0.623,-0.28,0.731,1,0.339,0.181,0.923,1,0.349,0.057,0.935,1,0.445,-0.388,0.807,1,0.2,-0.408,0.891,1,0.05,-0.476
,0.878,1,0.268,-0.181,0.946,1,0.503,-0.279,0.818,1,-0.752,0.25,0.61,1,-0.619,0.298,0.727,1,0.674,-0.431,-0.6,1,0.547,-0.5,-0.671,1,-0.463,0.717,0.521,1,-0.557,0.793,0.247,1,0.744,-0.654,0.136,1,0.663,-0.598,0.45,1,-0.465,0.867,-0.18,1,-0.375,0.919,-0.117,1
,0.977,-0.208,0.043,1,0.926,-0.305,-0.223,1,-0.308,-0.006,0.951,1,-0.53,0.055,0.846,1,-0.343,0.206,0.917,1,-0.074,0.303,0.95,1,0.357,-0.675,-0.645,1,0.637,-0.613,-0.468,1,0.246,-0.263,0.933,1,0.065,-0.156,0.986,1,0.065,-0.725,0.686,1,-0.162,-0.543,0.824,1,0.363,0.429
,0.827,1,0.47,0.498,0.729,1,0.505,0.674,0.54,1,0.25,0.611,0.751,1,0.474,-0.872,0.12,1,0.353,-0.852,0.387,1,0.687,-0.645,0.334,1,0.776,-0.555,0.299,1,0.032,0.466,0.884,1,0.806,-0.592,0.034,1,0.852,0.053,-0.521,1,-0.272,0.598,0.754,1,0.477,-0.458,0.75,1
,-0.588,0.798,-0.135,1,0.891,-0.268,-0.367,1,-0.451,0.555,0.699,1,0.833,-0.058,0.551,1,-0.044,-0.565,0.824,1,0.607,-0.357,0.709,1,0.487,-0.358,0.797,1,-0.271,0.959,-0.084,1,-0.634,0.144,0.76,1,-0.19,-0.313,0.931,1,0.065,-0.307,0.949,1,0.856,-0.465,0.225,1,0.362,-0.924
,0.121,1,-0.822,0.317,-0.474,1,0.061,-0.797,0.6,1,-0.222,0.928,0.301,1,-0.476,0.475,0.74,1,0.853,-0.382,-0.355,1,-0.522,0.846,0.108,1,-0.457,0.277,0.845,1,-0.362,0.536,0.762,1,0.242,-0.047,0.969,1,0.267,-0.057,0.962,1,0.301,-0.8,0.519,1,0.567,-0.458,0.685,1
,0.995,-0.08,0.06,1,0.832,-0.467,-0.301,1,-0.364,0.078,0.928,1,-0.068,-0.067,0.995,1,0.074,0.38,0.922,1,-0.822,0.317,-0.474,1,-0.19,-0.313,0.931,1,-0.136,0,0.991,1,-0.457,0.277,0.845,1,-0.315,0,0.949,1,-0.451,0.555,0.699,1,-0.483,0,0.876,1,0.477,-0.458
,0.75,1,0.664,0,0.748,1,0.032,0.466,0.884,1,0.852,0.053,-0.521,1,0.921,0,-0.389,1,0.242,-0.047,0.969,1,0.096,0,0.995,1,0.567,-0.458,0.685,1,0.507,0,0.862,1,0.832,-0.467,-0.301,1,0.982,0,-0.19,1,-0.272,0.598,0.754,1,0.891,-0.268,-0.367,1
,0.776,-0.17,-0.607,1,-0.222,0.928,0.301,1,-0.254,0.876,0.41,1,-0.588,0.798,-0.135,1,-0.044,-0.565,0.824,1,-0.1,-0.655,0.749,1,-0.476,0.475,0.74,1,-0.361,0.407,0.839,1,-0.58,0.805,0.124,1,0.856,-0.465,0.225,1,0.914,-0.397,0.083,1,0.061,-0.797,0.6,1,0.143,-0.969
,0.201,1,-0.271,0.959,-0.084,1,0.607,-0.357,0.709,1,0.786,-0.407,0.466,1,0.833,-0.058,0.551,1,0.817,-0.182,0.547,1,0.074,0.279,0.958,1,0.487,-0.358,0.797,1,0.2,-0.408,0.891,1,0.267,-0.057,0.962,1,0.268,-0.181,0.946,1,-0.634,0.144,0.76,1,0.853,-0.382,-0.355,1
,0.674,-0.431,-0.6,1,-0.362,0.536,0.762,1,-0.463,0.717,0.521,1,0.798,-0.564,0.213,1,-0.522,0.846,0.108,1,-0.465,0.867,-0.18,1,0.995,-0.08,0.06,1,0.977,-0.208,0.043,1,-0.068,-0.067,0.995,1,-0.364,0.078,0.928,1,-0.343,0.206,0.917,1,0.441,-0.588,-0.678,1,0.357,-0.675
,-0.645,1,0.065,-0.307,0.949,1,0.301,-0.8,0.519,1,0.065,-0.725,0.686,1,0.074,0.38,0.922,1,0.363,0.429,0.827,1,0.51,0.586,0.63,1,0.362,-0.924,0.121,1,0.474,-0.872,0.12,1,0.806,-0.592,0.034,1,0.687,-0.645,0.334,1,0.806,-0.592,0.034,1,-0.272,0.598,0.754,1
,-0.588,0.798,-0.135,1,-0.58,0.805,0.124,1,0.833,-0.058,0.551,1,0.074,0.279,0.958,1,0.607,-0.357,0.709,1,0.487,-0.358,0.797,1,0.798,-0.564,0.213,1,0.441,-0.588,-0.678,1,0.065,-0.307,0.949,1,0.856,-0.465,0.225,1,0.362,-0.924,0.121,1,0.061,-0.797,0.6,1,-0.222,0.928
,0.301,1,-0.476,0.475,0.74,1,0.853,-0.382,-0.355,1,-0.522,0.846,0.108,1,-0.362,0.536,0.762,1,0.267,-0.057,0.962,1,0.51,0.586,0.63,1,0.995,-0.08,0.06,1,-0.364,0.078,0.928,1,-0.068,-0.067,0.995,1,0.074,0.38,0.922,1]
,"uvs":[0.333,0.617,0.245,0.572,0.3,0.572,0.159,0.896,0.258,0.895,0.209,0.921,0.062,0.451,0.019,0.54,0.018,0.484,0.608,0.858,0.651,0.769,0.652,0.825,0.018,0.321,0.062,0.409,0.017,0.376,0.246,0.706,0.334,0.751,0.279,0.751,0.107,0.749,0.018,0.706,0.108,0.635,0.129,0.749,0.217,0.706,0.184,0.75,0.225,0.572
,0.135,0.614,0.169,0.57,0.134,0.539,0.147,0.545,0.134,0.547,0.536,0.769,0.523,0.762,0.536,0.761,0.208,0.793,0.208,0.778,0.215,0.789,0.132,0.319,0.145,0.312,0.138,0.323,0.012,0.687,0.005,0.7,0.004,0.688,0.242,0.686,0.235,0.699,0.234,0.686,0.224,0.686,0.23,0.699,0.219,0.692,0.128,0.635,0.122,0.622
,0.133,0.629,0.114,0.621,0.116,0.634,0.338,0.637,0.344,0.624,0.346,0.637,0.227,0.704,0.224,0.71,0.232,0.566,0.233,0.572,0.011,0.481,0.016,0.477,0.014,0.547,0.012,0.541,0.101,0.616,0.11,0.618,0.106,0.622,0.187,0.757,0.181,0.757,0.064,0.441,0.068,0.445,0.166,0.563,0.173,0.563,0.656,0.762,0.658,0.768
,0.012,0.313,0.017,0.312,0.052,0.75,0.049,0.756,0.045,0.751,0.012,0.573,0.005,0.567,0.011,0.566,0.121,0.755,0.12,0.749,0.068,0.572,0.071,0.565,0.075,0.57,0.115,0.755,0.109,0.756,0.15,0.898,0.152,0.893,0.275,0.757,0.272,0.752,0.064,0.418,0.058,0.415,0.009,0.704,0.013,0.699,0.011,0.379,0.011,0.373
,0.341,0.757,0.335,0.758,0.209,0.928,0.203,0.925,0.238,0.566,0.244,0.565,0.237,0.703,0.241,0.7,0.267,0.897,0.262,0.901,0.605,0.867,0.601,0.863,0.304,0.565,0.308,0.571,0.342,0.619,0.338,0.623,0.658,0.828,0.653,0.832,0.126,0.616,0.129,0.61,0.246,0.692,0.13,0.62,0.232,0.686,0.223,0.7,0.016,0.694
,0.019,0.548,0.226,0.565,0.132,0.311,0.004,0.573,0.107,0.613,0.055,0.756,0.064,0.565,0.011,0.319,0.155,0.902,0.53,0.774,0.266,0.892,0.162,0.568,0.658,0.821,0.14,0.534,0.651,0.761,0.011,0.488,0.191,0.752,0.282,0.758,0.016,0.383,0.201,0.789,0.068,0.414,0.12,0.635,0.116,0.749,0.611,0.864,0.103,0.628
,0.342,0.752,0.333,0.631,0.237,0.571,0.215,0.925,0.297,0.565,0.14,0.534,0.53,0.774,0.523,0.762,0.201,0.789,0.208,0.778,0.132,0.311,0.145,0.312,0.016,0.694,0.005,0.7,0.246,0.692,0.232,0.686,0.23,0.699,0.12,0.635,0.122,0.622,0.103,0.628,0.114,0.621,0.333,0.631,0.344,0.624,0.223,0.7,0.226,0.565
,0.232,0.566,0.011,0.488,0.011,0.481,0.019,0.548,0.107,0.613,0.11,0.618,0.191,0.752,0.187,0.757,0.058,0.444,0.162,0.568,0.166,0.563,0.651,0.761,0.656,0.762,0.011,0.319,0.055,0.756,0.049,0.756,0.004,0.573,0.005,0.567,0.127,0.756,0.064,0.565,0.071,0.565,0.116,0.749,0.115,0.755,0.155,0.902,0.282,0.758
,0.275,0.757,0.068,0.414,0.064,0.418,0.012,0.709,0.016,0.383,0.011,0.379,0.342,0.752,0.341,0.757,0.215,0.925,0.237,0.571,0.238,0.566,0.24,0.709,0.237,0.703,0.266,0.892,0.611,0.864,0.605,0.867,0.297,0.565,0.304,0.565,0.339,0.614,0.658,0.821,0.658,0.828,0.13,0.62,0.126,0.616,0.13,0.62,0.223,0.7
,0.019,0.548,0.058,0.444,0.004,0.573,0.127,0.756,0.055,0.756,0.064,0.565,0.012,0.709,0.24,0.709,0.266,0.892,0.162,0.568,0.658,0.821,0.651,0.761,0.011,0.488,0.191,0.752,0.282,0.758,0.016,0.383,0.068,0.414,0.116,0.749,0.339,0.614,0.342,0.752,0.237,0.571,0.215,0.925,0.297,0.565]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50
,20,51,52,53,54,55,22,56,57,24,58,59,8,60,61,7,62,63,64,65,66,23,67,68,6,69,70,26,71,72,10,73,74,12,75,76,77,78,79,80,81,82,21,83,84,85,86,87,18,88,89
,3,90,91,17,92,93,13,94,95,19,96,97,14,98,99,16,100,101,5,102,103,1,104,105,15,106,107,4,108,109,9,110,111,2,112,113,0,114,115,11,116,117,25,118,119,42,115,120,121,45,47
,45,59,122,123,48,50,39,66,124,125,27,29,24,72,126,61,6,8,36,76,127,128,39,41,64,87,129,68,21,23,18,130,77,131,80,82,12,99,132,79,19,77,3,103,133,93,15,17,30,111,134
,135,33,35,25,136,26,137,10,74,27,70,138,139,30,32,7,140,8,141,22,57,16,142,17,143,13,95,33,91,144,145,36,38,48,84,146,147,20,52,9,117,148,113,0,2,20,97,149,150,53,55
,53,107,151,152,42,44,4,153,5,154,1,105,64,80,85,0,42,1,3,33,4,6,27,7,9,30,10,12,36,13,15,53,16,18,77,19,21,48,22,24,45,25,27,155,28,30,156,157,33,158,159
,36,160,161,39,162,163,42,164,43,45,165,166,48,167,168,20,169,170,53,171,172,22,173,56,24,174,175,8,176,177,7,178,62,64,179,180,23,181,182,6,183,69,26,184,185,10,186,187,12,188,75
,77,189,190,80,191,192,21,193,83,85,194,195,18,196,197,3,198,90,17,199,200,13,201,202,19,203,96,14,204,205,16,206,207,5,208,102,1,209,210,15,211,212,4,213,108,9,214,215,2,216,217
,0,218,114,11,219,220,25,221,222,42,0,115,223,25,45,45,24,59,224,22,48,39,64,66,225,7,27,24,26,72,61,226,6,36,12,76,227,80,39,64,85,87,68,228,21,18,89,229,230,85,80
,12,14,99,79,231,19,3,5,103,93,232,15,30,9,111,233,4,33,25,119,234,235,11,10,27,6,70,236,10,30,7,63,237,238,23,22,16,101,239,240,14,13,33,3,91,241,13,36,48,21,84
,242,18,20,9,11,117,113,243,0,20,19,97,244,16,53,53,15,107,245,1,42,4,109,246,247,2,1,64,39,80]
}
,{"name":"d12","id":"d12","billboardMode":0,"position":[-0.2,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false
,"positions":[-0.0593,0.0483,-0.0551,-0.0892,-0.0299,-0.0068,-0.0593,-0.0483,-0.0551,0.0483,-0.0551,-0.0593,-0.0299,-0.0068,-0.0892,-0.0483,-0.0551,-0.0593,0.0409,0,-0.085,0.0892,-0.0299,-0.0068,0.0892,0.0299,-0.0068,-0.0551,-0.0593,0.0483,-0.0068,-0.0892,-0.0299,-0.0551,-0.0593,-0.0483,-0.0892,0.0299,0.0068,-0.0593,0.0483,0.0551,-0.0409,0,0.085,0,-0.085,0.0409,-0.0299,-0.0068,0.0892
,0.0299,-0.0068,0.0892,-0.085,0.0409,0,-0.0551,0.0593,-0.0483,-0.0068,0.0892,-0.0299,-0.0299,0.0068,0.0892,0,0.085,0.0409,0.0483,0.0551,0.0593,0.0299,0.0068,-0.0892,0,0.085,-0.0409,-0.0483,0.0551,-0.0593,0.0551,0.0593,-0.0483,0.085,0.0409,0,0.0551,0.0593,0.0483,0.0551,-0.0593,0.0483,0.085,-0.0409,0,0.0551,-0.0593,-0.0483,0.0557,0.0557,0.0557
,0.0547,0.0523,0.0586,0.0557,0.0557,0.0557,0.0523,0.0586,0.0547,0.0593,0.0483,0.0551,0.0557,0.0557,0.0557,0.0586,0.0547,0.0523,0.0557,-0.0557,0.0557,0.0586,-0.0547,0.0523,0.0483,-0.0551,0.0593,0.0557,-0.0557,0.0557,0.0523,-0.0586,0.0547,0.0593,-0.0483,0.0551,0.0557,-0.0557,0.0557,0.0547,-0.0523,0.0586,0.0483,0.0551,-0.0593,0.0557,0.0557,-0.0557,0.0523,0.0586,-0.0547
,0.0593,0.0483,-0.0551,0.0557,0.0557,-0.0557,0.0547,0.0523,-0.0586,0.0557,0.0557,-0.0557,0.0586,0.0547,-0.0523,0.0557,-0.0557,-0.0557,0.0523,-0.0586,-0.0547,0.0593,-0.0483,-0.0551,0.0557,-0.0557,-0.0557,0.0586,-0.0547,-0.0523,0.0557,-0.0557,-0.0557,0.0547,-0.0523,-0.0586,-0.0551,0.0593,0.0483,-0.0557,0.0557,0.0557,-0.0586,0.0547,0.0523,-0.0483,0.0551,0.0593,-0.0557,0.0557,0.0557
,-0.0523,0.0586,0.0547,-0.0557,0.0557,0.0557,-0.0547,0.0523,0.0586,-0.0483,-0.0551,0.0593,-0.0557,-0.0557,0.0557,-0.0547,-0.0523,0.0586,-0.0557,-0.0557,0.0557,-0.0523,-0.0586,0.0547,-0.0593,-0.0483,0.0551,-0.0557,-0.0557,0.0557,-0.0586,-0.0547,0.0523,-0.0557,0.0557,-0.0557,-0.0586,0.0547,-0.0523,-0.0557,0.0557,-0.0557,-0.0547,0.0523,-0.0586,-0.0557,0.0557,-0.0557,-0.0523,0.0586,-0.0547
,-0.0557,-0.0557,-0.0557,-0.0547,-0.0523,-0.0586,-0.0557,-0.0557,-0.0557,-0.0586,-0.0547,-0.0523,-0.0557,-0.0557,-0.0557,-0.0523,-0.0586,-0.0547,0.0409,0,0.085,0.0344,0,0.0901,0.0362,0.0039,0.0885,0.0344,0,0.0901,0.0362,-0.0039,0.0885,0.0299,0.0068,0.0892,0.0344,0,0.0901,0.0299,0,0.091,-0.0344,0,0.0901,-0.0299,0,0.091,-0.0344,0,0.0901
,-0.0362,-0.0039,0.0885,-0.0344,0,0.0901,-0.0362,0.0039,0.0885,0.0344,0,-0.0901,0.0362,-0.0039,-0.0885,0.0344,0,-0.0901,0.0362,0.0039,-0.0885,0.0299,-0.0068,-0.0892,0.0344,0,-0.0901,0.0299,0,-0.091,-0.0409,0,-0.085,-0.0344,0,-0.0901,-0.0362,0.0039,-0.0885,-0.0344,0,-0.0901,-0.0362,-0.0039,-0.0885,-0.0299,0.0068,-0.0892,-0.0344,0,-0.0901
,-0.0299,0,-0.091,0.0901,0.0344,0,0.0885,0.0362,0.0039,0.0901,0.0344,0,0.0885,0.0362,-0.0039,0.0892,0.0299,0.0068,0.0901,0.0344,0,0.091,0.0299,0,0.0901,-0.0344,0,0.091,-0.0299,0,0.0901,-0.0344,0,0.0885,-0.0362,-0.0039,0.0892,-0.0299,0.0068,0.0901,-0.0344,0,0.0885,-0.0362,0.0039,-0.0901,0.0344,0,-0.0885,0.0362,-0.0039
,-0.0901,0.0344,0,-0.0885,0.0362,0.0039,-0.0892,0.0299,-0.0068,-0.0901,0.0344,0,-0.091,0.0299,0,-0.0901,-0.0344,0,-0.0885,-0.0362,-0.0039,-0.0892,-0.0299,0.0068,-0.0901,-0.0344,0,-0.091,-0.0299,0,-0.085,-0.0409,0,-0.0901,-0.0344,0,-0.0885,-0.0362,0.0039,0,0.0901,0.0344,0.0039,0.0885,0.0362,-0.0068,0.0892,0.0299,0,0.0901,0.0344
,-0.0039,0.0885,0.0362,0.0068,0.0892,0.0299,0,0.0901,0.0344,0,0.091,0.0299,0.0068,0.0892,-0.0299,0,0.0901,-0.0344,0.0039,0.0885,-0.0362,0,0.0901,-0.0344,0,0.091,-0.0299,0,0.0901,-0.0344,-0.0039,0.0885,-0.0362,-0.0068,-0.0892,0.0299,0,-0.0901,0.0344,0,-0.091,0.0299,0,-0.0901,0.0344,-0.0039,-0.0885,0.0362,0.0068,-0.0892,0.0299
,0,-0.0901,0.0344,0.0039,-0.0885,0.0362,0.0068,-0.0892,-0.0299,0,-0.0901,-0.0344,0,-0.091,-0.0299,0,-0.085,-0.0409,0,-0.0901,-0.0344,0.0039,-0.0885,-0.0362,0,-0.0901,-0.0344,-0.0039,-0.0885,-0.0362,-0.0523,-0.0586,0.0547,-0.0039,-0.0885,0.0362,-0.0586,-0.0547,-0.0523,-0.0885,-0.0362,-0.0039,0.0547,0.0523,0.0586,0.0299,0,0.091,-0.0299,0,0.091
,0.0547,0.0523,-0.0586,-0.0547,0.0523,-0.0586,0.0586,0.0547,0.0523,0.0885,0.0362,0.0039,0.091,0.0299,0,0.091,-0.0299,0,-0.0586,0.0547,0.0523,-0.0885,0.0362,0.0039,-0.0586,-0.0547,0.0523,-0.0885,-0.0362,0.0039,0.0523,0.0586,0.0547,0.0039,0.0885,0.0362,0,0.091,0.0299,0,0.091,-0.0299,0.0523,-0.0586,0.0547,0.0039,-0.0885,0.0362,0.0523,-0.0586,-0.0547
,0.0039,-0.0885,-0.0362,-0.0523,-0.0586,-0.0547,-0.0039,-0.0885,-0.0362,-0.0523,0.0586,-0.0547,-0.0039,0.0885,-0.0362,0.0299,0,-0.091,-0.0299,0,-0.091,0.0547,-0.0523,0.0586,-0.0547,-0.0523,-0.0586,-0.091,0.0299,0,-0.091,-0.0299,0,0.0586,-0.0547,0.0523,0.0885,-0.0362,0.0039,0.0547,-0.0523,-0.0586,0.0586,0.0547,-0.0523,0.0885,0.0362,-0.0039,-0.0547,0.0523,0.0586
,-0.0547,-0.0523,0.0586,0.0586,-0.0547,-0.0523,0.0885,-0.0362,-0.0039,0.0523,0.0586,-0.0547,0.0039,0.0885,-0.0362,0,-0.091,0.0299,0,-0.091,-0.0299,-0.0523,0.0586,0.0547,-0.0039,0.0885,0.0362,-0.0586,0.0547,-0.0523,-0.0885,0.0362,-0.0039,0.0523,0.0586,0.0547,0.0586,0.0547,0.0523,0.0557,0.0557,0.0557,0.0547,0.0523,0.0586,0.0557,0.0557,0.0557,0.0523,-0.0586,0.0547
,0.0547,-0.0523,0.0586,0.0557,-0.0557,0.0557,0.0586,-0.0547,0.0523,0.0557,-0.0557,0.0557,0.0547,0.0523,-0.0586,0.0586,0.0547,-0.0523,0.0557,0.0557,-0.0557,0.0523,0.0586,-0.0547,0.0557,0.0557,-0.0557,0.0586,-0.0547,-0.0523,0.0547,-0.0523,-0.0586,0.0557,-0.0557,-0.0557,0.0523,-0.0586,-0.0547,0.0557,-0.0557,-0.0557,-0.0523,0.0586,0.0547,-0.0547,0.0523,0.0586,-0.0557,0.0557,0.0557
,-0.0586,0.0547,0.0523,-0.0557,0.0557,0.0557,-0.0523,-0.0586,0.0547,-0.0586,-0.0547,0.0523,-0.0557,-0.0557,0.0557,-0.0547,-0.0523,0.0586,-0.0557,-0.0557,0.0557,-0.0547,0.0523,-0.0586,-0.0523,0.0586,-0.0547,-0.0557,0.0557,-0.0557,-0.0586,0.0547,-0.0523,-0.0557,0.0557,-0.0557,-0.0586,-0.0547,-0.0523,-0.0523,-0.0586,-0.0547,-0.0557,-0.0557,-0.0557,-0.0547,-0.0523,-0.0586,-0.0557,-0.0557,-0.0557
,0.0362,-0.0039,0.0885,0.0299,0,0.091,0.0344,0,0.0901,0.0362,0.0039,0.0885,0.0344,0,0.0901,-0.0362,-0.0039,0.0885,-0.0362,0.0039,0.0885,-0.0344,0,0.0901,-0.0299,0,0.091,-0.0344,0,0.0901,0.0362,0.0039,-0.0885,0.0299,0,-0.091,0.0344,0,-0.0901,0.0362,-0.0039,-0.0885,0.0344,0,-0.0901,-0.0362,-0.0039,-0.0885,-0.0299,0,-0.091
,-0.0344,0,-0.0901,-0.0362,0.0039,-0.0885,-0.0344,0,-0.0901,0.0885,0.0362,-0.0039,0.091,0.0299,0,0.0901,0.0344,0,0.0885,0.0362,0.0039,0.0901,0.0344,0,0.0885,-0.0362,-0.0039,0.0885,-0.0362,0.0039,0.0901,-0.0344,0,0.091,-0.0299,0,0.0901,-0.0344,0,-0.0885,0.0362,0.0039,-0.091,0.0299,0,-0.0901,0.0344,0,-0.0885,0.0362,-0.0039
,-0.0901,0.0344,0,-0.091,-0.0299,0,-0.0885,-0.0362,0.0039,-0.0901,-0.0344,0,-0.0885,-0.0362,-0.0039,-0.0901,-0.0344,0,-0.0039,0.0885,0.0362,0,0.091,0.0299,0,0.0901,0.0344,0.0039,0.0885,0.0362,0,0.0901,0.0344,0,0.091,-0.0299,-0.0039,0.0885,-0.0362,0,0.0901,-0.0344,0.0039,0.0885,-0.0362,0,0.0901,-0.0344,-0.0039,-0.0885,0.0362
,0.0039,-0.0885,0.0362,0,-0.0901,0.0344,0,-0.091,0.0299,0,-0.0901,0.0344,0.0039,-0.0885,-0.0362,-0.0039,-0.0885,-0.0362,0,-0.0901,-0.0344,0,-0.091,-0.0299,0,-0.0901,-0.0344,-0.0039,-0.0885,0.0362,-0.0885,-0.0362,-0.0039,0.0547,0.0523,0.0586,0.0362,0.0039,0.0885,0.0299,0,0.091,-0.0299,0,0.091,0.0547,0.0523,-0.0586,0.0362,0.0039,-0.0885
,-0.0547,0.0523,-0.0586,-0.0362,0.0039,-0.0885,0.0885,0.0362,0.0039,0.091,0.0299,0,0.091,-0.0299,0,-0.0885,0.0362,0.0039,-0.0885,-0.0362,0.0039,0.0523,0.0586,0.0547,0.0039,0.0885,0.0362,0,0.091,0.0299,0,0.091,-0.0299,0.0523,-0.0586,0.0547,0.0039,-0.0885,0.0362,0.0523,-0.0586,-0.0547,0.0039,-0.0885,-0.0362,-0.0523,-0.0586,-0.0547,-0.0039,-0.0885,-0.0362
,-0.0039,0.0885,-0.0362,0.0299,0,-0.091,-0.0299,0,-0.091,0.0547,-0.0523,0.0586,0.0362,-0.0039,0.0885,-0.0547,-0.0523,-0.0586,-0.0362,-0.0039,-0.0885,-0.091,0.0299,0,-0.091,-0.0299,0,0.0885,-0.0362,0.0039,0.0362,-0.0039,-0.0885,0.0885,0.0362,-0.0039,-0.0547,0.0523,0.0586,-0.0362,0.0039,0.0885,-0.0362,-0.0039,0.0885,0.0885,-0.0362,-0.0039,0.0523,0.0586,-0.0547
,0.0039,0.0885,-0.0362,0,-0.091,0.0299,0,-0.091,-0.0299,-0.0523,0.0586,0.0547,-0.0039,0.0885,0.0362,-0.0885,0.0362,-0.0039]
,"normals":[-0.804,0.182,-0.566,-0.916,-0.112,-0.385,-0.804,-0.182,-0.566,0.182,-0.566,-0.804,-0.112,-0.385,-0.916,-0.182,-0.566,-0.804,0.734,0,-0.679,0.916,-0.112,-0.385,0.916,0.112,-0.385,-0.566,-0.804,0.182,-0.385,-0.916,-0.112,-0.566,-0.804,-0.182,-0.916,0.112,0.385,-0.804,0.182,0.566,-0.734,0,0.679,0,-0.679,0.734,-0.112,-0.385,0.916
,0.112,-0.385,0.916,-0.679,0.734,0,-0.566,0.804,-0.182,-0.385,0.916,-0.112,-0.112,0.385,0.916,0,0.679,0.734,0.182,0.566,0.804,0.112,0.385,-0.916,0,0.679,-0.734,-0.182,0.566,-0.804,0.566,0.804,-0.182,0.679,0.734,0,0.566,0.804,0.182,0.566,-0.804,0.182,0.679,-0.734,0,0.566,-0.804,-0.182,0.577,0.577,0.577
,0.527,0.383,0.759,0.577,0.577,0.577,0.383,0.759,0.527,0.804,0.182,0.566,0.577,0.577,0.577,0.759,0.527,0.383,0.577,-0.577,0.577,0.759,-0.527,0.383,0.182,-0.566,0.804,0.577,-0.577,0.577,0.383,-0.759,0.527,0.804,-0.182,0.566,0.577,-0.577,0.577,0.527,-0.383,0.759,0.182,0.566,-0.804,0.577,0.577,-0.577,0.383,0.759,-0.527
,0.804,0.182,-0.566,0.577,0.577,-0.577,0.527,0.383,-0.759,0.577,0.577,-0.577,0.759,0.527,-0.383,0.577,-0.577,-0.577,0.383,-0.759,-0.527,0.804,-0.182,-0.566,0.577,-0.577,-0.577,0.759,-0.527,-0.383,0.577,-0.577,-0.577,0.527,-0.383,-0.759,-0.566,0.804,0.182,-0.577,0.577,0.577,-0.759,0.527,0.383,-0.182,0.566,0.804,-0.577,0.577,0.577
,-0.383,0.759,0.527,-0.577,0.577,0.577,-0.527,0.383,0.759,-0.182,-0.566,0.804,-0.577,-0.577,0.577,-0.527,-0.383,0.759,-0.577,-0.577,0.577,-0.383,-0.759,0.527,-0.804,-0.182,0.566,-0.577,-0.577,0.577,-0.759,-0.527,0.383,-0.577,0.577,-0.577,-0.759,0.527,-0.383,-0.577,0.577,-0.577,-0.527,0.383,-0.759,-0.577,0.577,-0.577,-0.383,0.759,-0.527
,-0.577,-0.577,-0.577,-0.527,-0.383,-0.759,-0.577,-0.577,-0.577,-0.759,-0.527,-0.383,-0.577,-0.577,-0.577,-0.383,-0.759,-0.527,0.734,0,0.679,0.357,0,0.934,0.469,0.233,0.852,0.357,0,0.934,0.469,-0.233,0.852,0.112,0.385,0.916,0.357,0,0.934,0.093,0,0.996,-0.357,0,0.934,-0.093,0,0.996,-0.357,0,0.934
,-0.469,-0.233,0.852,-0.357,0,0.934,-0.469,0.233,0.852,0.357,0,-0.934,0.469,-0.233,-0.852,0.357,0,-0.934,0.469,0.233,-0.852,0.112,-0.385,-0.916,0.357,0,-0.934,0.093,0,-0.996,-0.734,0,-0.679,-0.357,0,-0.934,-0.469,0.233,-0.852,-0.357,0,-0.934,-0.469,-0.233,-0.852,-0.112,0.385,-0.916,-0.357,0,-0.934
,-0.093,0,-0.996,0.934,0.357,0,0.852,0.469,0.233,0.934,0.357,0,0.852,0.469,-0.233,0.916,0.112,0.385,0.934,0.357,0,0.996,0.093,0,0.934,-0.357,0,0.996,-0.093,0,0.934,-0.357,0,0.852,-0.469,-0.233,0.916,-0.112,0.385,0.934,-0.357,0,0.852,-0.469,0.233,-0.934,0.357,0,-0.852,0.469,-0.233
,-0.934,0.357,0,-0.852,0.469,0.233,-0.916,0.112,-0.385,-0.934,0.357,0,-0.996,0.093,0,-0.934,-0.357,0,-0.852,-0.469,-0.233,-0.916,-0.112,0.385,-0.934,-0.357,0,-0.996,-0.093,0,-0.679,-0.734,0,-0.934,-0.357,0,-0.852,-0.469,0.233,0,0.934,0.357,0.233,0.852,0.469,-0.385,0.916,0.112,0,0.934,0.357
,-0.233,0.852,0.469,0.385,0.916,0.112,0,0.934,0.357,0,0.996,0.093,0.385,0.916,-0.112,0,0.934,-0.357,0.233,0.852,-0.469,0,0.934,-0.357,0,0.996,-0.093,0,0.934,-0.357,-0.233,0.852,-0.469,-0.385,-0.916,0.112,0,-0.934,0.357,0,-0.996,0.093,0,-0.934,0.357,-0.233,-0.852,0.469,0.385,-0.916,0.112
,0,-0.934,0.357,0.233,-0.852,0.469,0.385,-0.916,-0.112,0,-0.934,-0.357,0,-0.996,-0.093,0,-0.679,-0.734,0,-0.934,-0.357,0.233,-0.852,-0.469,0,-0.934,-0.357,-0.233,-0.852,-0.469,-0.383,-0.759,0.527,-0.233,-0.852,0.469,-0.759,-0.527,-0.383,-0.852,-0.469,-0.233,0.527,0.383,0.759,0.093,0,0.996,-0.093,0,0.996
,0.527,0.383,-0.759,-0.527,0.383,-0.759,0.759,0.527,0.383,0.852,0.469,0.233,0.996,0.093,0,0.996,-0.093,0,-0.759,0.527,0.383,-0.852,0.469,0.233,-0.759,-0.527,0.383,-0.852,-0.469,0.233,0.383,0.759,0.527,0.233,0.852,0.469,0,0.996,0.093,0,0.996,-0.093,0.383,-0.759,0.527,0.233,-0.852,0.469,0.383,-0.759,-0.527
,0.233,-0.852,-0.469,-0.383,-0.759,-0.527,-0.233,-0.852,-0.469,-0.383,0.759,-0.527,-0.233,0.852,-0.469,0.093,0,-0.996,-0.093,0,-0.996,0.527,-0.383,0.759,-0.527,-0.383,-0.759,-0.996,0.093,0,-0.996,-0.093,0,0.759,-0.527,0.383,0.852,-0.469,0.233,0.527,-0.383,-0.759,0.759,0.527,-0.383,0.852,0.469,-0.233,-0.527,0.383,0.759
,-0.527,-0.383,0.759,0.759,-0.527,-0.383,0.852,-0.469,-0.233,0.383,0.759,-0.527,0.233,0.852,-0.469,0,-0.996,0.093,0,-0.996,-0.093,-0.383,0.759,0.527,-0.233,0.852,0.469,-0.759,0.527,-0.383,-0.852,0.469,-0.233,0.383,0.759,0.527,0.759,0.527,0.383,0.577,0.577,0.577,0.527,0.383,0.759,0.577,0.577,0.577,0.383,-0.759,0.527
,0.527,-0.383,0.759,0.577,-0.577,0.577,0.759,-0.527,0.383,0.577,-0.577,0.577,0.527,0.383,-0.759,0.759,0.527,-0.383,0.577,0.577,-0.577,0.383,0.759,-0.527,0.577,0.577,-0.577,0.759,-0.527,-0.383,0.527,-0.383,-0.759,0.577,-0.577,-0.577,0.383,-0.759,-0.527,0.577,-0.577,-0.577,-0.383,0.759,0.527,-0.527,0.383,0.759,-0.577,0.577,0.577
,-0.759,0.527,0.383,-0.577,0.577,0.577,-0.383,-0.759,0.527,-0.759,-0.527,0.383,-0.577,-0.577,0.577,-0.527,-0.383,0.759,-0.577,-0.577,0.577,-0.527,0.383,-0.759,-0.383,0.759,-0.527,-0.577,0.577,-0.577,-0.759,0.527,-0.383,-0.577,0.577,-0.577,-0.759,-0.527,-0.383,-0.383,-0.759,-0.527,-0.577,-0.577,-0.577,-0.527,-0.383,-0.759,-0.577,-0.577,-0.577
,0.469,-0.233,0.852,0.093,0,0.996,0.357,0,0.934,0.469,0.233,0.852,0.357,0,0.934,-0.469,-0.233,0.852,-0.469,0.233,0.852,-0.357,0,0.934,-0.093,0,0.996,-0.357,0,0.934,0.469,0.233,-0.852,0.093,0,-0.996,0.357,0,-0.934,0.469,-0.233,-0.852,0.357,0,-0.934,-0.469,-0.233,-0.852,-0.093,0,-0.996
,-0.357,0,-0.934,-0.469,0.233,-0.852,-0.357,0,-0.934,0.852,0.469,-0.233,0.996,0.093,0,0.934,0.357,0,0.852,0.469,0.233,0.934,0.357,0,0.852,-0.469,-0.233,0.852,-0.469,0.233,0.934,-0.357,0,0.996,-0.093,0,0.934,-0.357,0,-0.852,0.469,0.233,-0.996,0.093,0,-0.934,0.357,0,-0.852,0.469,-0.233
,-0.934,0.357,0,-0.996,-0.093,0,-0.852,-0.469,0.233,-0.934,-0.357,0,-0.852,-0.469,-0.233,-0.934,-0.357,0,-0.233,0.852,0.469,0,0.996,0.093,0,0.934,0.357,0.233,0.852,0.469,0,0.934,0.357,0,0.996,-0.093,-0.233,0.852,-0.469,0,0.934,-0.357,0.233,0.852,-0.469,0,0.934,-0.357,-0.233,-0.852,0.469
,0.233,-0.852,0.469,0,-0.934,0.357,0,-0.996,0.093,0,-0.934,0.357,0.233,-0.852,-0.469,-0.233,-0.852,-0.469,0,-0.934,-0.357,0,-0.996,-0.093,0,-0.934,-0.357,-0.233,-0.852,0.469,-0.852,-0.469,-0.233,0.527,0.383,0.759,0.469,0.233,0.852,0.093,0,0.996,-0.093,0,0.996,0.527,0.383,-0.759,0.469,0.233,-0.852
,-0.527,0.383,-0.759,-0.469,0.233,-0.852,0.852,0.469,0.233,0.996,0.093,0,0.996,-0.093,0,-0.852,0.469,0.233,-0.852,-0.469,0.233,0.383,0.759,0.527,0.233,0.852,0.469,0,0.996,0.093,0,0.996,-0.093,0.383,-0.759,0.527,0.233,-0.852,0.469,0.383,-0.759,-0.527,0.233,-0.852,-0.469,-0.383,-0.759,-0.527,-0.233,-0.852,-0.469
,-0.233,0.852,-0.469,0.093,0,-0.996,-0.093,0,-0.996,0.527,-0.383,0.759,0.469,-0.233,0.852,-0.527,-0.383,-0.759,-0.469,-0.233,-0.852,-0.996,0.093,0,-0.996,-0.093,0,0.852,-0.469,0.233,0.469,-0.233,-0.852,0.852,0.469,-0.233,-0.527,0.383,0.759,-0.469,0.233,0.852,-0.469,-0.233,0.852,0.852,-0.469,-0.233,0.383,0.759,-0.527
,0.233,0.852,-0.469,0,-0.996,0.093,0,-0.996,-0.093,-0.383,0.759,0.527,-0.233,0.852,0.469,-0.852,0.469,-0.233]
,"tangents":[-0.498,0.316,0.808,1,-0.4,0.326,0.857,1,-0.594,0.299,0.747,1,0.789,-0.404,0.463,1,0.798,-0.584,0.147,1,0.794,-0.567,0.22,1,0.645,0.311,0.698,1,0.4,0.317,0.86,1,0.339,0.296,0.893,1,-0.607,0.556,0.568,1,-0.778,0.256,0.574,1,-0.724,0.379,0.577,1,-0.339,0.294
,-0.894,1,-0.501,0.306,-0.81,1,-0.645,0.31,-0.698,1,1,0.003,0.002,1,0.994,-0.045,0.103,1,0.994,0.05,-0.101,1,0.432,0.399,-0.808,1,0.569,0.221,-0.792,1,0.586,0.148,-0.797,1,0.323,-0.858,0.4,1,0.314,-0.697,0.644,1,0.312,-0.809,0.499,1,0.299,-0.892,-0.338,1
,0.315,-0.697,-0.644,1,0.298,-0.747,-0.594,1,0.81,-0.501,0.306,1,0.699,-0.645,0.309,1,0.749,-0.594,0.293,1,-0.749,-0.594,-0.293,1,-0.698,-0.645,-0.311,1,-0.809,-0.501,-0.308,1,0.312,-0.809,0.498,1,0.222,-0.924,0.312,1,0.6,-0.78,0.179,1,0.758,-0.584,0.29,1,-0.459,0.795
,0.396,1,-0.769,0.623,0.146,1,-0.641,0.706,0.301,1,-0.599,-0.78,-0.182,1,-0.495,-0.849,-0.187,1,0.983,0.106,-0.148,1,0.815,0.365,-0.45,1,0.921,0.266,-0.286,1,-0.215,0.799,0.561,1,-0.033,0.69,0.723,1,-0.227,0.797,0.559,1,0.311,-0.809,-0.499,1,0.31,-0.809,-0.499,1
,0.381,-0.649,-0.658,1,0.501,0.307,0.809,1,0.502,0.306,0.809,1,0.662,0.376,0.649,1,0.809,-0.503,0.306,1,0.649,-0.662,0.375,1,-0.809,-0.5,-0.309,1,-0.924,-0.32,-0.21,1,0.594,0.295,0.748,1,0.782,0.188,0.594,1,0.587,0.3,0.752,1,0.619,-0.152,0.771,1,0.701,-0.309
,0.642,1,0.406,0.464,-0.787,1,0.157,0.772,-0.616,1,0.146,0.711,-0.688,1,0.297,-0.748,0.594,1,0.184,-0.597,0.781,1,0.188,-0.494,0.849,1,-0.503,0.305,-0.808,1,-0.662,0.376,-0.649,1,0.983,-0.1,0.152,1,0.815,-0.359,0.456,1,0.85,-0.265,0.456,1,-0.401,0.816,0.415,1
,-0.564,0.643,0.518,1,-0.594,0.291,-0.75,1,-0.779,0.179,-0.6,1,-0.583,0.288,-0.76,1,-0.495,0.314,0.81,1,-0.309,0.226,0.924,1,0.183,-0.598,-0.781,1,0.294,-0.755,-0.585,1,0.727,0.041,-0.685,1,0.749,-0.079,-0.658,1,-0.782,0.186,0.595,1,-0.849,0.192,0.492,1,-0.806,0.288
,0.518,1,-0.635,0.469,0.614,1,0.686,-0.727,0.041,1,0.794,-0.562,0.233,1,-0.393,0.815,0.426,1,-0.532,0.822,0.203,1,-0.622,0.771,0.132,1,0.93,0.094,-0.355,1,0.882,0.171,-0.439,1,0.296,-0.893,0.338,1,0.186,-0.98,-0.071,1,0.27,-0.963,-0.025,1,0.931,-0.084,0.356,1
,0.995,-0.035,0.093,1,-0.886,0.317,-0.338,1,-0.875,0.253,-0.413,1,0.396,-0.905,0.151,1,0.326,-0.851,0.412,1,0.886,0.318,0.338,1,0.875,0.254,0.412,1,0.187,-0.98,0.072,1,0.218,-0.965,-0.144,1,0.807,-0.503,0.31,1,0.807,-0.505,0.308,1,0.832,-0.55,0.078,1,-0.644,0.317
,0.697,1,-0.884,0.323,0.338,1,-0.773,0.359,0.523,1,0.697,-0.665,-0.266,1,0.681,-0.71,-0.181,1,0.323,-0.858,-0.4,1,0.395,-0.906,-0.151,1,0.36,-0.932,-0.034,1,0.339,-0.887,0.315,1,0.413,-0.875,0.251,1,-0.071,0.186,0.98,1,0.146,0.214,0.966,1,-0.308,0.812,0.497,1
,-0.31,0.811,0.496,1,-0.078,0.838,0.54,1,0.149,0.391,0.908,1,0.033,0.356,0.934,1,-0.338,-0.886,-0.318,1,-0.523,-0.775,-0.354,1,-0.143,0.805,0.576,1,0.27,0.706,0.655,1,0.187,0.687,0.702,1,0.206,0.54,-0.816,1,0.436,0.389,-0.811,1,0.07,0.184,-0.98,1,-0.147,0.212
,-0.966,1,-0.338,0.299,0.892,1,0.072,0.19,0.979,1,0.026,0.273,0.962,1,-0.153,0.399,0.904,1,-0.413,0.329,0.85,1,-0.4,0.315,-0.861,1,-0.149,0.391,-0.908,1,-0.033,0.356,-0.934,1,-0.593,0.548,0.591,1,-0.286,0.749,0.597,1,-0.291,0.793,0.535,1,0.32,-0.338,0.885,1
,0.356,-0.523,0.774,1,0.504,0.31,-0.806,1,0.504,0.308,-0.807,1,0.432,0.523,-0.735,1,0.86,-0.4,0.316,1,0.909,-0.148,0.389,1,0.935,-0.033,0.353,1,0.894,-0.339,0.294,1,0.981,0.07,0.183,1,0.966,-0.146,0.214,1,0.666,-0.266,-0.697,1,0.617,-0.073,-0.784,1,0.32,-0.338
,-0.885,1,0.256,-0.412,-0.875,1,-0.716,0.373,0.59,1,-0.74,0.24,0.629,1,-0.778,0.058,0.626,1,1,0.002,0.005,1,0.972,-0.185,0.147,1,-0.86,-0.4,-0.318,1,-0.907,-0.15,-0.394,1,-0.854,-0.41,-0.321,1,-0.894,-0.339,-0.294,1,-0.98,0.071,-0.185,1,-0.963,0.025,-0.268,1
,0.809,-0.432,0.399,1,0.814,-0.207,0.542,1,0.763,-0.14,0.632,1,-0.868,-0.177,0.464,1,-0.883,-0.017,0.469,1,0.92,-0.262,0.291,1,-0.675,0.489,0.552,1,-0.586,0.296,0.754,1,-0.503,0.609,0.614,1,-0.702,0.699,0.135,1,0.995,0.041,-0.093,1,0.36,-0.932,0.034,1,0.223,-0.924
,-0.311,1,-0.655,0.386,0.649,1,0.495,-0.849,0.185,1,-0.523,0.74,0.424,1,-0.025,0.272,0.962,1,0.074,0.793,0.604,1,-0.315,0.218,-0.924,1,0.139,0.631,-0.763,1,-0.339,0.822,0.459,1,-0.409,0.319,-0.855,1,0.384,-0.649,0.657,1,0.854,-0.409,0.32,1,0.548,0.078,-0.833,1
,0.963,0.025,0.269,1,-0.758,-0.584,-0.29,1,0.972,0.189,-0.139,1,0.691,-0.143,0.708,1,-0.966,-0.147,-0.212,1,-0.88,0.126,0.458,1,0.812,-0.435,0.388,1,0.189,-0.494,-0.849,1,0.712,-0.179,-0.679,1,0.274,-0.961,0.026,1,0.785,-0.615,-0.073,1,0.849,0.273,-0.452,1,0.66,-0.747
,-0.081,1,0.025,0.271,-0.962,1,-0.034,0.363,0.931,1,0.087,0.665,0.742,1,-0.413,-0.875,-0.253,1,0.849,0.184,0.496,1,0.313,0.22,0.924,1,0.523,-0.776,0.352,1,0.294,-0.756,0.585,1,-0.849,0.185,-0.495,1,-0.649,-0.653,-0.389,1,0.41,0.32,0.854,1,0.924,-0.314,0.219,1
,0.358,-0.523,-0.773,1,-0.933,-0.033,-0.357,1,-0.829,-0.052,0.557,1,0.315,0.643,-0.698,1,0.255,-0.412,0.875,1,0.563,0.236,-0.792,1,-0.144,0.216,0.966,1,0.384,-0.649,0.657,1,0.495,-0.849,0.185,1,0.6,-0.78,0.179,1,-0.702,0.699,0.135,1,-0.769,0.623,0.146,1,-0.758,-0.584
,-0.29,1,0.849,0.273,-0.452,1,0.815,0.365,-0.45,1,0.087,0.665,0.742,1,-0.033,0.69,0.723,1,0.223,-0.924,-0.311,1,0.313,0.22,0.924,1,0.502,0.306,0.809,1,0.924,-0.314,0.219,1,0.809,-0.503,0.306,1,-0.649,-0.653,-0.389,1,0.849,0.184,0.496,1,0.782,0.188,0.594,1
,0.691,-0.143,0.708,1,0.619,-0.152,0.771,1,0.315,0.643,-0.698,1,0.294,-0.756,0.585,1,0.184,-0.597,0.781,1,-0.315,0.218,-0.924,1,-0.503,0.305,-0.808,1,0.92,-0.262,0.291,1,-0.339,0.822,0.459,1,-0.401,0.816,0.415,1,-0.849,0.185,-0.495,1,-0.779,0.179,-0.6,1,-0.655,0.386
,0.649,1,0.189,-0.494,-0.849,1,0.183,-0.598,-0.781,1,0.563,0.236,-0.792,1,0.727,0.041,-0.685,1,-0.586,0.296,0.754,1,-0.88,0.126,0.458,1,-0.806,0.288,0.518,1,0.66,-0.747,-0.081,1,0.686,-0.727,0.041,1,-0.381,0.817,0.433,1,0.995,0.041,-0.093,1,0.93,0.094,-0.355,1
,0.215,-0.966,0.145,1,0.186,-0.98,-0.071,1,0.882,-0.162,0.442,1,-0.776,0.352,-0.523,1,-0.886,0.317,-0.338,1,0.36,-0.932,0.034,1,0.396,-0.905,0.151,1,0.776,0.352,0.523,1,0.274,-0.961,0.026,1,0.187,-0.98,0.072,1,0.736,-0.43,0.523,1,0.807,-0.505,0.308,1,-0.874,0.26
,0.41,1,0.785,-0.615,-0.073,1,0.697,-0.665,-0.266,1,0.326,-0.851,-0.412,1,0.395,-0.906,-0.151,1,0.523,-0.776,0.352,1,-0.025,0.272,0.962,1,-0.071,0.186,0.98,1,-0.523,0.74,0.424,1,-0.31,0.811,0.496,1,0.41,0.32,0.854,1,-0.413,-0.875,-0.253,1,-0.338,-0.886,-0.318,1
,0.074,0.793,0.604,1,0.27,0.706,0.655,1,0.139,0.631,-0.763,1,0.025,0.271,-0.962,1,0.07,0.184,-0.98,1,-0.144,0.216,0.966,1,0.072,0.19,0.979,1,-0.034,0.363,0.931,1,-0.409,0.319,-0.855,1,-0.149,0.391,-0.908,1,-0.503,0.609,0.614,1,-0.286,0.749,0.597,1,0.255,-0.412
,0.875,1,0.548,0.078,-0.833,1,0.504,0.308,-0.807,1,0.854,-0.409,0.32,1,0.909,-0.148,0.389,1,0.963,0.025,0.269,1,0.712,-0.179,-0.679,1,0.666,-0.266,-0.697,1,0.358,-0.523,-0.773,1,0.32,-0.338,-0.885,1,-0.675,0.489,0.552,1,0.972,0.189,-0.139,1,1,0.002,0.005,1
,-0.933,-0.033,-0.357,1,-0.907,-0.15,-0.394,1,-0.966,-0.147,-0.212,1,0.812,-0.435,0.388,1,0.814,-0.207,0.542,1,-0.829,-0.052,0.557,1,-0.868,-0.177,0.464,1,-0.675,0.489,0.552,1,-0.503,0.609,0.614,1,-0.702,0.699,0.135,1,0.215,-0.966,0.145,1,0.995,0.041,-0.093,1,0.36,-0.932
,0.034,1,0.223,-0.924,-0.311,1,0.776,0.352,0.523,1,-0.655,0.386,0.649,1,0.326,-0.851,-0.412,1,-0.523,0.74,0.424,1,-0.025,0.272,0.962,1,0.074,0.793,0.604,1,0.139,0.631,-0.763,1,-0.409,0.319,-0.855,1,0.384,-0.649,0.657,1,0.854,-0.409,0.32,1,0.548,0.078,-0.833,1
,0.963,0.025,0.269,1,-0.758,-0.584,-0.29,1,0.972,0.189,-0.139,1,0.691,-0.143,0.708,1,-0.966,-0.147,-0.212,1,-0.88,0.126,0.458,1,0.812,-0.435,0.388,1,0.712,-0.179,-0.679,1,0.274,-0.961,0.026,1,0.785,-0.615,-0.073,1,0.849,0.273,-0.452,1,-0.381,0.817,0.433,1,0.66,-0.747
,-0.081,1,-0.874,0.26,0.41,1,0.025,0.271,-0.962,1,-0.034,0.363,0.931,1,-0.413,-0.875,-0.253,1,0.736,-0.43,0.523,1,0.523,-0.776,0.352,1,0.294,-0.756,0.585,1,-0.776,0.352,-0.523,1,0.882,-0.162,0.442,1,0.41,0.32,0.854,1,0.924,-0.314,0.219,1,0.358,-0.523,-0.773,1
,-0.933,-0.033,-0.357,1,-0.829,-0.052,0.557,1,0.315,0.643,-0.698,1,0.255,-0.412,0.875,1,-0.144,0.216,0.966,1]
,"uvs":[0.828,0.698,0.86,0.798,0.795,0.798,0.817,0.682,0.712,0.682,0.732,0.62,0.839,0.683,0.924,0.621,0.944,0.683,0.987,0.485,0.886,0.452,0.925,0.4,0.449,0.948,0.396,0.986,0.344,0.947,0.826,0.918,0.794,0.817,0.859,0.817,0.898,0.742,0.963,0.741,0.983,0.803,0.93,0.989,0.845,0.927,0.898,0.889,0.685,0.951
,0.58,0.951,0.6,0.889,0.749,0.885,0.801,0.923,0.781,0.985,0.482,0.986,0.462,0.924,0.515,0.886,0.898,0.88,0.902,0.883,0.786,0.993,0.781,0.993,0.775,0.805,0.784,0.807,0.78,0.811,0.477,0.993,0.475,0.988,0.879,0.879,0.887,0.882,0.883,0.886,0.689,0.743,0.684,0.736,0.689,0.735,0.633,0.989,0.633,0.998
,0.628,0.995,0.891,0.721,0.891,0.73,0.887,0.727,0.749,0.876,0.753,0.879,0.515,0.877,0.519,0.879,0.859,0.621,0.853,0.613,0.858,0.613,0.826,0.685,0.822,0.688,0.878,0.804,0.869,0.806,0.87,0.801,0.865,0.989,0.859,0.997,0.857,0.992,0.396,0.995,0.392,0.992,0.773,0.879,0.765,0.882,0.766,0.877,0.994,0.49
,0.989,0.492,0.364,0.885,0.358,0.878,0.364,0.878,0.828,0.689,0.832,0.692,0.595,0.882,0.6,0.882,0.968,0.734,0.97,0.738,0.79,0.805,0.788,0.8,0.922,0.391,0.927,0.392,0.727,0.613,0.732,0.612,0.754,0.743,0.76,0.736,0.762,0.74,0.864,0.81,0.866,0.815,0.95,0.928,0.959,0.925,0.958,0.93,0.789,0.81
,0.794,0.81,0.335,0.95,0.336,0.945,0.935,0.997,0.93,0.997,0.83,0.685,0.831,0.68,0.694,0.953,0.69,0.957,0.764,0.721,0.764,0.73,0.76,0.727,0.775,0.736,0.767,0.733,0.77,0.73,0.703,0.685,0.705,0.68,0.665,0.889,0.67,0.882,0.672,0.886,0.81,0.921,0.809,0.926,0.952,0.686,0.948,0.689,0.723,0.843
,0.723,0.852,0.718,0.85,0.929,0.614,0.931,0.618,0.454,0.921,0.458,0.918,0.67,0.805,0.661,0.808,0.662,0.803,0.893,0.734,0.898,0.734,0.458,0.951,0.454,0.954,0.881,0.736,0.889,0.734,0.888,0.739,0.865,0.805,0.86,0.806,0.429,0.886,0.434,0.879,0.436,0.883,0.987,0.42,0.994,0.415,0.995,0.42,0.836,0.925
,0.84,0.921,0.931,0.841,0.931,0.851,0.926,0.848,0.716,0.985,0.711,0.993,0.709,0.988,0.696,0.923,0.688,0.92,0.692,0.917,0.992,0.806,0.988,0.809,0.571,0.954,0.572,0.949,0.925,0.505,0.922,0.513,0.918,0.509,0.826,0.927,0.821,0.924,0.548,0.986,0.553,0.993,0.548,0.993,0.568,0.924,0.576,0.921,0.575,0.926
,0.797,0.62,0.803,0.613,0.805,0.618,0.877,0.452,0.88,0.448,0.769,0.885,0.927,0.512,0.795,0.805,0.989,0.413,0.782,0.802,0.859,0.81,0.937,0.992,0.637,0.995,0.824,0.692,0.788,0.988,0.727,0.849,0.951,0.681,0.665,0.811,0.401,0.992,0.891,0.739,0.994,0.485,0.429,0.878,0.893,0.883,0.716,0.993,0.935,0.848
,0.689,0.925,0.482,0.994,0.83,0.924,0.825,0.68,0.572,0.918,0.919,0.395,0.798,0.612,0.593,0.887,0.991,0.801,0.693,0.948,0.707,0.688,0.886,0.877,0.725,0.617,0.456,0.946,0.867,0.801,0.682,0.741,0.455,0.926,0.851,0.618,0.895,0.727,0.806,0.917,0.865,0.997,0.356,0.883,0.511,0.879,0.924,0.613,0.745,0.879
,0.575,0.957,0.555,0.988,0.88,0.456,0.873,0.81,0.837,0.93,0.963,0.733,0.885,0.73,0.893,0.883,0.788,0.988,0.786,0.993,0.782,0.802,0.784,0.807,0.482,0.994,0.886,0.877,0.887,0.882,0.682,0.741,0.684,0.736,0.637,0.995,0.895,0.727,0.891,0.73,0.745,0.879,0.749,0.876,0.511,0.879,0.851,0.618,0.853,0.613
,0.825,0.68,0.826,0.685,0.873,0.81,0.865,0.997,0.859,0.997,0.401,0.992,0.396,0.995,0.769,0.885,0.994,0.485,0.994,0.49,0.356,0.883,0.358,0.878,0.824,0.692,0.593,0.887,0.595,0.882,0.963,0.733,0.968,0.734,0.795,0.805,0.919,0.395,0.922,0.391,0.725,0.617,0.727,0.613,0.754,0.735,0.859,0.81,0.864,0.81
,0.955,0.921,0.959,0.925,0.787,0.815,0.339,0.953,0.335,0.95,0.937,0.992,0.935,0.997,0.834,0.689,0.693,0.948,0.694,0.953,0.769,0.727,0.764,0.73,0.768,0.738,0.707,0.688,0.703,0.685,0.665,0.881,0.67,0.882,0.806,0.917,0.951,0.681,0.952,0.686,0.727,0.849,0.723,0.852,0.924,0.613,0.455,0.926,0.454,0.921
,0.665,0.811,0.661,0.808,0.891,0.739,0.456,0.946,0.458,0.951,0.885,0.73,0.889,0.734,0.867,0.801,0.429,0.878,0.434,0.879,0.989,0.413,0.994,0.415,0.837,0.93,0.935,0.848,0.931,0.851,0.716,0.993,0.711,0.993,0.689,0.925,0.991,0.801,0.992,0.806,0.575,0.957,0.571,0.954,0.927,0.512,0.83,0.924,0.826,0.927
,0.555,0.988,0.553,0.993,0.572,0.918,0.798,0.612,0.803,0.613,0.88,0.456,0.877,0.452,0.927,0.512,0.989,0.413,0.782,0.802,0.955,0.921,0.859,0.81,0.937,0.992,0.637,0.995,0.834,0.689,0.824,0.692,0.665,0.881,0.727,0.849,0.951,0.681,0.665,0.811,0.891,0.739,0.429,0.878,0.893,0.883,0.716,0.993,0.935,0.848
,0.689,0.925,0.482,0.994,0.83,0.924,0.825,0.68,0.572,0.918,0.919,0.395,0.798,0.612,0.991,0.801,0.693,0.948,0.707,0.688,0.886,0.877,0.754,0.735,0.725,0.617,0.768,0.738,0.456,0.946,0.867,0.801,0.455,0.926,0.769,0.727,0.806,0.917,0.865,0.997,0.339,0.953,0.787,0.815,0.924,0.613,0.745,0.879,0.575,0.957
,0.555,0.988,0.88,0.456,0.873,0.81,0.837,0.93,0.885,0.73]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,23,33,34,29,35,36,37,38,39,30,40,41,42,43,44,45,46,47
,48,49,50,51,52,53,27,54,55,32,56,57,58,59,60,3,61,62,63,64,65,66,67,68,13,69,70,71,72,73,9,74,75,76,77,78,0,79,80,26,81,82,19,83,84,2,85,86,11,87,88
,5,89,90,91,92,93,17,94,95,96,97,98,16,99,100,14,101,102,21,103,104,6,105,106,24,107,108,109,110,111,112,113,114,4,115,116,117,118,119,28,120,121,8,122,123,124,125,126,7,127,128
,31,129,130,131,132,133,18,134,135,12,136,137,138,139,140,1,141,142,143,144,145,146,147,148,22,149,150,151,152,153,154,155,156,157,158,159,20,160,161,25,162,163,164,165,166,15,167,168,169,170,171
,172,173,174,175,176,177,10,178,179,71,168,180,181,9,75,2,142,182,183,11,88,91,184,37,34,96,23,16,185,17,186,96,98,24,187,48,53,6,51,112,188,0,82,117,26,29,121,189,190,37,39
,7,191,8,192,124,126,13,137,193,194,63,65,9,148,195,196,76,78,22,197,23,198,29,36,20,199,151,200,154,156,169,201,30,202,42,44,175,203,3,204,32,57,10,205,11,206,5,90,26,163,207
,208,19,84,117,209,24,210,109,111,17,211,42,47,91,45,4,212,5,86,112,2,143,213,12,214,138,140,45,133,215,216,30,41,58,106,217,62,109,3,51,123,218,219,27,55,21,220,66,70,14,13
,76,102,221,73,16,71,32,130,222,223,58,60,157,224,27,225,48,50,172,226,169,227,164,166,151,228,63,229,66,68,19,135,230,231,0,80,131,45,91,2,112,0,0,138,1,5,175,3,3,109,4
,8,51,6,6,58,7,11,146,9,9,164,10,14,76,143,143,12,14,17,42,15,15,71,16,151,63,20,63,18,20,23,96,21,21,66,22,26,117,24,24,48,25,29,154,157,157,27,29,32,172,169
,169,30,32,23,232,33,29,233,234,37,235,236,30,237,40,42,238,239,45,240,241,48,242,49,51,243,244,27,245,246,32,247,56,58,248,249,3,250,251,63,252,64,66,253,254,13,255,256,71,257,72
,9,258,259,76,260,261,0,262,79,26,263,264,19,265,266,2,267,85,11,268,269,5,270,271,91,272,92,17,273,274,96,275,276,16,277,99,14,278,279,21,280,281,6,282,105,24,283,284,109,285,286
,112,287,113,4,288,289,117,290,291,28,292,120,8,293,294,124,295,296,7,297,127,31,298,299,131,300,301,18,302,134,12,303,304,138,305,306,1,307,141,143,308,309,146,310,311,22,312,149,151,313,314
,154,315,316,157,317,158,20,318,319,25,320,321,164,322,165,15,323,324,169,325,326,172,327,173,175,328,329,10,330,331,71,15,168,332,164,9,2,1,142,333,146,11,91,93,334,34,335,96,16,100,336
,337,21,96,24,108,338,53,339,6,112,114,340,82,341,117,29,28,121,342,124,37,7,128,343,344,131,124,13,12,137,345,18,63,9,146,148,346,143,76,22,150,347,348,154,29,20,161,349,350,157,154
,169,171,351,352,15,42,175,177,353,354,172,32,10,179,355,356,175,5,26,25,163,357,20,19,117,119,358,359,4,109,17,95,360,47,361,91,4,116,362,86,363,112,143,145,364,365,1,138,45,131,133
,366,31,30,58,6,106,62,367,109,51,8,123,368,28,27,21,104,369,70,370,14,76,14,102,73,371,16,32,31,130,372,7,58,157,159,373,374,25,48,172,174,375,376,10,164,151,153,377,378,22,66
,19,18,135,379,138,0,37,124,91,124,131,91]
}
,{"name":"d20","id":"d20","billboardMode":0,"position":[-0.4,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false
,"positions":[0.0807,0,0.0637,0.0069,-0.0456,0.0919,0.0069,0.0456,0.0919,0.085,0.0112,0.0568,0.0112,0.0568,0.085,0.0568,0.085,0.0112,-0.085,0.0112,-0.0568,-0.0112,0.0568,-0.085,-0.0568,0.085,-0.0112,0.085,0.0112,-0.0568,0.0568,0.085,-0.0112,0.0112,0.0568,-0.085,0.0807,0,-0.0637,0.0069,0.0456,-0.0919,0.0069,-0.0456,-0.0919,-0.0637,0.0807,0,-0.0919,0.0069,0.0456
,-0.0919,0.0069,-0.0456,-0.0807,0,-0.0637,-0.0069,-0.0456,-0.0919,-0.0069,0.0456,-0.0919,0,0.0637,-0.0807,0.0456,0.0919,-0.0069,-0.0456,0.0919,-0.0069,-0.0637,-0.0807,0,-0.0919,-0.0069,-0.0456,-0.0919,-0.0069,0.0456,-0.085,-0.0112,0.0568,-0.0112,-0.0568,0.085,-0.0568,-0.085,0.0112,0.085,-0.0112,-0.0568,0.0112,-0.0568,-0.085,0.0568,-0.085,-0.0112,-0.085,-0.0112,-0.0568
,-0.0568,-0.085,-0.0112,-0.0112,-0.0568,-0.085,0.085,-0.0112,0.0568,0.0568,-0.085,0.0112,0.0112,-0.0568,0.085,0.0637,0.0807,0,0.0919,0.0069,-0.0456,0.0919,0.0069,0.0456,-0.085,0.0112,0.0568,-0.0568,0.085,0.0112,-0.0112,0.0568,0.085,-0.0807,0,0.0637,-0.0069,0.0456,0.0919,-0.0069,-0.0456,0.0919,0,-0.0637,-0.0807,-0.0456,-0.0919,-0.0069,0.0456,-0.0919,-0.0069
,0,0.0637,0.0807,-0.0456,0.0919,0.0069,0.0456,0.0919,0.0069,0,-0.0637,0.0807,0.0456,-0.0919,0.0069,-0.0456,-0.0919,0.0069,0.0919,-0.0069,0.0456,0.0901,0,0.0557,0.093,0,0.0456,0.0901,0,0.0557,0.0893,-0.0096,0.0515,0.0901,0,0.0557,0.0834,-0.0059,0.0611,0.0901,0,0.0557,0.0834,0.0059,0.0611,0.0901,0,0.0557,0.0893,0.0096,0.0515
,-0.0901,0,0.0557,-0.0893,-0.0096,0.0515,-0.0901,0,0.0557,-0.093,0,0.0456,-0.0901,0,0.0557,-0.0893,0.0096,0.0515,-0.0901,0,0.0557,-0.0834,0.0059,0.0611,-0.0901,0,0.0557,-0.0834,-0.0059,0.0611,0.0919,-0.0069,-0.0456,0.0901,0,-0.0557,0.0893,-0.0096,-0.0515,0.0901,0,-0.0557,0.093,0,-0.0456,0.0901,0,-0.0557,0.0893,0.0096,-0.0515
,0.0901,0,-0.0557,0.0834,0.0059,-0.0611,0.0901,0,-0.0557,0.0834,-0.0059,-0.0611,-0.0901,0,-0.0557,-0.093,0,-0.0456,-0.0901,0,-0.0557,-0.0893,-0.0096,-0.0515,-0.0901,0,-0.0557,-0.0834,-0.0059,-0.0611,-0.0901,0,-0.0557,-0.0834,0.0059,-0.0611,-0.0901,0,-0.0557,-0.0893,0.0096,-0.0515,0.0557,0.0901,0,0.0611,0.0834,0.0059,0.0557,0.0901,0
,0.0515,0.0893,0.0096,0.0557,0.0901,0,0.0456,0.093,0,0.0557,0.0901,0,0.0515,0.0893,-0.0096,0.0557,0.0901,0,0.0611,0.0834,-0.0059,0.0557,-0.0901,0,0.0515,-0.0893,0.0096,0.0637,-0.0807,0,0.0557,-0.0901,0,0.0611,-0.0834,0.0059,0.0557,-0.0901,0,0.0611,-0.0834,-0.0059,0.0557,-0.0901,0,0.0515,-0.0893,-0.0096,0.0557,-0.0901,0
,0.0456,-0.093,0,-0.0557,0.0901,0,-0.0515,0.0893,0.0096,-0.0557,0.0901,0,-0.0611,0.0834,0.0059,-0.0557,0.0901,0,-0.0611,0.0834,-0.0059,-0.0557,0.0901,0,-0.0515,0.0893,-0.0096,-0.0557,0.0901,0,-0.0456,0.093,0,-0.0557,-0.0901,0,-0.0611,-0.0834,0.0059,-0.0557,-0.0901,0,-0.0515,-0.0893,0.0096,-0.0557,-0.0901,0,-0.0456,-0.093,0
,-0.0557,-0.0901,0,-0.0515,-0.0893,-0.0096,-0.0557,-0.0901,0,-0.0611,-0.0834,-0.0059,0,0.0557,0.0901,0.0096,0.0515,0.0893,0,0.0557,0.0901,0,0.0456,0.093,0,0.0557,0.0901,-0.0096,0.0515,0.0893,0,0.0557,0.0901,-0.0059,0.0611,0.0834,0,0.0557,0.0901,0.0059,0.0611,0.0834,0,0.0557,-0.0901,-0.0096,0.0515,-0.0893,0,0.0557,-0.0901
,0,0.0456,-0.093,0,0.0557,-0.0901,0.0096,0.0515,-0.0893,0,0.0557,-0.0901,0.0059,0.0611,-0.0834,0,0.0557,-0.0901,-0.0059,0.0611,-0.0834,0,-0.0557,0.0901,0,-0.0456,0.093,0,-0.0557,0.0901,0.0096,-0.0515,0.0893,0,-0.0557,0.0901,0.0059,-0.0611,0.0834,0,-0.0557,0.0901,-0.0059,-0.0611,0.0834,0,-0.0557,0.0901,-0.0096,-0.0515,0.0893
,0,-0.0557,-0.0901,0,-0.0456,-0.093,0,-0.0557,-0.0901,-0.0096,-0.0515,-0.0893,0,-0.0557,-0.0901,-0.0059,-0.0611,-0.0834,0,-0.0557,-0.0901,0.0059,-0.0611,-0.0834,0,-0.0557,-0.0901,0.0096,-0.0515,-0.0893,0,0.0456,-0.093,0,-0.0456,-0.093,0.093,0,0.0456,0.093,0,-0.0456,-0.093,0,0.0456,-0.093,0,-0.0456,0.0893,0.0096,0.0515
,0.0893,-0.0096,0.0515,-0.0893,0.0096,0.0515,-0.0611,0.0834,0.0059,-0.0893,-0.0096,0.0515,0.0834,0.0059,0.0611,0.0096,0.0515,0.0893,0.0834,0.0059,-0.0611,0.0834,-0.0059,0.0611,0.0096,-0.0515,0.0893,0.0834,-0.0059,-0.0611,0.0096,-0.0515,-0.0893,0.0893,0.0096,-0.0515,0.0611,0.0834,-0.0059,0.0893,-0.0096,-0.0515,0.0611,-0.0834,-0.0059,-0.0834,0.0059,0.0611,-0.0096,0.0515,0.0893
,-0.0893,0.0096,-0.0515,-0.0611,0.0834,-0.0059,-0.0834,-0.0059,0.0611,-0.0096,-0.0515,0.0893,-0.0893,-0.0096,-0.0515,0.0456,0.093,0,-0.0456,0.093,0,-0.0834,0.0059,-0.0611,0.0515,0.0893,0.0096,0.0059,0.0611,0.0834,0.0456,-0.093,0,-0.0456,-0.093,0,0.0515,0.0893,-0.0096,0.0059,0.0611,-0.0834,-0.0834,-0.0059,-0.0611,-0.0515,0.0893,0.0096,-0.0059,0.0611,0.0834
,0.0515,-0.0893,0.0096,0.0059,-0.0611,0.0834,-0.0515,0.0893,-0.0096,-0.0059,0.0611,-0.0834,0.0515,-0.0893,-0.0096,0.0059,-0.0611,-0.0834,-0.0515,-0.0893,0.0096,-0.0059,-0.0611,0.0834,-0.0515,-0.0893,-0.0096,-0.0059,-0.0611,-0.0834,0,0.0456,0.093,0,-0.0456,0.093,0.0893,-0.0096,0.0515,0.0834,-0.0059,0.0611,0.0901,0,0.0557,0.0834,0.0059,0.0611,0.0901,0,0.0557
,0.0893,0.0096,0.0515,0.0901,0,0.0557,0.093,0,0.0456,0.0901,0,0.0557,-0.093,0,0.0456,-0.0893,0.0096,0.0515,-0.0901,0,0.0557,-0.0834,0.0059,0.0611,-0.0901,0,0.0557,-0.0834,-0.0059,0.0611,-0.0901,0,0.0557,-0.0893,-0.0096,0.0515,-0.0901,0,0.0557,0.093,0,-0.0456,0.0893,0.0096,-0.0515,0.0901,0,-0.0557,0.0834,0.0059,-0.0611
,0.0901,0,-0.0557,0.0834,-0.0059,-0.0611,0.0901,0,-0.0557,0.0893,-0.0096,-0.0515,0.0901,0,-0.0557,-0.0893,-0.0096,-0.0515,-0.0834,-0.0059,-0.0611,-0.0901,0,-0.0557,-0.0834,0.0059,-0.0611,-0.0901,0,-0.0557,-0.0893,0.0096,-0.0515,-0.0901,0,-0.0557,-0.093,0,-0.0456,-0.0901,0,-0.0557,0.0515,0.0893,0.0096,0.0456,0.093,0,0.0557,0.0901,0
,0.0515,0.0893,-0.0096,0.0557,0.0901,0,0.0611,0.0834,-0.0059,0.0557,0.0901,0,0.0611,0.0834,0.0059,0.0557,0.0901,0,0.0611,-0.0834,0.0059,0.0611,-0.0834,-0.0059,0.0557,-0.0901,0,0.0515,-0.0893,-0.0096,0.0557,-0.0901,0,0.0456,-0.093,0,0.0557,-0.0901,0,0.0515,-0.0893,0.0096,0.0557,-0.0901,0,-0.0611,0.0834,0.0059,-0.0611,0.0834,-0.0059
,-0.0557,0.0901,0,-0.0515,0.0893,-0.0096,-0.0557,0.0901,0,-0.0456,0.093,0,-0.0557,0.0901,0,-0.0515,0.0893,0.0096,-0.0557,0.0901,0,-0.0515,-0.0893,0.0096,-0.0456,-0.093,0,-0.0557,-0.0901,0,-0.0515,-0.0893,-0.0096,-0.0557,-0.0901,0,-0.0611,-0.0834,-0.0059,-0.0557,-0.0901,0,-0.0611,-0.0834,0.0059,-0.0557,-0.0901,0,0,0.0456,0.093
,-0.0096,0.0515,0.0893,0,0.0557,0.0901,-0.0059,0.0611,0.0834,0,0.0557,0.0901,0.0059,0.0611,0.0834,0,0.0557,0.0901,0.0096,0.0515,0.0893,0,0.0557,0.0901,0,0.0456,-0.093,0.0096,0.0515,-0.0893,0,0.0557,-0.0901,0.0059,0.0611,-0.0834,0,0.0557,-0.0901,-0.0059,0.0611,-0.0834,0,0.0557,-0.0901,-0.0096,0.0515,-0.0893,0,0.0557,-0.0901
,0.0096,-0.0515,0.0893,0.0059,-0.0611,0.0834,0,-0.0557,0.0901,-0.0059,-0.0611,0.0834,0,-0.0557,0.0901,-0.0096,-0.0515,0.0893,0,-0.0557,0.0901,0,-0.0456,0.093,0,-0.0557,0.0901,-0.0096,-0.0515,-0.0893,-0.0059,-0.0611,-0.0834,0,-0.0557,-0.0901,0.0059,-0.0611,-0.0834,0,-0.0557,-0.0901,0.0096,-0.0515,-0.0893,0,-0.0557,-0.0901,0,-0.0456,-0.093
,0,-0.0557,-0.0901,0,0.0456,-0.093,0,-0.0456,-0.093,0.093,0,0.0456,0.093,0,-0.0456,-0.093,0,0.0456,-0.093,0,-0.0456,0.0611,0.0834,0.0059,0.0893,-0.0096,0.0515,0.0611,-0.0834,0.0059,-0.0893,0.0096,0.0515,-0.0611,0.0834,0.0059,-0.0611,-0.0834,0.0059,0.0096,0.0515,0.0893,0.0096,0.0515,-0.0893,0.0096,-0.0515,0.0893,0.0834,-0.0059,-0.0611
,0.0096,-0.0515,-0.0893,0.0893,0.0096,-0.0515,0.0611,0.0834,-0.0059,0.0893,-0.0096,-0.0515,0.0611,-0.0834,-0.0059,-0.0096,0.0515,0.0893,-0.0611,0.0834,-0.0059,-0.0096,-0.0515,0.0893,-0.0893,-0.0096,-0.0515,-0.0611,-0.0834,-0.0059,0.0456,0.093,0,-0.0456,0.093,0,-0.0834,0.0059,-0.0611,-0.0096,0.0515,-0.0893,0.0515,0.0893,0.0096,0.0059,0.0611,0.0834,0.0456,-0.093,0
,-0.0456,-0.093,0,0.0059,0.0611,-0.0834,-0.0834,-0.0059,-0.0611,-0.0096,-0.0515,-0.0893,-0.0515,0.0893,0.0096,-0.0059,0.0611,0.0834,0.0515,-0.0893,0.0096,0.0059,-0.0611,0.0834,-0.0515,0.0893,-0.0096,-0.0059,0.0611,-0.0834,0.0059,-0.0611,-0.0834,-0.0515,-0.0893,0.0096,-0.0059,-0.0611,0.0834,-0.0059,-0.0611,-0.0834,0,0.0456,0.093,0,-0.0456,0.093]
,"normals":[0.505,0,0.863,0.275,-0.142,0.951,0.275,0.142,0.951,0.676,0.445,0.588,0.445,0.588,0.676,0.588,0.676,0.445,-0.676,0.445,-0.588,-0.445,0.588,-0.676,-0.588,0.676,-0.445,0.676,0.445,-0.588,0.588,0.676,-0.445,0.445,0.588,-0.676,0.505,0,-0.863,0.275,0.142,-0.951,0.275,-0.142,-0.951,-0.863,0.505,0,-0.951,0.275,0.142
,-0.951,0.275,-0.142,-0.505,0,-0.863,-0.275,-0.142,-0.951,-0.275,0.142,-0.951,0,0.863,-0.505,0.142,0.951,-0.275,-0.142,0.951,-0.275,-0.863,-0.505,0,-0.951,-0.275,-0.142,-0.951,-0.275,0.142,-0.676,-0.445,0.588,-0.445,-0.588,0.676,-0.588,-0.676,0.445,0.676,-0.445,-0.588,0.445,-0.588,-0.676,0.588,-0.676,-0.445,-0.676,-0.445,-0.588
,-0.588,-0.676,-0.445,-0.445,-0.588,-0.676,0.676,-0.445,0.588,0.588,-0.676,0.445,0.445,-0.588,0.676,0.863,0.505,0,0.951,0.275,-0.142,0.951,0.275,0.142,-0.676,0.445,0.588,-0.588,0.676,0.445,-0.445,0.588,0.676,-0.505,0,0.863,-0.275,0.142,0.951,-0.275,-0.142,0.951,0,-0.863,-0.505,-0.142,-0.951,-0.275,0.142,-0.951,-0.275
,0,0.863,0.505,-0.142,0.951,0.275,0.142,0.951,0.275,0,-0.863,0.505,0.142,-0.951,0.275,-0.142,-0.951,0.275,0.951,-0.275,0.142,0.851,0,0.526,0.991,0,0.137,0.851,0,0.526,0.844,-0.384,0.375,0.851,0,0.526,0.606,-0.237,0.759,0.851,0,0.526,0.606,0.237,0.759,0.851,0,0.526,0.844,0.384,0.375
,-0.851,0,0.526,-0.844,-0.384,0.375,-0.851,0,0.526,-0.991,0,0.137,-0.851,0,0.526,-0.844,0.384,0.375,-0.851,0,0.526,-0.606,0.237,0.759,-0.851,0,0.526,-0.606,-0.237,0.759,0.951,-0.275,-0.142,0.851,0,-0.526,0.844,-0.384,-0.375,0.851,0,-0.526,0.991,0,-0.137,0.851,0,-0.526,0.844,0.384,-0.375
,0.851,0,-0.526,0.606,0.237,-0.759,0.851,0,-0.526,0.606,-0.237,-0.759,-0.851,0,-0.526,-0.991,0,-0.137,-0.851,0,-0.526,-0.844,-0.384,-0.375,-0.851,0,-0.526,-0.606,-0.237,-0.759,-0.851,0,-0.526,-0.606,0.237,-0.759,-0.851,0,-0.526,-0.844,0.384,-0.375,0.526,0.851,0,0.759,0.606,0.237,0.526,0.851,0
,0.375,0.844,0.384,0.526,0.851,0,0.137,0.991,0,0.526,0.851,0,0.375,0.844,-0.384,0.526,0.851,0,0.759,0.606,-0.237,0.526,-0.851,0,0.375,-0.844,0.384,0.863,-0.505,0,0.526,-0.851,0,0.759,-0.606,0.237,0.526,-0.851,0,0.759,-0.606,-0.237,0.526,-0.851,0,0.375,-0.844,-0.384,0.526,-0.851,0
,0.137,-0.991,0,-0.526,0.851,0,-0.375,0.844,0.384,-0.526,0.851,0,-0.759,0.606,0.237,-0.526,0.851,0,-0.759,0.606,-0.237,-0.526,0.851,0,-0.375,0.844,-0.384,-0.526,0.851,0,-0.137,0.991,0,-0.526,-0.851,0,-0.759,-0.606,0.237,-0.526,-0.851,0,-0.375,-0.844,0.384,-0.526,-0.851,0,-0.137,-0.991,0
,-0.526,-0.851,0,-0.375,-0.844,-0.384,-0.526,-0.851,0,-0.759,-0.606,-0.237,0,0.526,0.851,0.384,0.375,0.844,0,0.526,0.851,0,0.137,0.991,0,0.526,0.851,-0.384,0.375,0.844,0,0.526,0.851,-0.237,0.759,0.606,0,0.526,0.851,0.237,0.759,0.606,0,0.526,-0.851,-0.384,0.375,-0.844,0,0.526,-0.851
,0,0.137,-0.991,0,0.526,-0.851,0.384,0.375,-0.844,0,0.526,-0.851,0.237,0.759,-0.606,0,0.526,-0.851,-0.237,0.759,-0.606,0,-0.526,0.851,0,-0.137,0.991,0,-0.526,0.851,0.384,-0.375,0.844,0,-0.526,0.851,0.237,-0.759,0.606,0,-0.526,0.851,-0.237,-0.759,0.606,0,-0.526,0.851,-0.384,-0.375,0.844
,0,-0.526,-0.851,0,-0.137,-0.991,0,-0.526,-0.851,-0.384,-0.375,-0.844,0,-0.526,-0.851,-0.237,-0.759,-0.606,0,-0.526,-0.851,0.237,-0.759,-0.606,0,-0.526,-0.851,0.384,-0.375,-0.844,0,0.137,-0.991,0,-0.137,-0.991,0.991,0,0.137,0.991,0,-0.137,-0.991,0,0.137,-0.991,0,-0.137,0.844,0.384,0.375
,0.844,-0.384,0.375,-0.844,0.384,0.375,-0.759,0.606,0.237,-0.844,-0.384,0.375,0.606,0.237,0.759,0.384,0.375,0.844,0.606,0.237,-0.759,0.606,-0.237,0.759,0.384,-0.375,0.844,0.606,-0.237,-0.759,0.384,-0.375,-0.844,0.844,0.384,-0.375,0.759,0.606,-0.237,0.844,-0.384,-0.375,0.759,-0.606,-0.237,-0.606,0.237,0.759,-0.384,0.375,0.844
,-0.844,0.384,-0.375,-0.759,0.606,-0.237,-0.606,-0.237,0.759,-0.384,-0.375,0.844,-0.844,-0.384,-0.375,0.137,0.991,0,-0.137,0.991,0,-0.606,0.237,-0.759,0.375,0.844,0.384,0.237,0.759,0.606,0.137,-0.991,0,-0.137,-0.991,0,0.375,0.844,-0.384,0.237,0.759,-0.606,-0.606,-0.237,-0.759,-0.375,0.844,0.384,-0.237,0.759,0.606
,0.375,-0.844,0.384,0.237,-0.759,0.606,-0.375,0.844,-0.384,-0.237,0.759,-0.606,0.375,-0.844,-0.384,0.237,-0.759,-0.606,-0.375,-0.844,0.384,-0.237,-0.759,0.606,-0.375,-0.844,-0.384,-0.237,-0.759,-0.606,0,0.137,0.991,0,-0.137,0.991,0.844,-0.384,0.375,0.606,-0.237,0.759,0.851,0,0.526,0.606,0.237,0.759,0.851,0,0.526
,0.844,0.384,0.375,0.851,0,0.526,0.991,0,0.137,0.851,0,0.526,-0.991,0,0.137,-0.844,0.384,0.375,-0.851,0,0.526,-0.606,0.237,0.759,-0.851,0,0.526,-0.606,-0.237,0.759,-0.851,0,0.526,-0.844,-0.384,0.375,-0.851,0,0.526,0.991,0,-0.137,0.844,0.384,-0.375,0.851,0,-0.526,0.606,0.237,-0.759
,0.851,0,-0.526,0.606,-0.237,-0.759,0.851,0,-0.526,0.844,-0.384,-0.375,0.851,0,-0.526,-0.844,-0.384,-0.375,-0.606,-0.237,-0.759,-0.851,0,-0.526,-0.606,0.237,-0.759,-0.851,0,-0.526,-0.844,0.384,-0.375,-0.851,0,-0.526,-0.991,0,-0.137,-0.851,0,-0.526,0.375,0.844,0.384,0.137,0.991,0,0.526,0.851,0
,0.375,0.844,-0.384,0.526,0.851,0,0.759,0.606,-0.237,0.526,0.851,0,0.759,0.606,0.237,0.526,0.851,0,0.759,-0.606,0.237,0.759,-0.606,-0.237,0.526,-0.851,0,0.375,-0.844,-0.384,0.526,-0.851,0,0.137,-0.991,0,0.526,-0.851,0,0.375,-0.844,0.384,0.526,-0.851,0,-0.759,0.606,0.237,-0.759,0.606,-0.237
,-0.526,0.851,0,-0.375,0.844,-0.384,-0.526,0.851,0,-0.137,0.991,0,-0.526,0.851,0,-0.375,0.844,0.384,-0.526,0.851,0,-0.375,-0.844,0.384,-0.137,-0.991,0,-0.526,-0.851,0,-0.375,-0.844,-0.384,-0.526,-0.851,0,-0.759,-0.606,-0.237,-0.526,-0.851,0,-0.759,-0.606,0.237,-0.526,-0.851,0,0,0.137,0.991
,-0.384,0.375,0.844,0,0.526,0.851,-0.237,0.759,0.606,0,0.526,0.851,0.237,0.759,0.606,0,0.526,0.851,0.384,0.375,0.844,0,0.526,0.851,0,0.137,-0.991,0.384,0.375,-0.844,0,0.526,-0.851,0.237,0.759,-0.606,0,0.526,-0.851,-0.237,0.759,-0.606,0,0.526,-0.851,-0.384,0.375,-0.844,0,0.526,-0.851
,0.384,-0.375,0.844,0.237,-0.759,0.606,0,-0.526,0.851,-0.237,-0.759,0.606,0,-0.526,0.851,-0.384,-0.375,0.844,0,-0.526,0.851,0,-0.137,0.991,0,-0.526,0.851,-0.384,-0.375,-0.844,-0.237,-0.759,-0.606,0,-0.526,-0.851,0.237,-0.759,-0.606,0,-0.526,-0.851,0.384,-0.375,-0.844,0,-0.526,-0.851,0,-0.137,-0.991
,0,-0.526,-0.851,0,0.137,-0.991,0,-0.137,-0.991,0.991,0,0.137,0.991,0,-0.137,-0.991,0,0.137,-0.991,0,-0.137,0.759,0.606,0.237,0.844,-0.384,0.375,0.759,-0.606,0.237,-0.844,0.384,0.375,-0.759,0.606,0.237,-0.759,-0.606,0.237,0.384,0.375,0.844,0.384,0.375,-0.844,0.384,-0.375,0.844,0.606,-0.237,-0.759
,0.384,-0.375,-0.844,0.844,0.384,-0.375,0.759,0.606,-0.237,0.844,-0.384,-0.375,0.759,-0.606,-0.237,-0.384,0.375,0.844,-0.759,0.606,-0.237,-0.384,-0.375,0.844,-0.844,-0.384,-0.375,-0.759,-0.606,-0.237,0.137,0.991,0,-0.137,0.991,0,-0.606,0.237,-0.759,-0.384,0.375,-0.844,0.375,0.844,0.384,0.237,0.759,0.606,0.137,-0.991,0
,-0.137,-0.991,0,0.237,0.759,-0.606,-0.606,-0.237,-0.759,-0.384,-0.375,-0.844,-0.375,0.844,0.384,-0.237,0.759,0.606,0.375,-0.844,0.384,0.237,-0.759,0.606,-0.375,0.844,-0.384,-0.237,0.759,-0.606,0.237,-0.759,-0.606,-0.375,-0.844,0.384,-0.237,-0.759,0.606,-0.237,-0.759,-0.606,0,0.137,0.991,0,-0.137,0.991]
,"tangents":[0.745,0.504,-0.437,1,0.856,0.486,-0.175,1,0.808,0.501,-0.309,1,-0.216,0.882,-0.42,1,-0.311,0.809,-0.499,1,-0.395,0.72,-0.57,1,0.5,-0.309,-0.809,1,0.57,-0.395,-0.72,1,0.42,-0.216,-0.882,1,0.721,-0.566,0.4,1,0.809,-0.498,0.312,1,0.882,-0.416,0.22,1,-0.745,-0.504
,-0.437,1,-0.81,-0.499,-0.309,1,-0.856,-0.486,-0.175,1,-0.437,-0.745,-0.504,1,-0.309,-0.81,-0.498,1,-0.175,-0.856,-0.486,1,-0.745,0.504,0.437,1,-0.856,0.486,0.175,1,-0.808,0.502,0.309,1,-0.504,-0.437,-0.745,1,-0.486,-0.175,-0.856,1,-0.502,-0.309,-0.808,1,-0.436,0.744,-0.506,1
,-0.175,0.855,-0.488,1,-0.309,0.807,-0.503,1,-0.498,-0.313,-0.809,1,-0.568,-0.398,-0.721,1,-0.417,-0.219,-0.882,1,-0.216,-0.882,0.42,1,-0.31,-0.809,0.499,1,-0.395,-0.72,0.57,1,-0.72,0.569,0.397,1,-0.809,0.499,0.31,1,-0.882,0.418,0.218,1,-0.211,-0.88,-0.424,1,-0.391,-0.719
,-0.575,1,-0.302,-0.809,-0.504,1,0.437,-0.745,0.504,1,0.309,-0.81,0.498,1,0.175,-0.856,0.486,1,0.498,-0.312,0.809,1,0.416,-0.22,0.882,1,0.567,-0.399,0.721,1,0.005,-1,0.003,1,-0.037,-0.99,0.137,1,0.045,-0.99,-0.135,1,0.504,0.437,-0.745,1,0.486,0.175,-0.856,1
,0.502,0.309,-0.808,1,-0.52,0.432,-0.737,1,-0.502,0.17,-0.848,1,-0.517,0.308,-0.798,1,-1,0.005,0.008,1,-0.99,-0.133,0.052,1,-0.99,0.139,-0.03,1,0.175,0.857,0.485,1,-0.204,0.922,0.33,1,-0.063,0.89,0.452,1,0.123,-0.972,-0.199,1,-0.21,-0.879,-0.428,1,0.45,0.517
,-0.728,1,0.744,0.507,-0.436,1,0.119,0.974,-0.193,1,-0.06,0.965,-0.254,1,-0.204,-0.921,0.33,1,0.176,-0.858,0.483,1,-0.311,0.807,-0.503,1,-0.526,0.729,-0.438,1,-0.308,-0.81,-0.499,1,-0.074,-0.841,-0.536,1,0.5,-0.312,0.808,1,0.313,-0.215,0.925,1,0.003,-1,0.005,1
,-0.133,-0.971,0.197,1,-0.499,-0.314,-0.808,1,-0.655,-0.393,-0.646,1,0.309,0.808,0.501,1,0.309,0.809,0.5,1,0.526,0.731,0.435,1,0.308,-0.81,0.499,1,0.074,-0.841,0.536,1,0.4,-0.65,0.646,1,0.534,-0.669,0.517,1,-0.45,-0.517,-0.728,1,-0.611,-0.472,-0.636,1,0.119,-0.974
,0.193,1,-0.06,-0.965,0.254,1,0.206,0.92,-0.333,1,0.063,0.888,-0.455,1,-0.398,0.653,0.644,1,-0.534,0.673,0.512,1,-0.45,0.517,0.728,1,-0.744,0.507,0.436,1,0.5,-0.31,-0.809,1,0.656,-0.39,-0.646,1,0.204,-0.921,-0.33,1,-0.176,-0.858,-0.483,1,-0.643,0.398,-0.654,1
,-0.398,0.721,-0.568,1,-0.513,0.317,-0.798,1,-0.45,0.528,-0.72,1,-0.331,0.204,-0.921,1,-0.453,0.063,-0.889,1,0.808,-0.499,0.313,1,0.925,-0.313,0.216,1,0.728,-0.45,0.517,1,0.635,-0.61,0.473,1,-0.639,-0.395,-0.66,1,-0.507,-0.533,-0.677,1,0.437,0.746,0.503,1,0.728,0.45
,0.516,1,0.436,0.744,0.506,1,-0.643,-0.398,0.654,1,-0.398,-0.72,0.568,1,0.501,0.31,-0.808,1,0.435,0.526,-0.731,1,-0.847,-0.523,0.096,1,-0.989,-0.137,0.049,1,0.19,0.117,0.975,1,0.418,-0.216,0.882,1,-0.728,-0.45,-0.517,1,-0.635,-0.61,-0.473,1,0.193,0.119,-0.974,1
,0.252,-0.062,-0.966,1,-0.501,-0.31,-0.808,1,-0.435,-0.526,-0.731,1,-0.345,-0.213,-0.914,1,-0.47,-0.065,-0.88,1,-0.19,0.118,-0.975,1,-0.25,-0.065,-0.966,1,-0.848,0.524,-0.073,1,-0.926,0.36,-0.113,1,0.331,-0.204,-0.921,1,0.453,-0.063,-0.889,1,-0.809,0.5,0.309,1,-0.925,0.314
,0.213,1,-0.727,0.449,-0.519,1,-0.435,0.743,-0.509,1,0.808,0.501,-0.31,1,0.731,0.436,-0.526,1,-0.08,-0.848,0.524,1,-0.033,-0.99,0.137,1,0.651,-0.646,0.399,1,0.671,-0.514,0.534,1,-0.533,0.72,-0.445,1,-0.522,0.427,-0.738,1,-0.31,0.809,-0.5,1,-0.39,0.646,-0.656,1
,-0.808,0.501,0.31,1,-0.731,0.435,0.526,1,-0.81,-0.499,-0.308,1,-0.841,-0.536,-0.074,1,0.975,-0.189,-0.117,1,0.883,-0.418,0.216,1,-0.517,-0.728,-0.45,1,-0.507,-0.436,-0.744,1,0.654,-0.643,-0.398,1,0.568,-0.398,-0.72,1,0.921,0.331,0.204,1,0.889,0.453,0.063,1,-0.301,-0.811
,-0.501,1,-0.204,-0.926,-0.318,1,-1,0.008,0.005,1,-0.971,-0.188,0.145,1,-0.651,-0.645,-0.399,1,-0.565,-0.4,-0.722,1,0.089,-0.847,-0.524,1,0.129,-0.927,-0.353,1,-0.921,0.331,-0.204,1,-0.889,0.453,-0.063,1,-0.974,0.192,-0.118,1,-0.882,0.42,0.215,1,0.517,0.728,-0.45,1
,0.507,0.436,-0.744,1,-0.31,-0.809,0.5,1,-0.39,-0.646,0.656,1,-0.921,-0.33,0.204,1,-0.858,-0.483,-0.176,1,-0.84,0.538,0.075,1,-0.887,-0.457,0.063,1,-0.063,-0.887,0.457,1,0.074,0.84,0.537,1,-0.075,0.838,-0.54,1,0.063,-0.887,-0.457,1,-0.214,0.881,-0.421,1,0.176,0.858
,0.483,1,-0.526,-0.732,-0.433,1,0.248,-0.067,0.966,1,-0.312,-0.216,-0.925,1,0.611,0.471,-0.636,1,-0.213,0.925,-0.314,1,0.722,-0.565,0.4,1,-0.057,-0.965,-0.257,1,0.857,0.484,-0.175,1,-0.744,-0.506,-0.437,1,-0.213,-0.925,0.314,1,0.526,-0.732,0.433,1,0.646,-0.655,0.392,1
,-0.214,-0.881,0.421,1,0.636,0.613,0.469,1,0.655,-0.391,0.646,1,-0.123,-0.927,0.355,1,0.314,-0.213,-0.925,1,-0.437,-0.744,-0.506,1,0.142,-0.971,-0.19,1,-0.673,-0.512,-0.534,1,-0.174,0.856,-0.486,1,-0.553,0.077,-0.83,1,-0.538,-0.075,-0.84,1,-0.612,0.47,0.636,1,-0.509,0.534
,-0.676,1,-0.486,0.633,-0.603,1,0.538,0.075,-0.84,1,-0.99,0.137,-0.028,1,-0.484,-0.175,-0.857,1,0.966,-0.248,0.068,1,-0.721,0.567,0.398,1,-0.499,0.166,-0.851,1,0.566,-0.4,0.721,1,-0.927,-0.349,0.138,1,-0.381,-0.647,-0.661,1,0.421,-0.214,-0.881,1,-0.47,-0.636,-0.612,1
,-0.51,-0.534,0.674,1,0.47,0.636,-0.612,1,-0.418,-0.216,-0.882,1,-0.971,0.2,-0.13,1,0.484,0.175,-0.857,1,-0.966,0.25,0.066,1,0.84,0.538,-0.075,1,0.044,-0.99,-0.137,1,0.176,0.858,0.483,1,-0.057,-0.965,-0.257,1,0.123,-0.972,-0.199,1,0.611,0.471,-0.636,1,0.45,0.517
,-0.728,1,-0.214,0.881,-0.421,1,0.119,0.974,-0.193,1,-0.063,-0.887,0.457,1,-0.204,-0.921,0.33,1,-0.075,0.838,-0.54,1,-0.526,-0.732,-0.433,1,-0.308,-0.81,-0.499,1,0.655,-0.391,0.646,1,0.5,-0.312,0.808,1,0.142,-0.971,-0.19,1,0.003,-1,0.005,1,-0.312,-0.216,-0.925,1
,-0.499,-0.314,-0.808,1,0.074,0.84,0.537,1,0.526,-0.732,0.433,1,0.308,-0.81,0.499,1,0.722,-0.565,0.4,1,0.4,-0.65,0.646,1,-0.744,-0.506,-0.437,1,-0.45,-0.517,-0.728,1,-0.214,-0.881,0.421,1,0.119,-0.974,0.193,1,-0.174,0.856,-0.486,1,-0.721,0.567,0.398,1,-0.398,0.653
,0.644,1,-0.612,0.47,0.636,1,-0.45,0.517,0.728,1,0.314,-0.213,-0.925,1,0.5,-0.31,-0.809,1,0.063,-0.887,-0.457,1,0.204,-0.921,-0.33,1,-0.509,0.534,-0.676,1,-0.553,0.077,-0.83,1,-0.513,0.317,-0.798,1,-0.484,-0.175,-0.857,1,-0.331,0.204,-0.921,1,0.646,-0.655,0.392,1
,0.808,-0.499,0.313,1,0.436,-0.744,0.506,1,0.728,-0.45,0.517,1,-0.394,-0.718,-0.574,1,0.636,0.613,0.469,1,0.728,0.45,0.516,1,-0.51,-0.534,0.674,1,-0.643,-0.398,0.654,1,0.538,0.075,-0.84,1,0.501,0.31,-0.808,1,-0.927,-0.349,0.138,1,-0.847,-0.523,0.096,1,0.248,-0.067
,0.966,1,-0.437,-0.744,-0.506,1,-0.728,-0.45,-0.517,1,0.421,-0.214,-0.881,1,0.193,0.119,-0.974,1,-0.538,-0.075,-0.84,1,-0.501,-0.31,-0.808,1,-0.499,0.166,-0.851,1,-0.345,-0.213,-0.914,1,-0.418,-0.216,-0.882,1,-0.99,0.137,-0.028,1,-0.848,0.524,-0.073,1,0.484,0.175,-0.857,1
,0.331,-0.204,-0.921,1,-0.646,0.657,0.389,1,-0.809,0.5,0.309,1,-0.635,0.61,-0.473,1,-0.727,0.449,-0.519,1,0.84,0.538,-0.075,1,-0.123,-0.927,0.355,1,-0.08,-0.848,0.524,1,0.566,-0.4,0.721,1,0.651,-0.646,0.399,1,-0.486,0.633,-0.603,1,-0.533,0.72,-0.445,1,-0.213,0.925
,-0.314,1,-0.31,0.809,-0.5,1,-0.84,0.538,0.075,1,-0.732,-0.433,-0.526,1,-0.81,-0.499,-0.308,1,0.966,-0.248,0.068,1,0.975,-0.189,-0.117,1,-0.47,-0.636,-0.612,1,-0.517,-0.728,-0.45,1,0.674,-0.51,-0.534,1,0.654,-0.643,-0.398,1,0.857,0.484,-0.175,1,-0.381,-0.647,-0.661,1
,-0.301,-0.811,-0.501,1,-0.971,0.2,-0.13,1,-1,0.008,0.005,1,-0.673,-0.512,-0.534,1,-0.651,-0.645,-0.399,1,0.044,-0.99,-0.137,1,0.089,-0.847,-0.524,1,-0.857,0.484,0.175,1,-0.966,0.25,0.066,1,-0.974,0.192,-0.118,1,0.47,0.636,-0.612,1,0.517,0.728,-0.45,1,-0.213,-0.925
,0.314,1,-0.31,-0.809,0.5,1,-0.887,-0.457,0.063,1,-0.921,-0.33,0.204,1,-0.84,0.538,0.075,1,-0.887,-0.457,0.063,1,-0.063,-0.887,0.457,1,0.074,0.84,0.537,1,-0.075,0.838,-0.54,1,0.063,-0.887,-0.457,1,0.436,-0.744,0.506,1,0.176,0.858,0.483,1,-0.394,-0.718,-0.574,1
,-0.526,-0.732,-0.433,1,0.248,-0.067,0.966,1,-0.635,0.61,-0.473,1,-0.213,0.925,-0.314,1,-0.732,-0.433,-0.526,1,0.857,0.484,-0.175,1,-0.744,-0.506,-0.437,1,-0.213,-0.925,0.314,1,0.526,-0.732,0.433,1,0.646,-0.655,0.392,1,-0.214,-0.881,0.421,1,0.636,0.613,0.469,1,-0.123,-0.927
,0.355,1,-0.437,-0.744,-0.506,1,-0.673,-0.512,-0.534,1,-0.174,0.856,-0.486,1,-0.646,0.657,0.389,1,-0.553,0.077,-0.83,1,-0.538,-0.075,-0.84,1,-0.612,0.47,0.636,1,0.674,-0.51,-0.534,1,-0.509,0.534,-0.676,1,-0.486,0.633,-0.603,1,0.538,0.075,-0.84,1,-0.99,0.137,-0.028,1
,0.966,-0.248,0.068,1,-0.721,0.567,0.398,1,-0.857,0.484,0.175,1,-0.499,0.166,-0.851,1,0.566,-0.4,0.721,1,-0.927,-0.349,0.138,1,-0.381,-0.647,-0.661,1,0.421,-0.214,-0.881,1,-0.47,-0.636,-0.612,1,0.47,0.636,-0.612,1,-0.418,-0.216,-0.882,1,-0.971,0.2,-0.13,1,-0.966,0.25
,0.066,1,0.84,0.538,-0.075,1,0.044,-0.99,-0.137,1]
,"uvs":[0.37,0.422,0.26,0.422,0.315,0.327,0.334,0.55,0.39,0.455,0.445,0.55,0.677,0.026,0.732,0.121,0.621,0.121,0.73,0.142,0.676,0.238,0.62,0.143,0.114,0.421,0.169,0.326,0.224,0.421,0.549,0.25,0.604,0.154,0.659,0.25,0.518,0.423,0.408,0.423,0.463,0.327,0.297,0.549,0.187,0.549,0.242,0.454,0.113,0.443
,0.224,0.443,0.168,0.538,0.241,0.411,0.186,0.315,0.297,0.316,0.768,0.121,0.823,0.025,0.878,0.121,0.805,0.015,0.75,0.11,0.695,0.015,0.335,0.316,0.445,0.317,0.389,0.412,0.474,0.121,0.529,0.026,0.584,0.121,0.602,0.111,0.547,0.016,0.657,0.015,0.315,0.539,0.261,0.444,0.371,0.444,0.803,0.248,0.693,0.248
,0.748,0.152,0.768,0.141,0.878,0.144,0.821,0.238,0.464,0.54,0.408,0.446,0.518,0.444,0.586,0.144,0.599,0.137,0.594,0.148,0.322,0.308,0.335,0.308,0.383,0.43,0.371,0.431,0.321,0.557,0.327,0.546,0.597,0.129,0.585,0.13,0.168,0.553,0.161,0.543,0.604,0.139,0.611,0.15,0.602,0.126,0.595,0.115,0.315,0.554
,0.308,0.544,0.241,0.426,0.234,0.415,0.531,0.24,0.531,0.255,0.524,0.244,0.529,0.011,0.537,0.021,0.743,0.135,0.738,0.146,0.101,0.429,0.106,0.417,0.755,0.128,0.761,0.117,0.237,0.436,0.231,0.447,0.818,0.007,0.813,0.019,0.531,0.43,0.518,0.431,0.677,0.01,0.684,0.021,0.672,0.257,0.659,0.258,0.458,0.558
,0.445,0.559,0.821,0.253,0.814,0.242,0.174,0.557,0.18,0.545,0.676,0.253,0.669,0.242,0.461,0.129,0.467,0.117,0.458,0.309,0.453,0.321,0.476,0.144,0.463,0.137,0.476,0.136,0.891,0.128,0.879,0.129,0.748,0.137,0.755,0.148,0.395,0.438,0.408,0.437,0.533,0.008,0.546,0.007,0.535,0.257,0.541,0.246,0.608,0.128
,0.614,0.117,0.242,0.439,0.249,0.449,0.891,0.136,0.886,0.148,0.31,0.308,0.304,0.32,0.531,0.437,0.526,0.448,0.68,0.255,0.685,0.244,0.75,0.125,0.743,0.115,0.1,0.435,0.113,0.434,0.315,0.312,0.323,0.322,0.248,0.436,0.26,0.435,0.67,0.008,0.664,0.019,0.755,0.134,0.768,0.133,0.39,0.439,0.397,0.45
,0.463,0.312,0.47,0.323,0.169,0.311,0.176,0.321,0.607,0.135,0.62,0.134,0.31,0.557,0.297,0.558,0.745,0.128,0.732,0.129,0.247,0.43,0.253,0.418,0.389,0.427,0.382,0.416,0.464,0.555,0.457,0.545,0.173,0.308,0.186,0.307,0.384,0.437,0.378,0.448,0.395,0.43,0.4,0.419,0.682,0.008,0.695,0.007,0.816,0.255
,0.803,0.256,0.823,0.01,0.831,0.021,0.237,0.429,0.224,0.43,0.456,0.323,0.231,0.417,0.592,0.117,0.538,0.244,0.176,0.543,0.666,0.246,0.334,0.559,0.586,0.136,0.596,0.15,0.539,0.02,0.248,0.415,0.378,0.418,0.382,0.45,0.731,0.134,0.327,0.32,0.26,0.431,0.113,0.43,0.816,0.021,0.522,0.021,0.683,0.242
,0.768,0.129,0.468,0.148,0.609,0.115,0.253,0.448,0.669,0.021,0.548,0.258,0.323,0.544,0.179,0.319,0.224,0.434,0.828,0.243,0.235,0.449,0.525,0.419,0.452,0.546,0.76,0.145,0.741,0.148,0.518,0.436,0.187,0.558,0.613,0.147,0.805,0.006,0.879,0.135,0.657,0.007,0.401,0.45,0.397,0.416,0.621,0.129,0.305,0.545
,0.886,0.117,0.811,0.244,0.297,0.307,0.472,0.545,0.693,0.256,0.687,0.019,0.308,0.322,0.371,0.436,0.586,0.136,0.327,0.32,0.322,0.308,0.378,0.418,0.383,0.43,0.334,0.559,0.321,0.557,0.592,0.117,0.597,0.129,0.176,0.543,0.596,0.15,0.604,0.139,0.609,0.115,0.602,0.126,0.323,0.544,0.315,0.554,0.248,0.415
,0.241,0.426,0.538,0.244,0.522,0.021,0.529,0.011,0.731,0.134,0.743,0.135,0.113,0.43,0.101,0.429,0.768,0.129,0.755,0.128,0.224,0.434,0.805,0.006,0.818,0.007,0.525,0.419,0.531,0.43,0.669,0.021,0.677,0.01,0.666,0.246,0.672,0.257,0.452,0.546,0.828,0.243,0.821,0.253,0.187,0.558,0.174,0.557,0.683,0.242
,0.676,0.253,0.474,0.13,0.461,0.129,0.446,0.308,0.468,0.148,0.463,0.137,0.886,0.117,0.891,0.128,0.741,0.148,0.748,0.137,0.401,0.45,0.395,0.438,0.539,0.02,0.548,0.258,0.535,0.257,0.621,0.129,0.608,0.128,0.235,0.449,0.242,0.439,0.879,0.135,0.891,0.136,0.297,0.307,0.518,0.436,0.531,0.437,0.693,0.256
,0.68,0.255,0.758,0.115,0.75,0.125,0.106,0.447,0.1,0.435,0.308,0.322,0.253,0.448,0.248,0.436,0.657,0.007,0.67,0.008,0.76,0.145,0.755,0.134,0.382,0.45,0.39,0.439,0.456,0.323,0.162,0.321,0.169,0.311,0.613,0.147,0.607,0.135,0.305,0.545,0.31,0.557,0.739,0.117,0.745,0.128,0.26,0.431,0.397,0.416
,0.389,0.427,0.472,0.545,0.464,0.555,0.179,0.319,0.173,0.308,0.371,0.436,0.384,0.437,0.408,0.431,0.687,0.019,0.682,0.008,0.811,0.244,0.816,0.255,0.816,0.021,0.823,0.01,0.231,0.417,0.237,0.429,0.456,0.323,0.231,0.417,0.592,0.117,0.538,0.244,0.176,0.543,0.666,0.246,0.474,0.13,0.586,0.136,0.446,0.308
,0.596,0.15,0.539,0.02,0.106,0.447,0.382,0.45,0.162,0.321,0.26,0.431,0.113,0.43,0.816,0.021,0.522,0.021,0.683,0.242,0.768,0.129,0.468,0.148,0.253,0.448,0.548,0.258,0.179,0.319,0.224,0.434,0.758,0.115,0.828,0.243,0.235,0.449,0.525,0.419,0.739,0.117,0.452,0.546,0.76,0.145,0.741,0.148,0.518,0.436
,0.613,0.147,0.805,0.006,0.408,0.431,0.879,0.135,0.657,0.007,0.401,0.45,0.397,0.416,0.621,0.129,0.305,0.545,0.811,0.244,0.297,0.307,0.472,0.545,0.687,0.019,0.308,0.322,0.371,0.436]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50
,51,52,53,54,55,56,57,58,59,36,60,61,0,62,63,3,64,65,41,66,67,26,68,69,16,70,71,42,72,73,45,74,75,27,76,77,78,79,80,40,81,82,9,83,84,12,85,86,30,87,88
,25,89,90,33,91,92,18,93,94,6,95,96,17,97,98,5,99,100,53,101,102,22,103,104,10,105,106,39,107,108,37,109,110,111,112,113,32,114,115,50,116,117,55,118,119,43,120,121,15,122,123
,8,124,125,23,126,127,52,128,129,29,130,131,56,132,133,49,134,135,34,136,137,24,138,139,2,140,141,46,142,143,44,144,145,51,146,147,4,148,149,20,150,151,13,152,153,11,154,155,21,156,157
,7,158,159,1,160,161,38,162,163,54,164,165,28,166,167,47,168,169,19,170,171,35,172,173,48,174,175,31,176,177,14,178,179,19,180,20,181,13,153,40,182,41,183,57,59,25,184,26,185,16,71
,3,100,186,67,39,41,111,187,57,61,37,36,15,188,16,189,42,73,27,131,190,69,24,26,0,141,191,192,3,65,9,155,193,86,13,12,36,163,194,195,0,63,14,196,12,197,30,88,39,198,40
,199,9,84,32,200,30,201,78,80,42,145,202,203,45,75,6,125,204,205,17,98,45,169,206,207,27,77,24,208,25,92,34,33,52,209,53,210,22,104,20,211,18,96,7,6,4,212,5,213,53,102
,49,214,50,215,55,119,22,157,216,217,10,106,35,218,33,94,19,18,51,219,52,220,43,121,54,221,55,222,37,110,7,223,8,224,23,127,32,177,225,226,50,117,28,227,29,228,56,133,49,175,229
,230,34,137,1,231,2,232,46,143,111,57,78,57,233,58,36,234,235,0,236,237,3,238,239,41,240,241,26,242,68,16,243,244,42,245,246,45,247,248,27,249,250,78,251,79,40,252,253,9,254,255
,12,256,257,30,258,259,25,260,89,33,261,262,18,263,264,6,265,266,17,267,268,5,269,99,53,270,271,22,272,273,10,274,275,39,276,277,37,278,109,111,279,280,32,281,282,50,283,284,55,285,286
,43,287,120,15,288,289,8,290,291,23,292,293,52,294,295,29,296,130,56,297,298,49,299,300,34,301,302,24,303,304,2,305,140,46,306,307,44,308,309,51,310,311,4,312,313,20,314,150,13,315,316
,11,317,318,21,319,320,7,321,322,1,323,160,38,324,325,54,326,327,28,328,329,47,330,331,19,332,170,35,333,334,48,335,336,31,337,338,14,339,340,19,171,341,342,14,13,40,82,343,344,78,57
,25,90,345,346,17,16,3,5,100,67,347,39,111,113,348,61,349,37,15,123,350,351,43,42,27,29,131,69,352,24,0,2,141,353,4,3,9,11,155,86,354,13,36,38,163,355,1,0,14,179,356
,357,31,30,39,108,358,359,10,9,32,115,360,361,111,78,42,44,145,362,46,45,6,8,125,363,15,17,45,47,169,364,28,27,24,139,365,92,366,34,52,129,367,368,23,22,20,151,369,96,370,7
,4,149,371,372,51,53,49,135,373,374,56,55,22,21,157,375,11,10,35,173,376,94,377,19,51,147,378,379,44,43,54,165,380,381,38,37,7,159,382,383,21,23,32,31,177,384,48,50,28,167,385
,386,54,56,49,48,175,387,35,34,1,161,388,389,47,46]
}
,{"name":"d100","id":"d100","billboardMode":0,"position":[-0.6,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false
,"positions":[-0.0562,-0.0133,0.0652,-0.0838,-0.0133,-0.0197,-0.0838,0.0037,0.0272,-0.0562,0.0133,-0.0652,-0.0838,0.0133,0.0197,-0.0838,-0.0037,-0.0272,0.0072,0.0133,0.0858,0.0794,0.0133,0.0333,0.0518,-0.0037,0.0713,-0.0794,0.0133,0.0333,-0.0072,0.0133,0.0858,-0.0518,-0.0037,0.0713,0.0446,0.0133,-0.0736,-0.0446,0.0133,-0.0736,0,-0.0037,-0.0881,-0.0794,-0.0133,-0.0333,-0.0072,-0.0133,-0.0858
,-0.0518,0.0037,-0.0713,0.0794,-0.0133,-0.0333,0.0072,-0.0133,-0.0858,0.0072,-0.0857,-0.0098,0.0838,-0.0133,-0.0197,0.0562,-0.0133,0.0652,0.0838,0.0037,0.0272,0.0446,-0.0133,0.0736,-0.0446,-0.0133,0.0736,0,0.0037,0.0881,0.0072,0.0857,0.0098,0,0.0915,0,0.0103,0.0868,0.0034,-0.0072,0.0857,0.0098,0,0.0915,0,0,0.0868,0.0109,-0.0116,0.0857,-0.0038
,0,0.0915,0,-0.0103,0.0868,0.0034,0,0.0857,-0.0122,0,0.0915,0,-0.0064,0.0868,-0.0088,0.0116,0.0857,-0.0038,0,0.0915,0,0.0064,0.0868,-0.0088,-0.0116,-0.0857,0.0038,0,-0.0915,0,-0.0103,-0.0868,-0.0034,0,-0.0857,0.0122,0,-0.0915,0,-0.0064,-0.0868,0.0088,0.0116,-0.0857,0.0038,0,-0.0915,0,0.0064,-0.0868,0.0088
,0,-0.0915,0,0.0103,-0.0868,-0.0034,-0.0072,-0.0857,-0.0098,0,-0.0915,0,0,-0.0868,-0.0109,0.0525,-0.0103,0.0722,0.0562,-0.008,0.0687,0.0525,-0.0103,0.0722,0.0511,-0.0148,0.0704,0.0525,-0.0103,0.0722,0.048,-0.008,0.0747,0.0849,0.0103,0.0276,0.0827,0.008,0.0322,0.0838,0.0133,0.0197,0.0849,0.0103,0.0276,0.0827,0.0148,0.0269,0.0849,0.0103,0.0276
,0.0859,0.008,0.0226,0,0.0103,0.0893,0,0.0148,0.087,0,0.0103,0.0893,0.0051,0.008,0.0886,0,0.0103,0.0893,-0.0051,0.008,0.0886,0.0525,0.0103,-0.0722,0.0511,0.0148,-0.0704,0.0518,0.0037,-0.0713,0.0525,0.0103,-0.0722,0.048,0.008,-0.0747,0.0562,0.0133,-0.0652,0.0525,0.0103,-0.0722,0.0562,0.008,-0.0687,0.0849,-0.0103,-0.0276,0.0827,-0.0148,-0.0269
,0.0838,-0.0037,-0.0272,0.0849,-0.0103,-0.0276,0.0859,-0.008,-0.0226,0.0849,-0.0103,-0.0276,0.0827,-0.008,-0.0322,-0.0525,0.0103,-0.0722,-0.0511,0.0148,-0.0704,-0.0525,0.0103,-0.0722,-0.0562,0.008,-0.0687,-0.0525,0.0103,-0.0722,-0.048,0.008,-0.0747,0,-0.0103,-0.0893,0,-0.0148,-0.087,0,-0.0103,-0.0893,0.0051,-0.008,-0.0886,0,-0.0103,-0.0893,-0.0051,-0.008,-0.0886
,-0.0849,-0.0103,-0.0276,-0.0827,-0.008,-0.0322,-0.0849,-0.0103,-0.0276,-0.0859,-0.008,-0.0226,-0.0849,-0.0103,-0.0276,-0.0827,-0.0148,-0.0269,-0.0849,0.0103,0.0276,-0.0859,0.008,0.0226,-0.0849,0.0103,0.0276,-0.0827,0.0148,0.0269,-0.0849,0.0103,0.0276,-0.0827,0.008,0.0322,-0.0525,-0.0103,0.0722,-0.0511,-0.0148,0.0704,-0.0525,-0.0103,0.0722,-0.0562,-0.008,0.0687,-0.0525,-0.0103,0.0722
,-0.048,-0.008,0.0747,-0.0064,-0.0868,0.0088,-0.0511,-0.0148,0.0704,0.0064,-0.0868,0.0088,0.0511,-0.0148,0.0704,0.0103,0.0868,0.0034,0.0827,0.0148,0.0269,0.048,-0.008,0.0747,0.0064,0.0868,-0.0088,0.0511,0.0148,-0.0704,0.0859,0.008,0.0226,0.0562,0.008,-0.0687,0.0827,-0.008,-0.0322,0.048,0.008,-0.0747,-0.0562,0.008,-0.0687,-0.0103,0.0868,0.0034,-0.0827,0.0148,0.0269
,-0.0051,0.008,0.0886,-0.048,-0.008,0.0747,0,0.0868,0.0109,0,0.0148,0.087,0.0562,-0.008,0.0687,0.0827,0.008,0.0322,-0.048,0.008,-0.0747,-0.0051,-0.008,-0.0886,-0.0064,0.0868,-0.0088,-0.0511,0.0148,-0.0704,0.0103,-0.0868,-0.0034,0.0827,-0.0148,-0.0269,-0.0827,0.008,0.0322,0,-0.0868,-0.0109,0,-0.0148,-0.087,-0.0103,-0.0868,-0.0034,-0.0827,-0.0148,-0.0269
,-0.0859,-0.008,-0.0226,-0.0859,0.008,0.0226,0,0.0868,0.0109,-0.0103,0.0868,0.0034,0,0.0915,0,-0.0064,0.0868,-0.0088,0,0.0915,0,0.0064,0.0868,-0.0088,0,0.0915,0,0.0103,0.0868,0.0034,0,0.0915,0,-0.0064,-0.0868,0.0088,0.0064,-0.0868,0.0088,0,-0.0915,0,0.0103,-0.0868,-0.0034,0,-0.0915,0,0,-0.0868,-0.0109
,0,-0.0915,0,-0.0103,-0.0868,-0.0034,0,-0.0915,0,0.0511,-0.0148,0.0704,0.048,-0.008,0.0747,0.0525,-0.0103,0.0722,0.0562,-0.008,0.0687,0.0525,-0.0103,0.0722,0.0827,0.0148,0.0269,0.0859,0.008,0.0226,0.0849,0.0103,0.0276,0.0827,0.008,0.0322,0.0849,0.0103,0.0276,0.0051,0.008,0.0886,-0.0051,0.008,0.0886,0,0.0103,0.0893,0,0.0148,0.087
,0,0.0103,0.0893,0.048,0.008,-0.0747,0.0562,0.008,-0.0687,0.0525,0.0103,-0.0722,0.0511,0.0148,-0.0704,0.0525,0.0103,-0.0722,0.0859,-0.008,-0.0226,0.0827,-0.008,-0.0322,0.0849,-0.0103,-0.0276,0.0827,-0.0148,-0.0269,0.0849,-0.0103,-0.0276,-0.0562,0.008,-0.0687,-0.048,0.008,-0.0747,-0.0525,0.0103,-0.0722,-0.0511,0.0148,-0.0704,-0.0525,0.0103,-0.0722,0.0051,-0.008,-0.0886
,-0.0051,-0.008,-0.0886,0,-0.0103,-0.0893,0,-0.0148,-0.087,0,-0.0103,-0.0893,-0.0859,-0.008,-0.0226,-0.0827,-0.0148,-0.0269,-0.0849,-0.0103,-0.0276,-0.0827,-0.008,-0.0322,-0.0849,-0.0103,-0.0276,-0.0827,0.0148,0.0269,-0.0827,0.008,0.0322,-0.0849,0.0103,0.0276,-0.0859,0.008,0.0226,-0.0849,0.0103,0.0276,-0.0562,-0.008,0.0687,-0.048,-0.008,0.0747,-0.0525,-0.0103,0.0722
,-0.0511,-0.0148,0.0704,-0.0525,-0.0103,0.0722,-0.0511,-0.0148,0.0704,0.0511,-0.0148,0.0704,0.0827,0.0148,0.0269,0.0051,0.008,0.0886,0.0511,0.0148,-0.0704,0.0859,-0.008,-0.0226,0.0562,0.008,-0.0687,0.0827,-0.008,-0.0322,0.0051,-0.008,-0.0886,-0.0827,-0.008,-0.0322,-0.0827,0.0148,0.0269,-0.0051,0.008,0.0886,-0.048,-0.008,0.0747,0,0.0148,0.087,0.0562,-0.008,0.0687
,0.0827,0.008,0.0322,-0.048,0.008,-0.0747,-0.0051,-0.008,-0.0886,-0.0511,0.0148,-0.0704,0.0827,-0.0148,-0.0269,-0.0562,-0.008,0.0687,0,-0.0148,-0.087,-0.0827,-0.0148,-0.0269,-0.0859,-0.008,-0.0226,-0.0859,0.008,0.0226]
,"normals":[-0.739,-0.526,0.42,-0.845,-0.526,0.095,-0.868,-0.41,0.282,-0.739,0.526,-0.42,-0.845,0.526,-0.095,-0.868,0.41,-0.282,0.351,0.526,0.774,0.628,0.526,0.573,0.536,0.41,0.738,-0.628,0.526,0.573,-0.351,0.526,0.774,-0.536,0.41,0.738,0.171,0.526,-0.833,-0.171,0.526,-0.833,0,0.41,-0.912,-0.628,-0.526,-0.573,-0.351,-0.526,-0.774
,-0.536,-0.41,-0.738,0.628,-0.526,-0.573,0.351,-0.526,-0.774,0.361,-0.789,-0.497,0.845,-0.526,0.095,0.739,-0.526,0.42,0.868,-0.41,0.282,0.171,-0.526,0.833,-0.171,-0.526,0.833,0,-0.41,0.912,0.361,0.789,0.497,0,1,0,0.529,0.831,0.172,-0.361,0.789,0.497,0,1,0,0,0.831,0.556,-0.585,0.789,-0.19
,0,1,0,-0.529,0.831,0.172,0,0.789,-0.615,0,1,0,-0.327,0.831,-0.45,0.585,0.789,-0.19,0,1,0,0.327,0.831,-0.45,-0.585,-0.789,0.19,0,-1,0,-0.529,-0.831,-0.172,0,-0.789,0.615,0,-1,0,-0.327,-0.831,0.45,0.585,-0.789,0.19,0,-1,0,0.327,-0.831,0.45
,0,-1,0,0.529,-0.831,-0.172,-0.361,-0.789,-0.497,0,-1,0,0,-0.831,-0.556,0.575,-0.203,0.792,0.766,-0.025,0.643,0.575,-0.203,0.792,0.47,-0.602,0.646,0.575,-0.203,0.792,0.375,-0.025,0.927,0.931,0.203,0.303,0.848,0.025,0.529,0.845,0.526,-0.095,0.931,0.203,0.303,0.76,0.602,0.247,0.931,0.203,0.303
,0.997,0.025,0.07,0,0.203,0.979,0,0.602,0.799,0,0.203,0.979,0.241,0.025,0.97,0,0.203,0.979,-0.241,0.025,0.97,0.575,0.203,-0.792,0.47,0.602,-0.646,0.536,-0.41,-0.738,0.575,0.203,-0.792,0.375,0.025,-0.927,0.739,0.526,-0.42,0.575,0.203,-0.792,0.766,0.025,-0.643,0.931,-0.203,-0.303,0.76,-0.602,-0.247
,0.868,0.41,-0.282,0.931,-0.203,-0.303,0.997,-0.025,-0.07,0.931,-0.203,-0.303,0.848,-0.025,-0.529,-0.575,0.203,-0.792,-0.47,0.602,-0.646,-0.575,0.203,-0.792,-0.766,0.025,-0.643,-0.575,0.203,-0.792,-0.375,0.025,-0.927,0,-0.203,-0.979,0,-0.602,-0.799,0,-0.203,-0.979,0.241,-0.025,-0.97,0,-0.203,-0.979,-0.241,-0.025,-0.97
,-0.931,-0.203,-0.303,-0.848,-0.025,-0.529,-0.931,-0.203,-0.303,-0.997,-0.025,-0.07,-0.931,-0.203,-0.303,-0.76,-0.602,-0.247,-0.931,0.203,0.303,-0.997,0.025,0.07,-0.931,0.203,0.303,-0.76,0.602,0.247,-0.931,0.203,0.303,-0.848,0.025,0.529,-0.575,-0.203,0.792,-0.47,-0.602,0.646,-0.575,-0.203,0.792,-0.766,-0.025,0.643,-0.575,-0.203,0.792
,-0.375,-0.025,0.927,-0.327,-0.831,0.45,-0.47,-0.602,0.646,0.327,-0.831,0.45,0.47,-0.602,0.646,0.529,0.831,0.172,0.76,0.602,0.247,0.375,-0.025,0.927,0.327,0.831,-0.45,0.47,0.602,-0.646,0.997,0.025,0.07,0.766,0.025,-0.643,0.848,-0.025,-0.529,0.375,0.025,-0.927,-0.766,0.025,-0.643,-0.529,0.831,0.172,-0.76,0.602,0.247
,-0.241,0.025,0.97,-0.375,-0.025,0.927,0,0.831,0.556,0,0.602,0.799,0.766,-0.025,0.643,0.848,0.025,0.529,-0.375,0.025,-0.927,-0.241,-0.025,-0.97,-0.327,0.831,-0.45,-0.47,0.602,-0.646,0.529,-0.831,-0.172,0.76,-0.602,-0.247,-0.848,0.025,0.529,0,-0.831,-0.556,0,-0.602,-0.799,-0.529,-0.831,-0.172,-0.76,-0.602,-0.247
,-0.997,-0.025,-0.07,-0.997,0.025,0.07,0,0.831,0.556,-0.529,0.831,0.172,0,1,0,-0.327,0.831,-0.45,0,1,0,0.327,0.831,-0.45,0,1,0,0.529,0.831,0.172,0,1,0,-0.327,-0.831,0.45,0.327,-0.831,0.45,0,-1,0,0.529,-0.831,-0.172,0,-1,0,0,-0.831,-0.556
,0,-1,0,-0.529,-0.831,-0.172,0,-1,0,0.47,-0.602,0.646,0.375,-0.025,0.927,0.575,-0.203,0.792,0.766,-0.025,0.643,0.575,-0.203,0.792,0.76,0.602,0.247,0.997,0.025,0.07,0.931,0.203,0.303,0.848,0.025,0.529,0.931,0.203,0.303,0.241,0.025,0.97,-0.241,0.025,0.97,0,0.203,0.979,0,0.602,0.799
,0,0.203,0.979,0.375,0.025,-0.927,0.766,0.025,-0.643,0.575,0.203,-0.792,0.47,0.602,-0.646,0.575,0.203,-0.792,0.997,-0.025,-0.07,0.848,-0.025,-0.529,0.931,-0.203,-0.303,0.76,-0.602,-0.247,0.931,-0.203,-0.303,-0.766,0.025,-0.643,-0.375,0.025,-0.927,-0.575,0.203,-0.792,-0.47,0.602,-0.646,-0.575,0.203,-0.792,0.241,-0.025,-0.97
,-0.241,-0.025,-0.97,0,-0.203,-0.979,0,-0.602,-0.799,0,-0.203,-0.979,-0.997,-0.025,-0.07,-0.76,-0.602,-0.247,-0.931,-0.203,-0.303,-0.848,-0.025,-0.529,-0.931,-0.203,-0.303,-0.76,0.602,0.247,-0.848,0.025,0.529,-0.931,0.203,0.303,-0.997,0.025,0.07,-0.931,0.203,0.303,-0.766,-0.025,0.643,-0.375,-0.025,0.927,-0.575,-0.203,0.792
,-0.47,-0.602,0.646,-0.575,-0.203,0.792,-0.47,-0.602,0.646,0.47,-0.602,0.646,0.76,0.602,0.247,0.241,0.025,0.97,0.47,0.602,-0.646,0.997,-0.025,-0.07,0.766,0.025,-0.643,0.848,-0.025,-0.529,0.241,-0.025,-0.97,-0.848,-0.025,-0.529,-0.76,0.602,0.247,-0.241,0.025,0.97,-0.375,-0.025,0.927,0,0.602,0.799,0.766,-0.025,0.643
,0.848,0.025,0.529,-0.375,0.025,-0.927,-0.241,-0.025,-0.97,-0.47,0.602,-0.646,0.76,-0.602,-0.247,-0.766,-0.025,0.643,0,-0.602,-0.799,-0.76,-0.602,-0.247,-0.997,-0.025,-0.07,-0.997,0.025,0.07]
,"tangents":[-0.214,0.775,0.594,1,-0.338,0.662,0.669,1,-0.164,0.771,0.616,1,-0.615,-0.273,0.74,1,-0.375,-0.458,0.806,1,-0.445,-0.385,0.809,1,-0.931,0.284,0.229,1,-0.777,0.468,0.421,1,-0.833,0.396,0.386,1,0.501,-0.289,0.815,1,0.636,-0.473,0.61,1,0.62,-0.402,0.674,1,-0.879,0.463
,0.112,1,-0.89,0.279,0.359,1,-0.903,0.391,0.176,1,-0.515,-0.272,0.813,1,-0.651,-0.457,0.606,1,-0.633,-0.384,0.673,1,0.647,0.762,0.009,1,0.76,0.644,-0.093,1,0.837,0.51,-0.2,1,-0.532,-0.807,0.257,1,-0.653,-0.713,0.256,1,-0.486,-0.817,0.31,1,-0.892,0.277,0.358,1
,-0.88,0.461,0.111,1,-0.905,0.389,0.175,1,-0.93,0.27,0.248,1,-0.979,0,0.206,1,-0.829,0.461,0.317,1,0.518,-0.274,0.81,1,0.493,0,0.87,1,0.552,-0.463,0.693,1,-0.6,-0.262,0.756,1,-0.661,0,0.751,1,-0.474,-0.457,0.752,1,-0.901,0.267,0.342,1,-0.915,0
,0.403,1,-0.845,-0.044,0.533,1,0.601,-0.263,0.755,1,0.662,0,0.749,1,0.765,0.047,0.643,1,-0.472,0.521,0.711,1,-0.612,0,0.791,1,-0.647,0.263,0.716,1,-0.902,0.265,0.34,1,-0.916,0,0.401,1,-0.86,0.459,0.223,1,-0.81,-0.552,0.2,1,-0.984,0,0.176,1
,-0.944,-0.313,0.107,1,0.953,0,-0.303,1,0.812,0.554,-0.182,1,-0.535,-0.261,0.803,1,-0.511,0,0.86,1,-0.57,-0.457,0.683,1,-0.632,-0.725,0.273,1,-0.401,-0.8,0.446,1,-0.772,0.183,0.608,1,-0.781,0.059,0.622,1,-0.681,0.416,0.602,1,-0.859,0.367,0.357,1,-0.358,0.662
,0.658,1,-0.446,0.574,0.687,1,0.376,-0.459,0.805,1,-0.101,-0.653,0.75,1,0.222,-0.597,0.771,1,0.032,-0.873,0.488,1,-0.004,-0.925,0.381,1,-0.981,0.191,-0.04,1,-0.997,0.066,-0.05,1,-0.909,0.409,-0.085,1,-0.908,0.359,0.217,1,0.732,-0.668,0.139,1,0.787,-0.579,0.211,1
,-0.68,0.658,-0.325,1,-0.799,0.6,-0.022,1,0.655,0.753,0.058,1,0.366,0.802,0.472,1,0.581,0.773,0.256,1,0.615,-0.274,0.739,1,0.817,-0.18,0.547,1,0.623,-0.278,0.731,1,-0.147,-0.969,0.198,1,-0.552,-0.797,0.243,1,0.445,-0.386,0.808,1,0.201,-0.406,0.891,1,0.05,-0.474
,0.879,1,0.272,0.94,0.205,1,0.234,0.914,0.331,1,-0.817,-0.178,0.548,1,-0.831,-0.055,0.553,1,-0.786,-0.403,0.468,1,-0.608,-0.354,0.711,1,-0.772,0.186,0.608,1,-0.886,0.283,0.366,1,0.763,0.633,-0.132,1,0.819,0.459,-0.346,1,-0.908,0.411,-0.085,1,-0.849,0.48,-0.224,1
,-0.747,-0.651,0.135,1,-0.8,-0.561,0.214,1,-0.201,-0.405,0.892,1,-0.488,-0.355,0.798,1,-0.359,0.657,0.663,1,-0.066,0.737,0.673,1,-0.269,-0.177,0.947,1,-0.27,-0.054,0.961,1,0.102,-0.652,0.752,1,0.044,-0.562,0.826,1,0.263,-0.198,0.944,1,0.256,-0.072,0.964,1,0.331,0.821
,0.465,1,0.271,0.879,0.393,1,0.082,0.949,0.303,1,-0.22,0.789,0.574,1,0.781,-0.422,0.459,1,0.604,-0.373,0.704,1,-0.681,0.655,-0.326,1,-0.769,0.566,-0.296,1,-0.453,0.555,0.698,1,-0.801,0.599,-0.024,1,-0.846,-0.045,0.531,1,-0.834,-0.543,0.1,1,0.476,-0.458,0.751,1
,-0.635,0.604,0.483,1,-0.887,0.281,0.366,1,-0.859,0.459,0.225,1,0.832,-0.056,0.552,1,-0.044,-0.564,0.825,1,0.31,0.861,0.403,1,0.487,-0.356,0.797,1,-0.768,0.569,-0.295,1,-0.623,-0.276,0.732,1,0.36,0.037,0.932,1,-0.221,-0.596,0.772,1,-0.85,0.477,-0.224,1,0.812,-0.491
,0.315,1,-0.997,-0.04,0.06,1,0.65,-0.607,0.457,1,-0.553,0.485,0.678,1,-0.259,-0.852,0.454,1,-0.822,-0.472,0.32,1,-0.907,0.362,0.216,1,-0.764,0.048,0.644,1,-0.78,0.061,0.623,1,-0.807,-0.555,0.202,1,0.621,0.784,0.001,1,0.5,-0.295,0.814,1,0.897,0.246,-0.368,1
,-0.667,-0.595,0.448,1,-0.377,0.049,0.925,1,-0.591,0.481,0.647,1,-0.05,-0.473,0.88,1,0.062,0.794,0.604,1,-0.997,-0.04,0.06,1,0.36,0.037,0.932,1,0.493,0,0.87,1,-0.764,0.048,0.644,1,-0.661,0,0.751,1,-0.859,0.459,0.225,1,-0.915,0,0.403,1,0.476,-0.458
,0.751,1,0.662,0,0.749,1,-0.453,0.555,0.698,1,-0.846,-0.045,0.531,1,-0.916,0,0.401,1,-0.807,-0.555,0.202,1,-0.984,0,0.176,1,0.897,0.246,-0.368,1,0.953,0,-0.303,1,-0.377,0.049,0.925,1,-0.511,0,0.86,1,-0.834,-0.543,0.1,1,-0.887,0.281,0.366,1
,-0.772,0.183,0.608,1,-0.553,0.485,0.678,1,-0.681,0.416,0.602,1,-0.635,0.604,0.483,1,-0.044,-0.564,0.825,1,-0.101,-0.653,0.75,1,-0.259,-0.852,0.454,1,0.032,-0.873,0.488,1,-0.931,0.289,0.224,1,-0.85,0.477,-0.224,1,-0.909,0.409,-0.085,1,0.65,-0.607,0.457,1,0.732,-0.668
,0.139,1,-0.768,0.569,-0.295,1,0.31,0.861,0.403,1,0.366,0.802,0.472,1,0.832,-0.056,0.552,1,0.817,-0.18,0.547,1,-0.005,-0.963,0.271,1,0.487,-0.356,0.797,1,0.201,-0.406,0.891,1,0.621,0.784,0.001,1,0.272,0.94,0.205,1,-0.623,-0.276,0.732,1,-0.822,-0.472,0.32,1
,-0.786,-0.403,0.468,1,-0.78,0.061,0.623,1,-0.772,0.186,0.608,1,0.684,0.714,0.152,1,-0.907,0.362,0.216,1,-0.908,0.411,-0.085,1,-0.667,-0.595,0.448,1,-0.747,-0.651,0.135,1,-0.05,-0.473,0.88,1,-0.591,0.481,0.647,1,-0.359,0.657,0.663,1,-0.503,-0.275,0.819,1,-0.269,-0.177
,0.947,1,-0.221,-0.596,0.772,1,0.5,-0.295,0.814,1,0.263,-0.198,0.944,1,0.062,0.794,0.604,1,0.331,0.821,0.465,1,0.221,0.928,0.299,1,0.812,-0.491,0.315,1,0.781,-0.422,0.459,1,-0.801,0.599,-0.024,1,-0.681,0.655,-0.326,1,-0.801,0.599,-0.024,1,-0.834,-0.543,0.1,1
,-0.635,0.604,0.483,1,-0.931,0.289,0.224,1,0.832,-0.056,0.552,1,-0.005,-0.963,0.271,1,0.31,0.861,0.403,1,0.487,-0.356,0.797,1,0.684,0.714,0.152,1,-0.503,-0.275,0.819,1,-0.221,-0.596,0.772,1,-0.85,0.477,-0.224,1,0.812,-0.491,0.315,1,0.65,-0.607,0.457,1,-0.553,0.485
,0.678,1,-0.259,-0.852,0.454,1,-0.822,-0.472,0.32,1,-0.907,0.362,0.216,1,-0.78,0.061,0.623,1,0.621,0.784,0.001,1,0.221,0.928,0.299,1,-0.667,-0.595,0.448,1,-0.591,0.481,0.647,1,-0.05,-0.473,0.88,1,0.062,0.794,0.604,1]
,"uvs":[0.952,0.236,0.9,0.152,0.947,0.181,0.589,0.749,0.678,0.707,0.645,0.75,0.45,0.572,0.362,0.616,0.395,0.572,0.359,0.752,0.447,0.707,0.414,0.752,0.481,0.706,0.569,0.749,0.514,0.75,0.686,0.572,0.597,0.614,0.631,0.57,0.952,0.029,0.898,0.111,0.839,0.013,0.057,0.773,0.1,0.861,0.056,0.828,0.016,0.935
,0.105,0.892,0.071,0.936,0.452,0.686,0.458,0.699,0.447,0.693,0.356,0.637,0.35,0.624,0.361,0.631,0.589,0.635,0.583,0.622,0.594,0.629,0.57,0.635,0.577,0.622,0.578,0.635,0.476,0.685,0.469,0.699,0.468,0.686,0.838,0.248,0.826,0.256,0.832,0.244,0.016,0.821,0.009,0.808,0.02,0.815,0.171,0.772,0.184,0.766
,0.177,0.777,0.827,0.005,0.84,0.005,0.686,0.686,0.693,0.699,0.682,0.692,0.102,0.871,0.096,0.868,0.009,0.941,0.008,0.935,0.392,0.565,0.398,0.565,0.353,0.618,0.356,0.613,0.565,0.614,0.574,0.616,0.57,0.62,0.049,0.831,0.049,0.825,0.458,0.566,0.459,0.572,0.075,0.943,0.068,0.943,0.456,0.705,0.453,0.71
,0.472,0.704,0.476,0.7,0.946,0.084,0.952,0.088,0.947,0.091,0.476,0.571,0.468,0.566,0.474,0.564,0.051,0.765,0.057,0.764,0.531,0.57,0.534,0.564,0.538,0.569,0.959,0.022,0.96,0.029,0.582,0.755,0.581,0.749,0.628,0.564,0.634,0.564,0.577,0.755,0.571,0.756,0.894,0.12,0.891,0.116,0.511,0.757,0.507,0.752
,0.588,0.617,0.591,0.611,0.648,0.757,0.641,0.757,0.897,0.143,0.903,0.145,0.694,0.566,0.695,0.572,0.688,0.704,0.685,0.71,0.351,0.757,0.351,0.752,0.954,0.177,0.954,0.183,0.958,0.243,0.953,0.244,0.417,0.758,0.411,0.758,0.114,0.89,0.111,0.896,0.839,0.256,0.11,0.886,0.008,0.821,0.106,0.867,0.48,0.692
,0.357,0.622,0.015,0.942,0.566,0.629,0.468,0.571,0.571,0.611,0.953,0.082,0.528,0.564,0.474,0.709,0.588,0.756,0.349,0.637,0.684,0.7,0.078,0.938,0.421,0.753,0.46,0.686,0.452,0.701,0.388,0.57,0.054,0.835,0.624,0.569,0.517,0.757,0.581,0.635,0.578,0.75,0.171,0.764,0.954,0.021,0.358,0.759,0.832,0.017
,0.592,0.621,0.694,0.686,0.893,0.147,0.652,0.752,0.948,0.174,0.46,0.686,0.349,0.637,0.35,0.624,0.581,0.635,0.583,0.622,0.566,0.629,0.577,0.622,0.48,0.692,0.469,0.699,0.839,0.256,0.008,0.821,0.009,0.808,0.171,0.764,0.184,0.766,0.832,0.017,0.827,0.005,0.694,0.686,0.693,0.699,0.106,0.867,0.015,0.942
,0.009,0.941,0.388,0.57,0.392,0.565,0.357,0.622,0.571,0.611,0.574,0.616,0.054,0.835,0.049,0.831,0.452,0.565,0.078,0.938,0.075,0.943,0.452,0.701,0.456,0.705,0.474,0.709,0.953,0.082,0.952,0.088,0.468,0.571,0.468,0.566,0.05,0.771,0.528,0.564,0.534,0.564,0.954,0.021,0.959,0.022,0.588,0.756,0.624,0.569
,0.628,0.564,0.578,0.75,0.577,0.755,0.9,0.118,0.517,0.757,0.511,0.757,0.592,0.621,0.588,0.617,0.652,0.752,0.893,0.147,0.897,0.143,0.688,0.565,0.694,0.566,0.684,0.7,0.358,0.759,0.351,0.757,0.948,0.174,0.954,0.177,0.959,0.236,0.421,0.753,0.417,0.758,0.11,0.886,0.114,0.89,0.11,0.886,0.106,0.867
,0.357,0.622,0.452,0.565,0.468,0.571,0.05,0.771,0.953,0.082,0.528,0.564,0.9,0.118,0.688,0.565,0.684,0.7,0.078,0.938,0.421,0.753,0.452,0.701,0.388,0.57,0.054,0.835,0.624,0.569,0.517,0.757,0.578,0.75,0.954,0.021,0.959,0.236,0.592,0.621,0.893,0.147,0.652,0.752,0.948,0.174]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50
,20,51,52,53,54,55,22,56,57,24,58,59,8,60,61,7,62,63,64,65,66,23,67,68,6,69,70,26,71,72,10,73,74,12,75,76,77,78,79,80,81,82,21,83,84,85,86,87,18,88,89
,3,90,91,17,92,93,13,94,95,19,96,97,14,98,99,16,100,101,5,102,103,1,104,105,15,106,107,4,108,109,9,110,111,2,112,113,0,114,115,11,116,117,25,118,119,42,115,120,121,45,47
,45,59,122,123,48,50,39,66,124,125,27,29,24,72,126,61,6,8,36,76,127,128,39,41,64,87,129,68,21,23,18,130,77,131,80,82,12,99,132,79,19,77,3,103,133,93,15,17,30,111,134
,135,33,35,25,136,26,137,10,74,27,70,138,139,30,32,7,140,8,141,22,57,16,142,17,143,13,95,33,91,144,145,36,38,48,84,146,147,20,52,9,117,148,113,0,2,20,97,149,150,53,55
,53,107,151,152,42,44,4,153,5,154,1,105,64,80,85,0,42,1,3,33,4,6,27,7,9,30,10,12,36,13,15,53,16,18,77,19,21,48,22,24,45,25,27,155,28,30,156,157,33,158,159
,36,160,161,39,162,163,42,164,43,45,165,166,48,167,168,20,169,170,53,171,172,22,173,56,24,174,175,8,176,177,7,178,62,64,179,180,23,181,182,6,183,69,26,184,185,10,186,187,12,188,75
,77,189,190,80,191,192,21,193,83,85,194,195,18,196,197,3,198,90,17,199,200,13,201,202,19,203,96,14,204,205,16,206,207,5,208,102,1,209,210,15,211,212,4,213,108,9,214,215,2,216,217
,0,218,114,11,219,220,25,221,222,42,0,115,223,25,45,45,24,59,224,22,48,39,64,66,225,7,27,24,26,72,61,226,6,36,12,76,227,80,39,64,85,87,68,228,21,18,89,229,230,85,80
,12,14,99,79,231,19,3,5,103,93,232,15,30,9,111,233,4,33,25,119,234,235,11,10,27,6,70,236,10,30,7,63,237,238,23,22,16,101,239,240,14,13,33,3,91,241,13,36,48,21,84
,242,18,20,9,11,117,113,243,0,20,19,97,244,16,53,53,15,107,245,1,42,4,109,246,247,2,1,64,39,80]
}
],
"colliderFaceMap": {
"d4": {
"3": 1,
"0": 2,
"1": 3,
"2": 4
},
"d6": {
"0": 1,
"6": 1,
"4": 2,
"10": 2,
"8": 3,
"2": 3,
"3": 4,
"9": 4,
"7": 5,
"1": 5,
"5": 6,
"11": 6
},
"d8": {
"3": 1,
"7": 2,
"6": 3,
"2": 4,
"1": 5,
"5": 6,
"4": 7,
"0": 8
},
"d10": {
"9": 1,
"19": 1,
"1": 2,
"11": 2,
"7": 3,
"17": 3,
"3": 4,
"13": 4,
"6": 5,
"16": 5,
"2": 6,
"12": 6,
"8": 7,
"18": 7,
"10": 8,
"0": 8,
"5": 9,
"15": 9,
"4": 0,
"14": 0
},
"d12": {
"2": 1,
"16": 1,
"17": 1,
"6": 2,
"24": 2,
"25": 2,
"0": 3,
"12": 3,
"13": 3,
"1": 4,
"14": 4,
"15": 4,
"5": 5,
"22": 5,
"23": 5,
"9": 6,
"30": 6,
"31": 6,
"7": 7,
"26": 7,
"27": 7,
"10": 8,
"32": 8,
"33": 8,
"11": 9,
"34": 9,
"35": 9,
"8": 10,
"28": 10,
"29": 10,
"4": 11,
"20": 11,
"21": 11,
"3": 12,
"18": 12,
"19": 12
},
"d20": {
"19": 1,
"2": 2,
"8": 3,
"3": 4,
"15": 5,
"0": 6,
"14": 7,
"1": 8,
"17": 9,
"9": 10,
"10": 11,
"18": 12,
"6": 13,
"13": 14,
"7": 15,
"12": 16,
"4": 17,
"11": 18,
"5": 19,
"16": 20
},
"d100": {
"3": 10,
"13": 10,
"9": 20,
"19": 20,
"4": 30,
"14": 30,
"1": 40,
"11": 40,
"7": 50,
"17": 50,
"2": 60,
"12": 60,
"8": 70,
"18": 70,
"5": 80,
"15": 80,
"0": 90,
"10": 90,
"6": 0,
"16": 0
}
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 81 KiB

View File

@ -1,22 +0,0 @@
{
"name": "Rock",
"systemName": "rock",
"author": "Frank Ali",
"version": 0.2,
"meshName": "smoothDice",
"meshFile": "smoothDice.json",
"material": {
"type": "color",
"diffuseTexture": {
"light": "diffuse-light.png",
"dark": "diffuse-dark.png"
},
"bumpTexture": "normal.png",
"specularTexture": "specularity.jpg",
"diffuseLevel": 1,
"bumpLevel": 1,
"specularPower": 0.5
},
"themeColor": "#b7aca1",
"diceAvailable": ["d4","d6","d8","d10","d12","d20","d100"]
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 201 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 196 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 709 KiB

View File

@ -1,33 +0,0 @@
{
"name": "@3d-dice/theme-rust",
"private": false,
"author": {
"name": "Frank Ali"
},
"description": "Rust textured theme with configurable colors",
"version": "0.2.0",
"keywords": [
"3D",
"dice",
"skins",
"theme",
"javascript",
"rpg",
"dnd",
"d&d",
"tabletop"
],
"license": "MIT",
"homepage": "https://fantasticdice.games",
"repository": {
"type": "git",
"url": "https://github.com/3d-dice/dice-themes",
"directory": "themes/rust"
},
"bugs": {
"url": "https://github.com/3d-dice/dice-themes/issues"
},
"files": [
"*"
]
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 83 KiB

View File

@ -1,20 +0,0 @@
{
"name": "Rust",
"systemName": "rust",
"author": "Frank Ali",
"version": 0.2,
"material": {
"type": "color",
"diffuseTexture": {
"light": "diffuse-light.png",
"dark": "diffuse-dark.png"
},
"diffuseLevel": 1,
"bumpTexture": "normal.png",
"bumpLevel": 1,
"specularTexture": "specular.jpg",
"specularPower": 1
},
"themeColor": "#aa4f4a",
"diceAvailable": ["d4","d6","d8","d10","d12","d20","d100"]
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 215 KiB

View File

@ -1,33 +0,0 @@
{
"name": "@3d-dice/theme-smooth",
"private": false,
"author": {
"name": "Frank Ali"
},
"description": "Smooth edged dice with configurable colors",
"version": "0.2.1",
"keywords": [
"3D",
"dice",
"skins",
"theme",
"javascript",
"rpg",
"dnd",
"d&d",
"tabletop"
],
"license": "MIT",
"homepage": "https://fantasticdice.games",
"repository": {
"type": "git",
"url": "https://github.com/3d-dice/dice-themes",
"directory": "themes/smooth"
},
"bugs": {
"url": "https://github.com/3d-dice/dice-themes/issues"
},
"files": [
"*"
]
}

View File

@ -1,707 +0,0 @@
{"producer":{"name":"Blender","version":"2.93.4","exporter_version":"2.93.5","file":"dice_final.babylon"},
"autoClear":true,"clearColor":[0.0509,0.0509,0.0509],"gravity":[0,-9.81,0],"physicsEnabled":true,
"meshes":[
{"name":"d4_collider","id":"d4_collider","billboardMode":0,"position":[0.6,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false,"physicsImpostor":8,"physicsMass":0.07,"physicsFriction":0.8,"physicsRestitution":0
,"positions":[-0.0542,-0.0383,-0.0939,0,0.115,0,-0.0542,-0.0383,0.0939,-0.0542,-0.0383,-0.0939,0.1084,-0.0383,0,0,0.115,0,-0.0542,-0.0383,-0.0939,-0.0542,-0.0383,0.0939,0.1084,-0.0383,0,-0.0542,-0.0383,0.0939,0,0.115,0,0.1084,-0.0383,0]
,"normals":[-0.943,0.333,0,-0.943,0.333,0,-0.943,0.333,0,0.471,0.333,-0.816,0.471,0.333,-0.816,0.471,0.333,-0.816,0,-1,0,0,-1,0,0,-1,0,0.471,0.333,0.816,0.471,0.333,0.816,0.471,0.333,0.816]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11]
}
,{"name":"d6_collider","id":"d6_collider","billboardMode":0,"position":[0.4,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false,"physicsImpostor":8,"physicsMass":0.085,"physicsFriction":0.8,"physicsRestitution":0
,"positions":[-0.0664,-0.0664,0.0664,0.0664,-0.0664,-0.0664,-0.0664,-0.0664,-0.0664,0.0664,-0.0664,-0.0664,-0.0664,0.0664,-0.0664,-0.0664,-0.0664,-0.0664,-0.0664,0.0664,-0.0664,-0.0664,-0.0664,0.0664,-0.0664,-0.0664,-0.0664,0.0664,0.0664,-0.0664,0.0664,-0.0664,0.0664,0.0664,0.0664,0.0664,0.0664,-0.0664,0.0664,-0.0664,0.0664,0.0664,0.0664,0.0664,0.0664,-0.0664,0.0664,0.0664,0.0664,0.0664,-0.0664
,0.0664,0.0664,0.0664,0.0664,-0.0664,0.0664,0.0664,-0.0664,-0.0664,0.0664,0.0664,-0.0664,-0.0664,0.0664,-0.0664,-0.0664,0.0664,0.0664,-0.0664,-0.0664,0.0664,0.0664,-0.0664,-0.0664,0.0664,-0.0664,0.0664,-0.0664,-0.0664,0.0664,-0.0664,0.0664,0.0664,-0.0664,0.0664,-0.0664,0.0664,0.0664,-0.0664]
,"normals":[0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0
,0,1,0,0,-1,0,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,0,18,1,19,20,4,21,22,23,9,24,10,25,26,13,27,28,29]
}
,{"name":"d8_collider","id":"d8_collider","billboardMode":0,"position":[0.2,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false,"physicsImpostor":8,"physicsMass":0.082,"physicsFriction":0.8,"physicsRestitution":0
,"positions":[0,0.1,0,0.1,0,0,0,0,0.1,0,0.1,0,0,0,0.1,-0.1,0,0,0,0.1,0,-0.1,0,0,0,0,-0.1,0,0.1,0,0,0,-0.1,0.1,0,0,0,-0.1,0,0,0,0.1,0.1,0,0,0,-0.1,0,-0.1,0,0
,0,0,0.1,0,-0.1,0,0,0,-0.1,-0.1,0,0,0,-0.1,0,0.1,0,0,0,0,-0.1]
,"normals":[0.577,0.577,0.577,0.577,0.577,0.577,0.577,0.577,0.577,-0.577,0.577,0.577,-0.577,0.577,0.577,-0.577,0.577,0.577,-0.577,0.577,-0.577,-0.577,0.577,-0.577,-0.577,0.577,-0.577,0.577,0.577,-0.577,0.577,0.577,-0.577,0.577,0.577,-0.577,0.577,-0.577,0.577,0.577,-0.577,0.577,0.577,-0.577,0.577,-0.577,-0.577,0.577,-0.577,-0.577,0.577
,-0.577,-0.577,0.577,-0.577,-0.577,-0.577,-0.577,-0.577,-0.577,-0.577,-0.577,-0.577,0.577,-0.577,-0.577,0.577,-0.577,-0.577,0.577,-0.577,-0.577]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23]
}
,{"name":"d10_collider","id":"d10_collider","billboardMode":0,"position":[0,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false,"physicsImpostor":8,"physicsMass":0.082,"physicsFriction":0.8,"physicsRestitution":0
,"positions":[0,0.0106,0.0939,0.0893,0.0106,0.029,0.0552,-0.0106,0.076,0.0893,0.0106,0.029,0.0552,0.0106,-0.076,0.0893,-0.0106,-0.029,0.0552,0.0106,-0.076,-0.0552,0.0106,-0.076,0,-0.0106,-0.0939,-0.0552,0.0106,-0.076,-0.0893,0.0106,0.029,-0.0893,-0.0106,-0.029,-0.0893,0.0106,0.029,0,0.0106,0.0939,-0.0552,-0.0106,0.076,0.0893,-0.0106,-0.029,0,-0.0106,-0.0939
,0,-0.1,0,0.0893,-0.0106,-0.029,0.0552,-0.0106,0.076,0.0893,0.0106,0.029,0.0552,-0.0106,0.076,-0.0552,-0.0106,0.076,0,0.0106,0.0939,-0.0552,-0.0106,0.076,-0.0893,-0.0106,-0.029,-0.0893,0.0106,0.029,-0.0893,-0.0106,-0.029,0,-0.0106,-0.0939,-0.0552,0.0106,-0.076,0,0.1,0,0.0893,0.0106,0.029,0,0.1,0,0.0552,0.0106,-0.076
,0,0.1,0,-0.0552,0.0106,-0.076,0,0.1,0,-0.0893,0.0106,0.029,0,0.1,0,0,0.0106,0.0939,0.0893,-0.0106,-0.029,0.0552,0.0106,-0.076,0,-0.0106,-0.0939,0.0893,-0.0106,-0.029,0,-0.1,0,0.0552,-0.0106,0.076,0.0552,-0.0106,0.076,0,-0.1,0,-0.0552,-0.0106,0.076,-0.0552,-0.0106,0.076,0,-0.1,0
,-0.0893,-0.0106,-0.029,-0.0893,-0.0106,-0.029,0,-0.1,0,0,-0.0106,-0.0939]
,"normals":[0.448,0.647,0.617,0.448,0.647,0.617,0.448,0.647,0.617,0.725,0.647,-0.236,0.725,0.647,-0.236,0.725,0.647,-0.236,0,0.647,-0.762,0,0.647,-0.762,0,0.647,-0.762,-0.725,0.647,-0.236,-0.725,0.647,-0.236,-0.725,0.647,-0.236,-0.448,0.647,0.617,-0.448,0.647,0.617,-0.448,0.647,0.617,0.448,-0.647,-0.617,0.448,-0.647,-0.617
,0.448,-0.647,-0.617,0.725,-0.647,0.236,0.725,-0.647,0.236,0.725,-0.647,0.236,0,-0.647,0.762,0,-0.647,0.762,0,-0.647,0.762,-0.725,-0.647,0.236,-0.725,-0.647,0.236,-0.725,-0.647,0.236,-0.448,-0.647,-0.617,-0.448,-0.647,-0.617,-0.448,-0.647,-0.617,0.448,0.647,0.617,0.725,0.647,-0.236,0.725,0.647,-0.236,0,0.647,-0.762
,0,0.647,-0.762,-0.725,0.647,-0.236,-0.725,0.647,-0.236,-0.448,0.647,0.617,-0.448,0.647,0.617,-0.448,0.647,0.617,0.448,-0.647,-0.617,0.448,-0.647,-0.617,0.448,-0.647,-0.617,0.725,-0.647,0.236,0.725,-0.647,0.236,0.725,-0.647,0.236,0,-0.647,0.762,0,-0.647,0.762,0,-0.647,0.762,-0.725,-0.647,0.236,-0.725,-0.647,0.236
,-0.725,-0.647,0.236,-0.448,-0.647,-0.617,-0.448,-0.647,-0.617,-0.448,-0.647,-0.617]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,0,30,1,31,32,4,33,34,7,35,36,10,37,38,39,40,41,42,43,44,45
,46,47,48,49,50,51,52,53,54]
}
,{"name":"d12_collider","id":"d12_collider","billboardMode":0,"position":[-0.2,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false,"physicsImpostor":8,"physicsMass":0.09,"physicsFriction":0.8,"physicsRestitution":0
,"positions":[-0.0577,-0.0577,0.0577,0,-0.0934,-0.0357,-0.0577,-0.0577,-0.0577,0.0357,0,-0.0934,0,0.0934,-0.0357,-0.0577,0.0577,-0.0577,0,-0.0934,0.0357,0.0934,-0.0357,0,0.0577,-0.0577,-0.0577,-0.0934,0.0357,0,0,0.0934,-0.0357,0,0.0934,0.0357,0.0357,0,-0.0934,-0.0357,0,-0.0934,-0.0577,-0.0577,-0.0577,-0.0577,0.0577,-0.0577,-0.0934,-0.0357,0
,-0.0577,-0.0577,-0.0577,-0.0357,0,0.0934,0,0.0934,0.0357,0.0577,0.0577,0.0577,-0.0934,-0.0357,0,-0.0577,0.0577,0.0577,-0.0357,0,0.0934,0,0.0934,-0.0357,0.0934,0.0357,0,0.0577,0.0577,0.0577,0.0357,0,-0.0934,0.0577,-0.0577,-0.0577,0.0934,-0.0357,0,0.0577,-0.0577,0.0577,0.0357,0,0.0934,0.0577,0.0577,0.0577,0,-0.0934,0.0357
,-0.0357,0,0.0934,0.0357,0,0.0934,-0.0934,-0.0357,0,0,-0.0934,0.0357,-0.0357,0,-0.0934,0.0577,0.0577,-0.0577,0,-0.0934,-0.0357,0.0577,-0.0577,0.0577,-0.0577,0.0577,0.0577,-0.0577,0.0577,-0.0577,0,0.0934,-0.0357,-0.0577,-0.0577,-0.0577,0,-0.0934,-0.0357,0.0577,-0.0577,-0.0577,0.0577,-0.0577,-0.0577,0.0357,0,-0.0934,-0.0577,-0.0577,-0.0577
,-0.0577,-0.0577,-0.0577,-0.0357,0,-0.0934,-0.0577,0.0577,-0.0577,-0.0577,0.0577,-0.0577,-0.0934,0.0357,0,0.0357,0,0.0934,-0.0577,0.0577,0.0577,0,0.0934,0.0357,-0.0357,0,0.0934,-0.0577,-0.0577,0.0577,-0.0934,-0.0357,0,-0.0934,-0.0357,0,-0.0934,0.0357,0,0.0577,0.0577,0.0577,0,0.0934,0.0357,0,0.0934,-0.0357,0,0.0934,-0.0357
,0.0577,0.0577,-0.0577,0.0934,0.0357,0,0.0577,0.0577,-0.0577,0.0934,-0.0357,0,0.0577,0.0577,-0.0577,0.0357,0,-0.0934,0.0934,-0.0357,0,0.0577,0.0577,0.0577,0.0934,0.0357,0,0.0934,-0.0357,0,0.0934,-0.0357,0,0.0577,0.0577,0.0577,0.0357,0,0.0934,0.0577,-0.0577,0.0577,0,-0.0934,0.0357,0,-0.0934,0.0357,-0.0577,-0.0577,0.0577
,-0.0357,0,0.0934]
,"normals":[-0.526,-0.851,0,-0.526,-0.851,0,-0.526,-0.851,0,0,0.526,-0.851,0,0.526,-0.851,0,0.526,-0.851,0.526,-0.851,0,0.526,-0.851,0,0.526,-0.851,0,-0.526,0.851,0,-0.526,0.851,0,-0.526,0.851,0,0,-0.526,-0.851,0,-0.526,-0.851,0,-0.526,-0.851,-0.851,0,-0.526,-0.851,0,-0.526
,-0.851,0,-0.526,0,0.526,0.851,0,0.526,0.851,0,0.526,0.851,-0.851,0,0.526,-0.851,0,0.526,-0.851,0,0.526,0.526,0.851,0,0.526,0.851,0,0.526,0.851,0,0.851,0,-0.526,0.851,0,-0.526,0.851,0,-0.526,0.851,0,0.526,0.851,0,0.526,0.851,0,0.526,0,-0.526,0.851
,0,-0.526,0.851,0,-0.526,0.851,-0.526,-0.851,0,-0.526,-0.851,0,0,0.526,-0.851,0,0.526,-0.851,0.526,-0.851,0,0.526,-0.851,0,-0.526,0.851,0,-0.526,0.851,0,-0.526,0.851,0,0,-0.526,-0.851,0,-0.526,-0.851,0,-0.526,-0.851,0,-0.526,-0.851,0,-0.526,-0.851,0,-0.526,-0.851
,-0.851,0,-0.526,-0.851,0,-0.526,-0.851,0,-0.526,-0.851,0,-0.526,-0.851,0,-0.526,0,0.526,0.851,0,0.526,0.851,0,0.526,0.851,-0.851,0,0.526,-0.851,0,0.526,-0.851,0,0.526,-0.851,0,0.526,-0.851,0,0.526,0.526,0.851,0,0.526,0.851,0,0.526,0.851,0,0.526,0.851,0
,0.526,0.851,0,0.851,0,-0.526,0.851,0,-0.526,0.851,0,-0.526,0.851,0,-0.526,0.851,0,-0.526,0.851,0,-0.526,0.851,0,0.526,0.851,0,0.526,0.851,0,0.526,0.851,0,0.526,0.851,0,0.526,0,-0.526,0.851,0,-0.526,0.851,0,-0.526,0.851,0,-0.526,0.851,0,-0.526,0.851
,0,-0.526,0.851]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,2,36,0,0,37,1,5,38,3,3,39,4,8,40,6
,6,41,7,11,42,9,9,43,44,45,46,47,48,49,50,51,52,53,54,55,16,20,56,18,18,57,58,59,60,61,62,63,22,64,65,66,67,68,25,69,70,71,72,73,74,75,76,77,78,30,79
,80,81,82,83,84,85]
}
,{"name":"d20_collider","id":"d20_collider","billboardMode":0,"position":[-0.4,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1.1109,1.1109,1.1109],"isVisible":true,"isEnabled":true,"pickable":false,"physicsImpostor":8,"physicsMass":0.1,"physicsFriction":0.8,"physicsRestitution":0
,"positions":[0.0851,0,0.0526,0,0.0526,0.0851,0.0526,0.0851,0,0.0526,-0.0851,0,0,-0.0526,0.0851,0.0851,0,-0.0526,0,0.0526,-0.0851,0,-0.0526,-0.0851,-0.0851,0,0.0526,-0.0526,0.0851,0,-0.0526,-0.0851,0,-0.0851,0,-0.0526]
,"normals":[0.851,0,0.526,0,0.526,0.851,0.526,0.851,0,0.526,-0.851,0,0,-0.526,0.851,0.851,0,-0.526,0,0.526,-0.851,0,-0.526,-0.851,-0.851,0,0.526,-0.526,0.851,0,-0.526,-0.851,0,-0.851,0,-0.526]
,"indices":[0,1,2,0,3,4,5,2,6,5,7,3,8,9,1,8,4,10,11,6,9,11,10,7,0,4,1,8,1,4,5,6,7,11,7,6,2,5,0,3,0,5,9,8,11,10,11,8,1,9,2
,6,2,9,4,3,10,7,10,3]
}
,{"name":"d100_collider","id":"d100_collider","billboardMode":0,"position":[-0.6,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false,"physicsImpostor":8,"physicsMass":0.082,"physicsFriction":0.8,"physicsRestitution":0
,"positions":[0,0.0106,0.0939,0.0893,0.0106,0.029,0.0552,-0.0106,0.076,0.0893,0.0106,0.029,0.0552,0.0106,-0.076,0.0893,-0.0106,-0.029,0.0552,0.0106,-0.076,-0.0552,0.0106,-0.076,0,-0.0106,-0.0939,-0.0552,0.0106,-0.076,-0.0893,0.0106,0.029,-0.0893,-0.0106,-0.029,-0.0893,0.0106,0.029,0,0.0106,0.0939,-0.0552,-0.0106,0.076,0.0893,-0.0106,-0.029,0,-0.0106,-0.0939
,0,-0.1,0,0.0893,-0.0106,-0.029,0.0552,-0.0106,0.076,0.0893,0.0106,0.029,0.0552,-0.0106,0.076,-0.0552,-0.0106,0.076,0,0.0106,0.0939,-0.0552,-0.0106,0.076,-0.0893,-0.0106,-0.029,-0.0893,0.0106,0.029,-0.0893,-0.0106,-0.029,0,-0.0106,-0.0939,-0.0552,0.0106,-0.076,0,0.1,0,0.0893,0.0106,0.029,0,0.1,0,0.0552,0.0106,-0.076
,0,0.1,0,-0.0552,0.0106,-0.076,0,0.1,0,-0.0893,0.0106,0.029,0,0.1,0,0,0.0106,0.0939,0.0893,-0.0106,-0.029,0.0552,0.0106,-0.076,0,-0.0106,-0.0939,0.0893,-0.0106,-0.029,0,-0.1,0,0.0552,-0.0106,0.076,0.0552,-0.0106,0.076,0,-0.1,0,-0.0552,-0.0106,0.076,-0.0552,-0.0106,0.076,0,-0.1,0
,-0.0893,-0.0106,-0.029,-0.0893,-0.0106,-0.029,0,-0.1,0,0,-0.0106,-0.0939]
,"normals":[0.448,0.647,0.617,0.448,0.647,0.617,0.448,0.647,0.617,0.725,0.647,-0.236,0.725,0.647,-0.236,0.725,0.647,-0.236,0,0.647,-0.762,0,0.647,-0.762,0,0.647,-0.762,-0.725,0.647,-0.236,-0.725,0.647,-0.236,-0.725,0.647,-0.236,-0.448,0.647,0.617,-0.448,0.647,0.617,-0.448,0.647,0.617,0.448,-0.647,-0.617,0.448,-0.647,-0.617
,0.448,-0.647,-0.617,0.725,-0.647,0.236,0.725,-0.647,0.236,0.725,-0.647,0.236,0,-0.647,0.762,0,-0.647,0.762,0,-0.647,0.762,-0.725,-0.647,0.236,-0.725,-0.647,0.236,-0.725,-0.647,0.236,-0.448,-0.647,-0.617,-0.448,-0.647,-0.617,-0.448,-0.647,-0.617,0.448,0.647,0.617,0.725,0.647,-0.236,0.725,0.647,-0.236,0,0.647,-0.762
,0,0.647,-0.762,-0.725,0.647,-0.236,-0.725,0.647,-0.236,-0.448,0.647,0.617,-0.448,0.647,0.617,-0.448,0.647,0.617,0.448,-0.647,-0.617,0.448,-0.647,-0.617,0.448,-0.647,-0.617,0.725,-0.647,0.236,0.725,-0.647,0.236,0.725,-0.647,0.236,0,-0.647,0.762,0,-0.647,0.762,0,-0.647,0.762,-0.725,-0.647,0.236,-0.725,-0.647,0.236
,-0.725,-0.647,0.236,-0.448,-0.647,-0.617,-0.448,-0.647,-0.617,-0.448,-0.647,-0.617]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,0,30,1,31,32,4,33,34,7,35,36,10,37,38,39,40,41,42,43,44,45
,46,47,48,49,50,51,52,53,54]
}
,{"name":"d4","id":"d4","billboardMode":0,"position":[0.6,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false
,"positions":[-0.0053,0.0999,0,-0.0284,0.0346,0.04,-0.0284,0.0346,-0.04,0.0489,0.0346,0.0046,0.0951,-0.0308,0.0046,0.0258,-0.0308,0.0446,0.0027,0.0999,0.0046,-0.0204,0.0346,0.0446,0.0489,0.0346,-0.0046,0.0258,-0.0308,-0.0446,0.0951,-0.0308,-0.0046,-0.0515,-0.0308,0.08,-0.0515,-0.0308,0,-0.0204,0.0346,-0.0446,-0.0435,-0.0308,-0.0847,-0.0435,-0.0308,0.0847,0.0231,-0.0383,-0.04
,-0.0462,-0.0383,-0.08,-0.0462,-0.0383,0,-0.0515,-0.0308,-0.08,0.0231,-0.0383,0.04,-0.0462,-0.0383,0.08,0.0924,-0.0383,0,0,0.1045,0,-0.0024,0.1015,0.0042,0.0027,0.0999,-0.0046,0,0.1045,0,-0.0024,0.1015,-0.0042,0,0.1045,0,0.0049,0.1015,0,0.0985,-0.0348,0,0.0973,-0.0292,0,0.0985,-0.0348,0,0.0949,-0.0361,-0.0042
,0.0985,-0.0348,0,0.0949,-0.0361,0.0042,-0.0492,-0.0348,0.0853,-0.0511,-0.0361,0.08,-0.0492,-0.0348,0.0853,-0.0486,-0.0292,0.0843,-0.0492,-0.0348,0.0853,-0.0438,-0.0361,0.0843,-0.0492,-0.0348,-0.0853,-0.0438,-0.0361,-0.0843,-0.0492,-0.0348,-0.0853,-0.0486,-0.0292,-0.0843,-0.0492,-0.0348,-0.0853,-0.0511,-0.0361,-0.08,-0.0255,0.0361,-0.0442,-0.0255,0.0361,-0.0442,0.0511,0.0361,0
,0.0973,-0.0292,0,0.0511,0.0361,0,-0.0255,0.0361,0.0442,-0.0255,0.0361,0.0442,0.0255,-0.0361,0.0442,0.0255,-0.0361,0.0442,-0.0511,-0.0361,0,-0.0511,-0.0361,-0.08,-0.0511,-0.0361,0,0.0255,-0.0361,-0.0442,0.0255,-0.0361,-0.0442,-0.0024,0.1015,-0.0042,0.0049,0.1015,0,0.0511,0.0361,0,-0.0024,0.1015,0.0042,0.0949,-0.0361,0.0042,-0.0511,-0.0361,0.08
,-0.0511,-0.0361,0,0.0949,-0.0361,-0.0042,-0.0024,0.1015,-0.0042,0.0049,0.1015,0,0,0.1045,0,-0.0024,0.1015,0.0042,0,0.1045,0,0.0949,-0.0361,-0.0042,0.0949,-0.0361,0.0042,0.0985,-0.0348,0,0.0973,-0.0292,0,0.0985,-0.0348,0,-0.0486,-0.0292,0.0843,-0.0438,-0.0361,0.0843,-0.0492,-0.0348,0.0853,-0.0511,-0.0361,0.08,-0.0492,-0.0348,0.0853
,-0.0486,-0.0292,-0.0843,-0.0511,-0.0361,-0.08,-0.0492,-0.0348,-0.0853,-0.0438,-0.0361,-0.0843,-0.0492,-0.0348,-0.0853,-0.0255,0.0361,-0.0442,-0.0486,-0.0292,-0.0843,0.0973,-0.0292,0,-0.0255,0.0361,0.0442,-0.0486,-0.0292,0.0843,0.0255,-0.0361,0.0442,-0.0438,-0.0361,0.0843,-0.0511,-0.0361,-0.08,0.0255,-0.0361,-0.0442,-0.0438,-0.0361,-0.0843,-0.0255,0.0361,-0.0442,0.0049,0.1015,0
,0.0511,0.0361,0,-0.0024,0.1015,0.0042,-0.0255,0.0361,0.0442,0.0949,-0.0361,0.0042,0.0255,-0.0361,0.0442,-0.0511,-0.0361,0.08,-0.0511,-0.0361,0,0.0949,-0.0361,-0.0042,0.0255,-0.0361,-0.0442]
,"normals":[-0.815,0.579,0,-0.886,0.425,0.183,-0.886,0.425,-0.183,0.602,0.425,0.676,0.682,0.191,0.706,0.496,0.127,0.859,0.408,0.579,0.706,0.285,0.425,0.859,0.602,0.425,-0.676,0.496,0.127,-0.859,0.682,0.191,-0.706,-0.952,0.191,0.237,-0.992,0.127,0,0.285,0.425,-0.859,0.271,0.191,-0.943,0.271,0.191,0.943,0.106,-0.977,-0.183
,-0.137,-0.962,-0.237,-0.211,-0.977,0,-0.952,0.191,-0.237,0.106,-0.977,0.183,-0.137,-0.962,0.237,0.274,-0.962,0,0,1,0,-0.346,0.722,0.599,0.408,0.579,-0.706,0,1,0,-0.346,0.722,-0.599,0,1,0,0.692,0.722,0,0.943,-0.333,0,0.911,0.412,0,0.943,-0.333,0,0.565,-0.567,-0.599
,0.943,-0.333,0,0.565,-0.567,0.599,-0.471,-0.333,0.816,-0.802,-0.567,0.19,-0.471,-0.333,0.816,-0.456,0.412,0.789,-0.471,-0.333,0.816,0.236,-0.567,0.789,-0.471,-0.333,-0.816,0.236,-0.567,-0.789,-0.471,-0.333,-0.816,-0.456,0.412,-0.789,-0.471,-0.333,-0.816,-0.802,-0.567,-0.19,-0.408,0.577,-0.707,-0.408,0.577,-0.707,0.816,0.577,0
,0.911,0.412,0,0.816,0.577,0,-0.408,0.577,0.707,-0.408,0.577,0.707,0.408,-0.577,0.707,0.408,-0.577,0.707,-0.816,-0.577,0,-0.802,-0.567,-0.19,-0.816,-0.577,0,0.408,-0.577,-0.707,0.408,-0.577,-0.707,-0.346,0.722,-0.599,0.692,0.722,0,0.816,0.577,0,-0.346,0.722,0.599,0.565,-0.567,0.599,-0.802,-0.567,0.19
,-0.816,-0.577,0,0.565,-0.567,-0.599,-0.346,0.722,-0.599,0.692,0.722,0,0,1,0,-0.346,0.722,0.599,0,1,0,0.565,-0.567,-0.599,0.565,-0.567,0.599,0.943,-0.333,0,0.911,0.412,0,0.943,-0.333,0,-0.456,0.412,0.789,0.236,-0.567,0.789,-0.471,-0.333,0.816,-0.802,-0.567,0.19,-0.471,-0.333,0.816
,-0.456,0.412,-0.789,-0.802,-0.567,-0.19,-0.471,-0.333,-0.816,0.236,-0.567,-0.789,-0.471,-0.333,-0.816,-0.408,0.577,-0.707,-0.456,0.412,-0.789,0.911,0.412,0,-0.408,0.577,0.707,-0.456,0.412,0.789,0.408,-0.577,0.707,0.236,-0.567,0.789,-0.802,-0.567,-0.19,0.408,-0.577,-0.707,0.236,-0.567,-0.789,-0.408,0.577,-0.707,0.692,0.722,0
,0.816,0.577,0,-0.346,0.722,0.599,-0.408,0.577,0.707,0.565,-0.567,0.599,0.408,-0.577,0.707,-0.802,-0.567,0.19,-0.816,-0.577,0,0.565,-0.567,-0.599,0.408,-0.577,-0.707]
,"tangents":[0.002,0.003,-1,1,-0.16,0.089,-0.983,1,0.163,-0.084,-0.983,1,-0.58,0.815,0.003,1,-0.443,0.876,0.19,1,-0.502,0.849,0.164,1,-0.684,0.706,-0.184,1,-0.637,0.753,-0.162,1,0.174,0.756,0.631,1,0.389,0.852,0.351,1,0.287,0.817,0.499,1,-0.228,0.068,-0.971,1,0,0.001
,-1,1,0.287,0.817,0.5,1,0.382,0.878,0.288,1,-0.58,0.815,0.001,1,0.863,0.181,-0.471,1,0.865,0.001,-0.502,1,0.837,-0.181,-0.516,1,0.228,-0.068,-0.971,1,0.866,0,-0.5,1,0.847,-0.238,-0.475,1,0.835,0.238,-0.496,1,0,0,-1,1,-0.386,0.473,-0.792,1
,0.178,0.708,0.683,1,0.107,0,0.994,1,0.236,0.685,0.689,1,-0.917,0,-0.398,1,-0.715,0.686,-0.135,1,0.289,0.817,0.5,1,-0.282,0.623,0.73,1,0.269,0.76,-0.592,1,0.562,0.796,-0.223,1,0.305,0.861,0.407,1,-0.033,0.71,0.703,1,-0.843,-0.102,-0.528,1,-0.234,0.006
,-0.972,1,-0.58,0.814,-0.002,1,-0.496,0.619,-0.609,1,0.646,-0.761,0.063,1,0.878,-0.223,-0.423,1,0.194,0.864,-0.465,1,0.618,0.714,-0.328,1,0.842,0.104,-0.529,1,0.723,-0.345,-0.598,1,0.866,0,-0.5,1,0.528,-0.522,-0.67,1,0.552,-0.461,-0.695,1,0.288,0.816,0.501,1
,-0.326,0.462,0.825,1,-0.408,0.902,0.144,1,-0.577,0.816,0.005,1,-0.556,0.457,-0.694,1,-0.553,0.46,-0.695,1,0.866,0.001,-0.5,1,-0.255,0.671,0.696,1,0.477,-0.674,-0.565,1,0.234,-0.005,-0.972,1,0,-0.001,-1,1,0.726,0.675,-0.132,1,0.727,0.674,-0.131,1,0.387,-0.472
,-0.792,1,-0.277,0.266,0.923,1,-0.577,0.816,0.005,1,-0.665,0.262,-0.699,1,0.806,0.222,-0.549,1,0.474,-0.796,-0.377,1,0,-0.001,-1,1,0.738,0.672,0.06,1,0.387,-0.472,-0.792,1,-0.277,0.266,0.923,1,0.107,0,0.994,1,-0.665,0.262,-0.699,1,-0.917,0,-0.398,1
,0.738,0.672,0.06,1,0.806,0.222,-0.549,1,0.269,0.76,-0.592,1,-0.408,0.902,0.144,1,0.305,0.861,0.407,1,-0.722,0.347,-0.598,1,-0.426,0.669,0.609,1,-0.58,0.814,-0.002,1,0.474,-0.796,-0.377,1,0.646,-0.761,0.063,1,0.325,0.902,0.284,1,0.234,-0.005,-0.972,1,0.842,0.104
,-0.529,1,0.844,0.522,-0.122,1,0.866,0,-0.5,1,0.288,0.816,0.501,1,0.325,0.902,0.284,1,-0.408,0.902,0.144,1,-0.553,0.46,-0.695,1,-0.722,0.347,-0.598,1,-0.255,0.671,0.696,1,-0.426,0.669,0.609,1,0.234,-0.005,-0.972,1,0.727,0.674,-0.131,1,0.844,0.522,-0.122,1
,0.288,0.816,0.501,1,-0.277,0.266,0.923,1,-0.577,0.816,0.005,1,-0.665,0.262,-0.699,1,-0.553,0.46,-0.695,1,0.806,0.222,-0.549,1,-0.255,0.671,0.696,1,0.474,-0.796,-0.377,1,0,-0.001,-1,1,0.738,0.672,0.06,1,0.727,0.674,-0.131,1]
,"uvs":[0.882,0.427,0.835,0.349,0.93,0.348,0.859,0.601,0.767,0.599,0.812,0.519,0.95,0.6,0.906,0.519,0.512,0.788,0.417,0.789,0.465,0.71,0.791,0.268,0.882,0.267,0.465,0.87,0.373,0.868,0.859,0.441,0.364,0.848,0.316,0.927,0.27,0.849,0.974,0.268,0.316,0.767,0.225,0.769,0.408,0.769,0.882,0.435,0.877,0.43
,0.556,0.868,0.563,0.872,0.557,0.875,0.957,0.604,0.95,0.606,0.465,0.702,0.47,0.706,0.415,0.765,0.414,0.771,0.76,0.603,0.761,0.596,0.784,0.264,0.79,0.262,0.859,0.433,0.864,0.437,0.218,0.765,0.225,0.763,0.366,0.873,0.368,0.866,0.981,0.264,0.979,0.271,0.316,0.935,0.311,0.931,0.935,0.351,0.465,0.876
,0.517,0.785,0.766,0.605,0.859,0.607,0.911,0.516,0.83,0.352,0.316,0.761,0.806,0.516,0.264,0.852,0.974,0.262,0.882,0.26,0.412,0.786,0.369,0.852,0.887,0.43,0.562,0.866,0.859,0.607,0.956,0.597,0.409,0.763,0.219,0.771,0.882,0.26,0.46,0.706,0.887,0.43,0.562,0.866,0.563,0.872,0.956,0.597,0.957,0.604
,0.46,0.706,0.409,0.763,0.415,0.765,0.766,0.605,0.76,0.603,0.785,0.271,0.854,0.437,0.859,0.433,0.219,0.771,0.218,0.765,0.373,0.875,0.974,0.262,0.981,0.264,0.322,0.931,0.316,0.935,0.465,0.876,0.373,0.875,0.766,0.605,0.83,0.352,0.785,0.271,0.806,0.516,0.854,0.437,0.974,0.262,0.369,0.852,0.322,0.931
,0.465,0.876,0.562,0.866,0.859,0.607,0.956,0.597,0.83,0.352,0.409,0.763,0.806,0.516,0.219,0.771,0.882,0.26,0.46,0.706,0.369,0.852]
,"indices":[0,1,2,3,4,5,6,3,7,8,9,10,1,11,12,13,14,9,7,5,15,2,1,12,8,13,9,16,17,18,7,3,5,2,12,19,20,18,21,20,16,18,22,16,20,0,23,24,25,26,27
,6,28,29,10,30,31,22,32,33,4,34,35,11,36,37,15,38,39,21,40,41,14,42,43,19,44,45,17,46,47,19,48,2,49,14,13,10,50,8,51,3,52,15,53,7,54,11,1,21,55,20
,56,15,5,17,57,18,58,12,59,14,60,9,61,17,16,0,48,62,27,13,25,8,63,25,64,6,29,7,65,6,24,1,0,20,66,22,35,5,4,18,67,21,68,11,37,9,69,10,33,16,22
,25,13,8,0,70,23,25,71,72,6,73,74,10,75,30,22,76,77,4,78,79,11,80,36,15,81,82,21,83,84,14,85,42,19,86,87,17,88,89,19,45,48,90,91,14,10,31,50,92,4,3
,15,39,53,93,94,11,21,41,55,95,96,15,17,47,57,97,19,12,14,43,60,98,99,17,0,2,48,27,100,13,8,50,101,102,3,6,7,53,103,24,104,1,20,55,105,35,106,5,18,57,107
,108,12,11,9,60,109,33,110,16]
}
,{"name":"d6","id":"d6","billboardMode":0,"position":[0.4,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false
,"positions":[-0.0664,0.0584,-0.0584,-0.0664,-0.0584,0.0584,-0.0664,-0.0584,-0.0584,-0.0584,-0.0664,0.0584,0.0584,-0.0664,-0.0584,-0.0584,-0.0664,-0.0584,0.0664,0.0584,-0.0584,0.0664,-0.0584,0.0584,0.0664,0.0584,0.0584,0.0584,-0.0584,0.0664,-0.0584,0.0584,0.0664,0.0584,0.0584,0.0664,-0.0584,0.0664,0.0584,0.0584,0.0664,-0.0584,0.0584,0.0664,0.0584,-0.0584,-0.0584,-0.0664,-0.063,-0.063,-0.063
,-0.0584,-0.0641,-0.0641,-0.063,-0.063,-0.063,-0.0641,-0.0584,-0.0641,-0.063,-0.063,-0.063,-0.0641,-0.0641,-0.0584,0.0584,-0.0584,-0.0664,0.063,-0.063,-0.063,0.0641,-0.0584,-0.0641,0.063,-0.063,-0.063,0.0584,-0.0641,-0.0641,0.0664,-0.0584,-0.0584,0.063,-0.063,-0.063,0.0641,-0.0641,-0.0584,0.063,-0.063,0.063,0.0584,-0.0641,0.0641,0.063,-0.063,0.063,0.0641,-0.0584,0.0641
,0.0584,-0.0664,0.0584,0.063,-0.063,0.063,0.0641,-0.0641,0.0584,-0.0584,-0.0584,0.0664,-0.063,-0.063,0.063,-0.0641,-0.0584,0.0641,-0.063,-0.063,0.063,-0.0584,-0.0641,0.0641,-0.063,-0.063,0.063,-0.0641,-0.0641,0.0584,-0.0584,0.0584,-0.0664,-0.063,0.063,-0.063,-0.0641,0.0584,-0.0641,-0.0584,0.0664,-0.0584,-0.063,0.063,-0.063,-0.0584,0.0641,-0.0641,-0.063,0.063,-0.063
,-0.0641,0.0641,-0.0584,0.0584,0.0584,-0.0664,0.063,0.063,-0.063,0.0584,0.0641,-0.0641,0.063,0.063,-0.063,0.0641,0.0584,-0.0641,0.063,0.063,-0.063,0.0641,0.0641,-0.0584,0.063,0.063,0.063,0.0641,0.0584,0.0641,0.063,0.063,0.063,0.0584,0.0641,0.0641,0.063,0.063,0.063,0.0641,0.0641,0.0584,-0.0664,0.0584,0.0584,-0.063,0.063,0.063,-0.0641,0.0584,0.0641
,-0.063,0.063,0.063,-0.0641,0.0641,0.0584,-0.063,0.063,0.063,-0.0584,0.0641,0.0641,0.0584,-0.0641,0.0641,-0.0584,-0.0641,0.0641,-0.0584,-0.0641,-0.0641,0.0584,-0.0641,-0.0641,0.0641,-0.0641,-0.0584,0.0641,-0.0641,0.0584,-0.0641,-0.0641,-0.0584,-0.0641,-0.0641,0.0584,-0.0641,-0.0584,-0.0641,-0.0641,0.0584,-0.0641,0.0641,-0.0584,-0.0641,0.0641,0.0584,-0.0641,0.0641,-0.0584,0.0641
,0.0641,0.0584,0.0641,-0.0641,0.0641,-0.0584,-0.0641,0.0641,0.0584,0.0641,0.0641,-0.0584,0.0641,0.0641,0.0584,0.0584,0.0641,0.0641,-0.0584,0.0641,0.0641,-0.0584,0.0641,-0.0641,0.0584,0.0641,-0.0641,-0.0641,-0.0584,0.0641,-0.0641,0.0584,0.0641,-0.0641,-0.0584,-0.0641,-0.0641,-0.0641,-0.0584,-0.063,-0.063,-0.063,-0.0584,-0.0641,-0.0641,-0.063,-0.063,-0.063,0.0584,-0.0641,-0.0641
,0.0641,-0.0641,-0.0584,0.063,-0.063,-0.063,0.0641,-0.0584,-0.0641,0.063,-0.063,-0.063,0.0641,-0.0584,0.0641,0.0641,-0.0641,0.0584,0.063,-0.063,0.063,0.0584,-0.0641,0.0641,0.063,-0.063,0.063,-0.0584,-0.0641,0.0641,-0.0641,-0.0641,0.0584,-0.063,-0.063,0.063,-0.0641,-0.0584,0.0641,-0.063,-0.063,0.063,-0.0584,0.0641,-0.0641,-0.0641,0.0641,-0.0584,-0.063,0.063,-0.063
,-0.0641,0.0584,-0.0641,-0.063,0.063,-0.063,0.0641,0.0584,-0.0641,0.0641,0.0641,-0.0584,0.063,0.063,-0.063,0.0584,0.0641,-0.0641,0.063,0.063,-0.063,0.0584,0.0641,0.0641,0.0641,0.0641,0.0584,0.063,0.063,0.063,0.0641,0.0584,0.0641,0.063,0.063,0.063,-0.0641,0.0641,0.0584,-0.0584,0.0641,0.0641,-0.063,0.063,0.063,-0.0641,0.0584,0.0641,-0.063,0.063,0.063
,0.0584,-0.0641,0.0641,-0.0584,-0.0641,0.0641,-0.0584,-0.0641,-0.0641,0.0584,-0.0641,-0.0641,0.0641,-0.0641,-0.0584,0.0641,-0.0641,0.0584,-0.0641,-0.0641,-0.0584,-0.0641,-0.0641,0.0584,-0.0641,-0.0584,-0.0641,-0.0641,0.0584,-0.0641,0.0641,-0.0584,-0.0641,0.0641,0.0584,-0.0641,0.0641,-0.0584,0.0641,0.0641,0.0584,0.0641,-0.0641,0.0641,-0.0584,-0.0641,0.0641,0.0584,0.0641,0.0641,-0.0584
,0.0641,0.0641,0.0584,0.0584,0.0641,0.0641,-0.0584,0.0641,0.0641,-0.0584,0.0641,-0.0641,0.0584,0.0641,-0.0641,-0.0641,-0.0584,0.0641,-0.0641,0.0584,0.0641]
,"normals":[-0.967,0.179,-0.179,-0.967,-0.179,0.179,-0.967,-0.179,-0.179,-0.179,-0.967,0.179,0.179,-0.967,-0.179,-0.179,-0.967,-0.179,0.967,0.179,-0.179,0.967,-0.179,0.179,0.967,0.179,0.179,0.179,-0.179,0.967,-0.179,0.179,0.967,0.179,0.179,0.967,-0.179,0.967,0.179,0.179,0.967,-0.179,0.179,0.967,0.179,-0.179,-0.179,-0.967,-0.577,-0.577,-0.577
,-0.148,-0.699,-0.699,-0.577,-0.577,-0.577,-0.699,-0.148,-0.699,-0.577,-0.577,-0.577,-0.699,-0.699,-0.148,0.179,-0.179,-0.967,0.577,-0.577,-0.577,0.699,-0.148,-0.699,0.577,-0.577,-0.577,0.148,-0.699,-0.699,0.967,-0.179,-0.179,0.577,-0.577,-0.577,0.699,-0.699,-0.148,0.577,-0.577,0.577,0.148,-0.699,0.699,0.577,-0.577,0.577,0.699,-0.148,0.699
,0.179,-0.967,0.179,0.577,-0.577,0.577,0.699,-0.699,0.148,-0.179,-0.179,0.967,-0.577,-0.577,0.577,-0.699,-0.148,0.699,-0.577,-0.577,0.577,-0.148,-0.699,0.699,-0.577,-0.577,0.577,-0.699,-0.699,0.148,-0.179,0.179,-0.967,-0.577,0.577,-0.577,-0.699,0.148,-0.699,-0.179,0.967,-0.179,-0.577,0.577,-0.577,-0.148,0.699,-0.699,-0.577,0.577,-0.577
,-0.699,0.699,-0.148,0.179,0.179,-0.967,0.577,0.577,-0.577,0.148,0.699,-0.699,0.577,0.577,-0.577,0.699,0.148,-0.699,0.577,0.577,-0.577,0.699,0.699,-0.148,0.577,0.577,0.577,0.699,0.148,0.699,0.577,0.577,0.577,0.148,0.699,0.699,0.577,0.577,0.577,0.699,0.699,0.148,-0.967,0.179,0.179,-0.577,0.577,0.577,-0.699,0.148,0.699
,-0.577,0.577,0.577,-0.699,0.699,0.148,-0.577,0.577,0.577,-0.148,0.699,0.699,0.148,-0.699,0.699,-0.148,-0.699,0.699,-0.148,-0.699,-0.699,0.148,-0.699,-0.699,0.699,-0.699,-0.148,0.699,-0.699,0.148,-0.699,-0.699,-0.148,-0.699,-0.699,0.148,-0.699,-0.148,-0.699,-0.699,0.148,-0.699,0.699,-0.148,-0.699,0.699,0.148,-0.699,0.699,-0.148,0.699
,0.699,0.148,0.699,-0.699,0.699,-0.148,-0.699,0.699,0.148,0.699,0.699,-0.148,0.699,0.699,0.148,0.148,0.699,0.699,-0.148,0.699,0.699,-0.148,0.699,-0.699,0.148,0.699,-0.699,-0.699,-0.148,0.699,-0.699,0.148,0.699,-0.699,-0.148,-0.699,-0.699,-0.699,-0.148,-0.577,-0.577,-0.577,-0.148,-0.699,-0.699,-0.577,-0.577,-0.577,0.148,-0.699,-0.699
,0.699,-0.699,-0.148,0.577,-0.577,-0.577,0.699,-0.148,-0.699,0.577,-0.577,-0.577,0.699,-0.148,0.699,0.699,-0.699,0.148,0.577,-0.577,0.577,0.148,-0.699,0.699,0.577,-0.577,0.577,-0.148,-0.699,0.699,-0.699,-0.699,0.148,-0.577,-0.577,0.577,-0.699,-0.148,0.699,-0.577,-0.577,0.577,-0.148,0.699,-0.699,-0.699,0.699,-0.148,-0.577,0.577,-0.577
,-0.699,0.148,-0.699,-0.577,0.577,-0.577,0.699,0.148,-0.699,0.699,0.699,-0.148,0.577,0.577,-0.577,0.148,0.699,-0.699,0.577,0.577,-0.577,0.148,0.699,0.699,0.699,0.699,0.148,0.577,0.577,0.577,0.699,0.148,0.699,0.577,0.577,0.577,-0.699,0.699,0.148,-0.148,0.699,0.699,-0.577,0.577,0.577,-0.699,0.148,0.699,-0.577,0.577,0.577
,0.148,-0.699,0.699,-0.148,-0.699,0.699,-0.148,-0.699,-0.699,0.148,-0.699,-0.699,0.699,-0.699,-0.148,0.699,-0.699,0.148,-0.699,-0.699,-0.148,-0.699,-0.699,0.148,-0.699,-0.148,-0.699,-0.699,0.148,-0.699,0.699,-0.148,-0.699,0.699,0.148,-0.699,0.699,-0.148,0.699,0.699,0.148,0.699,-0.699,0.699,-0.148,-0.699,0.699,0.148,0.699,0.699,-0.148
,0.699,0.699,0.148,0.148,0.699,0.699,-0.148,0.699,0.699,-0.148,0.699,-0.699,0.148,0.699,-0.699,-0.699,-0.148,0.699,-0.699,0.148,0.699]
,"tangents":[0.179,0.984,0.016,1,-0.179,0.984,0.016,1,-0.177,0.984,-0.029,1,-0.016,-0.179,-0.984,1,-0.016,0.179,-0.984,1,0.029,0.177,-0.984,1,0.179,0.016,0.984,1,-0.179,0.016,0.984,1,-0.177,-0.029,0.984,1,-0.016,-0.984,-0.179,1,-0.016,-0.984,0.179,1,0.029,-0.984,0.177,1,0.984,0.179
,0.016,1,0.984,-0.179,0.016,1,0.984,-0.177,-0.029,1,0.984,-0.029,-0.177,1,0.799,-0.252,-0.547,1,0.986,-0.05,-0.158,1,-0.547,0.798,-0.252,1,-0.158,0.986,-0.05,1,0.252,0.547,-0.799,1,0.05,0.158,-0.986,1,0.984,0.016,0.179,1,0.797,0.244,0.553,1,0.714,0.107,0.692,1
,-0.244,0.553,-0.797,1,-0.107,0.692,-0.714,1,0.177,-0.029,0.984,1,0.547,-0.252,0.799,1,0.158,-0.05,0.986,1,-0.244,-0.797,-0.553,1,-0.107,-0.714,-0.692,1,-0.553,0.244,0.797,1,-0.692,0.107,0.714,1,0.029,-0.177,-0.984,1,0.252,-0.547,-0.799,1,0.05,-0.158,-0.986,1,0.029,-0.984
,-0.177,1,0.252,-0.798,-0.547,1,0.05,-0.986,-0.158,1,-0.244,-0.553,-0.797,1,-0.107,-0.692,-0.714,1,-0.553,0.797,0.244,1,-0.692,0.714,0.107,1,0.984,0.016,-0.179,1,0.797,0.244,-0.553,1,0.714,0.107,-0.692,1,0.984,0.177,-0.029,1,0.799,0.547,-0.252,1,0.986,0.158,-0.05,1
,0.553,0.797,0.244,1,0.692,0.714,0.107,1,0.984,-0.029,0.177,1,0.799,-0.252,0.547,1,0.986,-0.05,0.158,1,0.553,0.244,0.797,1,0.692,0.107,0.714,1,0.797,-0.553,0.244,1,0.714,-0.692,0.107,1,0.252,-0.798,0.547,1,0.05,-0.986,0.158,1,0.799,-0.547,-0.252,1,0.986,-0.158
,-0.05,1,-0.547,-0.252,0.799,1,-0.158,-0.05,0.986,1,0.177,0.984,-0.029,1,0.547,0.799,-0.252,1,0.158,0.986,-0.05,1,0.797,0.553,0.244,1,0.714,0.692,0.107,1,-0.244,-0.797,0.553,1,-0.107,-0.714,0.692,1,0.111,-0.691,-0.714,1,0.111,-0.714,-0.691,1,0.111,0.691,-0.714,1
,0.985,0.04,0.168,1,-0.04,0.168,-0.985,1,-0.168,0.04,0.985,1,-0.691,0.714,-0.111,1,-0.04,-0.168,-0.985,1,0.714,-0.111,-0.691,1,0.168,0.985,0.04,1,0.691,-0.111,0.714,1,0.714,-0.111,0.691,1,-0.04,-0.985,-0.168,1,-0.691,-0.111,0.714,1,0.714,0.691,-0.111,1,0.691,0.714
,-0.111,1,0.168,0.04,0.985,1,0.714,-0.691,-0.111,1,0.111,-0.714,0.691,1,0.985,0.168,0.04,1,0.985,0.04,-0.168,1,0.985,-0.168,0.04,1,-0.168,0.985,0.04,1,-0.04,-0.985,0.168,1,0.714,-0.111,-0.691,1,-0.691,0.714,-0.111,1,-0.547,0.798,-0.252,1,0.111,0.691,-0.714,1
,0.252,0.547,-0.799,1,0.985,0.04,0.168,1,-0.04,0.168,-0.985,1,-0.244,0.553,-0.797,1,0.691,-0.111,0.714,1,0.547,-0.252,0.799,1,-0.04,-0.985,-0.168,1,-0.168,0.04,0.985,1,-0.553,0.244,0.797,1,0.111,-0.691,-0.714,1,0.252,-0.547,-0.799,1,0.111,-0.714,-0.691,1,-0.04,-0.168
,-0.985,1,-0.244,-0.553,-0.797,1,-0.168,0.985,0.04,1,-0.553,0.797,0.244,1,0.985,0.04,-0.168,1,0.714,0.691,-0.111,1,0.799,0.547,-0.252,1,0.168,0.985,0.04,1,0.553,0.797,0.244,1,0.714,-0.111,0.691,1,0.168,0.04,0.985,1,0.553,0.244,0.797,1,0.985,-0.168,0.04,1
,0.797,-0.553,0.244,1,0.111,-0.714,0.691,1,0.714,-0.691,-0.111,1,0.799,-0.547,-0.252,1,-0.691,-0.111,0.714,1,-0.547,-0.252,0.799,1,0.691,0.714,-0.111,1,0.985,0.168,0.04,1,0.797,0.553,0.244,1,-0.04,-0.985,0.168,1,-0.244,-0.797,0.553,1,0.111,-0.691,-0.714,1,0.111,-0.714
,-0.691,1,0.111,0.691,-0.714,1,0.985,0.04,0.168,1,-0.04,0.168,-0.985,1,-0.168,0.04,0.985,1,-0.691,0.714,-0.111,1,-0.04,-0.168,-0.985,1,0.714,-0.111,-0.691,1,0.168,0.985,0.04,1,0.691,-0.111,0.714,1,0.714,-0.111,0.691,1,-0.04,-0.985,-0.168,1,-0.691,-0.111,0.714,1
,0.714,0.691,-0.111,1,0.691,0.714,-0.111,1,0.168,0.04,0.985,1,0.714,-0.691,-0.111,1,0.111,-0.714,0.691,1,0.985,0.168,0.04,1,0.985,0.04,-0.168,1,0.985,-0.168,0.04,1,-0.168,0.985,0.04,1,-0.04,-0.985,0.168,1]
,"uvs":[0.449,0.163,0.315,0.295,0.315,0.161,0.164,0.295,0.298,0.162,0.298,0.296,0.013,0.143,0.147,0.01,0.147,0.144,0.449,0.013,0.315,0.146,0.315,0.012,0.013,0.294,0.147,0.161,0.147,0.295,0.164,0.011,0.158,0.005,0.164,0.004,0.309,0.155,0.315,0.154,0.304,0.302,0.298,0.303,0.298,0.012,0.304,0.006,0.305,0.012
,0.304,0.156,0.305,0.162,0.013,0.009,0.007,0.003,0.013,0.002,0.455,0.007,0.456,0.013,0.153,0.004,0.154,0.01,0.164,0.161,0.158,0.155,0.164,0.154,0.449,0.147,0.455,0.153,0.449,0.154,0.158,0.301,0.157,0.295,0.309,0.301,0.308,0.296,0.164,0.145,0.158,0.151,0.157,0.145,0.013,0.16,0.007,0.154,0.013,0.153
,0.455,0.156,0.456,0.162,0.298,0.146,0.304,0.152,0.298,0.153,0.007,0.149,0.006,0.143,0.153,0.155,0.154,0.161,0.309,0.006,0.314,0.005,0.153,0.301,0.147,0.302,0.153,0.15,0.147,0.151,0.449,0.296,0.455,0.303,0.449,0.304,0.007,0.3,0.006,0.294,0.309,0.152,0.308,0.146,0.157,0.161,0.456,0.147,0.305,0.296
,0.298,0.005,0.298,0.155,0.147,0.003,0.308,0.161,0.164,0.302,0.157,0.011,0.449,0.155,0.006,0.009,0.305,0.147,0.449,0.006,0.154,0.145,0.006,0.16,0.456,0.297,0.012,0.15,0.154,0.295,0.308,0.011,0.012,0.301,0.164,0.152,0.147,0.154,0.314,0.302,0.314,0.153,0.157,0.011,0.308,0.161,0.309,0.155,0.305,0.296
,0.304,0.302,0.298,0.005,0.298,0.155,0.304,0.156,0.006,0.009,0.007,0.003,0.449,0.006,0.147,0.003,0.153,0.004,0.157,0.161,0.158,0.155,0.456,0.147,0.164,0.302,0.158,0.301,0.314,0.302,0.309,0.301,0.164,0.152,0.006,0.16,0.007,0.154,0.449,0.155,0.455,0.156,0.305,0.147,0.012,0.15,0.007,0.149,0.147,0.154
,0.153,0.155,0.308,0.011,0.154,0.295,0.153,0.301,0.154,0.145,0.153,0.15,0.456,0.297,0.012,0.301,0.007,0.3,0.314,0.153,0.309,0.152,0.157,0.161,0.456,0.147,0.305,0.296,0.298,0.005,0.298,0.155,0.147,0.003,0.308,0.161,0.164,0.302,0.157,0.011,0.449,0.155,0.006,0.009,0.305,0.147,0.449,0.006,0.154,0.145
,0.006,0.16,0.456,0.297,0.012,0.15,0.154,0.295,0.308,0.011,0.012,0.301,0.164,0.152,0.147,0.154,0.314,0.302,0.314,0.153]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,2,18,19,5,20,21,22,23,24,4,25,26,27,28,29,9,30,31,7,32,33,34,35,36,37,38,39,3,40,41,1,42,43
,44,45,46,47,48,49,0,50,51,52,53,54,6,55,56,13,57,58,11,59,60,14,61,62,8,63,64,65,66,67,12,68,69,10,70,71,3,72,34,73,9,31,4,74,5,75,15,17,34,76,4
,77,27,29,1,78,2,79,5,21,44,80,15,81,2,19,6,82,27,83,22,24,11,84,9,85,7,33,12,86,47,87,0,51,8,88,6,89,13,58,10,90,11,91,14,62,52,92,44,93,47,49
,65,94,1,95,37,39,22,44,15,0,65,1,3,34,4,6,27,7,9,37,10,12,47,13,15,96,16,2,97,98,5,99,100,22,101,23,4,102,103,27,104,105,9,106,30,7,107,108,34,109,110
,37,111,38,3,112,113,1,114,115,44,116,45,47,117,118,0,119,120,52,121,53,6,122,123,13,124,125,11,126,59,14,127,128,8,129,130,65,131,66,12,132,133,10,134,135,3,41,136,137,37,9
,4,26,138,139,22,15,34,36,140,141,7,27,1,43,142,143,3,5,44,46,144,145,0,2,6,56,146,147,52,22,11,60,148,149,8,7,12,69,150,151,65,0,8,64,152,153,14,13,10,71,154
,155,12,14,52,54,156,157,13,47,65,67,158,159,10,37,22,52,44]
}
,{"name":"d8","id":"d8","billboardMode":0,"position":[0.2,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false
,"positions":[-0.0065,-0.0869,-0.0065,-0.0065,-0.0065,-0.0869,-0.0869,-0.0065,-0.0065,-0.0065,0.0869,-0.0065,-0.0869,0.0065,-0.0065,-0.0065,0.0065,-0.0869,0.0065,0.0869,0.0065,0.0869,0.0065,0.0065,0.0065,0.0065,0.0869,0.0065,-0.0869,-0.0065,0.0869,-0.0065,-0.0065,0.0065,-0.0065,-0.0869,-0.0065,0.0869,0.0065,-0.0065,0.0065,0.0869,-0.0869,0.0065,0.0065,-0.0065,-0.0869,0.0065,-0.0869,-0.0065,0.0065
,-0.0065,-0.0065,0.0869,0.0065,0.0869,-0.0065,0.0065,0.0065,-0.0869,0.0869,0.0065,-0.0065,0.0917,0,0,0.0883,0,0.0079,0.0917,0,0,0.0883,0.0079,0,0.0917,0,0,0.0883,0,-0.0079,0.0869,-0.0065,0.0065,0.0917,0,0,0.0883,-0.0079,0,-0.0917,0,0,-0.0883,0,-0.0079,-0.0917,0,0,-0.0883,0.0079,0
,-0.0917,0,0,-0.0883,0,0.0079,-0.0917,0,0,-0.0883,-0.0079,0,0.0065,-0.0065,0.0869,0,0,0.0917,0.0079,0,0.0883,0,0,0.0917,0,-0.0079,0.0883,0,0,0.0917,-0.0079,0,0.0883,0,0,0.0917,0,0.0079,0.0883,0,0,-0.0917,-0.0079,0,-0.0883,0,0,-0.0917,0,-0.0079,-0.0883
,0,0,-0.0917,0.0079,0,-0.0883,0,0,-0.0917,0,0.0079,-0.0883,0,0.0917,0,0,0.0883,0.0079,0,0.0917,0,-0.0079,0.0883,0,0,0.0917,0,0,0.0883,-0.0079,0,0.0917,0,0.0079,0.0883,0,0,-0.0917,0,0.0079,-0.0883,0,0,-0.0917,0,0,-0.0883,-0.0079,0,-0.0917,0
,-0.0079,-0.0883,0,0.0065,-0.0869,0.0065,0,-0.0917,0,0,-0.0883,0.0079,0.0883,0,0.0079,0.0079,0,0.0883,-0.0883,0,-0.0079,-0.0079,0,-0.0883,0,0.0079,0.0883,0.0883,-0.0079,0,0.0079,-0.0883,0,0,-0.0079,0.0883,-0.0883,-0.0079,0,0,0.0079,-0.0883,0.0883,0,-0.0079,0.0079,0,-0.0883,0,-0.0079,-0.0883
,-0.0883,0,0.0079,-0.0079,0,0.0883,0.0883,0.0079,0,0.0079,0.0883,0,-0.0883,0.0079,0,0.0883,0.0079,0,0.0883,0,-0.0079,0.0917,0,0,0.0883,-0.0079,0,0.0917,0,0,0.0883,0,0.0079,0.0917,0,0,-0.0883,0.0079,0,-0.0883,0,0.0079,-0.0917,0,0,-0.0883,-0.0079,0,-0.0917,0,0
,-0.0883,0,-0.0079,-0.0917,0,0,0,-0.0079,0.0883,-0.0079,0,0.0883,0,0,0.0917,0,0.0079,0.0883,0,0,0.0917,0.0079,0,0.0883,0,0,0.0917,0,-0.0079,-0.0883,0.0079,0,-0.0883,0,0,-0.0917,0,0.0079,-0.0883,0,0,-0.0917,-0.0079,0,-0.0883,0,0,-0.0917,-0.0079,0.0883,0
,0,0.0883,-0.0079,0,0.0917,0,0.0079,0.0883,0,0,0.0917,0,0,0.0883,0.0079,0,0.0917,0,0,-0.0883,-0.0079,-0.0079,-0.0883,0,0,-0.0917,0,0,-0.0883,0.0079,0,-0.0917,0,0.0079,-0.0883,0,0,-0.0917,0,0.0079,0,0.0883,-0.0079,0,-0.0883,0,0.0079,0.0883,0,0.0883,0.0079
,0.0079,-0.0883,0,0,-0.0079,0.0883,0,-0.0883,0.0079,-0.0079,-0.0883,0,0,0.0079,-0.0883,0,0.0883,-0.0079,0.0079,0,-0.0883,0,-0.0079,-0.0883,0,-0.0883,-0.0079,-0.0079,0,0.0883,0.0079,0.0883,0,-0.0079,0.0883,0]
,"normals":[-0.464,-0.754,-0.464,-0.464,-0.464,-0.754,-0.754,-0.464,-0.464,-0.464,0.754,-0.464,-0.754,0.464,-0.464,-0.464,0.464,-0.754,0.464,0.754,0.464,0.754,0.464,0.464,0.464,0.464,0.754,0.464,-0.754,-0.464,0.754,-0.464,-0.464,0.464,-0.464,-0.754,-0.464,0.754,0.464,-0.464,0.464,0.754,-0.754,0.464,0.464,-0.464,-0.754,0.464,-0.754,-0.464,0.464
,-0.464,-0.464,0.754,0.464,0.754,-0.464,0.464,0.464,-0.754,0.754,0.464,-0.464,1,0,0,0.823,0,0.568,1,0,0,0.823,0.568,0,1,0,0,0.823,0,-0.568,0.754,-0.464,0.464,1,0,0,0.823,-0.568,0,-1,0,0,-0.823,0,-0.568,-1,0,0,-0.823,0.568,0
,-1,0,0,-0.823,0,0.568,-1,0,0,-0.823,-0.568,0,0.464,-0.464,0.754,0,0,1,0.568,0,0.823,0,0,1,0,-0.568,0.823,0,0,1,-0.568,0,0.823,0,0,1,0,0.568,0.823,0,0,-1,-0.568,0,-0.823,0,0,-1,0,-0.568,-0.823
,0,0,-1,0.568,0,-0.823,0,0,-1,0,0.568,-0.823,0,1,0,0,0.823,0.568,0,1,0,-0.568,0.823,0,0,1,0,0,0.823,-0.568,0,1,0,0.568,0.823,0,0,-1,0,0.568,-0.823,0,0,-1,0,0,-0.823,-0.568,0,-1,0
,-0.568,-0.823,0,0.464,-0.754,0.464,0,-1,0,0,-0.823,0.568,0.823,0,0.568,0.568,0,0.823,-0.823,0,-0.568,-0.568,0,-0.823,0,0.568,0.823,0.823,-0.568,0,0.568,-0.823,0,0,-0.568,0.823,-0.823,-0.568,0,0,0.568,-0.823,0.823,0,-0.568,0.568,0,-0.823,0,-0.568,-0.823
,-0.823,0,0.568,-0.568,0,0.823,0.823,0.568,0,0.568,0.823,0,-0.823,0.568,0,0.823,0.568,0,0.823,0,-0.568,1,0,0,0.823,-0.568,0,1,0,0,0.823,0,0.568,1,0,0,-0.823,0.568,0,-0.823,0,0.568,-1,0,0,-0.823,-0.568,0,-1,0,0
,-0.823,0,-0.568,-1,0,0,0,-0.568,0.823,-0.568,0,0.823,0,0,1,0,0.568,0.823,0,0,1,0.568,0,0.823,0,0,1,0,-0.568,-0.823,0.568,0,-0.823,0,0,-1,0,0.568,-0.823,0,0,-1,-0.568,0,-0.823,0,0,-1,-0.568,0.823,0
,0,0.823,-0.568,0,1,0,0.568,0.823,0,0,1,0,0,0.823,0.568,0,1,0,0,-0.823,-0.568,-0.568,-0.823,0,0,-1,0,0,-0.823,0.568,0,-1,0,0.568,-0.823,0,0,-1,0,0.568,0,0.823,-0.568,0,-0.823,0,0.568,0.823,0,0.823,0.568
,0.568,-0.823,0,0,-0.568,0.823,0,-0.823,0.568,-0.568,-0.823,0,0,0.568,-0.823,0,0.823,-0.568,0.568,0,-0.823,0,-0.568,-0.823,0,-0.823,-0.568,-0.568,0,0.823,0.568,0.823,0,-0.568,0.823,0]
,"tangents":[-0.104,0.567,-0.817,1,0.109,0.815,-0.569,1,0.003,0.705,-0.709,1,-0.816,-0.568,-0.105,1,-0.569,-0.816,0.108,1,-0.709,-0.705,0.003,1,0.093,-0.563,0.821,1,-0.008,-0.7,0.714,1,-0.12,-0.811,0.573,1,0.708,0,0.707,1,0.569,0.108,0.815,1,0.817,-0.105,0.567,1,0.113,0.571
,-0.813,1,-0.1,0.818,-0.566,1,0.004,0.71,-0.704,1,-0.707,0,-0.707,1,-0.569,0.107,-0.816,1,-0.816,-0.106,-0.568,1,-0.819,0.565,0.099,1,-0.71,0.704,-0.004,1,-0.571,0.813,-0.114,1,0,-0.699,0.715,1,-0.339,-0.802,0.492,1,0,0.974,-0.225,1,-0.565,0.82,-0.093,1
,0,0.218,0.976,1,0.566,0.087,0.82,1,0.567,0.104,-0.817,1,0,0.214,-0.977,1,0.236,0.343,-0.909,1,0,-0.976,0.218,1,-0.238,-0.908,0.346,1,0,0.709,-0.705,1,0.335,0.486,-0.807,1,0,0.217,-0.976,1,-0.566,0.086,-0.82,1,0,0.703,-0.711,1,-0.331,0.48
,-0.813,1,0.815,-0.109,-0.569,1,0.976,-0.219,0,1,0.82,-0.087,-0.566,1,-0.976,-0.216,0,1,-0.907,-0.346,-0.239,1,-0.21,0.978,0,1,-0.341,0.91,-0.235,1,-0.232,-0.973,0,1,-0.1,-0.819,0.565,1,0.22,0.976,0,1,0.349,0.906,-0.241,1,0.977,-0.215,0,1
,0.908,-0.345,0.238,1,-0.71,0.704,0,1,-0.487,0.806,-0.336,1,-0.71,-0.704,0,1,-0.812,-0.48,-0.331,1,0.224,0,-0.975,1,0.092,0.565,-0.82,1,-0.977,0,-0.215,1,-0.82,-0.566,-0.083,1,-0.978,0,0.208,1,-0.912,0.233,0.338,1,0.201,0,0.98,1,0.335,-0.231
,0.914,1,0.706,0,0.708,1,0.483,0.333,0.81,1,-0.214,0,-0.977,1,-0.082,0.566,-0.82,1,-0.705,0,-0.709,1,-0.482,0.333,-0.811,1,0.708,0.001,-0.706,1,0.708,0,-0.706,1,0.81,-0.333,-0.483,1,0.566,0.085,-0.82,1,-0.362,-0.898,0.249,1,0.336,0.806,-0.487,1
,-0.486,-0.807,0.336,1,-0.081,0.82,-0.566,1,0.241,0.35,0.905,1,0.484,0.334,-0.809,1,0.904,-0.352,-0.243,1,-0.241,0.349,-0.906,1,-0.813,0.48,0.331,1,-0.245,0.902,-0.355,1,0.82,-0.086,0.566,1,0.091,0.82,-0.565,1,-0.332,0.812,-0.481,1,-0.82,-0.087,-0.566,1,0.328,-0.475
,0.817,1,-0.821,0.566,0.08,1,-0.566,-0.82,0.089,1,0.328,-0.475,0.817,1,-0.245,0.902,-0.355,1,0,0.974,-0.225,1,0.241,0.35,0.905,1,0,0.218,0.976,1,0.566,0.085,-0.82,1,0,0.214,-0.977,1,-0.566,-0.82,0.089,1,-0.332,0.812,-0.481,1,0,0.709,-0.705,1
,-0.241,0.349,-0.906,1,0,0.217,-0.976,1,0.336,0.806,-0.487,1,0,0.703,-0.711,1,0.904,-0.352,-0.243,1,-0.82,-0.087,-0.566,1,-0.976,-0.216,0,1,-0.081,0.82,-0.566,1,-0.21,0.978,0,1,-0.362,-0.898,0.249,1,-0.232,-0.973,0,1,0.091,0.82,-0.565,1,0.82,-0.086
,0.566,1,0.977,-0.215,0,1,-0.813,0.48,0.331,1,-0.71,0.704,0,1,-0.486,-0.807,0.336,1,-0.71,-0.704,0,1,0.353,0.244,-0.903,1,-0.907,-0.239,-0.347,1,-0.977,0,-0.215,1,-0.821,0.566,0.08,1,-0.978,0,0.208,1,0.073,-0.566,0.821,1,0.201,0,0.98,1
,0.809,-0.334,0.484,1,-0.346,0.239,-0.907,1,-0.214,0,-0.977,1,-0.808,-0.334,-0.485,1,-0.705,0,-0.709,1,0.484,0.334,-0.809,1,0.708,0,-0.706,1,-0.362,-0.898,0.249,1,-0.486,-0.807,0.336,1,-0.081,0.82,-0.566,1,0.073,-0.566,0.821,1,0.484,0.334,-0.809,1,0.904,-0.352
,-0.243,1,-0.808,-0.334,-0.485,1,-0.346,0.239,-0.907,1,-0.813,0.48,0.331,1,-0.907,-0.239,-0.347,1,0.82,-0.086,0.566,1,0.091,0.82,-0.565,1,0.809,-0.334,0.484,1,-0.82,-0.087,-0.566,1,-0.821,0.566,0.08,1,0.353,0.244,-0.903,1]
,"uvs":[0.639,0.27,0.768,0.271,0.703,0.383,0.716,0.418,0.846,0.418,0.781,0.53,0.485,0.549,0.548,0.436,0.614,0.547,0.781,0.287,0.846,0.399,0.717,0.399,0.69,0.399,0.561,0.4,0.625,0.288,0.704,0.435,0.769,0.547,0.64,0.547,0.692,0.418,0.628,0.531,0.562,0.419,0.547,0.424,0.554,0.432,0.552,0.413,0.562,0.411
,0.857,0.405,0.846,0.407,0.613,0.271,0.623,0.265,0.62,0.275,0.856,0.412,0.853,0.422,0.625,0.276,0.632,0.283,0.78,0.553,0.769,0.555,0.703,0.395,0.696,0.387,0.483,0.272,0.473,0.266,0.483,0.264,0.629,0.553,0.633,0.544,0.551,0.406,0.554,0.397,0.625,0.553,0.614,0.555,0.779,0.265,0.775,0.275,0.706,0.405
,0.71,0.396,0.628,0.543,0.621,0.535,0.781,0.542,0.774,0.535,0.701,0.405,0.691,0.407,0.706,0.412,0.716,0.41,0.702,0.412,0.699,0.422,0.474,0.555,0.478,0.546,0.781,0.275,0.788,0.283,0.628,0.264,0.638,0.263,0.704,0.423,0.711,0.431,0.548,0.384,0.548,0.396,0.542,0.388,0.613,0.264,0.621,0.544,0.71,0.387
,0.787,0.535,0.561,0.408,0.853,0.395,0.555,0.388,0.476,0.275,0.776,0.544,0.635,0.535,0.555,0.423,0.716,0.407,0.768,0.263,0.618,0.284,0.639,0.555,0.541,0.432,0.692,0.41,0.846,0.411,0.541,0.432,0.555,0.423,0.552,0.413,0.853,0.395,0.857,0.405,0.613,0.264,0.623,0.265,0.846,0.411,0.618,0.284,0.625,0.276
,0.776,0.544,0.78,0.553,0.71,0.387,0.703,0.395,0.476,0.275,0.639,0.555,0.629,0.553,0.561,0.408,0.551,0.406,0.621,0.544,0.625,0.553,0.768,0.263,0.716,0.407,0.706,0.405,0.635,0.535,0.628,0.543,0.787,0.535,0.781,0.542,0.697,0.396,0.709,0.422,0.706,0.412,0.692,0.41,0.702,0.412,0.484,0.557,0.474,0.555
,0.775,0.283,0.632,0.274,0.628,0.264,0.698,0.431,0.704,0.423,0.555,0.388,0.548,0.396,0.621,0.544,0.787,0.535,0.561,0.408,0.484,0.557,0.555,0.388,0.476,0.275,0.698,0.431,0.632,0.274,0.635,0.535,0.709,0.422,0.716,0.407,0.768,0.263,0.775,0.283,0.639,0.555,0.692,0.41,0.697,0.396]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,7,21,22,20,23,24,10,25,26,27,28,29,4,30,31,14,32,33,16,34,35,2,36,37,38,39,40,17,41,42
,13,43,44,8,45,46,1,47,48,11,49,50,19,51,52,5,53,54,12,55,56,3,57,58,18,59,60,6,61,62,9,63,64,0,65,66,15,67,68,69,70,71,27,40,72,73,7,22,2,48,74
,75,4,31,12,76,13,46,6,8,10,64,77,78,27,29,69,79,38,42,15,17,16,68,80,37,0,2,18,81,19,54,3,5,20,52,82,83,10,26,0,84,1,50,9,11,14,44,85,86,16,35
,7,62,87,88,20,24,4,58,89,33,12,14,69,38,27,7,90,21,20,91,92,10,93,94,27,95,96,4,97,30,14,98,99,16,100,101,2,102,103,38,104,39,17,105,106,13,107,108,8,109,110
,1,111,47,11,112,113,19,114,115,5,116,117,12,118,55,3,119,120,18,121,122,6,123,124,9,125,63,0,126,127,15,128,129,69,130,131,27,38,40,132,8,7,2,1,48,133,5,4,12,56,134
,46,135,6,10,9,64,136,69,27,69,71,137,42,138,15,16,15,68,37,139,0,18,60,140,54,141,3,20,19,52,142,11,10,0,66,143,50,144,9,14,13,44,145,17,16,7,6,62,146,18,20
,4,3,58,33,147,12]
}
,{"name":"d10","id":"d10","billboardMode":0,"position":[0,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false
,"positions":[-0.0562,-0.0133,0.0652,-0.0838,-0.0133,-0.0197,-0.0838,0.0037,0.0272,-0.0562,0.0133,-0.0652,-0.0838,0.0133,0.0197,-0.0838,-0.0037,-0.0272,0.0072,0.0133,0.0858,0.0794,0.0133,0.0333,0.0518,-0.0037,0.0713,-0.0794,0.0133,0.0333,-0.0072,0.0133,0.0858,-0.0518,-0.0037,0.0713,0.0446,0.0133,-0.0736,-0.0446,0.0133,-0.0736,0,-0.0037,-0.0881,-0.0794,-0.0133,-0.0333,-0.0072,-0.0133,-0.0858
,-0.0518,0.0037,-0.0713,0.0794,-0.0133,-0.0333,0.0072,-0.0133,-0.0858,0.0072,-0.0857,-0.0098,0.0838,-0.0133,-0.0197,0.0562,-0.0133,0.0652,0.0838,0.0037,0.0272,0.0446,-0.0133,0.0736,-0.0446,-0.0133,0.0736,0,0.0037,0.0881,0.0072,0.0857,0.0098,0,0.0915,0,0.0103,0.0868,0.0034,-0.0072,0.0857,0.0098,0,0.0915,0,0,0.0868,0.0109,-0.0116,0.0857,-0.0038
,0,0.0915,0,-0.0103,0.0868,0.0034,0,0.0857,-0.0122,0,0.0915,0,-0.0064,0.0868,-0.0088,0.0116,0.0857,-0.0038,0,0.0915,0,0.0064,0.0868,-0.0088,-0.0116,-0.0857,0.0038,0,-0.0915,0,-0.0103,-0.0868,-0.0034,0,-0.0857,0.0122,0,-0.0915,0,-0.0064,-0.0868,0.0088,0.0116,-0.0857,0.0038,0,-0.0915,0,0.0064,-0.0868,0.0088
,0,-0.0915,0,0.0103,-0.0868,-0.0034,-0.0072,-0.0857,-0.0098,0,-0.0915,0,0,-0.0868,-0.0109,0.0525,-0.0103,0.0722,0.0562,-0.008,0.0687,0.0525,-0.0103,0.0722,0.0511,-0.0148,0.0704,0.0525,-0.0103,0.0722,0.048,-0.008,0.0747,0.0849,0.0103,0.0276,0.0827,0.008,0.0322,0.0838,0.0133,0.0197,0.0849,0.0103,0.0276,0.0827,0.0148,0.0269,0.0849,0.0103,0.0276
,0.0859,0.008,0.0226,0,0.0103,0.0893,0,0.0148,0.087,0,0.0103,0.0893,0.0051,0.008,0.0886,0,0.0103,0.0893,-0.0051,0.008,0.0886,0.0525,0.0103,-0.0722,0.0511,0.0148,-0.0704,0.0518,0.0037,-0.0713,0.0525,0.0103,-0.0722,0.048,0.008,-0.0747,0.0562,0.0133,-0.0652,0.0525,0.0103,-0.0722,0.0562,0.008,-0.0687,0.0849,-0.0103,-0.0276,0.0827,-0.0148,-0.0269
,0.0838,-0.0037,-0.0272,0.0849,-0.0103,-0.0276,0.0859,-0.008,-0.0226,0.0849,-0.0103,-0.0276,0.0827,-0.008,-0.0322,-0.0525,0.0103,-0.0722,-0.0511,0.0148,-0.0704,-0.0525,0.0103,-0.0722,-0.0562,0.008,-0.0687,-0.0525,0.0103,-0.0722,-0.048,0.008,-0.0747,0,-0.0103,-0.0893,0,-0.0148,-0.087,0,-0.0103,-0.0893,0.0051,-0.008,-0.0886,0,-0.0103,-0.0893,-0.0051,-0.008,-0.0886
,-0.0849,-0.0103,-0.0276,-0.0827,-0.008,-0.0322,-0.0849,-0.0103,-0.0276,-0.0859,-0.008,-0.0226,-0.0849,-0.0103,-0.0276,-0.0827,-0.0148,-0.0269,-0.0849,0.0103,0.0276,-0.0859,0.008,0.0226,-0.0849,0.0103,0.0276,-0.0827,0.0148,0.0269,-0.0849,0.0103,0.0276,-0.0827,0.008,0.0322,-0.0525,-0.0103,0.0722,-0.0511,-0.0148,0.0704,-0.0525,-0.0103,0.0722,-0.0562,-0.008,0.0687,-0.0525,-0.0103,0.0722
,-0.048,-0.008,0.0747,-0.0064,-0.0868,0.0088,-0.0511,-0.0148,0.0704,0.0064,-0.0868,0.0088,0.0511,-0.0148,0.0704,0.0103,0.0868,0.0034,0.0827,0.0148,0.0269,0.048,-0.008,0.0747,0.0064,0.0868,-0.0088,0.0511,0.0148,-0.0704,0.0859,0.008,0.0226,0.0562,0.008,-0.0687,0.0827,-0.008,-0.0322,0.048,0.008,-0.0747,-0.0562,0.008,-0.0687,-0.0103,0.0868,0.0034,-0.0827,0.0148,0.0269
,-0.0051,0.008,0.0886,-0.048,-0.008,0.0747,0,0.0868,0.0109,0,0.0148,0.087,0.0562,-0.008,0.0687,0.0827,0.008,0.0322,-0.048,0.008,-0.0747,-0.0051,-0.008,-0.0886,-0.0064,0.0868,-0.0088,-0.0511,0.0148,-0.0704,0.0103,-0.0868,-0.0034,0.0827,-0.0148,-0.0269,-0.0827,0.008,0.0322,0,-0.0868,-0.0109,0,-0.0148,-0.087,-0.0103,-0.0868,-0.0034,-0.0827,-0.0148,-0.0269
,-0.0859,-0.008,-0.0226,-0.0859,0.008,0.0226,0,0.0868,0.0109,-0.0103,0.0868,0.0034,0,0.0915,0,-0.0064,0.0868,-0.0088,0,0.0915,0,0.0064,0.0868,-0.0088,0,0.0915,0,0.0103,0.0868,0.0034,0,0.0915,0,-0.0064,-0.0868,0.0088,0.0064,-0.0868,0.0088,0,-0.0915,0,0.0103,-0.0868,-0.0034,0,-0.0915,0,0,-0.0868,-0.0109
,0,-0.0915,0,-0.0103,-0.0868,-0.0034,0,-0.0915,0,0.0511,-0.0148,0.0704,0.048,-0.008,0.0747,0.0525,-0.0103,0.0722,0.0562,-0.008,0.0687,0.0525,-0.0103,0.0722,0.0827,0.0148,0.0269,0.0859,0.008,0.0226,0.0849,0.0103,0.0276,0.0827,0.008,0.0322,0.0849,0.0103,0.0276,0.0051,0.008,0.0886,-0.0051,0.008,0.0886,0,0.0103,0.0893,0,0.0148,0.087
,0,0.0103,0.0893,0.048,0.008,-0.0747,0.0562,0.008,-0.0687,0.0525,0.0103,-0.0722,0.0511,0.0148,-0.0704,0.0525,0.0103,-0.0722,0.0859,-0.008,-0.0226,0.0827,-0.008,-0.0322,0.0849,-0.0103,-0.0276,0.0827,-0.0148,-0.0269,0.0849,-0.0103,-0.0276,-0.0562,0.008,-0.0687,-0.048,0.008,-0.0747,-0.0525,0.0103,-0.0722,-0.0511,0.0148,-0.0704,-0.0525,0.0103,-0.0722,0.0051,-0.008,-0.0886
,-0.0051,-0.008,-0.0886,0,-0.0103,-0.0893,0,-0.0148,-0.087,0,-0.0103,-0.0893,-0.0859,-0.008,-0.0226,-0.0827,-0.0148,-0.0269,-0.0849,-0.0103,-0.0276,-0.0827,-0.008,-0.0322,-0.0849,-0.0103,-0.0276,-0.0827,0.0148,0.0269,-0.0827,0.008,0.0322,-0.0849,0.0103,0.0276,-0.0859,0.008,0.0226,-0.0849,0.0103,0.0276,-0.0562,-0.008,0.0687,-0.048,-0.008,0.0747,-0.0525,-0.0103,0.0722
,-0.0511,-0.0148,0.0704,-0.0525,-0.0103,0.0722,-0.0511,-0.0148,0.0704,0.0511,-0.0148,0.0704,0.0827,0.0148,0.0269,0.0051,0.008,0.0886,0.0511,0.0148,-0.0704,0.0859,-0.008,-0.0226,0.0562,0.008,-0.0687,0.0827,-0.008,-0.0322,0.0051,-0.008,-0.0886,-0.0827,-0.008,-0.0322,-0.0827,0.0148,0.0269,-0.0051,0.008,0.0886,-0.048,-0.008,0.0747,0,0.0148,0.087,0.0562,-0.008,0.0687
,0.0827,0.008,0.0322,-0.048,0.008,-0.0747,-0.0051,-0.008,-0.0886,-0.0511,0.0148,-0.0704,0.0827,-0.0148,-0.0269,-0.0562,-0.008,0.0687,0,-0.0148,-0.087,-0.0827,-0.0148,-0.0269,-0.0859,-0.008,-0.0226,-0.0859,0.008,0.0226]
,"normals":[-0.739,-0.526,0.42,-0.845,-0.526,0.095,-0.868,-0.41,0.282,-0.739,0.526,-0.42,-0.845,0.526,-0.095,-0.868,0.41,-0.282,0.351,0.526,0.774,0.628,0.526,0.573,0.536,0.41,0.738,-0.628,0.526,0.573,-0.351,0.526,0.774,-0.536,0.41,0.738,0.171,0.526,-0.833,-0.171,0.526,-0.833,0,0.41,-0.912,-0.628,-0.526,-0.573,-0.351,-0.526,-0.774
,-0.536,-0.41,-0.738,0.628,-0.526,-0.573,0.351,-0.526,-0.774,0.361,-0.789,-0.497,0.845,-0.526,0.095,0.739,-0.526,0.42,0.868,-0.41,0.282,0.171,-0.526,0.833,-0.171,-0.526,0.833,0,-0.41,0.912,0.361,0.789,0.497,0,1,0,0.529,0.831,0.172,-0.361,0.789,0.497,0,1,0,0,0.831,0.556,-0.585,0.789,-0.19
,0,1,0,-0.529,0.831,0.172,0,0.789,-0.615,0,1,0,-0.327,0.831,-0.45,0.585,0.789,-0.19,0,1,0,0.327,0.831,-0.45,-0.585,-0.789,0.19,0,-1,0,-0.529,-0.831,-0.172,0,-0.789,0.615,0,-1,0,-0.327,-0.831,0.45,0.585,-0.789,0.19,0,-1,0,0.327,-0.831,0.45
,0,-1,0,0.529,-0.831,-0.172,-0.361,-0.789,-0.497,0,-1,0,0,-0.831,-0.556,0.575,-0.203,0.792,0.766,-0.025,0.643,0.575,-0.203,0.792,0.47,-0.602,0.646,0.575,-0.203,0.792,0.375,-0.025,0.927,0.931,0.203,0.303,0.848,0.025,0.529,0.845,0.526,-0.095,0.931,0.203,0.303,0.76,0.602,0.247,0.931,0.203,0.303
,0.997,0.025,0.07,0,0.203,0.979,0,0.602,0.799,0,0.203,0.979,0.241,0.025,0.97,0,0.203,0.979,-0.241,0.025,0.97,0.575,0.203,-0.792,0.47,0.602,-0.646,0.536,-0.41,-0.738,0.575,0.203,-0.792,0.375,0.025,-0.927,0.739,0.526,-0.42,0.575,0.203,-0.792,0.766,0.025,-0.643,0.931,-0.203,-0.303,0.76,-0.602,-0.247
,0.868,0.41,-0.282,0.931,-0.203,-0.303,0.997,-0.025,-0.07,0.931,-0.203,-0.303,0.848,-0.025,-0.529,-0.575,0.203,-0.792,-0.47,0.602,-0.646,-0.575,0.203,-0.792,-0.766,0.025,-0.643,-0.575,0.203,-0.792,-0.375,0.025,-0.927,0,-0.203,-0.979,0,-0.602,-0.799,0,-0.203,-0.979,0.241,-0.025,-0.97,0,-0.203,-0.979,-0.241,-0.025,-0.97
,-0.931,-0.203,-0.303,-0.848,-0.025,-0.529,-0.931,-0.203,-0.303,-0.997,-0.025,-0.07,-0.931,-0.203,-0.303,-0.76,-0.602,-0.247,-0.931,0.203,0.303,-0.997,0.025,0.07,-0.931,0.203,0.303,-0.76,0.602,0.247,-0.931,0.203,0.303,-0.848,0.025,0.529,-0.575,-0.203,0.792,-0.47,-0.602,0.646,-0.575,-0.203,0.792,-0.766,-0.025,0.643,-0.575,-0.203,0.792
,-0.375,-0.025,0.927,-0.327,-0.831,0.45,-0.47,-0.602,0.646,0.327,-0.831,0.45,0.47,-0.602,0.646,0.529,0.831,0.172,0.76,0.602,0.247,0.375,-0.025,0.927,0.327,0.831,-0.45,0.47,0.602,-0.646,0.997,0.025,0.07,0.766,0.025,-0.643,0.848,-0.025,-0.529,0.375,0.025,-0.927,-0.766,0.025,-0.643,-0.529,0.831,0.172,-0.76,0.602,0.247
,-0.241,0.025,0.97,-0.375,-0.025,0.927,0,0.831,0.556,0,0.602,0.799,0.766,-0.025,0.643,0.848,0.025,0.529,-0.375,0.025,-0.927,-0.241,-0.025,-0.97,-0.327,0.831,-0.45,-0.47,0.602,-0.646,0.529,-0.831,-0.172,0.76,-0.602,-0.247,-0.848,0.025,0.529,0,-0.831,-0.556,0,-0.602,-0.799,-0.529,-0.831,-0.172,-0.76,-0.602,-0.247
,-0.997,-0.025,-0.07,-0.997,0.025,0.07,0,0.831,0.556,-0.529,0.831,0.172,0,1,0,-0.327,0.831,-0.45,0,1,0,0.327,0.831,-0.45,0,1,0,0.529,0.831,0.172,0,1,0,-0.327,-0.831,0.45,0.327,-0.831,0.45,0,-1,0,0.529,-0.831,-0.172,0,-1,0,0,-0.831,-0.556
,0,-1,0,-0.529,-0.831,-0.172,0,-1,0,0.47,-0.602,0.646,0.375,-0.025,0.927,0.575,-0.203,0.792,0.766,-0.025,0.643,0.575,-0.203,0.792,0.76,0.602,0.247,0.997,0.025,0.07,0.931,0.203,0.303,0.848,0.025,0.529,0.931,0.203,0.303,0.241,0.025,0.97,-0.241,0.025,0.97,0,0.203,0.979,0,0.602,0.799
,0,0.203,0.979,0.375,0.025,-0.927,0.766,0.025,-0.643,0.575,0.203,-0.792,0.47,0.602,-0.646,0.575,0.203,-0.792,0.997,-0.025,-0.07,0.848,-0.025,-0.529,0.931,-0.203,-0.303,0.76,-0.602,-0.247,0.931,-0.203,-0.303,-0.766,0.025,-0.643,-0.375,0.025,-0.927,-0.575,0.203,-0.792,-0.47,0.602,-0.646,-0.575,0.203,-0.792,0.241,-0.025,-0.97
,-0.241,-0.025,-0.97,0,-0.203,-0.979,0,-0.602,-0.799,0,-0.203,-0.979,-0.997,-0.025,-0.07,-0.76,-0.602,-0.247,-0.931,-0.203,-0.303,-0.848,-0.025,-0.529,-0.931,-0.203,-0.303,-0.76,0.602,0.247,-0.848,0.025,0.529,-0.931,0.203,0.303,-0.997,0.025,0.07,-0.931,0.203,0.303,-0.766,-0.025,0.643,-0.375,-0.025,0.927,-0.575,-0.203,0.792
,-0.47,-0.602,0.646,-0.575,-0.203,0.792,-0.47,-0.602,0.646,0.47,-0.602,0.646,0.76,0.602,0.247,0.241,0.025,0.97,0.47,0.602,-0.646,0.997,-0.025,-0.07,0.766,0.025,-0.643,0.848,-0.025,-0.529,0.241,-0.025,-0.97,-0.848,-0.025,-0.529,-0.76,0.602,0.247,-0.241,0.025,0.97,-0.375,-0.025,0.927,0,0.602,0.799,0.766,-0.025,0.643
,0.848,0.025,0.529,-0.375,0.025,-0.927,-0.241,-0.025,-0.97,-0.47,0.602,-0.646,0.76,-0.602,-0.247,-0.766,-0.025,0.643,0,-0.602,-0.799,-0.76,-0.602,-0.247,-0.997,-0.025,-0.07,-0.997,0.025,0.07]
,"tangents":[0.151,0.479,0.865,1,-0.078,0.296,0.952,1,0.102,0.408,0.907,1,-0.44,0.095,0.893,1,-0.176,-0.106,0.979,1,-0.311,-0.006,0.95,1,-0.674,0.716,-0.181,1,-0.577,0.809,-0.11,1,-0.571,0.82,-0.04,1,0.042,-0.712,0.701,1,0.081,-0.807,0.585,1,0.145,-0.817,0.558,1,-0.42,0.804
,0.422,1,-0.456,0.707,0.541,1,-0.456,0.812,0.364,1,0.776,-0.48,-0.409,1,0.929,-0.298,-0.219,1,0.831,-0.41,-0.376,1,0.512,-0.275,0.814,1,0.648,-0.46,0.607,1,0.532,-0.264,0.805,1,0.064,0.275,0.959,1,-0.168,0.46,0.872,1,-0.114,0.387,0.915,1,0.897,-0.266,-0.353,1
,0.886,-0.452,-0.103,1,0.91,-0.378,-0.17,1,-0.768,0.554,-0.321,1,-0.896,0,-0.444,1,-0.769,0.555,-0.318,1,-0.06,-0.552,0.832,1,-0.136,0,0.991,1,-0.057,-0.555,0.83,1,-0.314,-0.004,0.949,1,-0.315,0,0.949,1,-0.137,-0.283,0.949,1,-0.451,0.549,0.704,1,-0.483,0
,0.876,1,-0.404,0.307,0.862,1,0.602,-0.264,0.754,1,0.664,0,0.748,1,0.766,0.046,0.641,1,-0.064,0.278,0.958,1,-0.121,0,0.993,1,-0.263,-0.032,0.964,1,0.908,-0.258,-0.33,1,0.921,0,-0.389,1,0.865,-0.454,-0.211,1,0.043,0.264,0.964,1,0.096,0,0.995,1
,-0.056,0.458,0.887,1,0.507,0,0.862,1,0.374,0.047,0.926,1,0.931,-0.279,-0.234,1,0.982,0,-0.19,1,0.998,0.031,-0.046,1,-0.522,0.654,0.547,1,-0.52,0.564,0.641,1,0.776,-0.17,-0.607,1,0.786,-0.048,-0.616,1,-0.254,0.876,0.41,1,-0.47,0.856,0.213,1,-0.233,0.97
,0.066,1,-0.159,0.965,0.21,1,0.377,-0.461,0.803,1,-0.1,-0.655,0.749,1,0.224,-0.598,0.769,1,-0.361,0.407,0.839,1,-0.074,0.357,0.931,1,-0.667,0.73,-0.152,1,-0.728,0.548,-0.413,1,0.914,-0.397,0.083,1,0.912,-0.347,-0.218,1,0.143,-0.969,0.201,1,0.257,-0.962,0.089,1
,-0.244,0.967,0.071,1,-0.411,0.797,0.443,1,0.63,-0.387,0.673,1,0.786,-0.407,0.466,1,0.82,-0.475,0.319,1,0.616,-0.276,0.738,1,0.817,-0.182,0.547,1,0.623,-0.28,0.731,1,0.339,0.181,0.923,1,0.349,0.057,0.935,1,0.445,-0.388,0.807,1,0.2,-0.408,0.891,1,0.05,-0.476
,0.878,1,0.268,-0.181,0.946,1,0.503,-0.279,0.818,1,-0.752,0.25,0.61,1,-0.619,0.298,0.727,1,0.674,-0.431,-0.6,1,0.547,-0.5,-0.671,1,-0.463,0.717,0.521,1,-0.557,0.793,0.247,1,0.744,-0.654,0.136,1,0.663,-0.598,0.45,1,-0.465,0.867,-0.18,1,-0.375,0.919,-0.117,1
,0.977,-0.208,0.043,1,0.926,-0.305,-0.223,1,-0.308,-0.006,0.951,1,-0.53,0.055,0.846,1,-0.343,0.206,0.917,1,-0.074,0.303,0.95,1,0.357,-0.675,-0.645,1,0.637,-0.613,-0.468,1,0.246,-0.263,0.933,1,0.065,-0.156,0.986,1,0.065,-0.725,0.686,1,-0.162,-0.543,0.824,1,0.363,0.429
,0.827,1,0.47,0.498,0.729,1,0.505,0.674,0.54,1,0.25,0.611,0.751,1,0.474,-0.872,0.12,1,0.353,-0.852,0.387,1,0.687,-0.645,0.334,1,0.776,-0.555,0.299,1,0.032,0.466,0.884,1,0.806,-0.592,0.034,1,0.852,0.053,-0.521,1,-0.272,0.598,0.754,1,0.477,-0.458,0.75,1
,-0.588,0.798,-0.135,1,0.891,-0.268,-0.367,1,-0.451,0.555,0.699,1,0.833,-0.058,0.551,1,-0.044,-0.565,0.824,1,0.607,-0.357,0.709,1,0.487,-0.358,0.797,1,-0.271,0.959,-0.084,1,-0.634,0.144,0.76,1,-0.19,-0.313,0.931,1,0.065,-0.307,0.949,1,0.856,-0.465,0.225,1,0.362,-0.924
,0.121,1,-0.822,0.317,-0.474,1,0.061,-0.797,0.6,1,-0.222,0.928,0.301,1,-0.476,0.475,0.74,1,0.853,-0.382,-0.355,1,-0.522,0.846,0.108,1,-0.457,0.277,0.845,1,-0.362,0.536,0.762,1,0.242,-0.047,0.969,1,0.267,-0.057,0.962,1,0.301,-0.8,0.519,1,0.567,-0.458,0.685,1
,0.995,-0.08,0.06,1,0.832,-0.467,-0.301,1,-0.364,0.078,0.928,1,-0.068,-0.067,0.995,1,0.074,0.38,0.922,1,-0.822,0.317,-0.474,1,-0.19,-0.313,0.931,1,-0.136,0,0.991,1,-0.457,0.277,0.845,1,-0.315,0,0.949,1,-0.451,0.555,0.699,1,-0.483,0,0.876,1,0.477,-0.458
,0.75,1,0.664,0,0.748,1,0.032,0.466,0.884,1,0.852,0.053,-0.521,1,0.921,0,-0.389,1,0.242,-0.047,0.969,1,0.096,0,0.995,1,0.567,-0.458,0.685,1,0.507,0,0.862,1,0.832,-0.467,-0.301,1,0.982,0,-0.19,1,-0.272,0.598,0.754,1,0.891,-0.268,-0.367,1
,0.776,-0.17,-0.607,1,-0.222,0.928,0.301,1,-0.254,0.876,0.41,1,-0.588,0.798,-0.135,1,-0.044,-0.565,0.824,1,-0.1,-0.655,0.749,1,-0.476,0.475,0.74,1,-0.361,0.407,0.839,1,-0.58,0.805,0.124,1,0.856,-0.465,0.225,1,0.914,-0.397,0.083,1,0.061,-0.797,0.6,1,0.143,-0.969
,0.201,1,-0.271,0.959,-0.084,1,0.607,-0.357,0.709,1,0.786,-0.407,0.466,1,0.833,-0.058,0.551,1,0.817,-0.182,0.547,1,0.074,0.279,0.958,1,0.487,-0.358,0.797,1,0.2,-0.408,0.891,1,0.267,-0.057,0.962,1,0.268,-0.181,0.946,1,-0.634,0.144,0.76,1,0.853,-0.382,-0.355,1
,0.674,-0.431,-0.6,1,-0.362,0.536,0.762,1,-0.463,0.717,0.521,1,0.798,-0.564,0.213,1,-0.522,0.846,0.108,1,-0.465,0.867,-0.18,1,0.995,-0.08,0.06,1,0.977,-0.208,0.043,1,-0.068,-0.067,0.995,1,-0.364,0.078,0.928,1,-0.343,0.206,0.917,1,0.441,-0.588,-0.678,1,0.357,-0.675
,-0.645,1,0.065,-0.307,0.949,1,0.301,-0.8,0.519,1,0.065,-0.725,0.686,1,0.074,0.38,0.922,1,0.363,0.429,0.827,1,0.51,0.586,0.63,1,0.362,-0.924,0.121,1,0.474,-0.872,0.12,1,0.806,-0.592,0.034,1,0.687,-0.645,0.334,1,0.806,-0.592,0.034,1,-0.272,0.598,0.754,1
,-0.588,0.798,-0.135,1,-0.58,0.805,0.124,1,0.833,-0.058,0.551,1,0.074,0.279,0.958,1,0.607,-0.357,0.709,1,0.487,-0.358,0.797,1,0.798,-0.564,0.213,1,0.441,-0.588,-0.678,1,0.065,-0.307,0.949,1,0.856,-0.465,0.225,1,0.362,-0.924,0.121,1,0.061,-0.797,0.6,1,-0.222,0.928
,0.301,1,-0.476,0.475,0.74,1,0.853,-0.382,-0.355,1,-0.522,0.846,0.108,1,-0.362,0.536,0.762,1,0.267,-0.057,0.962,1,0.51,0.586,0.63,1,0.995,-0.08,0.06,1,-0.364,0.078,0.928,1,-0.068,-0.067,0.995,1,0.074,0.38,0.922,1]
,"uvs":[0.333,0.617,0.245,0.572,0.3,0.572,0.159,0.896,0.258,0.895,0.209,0.921,0.062,0.451,0.019,0.54,0.018,0.484,0.608,0.858,0.651,0.769,0.652,0.825,0.018,0.321,0.062,0.409,0.017,0.376,0.246,0.706,0.334,0.751,0.279,0.751,0.107,0.749,0.018,0.706,0.108,0.635,0.129,0.749,0.217,0.706,0.184,0.75,0.225,0.572
,0.135,0.614,0.169,0.57,0.134,0.539,0.147,0.545,0.134,0.547,0.536,0.769,0.523,0.762,0.536,0.761,0.208,0.793,0.208,0.778,0.215,0.789,0.132,0.319,0.145,0.312,0.138,0.323,0.012,0.687,0.005,0.7,0.004,0.688,0.242,0.686,0.235,0.699,0.234,0.686,0.224,0.686,0.23,0.699,0.219,0.692,0.128,0.635,0.122,0.622
,0.133,0.629,0.114,0.621,0.116,0.634,0.338,0.637,0.344,0.624,0.346,0.637,0.227,0.704,0.224,0.71,0.232,0.566,0.233,0.572,0.011,0.481,0.016,0.477,0.014,0.547,0.012,0.541,0.101,0.616,0.11,0.618,0.106,0.622,0.187,0.757,0.181,0.757,0.064,0.441,0.068,0.445,0.166,0.563,0.173,0.563,0.656,0.762,0.658,0.768
,0.012,0.313,0.017,0.312,0.052,0.75,0.049,0.756,0.045,0.751,0.012,0.573,0.005,0.567,0.011,0.566,0.121,0.755,0.12,0.749,0.068,0.572,0.071,0.565,0.075,0.57,0.115,0.755,0.109,0.756,0.15,0.898,0.152,0.893,0.275,0.757,0.272,0.752,0.064,0.418,0.058,0.415,0.009,0.704,0.013,0.699,0.011,0.379,0.011,0.373
,0.341,0.757,0.335,0.758,0.209,0.928,0.203,0.925,0.238,0.566,0.244,0.565,0.237,0.703,0.241,0.7,0.267,0.897,0.262,0.901,0.605,0.867,0.601,0.863,0.304,0.565,0.308,0.571,0.342,0.619,0.338,0.623,0.658,0.828,0.653,0.832,0.126,0.616,0.129,0.61,0.246,0.692,0.13,0.62,0.232,0.686,0.223,0.7,0.016,0.694
,0.019,0.548,0.226,0.565,0.132,0.311,0.004,0.573,0.107,0.613,0.055,0.756,0.064,0.565,0.011,0.319,0.155,0.902,0.53,0.774,0.266,0.892,0.162,0.568,0.658,0.821,0.14,0.534,0.651,0.761,0.011,0.488,0.191,0.752,0.282,0.758,0.016,0.383,0.201,0.789,0.068,0.414,0.12,0.635,0.116,0.749,0.611,0.864,0.103,0.628
,0.342,0.752,0.333,0.631,0.237,0.571,0.215,0.925,0.297,0.565,0.14,0.534,0.53,0.774,0.523,0.762,0.201,0.789,0.208,0.778,0.132,0.311,0.145,0.312,0.016,0.694,0.005,0.7,0.246,0.692,0.232,0.686,0.23,0.699,0.12,0.635,0.122,0.622,0.103,0.628,0.114,0.621,0.333,0.631,0.344,0.624,0.223,0.7,0.226,0.565
,0.232,0.566,0.011,0.488,0.011,0.481,0.019,0.548,0.107,0.613,0.11,0.618,0.191,0.752,0.187,0.757,0.058,0.444,0.162,0.568,0.166,0.563,0.651,0.761,0.656,0.762,0.011,0.319,0.055,0.756,0.049,0.756,0.004,0.573,0.005,0.567,0.127,0.756,0.064,0.565,0.071,0.565,0.116,0.749,0.115,0.755,0.155,0.902,0.282,0.758
,0.275,0.757,0.068,0.414,0.064,0.418,0.012,0.709,0.016,0.383,0.011,0.379,0.342,0.752,0.341,0.757,0.215,0.925,0.237,0.571,0.238,0.566,0.24,0.709,0.237,0.703,0.266,0.892,0.611,0.864,0.605,0.867,0.297,0.565,0.304,0.565,0.339,0.614,0.658,0.821,0.658,0.828,0.13,0.62,0.126,0.616,0.13,0.62,0.223,0.7
,0.019,0.548,0.058,0.444,0.004,0.573,0.127,0.756,0.055,0.756,0.064,0.565,0.012,0.709,0.24,0.709,0.266,0.892,0.162,0.568,0.658,0.821,0.651,0.761,0.011,0.488,0.191,0.752,0.282,0.758,0.016,0.383,0.068,0.414,0.116,0.749,0.339,0.614,0.342,0.752,0.237,0.571,0.215,0.925,0.297,0.565]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50
,20,51,52,53,54,55,22,56,57,24,58,59,8,60,61,7,62,63,64,65,66,23,67,68,6,69,70,26,71,72,10,73,74,12,75,76,77,78,79,80,81,82,21,83,84,85,86,87,18,88,89
,3,90,91,17,92,93,13,94,95,19,96,97,14,98,99,16,100,101,5,102,103,1,104,105,15,106,107,4,108,109,9,110,111,2,112,113,0,114,115,11,116,117,25,118,119,42,115,120,121,45,47
,45,59,122,123,48,50,39,66,124,125,27,29,24,72,126,61,6,8,36,76,127,128,39,41,64,87,129,68,21,23,18,130,77,131,80,82,12,99,132,79,19,77,3,103,133,93,15,17,30,111,134
,135,33,35,25,136,26,137,10,74,27,70,138,139,30,32,7,140,8,141,22,57,16,142,17,143,13,95,33,91,144,145,36,38,48,84,146,147,20,52,9,117,148,113,0,2,20,97,149,150,53,55
,53,107,151,152,42,44,4,153,5,154,1,105,64,80,85,0,42,1,3,33,4,6,27,7,9,30,10,12,36,13,15,53,16,18,77,19,21,48,22,24,45,25,27,155,28,30,156,157,33,158,159
,36,160,161,39,162,163,42,164,43,45,165,166,48,167,168,20,169,170,53,171,172,22,173,56,24,174,175,8,176,177,7,178,62,64,179,180,23,181,182,6,183,69,26,184,185,10,186,187,12,188,75
,77,189,190,80,191,192,21,193,83,85,194,195,18,196,197,3,198,90,17,199,200,13,201,202,19,203,96,14,204,205,16,206,207,5,208,102,1,209,210,15,211,212,4,213,108,9,214,215,2,216,217
,0,218,114,11,219,220,25,221,222,42,0,115,223,25,45,45,24,59,224,22,48,39,64,66,225,7,27,24,26,72,61,226,6,36,12,76,227,80,39,64,85,87,68,228,21,18,89,229,230,85,80
,12,14,99,79,231,19,3,5,103,93,232,15,30,9,111,233,4,33,25,119,234,235,11,10,27,6,70,236,10,30,7,63,237,238,23,22,16,101,239,240,14,13,33,3,91,241,13,36,48,21,84
,242,18,20,9,11,117,113,243,0,20,19,97,244,16,53,53,15,107,245,1,42,4,109,246,247,2,1,64,39,80]
}
,{"name":"d12","id":"d12","billboardMode":0,"position":[-0.2,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false
,"positions":[-0.0593,0.0483,-0.0551,-0.0892,-0.0299,-0.0068,-0.0593,-0.0483,-0.0551,0.0483,-0.0551,-0.0593,-0.0299,-0.0068,-0.0892,-0.0483,-0.0551,-0.0593,0.0409,0,-0.085,0.0892,-0.0299,-0.0068,0.0892,0.0299,-0.0068,-0.0551,-0.0593,0.0483,-0.0068,-0.0892,-0.0299,-0.0551,-0.0593,-0.0483,-0.0892,0.0299,0.0068,-0.0593,0.0483,0.0551,-0.0409,0,0.085,0,-0.085,0.0409,-0.0299,-0.0068,0.0892
,0.0299,-0.0068,0.0892,-0.085,0.0409,0,-0.0551,0.0593,-0.0483,-0.0068,0.0892,-0.0299,-0.0299,0.0068,0.0892,0,0.085,0.0409,0.0483,0.0551,0.0593,0.0299,0.0068,-0.0892,0,0.085,-0.0409,-0.0483,0.0551,-0.0593,0.0551,0.0593,-0.0483,0.085,0.0409,0,0.0551,0.0593,0.0483,0.0551,-0.0593,0.0483,0.085,-0.0409,0,0.0551,-0.0593,-0.0483,0.0557,0.0557,0.0557
,0.0547,0.0523,0.0586,0.0557,0.0557,0.0557,0.0523,0.0586,0.0547,0.0593,0.0483,0.0551,0.0557,0.0557,0.0557,0.0586,0.0547,0.0523,0.0557,-0.0557,0.0557,0.0586,-0.0547,0.0523,0.0483,-0.0551,0.0593,0.0557,-0.0557,0.0557,0.0523,-0.0586,0.0547,0.0593,-0.0483,0.0551,0.0557,-0.0557,0.0557,0.0547,-0.0523,0.0586,0.0483,0.0551,-0.0593,0.0557,0.0557,-0.0557,0.0523,0.0586,-0.0547
,0.0593,0.0483,-0.0551,0.0557,0.0557,-0.0557,0.0547,0.0523,-0.0586,0.0557,0.0557,-0.0557,0.0586,0.0547,-0.0523,0.0557,-0.0557,-0.0557,0.0523,-0.0586,-0.0547,0.0593,-0.0483,-0.0551,0.0557,-0.0557,-0.0557,0.0586,-0.0547,-0.0523,0.0557,-0.0557,-0.0557,0.0547,-0.0523,-0.0586,-0.0551,0.0593,0.0483,-0.0557,0.0557,0.0557,-0.0586,0.0547,0.0523,-0.0483,0.0551,0.0593,-0.0557,0.0557,0.0557
,-0.0523,0.0586,0.0547,-0.0557,0.0557,0.0557,-0.0547,0.0523,0.0586,-0.0483,-0.0551,0.0593,-0.0557,-0.0557,0.0557,-0.0547,-0.0523,0.0586,-0.0557,-0.0557,0.0557,-0.0523,-0.0586,0.0547,-0.0593,-0.0483,0.0551,-0.0557,-0.0557,0.0557,-0.0586,-0.0547,0.0523,-0.0557,0.0557,-0.0557,-0.0586,0.0547,-0.0523,-0.0557,0.0557,-0.0557,-0.0547,0.0523,-0.0586,-0.0557,0.0557,-0.0557,-0.0523,0.0586,-0.0547
,-0.0557,-0.0557,-0.0557,-0.0547,-0.0523,-0.0586,-0.0557,-0.0557,-0.0557,-0.0586,-0.0547,-0.0523,-0.0557,-0.0557,-0.0557,-0.0523,-0.0586,-0.0547,0.0409,0,0.085,0.0344,0,0.0901,0.0362,0.0039,0.0885,0.0344,0,0.0901,0.0362,-0.0039,0.0885,0.0299,0.0068,0.0892,0.0344,0,0.0901,0.0299,0,0.091,-0.0344,0,0.0901,-0.0299,0,0.091,-0.0344,0,0.0901
,-0.0362,-0.0039,0.0885,-0.0344,0,0.0901,-0.0362,0.0039,0.0885,0.0344,0,-0.0901,0.0362,-0.0039,-0.0885,0.0344,0,-0.0901,0.0362,0.0039,-0.0885,0.0299,-0.0068,-0.0892,0.0344,0,-0.0901,0.0299,0,-0.091,-0.0409,0,-0.085,-0.0344,0,-0.0901,-0.0362,0.0039,-0.0885,-0.0344,0,-0.0901,-0.0362,-0.0039,-0.0885,-0.0299,0.0068,-0.0892,-0.0344,0,-0.0901
,-0.0299,0,-0.091,0.0901,0.0344,0,0.0885,0.0362,0.0039,0.0901,0.0344,0,0.0885,0.0362,-0.0039,0.0892,0.0299,0.0068,0.0901,0.0344,0,0.091,0.0299,0,0.0901,-0.0344,0,0.091,-0.0299,0,0.0901,-0.0344,0,0.0885,-0.0362,-0.0039,0.0892,-0.0299,0.0068,0.0901,-0.0344,0,0.0885,-0.0362,0.0039,-0.0901,0.0344,0,-0.0885,0.0362,-0.0039
,-0.0901,0.0344,0,-0.0885,0.0362,0.0039,-0.0892,0.0299,-0.0068,-0.0901,0.0344,0,-0.091,0.0299,0,-0.0901,-0.0344,0,-0.0885,-0.0362,-0.0039,-0.0892,-0.0299,0.0068,-0.0901,-0.0344,0,-0.091,-0.0299,0,-0.085,-0.0409,0,-0.0901,-0.0344,0,-0.0885,-0.0362,0.0039,0,0.0901,0.0344,0.0039,0.0885,0.0362,-0.0068,0.0892,0.0299,0,0.0901,0.0344
,-0.0039,0.0885,0.0362,0.0068,0.0892,0.0299,0,0.0901,0.0344,0,0.091,0.0299,0.0068,0.0892,-0.0299,0,0.0901,-0.0344,0.0039,0.0885,-0.0362,0,0.0901,-0.0344,0,0.091,-0.0299,0,0.0901,-0.0344,-0.0039,0.0885,-0.0362,-0.0068,-0.0892,0.0299,0,-0.0901,0.0344,0,-0.091,0.0299,0,-0.0901,0.0344,-0.0039,-0.0885,0.0362,0.0068,-0.0892,0.0299
,0,-0.0901,0.0344,0.0039,-0.0885,0.0362,0.0068,-0.0892,-0.0299,0,-0.0901,-0.0344,0,-0.091,-0.0299,0,-0.085,-0.0409,0,-0.0901,-0.0344,0.0039,-0.0885,-0.0362,0,-0.0901,-0.0344,-0.0039,-0.0885,-0.0362,-0.0523,-0.0586,0.0547,-0.0039,-0.0885,0.0362,-0.0586,-0.0547,-0.0523,-0.0885,-0.0362,-0.0039,0.0547,0.0523,0.0586,0.0299,0,0.091,-0.0299,0,0.091
,0.0547,0.0523,-0.0586,-0.0547,0.0523,-0.0586,0.0586,0.0547,0.0523,0.0885,0.0362,0.0039,0.091,0.0299,0,0.091,-0.0299,0,-0.0586,0.0547,0.0523,-0.0885,0.0362,0.0039,-0.0586,-0.0547,0.0523,-0.0885,-0.0362,0.0039,0.0523,0.0586,0.0547,0.0039,0.0885,0.0362,0,0.091,0.0299,0,0.091,-0.0299,0.0523,-0.0586,0.0547,0.0039,-0.0885,0.0362,0.0523,-0.0586,-0.0547
,0.0039,-0.0885,-0.0362,-0.0523,-0.0586,-0.0547,-0.0039,-0.0885,-0.0362,-0.0523,0.0586,-0.0547,-0.0039,0.0885,-0.0362,0.0299,0,-0.091,-0.0299,0,-0.091,0.0547,-0.0523,0.0586,-0.0547,-0.0523,-0.0586,-0.091,0.0299,0,-0.091,-0.0299,0,0.0586,-0.0547,0.0523,0.0885,-0.0362,0.0039,0.0547,-0.0523,-0.0586,0.0586,0.0547,-0.0523,0.0885,0.0362,-0.0039,-0.0547,0.0523,0.0586
,-0.0547,-0.0523,0.0586,0.0586,-0.0547,-0.0523,0.0885,-0.0362,-0.0039,0.0523,0.0586,-0.0547,0.0039,0.0885,-0.0362,0,-0.091,0.0299,0,-0.091,-0.0299,-0.0523,0.0586,0.0547,-0.0039,0.0885,0.0362,-0.0586,0.0547,-0.0523,-0.0885,0.0362,-0.0039,0.0523,0.0586,0.0547,0.0586,0.0547,0.0523,0.0557,0.0557,0.0557,0.0547,0.0523,0.0586,0.0557,0.0557,0.0557,0.0523,-0.0586,0.0547
,0.0547,-0.0523,0.0586,0.0557,-0.0557,0.0557,0.0586,-0.0547,0.0523,0.0557,-0.0557,0.0557,0.0547,0.0523,-0.0586,0.0586,0.0547,-0.0523,0.0557,0.0557,-0.0557,0.0523,0.0586,-0.0547,0.0557,0.0557,-0.0557,0.0586,-0.0547,-0.0523,0.0547,-0.0523,-0.0586,0.0557,-0.0557,-0.0557,0.0523,-0.0586,-0.0547,0.0557,-0.0557,-0.0557,-0.0523,0.0586,0.0547,-0.0547,0.0523,0.0586,-0.0557,0.0557,0.0557
,-0.0586,0.0547,0.0523,-0.0557,0.0557,0.0557,-0.0523,-0.0586,0.0547,-0.0586,-0.0547,0.0523,-0.0557,-0.0557,0.0557,-0.0547,-0.0523,0.0586,-0.0557,-0.0557,0.0557,-0.0547,0.0523,-0.0586,-0.0523,0.0586,-0.0547,-0.0557,0.0557,-0.0557,-0.0586,0.0547,-0.0523,-0.0557,0.0557,-0.0557,-0.0586,-0.0547,-0.0523,-0.0523,-0.0586,-0.0547,-0.0557,-0.0557,-0.0557,-0.0547,-0.0523,-0.0586,-0.0557,-0.0557,-0.0557
,0.0362,-0.0039,0.0885,0.0299,0,0.091,0.0344,0,0.0901,0.0362,0.0039,0.0885,0.0344,0,0.0901,-0.0362,-0.0039,0.0885,-0.0362,0.0039,0.0885,-0.0344,0,0.0901,-0.0299,0,0.091,-0.0344,0,0.0901,0.0362,0.0039,-0.0885,0.0299,0,-0.091,0.0344,0,-0.0901,0.0362,-0.0039,-0.0885,0.0344,0,-0.0901,-0.0362,-0.0039,-0.0885,-0.0299,0,-0.091
,-0.0344,0,-0.0901,-0.0362,0.0039,-0.0885,-0.0344,0,-0.0901,0.0885,0.0362,-0.0039,0.091,0.0299,0,0.0901,0.0344,0,0.0885,0.0362,0.0039,0.0901,0.0344,0,0.0885,-0.0362,-0.0039,0.0885,-0.0362,0.0039,0.0901,-0.0344,0,0.091,-0.0299,0,0.0901,-0.0344,0,-0.0885,0.0362,0.0039,-0.091,0.0299,0,-0.0901,0.0344,0,-0.0885,0.0362,-0.0039
,-0.0901,0.0344,0,-0.091,-0.0299,0,-0.0885,-0.0362,0.0039,-0.0901,-0.0344,0,-0.0885,-0.0362,-0.0039,-0.0901,-0.0344,0,-0.0039,0.0885,0.0362,0,0.091,0.0299,0,0.0901,0.0344,0.0039,0.0885,0.0362,0,0.0901,0.0344,0,0.091,-0.0299,-0.0039,0.0885,-0.0362,0,0.0901,-0.0344,0.0039,0.0885,-0.0362,0,0.0901,-0.0344,-0.0039,-0.0885,0.0362
,0.0039,-0.0885,0.0362,0,-0.0901,0.0344,0,-0.091,0.0299,0,-0.0901,0.0344,0.0039,-0.0885,-0.0362,-0.0039,-0.0885,-0.0362,0,-0.0901,-0.0344,0,-0.091,-0.0299,0,-0.0901,-0.0344,-0.0039,-0.0885,0.0362,-0.0885,-0.0362,-0.0039,0.0547,0.0523,0.0586,0.0362,0.0039,0.0885,0.0299,0,0.091,-0.0299,0,0.091,0.0547,0.0523,-0.0586,0.0362,0.0039,-0.0885
,-0.0547,0.0523,-0.0586,-0.0362,0.0039,-0.0885,0.0885,0.0362,0.0039,0.091,0.0299,0,0.091,-0.0299,0,-0.0885,0.0362,0.0039,-0.0885,-0.0362,0.0039,0.0523,0.0586,0.0547,0.0039,0.0885,0.0362,0,0.091,0.0299,0,0.091,-0.0299,0.0523,-0.0586,0.0547,0.0039,-0.0885,0.0362,0.0523,-0.0586,-0.0547,0.0039,-0.0885,-0.0362,-0.0523,-0.0586,-0.0547,-0.0039,-0.0885,-0.0362
,-0.0039,0.0885,-0.0362,0.0299,0,-0.091,-0.0299,0,-0.091,0.0547,-0.0523,0.0586,0.0362,-0.0039,0.0885,-0.0547,-0.0523,-0.0586,-0.0362,-0.0039,-0.0885,-0.091,0.0299,0,-0.091,-0.0299,0,0.0885,-0.0362,0.0039,0.0362,-0.0039,-0.0885,0.0885,0.0362,-0.0039,-0.0547,0.0523,0.0586,-0.0362,0.0039,0.0885,-0.0362,-0.0039,0.0885,0.0885,-0.0362,-0.0039,0.0523,0.0586,-0.0547
,0.0039,0.0885,-0.0362,0,-0.091,0.0299,0,-0.091,-0.0299,-0.0523,0.0586,0.0547,-0.0039,0.0885,0.0362,-0.0885,0.0362,-0.0039]
,"normals":[-0.804,0.182,-0.566,-0.916,-0.112,-0.385,-0.804,-0.182,-0.566,0.182,-0.566,-0.804,-0.112,-0.385,-0.916,-0.182,-0.566,-0.804,0.734,0,-0.679,0.916,-0.112,-0.385,0.916,0.112,-0.385,-0.566,-0.804,0.182,-0.385,-0.916,-0.112,-0.566,-0.804,-0.182,-0.916,0.112,0.385,-0.804,0.182,0.566,-0.734,0,0.679,0,-0.679,0.734,-0.112,-0.385,0.916
,0.112,-0.385,0.916,-0.679,0.734,0,-0.566,0.804,-0.182,-0.385,0.916,-0.112,-0.112,0.385,0.916,0,0.679,0.734,0.182,0.566,0.804,0.112,0.385,-0.916,0,0.679,-0.734,-0.182,0.566,-0.804,0.566,0.804,-0.182,0.679,0.734,0,0.566,0.804,0.182,0.566,-0.804,0.182,0.679,-0.734,0,0.566,-0.804,-0.182,0.577,0.577,0.577
,0.527,0.383,0.759,0.577,0.577,0.577,0.383,0.759,0.527,0.804,0.182,0.566,0.577,0.577,0.577,0.759,0.527,0.383,0.577,-0.577,0.577,0.759,-0.527,0.383,0.182,-0.566,0.804,0.577,-0.577,0.577,0.383,-0.759,0.527,0.804,-0.182,0.566,0.577,-0.577,0.577,0.527,-0.383,0.759,0.182,0.566,-0.804,0.577,0.577,-0.577,0.383,0.759,-0.527
,0.804,0.182,-0.566,0.577,0.577,-0.577,0.527,0.383,-0.759,0.577,0.577,-0.577,0.759,0.527,-0.383,0.577,-0.577,-0.577,0.383,-0.759,-0.527,0.804,-0.182,-0.566,0.577,-0.577,-0.577,0.759,-0.527,-0.383,0.577,-0.577,-0.577,0.527,-0.383,-0.759,-0.566,0.804,0.182,-0.577,0.577,0.577,-0.759,0.527,0.383,-0.182,0.566,0.804,-0.577,0.577,0.577
,-0.383,0.759,0.527,-0.577,0.577,0.577,-0.527,0.383,0.759,-0.182,-0.566,0.804,-0.577,-0.577,0.577,-0.527,-0.383,0.759,-0.577,-0.577,0.577,-0.383,-0.759,0.527,-0.804,-0.182,0.566,-0.577,-0.577,0.577,-0.759,-0.527,0.383,-0.577,0.577,-0.577,-0.759,0.527,-0.383,-0.577,0.577,-0.577,-0.527,0.383,-0.759,-0.577,0.577,-0.577,-0.383,0.759,-0.527
,-0.577,-0.577,-0.577,-0.527,-0.383,-0.759,-0.577,-0.577,-0.577,-0.759,-0.527,-0.383,-0.577,-0.577,-0.577,-0.383,-0.759,-0.527,0.734,0,0.679,0.357,0,0.934,0.469,0.233,0.852,0.357,0,0.934,0.469,-0.233,0.852,0.112,0.385,0.916,0.357,0,0.934,0.093,0,0.996,-0.357,0,0.934,-0.093,0,0.996,-0.357,0,0.934
,-0.469,-0.233,0.852,-0.357,0,0.934,-0.469,0.233,0.852,0.357,0,-0.934,0.469,-0.233,-0.852,0.357,0,-0.934,0.469,0.233,-0.852,0.112,-0.385,-0.916,0.357,0,-0.934,0.093,0,-0.996,-0.734,0,-0.679,-0.357,0,-0.934,-0.469,0.233,-0.852,-0.357,0,-0.934,-0.469,-0.233,-0.852,-0.112,0.385,-0.916,-0.357,0,-0.934
,-0.093,0,-0.996,0.934,0.357,0,0.852,0.469,0.233,0.934,0.357,0,0.852,0.469,-0.233,0.916,0.112,0.385,0.934,0.357,0,0.996,0.093,0,0.934,-0.357,0,0.996,-0.093,0,0.934,-0.357,0,0.852,-0.469,-0.233,0.916,-0.112,0.385,0.934,-0.357,0,0.852,-0.469,0.233,-0.934,0.357,0,-0.852,0.469,-0.233
,-0.934,0.357,0,-0.852,0.469,0.233,-0.916,0.112,-0.385,-0.934,0.357,0,-0.996,0.093,0,-0.934,-0.357,0,-0.852,-0.469,-0.233,-0.916,-0.112,0.385,-0.934,-0.357,0,-0.996,-0.093,0,-0.679,-0.734,0,-0.934,-0.357,0,-0.852,-0.469,0.233,0,0.934,0.357,0.233,0.852,0.469,-0.385,0.916,0.112,0,0.934,0.357
,-0.233,0.852,0.469,0.385,0.916,0.112,0,0.934,0.357,0,0.996,0.093,0.385,0.916,-0.112,0,0.934,-0.357,0.233,0.852,-0.469,0,0.934,-0.357,0,0.996,-0.093,0,0.934,-0.357,-0.233,0.852,-0.469,-0.385,-0.916,0.112,0,-0.934,0.357,0,-0.996,0.093,0,-0.934,0.357,-0.233,-0.852,0.469,0.385,-0.916,0.112
,0,-0.934,0.357,0.233,-0.852,0.469,0.385,-0.916,-0.112,0,-0.934,-0.357,0,-0.996,-0.093,0,-0.679,-0.734,0,-0.934,-0.357,0.233,-0.852,-0.469,0,-0.934,-0.357,-0.233,-0.852,-0.469,-0.383,-0.759,0.527,-0.233,-0.852,0.469,-0.759,-0.527,-0.383,-0.852,-0.469,-0.233,0.527,0.383,0.759,0.093,0,0.996,-0.093,0,0.996
,0.527,0.383,-0.759,-0.527,0.383,-0.759,0.759,0.527,0.383,0.852,0.469,0.233,0.996,0.093,0,0.996,-0.093,0,-0.759,0.527,0.383,-0.852,0.469,0.233,-0.759,-0.527,0.383,-0.852,-0.469,0.233,0.383,0.759,0.527,0.233,0.852,0.469,0,0.996,0.093,0,0.996,-0.093,0.383,-0.759,0.527,0.233,-0.852,0.469,0.383,-0.759,-0.527
,0.233,-0.852,-0.469,-0.383,-0.759,-0.527,-0.233,-0.852,-0.469,-0.383,0.759,-0.527,-0.233,0.852,-0.469,0.093,0,-0.996,-0.093,0,-0.996,0.527,-0.383,0.759,-0.527,-0.383,-0.759,-0.996,0.093,0,-0.996,-0.093,0,0.759,-0.527,0.383,0.852,-0.469,0.233,0.527,-0.383,-0.759,0.759,0.527,-0.383,0.852,0.469,-0.233,-0.527,0.383,0.759
,-0.527,-0.383,0.759,0.759,-0.527,-0.383,0.852,-0.469,-0.233,0.383,0.759,-0.527,0.233,0.852,-0.469,0,-0.996,0.093,0,-0.996,-0.093,-0.383,0.759,0.527,-0.233,0.852,0.469,-0.759,0.527,-0.383,-0.852,0.469,-0.233,0.383,0.759,0.527,0.759,0.527,0.383,0.577,0.577,0.577,0.527,0.383,0.759,0.577,0.577,0.577,0.383,-0.759,0.527
,0.527,-0.383,0.759,0.577,-0.577,0.577,0.759,-0.527,0.383,0.577,-0.577,0.577,0.527,0.383,-0.759,0.759,0.527,-0.383,0.577,0.577,-0.577,0.383,0.759,-0.527,0.577,0.577,-0.577,0.759,-0.527,-0.383,0.527,-0.383,-0.759,0.577,-0.577,-0.577,0.383,-0.759,-0.527,0.577,-0.577,-0.577,-0.383,0.759,0.527,-0.527,0.383,0.759,-0.577,0.577,0.577
,-0.759,0.527,0.383,-0.577,0.577,0.577,-0.383,-0.759,0.527,-0.759,-0.527,0.383,-0.577,-0.577,0.577,-0.527,-0.383,0.759,-0.577,-0.577,0.577,-0.527,0.383,-0.759,-0.383,0.759,-0.527,-0.577,0.577,-0.577,-0.759,0.527,-0.383,-0.577,0.577,-0.577,-0.759,-0.527,-0.383,-0.383,-0.759,-0.527,-0.577,-0.577,-0.577,-0.527,-0.383,-0.759,-0.577,-0.577,-0.577
,0.469,-0.233,0.852,0.093,0,0.996,0.357,0,0.934,0.469,0.233,0.852,0.357,0,0.934,-0.469,-0.233,0.852,-0.469,0.233,0.852,-0.357,0,0.934,-0.093,0,0.996,-0.357,0,0.934,0.469,0.233,-0.852,0.093,0,-0.996,0.357,0,-0.934,0.469,-0.233,-0.852,0.357,0,-0.934,-0.469,-0.233,-0.852,-0.093,0,-0.996
,-0.357,0,-0.934,-0.469,0.233,-0.852,-0.357,0,-0.934,0.852,0.469,-0.233,0.996,0.093,0,0.934,0.357,0,0.852,0.469,0.233,0.934,0.357,0,0.852,-0.469,-0.233,0.852,-0.469,0.233,0.934,-0.357,0,0.996,-0.093,0,0.934,-0.357,0,-0.852,0.469,0.233,-0.996,0.093,0,-0.934,0.357,0,-0.852,0.469,-0.233
,-0.934,0.357,0,-0.996,-0.093,0,-0.852,-0.469,0.233,-0.934,-0.357,0,-0.852,-0.469,-0.233,-0.934,-0.357,0,-0.233,0.852,0.469,0,0.996,0.093,0,0.934,0.357,0.233,0.852,0.469,0,0.934,0.357,0,0.996,-0.093,-0.233,0.852,-0.469,0,0.934,-0.357,0.233,0.852,-0.469,0,0.934,-0.357,-0.233,-0.852,0.469
,0.233,-0.852,0.469,0,-0.934,0.357,0,-0.996,0.093,0,-0.934,0.357,0.233,-0.852,-0.469,-0.233,-0.852,-0.469,0,-0.934,-0.357,0,-0.996,-0.093,0,-0.934,-0.357,-0.233,-0.852,0.469,-0.852,-0.469,-0.233,0.527,0.383,0.759,0.469,0.233,0.852,0.093,0,0.996,-0.093,0,0.996,0.527,0.383,-0.759,0.469,0.233,-0.852
,-0.527,0.383,-0.759,-0.469,0.233,-0.852,0.852,0.469,0.233,0.996,0.093,0,0.996,-0.093,0,-0.852,0.469,0.233,-0.852,-0.469,0.233,0.383,0.759,0.527,0.233,0.852,0.469,0,0.996,0.093,0,0.996,-0.093,0.383,-0.759,0.527,0.233,-0.852,0.469,0.383,-0.759,-0.527,0.233,-0.852,-0.469,-0.383,-0.759,-0.527,-0.233,-0.852,-0.469
,-0.233,0.852,-0.469,0.093,0,-0.996,-0.093,0,-0.996,0.527,-0.383,0.759,0.469,-0.233,0.852,-0.527,-0.383,-0.759,-0.469,-0.233,-0.852,-0.996,0.093,0,-0.996,-0.093,0,0.852,-0.469,0.233,0.469,-0.233,-0.852,0.852,0.469,-0.233,-0.527,0.383,0.759,-0.469,0.233,0.852,-0.469,-0.233,0.852,0.852,-0.469,-0.233,0.383,0.759,-0.527
,0.233,0.852,-0.469,0,-0.996,0.093,0,-0.996,-0.093,-0.383,0.759,0.527,-0.233,0.852,0.469,-0.852,0.469,-0.233]
,"tangents":[-0.498,0.316,0.808,1,-0.4,0.326,0.857,1,-0.594,0.299,0.747,1,0.789,-0.404,0.463,1,0.798,-0.584,0.147,1,0.794,-0.567,0.22,1,0.645,0.311,0.698,1,0.4,0.317,0.86,1,0.339,0.296,0.893,1,-0.607,0.556,0.568,1,-0.778,0.256,0.574,1,-0.724,0.379,0.577,1,-0.339,0.294
,-0.894,1,-0.501,0.306,-0.81,1,-0.645,0.31,-0.698,1,1,0.003,0.002,1,0.994,-0.045,0.103,1,0.994,0.05,-0.101,1,0.432,0.399,-0.808,1,0.569,0.221,-0.792,1,0.586,0.148,-0.797,1,0.323,-0.858,0.4,1,0.314,-0.697,0.644,1,0.312,-0.809,0.499,1,0.299,-0.892,-0.338,1
,0.315,-0.697,-0.644,1,0.298,-0.747,-0.594,1,0.81,-0.501,0.306,1,0.699,-0.645,0.309,1,0.749,-0.594,0.293,1,-0.749,-0.594,-0.293,1,-0.698,-0.645,-0.311,1,-0.809,-0.501,-0.308,1,0.312,-0.809,0.498,1,0.222,-0.924,0.312,1,0.6,-0.78,0.179,1,0.758,-0.584,0.29,1,-0.459,0.795
,0.396,1,-0.769,0.623,0.146,1,-0.641,0.706,0.301,1,-0.599,-0.78,-0.182,1,-0.495,-0.849,-0.187,1,0.983,0.106,-0.148,1,0.815,0.365,-0.45,1,0.921,0.266,-0.286,1,-0.215,0.799,0.561,1,-0.033,0.69,0.723,1,-0.227,0.797,0.559,1,0.311,-0.809,-0.499,1,0.31,-0.809,-0.499,1
,0.381,-0.649,-0.658,1,0.501,0.307,0.809,1,0.502,0.306,0.809,1,0.662,0.376,0.649,1,0.809,-0.503,0.306,1,0.649,-0.662,0.375,1,-0.809,-0.5,-0.309,1,-0.924,-0.32,-0.21,1,0.594,0.295,0.748,1,0.782,0.188,0.594,1,0.587,0.3,0.752,1,0.619,-0.152,0.771,1,0.701,-0.309
,0.642,1,0.406,0.464,-0.787,1,0.157,0.772,-0.616,1,0.146,0.711,-0.688,1,0.297,-0.748,0.594,1,0.184,-0.597,0.781,1,0.188,-0.494,0.849,1,-0.503,0.305,-0.808,1,-0.662,0.376,-0.649,1,0.983,-0.1,0.152,1,0.815,-0.359,0.456,1,0.85,-0.265,0.456,1,-0.401,0.816,0.415,1
,-0.564,0.643,0.518,1,-0.594,0.291,-0.75,1,-0.779,0.179,-0.6,1,-0.583,0.288,-0.76,1,-0.495,0.314,0.81,1,-0.309,0.226,0.924,1,0.183,-0.598,-0.781,1,0.294,-0.755,-0.585,1,0.727,0.041,-0.685,1,0.749,-0.079,-0.658,1,-0.782,0.186,0.595,1,-0.849,0.192,0.492,1,-0.806,0.288
,0.518,1,-0.635,0.469,0.614,1,0.686,-0.727,0.041,1,0.794,-0.562,0.233,1,-0.393,0.815,0.426,1,-0.532,0.822,0.203,1,-0.622,0.771,0.132,1,0.93,0.094,-0.355,1,0.882,0.171,-0.439,1,0.296,-0.893,0.338,1,0.186,-0.98,-0.071,1,0.27,-0.963,-0.025,1,0.931,-0.084,0.356,1
,0.995,-0.035,0.093,1,-0.886,0.317,-0.338,1,-0.875,0.253,-0.413,1,0.396,-0.905,0.151,1,0.326,-0.851,0.412,1,0.886,0.318,0.338,1,0.875,0.254,0.412,1,0.187,-0.98,0.072,1,0.218,-0.965,-0.144,1,0.807,-0.503,0.31,1,0.807,-0.505,0.308,1,0.832,-0.55,0.078,1,-0.644,0.317
,0.697,1,-0.884,0.323,0.338,1,-0.773,0.359,0.523,1,0.697,-0.665,-0.266,1,0.681,-0.71,-0.181,1,0.323,-0.858,-0.4,1,0.395,-0.906,-0.151,1,0.36,-0.932,-0.034,1,0.339,-0.887,0.315,1,0.413,-0.875,0.251,1,-0.071,0.186,0.98,1,0.146,0.214,0.966,1,-0.308,0.812,0.497,1
,-0.31,0.811,0.496,1,-0.078,0.838,0.54,1,0.149,0.391,0.908,1,0.033,0.356,0.934,1,-0.338,-0.886,-0.318,1,-0.523,-0.775,-0.354,1,-0.143,0.805,0.576,1,0.27,0.706,0.655,1,0.187,0.687,0.702,1,0.206,0.54,-0.816,1,0.436,0.389,-0.811,1,0.07,0.184,-0.98,1,-0.147,0.212
,-0.966,1,-0.338,0.299,0.892,1,0.072,0.19,0.979,1,0.026,0.273,0.962,1,-0.153,0.399,0.904,1,-0.413,0.329,0.85,1,-0.4,0.315,-0.861,1,-0.149,0.391,-0.908,1,-0.033,0.356,-0.934,1,-0.593,0.548,0.591,1,-0.286,0.749,0.597,1,-0.291,0.793,0.535,1,0.32,-0.338,0.885,1
,0.356,-0.523,0.774,1,0.504,0.31,-0.806,1,0.504,0.308,-0.807,1,0.432,0.523,-0.735,1,0.86,-0.4,0.316,1,0.909,-0.148,0.389,1,0.935,-0.033,0.353,1,0.894,-0.339,0.294,1,0.981,0.07,0.183,1,0.966,-0.146,0.214,1,0.666,-0.266,-0.697,1,0.617,-0.073,-0.784,1,0.32,-0.338
,-0.885,1,0.256,-0.412,-0.875,1,-0.716,0.373,0.59,1,-0.74,0.24,0.629,1,-0.778,0.058,0.626,1,1,0.002,0.005,1,0.972,-0.185,0.147,1,-0.86,-0.4,-0.318,1,-0.907,-0.15,-0.394,1,-0.854,-0.41,-0.321,1,-0.894,-0.339,-0.294,1,-0.98,0.071,-0.185,1,-0.963,0.025,-0.268,1
,0.809,-0.432,0.399,1,0.814,-0.207,0.542,1,0.763,-0.14,0.632,1,-0.868,-0.177,0.464,1,-0.883,-0.017,0.469,1,0.92,-0.262,0.291,1,-0.675,0.489,0.552,1,-0.586,0.296,0.754,1,-0.503,0.609,0.614,1,-0.702,0.699,0.135,1,0.995,0.041,-0.093,1,0.36,-0.932,0.034,1,0.223,-0.924
,-0.311,1,-0.655,0.386,0.649,1,0.495,-0.849,0.185,1,-0.523,0.74,0.424,1,-0.025,0.272,0.962,1,0.074,0.793,0.604,1,-0.315,0.218,-0.924,1,0.139,0.631,-0.763,1,-0.339,0.822,0.459,1,-0.409,0.319,-0.855,1,0.384,-0.649,0.657,1,0.854,-0.409,0.32,1,0.548,0.078,-0.833,1
,0.963,0.025,0.269,1,-0.758,-0.584,-0.29,1,0.972,0.189,-0.139,1,0.691,-0.143,0.708,1,-0.966,-0.147,-0.212,1,-0.88,0.126,0.458,1,0.812,-0.435,0.388,1,0.189,-0.494,-0.849,1,0.712,-0.179,-0.679,1,0.274,-0.961,0.026,1,0.785,-0.615,-0.073,1,0.849,0.273,-0.452,1,0.66,-0.747
,-0.081,1,0.025,0.271,-0.962,1,-0.034,0.363,0.931,1,0.087,0.665,0.742,1,-0.413,-0.875,-0.253,1,0.849,0.184,0.496,1,0.313,0.22,0.924,1,0.523,-0.776,0.352,1,0.294,-0.756,0.585,1,-0.849,0.185,-0.495,1,-0.649,-0.653,-0.389,1,0.41,0.32,0.854,1,0.924,-0.314,0.219,1
,0.358,-0.523,-0.773,1,-0.933,-0.033,-0.357,1,-0.829,-0.052,0.557,1,0.315,0.643,-0.698,1,0.255,-0.412,0.875,1,0.563,0.236,-0.792,1,-0.144,0.216,0.966,1,0.384,-0.649,0.657,1,0.495,-0.849,0.185,1,0.6,-0.78,0.179,1,-0.702,0.699,0.135,1,-0.769,0.623,0.146,1,-0.758,-0.584
,-0.29,1,0.849,0.273,-0.452,1,0.815,0.365,-0.45,1,0.087,0.665,0.742,1,-0.033,0.69,0.723,1,0.223,-0.924,-0.311,1,0.313,0.22,0.924,1,0.502,0.306,0.809,1,0.924,-0.314,0.219,1,0.809,-0.503,0.306,1,-0.649,-0.653,-0.389,1,0.849,0.184,0.496,1,0.782,0.188,0.594,1
,0.691,-0.143,0.708,1,0.619,-0.152,0.771,1,0.315,0.643,-0.698,1,0.294,-0.756,0.585,1,0.184,-0.597,0.781,1,-0.315,0.218,-0.924,1,-0.503,0.305,-0.808,1,0.92,-0.262,0.291,1,-0.339,0.822,0.459,1,-0.401,0.816,0.415,1,-0.849,0.185,-0.495,1,-0.779,0.179,-0.6,1,-0.655,0.386
,0.649,1,0.189,-0.494,-0.849,1,0.183,-0.598,-0.781,1,0.563,0.236,-0.792,1,0.727,0.041,-0.685,1,-0.586,0.296,0.754,1,-0.88,0.126,0.458,1,-0.806,0.288,0.518,1,0.66,-0.747,-0.081,1,0.686,-0.727,0.041,1,-0.381,0.817,0.433,1,0.995,0.041,-0.093,1,0.93,0.094,-0.355,1
,0.215,-0.966,0.145,1,0.186,-0.98,-0.071,1,0.882,-0.162,0.442,1,-0.776,0.352,-0.523,1,-0.886,0.317,-0.338,1,0.36,-0.932,0.034,1,0.396,-0.905,0.151,1,0.776,0.352,0.523,1,0.274,-0.961,0.026,1,0.187,-0.98,0.072,1,0.736,-0.43,0.523,1,0.807,-0.505,0.308,1,-0.874,0.26
,0.41,1,0.785,-0.615,-0.073,1,0.697,-0.665,-0.266,1,0.326,-0.851,-0.412,1,0.395,-0.906,-0.151,1,0.523,-0.776,0.352,1,-0.025,0.272,0.962,1,-0.071,0.186,0.98,1,-0.523,0.74,0.424,1,-0.31,0.811,0.496,1,0.41,0.32,0.854,1,-0.413,-0.875,-0.253,1,-0.338,-0.886,-0.318,1
,0.074,0.793,0.604,1,0.27,0.706,0.655,1,0.139,0.631,-0.763,1,0.025,0.271,-0.962,1,0.07,0.184,-0.98,1,-0.144,0.216,0.966,1,0.072,0.19,0.979,1,-0.034,0.363,0.931,1,-0.409,0.319,-0.855,1,-0.149,0.391,-0.908,1,-0.503,0.609,0.614,1,-0.286,0.749,0.597,1,0.255,-0.412
,0.875,1,0.548,0.078,-0.833,1,0.504,0.308,-0.807,1,0.854,-0.409,0.32,1,0.909,-0.148,0.389,1,0.963,0.025,0.269,1,0.712,-0.179,-0.679,1,0.666,-0.266,-0.697,1,0.358,-0.523,-0.773,1,0.32,-0.338,-0.885,1,-0.675,0.489,0.552,1,0.972,0.189,-0.139,1,1,0.002,0.005,1
,-0.933,-0.033,-0.357,1,-0.907,-0.15,-0.394,1,-0.966,-0.147,-0.212,1,0.812,-0.435,0.388,1,0.814,-0.207,0.542,1,-0.829,-0.052,0.557,1,-0.868,-0.177,0.464,1,-0.675,0.489,0.552,1,-0.503,0.609,0.614,1,-0.702,0.699,0.135,1,0.215,-0.966,0.145,1,0.995,0.041,-0.093,1,0.36,-0.932
,0.034,1,0.223,-0.924,-0.311,1,0.776,0.352,0.523,1,-0.655,0.386,0.649,1,0.326,-0.851,-0.412,1,-0.523,0.74,0.424,1,-0.025,0.272,0.962,1,0.074,0.793,0.604,1,0.139,0.631,-0.763,1,-0.409,0.319,-0.855,1,0.384,-0.649,0.657,1,0.854,-0.409,0.32,1,0.548,0.078,-0.833,1
,0.963,0.025,0.269,1,-0.758,-0.584,-0.29,1,0.972,0.189,-0.139,1,0.691,-0.143,0.708,1,-0.966,-0.147,-0.212,1,-0.88,0.126,0.458,1,0.812,-0.435,0.388,1,0.712,-0.179,-0.679,1,0.274,-0.961,0.026,1,0.785,-0.615,-0.073,1,0.849,0.273,-0.452,1,-0.381,0.817,0.433,1,0.66,-0.747
,-0.081,1,-0.874,0.26,0.41,1,0.025,0.271,-0.962,1,-0.034,0.363,0.931,1,-0.413,-0.875,-0.253,1,0.736,-0.43,0.523,1,0.523,-0.776,0.352,1,0.294,-0.756,0.585,1,-0.776,0.352,-0.523,1,0.882,-0.162,0.442,1,0.41,0.32,0.854,1,0.924,-0.314,0.219,1,0.358,-0.523,-0.773,1
,-0.933,-0.033,-0.357,1,-0.829,-0.052,0.557,1,0.315,0.643,-0.698,1,0.255,-0.412,0.875,1,-0.144,0.216,0.966,1]
,"uvs":[0.828,0.698,0.86,0.798,0.795,0.798,0.817,0.682,0.712,0.682,0.732,0.62,0.839,0.683,0.924,0.621,0.944,0.683,0.987,0.485,0.886,0.452,0.925,0.4,0.449,0.948,0.396,0.986,0.344,0.947,0.826,0.918,0.794,0.817,0.859,0.817,0.898,0.742,0.963,0.741,0.983,0.803,0.93,0.989,0.845,0.927,0.898,0.889,0.685,0.951
,0.58,0.951,0.6,0.889,0.749,0.885,0.801,0.923,0.781,0.985,0.482,0.986,0.462,0.924,0.515,0.886,0.898,0.88,0.902,0.883,0.786,0.993,0.781,0.993,0.775,0.805,0.784,0.807,0.78,0.811,0.477,0.993,0.475,0.988,0.879,0.879,0.887,0.882,0.883,0.886,0.689,0.743,0.684,0.736,0.689,0.735,0.633,0.989,0.633,0.998
,0.628,0.995,0.891,0.721,0.891,0.73,0.887,0.727,0.749,0.876,0.753,0.879,0.515,0.877,0.519,0.879,0.859,0.621,0.853,0.613,0.858,0.613,0.826,0.685,0.822,0.688,0.878,0.804,0.869,0.806,0.87,0.801,0.865,0.989,0.859,0.997,0.857,0.992,0.396,0.995,0.392,0.992,0.773,0.879,0.765,0.882,0.766,0.877,0.994,0.49
,0.989,0.492,0.364,0.885,0.358,0.878,0.364,0.878,0.828,0.689,0.832,0.692,0.595,0.882,0.6,0.882,0.968,0.734,0.97,0.738,0.79,0.805,0.788,0.8,0.922,0.391,0.927,0.392,0.727,0.613,0.732,0.612,0.754,0.743,0.76,0.736,0.762,0.74,0.864,0.81,0.866,0.815,0.95,0.928,0.959,0.925,0.958,0.93,0.789,0.81
,0.794,0.81,0.335,0.95,0.336,0.945,0.935,0.997,0.93,0.997,0.83,0.685,0.831,0.68,0.694,0.953,0.69,0.957,0.764,0.721,0.764,0.73,0.76,0.727,0.775,0.736,0.767,0.733,0.77,0.73,0.703,0.685,0.705,0.68,0.665,0.889,0.67,0.882,0.672,0.886,0.81,0.921,0.809,0.926,0.952,0.686,0.948,0.689,0.723,0.843
,0.723,0.852,0.718,0.85,0.929,0.614,0.931,0.618,0.454,0.921,0.458,0.918,0.67,0.805,0.661,0.808,0.662,0.803,0.893,0.734,0.898,0.734,0.458,0.951,0.454,0.954,0.881,0.736,0.889,0.734,0.888,0.739,0.865,0.805,0.86,0.806,0.429,0.886,0.434,0.879,0.436,0.883,0.987,0.42,0.994,0.415,0.995,0.42,0.836,0.925
,0.84,0.921,0.931,0.841,0.931,0.851,0.926,0.848,0.716,0.985,0.711,0.993,0.709,0.988,0.696,0.923,0.688,0.92,0.692,0.917,0.992,0.806,0.988,0.809,0.571,0.954,0.572,0.949,0.925,0.505,0.922,0.513,0.918,0.509,0.826,0.927,0.821,0.924,0.548,0.986,0.553,0.993,0.548,0.993,0.568,0.924,0.576,0.921,0.575,0.926
,0.797,0.62,0.803,0.613,0.805,0.618,0.877,0.452,0.88,0.448,0.769,0.885,0.927,0.512,0.795,0.805,0.989,0.413,0.782,0.802,0.859,0.81,0.937,0.992,0.637,0.995,0.824,0.692,0.788,0.988,0.727,0.849,0.951,0.681,0.665,0.811,0.401,0.992,0.891,0.739,0.994,0.485,0.429,0.878,0.893,0.883,0.716,0.993,0.935,0.848
,0.689,0.925,0.482,0.994,0.83,0.924,0.825,0.68,0.572,0.918,0.919,0.395,0.798,0.612,0.593,0.887,0.991,0.801,0.693,0.948,0.707,0.688,0.886,0.877,0.725,0.617,0.456,0.946,0.867,0.801,0.682,0.741,0.455,0.926,0.851,0.618,0.895,0.727,0.806,0.917,0.865,0.997,0.356,0.883,0.511,0.879,0.924,0.613,0.745,0.879
,0.575,0.957,0.555,0.988,0.88,0.456,0.873,0.81,0.837,0.93,0.963,0.733,0.885,0.73,0.893,0.883,0.788,0.988,0.786,0.993,0.782,0.802,0.784,0.807,0.482,0.994,0.886,0.877,0.887,0.882,0.682,0.741,0.684,0.736,0.637,0.995,0.895,0.727,0.891,0.73,0.745,0.879,0.749,0.876,0.511,0.879,0.851,0.618,0.853,0.613
,0.825,0.68,0.826,0.685,0.873,0.81,0.865,0.997,0.859,0.997,0.401,0.992,0.396,0.995,0.769,0.885,0.994,0.485,0.994,0.49,0.356,0.883,0.358,0.878,0.824,0.692,0.593,0.887,0.595,0.882,0.963,0.733,0.968,0.734,0.795,0.805,0.919,0.395,0.922,0.391,0.725,0.617,0.727,0.613,0.754,0.735,0.859,0.81,0.864,0.81
,0.955,0.921,0.959,0.925,0.787,0.815,0.339,0.953,0.335,0.95,0.937,0.992,0.935,0.997,0.834,0.689,0.693,0.948,0.694,0.953,0.769,0.727,0.764,0.73,0.768,0.738,0.707,0.688,0.703,0.685,0.665,0.881,0.67,0.882,0.806,0.917,0.951,0.681,0.952,0.686,0.727,0.849,0.723,0.852,0.924,0.613,0.455,0.926,0.454,0.921
,0.665,0.811,0.661,0.808,0.891,0.739,0.456,0.946,0.458,0.951,0.885,0.73,0.889,0.734,0.867,0.801,0.429,0.878,0.434,0.879,0.989,0.413,0.994,0.415,0.837,0.93,0.935,0.848,0.931,0.851,0.716,0.993,0.711,0.993,0.689,0.925,0.991,0.801,0.992,0.806,0.575,0.957,0.571,0.954,0.927,0.512,0.83,0.924,0.826,0.927
,0.555,0.988,0.553,0.993,0.572,0.918,0.798,0.612,0.803,0.613,0.88,0.456,0.877,0.452,0.927,0.512,0.989,0.413,0.782,0.802,0.955,0.921,0.859,0.81,0.937,0.992,0.637,0.995,0.834,0.689,0.824,0.692,0.665,0.881,0.727,0.849,0.951,0.681,0.665,0.811,0.891,0.739,0.429,0.878,0.893,0.883,0.716,0.993,0.935,0.848
,0.689,0.925,0.482,0.994,0.83,0.924,0.825,0.68,0.572,0.918,0.919,0.395,0.798,0.612,0.991,0.801,0.693,0.948,0.707,0.688,0.886,0.877,0.754,0.735,0.725,0.617,0.768,0.738,0.456,0.946,0.867,0.801,0.455,0.926,0.769,0.727,0.806,0.917,0.865,0.997,0.339,0.953,0.787,0.815,0.924,0.613,0.745,0.879,0.575,0.957
,0.555,0.988,0.88,0.456,0.873,0.81,0.837,0.93,0.885,0.73]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,23,33,34,29,35,36,37,38,39,30,40,41,42,43,44,45,46,47
,48,49,50,51,52,53,27,54,55,32,56,57,58,59,60,3,61,62,63,64,65,66,67,68,13,69,70,71,72,73,9,74,75,76,77,78,0,79,80,26,81,82,19,83,84,2,85,86,11,87,88
,5,89,90,91,92,93,17,94,95,96,97,98,16,99,100,14,101,102,21,103,104,6,105,106,24,107,108,109,110,111,112,113,114,4,115,116,117,118,119,28,120,121,8,122,123,124,125,126,7,127,128
,31,129,130,131,132,133,18,134,135,12,136,137,138,139,140,1,141,142,143,144,145,146,147,148,22,149,150,151,152,153,154,155,156,157,158,159,20,160,161,25,162,163,164,165,166,15,167,168,169,170,171
,172,173,174,175,176,177,10,178,179,71,168,180,181,9,75,2,142,182,183,11,88,91,184,37,34,96,23,16,185,17,186,96,98,24,187,48,53,6,51,112,188,0,82,117,26,29,121,189,190,37,39
,7,191,8,192,124,126,13,137,193,194,63,65,9,148,195,196,76,78,22,197,23,198,29,36,20,199,151,200,154,156,169,201,30,202,42,44,175,203,3,204,32,57,10,205,11,206,5,90,26,163,207
,208,19,84,117,209,24,210,109,111,17,211,42,47,91,45,4,212,5,86,112,2,143,213,12,214,138,140,45,133,215,216,30,41,58,106,217,62,109,3,51,123,218,219,27,55,21,220,66,70,14,13
,76,102,221,73,16,71,32,130,222,223,58,60,157,224,27,225,48,50,172,226,169,227,164,166,151,228,63,229,66,68,19,135,230,231,0,80,131,45,91,2,112,0,0,138,1,5,175,3,3,109,4
,8,51,6,6,58,7,11,146,9,9,164,10,14,76,143,143,12,14,17,42,15,15,71,16,151,63,20,63,18,20,23,96,21,21,66,22,26,117,24,24,48,25,29,154,157,157,27,29,32,172,169
,169,30,32,23,232,33,29,233,234,37,235,236,30,237,40,42,238,239,45,240,241,48,242,49,51,243,244,27,245,246,32,247,56,58,248,249,3,250,251,63,252,64,66,253,254,13,255,256,71,257,72
,9,258,259,76,260,261,0,262,79,26,263,264,19,265,266,2,267,85,11,268,269,5,270,271,91,272,92,17,273,274,96,275,276,16,277,99,14,278,279,21,280,281,6,282,105,24,283,284,109,285,286
,112,287,113,4,288,289,117,290,291,28,292,120,8,293,294,124,295,296,7,297,127,31,298,299,131,300,301,18,302,134,12,303,304,138,305,306,1,307,141,143,308,309,146,310,311,22,312,149,151,313,314
,154,315,316,157,317,158,20,318,319,25,320,321,164,322,165,15,323,324,169,325,326,172,327,173,175,328,329,10,330,331,71,15,168,332,164,9,2,1,142,333,146,11,91,93,334,34,335,96,16,100,336
,337,21,96,24,108,338,53,339,6,112,114,340,82,341,117,29,28,121,342,124,37,7,128,343,344,131,124,13,12,137,345,18,63,9,146,148,346,143,76,22,150,347,348,154,29,20,161,349,350,157,154
,169,171,351,352,15,42,175,177,353,354,172,32,10,179,355,356,175,5,26,25,163,357,20,19,117,119,358,359,4,109,17,95,360,47,361,91,4,116,362,86,363,112,143,145,364,365,1,138,45,131,133
,366,31,30,58,6,106,62,367,109,51,8,123,368,28,27,21,104,369,70,370,14,76,14,102,73,371,16,32,31,130,372,7,58,157,159,373,374,25,48,172,174,375,376,10,164,151,153,377,378,22,66
,19,18,135,379,138,0,37,124,91,124,131,91]
}
,{"name":"d20","id":"d20","billboardMode":0,"position":[-0.4,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false
,"positions":[0.0807,0,0.0637,0.0069,-0.0456,0.0919,0.0069,0.0456,0.0919,0.085,0.0112,0.0568,0.0112,0.0568,0.085,0.0568,0.085,0.0112,-0.085,0.0112,-0.0568,-0.0112,0.0568,-0.085,-0.0568,0.085,-0.0112,0.085,0.0112,-0.0568,0.0568,0.085,-0.0112,0.0112,0.0568,-0.085,0.0807,0,-0.0637,0.0069,0.0456,-0.0919,0.0069,-0.0456,-0.0919,-0.0637,0.0807,0,-0.0919,0.0069,0.0456
,-0.0919,0.0069,-0.0456,-0.0807,0,-0.0637,-0.0069,-0.0456,-0.0919,-0.0069,0.0456,-0.0919,0,0.0637,-0.0807,0.0456,0.0919,-0.0069,-0.0456,0.0919,-0.0069,-0.0637,-0.0807,0,-0.0919,-0.0069,-0.0456,-0.0919,-0.0069,0.0456,-0.085,-0.0112,0.0568,-0.0112,-0.0568,0.085,-0.0568,-0.085,0.0112,0.085,-0.0112,-0.0568,0.0112,-0.0568,-0.085,0.0568,-0.085,-0.0112,-0.085,-0.0112,-0.0568
,-0.0568,-0.085,-0.0112,-0.0112,-0.0568,-0.085,0.085,-0.0112,0.0568,0.0568,-0.085,0.0112,0.0112,-0.0568,0.085,0.0637,0.0807,0,0.0919,0.0069,-0.0456,0.0919,0.0069,0.0456,-0.085,0.0112,0.0568,-0.0568,0.085,0.0112,-0.0112,0.0568,0.085,-0.0807,0,0.0637,-0.0069,0.0456,0.0919,-0.0069,-0.0456,0.0919,0,-0.0637,-0.0807,-0.0456,-0.0919,-0.0069,0.0456,-0.0919,-0.0069
,0,0.0637,0.0807,-0.0456,0.0919,0.0069,0.0456,0.0919,0.0069,0,-0.0637,0.0807,0.0456,-0.0919,0.0069,-0.0456,-0.0919,0.0069,0.0919,-0.0069,0.0456,0.0901,0,0.0557,0.093,0,0.0456,0.0901,0,0.0557,0.0893,-0.0096,0.0515,0.0901,0,0.0557,0.0834,-0.0059,0.0611,0.0901,0,0.0557,0.0834,0.0059,0.0611,0.0901,0,0.0557,0.0893,0.0096,0.0515
,-0.0901,0,0.0557,-0.0893,-0.0096,0.0515,-0.0901,0,0.0557,-0.093,0,0.0456,-0.0901,0,0.0557,-0.0893,0.0096,0.0515,-0.0901,0,0.0557,-0.0834,0.0059,0.0611,-0.0901,0,0.0557,-0.0834,-0.0059,0.0611,0.0919,-0.0069,-0.0456,0.0901,0,-0.0557,0.0893,-0.0096,-0.0515,0.0901,0,-0.0557,0.093,0,-0.0456,0.0901,0,-0.0557,0.0893,0.0096,-0.0515
,0.0901,0,-0.0557,0.0834,0.0059,-0.0611,0.0901,0,-0.0557,0.0834,-0.0059,-0.0611,-0.0901,0,-0.0557,-0.093,0,-0.0456,-0.0901,0,-0.0557,-0.0893,-0.0096,-0.0515,-0.0901,0,-0.0557,-0.0834,-0.0059,-0.0611,-0.0901,0,-0.0557,-0.0834,0.0059,-0.0611,-0.0901,0,-0.0557,-0.0893,0.0096,-0.0515,0.0557,0.0901,0,0.0611,0.0834,0.0059,0.0557,0.0901,0
,0.0515,0.0893,0.0096,0.0557,0.0901,0,0.0456,0.093,0,0.0557,0.0901,0,0.0515,0.0893,-0.0096,0.0557,0.0901,0,0.0611,0.0834,-0.0059,0.0557,-0.0901,0,0.0515,-0.0893,0.0096,0.0637,-0.0807,0,0.0557,-0.0901,0,0.0611,-0.0834,0.0059,0.0557,-0.0901,0,0.0611,-0.0834,-0.0059,0.0557,-0.0901,0,0.0515,-0.0893,-0.0096,0.0557,-0.0901,0
,0.0456,-0.093,0,-0.0557,0.0901,0,-0.0515,0.0893,0.0096,-0.0557,0.0901,0,-0.0611,0.0834,0.0059,-0.0557,0.0901,0,-0.0611,0.0834,-0.0059,-0.0557,0.0901,0,-0.0515,0.0893,-0.0096,-0.0557,0.0901,0,-0.0456,0.093,0,-0.0557,-0.0901,0,-0.0611,-0.0834,0.0059,-0.0557,-0.0901,0,-0.0515,-0.0893,0.0096,-0.0557,-0.0901,0,-0.0456,-0.093,0
,-0.0557,-0.0901,0,-0.0515,-0.0893,-0.0096,-0.0557,-0.0901,0,-0.0611,-0.0834,-0.0059,0,0.0557,0.0901,0.0096,0.0515,0.0893,0,0.0557,0.0901,0,0.0456,0.093,0,0.0557,0.0901,-0.0096,0.0515,0.0893,0,0.0557,0.0901,-0.0059,0.0611,0.0834,0,0.0557,0.0901,0.0059,0.0611,0.0834,0,0.0557,-0.0901,-0.0096,0.0515,-0.0893,0,0.0557,-0.0901
,0,0.0456,-0.093,0,0.0557,-0.0901,0.0096,0.0515,-0.0893,0,0.0557,-0.0901,0.0059,0.0611,-0.0834,0,0.0557,-0.0901,-0.0059,0.0611,-0.0834,0,-0.0557,0.0901,0,-0.0456,0.093,0,-0.0557,0.0901,0.0096,-0.0515,0.0893,0,-0.0557,0.0901,0.0059,-0.0611,0.0834,0,-0.0557,0.0901,-0.0059,-0.0611,0.0834,0,-0.0557,0.0901,-0.0096,-0.0515,0.0893
,0,-0.0557,-0.0901,0,-0.0456,-0.093,0,-0.0557,-0.0901,-0.0096,-0.0515,-0.0893,0,-0.0557,-0.0901,-0.0059,-0.0611,-0.0834,0,-0.0557,-0.0901,0.0059,-0.0611,-0.0834,0,-0.0557,-0.0901,0.0096,-0.0515,-0.0893,0,0.0456,-0.093,0,-0.0456,-0.093,0.093,0,0.0456,0.093,0,-0.0456,-0.093,0,0.0456,-0.093,0,-0.0456,0.0893,0.0096,0.0515
,0.0893,-0.0096,0.0515,-0.0893,0.0096,0.0515,-0.0611,0.0834,0.0059,-0.0893,-0.0096,0.0515,0.0834,0.0059,0.0611,0.0096,0.0515,0.0893,0.0834,0.0059,-0.0611,0.0834,-0.0059,0.0611,0.0096,-0.0515,0.0893,0.0834,-0.0059,-0.0611,0.0096,-0.0515,-0.0893,0.0893,0.0096,-0.0515,0.0611,0.0834,-0.0059,0.0893,-0.0096,-0.0515,0.0611,-0.0834,-0.0059,-0.0834,0.0059,0.0611,-0.0096,0.0515,0.0893
,-0.0893,0.0096,-0.0515,-0.0611,0.0834,-0.0059,-0.0834,-0.0059,0.0611,-0.0096,-0.0515,0.0893,-0.0893,-0.0096,-0.0515,0.0456,0.093,0,-0.0456,0.093,0,-0.0834,0.0059,-0.0611,0.0515,0.0893,0.0096,0.0059,0.0611,0.0834,0.0456,-0.093,0,-0.0456,-0.093,0,0.0515,0.0893,-0.0096,0.0059,0.0611,-0.0834,-0.0834,-0.0059,-0.0611,-0.0515,0.0893,0.0096,-0.0059,0.0611,0.0834
,0.0515,-0.0893,0.0096,0.0059,-0.0611,0.0834,-0.0515,0.0893,-0.0096,-0.0059,0.0611,-0.0834,0.0515,-0.0893,-0.0096,0.0059,-0.0611,-0.0834,-0.0515,-0.0893,0.0096,-0.0059,-0.0611,0.0834,-0.0515,-0.0893,-0.0096,-0.0059,-0.0611,-0.0834,0,0.0456,0.093,0,-0.0456,0.093,0.0893,-0.0096,0.0515,0.0834,-0.0059,0.0611,0.0901,0,0.0557,0.0834,0.0059,0.0611,0.0901,0,0.0557
,0.0893,0.0096,0.0515,0.0901,0,0.0557,0.093,0,0.0456,0.0901,0,0.0557,-0.093,0,0.0456,-0.0893,0.0096,0.0515,-0.0901,0,0.0557,-0.0834,0.0059,0.0611,-0.0901,0,0.0557,-0.0834,-0.0059,0.0611,-0.0901,0,0.0557,-0.0893,-0.0096,0.0515,-0.0901,0,0.0557,0.093,0,-0.0456,0.0893,0.0096,-0.0515,0.0901,0,-0.0557,0.0834,0.0059,-0.0611
,0.0901,0,-0.0557,0.0834,-0.0059,-0.0611,0.0901,0,-0.0557,0.0893,-0.0096,-0.0515,0.0901,0,-0.0557,-0.0893,-0.0096,-0.0515,-0.0834,-0.0059,-0.0611,-0.0901,0,-0.0557,-0.0834,0.0059,-0.0611,-0.0901,0,-0.0557,-0.0893,0.0096,-0.0515,-0.0901,0,-0.0557,-0.093,0,-0.0456,-0.0901,0,-0.0557,0.0515,0.0893,0.0096,0.0456,0.093,0,0.0557,0.0901,0
,0.0515,0.0893,-0.0096,0.0557,0.0901,0,0.0611,0.0834,-0.0059,0.0557,0.0901,0,0.0611,0.0834,0.0059,0.0557,0.0901,0,0.0611,-0.0834,0.0059,0.0611,-0.0834,-0.0059,0.0557,-0.0901,0,0.0515,-0.0893,-0.0096,0.0557,-0.0901,0,0.0456,-0.093,0,0.0557,-0.0901,0,0.0515,-0.0893,0.0096,0.0557,-0.0901,0,-0.0611,0.0834,0.0059,-0.0611,0.0834,-0.0059
,-0.0557,0.0901,0,-0.0515,0.0893,-0.0096,-0.0557,0.0901,0,-0.0456,0.093,0,-0.0557,0.0901,0,-0.0515,0.0893,0.0096,-0.0557,0.0901,0,-0.0515,-0.0893,0.0096,-0.0456,-0.093,0,-0.0557,-0.0901,0,-0.0515,-0.0893,-0.0096,-0.0557,-0.0901,0,-0.0611,-0.0834,-0.0059,-0.0557,-0.0901,0,-0.0611,-0.0834,0.0059,-0.0557,-0.0901,0,0,0.0456,0.093
,-0.0096,0.0515,0.0893,0,0.0557,0.0901,-0.0059,0.0611,0.0834,0,0.0557,0.0901,0.0059,0.0611,0.0834,0,0.0557,0.0901,0.0096,0.0515,0.0893,0,0.0557,0.0901,0,0.0456,-0.093,0.0096,0.0515,-0.0893,0,0.0557,-0.0901,0.0059,0.0611,-0.0834,0,0.0557,-0.0901,-0.0059,0.0611,-0.0834,0,0.0557,-0.0901,-0.0096,0.0515,-0.0893,0,0.0557,-0.0901
,0.0096,-0.0515,0.0893,0.0059,-0.0611,0.0834,0,-0.0557,0.0901,-0.0059,-0.0611,0.0834,0,-0.0557,0.0901,-0.0096,-0.0515,0.0893,0,-0.0557,0.0901,0,-0.0456,0.093,0,-0.0557,0.0901,-0.0096,-0.0515,-0.0893,-0.0059,-0.0611,-0.0834,0,-0.0557,-0.0901,0.0059,-0.0611,-0.0834,0,-0.0557,-0.0901,0.0096,-0.0515,-0.0893,0,-0.0557,-0.0901,0,-0.0456,-0.093
,0,-0.0557,-0.0901,0,0.0456,-0.093,0,-0.0456,-0.093,0.093,0,0.0456,0.093,0,-0.0456,-0.093,0,0.0456,-0.093,0,-0.0456,0.0611,0.0834,0.0059,0.0893,-0.0096,0.0515,0.0611,-0.0834,0.0059,-0.0893,0.0096,0.0515,-0.0611,0.0834,0.0059,-0.0611,-0.0834,0.0059,0.0096,0.0515,0.0893,0.0096,0.0515,-0.0893,0.0096,-0.0515,0.0893,0.0834,-0.0059,-0.0611
,0.0096,-0.0515,-0.0893,0.0893,0.0096,-0.0515,0.0611,0.0834,-0.0059,0.0893,-0.0096,-0.0515,0.0611,-0.0834,-0.0059,-0.0096,0.0515,0.0893,-0.0611,0.0834,-0.0059,-0.0096,-0.0515,0.0893,-0.0893,-0.0096,-0.0515,-0.0611,-0.0834,-0.0059,0.0456,0.093,0,-0.0456,0.093,0,-0.0834,0.0059,-0.0611,-0.0096,0.0515,-0.0893,0.0515,0.0893,0.0096,0.0059,0.0611,0.0834,0.0456,-0.093,0
,-0.0456,-0.093,0,0.0059,0.0611,-0.0834,-0.0834,-0.0059,-0.0611,-0.0096,-0.0515,-0.0893,-0.0515,0.0893,0.0096,-0.0059,0.0611,0.0834,0.0515,-0.0893,0.0096,0.0059,-0.0611,0.0834,-0.0515,0.0893,-0.0096,-0.0059,0.0611,-0.0834,0.0059,-0.0611,-0.0834,-0.0515,-0.0893,0.0096,-0.0059,-0.0611,0.0834,-0.0059,-0.0611,-0.0834,0,0.0456,0.093,0,-0.0456,0.093]
,"normals":[0.505,0,0.863,0.275,-0.142,0.951,0.275,0.142,0.951,0.676,0.445,0.588,0.445,0.588,0.676,0.588,0.676,0.445,-0.676,0.445,-0.588,-0.445,0.588,-0.676,-0.588,0.676,-0.445,0.676,0.445,-0.588,0.588,0.676,-0.445,0.445,0.588,-0.676,0.505,0,-0.863,0.275,0.142,-0.951,0.275,-0.142,-0.951,-0.863,0.505,0,-0.951,0.275,0.142
,-0.951,0.275,-0.142,-0.505,0,-0.863,-0.275,-0.142,-0.951,-0.275,0.142,-0.951,0,0.863,-0.505,0.142,0.951,-0.275,-0.142,0.951,-0.275,-0.863,-0.505,0,-0.951,-0.275,-0.142,-0.951,-0.275,0.142,-0.676,-0.445,0.588,-0.445,-0.588,0.676,-0.588,-0.676,0.445,0.676,-0.445,-0.588,0.445,-0.588,-0.676,0.588,-0.676,-0.445,-0.676,-0.445,-0.588
,-0.588,-0.676,-0.445,-0.445,-0.588,-0.676,0.676,-0.445,0.588,0.588,-0.676,0.445,0.445,-0.588,0.676,0.863,0.505,0,0.951,0.275,-0.142,0.951,0.275,0.142,-0.676,0.445,0.588,-0.588,0.676,0.445,-0.445,0.588,0.676,-0.505,0,0.863,-0.275,0.142,0.951,-0.275,-0.142,0.951,0,-0.863,-0.505,-0.142,-0.951,-0.275,0.142,-0.951,-0.275
,0,0.863,0.505,-0.142,0.951,0.275,0.142,0.951,0.275,0,-0.863,0.505,0.142,-0.951,0.275,-0.142,-0.951,0.275,0.951,-0.275,0.142,0.851,0,0.526,0.991,0,0.137,0.851,0,0.526,0.844,-0.384,0.375,0.851,0,0.526,0.606,-0.237,0.759,0.851,0,0.526,0.606,0.237,0.759,0.851,0,0.526,0.844,0.384,0.375
,-0.851,0,0.526,-0.844,-0.384,0.375,-0.851,0,0.526,-0.991,0,0.137,-0.851,0,0.526,-0.844,0.384,0.375,-0.851,0,0.526,-0.606,0.237,0.759,-0.851,0,0.526,-0.606,-0.237,0.759,0.951,-0.275,-0.142,0.851,0,-0.526,0.844,-0.384,-0.375,0.851,0,-0.526,0.991,0,-0.137,0.851,0,-0.526,0.844,0.384,-0.375
,0.851,0,-0.526,0.606,0.237,-0.759,0.851,0,-0.526,0.606,-0.237,-0.759,-0.851,0,-0.526,-0.991,0,-0.137,-0.851,0,-0.526,-0.844,-0.384,-0.375,-0.851,0,-0.526,-0.606,-0.237,-0.759,-0.851,0,-0.526,-0.606,0.237,-0.759,-0.851,0,-0.526,-0.844,0.384,-0.375,0.526,0.851,0,0.759,0.606,0.237,0.526,0.851,0
,0.375,0.844,0.384,0.526,0.851,0,0.137,0.991,0,0.526,0.851,0,0.375,0.844,-0.384,0.526,0.851,0,0.759,0.606,-0.237,0.526,-0.851,0,0.375,-0.844,0.384,0.863,-0.505,0,0.526,-0.851,0,0.759,-0.606,0.237,0.526,-0.851,0,0.759,-0.606,-0.237,0.526,-0.851,0,0.375,-0.844,-0.384,0.526,-0.851,0
,0.137,-0.991,0,-0.526,0.851,0,-0.375,0.844,0.384,-0.526,0.851,0,-0.759,0.606,0.237,-0.526,0.851,0,-0.759,0.606,-0.237,-0.526,0.851,0,-0.375,0.844,-0.384,-0.526,0.851,0,-0.137,0.991,0,-0.526,-0.851,0,-0.759,-0.606,0.237,-0.526,-0.851,0,-0.375,-0.844,0.384,-0.526,-0.851,0,-0.137,-0.991,0
,-0.526,-0.851,0,-0.375,-0.844,-0.384,-0.526,-0.851,0,-0.759,-0.606,-0.237,0,0.526,0.851,0.384,0.375,0.844,0,0.526,0.851,0,0.137,0.991,0,0.526,0.851,-0.384,0.375,0.844,0,0.526,0.851,-0.237,0.759,0.606,0,0.526,0.851,0.237,0.759,0.606,0,0.526,-0.851,-0.384,0.375,-0.844,0,0.526,-0.851
,0,0.137,-0.991,0,0.526,-0.851,0.384,0.375,-0.844,0,0.526,-0.851,0.237,0.759,-0.606,0,0.526,-0.851,-0.237,0.759,-0.606,0,-0.526,0.851,0,-0.137,0.991,0,-0.526,0.851,0.384,-0.375,0.844,0,-0.526,0.851,0.237,-0.759,0.606,0,-0.526,0.851,-0.237,-0.759,0.606,0,-0.526,0.851,-0.384,-0.375,0.844
,0,-0.526,-0.851,0,-0.137,-0.991,0,-0.526,-0.851,-0.384,-0.375,-0.844,0,-0.526,-0.851,-0.237,-0.759,-0.606,0,-0.526,-0.851,0.237,-0.759,-0.606,0,-0.526,-0.851,0.384,-0.375,-0.844,0,0.137,-0.991,0,-0.137,-0.991,0.991,0,0.137,0.991,0,-0.137,-0.991,0,0.137,-0.991,0,-0.137,0.844,0.384,0.375
,0.844,-0.384,0.375,-0.844,0.384,0.375,-0.759,0.606,0.237,-0.844,-0.384,0.375,0.606,0.237,0.759,0.384,0.375,0.844,0.606,0.237,-0.759,0.606,-0.237,0.759,0.384,-0.375,0.844,0.606,-0.237,-0.759,0.384,-0.375,-0.844,0.844,0.384,-0.375,0.759,0.606,-0.237,0.844,-0.384,-0.375,0.759,-0.606,-0.237,-0.606,0.237,0.759,-0.384,0.375,0.844
,-0.844,0.384,-0.375,-0.759,0.606,-0.237,-0.606,-0.237,0.759,-0.384,-0.375,0.844,-0.844,-0.384,-0.375,0.137,0.991,0,-0.137,0.991,0,-0.606,0.237,-0.759,0.375,0.844,0.384,0.237,0.759,0.606,0.137,-0.991,0,-0.137,-0.991,0,0.375,0.844,-0.384,0.237,0.759,-0.606,-0.606,-0.237,-0.759,-0.375,0.844,0.384,-0.237,0.759,0.606
,0.375,-0.844,0.384,0.237,-0.759,0.606,-0.375,0.844,-0.384,-0.237,0.759,-0.606,0.375,-0.844,-0.384,0.237,-0.759,-0.606,-0.375,-0.844,0.384,-0.237,-0.759,0.606,-0.375,-0.844,-0.384,-0.237,-0.759,-0.606,0,0.137,0.991,0,-0.137,0.991,0.844,-0.384,0.375,0.606,-0.237,0.759,0.851,0,0.526,0.606,0.237,0.759,0.851,0,0.526
,0.844,0.384,0.375,0.851,0,0.526,0.991,0,0.137,0.851,0,0.526,-0.991,0,0.137,-0.844,0.384,0.375,-0.851,0,0.526,-0.606,0.237,0.759,-0.851,0,0.526,-0.606,-0.237,0.759,-0.851,0,0.526,-0.844,-0.384,0.375,-0.851,0,0.526,0.991,0,-0.137,0.844,0.384,-0.375,0.851,0,-0.526,0.606,0.237,-0.759
,0.851,0,-0.526,0.606,-0.237,-0.759,0.851,0,-0.526,0.844,-0.384,-0.375,0.851,0,-0.526,-0.844,-0.384,-0.375,-0.606,-0.237,-0.759,-0.851,0,-0.526,-0.606,0.237,-0.759,-0.851,0,-0.526,-0.844,0.384,-0.375,-0.851,0,-0.526,-0.991,0,-0.137,-0.851,0,-0.526,0.375,0.844,0.384,0.137,0.991,0,0.526,0.851,0
,0.375,0.844,-0.384,0.526,0.851,0,0.759,0.606,-0.237,0.526,0.851,0,0.759,0.606,0.237,0.526,0.851,0,0.759,-0.606,0.237,0.759,-0.606,-0.237,0.526,-0.851,0,0.375,-0.844,-0.384,0.526,-0.851,0,0.137,-0.991,0,0.526,-0.851,0,0.375,-0.844,0.384,0.526,-0.851,0,-0.759,0.606,0.237,-0.759,0.606,-0.237
,-0.526,0.851,0,-0.375,0.844,-0.384,-0.526,0.851,0,-0.137,0.991,0,-0.526,0.851,0,-0.375,0.844,0.384,-0.526,0.851,0,-0.375,-0.844,0.384,-0.137,-0.991,0,-0.526,-0.851,0,-0.375,-0.844,-0.384,-0.526,-0.851,0,-0.759,-0.606,-0.237,-0.526,-0.851,0,-0.759,-0.606,0.237,-0.526,-0.851,0,0,0.137,0.991
,-0.384,0.375,0.844,0,0.526,0.851,-0.237,0.759,0.606,0,0.526,0.851,0.237,0.759,0.606,0,0.526,0.851,0.384,0.375,0.844,0,0.526,0.851,0,0.137,-0.991,0.384,0.375,-0.844,0,0.526,-0.851,0.237,0.759,-0.606,0,0.526,-0.851,-0.237,0.759,-0.606,0,0.526,-0.851,-0.384,0.375,-0.844,0,0.526,-0.851
,0.384,-0.375,0.844,0.237,-0.759,0.606,0,-0.526,0.851,-0.237,-0.759,0.606,0,-0.526,0.851,-0.384,-0.375,0.844,0,-0.526,0.851,0,-0.137,0.991,0,-0.526,0.851,-0.384,-0.375,-0.844,-0.237,-0.759,-0.606,0,-0.526,-0.851,0.237,-0.759,-0.606,0,-0.526,-0.851,0.384,-0.375,-0.844,0,-0.526,-0.851,0,-0.137,-0.991
,0,-0.526,-0.851,0,0.137,-0.991,0,-0.137,-0.991,0.991,0,0.137,0.991,0,-0.137,-0.991,0,0.137,-0.991,0,-0.137,0.759,0.606,0.237,0.844,-0.384,0.375,0.759,-0.606,0.237,-0.844,0.384,0.375,-0.759,0.606,0.237,-0.759,-0.606,0.237,0.384,0.375,0.844,0.384,0.375,-0.844,0.384,-0.375,0.844,0.606,-0.237,-0.759
,0.384,-0.375,-0.844,0.844,0.384,-0.375,0.759,0.606,-0.237,0.844,-0.384,-0.375,0.759,-0.606,-0.237,-0.384,0.375,0.844,-0.759,0.606,-0.237,-0.384,-0.375,0.844,-0.844,-0.384,-0.375,-0.759,-0.606,-0.237,0.137,0.991,0,-0.137,0.991,0,-0.606,0.237,-0.759,-0.384,0.375,-0.844,0.375,0.844,0.384,0.237,0.759,0.606,0.137,-0.991,0
,-0.137,-0.991,0,0.237,0.759,-0.606,-0.606,-0.237,-0.759,-0.384,-0.375,-0.844,-0.375,0.844,0.384,-0.237,0.759,0.606,0.375,-0.844,0.384,0.237,-0.759,0.606,-0.375,0.844,-0.384,-0.237,0.759,-0.606,0.237,-0.759,-0.606,-0.375,-0.844,0.384,-0.237,-0.759,0.606,-0.237,-0.759,-0.606,0,0.137,0.991,0,-0.137,0.991]
,"tangents":[0.745,0.504,-0.437,1,0.856,0.486,-0.175,1,0.808,0.501,-0.309,1,-0.216,0.882,-0.42,1,-0.311,0.809,-0.499,1,-0.395,0.72,-0.57,1,0.5,-0.309,-0.809,1,0.57,-0.395,-0.72,1,0.42,-0.216,-0.882,1,0.721,-0.566,0.4,1,0.809,-0.498,0.312,1,0.882,-0.416,0.22,1,-0.745,-0.504
,-0.437,1,-0.81,-0.499,-0.309,1,-0.856,-0.486,-0.175,1,-0.437,-0.745,-0.504,1,-0.309,-0.81,-0.498,1,-0.175,-0.856,-0.486,1,-0.745,0.504,0.437,1,-0.856,0.486,0.175,1,-0.808,0.502,0.309,1,-0.504,-0.437,-0.745,1,-0.486,-0.175,-0.856,1,-0.502,-0.309,-0.808,1,-0.436,0.744,-0.506,1
,-0.175,0.855,-0.488,1,-0.309,0.807,-0.503,1,-0.498,-0.313,-0.809,1,-0.568,-0.398,-0.721,1,-0.417,-0.219,-0.882,1,-0.216,-0.882,0.42,1,-0.31,-0.809,0.499,1,-0.395,-0.72,0.57,1,-0.72,0.569,0.397,1,-0.809,0.499,0.31,1,-0.882,0.418,0.218,1,-0.211,-0.88,-0.424,1,-0.391,-0.719
,-0.575,1,-0.302,-0.809,-0.504,1,0.437,-0.745,0.504,1,0.309,-0.81,0.498,1,0.175,-0.856,0.486,1,0.498,-0.312,0.809,1,0.416,-0.22,0.882,1,0.567,-0.399,0.721,1,0.005,-1,0.003,1,-0.037,-0.99,0.137,1,0.045,-0.99,-0.135,1,0.504,0.437,-0.745,1,0.486,0.175,-0.856,1
,0.502,0.309,-0.808,1,-0.52,0.432,-0.737,1,-0.502,0.17,-0.848,1,-0.517,0.308,-0.798,1,-1,0.005,0.008,1,-0.99,-0.133,0.052,1,-0.99,0.139,-0.03,1,0.175,0.857,0.485,1,-0.204,0.922,0.33,1,-0.063,0.89,0.452,1,0.123,-0.972,-0.199,1,-0.21,-0.879,-0.428,1,0.45,0.517
,-0.728,1,0.744,0.507,-0.436,1,0.119,0.974,-0.193,1,-0.06,0.965,-0.254,1,-0.204,-0.921,0.33,1,0.176,-0.858,0.483,1,-0.311,0.807,-0.503,1,-0.526,0.729,-0.438,1,-0.308,-0.81,-0.499,1,-0.074,-0.841,-0.536,1,0.5,-0.312,0.808,1,0.313,-0.215,0.925,1,0.003,-1,0.005,1
,-0.133,-0.971,0.197,1,-0.499,-0.314,-0.808,1,-0.655,-0.393,-0.646,1,0.309,0.808,0.501,1,0.309,0.809,0.5,1,0.526,0.731,0.435,1,0.308,-0.81,0.499,1,0.074,-0.841,0.536,1,0.4,-0.65,0.646,1,0.534,-0.669,0.517,1,-0.45,-0.517,-0.728,1,-0.611,-0.472,-0.636,1,0.119,-0.974
,0.193,1,-0.06,-0.965,0.254,1,0.206,0.92,-0.333,1,0.063,0.888,-0.455,1,-0.398,0.653,0.644,1,-0.534,0.673,0.512,1,-0.45,0.517,0.728,1,-0.744,0.507,0.436,1,0.5,-0.31,-0.809,1,0.656,-0.39,-0.646,1,0.204,-0.921,-0.33,1,-0.176,-0.858,-0.483,1,-0.643,0.398,-0.654,1
,-0.398,0.721,-0.568,1,-0.513,0.317,-0.798,1,-0.45,0.528,-0.72,1,-0.331,0.204,-0.921,1,-0.453,0.063,-0.889,1,0.808,-0.499,0.313,1,0.925,-0.313,0.216,1,0.728,-0.45,0.517,1,0.635,-0.61,0.473,1,-0.639,-0.395,-0.66,1,-0.507,-0.533,-0.677,1,0.437,0.746,0.503,1,0.728,0.45
,0.516,1,0.436,0.744,0.506,1,-0.643,-0.398,0.654,1,-0.398,-0.72,0.568,1,0.501,0.31,-0.808,1,0.435,0.526,-0.731,1,-0.847,-0.523,0.096,1,-0.989,-0.137,0.049,1,0.19,0.117,0.975,1,0.418,-0.216,0.882,1,-0.728,-0.45,-0.517,1,-0.635,-0.61,-0.473,1,0.193,0.119,-0.974,1
,0.252,-0.062,-0.966,1,-0.501,-0.31,-0.808,1,-0.435,-0.526,-0.731,1,-0.345,-0.213,-0.914,1,-0.47,-0.065,-0.88,1,-0.19,0.118,-0.975,1,-0.25,-0.065,-0.966,1,-0.848,0.524,-0.073,1,-0.926,0.36,-0.113,1,0.331,-0.204,-0.921,1,0.453,-0.063,-0.889,1,-0.809,0.5,0.309,1,-0.925,0.314
,0.213,1,-0.727,0.449,-0.519,1,-0.435,0.743,-0.509,1,0.808,0.501,-0.31,1,0.731,0.436,-0.526,1,-0.08,-0.848,0.524,1,-0.033,-0.99,0.137,1,0.651,-0.646,0.399,1,0.671,-0.514,0.534,1,-0.533,0.72,-0.445,1,-0.522,0.427,-0.738,1,-0.31,0.809,-0.5,1,-0.39,0.646,-0.656,1
,-0.808,0.501,0.31,1,-0.731,0.435,0.526,1,-0.81,-0.499,-0.308,1,-0.841,-0.536,-0.074,1,0.975,-0.189,-0.117,1,0.883,-0.418,0.216,1,-0.517,-0.728,-0.45,1,-0.507,-0.436,-0.744,1,0.654,-0.643,-0.398,1,0.568,-0.398,-0.72,1,0.921,0.331,0.204,1,0.889,0.453,0.063,1,-0.301,-0.811
,-0.501,1,-0.204,-0.926,-0.318,1,-1,0.008,0.005,1,-0.971,-0.188,0.145,1,-0.651,-0.645,-0.399,1,-0.565,-0.4,-0.722,1,0.089,-0.847,-0.524,1,0.129,-0.927,-0.353,1,-0.921,0.331,-0.204,1,-0.889,0.453,-0.063,1,-0.974,0.192,-0.118,1,-0.882,0.42,0.215,1,0.517,0.728,-0.45,1
,0.507,0.436,-0.744,1,-0.31,-0.809,0.5,1,-0.39,-0.646,0.656,1,-0.921,-0.33,0.204,1,-0.858,-0.483,-0.176,1,-0.84,0.538,0.075,1,-0.887,-0.457,0.063,1,-0.063,-0.887,0.457,1,0.074,0.84,0.537,1,-0.075,0.838,-0.54,1,0.063,-0.887,-0.457,1,-0.214,0.881,-0.421,1,0.176,0.858
,0.483,1,-0.526,-0.732,-0.433,1,0.248,-0.067,0.966,1,-0.312,-0.216,-0.925,1,0.611,0.471,-0.636,1,-0.213,0.925,-0.314,1,0.722,-0.565,0.4,1,-0.057,-0.965,-0.257,1,0.857,0.484,-0.175,1,-0.744,-0.506,-0.437,1,-0.213,-0.925,0.314,1,0.526,-0.732,0.433,1,0.646,-0.655,0.392,1
,-0.214,-0.881,0.421,1,0.636,0.613,0.469,1,0.655,-0.391,0.646,1,-0.123,-0.927,0.355,1,0.314,-0.213,-0.925,1,-0.437,-0.744,-0.506,1,0.142,-0.971,-0.19,1,-0.673,-0.512,-0.534,1,-0.174,0.856,-0.486,1,-0.553,0.077,-0.83,1,-0.538,-0.075,-0.84,1,-0.612,0.47,0.636,1,-0.509,0.534
,-0.676,1,-0.486,0.633,-0.603,1,0.538,0.075,-0.84,1,-0.99,0.137,-0.028,1,-0.484,-0.175,-0.857,1,0.966,-0.248,0.068,1,-0.721,0.567,0.398,1,-0.499,0.166,-0.851,1,0.566,-0.4,0.721,1,-0.927,-0.349,0.138,1,-0.381,-0.647,-0.661,1,0.421,-0.214,-0.881,1,-0.47,-0.636,-0.612,1
,-0.51,-0.534,0.674,1,0.47,0.636,-0.612,1,-0.418,-0.216,-0.882,1,-0.971,0.2,-0.13,1,0.484,0.175,-0.857,1,-0.966,0.25,0.066,1,0.84,0.538,-0.075,1,0.044,-0.99,-0.137,1,0.176,0.858,0.483,1,-0.057,-0.965,-0.257,1,0.123,-0.972,-0.199,1,0.611,0.471,-0.636,1,0.45,0.517
,-0.728,1,-0.214,0.881,-0.421,1,0.119,0.974,-0.193,1,-0.063,-0.887,0.457,1,-0.204,-0.921,0.33,1,-0.075,0.838,-0.54,1,-0.526,-0.732,-0.433,1,-0.308,-0.81,-0.499,1,0.655,-0.391,0.646,1,0.5,-0.312,0.808,1,0.142,-0.971,-0.19,1,0.003,-1,0.005,1,-0.312,-0.216,-0.925,1
,-0.499,-0.314,-0.808,1,0.074,0.84,0.537,1,0.526,-0.732,0.433,1,0.308,-0.81,0.499,1,0.722,-0.565,0.4,1,0.4,-0.65,0.646,1,-0.744,-0.506,-0.437,1,-0.45,-0.517,-0.728,1,-0.214,-0.881,0.421,1,0.119,-0.974,0.193,1,-0.174,0.856,-0.486,1,-0.721,0.567,0.398,1,-0.398,0.653
,0.644,1,-0.612,0.47,0.636,1,-0.45,0.517,0.728,1,0.314,-0.213,-0.925,1,0.5,-0.31,-0.809,1,0.063,-0.887,-0.457,1,0.204,-0.921,-0.33,1,-0.509,0.534,-0.676,1,-0.553,0.077,-0.83,1,-0.513,0.317,-0.798,1,-0.484,-0.175,-0.857,1,-0.331,0.204,-0.921,1,0.646,-0.655,0.392,1
,0.808,-0.499,0.313,1,0.436,-0.744,0.506,1,0.728,-0.45,0.517,1,-0.394,-0.718,-0.574,1,0.636,0.613,0.469,1,0.728,0.45,0.516,1,-0.51,-0.534,0.674,1,-0.643,-0.398,0.654,1,0.538,0.075,-0.84,1,0.501,0.31,-0.808,1,-0.927,-0.349,0.138,1,-0.847,-0.523,0.096,1,0.248,-0.067
,0.966,1,-0.437,-0.744,-0.506,1,-0.728,-0.45,-0.517,1,0.421,-0.214,-0.881,1,0.193,0.119,-0.974,1,-0.538,-0.075,-0.84,1,-0.501,-0.31,-0.808,1,-0.499,0.166,-0.851,1,-0.345,-0.213,-0.914,1,-0.418,-0.216,-0.882,1,-0.99,0.137,-0.028,1,-0.848,0.524,-0.073,1,0.484,0.175,-0.857,1
,0.331,-0.204,-0.921,1,-0.646,0.657,0.389,1,-0.809,0.5,0.309,1,-0.635,0.61,-0.473,1,-0.727,0.449,-0.519,1,0.84,0.538,-0.075,1,-0.123,-0.927,0.355,1,-0.08,-0.848,0.524,1,0.566,-0.4,0.721,1,0.651,-0.646,0.399,1,-0.486,0.633,-0.603,1,-0.533,0.72,-0.445,1,-0.213,0.925
,-0.314,1,-0.31,0.809,-0.5,1,-0.84,0.538,0.075,1,-0.732,-0.433,-0.526,1,-0.81,-0.499,-0.308,1,0.966,-0.248,0.068,1,0.975,-0.189,-0.117,1,-0.47,-0.636,-0.612,1,-0.517,-0.728,-0.45,1,0.674,-0.51,-0.534,1,0.654,-0.643,-0.398,1,0.857,0.484,-0.175,1,-0.381,-0.647,-0.661,1
,-0.301,-0.811,-0.501,1,-0.971,0.2,-0.13,1,-1,0.008,0.005,1,-0.673,-0.512,-0.534,1,-0.651,-0.645,-0.399,1,0.044,-0.99,-0.137,1,0.089,-0.847,-0.524,1,-0.857,0.484,0.175,1,-0.966,0.25,0.066,1,-0.974,0.192,-0.118,1,0.47,0.636,-0.612,1,0.517,0.728,-0.45,1,-0.213,-0.925
,0.314,1,-0.31,-0.809,0.5,1,-0.887,-0.457,0.063,1,-0.921,-0.33,0.204,1,-0.84,0.538,0.075,1,-0.887,-0.457,0.063,1,-0.063,-0.887,0.457,1,0.074,0.84,0.537,1,-0.075,0.838,-0.54,1,0.063,-0.887,-0.457,1,0.436,-0.744,0.506,1,0.176,0.858,0.483,1,-0.394,-0.718,-0.574,1
,-0.526,-0.732,-0.433,1,0.248,-0.067,0.966,1,-0.635,0.61,-0.473,1,-0.213,0.925,-0.314,1,-0.732,-0.433,-0.526,1,0.857,0.484,-0.175,1,-0.744,-0.506,-0.437,1,-0.213,-0.925,0.314,1,0.526,-0.732,0.433,1,0.646,-0.655,0.392,1,-0.214,-0.881,0.421,1,0.636,0.613,0.469,1,-0.123,-0.927
,0.355,1,-0.437,-0.744,-0.506,1,-0.673,-0.512,-0.534,1,-0.174,0.856,-0.486,1,-0.646,0.657,0.389,1,-0.553,0.077,-0.83,1,-0.538,-0.075,-0.84,1,-0.612,0.47,0.636,1,0.674,-0.51,-0.534,1,-0.509,0.534,-0.676,1,-0.486,0.633,-0.603,1,0.538,0.075,-0.84,1,-0.99,0.137,-0.028,1
,0.966,-0.248,0.068,1,-0.721,0.567,0.398,1,-0.857,0.484,0.175,1,-0.499,0.166,-0.851,1,0.566,-0.4,0.721,1,-0.927,-0.349,0.138,1,-0.381,-0.647,-0.661,1,0.421,-0.214,-0.881,1,-0.47,-0.636,-0.612,1,0.47,0.636,-0.612,1,-0.418,-0.216,-0.882,1,-0.971,0.2,-0.13,1,-0.966,0.25
,0.066,1,0.84,0.538,-0.075,1,0.044,-0.99,-0.137,1]
,"uvs":[0.37,0.422,0.26,0.422,0.315,0.327,0.334,0.55,0.39,0.455,0.445,0.55,0.677,0.026,0.732,0.121,0.621,0.121,0.73,0.142,0.676,0.238,0.62,0.143,0.114,0.421,0.169,0.326,0.224,0.421,0.549,0.25,0.604,0.154,0.659,0.25,0.518,0.423,0.408,0.423,0.463,0.327,0.297,0.549,0.187,0.549,0.242,0.454,0.113,0.443
,0.224,0.443,0.168,0.538,0.241,0.411,0.186,0.315,0.297,0.316,0.768,0.121,0.823,0.025,0.878,0.121,0.805,0.015,0.75,0.11,0.695,0.015,0.335,0.316,0.445,0.317,0.389,0.412,0.474,0.121,0.529,0.026,0.584,0.121,0.602,0.111,0.547,0.016,0.657,0.015,0.315,0.539,0.261,0.444,0.371,0.444,0.803,0.248,0.693,0.248
,0.748,0.152,0.768,0.141,0.878,0.144,0.821,0.238,0.464,0.54,0.408,0.446,0.518,0.444,0.586,0.144,0.599,0.137,0.594,0.148,0.322,0.308,0.335,0.308,0.383,0.43,0.371,0.431,0.321,0.557,0.327,0.546,0.597,0.129,0.585,0.13,0.168,0.553,0.161,0.543,0.604,0.139,0.611,0.15,0.602,0.126,0.595,0.115,0.315,0.554
,0.308,0.544,0.241,0.426,0.234,0.415,0.531,0.24,0.531,0.255,0.524,0.244,0.529,0.011,0.537,0.021,0.743,0.135,0.738,0.146,0.101,0.429,0.106,0.417,0.755,0.128,0.761,0.117,0.237,0.436,0.231,0.447,0.818,0.007,0.813,0.019,0.531,0.43,0.518,0.431,0.677,0.01,0.684,0.021,0.672,0.257,0.659,0.258,0.458,0.558
,0.445,0.559,0.821,0.253,0.814,0.242,0.174,0.557,0.18,0.545,0.676,0.253,0.669,0.242,0.461,0.129,0.467,0.117,0.458,0.309,0.453,0.321,0.476,0.144,0.463,0.137,0.476,0.136,0.891,0.128,0.879,0.129,0.748,0.137,0.755,0.148,0.395,0.438,0.408,0.437,0.533,0.008,0.546,0.007,0.535,0.257,0.541,0.246,0.608,0.128
,0.614,0.117,0.242,0.439,0.249,0.449,0.891,0.136,0.886,0.148,0.31,0.308,0.304,0.32,0.531,0.437,0.526,0.448,0.68,0.255,0.685,0.244,0.75,0.125,0.743,0.115,0.1,0.435,0.113,0.434,0.315,0.312,0.323,0.322,0.248,0.436,0.26,0.435,0.67,0.008,0.664,0.019,0.755,0.134,0.768,0.133,0.39,0.439,0.397,0.45
,0.463,0.312,0.47,0.323,0.169,0.311,0.176,0.321,0.607,0.135,0.62,0.134,0.31,0.557,0.297,0.558,0.745,0.128,0.732,0.129,0.247,0.43,0.253,0.418,0.389,0.427,0.382,0.416,0.464,0.555,0.457,0.545,0.173,0.308,0.186,0.307,0.384,0.437,0.378,0.448,0.395,0.43,0.4,0.419,0.682,0.008,0.695,0.007,0.816,0.255
,0.803,0.256,0.823,0.01,0.831,0.021,0.237,0.429,0.224,0.43,0.456,0.323,0.231,0.417,0.592,0.117,0.538,0.244,0.176,0.543,0.666,0.246,0.334,0.559,0.586,0.136,0.596,0.15,0.539,0.02,0.248,0.415,0.378,0.418,0.382,0.45,0.731,0.134,0.327,0.32,0.26,0.431,0.113,0.43,0.816,0.021,0.522,0.021,0.683,0.242
,0.768,0.129,0.468,0.148,0.609,0.115,0.253,0.448,0.669,0.021,0.548,0.258,0.323,0.544,0.179,0.319,0.224,0.434,0.828,0.243,0.235,0.449,0.525,0.419,0.452,0.546,0.76,0.145,0.741,0.148,0.518,0.436,0.187,0.558,0.613,0.147,0.805,0.006,0.879,0.135,0.657,0.007,0.401,0.45,0.397,0.416,0.621,0.129,0.305,0.545
,0.886,0.117,0.811,0.244,0.297,0.307,0.472,0.545,0.693,0.256,0.687,0.019,0.308,0.322,0.371,0.436,0.586,0.136,0.327,0.32,0.322,0.308,0.378,0.418,0.383,0.43,0.334,0.559,0.321,0.557,0.592,0.117,0.597,0.129,0.176,0.543,0.596,0.15,0.604,0.139,0.609,0.115,0.602,0.126,0.323,0.544,0.315,0.554,0.248,0.415
,0.241,0.426,0.538,0.244,0.522,0.021,0.529,0.011,0.731,0.134,0.743,0.135,0.113,0.43,0.101,0.429,0.768,0.129,0.755,0.128,0.224,0.434,0.805,0.006,0.818,0.007,0.525,0.419,0.531,0.43,0.669,0.021,0.677,0.01,0.666,0.246,0.672,0.257,0.452,0.546,0.828,0.243,0.821,0.253,0.187,0.558,0.174,0.557,0.683,0.242
,0.676,0.253,0.474,0.13,0.461,0.129,0.446,0.308,0.468,0.148,0.463,0.137,0.886,0.117,0.891,0.128,0.741,0.148,0.748,0.137,0.401,0.45,0.395,0.438,0.539,0.02,0.548,0.258,0.535,0.257,0.621,0.129,0.608,0.128,0.235,0.449,0.242,0.439,0.879,0.135,0.891,0.136,0.297,0.307,0.518,0.436,0.531,0.437,0.693,0.256
,0.68,0.255,0.758,0.115,0.75,0.125,0.106,0.447,0.1,0.435,0.308,0.322,0.253,0.448,0.248,0.436,0.657,0.007,0.67,0.008,0.76,0.145,0.755,0.134,0.382,0.45,0.39,0.439,0.456,0.323,0.162,0.321,0.169,0.311,0.613,0.147,0.607,0.135,0.305,0.545,0.31,0.557,0.739,0.117,0.745,0.128,0.26,0.431,0.397,0.416
,0.389,0.427,0.472,0.545,0.464,0.555,0.179,0.319,0.173,0.308,0.371,0.436,0.384,0.437,0.408,0.431,0.687,0.019,0.682,0.008,0.811,0.244,0.816,0.255,0.816,0.021,0.823,0.01,0.231,0.417,0.237,0.429,0.456,0.323,0.231,0.417,0.592,0.117,0.538,0.244,0.176,0.543,0.666,0.246,0.474,0.13,0.586,0.136,0.446,0.308
,0.596,0.15,0.539,0.02,0.106,0.447,0.382,0.45,0.162,0.321,0.26,0.431,0.113,0.43,0.816,0.021,0.522,0.021,0.683,0.242,0.768,0.129,0.468,0.148,0.253,0.448,0.548,0.258,0.179,0.319,0.224,0.434,0.758,0.115,0.828,0.243,0.235,0.449,0.525,0.419,0.739,0.117,0.452,0.546,0.76,0.145,0.741,0.148,0.518,0.436
,0.613,0.147,0.805,0.006,0.408,0.431,0.879,0.135,0.657,0.007,0.401,0.45,0.397,0.416,0.621,0.129,0.305,0.545,0.811,0.244,0.297,0.307,0.472,0.545,0.687,0.019,0.308,0.322,0.371,0.436]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50
,51,52,53,54,55,56,57,58,59,36,60,61,0,62,63,3,64,65,41,66,67,26,68,69,16,70,71,42,72,73,45,74,75,27,76,77,78,79,80,40,81,82,9,83,84,12,85,86,30,87,88
,25,89,90,33,91,92,18,93,94,6,95,96,17,97,98,5,99,100,53,101,102,22,103,104,10,105,106,39,107,108,37,109,110,111,112,113,32,114,115,50,116,117,55,118,119,43,120,121,15,122,123
,8,124,125,23,126,127,52,128,129,29,130,131,56,132,133,49,134,135,34,136,137,24,138,139,2,140,141,46,142,143,44,144,145,51,146,147,4,148,149,20,150,151,13,152,153,11,154,155,21,156,157
,7,158,159,1,160,161,38,162,163,54,164,165,28,166,167,47,168,169,19,170,171,35,172,173,48,174,175,31,176,177,14,178,179,19,180,20,181,13,153,40,182,41,183,57,59,25,184,26,185,16,71
,3,100,186,67,39,41,111,187,57,61,37,36,15,188,16,189,42,73,27,131,190,69,24,26,0,141,191,192,3,65,9,155,193,86,13,12,36,163,194,195,0,63,14,196,12,197,30,88,39,198,40
,199,9,84,32,200,30,201,78,80,42,145,202,203,45,75,6,125,204,205,17,98,45,169,206,207,27,77,24,208,25,92,34,33,52,209,53,210,22,104,20,211,18,96,7,6,4,212,5,213,53,102
,49,214,50,215,55,119,22,157,216,217,10,106,35,218,33,94,19,18,51,219,52,220,43,121,54,221,55,222,37,110,7,223,8,224,23,127,32,177,225,226,50,117,28,227,29,228,56,133,49,175,229
,230,34,137,1,231,2,232,46,143,111,57,78,57,233,58,36,234,235,0,236,237,3,238,239,41,240,241,26,242,68,16,243,244,42,245,246,45,247,248,27,249,250,78,251,79,40,252,253,9,254,255
,12,256,257,30,258,259,25,260,89,33,261,262,18,263,264,6,265,266,17,267,268,5,269,99,53,270,271,22,272,273,10,274,275,39,276,277,37,278,109,111,279,280,32,281,282,50,283,284,55,285,286
,43,287,120,15,288,289,8,290,291,23,292,293,52,294,295,29,296,130,56,297,298,49,299,300,34,301,302,24,303,304,2,305,140,46,306,307,44,308,309,51,310,311,4,312,313,20,314,150,13,315,316
,11,317,318,21,319,320,7,321,322,1,323,160,38,324,325,54,326,327,28,328,329,47,330,331,19,332,170,35,333,334,48,335,336,31,337,338,14,339,340,19,171,341,342,14,13,40,82,343,344,78,57
,25,90,345,346,17,16,3,5,100,67,347,39,111,113,348,61,349,37,15,123,350,351,43,42,27,29,131,69,352,24,0,2,141,353,4,3,9,11,155,86,354,13,36,38,163,355,1,0,14,179,356
,357,31,30,39,108,358,359,10,9,32,115,360,361,111,78,42,44,145,362,46,45,6,8,125,363,15,17,45,47,169,364,28,27,24,139,365,92,366,34,52,129,367,368,23,22,20,151,369,96,370,7
,4,149,371,372,51,53,49,135,373,374,56,55,22,21,157,375,11,10,35,173,376,94,377,19,51,147,378,379,44,43,54,165,380,381,38,37,7,159,382,383,21,23,32,31,177,384,48,50,28,167,385
,386,54,56,49,48,175,387,35,34,1,161,388,389,47,46]
}
,{"name":"d100","id":"d100","billboardMode":0,"position":[-0.6,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false
,"positions":[-0.0562,-0.0133,0.0652,-0.0838,-0.0133,-0.0197,-0.0838,0.0037,0.0272,-0.0562,0.0133,-0.0652,-0.0838,0.0133,0.0197,-0.0838,-0.0037,-0.0272,0.0072,0.0133,0.0858,0.0794,0.0133,0.0333,0.0518,-0.0037,0.0713,-0.0794,0.0133,0.0333,-0.0072,0.0133,0.0858,-0.0518,-0.0037,0.0713,0.0446,0.0133,-0.0736,-0.0446,0.0133,-0.0736,0,-0.0037,-0.0881,-0.0794,-0.0133,-0.0333,-0.0072,-0.0133,-0.0858
,-0.0518,0.0037,-0.0713,0.0794,-0.0133,-0.0333,0.0072,-0.0133,-0.0858,0.0072,-0.0857,-0.0098,0.0838,-0.0133,-0.0197,0.0562,-0.0133,0.0652,0.0838,0.0037,0.0272,0.0446,-0.0133,0.0736,-0.0446,-0.0133,0.0736,0,0.0037,0.0881,0.0072,0.0857,0.0098,0,0.0915,0,0.0103,0.0868,0.0034,-0.0072,0.0857,0.0098,0,0.0915,0,0,0.0868,0.0109,-0.0116,0.0857,-0.0038
,0,0.0915,0,-0.0103,0.0868,0.0034,0,0.0857,-0.0122,0,0.0915,0,-0.0064,0.0868,-0.0088,0.0116,0.0857,-0.0038,0,0.0915,0,0.0064,0.0868,-0.0088,-0.0116,-0.0857,0.0038,0,-0.0915,0,-0.0103,-0.0868,-0.0034,0,-0.0857,0.0122,0,-0.0915,0,-0.0064,-0.0868,0.0088,0.0116,-0.0857,0.0038,0,-0.0915,0,0.0064,-0.0868,0.0088
,0,-0.0915,0,0.0103,-0.0868,-0.0034,-0.0072,-0.0857,-0.0098,0,-0.0915,0,0,-0.0868,-0.0109,0.0525,-0.0103,0.0722,0.0562,-0.008,0.0687,0.0525,-0.0103,0.0722,0.0511,-0.0148,0.0704,0.0525,-0.0103,0.0722,0.048,-0.008,0.0747,0.0849,0.0103,0.0276,0.0827,0.008,0.0322,0.0838,0.0133,0.0197,0.0849,0.0103,0.0276,0.0827,0.0148,0.0269,0.0849,0.0103,0.0276
,0.0859,0.008,0.0226,0,0.0103,0.0893,0,0.0148,0.087,0,0.0103,0.0893,0.0051,0.008,0.0886,0,0.0103,0.0893,-0.0051,0.008,0.0886,0.0525,0.0103,-0.0722,0.0511,0.0148,-0.0704,0.0518,0.0037,-0.0713,0.0525,0.0103,-0.0722,0.048,0.008,-0.0747,0.0562,0.0133,-0.0652,0.0525,0.0103,-0.0722,0.0562,0.008,-0.0687,0.0849,-0.0103,-0.0276,0.0827,-0.0148,-0.0269
,0.0838,-0.0037,-0.0272,0.0849,-0.0103,-0.0276,0.0859,-0.008,-0.0226,0.0849,-0.0103,-0.0276,0.0827,-0.008,-0.0322,-0.0525,0.0103,-0.0722,-0.0511,0.0148,-0.0704,-0.0525,0.0103,-0.0722,-0.0562,0.008,-0.0687,-0.0525,0.0103,-0.0722,-0.048,0.008,-0.0747,0,-0.0103,-0.0893,0,-0.0148,-0.087,0,-0.0103,-0.0893,0.0051,-0.008,-0.0886,0,-0.0103,-0.0893,-0.0051,-0.008,-0.0886
,-0.0849,-0.0103,-0.0276,-0.0827,-0.008,-0.0322,-0.0849,-0.0103,-0.0276,-0.0859,-0.008,-0.0226,-0.0849,-0.0103,-0.0276,-0.0827,-0.0148,-0.0269,-0.0849,0.0103,0.0276,-0.0859,0.008,0.0226,-0.0849,0.0103,0.0276,-0.0827,0.0148,0.0269,-0.0849,0.0103,0.0276,-0.0827,0.008,0.0322,-0.0525,-0.0103,0.0722,-0.0511,-0.0148,0.0704,-0.0525,-0.0103,0.0722,-0.0562,-0.008,0.0687,-0.0525,-0.0103,0.0722
,-0.048,-0.008,0.0747,-0.0064,-0.0868,0.0088,-0.0511,-0.0148,0.0704,0.0064,-0.0868,0.0088,0.0511,-0.0148,0.0704,0.0103,0.0868,0.0034,0.0827,0.0148,0.0269,0.048,-0.008,0.0747,0.0064,0.0868,-0.0088,0.0511,0.0148,-0.0704,0.0859,0.008,0.0226,0.0562,0.008,-0.0687,0.0827,-0.008,-0.0322,0.048,0.008,-0.0747,-0.0562,0.008,-0.0687,-0.0103,0.0868,0.0034,-0.0827,0.0148,0.0269
,-0.0051,0.008,0.0886,-0.048,-0.008,0.0747,0,0.0868,0.0109,0,0.0148,0.087,0.0562,-0.008,0.0687,0.0827,0.008,0.0322,-0.048,0.008,-0.0747,-0.0051,-0.008,-0.0886,-0.0064,0.0868,-0.0088,-0.0511,0.0148,-0.0704,0.0103,-0.0868,-0.0034,0.0827,-0.0148,-0.0269,-0.0827,0.008,0.0322,0,-0.0868,-0.0109,0,-0.0148,-0.087,-0.0103,-0.0868,-0.0034,-0.0827,-0.0148,-0.0269
,-0.0859,-0.008,-0.0226,-0.0859,0.008,0.0226,0,0.0868,0.0109,-0.0103,0.0868,0.0034,0,0.0915,0,-0.0064,0.0868,-0.0088,0,0.0915,0,0.0064,0.0868,-0.0088,0,0.0915,0,0.0103,0.0868,0.0034,0,0.0915,0,-0.0064,-0.0868,0.0088,0.0064,-0.0868,0.0088,0,-0.0915,0,0.0103,-0.0868,-0.0034,0,-0.0915,0,0,-0.0868,-0.0109
,0,-0.0915,0,-0.0103,-0.0868,-0.0034,0,-0.0915,0,0.0511,-0.0148,0.0704,0.048,-0.008,0.0747,0.0525,-0.0103,0.0722,0.0562,-0.008,0.0687,0.0525,-0.0103,0.0722,0.0827,0.0148,0.0269,0.0859,0.008,0.0226,0.0849,0.0103,0.0276,0.0827,0.008,0.0322,0.0849,0.0103,0.0276,0.0051,0.008,0.0886,-0.0051,0.008,0.0886,0,0.0103,0.0893,0,0.0148,0.087
,0,0.0103,0.0893,0.048,0.008,-0.0747,0.0562,0.008,-0.0687,0.0525,0.0103,-0.0722,0.0511,0.0148,-0.0704,0.0525,0.0103,-0.0722,0.0859,-0.008,-0.0226,0.0827,-0.008,-0.0322,0.0849,-0.0103,-0.0276,0.0827,-0.0148,-0.0269,0.0849,-0.0103,-0.0276,-0.0562,0.008,-0.0687,-0.048,0.008,-0.0747,-0.0525,0.0103,-0.0722,-0.0511,0.0148,-0.0704,-0.0525,0.0103,-0.0722,0.0051,-0.008,-0.0886
,-0.0051,-0.008,-0.0886,0,-0.0103,-0.0893,0,-0.0148,-0.087,0,-0.0103,-0.0893,-0.0859,-0.008,-0.0226,-0.0827,-0.0148,-0.0269,-0.0849,-0.0103,-0.0276,-0.0827,-0.008,-0.0322,-0.0849,-0.0103,-0.0276,-0.0827,0.0148,0.0269,-0.0827,0.008,0.0322,-0.0849,0.0103,0.0276,-0.0859,0.008,0.0226,-0.0849,0.0103,0.0276,-0.0562,-0.008,0.0687,-0.048,-0.008,0.0747,-0.0525,-0.0103,0.0722
,-0.0511,-0.0148,0.0704,-0.0525,-0.0103,0.0722,-0.0511,-0.0148,0.0704,0.0511,-0.0148,0.0704,0.0827,0.0148,0.0269,0.0051,0.008,0.0886,0.0511,0.0148,-0.0704,0.0859,-0.008,-0.0226,0.0562,0.008,-0.0687,0.0827,-0.008,-0.0322,0.0051,-0.008,-0.0886,-0.0827,-0.008,-0.0322,-0.0827,0.0148,0.0269,-0.0051,0.008,0.0886,-0.048,-0.008,0.0747,0,0.0148,0.087,0.0562,-0.008,0.0687
,0.0827,0.008,0.0322,-0.048,0.008,-0.0747,-0.0051,-0.008,-0.0886,-0.0511,0.0148,-0.0704,0.0827,-0.0148,-0.0269,-0.0562,-0.008,0.0687,0,-0.0148,-0.087,-0.0827,-0.0148,-0.0269,-0.0859,-0.008,-0.0226,-0.0859,0.008,0.0226]
,"normals":[-0.739,-0.526,0.42,-0.845,-0.526,0.095,-0.868,-0.41,0.282,-0.739,0.526,-0.42,-0.845,0.526,-0.095,-0.868,0.41,-0.282,0.351,0.526,0.774,0.628,0.526,0.573,0.536,0.41,0.738,-0.628,0.526,0.573,-0.351,0.526,0.774,-0.536,0.41,0.738,0.171,0.526,-0.833,-0.171,0.526,-0.833,0,0.41,-0.912,-0.628,-0.526,-0.573,-0.351,-0.526,-0.774
,-0.536,-0.41,-0.738,0.628,-0.526,-0.573,0.351,-0.526,-0.774,0.361,-0.789,-0.497,0.845,-0.526,0.095,0.739,-0.526,0.42,0.868,-0.41,0.282,0.171,-0.526,0.833,-0.171,-0.526,0.833,0,-0.41,0.912,0.361,0.789,0.497,0,1,0,0.529,0.831,0.172,-0.361,0.789,0.497,0,1,0,0,0.831,0.556,-0.585,0.789,-0.19
,0,1,0,-0.529,0.831,0.172,0,0.789,-0.615,0,1,0,-0.327,0.831,-0.45,0.585,0.789,-0.19,0,1,0,0.327,0.831,-0.45,-0.585,-0.789,0.19,0,-1,0,-0.529,-0.831,-0.172,0,-0.789,0.615,0,-1,0,-0.327,-0.831,0.45,0.585,-0.789,0.19,0,-1,0,0.327,-0.831,0.45
,0,-1,0,0.529,-0.831,-0.172,-0.361,-0.789,-0.497,0,-1,0,0,-0.831,-0.556,0.575,-0.203,0.792,0.766,-0.025,0.643,0.575,-0.203,0.792,0.47,-0.602,0.646,0.575,-0.203,0.792,0.375,-0.025,0.927,0.931,0.203,0.303,0.848,0.025,0.529,0.845,0.526,-0.095,0.931,0.203,0.303,0.76,0.602,0.247,0.931,0.203,0.303
,0.997,0.025,0.07,0,0.203,0.979,0,0.602,0.799,0,0.203,0.979,0.241,0.025,0.97,0,0.203,0.979,-0.241,0.025,0.97,0.575,0.203,-0.792,0.47,0.602,-0.646,0.536,-0.41,-0.738,0.575,0.203,-0.792,0.375,0.025,-0.927,0.739,0.526,-0.42,0.575,0.203,-0.792,0.766,0.025,-0.643,0.931,-0.203,-0.303,0.76,-0.602,-0.247
,0.868,0.41,-0.282,0.931,-0.203,-0.303,0.997,-0.025,-0.07,0.931,-0.203,-0.303,0.848,-0.025,-0.529,-0.575,0.203,-0.792,-0.47,0.602,-0.646,-0.575,0.203,-0.792,-0.766,0.025,-0.643,-0.575,0.203,-0.792,-0.375,0.025,-0.927,0,-0.203,-0.979,0,-0.602,-0.799,0,-0.203,-0.979,0.241,-0.025,-0.97,0,-0.203,-0.979,-0.241,-0.025,-0.97
,-0.931,-0.203,-0.303,-0.848,-0.025,-0.529,-0.931,-0.203,-0.303,-0.997,-0.025,-0.07,-0.931,-0.203,-0.303,-0.76,-0.602,-0.247,-0.931,0.203,0.303,-0.997,0.025,0.07,-0.931,0.203,0.303,-0.76,0.602,0.247,-0.931,0.203,0.303,-0.848,0.025,0.529,-0.575,-0.203,0.792,-0.47,-0.602,0.646,-0.575,-0.203,0.792,-0.766,-0.025,0.643,-0.575,-0.203,0.792
,-0.375,-0.025,0.927,-0.327,-0.831,0.45,-0.47,-0.602,0.646,0.327,-0.831,0.45,0.47,-0.602,0.646,0.529,0.831,0.172,0.76,0.602,0.247,0.375,-0.025,0.927,0.327,0.831,-0.45,0.47,0.602,-0.646,0.997,0.025,0.07,0.766,0.025,-0.643,0.848,-0.025,-0.529,0.375,0.025,-0.927,-0.766,0.025,-0.643,-0.529,0.831,0.172,-0.76,0.602,0.247
,-0.241,0.025,0.97,-0.375,-0.025,0.927,0,0.831,0.556,0,0.602,0.799,0.766,-0.025,0.643,0.848,0.025,0.529,-0.375,0.025,-0.927,-0.241,-0.025,-0.97,-0.327,0.831,-0.45,-0.47,0.602,-0.646,0.529,-0.831,-0.172,0.76,-0.602,-0.247,-0.848,0.025,0.529,0,-0.831,-0.556,0,-0.602,-0.799,-0.529,-0.831,-0.172,-0.76,-0.602,-0.247
,-0.997,-0.025,-0.07,-0.997,0.025,0.07,0,0.831,0.556,-0.529,0.831,0.172,0,1,0,-0.327,0.831,-0.45,0,1,0,0.327,0.831,-0.45,0,1,0,0.529,0.831,0.172,0,1,0,-0.327,-0.831,0.45,0.327,-0.831,0.45,0,-1,0,0.529,-0.831,-0.172,0,-1,0,0,-0.831,-0.556
,0,-1,0,-0.529,-0.831,-0.172,0,-1,0,0.47,-0.602,0.646,0.375,-0.025,0.927,0.575,-0.203,0.792,0.766,-0.025,0.643,0.575,-0.203,0.792,0.76,0.602,0.247,0.997,0.025,0.07,0.931,0.203,0.303,0.848,0.025,0.529,0.931,0.203,0.303,0.241,0.025,0.97,-0.241,0.025,0.97,0,0.203,0.979,0,0.602,0.799
,0,0.203,0.979,0.375,0.025,-0.927,0.766,0.025,-0.643,0.575,0.203,-0.792,0.47,0.602,-0.646,0.575,0.203,-0.792,0.997,-0.025,-0.07,0.848,-0.025,-0.529,0.931,-0.203,-0.303,0.76,-0.602,-0.247,0.931,-0.203,-0.303,-0.766,0.025,-0.643,-0.375,0.025,-0.927,-0.575,0.203,-0.792,-0.47,0.602,-0.646,-0.575,0.203,-0.792,0.241,-0.025,-0.97
,-0.241,-0.025,-0.97,0,-0.203,-0.979,0,-0.602,-0.799,0,-0.203,-0.979,-0.997,-0.025,-0.07,-0.76,-0.602,-0.247,-0.931,-0.203,-0.303,-0.848,-0.025,-0.529,-0.931,-0.203,-0.303,-0.76,0.602,0.247,-0.848,0.025,0.529,-0.931,0.203,0.303,-0.997,0.025,0.07,-0.931,0.203,0.303,-0.766,-0.025,0.643,-0.375,-0.025,0.927,-0.575,-0.203,0.792
,-0.47,-0.602,0.646,-0.575,-0.203,0.792,-0.47,-0.602,0.646,0.47,-0.602,0.646,0.76,0.602,0.247,0.241,0.025,0.97,0.47,0.602,-0.646,0.997,-0.025,-0.07,0.766,0.025,-0.643,0.848,-0.025,-0.529,0.241,-0.025,-0.97,-0.848,-0.025,-0.529,-0.76,0.602,0.247,-0.241,0.025,0.97,-0.375,-0.025,0.927,0,0.602,0.799,0.766,-0.025,0.643
,0.848,0.025,0.529,-0.375,0.025,-0.927,-0.241,-0.025,-0.97,-0.47,0.602,-0.646,0.76,-0.602,-0.247,-0.766,-0.025,0.643,0,-0.602,-0.799,-0.76,-0.602,-0.247,-0.997,-0.025,-0.07,-0.997,0.025,0.07]
,"tangents":[-0.214,0.775,0.594,1,-0.338,0.662,0.669,1,-0.164,0.771,0.616,1,-0.615,-0.273,0.74,1,-0.375,-0.458,0.806,1,-0.445,-0.385,0.809,1,-0.931,0.284,0.229,1,-0.777,0.468,0.421,1,-0.833,0.396,0.386,1,0.501,-0.289,0.815,1,0.636,-0.473,0.61,1,0.62,-0.402,0.674,1,-0.879,0.463
,0.112,1,-0.89,0.279,0.359,1,-0.903,0.391,0.176,1,-0.515,-0.272,0.813,1,-0.651,-0.457,0.606,1,-0.633,-0.384,0.673,1,0.647,0.762,0.009,1,0.76,0.644,-0.093,1,0.837,0.51,-0.2,1,-0.532,-0.807,0.257,1,-0.653,-0.713,0.256,1,-0.486,-0.817,0.31,1,-0.892,0.277,0.358,1
,-0.88,0.461,0.111,1,-0.905,0.389,0.175,1,-0.93,0.27,0.248,1,-0.979,0,0.206,1,-0.829,0.461,0.317,1,0.518,-0.274,0.81,1,0.493,0,0.87,1,0.552,-0.463,0.693,1,-0.6,-0.262,0.756,1,-0.661,0,0.751,1,-0.474,-0.457,0.752,1,-0.901,0.267,0.342,1,-0.915,0
,0.403,1,-0.845,-0.044,0.533,1,0.601,-0.263,0.755,1,0.662,0,0.749,1,0.765,0.047,0.643,1,-0.472,0.521,0.711,1,-0.612,0,0.791,1,-0.647,0.263,0.716,1,-0.902,0.265,0.34,1,-0.916,0,0.401,1,-0.86,0.459,0.223,1,-0.81,-0.552,0.2,1,-0.984,0,0.176,1
,-0.944,-0.313,0.107,1,0.953,0,-0.303,1,0.812,0.554,-0.182,1,-0.535,-0.261,0.803,1,-0.511,0,0.86,1,-0.57,-0.457,0.683,1,-0.632,-0.725,0.273,1,-0.401,-0.8,0.446,1,-0.772,0.183,0.608,1,-0.781,0.059,0.622,1,-0.681,0.416,0.602,1,-0.859,0.367,0.357,1,-0.358,0.662
,0.658,1,-0.446,0.574,0.687,1,0.376,-0.459,0.805,1,-0.101,-0.653,0.75,1,0.222,-0.597,0.771,1,0.032,-0.873,0.488,1,-0.004,-0.925,0.381,1,-0.981,0.191,-0.04,1,-0.997,0.066,-0.05,1,-0.909,0.409,-0.085,1,-0.908,0.359,0.217,1,0.732,-0.668,0.139,1,0.787,-0.579,0.211,1
,-0.68,0.658,-0.325,1,-0.799,0.6,-0.022,1,0.655,0.753,0.058,1,0.366,0.802,0.472,1,0.581,0.773,0.256,1,0.615,-0.274,0.739,1,0.817,-0.18,0.547,1,0.623,-0.278,0.731,1,-0.147,-0.969,0.198,1,-0.552,-0.797,0.243,1,0.445,-0.386,0.808,1,0.201,-0.406,0.891,1,0.05,-0.474
,0.879,1,0.272,0.94,0.205,1,0.234,0.914,0.331,1,-0.817,-0.178,0.548,1,-0.831,-0.055,0.553,1,-0.786,-0.403,0.468,1,-0.608,-0.354,0.711,1,-0.772,0.186,0.608,1,-0.886,0.283,0.366,1,0.763,0.633,-0.132,1,0.819,0.459,-0.346,1,-0.908,0.411,-0.085,1,-0.849,0.48,-0.224,1
,-0.747,-0.651,0.135,1,-0.8,-0.561,0.214,1,-0.201,-0.405,0.892,1,-0.488,-0.355,0.798,1,-0.359,0.657,0.663,1,-0.066,0.737,0.673,1,-0.269,-0.177,0.947,1,-0.27,-0.054,0.961,1,0.102,-0.652,0.752,1,0.044,-0.562,0.826,1,0.263,-0.198,0.944,1,0.256,-0.072,0.964,1,0.331,0.821
,0.465,1,0.271,0.879,0.393,1,0.082,0.949,0.303,1,-0.22,0.789,0.574,1,0.781,-0.422,0.459,1,0.604,-0.373,0.704,1,-0.681,0.655,-0.326,1,-0.769,0.566,-0.296,1,-0.453,0.555,0.698,1,-0.801,0.599,-0.024,1,-0.846,-0.045,0.531,1,-0.834,-0.543,0.1,1,0.476,-0.458,0.751,1
,-0.635,0.604,0.483,1,-0.887,0.281,0.366,1,-0.859,0.459,0.225,1,0.832,-0.056,0.552,1,-0.044,-0.564,0.825,1,0.31,0.861,0.403,1,0.487,-0.356,0.797,1,-0.768,0.569,-0.295,1,-0.623,-0.276,0.732,1,0.36,0.037,0.932,1,-0.221,-0.596,0.772,1,-0.85,0.477,-0.224,1,0.812,-0.491
,0.315,1,-0.997,-0.04,0.06,1,0.65,-0.607,0.457,1,-0.553,0.485,0.678,1,-0.259,-0.852,0.454,1,-0.822,-0.472,0.32,1,-0.907,0.362,0.216,1,-0.764,0.048,0.644,1,-0.78,0.061,0.623,1,-0.807,-0.555,0.202,1,0.621,0.784,0.001,1,0.5,-0.295,0.814,1,0.897,0.246,-0.368,1
,-0.667,-0.595,0.448,1,-0.377,0.049,0.925,1,-0.591,0.481,0.647,1,-0.05,-0.473,0.88,1,0.062,0.794,0.604,1,-0.997,-0.04,0.06,1,0.36,0.037,0.932,1,0.493,0,0.87,1,-0.764,0.048,0.644,1,-0.661,0,0.751,1,-0.859,0.459,0.225,1,-0.915,0,0.403,1,0.476,-0.458
,0.751,1,0.662,0,0.749,1,-0.453,0.555,0.698,1,-0.846,-0.045,0.531,1,-0.916,0,0.401,1,-0.807,-0.555,0.202,1,-0.984,0,0.176,1,0.897,0.246,-0.368,1,0.953,0,-0.303,1,-0.377,0.049,0.925,1,-0.511,0,0.86,1,-0.834,-0.543,0.1,1,-0.887,0.281,0.366,1
,-0.772,0.183,0.608,1,-0.553,0.485,0.678,1,-0.681,0.416,0.602,1,-0.635,0.604,0.483,1,-0.044,-0.564,0.825,1,-0.101,-0.653,0.75,1,-0.259,-0.852,0.454,1,0.032,-0.873,0.488,1,-0.931,0.289,0.224,1,-0.85,0.477,-0.224,1,-0.909,0.409,-0.085,1,0.65,-0.607,0.457,1,0.732,-0.668
,0.139,1,-0.768,0.569,-0.295,1,0.31,0.861,0.403,1,0.366,0.802,0.472,1,0.832,-0.056,0.552,1,0.817,-0.18,0.547,1,-0.005,-0.963,0.271,1,0.487,-0.356,0.797,1,0.201,-0.406,0.891,1,0.621,0.784,0.001,1,0.272,0.94,0.205,1,-0.623,-0.276,0.732,1,-0.822,-0.472,0.32,1
,-0.786,-0.403,0.468,1,-0.78,0.061,0.623,1,-0.772,0.186,0.608,1,0.684,0.714,0.152,1,-0.907,0.362,0.216,1,-0.908,0.411,-0.085,1,-0.667,-0.595,0.448,1,-0.747,-0.651,0.135,1,-0.05,-0.473,0.88,1,-0.591,0.481,0.647,1,-0.359,0.657,0.663,1,-0.503,-0.275,0.819,1,-0.269,-0.177
,0.947,1,-0.221,-0.596,0.772,1,0.5,-0.295,0.814,1,0.263,-0.198,0.944,1,0.062,0.794,0.604,1,0.331,0.821,0.465,1,0.221,0.928,0.299,1,0.812,-0.491,0.315,1,0.781,-0.422,0.459,1,-0.801,0.599,-0.024,1,-0.681,0.655,-0.326,1,-0.801,0.599,-0.024,1,-0.834,-0.543,0.1,1
,-0.635,0.604,0.483,1,-0.931,0.289,0.224,1,0.832,-0.056,0.552,1,-0.005,-0.963,0.271,1,0.31,0.861,0.403,1,0.487,-0.356,0.797,1,0.684,0.714,0.152,1,-0.503,-0.275,0.819,1,-0.221,-0.596,0.772,1,-0.85,0.477,-0.224,1,0.812,-0.491,0.315,1,0.65,-0.607,0.457,1,-0.553,0.485
,0.678,1,-0.259,-0.852,0.454,1,-0.822,-0.472,0.32,1,-0.907,0.362,0.216,1,-0.78,0.061,0.623,1,0.621,0.784,0.001,1,0.221,0.928,0.299,1,-0.667,-0.595,0.448,1,-0.591,0.481,0.647,1,-0.05,-0.473,0.88,1,0.062,0.794,0.604,1]
,"uvs":[0.952,0.236,0.9,0.152,0.947,0.181,0.589,0.749,0.678,0.707,0.645,0.75,0.45,0.572,0.362,0.616,0.395,0.572,0.359,0.752,0.447,0.707,0.414,0.752,0.481,0.706,0.569,0.749,0.514,0.75,0.686,0.572,0.597,0.614,0.631,0.57,0.952,0.029,0.898,0.111,0.839,0.013,0.057,0.773,0.1,0.861,0.056,0.828,0.016,0.935
,0.105,0.892,0.071,0.936,0.452,0.686,0.458,0.699,0.447,0.693,0.356,0.637,0.35,0.624,0.361,0.631,0.589,0.635,0.583,0.622,0.594,0.629,0.57,0.635,0.577,0.622,0.578,0.635,0.476,0.685,0.469,0.699,0.468,0.686,0.838,0.248,0.826,0.256,0.832,0.244,0.016,0.821,0.009,0.808,0.02,0.815,0.171,0.772,0.184,0.766
,0.177,0.777,0.827,0.005,0.84,0.005,0.686,0.686,0.693,0.699,0.682,0.692,0.102,0.871,0.096,0.868,0.009,0.941,0.008,0.935,0.392,0.565,0.398,0.565,0.353,0.618,0.356,0.613,0.565,0.614,0.574,0.616,0.57,0.62,0.049,0.831,0.049,0.825,0.458,0.566,0.459,0.572,0.075,0.943,0.068,0.943,0.456,0.705,0.453,0.71
,0.472,0.704,0.476,0.7,0.946,0.084,0.952,0.088,0.947,0.091,0.476,0.571,0.468,0.566,0.474,0.564,0.051,0.765,0.057,0.764,0.531,0.57,0.534,0.564,0.538,0.569,0.959,0.022,0.96,0.029,0.582,0.755,0.581,0.749,0.628,0.564,0.634,0.564,0.577,0.755,0.571,0.756,0.894,0.12,0.891,0.116,0.511,0.757,0.507,0.752
,0.588,0.617,0.591,0.611,0.648,0.757,0.641,0.757,0.897,0.143,0.903,0.145,0.694,0.566,0.695,0.572,0.688,0.704,0.685,0.71,0.351,0.757,0.351,0.752,0.954,0.177,0.954,0.183,0.958,0.243,0.953,0.244,0.417,0.758,0.411,0.758,0.114,0.89,0.111,0.896,0.839,0.256,0.11,0.886,0.008,0.821,0.106,0.867,0.48,0.692
,0.357,0.622,0.015,0.942,0.566,0.629,0.468,0.571,0.571,0.611,0.953,0.082,0.528,0.564,0.474,0.709,0.588,0.756,0.349,0.637,0.684,0.7,0.078,0.938,0.421,0.753,0.46,0.686,0.452,0.701,0.388,0.57,0.054,0.835,0.624,0.569,0.517,0.757,0.581,0.635,0.578,0.75,0.171,0.764,0.954,0.021,0.358,0.759,0.832,0.017
,0.592,0.621,0.694,0.686,0.893,0.147,0.652,0.752,0.948,0.174,0.46,0.686,0.349,0.637,0.35,0.624,0.581,0.635,0.583,0.622,0.566,0.629,0.577,0.622,0.48,0.692,0.469,0.699,0.839,0.256,0.008,0.821,0.009,0.808,0.171,0.764,0.184,0.766,0.832,0.017,0.827,0.005,0.694,0.686,0.693,0.699,0.106,0.867,0.015,0.942
,0.009,0.941,0.388,0.57,0.392,0.565,0.357,0.622,0.571,0.611,0.574,0.616,0.054,0.835,0.049,0.831,0.452,0.565,0.078,0.938,0.075,0.943,0.452,0.701,0.456,0.705,0.474,0.709,0.953,0.082,0.952,0.088,0.468,0.571,0.468,0.566,0.05,0.771,0.528,0.564,0.534,0.564,0.954,0.021,0.959,0.022,0.588,0.756,0.624,0.569
,0.628,0.564,0.578,0.75,0.577,0.755,0.9,0.118,0.517,0.757,0.511,0.757,0.592,0.621,0.588,0.617,0.652,0.752,0.893,0.147,0.897,0.143,0.688,0.565,0.694,0.566,0.684,0.7,0.358,0.759,0.351,0.757,0.948,0.174,0.954,0.177,0.959,0.236,0.421,0.753,0.417,0.758,0.11,0.886,0.114,0.89,0.11,0.886,0.106,0.867
,0.357,0.622,0.452,0.565,0.468,0.571,0.05,0.771,0.953,0.082,0.528,0.564,0.9,0.118,0.688,0.565,0.684,0.7,0.078,0.938,0.421,0.753,0.452,0.701,0.388,0.57,0.054,0.835,0.624,0.569,0.517,0.757,0.578,0.75,0.954,0.021,0.959,0.236,0.592,0.621,0.893,0.147,0.652,0.752,0.948,0.174]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50
,20,51,52,53,54,55,22,56,57,24,58,59,8,60,61,7,62,63,64,65,66,23,67,68,6,69,70,26,71,72,10,73,74,12,75,76,77,78,79,80,81,82,21,83,84,85,86,87,18,88,89
,3,90,91,17,92,93,13,94,95,19,96,97,14,98,99,16,100,101,5,102,103,1,104,105,15,106,107,4,108,109,9,110,111,2,112,113,0,114,115,11,116,117,25,118,119,42,115,120,121,45,47
,45,59,122,123,48,50,39,66,124,125,27,29,24,72,126,61,6,8,36,76,127,128,39,41,64,87,129,68,21,23,18,130,77,131,80,82,12,99,132,79,19,77,3,103,133,93,15,17,30,111,134
,135,33,35,25,136,26,137,10,74,27,70,138,139,30,32,7,140,8,141,22,57,16,142,17,143,13,95,33,91,144,145,36,38,48,84,146,147,20,52,9,117,148,113,0,2,20,97,149,150,53,55
,53,107,151,152,42,44,4,153,5,154,1,105,64,80,85,0,42,1,3,33,4,6,27,7,9,30,10,12,36,13,15,53,16,18,77,19,21,48,22,24,45,25,27,155,28,30,156,157,33,158,159
,36,160,161,39,162,163,42,164,43,45,165,166,48,167,168,20,169,170,53,171,172,22,173,56,24,174,175,8,176,177,7,178,62,64,179,180,23,181,182,6,183,69,26,184,185,10,186,187,12,188,75
,77,189,190,80,191,192,21,193,83,85,194,195,18,196,197,3,198,90,17,199,200,13,201,202,19,203,96,14,204,205,16,206,207,5,208,102,1,209,210,15,211,212,4,213,108,9,214,215,2,216,217
,0,218,114,11,219,220,25,221,222,42,0,115,223,25,45,45,24,59,224,22,48,39,64,66,225,7,27,24,26,72,61,226,6,36,12,76,227,80,39,64,85,87,68,228,21,18,89,229,230,85,80
,12,14,99,79,231,19,3,5,103,93,232,15,30,9,111,233,4,33,25,119,234,235,11,10,27,6,70,236,10,30,7,63,237,238,23,22,16,101,239,240,14,13,33,3,91,241,13,36,48,21,84
,242,18,20,9,11,117,113,243,0,20,19,97,244,16,53,53,15,107,245,1,42,4,109,246,247,2,1,64,39,80]
}
],
"colliderFaceMap": {
"d4": {
"3": 1,
"0": 2,
"1": 3,
"2": 4
},
"d6": {
"0": 1,
"6": 1,
"4": 2,
"10": 2,
"8": 3,
"2": 3,
"3": 4,
"9": 4,
"7": 5,
"1": 5,
"5": 6,
"11": 6
},
"d8": {
"3": 1,
"7": 2,
"6": 3,
"2": 4,
"1": 5,
"5": 6,
"4": 7,
"0": 8
},
"d10": {
"9": 1,
"19": 1,
"1": 2,
"11": 2,
"7": 3,
"17": 3,
"3": 4,
"13": 4,
"6": 5,
"16": 5,
"2": 6,
"12": 6,
"8": 7,
"18": 7,
"10": 8,
"0": 8,
"5": 9,
"15": 9,
"4": 0,
"14": 0
},
"d12": {
"2": 1,
"16": 1,
"17": 1,
"6": 2,
"24": 2,
"25": 2,
"0": 3,
"12": 3,
"13": 3,
"1": 4,
"14": 4,
"15": 4,
"5": 5,
"22": 5,
"23": 5,
"9": 6,
"30": 6,
"31": 6,
"7": 7,
"26": 7,
"27": 7,
"10": 8,
"32": 8,
"33": 8,
"11": 9,
"34": 9,
"35": 9,
"8": 10,
"28": 10,
"29": 10,
"4": 11,
"20": 11,
"21": 11,
"3": 12,
"18": 12,
"19": 12
},
"d20": {
"19": 1,
"2": 2,
"8": 3,
"3": 4,
"15": 5,
"0": 6,
"14": 7,
"1": 8,
"17": 9,
"9": 10,
"10": 11,
"18": 12,
"6": 13,
"13": 14,
"7": 15,
"12": 16,
"4": 17,
"11": 18,
"5": 19,
"16": 20
},
"d100": {
"3": 10,
"13": 10,
"9": 20,
"19": 20,
"4": 30,
"14": 30,
"1": 40,
"11": 40,
"7": 50,
"17": 50,
"2": 60,
"12": 60,
"8": 70,
"18": 70,
"5": 80,
"15": 80,
"0": 90,
"10": 90,
"6": 0,
"16": 0
}
}
}

View File

@ -1,19 +0,0 @@
{
"name": "Smooth Dice",
"systemName": "smooth",
"author": "Frank Ali",
"version": 0.2,
"meshName": "smoothDice",
"meshFile": "smoothDice.json",
"material": {
"type": "color",
"diffuseTexture": {
"light": "diffuse-light.png",
"dark": "diffuse-dark.png"
},
"diffuseLevel": 1,
"bumpTexture": "normal.png",
"bumpLevel": 1
},
"diceAvailable": ["d4","d6","d8","d10","d12","d20","d100"]
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 161 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 573 KiB

View File

@ -1,33 +0,0 @@
{
"name": "@3d-dice/theme-wooden",
"private": false,
"author": {
"name": "Frank Ali"
},
"description": "Wooden dice skin",
"version": "0.2.0",
"keywords": [
"3D",
"dice",
"skins",
"theme",
"javascript",
"rpg",
"dnd",
"d&d",
"tabletop"
],
"license": "MIT",
"homepage": "https://fantasticdice.games",
"repository": {
"type": "git",
"url": "https://github.com/3d-dice/dice-themes",
"directory": "themes/wooden"
},
"bugs": {
"url": "https://github.com/3d-dice/dice-themes/issues"
},
"files": [
"*"
]
}

View File

@ -1,707 +0,0 @@
{"producer":{"name":"Blender","version":"2.93.4","exporter_version":"2.93.5","file":"dice_final.babylon"},
"autoClear":true,"clearColor":[0.0509,0.0509,0.0509],"gravity":[0,-9.81,0],"physicsEnabled":true,
"meshes":[
{"name":"d4_collider","id":"d4_collider","billboardMode":0,"position":[0.6,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false,"physicsImpostor":8,"physicsMass":0.07,"physicsFriction":0.8,"physicsRestitution":0
,"positions":[-0.0542,-0.0383,-0.0939,0,0.115,0,-0.0542,-0.0383,0.0939,-0.0542,-0.0383,-0.0939,0.1084,-0.0383,0,0,0.115,0,-0.0542,-0.0383,-0.0939,-0.0542,-0.0383,0.0939,0.1084,-0.0383,0,-0.0542,-0.0383,0.0939,0,0.115,0,0.1084,-0.0383,0]
,"normals":[-0.943,0.333,0,-0.943,0.333,0,-0.943,0.333,0,0.471,0.333,-0.816,0.471,0.333,-0.816,0.471,0.333,-0.816,0,-1,0,0,-1,0,0,-1,0,0.471,0.333,0.816,0.471,0.333,0.816,0.471,0.333,0.816]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11]
}
,{"name":"d6_collider","id":"d6_collider","billboardMode":0,"position":[0.4,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false,"physicsImpostor":8,"physicsMass":0.085,"physicsFriction":0.8,"physicsRestitution":0
,"positions":[-0.0664,-0.0664,0.0664,0.0664,-0.0664,-0.0664,-0.0664,-0.0664,-0.0664,0.0664,-0.0664,-0.0664,-0.0664,0.0664,-0.0664,-0.0664,-0.0664,-0.0664,-0.0664,0.0664,-0.0664,-0.0664,-0.0664,0.0664,-0.0664,-0.0664,-0.0664,0.0664,0.0664,-0.0664,0.0664,-0.0664,0.0664,0.0664,0.0664,0.0664,0.0664,-0.0664,0.0664,-0.0664,0.0664,0.0664,0.0664,0.0664,0.0664,-0.0664,0.0664,0.0664,0.0664,0.0664,-0.0664
,0.0664,0.0664,0.0664,0.0664,-0.0664,0.0664,0.0664,-0.0664,-0.0664,0.0664,0.0664,-0.0664,-0.0664,0.0664,-0.0664,-0.0664,0.0664,0.0664,-0.0664,-0.0664,0.0664,0.0664,-0.0664,-0.0664,0.0664,-0.0664,0.0664,-0.0664,-0.0664,0.0664,-0.0664,0.0664,0.0664,-0.0664,0.0664,-0.0664,0.0664,0.0664,-0.0664]
,"normals":[0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0
,0,1,0,0,-1,0,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,0,18,1,19,20,4,21,22,23,9,24,10,25,26,13,27,28,29]
}
,{"name":"d8_collider","id":"d8_collider","billboardMode":0,"position":[0.2,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false,"physicsImpostor":8,"physicsMass":0.082,"physicsFriction":0.8,"physicsRestitution":0
,"positions":[0,0.1,0,0.1,0,0,0,0,0.1,0,0.1,0,0,0,0.1,-0.1,0,0,0,0.1,0,-0.1,0,0,0,0,-0.1,0,0.1,0,0,0,-0.1,0.1,0,0,0,-0.1,0,0,0,0.1,0.1,0,0,0,-0.1,0,-0.1,0,0
,0,0,0.1,0,-0.1,0,0,0,-0.1,-0.1,0,0,0,-0.1,0,0.1,0,0,0,0,-0.1]
,"normals":[0.577,0.577,0.577,0.577,0.577,0.577,0.577,0.577,0.577,-0.577,0.577,0.577,-0.577,0.577,0.577,-0.577,0.577,0.577,-0.577,0.577,-0.577,-0.577,0.577,-0.577,-0.577,0.577,-0.577,0.577,0.577,-0.577,0.577,0.577,-0.577,0.577,0.577,-0.577,0.577,-0.577,0.577,0.577,-0.577,0.577,0.577,-0.577,0.577,-0.577,-0.577,0.577,-0.577,-0.577,0.577
,-0.577,-0.577,0.577,-0.577,-0.577,-0.577,-0.577,-0.577,-0.577,-0.577,-0.577,-0.577,0.577,-0.577,-0.577,0.577,-0.577,-0.577,0.577,-0.577,-0.577]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23]
}
,{"name":"d10_collider","id":"d10_collider","billboardMode":0,"position":[0,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false,"physicsImpostor":8,"physicsMass":0.082,"physicsFriction":0.8,"physicsRestitution":0
,"positions":[0,0.0106,0.0939,0.0893,0.0106,0.029,0.0552,-0.0106,0.076,0.0893,0.0106,0.029,0.0552,0.0106,-0.076,0.0893,-0.0106,-0.029,0.0552,0.0106,-0.076,-0.0552,0.0106,-0.076,0,-0.0106,-0.0939,-0.0552,0.0106,-0.076,-0.0893,0.0106,0.029,-0.0893,-0.0106,-0.029,-0.0893,0.0106,0.029,0,0.0106,0.0939,-0.0552,-0.0106,0.076,0.0893,-0.0106,-0.029,0,-0.0106,-0.0939
,0,-0.1,0,0.0893,-0.0106,-0.029,0.0552,-0.0106,0.076,0.0893,0.0106,0.029,0.0552,-0.0106,0.076,-0.0552,-0.0106,0.076,0,0.0106,0.0939,-0.0552,-0.0106,0.076,-0.0893,-0.0106,-0.029,-0.0893,0.0106,0.029,-0.0893,-0.0106,-0.029,0,-0.0106,-0.0939,-0.0552,0.0106,-0.076,0,0.1,0,0.0893,0.0106,0.029,0,0.1,0,0.0552,0.0106,-0.076
,0,0.1,0,-0.0552,0.0106,-0.076,0,0.1,0,-0.0893,0.0106,0.029,0,0.1,0,0,0.0106,0.0939,0.0893,-0.0106,-0.029,0.0552,0.0106,-0.076,0,-0.0106,-0.0939,0.0893,-0.0106,-0.029,0,-0.1,0,0.0552,-0.0106,0.076,0.0552,-0.0106,0.076,0,-0.1,0,-0.0552,-0.0106,0.076,-0.0552,-0.0106,0.076,0,-0.1,0
,-0.0893,-0.0106,-0.029,-0.0893,-0.0106,-0.029,0,-0.1,0,0,-0.0106,-0.0939]
,"normals":[0.448,0.647,0.617,0.448,0.647,0.617,0.448,0.647,0.617,0.725,0.647,-0.236,0.725,0.647,-0.236,0.725,0.647,-0.236,0,0.647,-0.762,0,0.647,-0.762,0,0.647,-0.762,-0.725,0.647,-0.236,-0.725,0.647,-0.236,-0.725,0.647,-0.236,-0.448,0.647,0.617,-0.448,0.647,0.617,-0.448,0.647,0.617,0.448,-0.647,-0.617,0.448,-0.647,-0.617
,0.448,-0.647,-0.617,0.725,-0.647,0.236,0.725,-0.647,0.236,0.725,-0.647,0.236,0,-0.647,0.762,0,-0.647,0.762,0,-0.647,0.762,-0.725,-0.647,0.236,-0.725,-0.647,0.236,-0.725,-0.647,0.236,-0.448,-0.647,-0.617,-0.448,-0.647,-0.617,-0.448,-0.647,-0.617,0.448,0.647,0.617,0.725,0.647,-0.236,0.725,0.647,-0.236,0,0.647,-0.762
,0,0.647,-0.762,-0.725,0.647,-0.236,-0.725,0.647,-0.236,-0.448,0.647,0.617,-0.448,0.647,0.617,-0.448,0.647,0.617,0.448,-0.647,-0.617,0.448,-0.647,-0.617,0.448,-0.647,-0.617,0.725,-0.647,0.236,0.725,-0.647,0.236,0.725,-0.647,0.236,0,-0.647,0.762,0,-0.647,0.762,0,-0.647,0.762,-0.725,-0.647,0.236,-0.725,-0.647,0.236
,-0.725,-0.647,0.236,-0.448,-0.647,-0.617,-0.448,-0.647,-0.617,-0.448,-0.647,-0.617]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,0,30,1,31,32,4,33,34,7,35,36,10,37,38,39,40,41,42,43,44,45
,46,47,48,49,50,51,52,53,54]
}
,{"name":"d12_collider","id":"d12_collider","billboardMode":0,"position":[-0.2,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false,"physicsImpostor":8,"physicsMass":0.09,"physicsFriction":0.8,"physicsRestitution":0
,"positions":[-0.0577,-0.0577,0.0577,0,-0.0934,-0.0357,-0.0577,-0.0577,-0.0577,0.0357,0,-0.0934,0,0.0934,-0.0357,-0.0577,0.0577,-0.0577,0,-0.0934,0.0357,0.0934,-0.0357,0,0.0577,-0.0577,-0.0577,-0.0934,0.0357,0,0,0.0934,-0.0357,0,0.0934,0.0357,0.0357,0,-0.0934,-0.0357,0,-0.0934,-0.0577,-0.0577,-0.0577,-0.0577,0.0577,-0.0577,-0.0934,-0.0357,0
,-0.0577,-0.0577,-0.0577,-0.0357,0,0.0934,0,0.0934,0.0357,0.0577,0.0577,0.0577,-0.0934,-0.0357,0,-0.0577,0.0577,0.0577,-0.0357,0,0.0934,0,0.0934,-0.0357,0.0934,0.0357,0,0.0577,0.0577,0.0577,0.0357,0,-0.0934,0.0577,-0.0577,-0.0577,0.0934,-0.0357,0,0.0577,-0.0577,0.0577,0.0357,0,0.0934,0.0577,0.0577,0.0577,0,-0.0934,0.0357
,-0.0357,0,0.0934,0.0357,0,0.0934,-0.0934,-0.0357,0,0,-0.0934,0.0357,-0.0357,0,-0.0934,0.0577,0.0577,-0.0577,0,-0.0934,-0.0357,0.0577,-0.0577,0.0577,-0.0577,0.0577,0.0577,-0.0577,0.0577,-0.0577,0,0.0934,-0.0357,-0.0577,-0.0577,-0.0577,0,-0.0934,-0.0357,0.0577,-0.0577,-0.0577,0.0577,-0.0577,-0.0577,0.0357,0,-0.0934,-0.0577,-0.0577,-0.0577
,-0.0577,-0.0577,-0.0577,-0.0357,0,-0.0934,-0.0577,0.0577,-0.0577,-0.0577,0.0577,-0.0577,-0.0934,0.0357,0,0.0357,0,0.0934,-0.0577,0.0577,0.0577,0,0.0934,0.0357,-0.0357,0,0.0934,-0.0577,-0.0577,0.0577,-0.0934,-0.0357,0,-0.0934,-0.0357,0,-0.0934,0.0357,0,0.0577,0.0577,0.0577,0,0.0934,0.0357,0,0.0934,-0.0357,0,0.0934,-0.0357
,0.0577,0.0577,-0.0577,0.0934,0.0357,0,0.0577,0.0577,-0.0577,0.0934,-0.0357,0,0.0577,0.0577,-0.0577,0.0357,0,-0.0934,0.0934,-0.0357,0,0.0577,0.0577,0.0577,0.0934,0.0357,0,0.0934,-0.0357,0,0.0934,-0.0357,0,0.0577,0.0577,0.0577,0.0357,0,0.0934,0.0577,-0.0577,0.0577,0,-0.0934,0.0357,0,-0.0934,0.0357,-0.0577,-0.0577,0.0577
,-0.0357,0,0.0934]
,"normals":[-0.526,-0.851,0,-0.526,-0.851,0,-0.526,-0.851,0,0,0.526,-0.851,0,0.526,-0.851,0,0.526,-0.851,0.526,-0.851,0,0.526,-0.851,0,0.526,-0.851,0,-0.526,0.851,0,-0.526,0.851,0,-0.526,0.851,0,0,-0.526,-0.851,0,-0.526,-0.851,0,-0.526,-0.851,-0.851,0,-0.526,-0.851,0,-0.526
,-0.851,0,-0.526,0,0.526,0.851,0,0.526,0.851,0,0.526,0.851,-0.851,0,0.526,-0.851,0,0.526,-0.851,0,0.526,0.526,0.851,0,0.526,0.851,0,0.526,0.851,0,0.851,0,-0.526,0.851,0,-0.526,0.851,0,-0.526,0.851,0,0.526,0.851,0,0.526,0.851,0,0.526,0,-0.526,0.851
,0,-0.526,0.851,0,-0.526,0.851,-0.526,-0.851,0,-0.526,-0.851,0,0,0.526,-0.851,0,0.526,-0.851,0.526,-0.851,0,0.526,-0.851,0,-0.526,0.851,0,-0.526,0.851,0,-0.526,0.851,0,0,-0.526,-0.851,0,-0.526,-0.851,0,-0.526,-0.851,0,-0.526,-0.851,0,-0.526,-0.851,0,-0.526,-0.851
,-0.851,0,-0.526,-0.851,0,-0.526,-0.851,0,-0.526,-0.851,0,-0.526,-0.851,0,-0.526,0,0.526,0.851,0,0.526,0.851,0,0.526,0.851,-0.851,0,0.526,-0.851,0,0.526,-0.851,0,0.526,-0.851,0,0.526,-0.851,0,0.526,0.526,0.851,0,0.526,0.851,0,0.526,0.851,0,0.526,0.851,0
,0.526,0.851,0,0.851,0,-0.526,0.851,0,-0.526,0.851,0,-0.526,0.851,0,-0.526,0.851,0,-0.526,0.851,0,-0.526,0.851,0,0.526,0.851,0,0.526,0.851,0,0.526,0.851,0,0.526,0.851,0,0.526,0,-0.526,0.851,0,-0.526,0.851,0,-0.526,0.851,0,-0.526,0.851,0,-0.526,0.851
,0,-0.526,0.851]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,2,36,0,0,37,1,5,38,3,3,39,4,8,40,6
,6,41,7,11,42,9,9,43,44,45,46,47,48,49,50,51,52,53,54,55,16,20,56,18,18,57,58,59,60,61,62,63,22,64,65,66,67,68,25,69,70,71,72,73,74,75,76,77,78,30,79
,80,81,82,83,84,85]
}
,{"name":"d20_collider","id":"d20_collider","billboardMode":0,"position":[-0.4,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1.1109,1.1109,1.1109],"isVisible":true,"isEnabled":true,"pickable":false,"physicsImpostor":8,"physicsMass":0.1,"physicsFriction":0.8,"physicsRestitution":0
,"positions":[0.0851,0,0.0526,0,0.0526,0.0851,0.0526,0.0851,0,0.0526,-0.0851,0,0,-0.0526,0.0851,0.0851,0,-0.0526,0,0.0526,-0.0851,0,-0.0526,-0.0851,-0.0851,0,0.0526,-0.0526,0.0851,0,-0.0526,-0.0851,0,-0.0851,0,-0.0526]
,"normals":[0.851,0,0.526,0,0.526,0.851,0.526,0.851,0,0.526,-0.851,0,0,-0.526,0.851,0.851,0,-0.526,0,0.526,-0.851,0,-0.526,-0.851,-0.851,0,0.526,-0.526,0.851,0,-0.526,-0.851,0,-0.851,0,-0.526]
,"indices":[0,1,2,0,3,4,5,2,6,5,7,3,8,9,1,8,4,10,11,6,9,11,10,7,0,4,1,8,1,4,5,6,7,11,7,6,2,5,0,3,0,5,9,8,11,10,11,8,1,9,2
,6,2,9,4,3,10,7,10,3]
}
,{"name":"d100_collider","id":"d100_collider","billboardMode":0,"position":[-0.6,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false,"physicsImpostor":8,"physicsMass":0.082,"physicsFriction":0.8,"physicsRestitution":0
,"positions":[0,0.0106,0.0939,0.0893,0.0106,0.029,0.0552,-0.0106,0.076,0.0893,0.0106,0.029,0.0552,0.0106,-0.076,0.0893,-0.0106,-0.029,0.0552,0.0106,-0.076,-0.0552,0.0106,-0.076,0,-0.0106,-0.0939,-0.0552,0.0106,-0.076,-0.0893,0.0106,0.029,-0.0893,-0.0106,-0.029,-0.0893,0.0106,0.029,0,0.0106,0.0939,-0.0552,-0.0106,0.076,0.0893,-0.0106,-0.029,0,-0.0106,-0.0939
,0,-0.1,0,0.0893,-0.0106,-0.029,0.0552,-0.0106,0.076,0.0893,0.0106,0.029,0.0552,-0.0106,0.076,-0.0552,-0.0106,0.076,0,0.0106,0.0939,-0.0552,-0.0106,0.076,-0.0893,-0.0106,-0.029,-0.0893,0.0106,0.029,-0.0893,-0.0106,-0.029,0,-0.0106,-0.0939,-0.0552,0.0106,-0.076,0,0.1,0,0.0893,0.0106,0.029,0,0.1,0,0.0552,0.0106,-0.076
,0,0.1,0,-0.0552,0.0106,-0.076,0,0.1,0,-0.0893,0.0106,0.029,0,0.1,0,0,0.0106,0.0939,0.0893,-0.0106,-0.029,0.0552,0.0106,-0.076,0,-0.0106,-0.0939,0.0893,-0.0106,-0.029,0,-0.1,0,0.0552,-0.0106,0.076,0.0552,-0.0106,0.076,0,-0.1,0,-0.0552,-0.0106,0.076,-0.0552,-0.0106,0.076,0,-0.1,0
,-0.0893,-0.0106,-0.029,-0.0893,-0.0106,-0.029,0,-0.1,0,0,-0.0106,-0.0939]
,"normals":[0.448,0.647,0.617,0.448,0.647,0.617,0.448,0.647,0.617,0.725,0.647,-0.236,0.725,0.647,-0.236,0.725,0.647,-0.236,0,0.647,-0.762,0,0.647,-0.762,0,0.647,-0.762,-0.725,0.647,-0.236,-0.725,0.647,-0.236,-0.725,0.647,-0.236,-0.448,0.647,0.617,-0.448,0.647,0.617,-0.448,0.647,0.617,0.448,-0.647,-0.617,0.448,-0.647,-0.617
,0.448,-0.647,-0.617,0.725,-0.647,0.236,0.725,-0.647,0.236,0.725,-0.647,0.236,0,-0.647,0.762,0,-0.647,0.762,0,-0.647,0.762,-0.725,-0.647,0.236,-0.725,-0.647,0.236,-0.725,-0.647,0.236,-0.448,-0.647,-0.617,-0.448,-0.647,-0.617,-0.448,-0.647,-0.617,0.448,0.647,0.617,0.725,0.647,-0.236,0.725,0.647,-0.236,0,0.647,-0.762
,0,0.647,-0.762,-0.725,0.647,-0.236,-0.725,0.647,-0.236,-0.448,0.647,0.617,-0.448,0.647,0.617,-0.448,0.647,0.617,0.448,-0.647,-0.617,0.448,-0.647,-0.617,0.448,-0.647,-0.617,0.725,-0.647,0.236,0.725,-0.647,0.236,0.725,-0.647,0.236,0,-0.647,0.762,0,-0.647,0.762,0,-0.647,0.762,-0.725,-0.647,0.236,-0.725,-0.647,0.236
,-0.725,-0.647,0.236,-0.448,-0.647,-0.617,-0.448,-0.647,-0.617,-0.448,-0.647,-0.617]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,0,30,1,31,32,4,33,34,7,35,36,10,37,38,39,40,41,42,43,44,45
,46,47,48,49,50,51,52,53,54]
}
,{"name":"d4","id":"d4","billboardMode":0,"position":[0.6,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false
,"positions":[-0.0053,0.0999,0,-0.0284,0.0346,0.04,-0.0284,0.0346,-0.04,0.0489,0.0346,0.0046,0.0951,-0.0308,0.0046,0.0258,-0.0308,0.0446,0.0027,0.0999,0.0046,-0.0204,0.0346,0.0446,0.0489,0.0346,-0.0046,0.0258,-0.0308,-0.0446,0.0951,-0.0308,-0.0046,-0.0515,-0.0308,0.08,-0.0515,-0.0308,0,-0.0204,0.0346,-0.0446,-0.0435,-0.0308,-0.0847,-0.0435,-0.0308,0.0847,0.0231,-0.0383,-0.04
,-0.0462,-0.0383,-0.08,-0.0462,-0.0383,0,-0.0515,-0.0308,-0.08,0.0231,-0.0383,0.04,-0.0462,-0.0383,0.08,0.0924,-0.0383,0,0,0.1045,0,-0.0024,0.1015,0.0042,0.0027,0.0999,-0.0046,0,0.1045,0,-0.0024,0.1015,-0.0042,0,0.1045,0,0.0049,0.1015,0,0.0985,-0.0348,0,0.0973,-0.0292,0,0.0985,-0.0348,0,0.0949,-0.0361,-0.0042
,0.0985,-0.0348,0,0.0949,-0.0361,0.0042,-0.0492,-0.0348,0.0853,-0.0511,-0.0361,0.08,-0.0492,-0.0348,0.0853,-0.0486,-0.0292,0.0843,-0.0492,-0.0348,0.0853,-0.0438,-0.0361,0.0843,-0.0492,-0.0348,-0.0853,-0.0438,-0.0361,-0.0843,-0.0492,-0.0348,-0.0853,-0.0486,-0.0292,-0.0843,-0.0492,-0.0348,-0.0853,-0.0511,-0.0361,-0.08,-0.0255,0.0361,-0.0442,-0.0255,0.0361,-0.0442,0.0511,0.0361,0
,0.0973,-0.0292,0,0.0511,0.0361,0,-0.0255,0.0361,0.0442,-0.0255,0.0361,0.0442,0.0255,-0.0361,0.0442,0.0255,-0.0361,0.0442,-0.0511,-0.0361,0,-0.0511,-0.0361,-0.08,-0.0511,-0.0361,0,0.0255,-0.0361,-0.0442,0.0255,-0.0361,-0.0442,-0.0024,0.1015,-0.0042,0.0049,0.1015,0,0.0511,0.0361,0,-0.0024,0.1015,0.0042,0.0949,-0.0361,0.0042,-0.0511,-0.0361,0.08
,-0.0511,-0.0361,0,0.0949,-0.0361,-0.0042,-0.0024,0.1015,-0.0042,0.0049,0.1015,0,0,0.1045,0,-0.0024,0.1015,0.0042,0,0.1045,0,0.0949,-0.0361,-0.0042,0.0949,-0.0361,0.0042,0.0985,-0.0348,0,0.0973,-0.0292,0,0.0985,-0.0348,0,-0.0486,-0.0292,0.0843,-0.0438,-0.0361,0.0843,-0.0492,-0.0348,0.0853,-0.0511,-0.0361,0.08,-0.0492,-0.0348,0.0853
,-0.0486,-0.0292,-0.0843,-0.0511,-0.0361,-0.08,-0.0492,-0.0348,-0.0853,-0.0438,-0.0361,-0.0843,-0.0492,-0.0348,-0.0853,-0.0255,0.0361,-0.0442,-0.0486,-0.0292,-0.0843,0.0973,-0.0292,0,-0.0255,0.0361,0.0442,-0.0486,-0.0292,0.0843,0.0255,-0.0361,0.0442,-0.0438,-0.0361,0.0843,-0.0511,-0.0361,-0.08,0.0255,-0.0361,-0.0442,-0.0438,-0.0361,-0.0843,-0.0255,0.0361,-0.0442,0.0049,0.1015,0
,0.0511,0.0361,0,-0.0024,0.1015,0.0042,-0.0255,0.0361,0.0442,0.0949,-0.0361,0.0042,0.0255,-0.0361,0.0442,-0.0511,-0.0361,0.08,-0.0511,-0.0361,0,0.0949,-0.0361,-0.0042,0.0255,-0.0361,-0.0442]
,"normals":[-0.815,0.579,0,-0.886,0.425,0.183,-0.886,0.425,-0.183,0.602,0.425,0.676,0.682,0.191,0.706,0.496,0.127,0.859,0.408,0.579,0.706,0.285,0.425,0.859,0.602,0.425,-0.676,0.496,0.127,-0.859,0.682,0.191,-0.706,-0.952,0.191,0.237,-0.992,0.127,0,0.285,0.425,-0.859,0.271,0.191,-0.943,0.271,0.191,0.943,0.106,-0.977,-0.183
,-0.137,-0.962,-0.237,-0.211,-0.977,0,-0.952,0.191,-0.237,0.106,-0.977,0.183,-0.137,-0.962,0.237,0.274,-0.962,0,0,1,0,-0.346,0.722,0.599,0.408,0.579,-0.706,0,1,0,-0.346,0.722,-0.599,0,1,0,0.692,0.722,0,0.943,-0.333,0,0.911,0.412,0,0.943,-0.333,0,0.565,-0.567,-0.599
,0.943,-0.333,0,0.565,-0.567,0.599,-0.471,-0.333,0.816,-0.802,-0.567,0.19,-0.471,-0.333,0.816,-0.456,0.412,0.789,-0.471,-0.333,0.816,0.236,-0.567,0.789,-0.471,-0.333,-0.816,0.236,-0.567,-0.789,-0.471,-0.333,-0.816,-0.456,0.412,-0.789,-0.471,-0.333,-0.816,-0.802,-0.567,-0.19,-0.408,0.577,-0.707,-0.408,0.577,-0.707,0.816,0.577,0
,0.911,0.412,0,0.816,0.577,0,-0.408,0.577,0.707,-0.408,0.577,0.707,0.408,-0.577,0.707,0.408,-0.577,0.707,-0.816,-0.577,0,-0.802,-0.567,-0.19,-0.816,-0.577,0,0.408,-0.577,-0.707,0.408,-0.577,-0.707,-0.346,0.722,-0.599,0.692,0.722,0,0.816,0.577,0,-0.346,0.722,0.599,0.565,-0.567,0.599,-0.802,-0.567,0.19
,-0.816,-0.577,0,0.565,-0.567,-0.599,-0.346,0.722,-0.599,0.692,0.722,0,0,1,0,-0.346,0.722,0.599,0,1,0,0.565,-0.567,-0.599,0.565,-0.567,0.599,0.943,-0.333,0,0.911,0.412,0,0.943,-0.333,0,-0.456,0.412,0.789,0.236,-0.567,0.789,-0.471,-0.333,0.816,-0.802,-0.567,0.19,-0.471,-0.333,0.816
,-0.456,0.412,-0.789,-0.802,-0.567,-0.19,-0.471,-0.333,-0.816,0.236,-0.567,-0.789,-0.471,-0.333,-0.816,-0.408,0.577,-0.707,-0.456,0.412,-0.789,0.911,0.412,0,-0.408,0.577,0.707,-0.456,0.412,0.789,0.408,-0.577,0.707,0.236,-0.567,0.789,-0.802,-0.567,-0.19,0.408,-0.577,-0.707,0.236,-0.567,-0.789,-0.408,0.577,-0.707,0.692,0.722,0
,0.816,0.577,0,-0.346,0.722,0.599,-0.408,0.577,0.707,0.565,-0.567,0.599,0.408,-0.577,0.707,-0.802,-0.567,0.19,-0.816,-0.577,0,0.565,-0.567,-0.599,0.408,-0.577,-0.707]
,"tangents":[0.002,0.003,-1,1,-0.16,0.089,-0.983,1,0.163,-0.084,-0.983,1,-0.58,0.815,0.003,1,-0.443,0.876,0.19,1,-0.502,0.849,0.164,1,-0.684,0.706,-0.184,1,-0.637,0.753,-0.162,1,0.174,0.756,0.631,1,0.389,0.852,0.351,1,0.287,0.817,0.499,1,-0.228,0.068,-0.971,1,0,0.001
,-1,1,0.287,0.817,0.5,1,0.382,0.878,0.288,1,-0.58,0.815,0.001,1,0.863,0.181,-0.471,1,0.865,0.001,-0.502,1,0.837,-0.181,-0.516,1,0.228,-0.068,-0.971,1,0.866,0,-0.5,1,0.847,-0.238,-0.475,1,0.835,0.238,-0.496,1,0,0,-1,1,-0.386,0.473,-0.792,1
,0.178,0.708,0.683,1,0.107,0,0.994,1,0.236,0.685,0.689,1,-0.917,0,-0.398,1,-0.715,0.686,-0.135,1,0.289,0.817,0.5,1,-0.282,0.623,0.73,1,0.269,0.76,-0.592,1,0.562,0.796,-0.223,1,0.305,0.861,0.407,1,-0.033,0.71,0.703,1,-0.843,-0.102,-0.528,1,-0.234,0.006
,-0.972,1,-0.58,0.814,-0.002,1,-0.496,0.619,-0.609,1,0.646,-0.761,0.063,1,0.878,-0.223,-0.423,1,0.194,0.864,-0.465,1,0.618,0.714,-0.328,1,0.842,0.104,-0.529,1,0.723,-0.345,-0.598,1,0.866,0,-0.5,1,0.528,-0.522,-0.67,1,0.552,-0.461,-0.695,1,0.288,0.816,0.501,1
,-0.326,0.462,0.825,1,-0.408,0.902,0.144,1,-0.577,0.816,0.005,1,-0.556,0.457,-0.694,1,-0.553,0.46,-0.695,1,0.866,0.001,-0.5,1,-0.255,0.671,0.696,1,0.477,-0.674,-0.565,1,0.234,-0.005,-0.972,1,0,-0.001,-1,1,0.726,0.675,-0.132,1,0.727,0.674,-0.131,1,0.387,-0.472
,-0.792,1,-0.277,0.266,0.923,1,-0.577,0.816,0.005,1,-0.665,0.262,-0.699,1,0.806,0.222,-0.549,1,0.474,-0.796,-0.377,1,0,-0.001,-1,1,0.738,0.672,0.06,1,0.387,-0.472,-0.792,1,-0.277,0.266,0.923,1,0.107,0,0.994,1,-0.665,0.262,-0.699,1,-0.917,0,-0.398,1
,0.738,0.672,0.06,1,0.806,0.222,-0.549,1,0.269,0.76,-0.592,1,-0.408,0.902,0.144,1,0.305,0.861,0.407,1,-0.722,0.347,-0.598,1,-0.426,0.669,0.609,1,-0.58,0.814,-0.002,1,0.474,-0.796,-0.377,1,0.646,-0.761,0.063,1,0.325,0.902,0.284,1,0.234,-0.005,-0.972,1,0.842,0.104
,-0.529,1,0.844,0.522,-0.122,1,0.866,0,-0.5,1,0.288,0.816,0.501,1,0.325,0.902,0.284,1,-0.408,0.902,0.144,1,-0.553,0.46,-0.695,1,-0.722,0.347,-0.598,1,-0.255,0.671,0.696,1,-0.426,0.669,0.609,1,0.234,-0.005,-0.972,1,0.727,0.674,-0.131,1,0.844,0.522,-0.122,1
,0.288,0.816,0.501,1,-0.277,0.266,0.923,1,-0.577,0.816,0.005,1,-0.665,0.262,-0.699,1,-0.553,0.46,-0.695,1,0.806,0.222,-0.549,1,-0.255,0.671,0.696,1,0.474,-0.796,-0.377,1,0,-0.001,-1,1,0.738,0.672,0.06,1,0.727,0.674,-0.131,1]
,"uvs":[0.882,0.427,0.835,0.349,0.93,0.348,0.859,0.601,0.767,0.599,0.812,0.519,0.95,0.6,0.906,0.519,0.512,0.788,0.417,0.789,0.465,0.71,0.791,0.268,0.882,0.267,0.465,0.87,0.373,0.868,0.859,0.441,0.364,0.848,0.316,0.927,0.27,0.849,0.974,0.268,0.316,0.767,0.225,0.769,0.408,0.769,0.882,0.435,0.877,0.43
,0.556,0.868,0.563,0.872,0.557,0.875,0.957,0.604,0.95,0.606,0.465,0.702,0.47,0.706,0.415,0.765,0.414,0.771,0.76,0.603,0.761,0.596,0.784,0.264,0.79,0.262,0.859,0.433,0.864,0.437,0.218,0.765,0.225,0.763,0.366,0.873,0.368,0.866,0.981,0.264,0.979,0.271,0.316,0.935,0.311,0.931,0.935,0.351,0.465,0.876
,0.517,0.785,0.766,0.605,0.859,0.607,0.911,0.516,0.83,0.352,0.316,0.761,0.806,0.516,0.264,0.852,0.974,0.262,0.882,0.26,0.412,0.786,0.369,0.852,0.887,0.43,0.562,0.866,0.859,0.607,0.956,0.597,0.409,0.763,0.219,0.771,0.882,0.26,0.46,0.706,0.887,0.43,0.562,0.866,0.563,0.872,0.956,0.597,0.957,0.604
,0.46,0.706,0.409,0.763,0.415,0.765,0.766,0.605,0.76,0.603,0.785,0.271,0.854,0.437,0.859,0.433,0.219,0.771,0.218,0.765,0.373,0.875,0.974,0.262,0.981,0.264,0.322,0.931,0.316,0.935,0.465,0.876,0.373,0.875,0.766,0.605,0.83,0.352,0.785,0.271,0.806,0.516,0.854,0.437,0.974,0.262,0.369,0.852,0.322,0.931
,0.465,0.876,0.562,0.866,0.859,0.607,0.956,0.597,0.83,0.352,0.409,0.763,0.806,0.516,0.219,0.771,0.882,0.26,0.46,0.706,0.369,0.852]
,"indices":[0,1,2,3,4,5,6,3,7,8,9,10,1,11,12,13,14,9,7,5,15,2,1,12,8,13,9,16,17,18,7,3,5,2,12,19,20,18,21,20,16,18,22,16,20,0,23,24,25,26,27
,6,28,29,10,30,31,22,32,33,4,34,35,11,36,37,15,38,39,21,40,41,14,42,43,19,44,45,17,46,47,19,48,2,49,14,13,10,50,8,51,3,52,15,53,7,54,11,1,21,55,20
,56,15,5,17,57,18,58,12,59,14,60,9,61,17,16,0,48,62,27,13,25,8,63,25,64,6,29,7,65,6,24,1,0,20,66,22,35,5,4,18,67,21,68,11,37,9,69,10,33,16,22
,25,13,8,0,70,23,25,71,72,6,73,74,10,75,30,22,76,77,4,78,79,11,80,36,15,81,82,21,83,84,14,85,42,19,86,87,17,88,89,19,45,48,90,91,14,10,31,50,92,4,3
,15,39,53,93,94,11,21,41,55,95,96,15,17,47,57,97,19,12,14,43,60,98,99,17,0,2,48,27,100,13,8,50,101,102,3,6,7,53,103,24,104,1,20,55,105,35,106,5,18,57,107
,108,12,11,9,60,109,33,110,16]
}
,{"name":"d6","id":"d6","billboardMode":0,"position":[0.4,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false
,"positions":[-0.0664,0.0584,-0.0584,-0.0664,-0.0584,0.0584,-0.0664,-0.0584,-0.0584,-0.0584,-0.0664,0.0584,0.0584,-0.0664,-0.0584,-0.0584,-0.0664,-0.0584,0.0664,0.0584,-0.0584,0.0664,-0.0584,0.0584,0.0664,0.0584,0.0584,0.0584,-0.0584,0.0664,-0.0584,0.0584,0.0664,0.0584,0.0584,0.0664,-0.0584,0.0664,0.0584,0.0584,0.0664,-0.0584,0.0584,0.0664,0.0584,-0.0584,-0.0584,-0.0664,-0.063,-0.063,-0.063
,-0.0584,-0.0641,-0.0641,-0.063,-0.063,-0.063,-0.0641,-0.0584,-0.0641,-0.063,-0.063,-0.063,-0.0641,-0.0641,-0.0584,0.0584,-0.0584,-0.0664,0.063,-0.063,-0.063,0.0641,-0.0584,-0.0641,0.063,-0.063,-0.063,0.0584,-0.0641,-0.0641,0.0664,-0.0584,-0.0584,0.063,-0.063,-0.063,0.0641,-0.0641,-0.0584,0.063,-0.063,0.063,0.0584,-0.0641,0.0641,0.063,-0.063,0.063,0.0641,-0.0584,0.0641
,0.0584,-0.0664,0.0584,0.063,-0.063,0.063,0.0641,-0.0641,0.0584,-0.0584,-0.0584,0.0664,-0.063,-0.063,0.063,-0.0641,-0.0584,0.0641,-0.063,-0.063,0.063,-0.0584,-0.0641,0.0641,-0.063,-0.063,0.063,-0.0641,-0.0641,0.0584,-0.0584,0.0584,-0.0664,-0.063,0.063,-0.063,-0.0641,0.0584,-0.0641,-0.0584,0.0664,-0.0584,-0.063,0.063,-0.063,-0.0584,0.0641,-0.0641,-0.063,0.063,-0.063
,-0.0641,0.0641,-0.0584,0.0584,0.0584,-0.0664,0.063,0.063,-0.063,0.0584,0.0641,-0.0641,0.063,0.063,-0.063,0.0641,0.0584,-0.0641,0.063,0.063,-0.063,0.0641,0.0641,-0.0584,0.063,0.063,0.063,0.0641,0.0584,0.0641,0.063,0.063,0.063,0.0584,0.0641,0.0641,0.063,0.063,0.063,0.0641,0.0641,0.0584,-0.0664,0.0584,0.0584,-0.063,0.063,0.063,-0.0641,0.0584,0.0641
,-0.063,0.063,0.063,-0.0641,0.0641,0.0584,-0.063,0.063,0.063,-0.0584,0.0641,0.0641,0.0584,-0.0641,0.0641,-0.0584,-0.0641,0.0641,-0.0584,-0.0641,-0.0641,0.0584,-0.0641,-0.0641,0.0641,-0.0641,-0.0584,0.0641,-0.0641,0.0584,-0.0641,-0.0641,-0.0584,-0.0641,-0.0641,0.0584,-0.0641,-0.0584,-0.0641,-0.0641,0.0584,-0.0641,0.0641,-0.0584,-0.0641,0.0641,0.0584,-0.0641,0.0641,-0.0584,0.0641
,0.0641,0.0584,0.0641,-0.0641,0.0641,-0.0584,-0.0641,0.0641,0.0584,0.0641,0.0641,-0.0584,0.0641,0.0641,0.0584,0.0584,0.0641,0.0641,-0.0584,0.0641,0.0641,-0.0584,0.0641,-0.0641,0.0584,0.0641,-0.0641,-0.0641,-0.0584,0.0641,-0.0641,0.0584,0.0641,-0.0641,-0.0584,-0.0641,-0.0641,-0.0641,-0.0584,-0.063,-0.063,-0.063,-0.0584,-0.0641,-0.0641,-0.063,-0.063,-0.063,0.0584,-0.0641,-0.0641
,0.0641,-0.0641,-0.0584,0.063,-0.063,-0.063,0.0641,-0.0584,-0.0641,0.063,-0.063,-0.063,0.0641,-0.0584,0.0641,0.0641,-0.0641,0.0584,0.063,-0.063,0.063,0.0584,-0.0641,0.0641,0.063,-0.063,0.063,-0.0584,-0.0641,0.0641,-0.0641,-0.0641,0.0584,-0.063,-0.063,0.063,-0.0641,-0.0584,0.0641,-0.063,-0.063,0.063,-0.0584,0.0641,-0.0641,-0.0641,0.0641,-0.0584,-0.063,0.063,-0.063
,-0.0641,0.0584,-0.0641,-0.063,0.063,-0.063,0.0641,0.0584,-0.0641,0.0641,0.0641,-0.0584,0.063,0.063,-0.063,0.0584,0.0641,-0.0641,0.063,0.063,-0.063,0.0584,0.0641,0.0641,0.0641,0.0641,0.0584,0.063,0.063,0.063,0.0641,0.0584,0.0641,0.063,0.063,0.063,-0.0641,0.0641,0.0584,-0.0584,0.0641,0.0641,-0.063,0.063,0.063,-0.0641,0.0584,0.0641,-0.063,0.063,0.063
,0.0584,-0.0641,0.0641,-0.0584,-0.0641,0.0641,-0.0584,-0.0641,-0.0641,0.0584,-0.0641,-0.0641,0.0641,-0.0641,-0.0584,0.0641,-0.0641,0.0584,-0.0641,-0.0641,-0.0584,-0.0641,-0.0641,0.0584,-0.0641,-0.0584,-0.0641,-0.0641,0.0584,-0.0641,0.0641,-0.0584,-0.0641,0.0641,0.0584,-0.0641,0.0641,-0.0584,0.0641,0.0641,0.0584,0.0641,-0.0641,0.0641,-0.0584,-0.0641,0.0641,0.0584,0.0641,0.0641,-0.0584
,0.0641,0.0641,0.0584,0.0584,0.0641,0.0641,-0.0584,0.0641,0.0641,-0.0584,0.0641,-0.0641,0.0584,0.0641,-0.0641,-0.0641,-0.0584,0.0641,-0.0641,0.0584,0.0641]
,"normals":[-0.967,0.179,-0.179,-0.967,-0.179,0.179,-0.967,-0.179,-0.179,-0.179,-0.967,0.179,0.179,-0.967,-0.179,-0.179,-0.967,-0.179,0.967,0.179,-0.179,0.967,-0.179,0.179,0.967,0.179,0.179,0.179,-0.179,0.967,-0.179,0.179,0.967,0.179,0.179,0.967,-0.179,0.967,0.179,0.179,0.967,-0.179,0.179,0.967,0.179,-0.179,-0.179,-0.967,-0.577,-0.577,-0.577
,-0.148,-0.699,-0.699,-0.577,-0.577,-0.577,-0.699,-0.148,-0.699,-0.577,-0.577,-0.577,-0.699,-0.699,-0.148,0.179,-0.179,-0.967,0.577,-0.577,-0.577,0.699,-0.148,-0.699,0.577,-0.577,-0.577,0.148,-0.699,-0.699,0.967,-0.179,-0.179,0.577,-0.577,-0.577,0.699,-0.699,-0.148,0.577,-0.577,0.577,0.148,-0.699,0.699,0.577,-0.577,0.577,0.699,-0.148,0.699
,0.179,-0.967,0.179,0.577,-0.577,0.577,0.699,-0.699,0.148,-0.179,-0.179,0.967,-0.577,-0.577,0.577,-0.699,-0.148,0.699,-0.577,-0.577,0.577,-0.148,-0.699,0.699,-0.577,-0.577,0.577,-0.699,-0.699,0.148,-0.179,0.179,-0.967,-0.577,0.577,-0.577,-0.699,0.148,-0.699,-0.179,0.967,-0.179,-0.577,0.577,-0.577,-0.148,0.699,-0.699,-0.577,0.577,-0.577
,-0.699,0.699,-0.148,0.179,0.179,-0.967,0.577,0.577,-0.577,0.148,0.699,-0.699,0.577,0.577,-0.577,0.699,0.148,-0.699,0.577,0.577,-0.577,0.699,0.699,-0.148,0.577,0.577,0.577,0.699,0.148,0.699,0.577,0.577,0.577,0.148,0.699,0.699,0.577,0.577,0.577,0.699,0.699,0.148,-0.967,0.179,0.179,-0.577,0.577,0.577,-0.699,0.148,0.699
,-0.577,0.577,0.577,-0.699,0.699,0.148,-0.577,0.577,0.577,-0.148,0.699,0.699,0.148,-0.699,0.699,-0.148,-0.699,0.699,-0.148,-0.699,-0.699,0.148,-0.699,-0.699,0.699,-0.699,-0.148,0.699,-0.699,0.148,-0.699,-0.699,-0.148,-0.699,-0.699,0.148,-0.699,-0.148,-0.699,-0.699,0.148,-0.699,0.699,-0.148,-0.699,0.699,0.148,-0.699,0.699,-0.148,0.699
,0.699,0.148,0.699,-0.699,0.699,-0.148,-0.699,0.699,0.148,0.699,0.699,-0.148,0.699,0.699,0.148,0.148,0.699,0.699,-0.148,0.699,0.699,-0.148,0.699,-0.699,0.148,0.699,-0.699,-0.699,-0.148,0.699,-0.699,0.148,0.699,-0.699,-0.148,-0.699,-0.699,-0.699,-0.148,-0.577,-0.577,-0.577,-0.148,-0.699,-0.699,-0.577,-0.577,-0.577,0.148,-0.699,-0.699
,0.699,-0.699,-0.148,0.577,-0.577,-0.577,0.699,-0.148,-0.699,0.577,-0.577,-0.577,0.699,-0.148,0.699,0.699,-0.699,0.148,0.577,-0.577,0.577,0.148,-0.699,0.699,0.577,-0.577,0.577,-0.148,-0.699,0.699,-0.699,-0.699,0.148,-0.577,-0.577,0.577,-0.699,-0.148,0.699,-0.577,-0.577,0.577,-0.148,0.699,-0.699,-0.699,0.699,-0.148,-0.577,0.577,-0.577
,-0.699,0.148,-0.699,-0.577,0.577,-0.577,0.699,0.148,-0.699,0.699,0.699,-0.148,0.577,0.577,-0.577,0.148,0.699,-0.699,0.577,0.577,-0.577,0.148,0.699,0.699,0.699,0.699,0.148,0.577,0.577,0.577,0.699,0.148,0.699,0.577,0.577,0.577,-0.699,0.699,0.148,-0.148,0.699,0.699,-0.577,0.577,0.577,-0.699,0.148,0.699,-0.577,0.577,0.577
,0.148,-0.699,0.699,-0.148,-0.699,0.699,-0.148,-0.699,-0.699,0.148,-0.699,-0.699,0.699,-0.699,-0.148,0.699,-0.699,0.148,-0.699,-0.699,-0.148,-0.699,-0.699,0.148,-0.699,-0.148,-0.699,-0.699,0.148,-0.699,0.699,-0.148,-0.699,0.699,0.148,-0.699,0.699,-0.148,0.699,0.699,0.148,0.699,-0.699,0.699,-0.148,-0.699,0.699,0.148,0.699,0.699,-0.148
,0.699,0.699,0.148,0.148,0.699,0.699,-0.148,0.699,0.699,-0.148,0.699,-0.699,0.148,0.699,-0.699,-0.699,-0.148,0.699,-0.699,0.148,0.699]
,"tangents":[0.179,0.984,0.016,1,-0.179,0.984,0.016,1,-0.177,0.984,-0.029,1,-0.016,-0.179,-0.984,1,-0.016,0.179,-0.984,1,0.029,0.177,-0.984,1,0.179,0.016,0.984,1,-0.179,0.016,0.984,1,-0.177,-0.029,0.984,1,-0.016,-0.984,-0.179,1,-0.016,-0.984,0.179,1,0.029,-0.984,0.177,1,0.984,0.179
,0.016,1,0.984,-0.179,0.016,1,0.984,-0.177,-0.029,1,0.984,-0.029,-0.177,1,0.799,-0.252,-0.547,1,0.986,-0.05,-0.158,1,-0.547,0.798,-0.252,1,-0.158,0.986,-0.05,1,0.252,0.547,-0.799,1,0.05,0.158,-0.986,1,0.984,0.016,0.179,1,0.797,0.244,0.553,1,0.714,0.107,0.692,1
,-0.244,0.553,-0.797,1,-0.107,0.692,-0.714,1,0.177,-0.029,0.984,1,0.547,-0.252,0.799,1,0.158,-0.05,0.986,1,-0.244,-0.797,-0.553,1,-0.107,-0.714,-0.692,1,-0.553,0.244,0.797,1,-0.692,0.107,0.714,1,0.029,-0.177,-0.984,1,0.252,-0.547,-0.799,1,0.05,-0.158,-0.986,1,0.029,-0.984
,-0.177,1,0.252,-0.798,-0.547,1,0.05,-0.986,-0.158,1,-0.244,-0.553,-0.797,1,-0.107,-0.692,-0.714,1,-0.553,0.797,0.244,1,-0.692,0.714,0.107,1,0.984,0.016,-0.179,1,0.797,0.244,-0.553,1,0.714,0.107,-0.692,1,0.984,0.177,-0.029,1,0.799,0.547,-0.252,1,0.986,0.158,-0.05,1
,0.553,0.797,0.244,1,0.692,0.714,0.107,1,0.984,-0.029,0.177,1,0.799,-0.252,0.547,1,0.986,-0.05,0.158,1,0.553,0.244,0.797,1,0.692,0.107,0.714,1,0.797,-0.553,0.244,1,0.714,-0.692,0.107,1,0.252,-0.798,0.547,1,0.05,-0.986,0.158,1,0.799,-0.547,-0.252,1,0.986,-0.158
,-0.05,1,-0.547,-0.252,0.799,1,-0.158,-0.05,0.986,1,0.177,0.984,-0.029,1,0.547,0.799,-0.252,1,0.158,0.986,-0.05,1,0.797,0.553,0.244,1,0.714,0.692,0.107,1,-0.244,-0.797,0.553,1,-0.107,-0.714,0.692,1,0.111,-0.691,-0.714,1,0.111,-0.714,-0.691,1,0.111,0.691,-0.714,1
,0.985,0.04,0.168,1,-0.04,0.168,-0.985,1,-0.168,0.04,0.985,1,-0.691,0.714,-0.111,1,-0.04,-0.168,-0.985,1,0.714,-0.111,-0.691,1,0.168,0.985,0.04,1,0.691,-0.111,0.714,1,0.714,-0.111,0.691,1,-0.04,-0.985,-0.168,1,-0.691,-0.111,0.714,1,0.714,0.691,-0.111,1,0.691,0.714
,-0.111,1,0.168,0.04,0.985,1,0.714,-0.691,-0.111,1,0.111,-0.714,0.691,1,0.985,0.168,0.04,1,0.985,0.04,-0.168,1,0.985,-0.168,0.04,1,-0.168,0.985,0.04,1,-0.04,-0.985,0.168,1,0.714,-0.111,-0.691,1,-0.691,0.714,-0.111,1,-0.547,0.798,-0.252,1,0.111,0.691,-0.714,1
,0.252,0.547,-0.799,1,0.985,0.04,0.168,1,-0.04,0.168,-0.985,1,-0.244,0.553,-0.797,1,0.691,-0.111,0.714,1,0.547,-0.252,0.799,1,-0.04,-0.985,-0.168,1,-0.168,0.04,0.985,1,-0.553,0.244,0.797,1,0.111,-0.691,-0.714,1,0.252,-0.547,-0.799,1,0.111,-0.714,-0.691,1,-0.04,-0.168
,-0.985,1,-0.244,-0.553,-0.797,1,-0.168,0.985,0.04,1,-0.553,0.797,0.244,1,0.985,0.04,-0.168,1,0.714,0.691,-0.111,1,0.799,0.547,-0.252,1,0.168,0.985,0.04,1,0.553,0.797,0.244,1,0.714,-0.111,0.691,1,0.168,0.04,0.985,1,0.553,0.244,0.797,1,0.985,-0.168,0.04,1
,0.797,-0.553,0.244,1,0.111,-0.714,0.691,1,0.714,-0.691,-0.111,1,0.799,-0.547,-0.252,1,-0.691,-0.111,0.714,1,-0.547,-0.252,0.799,1,0.691,0.714,-0.111,1,0.985,0.168,0.04,1,0.797,0.553,0.244,1,-0.04,-0.985,0.168,1,-0.244,-0.797,0.553,1,0.111,-0.691,-0.714,1,0.111,-0.714
,-0.691,1,0.111,0.691,-0.714,1,0.985,0.04,0.168,1,-0.04,0.168,-0.985,1,-0.168,0.04,0.985,1,-0.691,0.714,-0.111,1,-0.04,-0.168,-0.985,1,0.714,-0.111,-0.691,1,0.168,0.985,0.04,1,0.691,-0.111,0.714,1,0.714,-0.111,0.691,1,-0.04,-0.985,-0.168,1,-0.691,-0.111,0.714,1
,0.714,0.691,-0.111,1,0.691,0.714,-0.111,1,0.168,0.04,0.985,1,0.714,-0.691,-0.111,1,0.111,-0.714,0.691,1,0.985,0.168,0.04,1,0.985,0.04,-0.168,1,0.985,-0.168,0.04,1,-0.168,0.985,0.04,1,-0.04,-0.985,0.168,1]
,"uvs":[0.449,0.163,0.315,0.295,0.315,0.161,0.164,0.295,0.298,0.162,0.298,0.296,0.013,0.143,0.147,0.01,0.147,0.144,0.449,0.013,0.315,0.146,0.315,0.012,0.013,0.294,0.147,0.161,0.147,0.295,0.164,0.011,0.158,0.005,0.164,0.004,0.309,0.155,0.315,0.154,0.304,0.302,0.298,0.303,0.298,0.012,0.304,0.006,0.305,0.012
,0.304,0.156,0.305,0.162,0.013,0.009,0.007,0.003,0.013,0.002,0.455,0.007,0.456,0.013,0.153,0.004,0.154,0.01,0.164,0.161,0.158,0.155,0.164,0.154,0.449,0.147,0.455,0.153,0.449,0.154,0.158,0.301,0.157,0.295,0.309,0.301,0.308,0.296,0.164,0.145,0.158,0.151,0.157,0.145,0.013,0.16,0.007,0.154,0.013,0.153
,0.455,0.156,0.456,0.162,0.298,0.146,0.304,0.152,0.298,0.153,0.007,0.149,0.006,0.143,0.153,0.155,0.154,0.161,0.309,0.006,0.314,0.005,0.153,0.301,0.147,0.302,0.153,0.15,0.147,0.151,0.449,0.296,0.455,0.303,0.449,0.304,0.007,0.3,0.006,0.294,0.309,0.152,0.308,0.146,0.157,0.161,0.456,0.147,0.305,0.296
,0.298,0.005,0.298,0.155,0.147,0.003,0.308,0.161,0.164,0.302,0.157,0.011,0.449,0.155,0.006,0.009,0.305,0.147,0.449,0.006,0.154,0.145,0.006,0.16,0.456,0.297,0.012,0.15,0.154,0.295,0.308,0.011,0.012,0.301,0.164,0.152,0.147,0.154,0.314,0.302,0.314,0.153,0.157,0.011,0.308,0.161,0.309,0.155,0.305,0.296
,0.304,0.302,0.298,0.005,0.298,0.155,0.304,0.156,0.006,0.009,0.007,0.003,0.449,0.006,0.147,0.003,0.153,0.004,0.157,0.161,0.158,0.155,0.456,0.147,0.164,0.302,0.158,0.301,0.314,0.302,0.309,0.301,0.164,0.152,0.006,0.16,0.007,0.154,0.449,0.155,0.455,0.156,0.305,0.147,0.012,0.15,0.007,0.149,0.147,0.154
,0.153,0.155,0.308,0.011,0.154,0.295,0.153,0.301,0.154,0.145,0.153,0.15,0.456,0.297,0.012,0.301,0.007,0.3,0.314,0.153,0.309,0.152,0.157,0.161,0.456,0.147,0.305,0.296,0.298,0.005,0.298,0.155,0.147,0.003,0.308,0.161,0.164,0.302,0.157,0.011,0.449,0.155,0.006,0.009,0.305,0.147,0.449,0.006,0.154,0.145
,0.006,0.16,0.456,0.297,0.012,0.15,0.154,0.295,0.308,0.011,0.012,0.301,0.164,0.152,0.147,0.154,0.314,0.302,0.314,0.153]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,2,18,19,5,20,21,22,23,24,4,25,26,27,28,29,9,30,31,7,32,33,34,35,36,37,38,39,3,40,41,1,42,43
,44,45,46,47,48,49,0,50,51,52,53,54,6,55,56,13,57,58,11,59,60,14,61,62,8,63,64,65,66,67,12,68,69,10,70,71,3,72,34,73,9,31,4,74,5,75,15,17,34,76,4
,77,27,29,1,78,2,79,5,21,44,80,15,81,2,19,6,82,27,83,22,24,11,84,9,85,7,33,12,86,47,87,0,51,8,88,6,89,13,58,10,90,11,91,14,62,52,92,44,93,47,49
,65,94,1,95,37,39,22,44,15,0,65,1,3,34,4,6,27,7,9,37,10,12,47,13,15,96,16,2,97,98,5,99,100,22,101,23,4,102,103,27,104,105,9,106,30,7,107,108,34,109,110
,37,111,38,3,112,113,1,114,115,44,116,45,47,117,118,0,119,120,52,121,53,6,122,123,13,124,125,11,126,59,14,127,128,8,129,130,65,131,66,12,132,133,10,134,135,3,41,136,137,37,9
,4,26,138,139,22,15,34,36,140,141,7,27,1,43,142,143,3,5,44,46,144,145,0,2,6,56,146,147,52,22,11,60,148,149,8,7,12,69,150,151,65,0,8,64,152,153,14,13,10,71,154
,155,12,14,52,54,156,157,13,47,65,67,158,159,10,37,22,52,44]
}
,{"name":"d8","id":"d8","billboardMode":0,"position":[0.2,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false
,"positions":[-0.0065,-0.0869,-0.0065,-0.0065,-0.0065,-0.0869,-0.0869,-0.0065,-0.0065,-0.0065,0.0869,-0.0065,-0.0869,0.0065,-0.0065,-0.0065,0.0065,-0.0869,0.0065,0.0869,0.0065,0.0869,0.0065,0.0065,0.0065,0.0065,0.0869,0.0065,-0.0869,-0.0065,0.0869,-0.0065,-0.0065,0.0065,-0.0065,-0.0869,-0.0065,0.0869,0.0065,-0.0065,0.0065,0.0869,-0.0869,0.0065,0.0065,-0.0065,-0.0869,0.0065,-0.0869,-0.0065,0.0065
,-0.0065,-0.0065,0.0869,0.0065,0.0869,-0.0065,0.0065,0.0065,-0.0869,0.0869,0.0065,-0.0065,0.0917,0,0,0.0883,0,0.0079,0.0917,0,0,0.0883,0.0079,0,0.0917,0,0,0.0883,0,-0.0079,0.0869,-0.0065,0.0065,0.0917,0,0,0.0883,-0.0079,0,-0.0917,0,0,-0.0883,0,-0.0079,-0.0917,0,0,-0.0883,0.0079,0
,-0.0917,0,0,-0.0883,0,0.0079,-0.0917,0,0,-0.0883,-0.0079,0,0.0065,-0.0065,0.0869,0,0,0.0917,0.0079,0,0.0883,0,0,0.0917,0,-0.0079,0.0883,0,0,0.0917,-0.0079,0,0.0883,0,0,0.0917,0,0.0079,0.0883,0,0,-0.0917,-0.0079,0,-0.0883,0,0,-0.0917,0,-0.0079,-0.0883
,0,0,-0.0917,0.0079,0,-0.0883,0,0,-0.0917,0,0.0079,-0.0883,0,0.0917,0,0,0.0883,0.0079,0,0.0917,0,-0.0079,0.0883,0,0,0.0917,0,0,0.0883,-0.0079,0,0.0917,0,0.0079,0.0883,0,0,-0.0917,0,0.0079,-0.0883,0,0,-0.0917,0,0,-0.0883,-0.0079,0,-0.0917,0
,-0.0079,-0.0883,0,0.0065,-0.0869,0.0065,0,-0.0917,0,0,-0.0883,0.0079,0.0883,0,0.0079,0.0079,0,0.0883,-0.0883,0,-0.0079,-0.0079,0,-0.0883,0,0.0079,0.0883,0.0883,-0.0079,0,0.0079,-0.0883,0,0,-0.0079,0.0883,-0.0883,-0.0079,0,0,0.0079,-0.0883,0.0883,0,-0.0079,0.0079,0,-0.0883,0,-0.0079,-0.0883
,-0.0883,0,0.0079,-0.0079,0,0.0883,0.0883,0.0079,0,0.0079,0.0883,0,-0.0883,0.0079,0,0.0883,0.0079,0,0.0883,0,-0.0079,0.0917,0,0,0.0883,-0.0079,0,0.0917,0,0,0.0883,0,0.0079,0.0917,0,0,-0.0883,0.0079,0,-0.0883,0,0.0079,-0.0917,0,0,-0.0883,-0.0079,0,-0.0917,0,0
,-0.0883,0,-0.0079,-0.0917,0,0,0,-0.0079,0.0883,-0.0079,0,0.0883,0,0,0.0917,0,0.0079,0.0883,0,0,0.0917,0.0079,0,0.0883,0,0,0.0917,0,-0.0079,-0.0883,0.0079,0,-0.0883,0,0,-0.0917,0,0.0079,-0.0883,0,0,-0.0917,-0.0079,0,-0.0883,0,0,-0.0917,-0.0079,0.0883,0
,0,0.0883,-0.0079,0,0.0917,0,0.0079,0.0883,0,0,0.0917,0,0,0.0883,0.0079,0,0.0917,0,0,-0.0883,-0.0079,-0.0079,-0.0883,0,0,-0.0917,0,0,-0.0883,0.0079,0,-0.0917,0,0.0079,-0.0883,0,0,-0.0917,0,0.0079,0,0.0883,-0.0079,0,-0.0883,0,0.0079,0.0883,0,0.0883,0.0079
,0.0079,-0.0883,0,0,-0.0079,0.0883,0,-0.0883,0.0079,-0.0079,-0.0883,0,0,0.0079,-0.0883,0,0.0883,-0.0079,0.0079,0,-0.0883,0,-0.0079,-0.0883,0,-0.0883,-0.0079,-0.0079,0,0.0883,0.0079,0.0883,0,-0.0079,0.0883,0]
,"normals":[-0.464,-0.754,-0.464,-0.464,-0.464,-0.754,-0.754,-0.464,-0.464,-0.464,0.754,-0.464,-0.754,0.464,-0.464,-0.464,0.464,-0.754,0.464,0.754,0.464,0.754,0.464,0.464,0.464,0.464,0.754,0.464,-0.754,-0.464,0.754,-0.464,-0.464,0.464,-0.464,-0.754,-0.464,0.754,0.464,-0.464,0.464,0.754,-0.754,0.464,0.464,-0.464,-0.754,0.464,-0.754,-0.464,0.464
,-0.464,-0.464,0.754,0.464,0.754,-0.464,0.464,0.464,-0.754,0.754,0.464,-0.464,1,0,0,0.823,0,0.568,1,0,0,0.823,0.568,0,1,0,0,0.823,0,-0.568,0.754,-0.464,0.464,1,0,0,0.823,-0.568,0,-1,0,0,-0.823,0,-0.568,-1,0,0,-0.823,0.568,0
,-1,0,0,-0.823,0,0.568,-1,0,0,-0.823,-0.568,0,0.464,-0.464,0.754,0,0,1,0.568,0,0.823,0,0,1,0,-0.568,0.823,0,0,1,-0.568,0,0.823,0,0,1,0,0.568,0.823,0,0,-1,-0.568,0,-0.823,0,0,-1,0,-0.568,-0.823
,0,0,-1,0.568,0,-0.823,0,0,-1,0,0.568,-0.823,0,1,0,0,0.823,0.568,0,1,0,-0.568,0.823,0,0,1,0,0,0.823,-0.568,0,1,0,0.568,0.823,0,0,-1,0,0.568,-0.823,0,0,-1,0,0,-0.823,-0.568,0,-1,0
,-0.568,-0.823,0,0.464,-0.754,0.464,0,-1,0,0,-0.823,0.568,0.823,0,0.568,0.568,0,0.823,-0.823,0,-0.568,-0.568,0,-0.823,0,0.568,0.823,0.823,-0.568,0,0.568,-0.823,0,0,-0.568,0.823,-0.823,-0.568,0,0,0.568,-0.823,0.823,0,-0.568,0.568,0,-0.823,0,-0.568,-0.823
,-0.823,0,0.568,-0.568,0,0.823,0.823,0.568,0,0.568,0.823,0,-0.823,0.568,0,0.823,0.568,0,0.823,0,-0.568,1,0,0,0.823,-0.568,0,1,0,0,0.823,0,0.568,1,0,0,-0.823,0.568,0,-0.823,0,0.568,-1,0,0,-0.823,-0.568,0,-1,0,0
,-0.823,0,-0.568,-1,0,0,0,-0.568,0.823,-0.568,0,0.823,0,0,1,0,0.568,0.823,0,0,1,0.568,0,0.823,0,0,1,0,-0.568,-0.823,0.568,0,-0.823,0,0,-1,0,0.568,-0.823,0,0,-1,-0.568,0,-0.823,0,0,-1,-0.568,0.823,0
,0,0.823,-0.568,0,1,0,0.568,0.823,0,0,1,0,0,0.823,0.568,0,1,0,0,-0.823,-0.568,-0.568,-0.823,0,0,-1,0,0,-0.823,0.568,0,-1,0,0.568,-0.823,0,0,-1,0,0.568,0,0.823,-0.568,0,-0.823,0,0.568,0.823,0,0.823,0.568
,0.568,-0.823,0,0,-0.568,0.823,0,-0.823,0.568,-0.568,-0.823,0,0,0.568,-0.823,0,0.823,-0.568,0.568,0,-0.823,0,-0.568,-0.823,0,-0.823,-0.568,-0.568,0,0.823,0.568,0.823,0,-0.568,0.823,0]
,"tangents":[-0.104,0.567,-0.817,1,0.109,0.815,-0.569,1,0.003,0.705,-0.709,1,-0.816,-0.568,-0.105,1,-0.569,-0.816,0.108,1,-0.709,-0.705,0.003,1,0.093,-0.563,0.821,1,-0.008,-0.7,0.714,1,-0.12,-0.811,0.573,1,0.708,0,0.707,1,0.569,0.108,0.815,1,0.817,-0.105,0.567,1,0.113,0.571
,-0.813,1,-0.1,0.818,-0.566,1,0.004,0.71,-0.704,1,-0.707,0,-0.707,1,-0.569,0.107,-0.816,1,-0.816,-0.106,-0.568,1,-0.819,0.565,0.099,1,-0.71,0.704,-0.004,1,-0.571,0.813,-0.114,1,0,-0.699,0.715,1,-0.339,-0.802,0.492,1,0,0.974,-0.225,1,-0.565,0.82,-0.093,1
,0,0.218,0.976,1,0.566,0.087,0.82,1,0.567,0.104,-0.817,1,0,0.214,-0.977,1,0.236,0.343,-0.909,1,0,-0.976,0.218,1,-0.238,-0.908,0.346,1,0,0.709,-0.705,1,0.335,0.486,-0.807,1,0,0.217,-0.976,1,-0.566,0.086,-0.82,1,0,0.703,-0.711,1,-0.331,0.48
,-0.813,1,0.815,-0.109,-0.569,1,0.976,-0.219,0,1,0.82,-0.087,-0.566,1,-0.976,-0.216,0,1,-0.907,-0.346,-0.239,1,-0.21,0.978,0,1,-0.341,0.91,-0.235,1,-0.232,-0.973,0,1,-0.1,-0.819,0.565,1,0.22,0.976,0,1,0.349,0.906,-0.241,1,0.977,-0.215,0,1
,0.908,-0.345,0.238,1,-0.71,0.704,0,1,-0.487,0.806,-0.336,1,-0.71,-0.704,0,1,-0.812,-0.48,-0.331,1,0.224,0,-0.975,1,0.092,0.565,-0.82,1,-0.977,0,-0.215,1,-0.82,-0.566,-0.083,1,-0.978,0,0.208,1,-0.912,0.233,0.338,1,0.201,0,0.98,1,0.335,-0.231
,0.914,1,0.706,0,0.708,1,0.483,0.333,0.81,1,-0.214,0,-0.977,1,-0.082,0.566,-0.82,1,-0.705,0,-0.709,1,-0.482,0.333,-0.811,1,0.708,0.001,-0.706,1,0.708,0,-0.706,1,0.81,-0.333,-0.483,1,0.566,0.085,-0.82,1,-0.362,-0.898,0.249,1,0.336,0.806,-0.487,1
,-0.486,-0.807,0.336,1,-0.081,0.82,-0.566,1,0.241,0.35,0.905,1,0.484,0.334,-0.809,1,0.904,-0.352,-0.243,1,-0.241,0.349,-0.906,1,-0.813,0.48,0.331,1,-0.245,0.902,-0.355,1,0.82,-0.086,0.566,1,0.091,0.82,-0.565,1,-0.332,0.812,-0.481,1,-0.82,-0.087,-0.566,1,0.328,-0.475
,0.817,1,-0.821,0.566,0.08,1,-0.566,-0.82,0.089,1,0.328,-0.475,0.817,1,-0.245,0.902,-0.355,1,0,0.974,-0.225,1,0.241,0.35,0.905,1,0,0.218,0.976,1,0.566,0.085,-0.82,1,0,0.214,-0.977,1,-0.566,-0.82,0.089,1,-0.332,0.812,-0.481,1,0,0.709,-0.705,1
,-0.241,0.349,-0.906,1,0,0.217,-0.976,1,0.336,0.806,-0.487,1,0,0.703,-0.711,1,0.904,-0.352,-0.243,1,-0.82,-0.087,-0.566,1,-0.976,-0.216,0,1,-0.081,0.82,-0.566,1,-0.21,0.978,0,1,-0.362,-0.898,0.249,1,-0.232,-0.973,0,1,0.091,0.82,-0.565,1,0.82,-0.086
,0.566,1,0.977,-0.215,0,1,-0.813,0.48,0.331,1,-0.71,0.704,0,1,-0.486,-0.807,0.336,1,-0.71,-0.704,0,1,0.353,0.244,-0.903,1,-0.907,-0.239,-0.347,1,-0.977,0,-0.215,1,-0.821,0.566,0.08,1,-0.978,0,0.208,1,0.073,-0.566,0.821,1,0.201,0,0.98,1
,0.809,-0.334,0.484,1,-0.346,0.239,-0.907,1,-0.214,0,-0.977,1,-0.808,-0.334,-0.485,1,-0.705,0,-0.709,1,0.484,0.334,-0.809,1,0.708,0,-0.706,1,-0.362,-0.898,0.249,1,-0.486,-0.807,0.336,1,-0.081,0.82,-0.566,1,0.073,-0.566,0.821,1,0.484,0.334,-0.809,1,0.904,-0.352
,-0.243,1,-0.808,-0.334,-0.485,1,-0.346,0.239,-0.907,1,-0.813,0.48,0.331,1,-0.907,-0.239,-0.347,1,0.82,-0.086,0.566,1,0.091,0.82,-0.565,1,0.809,-0.334,0.484,1,-0.82,-0.087,-0.566,1,-0.821,0.566,0.08,1,0.353,0.244,-0.903,1]
,"uvs":[0.639,0.27,0.768,0.271,0.703,0.383,0.716,0.418,0.846,0.418,0.781,0.53,0.485,0.549,0.548,0.436,0.614,0.547,0.781,0.287,0.846,0.399,0.717,0.399,0.69,0.399,0.561,0.4,0.625,0.288,0.704,0.435,0.769,0.547,0.64,0.547,0.692,0.418,0.628,0.531,0.562,0.419,0.547,0.424,0.554,0.432,0.552,0.413,0.562,0.411
,0.857,0.405,0.846,0.407,0.613,0.271,0.623,0.265,0.62,0.275,0.856,0.412,0.853,0.422,0.625,0.276,0.632,0.283,0.78,0.553,0.769,0.555,0.703,0.395,0.696,0.387,0.483,0.272,0.473,0.266,0.483,0.264,0.629,0.553,0.633,0.544,0.551,0.406,0.554,0.397,0.625,0.553,0.614,0.555,0.779,0.265,0.775,0.275,0.706,0.405
,0.71,0.396,0.628,0.543,0.621,0.535,0.781,0.542,0.774,0.535,0.701,0.405,0.691,0.407,0.706,0.412,0.716,0.41,0.702,0.412,0.699,0.422,0.474,0.555,0.478,0.546,0.781,0.275,0.788,0.283,0.628,0.264,0.638,0.263,0.704,0.423,0.711,0.431,0.548,0.384,0.548,0.396,0.542,0.388,0.613,0.264,0.621,0.544,0.71,0.387
,0.787,0.535,0.561,0.408,0.853,0.395,0.555,0.388,0.476,0.275,0.776,0.544,0.635,0.535,0.555,0.423,0.716,0.407,0.768,0.263,0.618,0.284,0.639,0.555,0.541,0.432,0.692,0.41,0.846,0.411,0.541,0.432,0.555,0.423,0.552,0.413,0.853,0.395,0.857,0.405,0.613,0.264,0.623,0.265,0.846,0.411,0.618,0.284,0.625,0.276
,0.776,0.544,0.78,0.553,0.71,0.387,0.703,0.395,0.476,0.275,0.639,0.555,0.629,0.553,0.561,0.408,0.551,0.406,0.621,0.544,0.625,0.553,0.768,0.263,0.716,0.407,0.706,0.405,0.635,0.535,0.628,0.543,0.787,0.535,0.781,0.542,0.697,0.396,0.709,0.422,0.706,0.412,0.692,0.41,0.702,0.412,0.484,0.557,0.474,0.555
,0.775,0.283,0.632,0.274,0.628,0.264,0.698,0.431,0.704,0.423,0.555,0.388,0.548,0.396,0.621,0.544,0.787,0.535,0.561,0.408,0.484,0.557,0.555,0.388,0.476,0.275,0.698,0.431,0.632,0.274,0.635,0.535,0.709,0.422,0.716,0.407,0.768,0.263,0.775,0.283,0.639,0.555,0.692,0.41,0.697,0.396]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,7,21,22,20,23,24,10,25,26,27,28,29,4,30,31,14,32,33,16,34,35,2,36,37,38,39,40,17,41,42
,13,43,44,8,45,46,1,47,48,11,49,50,19,51,52,5,53,54,12,55,56,3,57,58,18,59,60,6,61,62,9,63,64,0,65,66,15,67,68,69,70,71,27,40,72,73,7,22,2,48,74
,75,4,31,12,76,13,46,6,8,10,64,77,78,27,29,69,79,38,42,15,17,16,68,80,37,0,2,18,81,19,54,3,5,20,52,82,83,10,26,0,84,1,50,9,11,14,44,85,86,16,35
,7,62,87,88,20,24,4,58,89,33,12,14,69,38,27,7,90,21,20,91,92,10,93,94,27,95,96,4,97,30,14,98,99,16,100,101,2,102,103,38,104,39,17,105,106,13,107,108,8,109,110
,1,111,47,11,112,113,19,114,115,5,116,117,12,118,55,3,119,120,18,121,122,6,123,124,9,125,63,0,126,127,15,128,129,69,130,131,27,38,40,132,8,7,2,1,48,133,5,4,12,56,134
,46,135,6,10,9,64,136,69,27,69,71,137,42,138,15,16,15,68,37,139,0,18,60,140,54,141,3,20,19,52,142,11,10,0,66,143,50,144,9,14,13,44,145,17,16,7,6,62,146,18,20
,4,3,58,33,147,12]
}
,{"name":"d10","id":"d10","billboardMode":0,"position":[0,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false
,"positions":[-0.0562,-0.0133,0.0652,-0.0838,-0.0133,-0.0197,-0.0838,0.0037,0.0272,-0.0562,0.0133,-0.0652,-0.0838,0.0133,0.0197,-0.0838,-0.0037,-0.0272,0.0072,0.0133,0.0858,0.0794,0.0133,0.0333,0.0518,-0.0037,0.0713,-0.0794,0.0133,0.0333,-0.0072,0.0133,0.0858,-0.0518,-0.0037,0.0713,0.0446,0.0133,-0.0736,-0.0446,0.0133,-0.0736,0,-0.0037,-0.0881,-0.0794,-0.0133,-0.0333,-0.0072,-0.0133,-0.0858
,-0.0518,0.0037,-0.0713,0.0794,-0.0133,-0.0333,0.0072,-0.0133,-0.0858,0.0072,-0.0857,-0.0098,0.0838,-0.0133,-0.0197,0.0562,-0.0133,0.0652,0.0838,0.0037,0.0272,0.0446,-0.0133,0.0736,-0.0446,-0.0133,0.0736,0,0.0037,0.0881,0.0072,0.0857,0.0098,0,0.0915,0,0.0103,0.0868,0.0034,-0.0072,0.0857,0.0098,0,0.0915,0,0,0.0868,0.0109,-0.0116,0.0857,-0.0038
,0,0.0915,0,-0.0103,0.0868,0.0034,0,0.0857,-0.0122,0,0.0915,0,-0.0064,0.0868,-0.0088,0.0116,0.0857,-0.0038,0,0.0915,0,0.0064,0.0868,-0.0088,-0.0116,-0.0857,0.0038,0,-0.0915,0,-0.0103,-0.0868,-0.0034,0,-0.0857,0.0122,0,-0.0915,0,-0.0064,-0.0868,0.0088,0.0116,-0.0857,0.0038,0,-0.0915,0,0.0064,-0.0868,0.0088
,0,-0.0915,0,0.0103,-0.0868,-0.0034,-0.0072,-0.0857,-0.0098,0,-0.0915,0,0,-0.0868,-0.0109,0.0525,-0.0103,0.0722,0.0562,-0.008,0.0687,0.0525,-0.0103,0.0722,0.0511,-0.0148,0.0704,0.0525,-0.0103,0.0722,0.048,-0.008,0.0747,0.0849,0.0103,0.0276,0.0827,0.008,0.0322,0.0838,0.0133,0.0197,0.0849,0.0103,0.0276,0.0827,0.0148,0.0269,0.0849,0.0103,0.0276
,0.0859,0.008,0.0226,0,0.0103,0.0893,0,0.0148,0.087,0,0.0103,0.0893,0.0051,0.008,0.0886,0,0.0103,0.0893,-0.0051,0.008,0.0886,0.0525,0.0103,-0.0722,0.0511,0.0148,-0.0704,0.0518,0.0037,-0.0713,0.0525,0.0103,-0.0722,0.048,0.008,-0.0747,0.0562,0.0133,-0.0652,0.0525,0.0103,-0.0722,0.0562,0.008,-0.0687,0.0849,-0.0103,-0.0276,0.0827,-0.0148,-0.0269
,0.0838,-0.0037,-0.0272,0.0849,-0.0103,-0.0276,0.0859,-0.008,-0.0226,0.0849,-0.0103,-0.0276,0.0827,-0.008,-0.0322,-0.0525,0.0103,-0.0722,-0.0511,0.0148,-0.0704,-0.0525,0.0103,-0.0722,-0.0562,0.008,-0.0687,-0.0525,0.0103,-0.0722,-0.048,0.008,-0.0747,0,-0.0103,-0.0893,0,-0.0148,-0.087,0,-0.0103,-0.0893,0.0051,-0.008,-0.0886,0,-0.0103,-0.0893,-0.0051,-0.008,-0.0886
,-0.0849,-0.0103,-0.0276,-0.0827,-0.008,-0.0322,-0.0849,-0.0103,-0.0276,-0.0859,-0.008,-0.0226,-0.0849,-0.0103,-0.0276,-0.0827,-0.0148,-0.0269,-0.0849,0.0103,0.0276,-0.0859,0.008,0.0226,-0.0849,0.0103,0.0276,-0.0827,0.0148,0.0269,-0.0849,0.0103,0.0276,-0.0827,0.008,0.0322,-0.0525,-0.0103,0.0722,-0.0511,-0.0148,0.0704,-0.0525,-0.0103,0.0722,-0.0562,-0.008,0.0687,-0.0525,-0.0103,0.0722
,-0.048,-0.008,0.0747,-0.0064,-0.0868,0.0088,-0.0511,-0.0148,0.0704,0.0064,-0.0868,0.0088,0.0511,-0.0148,0.0704,0.0103,0.0868,0.0034,0.0827,0.0148,0.0269,0.048,-0.008,0.0747,0.0064,0.0868,-0.0088,0.0511,0.0148,-0.0704,0.0859,0.008,0.0226,0.0562,0.008,-0.0687,0.0827,-0.008,-0.0322,0.048,0.008,-0.0747,-0.0562,0.008,-0.0687,-0.0103,0.0868,0.0034,-0.0827,0.0148,0.0269
,-0.0051,0.008,0.0886,-0.048,-0.008,0.0747,0,0.0868,0.0109,0,0.0148,0.087,0.0562,-0.008,0.0687,0.0827,0.008,0.0322,-0.048,0.008,-0.0747,-0.0051,-0.008,-0.0886,-0.0064,0.0868,-0.0088,-0.0511,0.0148,-0.0704,0.0103,-0.0868,-0.0034,0.0827,-0.0148,-0.0269,-0.0827,0.008,0.0322,0,-0.0868,-0.0109,0,-0.0148,-0.087,-0.0103,-0.0868,-0.0034,-0.0827,-0.0148,-0.0269
,-0.0859,-0.008,-0.0226,-0.0859,0.008,0.0226,0,0.0868,0.0109,-0.0103,0.0868,0.0034,0,0.0915,0,-0.0064,0.0868,-0.0088,0,0.0915,0,0.0064,0.0868,-0.0088,0,0.0915,0,0.0103,0.0868,0.0034,0,0.0915,0,-0.0064,-0.0868,0.0088,0.0064,-0.0868,0.0088,0,-0.0915,0,0.0103,-0.0868,-0.0034,0,-0.0915,0,0,-0.0868,-0.0109
,0,-0.0915,0,-0.0103,-0.0868,-0.0034,0,-0.0915,0,0.0511,-0.0148,0.0704,0.048,-0.008,0.0747,0.0525,-0.0103,0.0722,0.0562,-0.008,0.0687,0.0525,-0.0103,0.0722,0.0827,0.0148,0.0269,0.0859,0.008,0.0226,0.0849,0.0103,0.0276,0.0827,0.008,0.0322,0.0849,0.0103,0.0276,0.0051,0.008,0.0886,-0.0051,0.008,0.0886,0,0.0103,0.0893,0,0.0148,0.087
,0,0.0103,0.0893,0.048,0.008,-0.0747,0.0562,0.008,-0.0687,0.0525,0.0103,-0.0722,0.0511,0.0148,-0.0704,0.0525,0.0103,-0.0722,0.0859,-0.008,-0.0226,0.0827,-0.008,-0.0322,0.0849,-0.0103,-0.0276,0.0827,-0.0148,-0.0269,0.0849,-0.0103,-0.0276,-0.0562,0.008,-0.0687,-0.048,0.008,-0.0747,-0.0525,0.0103,-0.0722,-0.0511,0.0148,-0.0704,-0.0525,0.0103,-0.0722,0.0051,-0.008,-0.0886
,-0.0051,-0.008,-0.0886,0,-0.0103,-0.0893,0,-0.0148,-0.087,0,-0.0103,-0.0893,-0.0859,-0.008,-0.0226,-0.0827,-0.0148,-0.0269,-0.0849,-0.0103,-0.0276,-0.0827,-0.008,-0.0322,-0.0849,-0.0103,-0.0276,-0.0827,0.0148,0.0269,-0.0827,0.008,0.0322,-0.0849,0.0103,0.0276,-0.0859,0.008,0.0226,-0.0849,0.0103,0.0276,-0.0562,-0.008,0.0687,-0.048,-0.008,0.0747,-0.0525,-0.0103,0.0722
,-0.0511,-0.0148,0.0704,-0.0525,-0.0103,0.0722,-0.0511,-0.0148,0.0704,0.0511,-0.0148,0.0704,0.0827,0.0148,0.0269,0.0051,0.008,0.0886,0.0511,0.0148,-0.0704,0.0859,-0.008,-0.0226,0.0562,0.008,-0.0687,0.0827,-0.008,-0.0322,0.0051,-0.008,-0.0886,-0.0827,-0.008,-0.0322,-0.0827,0.0148,0.0269,-0.0051,0.008,0.0886,-0.048,-0.008,0.0747,0,0.0148,0.087,0.0562,-0.008,0.0687
,0.0827,0.008,0.0322,-0.048,0.008,-0.0747,-0.0051,-0.008,-0.0886,-0.0511,0.0148,-0.0704,0.0827,-0.0148,-0.0269,-0.0562,-0.008,0.0687,0,-0.0148,-0.087,-0.0827,-0.0148,-0.0269,-0.0859,-0.008,-0.0226,-0.0859,0.008,0.0226]
,"normals":[-0.739,-0.526,0.42,-0.845,-0.526,0.095,-0.868,-0.41,0.282,-0.739,0.526,-0.42,-0.845,0.526,-0.095,-0.868,0.41,-0.282,0.351,0.526,0.774,0.628,0.526,0.573,0.536,0.41,0.738,-0.628,0.526,0.573,-0.351,0.526,0.774,-0.536,0.41,0.738,0.171,0.526,-0.833,-0.171,0.526,-0.833,0,0.41,-0.912,-0.628,-0.526,-0.573,-0.351,-0.526,-0.774
,-0.536,-0.41,-0.738,0.628,-0.526,-0.573,0.351,-0.526,-0.774,0.361,-0.789,-0.497,0.845,-0.526,0.095,0.739,-0.526,0.42,0.868,-0.41,0.282,0.171,-0.526,0.833,-0.171,-0.526,0.833,0,-0.41,0.912,0.361,0.789,0.497,0,1,0,0.529,0.831,0.172,-0.361,0.789,0.497,0,1,0,0,0.831,0.556,-0.585,0.789,-0.19
,0,1,0,-0.529,0.831,0.172,0,0.789,-0.615,0,1,0,-0.327,0.831,-0.45,0.585,0.789,-0.19,0,1,0,0.327,0.831,-0.45,-0.585,-0.789,0.19,0,-1,0,-0.529,-0.831,-0.172,0,-0.789,0.615,0,-1,0,-0.327,-0.831,0.45,0.585,-0.789,0.19,0,-1,0,0.327,-0.831,0.45
,0,-1,0,0.529,-0.831,-0.172,-0.361,-0.789,-0.497,0,-1,0,0,-0.831,-0.556,0.575,-0.203,0.792,0.766,-0.025,0.643,0.575,-0.203,0.792,0.47,-0.602,0.646,0.575,-0.203,0.792,0.375,-0.025,0.927,0.931,0.203,0.303,0.848,0.025,0.529,0.845,0.526,-0.095,0.931,0.203,0.303,0.76,0.602,0.247,0.931,0.203,0.303
,0.997,0.025,0.07,0,0.203,0.979,0,0.602,0.799,0,0.203,0.979,0.241,0.025,0.97,0,0.203,0.979,-0.241,0.025,0.97,0.575,0.203,-0.792,0.47,0.602,-0.646,0.536,-0.41,-0.738,0.575,0.203,-0.792,0.375,0.025,-0.927,0.739,0.526,-0.42,0.575,0.203,-0.792,0.766,0.025,-0.643,0.931,-0.203,-0.303,0.76,-0.602,-0.247
,0.868,0.41,-0.282,0.931,-0.203,-0.303,0.997,-0.025,-0.07,0.931,-0.203,-0.303,0.848,-0.025,-0.529,-0.575,0.203,-0.792,-0.47,0.602,-0.646,-0.575,0.203,-0.792,-0.766,0.025,-0.643,-0.575,0.203,-0.792,-0.375,0.025,-0.927,0,-0.203,-0.979,0,-0.602,-0.799,0,-0.203,-0.979,0.241,-0.025,-0.97,0,-0.203,-0.979,-0.241,-0.025,-0.97
,-0.931,-0.203,-0.303,-0.848,-0.025,-0.529,-0.931,-0.203,-0.303,-0.997,-0.025,-0.07,-0.931,-0.203,-0.303,-0.76,-0.602,-0.247,-0.931,0.203,0.303,-0.997,0.025,0.07,-0.931,0.203,0.303,-0.76,0.602,0.247,-0.931,0.203,0.303,-0.848,0.025,0.529,-0.575,-0.203,0.792,-0.47,-0.602,0.646,-0.575,-0.203,0.792,-0.766,-0.025,0.643,-0.575,-0.203,0.792
,-0.375,-0.025,0.927,-0.327,-0.831,0.45,-0.47,-0.602,0.646,0.327,-0.831,0.45,0.47,-0.602,0.646,0.529,0.831,0.172,0.76,0.602,0.247,0.375,-0.025,0.927,0.327,0.831,-0.45,0.47,0.602,-0.646,0.997,0.025,0.07,0.766,0.025,-0.643,0.848,-0.025,-0.529,0.375,0.025,-0.927,-0.766,0.025,-0.643,-0.529,0.831,0.172,-0.76,0.602,0.247
,-0.241,0.025,0.97,-0.375,-0.025,0.927,0,0.831,0.556,0,0.602,0.799,0.766,-0.025,0.643,0.848,0.025,0.529,-0.375,0.025,-0.927,-0.241,-0.025,-0.97,-0.327,0.831,-0.45,-0.47,0.602,-0.646,0.529,-0.831,-0.172,0.76,-0.602,-0.247,-0.848,0.025,0.529,0,-0.831,-0.556,0,-0.602,-0.799,-0.529,-0.831,-0.172,-0.76,-0.602,-0.247
,-0.997,-0.025,-0.07,-0.997,0.025,0.07,0,0.831,0.556,-0.529,0.831,0.172,0,1,0,-0.327,0.831,-0.45,0,1,0,0.327,0.831,-0.45,0,1,0,0.529,0.831,0.172,0,1,0,-0.327,-0.831,0.45,0.327,-0.831,0.45,0,-1,0,0.529,-0.831,-0.172,0,-1,0,0,-0.831,-0.556
,0,-1,0,-0.529,-0.831,-0.172,0,-1,0,0.47,-0.602,0.646,0.375,-0.025,0.927,0.575,-0.203,0.792,0.766,-0.025,0.643,0.575,-0.203,0.792,0.76,0.602,0.247,0.997,0.025,0.07,0.931,0.203,0.303,0.848,0.025,0.529,0.931,0.203,0.303,0.241,0.025,0.97,-0.241,0.025,0.97,0,0.203,0.979,0,0.602,0.799
,0,0.203,0.979,0.375,0.025,-0.927,0.766,0.025,-0.643,0.575,0.203,-0.792,0.47,0.602,-0.646,0.575,0.203,-0.792,0.997,-0.025,-0.07,0.848,-0.025,-0.529,0.931,-0.203,-0.303,0.76,-0.602,-0.247,0.931,-0.203,-0.303,-0.766,0.025,-0.643,-0.375,0.025,-0.927,-0.575,0.203,-0.792,-0.47,0.602,-0.646,-0.575,0.203,-0.792,0.241,-0.025,-0.97
,-0.241,-0.025,-0.97,0,-0.203,-0.979,0,-0.602,-0.799,0,-0.203,-0.979,-0.997,-0.025,-0.07,-0.76,-0.602,-0.247,-0.931,-0.203,-0.303,-0.848,-0.025,-0.529,-0.931,-0.203,-0.303,-0.76,0.602,0.247,-0.848,0.025,0.529,-0.931,0.203,0.303,-0.997,0.025,0.07,-0.931,0.203,0.303,-0.766,-0.025,0.643,-0.375,-0.025,0.927,-0.575,-0.203,0.792
,-0.47,-0.602,0.646,-0.575,-0.203,0.792,-0.47,-0.602,0.646,0.47,-0.602,0.646,0.76,0.602,0.247,0.241,0.025,0.97,0.47,0.602,-0.646,0.997,-0.025,-0.07,0.766,0.025,-0.643,0.848,-0.025,-0.529,0.241,-0.025,-0.97,-0.848,-0.025,-0.529,-0.76,0.602,0.247,-0.241,0.025,0.97,-0.375,-0.025,0.927,0,0.602,0.799,0.766,-0.025,0.643
,0.848,0.025,0.529,-0.375,0.025,-0.927,-0.241,-0.025,-0.97,-0.47,0.602,-0.646,0.76,-0.602,-0.247,-0.766,-0.025,0.643,0,-0.602,-0.799,-0.76,-0.602,-0.247,-0.997,-0.025,-0.07,-0.997,0.025,0.07]
,"tangents":[0.151,0.479,0.865,1,-0.078,0.296,0.952,1,0.102,0.408,0.907,1,-0.44,0.095,0.893,1,-0.176,-0.106,0.979,1,-0.311,-0.006,0.95,1,-0.674,0.716,-0.181,1,-0.577,0.809,-0.11,1,-0.571,0.82,-0.04,1,0.042,-0.712,0.701,1,0.081,-0.807,0.585,1,0.145,-0.817,0.558,1,-0.42,0.804
,0.422,1,-0.456,0.707,0.541,1,-0.456,0.812,0.364,1,0.776,-0.48,-0.409,1,0.929,-0.298,-0.219,1,0.831,-0.41,-0.376,1,0.512,-0.275,0.814,1,0.648,-0.46,0.607,1,0.532,-0.264,0.805,1,0.064,0.275,0.959,1,-0.168,0.46,0.872,1,-0.114,0.387,0.915,1,0.897,-0.266,-0.353,1
,0.886,-0.452,-0.103,1,0.91,-0.378,-0.17,1,-0.768,0.554,-0.321,1,-0.896,0,-0.444,1,-0.769,0.555,-0.318,1,-0.06,-0.552,0.832,1,-0.136,0,0.991,1,-0.057,-0.555,0.83,1,-0.314,-0.004,0.949,1,-0.315,0,0.949,1,-0.137,-0.283,0.949,1,-0.451,0.549,0.704,1,-0.483,0
,0.876,1,-0.404,0.307,0.862,1,0.602,-0.264,0.754,1,0.664,0,0.748,1,0.766,0.046,0.641,1,-0.064,0.278,0.958,1,-0.121,0,0.993,1,-0.263,-0.032,0.964,1,0.908,-0.258,-0.33,1,0.921,0,-0.389,1,0.865,-0.454,-0.211,1,0.043,0.264,0.964,1,0.096,0,0.995,1
,-0.056,0.458,0.887,1,0.507,0,0.862,1,0.374,0.047,0.926,1,0.931,-0.279,-0.234,1,0.982,0,-0.19,1,0.998,0.031,-0.046,1,-0.522,0.654,0.547,1,-0.52,0.564,0.641,1,0.776,-0.17,-0.607,1,0.786,-0.048,-0.616,1,-0.254,0.876,0.41,1,-0.47,0.856,0.213,1,-0.233,0.97
,0.066,1,-0.159,0.965,0.21,1,0.377,-0.461,0.803,1,-0.1,-0.655,0.749,1,0.224,-0.598,0.769,1,-0.361,0.407,0.839,1,-0.074,0.357,0.931,1,-0.667,0.73,-0.152,1,-0.728,0.548,-0.413,1,0.914,-0.397,0.083,1,0.912,-0.347,-0.218,1,0.143,-0.969,0.201,1,0.257,-0.962,0.089,1
,-0.244,0.967,0.071,1,-0.411,0.797,0.443,1,0.63,-0.387,0.673,1,0.786,-0.407,0.466,1,0.82,-0.475,0.319,1,0.616,-0.276,0.738,1,0.817,-0.182,0.547,1,0.623,-0.28,0.731,1,0.339,0.181,0.923,1,0.349,0.057,0.935,1,0.445,-0.388,0.807,1,0.2,-0.408,0.891,1,0.05,-0.476
,0.878,1,0.268,-0.181,0.946,1,0.503,-0.279,0.818,1,-0.752,0.25,0.61,1,-0.619,0.298,0.727,1,0.674,-0.431,-0.6,1,0.547,-0.5,-0.671,1,-0.463,0.717,0.521,1,-0.557,0.793,0.247,1,0.744,-0.654,0.136,1,0.663,-0.598,0.45,1,-0.465,0.867,-0.18,1,-0.375,0.919,-0.117,1
,0.977,-0.208,0.043,1,0.926,-0.305,-0.223,1,-0.308,-0.006,0.951,1,-0.53,0.055,0.846,1,-0.343,0.206,0.917,1,-0.074,0.303,0.95,1,0.357,-0.675,-0.645,1,0.637,-0.613,-0.468,1,0.246,-0.263,0.933,1,0.065,-0.156,0.986,1,0.065,-0.725,0.686,1,-0.162,-0.543,0.824,1,0.363,0.429
,0.827,1,0.47,0.498,0.729,1,0.505,0.674,0.54,1,0.25,0.611,0.751,1,0.474,-0.872,0.12,1,0.353,-0.852,0.387,1,0.687,-0.645,0.334,1,0.776,-0.555,0.299,1,0.032,0.466,0.884,1,0.806,-0.592,0.034,1,0.852,0.053,-0.521,1,-0.272,0.598,0.754,1,0.477,-0.458,0.75,1
,-0.588,0.798,-0.135,1,0.891,-0.268,-0.367,1,-0.451,0.555,0.699,1,0.833,-0.058,0.551,1,-0.044,-0.565,0.824,1,0.607,-0.357,0.709,1,0.487,-0.358,0.797,1,-0.271,0.959,-0.084,1,-0.634,0.144,0.76,1,-0.19,-0.313,0.931,1,0.065,-0.307,0.949,1,0.856,-0.465,0.225,1,0.362,-0.924
,0.121,1,-0.822,0.317,-0.474,1,0.061,-0.797,0.6,1,-0.222,0.928,0.301,1,-0.476,0.475,0.74,1,0.853,-0.382,-0.355,1,-0.522,0.846,0.108,1,-0.457,0.277,0.845,1,-0.362,0.536,0.762,1,0.242,-0.047,0.969,1,0.267,-0.057,0.962,1,0.301,-0.8,0.519,1,0.567,-0.458,0.685,1
,0.995,-0.08,0.06,1,0.832,-0.467,-0.301,1,-0.364,0.078,0.928,1,-0.068,-0.067,0.995,1,0.074,0.38,0.922,1,-0.822,0.317,-0.474,1,-0.19,-0.313,0.931,1,-0.136,0,0.991,1,-0.457,0.277,0.845,1,-0.315,0,0.949,1,-0.451,0.555,0.699,1,-0.483,0,0.876,1,0.477,-0.458
,0.75,1,0.664,0,0.748,1,0.032,0.466,0.884,1,0.852,0.053,-0.521,1,0.921,0,-0.389,1,0.242,-0.047,0.969,1,0.096,0,0.995,1,0.567,-0.458,0.685,1,0.507,0,0.862,1,0.832,-0.467,-0.301,1,0.982,0,-0.19,1,-0.272,0.598,0.754,1,0.891,-0.268,-0.367,1
,0.776,-0.17,-0.607,1,-0.222,0.928,0.301,1,-0.254,0.876,0.41,1,-0.588,0.798,-0.135,1,-0.044,-0.565,0.824,1,-0.1,-0.655,0.749,1,-0.476,0.475,0.74,1,-0.361,0.407,0.839,1,-0.58,0.805,0.124,1,0.856,-0.465,0.225,1,0.914,-0.397,0.083,1,0.061,-0.797,0.6,1,0.143,-0.969
,0.201,1,-0.271,0.959,-0.084,1,0.607,-0.357,0.709,1,0.786,-0.407,0.466,1,0.833,-0.058,0.551,1,0.817,-0.182,0.547,1,0.074,0.279,0.958,1,0.487,-0.358,0.797,1,0.2,-0.408,0.891,1,0.267,-0.057,0.962,1,0.268,-0.181,0.946,1,-0.634,0.144,0.76,1,0.853,-0.382,-0.355,1
,0.674,-0.431,-0.6,1,-0.362,0.536,0.762,1,-0.463,0.717,0.521,1,0.798,-0.564,0.213,1,-0.522,0.846,0.108,1,-0.465,0.867,-0.18,1,0.995,-0.08,0.06,1,0.977,-0.208,0.043,1,-0.068,-0.067,0.995,1,-0.364,0.078,0.928,1,-0.343,0.206,0.917,1,0.441,-0.588,-0.678,1,0.357,-0.675
,-0.645,1,0.065,-0.307,0.949,1,0.301,-0.8,0.519,1,0.065,-0.725,0.686,1,0.074,0.38,0.922,1,0.363,0.429,0.827,1,0.51,0.586,0.63,1,0.362,-0.924,0.121,1,0.474,-0.872,0.12,1,0.806,-0.592,0.034,1,0.687,-0.645,0.334,1,0.806,-0.592,0.034,1,-0.272,0.598,0.754,1
,-0.588,0.798,-0.135,1,-0.58,0.805,0.124,1,0.833,-0.058,0.551,1,0.074,0.279,0.958,1,0.607,-0.357,0.709,1,0.487,-0.358,0.797,1,0.798,-0.564,0.213,1,0.441,-0.588,-0.678,1,0.065,-0.307,0.949,1,0.856,-0.465,0.225,1,0.362,-0.924,0.121,1,0.061,-0.797,0.6,1,-0.222,0.928
,0.301,1,-0.476,0.475,0.74,1,0.853,-0.382,-0.355,1,-0.522,0.846,0.108,1,-0.362,0.536,0.762,1,0.267,-0.057,0.962,1,0.51,0.586,0.63,1,0.995,-0.08,0.06,1,-0.364,0.078,0.928,1,-0.068,-0.067,0.995,1,0.074,0.38,0.922,1]
,"uvs":[0.333,0.617,0.245,0.572,0.3,0.572,0.159,0.896,0.258,0.895,0.209,0.921,0.062,0.451,0.019,0.54,0.018,0.484,0.608,0.858,0.651,0.769,0.652,0.825,0.018,0.321,0.062,0.409,0.017,0.376,0.246,0.706,0.334,0.751,0.279,0.751,0.107,0.749,0.018,0.706,0.108,0.635,0.129,0.749,0.217,0.706,0.184,0.75,0.225,0.572
,0.135,0.614,0.169,0.57,0.134,0.539,0.147,0.545,0.134,0.547,0.536,0.769,0.523,0.762,0.536,0.761,0.208,0.793,0.208,0.778,0.215,0.789,0.132,0.319,0.145,0.312,0.138,0.323,0.012,0.687,0.005,0.7,0.004,0.688,0.242,0.686,0.235,0.699,0.234,0.686,0.224,0.686,0.23,0.699,0.219,0.692,0.128,0.635,0.122,0.622
,0.133,0.629,0.114,0.621,0.116,0.634,0.338,0.637,0.344,0.624,0.346,0.637,0.227,0.704,0.224,0.71,0.232,0.566,0.233,0.572,0.011,0.481,0.016,0.477,0.014,0.547,0.012,0.541,0.101,0.616,0.11,0.618,0.106,0.622,0.187,0.757,0.181,0.757,0.064,0.441,0.068,0.445,0.166,0.563,0.173,0.563,0.656,0.762,0.658,0.768
,0.012,0.313,0.017,0.312,0.052,0.75,0.049,0.756,0.045,0.751,0.012,0.573,0.005,0.567,0.011,0.566,0.121,0.755,0.12,0.749,0.068,0.572,0.071,0.565,0.075,0.57,0.115,0.755,0.109,0.756,0.15,0.898,0.152,0.893,0.275,0.757,0.272,0.752,0.064,0.418,0.058,0.415,0.009,0.704,0.013,0.699,0.011,0.379,0.011,0.373
,0.341,0.757,0.335,0.758,0.209,0.928,0.203,0.925,0.238,0.566,0.244,0.565,0.237,0.703,0.241,0.7,0.267,0.897,0.262,0.901,0.605,0.867,0.601,0.863,0.304,0.565,0.308,0.571,0.342,0.619,0.338,0.623,0.658,0.828,0.653,0.832,0.126,0.616,0.129,0.61,0.246,0.692,0.13,0.62,0.232,0.686,0.223,0.7,0.016,0.694
,0.019,0.548,0.226,0.565,0.132,0.311,0.004,0.573,0.107,0.613,0.055,0.756,0.064,0.565,0.011,0.319,0.155,0.902,0.53,0.774,0.266,0.892,0.162,0.568,0.658,0.821,0.14,0.534,0.651,0.761,0.011,0.488,0.191,0.752,0.282,0.758,0.016,0.383,0.201,0.789,0.068,0.414,0.12,0.635,0.116,0.749,0.611,0.864,0.103,0.628
,0.342,0.752,0.333,0.631,0.237,0.571,0.215,0.925,0.297,0.565,0.14,0.534,0.53,0.774,0.523,0.762,0.201,0.789,0.208,0.778,0.132,0.311,0.145,0.312,0.016,0.694,0.005,0.7,0.246,0.692,0.232,0.686,0.23,0.699,0.12,0.635,0.122,0.622,0.103,0.628,0.114,0.621,0.333,0.631,0.344,0.624,0.223,0.7,0.226,0.565
,0.232,0.566,0.011,0.488,0.011,0.481,0.019,0.548,0.107,0.613,0.11,0.618,0.191,0.752,0.187,0.757,0.058,0.444,0.162,0.568,0.166,0.563,0.651,0.761,0.656,0.762,0.011,0.319,0.055,0.756,0.049,0.756,0.004,0.573,0.005,0.567,0.127,0.756,0.064,0.565,0.071,0.565,0.116,0.749,0.115,0.755,0.155,0.902,0.282,0.758
,0.275,0.757,0.068,0.414,0.064,0.418,0.012,0.709,0.016,0.383,0.011,0.379,0.342,0.752,0.341,0.757,0.215,0.925,0.237,0.571,0.238,0.566,0.24,0.709,0.237,0.703,0.266,0.892,0.611,0.864,0.605,0.867,0.297,0.565,0.304,0.565,0.339,0.614,0.658,0.821,0.658,0.828,0.13,0.62,0.126,0.616,0.13,0.62,0.223,0.7
,0.019,0.548,0.058,0.444,0.004,0.573,0.127,0.756,0.055,0.756,0.064,0.565,0.012,0.709,0.24,0.709,0.266,0.892,0.162,0.568,0.658,0.821,0.651,0.761,0.011,0.488,0.191,0.752,0.282,0.758,0.016,0.383,0.068,0.414,0.116,0.749,0.339,0.614,0.342,0.752,0.237,0.571,0.215,0.925,0.297,0.565]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50
,20,51,52,53,54,55,22,56,57,24,58,59,8,60,61,7,62,63,64,65,66,23,67,68,6,69,70,26,71,72,10,73,74,12,75,76,77,78,79,80,81,82,21,83,84,85,86,87,18,88,89
,3,90,91,17,92,93,13,94,95,19,96,97,14,98,99,16,100,101,5,102,103,1,104,105,15,106,107,4,108,109,9,110,111,2,112,113,0,114,115,11,116,117,25,118,119,42,115,120,121,45,47
,45,59,122,123,48,50,39,66,124,125,27,29,24,72,126,61,6,8,36,76,127,128,39,41,64,87,129,68,21,23,18,130,77,131,80,82,12,99,132,79,19,77,3,103,133,93,15,17,30,111,134
,135,33,35,25,136,26,137,10,74,27,70,138,139,30,32,7,140,8,141,22,57,16,142,17,143,13,95,33,91,144,145,36,38,48,84,146,147,20,52,9,117,148,113,0,2,20,97,149,150,53,55
,53,107,151,152,42,44,4,153,5,154,1,105,64,80,85,0,42,1,3,33,4,6,27,7,9,30,10,12,36,13,15,53,16,18,77,19,21,48,22,24,45,25,27,155,28,30,156,157,33,158,159
,36,160,161,39,162,163,42,164,43,45,165,166,48,167,168,20,169,170,53,171,172,22,173,56,24,174,175,8,176,177,7,178,62,64,179,180,23,181,182,6,183,69,26,184,185,10,186,187,12,188,75
,77,189,190,80,191,192,21,193,83,85,194,195,18,196,197,3,198,90,17,199,200,13,201,202,19,203,96,14,204,205,16,206,207,5,208,102,1,209,210,15,211,212,4,213,108,9,214,215,2,216,217
,0,218,114,11,219,220,25,221,222,42,0,115,223,25,45,45,24,59,224,22,48,39,64,66,225,7,27,24,26,72,61,226,6,36,12,76,227,80,39,64,85,87,68,228,21,18,89,229,230,85,80
,12,14,99,79,231,19,3,5,103,93,232,15,30,9,111,233,4,33,25,119,234,235,11,10,27,6,70,236,10,30,7,63,237,238,23,22,16,101,239,240,14,13,33,3,91,241,13,36,48,21,84
,242,18,20,9,11,117,113,243,0,20,19,97,244,16,53,53,15,107,245,1,42,4,109,246,247,2,1,64,39,80]
}
,{"name":"d12","id":"d12","billboardMode":0,"position":[-0.2,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false
,"positions":[-0.0593,0.0483,-0.0551,-0.0892,-0.0299,-0.0068,-0.0593,-0.0483,-0.0551,0.0483,-0.0551,-0.0593,-0.0299,-0.0068,-0.0892,-0.0483,-0.0551,-0.0593,0.0409,0,-0.085,0.0892,-0.0299,-0.0068,0.0892,0.0299,-0.0068,-0.0551,-0.0593,0.0483,-0.0068,-0.0892,-0.0299,-0.0551,-0.0593,-0.0483,-0.0892,0.0299,0.0068,-0.0593,0.0483,0.0551,-0.0409,0,0.085,0,-0.085,0.0409,-0.0299,-0.0068,0.0892
,0.0299,-0.0068,0.0892,-0.085,0.0409,0,-0.0551,0.0593,-0.0483,-0.0068,0.0892,-0.0299,-0.0299,0.0068,0.0892,0,0.085,0.0409,0.0483,0.0551,0.0593,0.0299,0.0068,-0.0892,0,0.085,-0.0409,-0.0483,0.0551,-0.0593,0.0551,0.0593,-0.0483,0.085,0.0409,0,0.0551,0.0593,0.0483,0.0551,-0.0593,0.0483,0.085,-0.0409,0,0.0551,-0.0593,-0.0483,0.0557,0.0557,0.0557
,0.0547,0.0523,0.0586,0.0557,0.0557,0.0557,0.0523,0.0586,0.0547,0.0593,0.0483,0.0551,0.0557,0.0557,0.0557,0.0586,0.0547,0.0523,0.0557,-0.0557,0.0557,0.0586,-0.0547,0.0523,0.0483,-0.0551,0.0593,0.0557,-0.0557,0.0557,0.0523,-0.0586,0.0547,0.0593,-0.0483,0.0551,0.0557,-0.0557,0.0557,0.0547,-0.0523,0.0586,0.0483,0.0551,-0.0593,0.0557,0.0557,-0.0557,0.0523,0.0586,-0.0547
,0.0593,0.0483,-0.0551,0.0557,0.0557,-0.0557,0.0547,0.0523,-0.0586,0.0557,0.0557,-0.0557,0.0586,0.0547,-0.0523,0.0557,-0.0557,-0.0557,0.0523,-0.0586,-0.0547,0.0593,-0.0483,-0.0551,0.0557,-0.0557,-0.0557,0.0586,-0.0547,-0.0523,0.0557,-0.0557,-0.0557,0.0547,-0.0523,-0.0586,-0.0551,0.0593,0.0483,-0.0557,0.0557,0.0557,-0.0586,0.0547,0.0523,-0.0483,0.0551,0.0593,-0.0557,0.0557,0.0557
,-0.0523,0.0586,0.0547,-0.0557,0.0557,0.0557,-0.0547,0.0523,0.0586,-0.0483,-0.0551,0.0593,-0.0557,-0.0557,0.0557,-0.0547,-0.0523,0.0586,-0.0557,-0.0557,0.0557,-0.0523,-0.0586,0.0547,-0.0593,-0.0483,0.0551,-0.0557,-0.0557,0.0557,-0.0586,-0.0547,0.0523,-0.0557,0.0557,-0.0557,-0.0586,0.0547,-0.0523,-0.0557,0.0557,-0.0557,-0.0547,0.0523,-0.0586,-0.0557,0.0557,-0.0557,-0.0523,0.0586,-0.0547
,-0.0557,-0.0557,-0.0557,-0.0547,-0.0523,-0.0586,-0.0557,-0.0557,-0.0557,-0.0586,-0.0547,-0.0523,-0.0557,-0.0557,-0.0557,-0.0523,-0.0586,-0.0547,0.0409,0,0.085,0.0344,0,0.0901,0.0362,0.0039,0.0885,0.0344,0,0.0901,0.0362,-0.0039,0.0885,0.0299,0.0068,0.0892,0.0344,0,0.0901,0.0299,0,0.091,-0.0344,0,0.0901,-0.0299,0,0.091,-0.0344,0,0.0901
,-0.0362,-0.0039,0.0885,-0.0344,0,0.0901,-0.0362,0.0039,0.0885,0.0344,0,-0.0901,0.0362,-0.0039,-0.0885,0.0344,0,-0.0901,0.0362,0.0039,-0.0885,0.0299,-0.0068,-0.0892,0.0344,0,-0.0901,0.0299,0,-0.091,-0.0409,0,-0.085,-0.0344,0,-0.0901,-0.0362,0.0039,-0.0885,-0.0344,0,-0.0901,-0.0362,-0.0039,-0.0885,-0.0299,0.0068,-0.0892,-0.0344,0,-0.0901
,-0.0299,0,-0.091,0.0901,0.0344,0,0.0885,0.0362,0.0039,0.0901,0.0344,0,0.0885,0.0362,-0.0039,0.0892,0.0299,0.0068,0.0901,0.0344,0,0.091,0.0299,0,0.0901,-0.0344,0,0.091,-0.0299,0,0.0901,-0.0344,0,0.0885,-0.0362,-0.0039,0.0892,-0.0299,0.0068,0.0901,-0.0344,0,0.0885,-0.0362,0.0039,-0.0901,0.0344,0,-0.0885,0.0362,-0.0039
,-0.0901,0.0344,0,-0.0885,0.0362,0.0039,-0.0892,0.0299,-0.0068,-0.0901,0.0344,0,-0.091,0.0299,0,-0.0901,-0.0344,0,-0.0885,-0.0362,-0.0039,-0.0892,-0.0299,0.0068,-0.0901,-0.0344,0,-0.091,-0.0299,0,-0.085,-0.0409,0,-0.0901,-0.0344,0,-0.0885,-0.0362,0.0039,0,0.0901,0.0344,0.0039,0.0885,0.0362,-0.0068,0.0892,0.0299,0,0.0901,0.0344
,-0.0039,0.0885,0.0362,0.0068,0.0892,0.0299,0,0.0901,0.0344,0,0.091,0.0299,0.0068,0.0892,-0.0299,0,0.0901,-0.0344,0.0039,0.0885,-0.0362,0,0.0901,-0.0344,0,0.091,-0.0299,0,0.0901,-0.0344,-0.0039,0.0885,-0.0362,-0.0068,-0.0892,0.0299,0,-0.0901,0.0344,0,-0.091,0.0299,0,-0.0901,0.0344,-0.0039,-0.0885,0.0362,0.0068,-0.0892,0.0299
,0,-0.0901,0.0344,0.0039,-0.0885,0.0362,0.0068,-0.0892,-0.0299,0,-0.0901,-0.0344,0,-0.091,-0.0299,0,-0.085,-0.0409,0,-0.0901,-0.0344,0.0039,-0.0885,-0.0362,0,-0.0901,-0.0344,-0.0039,-0.0885,-0.0362,-0.0523,-0.0586,0.0547,-0.0039,-0.0885,0.0362,-0.0586,-0.0547,-0.0523,-0.0885,-0.0362,-0.0039,0.0547,0.0523,0.0586,0.0299,0,0.091,-0.0299,0,0.091
,0.0547,0.0523,-0.0586,-0.0547,0.0523,-0.0586,0.0586,0.0547,0.0523,0.0885,0.0362,0.0039,0.091,0.0299,0,0.091,-0.0299,0,-0.0586,0.0547,0.0523,-0.0885,0.0362,0.0039,-0.0586,-0.0547,0.0523,-0.0885,-0.0362,0.0039,0.0523,0.0586,0.0547,0.0039,0.0885,0.0362,0,0.091,0.0299,0,0.091,-0.0299,0.0523,-0.0586,0.0547,0.0039,-0.0885,0.0362,0.0523,-0.0586,-0.0547
,0.0039,-0.0885,-0.0362,-0.0523,-0.0586,-0.0547,-0.0039,-0.0885,-0.0362,-0.0523,0.0586,-0.0547,-0.0039,0.0885,-0.0362,0.0299,0,-0.091,-0.0299,0,-0.091,0.0547,-0.0523,0.0586,-0.0547,-0.0523,-0.0586,-0.091,0.0299,0,-0.091,-0.0299,0,0.0586,-0.0547,0.0523,0.0885,-0.0362,0.0039,0.0547,-0.0523,-0.0586,0.0586,0.0547,-0.0523,0.0885,0.0362,-0.0039,-0.0547,0.0523,0.0586
,-0.0547,-0.0523,0.0586,0.0586,-0.0547,-0.0523,0.0885,-0.0362,-0.0039,0.0523,0.0586,-0.0547,0.0039,0.0885,-0.0362,0,-0.091,0.0299,0,-0.091,-0.0299,-0.0523,0.0586,0.0547,-0.0039,0.0885,0.0362,-0.0586,0.0547,-0.0523,-0.0885,0.0362,-0.0039,0.0523,0.0586,0.0547,0.0586,0.0547,0.0523,0.0557,0.0557,0.0557,0.0547,0.0523,0.0586,0.0557,0.0557,0.0557,0.0523,-0.0586,0.0547
,0.0547,-0.0523,0.0586,0.0557,-0.0557,0.0557,0.0586,-0.0547,0.0523,0.0557,-0.0557,0.0557,0.0547,0.0523,-0.0586,0.0586,0.0547,-0.0523,0.0557,0.0557,-0.0557,0.0523,0.0586,-0.0547,0.0557,0.0557,-0.0557,0.0586,-0.0547,-0.0523,0.0547,-0.0523,-0.0586,0.0557,-0.0557,-0.0557,0.0523,-0.0586,-0.0547,0.0557,-0.0557,-0.0557,-0.0523,0.0586,0.0547,-0.0547,0.0523,0.0586,-0.0557,0.0557,0.0557
,-0.0586,0.0547,0.0523,-0.0557,0.0557,0.0557,-0.0523,-0.0586,0.0547,-0.0586,-0.0547,0.0523,-0.0557,-0.0557,0.0557,-0.0547,-0.0523,0.0586,-0.0557,-0.0557,0.0557,-0.0547,0.0523,-0.0586,-0.0523,0.0586,-0.0547,-0.0557,0.0557,-0.0557,-0.0586,0.0547,-0.0523,-0.0557,0.0557,-0.0557,-0.0586,-0.0547,-0.0523,-0.0523,-0.0586,-0.0547,-0.0557,-0.0557,-0.0557,-0.0547,-0.0523,-0.0586,-0.0557,-0.0557,-0.0557
,0.0362,-0.0039,0.0885,0.0299,0,0.091,0.0344,0,0.0901,0.0362,0.0039,0.0885,0.0344,0,0.0901,-0.0362,-0.0039,0.0885,-0.0362,0.0039,0.0885,-0.0344,0,0.0901,-0.0299,0,0.091,-0.0344,0,0.0901,0.0362,0.0039,-0.0885,0.0299,0,-0.091,0.0344,0,-0.0901,0.0362,-0.0039,-0.0885,0.0344,0,-0.0901,-0.0362,-0.0039,-0.0885,-0.0299,0,-0.091
,-0.0344,0,-0.0901,-0.0362,0.0039,-0.0885,-0.0344,0,-0.0901,0.0885,0.0362,-0.0039,0.091,0.0299,0,0.0901,0.0344,0,0.0885,0.0362,0.0039,0.0901,0.0344,0,0.0885,-0.0362,-0.0039,0.0885,-0.0362,0.0039,0.0901,-0.0344,0,0.091,-0.0299,0,0.0901,-0.0344,0,-0.0885,0.0362,0.0039,-0.091,0.0299,0,-0.0901,0.0344,0,-0.0885,0.0362,-0.0039
,-0.0901,0.0344,0,-0.091,-0.0299,0,-0.0885,-0.0362,0.0039,-0.0901,-0.0344,0,-0.0885,-0.0362,-0.0039,-0.0901,-0.0344,0,-0.0039,0.0885,0.0362,0,0.091,0.0299,0,0.0901,0.0344,0.0039,0.0885,0.0362,0,0.0901,0.0344,0,0.091,-0.0299,-0.0039,0.0885,-0.0362,0,0.0901,-0.0344,0.0039,0.0885,-0.0362,0,0.0901,-0.0344,-0.0039,-0.0885,0.0362
,0.0039,-0.0885,0.0362,0,-0.0901,0.0344,0,-0.091,0.0299,0,-0.0901,0.0344,0.0039,-0.0885,-0.0362,-0.0039,-0.0885,-0.0362,0,-0.0901,-0.0344,0,-0.091,-0.0299,0,-0.0901,-0.0344,-0.0039,-0.0885,0.0362,-0.0885,-0.0362,-0.0039,0.0547,0.0523,0.0586,0.0362,0.0039,0.0885,0.0299,0,0.091,-0.0299,0,0.091,0.0547,0.0523,-0.0586,0.0362,0.0039,-0.0885
,-0.0547,0.0523,-0.0586,-0.0362,0.0039,-0.0885,0.0885,0.0362,0.0039,0.091,0.0299,0,0.091,-0.0299,0,-0.0885,0.0362,0.0039,-0.0885,-0.0362,0.0039,0.0523,0.0586,0.0547,0.0039,0.0885,0.0362,0,0.091,0.0299,0,0.091,-0.0299,0.0523,-0.0586,0.0547,0.0039,-0.0885,0.0362,0.0523,-0.0586,-0.0547,0.0039,-0.0885,-0.0362,-0.0523,-0.0586,-0.0547,-0.0039,-0.0885,-0.0362
,-0.0039,0.0885,-0.0362,0.0299,0,-0.091,-0.0299,0,-0.091,0.0547,-0.0523,0.0586,0.0362,-0.0039,0.0885,-0.0547,-0.0523,-0.0586,-0.0362,-0.0039,-0.0885,-0.091,0.0299,0,-0.091,-0.0299,0,0.0885,-0.0362,0.0039,0.0362,-0.0039,-0.0885,0.0885,0.0362,-0.0039,-0.0547,0.0523,0.0586,-0.0362,0.0039,0.0885,-0.0362,-0.0039,0.0885,0.0885,-0.0362,-0.0039,0.0523,0.0586,-0.0547
,0.0039,0.0885,-0.0362,0,-0.091,0.0299,0,-0.091,-0.0299,-0.0523,0.0586,0.0547,-0.0039,0.0885,0.0362,-0.0885,0.0362,-0.0039]
,"normals":[-0.804,0.182,-0.566,-0.916,-0.112,-0.385,-0.804,-0.182,-0.566,0.182,-0.566,-0.804,-0.112,-0.385,-0.916,-0.182,-0.566,-0.804,0.734,0,-0.679,0.916,-0.112,-0.385,0.916,0.112,-0.385,-0.566,-0.804,0.182,-0.385,-0.916,-0.112,-0.566,-0.804,-0.182,-0.916,0.112,0.385,-0.804,0.182,0.566,-0.734,0,0.679,0,-0.679,0.734,-0.112,-0.385,0.916
,0.112,-0.385,0.916,-0.679,0.734,0,-0.566,0.804,-0.182,-0.385,0.916,-0.112,-0.112,0.385,0.916,0,0.679,0.734,0.182,0.566,0.804,0.112,0.385,-0.916,0,0.679,-0.734,-0.182,0.566,-0.804,0.566,0.804,-0.182,0.679,0.734,0,0.566,0.804,0.182,0.566,-0.804,0.182,0.679,-0.734,0,0.566,-0.804,-0.182,0.577,0.577,0.577
,0.527,0.383,0.759,0.577,0.577,0.577,0.383,0.759,0.527,0.804,0.182,0.566,0.577,0.577,0.577,0.759,0.527,0.383,0.577,-0.577,0.577,0.759,-0.527,0.383,0.182,-0.566,0.804,0.577,-0.577,0.577,0.383,-0.759,0.527,0.804,-0.182,0.566,0.577,-0.577,0.577,0.527,-0.383,0.759,0.182,0.566,-0.804,0.577,0.577,-0.577,0.383,0.759,-0.527
,0.804,0.182,-0.566,0.577,0.577,-0.577,0.527,0.383,-0.759,0.577,0.577,-0.577,0.759,0.527,-0.383,0.577,-0.577,-0.577,0.383,-0.759,-0.527,0.804,-0.182,-0.566,0.577,-0.577,-0.577,0.759,-0.527,-0.383,0.577,-0.577,-0.577,0.527,-0.383,-0.759,-0.566,0.804,0.182,-0.577,0.577,0.577,-0.759,0.527,0.383,-0.182,0.566,0.804,-0.577,0.577,0.577
,-0.383,0.759,0.527,-0.577,0.577,0.577,-0.527,0.383,0.759,-0.182,-0.566,0.804,-0.577,-0.577,0.577,-0.527,-0.383,0.759,-0.577,-0.577,0.577,-0.383,-0.759,0.527,-0.804,-0.182,0.566,-0.577,-0.577,0.577,-0.759,-0.527,0.383,-0.577,0.577,-0.577,-0.759,0.527,-0.383,-0.577,0.577,-0.577,-0.527,0.383,-0.759,-0.577,0.577,-0.577,-0.383,0.759,-0.527
,-0.577,-0.577,-0.577,-0.527,-0.383,-0.759,-0.577,-0.577,-0.577,-0.759,-0.527,-0.383,-0.577,-0.577,-0.577,-0.383,-0.759,-0.527,0.734,0,0.679,0.357,0,0.934,0.469,0.233,0.852,0.357,0,0.934,0.469,-0.233,0.852,0.112,0.385,0.916,0.357,0,0.934,0.093,0,0.996,-0.357,0,0.934,-0.093,0,0.996,-0.357,0,0.934
,-0.469,-0.233,0.852,-0.357,0,0.934,-0.469,0.233,0.852,0.357,0,-0.934,0.469,-0.233,-0.852,0.357,0,-0.934,0.469,0.233,-0.852,0.112,-0.385,-0.916,0.357,0,-0.934,0.093,0,-0.996,-0.734,0,-0.679,-0.357,0,-0.934,-0.469,0.233,-0.852,-0.357,0,-0.934,-0.469,-0.233,-0.852,-0.112,0.385,-0.916,-0.357,0,-0.934
,-0.093,0,-0.996,0.934,0.357,0,0.852,0.469,0.233,0.934,0.357,0,0.852,0.469,-0.233,0.916,0.112,0.385,0.934,0.357,0,0.996,0.093,0,0.934,-0.357,0,0.996,-0.093,0,0.934,-0.357,0,0.852,-0.469,-0.233,0.916,-0.112,0.385,0.934,-0.357,0,0.852,-0.469,0.233,-0.934,0.357,0,-0.852,0.469,-0.233
,-0.934,0.357,0,-0.852,0.469,0.233,-0.916,0.112,-0.385,-0.934,0.357,0,-0.996,0.093,0,-0.934,-0.357,0,-0.852,-0.469,-0.233,-0.916,-0.112,0.385,-0.934,-0.357,0,-0.996,-0.093,0,-0.679,-0.734,0,-0.934,-0.357,0,-0.852,-0.469,0.233,0,0.934,0.357,0.233,0.852,0.469,-0.385,0.916,0.112,0,0.934,0.357
,-0.233,0.852,0.469,0.385,0.916,0.112,0,0.934,0.357,0,0.996,0.093,0.385,0.916,-0.112,0,0.934,-0.357,0.233,0.852,-0.469,0,0.934,-0.357,0,0.996,-0.093,0,0.934,-0.357,-0.233,0.852,-0.469,-0.385,-0.916,0.112,0,-0.934,0.357,0,-0.996,0.093,0,-0.934,0.357,-0.233,-0.852,0.469,0.385,-0.916,0.112
,0,-0.934,0.357,0.233,-0.852,0.469,0.385,-0.916,-0.112,0,-0.934,-0.357,0,-0.996,-0.093,0,-0.679,-0.734,0,-0.934,-0.357,0.233,-0.852,-0.469,0,-0.934,-0.357,-0.233,-0.852,-0.469,-0.383,-0.759,0.527,-0.233,-0.852,0.469,-0.759,-0.527,-0.383,-0.852,-0.469,-0.233,0.527,0.383,0.759,0.093,0,0.996,-0.093,0,0.996
,0.527,0.383,-0.759,-0.527,0.383,-0.759,0.759,0.527,0.383,0.852,0.469,0.233,0.996,0.093,0,0.996,-0.093,0,-0.759,0.527,0.383,-0.852,0.469,0.233,-0.759,-0.527,0.383,-0.852,-0.469,0.233,0.383,0.759,0.527,0.233,0.852,0.469,0,0.996,0.093,0,0.996,-0.093,0.383,-0.759,0.527,0.233,-0.852,0.469,0.383,-0.759,-0.527
,0.233,-0.852,-0.469,-0.383,-0.759,-0.527,-0.233,-0.852,-0.469,-0.383,0.759,-0.527,-0.233,0.852,-0.469,0.093,0,-0.996,-0.093,0,-0.996,0.527,-0.383,0.759,-0.527,-0.383,-0.759,-0.996,0.093,0,-0.996,-0.093,0,0.759,-0.527,0.383,0.852,-0.469,0.233,0.527,-0.383,-0.759,0.759,0.527,-0.383,0.852,0.469,-0.233,-0.527,0.383,0.759
,-0.527,-0.383,0.759,0.759,-0.527,-0.383,0.852,-0.469,-0.233,0.383,0.759,-0.527,0.233,0.852,-0.469,0,-0.996,0.093,0,-0.996,-0.093,-0.383,0.759,0.527,-0.233,0.852,0.469,-0.759,0.527,-0.383,-0.852,0.469,-0.233,0.383,0.759,0.527,0.759,0.527,0.383,0.577,0.577,0.577,0.527,0.383,0.759,0.577,0.577,0.577,0.383,-0.759,0.527
,0.527,-0.383,0.759,0.577,-0.577,0.577,0.759,-0.527,0.383,0.577,-0.577,0.577,0.527,0.383,-0.759,0.759,0.527,-0.383,0.577,0.577,-0.577,0.383,0.759,-0.527,0.577,0.577,-0.577,0.759,-0.527,-0.383,0.527,-0.383,-0.759,0.577,-0.577,-0.577,0.383,-0.759,-0.527,0.577,-0.577,-0.577,-0.383,0.759,0.527,-0.527,0.383,0.759,-0.577,0.577,0.577
,-0.759,0.527,0.383,-0.577,0.577,0.577,-0.383,-0.759,0.527,-0.759,-0.527,0.383,-0.577,-0.577,0.577,-0.527,-0.383,0.759,-0.577,-0.577,0.577,-0.527,0.383,-0.759,-0.383,0.759,-0.527,-0.577,0.577,-0.577,-0.759,0.527,-0.383,-0.577,0.577,-0.577,-0.759,-0.527,-0.383,-0.383,-0.759,-0.527,-0.577,-0.577,-0.577,-0.527,-0.383,-0.759,-0.577,-0.577,-0.577
,0.469,-0.233,0.852,0.093,0,0.996,0.357,0,0.934,0.469,0.233,0.852,0.357,0,0.934,-0.469,-0.233,0.852,-0.469,0.233,0.852,-0.357,0,0.934,-0.093,0,0.996,-0.357,0,0.934,0.469,0.233,-0.852,0.093,0,-0.996,0.357,0,-0.934,0.469,-0.233,-0.852,0.357,0,-0.934,-0.469,-0.233,-0.852,-0.093,0,-0.996
,-0.357,0,-0.934,-0.469,0.233,-0.852,-0.357,0,-0.934,0.852,0.469,-0.233,0.996,0.093,0,0.934,0.357,0,0.852,0.469,0.233,0.934,0.357,0,0.852,-0.469,-0.233,0.852,-0.469,0.233,0.934,-0.357,0,0.996,-0.093,0,0.934,-0.357,0,-0.852,0.469,0.233,-0.996,0.093,0,-0.934,0.357,0,-0.852,0.469,-0.233
,-0.934,0.357,0,-0.996,-0.093,0,-0.852,-0.469,0.233,-0.934,-0.357,0,-0.852,-0.469,-0.233,-0.934,-0.357,0,-0.233,0.852,0.469,0,0.996,0.093,0,0.934,0.357,0.233,0.852,0.469,0,0.934,0.357,0,0.996,-0.093,-0.233,0.852,-0.469,0,0.934,-0.357,0.233,0.852,-0.469,0,0.934,-0.357,-0.233,-0.852,0.469
,0.233,-0.852,0.469,0,-0.934,0.357,0,-0.996,0.093,0,-0.934,0.357,0.233,-0.852,-0.469,-0.233,-0.852,-0.469,0,-0.934,-0.357,0,-0.996,-0.093,0,-0.934,-0.357,-0.233,-0.852,0.469,-0.852,-0.469,-0.233,0.527,0.383,0.759,0.469,0.233,0.852,0.093,0,0.996,-0.093,0,0.996,0.527,0.383,-0.759,0.469,0.233,-0.852
,-0.527,0.383,-0.759,-0.469,0.233,-0.852,0.852,0.469,0.233,0.996,0.093,0,0.996,-0.093,0,-0.852,0.469,0.233,-0.852,-0.469,0.233,0.383,0.759,0.527,0.233,0.852,0.469,0,0.996,0.093,0,0.996,-0.093,0.383,-0.759,0.527,0.233,-0.852,0.469,0.383,-0.759,-0.527,0.233,-0.852,-0.469,-0.383,-0.759,-0.527,-0.233,-0.852,-0.469
,-0.233,0.852,-0.469,0.093,0,-0.996,-0.093,0,-0.996,0.527,-0.383,0.759,0.469,-0.233,0.852,-0.527,-0.383,-0.759,-0.469,-0.233,-0.852,-0.996,0.093,0,-0.996,-0.093,0,0.852,-0.469,0.233,0.469,-0.233,-0.852,0.852,0.469,-0.233,-0.527,0.383,0.759,-0.469,0.233,0.852,-0.469,-0.233,0.852,0.852,-0.469,-0.233,0.383,0.759,-0.527
,0.233,0.852,-0.469,0,-0.996,0.093,0,-0.996,-0.093,-0.383,0.759,0.527,-0.233,0.852,0.469,-0.852,0.469,-0.233]
,"tangents":[-0.498,0.316,0.808,1,-0.4,0.326,0.857,1,-0.594,0.299,0.747,1,0.789,-0.404,0.463,1,0.798,-0.584,0.147,1,0.794,-0.567,0.22,1,0.645,0.311,0.698,1,0.4,0.317,0.86,1,0.339,0.296,0.893,1,-0.607,0.556,0.568,1,-0.778,0.256,0.574,1,-0.724,0.379,0.577,1,-0.339,0.294
,-0.894,1,-0.501,0.306,-0.81,1,-0.645,0.31,-0.698,1,1,0.003,0.002,1,0.994,-0.045,0.103,1,0.994,0.05,-0.101,1,0.432,0.399,-0.808,1,0.569,0.221,-0.792,1,0.586,0.148,-0.797,1,0.323,-0.858,0.4,1,0.314,-0.697,0.644,1,0.312,-0.809,0.499,1,0.299,-0.892,-0.338,1
,0.315,-0.697,-0.644,1,0.298,-0.747,-0.594,1,0.81,-0.501,0.306,1,0.699,-0.645,0.309,1,0.749,-0.594,0.293,1,-0.749,-0.594,-0.293,1,-0.698,-0.645,-0.311,1,-0.809,-0.501,-0.308,1,0.312,-0.809,0.498,1,0.222,-0.924,0.312,1,0.6,-0.78,0.179,1,0.758,-0.584,0.29,1,-0.459,0.795
,0.396,1,-0.769,0.623,0.146,1,-0.641,0.706,0.301,1,-0.599,-0.78,-0.182,1,-0.495,-0.849,-0.187,1,0.983,0.106,-0.148,1,0.815,0.365,-0.45,1,0.921,0.266,-0.286,1,-0.215,0.799,0.561,1,-0.033,0.69,0.723,1,-0.227,0.797,0.559,1,0.311,-0.809,-0.499,1,0.31,-0.809,-0.499,1
,0.381,-0.649,-0.658,1,0.501,0.307,0.809,1,0.502,0.306,0.809,1,0.662,0.376,0.649,1,0.809,-0.503,0.306,1,0.649,-0.662,0.375,1,-0.809,-0.5,-0.309,1,-0.924,-0.32,-0.21,1,0.594,0.295,0.748,1,0.782,0.188,0.594,1,0.587,0.3,0.752,1,0.619,-0.152,0.771,1,0.701,-0.309
,0.642,1,0.406,0.464,-0.787,1,0.157,0.772,-0.616,1,0.146,0.711,-0.688,1,0.297,-0.748,0.594,1,0.184,-0.597,0.781,1,0.188,-0.494,0.849,1,-0.503,0.305,-0.808,1,-0.662,0.376,-0.649,1,0.983,-0.1,0.152,1,0.815,-0.359,0.456,1,0.85,-0.265,0.456,1,-0.401,0.816,0.415,1
,-0.564,0.643,0.518,1,-0.594,0.291,-0.75,1,-0.779,0.179,-0.6,1,-0.583,0.288,-0.76,1,-0.495,0.314,0.81,1,-0.309,0.226,0.924,1,0.183,-0.598,-0.781,1,0.294,-0.755,-0.585,1,0.727,0.041,-0.685,1,0.749,-0.079,-0.658,1,-0.782,0.186,0.595,1,-0.849,0.192,0.492,1,-0.806,0.288
,0.518,1,-0.635,0.469,0.614,1,0.686,-0.727,0.041,1,0.794,-0.562,0.233,1,-0.393,0.815,0.426,1,-0.532,0.822,0.203,1,-0.622,0.771,0.132,1,0.93,0.094,-0.355,1,0.882,0.171,-0.439,1,0.296,-0.893,0.338,1,0.186,-0.98,-0.071,1,0.27,-0.963,-0.025,1,0.931,-0.084,0.356,1
,0.995,-0.035,0.093,1,-0.886,0.317,-0.338,1,-0.875,0.253,-0.413,1,0.396,-0.905,0.151,1,0.326,-0.851,0.412,1,0.886,0.318,0.338,1,0.875,0.254,0.412,1,0.187,-0.98,0.072,1,0.218,-0.965,-0.144,1,0.807,-0.503,0.31,1,0.807,-0.505,0.308,1,0.832,-0.55,0.078,1,-0.644,0.317
,0.697,1,-0.884,0.323,0.338,1,-0.773,0.359,0.523,1,0.697,-0.665,-0.266,1,0.681,-0.71,-0.181,1,0.323,-0.858,-0.4,1,0.395,-0.906,-0.151,1,0.36,-0.932,-0.034,1,0.339,-0.887,0.315,1,0.413,-0.875,0.251,1,-0.071,0.186,0.98,1,0.146,0.214,0.966,1,-0.308,0.812,0.497,1
,-0.31,0.811,0.496,1,-0.078,0.838,0.54,1,0.149,0.391,0.908,1,0.033,0.356,0.934,1,-0.338,-0.886,-0.318,1,-0.523,-0.775,-0.354,1,-0.143,0.805,0.576,1,0.27,0.706,0.655,1,0.187,0.687,0.702,1,0.206,0.54,-0.816,1,0.436,0.389,-0.811,1,0.07,0.184,-0.98,1,-0.147,0.212
,-0.966,1,-0.338,0.299,0.892,1,0.072,0.19,0.979,1,0.026,0.273,0.962,1,-0.153,0.399,0.904,1,-0.413,0.329,0.85,1,-0.4,0.315,-0.861,1,-0.149,0.391,-0.908,1,-0.033,0.356,-0.934,1,-0.593,0.548,0.591,1,-0.286,0.749,0.597,1,-0.291,0.793,0.535,1,0.32,-0.338,0.885,1
,0.356,-0.523,0.774,1,0.504,0.31,-0.806,1,0.504,0.308,-0.807,1,0.432,0.523,-0.735,1,0.86,-0.4,0.316,1,0.909,-0.148,0.389,1,0.935,-0.033,0.353,1,0.894,-0.339,0.294,1,0.981,0.07,0.183,1,0.966,-0.146,0.214,1,0.666,-0.266,-0.697,1,0.617,-0.073,-0.784,1,0.32,-0.338
,-0.885,1,0.256,-0.412,-0.875,1,-0.716,0.373,0.59,1,-0.74,0.24,0.629,1,-0.778,0.058,0.626,1,1,0.002,0.005,1,0.972,-0.185,0.147,1,-0.86,-0.4,-0.318,1,-0.907,-0.15,-0.394,1,-0.854,-0.41,-0.321,1,-0.894,-0.339,-0.294,1,-0.98,0.071,-0.185,1,-0.963,0.025,-0.268,1
,0.809,-0.432,0.399,1,0.814,-0.207,0.542,1,0.763,-0.14,0.632,1,-0.868,-0.177,0.464,1,-0.883,-0.017,0.469,1,0.92,-0.262,0.291,1,-0.675,0.489,0.552,1,-0.586,0.296,0.754,1,-0.503,0.609,0.614,1,-0.702,0.699,0.135,1,0.995,0.041,-0.093,1,0.36,-0.932,0.034,1,0.223,-0.924
,-0.311,1,-0.655,0.386,0.649,1,0.495,-0.849,0.185,1,-0.523,0.74,0.424,1,-0.025,0.272,0.962,1,0.074,0.793,0.604,1,-0.315,0.218,-0.924,1,0.139,0.631,-0.763,1,-0.339,0.822,0.459,1,-0.409,0.319,-0.855,1,0.384,-0.649,0.657,1,0.854,-0.409,0.32,1,0.548,0.078,-0.833,1
,0.963,0.025,0.269,1,-0.758,-0.584,-0.29,1,0.972,0.189,-0.139,1,0.691,-0.143,0.708,1,-0.966,-0.147,-0.212,1,-0.88,0.126,0.458,1,0.812,-0.435,0.388,1,0.189,-0.494,-0.849,1,0.712,-0.179,-0.679,1,0.274,-0.961,0.026,1,0.785,-0.615,-0.073,1,0.849,0.273,-0.452,1,0.66,-0.747
,-0.081,1,0.025,0.271,-0.962,1,-0.034,0.363,0.931,1,0.087,0.665,0.742,1,-0.413,-0.875,-0.253,1,0.849,0.184,0.496,1,0.313,0.22,0.924,1,0.523,-0.776,0.352,1,0.294,-0.756,0.585,1,-0.849,0.185,-0.495,1,-0.649,-0.653,-0.389,1,0.41,0.32,0.854,1,0.924,-0.314,0.219,1
,0.358,-0.523,-0.773,1,-0.933,-0.033,-0.357,1,-0.829,-0.052,0.557,1,0.315,0.643,-0.698,1,0.255,-0.412,0.875,1,0.563,0.236,-0.792,1,-0.144,0.216,0.966,1,0.384,-0.649,0.657,1,0.495,-0.849,0.185,1,0.6,-0.78,0.179,1,-0.702,0.699,0.135,1,-0.769,0.623,0.146,1,-0.758,-0.584
,-0.29,1,0.849,0.273,-0.452,1,0.815,0.365,-0.45,1,0.087,0.665,0.742,1,-0.033,0.69,0.723,1,0.223,-0.924,-0.311,1,0.313,0.22,0.924,1,0.502,0.306,0.809,1,0.924,-0.314,0.219,1,0.809,-0.503,0.306,1,-0.649,-0.653,-0.389,1,0.849,0.184,0.496,1,0.782,0.188,0.594,1
,0.691,-0.143,0.708,1,0.619,-0.152,0.771,1,0.315,0.643,-0.698,1,0.294,-0.756,0.585,1,0.184,-0.597,0.781,1,-0.315,0.218,-0.924,1,-0.503,0.305,-0.808,1,0.92,-0.262,0.291,1,-0.339,0.822,0.459,1,-0.401,0.816,0.415,1,-0.849,0.185,-0.495,1,-0.779,0.179,-0.6,1,-0.655,0.386
,0.649,1,0.189,-0.494,-0.849,1,0.183,-0.598,-0.781,1,0.563,0.236,-0.792,1,0.727,0.041,-0.685,1,-0.586,0.296,0.754,1,-0.88,0.126,0.458,1,-0.806,0.288,0.518,1,0.66,-0.747,-0.081,1,0.686,-0.727,0.041,1,-0.381,0.817,0.433,1,0.995,0.041,-0.093,1,0.93,0.094,-0.355,1
,0.215,-0.966,0.145,1,0.186,-0.98,-0.071,1,0.882,-0.162,0.442,1,-0.776,0.352,-0.523,1,-0.886,0.317,-0.338,1,0.36,-0.932,0.034,1,0.396,-0.905,0.151,1,0.776,0.352,0.523,1,0.274,-0.961,0.026,1,0.187,-0.98,0.072,1,0.736,-0.43,0.523,1,0.807,-0.505,0.308,1,-0.874,0.26
,0.41,1,0.785,-0.615,-0.073,1,0.697,-0.665,-0.266,1,0.326,-0.851,-0.412,1,0.395,-0.906,-0.151,1,0.523,-0.776,0.352,1,-0.025,0.272,0.962,1,-0.071,0.186,0.98,1,-0.523,0.74,0.424,1,-0.31,0.811,0.496,1,0.41,0.32,0.854,1,-0.413,-0.875,-0.253,1,-0.338,-0.886,-0.318,1
,0.074,0.793,0.604,1,0.27,0.706,0.655,1,0.139,0.631,-0.763,1,0.025,0.271,-0.962,1,0.07,0.184,-0.98,1,-0.144,0.216,0.966,1,0.072,0.19,0.979,1,-0.034,0.363,0.931,1,-0.409,0.319,-0.855,1,-0.149,0.391,-0.908,1,-0.503,0.609,0.614,1,-0.286,0.749,0.597,1,0.255,-0.412
,0.875,1,0.548,0.078,-0.833,1,0.504,0.308,-0.807,1,0.854,-0.409,0.32,1,0.909,-0.148,0.389,1,0.963,0.025,0.269,1,0.712,-0.179,-0.679,1,0.666,-0.266,-0.697,1,0.358,-0.523,-0.773,1,0.32,-0.338,-0.885,1,-0.675,0.489,0.552,1,0.972,0.189,-0.139,1,1,0.002,0.005,1
,-0.933,-0.033,-0.357,1,-0.907,-0.15,-0.394,1,-0.966,-0.147,-0.212,1,0.812,-0.435,0.388,1,0.814,-0.207,0.542,1,-0.829,-0.052,0.557,1,-0.868,-0.177,0.464,1,-0.675,0.489,0.552,1,-0.503,0.609,0.614,1,-0.702,0.699,0.135,1,0.215,-0.966,0.145,1,0.995,0.041,-0.093,1,0.36,-0.932
,0.034,1,0.223,-0.924,-0.311,1,0.776,0.352,0.523,1,-0.655,0.386,0.649,1,0.326,-0.851,-0.412,1,-0.523,0.74,0.424,1,-0.025,0.272,0.962,1,0.074,0.793,0.604,1,0.139,0.631,-0.763,1,-0.409,0.319,-0.855,1,0.384,-0.649,0.657,1,0.854,-0.409,0.32,1,0.548,0.078,-0.833,1
,0.963,0.025,0.269,1,-0.758,-0.584,-0.29,1,0.972,0.189,-0.139,1,0.691,-0.143,0.708,1,-0.966,-0.147,-0.212,1,-0.88,0.126,0.458,1,0.812,-0.435,0.388,1,0.712,-0.179,-0.679,1,0.274,-0.961,0.026,1,0.785,-0.615,-0.073,1,0.849,0.273,-0.452,1,-0.381,0.817,0.433,1,0.66,-0.747
,-0.081,1,-0.874,0.26,0.41,1,0.025,0.271,-0.962,1,-0.034,0.363,0.931,1,-0.413,-0.875,-0.253,1,0.736,-0.43,0.523,1,0.523,-0.776,0.352,1,0.294,-0.756,0.585,1,-0.776,0.352,-0.523,1,0.882,-0.162,0.442,1,0.41,0.32,0.854,1,0.924,-0.314,0.219,1,0.358,-0.523,-0.773,1
,-0.933,-0.033,-0.357,1,-0.829,-0.052,0.557,1,0.315,0.643,-0.698,1,0.255,-0.412,0.875,1,-0.144,0.216,0.966,1]
,"uvs":[0.828,0.698,0.86,0.798,0.795,0.798,0.817,0.682,0.712,0.682,0.732,0.62,0.839,0.683,0.924,0.621,0.944,0.683,0.987,0.485,0.886,0.452,0.925,0.4,0.449,0.948,0.396,0.986,0.344,0.947,0.826,0.918,0.794,0.817,0.859,0.817,0.898,0.742,0.963,0.741,0.983,0.803,0.93,0.989,0.845,0.927,0.898,0.889,0.685,0.951
,0.58,0.951,0.6,0.889,0.749,0.885,0.801,0.923,0.781,0.985,0.482,0.986,0.462,0.924,0.515,0.886,0.898,0.88,0.902,0.883,0.786,0.993,0.781,0.993,0.775,0.805,0.784,0.807,0.78,0.811,0.477,0.993,0.475,0.988,0.879,0.879,0.887,0.882,0.883,0.886,0.689,0.743,0.684,0.736,0.689,0.735,0.633,0.989,0.633,0.998
,0.628,0.995,0.891,0.721,0.891,0.73,0.887,0.727,0.749,0.876,0.753,0.879,0.515,0.877,0.519,0.879,0.859,0.621,0.853,0.613,0.858,0.613,0.826,0.685,0.822,0.688,0.878,0.804,0.869,0.806,0.87,0.801,0.865,0.989,0.859,0.997,0.857,0.992,0.396,0.995,0.392,0.992,0.773,0.879,0.765,0.882,0.766,0.877,0.994,0.49
,0.989,0.492,0.364,0.885,0.358,0.878,0.364,0.878,0.828,0.689,0.832,0.692,0.595,0.882,0.6,0.882,0.968,0.734,0.97,0.738,0.79,0.805,0.788,0.8,0.922,0.391,0.927,0.392,0.727,0.613,0.732,0.612,0.754,0.743,0.76,0.736,0.762,0.74,0.864,0.81,0.866,0.815,0.95,0.928,0.959,0.925,0.958,0.93,0.789,0.81
,0.794,0.81,0.335,0.95,0.336,0.945,0.935,0.997,0.93,0.997,0.83,0.685,0.831,0.68,0.694,0.953,0.69,0.957,0.764,0.721,0.764,0.73,0.76,0.727,0.775,0.736,0.767,0.733,0.77,0.73,0.703,0.685,0.705,0.68,0.665,0.889,0.67,0.882,0.672,0.886,0.81,0.921,0.809,0.926,0.952,0.686,0.948,0.689,0.723,0.843
,0.723,0.852,0.718,0.85,0.929,0.614,0.931,0.618,0.454,0.921,0.458,0.918,0.67,0.805,0.661,0.808,0.662,0.803,0.893,0.734,0.898,0.734,0.458,0.951,0.454,0.954,0.881,0.736,0.889,0.734,0.888,0.739,0.865,0.805,0.86,0.806,0.429,0.886,0.434,0.879,0.436,0.883,0.987,0.42,0.994,0.415,0.995,0.42,0.836,0.925
,0.84,0.921,0.931,0.841,0.931,0.851,0.926,0.848,0.716,0.985,0.711,0.993,0.709,0.988,0.696,0.923,0.688,0.92,0.692,0.917,0.992,0.806,0.988,0.809,0.571,0.954,0.572,0.949,0.925,0.505,0.922,0.513,0.918,0.509,0.826,0.927,0.821,0.924,0.548,0.986,0.553,0.993,0.548,0.993,0.568,0.924,0.576,0.921,0.575,0.926
,0.797,0.62,0.803,0.613,0.805,0.618,0.877,0.452,0.88,0.448,0.769,0.885,0.927,0.512,0.795,0.805,0.989,0.413,0.782,0.802,0.859,0.81,0.937,0.992,0.637,0.995,0.824,0.692,0.788,0.988,0.727,0.849,0.951,0.681,0.665,0.811,0.401,0.992,0.891,0.739,0.994,0.485,0.429,0.878,0.893,0.883,0.716,0.993,0.935,0.848
,0.689,0.925,0.482,0.994,0.83,0.924,0.825,0.68,0.572,0.918,0.919,0.395,0.798,0.612,0.593,0.887,0.991,0.801,0.693,0.948,0.707,0.688,0.886,0.877,0.725,0.617,0.456,0.946,0.867,0.801,0.682,0.741,0.455,0.926,0.851,0.618,0.895,0.727,0.806,0.917,0.865,0.997,0.356,0.883,0.511,0.879,0.924,0.613,0.745,0.879
,0.575,0.957,0.555,0.988,0.88,0.456,0.873,0.81,0.837,0.93,0.963,0.733,0.885,0.73,0.893,0.883,0.788,0.988,0.786,0.993,0.782,0.802,0.784,0.807,0.482,0.994,0.886,0.877,0.887,0.882,0.682,0.741,0.684,0.736,0.637,0.995,0.895,0.727,0.891,0.73,0.745,0.879,0.749,0.876,0.511,0.879,0.851,0.618,0.853,0.613
,0.825,0.68,0.826,0.685,0.873,0.81,0.865,0.997,0.859,0.997,0.401,0.992,0.396,0.995,0.769,0.885,0.994,0.485,0.994,0.49,0.356,0.883,0.358,0.878,0.824,0.692,0.593,0.887,0.595,0.882,0.963,0.733,0.968,0.734,0.795,0.805,0.919,0.395,0.922,0.391,0.725,0.617,0.727,0.613,0.754,0.735,0.859,0.81,0.864,0.81
,0.955,0.921,0.959,0.925,0.787,0.815,0.339,0.953,0.335,0.95,0.937,0.992,0.935,0.997,0.834,0.689,0.693,0.948,0.694,0.953,0.769,0.727,0.764,0.73,0.768,0.738,0.707,0.688,0.703,0.685,0.665,0.881,0.67,0.882,0.806,0.917,0.951,0.681,0.952,0.686,0.727,0.849,0.723,0.852,0.924,0.613,0.455,0.926,0.454,0.921
,0.665,0.811,0.661,0.808,0.891,0.739,0.456,0.946,0.458,0.951,0.885,0.73,0.889,0.734,0.867,0.801,0.429,0.878,0.434,0.879,0.989,0.413,0.994,0.415,0.837,0.93,0.935,0.848,0.931,0.851,0.716,0.993,0.711,0.993,0.689,0.925,0.991,0.801,0.992,0.806,0.575,0.957,0.571,0.954,0.927,0.512,0.83,0.924,0.826,0.927
,0.555,0.988,0.553,0.993,0.572,0.918,0.798,0.612,0.803,0.613,0.88,0.456,0.877,0.452,0.927,0.512,0.989,0.413,0.782,0.802,0.955,0.921,0.859,0.81,0.937,0.992,0.637,0.995,0.834,0.689,0.824,0.692,0.665,0.881,0.727,0.849,0.951,0.681,0.665,0.811,0.891,0.739,0.429,0.878,0.893,0.883,0.716,0.993,0.935,0.848
,0.689,0.925,0.482,0.994,0.83,0.924,0.825,0.68,0.572,0.918,0.919,0.395,0.798,0.612,0.991,0.801,0.693,0.948,0.707,0.688,0.886,0.877,0.754,0.735,0.725,0.617,0.768,0.738,0.456,0.946,0.867,0.801,0.455,0.926,0.769,0.727,0.806,0.917,0.865,0.997,0.339,0.953,0.787,0.815,0.924,0.613,0.745,0.879,0.575,0.957
,0.555,0.988,0.88,0.456,0.873,0.81,0.837,0.93,0.885,0.73]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,23,33,34,29,35,36,37,38,39,30,40,41,42,43,44,45,46,47
,48,49,50,51,52,53,27,54,55,32,56,57,58,59,60,3,61,62,63,64,65,66,67,68,13,69,70,71,72,73,9,74,75,76,77,78,0,79,80,26,81,82,19,83,84,2,85,86,11,87,88
,5,89,90,91,92,93,17,94,95,96,97,98,16,99,100,14,101,102,21,103,104,6,105,106,24,107,108,109,110,111,112,113,114,4,115,116,117,118,119,28,120,121,8,122,123,124,125,126,7,127,128
,31,129,130,131,132,133,18,134,135,12,136,137,138,139,140,1,141,142,143,144,145,146,147,148,22,149,150,151,152,153,154,155,156,157,158,159,20,160,161,25,162,163,164,165,166,15,167,168,169,170,171
,172,173,174,175,176,177,10,178,179,71,168,180,181,9,75,2,142,182,183,11,88,91,184,37,34,96,23,16,185,17,186,96,98,24,187,48,53,6,51,112,188,0,82,117,26,29,121,189,190,37,39
,7,191,8,192,124,126,13,137,193,194,63,65,9,148,195,196,76,78,22,197,23,198,29,36,20,199,151,200,154,156,169,201,30,202,42,44,175,203,3,204,32,57,10,205,11,206,5,90,26,163,207
,208,19,84,117,209,24,210,109,111,17,211,42,47,91,45,4,212,5,86,112,2,143,213,12,214,138,140,45,133,215,216,30,41,58,106,217,62,109,3,51,123,218,219,27,55,21,220,66,70,14,13
,76,102,221,73,16,71,32,130,222,223,58,60,157,224,27,225,48,50,172,226,169,227,164,166,151,228,63,229,66,68,19,135,230,231,0,80,131,45,91,2,112,0,0,138,1,5,175,3,3,109,4
,8,51,6,6,58,7,11,146,9,9,164,10,14,76,143,143,12,14,17,42,15,15,71,16,151,63,20,63,18,20,23,96,21,21,66,22,26,117,24,24,48,25,29,154,157,157,27,29,32,172,169
,169,30,32,23,232,33,29,233,234,37,235,236,30,237,40,42,238,239,45,240,241,48,242,49,51,243,244,27,245,246,32,247,56,58,248,249,3,250,251,63,252,64,66,253,254,13,255,256,71,257,72
,9,258,259,76,260,261,0,262,79,26,263,264,19,265,266,2,267,85,11,268,269,5,270,271,91,272,92,17,273,274,96,275,276,16,277,99,14,278,279,21,280,281,6,282,105,24,283,284,109,285,286
,112,287,113,4,288,289,117,290,291,28,292,120,8,293,294,124,295,296,7,297,127,31,298,299,131,300,301,18,302,134,12,303,304,138,305,306,1,307,141,143,308,309,146,310,311,22,312,149,151,313,314
,154,315,316,157,317,158,20,318,319,25,320,321,164,322,165,15,323,324,169,325,326,172,327,173,175,328,329,10,330,331,71,15,168,332,164,9,2,1,142,333,146,11,91,93,334,34,335,96,16,100,336
,337,21,96,24,108,338,53,339,6,112,114,340,82,341,117,29,28,121,342,124,37,7,128,343,344,131,124,13,12,137,345,18,63,9,146,148,346,143,76,22,150,347,348,154,29,20,161,349,350,157,154
,169,171,351,352,15,42,175,177,353,354,172,32,10,179,355,356,175,5,26,25,163,357,20,19,117,119,358,359,4,109,17,95,360,47,361,91,4,116,362,86,363,112,143,145,364,365,1,138,45,131,133
,366,31,30,58,6,106,62,367,109,51,8,123,368,28,27,21,104,369,70,370,14,76,14,102,73,371,16,32,31,130,372,7,58,157,159,373,374,25,48,172,174,375,376,10,164,151,153,377,378,22,66
,19,18,135,379,138,0,37,124,91,124,131,91]
}
,{"name":"d20","id":"d20","billboardMode":0,"position":[-0.4,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false
,"positions":[0.0807,0,0.0637,0.0069,-0.0456,0.0919,0.0069,0.0456,0.0919,0.085,0.0112,0.0568,0.0112,0.0568,0.085,0.0568,0.085,0.0112,-0.085,0.0112,-0.0568,-0.0112,0.0568,-0.085,-0.0568,0.085,-0.0112,0.085,0.0112,-0.0568,0.0568,0.085,-0.0112,0.0112,0.0568,-0.085,0.0807,0,-0.0637,0.0069,0.0456,-0.0919,0.0069,-0.0456,-0.0919,-0.0637,0.0807,0,-0.0919,0.0069,0.0456
,-0.0919,0.0069,-0.0456,-0.0807,0,-0.0637,-0.0069,-0.0456,-0.0919,-0.0069,0.0456,-0.0919,0,0.0637,-0.0807,0.0456,0.0919,-0.0069,-0.0456,0.0919,-0.0069,-0.0637,-0.0807,0,-0.0919,-0.0069,-0.0456,-0.0919,-0.0069,0.0456,-0.085,-0.0112,0.0568,-0.0112,-0.0568,0.085,-0.0568,-0.085,0.0112,0.085,-0.0112,-0.0568,0.0112,-0.0568,-0.085,0.0568,-0.085,-0.0112,-0.085,-0.0112,-0.0568
,-0.0568,-0.085,-0.0112,-0.0112,-0.0568,-0.085,0.085,-0.0112,0.0568,0.0568,-0.085,0.0112,0.0112,-0.0568,0.085,0.0637,0.0807,0,0.0919,0.0069,-0.0456,0.0919,0.0069,0.0456,-0.085,0.0112,0.0568,-0.0568,0.085,0.0112,-0.0112,0.0568,0.085,-0.0807,0,0.0637,-0.0069,0.0456,0.0919,-0.0069,-0.0456,0.0919,0,-0.0637,-0.0807,-0.0456,-0.0919,-0.0069,0.0456,-0.0919,-0.0069
,0,0.0637,0.0807,-0.0456,0.0919,0.0069,0.0456,0.0919,0.0069,0,-0.0637,0.0807,0.0456,-0.0919,0.0069,-0.0456,-0.0919,0.0069,0.0919,-0.0069,0.0456,0.0901,0,0.0557,0.093,0,0.0456,0.0901,0,0.0557,0.0893,-0.0096,0.0515,0.0901,0,0.0557,0.0834,-0.0059,0.0611,0.0901,0,0.0557,0.0834,0.0059,0.0611,0.0901,0,0.0557,0.0893,0.0096,0.0515
,-0.0901,0,0.0557,-0.0893,-0.0096,0.0515,-0.0901,0,0.0557,-0.093,0,0.0456,-0.0901,0,0.0557,-0.0893,0.0096,0.0515,-0.0901,0,0.0557,-0.0834,0.0059,0.0611,-0.0901,0,0.0557,-0.0834,-0.0059,0.0611,0.0919,-0.0069,-0.0456,0.0901,0,-0.0557,0.0893,-0.0096,-0.0515,0.0901,0,-0.0557,0.093,0,-0.0456,0.0901,0,-0.0557,0.0893,0.0096,-0.0515
,0.0901,0,-0.0557,0.0834,0.0059,-0.0611,0.0901,0,-0.0557,0.0834,-0.0059,-0.0611,-0.0901,0,-0.0557,-0.093,0,-0.0456,-0.0901,0,-0.0557,-0.0893,-0.0096,-0.0515,-0.0901,0,-0.0557,-0.0834,-0.0059,-0.0611,-0.0901,0,-0.0557,-0.0834,0.0059,-0.0611,-0.0901,0,-0.0557,-0.0893,0.0096,-0.0515,0.0557,0.0901,0,0.0611,0.0834,0.0059,0.0557,0.0901,0
,0.0515,0.0893,0.0096,0.0557,0.0901,0,0.0456,0.093,0,0.0557,0.0901,0,0.0515,0.0893,-0.0096,0.0557,0.0901,0,0.0611,0.0834,-0.0059,0.0557,-0.0901,0,0.0515,-0.0893,0.0096,0.0637,-0.0807,0,0.0557,-0.0901,0,0.0611,-0.0834,0.0059,0.0557,-0.0901,0,0.0611,-0.0834,-0.0059,0.0557,-0.0901,0,0.0515,-0.0893,-0.0096,0.0557,-0.0901,0
,0.0456,-0.093,0,-0.0557,0.0901,0,-0.0515,0.0893,0.0096,-0.0557,0.0901,0,-0.0611,0.0834,0.0059,-0.0557,0.0901,0,-0.0611,0.0834,-0.0059,-0.0557,0.0901,0,-0.0515,0.0893,-0.0096,-0.0557,0.0901,0,-0.0456,0.093,0,-0.0557,-0.0901,0,-0.0611,-0.0834,0.0059,-0.0557,-0.0901,0,-0.0515,-0.0893,0.0096,-0.0557,-0.0901,0,-0.0456,-0.093,0
,-0.0557,-0.0901,0,-0.0515,-0.0893,-0.0096,-0.0557,-0.0901,0,-0.0611,-0.0834,-0.0059,0,0.0557,0.0901,0.0096,0.0515,0.0893,0,0.0557,0.0901,0,0.0456,0.093,0,0.0557,0.0901,-0.0096,0.0515,0.0893,0,0.0557,0.0901,-0.0059,0.0611,0.0834,0,0.0557,0.0901,0.0059,0.0611,0.0834,0,0.0557,-0.0901,-0.0096,0.0515,-0.0893,0,0.0557,-0.0901
,0,0.0456,-0.093,0,0.0557,-0.0901,0.0096,0.0515,-0.0893,0,0.0557,-0.0901,0.0059,0.0611,-0.0834,0,0.0557,-0.0901,-0.0059,0.0611,-0.0834,0,-0.0557,0.0901,0,-0.0456,0.093,0,-0.0557,0.0901,0.0096,-0.0515,0.0893,0,-0.0557,0.0901,0.0059,-0.0611,0.0834,0,-0.0557,0.0901,-0.0059,-0.0611,0.0834,0,-0.0557,0.0901,-0.0096,-0.0515,0.0893
,0,-0.0557,-0.0901,0,-0.0456,-0.093,0,-0.0557,-0.0901,-0.0096,-0.0515,-0.0893,0,-0.0557,-0.0901,-0.0059,-0.0611,-0.0834,0,-0.0557,-0.0901,0.0059,-0.0611,-0.0834,0,-0.0557,-0.0901,0.0096,-0.0515,-0.0893,0,0.0456,-0.093,0,-0.0456,-0.093,0.093,0,0.0456,0.093,0,-0.0456,-0.093,0,0.0456,-0.093,0,-0.0456,0.0893,0.0096,0.0515
,0.0893,-0.0096,0.0515,-0.0893,0.0096,0.0515,-0.0611,0.0834,0.0059,-0.0893,-0.0096,0.0515,0.0834,0.0059,0.0611,0.0096,0.0515,0.0893,0.0834,0.0059,-0.0611,0.0834,-0.0059,0.0611,0.0096,-0.0515,0.0893,0.0834,-0.0059,-0.0611,0.0096,-0.0515,-0.0893,0.0893,0.0096,-0.0515,0.0611,0.0834,-0.0059,0.0893,-0.0096,-0.0515,0.0611,-0.0834,-0.0059,-0.0834,0.0059,0.0611,-0.0096,0.0515,0.0893
,-0.0893,0.0096,-0.0515,-0.0611,0.0834,-0.0059,-0.0834,-0.0059,0.0611,-0.0096,-0.0515,0.0893,-0.0893,-0.0096,-0.0515,0.0456,0.093,0,-0.0456,0.093,0,-0.0834,0.0059,-0.0611,0.0515,0.0893,0.0096,0.0059,0.0611,0.0834,0.0456,-0.093,0,-0.0456,-0.093,0,0.0515,0.0893,-0.0096,0.0059,0.0611,-0.0834,-0.0834,-0.0059,-0.0611,-0.0515,0.0893,0.0096,-0.0059,0.0611,0.0834
,0.0515,-0.0893,0.0096,0.0059,-0.0611,0.0834,-0.0515,0.0893,-0.0096,-0.0059,0.0611,-0.0834,0.0515,-0.0893,-0.0096,0.0059,-0.0611,-0.0834,-0.0515,-0.0893,0.0096,-0.0059,-0.0611,0.0834,-0.0515,-0.0893,-0.0096,-0.0059,-0.0611,-0.0834,0,0.0456,0.093,0,-0.0456,0.093,0.0893,-0.0096,0.0515,0.0834,-0.0059,0.0611,0.0901,0,0.0557,0.0834,0.0059,0.0611,0.0901,0,0.0557
,0.0893,0.0096,0.0515,0.0901,0,0.0557,0.093,0,0.0456,0.0901,0,0.0557,-0.093,0,0.0456,-0.0893,0.0096,0.0515,-0.0901,0,0.0557,-0.0834,0.0059,0.0611,-0.0901,0,0.0557,-0.0834,-0.0059,0.0611,-0.0901,0,0.0557,-0.0893,-0.0096,0.0515,-0.0901,0,0.0557,0.093,0,-0.0456,0.0893,0.0096,-0.0515,0.0901,0,-0.0557,0.0834,0.0059,-0.0611
,0.0901,0,-0.0557,0.0834,-0.0059,-0.0611,0.0901,0,-0.0557,0.0893,-0.0096,-0.0515,0.0901,0,-0.0557,-0.0893,-0.0096,-0.0515,-0.0834,-0.0059,-0.0611,-0.0901,0,-0.0557,-0.0834,0.0059,-0.0611,-0.0901,0,-0.0557,-0.0893,0.0096,-0.0515,-0.0901,0,-0.0557,-0.093,0,-0.0456,-0.0901,0,-0.0557,0.0515,0.0893,0.0096,0.0456,0.093,0,0.0557,0.0901,0
,0.0515,0.0893,-0.0096,0.0557,0.0901,0,0.0611,0.0834,-0.0059,0.0557,0.0901,0,0.0611,0.0834,0.0059,0.0557,0.0901,0,0.0611,-0.0834,0.0059,0.0611,-0.0834,-0.0059,0.0557,-0.0901,0,0.0515,-0.0893,-0.0096,0.0557,-0.0901,0,0.0456,-0.093,0,0.0557,-0.0901,0,0.0515,-0.0893,0.0096,0.0557,-0.0901,0,-0.0611,0.0834,0.0059,-0.0611,0.0834,-0.0059
,-0.0557,0.0901,0,-0.0515,0.0893,-0.0096,-0.0557,0.0901,0,-0.0456,0.093,0,-0.0557,0.0901,0,-0.0515,0.0893,0.0096,-0.0557,0.0901,0,-0.0515,-0.0893,0.0096,-0.0456,-0.093,0,-0.0557,-0.0901,0,-0.0515,-0.0893,-0.0096,-0.0557,-0.0901,0,-0.0611,-0.0834,-0.0059,-0.0557,-0.0901,0,-0.0611,-0.0834,0.0059,-0.0557,-0.0901,0,0,0.0456,0.093
,-0.0096,0.0515,0.0893,0,0.0557,0.0901,-0.0059,0.0611,0.0834,0,0.0557,0.0901,0.0059,0.0611,0.0834,0,0.0557,0.0901,0.0096,0.0515,0.0893,0,0.0557,0.0901,0,0.0456,-0.093,0.0096,0.0515,-0.0893,0,0.0557,-0.0901,0.0059,0.0611,-0.0834,0,0.0557,-0.0901,-0.0059,0.0611,-0.0834,0,0.0557,-0.0901,-0.0096,0.0515,-0.0893,0,0.0557,-0.0901
,0.0096,-0.0515,0.0893,0.0059,-0.0611,0.0834,0,-0.0557,0.0901,-0.0059,-0.0611,0.0834,0,-0.0557,0.0901,-0.0096,-0.0515,0.0893,0,-0.0557,0.0901,0,-0.0456,0.093,0,-0.0557,0.0901,-0.0096,-0.0515,-0.0893,-0.0059,-0.0611,-0.0834,0,-0.0557,-0.0901,0.0059,-0.0611,-0.0834,0,-0.0557,-0.0901,0.0096,-0.0515,-0.0893,0,-0.0557,-0.0901,0,-0.0456,-0.093
,0,-0.0557,-0.0901,0,0.0456,-0.093,0,-0.0456,-0.093,0.093,0,0.0456,0.093,0,-0.0456,-0.093,0,0.0456,-0.093,0,-0.0456,0.0611,0.0834,0.0059,0.0893,-0.0096,0.0515,0.0611,-0.0834,0.0059,-0.0893,0.0096,0.0515,-0.0611,0.0834,0.0059,-0.0611,-0.0834,0.0059,0.0096,0.0515,0.0893,0.0096,0.0515,-0.0893,0.0096,-0.0515,0.0893,0.0834,-0.0059,-0.0611
,0.0096,-0.0515,-0.0893,0.0893,0.0096,-0.0515,0.0611,0.0834,-0.0059,0.0893,-0.0096,-0.0515,0.0611,-0.0834,-0.0059,-0.0096,0.0515,0.0893,-0.0611,0.0834,-0.0059,-0.0096,-0.0515,0.0893,-0.0893,-0.0096,-0.0515,-0.0611,-0.0834,-0.0059,0.0456,0.093,0,-0.0456,0.093,0,-0.0834,0.0059,-0.0611,-0.0096,0.0515,-0.0893,0.0515,0.0893,0.0096,0.0059,0.0611,0.0834,0.0456,-0.093,0
,-0.0456,-0.093,0,0.0059,0.0611,-0.0834,-0.0834,-0.0059,-0.0611,-0.0096,-0.0515,-0.0893,-0.0515,0.0893,0.0096,-0.0059,0.0611,0.0834,0.0515,-0.0893,0.0096,0.0059,-0.0611,0.0834,-0.0515,0.0893,-0.0096,-0.0059,0.0611,-0.0834,0.0059,-0.0611,-0.0834,-0.0515,-0.0893,0.0096,-0.0059,-0.0611,0.0834,-0.0059,-0.0611,-0.0834,0,0.0456,0.093,0,-0.0456,0.093]
,"normals":[0.505,0,0.863,0.275,-0.142,0.951,0.275,0.142,0.951,0.676,0.445,0.588,0.445,0.588,0.676,0.588,0.676,0.445,-0.676,0.445,-0.588,-0.445,0.588,-0.676,-0.588,0.676,-0.445,0.676,0.445,-0.588,0.588,0.676,-0.445,0.445,0.588,-0.676,0.505,0,-0.863,0.275,0.142,-0.951,0.275,-0.142,-0.951,-0.863,0.505,0,-0.951,0.275,0.142
,-0.951,0.275,-0.142,-0.505,0,-0.863,-0.275,-0.142,-0.951,-0.275,0.142,-0.951,0,0.863,-0.505,0.142,0.951,-0.275,-0.142,0.951,-0.275,-0.863,-0.505,0,-0.951,-0.275,-0.142,-0.951,-0.275,0.142,-0.676,-0.445,0.588,-0.445,-0.588,0.676,-0.588,-0.676,0.445,0.676,-0.445,-0.588,0.445,-0.588,-0.676,0.588,-0.676,-0.445,-0.676,-0.445,-0.588
,-0.588,-0.676,-0.445,-0.445,-0.588,-0.676,0.676,-0.445,0.588,0.588,-0.676,0.445,0.445,-0.588,0.676,0.863,0.505,0,0.951,0.275,-0.142,0.951,0.275,0.142,-0.676,0.445,0.588,-0.588,0.676,0.445,-0.445,0.588,0.676,-0.505,0,0.863,-0.275,0.142,0.951,-0.275,-0.142,0.951,0,-0.863,-0.505,-0.142,-0.951,-0.275,0.142,-0.951,-0.275
,0,0.863,0.505,-0.142,0.951,0.275,0.142,0.951,0.275,0,-0.863,0.505,0.142,-0.951,0.275,-0.142,-0.951,0.275,0.951,-0.275,0.142,0.851,0,0.526,0.991,0,0.137,0.851,0,0.526,0.844,-0.384,0.375,0.851,0,0.526,0.606,-0.237,0.759,0.851,0,0.526,0.606,0.237,0.759,0.851,0,0.526,0.844,0.384,0.375
,-0.851,0,0.526,-0.844,-0.384,0.375,-0.851,0,0.526,-0.991,0,0.137,-0.851,0,0.526,-0.844,0.384,0.375,-0.851,0,0.526,-0.606,0.237,0.759,-0.851,0,0.526,-0.606,-0.237,0.759,0.951,-0.275,-0.142,0.851,0,-0.526,0.844,-0.384,-0.375,0.851,0,-0.526,0.991,0,-0.137,0.851,0,-0.526,0.844,0.384,-0.375
,0.851,0,-0.526,0.606,0.237,-0.759,0.851,0,-0.526,0.606,-0.237,-0.759,-0.851,0,-0.526,-0.991,0,-0.137,-0.851,0,-0.526,-0.844,-0.384,-0.375,-0.851,0,-0.526,-0.606,-0.237,-0.759,-0.851,0,-0.526,-0.606,0.237,-0.759,-0.851,0,-0.526,-0.844,0.384,-0.375,0.526,0.851,0,0.759,0.606,0.237,0.526,0.851,0
,0.375,0.844,0.384,0.526,0.851,0,0.137,0.991,0,0.526,0.851,0,0.375,0.844,-0.384,0.526,0.851,0,0.759,0.606,-0.237,0.526,-0.851,0,0.375,-0.844,0.384,0.863,-0.505,0,0.526,-0.851,0,0.759,-0.606,0.237,0.526,-0.851,0,0.759,-0.606,-0.237,0.526,-0.851,0,0.375,-0.844,-0.384,0.526,-0.851,0
,0.137,-0.991,0,-0.526,0.851,0,-0.375,0.844,0.384,-0.526,0.851,0,-0.759,0.606,0.237,-0.526,0.851,0,-0.759,0.606,-0.237,-0.526,0.851,0,-0.375,0.844,-0.384,-0.526,0.851,0,-0.137,0.991,0,-0.526,-0.851,0,-0.759,-0.606,0.237,-0.526,-0.851,0,-0.375,-0.844,0.384,-0.526,-0.851,0,-0.137,-0.991,0
,-0.526,-0.851,0,-0.375,-0.844,-0.384,-0.526,-0.851,0,-0.759,-0.606,-0.237,0,0.526,0.851,0.384,0.375,0.844,0,0.526,0.851,0,0.137,0.991,0,0.526,0.851,-0.384,0.375,0.844,0,0.526,0.851,-0.237,0.759,0.606,0,0.526,0.851,0.237,0.759,0.606,0,0.526,-0.851,-0.384,0.375,-0.844,0,0.526,-0.851
,0,0.137,-0.991,0,0.526,-0.851,0.384,0.375,-0.844,0,0.526,-0.851,0.237,0.759,-0.606,0,0.526,-0.851,-0.237,0.759,-0.606,0,-0.526,0.851,0,-0.137,0.991,0,-0.526,0.851,0.384,-0.375,0.844,0,-0.526,0.851,0.237,-0.759,0.606,0,-0.526,0.851,-0.237,-0.759,0.606,0,-0.526,0.851,-0.384,-0.375,0.844
,0,-0.526,-0.851,0,-0.137,-0.991,0,-0.526,-0.851,-0.384,-0.375,-0.844,0,-0.526,-0.851,-0.237,-0.759,-0.606,0,-0.526,-0.851,0.237,-0.759,-0.606,0,-0.526,-0.851,0.384,-0.375,-0.844,0,0.137,-0.991,0,-0.137,-0.991,0.991,0,0.137,0.991,0,-0.137,-0.991,0,0.137,-0.991,0,-0.137,0.844,0.384,0.375
,0.844,-0.384,0.375,-0.844,0.384,0.375,-0.759,0.606,0.237,-0.844,-0.384,0.375,0.606,0.237,0.759,0.384,0.375,0.844,0.606,0.237,-0.759,0.606,-0.237,0.759,0.384,-0.375,0.844,0.606,-0.237,-0.759,0.384,-0.375,-0.844,0.844,0.384,-0.375,0.759,0.606,-0.237,0.844,-0.384,-0.375,0.759,-0.606,-0.237,-0.606,0.237,0.759,-0.384,0.375,0.844
,-0.844,0.384,-0.375,-0.759,0.606,-0.237,-0.606,-0.237,0.759,-0.384,-0.375,0.844,-0.844,-0.384,-0.375,0.137,0.991,0,-0.137,0.991,0,-0.606,0.237,-0.759,0.375,0.844,0.384,0.237,0.759,0.606,0.137,-0.991,0,-0.137,-0.991,0,0.375,0.844,-0.384,0.237,0.759,-0.606,-0.606,-0.237,-0.759,-0.375,0.844,0.384,-0.237,0.759,0.606
,0.375,-0.844,0.384,0.237,-0.759,0.606,-0.375,0.844,-0.384,-0.237,0.759,-0.606,0.375,-0.844,-0.384,0.237,-0.759,-0.606,-0.375,-0.844,0.384,-0.237,-0.759,0.606,-0.375,-0.844,-0.384,-0.237,-0.759,-0.606,0,0.137,0.991,0,-0.137,0.991,0.844,-0.384,0.375,0.606,-0.237,0.759,0.851,0,0.526,0.606,0.237,0.759,0.851,0,0.526
,0.844,0.384,0.375,0.851,0,0.526,0.991,0,0.137,0.851,0,0.526,-0.991,0,0.137,-0.844,0.384,0.375,-0.851,0,0.526,-0.606,0.237,0.759,-0.851,0,0.526,-0.606,-0.237,0.759,-0.851,0,0.526,-0.844,-0.384,0.375,-0.851,0,0.526,0.991,0,-0.137,0.844,0.384,-0.375,0.851,0,-0.526,0.606,0.237,-0.759
,0.851,0,-0.526,0.606,-0.237,-0.759,0.851,0,-0.526,0.844,-0.384,-0.375,0.851,0,-0.526,-0.844,-0.384,-0.375,-0.606,-0.237,-0.759,-0.851,0,-0.526,-0.606,0.237,-0.759,-0.851,0,-0.526,-0.844,0.384,-0.375,-0.851,0,-0.526,-0.991,0,-0.137,-0.851,0,-0.526,0.375,0.844,0.384,0.137,0.991,0,0.526,0.851,0
,0.375,0.844,-0.384,0.526,0.851,0,0.759,0.606,-0.237,0.526,0.851,0,0.759,0.606,0.237,0.526,0.851,0,0.759,-0.606,0.237,0.759,-0.606,-0.237,0.526,-0.851,0,0.375,-0.844,-0.384,0.526,-0.851,0,0.137,-0.991,0,0.526,-0.851,0,0.375,-0.844,0.384,0.526,-0.851,0,-0.759,0.606,0.237,-0.759,0.606,-0.237
,-0.526,0.851,0,-0.375,0.844,-0.384,-0.526,0.851,0,-0.137,0.991,0,-0.526,0.851,0,-0.375,0.844,0.384,-0.526,0.851,0,-0.375,-0.844,0.384,-0.137,-0.991,0,-0.526,-0.851,0,-0.375,-0.844,-0.384,-0.526,-0.851,0,-0.759,-0.606,-0.237,-0.526,-0.851,0,-0.759,-0.606,0.237,-0.526,-0.851,0,0,0.137,0.991
,-0.384,0.375,0.844,0,0.526,0.851,-0.237,0.759,0.606,0,0.526,0.851,0.237,0.759,0.606,0,0.526,0.851,0.384,0.375,0.844,0,0.526,0.851,0,0.137,-0.991,0.384,0.375,-0.844,0,0.526,-0.851,0.237,0.759,-0.606,0,0.526,-0.851,-0.237,0.759,-0.606,0,0.526,-0.851,-0.384,0.375,-0.844,0,0.526,-0.851
,0.384,-0.375,0.844,0.237,-0.759,0.606,0,-0.526,0.851,-0.237,-0.759,0.606,0,-0.526,0.851,-0.384,-0.375,0.844,0,-0.526,0.851,0,-0.137,0.991,0,-0.526,0.851,-0.384,-0.375,-0.844,-0.237,-0.759,-0.606,0,-0.526,-0.851,0.237,-0.759,-0.606,0,-0.526,-0.851,0.384,-0.375,-0.844,0,-0.526,-0.851,0,-0.137,-0.991
,0,-0.526,-0.851,0,0.137,-0.991,0,-0.137,-0.991,0.991,0,0.137,0.991,0,-0.137,-0.991,0,0.137,-0.991,0,-0.137,0.759,0.606,0.237,0.844,-0.384,0.375,0.759,-0.606,0.237,-0.844,0.384,0.375,-0.759,0.606,0.237,-0.759,-0.606,0.237,0.384,0.375,0.844,0.384,0.375,-0.844,0.384,-0.375,0.844,0.606,-0.237,-0.759
,0.384,-0.375,-0.844,0.844,0.384,-0.375,0.759,0.606,-0.237,0.844,-0.384,-0.375,0.759,-0.606,-0.237,-0.384,0.375,0.844,-0.759,0.606,-0.237,-0.384,-0.375,0.844,-0.844,-0.384,-0.375,-0.759,-0.606,-0.237,0.137,0.991,0,-0.137,0.991,0,-0.606,0.237,-0.759,-0.384,0.375,-0.844,0.375,0.844,0.384,0.237,0.759,0.606,0.137,-0.991,0
,-0.137,-0.991,0,0.237,0.759,-0.606,-0.606,-0.237,-0.759,-0.384,-0.375,-0.844,-0.375,0.844,0.384,-0.237,0.759,0.606,0.375,-0.844,0.384,0.237,-0.759,0.606,-0.375,0.844,-0.384,-0.237,0.759,-0.606,0.237,-0.759,-0.606,-0.375,-0.844,0.384,-0.237,-0.759,0.606,-0.237,-0.759,-0.606,0,0.137,0.991,0,-0.137,0.991]
,"tangents":[0.745,0.504,-0.437,1,0.856,0.486,-0.175,1,0.808,0.501,-0.309,1,-0.216,0.882,-0.42,1,-0.311,0.809,-0.499,1,-0.395,0.72,-0.57,1,0.5,-0.309,-0.809,1,0.57,-0.395,-0.72,1,0.42,-0.216,-0.882,1,0.721,-0.566,0.4,1,0.809,-0.498,0.312,1,0.882,-0.416,0.22,1,-0.745,-0.504
,-0.437,1,-0.81,-0.499,-0.309,1,-0.856,-0.486,-0.175,1,-0.437,-0.745,-0.504,1,-0.309,-0.81,-0.498,1,-0.175,-0.856,-0.486,1,-0.745,0.504,0.437,1,-0.856,0.486,0.175,1,-0.808,0.502,0.309,1,-0.504,-0.437,-0.745,1,-0.486,-0.175,-0.856,1,-0.502,-0.309,-0.808,1,-0.436,0.744,-0.506,1
,-0.175,0.855,-0.488,1,-0.309,0.807,-0.503,1,-0.498,-0.313,-0.809,1,-0.568,-0.398,-0.721,1,-0.417,-0.219,-0.882,1,-0.216,-0.882,0.42,1,-0.31,-0.809,0.499,1,-0.395,-0.72,0.57,1,-0.72,0.569,0.397,1,-0.809,0.499,0.31,1,-0.882,0.418,0.218,1,-0.211,-0.88,-0.424,1,-0.391,-0.719
,-0.575,1,-0.302,-0.809,-0.504,1,0.437,-0.745,0.504,1,0.309,-0.81,0.498,1,0.175,-0.856,0.486,1,0.498,-0.312,0.809,1,0.416,-0.22,0.882,1,0.567,-0.399,0.721,1,0.005,-1,0.003,1,-0.037,-0.99,0.137,1,0.045,-0.99,-0.135,1,0.504,0.437,-0.745,1,0.486,0.175,-0.856,1
,0.502,0.309,-0.808,1,-0.52,0.432,-0.737,1,-0.502,0.17,-0.848,1,-0.517,0.308,-0.798,1,-1,0.005,0.008,1,-0.99,-0.133,0.052,1,-0.99,0.139,-0.03,1,0.175,0.857,0.485,1,-0.204,0.922,0.33,1,-0.063,0.89,0.452,1,0.123,-0.972,-0.199,1,-0.21,-0.879,-0.428,1,0.45,0.517
,-0.728,1,0.744,0.507,-0.436,1,0.119,0.974,-0.193,1,-0.06,0.965,-0.254,1,-0.204,-0.921,0.33,1,0.176,-0.858,0.483,1,-0.311,0.807,-0.503,1,-0.526,0.729,-0.438,1,-0.308,-0.81,-0.499,1,-0.074,-0.841,-0.536,1,0.5,-0.312,0.808,1,0.313,-0.215,0.925,1,0.003,-1,0.005,1
,-0.133,-0.971,0.197,1,-0.499,-0.314,-0.808,1,-0.655,-0.393,-0.646,1,0.309,0.808,0.501,1,0.309,0.809,0.5,1,0.526,0.731,0.435,1,0.308,-0.81,0.499,1,0.074,-0.841,0.536,1,0.4,-0.65,0.646,1,0.534,-0.669,0.517,1,-0.45,-0.517,-0.728,1,-0.611,-0.472,-0.636,1,0.119,-0.974
,0.193,1,-0.06,-0.965,0.254,1,0.206,0.92,-0.333,1,0.063,0.888,-0.455,1,-0.398,0.653,0.644,1,-0.534,0.673,0.512,1,-0.45,0.517,0.728,1,-0.744,0.507,0.436,1,0.5,-0.31,-0.809,1,0.656,-0.39,-0.646,1,0.204,-0.921,-0.33,1,-0.176,-0.858,-0.483,1,-0.643,0.398,-0.654,1
,-0.398,0.721,-0.568,1,-0.513,0.317,-0.798,1,-0.45,0.528,-0.72,1,-0.331,0.204,-0.921,1,-0.453,0.063,-0.889,1,0.808,-0.499,0.313,1,0.925,-0.313,0.216,1,0.728,-0.45,0.517,1,0.635,-0.61,0.473,1,-0.639,-0.395,-0.66,1,-0.507,-0.533,-0.677,1,0.437,0.746,0.503,1,0.728,0.45
,0.516,1,0.436,0.744,0.506,1,-0.643,-0.398,0.654,1,-0.398,-0.72,0.568,1,0.501,0.31,-0.808,1,0.435,0.526,-0.731,1,-0.847,-0.523,0.096,1,-0.989,-0.137,0.049,1,0.19,0.117,0.975,1,0.418,-0.216,0.882,1,-0.728,-0.45,-0.517,1,-0.635,-0.61,-0.473,1,0.193,0.119,-0.974,1
,0.252,-0.062,-0.966,1,-0.501,-0.31,-0.808,1,-0.435,-0.526,-0.731,1,-0.345,-0.213,-0.914,1,-0.47,-0.065,-0.88,1,-0.19,0.118,-0.975,1,-0.25,-0.065,-0.966,1,-0.848,0.524,-0.073,1,-0.926,0.36,-0.113,1,0.331,-0.204,-0.921,1,0.453,-0.063,-0.889,1,-0.809,0.5,0.309,1,-0.925,0.314
,0.213,1,-0.727,0.449,-0.519,1,-0.435,0.743,-0.509,1,0.808,0.501,-0.31,1,0.731,0.436,-0.526,1,-0.08,-0.848,0.524,1,-0.033,-0.99,0.137,1,0.651,-0.646,0.399,1,0.671,-0.514,0.534,1,-0.533,0.72,-0.445,1,-0.522,0.427,-0.738,1,-0.31,0.809,-0.5,1,-0.39,0.646,-0.656,1
,-0.808,0.501,0.31,1,-0.731,0.435,0.526,1,-0.81,-0.499,-0.308,1,-0.841,-0.536,-0.074,1,0.975,-0.189,-0.117,1,0.883,-0.418,0.216,1,-0.517,-0.728,-0.45,1,-0.507,-0.436,-0.744,1,0.654,-0.643,-0.398,1,0.568,-0.398,-0.72,1,0.921,0.331,0.204,1,0.889,0.453,0.063,1,-0.301,-0.811
,-0.501,1,-0.204,-0.926,-0.318,1,-1,0.008,0.005,1,-0.971,-0.188,0.145,1,-0.651,-0.645,-0.399,1,-0.565,-0.4,-0.722,1,0.089,-0.847,-0.524,1,0.129,-0.927,-0.353,1,-0.921,0.331,-0.204,1,-0.889,0.453,-0.063,1,-0.974,0.192,-0.118,1,-0.882,0.42,0.215,1,0.517,0.728,-0.45,1
,0.507,0.436,-0.744,1,-0.31,-0.809,0.5,1,-0.39,-0.646,0.656,1,-0.921,-0.33,0.204,1,-0.858,-0.483,-0.176,1,-0.84,0.538,0.075,1,-0.887,-0.457,0.063,1,-0.063,-0.887,0.457,1,0.074,0.84,0.537,1,-0.075,0.838,-0.54,1,0.063,-0.887,-0.457,1,-0.214,0.881,-0.421,1,0.176,0.858
,0.483,1,-0.526,-0.732,-0.433,1,0.248,-0.067,0.966,1,-0.312,-0.216,-0.925,1,0.611,0.471,-0.636,1,-0.213,0.925,-0.314,1,0.722,-0.565,0.4,1,-0.057,-0.965,-0.257,1,0.857,0.484,-0.175,1,-0.744,-0.506,-0.437,1,-0.213,-0.925,0.314,1,0.526,-0.732,0.433,1,0.646,-0.655,0.392,1
,-0.214,-0.881,0.421,1,0.636,0.613,0.469,1,0.655,-0.391,0.646,1,-0.123,-0.927,0.355,1,0.314,-0.213,-0.925,1,-0.437,-0.744,-0.506,1,0.142,-0.971,-0.19,1,-0.673,-0.512,-0.534,1,-0.174,0.856,-0.486,1,-0.553,0.077,-0.83,1,-0.538,-0.075,-0.84,1,-0.612,0.47,0.636,1,-0.509,0.534
,-0.676,1,-0.486,0.633,-0.603,1,0.538,0.075,-0.84,1,-0.99,0.137,-0.028,1,-0.484,-0.175,-0.857,1,0.966,-0.248,0.068,1,-0.721,0.567,0.398,1,-0.499,0.166,-0.851,1,0.566,-0.4,0.721,1,-0.927,-0.349,0.138,1,-0.381,-0.647,-0.661,1,0.421,-0.214,-0.881,1,-0.47,-0.636,-0.612,1
,-0.51,-0.534,0.674,1,0.47,0.636,-0.612,1,-0.418,-0.216,-0.882,1,-0.971,0.2,-0.13,1,0.484,0.175,-0.857,1,-0.966,0.25,0.066,1,0.84,0.538,-0.075,1,0.044,-0.99,-0.137,1,0.176,0.858,0.483,1,-0.057,-0.965,-0.257,1,0.123,-0.972,-0.199,1,0.611,0.471,-0.636,1,0.45,0.517
,-0.728,1,-0.214,0.881,-0.421,1,0.119,0.974,-0.193,1,-0.063,-0.887,0.457,1,-0.204,-0.921,0.33,1,-0.075,0.838,-0.54,1,-0.526,-0.732,-0.433,1,-0.308,-0.81,-0.499,1,0.655,-0.391,0.646,1,0.5,-0.312,0.808,1,0.142,-0.971,-0.19,1,0.003,-1,0.005,1,-0.312,-0.216,-0.925,1
,-0.499,-0.314,-0.808,1,0.074,0.84,0.537,1,0.526,-0.732,0.433,1,0.308,-0.81,0.499,1,0.722,-0.565,0.4,1,0.4,-0.65,0.646,1,-0.744,-0.506,-0.437,1,-0.45,-0.517,-0.728,1,-0.214,-0.881,0.421,1,0.119,-0.974,0.193,1,-0.174,0.856,-0.486,1,-0.721,0.567,0.398,1,-0.398,0.653
,0.644,1,-0.612,0.47,0.636,1,-0.45,0.517,0.728,1,0.314,-0.213,-0.925,1,0.5,-0.31,-0.809,1,0.063,-0.887,-0.457,1,0.204,-0.921,-0.33,1,-0.509,0.534,-0.676,1,-0.553,0.077,-0.83,1,-0.513,0.317,-0.798,1,-0.484,-0.175,-0.857,1,-0.331,0.204,-0.921,1,0.646,-0.655,0.392,1
,0.808,-0.499,0.313,1,0.436,-0.744,0.506,1,0.728,-0.45,0.517,1,-0.394,-0.718,-0.574,1,0.636,0.613,0.469,1,0.728,0.45,0.516,1,-0.51,-0.534,0.674,1,-0.643,-0.398,0.654,1,0.538,0.075,-0.84,1,0.501,0.31,-0.808,1,-0.927,-0.349,0.138,1,-0.847,-0.523,0.096,1,0.248,-0.067
,0.966,1,-0.437,-0.744,-0.506,1,-0.728,-0.45,-0.517,1,0.421,-0.214,-0.881,1,0.193,0.119,-0.974,1,-0.538,-0.075,-0.84,1,-0.501,-0.31,-0.808,1,-0.499,0.166,-0.851,1,-0.345,-0.213,-0.914,1,-0.418,-0.216,-0.882,1,-0.99,0.137,-0.028,1,-0.848,0.524,-0.073,1,0.484,0.175,-0.857,1
,0.331,-0.204,-0.921,1,-0.646,0.657,0.389,1,-0.809,0.5,0.309,1,-0.635,0.61,-0.473,1,-0.727,0.449,-0.519,1,0.84,0.538,-0.075,1,-0.123,-0.927,0.355,1,-0.08,-0.848,0.524,1,0.566,-0.4,0.721,1,0.651,-0.646,0.399,1,-0.486,0.633,-0.603,1,-0.533,0.72,-0.445,1,-0.213,0.925
,-0.314,1,-0.31,0.809,-0.5,1,-0.84,0.538,0.075,1,-0.732,-0.433,-0.526,1,-0.81,-0.499,-0.308,1,0.966,-0.248,0.068,1,0.975,-0.189,-0.117,1,-0.47,-0.636,-0.612,1,-0.517,-0.728,-0.45,1,0.674,-0.51,-0.534,1,0.654,-0.643,-0.398,1,0.857,0.484,-0.175,1,-0.381,-0.647,-0.661,1
,-0.301,-0.811,-0.501,1,-0.971,0.2,-0.13,1,-1,0.008,0.005,1,-0.673,-0.512,-0.534,1,-0.651,-0.645,-0.399,1,0.044,-0.99,-0.137,1,0.089,-0.847,-0.524,1,-0.857,0.484,0.175,1,-0.966,0.25,0.066,1,-0.974,0.192,-0.118,1,0.47,0.636,-0.612,1,0.517,0.728,-0.45,1,-0.213,-0.925
,0.314,1,-0.31,-0.809,0.5,1,-0.887,-0.457,0.063,1,-0.921,-0.33,0.204,1,-0.84,0.538,0.075,1,-0.887,-0.457,0.063,1,-0.063,-0.887,0.457,1,0.074,0.84,0.537,1,-0.075,0.838,-0.54,1,0.063,-0.887,-0.457,1,0.436,-0.744,0.506,1,0.176,0.858,0.483,1,-0.394,-0.718,-0.574,1
,-0.526,-0.732,-0.433,1,0.248,-0.067,0.966,1,-0.635,0.61,-0.473,1,-0.213,0.925,-0.314,1,-0.732,-0.433,-0.526,1,0.857,0.484,-0.175,1,-0.744,-0.506,-0.437,1,-0.213,-0.925,0.314,1,0.526,-0.732,0.433,1,0.646,-0.655,0.392,1,-0.214,-0.881,0.421,1,0.636,0.613,0.469,1,-0.123,-0.927
,0.355,1,-0.437,-0.744,-0.506,1,-0.673,-0.512,-0.534,1,-0.174,0.856,-0.486,1,-0.646,0.657,0.389,1,-0.553,0.077,-0.83,1,-0.538,-0.075,-0.84,1,-0.612,0.47,0.636,1,0.674,-0.51,-0.534,1,-0.509,0.534,-0.676,1,-0.486,0.633,-0.603,1,0.538,0.075,-0.84,1,-0.99,0.137,-0.028,1
,0.966,-0.248,0.068,1,-0.721,0.567,0.398,1,-0.857,0.484,0.175,1,-0.499,0.166,-0.851,1,0.566,-0.4,0.721,1,-0.927,-0.349,0.138,1,-0.381,-0.647,-0.661,1,0.421,-0.214,-0.881,1,-0.47,-0.636,-0.612,1,0.47,0.636,-0.612,1,-0.418,-0.216,-0.882,1,-0.971,0.2,-0.13,1,-0.966,0.25
,0.066,1,0.84,0.538,-0.075,1,0.044,-0.99,-0.137,1]
,"uvs":[0.37,0.422,0.26,0.422,0.315,0.327,0.334,0.55,0.39,0.455,0.445,0.55,0.677,0.026,0.732,0.121,0.621,0.121,0.73,0.142,0.676,0.238,0.62,0.143,0.114,0.421,0.169,0.326,0.224,0.421,0.549,0.25,0.604,0.154,0.659,0.25,0.518,0.423,0.408,0.423,0.463,0.327,0.297,0.549,0.187,0.549,0.242,0.454,0.113,0.443
,0.224,0.443,0.168,0.538,0.241,0.411,0.186,0.315,0.297,0.316,0.768,0.121,0.823,0.025,0.878,0.121,0.805,0.015,0.75,0.11,0.695,0.015,0.335,0.316,0.445,0.317,0.389,0.412,0.474,0.121,0.529,0.026,0.584,0.121,0.602,0.111,0.547,0.016,0.657,0.015,0.315,0.539,0.261,0.444,0.371,0.444,0.803,0.248,0.693,0.248
,0.748,0.152,0.768,0.141,0.878,0.144,0.821,0.238,0.464,0.54,0.408,0.446,0.518,0.444,0.586,0.144,0.599,0.137,0.594,0.148,0.322,0.308,0.335,0.308,0.383,0.43,0.371,0.431,0.321,0.557,0.327,0.546,0.597,0.129,0.585,0.13,0.168,0.553,0.161,0.543,0.604,0.139,0.611,0.15,0.602,0.126,0.595,0.115,0.315,0.554
,0.308,0.544,0.241,0.426,0.234,0.415,0.531,0.24,0.531,0.255,0.524,0.244,0.529,0.011,0.537,0.021,0.743,0.135,0.738,0.146,0.101,0.429,0.106,0.417,0.755,0.128,0.761,0.117,0.237,0.436,0.231,0.447,0.818,0.007,0.813,0.019,0.531,0.43,0.518,0.431,0.677,0.01,0.684,0.021,0.672,0.257,0.659,0.258,0.458,0.558
,0.445,0.559,0.821,0.253,0.814,0.242,0.174,0.557,0.18,0.545,0.676,0.253,0.669,0.242,0.461,0.129,0.467,0.117,0.458,0.309,0.453,0.321,0.476,0.144,0.463,0.137,0.476,0.136,0.891,0.128,0.879,0.129,0.748,0.137,0.755,0.148,0.395,0.438,0.408,0.437,0.533,0.008,0.546,0.007,0.535,0.257,0.541,0.246,0.608,0.128
,0.614,0.117,0.242,0.439,0.249,0.449,0.891,0.136,0.886,0.148,0.31,0.308,0.304,0.32,0.531,0.437,0.526,0.448,0.68,0.255,0.685,0.244,0.75,0.125,0.743,0.115,0.1,0.435,0.113,0.434,0.315,0.312,0.323,0.322,0.248,0.436,0.26,0.435,0.67,0.008,0.664,0.019,0.755,0.134,0.768,0.133,0.39,0.439,0.397,0.45
,0.463,0.312,0.47,0.323,0.169,0.311,0.176,0.321,0.607,0.135,0.62,0.134,0.31,0.557,0.297,0.558,0.745,0.128,0.732,0.129,0.247,0.43,0.253,0.418,0.389,0.427,0.382,0.416,0.464,0.555,0.457,0.545,0.173,0.308,0.186,0.307,0.384,0.437,0.378,0.448,0.395,0.43,0.4,0.419,0.682,0.008,0.695,0.007,0.816,0.255
,0.803,0.256,0.823,0.01,0.831,0.021,0.237,0.429,0.224,0.43,0.456,0.323,0.231,0.417,0.592,0.117,0.538,0.244,0.176,0.543,0.666,0.246,0.334,0.559,0.586,0.136,0.596,0.15,0.539,0.02,0.248,0.415,0.378,0.418,0.382,0.45,0.731,0.134,0.327,0.32,0.26,0.431,0.113,0.43,0.816,0.021,0.522,0.021,0.683,0.242
,0.768,0.129,0.468,0.148,0.609,0.115,0.253,0.448,0.669,0.021,0.548,0.258,0.323,0.544,0.179,0.319,0.224,0.434,0.828,0.243,0.235,0.449,0.525,0.419,0.452,0.546,0.76,0.145,0.741,0.148,0.518,0.436,0.187,0.558,0.613,0.147,0.805,0.006,0.879,0.135,0.657,0.007,0.401,0.45,0.397,0.416,0.621,0.129,0.305,0.545
,0.886,0.117,0.811,0.244,0.297,0.307,0.472,0.545,0.693,0.256,0.687,0.019,0.308,0.322,0.371,0.436,0.586,0.136,0.327,0.32,0.322,0.308,0.378,0.418,0.383,0.43,0.334,0.559,0.321,0.557,0.592,0.117,0.597,0.129,0.176,0.543,0.596,0.15,0.604,0.139,0.609,0.115,0.602,0.126,0.323,0.544,0.315,0.554,0.248,0.415
,0.241,0.426,0.538,0.244,0.522,0.021,0.529,0.011,0.731,0.134,0.743,0.135,0.113,0.43,0.101,0.429,0.768,0.129,0.755,0.128,0.224,0.434,0.805,0.006,0.818,0.007,0.525,0.419,0.531,0.43,0.669,0.021,0.677,0.01,0.666,0.246,0.672,0.257,0.452,0.546,0.828,0.243,0.821,0.253,0.187,0.558,0.174,0.557,0.683,0.242
,0.676,0.253,0.474,0.13,0.461,0.129,0.446,0.308,0.468,0.148,0.463,0.137,0.886,0.117,0.891,0.128,0.741,0.148,0.748,0.137,0.401,0.45,0.395,0.438,0.539,0.02,0.548,0.258,0.535,0.257,0.621,0.129,0.608,0.128,0.235,0.449,0.242,0.439,0.879,0.135,0.891,0.136,0.297,0.307,0.518,0.436,0.531,0.437,0.693,0.256
,0.68,0.255,0.758,0.115,0.75,0.125,0.106,0.447,0.1,0.435,0.308,0.322,0.253,0.448,0.248,0.436,0.657,0.007,0.67,0.008,0.76,0.145,0.755,0.134,0.382,0.45,0.39,0.439,0.456,0.323,0.162,0.321,0.169,0.311,0.613,0.147,0.607,0.135,0.305,0.545,0.31,0.557,0.739,0.117,0.745,0.128,0.26,0.431,0.397,0.416
,0.389,0.427,0.472,0.545,0.464,0.555,0.179,0.319,0.173,0.308,0.371,0.436,0.384,0.437,0.408,0.431,0.687,0.019,0.682,0.008,0.811,0.244,0.816,0.255,0.816,0.021,0.823,0.01,0.231,0.417,0.237,0.429,0.456,0.323,0.231,0.417,0.592,0.117,0.538,0.244,0.176,0.543,0.666,0.246,0.474,0.13,0.586,0.136,0.446,0.308
,0.596,0.15,0.539,0.02,0.106,0.447,0.382,0.45,0.162,0.321,0.26,0.431,0.113,0.43,0.816,0.021,0.522,0.021,0.683,0.242,0.768,0.129,0.468,0.148,0.253,0.448,0.548,0.258,0.179,0.319,0.224,0.434,0.758,0.115,0.828,0.243,0.235,0.449,0.525,0.419,0.739,0.117,0.452,0.546,0.76,0.145,0.741,0.148,0.518,0.436
,0.613,0.147,0.805,0.006,0.408,0.431,0.879,0.135,0.657,0.007,0.401,0.45,0.397,0.416,0.621,0.129,0.305,0.545,0.811,0.244,0.297,0.307,0.472,0.545,0.687,0.019,0.308,0.322,0.371,0.436]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50
,51,52,53,54,55,56,57,58,59,36,60,61,0,62,63,3,64,65,41,66,67,26,68,69,16,70,71,42,72,73,45,74,75,27,76,77,78,79,80,40,81,82,9,83,84,12,85,86,30,87,88
,25,89,90,33,91,92,18,93,94,6,95,96,17,97,98,5,99,100,53,101,102,22,103,104,10,105,106,39,107,108,37,109,110,111,112,113,32,114,115,50,116,117,55,118,119,43,120,121,15,122,123
,8,124,125,23,126,127,52,128,129,29,130,131,56,132,133,49,134,135,34,136,137,24,138,139,2,140,141,46,142,143,44,144,145,51,146,147,4,148,149,20,150,151,13,152,153,11,154,155,21,156,157
,7,158,159,1,160,161,38,162,163,54,164,165,28,166,167,47,168,169,19,170,171,35,172,173,48,174,175,31,176,177,14,178,179,19,180,20,181,13,153,40,182,41,183,57,59,25,184,26,185,16,71
,3,100,186,67,39,41,111,187,57,61,37,36,15,188,16,189,42,73,27,131,190,69,24,26,0,141,191,192,3,65,9,155,193,86,13,12,36,163,194,195,0,63,14,196,12,197,30,88,39,198,40
,199,9,84,32,200,30,201,78,80,42,145,202,203,45,75,6,125,204,205,17,98,45,169,206,207,27,77,24,208,25,92,34,33,52,209,53,210,22,104,20,211,18,96,7,6,4,212,5,213,53,102
,49,214,50,215,55,119,22,157,216,217,10,106,35,218,33,94,19,18,51,219,52,220,43,121,54,221,55,222,37,110,7,223,8,224,23,127,32,177,225,226,50,117,28,227,29,228,56,133,49,175,229
,230,34,137,1,231,2,232,46,143,111,57,78,57,233,58,36,234,235,0,236,237,3,238,239,41,240,241,26,242,68,16,243,244,42,245,246,45,247,248,27,249,250,78,251,79,40,252,253,9,254,255
,12,256,257,30,258,259,25,260,89,33,261,262,18,263,264,6,265,266,17,267,268,5,269,99,53,270,271,22,272,273,10,274,275,39,276,277,37,278,109,111,279,280,32,281,282,50,283,284,55,285,286
,43,287,120,15,288,289,8,290,291,23,292,293,52,294,295,29,296,130,56,297,298,49,299,300,34,301,302,24,303,304,2,305,140,46,306,307,44,308,309,51,310,311,4,312,313,20,314,150,13,315,316
,11,317,318,21,319,320,7,321,322,1,323,160,38,324,325,54,326,327,28,328,329,47,330,331,19,332,170,35,333,334,48,335,336,31,337,338,14,339,340,19,171,341,342,14,13,40,82,343,344,78,57
,25,90,345,346,17,16,3,5,100,67,347,39,111,113,348,61,349,37,15,123,350,351,43,42,27,29,131,69,352,24,0,2,141,353,4,3,9,11,155,86,354,13,36,38,163,355,1,0,14,179,356
,357,31,30,39,108,358,359,10,9,32,115,360,361,111,78,42,44,145,362,46,45,6,8,125,363,15,17,45,47,169,364,28,27,24,139,365,92,366,34,52,129,367,368,23,22,20,151,369,96,370,7
,4,149,371,372,51,53,49,135,373,374,56,55,22,21,157,375,11,10,35,173,376,94,377,19,51,147,378,379,44,43,54,165,380,381,38,37,7,159,382,383,21,23,32,31,177,384,48,50,28,167,385
,386,54,56,49,48,175,387,35,34,1,161,388,389,47,46]
}
,{"name":"d100","id":"d100","billboardMode":0,"position":[-0.6,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false
,"positions":[-0.0562,-0.0133,0.0652,-0.0838,-0.0133,-0.0197,-0.0838,0.0037,0.0272,-0.0562,0.0133,-0.0652,-0.0838,0.0133,0.0197,-0.0838,-0.0037,-0.0272,0.0072,0.0133,0.0858,0.0794,0.0133,0.0333,0.0518,-0.0037,0.0713,-0.0794,0.0133,0.0333,-0.0072,0.0133,0.0858,-0.0518,-0.0037,0.0713,0.0446,0.0133,-0.0736,-0.0446,0.0133,-0.0736,0,-0.0037,-0.0881,-0.0794,-0.0133,-0.0333,-0.0072,-0.0133,-0.0858
,-0.0518,0.0037,-0.0713,0.0794,-0.0133,-0.0333,0.0072,-0.0133,-0.0858,0.0072,-0.0857,-0.0098,0.0838,-0.0133,-0.0197,0.0562,-0.0133,0.0652,0.0838,0.0037,0.0272,0.0446,-0.0133,0.0736,-0.0446,-0.0133,0.0736,0,0.0037,0.0881,0.0072,0.0857,0.0098,0,0.0915,0,0.0103,0.0868,0.0034,-0.0072,0.0857,0.0098,0,0.0915,0,0,0.0868,0.0109,-0.0116,0.0857,-0.0038
,0,0.0915,0,-0.0103,0.0868,0.0034,0,0.0857,-0.0122,0,0.0915,0,-0.0064,0.0868,-0.0088,0.0116,0.0857,-0.0038,0,0.0915,0,0.0064,0.0868,-0.0088,-0.0116,-0.0857,0.0038,0,-0.0915,0,-0.0103,-0.0868,-0.0034,0,-0.0857,0.0122,0,-0.0915,0,-0.0064,-0.0868,0.0088,0.0116,-0.0857,0.0038,0,-0.0915,0,0.0064,-0.0868,0.0088
,0,-0.0915,0,0.0103,-0.0868,-0.0034,-0.0072,-0.0857,-0.0098,0,-0.0915,0,0,-0.0868,-0.0109,0.0525,-0.0103,0.0722,0.0562,-0.008,0.0687,0.0525,-0.0103,0.0722,0.0511,-0.0148,0.0704,0.0525,-0.0103,0.0722,0.048,-0.008,0.0747,0.0849,0.0103,0.0276,0.0827,0.008,0.0322,0.0838,0.0133,0.0197,0.0849,0.0103,0.0276,0.0827,0.0148,0.0269,0.0849,0.0103,0.0276
,0.0859,0.008,0.0226,0,0.0103,0.0893,0,0.0148,0.087,0,0.0103,0.0893,0.0051,0.008,0.0886,0,0.0103,0.0893,-0.0051,0.008,0.0886,0.0525,0.0103,-0.0722,0.0511,0.0148,-0.0704,0.0518,0.0037,-0.0713,0.0525,0.0103,-0.0722,0.048,0.008,-0.0747,0.0562,0.0133,-0.0652,0.0525,0.0103,-0.0722,0.0562,0.008,-0.0687,0.0849,-0.0103,-0.0276,0.0827,-0.0148,-0.0269
,0.0838,-0.0037,-0.0272,0.0849,-0.0103,-0.0276,0.0859,-0.008,-0.0226,0.0849,-0.0103,-0.0276,0.0827,-0.008,-0.0322,-0.0525,0.0103,-0.0722,-0.0511,0.0148,-0.0704,-0.0525,0.0103,-0.0722,-0.0562,0.008,-0.0687,-0.0525,0.0103,-0.0722,-0.048,0.008,-0.0747,0,-0.0103,-0.0893,0,-0.0148,-0.087,0,-0.0103,-0.0893,0.0051,-0.008,-0.0886,0,-0.0103,-0.0893,-0.0051,-0.008,-0.0886
,-0.0849,-0.0103,-0.0276,-0.0827,-0.008,-0.0322,-0.0849,-0.0103,-0.0276,-0.0859,-0.008,-0.0226,-0.0849,-0.0103,-0.0276,-0.0827,-0.0148,-0.0269,-0.0849,0.0103,0.0276,-0.0859,0.008,0.0226,-0.0849,0.0103,0.0276,-0.0827,0.0148,0.0269,-0.0849,0.0103,0.0276,-0.0827,0.008,0.0322,-0.0525,-0.0103,0.0722,-0.0511,-0.0148,0.0704,-0.0525,-0.0103,0.0722,-0.0562,-0.008,0.0687,-0.0525,-0.0103,0.0722
,-0.048,-0.008,0.0747,-0.0064,-0.0868,0.0088,-0.0511,-0.0148,0.0704,0.0064,-0.0868,0.0088,0.0511,-0.0148,0.0704,0.0103,0.0868,0.0034,0.0827,0.0148,0.0269,0.048,-0.008,0.0747,0.0064,0.0868,-0.0088,0.0511,0.0148,-0.0704,0.0859,0.008,0.0226,0.0562,0.008,-0.0687,0.0827,-0.008,-0.0322,0.048,0.008,-0.0747,-0.0562,0.008,-0.0687,-0.0103,0.0868,0.0034,-0.0827,0.0148,0.0269
,-0.0051,0.008,0.0886,-0.048,-0.008,0.0747,0,0.0868,0.0109,0,0.0148,0.087,0.0562,-0.008,0.0687,0.0827,0.008,0.0322,-0.048,0.008,-0.0747,-0.0051,-0.008,-0.0886,-0.0064,0.0868,-0.0088,-0.0511,0.0148,-0.0704,0.0103,-0.0868,-0.0034,0.0827,-0.0148,-0.0269,-0.0827,0.008,0.0322,0,-0.0868,-0.0109,0,-0.0148,-0.087,-0.0103,-0.0868,-0.0034,-0.0827,-0.0148,-0.0269
,-0.0859,-0.008,-0.0226,-0.0859,0.008,0.0226,0,0.0868,0.0109,-0.0103,0.0868,0.0034,0,0.0915,0,-0.0064,0.0868,-0.0088,0,0.0915,0,0.0064,0.0868,-0.0088,0,0.0915,0,0.0103,0.0868,0.0034,0,0.0915,0,-0.0064,-0.0868,0.0088,0.0064,-0.0868,0.0088,0,-0.0915,0,0.0103,-0.0868,-0.0034,0,-0.0915,0,0,-0.0868,-0.0109
,0,-0.0915,0,-0.0103,-0.0868,-0.0034,0,-0.0915,0,0.0511,-0.0148,0.0704,0.048,-0.008,0.0747,0.0525,-0.0103,0.0722,0.0562,-0.008,0.0687,0.0525,-0.0103,0.0722,0.0827,0.0148,0.0269,0.0859,0.008,0.0226,0.0849,0.0103,0.0276,0.0827,0.008,0.0322,0.0849,0.0103,0.0276,0.0051,0.008,0.0886,-0.0051,0.008,0.0886,0,0.0103,0.0893,0,0.0148,0.087
,0,0.0103,0.0893,0.048,0.008,-0.0747,0.0562,0.008,-0.0687,0.0525,0.0103,-0.0722,0.0511,0.0148,-0.0704,0.0525,0.0103,-0.0722,0.0859,-0.008,-0.0226,0.0827,-0.008,-0.0322,0.0849,-0.0103,-0.0276,0.0827,-0.0148,-0.0269,0.0849,-0.0103,-0.0276,-0.0562,0.008,-0.0687,-0.048,0.008,-0.0747,-0.0525,0.0103,-0.0722,-0.0511,0.0148,-0.0704,-0.0525,0.0103,-0.0722,0.0051,-0.008,-0.0886
,-0.0051,-0.008,-0.0886,0,-0.0103,-0.0893,0,-0.0148,-0.087,0,-0.0103,-0.0893,-0.0859,-0.008,-0.0226,-0.0827,-0.0148,-0.0269,-0.0849,-0.0103,-0.0276,-0.0827,-0.008,-0.0322,-0.0849,-0.0103,-0.0276,-0.0827,0.0148,0.0269,-0.0827,0.008,0.0322,-0.0849,0.0103,0.0276,-0.0859,0.008,0.0226,-0.0849,0.0103,0.0276,-0.0562,-0.008,0.0687,-0.048,-0.008,0.0747,-0.0525,-0.0103,0.0722
,-0.0511,-0.0148,0.0704,-0.0525,-0.0103,0.0722,-0.0511,-0.0148,0.0704,0.0511,-0.0148,0.0704,0.0827,0.0148,0.0269,0.0051,0.008,0.0886,0.0511,0.0148,-0.0704,0.0859,-0.008,-0.0226,0.0562,0.008,-0.0687,0.0827,-0.008,-0.0322,0.0051,-0.008,-0.0886,-0.0827,-0.008,-0.0322,-0.0827,0.0148,0.0269,-0.0051,0.008,0.0886,-0.048,-0.008,0.0747,0,0.0148,0.087,0.0562,-0.008,0.0687
,0.0827,0.008,0.0322,-0.048,0.008,-0.0747,-0.0051,-0.008,-0.0886,-0.0511,0.0148,-0.0704,0.0827,-0.0148,-0.0269,-0.0562,-0.008,0.0687,0,-0.0148,-0.087,-0.0827,-0.0148,-0.0269,-0.0859,-0.008,-0.0226,-0.0859,0.008,0.0226]
,"normals":[-0.739,-0.526,0.42,-0.845,-0.526,0.095,-0.868,-0.41,0.282,-0.739,0.526,-0.42,-0.845,0.526,-0.095,-0.868,0.41,-0.282,0.351,0.526,0.774,0.628,0.526,0.573,0.536,0.41,0.738,-0.628,0.526,0.573,-0.351,0.526,0.774,-0.536,0.41,0.738,0.171,0.526,-0.833,-0.171,0.526,-0.833,0,0.41,-0.912,-0.628,-0.526,-0.573,-0.351,-0.526,-0.774
,-0.536,-0.41,-0.738,0.628,-0.526,-0.573,0.351,-0.526,-0.774,0.361,-0.789,-0.497,0.845,-0.526,0.095,0.739,-0.526,0.42,0.868,-0.41,0.282,0.171,-0.526,0.833,-0.171,-0.526,0.833,0,-0.41,0.912,0.361,0.789,0.497,0,1,0,0.529,0.831,0.172,-0.361,0.789,0.497,0,1,0,0,0.831,0.556,-0.585,0.789,-0.19
,0,1,0,-0.529,0.831,0.172,0,0.789,-0.615,0,1,0,-0.327,0.831,-0.45,0.585,0.789,-0.19,0,1,0,0.327,0.831,-0.45,-0.585,-0.789,0.19,0,-1,0,-0.529,-0.831,-0.172,0,-0.789,0.615,0,-1,0,-0.327,-0.831,0.45,0.585,-0.789,0.19,0,-1,0,0.327,-0.831,0.45
,0,-1,0,0.529,-0.831,-0.172,-0.361,-0.789,-0.497,0,-1,0,0,-0.831,-0.556,0.575,-0.203,0.792,0.766,-0.025,0.643,0.575,-0.203,0.792,0.47,-0.602,0.646,0.575,-0.203,0.792,0.375,-0.025,0.927,0.931,0.203,0.303,0.848,0.025,0.529,0.845,0.526,-0.095,0.931,0.203,0.303,0.76,0.602,0.247,0.931,0.203,0.303
,0.997,0.025,0.07,0,0.203,0.979,0,0.602,0.799,0,0.203,0.979,0.241,0.025,0.97,0,0.203,0.979,-0.241,0.025,0.97,0.575,0.203,-0.792,0.47,0.602,-0.646,0.536,-0.41,-0.738,0.575,0.203,-0.792,0.375,0.025,-0.927,0.739,0.526,-0.42,0.575,0.203,-0.792,0.766,0.025,-0.643,0.931,-0.203,-0.303,0.76,-0.602,-0.247
,0.868,0.41,-0.282,0.931,-0.203,-0.303,0.997,-0.025,-0.07,0.931,-0.203,-0.303,0.848,-0.025,-0.529,-0.575,0.203,-0.792,-0.47,0.602,-0.646,-0.575,0.203,-0.792,-0.766,0.025,-0.643,-0.575,0.203,-0.792,-0.375,0.025,-0.927,0,-0.203,-0.979,0,-0.602,-0.799,0,-0.203,-0.979,0.241,-0.025,-0.97,0,-0.203,-0.979,-0.241,-0.025,-0.97
,-0.931,-0.203,-0.303,-0.848,-0.025,-0.529,-0.931,-0.203,-0.303,-0.997,-0.025,-0.07,-0.931,-0.203,-0.303,-0.76,-0.602,-0.247,-0.931,0.203,0.303,-0.997,0.025,0.07,-0.931,0.203,0.303,-0.76,0.602,0.247,-0.931,0.203,0.303,-0.848,0.025,0.529,-0.575,-0.203,0.792,-0.47,-0.602,0.646,-0.575,-0.203,0.792,-0.766,-0.025,0.643,-0.575,-0.203,0.792
,-0.375,-0.025,0.927,-0.327,-0.831,0.45,-0.47,-0.602,0.646,0.327,-0.831,0.45,0.47,-0.602,0.646,0.529,0.831,0.172,0.76,0.602,0.247,0.375,-0.025,0.927,0.327,0.831,-0.45,0.47,0.602,-0.646,0.997,0.025,0.07,0.766,0.025,-0.643,0.848,-0.025,-0.529,0.375,0.025,-0.927,-0.766,0.025,-0.643,-0.529,0.831,0.172,-0.76,0.602,0.247
,-0.241,0.025,0.97,-0.375,-0.025,0.927,0,0.831,0.556,0,0.602,0.799,0.766,-0.025,0.643,0.848,0.025,0.529,-0.375,0.025,-0.927,-0.241,-0.025,-0.97,-0.327,0.831,-0.45,-0.47,0.602,-0.646,0.529,-0.831,-0.172,0.76,-0.602,-0.247,-0.848,0.025,0.529,0,-0.831,-0.556,0,-0.602,-0.799,-0.529,-0.831,-0.172,-0.76,-0.602,-0.247
,-0.997,-0.025,-0.07,-0.997,0.025,0.07,0,0.831,0.556,-0.529,0.831,0.172,0,1,0,-0.327,0.831,-0.45,0,1,0,0.327,0.831,-0.45,0,1,0,0.529,0.831,0.172,0,1,0,-0.327,-0.831,0.45,0.327,-0.831,0.45,0,-1,0,0.529,-0.831,-0.172,0,-1,0,0,-0.831,-0.556
,0,-1,0,-0.529,-0.831,-0.172,0,-1,0,0.47,-0.602,0.646,0.375,-0.025,0.927,0.575,-0.203,0.792,0.766,-0.025,0.643,0.575,-0.203,0.792,0.76,0.602,0.247,0.997,0.025,0.07,0.931,0.203,0.303,0.848,0.025,0.529,0.931,0.203,0.303,0.241,0.025,0.97,-0.241,0.025,0.97,0,0.203,0.979,0,0.602,0.799
,0,0.203,0.979,0.375,0.025,-0.927,0.766,0.025,-0.643,0.575,0.203,-0.792,0.47,0.602,-0.646,0.575,0.203,-0.792,0.997,-0.025,-0.07,0.848,-0.025,-0.529,0.931,-0.203,-0.303,0.76,-0.602,-0.247,0.931,-0.203,-0.303,-0.766,0.025,-0.643,-0.375,0.025,-0.927,-0.575,0.203,-0.792,-0.47,0.602,-0.646,-0.575,0.203,-0.792,0.241,-0.025,-0.97
,-0.241,-0.025,-0.97,0,-0.203,-0.979,0,-0.602,-0.799,0,-0.203,-0.979,-0.997,-0.025,-0.07,-0.76,-0.602,-0.247,-0.931,-0.203,-0.303,-0.848,-0.025,-0.529,-0.931,-0.203,-0.303,-0.76,0.602,0.247,-0.848,0.025,0.529,-0.931,0.203,0.303,-0.997,0.025,0.07,-0.931,0.203,0.303,-0.766,-0.025,0.643,-0.375,-0.025,0.927,-0.575,-0.203,0.792
,-0.47,-0.602,0.646,-0.575,-0.203,0.792,-0.47,-0.602,0.646,0.47,-0.602,0.646,0.76,0.602,0.247,0.241,0.025,0.97,0.47,0.602,-0.646,0.997,-0.025,-0.07,0.766,0.025,-0.643,0.848,-0.025,-0.529,0.241,-0.025,-0.97,-0.848,-0.025,-0.529,-0.76,0.602,0.247,-0.241,0.025,0.97,-0.375,-0.025,0.927,0,0.602,0.799,0.766,-0.025,0.643
,0.848,0.025,0.529,-0.375,0.025,-0.927,-0.241,-0.025,-0.97,-0.47,0.602,-0.646,0.76,-0.602,-0.247,-0.766,-0.025,0.643,0,-0.602,-0.799,-0.76,-0.602,-0.247,-0.997,-0.025,-0.07,-0.997,0.025,0.07]
,"tangents":[-0.214,0.775,0.594,1,-0.338,0.662,0.669,1,-0.164,0.771,0.616,1,-0.615,-0.273,0.74,1,-0.375,-0.458,0.806,1,-0.445,-0.385,0.809,1,-0.931,0.284,0.229,1,-0.777,0.468,0.421,1,-0.833,0.396,0.386,1,0.501,-0.289,0.815,1,0.636,-0.473,0.61,1,0.62,-0.402,0.674,1,-0.879,0.463
,0.112,1,-0.89,0.279,0.359,1,-0.903,0.391,0.176,1,-0.515,-0.272,0.813,1,-0.651,-0.457,0.606,1,-0.633,-0.384,0.673,1,0.647,0.762,0.009,1,0.76,0.644,-0.093,1,0.837,0.51,-0.2,1,-0.532,-0.807,0.257,1,-0.653,-0.713,0.256,1,-0.486,-0.817,0.31,1,-0.892,0.277,0.358,1
,-0.88,0.461,0.111,1,-0.905,0.389,0.175,1,-0.93,0.27,0.248,1,-0.979,0,0.206,1,-0.829,0.461,0.317,1,0.518,-0.274,0.81,1,0.493,0,0.87,1,0.552,-0.463,0.693,1,-0.6,-0.262,0.756,1,-0.661,0,0.751,1,-0.474,-0.457,0.752,1,-0.901,0.267,0.342,1,-0.915,0
,0.403,1,-0.845,-0.044,0.533,1,0.601,-0.263,0.755,1,0.662,0,0.749,1,0.765,0.047,0.643,1,-0.472,0.521,0.711,1,-0.612,0,0.791,1,-0.647,0.263,0.716,1,-0.902,0.265,0.34,1,-0.916,0,0.401,1,-0.86,0.459,0.223,1,-0.81,-0.552,0.2,1,-0.984,0,0.176,1
,-0.944,-0.313,0.107,1,0.953,0,-0.303,1,0.812,0.554,-0.182,1,-0.535,-0.261,0.803,1,-0.511,0,0.86,1,-0.57,-0.457,0.683,1,-0.632,-0.725,0.273,1,-0.401,-0.8,0.446,1,-0.772,0.183,0.608,1,-0.781,0.059,0.622,1,-0.681,0.416,0.602,1,-0.859,0.367,0.357,1,-0.358,0.662
,0.658,1,-0.446,0.574,0.687,1,0.376,-0.459,0.805,1,-0.101,-0.653,0.75,1,0.222,-0.597,0.771,1,0.032,-0.873,0.488,1,-0.004,-0.925,0.381,1,-0.981,0.191,-0.04,1,-0.997,0.066,-0.05,1,-0.909,0.409,-0.085,1,-0.908,0.359,0.217,1,0.732,-0.668,0.139,1,0.787,-0.579,0.211,1
,-0.68,0.658,-0.325,1,-0.799,0.6,-0.022,1,0.655,0.753,0.058,1,0.366,0.802,0.472,1,0.581,0.773,0.256,1,0.615,-0.274,0.739,1,0.817,-0.18,0.547,1,0.623,-0.278,0.731,1,-0.147,-0.969,0.198,1,-0.552,-0.797,0.243,1,0.445,-0.386,0.808,1,0.201,-0.406,0.891,1,0.05,-0.474
,0.879,1,0.272,0.94,0.205,1,0.234,0.914,0.331,1,-0.817,-0.178,0.548,1,-0.831,-0.055,0.553,1,-0.786,-0.403,0.468,1,-0.608,-0.354,0.711,1,-0.772,0.186,0.608,1,-0.886,0.283,0.366,1,0.763,0.633,-0.132,1,0.819,0.459,-0.346,1,-0.908,0.411,-0.085,1,-0.849,0.48,-0.224,1
,-0.747,-0.651,0.135,1,-0.8,-0.561,0.214,1,-0.201,-0.405,0.892,1,-0.488,-0.355,0.798,1,-0.359,0.657,0.663,1,-0.066,0.737,0.673,1,-0.269,-0.177,0.947,1,-0.27,-0.054,0.961,1,0.102,-0.652,0.752,1,0.044,-0.562,0.826,1,0.263,-0.198,0.944,1,0.256,-0.072,0.964,1,0.331,0.821
,0.465,1,0.271,0.879,0.393,1,0.082,0.949,0.303,1,-0.22,0.789,0.574,1,0.781,-0.422,0.459,1,0.604,-0.373,0.704,1,-0.681,0.655,-0.326,1,-0.769,0.566,-0.296,1,-0.453,0.555,0.698,1,-0.801,0.599,-0.024,1,-0.846,-0.045,0.531,1,-0.834,-0.543,0.1,1,0.476,-0.458,0.751,1
,-0.635,0.604,0.483,1,-0.887,0.281,0.366,1,-0.859,0.459,0.225,1,0.832,-0.056,0.552,1,-0.044,-0.564,0.825,1,0.31,0.861,0.403,1,0.487,-0.356,0.797,1,-0.768,0.569,-0.295,1,-0.623,-0.276,0.732,1,0.36,0.037,0.932,1,-0.221,-0.596,0.772,1,-0.85,0.477,-0.224,1,0.812,-0.491
,0.315,1,-0.997,-0.04,0.06,1,0.65,-0.607,0.457,1,-0.553,0.485,0.678,1,-0.259,-0.852,0.454,1,-0.822,-0.472,0.32,1,-0.907,0.362,0.216,1,-0.764,0.048,0.644,1,-0.78,0.061,0.623,1,-0.807,-0.555,0.202,1,0.621,0.784,0.001,1,0.5,-0.295,0.814,1,0.897,0.246,-0.368,1
,-0.667,-0.595,0.448,1,-0.377,0.049,0.925,1,-0.591,0.481,0.647,1,-0.05,-0.473,0.88,1,0.062,0.794,0.604,1,-0.997,-0.04,0.06,1,0.36,0.037,0.932,1,0.493,0,0.87,1,-0.764,0.048,0.644,1,-0.661,0,0.751,1,-0.859,0.459,0.225,1,-0.915,0,0.403,1,0.476,-0.458
,0.751,1,0.662,0,0.749,1,-0.453,0.555,0.698,1,-0.846,-0.045,0.531,1,-0.916,0,0.401,1,-0.807,-0.555,0.202,1,-0.984,0,0.176,1,0.897,0.246,-0.368,1,0.953,0,-0.303,1,-0.377,0.049,0.925,1,-0.511,0,0.86,1,-0.834,-0.543,0.1,1,-0.887,0.281,0.366,1
,-0.772,0.183,0.608,1,-0.553,0.485,0.678,1,-0.681,0.416,0.602,1,-0.635,0.604,0.483,1,-0.044,-0.564,0.825,1,-0.101,-0.653,0.75,1,-0.259,-0.852,0.454,1,0.032,-0.873,0.488,1,-0.931,0.289,0.224,1,-0.85,0.477,-0.224,1,-0.909,0.409,-0.085,1,0.65,-0.607,0.457,1,0.732,-0.668
,0.139,1,-0.768,0.569,-0.295,1,0.31,0.861,0.403,1,0.366,0.802,0.472,1,0.832,-0.056,0.552,1,0.817,-0.18,0.547,1,-0.005,-0.963,0.271,1,0.487,-0.356,0.797,1,0.201,-0.406,0.891,1,0.621,0.784,0.001,1,0.272,0.94,0.205,1,-0.623,-0.276,0.732,1,-0.822,-0.472,0.32,1
,-0.786,-0.403,0.468,1,-0.78,0.061,0.623,1,-0.772,0.186,0.608,1,0.684,0.714,0.152,1,-0.907,0.362,0.216,1,-0.908,0.411,-0.085,1,-0.667,-0.595,0.448,1,-0.747,-0.651,0.135,1,-0.05,-0.473,0.88,1,-0.591,0.481,0.647,1,-0.359,0.657,0.663,1,-0.503,-0.275,0.819,1,-0.269,-0.177
,0.947,1,-0.221,-0.596,0.772,1,0.5,-0.295,0.814,1,0.263,-0.198,0.944,1,0.062,0.794,0.604,1,0.331,0.821,0.465,1,0.221,0.928,0.299,1,0.812,-0.491,0.315,1,0.781,-0.422,0.459,1,-0.801,0.599,-0.024,1,-0.681,0.655,-0.326,1,-0.801,0.599,-0.024,1,-0.834,-0.543,0.1,1
,-0.635,0.604,0.483,1,-0.931,0.289,0.224,1,0.832,-0.056,0.552,1,-0.005,-0.963,0.271,1,0.31,0.861,0.403,1,0.487,-0.356,0.797,1,0.684,0.714,0.152,1,-0.503,-0.275,0.819,1,-0.221,-0.596,0.772,1,-0.85,0.477,-0.224,1,0.812,-0.491,0.315,1,0.65,-0.607,0.457,1,-0.553,0.485
,0.678,1,-0.259,-0.852,0.454,1,-0.822,-0.472,0.32,1,-0.907,0.362,0.216,1,-0.78,0.061,0.623,1,0.621,0.784,0.001,1,0.221,0.928,0.299,1,-0.667,-0.595,0.448,1,-0.591,0.481,0.647,1,-0.05,-0.473,0.88,1,0.062,0.794,0.604,1]
,"uvs":[0.952,0.236,0.9,0.152,0.947,0.181,0.589,0.749,0.678,0.707,0.645,0.75,0.45,0.572,0.362,0.616,0.395,0.572,0.359,0.752,0.447,0.707,0.414,0.752,0.481,0.706,0.569,0.749,0.514,0.75,0.686,0.572,0.597,0.614,0.631,0.57,0.952,0.029,0.898,0.111,0.839,0.013,0.057,0.773,0.1,0.861,0.056,0.828,0.016,0.935
,0.105,0.892,0.071,0.936,0.452,0.686,0.458,0.699,0.447,0.693,0.356,0.637,0.35,0.624,0.361,0.631,0.589,0.635,0.583,0.622,0.594,0.629,0.57,0.635,0.577,0.622,0.578,0.635,0.476,0.685,0.469,0.699,0.468,0.686,0.838,0.248,0.826,0.256,0.832,0.244,0.016,0.821,0.009,0.808,0.02,0.815,0.171,0.772,0.184,0.766
,0.177,0.777,0.827,0.005,0.84,0.005,0.686,0.686,0.693,0.699,0.682,0.692,0.102,0.871,0.096,0.868,0.009,0.941,0.008,0.935,0.392,0.565,0.398,0.565,0.353,0.618,0.356,0.613,0.565,0.614,0.574,0.616,0.57,0.62,0.049,0.831,0.049,0.825,0.458,0.566,0.459,0.572,0.075,0.943,0.068,0.943,0.456,0.705,0.453,0.71
,0.472,0.704,0.476,0.7,0.946,0.084,0.952,0.088,0.947,0.091,0.476,0.571,0.468,0.566,0.474,0.564,0.051,0.765,0.057,0.764,0.531,0.57,0.534,0.564,0.538,0.569,0.959,0.022,0.96,0.029,0.582,0.755,0.581,0.749,0.628,0.564,0.634,0.564,0.577,0.755,0.571,0.756,0.894,0.12,0.891,0.116,0.511,0.757,0.507,0.752
,0.588,0.617,0.591,0.611,0.648,0.757,0.641,0.757,0.897,0.143,0.903,0.145,0.694,0.566,0.695,0.572,0.688,0.704,0.685,0.71,0.351,0.757,0.351,0.752,0.954,0.177,0.954,0.183,0.958,0.243,0.953,0.244,0.417,0.758,0.411,0.758,0.114,0.89,0.111,0.896,0.839,0.256,0.11,0.886,0.008,0.821,0.106,0.867,0.48,0.692
,0.357,0.622,0.015,0.942,0.566,0.629,0.468,0.571,0.571,0.611,0.953,0.082,0.528,0.564,0.474,0.709,0.588,0.756,0.349,0.637,0.684,0.7,0.078,0.938,0.421,0.753,0.46,0.686,0.452,0.701,0.388,0.57,0.054,0.835,0.624,0.569,0.517,0.757,0.581,0.635,0.578,0.75,0.171,0.764,0.954,0.021,0.358,0.759,0.832,0.017
,0.592,0.621,0.694,0.686,0.893,0.147,0.652,0.752,0.948,0.174,0.46,0.686,0.349,0.637,0.35,0.624,0.581,0.635,0.583,0.622,0.566,0.629,0.577,0.622,0.48,0.692,0.469,0.699,0.839,0.256,0.008,0.821,0.009,0.808,0.171,0.764,0.184,0.766,0.832,0.017,0.827,0.005,0.694,0.686,0.693,0.699,0.106,0.867,0.015,0.942
,0.009,0.941,0.388,0.57,0.392,0.565,0.357,0.622,0.571,0.611,0.574,0.616,0.054,0.835,0.049,0.831,0.452,0.565,0.078,0.938,0.075,0.943,0.452,0.701,0.456,0.705,0.474,0.709,0.953,0.082,0.952,0.088,0.468,0.571,0.468,0.566,0.05,0.771,0.528,0.564,0.534,0.564,0.954,0.021,0.959,0.022,0.588,0.756,0.624,0.569
,0.628,0.564,0.578,0.75,0.577,0.755,0.9,0.118,0.517,0.757,0.511,0.757,0.592,0.621,0.588,0.617,0.652,0.752,0.893,0.147,0.897,0.143,0.688,0.565,0.694,0.566,0.684,0.7,0.358,0.759,0.351,0.757,0.948,0.174,0.954,0.177,0.959,0.236,0.421,0.753,0.417,0.758,0.11,0.886,0.114,0.89,0.11,0.886,0.106,0.867
,0.357,0.622,0.452,0.565,0.468,0.571,0.05,0.771,0.953,0.082,0.528,0.564,0.9,0.118,0.688,0.565,0.684,0.7,0.078,0.938,0.421,0.753,0.452,0.701,0.388,0.57,0.054,0.835,0.624,0.569,0.517,0.757,0.578,0.75,0.954,0.021,0.959,0.236,0.592,0.621,0.893,0.147,0.652,0.752,0.948,0.174]
,"indices":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50
,20,51,52,53,54,55,22,56,57,24,58,59,8,60,61,7,62,63,64,65,66,23,67,68,6,69,70,26,71,72,10,73,74,12,75,76,77,78,79,80,81,82,21,83,84,85,86,87,18,88,89
,3,90,91,17,92,93,13,94,95,19,96,97,14,98,99,16,100,101,5,102,103,1,104,105,15,106,107,4,108,109,9,110,111,2,112,113,0,114,115,11,116,117,25,118,119,42,115,120,121,45,47
,45,59,122,123,48,50,39,66,124,125,27,29,24,72,126,61,6,8,36,76,127,128,39,41,64,87,129,68,21,23,18,130,77,131,80,82,12,99,132,79,19,77,3,103,133,93,15,17,30,111,134
,135,33,35,25,136,26,137,10,74,27,70,138,139,30,32,7,140,8,141,22,57,16,142,17,143,13,95,33,91,144,145,36,38,48,84,146,147,20,52,9,117,148,113,0,2,20,97,149,150,53,55
,53,107,151,152,42,44,4,153,5,154,1,105,64,80,85,0,42,1,3,33,4,6,27,7,9,30,10,12,36,13,15,53,16,18,77,19,21,48,22,24,45,25,27,155,28,30,156,157,33,158,159
,36,160,161,39,162,163,42,164,43,45,165,166,48,167,168,20,169,170,53,171,172,22,173,56,24,174,175,8,176,177,7,178,62,64,179,180,23,181,182,6,183,69,26,184,185,10,186,187,12,188,75
,77,189,190,80,191,192,21,193,83,85,194,195,18,196,197,3,198,90,17,199,200,13,201,202,19,203,96,14,204,205,16,206,207,5,208,102,1,209,210,15,211,212,4,213,108,9,214,215,2,216,217
,0,218,114,11,219,220,25,221,222,42,0,115,223,25,45,45,24,59,224,22,48,39,64,66,225,7,27,24,26,72,61,226,6,36,12,76,227,80,39,64,85,87,68,228,21,18,89,229,230,85,80
,12,14,99,79,231,19,3,5,103,93,232,15,30,9,111,233,4,33,25,119,234,235,11,10,27,6,70,236,10,30,7,63,237,238,23,22,16,101,239,240,14,13,33,3,91,241,13,36,48,21,84
,242,18,20,9,11,117,113,243,0,20,19,97,244,16,53,53,15,107,245,1,42,4,109,246,247,2,1,64,39,80]
}
],
"colliderFaceMap": {
"d4": {
"3": 1,
"0": 2,
"1": 3,
"2": 4
},
"d6": {
"0": 1,
"6": 1,
"4": 2,
"10": 2,
"8": 3,
"2": 3,
"3": 4,
"9": 4,
"7": 5,
"1": 5,
"5": 6,
"11": 6
},
"d8": {
"3": 1,
"7": 2,
"6": 3,
"2": 4,
"1": 5,
"5": 6,
"4": 7,
"0": 8
},
"d10": {
"9": 1,
"19": 1,
"1": 2,
"11": 2,
"7": 3,
"17": 3,
"3": 4,
"13": 4,
"6": 5,
"16": 5,
"2": 6,
"12": 6,
"8": 7,
"18": 7,
"10": 8,
"0": 8,
"5": 9,
"15": 9,
"4": 0,
"14": 0
},
"d12": {
"2": 1,
"16": 1,
"17": 1,
"6": 2,
"24": 2,
"25": 2,
"0": 3,
"12": 3,
"13": 3,
"1": 4,
"14": 4,
"15": 4,
"5": 5,
"22": 5,
"23": 5,
"9": 6,
"30": 6,
"31": 6,
"7": 7,
"26": 7,
"27": 7,
"10": 8,
"32": 8,
"33": 8,
"11": 9,
"34": 9,
"35": 9,
"8": 10,
"28": 10,
"29": 10,
"4": 11,
"20": 11,
"21": 11,
"3": 12,
"18": 12,
"19": 12
},
"d20": {
"19": 1,
"2": 2,
"8": 3,
"3": 4,
"15": 5,
"0": 6,
"14": 7,
"1": 8,
"17": 9,
"9": 10,
"10": 11,
"18": 12,
"6": 13,
"13": 14,
"7": 15,
"12": 16,
"4": 17,
"11": 18,
"5": 19,
"16": 20
},
"d100": {
"3": 10,
"13": 10,
"9": 20,
"19": 20,
"4": 30,
"14": 30,
"1": 40,
"11": 40,
"7": 50,
"17": 50,
"2": 60,
"12": 60,
"8": 70,
"18": 70,
"5": 80,
"15": 80,
"0": 90,
"10": 90,
"6": 0,
"16": 0
}
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 62 KiB

View File

@ -1,17 +0,0 @@
{
"name": "Wooden",
"systemName": "wooden",
"author": "Frank Ali",
"version": 0.2,
"meshName": "smoothDice",
"meshFile": "smoothDice.json",
"material": {
"type": "standard",
"diffuseTexture": "diffuse.jpg",
"bumpTexture": "normal.png",
"specularTexture": "specularity.jpg",
"diffuseLevel": 1,
"bumpLevel": 0.5
},
"diceAvailable": ["d4","d6","d8","d10","d12","d20","d100"]
}

View File

@ -7,6 +7,7 @@ class ColorPicker extends HTMLElement {
colorPreview;
rgbaDisplay;
tempCanvasCTX;
name;
/**
@ -65,6 +66,13 @@ class ColorPicker extends HTMLElement {
padding: 1.25em;
text-align: center;
}
#rgba-display-name {
padding: 0.25em;
display: inline;
border: none;
border-radius: 0.2em;
background: rgba(0,0,0,0.7);
}
#rgba-display {
font-family: "Courier New", monospace;
font-size: 1em;
@ -109,7 +117,8 @@ class ColorPicker extends HTMLElement {
</style>
<div class="color-preview" id="color-preview">
<div class="rgba-display-wrapper">
<input type="text" id="rgba-display" class="bg-cover">
<label for="rgba-display" id="rgba-display-name"></label>
<input type="text" id="rgba-display" class="bg-cover">
</div>
<div class="bg-cover" id="controls">
<label for="hue">
@ -133,6 +142,7 @@ class ColorPicker extends HTMLElement {
this.lightnessInput = this.shadowRoot.getElementById( 'lightness' );
this.colorPreview = this.shadowRoot.getElementById( 'color-preview' );
this.rgbaDisplay = this.shadowRoot.getElementById( 'rgba-display' );
this.name = this.shadowRoot.getElementById( 'rgba-display-name' );
this.rgbaDisplay.onkeyup = (event) => {
if(event.keyCode === 13) {
this.setColor( this.rgbaDisplay.value );
@ -196,7 +206,7 @@ class ColorPicker extends HTMLElement {
connectedCallback() {
this.setupEventListeners();
this.name.textContent = this.getAttribute( 'name' );
const color = this.getAttribute( 'value' );
if ( !color ) {
this.setColor( 'green' );

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1 +0,0 @@
.dice-box-canvas{opacity:1;transition:opacity 1s}.dice-box-canvas--hide{opacity:0}

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 197 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 165 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 190 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 182 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 140 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 184 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Some files were not shown because too many files have changed in this diff Show More