From ad45e54a515dad11078f63a3d8e199d3a70c25ce Mon Sep 17 00:00:00 2001 From: onlypuppy7 <35199523+onlypuppy7@users.noreply.github.com> Date: Wed, 20 Nov 2024 20:44:54 +0000 Subject: [PATCH] make health pack its own plugin, finish dep code --- .../LegacyShellCore/dependencies.js | 3 +- plugins_default/LegacyShellCore/index.js | 9 +- plugins_default/LegacyShellCore/shared.js | 30 +- .../healthpackitem/dependencies.js | 5 + plugins_default/healthpackitem/index.js | 58 ++ .../healthpackitem/models/items.babylon | 636 ++++++++++++++++++ plugins_default/healthpackitem/shared.js | 48 ++ plugins_default/modernmapblocks/index.js | 1 + src/shell/plugins.js | 47 +- 9 files changed, 789 insertions(+), 48 deletions(-) create mode 100644 plugins_default/healthpackitem/dependencies.js create mode 100644 plugins_default/healthpackitem/index.js create mode 100644 plugins_default/healthpackitem/models/items.babylon create mode 100644 plugins_default/healthpackitem/shared.js diff --git a/plugins_default/LegacyShellCore/dependencies.js b/plugins_default/LegacyShellCore/dependencies.js index 93f8078a..cf7be12a 100644 --- a/plugins_default/LegacyShellCore/dependencies.js +++ b/plugins_default/LegacyShellCore/dependencies.js @@ -2,5 +2,6 @@ export const dependencies = { // "is-thirteen": "^2.0.0", - // newmapblocks: "plugin" + modernmapblocks: "plugin", + healthpackitem: "plugin", }; \ No newline at end of file diff --git a/plugins_default/LegacyShellCore/index.js b/plugins_default/LegacyShellCore/index.js index 0169f5e7..bb106aa7 100644 --- a/plugins_default/LegacyShellCore/index.js +++ b/plugins_default/LegacyShellCore/index.js @@ -10,7 +10,7 @@ export const PluginMeta = { identifier: "legacyshellcore", name: 'LegacyShellCore', author: 'onlypuppy7', - version: '1.0.3', + version: '1.0.4', descriptionShort: 'Used in the public instance', //displayed when loading descriptionLong: 'Used in the public instance', legacyShellVersion: 269, //legacy shell version, can be found in /versionEnum.txt, or just on the homescreen @@ -27,11 +27,14 @@ export class Plugin { LegacyShellCorePlugin.registerListeners(this.plugins); this.plugins.on('client:pluginSourceInsertion', this.pluginSourceInsertion.bind(this)); + this.plugins.on('client:prepareBabylon', this.prepareBabylon.bind(this)); - this.plugins.on('client:stampImageDirs', this.stampImageDirs.bind(this)); this.plugins.on('game:prepareBabylon', this.prepareBabylon.bind(this)); - this.plugins.on('services:initTables', this.initTables.bind(this)); + + this.plugins.on('client:stampImageDirs', this.stampImageDirs.bind(this)); + this.plugins.on('services:initTables', this.initTables.bind(this)); + this.plugins.on('game:metaLoop', this.metaLoopHook.bind(this)); this.plugins.on('game:clientPackSyncLoop', this.clientPackSyncLoopHook.bind(this)); }; diff --git a/plugins_default/LegacyShellCore/shared.js b/plugins_default/LegacyShellCore/shared.js index 8c215879..6ae101a6 100644 --- a/plugins_default/LegacyShellCore/shared.js +++ b/plugins_default/LegacyShellCore/shared.js @@ -14,9 +14,7 @@ export const LegacyShellCorePlugin = { this.plugins = pluginManager; - this.plugins.on('game:onMapComplete', this.onMapComplete.bind(this)); this.plugins.on('game:canJump', this.canJump.bind(this)); - this.plugins.on('game:AllItems', this.AllItems.bind(this)); this.plugins.on('game:GameTypesInit', this.GameTypesInit.bind(this)); this.plugins.on('game:fireCluck9mm', this.fireCluck9mm.bind(this)); @@ -35,32 +33,6 @@ export const LegacyShellCorePlugin = { }; }, - onMapComplete(data) { - var gameScene = data.gameScene; - - gameScene.getMeshByName("healthpack").material = gameScene.getMaterialByName("standardInstanced"); - gameScene.getMeshByName("healthpack.alt").material = gameScene.getMaterialByName("standardInstanced"); - }, - - AllItems(data) { - var AllItems = data.AllItems; - - AllItems.push({ - codeName: "HEALTH", - mesh: "healthpack.alt", - name: "Health Pack", - actor: data.ItemActor, - poolSize: 50, - collect: function (player, applyToWeaponIdx) { - if (player.hp === 100) return false - if (isServer) { - player.heal(50); - }; - return true; - } - }); - }, - GameTypesInit(data) { var defaultOptions = data.defaultOptions; @@ -268,7 +240,7 @@ export const LegacyShellCorePlugin = { }); }, - registerSampleCommand: function (data) { //example of command registration + registerSampleCommand: function (data) { console.log("registering sample command... (sample plugin)"); var ctx = data.this; diff --git a/plugins_default/healthpackitem/dependencies.js b/plugins_default/healthpackitem/dependencies.js new file mode 100644 index 00000000..59505ce8 --- /dev/null +++ b/plugins_default/healthpackitem/dependencies.js @@ -0,0 +1,5 @@ +// + +export const dependencies = { + // "is-thirteen": "^2.0.0", +}; \ No newline at end of file diff --git a/plugins_default/healthpackitem/index.js b/plugins_default/healthpackitem/index.js new file mode 100644 index 00000000..8c810c08 --- /dev/null +++ b/plugins_default/healthpackitem/index.js @@ -0,0 +1,58 @@ +//basic +import fs from 'node:fs'; +import path from 'node:path'; +//plugin: samplecommand +import { HealthPackItem } from './shared.js'; +// + +export const PluginMeta = { + identifier: "healthpackitem", + name: 'Health Pack Item', + author: 'onlypuppy7', + version: '1.0.0', + descriptionShort: 'Adds a new item type which regains 50hp on collection', //displayed when loading + descriptionLong: 'Adds a new item type which regains 50hp on collection', + legacyShellVersion: 324, //legacy shell version, can be found in /versionEnum.txt, or just on the homescreen +}; + +export var pluginInstance = null; + +export class Plugin { + constructor(plugins, thisDir) { + this.plugins = plugins; + this.thisDir = thisDir; + + pluginInstance = this; + + HealthPackItem.registerListeners(this.plugins); + this.plugins.on('client:pluginSourceInsertion', this.pluginSourceInsertion.bind(this)); + this.plugins.on('client:prepareBabylon', this.prepareBabylon.bind(this)); + this.plugins.on('game:prepareBabylon', this.prepareBabylon.bind(this)); + }; + + pluginSourceInsertion(data) { + data.pluginInsertion.files.push({ + insertBefore: '\nconsole.log("inserting before... (HealthPackItem)");', + filepath: path.join(this.thisDir, 'shared.js'), + insertAfter: '\nconsole.log("inserting after... (HealthPackItem)!");', + position: 'before' + }); + }; + + async prepareBabylon(data) { + // console.log('prepareBabylon', data.filename); + var extraBabylons = data.extraBabylons; + + const babylonPath = path.join(this.thisDir, 'models'); + const babylonFiles = fs.readdirSync(babylonPath); + for (const file of babylonFiles) { + if (data.filename + ".babylon" === file) { + console.log('found', file); + extraBabylons.push({ + filepath: path.join(this.thisDir, 'models', file), + overwrite: false, + }); + }; + }; + }; +}; \ No newline at end of file diff --git a/plugins_default/healthpackitem/models/items.babylon b/plugins_default/healthpackitem/models/items.babylon new file mode 100644 index 00000000..dbbec6bd --- /dev/null +++ b/plugins_default/healthpackitem/models/items.babylon @@ -0,0 +1,636 @@ +{"producer":{"name":"Blender","version":"3.6.5","exporter_version":"2.93.5","file":"items.babylon"}, +"autoClear":true,"clearColor":[0.0509,0.0509,0.0509],"gravity":[0,-9.81,0], +"materials":[{"name":"Default OBJ.002","id":"Default OBJ.002","customType":"BABYLON.PBRMaterial","albedo":[0.8,0.8,0.8],"emissive":[0,0,0],"reflectivity":[0.5,0.5,0.5],"roughness":0.5,"alpha":1,"transparencyMode":0,"alphaCutOff":0.4,"metallic":0}, +{"name":"Default OBJ.003","id":"Default OBJ.003","customType":"BABYLON.PBRMaterial","albedo":[0.8,0.8,0.8],"emissive":[0,0,0],"reflectivity":[0.5,0.5,0.5],"roughness":0.5,"alpha":1,"transparencyMode":0,"alphaCutOff":0.4,"metallic":0}, +{"name":"Default OBJ.001","id":"Default OBJ.001","customType":"BABYLON.PBRMaterial","albedo":[0.8,0.8,0.8],"emissive":[0,0,0],"reflectivity":[0.5,0.5,0.5],"roughness":0.5,"alpha":1,"transparencyMode":0,"alphaCutOff":0.4,"metallic":0}, +{"name":"Default OBJ","id":"Default OBJ","customType":"BABYLON.PBRMaterial","albedo":[0.8,0.8,0.8],"emissive":[0,0,0],"reflectivity":[0.5,0.5,0.5],"roughness":0.5,"alpha":1,"transparencyMode":0,"alphaCutOff":0.4,"metallic":0}], +"multiMaterials":[{"name":"items.Multimaterial#0","id":"items.Multimaterial#0","materials":["Default OBJ.002","Default OBJ.003"]},{"name":"items.Multimaterial#1","id":"items.Multimaterial#1","materials":["Default OBJ.001","Default OBJ"]}], +"skeletons":[{"name":"itemSkeleton","id":0,"dimensionsAtRest":[0,0,1],"bones":[ +{"name":"bone","index":0,"matrix":[1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1],"rest":[1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1],"parentBoneIndex":-1,"length":1}]}], +"meshes":[{"name":"spatula","id":"spatula","billboardMode":0,"position":[0,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false,"skeletonId":0,"numBoneInfluencers":1 +,"positions":[-0.1492,0.5381,-0.0242,-0.1492,0.5361,-0.0298,-0.0398,0.5381,-0.0242,0.1493,0.5381,-0.0242,0.0399,0.5381,-0.0242,0.1493,0.5361,-0.0298,0.0399,0.5361,-0.0298,-0.0398,0.5361,-0.0298,0.1153,0.317,0.0475,0.1153,0.319,0.0531,0.1493,0.5361,-0.0298,0.1493,0.5381,-0.0242,-0.0162,0.5103,-0.0207,0.0163,0.5103,-0.0207,-0.0398,0.5361,-0.0298,0.0399,0.5361,-0.0298,0.0125,0.3428,0.0384 +,0.0629,0.5103,-0.0207,0.0953,0.5103,-0.0207,0.1493,0.5361,-0.0298,0.0737,0.3428,0.0384,0.1153,0.317,0.0475,0.0486,0.3428,0.0384,0.0309,0.317,0.0475,-0.0125,0.3428,0.0384,-0.0308,0.317,0.0475,-0.1153,0.317,0.0475,-0.0736,0.3428,0.0384,-0.0486,0.3428,0.0384,-0.0628,0.5103,-0.0207,-0.1492,0.5361,-0.0298,-0.0953,0.5103,-0.0207,-0.1153,0.319,0.0531,-0.1153,0.317,0.0475 +,-0.1492,0.5381,-0.0242,-0.1492,0.5361,-0.0298,-0.0125,0.3448,0.044,0.0125,0.3448,0.044,-0.0308,0.319,0.0531,0.0309,0.319,0.0531,0.0163,0.5122,-0.0151,0.0486,0.3448,0.044,0.0737,0.3448,0.044,0.1153,0.319,0.0531,0.0953,0.5122,-0.0151,0.1493,0.5381,-0.0242,0.0629,0.5122,-0.0151,0.0399,0.5381,-0.0242,-0.0162,0.5122,-0.0151,-0.0398,0.5381,-0.0242,-0.1153,0.319,0.0531 +,-0.1492,0.5381,-0.0242,-0.0736,0.3448,0.044,-0.0953,0.5122,-0.0151,-0.0628,0.5122,-0.0151,-0.0486,0.3448,0.044,0.017,0.2914,0.0375,0.017,0.2901,0.0532,0.1153,0.317,0.0475,0.1153,0.319,0.0531,-0.0169,0.2901,0.0532,-0.0169,0.2914,0.0375,-0.1153,0.319,0.0531,-0.1153,0.317,0.0475,0.1153,0.319,0.0531,0.017,0.2901,0.0532,0.0309,0.319,0.0531,-0.0308,0.319,0.0531 +,-0.1153,0.319,0.0531,-0.0169,0.2901,0.0532,0.017,0.2163,0.0048,0.017,0.214,0.0195,0.017,0.2581,0.0116,0.017,0.2901,0.0532,0.017,0.2914,0.0375,0.017,0.2521,0.0252,-0.0169,0.2163,0.0048,0.017,0.2163,0.0048,-0.0169,0.2581,0.0116,-0.1153,0.317,0.0475,-0.0169,0.2914,0.0375,-0.0308,0.317,0.0475,0.0309,0.317,0.0475,0.1153,0.317,0.0475,0.017,0.2914,0.0375 +,0.017,0.2581,0.0116,-0.0169,0.214,0.0195,-0.0169,0.2163,0.0048,-0.0169,0.2521,0.0252,-0.0169,0.2914,0.0375,-0.0169,0.2901,0.0532,-0.0169,0.2581,0.0116,0.017,0.214,0.0195,-0.0169,0.214,0.0195,0.017,0.2521,0.0252,-0.0169,0.2901,0.0532,0.017,0.2901,0.0532,-0.0169,0.2521,0.0252,0.0496,0.0059,-0.0512,0.0496,-0.0034,0.0081,0.0242,0.2174,-0.0023,0.0242,0.2129,0.0265 +,-0.0241,0.2129,0.0265,-0.0241,0.2174,-0.0023,-0.0169,0.214,0.0195,-0.0169,0.2163,0.0048,0.0242,0.2174,-0.0023,0.017,0.2163,0.0048,0.0242,0.2129,0.0265,0.017,0.214,0.0195,-0.0495,-0.0034,0.0081,-0.0241,0.2129,0.0265,0.0496,-0.0034,0.0081,0.0242,0.2129,0.0265,-0.0241,0.2174,-0.0023,-0.0495,0.0059,-0.0512,0.0242,0.2174,-0.0023,0.0496,0.0059,-0.0512,-0.0495,-0.0034,0.0081 +,-0.0495,0.0059,-0.0512,-0.0241,0.2129,0.0265,-0.0241,0.2174,-0.0023,-0.0495,0.0059,-0.0512,-0.0495,-0.0034,0.0081,0.0496,0.0059,-0.0512,0.0496,-0.0034,0.0081] +,"normals":[0.254,0.889,-0.382,0.184,0.972,-0.148,0.175,0.856,-0.487,-0.185,0.85,-0.494,0,0.831,-0.557,-0.252,0.931,-0.263,-0.176,0.972,-0.156,0,0.996,-0.089,0.98,0.197,0.036,0.987,0.105,-0.124,0.946,-0.106,0.306,0.929,-0.365,-0.067,0,-0.332,-0.943,0,-0.332,-0.943,0,-0.557,-0.831,0.175,-0.487,-0.856,0,-0.332,-0.943 +,0,-0.332,-0.943,0,-0.332,-0.943,-0.095,-0.552,-0.829,0,-0.332,-0.943,-0.312,-0.213,-0.926,0,-0.332,-0.943,0.173,-0.158,-0.972,0,-0.332,-0.943,0.173,-0.158,-0.972,0.193,-0.063,-0.979,0,-0.332,-0.943,0,-0.332,-0.943,0,-0.332,-0.943,0.198,-0.483,-0.853,0,-0.332,-0.943,-0.988,0.116,-0.107,-0.965,0.154,0.214 +,-0.946,-0.275,-0.172,-0.929,-0.241,0.281,0,0.332,0.943,0,0.332,0.943,0.067,0.394,0.917,0.067,0.394,0.917,0,0.332,0.943,0,0.332,0.943,0,0.332,0.943,-0.276,0.404,0.872,0,0.332,0.943,-0.197,0.161,0.967,0,0.332,0.943,0,0.089,0.996,0,0.332,0.943,-0.176,0.159,0.971,0.284,0.381,0.88 +,0.095,0.092,0.991,0,0.332,0.943,0,0.332,0.943,0,0.332,0.943,0,0.332,0.943,0.314,-0.94,0.13,0.309,-0.934,-0.181,0.159,-0.911,0.38,0.169,-0.962,-0.216,-0.386,-0.911,-0.144,-0.366,-0.928,0.072,-0.184,-0.958,-0.221,0.022,-0.965,0.261,-0.284,-0.066,0.957,0.162,0.135,0.978,-0.069,-0.066,0.995,-0.069,-0.066,0.995 +,0.285,-0.069,0.956,-0.033,0.21,0.977,0.978,-0.032,0.204,0.979,0.202,0.03,0.998,-0.025,0.062,0.978,-0.15,-0.147,0.993,-0.118,0.007,0.998,0.058,-0.01,0.171,0.269,-0.948,0,0.359,-0.933,0,0.332,-0.943,0.325,0.304,-0.895,0.081,0.385,-0.919,-0.174,0.19,-0.966,-0.174,0.19,-0.966,-0.321,0.276,-0.906,-0.022,0.551,-0.834 +,-0.073,0.399,-0.914,-0.979,0.137,-0.154,-0.979,0.152,0.139,-0.998,-0.058,-0.009,-0.993,-0.054,0.104,-0.978,-0.106,-0.181,-0.998,0.051,0.04,-0.204,-0.146,0.968,0.113,0.024,0.993,-0.035,-0.418,0.908,0.171,-0.676,0.716,-0.204,-0.616,0.761,0,-0.332,0.943,0.99,0.136,0.032,0.991,0.132,0,0.974,0.019,0.224,0.987,-0.03,-0.156 +,0.158,0.987,-0.009,0.056,0.928,0.368,-0.034,0.936,0.352,-0.203,0.972,0.122,-0.219,0.953,0.208,-0.205,0.967,0.15,-0.158,0.987,-0.009,0.001,0.999,-0.051,0.024,-0.075,0.997,0.154,-0.247,0.957,-0.015,-0.065,0.998,-0.154,-0.247,0.957,0.218,0.163,-0.962,0.017,0.243,-0.97,-0.037,0.002,-0.999,-0.024,0.233,-0.972,-0.99,0.138,0.011 +,-0.991,0.124,0.041,-0.987,-0.03,-0.156,-0.993,-0.113,0.024,0.02,-0.99,-0.142,0.009,-0.984,-0.179,-0.011,-0.991,-0.131,-0.021,-0.985,-0.17] +,"tangents":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0] +,"colors":[1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831 +,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1 +,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831 +,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1 +,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831 +,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1 +,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831 +,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1 +,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831 +,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1,1,0.831,0,1 +,1,0.831,0,1] +,"matricesWeights":[1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0 +,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0 +,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0 +,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0 +,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0 +,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0 +,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0 +,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0 +,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0 +,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0 +,1,0,0,0] +,"matricesIndices":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0] +,"indices":[0,1,2,3,4,5,5,4,6,4,2,6,6,2,7,2,1,7,8,9,10,9,11,10,12,13,14,14,13,15,13,16,15,17,18,15,15,18,19,18,20,19,19,20,21,20,22,21,21,22,23 +,22,17,23,17,15,23,15,16,23,16,24,23,23,24,25,24,12,25,12,14,25,26,25,27,27,25,28,25,14,28,28,14,29,14,30,29,29,30,31,30,26,31,26,27,31,32,33,34,33,35,34 +,36,37,38,38,37,39,37,40,39,41,42,39,39,42,43,42,44,43,43,44,45,44,46,45,45,46,47,46,41,47,41,39,47,39,40,47,40,48,47,47,48,49,48,36,49,36,38,49,50,51,52 +,52,51,53,51,49,53,53,49,54,49,38,54,54,38,55,38,50,55,50,52,55,56,57,58,57,59,58,60,61,62,61,63,62,64,65,66,66,65,67,67,65,68,65,69,68,70,71,72,73,74,75 +,74,72,75,72,71,75,76,77,78,79,80,81,81,80,82,82,80,83,83,80,84,84,80,85,80,78,85,78,77,85,86,87,88,89,90,91,90,88,91,88,87,91,92,93,94,95,96,97,96,94,97 +,94,93,97,98,99,100,99,101,100,102,103,104,104,103,105,103,106,105,105,106,107,106,108,107,107,108,109,108,102,109,102,104,109,110,111,112,111,113,112,114,115,116,115,117,116,118,119,120,119,121,120 +,122,123,124,123,125,124] +,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":126,"indexStart":0,"indexCount":312}] +,"instances":[]} +,{"name":"grenadeItem","id":"grenadeItem","billboardMode":0,"position":[0,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false,"skeletonId":0,"numBoneInfluencers":1 +,"positions":[0.0433,0.1042,-0.0401,0.0564,0.1042,-0.0175,0.0444,0.0188,-0.0407,0.0574,0.0188,-0.0181,-0.0131,0.1614,-0.0226,0.0131,0.1614,-0.0226,-0.0261,0.1614,0,-0.0131,0.1614,0.0226,0.0131,0.1614,0.0226,0.0261,0.1614,0,0.0606,0.1099,-0.0199,0.0444,0.0188,-0.0407,0.0574,0.0188,-0.0181,0.0486,0.0245,-0.0431,0.0616,0.0245,-0.0205,0.0475,0.1099,-0.0425,0.0131,0.1464,-0.0226 +,0.0261,0.1464,0,0.0433,0.1042,-0.0401,0.0564,0.1042,-0.0175,0.0131,0.1299,-0.0226,-0.0131,0.1464,-0.0226,-0.0131,0.1299,-0.0226,-0.0261,0.1464,0,-0.0261,0.1299,0,-0.0131,0.1464,0.0226,-0.0131,0.1299,0.0226,0.0131,0.1464,0.0226,0.0131,0.1299,0.0226,0.0261,0.1299,0,0.0261,0.1464,0,0.0616,0.0245,-0.0205,0.0574,0.0188,-0.0181,0.0606,0.1099,-0.0199 +,0.0564,0.1042,-0.0175,0.0261,0.1614,0,0.0131,0.1614,0.0226,-0.0131,0.1614,0.0226,-0.0261,0.1614,0,-0.0131,0.1614,-0.0226,0.0444,0.0188,-0.0407,0.0486,0.0245,-0.0431,0.0433,0.1042,-0.0401,0.0475,0.1099,-0.0425,0.0131,0.1464,-0.0226,0.0131,0.1614,-0.0226,-0.041,0.0134,0,0,-0.0004,0,-0.0205,0.0134,-0.0355,0.0205,0.0134,-0.0355,0.041,0.0134,0 +,0.0205,0.0134,0.0355,-0.0205,0.0134,0.0355,-0.0303,0.0494,0.0525,-0.0606,0.0494,0,-0.0303,0.0494,-0.0525,0.0303,0.0494,-0.0525,0.0606,0.0494,0,0.0303,0.0494,0.0525,0.0268,0.0939,0.0464,-0.0268,0.0939,0.0464,-0.0535,0.0939,0,-0.0268,0.0939,-0.0464,0.0268,0.0939,-0.0464,0.0535,0.0939,0,0.0261,0.1299,0,0.0131,0.1299,0.0226,-0.0131,0.1299,0.0226 +,-0.0261,0.1299,0,-0.0131,0.1299,-0.0226,0.0131,0.1299,-0.0226] +,"normals":[-0.782,-0.324,0.532,-0.789,-0.411,0.456,-0.823,0.234,0.518,-0.963,0.025,0.268,0.101,0.995,0,0.527,0.837,-0.148,0.093,0.995,-0.04,0.011,0.995,-0.099,-0.08,0.995,-0.06,0.162,0.986,-0.049,0.803,0.256,-0.538,0.785,-0.597,-0.167,0.759,-0.437,-0.483,0.748,-0.501,-0.435,0.699,-0.436,-0.566,0.867,0.255,-0.428,-0.625,-0.651,0.431 +,-0.631,-0.687,0.361,-0.782,-0.324,0.532,-0.791,-0.411,0.454,0.479,0.027,-0.877,-0.5,0,-0.866,-0.518,0.027,-0.855,-1,0,0,-0.999,0.027,0.023,-0.5,0,0.866,-0.479,0.027,0.877,0.5,0,0.866,0.479,0.027,0.877,0.999,0,0.034,0.908,0,0.418,0.406,0.117,0.906,0.497,0.25,0.831,0.427,0.032,0.904 +,0.454,0.063,0.889,0.81,-0.159,0.564,0.557,-0.102,0.824,-0.434,-0.101,0.895,-0.992,-0.1,0.071,-0.603,0,-0.798,-0.353,0.201,-0.914,-0.494,0.156,-0.855,-0.428,-0.003,-0.904,-0.567,0.031,-0.823,0.072,-0.05,-0.996,-0.308,-0.065,-0.949,-0.627,-0.779,0,0,-1,0,-0.314,-0.778,-0.544,0.314,-0.778,-0.544,0.627,-0.779,0 +,0.314,-0.778,0.544,-0.314,-0.778,0.544,-0.494,-0.176,0.851,-0.985,-0.175,0,-0.494,-0.176,-0.851,0.494,-0.176,-0.851,0.985,-0.175,0,0.494,-0.176,0.851,0.459,0.397,0.795,-0.459,0.397,0.795,-0.917,0.399,0,-0.459,0.397,-0.795,0.459,0.397,-0.795,0.917,0.399,0,0.788,0.614,-0.031,0.426,0.59,0.686,-0.426,0.59,0.686 +,-0.809,0.587,-0.025,-0.382,0.586,-0.715,0.426,0.59,-0.686] +,"tangents":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0] +,"colors":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702 +,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1 +,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702 +,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.251,0.302,0.102,1,0.251,0.302,0.102,1,0.251,0.302,0.102,1,0.251,0.302,0.102,1 +,0.251,0.302,0.102,1,0.251,0.302,0.102,1,0.251,0.302,0.102,1,0.251,0.302,0.102,1,0.251,0.302,0.102,1,0.251,0.302,0.102,1,0.251,0.302,0.102,1,0.251,0.302,0.102,1,0.251,0.302,0.102,1,0.251,0.302,0.102,1,0.251,0.302,0.102,1,0.251,0.302,0.102,1,0.251,0.302 +,0.102,1,0.251,0.302,0.102,1,0.251,0.302,0.102,1,0.251,0.302,0.102,1,0.251,0.302,0.102,1,0.251,0.302,0.102,1,0.251,0.302,0.102,1,0.251,0.302,0.102,1,0.251,0.302,0.102,1] +,"matricesWeights":[1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0 +,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0 +,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0 +,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0 +,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0 +,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0] +,"matricesIndices":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0] +,"indices":[0,1,2,1,3,2,4,5,6,7,6,8,6,5,8,8,5,9,9,5,10,11,12,13,12,14,13,13,14,15,14,10,15,10,5,15,16,17,18,17,19,18,20,21,22,21,23,22,22,23,24 +,23,25,24,24,25,26,25,27,26,26,27,28,29,28,30,28,27,30,31,32,33,32,34,33,33,34,35,34,30,35,30,27,35,35,27,36,27,25,36,36,25,37,25,23,37,37,23,38,23,21,38 +,38,21,39,40,41,42,41,43,42,42,43,44,43,45,44,45,39,44,39,21,44,21,20,44,20,29,44,29,30,44,46,47,48,48,47,49,49,47,50,50,47,51,51,47,52,47,46,52,52,46,53 +,53,46,54,46,48,54,54,48,55,48,49,55,55,49,56,49,50,56,56,50,57,50,51,57,57,51,58,51,52,58,52,53,58,58,53,59,59,53,60,53,54,60,60,54,61,54,55,61,61,55,62 +,55,56,62,62,56,63,56,57,63,63,57,64,57,58,64,58,59,64,64,59,65,65,59,66,59,60,66,66,60,67,60,61,67,67,61,68,61,62,68,68,62,69,62,63,69,69,63,70,63,64,70 +,64,65,70] +,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":71,"indexStart":0,"indexCount":258}] +,"instances":[]} +,{"name":"ammo","id":"ammo","billboardMode":0,"position":[0,0,0],"rotationQuaternion":[0,0,0,-1],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false,"skeletonId":0,"numBoneInfluencers":1 +,"positions":[0.1205,0.1281,-0.0666,0.1244,0.0756,-0.0666,0.107,0.1281,-0.0263,0.1099,0.0756,-0.0234,0.0666,0.0756,-0.0089,0.0666,0.1281,-0.0128,0.0263,0.1281,-0.0263,0.0234,0.0756,-0.0234,0.0089,0.0756,-0.0666,0.0128,0.1281,-0.0666,0.0263,0.1281,-0.107,0.0234,0.0756,-0.1099,0.0666,0.0756,-0.1244,0.0666,0.1281,-0.1205,0.107,0.1281,-0.107,0.1099,0.0756,-0.1099,-0.1205,0.1281,0.0666 +,-0.1244,0.0756,0.0666,-0.107,0.1281,0.0263,-0.1099,0.0756,0.0234,-0.0666,0.0756,0.0089,-0.0666,0.1281,0.0128,-0.0263,0.1281,0.0263,-0.0234,0.0756,0.0234,-0.0089,0.0756,0.0666,-0.0128,0.1281,0.0666,-0.0263,0.1281,0.107,-0.0234,0.0756,0.1099,-0.0666,0.0756,0.1244,-0.0666,0.1281,0.1205,-0.107,0.1281,0.107,-0.1099,0.0756,0.1099,0.1205,0.1281,0.0666,0.1244,0.0756,0.0666 +,0.107,0.1281,0.107,0.1099,0.0756,0.1099,0.0666,0.0756,0.1244,0.0666,0.1281,0.1205,0.0263,0.1281,0.107,0.0234,0.0756,0.1099,0.0089,0.0756,0.0666,0.0128,0.1281,0.0666,0.0263,0.1281,0.0263,0.0234,0.0756,0.0234,0.0666,0.0756,0.0089,0.0666,0.1281,0.0128,0.107,0.1281,0.0263,0.1099,0.0756,0.0234,-0.0666,0.1281,-0.1205,-0.0666,0.0756,-0.1244,-0.0263,0.1281,-0.107 +,-0.0234,0.0756,-0.1099,-0.0089,0.0756,-0.0666,-0.0128,0.1281,-0.0666,-0.0263,0.1281,-0.0263,-0.0234,0.0756,-0.0234,-0.0666,0.0756,-0.0089,-0.0666,0.1281,-0.0128,-0.107,0.1281,-0.0263,-0.1099,0.0756,-0.0234,-0.1244,0.0756,-0.0666,-0.1205,0.1281,-0.0666,-0.107,0.1281,-0.107,-0.1099,0.0756,-0.1099,-0.0151,0.1371,0,0,0.1371,-0.0151,0,0.1371,0.0151,0.0151,0.1371,0 +,0,0.0846,0.0431,-0.0431,0.0846,0,0,0.1371,0.0151,-0.0151,0.1371,0,0.0431,0.0846,0,0,0.0846,0.0431,0.0151,0.1371,0,0,0.1371,0.0151,0,0.0846,-0.0431,0.0431,0.0846,0,0,0.1371,-0.0151,0.0151,0.1371,0,-0.0431,0.0846,0,0,0.0846,-0.0431,-0.0151,0.1371,0,0,0.1371,-0.0151,0.0666,-0.0002,-0.0238 +,0.1333,0.0846,0,0.1095,-0.0002,-0.0666,0.0238,-0.0002,-0.0666,0,0.0729,0,0.0666,-0.0002,-0.0238,0.1095,-0.0002,-0.0666,0.0666,-0.0002,-0.1095,0.0666,-0.0002,-0.0238,0.0238,-0.0002,-0.0666,0.0666,-0.0002,-0.1095,0,0.0846,-0.1333,0.0238,-0.0002,-0.0666,0.1095,-0.0002,-0.0666,0.1333,0.0846,-0.1333,0.0666,-0.0002,-0.1095,-0.0238,-0.0002,0.0666,0,0.0729,0 +,-0.0666,-0.0002,0.0238,-0.0666,-0.0002,0.1095,0,0.0846,0.1333,-0.0238,-0.0002,0.0666,-0.0666,-0.0002,0.0238,-0.1095,-0.0002,0.0666,-0.0238,-0.0002,0.0666,-0.0666,-0.0002,0.1095,-0.1095,-0.0002,0.0666,-0.1333,0.0846,0.1333,-0.0666,-0.0002,0.1095,-0.0666,-0.0002,0.0238,-0.1333,0.0846,0,-0.1095,-0.0002,0.0666,0.0238,-0.0002,0.0666,0,0.0846,0.1333,0.0666,-0.0002,0.1095 +,0.0666,-0.0002,0.0238,0,0.0729,0,0.0238,-0.0002,0.0666,0.0666,-0.0002,0.1095,0.1095,-0.0002,0.0666,0.0238,-0.0002,0.0666,0.0666,-0.0002,0.0238,0.1095,-0.0002,0.0666,0.1333,0.0846,0,0.0666,-0.0002,0.0238,0.0666,-0.0002,0.1095,0.1333,0.0846,0.1333,0.1095,-0.0002,0.0666,-0.0666,-0.0002,-0.0238,0,0.0729,0,-0.0238,-0.0002,-0.0666,-0.1095,-0.0002,-0.0666 +,-0.1333,0.0846,0,-0.0666,-0.0002,-0.0238,-0.0238,-0.0002,-0.0666,-0.0666,-0.0002,-0.1095,-0.0666,-0.0002,-0.0238,-0.1095,-0.0002,-0.0666,-0.0666,-0.0002,-0.1095,-0.1333,0.0846,-0.1333,-0.1095,-0.0002,-0.0666,-0.0238,-0.0002,-0.0666,0,0.0846,-0.1333,-0.0666,-0.0002,-0.1095,-0.1333,0.0846,0,-0.0666,-0.0002,0.0238,0,0.0729,0,-0.1333,0.0846,0,-0.1095,-0.0002,-0.0666 +,-0.1333,0.0846,-0.1333,0.1333,0.0846,0,0.0666,-0.0002,-0.0238,0,0.0729,0,0.1333,0.0846,0,0.1095,-0.0002,0.0666,0.1333,0.0846,0.1333,0,0.0729,0,0.0238,-0.0002,-0.0666,0,0.0846,-0.1333,0,0.0729,0,-0.0238,-0.0002,0.0666,0,0.0846,0.1333,0,0.0729,0,0.0666,-0.0002,0.0238,0.1333,0.0846,0,0,0.0729,0 +,-0.0666,-0.0002,-0.0238,-0.1333,0.0846,0,0,0.0846,0.1333,-0.0666,-0.0002,0.1095,-0.1333,0.0846,0.1333,0,0.0846,0.1333,0.0238,-0.0002,0.0666,0,0.0729,0,0,0.0846,-0.1333,0.0666,-0.0002,-0.1095,0.1333,0.0846,-0.1333,0,0.0846,-0.1333,-0.0238,-0.0002,-0.0666,0,0.0729,0,0.1333,0.0846,-0.1333,0.1095,-0.0002,-0.0666,0.1333,0.0846,0 +,0.1333,0.0846,0.1333,0.0666,-0.0002,0.1095,0,0.0846,0.1333,0.0431,0.0846,0,0,0.0846,-0.0431,0.1333,0.0846,0,0.1333,0.0846,-0.1333,0,0.0846,-0.1333,-0.1333,0.0846,-0.1333,-0.1333,0.0846,0,-0.0431,0.0846,0,-0.1333,0.0846,0.1333,0,0.0846,0.1333,0,0.0846,0.0431,0.1333,0.0846,0.1333,-0.1333,0.0846,-0.1333,-0.0666,-0.0002,-0.1095 +,0,0.0846,-0.1333,-0.1333,0.0846,0.1333,-0.1095,-0.0002,0.0666,-0.1333,0.0846,0,-0.1038,0.1629,-0.0666,-0.0666,0.1856,-0.0666,-0.0942,0.1629,-0.0391,-0.0666,0.1629,-0.0295,-0.0391,0.1629,-0.0391,-0.0295,0.1629,-0.0666,-0.0391,0.1629,-0.0942,-0.0666,0.1629,-0.1038,-0.0942,0.1629,-0.0942,-0.107,0.1281,-0.107,-0.1205,0.1281,-0.0666,-0.107,0.1281,-0.0263,-0.0666,0.1281,-0.0128 +,-0.0263,0.1281,-0.0263,-0.0128,0.1281,-0.0666,-0.0263,0.1281,-0.107,-0.0666,0.1281,-0.1205,0.0666,0.1629,-0.1038,0.0666,0.1856,-0.0666,0.0391,0.1629,-0.0942,0.0295,0.1629,-0.0666,0.0391,0.1629,-0.0391,0.0666,0.1629,-0.0295,0.0942,0.1629,-0.0391,0.1038,0.1629,-0.0666,0.0942,0.1629,-0.0942,0.107,0.1281,-0.107,0.0666,0.1281,-0.1205,0.0263,0.1281,-0.107,0.0128,0.1281,-0.0666 +,0.0263,0.1281,-0.0263,0.0666,0.1281,-0.0128,0.107,0.1281,-0.0263,0.1205,0.1281,-0.0666,-0.0666,0.1629,0.1038,-0.0666,0.1856,0.0666,-0.0391,0.1629,0.0942,-0.0295,0.1629,0.0666,-0.0391,0.1629,0.0391,-0.0666,0.1629,0.0295,-0.0942,0.1629,0.0391,-0.1038,0.1629,0.0666,-0.0942,0.1629,0.0942,-0.107,0.1281,0.107,-0.0666,0.1281,0.1205,-0.0263,0.1281,0.107,-0.0128,0.1281,0.0666 +,-0.0263,0.1281,0.0263,-0.0666,0.1281,0.0128,-0.107,0.1281,0.0263,-0.1205,0.1281,0.0666,0.0666,0.1629,0.0295,0.0666,0.1856,0.0666,0.0391,0.1629,0.0391,0.0295,0.1629,0.0666,0.0391,0.1629,0.0942,0.0666,0.1629,0.1038,0.0942,0.1629,0.0942,0.1038,0.1629,0.0666,0.0942,0.1629,0.0391,0.107,0.1281,0.0263,0.0666,0.1281,0.0128,0.0263,0.1281,0.0263,0.0128,0.1281,0.0666 +,0.0263,0.1281,0.107,0.0666,0.1281,0.1205,0.107,0.1281,0.107,0.1205,0.1281,0.0666] +,"normals":[0.997,0.074,0,0.997,0.073,0,0.705,0.078,0.705,0.705,0.079,0.705,0,0.073,0.997,0,0.073,0.997,-0.705,0.079,0.705,-0.705,0.079,0.705,-0.997,0.073,0,-0.997,0.073,0,-0.705,0.079,-0.705,-0.705,0.079,-0.705,0,0.073,-0.997,0,0.074,-0.997,0.705,0.079,-0.705,0.705,0.079,-0.705,-0.997,0.074,0 +,-0.997,0.073,0,-0.705,0.078,-0.705,-0.705,0.079,-0.705,0,0.073,-0.997,0,0.073,-0.997,0.705,0.078,-0.705,0.705,0.079,-0.705,0.997,0.073,0,0.997,0.073,0,0.705,0.078,0.705,0.705,0.079,0.705,0,0.073,0.997,0,0.074,0.997,-0.705,0.079,0.705,-0.705,0.079,0.705,0.997,0.074,0,0.997,0.073,0 +,0.705,0.078,0.705,0.705,0.079,0.705,0,0.073,0.997,0,0.074,0.997,-0.705,0.079,0.705,-0.705,0.079,0.705,-0.997,0.073,0,-0.997,0.073,0,-0.705,0.078,-0.705,-0.705,0.079,-0.705,0,0.073,-0.997,0,0.073,-0.997,0.705,0.078,-0.705,0.705,0.079,-0.705,0,0.074,-0.997,0,0.073,-0.997,0.705,0.078,-0.705 +,0.705,0.079,-0.705,0.997,0.073,0,0.997,0.073,0,0.705,0.078,0.705,0.705,0.079,0.705,0,0.073,0.997,0,0.073,0.997,-0.705,0.079,0.705,-0.705,0.079,0.705,-0.997,0.073,0,-0.997,0.074,0,-0.705,0.079,-0.705,-0.705,0.079,-0.705,0.043,0.999,0,-0.023,0.999,0.035,0.023,0.999,-0.035,-0.035,0.999,-0.023 +,-0.75,0.425,0.507,-0.559,0.516,0.649,-0.693,0.343,0.634,-0.653,0.322,0.686,0.516,0.347,0.783,0.713,0.47,0.52,0.634,0.343,0.693,0.671,0.315,0.671,0.783,0.347,-0.516,0.559,0.516,-0.649,0.693,0.343,-0.634,0.674,0.315,-0.668,-0.516,0.347,-0.783,-0.651,0.516,-0.557,-0.653,0.322,-0.686,-0.671,0.315,-0.671,0.58,-0.586,0.566 +,0.283,-0.885,0.37,0.545,-0.599,0.586,-0.534,-0.642,0.551,-0.533,-0.657,0.533,-0.55,-0.654,0.519,-0.027,-1,-0.016,-0.018,-1,0.024,0.014,-1,-0.018,0.02,-1,0.012,-0.586,-0.58,-0.566,-0.37,-0.885,-0.283,-0.549,-0.6,-0.583,0.566,-0.58,-0.586,0.431,-0.815,-0.387,0.589,-0.599,-0.542,0.534,-0.642,-0.551,0.533,-0.657,-0.533 +,0.55,-0.654,-0.519,0.586,-0.58,0.566,0.325,-0.888,0.325,0.549,-0.6,0.583,-0.014,-1,0.018,0.027,-1,0.016,-0.02,-1,-0.012,0.018,-1,-0.024,-0.566,-0.58,0.586,-0.461,-0.809,0.365,-0.589,-0.599,0.542,-0.58,-0.586,-0.566,-0.37,-0.885,-0.283,-0.545,-0.599,-0.586,-0.566,-0.586,0.58,-0.325,-0.888,0.325,-0.589,-0.599,0.542 +,-0.551,-0.642,-0.534,-0.533,-0.658,-0.533,-0.516,-0.654,-0.553,0.018,-1,-0.024,-0.027,-1,-0.016,0.02,-1,0.012,-0.012,-1,0.02,0.566,-0.58,-0.586,0.37,-0.885,-0.283,0.583,-0.6,-0.549,0.586,-0.58,0.566,0.387,-0.815,0.431,0.545,-0.599,0.586,0.551,-0.642,0.534,0.533,-0.658,0.533,0.516,-0.654,0.553,-0.566,-0.58,0.586 +,-0.283,-0.885,0.37,-0.583,-0.6,0.549,-0.02,-1,-0.012,-0.018,-1,0.024,0.012,-1,-0.02,0.027,-1,0.016,-0.586,-0.58,-0.566,-0.361,-0.809,-0.464,-0.545,-0.599,-0.586,0.566,-0.586,-0.58,0.283,-0.885,-0.37,0.589,-0.599,-0.542,0.306,-0.532,-0.79,-0.012,-0.268,-0.963,-0.025,-0.288,-0.957,-0.794,-0.509,-0.333,-0.97,-0.243,-0.014 +,-0.855,-0.477,0.201,-0.391,-0.381,0.838,0.012,-0.268,0.963,0.025,-0.288,0.957,0.842,-0.338,0.42,0.97,-0.243,0.014,0.869,-0.432,-0.241,-0.957,-0.288,-0.025,-0.963,-0.268,-0.037,-0.838,-0.381,0.391,0.957,-0.288,0.025,0.963,-0.268,0.037,0.813,-0.462,-0.354,0.025,-0.288,-0.957,0.035,-0.267,-0.963,-0.306,-0.532,-0.79,-0.025,-0.288,0.957 +,-0.035,-0.267,0.963,0.391,-0.381,0.838,-0.386,-0.428,0.817,-0.014,-0.243,0.97,0.201,-0.477,0.855,-0.813,-0.462,-0.354,-0.963,-0.268,0.015,-0.957,-0.288,0.025,0.333,-0.509,-0.794,0.014,-0.243,-0.97,-0.245,-0.432,-0.868,0.79,-0.532,0.306,0.963,-0.268,-0.015,0.957,-0.288,-0.025,0.895,-0.34,0.289,0.97,-0.243,0.014,0.794,-0.509,-0.333 +,-0.293,-0.341,0.893,-0.014,-0.243,0.97,0.386,-0.428,0.817,-0.135,0.982,-0.135,-0.135,0.982,0.135,-0.305,0.902,-0.305,-0.269,0.953,0.141,0.305,0.902,0.305,0.041,0.953,0.301,0.305,0.902,-0.305,0.135,0.982,0.135,0.301,0.953,-0.041,0,0.901,-0.434,0.107,0.981,0.159,-0.141,0.953,-0.269,0.304,-0.281,-0.91,0.014,-0.243,-0.97 +,-0.42,-0.338,-0.842,-0.911,-0.28,-0.301,-0.97,-0.243,-0.014,-0.842,-0.338,0.42,-0.738,0.675,0,0,1,0,-0.509,0.694,0.509,0,0.675,0.738,0.509,0.694,0.509,0.738,0.675,0,0.509,0.694,-0.509,0,0.675,-0.738,-0.509,0.694,-0.509,-0.627,0.456,-0.631,-0.9,0.437,0,-0.628,0.456,0.631,0,0.437,0.9 +,0.627,0.456,0.631,0.9,0.437,0,0.628,0.456,-0.631,0,0.437,-0.9,0,0.675,-0.738,0,1,0,-0.509,0.694,-0.509,-0.738,0.675,0,-0.509,0.694,0.509,0,0.675,0.738,0.509,0.694,0.509,0.738,0.675,0,0.509,0.694,-0.509,0.627,0.456,-0.631,0,0.437,-0.9,-0.627,0.456,-0.631,-0.9,0.437,0 +,-0.627,0.456,0.631,0,0.437,0.9,0.627,0.456,0.631,0.9,0.437,0,0,0.675,0.738,0,1,0,0.509,0.694,0.509,0.738,0.675,0,0.509,0.694,-0.509,0,0.675,-0.738,-0.509,0.694,-0.509,-0.738,0.675,0,-0.509,0.694,0.509,-0.627,0.456,0.631,0,0.437,0.9,0.627,0.456,0.631,0.9,0.437,0 +,0.627,0.456,-0.631,0,0.437,-0.9,-0.627,0.456,-0.631,-0.9,0.437,0,0,0.675,-0.738,0,1,0,-0.509,0.694,-0.509,-0.738,0.675,0,-0.509,0.694,0.509,0,0.675,0.738,0.509,0.694,0.509,0.738,0.675,0,0.509,0.694,-0.509,0.628,0.456,-0.631,0,0.437,-0.9,-0.627,0.456,-0.631,-0.9,0.437,0 +,-0.627,0.456,0.631,0,0.437,0.9,0.627,0.456,0.631,0.9,0.437,0] +,"tangents":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0] +,"colors":[1,0.855,0,1,1,0.855,0,1,1,0.855,0,1,1,0.855,0,1,1,0.855,0,1,1,0.855,0,1,1,0.855,0,1,1,0.855,0,1,1,0.855,0,1,1,0.855,0,1,1,0.855,0,1,1,0.855,0,1,1,0.855 +,0,1,1,0.855,0,1,1,0.855,0,1,1,0.855,0,1,1,0.855,0,1,1,0.855,0,1,1,0.855,0,1,1,0.855,0,1,1,0.855,0,1,1,0.855,0,1,1,0.855,0,1,1,0.855,0,1,1,0.855,0,1 +,1,0.855,0,1,1,0.855,0,1,1,0.855,0,1,1,0.855,0,1,1,0.855,0,1,1,0.855,0,1,1,0.855,0,1,1,0.855,0,1,1,0.855,0,1,1,0.855,0,1,1,0.855,0,1,1,0.855,0,1,1,0.855 +,0,1,1,0.855,0,1,1,0.855,0,1,1,0.855,0,1,1,0.855,0,1,1,0.855,0,1,1,0.855,0,1,1,0.855,0,1,1,0.855,0,1,1,0.855,0,1,1,0.855,0,1,1,0.855,0,1,1,0.855,0,1 +,1,0.855,0,1,1,0.855,0,1,1,0.855,0,1,1,0.855,0,1,1,0.855,0,1,1,0.855,0,1,1,0.855,0,1,1,0.855,0,1,1,0.855,0,1,1,0.855,0,1,1,0.855,0,1,1,0.855,0,1,1,0.855 +,0,1,1,0.855,0,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1 +,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702 +,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1 +,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702 +,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1 +,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702 +,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1 +,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702 +,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1 +,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702 +,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1 +,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.702,0.702,0.702,1,0.667,0.357,0.224,1,0.667,0.357,0.224,1,0.667,0.357,0.224,1,0.667,0.357,0.224,1,0.667,0.357 +,0.224,1,0.667,0.357,0.224,1,0.667,0.357,0.224,1,0.667,0.357,0.224,1,0.667,0.357,0.224,1,0.667,0.357,0.224,1,0.667,0.357,0.224,1,0.667,0.357,0.224,1,0.667,0.357,0.224,1,0.667,0.357,0.224,1,0.667,0.357,0.224,1,0.667,0.357,0.224,1,0.667,0.357,0.224,1 +,0.667,0.357,0.224,1,0.667,0.357,0.224,1,0.667,0.357,0.224,1,0.667,0.357,0.224,1,0.667,0.357,0.224,1,0.667,0.357,0.224,1,0.667,0.357,0.224,1,0.667,0.357,0.224,1,0.667,0.357,0.224,1,0.667,0.357,0.224,1,0.667,0.357,0.224,1,0.667,0.357,0.224,1,0.667,0.357 +,0.224,1,0.667,0.357,0.224,1,0.667,0.357,0.224,1,0.667,0.357,0.224,1,0.667,0.357,0.224,1,0.667,0.357,0.224,1,0.667,0.357,0.224,1,0.667,0.357,0.224,1,0.667,0.357,0.224,1,0.667,0.357,0.224,1,0.667,0.357,0.224,1,0.667,0.357,0.224,1,0.667,0.357,0.224,1 +,0.667,0.357,0.224,1,0.667,0.357,0.224,1,0.667,0.357,0.224,1,0.667,0.357,0.224,1,0.667,0.357,0.224,1,0.667,0.357,0.224,1,0.667,0.357,0.224,1,0.667,0.357,0.224,1,0.667,0.357,0.224,1,0.667,0.357,0.224,1,0.667,0.357,0.224,1,0.667,0.357,0.224,1,0.667,0.357 +,0.224,1,0.667,0.357,0.224,1,0.667,0.357,0.224,1,0.667,0.357,0.224,1,0.667,0.357,0.224,1,0.667,0.357,0.224,1,0.667,0.357,0.224,1,0.667,0.357,0.224,1,0.667,0.357,0.224,1,0.667,0.357,0.224,1,0.667,0.357,0.224,1,0.667,0.357,0.224,1,0.667,0.357,0.224,1 +,0.667,0.357,0.224,1] +,"matricesWeights":[1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0 +,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0 +,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0 +,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0 +,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0 +,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0 +,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0 +,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0 +,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0 +,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0 +,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0 +,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0 +,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0 +,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0 +,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0 +,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0 +,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0 +,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0 +,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0 +,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0 +,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0 +,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0 +,1,0,0,0] +,"matricesIndices":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0] +,"indices":[0,1,2,1,3,2,3,4,2,2,4,5,5,4,6,4,7,6,7,8,6,6,8,9,9,8,10,8,11,10,11,12,10,10,12,13,13,12,14,12,15,14,15,1,14,1,0,14,16,17,18 +,17,19,18,19,20,18,18,20,21,21,20,22,20,23,22,23,24,22,22,24,25,25,24,26,24,27,26,27,28,26,26,28,29,29,28,30,28,31,30,31,17,30,17,16,30,32,33,34,33,35,34 +,35,36,34,34,36,37,37,36,38,36,39,38,39,40,38,38,40,41,41,40,42,40,43,42,43,44,42,42,44,45,45,44,46,44,47,46,47,33,46,33,32,46,48,49,50,49,51,50,51,52,50 +,50,52,53,53,52,54,52,55,54,55,56,54,54,56,57,57,56,58,56,59,58,59,60,58,58,60,61,61,60,62,60,63,62,63,49,62,49,48,62,64,65,66,65,67,66,68,69,70,69,71,70 +,72,73,74,73,75,74,76,77,78,77,79,78,80,81,82,81,83,82,84,85,86,87,88,89,90,91,92,91,93,92,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,107,109,108,110,111,112 +,113,114,115,116,117,118,119,120,121,122,123,124,123,125,124,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,139,141,140,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,184,185,186,187,188,189,190,191,192,193,192,194,192,191,194,194,191,195,195,191,196,191,197,196,196,197,198 +,198,197,199,197,200,199,200,190,199,190,192,199,192,201,199,202,203,204,205,206,207,208,209,210,210,209,211,211,209,212,212,209,213,213,209,214,214,209,215,215,209,216,209,208,216,216,208,217,217,208,218 +,208,210,218,218,210,219,210,211,219,219,211,220,211,212,220,220,212,221,212,213,221,221,213,222,213,214,222,222,214,223,214,215,223,223,215,224,215,216,224,216,217,224,225,226,227,227,226,228,228,226,229 +,229,226,230,230,226,231,231,226,232,232,226,233,226,225,233,233,225,234,234,225,235,225,227,235,235,227,236,227,228,236,236,228,237,228,229,237,237,229,238,229,230,238,238,230,239,230,231,239,239,231,240 +,231,232,240,240,232,241,232,233,241,233,234,241,242,243,244,244,243,245,245,243,246,246,243,247,247,243,248,248,243,249,249,243,250,243,242,250,250,242,251,251,242,252,242,244,252,252,244,253,244,245,253 +,253,245,254,245,246,254,254,246,255,246,247,255,255,247,256,247,248,256,256,248,257,248,249,257,257,249,258,249,250,258,250,251,258,259,260,261,261,260,262,262,260,263,263,260,264,264,260,265,265,260,266 +,266,260,267,260,259,267,267,259,268,268,259,269,259,261,269,269,261,270,261,262,270,270,262,271,262,263,271,271,263,272,263,264,272,272,264,273,264,265,273,273,265,274,265,266,274,274,266,275,266,267,275 +,267,268,275] +,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":276,"indexStart":0,"indexCount":666}] +,"instances":[]} +,{"name":"healthpack.alt","id":"healthpack.alt","materialId":"items.Multimaterial#0","billboardMode":0,"position":[0,0,0],"rotation":[0,0,0],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false +,"positions":[0.0315,0.071,0.0373,0.0325,0.071,0.0373,0.0315,0.071,0.0121,0.0325,0.071,0.0121,-0.0325,0.071,0.0373,-0.0315,0.071,0.0373,-0.0325,0.071,0.0121,-0.0315,0.071,0.0121,-0.0325,0.0917,-0.0371,-0.0315,0.0917,-0.0371,-0.0325,0.0917,-0.0125,-0.0315,0.0917,-0.0125,0.0315,0.071,-0.0125,0.0325,0.071,-0.0125,0.0315,0.071,-0.0371,0.0325,0.071,-0.0371,0.0315,0.0917,-0.0371 +,0.0325,0.0917,-0.0371,0.0315,0.0917,-0.0125,0.0325,0.0917,-0.0125,-0.0315,0.1141,-0.0125,-0.0325,0.1141,-0.0125,-0.0315,0.0917,-0.0125,-0.0325,0.0917,-0.0125,-0.0315,0.0481,-0.0125,-0.0325,0.0481,-0.0125,-0.0315,0.0481,0.0121,-0.0325,0.0481,0.0121,-0.0325,0.071,-0.0371,-0.0315,0.071,-0.0371,-0.0325,0.0917,-0.0371,-0.0315,0.0917,-0.0371,-0.0315,0.0481,0.0121,-0.0325,0.0481,0.0121 +,-0.0315,0.071,0.0121,-0.0325,0.071,0.0121,-0.0315,0.071,-0.0371,-0.0325,0.071,-0.0371,-0.0315,0.071,-0.0125,-0.0325,0.071,-0.0125,-0.0325,0.0481,0.0121,-0.0325,0.0481,-0.0125,-0.0325,0.071,0.0121,-0.0325,0.071,-0.0125,-0.0325,0.0917,0.0121,-0.0325,0.0917,-0.0125,-0.0325,0.1141,0.0121,-0.0325,0.1141,-0.0125,-0.0325,0.071,-0.0371,-0.0325,0.0917,-0.0371,0.0325,0.1141,0.0121 +,0.0325,0.1141,-0.0125,0.0325,0.0917,0.0121,0.0325,0.0917,-0.0125,0.0325,0.071,0.0121,0.0325,0.071,-0.0125,0.0325,0.0481,0.0121,0.0325,0.0481,-0.0125,0.0325,0.0917,-0.0371,0.0325,0.071,-0.0371,0.0315,0.0481,-0.0125,0.0325,0.0481,-0.0125,0.0315,0.071,-0.0125,0.0325,0.071,-0.0125,0.0315,0.1141,-0.0125,0.0325,0.1141,-0.0125,0.0315,0.1141,0.0121,0.0325,0.1141,0.0121 +,-0.0315,0.071,0.0373,-0.0325,0.071,0.0373,-0.0315,0.0917,0.0373,-0.0325,0.0917,0.0373,-0.0325,0.0917,0.0121,-0.0315,0.0917,0.0121,-0.0325,0.0917,0.0373,-0.0315,0.0917,0.0373,0.0325,0.0481,-0.0125,0.0315,0.0481,-0.0125,0.0325,0.0481,0.0121,0.0315,0.0481,0.0121,0.0325,0.0917,0.0373,0.0315,0.0917,0.0373,0.0325,0.0917,0.0121,0.0315,0.0917,0.0121,0.0325,0.0917,0.0373 +,0.0325,0.071,0.0373,-0.0325,0.1141,0.0121,-0.0315,0.1141,0.0121,-0.0325,0.0917,0.0121,-0.0315,0.0917,0.0121,-0.0325,0.071,0.0373,-0.0325,0.0917,0.0373,0.0315,0.1141,0.0121,0.0325,0.1141,0.0121,0.0315,0.0917,0.0121,0.0325,0.0917,0.0121,0.0315,0.071,-0.0371,0.0325,0.071,-0.0371,0.0315,0.0917,-0.0371,0.0325,0.0917,-0.0371,0.0325,0.0481,0.0121,0.0315,0.0481,0.0121 +,0.0325,0.071,0.0121,0.0315,0.071,0.0121,0.0315,0.0917,-0.0125,0.0325,0.0917,-0.0125,0.0315,0.1141,-0.0125,0.0325,0.1141,-0.0125,-0.0315,0.1141,0.0121,-0.0325,0.1141,0.0121,-0.0315,0.1141,-0.0125,-0.0325,0.1141,-0.0125,-0.0315,0.071,-0.0125,-0.0325,0.071,-0.0125,-0.0315,0.0481,-0.0125,-0.0325,0.0481,-0.0125,0.0325,0.071,0.0373,0.0315,0.071,0.0373,0.0325,0.0917,0.0373 +,0.0315,0.0917,0.0373,-0.0315,0.0138,-0.1079,-0.0067,0.0138,-0.1079,-0.0251,0.0216,-0.1143,-0.0067,0.0216,-0.1143,-0.0022,0.0138,-0.1079,-0.0022,0.0216,-0.1143,0.0022,0.0138,-0.1079,0.0022,0.0216,-0.1143,0.0067,0.0138,-0.1079,0.0067,0.0216,-0.1143,0.0315,0.0138,-0.1079,0.0251,0.0216,-0.1143,-0.0315,0.1489,0.1087,-0.0251,0.1411,0.1146,-0.0315,0.1141,0.1087,-0.0251,0.1104,0.1146 +,-0.0315,0.0917,0.1087,-0.0251,0.0907,0.1146,-0.0315,0.071,0.1087,-0.0251,0.0725,0.1146,-0.0315,0.0481,0.1087,-0.0251,0.0523,0.1146,-0.0315,0.0138,0.1087,-0.0251,0.0216,0.1146,0.0251,0.1411,-0.1143,0.0067,0.1411,-0.1143,0.0251,0.1104,-0.1143,0.0067,0.1141,-0.1143,0.0251,0.0907,-0.1143,0.0067,0.0917,-0.1143,0.0251,0.0725,-0.1143,0.0067,0.071,-0.1143,0.0251,0.0523,-0.1143 +,0.0067,0.0481,-0.1143,0.0251,0.0216,-0.1143,0.0067,0.0216,-0.1143,0.0022,0.1411,-0.1143,0.0022,0.1141,-0.1143,0.0022,0.0917,-0.1143,0.0022,0.071,-0.1143,0.0022,0.0481,-0.1143,0.0022,0.0216,-0.1143,-0.0022,0.1411,-0.1143,-0.0022,0.1141,-0.1143,-0.0022,0.0917,-0.1143,-0.0022,0.071,-0.1143,-0.0022,0.0481,-0.1143,-0.0022,0.0216,-0.1143,-0.0067,0.1411,-0.1143,-0.0067,0.1141,-0.1143 +,-0.0067,0.0917,-0.1143,-0.0067,0.071,-0.1143,-0.0067,0.0481,-0.1143,-0.0067,0.0216,-0.1143,-0.0251,0.1411,-0.1143,-0.0251,0.1104,-0.1143,-0.0251,0.0907,-0.1143,-0.0251,0.0725,-0.1143,-0.0251,0.0523,-0.1143,-0.0251,0.0216,-0.1143,0.0315,0.0917,0.0121,0.0315,0.0917,0.0373,0.0315,0.1141,0.0121,0.0315,0.1141,0.0373,0.0315,0.1489,0.0121,0.0315,0.1489,0.0373,0.0315,0.0917,0.0455 +,0.0315,0.1141,0.0455,0.0315,0.1489,0.0455,0.0315,0.0917,0.1087,0.0315,0.1141,0.1087,0.0315,0.1489,0.1087,0.0315,0.071,0.1087,0.0315,0.071,0.0455,0.0315,0.0481,0.1087,0.0315,0.0481,0.0455,0.0315,0.0138,0.1087,0.0315,0.0138,0.0455,0.0315,0.071,0.0373,0.0315,0.0481,0.0373,0.0315,0.0138,0.0373,0.0315,0.071,0.0121,0.0315,0.0481,0.0121,0.0315,0.0138,0.0121 +,0.0315,0.0481,-0.0125,0.0315,0.0138,-0.0125,0.0315,0.0481,-0.0371,0.0315,0.071,-0.0371,0.0315,0.071,-0.0458,0.0315,0.0917,-0.0458,0.0315,0.0917,-0.1079,0.0315,0.1141,-0.1079,0.0315,0.071,-0.1079,0.0315,0.0481,-0.0458,0.0315,0.0138,-0.0371,0.0315,0.0481,-0.1079,0.0315,0.0138,-0.0458,0.0251,0.1411,0.1146,0.0315,0.1489,0.1087,0.0251,0.1104,0.1146,0.0315,0.1141,0.1087 +,0.0251,0.0907,0.1146,0.0315,0.0917,0.1087,0.0251,0.0725,0.1146,0.0315,0.071,0.1087,0.0251,0.0523,0.1146,0.0315,0.0481,0.1087,0.0251,0.0216,0.1146,0.0315,0.0138,0.1087,0.0067,0.1411,0.1146,0.0067,0.1489,0.1093,0.0251,0.1411,0.1146,0.0315,0.1489,0.1087,-0.0067,0.1411,0.1146,-0.0067,0.1489,0.1093,-0.0022,0.1411,0.1146,-0.0022,0.1489,0.1093,0.0022,0.1411,0.1146 +,0.0022,0.1489,0.1093,0.0067,0.1411,0.1146,0.0067,0.1489,0.1093,0.0022,0.1489,0.0543,0.0022,0.1733,0.0455,0.0057,0.1489,0.0543,0.0057,0.1717,0.0455,0.0251,0.0216,-0.1143,0.0315,0.0138,-0.1079,0.0251,0.0523,-0.1143,0.0315,0.0481,-0.1079,0.0251,0.0725,-0.1143,0.0315,0.071,-0.1079,0.0251,0.0907,-0.1143,0.0315,0.0917,-0.1079,0.0251,0.1104,-0.1143,0.0315,0.1141,-0.1079 +,0.0251,0.1411,-0.1143,0.0315,0.1489,-0.1079,-0.0251,0.1411,0.1146,-0.0067,0.1411,0.1146,-0.0251,0.1104,0.1146,-0.0067,0.1141,0.1146,-0.0251,0.0907,0.1146,-0.0067,0.0917,0.1146,-0.0251,0.0725,0.1146,-0.0067,0.071,0.1146,-0.0251,0.0523,0.1146,-0.0067,0.0481,0.1146,-0.0251,0.0216,0.1146,-0.0067,0.0216,0.1146,-0.0022,0.1411,0.1146,-0.0022,0.1141,0.1146,-0.0022,0.0917,0.1146 +,-0.0022,0.071,0.1146,-0.0022,0.0481,0.1146,-0.0022,0.0216,0.1146,0.0022,0.1411,0.1146,0.0022,0.1141,0.1146,0.0022,0.0917,0.1146,0.0022,0.071,0.1146,0.0022,0.0481,0.1146,0.0022,0.0216,0.1146,0.0067,0.1411,0.1146,0.0067,0.1141,0.1146,0.0067,0.0917,0.1146,0.0067,0.071,0.1146,0.0067,0.0481,0.1146,0.0067,0.0216,0.1146,0.0251,0.1411,0.1146,0.0251,0.1104,0.1146 +,0.0251,0.0907,0.1146,0.0251,0.0725,0.1146,0.0251,0.0523,0.1146,0.0251,0.0216,0.1146,0.0057,0.1717,-0.0458,0.0057,0.1489,-0.054,0.0057,0.1743,-0.0371,0.0067,0.1665,-0.0376,-0.0315,0.071,0.0121,-0.0315,0.071,0.0373,-0.0315,0.0481,0.0121,-0.0315,0.0481,0.0373,-0.0315,0.0138,0.0121,-0.0315,0.0138,0.0373,-0.0315,0.071,0.0455,-0.0315,0.0481,0.0455,-0.0315,0.0138,0.0455 +,-0.0315,0.071,0.1087,-0.0315,0.0481,0.1087,-0.0315,0.0138,0.1087,-0.0315,0.0917,0.1087,-0.0315,0.0917,0.0455,-0.0315,0.1141,0.1087,-0.0315,0.1141,0.0455,-0.0315,0.1489,0.1087,-0.0315,0.1489,0.0455,-0.0315,0.0917,0.0373,-0.0315,0.1141,0.0373,-0.0315,0.1489,0.0373,-0.0315,0.0917,0.0121,-0.0315,0.1141,0.0121,-0.0315,0.1489,0.0121,-0.0315,0.1141,-0.0125,-0.0315,0.1489,-0.0125 +,-0.0315,0.1141,-0.0371,-0.0315,0.0917,-0.0371,-0.0315,0.0917,-0.0458,-0.0315,0.071,-0.0458,-0.0315,0.071,-0.1079,-0.0315,0.0481,-0.1079,-0.0315,0.0917,-0.1079,-0.0315,0.1141,-0.0458,-0.0315,0.1489,-0.0371,-0.0315,0.1141,-0.1079,-0.0315,0.1489,-0.0458,-0.0315,0.071,-0.0371,-0.0315,0.0481,-0.0458,-0.0315,0.0138,-0.1079,-0.0315,0.0138,-0.0458,-0.0315,0.0481,-0.0371,-0.0315,0.0138,-0.0371 +,-0.0315,0.0481,-0.0125,-0.0315,0.0138,-0.0125,-0.0315,0.071,-0.0125,0.0057,0.1717,-0.0458,0.0057,0.1743,-0.0371,0.0022,0.1733,-0.0458,0.0022,0.1759,-0.0371,-0.0022,0.1733,0.0455,-0.0022,0.1759,0.0373,0.0022,0.1733,0.0455,0.0022,0.1759,0.0373,0.0022,0.1733,0.0455,0.0022,0.1489,0.0543,-0.0022,0.1733,0.0455,-0.0022,0.1489,0.0543,0.0022,0.1759,-0.0371,0.0022,0.1759,0.0373 +,-0.0022,0.1759,-0.0371,-0.0022,0.1759,0.0373,-0.0057,0.1717,-0.0458,-0.0057,0.1489,-0.054,-0.0022,0.1733,-0.0458,-0.0022,0.1489,-0.054,-0.0251,0.0216,0.1146,-0.0067,0.0216,0.1146,-0.0315,0.0138,0.1087,-0.0067,0.0138,0.1087,-0.0022,0.0216,0.1146,-0.0022,0.0138,0.1087,0.0022,0.0216,0.1146,0.0022,0.0138,0.1087,0.0067,0.0216,0.1146,0.0067,0.0138,0.1087,0.0251,0.0216,0.1146 +,0.0315,0.0138,0.1087,-0.0057,0.1717,0.0455,-0.0057,0.1489,0.0543,-0.0057,0.1743,0.0373,-0.0067,0.1665,0.0373,0.0022,0.1489,-0.054,0.0022,0.1733,-0.0458,-0.0022,0.1489,-0.054,-0.0022,0.1733,-0.0458,-0.0022,0.1759,-0.0371,-0.0022,0.1733,-0.0458,0.0022,0.1759,-0.0371,0.0022,0.1733,-0.0458,0.0315,0.0917,-0.0371,0.0315,0.1141,-0.0458,0.0315,0.1489,-0.1079,0.0315,0.1489,-0.0458 +,0.0315,0.1141,-0.0371,0.0315,0.1489,-0.0371,0.0315,0.1141,-0.0125,0.0315,0.1489,-0.0125,0.0315,0.0917,-0.0125,-0.0067,0.1489,-0.1091,-0.0067,0.1411,-0.1143,-0.0022,0.1489,-0.1091,-0.0022,0.1411,-0.1143,0.0022,0.1489,-0.1091,0.0022,0.1411,-0.1143,0.0067,0.1489,-0.1091,0.0067,0.1411,-0.1143,0.0251,0.1411,-0.1143,0.0315,0.1489,-0.1079,0.0067,0.1411,-0.1143,0.0067,0.1489,-0.1091 +,0.0315,0.1489,-0.1079,0.0315,0.1489,-0.0458,0.0067,0.1489,-0.1091,0.0057,0.1489,-0.054,0.0022,0.1489,-0.1091,0.0022,0.1489,-0.054,-0.0022,0.1489,-0.1091,-0.0022,0.1489,-0.054,-0.0067,0.1489,-0.1091,-0.0057,0.1489,-0.054,-0.0315,0.1489,-0.1079,-0.0315,0.1489,-0.0458,-0.0067,0.1489,-0.0441,-0.0315,0.1489,-0.0371,-0.0067,0.1489,-0.0148,0.0067,0.1489,-0.0441,0.0067,0.1489,-0.0148 +,0.0315,0.1489,-0.0125,0.0315,0.1489,0.0121,0.0315,0.1489,-0.0371,-0.0022,0.1733,-0.0458,-0.0022,0.1759,-0.0371,-0.0057,0.1717,-0.0458,-0.0057,0.1743,-0.0371,-0.0315,0.1489,-0.0125,-0.0067,0.1489,0.0145,-0.0315,0.1489,0.0121,-0.0067,0.1489,0.0437,-0.0315,0.1489,0.0373,-0.0057,0.1489,0.0543,-0.0315,0.1489,0.0455,-0.0067,0.1489,0.1093,-0.0315,0.1489,0.1087,0.0067,0.1489,0.0145 +,0.0067,0.1489,0.0437,0.0315,0.1489,0.0373,0.0315,0.1489,0.0455,0.0057,0.1489,0.0543,0.0315,0.1489,0.1087,0.0067,0.1489,0.1093,0.0022,0.1489,0.0543,0.0022,0.1489,0.1093,-0.0022,0.1489,0.0543,-0.0022,0.1489,0.1093,-0.0251,0.1411,-0.1143,-0.0315,0.1489,-0.1079,-0.0251,0.1104,-0.1143,-0.0315,0.1141,-0.1079,-0.0251,0.0907,-0.1143,-0.0315,0.0917,-0.1079,-0.0251,0.0725,-0.1143 +,-0.0315,0.071,-0.1079,-0.0251,0.0523,-0.1143,-0.0315,0.0481,-0.1079,-0.0251,0.0216,-0.1143,-0.0315,0.0138,-0.1079,-0.0057,0.1743,0.0373,-0.0067,0.1665,0.0373,-0.0057,0.1743,-0.0371,-0.0067,0.1665,-0.0376,0.0067,0.1665,0.0373,-0.0067,0.1665,0.0373,0.0067,0.1665,-0.0376,-0.0067,0.1665,-0.0376,-0.0057,0.1489,0.0543,-0.0057,0.1717,0.0455,-0.0022,0.1489,0.0543,-0.0022,0.1733,0.0455 +,0.0057,0.1743,-0.0371,0.0057,0.1743,0.0373,0.0022,0.1759,-0.0371,0.0022,0.1759,0.0373,0.0057,0.1489,0.0543,0.0057,0.1717,0.0455,0.0067,0.1489,0.0437,0.0057,0.1743,0.0373,0.0067,0.1665,0.0373,0.0067,0.1489,0.0437,0.0067,0.1665,0.0373,-0.0067,0.1489,0.0437,-0.0067,0.1665,0.0373,-0.0057,0.1743,0.0373,-0.0057,0.1743,-0.0371,-0.0022,0.1759,0.0373,-0.0022,0.1759,-0.0371 +,-0.0057,0.1717,0.0455,-0.0057,0.1743,0.0373,-0.0022,0.1733,0.0455,-0.0022,0.1759,0.0373,-0.0067,0.1489,0.1093,-0.0067,0.1411,0.1146,-0.0315,0.1489,0.1087,-0.0251,0.1411,0.1146,-0.0315,0.1489,-0.1079,-0.0251,0.1411,-0.1143,-0.0067,0.1489,-0.1091,-0.0067,0.1411,-0.1143,0.0022,0.1733,-0.0458,0.0022,0.1489,-0.054,0.0057,0.1717,-0.0458,0.0057,0.1489,-0.054,-0.0057,0.1489,-0.054 +,-0.0057,0.1717,-0.0458,-0.0067,0.1489,-0.0441,-0.0057,0.1743,-0.0371,-0.0067,0.1665,-0.0376,-0.0067,0.1489,-0.0441,-0.0067,0.1665,-0.0376,0.0067,0.1489,-0.0441,0.0067,0.1665,-0.0376,0.0057,0.1743,0.0373,0.0057,0.1717,0.0455,0.0022,0.1759,0.0373,0.0022,0.1733,0.0455,0.0067,0.1665,0.0373,0.0057,0.1743,0.0373,0.0067,0.1665,-0.0376,0.0057,0.1743,-0.0371,0.0315,0.0138,-0.1079 +,0.0067,0.0138,-0.1079,0.0315,0.0138,-0.0458,0.0067,0.0138,-0.0458,0.0315,0.0138,-0.0371,0.0067,0.0138,-0.0371,0.0315,0.0138,-0.0125,0.0067,0.0138,-0.0125,0.0315,0.0138,0.0121,0.0067,0.0138,0.0121,0.0315,0.0138,0.0373,0.0067,0.0138,0.0373,0.0315,0.0138,0.0455,0.0067,0.0138,0.0455,0.0315,0.0138,0.1087,0.0067,0.0138,0.1087,0.0022,0.0138,-0.1079,0.0022,0.0138,-0.0458 +,0.0022,0.0138,-0.0371,0.0022,0.0138,-0.0125,0.0022,0.0138,0.0121,0.0022,0.0138,0.0373,0.0022,0.0138,0.0455,0.0022,0.0138,0.1087,-0.0022,0.0138,-0.1079,-0.0022,0.0138,-0.0458,-0.0022,0.0138,-0.0371,-0.0022,0.0138,-0.0125,-0.0022,0.0138,0.0121,-0.0022,0.0138,0.0373,-0.0022,0.0138,0.0455,-0.0022,0.0138,0.1087,-0.0067,0.0138,-0.1079,-0.0067,0.0138,-0.0458,-0.0067,0.0138,-0.0371 +,-0.0067,0.0138,-0.0125,-0.0067,0.0138,0.0121,-0.0067,0.0138,0.0373,-0.0067,0.0138,0.0455,-0.0067,0.0138,0.1087,-0.0315,0.0138,-0.1079,-0.0315,0.0138,-0.0458,-0.0315,0.0138,-0.0371,-0.0315,0.0138,-0.0125,-0.0315,0.0138,0.0121,-0.0315,0.0138,0.0373,-0.0315,0.0138,0.0455,-0.0315,0.0138,0.1087,0.0067,0.1489,-0.0441,-0.0315,0.1489,-0.1079,-0.0067,0.1489,0.0437,0.0315,0.071,-0.0125 +,-0.0315,0.0917,-0.0125,0.0315,0.0138,-0.1079] +,"normals":[0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0 +,0,1,0,0,1,0,0,1,0,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,1,0,0.002,1 +,0,0.002,1,0,0.002,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,1,0.002,0 +,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,1,0,0,1,0,0,1,0,0,1,0 +,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,1,0,1,0,0,1,0,0,1,0,0,1,0,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.002,0 +,1,0.002,0,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,1,-1,0.002,0,-1,0.002,0,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,1,0,0.002,1 +,0,0.002,1,0,0.002,1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,1,0,0.002,1,0,0.002,1 +,0,0.002,1,0,-0.622,-0.783,0,-0.622,-0.783,0,-0.622,-0.783,0,-0.622,-0.783,0,-0.622,-0.783,0,-0.622,-0.783,0,-0.622,-0.783,0,-0.622,-0.783,0,-0.622,-0.783,0,-0.622,-0.783,0,-0.622,-0.783,0,-0.622,-0.783,-0.657,0.002,0.753,-0.657,0.002,0.753,-0.657,0.002,0.753,-0.657,0.002,0.753 +,-0.657,0.002,0.753,-0.657,0.002,0.753,-0.657,0.002,0.753,-0.657,0.002,0.753,-0.657,0.002,0.753,-0.657,0.002,0.753,-0.657,0.002,0.753,-0.657,0.002,0.753,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1 +,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1 +,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0 +,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0 +,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,0.657,0.002,0.753,0.657,0.002,0.753,0.657,0.002,0.753,0.657,0.002,0.753 +,0.657,0.002,0.753,0.657,0.002,0.753,0.657,0.002,0.753,0.657,0.002,0.753,0.657,0.002,0.753,0.657,0.002,0.753,0.657,0.002,0.753,0.657,0.002,0.753,0.017,0.554,0.832,0.017,0.554,0.832,0.017,0.554,0.832,0.017,0.554,0.832,0.002,0.532,0.846,0.002,0.532,0.846,0.002,0.532,0.846,0.002,0.532,0.846,0.002,0.532,0.846 +,0.002,0.532,0.846,0.002,0.532,0.846,0.002,0.532,0.846,0.079,0.345,0.935,0.079,0.345,0.935,0.079,0.345,0.935,0.079,0.345,0.935,0.691,0.002,-0.723,0.691,0.002,-0.723,0.691,0.002,-0.723,0.691,0.002,-0.723,0.691,0.002,-0.723,0.691,0.002,-0.723,0.691,0.002,-0.723,0.691,0.002,-0.723,0.691,0.002,-0.723,0.691,0.002,-0.723 +,0.691,0.002,-0.723,0.691,0.002,-0.723,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,1 +,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,1 +,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,1,0.992,0.063,-0.113,0.992,0.063,-0.113,0.992,0.063,-0.113,0.992,0.063,-0.113,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0 +,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0 +,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0 +,-1,0.002,0,-1,0.002,0,-1,0.002,0,0.386,0.883,-0.269,0.386,0.883,-0.269,0.386,0.883,-0.269,0.386,0.883,-0.269,0.002,0.957,0.289,0.002,0.957,0.289,0.002,0.957,0.289,0.002,0.957,0.289,0,0.336,0.942,0,0.336,0.942,0,0.336,0.942,0,0.336,0.942,0,1,0,0,1,0 +,0,1,0,0,1,0,-0.079,0.345,-0.935,-0.079,0.345,-0.935,-0.079,0.345,-0.935,-0.079,0.345,-0.935,0,-0.583,0.812,0,-0.583,0.812,0,-0.583,0.812,0,-0.583,0.812,0,-0.583,0.812,0,-0.583,0.812,0,-0.583,0.812,0,-0.583,0.812,0,-0.583,0.812,0,-0.583,0.812,0,-0.583,0.812 +,0,-0.583,0.812,-0.992,0.063,0.109,-0.992,0.063,0.109,-0.992,0.063,0.109,-0.992,0.063,0.109,0,0.336,-0.942,0,0.336,-0.942,0,0.336,-0.942,0,0.336,-0.942,0.002,0.957,-0.289,0.002,0.957,-0.289,0.002,0.957,-0.289,0.002,0.957,-0.289,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0 +,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,0.002,0.569,-0.822,0.002,0.569,-0.822,0.002,0.569,-0.822,0.002,0.569,-0.822,0.002,0.569,-0.822,0.002,0.569,-0.822,0.002,0.569,-0.822,0.002,0.569,-0.822,0.011,0.594,-0.805,0.011,0.594,-0.805,0.011,0.594,-0.805,0.011,0.594,-0.805 +,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 +,0,1,0,0,1,0,0,1,0,-0.386,0.883,-0.269,-0.386,0.883,-0.269,-0.386,0.883,-0.269,-0.386,0.883,-0.269,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 +,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.691,0.002,-0.723,-0.691,0.002,-0.723,-0.691,0.002,-0.723,-0.691,0.002,-0.723,-0.691,0.002,-0.723,-0.691,0.002,-0.723,-0.691,0.002,-0.723 +,-0.691,0.002,-0.723,-0.691,0.002,-0.723,-0.691,0.002,-0.723,-0.691,0.002,-0.723,-0.691,0.002,-0.723,-0.987,0.159,0,-0.987,0.159,0,-0.987,0.159,0,-0.987,0.159,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.079,0.345,0.935,-0.079,0.345,0.935,-0.079,0.345,0.935,-0.079,0.345,0.935 +,0.403,0.915,0,0.403,0.915,0,0.403,0.915,0,0.403,0.915,0,0.992,0.063,0.113,0.992,0.063,0.113,0.992,0.063,0.113,0.992,0.063,0.113,0.992,0.063,0.113,0.002,-0.345,-0.939,0.002,-0.345,-0.939,0.002,-0.345,-0.939,0.002,-0.344,-0.939,-0.403,0.915,-0.004,-0.403,0.915,-0.004,-0.403,0.915,-0.004,-0.403,0.915,-0.004 +,-0.386,0.883,0.269,-0.386,0.883,0.269,-0.386,0.883,0.269,-0.386,0.883,0.269,-0.013,0.554,0.832,-0.013,0.554,0.832,-0.013,0.554,0.832,-0.013,0.554,0.832,-0.011,0.594,-0.805,-0.011,0.594,-0.805,-0.011,0.594,-0.805,-0.011,0.594,-0.805,0.079,0.345,-0.935,0.079,0.345,-0.935,0.079,0.345,-0.935,0.079,0.345,-0.935,-0.992,0.063,-0.109 +,-0.992,0.063,-0.109,-0.992,0.063,-0.109,-0.992,0.063,-0.109,-0.992,0.063,-0.109,0.002,-0.344,0.939,0.002,-0.345,0.939,0.002,-0.345,0.939,0.002,-0.345,0.939,0.386,0.883,0.269,0.386,0.883,0.269,0.386,0.883,0.269,0.386,0.883,0.269,0.987,0.159,0,0.987,0.159,0,0.987,0.159,0,0.987,0.159,0,0,-1,0 +,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 +,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 +,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.992,0.063,-0.113,-1,0.002,0,-0.992,0.063,0.109,1,0.002,0 +,-1,0.002,0,1,0.002,0] +,"tangents":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0] +,"colors":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +,1,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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +,1,1,1,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,1,1,1 +,1,0,0,1,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,1] +,"indices":[0,1,2,1,3,2,4,5,6,5,7,6,8,9,10,9,11,10,12,13,14,13,15,14,16,17,18,17,19,18,20,21,22,21,23,22,24,25,26,25,27,26,28,29,30,29,31,30,32,33,34 +,33,35,34,36,37,38,37,39,38,40,41,42,41,43,42,42,43,44,43,45,44,44,45,46,45,47,46,43,48,45,48,49,45,50,51,52,51,53,52,52,53,54,53,55,54,54,55,56,55,57,56 +,53,58,55,58,59,55,60,61,62,61,63,62,64,65,66,65,67,66,68,69,70,69,71,70,72,73,74,73,75,74,76,77,78,77,79,78,80,81,82,81,83,82,84,52,85,52,54,85,86,87,88 +,87,89,88,90,42,91,42,44,91,92,93,94,93,95,94,96,97,98,97,99,98,100,101,102,101,103,102,104,105,106,105,107,106,108,109,110,109,111,110,112,113,114,113,115,114,116,117,118,117,119,118 +,120,121,122,121,123,122,121,124,123,124,125,123,124,126,125,126,127,125,126,128,127,128,129,127,128,130,129,130,131,129,132,133,134,133,135,134,134,135,136,135,137,136,136,137,138,137,139,138,138,139,140 +,139,141,140,140,141,142,141,143,142,144,145,146,145,147,146,146,147,148,147,149,148,148,149,150,149,151,150,150,151,152,151,153,152,152,153,154,153,155,154,145,156,147,156,157,147,147,157,149,157,158,149 +,149,158,151,158,159,151,151,159,153,159,160,153,153,160,155,160,161,155,156,162,157,162,163,157,157,163,158,163,164,158,158,164,159,164,165,159,159,165,160,165,166,160,160,166,161,166,167,161,162,168,163 +,168,169,163,163,169,164,169,170,164,164,170,165,170,171,165,165,171,166,171,172,166,166,172,167,172,173,167,168,174,169,174,175,169,169,175,170,175,176,170,170,176,171,176,177,171,171,177,172,177,178,172 +,172,178,173,178,179,173,180,181,182,181,183,182,182,183,184,183,185,184,181,186,183,186,187,183,183,187,185,187,188,185,186,189,187,189,190,187,187,190,188,190,191,188,189,186,192,186,193,192,192,193,194 +,193,195,194,194,195,196,195,197,196,186,181,193,181,198,193,193,198,195,198,199,195,195,199,197,199,200,197,198,201,199,201,202,199,199,202,200,202,203,200,202,204,203,204,205,203,205,204,206,204,207,206 +,206,207,208,207,209,208,208,209,210,209,211,210,210,212,208,212,213,208,208,213,206,213,214,206,206,214,205,212,215,213,215,216,213,213,216,214,217,218,219,218,220,219,219,220,221,220,222,221,221,222,223 +,222,224,223,223,224,225,224,226,225,225,226,227,226,228,227,229,230,231,230,232,231,233,234,235,234,236,235,235,236,237,236,238,237,237,238,239,238,240,239,241,242,243,242,244,243,245,246,247,246,248,247 +,247,248,249,248,250,249,249,250,251,250,252,251,251,252,253,252,254,253,253,254,255,254,256,255,257,258,259,258,260,259,259,260,261,260,262,261,261,262,263,262,264,263,263,264,265,264,266,265,265,266,267 +,266,268,267,258,269,260,269,270,260,260,270,262,270,271,262,262,271,264,271,272,264,264,272,266,272,273,266,266,273,268,273,274,268,269,275,270,275,276,270,270,276,271,276,277,271,271,277,272,277,278,272 +,272,278,273,278,279,273,273,279,274,279,280,274,275,281,276,281,282,276,276,282,277,282,283,277,277,283,278,283,284,278,278,284,279,284,285,279,279,285,280,285,286,280,281,287,282,287,288,282,282,288,283 +,288,289,283,283,289,284,289,290,284,284,290,285,290,291,285,285,291,286,291,292,286,293,294,295,294,296,295,297,298,299,298,300,299,299,300,301,300,302,301,298,303,300,303,304,300,300,304,302,304,305,302 +,303,306,304,306,307,304,304,307,305,307,308,305,306,303,309,303,310,309,309,310,311,310,312,311,311,312,313,312,314,313,303,298,310,298,315,310,310,315,312,315,316,312,312,316,314,316,317,314,315,318,316 +,318,319,316,316,319,317,319,320,317,319,321,320,321,322,320,322,321,323,321,324,323,323,324,325,324,326,325,325,326,327,326,328,327,327,329,325,329,330,325,325,330,323,330,331,323,323,331,322,329,332,330 +,332,333,330,330,333,331,324,334,326,334,335,326,326,335,328,335,336,328,336,335,337,335,338,337,337,338,339,338,340,339,339,340,341,340,299,341,341,299,301,335,334,338,334,342,338,338,342,340,343,344,345 +,344,346,345,347,348,349,348,350,349,351,352,353,352,354,353,355,356,357,356,358,357,359,360,361,360,362,361,363,364,365,364,366,365,364,367,366,367,368,366,367,369,368,369,370,368,369,371,370,371,372,370 +,371,373,372,373,374,372,375,376,377,376,378,377,379,380,381,380,382,381,383,384,385,384,386,385,207,387,209,387,388,209,209,388,211,388,389,211,389,388,390,388,391,390,390,391,392,391,393,392,392,393,394 +,393,182,394,394,182,184,388,387,391,387,395,391,391,395,393,396,397,398,397,399,398,398,399,400,399,401,400,400,401,402,401,403,402,404,405,406,405,407,406,408,409,410,409,411,410,410,411,412,411,413,412 +,412,413,414,413,415,414,414,415,416,415,417,416,416,417,418,417,419,418,417,420,419,420,421,419,421,420,422,420,423,422,422,423,424,423,425,424,424,425,426,425,423,427,423,411,427,427,411,409,428,429,430 +,429,431,430,421,422,432,422,433,432,432,433,434,433,435,434,434,435,436,435,437,436,436,437,438,437,439,438,438,439,440,422,424,433,424,441,433,433,441,435,441,442,435,424,426,441,426,443,441,441,443,442 +,443,444,442,442,444,445,444,446,445,445,446,447,445,447,448,447,449,448,448,449,450,449,451,450,450,451,437,451,439,437,452,453,454,453,455,454,454,455,456,455,457,456,456,457,458,457,459,458,458,459,460 +,459,461,460,460,461,462,461,463,462,464,465,466,465,467,466,468,469,470,469,471,470,472,473,474,473,475,474,476,477,478,477,479,478,480,481,482,481,483,482,482,483,484,485,486,487,486,488,487,489,490,491 +,490,492,491,493,494,495,494,496,495,497,498,499,498,500,499,501,502,503,502,504,503,505,506,507,506,508,507,509,510,511,510,512,511,511,512,513,514,515,516,515,517,516,518,519,520,519,521,520,522,523,524 +,523,525,524,526,527,528,527,529,528,528,529,530,529,531,530,530,531,532,531,533,532,532,533,534,533,535,534,534,535,536,535,537,536,536,537,538,537,539,538,538,539,540,539,541,540,527,542,529,542,543,529 +,529,543,531,543,544,531,531,544,533,544,545,533,533,545,535,545,546,535,535,546,537,546,547,537,537,547,539,547,548,539,539,548,541,548,549,541,542,550,543,550,551,543,543,551,544,551,552,544,544,552,545 +,552,553,545,545,553,546,553,554,546,546,554,547,554,555,547,547,555,548,555,556,548,548,556,549,556,557,549,550,558,551,558,559,551,551,559,552,559,560,552,552,560,553,560,561,553,553,561,554,561,562,554 +,554,562,555,562,563,555,555,563,556,563,564,556,556,564,557,564,565,557,558,566,559,566,567,559,559,567,560,567,568,560,560,568,561,568,569,561,561,569,562,569,570,562,562,570,563,570,571,563,563,571,564 +,571,572,564,564,572,565,572,573,565,294,574,296,332,575,333,376,576,378,204,577,207,324,321,578,216,215,579] +,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":120,"indexStart":0,"indexCount":204},{"materialIndex":1,"verticesStart":120,"verticesCount":460,"indexStart":204,"indexCount":1404}] +,"instances":[]} +,{"name":"healthpack","id":"healthpack","materialId":"items.Multimaterial#1","billboardMode":0,"position":[0,0,0],"rotation":[0,0,0],"scaling":[1,1,1],"isVisible":true,"isEnabled":true,"pickable":false +,"positions":[0.0315,0.071,0.0373,0.0325,0.071,0.0373,0.0315,0.071,0.0121,0.0325,0.071,0.0121,-0.0325,0.071,0.0373,-0.0315,0.071,0.0373,-0.0325,0.071,0.0121,-0.0315,0.071,0.0121,-0.0325,0.0917,-0.0371,-0.0315,0.0917,-0.0371,-0.0325,0.0917,-0.0125,-0.0315,0.0917,-0.0125,0.0315,0.071,-0.0125,0.0325,0.071,-0.0125,0.0315,0.071,-0.0371,0.0325,0.071,-0.0371,0.0315,0.0917,-0.0371 +,0.0325,0.0917,-0.0371,0.0315,0.0917,-0.0125,0.0325,0.0917,-0.0125,-0.0315,0.1141,-0.0125,-0.0325,0.1141,-0.0125,-0.0315,0.0917,-0.0125,-0.0325,0.0917,-0.0125,-0.0315,0.0481,-0.0125,-0.0325,0.0481,-0.0125,-0.0315,0.0481,0.0121,-0.0325,0.0481,0.0121,-0.0325,0.071,-0.0371,-0.0315,0.071,-0.0371,-0.0325,0.0917,-0.0371,-0.0315,0.0917,-0.0371,-0.0315,0.0481,0.0121,-0.0325,0.0481,0.0121 +,-0.0315,0.071,0.0121,-0.0325,0.071,0.0121,-0.0315,0.071,-0.0371,-0.0325,0.071,-0.0371,-0.0315,0.071,-0.0125,-0.0325,0.071,-0.0125,-0.0325,0.0481,0.0121,-0.0325,0.0481,-0.0125,-0.0325,0.071,0.0121,-0.0325,0.071,-0.0125,-0.0325,0.0917,0.0121,-0.0325,0.0917,-0.0125,-0.0325,0.1141,0.0121,-0.0325,0.1141,-0.0125,-0.0325,0.071,-0.0371,-0.0325,0.0917,-0.0371,0.0325,0.1141,0.0121 +,0.0325,0.1141,-0.0125,0.0325,0.0917,0.0121,0.0325,0.0917,-0.0125,0.0325,0.071,0.0121,0.0325,0.071,-0.0125,0.0325,0.0481,0.0121,0.0325,0.0481,-0.0125,0.0325,0.0917,-0.0371,0.0325,0.071,-0.0371,0.0315,0.0481,-0.0125,0.0325,0.0481,-0.0125,0.0315,0.071,-0.0125,0.0325,0.071,-0.0125,0.0315,0.1141,-0.0125,0.0325,0.1141,-0.0125,0.0315,0.1141,0.0121,0.0325,0.1141,0.0121 +,-0.0315,0.071,0.0373,-0.0325,0.071,0.0373,-0.0315,0.0917,0.0373,-0.0325,0.0917,0.0373,-0.0325,0.0917,0.0121,-0.0315,0.0917,0.0121,-0.0325,0.0917,0.0373,-0.0315,0.0917,0.0373,0.0325,0.0481,-0.0125,0.0315,0.0481,-0.0125,0.0325,0.0481,0.0121,0.0315,0.0481,0.0121,0.0325,0.0917,0.0373,0.0315,0.0917,0.0373,0.0325,0.0917,0.0121,0.0315,0.0917,0.0121,0.0325,0.0917,0.0373 +,0.0325,0.071,0.0373,-0.0325,0.1141,0.0121,-0.0315,0.1141,0.0121,-0.0325,0.0917,0.0121,-0.0315,0.0917,0.0121,-0.0325,0.071,0.0373,-0.0325,0.0917,0.0373,0.0315,0.1141,0.0121,0.0325,0.1141,0.0121,0.0315,0.0917,0.0121,0.0325,0.0917,0.0121,0.0315,0.071,-0.0371,0.0325,0.071,-0.0371,0.0315,0.0917,-0.0371,0.0325,0.0917,-0.0371,0.0325,0.0481,0.0121,0.0315,0.0481,0.0121 +,0.0325,0.071,0.0121,0.0315,0.071,0.0121,0.0315,0.0917,-0.0125,0.0325,0.0917,-0.0125,0.0315,0.1141,-0.0125,0.0325,0.1141,-0.0125,-0.0315,0.1141,0.0121,-0.0325,0.1141,0.0121,-0.0315,0.1141,-0.0125,-0.0325,0.1141,-0.0125,-0.0315,0.071,-0.0125,-0.0325,0.071,-0.0125,-0.0315,0.0481,-0.0125,-0.0325,0.0481,-0.0125,0.0325,0.071,0.0373,0.0315,0.071,0.0373,0.0325,0.0917,0.0373 +,0.0315,0.0917,0.0373,-0.0315,0.0138,-0.1079,-0.0067,0.0138,-0.1079,-0.0251,0.0216,-0.1143,-0.0067,0.0216,-0.1143,-0.0022,0.0138,-0.1079,-0.0022,0.0216,-0.1143,0.0022,0.0138,-0.1079,0.0022,0.0216,-0.1143,0.0067,0.0138,-0.1079,0.0067,0.0216,-0.1143,0.0315,0.0138,-0.1079,0.0251,0.0216,-0.1143,-0.0315,0.1489,0.1087,-0.0251,0.1411,0.1146,-0.0315,0.1141,0.1087,-0.0251,0.1104,0.1146 +,-0.0315,0.0917,0.1087,-0.0251,0.0907,0.1146,-0.0315,0.071,0.1087,-0.0251,0.0725,0.1146,-0.0315,0.0481,0.1087,-0.0251,0.0523,0.1146,-0.0315,0.0138,0.1087,-0.0251,0.0216,0.1146,0.0251,0.1411,-0.1143,0.0067,0.1411,-0.1143,0.0251,0.1104,-0.1143,0.0067,0.1141,-0.1143,0.0251,0.0907,-0.1143,0.0067,0.0917,-0.1143,0.0251,0.0725,-0.1143,0.0067,0.071,-0.1143,0.0251,0.0523,-0.1143 +,0.0067,0.0481,-0.1143,0.0251,0.0216,-0.1143,0.0067,0.0216,-0.1143,0.0022,0.1411,-0.1143,0.0022,0.1141,-0.1143,0.0022,0.0917,-0.1143,0.0022,0.071,-0.1143,0.0022,0.0481,-0.1143,0.0022,0.0216,-0.1143,-0.0022,0.1411,-0.1143,-0.0022,0.1141,-0.1143,-0.0022,0.0917,-0.1143,-0.0022,0.071,-0.1143,-0.0022,0.0481,-0.1143,-0.0022,0.0216,-0.1143,-0.0067,0.1411,-0.1143,-0.0067,0.1141,-0.1143 +,-0.0067,0.0917,-0.1143,-0.0067,0.071,-0.1143,-0.0067,0.0481,-0.1143,-0.0067,0.0216,-0.1143,-0.0251,0.1411,-0.1143,-0.0251,0.1104,-0.1143,-0.0251,0.0907,-0.1143,-0.0251,0.0725,-0.1143,-0.0251,0.0523,-0.1143,-0.0251,0.0216,-0.1143,0.0315,0.0917,0.0121,0.0315,0.0917,0.0373,0.0315,0.1141,0.0121,0.0315,0.1141,0.0373,0.0315,0.1489,0.0121,0.0315,0.1489,0.0373,0.0315,0.0917,0.0455 +,0.0315,0.1141,0.0455,0.0315,0.1489,0.0455,0.0315,0.0917,0.1087,0.0315,0.1141,0.1087,0.0315,0.1489,0.1087,0.0315,0.071,0.1087,0.0315,0.071,0.0455,0.0315,0.0481,0.1087,0.0315,0.0481,0.0455,0.0315,0.0138,0.1087,0.0315,0.0138,0.0455,0.0315,0.071,0.0373,0.0315,0.0481,0.0373,0.0315,0.0138,0.0373,0.0315,0.071,0.0121,0.0315,0.0481,0.0121,0.0315,0.0138,0.0121 +,0.0315,0.0481,-0.0125,0.0315,0.0138,-0.0125,0.0315,0.0481,-0.0371,0.0315,0.071,-0.0371,0.0315,0.071,-0.0458,0.0315,0.0917,-0.0458,0.0315,0.0917,-0.1079,0.0315,0.1141,-0.1079,0.0315,0.071,-0.1079,0.0315,0.0481,-0.0458,0.0315,0.0138,-0.0371,0.0315,0.0481,-0.1079,0.0315,0.0138,-0.0458,0.0251,0.1411,0.1146,0.0315,0.1489,0.1087,0.0251,0.1104,0.1146,0.0315,0.1141,0.1087 +,0.0251,0.0907,0.1146,0.0315,0.0917,0.1087,0.0251,0.0725,0.1146,0.0315,0.071,0.1087,0.0251,0.0523,0.1146,0.0315,0.0481,0.1087,0.0251,0.0216,0.1146,0.0315,0.0138,0.1087,0.0067,0.1411,0.1146,0.0067,0.1489,0.1093,0.0251,0.1411,0.1146,0.0315,0.1489,0.1087,-0.0067,0.1411,0.1146,-0.0067,0.1489,0.1093,-0.0022,0.1411,0.1146,-0.0022,0.1489,0.1093,0.0022,0.1411,0.1146 +,0.0022,0.1489,0.1093,0.0067,0.1411,0.1146,0.0067,0.1489,0.1093,0.0022,0.1489,0.0543,0.0022,0.1733,0.0455,0.0057,0.1489,0.0543,0.0057,0.1717,0.0455,0.0251,0.0216,-0.1143,0.0315,0.0138,-0.1079,0.0251,0.0523,-0.1143,0.0315,0.0481,-0.1079,0.0251,0.0725,-0.1143,0.0315,0.071,-0.1079,0.0251,0.0907,-0.1143,0.0315,0.0917,-0.1079,0.0251,0.1104,-0.1143,0.0315,0.1141,-0.1079 +,0.0251,0.1411,-0.1143,0.0315,0.1489,-0.1079,-0.0251,0.1411,0.1146,-0.0067,0.1411,0.1146,-0.0251,0.1104,0.1146,-0.0067,0.1141,0.1146,-0.0251,0.0907,0.1146,-0.0067,0.0917,0.1146,-0.0251,0.0725,0.1146,-0.0067,0.071,0.1146,-0.0251,0.0523,0.1146,-0.0067,0.0481,0.1146,-0.0251,0.0216,0.1146,-0.0067,0.0216,0.1146,-0.0022,0.1411,0.1146,-0.0022,0.1141,0.1146,-0.0022,0.0917,0.1146 +,-0.0022,0.071,0.1146,-0.0022,0.0481,0.1146,-0.0022,0.0216,0.1146,0.0022,0.1411,0.1146,0.0022,0.1141,0.1146,0.0022,0.0917,0.1146,0.0022,0.071,0.1146,0.0022,0.0481,0.1146,0.0022,0.0216,0.1146,0.0067,0.1411,0.1146,0.0067,0.1141,0.1146,0.0067,0.0917,0.1146,0.0067,0.071,0.1146,0.0067,0.0481,0.1146,0.0067,0.0216,0.1146,0.0251,0.1411,0.1146,0.0251,0.1104,0.1146 +,0.0251,0.0907,0.1146,0.0251,0.0725,0.1146,0.0251,0.0523,0.1146,0.0251,0.0216,0.1146,0.0057,0.1717,-0.0458,0.0057,0.1489,-0.054,0.0057,0.1743,-0.0371,0.0067,0.1665,-0.0376,-0.0315,0.071,0.0121,-0.0315,0.071,0.0373,-0.0315,0.0481,0.0121,-0.0315,0.0481,0.0373,-0.0315,0.0138,0.0121,-0.0315,0.0138,0.0373,-0.0315,0.071,0.0455,-0.0315,0.0481,0.0455,-0.0315,0.0138,0.0455 +,-0.0315,0.071,0.1087,-0.0315,0.0481,0.1087,-0.0315,0.0138,0.1087,-0.0315,0.0917,0.1087,-0.0315,0.0917,0.0455,-0.0315,0.1141,0.1087,-0.0315,0.1141,0.0455,-0.0315,0.1489,0.1087,-0.0315,0.1489,0.0455,-0.0315,0.0917,0.0373,-0.0315,0.1141,0.0373,-0.0315,0.1489,0.0373,-0.0315,0.0917,0.0121,-0.0315,0.1141,0.0121,-0.0315,0.1489,0.0121,-0.0315,0.1141,-0.0125,-0.0315,0.1489,-0.0125 +,-0.0315,0.1141,-0.0371,-0.0315,0.0917,-0.0371,-0.0315,0.0917,-0.0458,-0.0315,0.071,-0.0458,-0.0315,0.071,-0.1079,-0.0315,0.0481,-0.1079,-0.0315,0.0917,-0.1079,-0.0315,0.1141,-0.0458,-0.0315,0.1489,-0.0371,-0.0315,0.1141,-0.1079,-0.0315,0.1489,-0.0458,-0.0315,0.071,-0.0371,-0.0315,0.0481,-0.0458,-0.0315,0.0138,-0.1079,-0.0315,0.0138,-0.0458,-0.0315,0.0481,-0.0371,-0.0315,0.0138,-0.0371 +,-0.0315,0.0481,-0.0125,-0.0315,0.0138,-0.0125,-0.0315,0.071,-0.0125,0.0057,0.1717,-0.0458,0.0057,0.1743,-0.0371,0.0022,0.1733,-0.0458,0.0022,0.1759,-0.0371,-0.0022,0.1733,0.0455,-0.0022,0.1759,0.0373,0.0022,0.1733,0.0455,0.0022,0.1759,0.0373,0.0022,0.1733,0.0455,0.0022,0.1489,0.0543,-0.0022,0.1733,0.0455,-0.0022,0.1489,0.0543,0.0022,0.1759,-0.0371,0.0022,0.1759,0.0373 +,-0.0022,0.1759,-0.0371,-0.0022,0.1759,0.0373,-0.0057,0.1717,-0.0458,-0.0057,0.1489,-0.054,-0.0022,0.1733,-0.0458,-0.0022,0.1489,-0.054,-0.0251,0.0216,0.1146,-0.0067,0.0216,0.1146,-0.0315,0.0138,0.1087,-0.0067,0.0138,0.1087,-0.0022,0.0216,0.1146,-0.0022,0.0138,0.1087,0.0022,0.0216,0.1146,0.0022,0.0138,0.1087,0.0067,0.0216,0.1146,0.0067,0.0138,0.1087,0.0251,0.0216,0.1146 +,0.0315,0.0138,0.1087,-0.0057,0.1717,0.0455,-0.0057,0.1489,0.0543,-0.0057,0.1743,0.0373,-0.0067,0.1665,0.0373,0.0022,0.1489,-0.054,0.0022,0.1733,-0.0458,-0.0022,0.1489,-0.054,-0.0022,0.1733,-0.0458,-0.0022,0.1759,-0.0371,-0.0022,0.1733,-0.0458,0.0022,0.1759,-0.0371,0.0022,0.1733,-0.0458,0.0315,0.0917,-0.0371,0.0315,0.1141,-0.0458,0.0315,0.1489,-0.1079,0.0315,0.1489,-0.0458 +,0.0315,0.1141,-0.0371,0.0315,0.1489,-0.0371,0.0315,0.1141,-0.0125,0.0315,0.1489,-0.0125,0.0315,0.0917,-0.0125,-0.0067,0.1489,-0.1091,-0.0067,0.1411,-0.1143,-0.0022,0.1489,-0.1091,-0.0022,0.1411,-0.1143,0.0022,0.1489,-0.1091,0.0022,0.1411,-0.1143,0.0067,0.1489,-0.1091,0.0067,0.1411,-0.1143,0.0251,0.1411,-0.1143,0.0315,0.1489,-0.1079,0.0067,0.1411,-0.1143,0.0067,0.1489,-0.1091 +,0.0315,0.1489,-0.1079,0.0315,0.1489,-0.0458,0.0067,0.1489,-0.1091,0.0057,0.1489,-0.054,0.0022,0.1489,-0.1091,0.0022,0.1489,-0.054,-0.0022,0.1489,-0.1091,-0.0022,0.1489,-0.054,-0.0067,0.1489,-0.1091,-0.0057,0.1489,-0.054,-0.0315,0.1489,-0.1079,-0.0315,0.1489,-0.0458,-0.0067,0.1489,-0.0441,-0.0315,0.1489,-0.0371,-0.0067,0.1489,-0.0148,0.0067,0.1489,-0.0441,0.0067,0.1489,-0.0148 +,0.0315,0.1489,-0.0125,0.0315,0.1489,0.0121,0.0315,0.1489,-0.0371,-0.0022,0.1733,-0.0458,-0.0022,0.1759,-0.0371,-0.0057,0.1717,-0.0458,-0.0057,0.1743,-0.0371,-0.0315,0.1489,-0.0125,-0.0067,0.1489,0.0145,-0.0315,0.1489,0.0121,-0.0067,0.1489,0.0437,-0.0315,0.1489,0.0373,-0.0057,0.1489,0.0543,-0.0315,0.1489,0.0455,-0.0067,0.1489,0.1093,-0.0315,0.1489,0.1087,0.0067,0.1489,0.0145 +,0.0067,0.1489,0.0437,0.0315,0.1489,0.0373,0.0315,0.1489,0.0455,0.0057,0.1489,0.0543,0.0315,0.1489,0.1087,0.0067,0.1489,0.1093,0.0022,0.1489,0.0543,0.0022,0.1489,0.1093,-0.0022,0.1489,0.0543,-0.0022,0.1489,0.1093,-0.0251,0.1411,-0.1143,-0.0315,0.1489,-0.1079,-0.0251,0.1104,-0.1143,-0.0315,0.1141,-0.1079,-0.0251,0.0907,-0.1143,-0.0315,0.0917,-0.1079,-0.0251,0.0725,-0.1143 +,-0.0315,0.071,-0.1079,-0.0251,0.0523,-0.1143,-0.0315,0.0481,-0.1079,-0.0251,0.0216,-0.1143,-0.0315,0.0138,-0.1079,-0.0057,0.1743,0.0373,-0.0067,0.1665,0.0373,-0.0057,0.1743,-0.0371,-0.0067,0.1665,-0.0376,0.0067,0.1665,0.0373,-0.0067,0.1665,0.0373,0.0067,0.1665,-0.0376,-0.0067,0.1665,-0.0376,-0.0057,0.1489,0.0543,-0.0057,0.1717,0.0455,-0.0022,0.1489,0.0543,-0.0022,0.1733,0.0455 +,0.0057,0.1743,-0.0371,0.0057,0.1743,0.0373,0.0022,0.1759,-0.0371,0.0022,0.1759,0.0373,0.0057,0.1489,0.0543,0.0057,0.1717,0.0455,0.0067,0.1489,0.0437,0.0057,0.1743,0.0373,0.0067,0.1665,0.0373,0.0067,0.1489,0.0437,0.0067,0.1665,0.0373,-0.0067,0.1489,0.0437,-0.0067,0.1665,0.0373,-0.0057,0.1743,0.0373,-0.0057,0.1743,-0.0371,-0.0022,0.1759,0.0373,-0.0022,0.1759,-0.0371 +,-0.0057,0.1717,0.0455,-0.0057,0.1743,0.0373,-0.0022,0.1733,0.0455,-0.0022,0.1759,0.0373,-0.0067,0.1489,0.1093,-0.0067,0.1411,0.1146,-0.0315,0.1489,0.1087,-0.0251,0.1411,0.1146,-0.0315,0.1489,-0.1079,-0.0251,0.1411,-0.1143,-0.0067,0.1489,-0.1091,-0.0067,0.1411,-0.1143,0.0022,0.1733,-0.0458,0.0022,0.1489,-0.054,0.0057,0.1717,-0.0458,0.0057,0.1489,-0.054,-0.0057,0.1489,-0.054 +,-0.0057,0.1717,-0.0458,-0.0067,0.1489,-0.0441,-0.0057,0.1743,-0.0371,-0.0067,0.1665,-0.0376,-0.0067,0.1489,-0.0441,-0.0067,0.1665,-0.0376,0.0067,0.1489,-0.0441,0.0067,0.1665,-0.0376,0.0057,0.1743,0.0373,0.0057,0.1717,0.0455,0.0022,0.1759,0.0373,0.0022,0.1733,0.0455,0.0067,0.1665,0.0373,0.0057,0.1743,0.0373,0.0067,0.1665,-0.0376,0.0057,0.1743,-0.0371,0.0315,0.0138,-0.1079 +,0.0067,0.0138,-0.1079,0.0315,0.0138,-0.0458,0.0067,0.0138,-0.0458,0.0315,0.0138,-0.0371,0.0067,0.0138,-0.0371,0.0315,0.0138,-0.0125,0.0067,0.0138,-0.0125,0.0315,0.0138,0.0121,0.0067,0.0138,0.0121,0.0315,0.0138,0.0373,0.0067,0.0138,0.0373,0.0315,0.0138,0.0455,0.0067,0.0138,0.0455,0.0315,0.0138,0.1087,0.0067,0.0138,0.1087,0.0022,0.0138,-0.1079,0.0022,0.0138,-0.0458 +,0.0022,0.0138,-0.0371,0.0022,0.0138,-0.0125,0.0022,0.0138,0.0121,0.0022,0.0138,0.0373,0.0022,0.0138,0.0455,0.0022,0.0138,0.1087,-0.0022,0.0138,-0.1079,-0.0022,0.0138,-0.0458,-0.0022,0.0138,-0.0371,-0.0022,0.0138,-0.0125,-0.0022,0.0138,0.0121,-0.0022,0.0138,0.0373,-0.0022,0.0138,0.0455,-0.0022,0.0138,0.1087,-0.0067,0.0138,-0.1079,-0.0067,0.0138,-0.0458,-0.0067,0.0138,-0.0371 +,-0.0067,0.0138,-0.0125,-0.0067,0.0138,0.0121,-0.0067,0.0138,0.0373,-0.0067,0.0138,0.0455,-0.0067,0.0138,0.1087,-0.0315,0.0138,-0.1079,-0.0315,0.0138,-0.0458,-0.0315,0.0138,-0.0371,-0.0315,0.0138,-0.0125,-0.0315,0.0138,0.0121,-0.0315,0.0138,0.0373,-0.0315,0.0138,0.0455,-0.0315,0.0138,0.1087,0.0067,0.1489,-0.0441,-0.0315,0.1489,-0.1079,-0.0067,0.1489,0.0437,0.0315,0.071,-0.0125 +,-0.0315,0.0917,-0.0125,0.0315,0.0138,-0.1079] +,"normals":[0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0 +,0,1,0,0,1,0,0,1,0,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,1,0,0.002,1 +,0,0.002,1,0,0.002,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,1,0.002,0 +,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,1,0,0,1,0,0,1,0,0,1,0 +,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,1,0,1,0,0,1,0,0,1,0,0,1,0,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.002,0 +,1,0.002,0,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,1,-1,0.002,0,-1,0.002,0,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,1,0,0.002,1 +,0,0.002,1,0,0.002,1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,1,0,0.002,1,0,0.002,1 +,0,0.002,1,0,-0.622,-0.783,0,-0.622,-0.783,0,-0.622,-0.783,0,-0.622,-0.783,0,-0.622,-0.783,0,-0.622,-0.783,0,-0.622,-0.783,0,-0.622,-0.783,0,-0.622,-0.783,0,-0.622,-0.783,0,-0.622,-0.783,0,-0.622,-0.783,-0.657,0.002,0.753,-0.657,0.002,0.753,-0.657,0.002,0.753,-0.657,0.002,0.753 +,-0.657,0.002,0.753,-0.657,0.002,0.753,-0.657,0.002,0.753,-0.657,0.002,0.753,-0.657,0.002,0.753,-0.657,0.002,0.753,-0.657,0.002,0.753,-0.657,0.002,0.753,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1 +,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1 +,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,0,0.002,-1,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0 +,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0 +,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,0.657,0.002,0.753,0.657,0.002,0.753,0.657,0.002,0.753,0.657,0.002,0.753 +,0.657,0.002,0.753,0.657,0.002,0.753,0.657,0.002,0.753,0.657,0.002,0.753,0.657,0.002,0.753,0.657,0.002,0.753,0.657,0.002,0.753,0.657,0.002,0.753,0.017,0.554,0.832,0.017,0.554,0.832,0.017,0.554,0.832,0.017,0.554,0.832,0.002,0.532,0.846,0.002,0.532,0.846,0.002,0.532,0.846,0.002,0.532,0.846,0.002,0.532,0.846 +,0.002,0.532,0.846,0.002,0.532,0.846,0.002,0.532,0.846,0.079,0.345,0.935,0.079,0.345,0.935,0.079,0.345,0.935,0.079,0.345,0.935,0.691,0.002,-0.723,0.691,0.002,-0.723,0.691,0.002,-0.723,0.691,0.002,-0.723,0.691,0.002,-0.723,0.691,0.002,-0.723,0.691,0.002,-0.723,0.691,0.002,-0.723,0.691,0.002,-0.723,0.691,0.002,-0.723 +,0.691,0.002,-0.723,0.691,0.002,-0.723,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,1 +,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,1 +,0,0.002,1,0,0.002,1,0,0.002,1,0,0.002,1,0.992,0.063,-0.113,0.992,0.063,-0.113,0.992,0.063,-0.113,0.992,0.063,-0.113,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0 +,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0 +,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0,-1,0.002,0 +,-1,0.002,0,-1,0.002,0,-1,0.002,0,0.386,0.883,-0.269,0.386,0.883,-0.269,0.386,0.883,-0.269,0.386,0.883,-0.269,0.002,0.957,0.289,0.002,0.957,0.289,0.002,0.957,0.289,0.002,0.957,0.289,0,0.336,0.942,0,0.336,0.942,0,0.336,0.942,0,0.336,0.942,0,1,0,0,1,0 +,0,1,0,0,1,0,-0.079,0.345,-0.935,-0.079,0.345,-0.935,-0.079,0.345,-0.935,-0.079,0.345,-0.935,0,-0.583,0.812,0,-0.583,0.812,0,-0.583,0.812,0,-0.583,0.812,0,-0.583,0.812,0,-0.583,0.812,0,-0.583,0.812,0,-0.583,0.812,0,-0.583,0.812,0,-0.583,0.812,0,-0.583,0.812 +,0,-0.583,0.812,-0.992,0.063,0.109,-0.992,0.063,0.109,-0.992,0.063,0.109,-0.992,0.063,0.109,0,0.336,-0.942,0,0.336,-0.942,0,0.336,-0.942,0,0.336,-0.942,0.002,0.957,-0.289,0.002,0.957,-0.289,0.002,0.957,-0.289,0.002,0.957,-0.289,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0 +,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,1,0.002,0,0.002,0.569,-0.822,0.002,0.569,-0.822,0.002,0.569,-0.822,0.002,0.569,-0.822,0.002,0.569,-0.822,0.002,0.569,-0.822,0.002,0.569,-0.822,0.002,0.569,-0.822,0.011,0.594,-0.805,0.011,0.594,-0.805,0.011,0.594,-0.805,0.011,0.594,-0.805 +,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 +,0,1,0,0,1,0,0,1,0,-0.386,0.883,-0.269,-0.386,0.883,-0.269,-0.386,0.883,-0.269,-0.386,0.883,-0.269,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 +,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.691,0.002,-0.723,-0.691,0.002,-0.723,-0.691,0.002,-0.723,-0.691,0.002,-0.723,-0.691,0.002,-0.723,-0.691,0.002,-0.723,-0.691,0.002,-0.723 +,-0.691,0.002,-0.723,-0.691,0.002,-0.723,-0.691,0.002,-0.723,-0.691,0.002,-0.723,-0.691,0.002,-0.723,-0.987,0.159,0,-0.987,0.159,0,-0.987,0.159,0,-0.987,0.159,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.079,0.345,0.935,-0.079,0.345,0.935,-0.079,0.345,0.935,-0.079,0.345,0.935 +,0.403,0.915,0,0.403,0.915,0,0.403,0.915,0,0.403,0.915,0,0.992,0.063,0.113,0.992,0.063,0.113,0.992,0.063,0.113,0.992,0.063,0.113,0.992,0.063,0.113,0.002,-0.345,-0.939,0.002,-0.345,-0.939,0.002,-0.345,-0.939,0.002,-0.344,-0.939,-0.403,0.915,-0.004,-0.403,0.915,-0.004,-0.403,0.915,-0.004,-0.403,0.915,-0.004 +,-0.386,0.883,0.269,-0.386,0.883,0.269,-0.386,0.883,0.269,-0.386,0.883,0.269,-0.013,0.554,0.832,-0.013,0.554,0.832,-0.013,0.554,0.832,-0.013,0.554,0.832,-0.011,0.594,-0.805,-0.011,0.594,-0.805,-0.011,0.594,-0.805,-0.011,0.594,-0.805,0.079,0.345,-0.935,0.079,0.345,-0.935,0.079,0.345,-0.935,0.079,0.345,-0.935,-0.992,0.063,-0.109 +,-0.992,0.063,-0.109,-0.992,0.063,-0.109,-0.992,0.063,-0.109,-0.992,0.063,-0.109,0.002,-0.344,0.939,0.002,-0.345,0.939,0.002,-0.345,0.939,0.002,-0.345,0.939,0.386,0.883,0.269,0.386,0.883,0.269,0.386,0.883,0.269,0.386,0.883,0.269,0.987,0.159,0,0.987,0.159,0,0.987,0.159,0,0.987,0.159,0,0,-1,0 +,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 +,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 +,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.992,0.063,-0.113,-1,0.002,0,-0.992,0.063,0.109,1,0.002,0 +,-1,0.002,0,1,0.002,0] +,"tangents":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0] +,"colors":[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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1] +,"indices":[0,1,2,1,3,2,4,5,6,5,7,6,8,9,10,9,11,10,12,13,14,13,15,14,16,17,18,17,19,18,20,21,22,21,23,22,24,25,26,25,27,26,28,29,30,29,31,30,32,33,34 +,33,35,34,36,37,38,37,39,38,40,41,42,41,43,42,42,43,44,43,45,44,44,45,46,45,47,46,43,48,45,48,49,45,50,51,52,51,53,52,52,53,54,53,55,54,54,55,56,55,57,56 +,53,58,55,58,59,55,60,61,62,61,63,62,64,65,66,65,67,66,68,69,70,69,71,70,72,73,74,73,75,74,76,77,78,77,79,78,80,81,82,81,83,82,84,52,85,52,54,85,86,87,88 +,87,89,88,90,42,91,42,44,91,92,93,94,93,95,94,96,97,98,97,99,98,100,101,102,101,103,102,104,105,106,105,107,106,108,109,110,109,111,110,112,113,114,113,115,114,116,117,118,117,119,118 +,120,121,122,121,123,122,121,124,123,124,125,123,124,126,125,126,127,125,126,128,127,128,129,127,128,130,129,130,131,129,132,133,134,133,135,134,134,135,136,135,137,136,136,137,138,137,139,138,138,139,140 +,139,141,140,140,141,142,141,143,142,144,145,146,145,147,146,146,147,148,147,149,148,148,149,150,149,151,150,150,151,152,151,153,152,152,153,154,153,155,154,145,156,147,156,157,147,147,157,149,157,158,149 +,149,158,151,158,159,151,151,159,153,159,160,153,153,160,155,160,161,155,156,162,157,162,163,157,157,163,158,163,164,158,158,164,159,164,165,159,159,165,160,165,166,160,160,166,161,166,167,161,162,168,163 +,168,169,163,163,169,164,169,170,164,164,170,165,170,171,165,165,171,166,171,172,166,166,172,167,172,173,167,168,174,169,174,175,169,169,175,170,175,176,170,170,176,171,176,177,171,171,177,172,177,178,172 +,172,178,173,178,179,173,180,181,182,181,183,182,182,183,184,183,185,184,181,186,183,186,187,183,183,187,185,187,188,185,186,189,187,189,190,187,187,190,188,190,191,188,189,186,192,186,193,192,192,193,194 +,193,195,194,194,195,196,195,197,196,186,181,193,181,198,193,193,198,195,198,199,195,195,199,197,199,200,197,198,201,199,201,202,199,199,202,200,202,203,200,202,204,203,204,205,203,205,204,206,204,207,206 +,206,207,208,207,209,208,208,209,210,209,211,210,210,212,208,212,213,208,208,213,206,213,214,206,206,214,205,212,215,213,215,216,213,213,216,214,217,218,219,218,220,219,219,220,221,220,222,221,221,222,223 +,222,224,223,223,224,225,224,226,225,225,226,227,226,228,227,229,230,231,230,232,231,233,234,235,234,236,235,235,236,237,236,238,237,237,238,239,238,240,239,241,242,243,242,244,243,245,246,247,246,248,247 +,247,248,249,248,250,249,249,250,251,250,252,251,251,252,253,252,254,253,253,254,255,254,256,255,257,258,259,258,260,259,259,260,261,260,262,261,261,262,263,262,264,263,263,264,265,264,266,265,265,266,267 +,266,268,267,258,269,260,269,270,260,260,270,262,270,271,262,262,271,264,271,272,264,264,272,266,272,273,266,266,273,268,273,274,268,269,275,270,275,276,270,270,276,271,276,277,271,271,277,272,277,278,272 +,272,278,273,278,279,273,273,279,274,279,280,274,275,281,276,281,282,276,276,282,277,282,283,277,277,283,278,283,284,278,278,284,279,284,285,279,279,285,280,285,286,280,281,287,282,287,288,282,282,288,283 +,288,289,283,283,289,284,289,290,284,284,290,285,290,291,285,285,291,286,291,292,286,293,294,295,294,296,295,297,298,299,298,300,299,299,300,301,300,302,301,298,303,300,303,304,300,300,304,302,304,305,302 +,303,306,304,306,307,304,304,307,305,307,308,305,306,303,309,303,310,309,309,310,311,310,312,311,311,312,313,312,314,313,303,298,310,298,315,310,310,315,312,315,316,312,312,316,314,316,317,314,315,318,316 +,318,319,316,316,319,317,319,320,317,319,321,320,321,322,320,322,321,323,321,324,323,323,324,325,324,326,325,325,326,327,326,328,327,327,329,325,329,330,325,325,330,323,330,331,323,323,331,322,329,332,330 +,332,333,330,330,333,331,324,334,326,334,335,326,326,335,328,335,336,328,336,335,337,335,338,337,337,338,339,338,340,339,339,340,341,340,299,341,341,299,301,335,334,338,334,342,338,338,342,340,343,344,345 +,344,346,345,347,348,349,348,350,349,351,352,353,352,354,353,355,356,357,356,358,357,359,360,361,360,362,361,363,364,365,364,366,365,364,367,366,367,368,366,367,369,368,369,370,368,369,371,370,371,372,370 +,371,373,372,373,374,372,375,376,377,376,378,377,379,380,381,380,382,381,383,384,385,384,386,385,207,387,209,387,388,209,209,388,211,388,389,211,389,388,390,388,391,390,390,391,392,391,393,392,392,393,394 +,393,182,394,394,182,184,388,387,391,387,395,391,391,395,393,396,397,398,397,399,398,398,399,400,399,401,400,400,401,402,401,403,402,404,405,406,405,407,406,408,409,410,409,411,410,410,411,412,411,413,412 +,412,413,414,413,415,414,414,415,416,415,417,416,416,417,418,417,419,418,417,420,419,420,421,419,421,420,422,420,423,422,422,423,424,423,425,424,424,425,426,425,423,427,423,411,427,427,411,409,428,429,430 +,429,431,430,421,422,432,422,433,432,432,433,434,433,435,434,434,435,436,435,437,436,436,437,438,437,439,438,438,439,440,422,424,433,424,441,433,433,441,435,441,442,435,424,426,441,426,443,441,441,443,442 +,443,444,442,442,444,445,444,446,445,445,446,447,445,447,448,447,449,448,448,449,450,449,451,450,450,451,437,451,439,437,452,453,454,453,455,454,454,455,456,455,457,456,456,457,458,457,459,458,458,459,460 +,459,461,460,460,461,462,461,463,462,464,465,466,465,467,466,468,469,470,469,471,470,472,473,474,473,475,474,476,477,478,477,479,478,480,481,482,481,483,482,482,483,484,485,486,487,486,488,487,489,490,491 +,490,492,491,493,494,495,494,496,495,497,498,499,498,500,499,501,502,503,502,504,503,505,506,507,506,508,507,509,510,511,510,512,511,511,512,513,514,515,516,515,517,516,518,519,520,519,521,520,522,523,524 +,523,525,524,526,527,528,527,529,528,528,529,530,529,531,530,530,531,532,531,533,532,532,533,534,533,535,534,534,535,536,535,537,536,536,537,538,537,539,538,538,539,540,539,541,540,527,542,529,542,543,529 +,529,543,531,543,544,531,531,544,533,544,545,533,533,545,535,545,546,535,535,546,537,546,547,537,537,547,539,547,548,539,539,548,541,548,549,541,542,550,543,550,551,543,543,551,544,551,552,544,544,552,545 +,552,553,545,545,553,546,553,554,546,546,554,547,554,555,547,547,555,548,555,556,548,548,556,549,556,557,549,550,558,551,558,559,551,551,559,552,559,560,552,552,560,553,560,561,553,553,561,554,561,562,554 +,554,562,555,562,563,555,555,563,556,563,564,556,556,564,557,564,565,557,558,566,559,566,567,559,559,567,560,567,568,560,560,568,561,568,569,561,561,569,562,569,570,562,562,570,563,570,571,563,563,571,564 +,571,572,564,564,572,565,572,573,565,294,574,296,332,575,333,376,576,378,204,577,207,324,321,578,216,215,579] +,"subMeshes":[{"materialIndex":0,"verticesStart":0,"verticesCount":120,"indexStart":0,"indexCount":204},{"materialIndex":1,"verticesStart":120,"verticesCount":460,"indexStart":204,"indexCount":1404}] +,"instances":[]} +] +} \ No newline at end of file diff --git a/plugins_default/healthpackitem/shared.js b/plugins_default/healthpackitem/shared.js new file mode 100644 index 00000000..0cc4f6d2 --- /dev/null +++ b/plugins_default/healthpackitem/shared.js @@ -0,0 +1,48 @@ +//legacyshell: basic +import { isClient, isServer } from "#constants"; +import Comm from "#comm"; +import { Rocket } from "#bullets"; +import { RPEGG } from "#guns"; +//legacyshell: plugins +import { plugins } from '#plugins'; +import { setGameOptionInMentions } from "#permissions"; +// + +export const HealthPackItem = { + registerListeners: function (pluginManager) { + console.log("registering listeners... (HealthPackItem)"); + + this.plugins = pluginManager; + + this.plugins.on('game:onMapComplete', this.onMapComplete.bind(this)); + this.plugins.on('game:AllItems', this.AllItems.bind(this)); + }, + + onMapComplete(data) { + var gameScene = data.gameScene; + + gameScene.getMeshByName("healthpack").material = gameScene.getMaterialByName("standardInstanced"); + gameScene.getMeshByName("healthpack.alt").material = gameScene.getMaterialByName("standardInstanced"); + }, + + AllItems(data) { + var AllItems = data.AllItems; + + AllItems.push({ + codeName: "HEALTH", + mesh: "healthpack.alt", //add or remove ".alt" to change colour scheme + name: "Health Pack", + actor: data.ItemActor, + poolSize: 50, + collect: function (player, applyToWeaponIdx) { + if (player.hp === 100) return false + if (isServer) { + player.heal(50); + }; + return true; + } + }); + }, +}; + +if (isClient) HealthPackItem.registerListeners(plugins); \ No newline at end of file diff --git a/plugins_default/modernmapblocks/index.js b/plugins_default/modernmapblocks/index.js index 31ec5250..d24e79e3 100644 --- a/plugins_default/modernmapblocks/index.js +++ b/plugins_default/modernmapblocks/index.js @@ -24,6 +24,7 @@ export class Plugin { pluginInstance = this; this.plugins.on('client:prepareBabylon', this.prepareBabylon.bind(this)); + this.plugins.on('game:prepareBabylon', this.prepareBabylon.bind(this)); }; async prepareBabylon(data) { diff --git a/src/shell/plugins.js b/src/shell/plugins.js index 87b928e9..0f436ddd 100644 --- a/src/shell/plugins.js +++ b/src/shell/plugins.js @@ -26,6 +26,7 @@ export class PluginManager { try { const pluginPath = path.join(pluginsDir, pluginFolder, 'index.js'); if (fs.existsSync(pluginPath) && !pluginFolder.startsWith("_")) { + log.info(`Loading plugin: ${pluginFolder}...`); (async () => { const gitPath = path.join(pluginsDir, pluginFolder, '.git'); const currentHash = execSync(`cd ${path.join(pluginsDir, pluginFolder)} && git rev-parse HEAD`, { encoding: 'utf-8' }).trim(); @@ -54,29 +55,45 @@ export class PluginManager { const dependenciesPath = path.join(pluginsDir, pluginFolder, 'dependencies.js'); + var failed = false; + if (fs.existsSync(dependenciesPath)) { const { dependencies } = await import(pathToFileURL(dependenciesPath).href); for (const [dependency, version] of Object.entries(dependencies)) { - try { - const modulePath = path.join(ss.rootDir, 'node_modules', dependency); - if (!fs.existsSync(modulePath)) { - await import(dependency); + if (version === "plugin") { + if (this.pluginsList.includes(dependency)) { + log.green(`Plugin dependency ${dependency} found`); + } else { + failed = `This plugin requires another plugin to work: ${dependency}.\nInstall it and move it to the plugins folder.\nAlready installed? Ensure the folder name matches exactly.`; + log.red(`Plugin dependency ${dependency} not found`); }; - // log.dim(`${dependency} is already installed.`); - } catch (error) { - log.warning(`${dependency} is not installed. Attempting to install (${version})...`); - execSync(`npm install ${dependency}@${version} --no-save`, (error, stdout, stderr) => { - if (error) { - console.error(`exec error: ${error}`); - return; + } else { + try { + const modulePath = path.join(ss.rootDir, 'node_modules', dependency); + if (!fs.existsSync(modulePath)) { + await import(dependency); }; - console.log(`stdout: ${stdout}`); - console.error(`stderr: ${stderr}`); - }); + // log.dim(`${dependency} is already installed.`); + } catch (error) { + log.warning(`${dependency} is not installed. Attempting to install (${version})...`); + execSync(`npm install ${dependency}@${version} --no-save`, (error, stdout, stderr) => { + if (error) { + console.error(`exec error: ${error}`); + return; + }; + console.log(`stdout: ${stdout}`); + console.error(`stderr: ${stderr}`); + }); + }; }; }; }; + if (failed) { + log.error(`Plugin ${pluginFolder} couldn't be loaded:\n${failed}`); + return; + }; + const pluginURL = pathToFileURL(pluginPath).href; const { PluginMeta, Plugin } = await import(pluginURL); @@ -115,7 +132,7 @@ export class PluginManager { }; }; - console.log(this.pluginsList); + console.log("pluginsList", this.pluginsList); for (const pluginFolder of pluginFolders) { await this.loadPluginsFromDir(pluginFolder, type, ss);