diff --git a/.gitattributes b/.gitattributes index f91f646..ff21364 100644 --- a/.gitattributes +++ b/.gitattributes @@ -3,10 +3,8 @@ # # Linux start script should use lf /gradlew text eol=lf - # These are Windows script files and should use crlf *.bat text eol=crlf - # Binary files should be left untouched *.jar binary - +*.bin filter=lfs diff=lfs merge=lfs -text diff --git a/app/build.gradle b/app/build.gradle index 3c048f0..d1e196b 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -25,8 +25,10 @@ dependencies { implementation "org.ngengine:nge-core:${ngeVersion}" implementation "org.ngengine:nge-gui:${ngeVersion}" implementation "org.ngengine:nge-networking:${ngeVersion}" + implementation "org.ngengine:nge-ads:${ngeVersion}" implementation "org.ngengine:jme3-desktop:${ngeVersion}" + implementation "org.ngengine:jme3-jbullet:${ngeVersion}" implementation "org.ngengine:jme3-effects:${ngeVersion}" implementation "org.ngengine:jme3-jogg:${ngeVersion}" implementation "org.ngengine:jme3-lwjgl3:${ngeVersion}" @@ -46,6 +48,12 @@ application { mainClass = project.findProperty('mainClass') } +run { + jvmArgs = [ + "-Djava.util.logging.config.file=${rootProject.projectDir}/dev-logging.properties", + '-ea' + ] +} shadowJar { archiveBaseName = "${rootProject.name}" @@ -138,8 +146,13 @@ task traceNative(type: JavaExec) { classpath = sourceSets.main.runtimeClasspath jvmArgs = [ "-agentlib:native-image-agent=config-merge-dir=${project.projectDir}/trace", - '-Djava.awt.headless=true', '-XstartOnFirstThread' + '-Djava.awt.headless=true' ] + + if (getOsName() == 'macos') { + jvmArgs.add(0, '-XstartOnFirstThread') + } + systemProperty 'java.awt.headless', 'false' systemProperty 'testMode', 'true' doFirst { @@ -232,6 +245,8 @@ task buildNativeExecutable { return commandLine } + + task buildInstaller(type: DefaultTask) { group = 'distribution' description = 'Create native installer using jpackage' diff --git a/app/src/main/java/org/example/MainComponent.java b/app/src/main/java/org/example/MainComponent.java deleted file mode 100644 index 3e6b1cb..0000000 --- a/app/src/main/java/org/example/MainComponent.java +++ /dev/null @@ -1,118 +0,0 @@ -package org.example; - -import org.ngengine.AsyncAssetManager; -import org.ngengine.components.Component; -import org.ngengine.components.ComponentManager; -import org.ngengine.components.fragments.AsyncAssetLoadingFragment; -import org.ngengine.components.fragments.InputHandlerFragment; -import org.ngengine.components.fragments.MainViewPortFragment; -import org.ngengine.gui.components.NLabel; -import org.ngengine.gui.components.containers.NRow; -import org.ngengine.gui.win.NWindowManagerComponent; -import org.ngengine.gui.win.std.NHud; -import org.ngengine.runner.Runner; -import org.ngengine.store.DataStoreProvider; - -import com.jme3.asset.AssetManager; -import com.jme3.environment.EnvironmentProbeControl; -import com.jme3.input.KeyInput; -import com.jme3.input.event.KeyInputEvent; -import com.jme3.material.Material; -import com.jme3.material.Materials; -import com.jme3.math.ColorRGBA; -import com.jme3.math.Vector3f; -import com.jme3.post.FilterPostProcessor; -import com.jme3.post.filters.ToneMapFilter; -import com.jme3.renderer.ViewPort; -import com.jme3.scene.Geometry; -import com.jme3.scene.Node; -import com.jme3.scene.Spatial; -import com.jme3.scene.shape.Box; -import com.jme3.util.SkyFactory; -import com.jme3.util.SkyFactory.EnvMapType; - -public class MainComponent implements Component, AsyncAssetLoadingFragment, MainViewPortFragment, InputHandlerFragment{ - // In a real-world application, you should probably split this into multiple components - - private Spatial sky; - private EnvironmentProbeControl evp; - private Node rootNode; - private Node characterNode; - - @Override - public void loadAssetsAsync(AsyncAssetManager assetManager) { - // load resources - sky = SkyFactory.createSky(assetManager, "Sky/citrus_orchard_puresky_4k.hdr", EnvMapType.EquirectMap); - evp = new EnvironmentProbeControl(assetManager, 256); - - // Tag sky for environment baking - EnvironmentProbeControl.tagGlobal(sky); - - // load character model - characterNode = new Node("CharacterNode"); - Geometry characterGeom = new Geometry("MyCharacter", new Box(1f,1f,1f)); - characterNode.attachChild(characterGeom); - - // set up material for character - Material characterMat = new Material(assetManager, Materials.PBR); - characterMat.setColor("BaseColor", ColorRGBA.White); - characterMat.setFloat("Metallic", 1.0f); - characterMat.setFloat("Roughness", 0.0f); - characterGeom.setMaterial(characterMat); - - } - - - @Override - public void receiveMainViewPort(ViewPort viewPort) { - rootNode = getRootNode(viewPort); - viewPort.getCamera().lookAt(Vector3f.ZERO, Vector3f.UNIT_Y); - } - - @Override - public void loadMainViewPortFilterPostprocessor(AssetManager assetManager, FilterPostProcessor fpp) { - ToneMapFilter toneMapFilter = new ToneMapFilter(Vector3f.UNIT_XYZ.mult(1.6f)); - fpp.addFilter(toneMapFilter); - } - - @Override - public void onEnable(ComponentManager mng, Runner runner, DataStoreProvider dataStore, boolean firstTime, Object arg) { - // Compose the scene - rootNode.attachChild(sky); - rootNode.addControl(evp); - rootNode.attachChild(characterNode); - - NWindowManagerComponent windowManager = mng.getComponent(NWindowManagerComponent.class); - windowManager.showWindow(NHud.class, (win,err)->{ - if(err != null) { - System.err.println("Error showing HUD window: " + err.getMessage()); - return; - } - NRow topRow = win.getTop(); - NLabel label = new NLabel("Use WASD to move the cube"); - topRow.addChild(label); - }); - } - - @Override - public void onKeyEvent(KeyInputEvent evt) { - if(evt.getKeyCode() == KeyInput.KEY_W){ - characterNode.move(0, 0, -0.1f); // Move character forward - } else if(evt.getKeyCode() == KeyInput.KEY_S) { - characterNode.move(0, 0, 0.1f); // Move character backward - } else if(evt.getKeyCode() == KeyInput.KEY_A) { - characterNode.move(-0.1f, 0, 0); // Move character left - } else if(evt.getKeyCode() == KeyInput.KEY_D) { - characterNode.move(0.1f, 0, 0); // Move character right - } - } - - @Override - public void onDisable(ComponentManager mng, Runner runner, DataStoreProvider dataStore) { - - } - - - - -} diff --git a/app/src/main/java/org/example/NGEAppMain.java b/app/src/main/java/org/example/NGEAppMain.java deleted file mode 100644 index 2d68af4..0000000 --- a/app/src/main/java/org/example/NGEAppMain.java +++ /dev/null @@ -1,43 +0,0 @@ -/* - * This source file was generated by the Gradle 'init' task - */ -package org.example; - -import org.ngengine.NGEApplication; -import org.ngengine.components.ComponentManager; -import org.ngengine.gui.win.NWindowManagerComponent; -import org.ngengine.player.PlayerManagerComponent; -import com.jme3.system.AppSettings; - -public class NGEAppMain { - public static void main(String[] args) { - AppSettings settings = new AppSettings(true); - settings.setRenderer(AppSettings.LWJGL_OPENGL32); - settings.setWidth(1280); - settings.setHeight(720); - settings.setGammaCorrection(true); - settings.setSamples(4); - settings.setStencilBits(8); - settings.setDepthBits(24); - settings.setVSync(true); - settings.setGraphicsDebug(false); - settings.setTitle("Nostr Game Engine Demo"); - - - Runnable appBuilder = NGEApplication.createApp( - settings, - app -> { - ComponentManager mng = app.getComponentManager(); - mng.addAndEnableComponent(new PlayerManagerComponent()); - mng.addAndEnableComponent(new NWindowManagerComponent()); - - // Add more components as needed - // ... - - mng.addComponent(new MainComponent(), NWindowManagerComponent.class, PlayerManagerComponent.class); - mng.enableComponent(MainComponent.class); - } - ); - appBuilder.run(); - } -} diff --git a/app/src/main/java/org/ngengine/demo/adc/AdcDemo.java b/app/src/main/java/org/ngengine/demo/adc/AdcDemo.java new file mode 100644 index 0000000..6b6baf5 --- /dev/null +++ b/app/src/main/java/org/ngengine/demo/adc/AdcDemo.java @@ -0,0 +1,55 @@ +package org.ngengine.demo.adc; + +import org.ngengine.NGEApplication; +import org.ngengine.ads.ImmersiveAdComponent; +import org.ngengine.components.ComponentManager; +import org.ngengine.gui.win.NWindowManagerComponent; + +import com.jme3.system.AppSettings; + +public class AdcDemo { + + + + public static void main(String arg[]){ + AppSettings settings = new AppSettings(true); + settings.setRenderer(AppSettings.LWJGL_OPENGL32); + settings.setWidth(1280); + settings.setHeight(720); + settings.setGammaCorrection(true); + settings.setSamples(2); + settings.setStencilBits(8); + settings.setDepthBits(24); + settings.setVSync(true); + settings.setGraphicsDebug(false); + settings.setX11PlatformPreferred(true); + settings.setTitle("Nostr Game Engine Demo"); + + + + + Runnable appBuilder = NGEApplication.createApp(settings, app -> { + ImmersiveAdComponent dep = app.enableAds(); + + + ComponentManager mng = app.getComponentManager(); + mng.addAndEnableComponent(new LoadingScreenComponent(), null, new Object[] { NWindowManagerComponent.class }); + + mng.addAndEnableComponent(new NWindowManagerComponent()); + mng.addAndEnableComponent(new PhysicsComponent()); + mng.addAndEnableComponent(new SoundComponent()); + mng.addAndEnableComponent(new PostprocessingComponent()); + mng.addAndEnableComponent(new MapComponent(), null, new Object[]{ PhysicsComponent.class, ImmersiveAdComponent.class}); + mng.addAndEnableComponent(new CharacterComponent(), null, new Object[] { + MapComponent.class, PhysicsComponent.class }); + mng.addAndEnableComponent(new HudComponent(), null, new Object[] { CharacterComponent.class }); + + app.getJme3App().setFlyCamEnabled(true); + app.getJme3App().getInputManager().setCursorVisible(false); + + + }); + + appBuilder.run(); + } +} diff --git a/app/src/main/java/org/ngengine/demo/adc/CharacterComponent.java b/app/src/main/java/org/ngengine/demo/adc/CharacterComponent.java new file mode 100644 index 0000000..1887ac0 --- /dev/null +++ b/app/src/main/java/org/ngengine/demo/adc/CharacterComponent.java @@ -0,0 +1,156 @@ +package org.ngengine.demo.adc; + +import org.ngengine.ViewPortManager; +import org.ngengine.components.Component; +import org.ngengine.components.ComponentManager; +import org.ngengine.components.fragments.InputHandlerFragment; +import org.ngengine.components.fragments.LogicFragment; +import org.ngengine.components.fragments.MainViewPortFragment; +import org.ngengine.runner.Runner; +import org.ngengine.store.DataStoreProvider; + +import com.jme3.bullet.control.CharacterControl; +import com.jme3.input.KeyInput; +import com.jme3.input.event.KeyInputEvent; +import com.jme3.input.event.MouseMotionEvent; +import com.jme3.math.FastMath; +import com.jme3.math.Quaternion; +import com.jme3.math.Vector3f; +import com.jme3.renderer.Camera; +import com.jme3.renderer.ViewPort; +import com.jme3.scene.Node; + +public class CharacterComponent implements Component, InputHandlerFragment, LogicFragment{ + private static final float MAX_PITCH = FastMath.HALF_PI - 0.1f; + + private Node player; + private CharacterControl characterControl; + private boolean debugCam = false; + private float currentYaw = 0; + private float currentPitch = 0; + private Vector3f walkDirection = new Vector3f(); + private boolean left = false; + private boolean right = false; + private boolean up = false; + private boolean down = false; + private boolean jump = false; + + @Override + public void onEnable(ComponentManager mng, Runner runner, DataStoreProvider dataStore, boolean firstTime, + Object arg) { + + ViewPortManager vpm = mng.getGlobalInstance(ViewPortManager.class); + ViewPort mainViewPort = vpm.getMainSceneViewPort(); + Node rootNode = vpm.getRootNode(mainViewPort); + + player = new Node("Player"); + player.setLocalTranslation(new Vector3f(-33.665176f, 41.3f, -23.83905f)); + player.setLocalRotation(new Quaternion(-0.10938066f, -0.004970028f, -5.469133f, 0.9939874f)); + rootNode.attachChild(player); + + PhysicsComponent physics = mng.getComponent(PhysicsComponent.class); + characterControl = physics.createCharacterControl(player); + physics.addAll(player); + + System.out.println("Character ready"); + } + + + @Override + public void onDisable(ComponentManager mng, Runner runner, DataStoreProvider dataStore) { + PhysicsComponent physics = mng.getComponent(PhysicsComponent.class); + physics.removeAll(player); + player.removeFromParent(); + } + + + + @Override + public void onKeyEvent(ComponentManager mng, KeyInputEvent evt) { + if(evt.getKeyCode() == KeyInput.KEY_W) { + up = evt.isPressed(); + } else if(evt.getKeyCode() == KeyInput.KEY_S) { + down = evt.isPressed(); + } else if(evt.getKeyCode() == KeyInput.KEY_A) { + left = evt.isPressed(); + } else if(evt.getKeyCode() == KeyInput.KEY_D) { + right = evt.isPressed(); + } else if(evt.getKeyCode() == KeyInput.KEY_SPACE) { + jump = evt.isPressed(); + } else if(evt.getKeyCode() == KeyInput.KEY_F){ + if(evt.isPressed()){ + debugCam = !debugCam; + } + } + } + + + + @Override + public void updateAppLogic(ComponentManager mng, float tpf){ + ViewPortManager vpm = mng.getGlobalInstance(ViewPortManager.class); + ViewPort mainViewPort = vpm.getMainSceneViewPort(); + if(!debugCam){ + Camera cam = mainViewPort.getCamera(); + Vector3f camDir = cam.getDirection().clone().multLocal(0.1f); + Vector3f camLeft = cam.getLeft().clone().multLocal(0.1f); + camDir.y = 0; + camLeft.y = 0; + walkDirection.set(0, 0, 0); + if (left) { + walkDirection.addLocal(camLeft); + } + if (right) { + walkDirection.addLocal(camLeft.negate()); + } + if (up) { + walkDirection.addLocal(camDir); + } + if (down) { + walkDirection.addLocal(camDir.negate()); + } + if (jump){ + characterControl.jump(); + } + characterControl.setWalkDirection(walkDirection); + } + + if (!debugCam) { + mainViewPort.getCamera().setLocation(characterControl.getPhysicsLocation()); + mainViewPort.getCamera().getLocation().y -= 0.5f; + mainViewPort.getCamera().lookAtDirection(characterControl.getViewDirection(), Vector3f.UNIT_Y); + } + } + + + public boolean isOnGround(){ + return characterControl.onGround(); + } + + public boolean isWalking(){ + return walkDirection.lengthSquared() > 0; + } + + @Override + public void onMouseMotionEvent(ComponentManager mng, MouseMotionEvent evt) { + float sensitivity = 0.0005f; + + + // Update rotation angles + currentYaw += -(float)evt.getDX() * sensitivity; + currentPitch += -(float)evt.getDY() * sensitivity; + + // Limit pitch to prevent flipping + currentPitch = FastMath.clamp(currentPitch, -MAX_PITCH, MAX_PITCH); + + // Create rotation quaternion from yaw angle (horizontal only) + Quaternion rotation = new Quaternion(); + rotation.fromAngles(currentPitch, currentYaw, 0); + + // Set character direction based on yaw only (horizontal movement) + Vector3f viewDir = new Vector3f(0, 0, 1); // Forward vector + viewDir = rotation.mult(viewDir); + characterControl.setViewDirection(viewDir); + + } +} diff --git a/app/src/main/java/org/ngengine/demo/adc/HudComponent.java b/app/src/main/java/org/ngengine/demo/adc/HudComponent.java new file mode 100644 index 0000000..0e332ce --- /dev/null +++ b/app/src/main/java/org/ngengine/demo/adc/HudComponent.java @@ -0,0 +1,56 @@ +package org.ngengine.demo.adc; + +import org.ngengine.components.Component; +import org.ngengine.components.ComponentManager; +import org.ngengine.components.fragments.InputHandlerFragment; +import org.ngengine.gui.components.NLabel; +import org.ngengine.gui.win.NWindowManagerComponent; +import org.ngengine.gui.win.std.NHud; +import org.ngengine.runner.Runner; +import org.ngengine.store.DataStoreProvider; + +import com.jme3.input.KeyInput; +import com.jme3.input.event.KeyInputEvent; +import com.simsilica.lemur.HAlignment; +import com.simsilica.lemur.VAlignment; + +public class HudComponent implements Component, InputHandlerFragment { + private Runnable closeHud; + + @Override + public void onEnable(ComponentManager mng, Runner runner, DataStoreProvider dataStore, boolean firstTime, + Object arg) { + + mng.disableComponent(LoadingScreenComponent.class); + NWindowManagerComponent windowManager = mng.getComponent(NWindowManagerComponent.class); + + windowManager.showCursor(false); + + this.closeHud= windowManager.showWindow( + NHud.class, + (win, err) -> { + win.setFitContent(false); + win.setFullscreen(true); + NLabel crossair = new NLabel("+"); + crossair.setTextVAlignment(VAlignment.Center); + crossair.setTextHAlignment(HAlignment.Center); + win.getCenter().addChild(crossair); + } + ); + } + + @Override + public void onDisable(ComponentManager mng, Runner runner, DataStoreProvider dataStore) { + this.closeHud.run(); + } + + @Override + public void onKeyEvent(ComponentManager mng, KeyInputEvent evt) { + if(evt.getKeyCode() == KeyInput.KEY_E){ + if(evt.isPressed()){ + NWindowManagerComponent windowManager = mng.getComponent(NWindowManagerComponent.class); + windowManager.toastAction(0); + } + } + } +} diff --git a/app/src/main/java/org/ngengine/demo/adc/LoadingScreenComponent.java b/app/src/main/java/org/ngengine/demo/adc/LoadingScreenComponent.java new file mode 100644 index 0000000..0203514 --- /dev/null +++ b/app/src/main/java/org/ngengine/demo/adc/LoadingScreenComponent.java @@ -0,0 +1,67 @@ +package org.ngengine.demo.adc; + +import org.ngengine.components.Component; +import org.ngengine.components.ComponentManager; +import org.ngengine.components.fragments.InputHandlerFragment; +import org.ngengine.components.fragments.LogicFragment; +import org.ngengine.gui.components.NLabel; +import org.ngengine.gui.win.NWindowManagerComponent; +import org.ngengine.gui.win.std.NHud; +import org.ngengine.runner.Runner; +import org.ngengine.store.DataStoreProvider; + +import com.jme3.input.KeyInput; +import com.jme3.input.event.KeyInputEvent; +import com.simsilica.lemur.HAlignment; +import com.simsilica.lemur.VAlignment; + +public class LoadingScreenComponent implements Component, LogicFragment { + private Runnable closeHud; + private NLabel txt; + @Override + public void onEnable(ComponentManager mng, Runner runner, DataStoreProvider dataStore, boolean firstTime, + Object arg) { + + mng.disableComponent(LoadingScreenComponent.class); + NWindowManagerComponent windowManager = mng.getComponent(NWindowManagerComponent.class); + + windowManager.showCursor(false); + + txt = new NLabel("Loading"); + + this.closeHud= windowManager.showWindow( + NHud.class, + (win, err) -> { + win.setFitContent(false); + win.setFullscreen(true); + txt.setFontSize(32); + txt.setTextVAlignment(VAlignment.Center); + txt.setTextHAlignment(HAlignment.Center); + win.getCenter().addChild(txt); + } + ); + } + + @Override + public void onDisable(ComponentManager mng, Runner runner, DataStoreProvider dataStore) { + this.closeHud.run(); + } + + float time = 0; + + @Override + public void updateAppLogic(ComponentManager mng, float tpf) { + time += tpf; + if(txt!=null&&time>1f){ + time=0; + txt.setText(txt.getText()+"."); + System.out.println(txt.getText()); + if(txt.getText().length()>15){ + txt.setText("Loading"); + } + } + } + + + +} diff --git a/app/src/main/java/org/ngengine/demo/adc/MapComponent.java b/app/src/main/java/org/ngengine/demo/adc/MapComponent.java new file mode 100644 index 0000000..2e6e55e --- /dev/null +++ b/app/src/main/java/org/ngengine/demo/adc/MapComponent.java @@ -0,0 +1,134 @@ +package org.ngengine.demo.adc; + +import java.io.IOException; +import java.util.function.Consumer; + +import org.ngengine.AsyncAssetManager; +import org.ngengine.ViewPortManager; +import org.ngengine.ads.ImmersiveAdComponent; +import org.ngengine.ads.ImmersiveAdControl; +import org.ngengine.components.Component; +import org.ngengine.components.ComponentManager; +import org.ngengine.components.fragments.AsyncAssetLoadingFragment; +import org.ngengine.components.fragments.MainViewPortFragment; +import org.ngengine.runner.Runner; +import org.ngengine.store.DataStore; +import org.ngengine.store.DataStoreProvider; + +import com.jme3.asset.TextureKey; +import com.jme3.bullet.collision.shapes.CollisionShape; +import com.jme3.bullet.control.RigidBodyControl; +import com.jme3.bullet.util.CollisionShapeFactory; +import com.jme3.environment.EnvironmentProbeControl; +import com.jme3.math.FastMath; +import com.jme3.math.Quaternion; +import com.jme3.math.Vector3f; +import com.jme3.renderer.ViewPort; +import com.jme3.scene.Node; +import com.jme3.scene.Spatial; +import com.jme3.scene.Spatial.CullHint; +import com.jme3.texture.Texture; +import com.jme3.util.SkyFactory; + +public class MapComponent implements Component, AsyncAssetLoadingFragment { + private Spatial map; + private Spatial sky; + + + + + @Override + public void loadAssetsAsync(ComponentManager mng, AsyncAssetManager assetManager, DataStore cache, Consumer preload) { + try{ + // String cacheEntry = "adc/city000"; + // try{ + // if(cache.exists(cacheEntry)){ + // map = (Spatial)cache.read(cacheEntry); + // } + // } catch(Exception e){ + // } + + if(map==null){ + System.out.println("AdCity: Loading map from assets..."); + map = assetManager.loadModel("adc/city/city.gltf"); + PhysicsComponent physics = mng.getComponent(PhysicsComponent.class); + map.depthFirstTraversal(sx->{ + Object worldGuard = sx.getUserData("nge.worldguard"); + if(worldGuard!=null){ + sx.setCullHint(CullHint.Always); + physics.createStaticRigidBody(sx); + System.out.println("AdCity: Added worldguard collision to "+sx.getName()); + } + }); + + // try { + // cache.write(cacheEntry, map); + // } catch (IOException e) { + // e.printStackTrace(); + // } + } else { + System.out.println("AdCity: Map loaded from cache."); + } + + TextureKey key = new TextureKey("adc/night-sky.png", true); + key.setGenerateMips(false); + Texture skyTextyre = assetManager.loadTexture(key); + + sky = SkyFactory.createSky(assetManager, skyTextyre, SkyFactory.EnvMapType.EquirectMap); + sky.setLocalRotation(new Quaternion().fromAngleAxis(FastMath.PI, Vector3f.UNIT_Y)); + EnvironmentProbeControl.tagGlobal(sky); + + preload.accept(map); + preload.accept(sky); + } catch(Exception e){ + e.printStackTrace(); + System.exit(1); + } + } + + @Override + public void onEnable(ComponentManager mng, Runner runner, DataStoreProvider dataStore, boolean firstTime, + Object arg) { + PhysicsComponent physics = mng.getComponent(PhysicsComponent.class); + physics.addAll(map); + + ViewPortManager vpm = mng.getGlobalInstance(ViewPortManager.class); + ViewPort mainViewPort = vpm.getMainSceneViewPort(); + AsyncAssetManager assetManager = mng.getGlobalInstance(AsyncAssetManager.class); + + + Node rootNode = vpm.getRootNode(mainViewPort); + rootNode.attachChild(map); + rootNode.attachChild(sky); + + int resolution = 128; + rootNode.addControl(new EnvironmentProbeControl(assetManager, resolution)); + + ImmersiveAdControl adControl = map.getControl(ImmersiveAdControl.class); + if(adControl==null){ + adControl = new ImmersiveAdControl(assetManager); + map.addControl(adControl); + mng.getComponent(ImmersiveAdComponent.class).register(adControl); + } + + System.out.println("Map ready"); + + } + + @Override + public void onDisable(ComponentManager mng, Runner runner, DataStoreProvider dataStore) { + PhysicsComponent physics = mng.getComponent(PhysicsComponent.class); + physics.removeAll(map); + + ImmersiveAdControl adControl = map.getControl(ImmersiveAdControl.class); + if(adControl!=null){ + mng.getComponent(ImmersiveAdComponent.class).unregister(adControl); + } + + map.removeFromParent(); + + sky.removeFromParent(); + + } + +} diff --git a/app/src/main/java/org/ngengine/demo/adc/PhysicsComponent.java b/app/src/main/java/org/ngengine/demo/adc/PhysicsComponent.java new file mode 100644 index 0000000..d340ac2 --- /dev/null +++ b/app/src/main/java/org/ngengine/demo/adc/PhysicsComponent.java @@ -0,0 +1,70 @@ +package org.ngengine.demo.adc; + +import org.ngengine.ViewPortManager; +import org.ngengine.components.Component; +import org.ngengine.components.ComponentManager; +import org.ngengine.components.fragments.AppFragment; +import org.ngengine.runner.Runner; +import org.ngengine.store.DataStoreProvider; + +import com.jme3.app.Application; +import com.jme3.app.state.AppStateManager; +import com.jme3.bullet.BulletAppState; +import com.jme3.bullet.BulletAppState.ThreadingType; +import com.jme3.bullet.collision.shapes.CapsuleCollisionShape; +import com.jme3.bullet.collision.shapes.CollisionShape; +import com.jme3.bullet.control.CharacterControl; +import com.jme3.bullet.control.RigidBodyControl; +import com.jme3.bullet.util.CollisionShapeFactory; +import com.jme3.renderer.ViewPort; +import com.jme3.scene.Node; +import com.jme3.scene.Spatial; + +public class PhysicsComponent implements Component{ + private BulletAppState physics; + + + + + @Override + public void onEnable(ComponentManager mng, Runner runner, DataStoreProvider dataStore, boolean firstTime, + Object arg) { + physics = new BulletAppState(); + physics.setThreadingType(ThreadingType.PARALLEL); + AppStateManager stateManager=mng.getGlobalInstance(AppStateManager.class); + stateManager.attach(physics); + System.out.println("Physics ready"); + + } + + public RigidBodyControl createStaticRigidBody(Spatial sx){ + CollisionShape shp = CollisionShapeFactory.createDynamicMeshShape(sx); + RigidBodyControl rb = new RigidBodyControl(shp, 0); + rb.setFriction(1f); + sx.addControl(rb); + return rb; + } + + public CharacterControl createCharacterControl(Node player){ + CharacterControl characterControl = new CharacterControl(new CapsuleCollisionShape(1.5f, 0.8f), .1f); + player.addControl(characterControl); + return characterControl; + } + + public void addAll(Spatial v){ + physics.getPhysicsSpace().addAll(v); + } + + public void removeAll(Spatial v){ + physics.getPhysicsSpace().removeAll(v); + } + + + + @Override + public void onDisable(ComponentManager mng, Runner runner, DataStoreProvider dataStore) { + AppStateManager stateManager = mng.getGlobalInstance(AppStateManager.class); + stateManager.detach(physics); + } + +} diff --git a/app/src/main/java/org/ngengine/demo/adc/PostprocessingComponent.java b/app/src/main/java/org/ngengine/demo/adc/PostprocessingComponent.java new file mode 100644 index 0000000..b19f304 --- /dev/null +++ b/app/src/main/java/org/ngengine/demo/adc/PostprocessingComponent.java @@ -0,0 +1,114 @@ +package org.ngengine.demo.adc; + +import java.util.function.Consumer; + +import javax.swing.text.View; + +import org.ngengine.ViewPortManager; +import org.ngengine.components.Component; +import org.ngengine.components.ComponentManager; +import org.ngengine.components.fragments.AssetLoadingFragment; +import org.ngengine.components.fragments.LogicFragment; +import org.ngengine.components.fragments.MainViewPortFragment; +import org.ngengine.runner.Runner; +import org.ngengine.store.DataStore; +import org.ngengine.store.DataStoreProvider; + +import com.jme3.asset.AssetManager; +import com.jme3.math.ColorRGBA; +import com.jme3.math.Vector3f; +import com.jme3.post.FilterPostProcessor; +import com.jme3.post.filters.BloomFilter; +import com.jme3.post.filters.FXAAFilter; +import com.jme3.post.filters.FogFilter; +import com.jme3.post.filters.KHRToneMapFilter; +import com.jme3.post.ssao.SSAOFilter; +import com.jme3.renderer.ViewPort; +import com.jme3.texture.Image.Format; + +public class PostprocessingComponent implements Component, LogicFragment { + private FilterPostProcessor fpp; + + + + + FogFilter fog; + SSAOFilter ssaoFilter; + BloomFilter bloom; + KHRToneMapFilter tonemap; + + @Override + public void onEnable(ComponentManager mng, Runner runner, DataStoreProvider dataStore, boolean firstTime, + Object arg) { + + ViewPortManager vpm = mng.getGlobalInstance(ViewPortManager.class); + ViewPort mainViewPort = vpm.getMainSceneViewPort(); + AssetManager assetManager = mng.getGlobalInstance(AssetManager.class); + + fpp = new FilterPostProcessor(assetManager); + fpp.setFrameBufferDepthFormat(Format.Depth24Stencil8); + fpp.setNumSamples(2); + mainViewPort.addProcessor(fpp); + + ssaoFilter = new SSAOFilter(2.9299974f, 25f, 5.8100376f, 0.091000035f); + ssaoFilter.setScale(0.6f); + ssaoFilter.setBias(0.79f); + ssaoFilter.setApproximateNormals(false); + ssaoFilter.setSampleRadius(0.8f); + ssaoFilter.setIntensity(63f); + + fpp.addFilter(ssaoFilter); + + fog = new FogFilter(); + fog.setFogDistance(211f); + fog.setFogDensity(0.4f); + fog.setFogColor(new ColorRGBA(15.0f / 255.0f, 0.0f, 110f / 255.0f, 1f)); + fpp.addFilter(fog); + + + + tonemap = new KHRToneMapFilter(); + tonemap.setGamma(new Vector3f(0.9f,0.9f,0.9f)); + tonemap.setExposure(new Vector3f(0.7f,0.6f,0.8f)); + fpp.addFilter(tonemap); + + bloom=new BloomFilter(); + bloom.setDownSamplingFactor(2); + bloom.setBlurScale(1.17f); + bloom.setExposurePower(3.30f); + bloom.setExposureCutOff(0.2f); + bloom.setBloomIntensity(2.45f); + + fpp.addFilter(bloom); + + bloom.setBlurScale(1.f); + bloom.setDownSamplingFactor(2); + fog.setFogDensity(0.8f); + bloom.setBloomIntensity(0.12f); + tonemap.setExposure(new Vector3f(1.4f, 1f, 1f)); + bloom.setBloomIntensity(0.52f); + + FXAAFilter fxaa = new FXAAFilter(); + fpp.addFilter(fxaa); + + fog.setFogDensity(0.8f); + tonemap.setExposure(new Vector3f(1.1f, 1.1f, 1f)); + } + + + @Override + public void onDisable(ComponentManager mng, Runner runner, DataStoreProvider dataStore) { + ViewPortManager vpm = mng.getGlobalInstance(ViewPortManager.class); + ViewPort mainViewPort = vpm.getMainSceneViewPort(); + mainViewPort.removeProcessor(fpp); + } + + @Override + public void updateAppLogic(ComponentManager mng, float tpf) { + + + } + + + +} diff --git a/app/src/main/java/org/ngengine/demo/adc/SoundComponent.java b/app/src/main/java/org/ngengine/demo/adc/SoundComponent.java new file mode 100644 index 0000000..1bd3cf6 --- /dev/null +++ b/app/src/main/java/org/ngengine/demo/adc/SoundComponent.java @@ -0,0 +1,115 @@ +package org.ngengine.demo.adc; + +import java.util.function.Consumer; + +import org.ngengine.AsyncAssetManager; +import org.ngengine.ViewPortManager; +import org.ngengine.components.Component; +import org.ngengine.components.ComponentManager; +import org.ngengine.components.fragments.AsyncAssetLoadingFragment; +import org.ngengine.components.fragments.InputHandlerFragment; +import org.ngengine.components.fragments.LogicFragment; +import org.ngengine.components.fragments.MainViewPortFragment; +import org.ngengine.components.fragments.RenderFragment; +import org.ngengine.runner.Runner; +import org.ngengine.store.DataStore; +import org.ngengine.store.DataStoreProvider; + +import com.jme3.audio.AudioData; +import com.jme3.audio.AudioKey; +import com.jme3.audio.AudioNode; +import com.jme3.input.KeyInput; +import com.jme3.input.event.KeyInputEvent; +import com.jme3.math.FastMath; +import com.jme3.renderer.ViewPort; +import com.jme3.scene.Node; + +public class SoundComponent implements Component, LogicFragment, AsyncAssetLoadingFragment, InputHandlerFragment { + + private AudioNode backgroundMusic; + private AudioNode footstepSound; + private AudioNode jumpSound; + private float lastFootstepTime = 0f; + + @Override + public void loadAssetsAsync(ComponentManager mng, AsyncAssetManager assetManager, DataStore cache, Consumer preload) { + + + AudioKey audioKey = new AudioKey("adc/e.q._city.ogg", false, false); + AudioData audioData = assetManager.loadAudio(audioKey); + backgroundMusic = new AudioNode(audioData, audioKey); + backgroundMusic.setLooping(true); + backgroundMusic.setPositional(false); + backgroundMusic.setVolume(0.4f); + + AudioKey footstepKey = new AudioKey("adc/footstep.ogg", false, false); + AudioData footstepData = assetManager.loadAudio(footstepKey); + footstepSound = new AudioNode(footstepData, footstepKey); + footstepSound.setLooping(false); + footstepSound.setPositional(false); + footstepSound.setVolume(0.5f); + + + AudioKey jumpKey = new AudioKey("adc/jump.ogg", false, false); + AudioData jumpData = assetManager.loadAudio(jumpKey); + jumpSound = new AudioNode(jumpData, jumpKey); + jumpSound.setLooping(false); + jumpSound.setPositional(false); + jumpSound.setVolume(0.5f); + + + } + + + + @Override + public void onEnable(ComponentManager mng, Runner runner, DataStoreProvider dataStore, boolean firstTime, + Object arg) { + + ViewPortManager vpm = mng.getGlobalInstance(ViewPortManager.class); + ViewPort mainViewPort = vpm.getMainSceneViewPort(); + Node rootNode = vpm.getRootNode(mainViewPort); + rootNode.attachChild(backgroundMusic); + backgroundMusic.play(); + + rootNode.attachChild(footstepSound); + rootNode.attachChild(jumpSound); + } + + @Override + public void onDisable(ComponentManager mng, Runner runner, DataStoreProvider dataStore) { + backgroundMusic.removeFromParent(); + backgroundMusic.stop(); + footstepSound.removeFromParent(); + jumpSound.removeFromParent(); + + } + + @Override + public void onKeyEvent(ComponentManager mng, KeyInputEvent evt) { + CharacterComponent character = mng.getComponent(CharacterComponent.class); + + if(character !=null && evt.getKeyCode() == KeyInput.KEY_SPACE && evt.isPressed() && character.isOnGround()){ + jumpSound.playInstance(); + } + } + + @Override + + public void updateAppLogic(ComponentManager mng, float tpf){ + CharacterComponent character = mng.getComponent(CharacterComponent.class); + + if (character != null && character.isWalking() && character.isOnGround()) { + lastFootstepTime += tpf; + if (lastFootstepTime > 0.3f) { + footstepSound.setPitch(1f - FastMath.nextRandomFloat() * 0.1f); + footstepSound.setVolume(0.3f - FastMath.nextRandomFloat() * 0.1f); + footstepSound.playInstance(); + lastFootstepTime = 0f; + } + } + } + + + +} diff --git a/app/src/main/resources/Sky/citrus_orchard_puresky_4k.hdr b/app/src/main/resources/Sky/citrus_orchard_puresky_4k.hdr deleted file mode 100644 index 9be6122..0000000 Binary files a/app/src/main/resources/Sky/citrus_orchard_puresky_4k.hdr and /dev/null differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_AirCon_basecolor.jpg b/app/src/main/resources/adc/city/KB3D_NEC_AirCon_basecolor.jpg new file mode 100644 index 0000000..ffd9278 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_AirCon_basecolor.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_AirCon_metallic-KB3D_NEC_AirCon_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_AirCon_metallic-KB3D_NEC_AirCon_roughness.jpg new file mode 100644 index 0000000..d8ae66d Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_AirCon_metallic-KB3D_NEC_AirCon_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_AirCon_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_AirCon_normal.jpg new file mode 100644 index 0000000..35ad925 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_AirCon_normal.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_AsphaltHexagonRoof_basecolor.jpg b/app/src/main/resources/adc/city/KB3D_NEC_AsphaltHexagonRoof_basecolor.jpg new file mode 100644 index 0000000..f96c967 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_AsphaltHexagonRoof_basecolor.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_AsphaltHexagonRoof_metallic-KB3D_NEC_AsphaltHexagonRoof_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_AsphaltHexagonRoof_metallic-KB3D_NEC_AsphaltHexagonRoof_roughness.jpg new file mode 100644 index 0000000..91f74f2 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_AsphaltHexagonRoof_metallic-KB3D_NEC_AsphaltHexagonRoof_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_AsphaltHexagonRoof_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_AsphaltHexagonRoof_normal.jpg new file mode 100644 index 0000000..17029e7 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_AsphaltHexagonRoof_normal.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_BannerA_basecolor.jpg b/app/src/main/resources/adc/city/KB3D_NEC_BannerA_basecolor.jpg new file mode 100644 index 0000000..3acf6ca Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_BannerA_basecolor.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_BannerA_metallic-KB3D_NEC_BannerA_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_BannerA_metallic-KB3D_NEC_BannerA_roughness.jpg new file mode 100644 index 0000000..a4d3ed7 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_BannerA_metallic-KB3D_NEC_BannerA_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_BannerA_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_BannerA_normal.jpg new file mode 100644 index 0000000..d1bc546 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_BannerA_normal.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_BlackCloth_basecolor.jpg b/app/src/main/resources/adc/city/KB3D_NEC_BlackCloth_basecolor.jpg new file mode 100644 index 0000000..cca21fa Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_BlackCloth_basecolor.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_BlackCloth_metallic-KB3D_NEC_BlackCloth_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_BlackCloth_metallic-KB3D_NEC_BlackCloth_roughness.jpg new file mode 100644 index 0000000..a9c60eb Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_BlackCloth_metallic-KB3D_NEC_BlackCloth_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_BlackCloth_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_BlackCloth_normal.jpg new file mode 100644 index 0000000..8058dfa Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_BlackCloth_normal.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_Brass_basecolor.jpg b/app/src/main/resources/adc/city/KB3D_NEC_Brass_basecolor.jpg new file mode 100644 index 0000000..85e6d1b Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_Brass_basecolor.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_Brass_metallic-KB3D_NEC_Brass_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_Brass_metallic-KB3D_NEC_Brass_roughness.jpg new file mode 100644 index 0000000..ecf71bb Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_Brass_metallic-KB3D_NEC_Brass_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_Brass_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_Brass_normal.jpg new file mode 100644 index 0000000..2f1fb90 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_Brass_normal.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_Cardboard_basecolor.jpg b/app/src/main/resources/adc/city/KB3D_NEC_Cardboard_basecolor.jpg new file mode 100644 index 0000000..8fbc4d8 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_Cardboard_basecolor.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_Cardboard_metallic-KB3D_NEC_Cardboard_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_Cardboard_metallic-KB3D_NEC_Cardboard_roughness.jpg new file mode 100644 index 0000000..ce15ac5 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_Cardboard_metallic-KB3D_NEC_Cardboard_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_Cardboard_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_Cardboard_normal.jpg new file mode 100644 index 0000000..843f558 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_Cardboard_normal.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_ConcreteA_basecolor.jpg b/app/src/main/resources/adc/city/KB3D_NEC_ConcreteA_basecolor.jpg new file mode 100644 index 0000000..e1f6f5e Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_ConcreteA_basecolor.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_ConcreteA_metallic-KB3D_NEC_ConcreteA_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_ConcreteA_metallic-KB3D_NEC_ConcreteA_roughness.jpg new file mode 100644 index 0000000..0c86216 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_ConcreteA_metallic-KB3D_NEC_ConcreteA_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_ConcreteA_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_ConcreteA_normal.jpg new file mode 100644 index 0000000..e952f92 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_ConcreteA_normal.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_ConcreteAccent_basecolor.jpg b/app/src/main/resources/adc/city/KB3D_NEC_ConcreteAccent_basecolor.jpg new file mode 100644 index 0000000..cfb2baf Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_ConcreteAccent_basecolor.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_ConcreteAccent_metallic-KB3D_NEC_ConcreteAccent_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_ConcreteAccent_metallic-KB3D_NEC_ConcreteAccent_roughness.jpg new file mode 100644 index 0000000..5563e55 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_ConcreteAccent_metallic-KB3D_NEC_ConcreteAccent_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_ConcreteAccent_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_ConcreteAccent_normal.jpg new file mode 100644 index 0000000..5e96d08 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_ConcreteAccent_normal.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_ConcreteB_basecolor.jpg b/app/src/main/resources/adc/city/KB3D_NEC_ConcreteB_basecolor.jpg new file mode 100644 index 0000000..46e4209 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_ConcreteB_basecolor.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_ConcreteB_metallic-KB3D_NEC_ConcreteB_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_ConcreteB_metallic-KB3D_NEC_ConcreteB_roughness.jpg new file mode 100644 index 0000000..117ae94 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_ConcreteB_metallic-KB3D_NEC_ConcreteB_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_ConcreteB_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_ConcreteB_normal.jpg new file mode 100644 index 0000000..f2921cd Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_ConcreteB_normal.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_ConcreteTiles_basecolor.jpg b/app/src/main/resources/adc/city/KB3D_NEC_ConcreteTiles_basecolor.jpg new file mode 100644 index 0000000..2cbcf72 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_ConcreteTiles_basecolor.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_ConcreteTiles_metallic-KB3D_NEC_ConcreteTiles_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_ConcreteTiles_metallic-KB3D_NEC_ConcreteTiles_roughness.jpg new file mode 100644 index 0000000..b956d49 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_ConcreteTiles_metallic-KB3D_NEC_ConcreteTiles_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_ConcreteTiles_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_ConcreteTiles_normal.jpg new file mode 100644 index 0000000..f4bb9b2 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_ConcreteTiles_normal.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_ConcreteWall_basecolor.jpg b/app/src/main/resources/adc/city/KB3D_NEC_ConcreteWall_basecolor.jpg new file mode 100644 index 0000000..d4f9095 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_ConcreteWall_basecolor.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_ConcreteWall_metallic-KB3D_NEC_ConcreteWall_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_ConcreteWall_metallic-KB3D_NEC_ConcreteWall_roughness.jpg new file mode 100644 index 0000000..f053c2b Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_ConcreteWall_metallic-KB3D_NEC_ConcreteWall_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_ConcreteWall_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_ConcreteWall_normal.jpg new file mode 100644 index 0000000..998f767 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_ConcreteWall_normal.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_Concrete_basecolor.jpg b/app/src/main/resources/adc/city/KB3D_NEC_Concrete_basecolor.jpg new file mode 100644 index 0000000..d362e48 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_Concrete_basecolor.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_Concrete_metallic-KB3D_NEC_Concrete_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_Concrete_metallic-KB3D_NEC_Concrete_roughness.jpg new file mode 100644 index 0000000..b5b4d15 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_Concrete_metallic-KB3D_NEC_Concrete_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_Concrete_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_Concrete_normal.jpg new file mode 100644 index 0000000..ef14184 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_Concrete_normal.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_DarkPanels_basecolor.jpg b/app/src/main/resources/adc/city/KB3D_NEC_DarkPanels_basecolor.jpg new file mode 100644 index 0000000..4f9abd5 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_DarkPanels_basecolor.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_DarkPanels_metallic-KB3D_NEC_DarkPanels_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_DarkPanels_metallic-KB3D_NEC_DarkPanels_roughness.jpg new file mode 100644 index 0000000..e9863a3 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_DarkPanels_metallic-KB3D_NEC_DarkPanels_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_DarkPanels_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_DarkPanels_normal.jpg new file mode 100644 index 0000000..0e2936e Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_DarkPanels_normal.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_DecalSheet_basecolor-KB3D_NEC_DecalSheet_opacity.png b/app/src/main/resources/adc/city/KB3D_NEC_DecalSheet_basecolor-KB3D_NEC_DecalSheet_opacity.png new file mode 100644 index 0000000..c849dec Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_DecalSheet_basecolor-KB3D_NEC_DecalSheet_opacity.png differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_DecalSheet_metallic-KB3D_NEC_DecalSheet_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_DecalSheet_metallic-KB3D_NEC_DecalSheet_roughness.jpg new file mode 100644 index 0000000..f07b339 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_DecalSheet_metallic-KB3D_NEC_DecalSheet_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_DecalSheet_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_DecalSheet_normal.jpg new file mode 100644 index 0000000..f43616a Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_DecalSheet_normal.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_DecorConcreteB_basecolor.jpg b/app/src/main/resources/adc/city/KB3D_NEC_DecorConcreteB_basecolor.jpg new file mode 100644 index 0000000..f826f38 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_DecorConcreteB_basecolor.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_DecorConcreteB_metallic-KB3D_NEC_DecorConcreteB_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_DecorConcreteB_metallic-KB3D_NEC_DecorConcreteB_roughness.jpg new file mode 100644 index 0000000..22af917 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_DecorConcreteB_metallic-KB3D_NEC_DecorConcreteB_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_DecorConcreteB_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_DecorConcreteB_normal.jpg new file mode 100644 index 0000000..f9cdc07 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_DecorConcreteB_normal.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_DecorConcreteCBeige_basecolor.jpg b/app/src/main/resources/adc/city/KB3D_NEC_DecorConcreteCBeige_basecolor.jpg new file mode 100644 index 0000000..6db3bad Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_DecorConcreteCBeige_basecolor.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_DecorConcreteCBeige_metallic-KB3D_NEC_DecorConcreteCBeige_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_DecorConcreteCBeige_metallic-KB3D_NEC_DecorConcreteCBeige_roughness.jpg new file mode 100644 index 0000000..cf5be4d Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_DecorConcreteCBeige_metallic-KB3D_NEC_DecorConcreteCBeige_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_DecorConcreteCBeige_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_DecorConcreteCBeige_normal.jpg new file mode 100644 index 0000000..843461b Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_DecorConcreteCBeige_normal.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_DecorConcreteCWhite_basecolor.jpg b/app/src/main/resources/adc/city/KB3D_NEC_DecorConcreteCWhite_basecolor.jpg new file mode 100644 index 0000000..701b2e8 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_DecorConcreteCWhite_basecolor.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_DecorConcreteCWhite_metallic-KB3D_NEC_DecorConcreteCWhite_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_DecorConcreteCWhite_metallic-KB3D_NEC_DecorConcreteCWhite_roughness.jpg new file mode 100644 index 0000000..2296c6f Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_DecorConcreteCWhite_metallic-KB3D_NEC_DecorConcreteCWhite_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_DecorConcreteCWhite_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_DecorConcreteCWhite_normal.jpg new file mode 100644 index 0000000..f52f738 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_DecorConcreteCWhite_normal.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_GalvanizedSteelDirt_basecolor.jpg b/app/src/main/resources/adc/city/KB3D_NEC_GalvanizedSteelDirt_basecolor.jpg new file mode 100644 index 0000000..d87bec8 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_GalvanizedSteelDirt_basecolor.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_GalvanizedSteelDirt_metallic-KB3D_NEC_GalvanizedSteelDirt_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_GalvanizedSteelDirt_metallic-KB3D_NEC_GalvanizedSteelDirt_roughness.jpg new file mode 100644 index 0000000..159b5ea Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_GalvanizedSteelDirt_metallic-KB3D_NEC_GalvanizedSteelDirt_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_GalvanizedSteelDirt_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_GalvanizedSteelDirt_normal.jpg new file mode 100644 index 0000000..d172108 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_GalvanizedSteelDirt_normal.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_GalvanizedSteel_basecolor.jpg b/app/src/main/resources/adc/city/KB3D_NEC_GalvanizedSteel_basecolor.jpg new file mode 100644 index 0000000..4266af6 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_GalvanizedSteel_basecolor.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_GalvanizedSteel_metallic-KB3D_NEC_GalvanizedSteel_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_GalvanizedSteel_metallic-KB3D_NEC_GalvanizedSteel_roughness.jpg new file mode 100644 index 0000000..b1417b9 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_GalvanizedSteel_metallic-KB3D_NEC_GalvanizedSteel_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_GalvanizedSteel_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_GalvanizedSteel_normal.jpg new file mode 100644 index 0000000..cd38795 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_GalvanizedSteel_normal.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_GlassBlack_basecolor.jpg b/app/src/main/resources/adc/city/KB3D_NEC_GlassBlack_basecolor.jpg new file mode 100644 index 0000000..4298c61 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_GlassBlack_basecolor.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_GlassBlack_metallic-KB3D_NEC_GlassBlack_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_GlassBlack_metallic-KB3D_NEC_GlassBlack_roughness.jpg new file mode 100644 index 0000000..22c9b92 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_GlassBlack_metallic-KB3D_NEC_GlassBlack_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_GlassBlack_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_GlassBlack_normal.jpg new file mode 100644 index 0000000..881d588 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_GlassBlack_normal.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_GlassBottle_basecolor.jpg b/app/src/main/resources/adc/city/KB3D_NEC_GlassBottle_basecolor.jpg new file mode 100644 index 0000000..16cde9d Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_GlassBottle_basecolor.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_GlassBottle_metallic-KB3D_NEC_GlassBottle_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_GlassBottle_metallic-KB3D_NEC_GlassBottle_roughness.jpg new file mode 100644 index 0000000..22c9b92 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_GlassBottle_metallic-KB3D_NEC_GlassBottle_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_GlassBottle_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_GlassBottle_normal.jpg new file mode 100644 index 0000000..881d588 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_GlassBottle_normal.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_GlassLamps_basecolor.jpg b/app/src/main/resources/adc/city/KB3D_NEC_GlassLamps_basecolor.jpg new file mode 100644 index 0000000..d879bf4 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_GlassLamps_basecolor.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_GlassLamps_metallic-KB3D_NEC_GlassLamps_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_GlassLamps_metallic-KB3D_NEC_GlassLamps_roughness.jpg new file mode 100644 index 0000000..03366db Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_GlassLamps_metallic-KB3D_NEC_GlassLamps_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_GlassLamps_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_GlassLamps_normal.jpg new file mode 100644 index 0000000..a8df27f Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_GlassLamps_normal.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_GlassTinted_basecolor.jpg b/app/src/main/resources/adc/city/KB3D_NEC_GlassTinted_basecolor.jpg new file mode 100644 index 0000000..f928424 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_GlassTinted_basecolor.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_GlassTinted_metallic-KB3D_NEC_GlassTinted_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_GlassTinted_metallic-KB3D_NEC_GlassTinted_roughness.jpg new file mode 100644 index 0000000..8bcf6d1 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_GlassTinted_metallic-KB3D_NEC_GlassTinted_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_GlassTinted_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_GlassTinted_normal.jpg new file mode 100644 index 0000000..f43616a Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_GlassTinted_normal.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_LeavesBush_basecolor.jpg b/app/src/main/resources/adc/city/KB3D_NEC_LeavesBush_basecolor.jpg new file mode 100644 index 0000000..73fb89f Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_LeavesBush_basecolor.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_LeavesBush_metallic-KB3D_NEC_LeavesBush_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_LeavesBush_metallic-KB3D_NEC_LeavesBush_roughness.jpg new file mode 100644 index 0000000..943fbd7 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_LeavesBush_metallic-KB3D_NEC_LeavesBush_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_LeavesBush_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_LeavesBush_normal.jpg new file mode 100644 index 0000000..741acaf Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_LeavesBush_normal.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_Letters_basecolor.jpg b/app/src/main/resources/adc/city/KB3D_NEC_Letters_basecolor.jpg new file mode 100644 index 0000000..6fdb09b Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_Letters_basecolor.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_Letters_metallic-KB3D_NEC_Letters_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_Letters_metallic-KB3D_NEC_Letters_roughness.jpg new file mode 100644 index 0000000..fbfe9b0 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_Letters_metallic-KB3D_NEC_Letters_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_Letters_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_Letters_normal.jpg new file mode 100644 index 0000000..b50b003 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_Letters_normal.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_LightBlue_basecolor.jpg b/app/src/main/resources/adc/city/KB3D_NEC_LightBlue_basecolor.jpg new file mode 100644 index 0000000..3ee1f1d Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_LightBlue_basecolor.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_LightBlue_emissive.jpg b/app/src/main/resources/adc/city/KB3D_NEC_LightBlue_emissive.jpg new file mode 100644 index 0000000..3ee1f1d Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_LightBlue_emissive.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_LightBlue_metallic-KB3D_NEC_LightBlue_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_LightBlue_metallic-KB3D_NEC_LightBlue_roughness.jpg new file mode 100644 index 0000000..70646a2 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_LightBlue_metallic-KB3D_NEC_LightBlue_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_LightBlue_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_LightBlue_normal.jpg new file mode 100644 index 0000000..881d588 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_LightBlue_normal.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_LightRed_basecolor.jpg b/app/src/main/resources/adc/city/KB3D_NEC_LightRed_basecolor.jpg new file mode 100644 index 0000000..b146897 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_LightRed_basecolor.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_LightRed_emissive.jpg b/app/src/main/resources/adc/city/KB3D_NEC_LightRed_emissive.jpg new file mode 100644 index 0000000..b146897 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_LightRed_emissive.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_LightRed_metallic-KB3D_NEC_LightRed_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_LightRed_metallic-KB3D_NEC_LightRed_roughness.jpg new file mode 100644 index 0000000..70646a2 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_LightRed_metallic-KB3D_NEC_LightRed_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_LightRed_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_LightRed_normal.jpg new file mode 100644 index 0000000..f43616a Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_LightRed_normal.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_LightWhite_basecolor.jpg b/app/src/main/resources/adc/city/KB3D_NEC_LightWhite_basecolor.jpg new file mode 100644 index 0000000..c5956d9 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_LightWhite_basecolor.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_LightWhite_metallic-KB3D_NEC_LightWhite_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_LightWhite_metallic-KB3D_NEC_LightWhite_roughness.jpg new file mode 100644 index 0000000..70646a2 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_LightWhite_metallic-KB3D_NEC_LightWhite_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_LightWhite_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_LightWhite_normal.jpg new file mode 100644 index 0000000..881d588 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_LightWhite_normal.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_LightYellow_basecolor.jpg b/app/src/main/resources/adc/city/KB3D_NEC_LightYellow_basecolor.jpg new file mode 100644 index 0000000..11638ed Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_LightYellow_basecolor.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_LightYellow_metallic-KB3D_NEC_LightYellow_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_LightYellow_metallic-KB3D_NEC_LightYellow_roughness.jpg new file mode 100644 index 0000000..70646a2 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_LightYellow_metallic-KB3D_NEC_LightYellow_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_LightYellow_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_LightYellow_normal.jpg new file mode 100644 index 0000000..881d588 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_LightYellow_normal.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_LightsA_basecolor.jpg b/app/src/main/resources/adc/city/KB3D_NEC_LightsA_basecolor.jpg new file mode 100644 index 0000000..9d1fe77 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_LightsA_basecolor.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_LightsA_emissive.jpg b/app/src/main/resources/adc/city/KB3D_NEC_LightsA_emissive.jpg new file mode 100644 index 0000000..9d1fe77 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_LightsA_emissive.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_LightsA_metallic-KB3D_NEC_LightsA_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_LightsA_metallic-KB3D_NEC_LightsA_roughness.jpg new file mode 100644 index 0000000..21e95e1 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_LightsA_metallic-KB3D_NEC_LightsA_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_LightsA_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_LightsA_normal.jpg new file mode 100644 index 0000000..f43616a Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_LightsA_normal.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_MetalAccent_basecolor.jpg b/app/src/main/resources/adc/city/KB3D_NEC_MetalAccent_basecolor.jpg new file mode 100644 index 0000000..6028e0d Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_MetalAccent_basecolor.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_MetalAccent_metallic-KB3D_NEC_MetalAccent_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_MetalAccent_metallic-KB3D_NEC_MetalAccent_roughness.jpg new file mode 100644 index 0000000..577f525 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_MetalAccent_metallic-KB3D_NEC_MetalAccent_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_MetalAccent_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_MetalAccent_normal.jpg new file mode 100644 index 0000000..b5458d1 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_MetalAccent_normal.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_MetalDarkWorn_basecolor.jpg b/app/src/main/resources/adc/city/KB3D_NEC_MetalDarkWorn_basecolor.jpg new file mode 100644 index 0000000..3362822 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_MetalDarkWorn_basecolor.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_MetalDarkWorn_metallic-KB3D_NEC_MetalDarkWorn_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_MetalDarkWorn_metallic-KB3D_NEC_MetalDarkWorn_roughness.jpg new file mode 100644 index 0000000..88fc222 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_MetalDarkWorn_metallic-KB3D_NEC_MetalDarkWorn_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_MetalDarkWorn_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_MetalDarkWorn_normal.jpg new file mode 100644 index 0000000..a0e20d8 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_MetalDarkWorn_normal.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_MetalGrating_basecolor-KB3D_NEC_MetalGrating_opacity.png b/app/src/main/resources/adc/city/KB3D_NEC_MetalGrating_basecolor-KB3D_NEC_MetalGrating_opacity.png new file mode 100644 index 0000000..099763e Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_MetalGrating_basecolor-KB3D_NEC_MetalGrating_opacity.png differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_MetalGrating_metallic-KB3D_NEC_MetalGrating_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_MetalGrating_metallic-KB3D_NEC_MetalGrating_roughness.jpg new file mode 100644 index 0000000..c728957 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_MetalGrating_metallic-KB3D_NEC_MetalGrating_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_MetalGrating_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_MetalGrating_normal.jpg new file mode 100644 index 0000000..388c4df Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_MetalGrating_normal.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_MetalLightGreyWorn_basecolor.jpg b/app/src/main/resources/adc/city/KB3D_NEC_MetalLightGreyWorn_basecolor.jpg new file mode 100644 index 0000000..8526035 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_MetalLightGreyWorn_basecolor.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_MetalLightGreyWorn_metallic-KB3D_NEC_MetalLightGreyWorn_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_MetalLightGreyWorn_metallic-KB3D_NEC_MetalLightGreyWorn_roughness.jpg new file mode 100644 index 0000000..89393bd Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_MetalLightGreyWorn_metallic-KB3D_NEC_MetalLightGreyWorn_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_MetalLightGreyWorn_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_MetalLightGreyWorn_normal.jpg new file mode 100644 index 0000000..febb20e Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_MetalLightGreyWorn_normal.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_MetalPaintRed_basecolor.jpg b/app/src/main/resources/adc/city/KB3D_NEC_MetalPaintRed_basecolor.jpg new file mode 100644 index 0000000..945cebf Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_MetalPaintRed_basecolor.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_MetalPaintRed_metallic-KB3D_NEC_MetalPaintRed_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_MetalPaintRed_metallic-KB3D_NEC_MetalPaintRed_roughness.jpg new file mode 100644 index 0000000..561fc81 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_MetalPaintRed_metallic-KB3D_NEC_MetalPaintRed_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_MetalPaintRed_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_MetalPaintRed_normal.jpg new file mode 100644 index 0000000..6d85feb Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_MetalPaintRed_normal.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_MetalPaintWhiteWorn_basecolor.jpg b/app/src/main/resources/adc/city/KB3D_NEC_MetalPaintWhiteWorn_basecolor.jpg new file mode 100644 index 0000000..9f8eaac Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_MetalPaintWhiteWorn_basecolor.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_MetalPaintWhiteWorn_metallic-KB3D_NEC_MetalPaintWhiteWorn_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_MetalPaintWhiteWorn_metallic-KB3D_NEC_MetalPaintWhiteWorn_roughness.jpg new file mode 100644 index 0000000..79d4715 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_MetalPaintWhiteWorn_metallic-KB3D_NEC_MetalPaintWhiteWorn_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_MetalPaintWhiteWorn_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_MetalPaintWhiteWorn_normal.jpg new file mode 100644 index 0000000..68be694 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_MetalPaintWhiteWorn_normal.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_MetalPaintWorn_basecolor.jpg b/app/src/main/resources/adc/city/KB3D_NEC_MetalPaintWorn_basecolor.jpg new file mode 100644 index 0000000..81db049 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_MetalPaintWorn_basecolor.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_MetalPaintWorn_metallic-KB3D_NEC_MetalPaintWorn_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_MetalPaintWorn_metallic-KB3D_NEC_MetalPaintWorn_roughness.jpg new file mode 100644 index 0000000..d63208e Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_MetalPaintWorn_metallic-KB3D_NEC_MetalPaintWorn_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_MetalPaintWorn_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_MetalPaintWorn_normal.jpg new file mode 100644 index 0000000..b79c624 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_MetalPaintWorn_normal.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_MetalPaintYellow_basecolor.jpg b/app/src/main/resources/adc/city/KB3D_NEC_MetalPaintYellow_basecolor.jpg new file mode 100644 index 0000000..52015fc Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_MetalPaintYellow_basecolor.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_MetalPaintYellow_metallic-KB3D_NEC_MetalPaintYellow_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_MetalPaintYellow_metallic-KB3D_NEC_MetalPaintYellow_roughness.jpg new file mode 100644 index 0000000..8b47d89 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_MetalPaintYellow_metallic-KB3D_NEC_MetalPaintYellow_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_MetalPaintYellow_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_MetalPaintYellow_normal.jpg new file mode 100644 index 0000000..d75becc Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_MetalPaintYellow_normal.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_OxidizedSteel_basecolor.jpg b/app/src/main/resources/adc/city/KB3D_NEC_OxidizedSteel_basecolor.jpg new file mode 100644 index 0000000..1e7613e Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_OxidizedSteel_basecolor.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_OxidizedSteel_metallic-KB3D_NEC_OxidizedSteel_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_OxidizedSteel_metallic-KB3D_NEC_OxidizedSteel_roughness.jpg new file mode 100644 index 0000000..1bf3901 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_OxidizedSteel_metallic-KB3D_NEC_OxidizedSteel_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_OxidizedSteel_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_OxidizedSteel_normal.jpg new file mode 100644 index 0000000..f43616a Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_OxidizedSteel_normal.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_PaintBlack_basecolor.jpg b/app/src/main/resources/adc/city/KB3D_NEC_PaintBlack_basecolor.jpg new file mode 100644 index 0000000..cb5d1fe Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_PaintBlack_basecolor.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_PaintBlack_metallic-KB3D_NEC_PaintBlack_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_PaintBlack_metallic-KB3D_NEC_PaintBlack_roughness.jpg new file mode 100644 index 0000000..1d424c3 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_PaintBlack_metallic-KB3D_NEC_PaintBlack_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_PaintBlack_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_PaintBlack_normal.jpg new file mode 100644 index 0000000..8c28b63 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_PaintBlack_normal.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_PaintBlue_basecolor.jpg b/app/src/main/resources/adc/city/KB3D_NEC_PaintBlue_basecolor.jpg new file mode 100644 index 0000000..c971685 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_PaintBlue_basecolor.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_PaintBlue_metallic-KB3D_NEC_PaintBlue_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_PaintBlue_metallic-KB3D_NEC_PaintBlue_roughness.jpg new file mode 100644 index 0000000..cfe0d9a Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_PaintBlue_metallic-KB3D_NEC_PaintBlue_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_PaintBlue_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_PaintBlue_normal.jpg new file mode 100644 index 0000000..51b54dd Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_PaintBlue_normal.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_PaintRed_basecolor.jpg b/app/src/main/resources/adc/city/KB3D_NEC_PaintRed_basecolor.jpg new file mode 100644 index 0000000..ad0ceaf Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_PaintRed_basecolor.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_PaintRed_metallic-KB3D_NEC_PaintRed_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_PaintRed_metallic-KB3D_NEC_PaintRed_roughness.jpg new file mode 100644 index 0000000..1515f38 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_PaintRed_metallic-KB3D_NEC_PaintRed_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_PaintRed_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_PaintRed_normal.jpg new file mode 100644 index 0000000..c873de5 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_PaintRed_normal.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_PaintWhiteRusty_basecolor.jpg b/app/src/main/resources/adc/city/KB3D_NEC_PaintWhiteRusty_basecolor.jpg new file mode 100644 index 0000000..2405e9f Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_PaintWhiteRusty_basecolor.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_PaintWhiteRusty_metallic-KB3D_NEC_PaintWhiteRusty_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_PaintWhiteRusty_metallic-KB3D_NEC_PaintWhiteRusty_roughness.jpg new file mode 100644 index 0000000..9023675 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_PaintWhiteRusty_metallic-KB3D_NEC_PaintWhiteRusty_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_PaintWhiteRusty_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_PaintWhiteRusty_normal.jpg new file mode 100644 index 0000000..1a6c31c Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_PaintWhiteRusty_normal.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_PaintedMetal_basecolor.jpg b/app/src/main/resources/adc/city/KB3D_NEC_PaintedMetal_basecolor.jpg new file mode 100644 index 0000000..a9edd17 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_PaintedMetal_basecolor.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_PaintedMetal_metallic-KB3D_NEC_PaintedMetal_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_PaintedMetal_metallic-KB3D_NEC_PaintedMetal_roughness.jpg new file mode 100644 index 0000000..731229c Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_PaintedMetal_metallic-KB3D_NEC_PaintedMetal_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_PaintedMetal_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_PaintedMetal_normal.jpg new file mode 100644 index 0000000..335c60d Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_PaintedMetal_normal.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_PaperWhite_basecolor.jpg b/app/src/main/resources/adc/city/KB3D_NEC_PaperWhite_basecolor.jpg new file mode 100644 index 0000000..5e36a21 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_PaperWhite_basecolor.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_PaperWhite_metallic-KB3D_NEC_PaperWhite_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_PaperWhite_metallic-KB3D_NEC_PaperWhite_roughness.jpg new file mode 100644 index 0000000..71336f3 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_PaperWhite_metallic-KB3D_NEC_PaperWhite_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_PaperWhite_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_PaperWhite_normal.jpg new file mode 100644 index 0000000..17a2412 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_PaperWhite_normal.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_PlasticBlack_basecolor.jpg b/app/src/main/resources/adc/city/KB3D_NEC_PlasticBlack_basecolor.jpg new file mode 100644 index 0000000..6d18b5b Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_PlasticBlack_basecolor.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_PlasticBlack_metallic-KB3D_NEC_PlasticBlack_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_PlasticBlack_metallic-KB3D_NEC_PlasticBlack_roughness.jpg new file mode 100644 index 0000000..7f564fc Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_PlasticBlack_metallic-KB3D_NEC_PlasticBlack_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_PlasticBlack_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_PlasticBlack_normal.jpg new file mode 100644 index 0000000..ff71819 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_PlasticBlack_normal.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_PlasticWhite_basecolor.jpg b/app/src/main/resources/adc/city/KB3D_NEC_PlasticWhite_basecolor.jpg new file mode 100644 index 0000000..60d8cc4 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_PlasticWhite_basecolor.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_PlasticWhite_metallic-KB3D_NEC_PlasticWhite_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_PlasticWhite_metallic-KB3D_NEC_PlasticWhite_roughness.jpg new file mode 100644 index 0000000..1d835e5 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_PlasticWhite_metallic-KB3D_NEC_PlasticWhite_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_PlasticWhite_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_PlasticWhite_normal.jpg new file mode 100644 index 0000000..f5ecae0 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_PlasticWhite_normal.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_PlasticYellow_basecolor.jpg b/app/src/main/resources/adc/city/KB3D_NEC_PlasticYellow_basecolor.jpg new file mode 100644 index 0000000..ad5bb9f Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_PlasticYellow_basecolor.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_PlasticYellow_metallic-KB3D_NEC_PlasticYellow_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_PlasticYellow_metallic-KB3D_NEC_PlasticYellow_roughness.jpg new file mode 100644 index 0000000..6837ebe Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_PlasticYellow_metallic-KB3D_NEC_PlasticYellow_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_PlasticYellow_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_PlasticYellow_normal.jpg new file mode 100644 index 0000000..e58d31f Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_PlasticYellow_normal.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_RedWhiteStripes_basecolor.jpg b/app/src/main/resources/adc/city/KB3D_NEC_RedWhiteStripes_basecolor.jpg new file mode 100644 index 0000000..8151650 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_RedWhiteStripes_basecolor.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_RedWhiteStripes_metallic-KB3D_NEC_RedWhiteStripes_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_RedWhiteStripes_metallic-KB3D_NEC_RedWhiteStripes_roughness.jpg new file mode 100644 index 0000000..a550f2e Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_RedWhiteStripes_metallic-KB3D_NEC_RedWhiteStripes_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_RedWhiteStripes_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_RedWhiteStripes_normal.jpg new file mode 100644 index 0000000..17a2412 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_RedWhiteStripes_normal.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_Rubber_basecolor.jpg b/app/src/main/resources/adc/city/KB3D_NEC_Rubber_basecolor.jpg new file mode 100644 index 0000000..84bbf67 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_Rubber_basecolor.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_Rubber_metallic-KB3D_NEC_Rubber_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_Rubber_metallic-KB3D_NEC_Rubber_roughness.jpg new file mode 100644 index 0000000..187ab7c Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_Rubber_metallic-KB3D_NEC_Rubber_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_Rubber_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_Rubber_normal.jpg new file mode 100644 index 0000000..17a2412 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_Rubber_normal.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_SatinSteel_basecolor.jpg b/app/src/main/resources/adc/city/KB3D_NEC_SatinSteel_basecolor.jpg new file mode 100644 index 0000000..38faf74 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_SatinSteel_basecolor.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_SatinSteel_metallic-KB3D_NEC_SatinSteel_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_SatinSteel_metallic-KB3D_NEC_SatinSteel_roughness.jpg new file mode 100644 index 0000000..c12fd91 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_SatinSteel_metallic-KB3D_NEC_SatinSteel_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_SatinSteel_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_SatinSteel_normal.jpg new file mode 100644 index 0000000..b3931ad Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_SatinSteel_normal.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_Screens_basecolor-KB3D_NEC_Screens_opacity.png b/app/src/main/resources/adc/city/KB3D_NEC_Screens_basecolor-KB3D_NEC_Screens_opacity.png new file mode 100644 index 0000000..0859b82 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_Screens_basecolor-KB3D_NEC_Screens_opacity.png differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_Screens_emissive.jpg b/app/src/main/resources/adc/city/KB3D_NEC_Screens_emissive.jpg new file mode 100644 index 0000000..1266da3 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_Screens_emissive.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_Screens_metallic-KB3D_NEC_Screens_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_Screens_metallic-KB3D_NEC_Screens_roughness.jpg new file mode 100644 index 0000000..4c812b1 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_Screens_metallic-KB3D_NEC_Screens_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_Screens_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_Screens_normal.jpg new file mode 100644 index 0000000..f43616a Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_Screens_normal.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_SpeedwayTiles_basecolor.jpg b/app/src/main/resources/adc/city/KB3D_NEC_SpeedwayTiles_basecolor.jpg new file mode 100644 index 0000000..02ac372 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_SpeedwayTiles_basecolor.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_SpeedwayTiles_metallic-KB3D_NEC_SpeedwayTiles_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_SpeedwayTiles_metallic-KB3D_NEC_SpeedwayTiles_roughness.jpg new file mode 100644 index 0000000..8fe4d2a Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_SpeedwayTiles_metallic-KB3D_NEC_SpeedwayTiles_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_SpeedwayTiles_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_SpeedwayTiles_normal.jpg new file mode 100644 index 0000000..b51a196 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_SpeedwayTiles_normal.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_SteelRaw_basecolor.jpg b/app/src/main/resources/adc/city/KB3D_NEC_SteelRaw_basecolor.jpg new file mode 100644 index 0000000..d550f72 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_SteelRaw_basecolor.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_SteelRaw_metallic-KB3D_NEC_SteelRaw_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_SteelRaw_metallic-KB3D_NEC_SteelRaw_roughness.jpg new file mode 100644 index 0000000..ea6280f Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_SteelRaw_metallic-KB3D_NEC_SteelRaw_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_SteelRaw_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_SteelRaw_normal.jpg new file mode 100644 index 0000000..a8c3497 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_SteelRaw_normal.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_StreetTiles_basecolor.jpg b/app/src/main/resources/adc/city/KB3D_NEC_StreetTiles_basecolor.jpg new file mode 100644 index 0000000..10824e5 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_StreetTiles_basecolor.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_StreetTiles_metallic-KB3D_NEC_StreetTiles_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_StreetTiles_metallic-KB3D_NEC_StreetTiles_roughness.jpg new file mode 100644 index 0000000..1de7f13 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_StreetTiles_metallic-KB3D_NEC_StreetTiles_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_StreetTiles_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_StreetTiles_normal.jpg new file mode 100644 index 0000000..88c1dcd Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_StreetTiles_normal.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_TarpA_basecolor.jpg b/app/src/main/resources/adc/city/KB3D_NEC_TarpA_basecolor.jpg new file mode 100644 index 0000000..83b80f8 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_TarpA_basecolor.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_TarpA_metallic-KB3D_NEC_TarpA_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_TarpA_metallic-KB3D_NEC_TarpA_roughness.jpg new file mode 100644 index 0000000..72408bb Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_TarpA_metallic-KB3D_NEC_TarpA_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_TarpA_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_TarpA_normal.jpg new file mode 100644 index 0000000..955894b Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_TarpA_normal.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_TreeWalnutBark_basecolor.jpg b/app/src/main/resources/adc/city/KB3D_NEC_TreeWalnutBark_basecolor.jpg new file mode 100644 index 0000000..f07a25d Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_TreeWalnutBark_basecolor.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_TreeWalnutBark_metallic-KB3D_NEC_TreeWalnutBark_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_TreeWalnutBark_metallic-KB3D_NEC_TreeWalnutBark_roughness.jpg new file mode 100644 index 0000000..3f34c4a Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_TreeWalnutBark_metallic-KB3D_NEC_TreeWalnutBark_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_TreeWalnutBark_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_TreeWalnutBark_normal.jpg new file mode 100644 index 0000000..135686e Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_TreeWalnutBark_normal.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_TreeWlnutLeaf_basecolor-KB3D_NEC_TreeWlnutLeaf_opacity.png b/app/src/main/resources/adc/city/KB3D_NEC_TreeWlnutLeaf_basecolor-KB3D_NEC_TreeWlnutLeaf_opacity.png new file mode 100644 index 0000000..b476dee Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_TreeWlnutLeaf_basecolor-KB3D_NEC_TreeWlnutLeaf_opacity.png differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_TreeWlnutLeaf_metallic-KB3D_NEC_TreeWlnutLeaf_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_TreeWlnutLeaf_metallic-KB3D_NEC_TreeWlnutLeaf_roughness.jpg new file mode 100644 index 0000000..5db76f9 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_TreeWlnutLeaf_metallic-KB3D_NEC_TreeWlnutLeaf_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_TreeWlnutLeaf_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_TreeWlnutLeaf_normal.jpg new file mode 100644 index 0000000..fe71a32 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_TreeWlnutLeaf_normal.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_WhitePanels_basecolor.jpg b/app/src/main/resources/adc/city/KB3D_NEC_WhitePanels_basecolor.jpg new file mode 100644 index 0000000..93c352f Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_WhitePanels_basecolor.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_WhitePanels_metallic-KB3D_NEC_WhitePanels_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_WhitePanels_metallic-KB3D_NEC_WhitePanels_roughness.jpg new file mode 100644 index 0000000..d327f5f Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_WhitePanels_metallic-KB3D_NEC_WhitePanels_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_WhitePanels_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_WhitePanels_normal.jpg new file mode 100644 index 0000000..6fb1816 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_WhitePanels_normal.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_WoodDarkGreyTower_basecolor.jpg b/app/src/main/resources/adc/city/KB3D_NEC_WoodDarkGreyTower_basecolor.jpg new file mode 100644 index 0000000..36bfaef Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_WoodDarkGreyTower_basecolor.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_WoodDarkGreyTower_metallic-KB3D_NEC_WoodDarkGreyTower_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_WoodDarkGreyTower_metallic-KB3D_NEC_WoodDarkGreyTower_roughness.jpg new file mode 100644 index 0000000..d028748 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_WoodDarkGreyTower_metallic-KB3D_NEC_WoodDarkGreyTower_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_WoodDarkGreyTower_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_WoodDarkGreyTower_normal.jpg new file mode 100644 index 0000000..0a2e558 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_WoodDarkGreyTower_normal.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_WoodLacquered_basecolor.jpg b/app/src/main/resources/adc/city/KB3D_NEC_WoodLacquered_basecolor.jpg new file mode 100644 index 0000000..7a5b5f0 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_WoodLacquered_basecolor.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_WoodLacquered_metallic-KB3D_NEC_WoodLacquered_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_WoodLacquered_metallic-KB3D_NEC_WoodLacquered_roughness.jpg new file mode 100644 index 0000000..d0e37c8 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_WoodLacquered_metallic-KB3D_NEC_WoodLacquered_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_WoodLacquered_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_WoodLacquered_normal.jpg new file mode 100644 index 0000000..44c5c81 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_WoodLacquered_normal.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_Wood_basecolor.jpg b/app/src/main/resources/adc/city/KB3D_NEC_Wood_basecolor.jpg new file mode 100644 index 0000000..19a3655 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_Wood_basecolor.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_Wood_metallic-KB3D_NEC_Wood_roughness.jpg b/app/src/main/resources/adc/city/KB3D_NEC_Wood_metallic-KB3D_NEC_Wood_roughness.jpg new file mode 100644 index 0000000..bf28a47 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_Wood_metallic-KB3D_NEC_Wood_roughness.jpg differ diff --git a/app/src/main/resources/adc/city/KB3D_NEC_Wood_normal.jpg b/app/src/main/resources/adc/city/KB3D_NEC_Wood_normal.jpg new file mode 100644 index 0000000..7fd6636 Binary files /dev/null and b/app/src/main/resources/adc/city/KB3D_NEC_Wood_normal.jpg differ diff --git a/app/src/main/resources/adc/city/city.bin b/app/src/main/resources/adc/city/city.bin new file mode 100644 index 0000000..f2b7c46 --- /dev/null +++ b/app/src/main/resources/adc/city/city.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:846788657035be7fd0c06bea9feb673973981bd66cde266b4e6b88fa8530987b +size 365242176 diff --git a/app/src/main/resources/adc/city/city.gltf b/app/src/main/resources/adc/city/city.gltf new file mode 100644 index 0000000..a3109b6 --- /dev/null +++ b/app/src/main/resources/adc/city/city.gltf @@ -0,0 +1,84210 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.5.47", + "version":"2.0" + }, + "extensionsUsed":[ + "KHR_lights_punctual" + ], + "extensionsRequired":[ + "KHR_lights_punctual" + ], + "extensions":{ + "KHR_lights_punctual":{ + "lights":[ + { + "color":[ + 0.23971401154994965, + 0.03276951238512993, + 1 + ], + "intensity":155611.49902714754, + "spot":{ + "innerConeAngle":1.1758364841006017, + "outerConeAngle":1.309869647026062 + }, + "type":"spot", + "name":"Spot" + }, + { + "color":[ + 0.8041373491287231, + 0.5132185220718384, + 1 + ], + "intensity":174360.0096089971, + "spot":{ + "innerConeAngle":0.8916014787617748, + "outerConeAngle":1.0489429235458374 + }, + "type":"spot", + "name":"Spot.001" + }, + { + "color":[ + 1, + 1, + 1 + ], + "intensity":11756.209982680935, + "type":"point", + "name":"Point.001" + }, + { + "color":[ + 0.27227213978767395, + 0.140330508351326, + 1 + ], + "intensity":4087.2260966869967, + "type":"point", + "name":"Point.002" + } + ] + } + }, + "scene":0, + "scenes":[ + { + "extras":{ + "khr_physics_scene_viewer_props":{}, + "khr_physics_exporter_props":{ + "enabled":0, + "reparent_bones":0 + } + }, + "name":"KB3D_NeoCity-Native", + "nodes":[ + 15, + 24, + 25, + 35, + 52, + 120, + 121, + 124, + 128, + 131, + 134, + 143, + 144, + 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 + ] + }, + { + "name":"Scene", + "nodes":[ + 193 + ] + } + ], + "nodes":[ + { + "extras":{ + "nostrads.adspace":"512x256" + }, + "mesh":0, + "name":"ad-horizontal-2:1", + "rotation":[ + 0.03789234906435013, + 0.022590545937418938, + -0.04395591840147972, + 0.9980589747428894 + ], + "translation":[ + 0.6002146601676941, + 1.404815435409546, + 2.4173495769500732 + ] + }, + { + "mesh":1, + "name":"KB3D_NEC_BldgSM_C_AC", + "translation":[ + -0.09101760387420654, + 0.7620241641998291, + -2.001678466796875 + ] + }, + { + "mesh":2, + "name":"KB3D_NEC_BldgSM_C_Boxes", + "translation":[ + 1.7409038543701172, + -1.3800914287567139, + -0.48126766085624695 + ] + }, + { + "mesh":3, + "name":"KB3D_NEC_BldgSM_C_Containers", + "translation":[ + 2.2580888271331787, + -1.4385768175125122, + 0.814642608165741 + ] + }, + { + "mesh":4, + "name":"KB3D_NEC_BldgSM_C_CratesA", + "translation":[ + -0.47570690512657166, + -1.0337035655975342, + -2.5294055938720703 + ] + }, + { + "mesh":5, + "name":"KB3D_NEC_BldgSM_C_CratesB", + "translation":[ + 0.5483866333961487, + 2.1513254642486572, + 1.2255384922027588 + ] + }, + { + "mesh":6, + "name":"KB3D_NEC_BldgSM_C_Fan", + "translation":[ + 3.2613861560821533, + -0.5371780395507812, + 1.8870863914489746 + ] + }, + { + "name":"KB3D_NEC_BldgSM_C_grp", + "translation":[ + 0.7817941904067993, + -1.913568377494812, + 0.1784404218196869 + ] + }, + { + "mesh":7, + "name":"KB3D_NEC_BldgSM_C_NeonSignA", + "translation":[ + 1.1301435232162476, + 1.5055196285247803, + 1.9583477973937988 + ] + }, + { + "mesh":8, + "name":"KB3D_NEC_BldgSM_C_NeonSignA.001", + "translation":[ + 1.1301435232162476, + 1.5055196285247803, + 1.9583477973937988 + ] + }, + { + "mesh":9, + "name":"KB3D_NEC_BldgSM_C_NeonSignB", + "translation":[ + -2.1087913513183594, + 1.1762259006500244, + 0.013124339282512665 + ] + }, + { + "mesh":10, + "name":"KB3D_NEC_BldgSM_C_NeonSignC", + "translation":[ + 2.5888402462005615, + -0.20076251029968262, + 2.2037127017974854 + ] + }, + { + "mesh":11, + "name":"KB3D_NEC_BldgSM_C_Pipes", + "translation":[ + 2.3050575256347656, + -0.6089386940002441, + -2.1469268798828125 + ] + }, + { + "mesh":12, + "name":"KB3D_NEC_BldgSM_C_Shelf", + "translation":[ + -0.008148588240146637, + -0.7351118326187134, + -0.2178977131843567 + ] + }, + { + "mesh":13, + "name":"KB3D_NEC_BldgSM_C_Stool", + "translation":[ + -0.9857921600341797, + -1.5419121980667114, + 1.5944515466690063 + ] + }, + { + "children":[ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14 + ], + "extras":{ + "khr_physics_extra_props":{} + }, + "mesh":14, + "name":"KB3D_NEC_BldgSM_C_Main", + "rotation":[ + 0, + 0.9999998807907104, + 0, + 0.0004839459725189954 + ], + "translation":[ + -52.95689010620117, + 2.563997983932495, + 34.57973861694336 + ] + }, + { + "mesh":15, + "name":"KB3D_NEC_BldgSM_B_Bbq", + "translation":[ + -1.2967643737792969, + 0.24518120288848877, + -0.7084856033325195 + ] + }, + { + "extras":{ + "khr_physics_extra_props":{} + }, + "mesh":16, + "name":"KB3D_NEC_BldgSM_B_Cart", + "translation":[ + 2.4372730255126953, + 0.8780783414840698, + -0.5993261337280273 + ] + }, + { + "mesh":17, + "name":"KB3D_NEC_BldgSM_B_Computers", + "translation":[ + -0.3387269973754883, + 0.8714920282363892, + -2.3760738372802734 + ] + }, + { + "extras":{ + "khr_physics_extra_props":{} + }, + "mesh":18, + "name":"KB3D_NEC_BldgSM_B_FridgeB", + "translation":[ + 2.613309860229492, + 1.0310672521591187, + -1.842595100402832 + ] + }, + { + "mesh":19, + "name":"KB3D_NEC_BldgSM_B_FridgeB.001", + "translation":[ + 2.613309860229492, + 1.0310672521591187, + -1.842595100402832 + ] + }, + { + "name":"KB3D_NEC_BldgSM_B_grp", + "translation":[ + 0.6249017715454102, + -0.5236393213272095, + -1.3868112564086914 + ] + }, + { + "extras":{ + "khr_physics_extra_props":{} + }, + "mesh":20, + "name":"KB3D_NEC_BldgSM_B_Main", + "translation":[ + -0.00011920928955078125, + 1.0363091230392456, + -2.200201988220215 + ] + }, + { + "extras":{ + "khr_physics_extra_props":{} + }, + "mesh":21, + "name":"KB3D_NEC_BldgSM_B_Umbrella", + "translation":[ + 0.9593238830566406, + 1.1993435621261597, + -1.981008529663086 + ] + }, + { + "children":[ + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23 + ], + "extras":{ + "khr_physics_extra_props":{} + }, + "mesh":22, + "name":"KB3D_NEC_BldgSM_B_FridgeA", + "rotation":[ + 0, + -0.9856844544410706, + 0, + 0.16860073804855347 + ], + "translation":[ + -33.04702377319336, + 1.283416748046875, + 33.670597076416016 + ] + }, + { + "extras":{ + "khr_physics_extra_props":{} + }, + "mesh":23, + "name":"KB3D_NEC_BldgMD_B_Main", + "translation":[ + 13.846935272216797, + 29.13945960998535, + -28.61044692993164 + ] + }, + { + "mesh":24, + "name":"KB3D_NEC_BldgMD_A_AntennaA", + "translation":[ + 14.093212127685547, + 10.000432968139648, + -6.420013904571533 + ] + }, + { + "mesh":25, + "name":"KB3D_NEC_BldgMD_A_Banners", + "translation":[ + -2.6268014907836914, + -0.7395658493041992, + 6.320037841796875 + ] + }, + { + "mesh":26, + "name":"KB3D_NEC_BldgMD_A_Banners.001", + "translation":[ + -2.6268014907836914, + -0.7395658493041992, + 6.320037841796875 + ] + }, + { + "name":"KB3D_NEC_BldgMD_A_grp", + "translation":[ + 2.8051764965057373, + -3.560877561569214, + -0.06636867672204971 + ] + }, + { + "extras":{ + "khr_physics_extra_props":{} + }, + "mesh":27, + "name":"KB3D_NEC_BldgMD_A_Main", + "translation":[ + -0.24570012092590332, + 3.0619192123413086, + -0.16548994183540344 + ] + }, + { + "mesh":28, + "name":"KB3D_NEC_BldgMD_A_Main.001", + "translation":[ + -0.24570012092590332, + 3.0619192123413086, + -0.16548994183540344 + ] + }, + { + "mesh":29, + "name":"KB3D_NEC_BldgMD_A_Main.002", + "translation":[ + -0.24570012092590332, + 3.0619192123413086, + -0.16548994183540344 + ] + }, + { + "mesh":30, + "name":"KB3D_NEC_BldgMD_A_Main.003", + "translation":[ + -0.24570012092590332, + 3.0619192123413086, + -0.16548994183540344 + ] + }, + { + "name":"KB3D_NEC_BldgMD_B_grp", + "rotation":[ + 0, + -0.9777423739433289, + 0, + 0.2098091095685959 + ], + "translation":[ + -2.5260632038116455, + -3.560877561569214, + -1.8990929126739502 + ] + }, + { + "children":[ + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34 + ], + "mesh":31, + "name":"KB3D_NEC_BldgMD_A_Base", + "rotation":[ + 0, + -0.7092230916023254, + 0, + 0.704984188079834 + ], + "translation":[ + -2.363088607788086, + 4.279862403869629, + 16.539579391479492 + ] + }, + { + "extras":{ + "khr_physics_extra_props":{} + }, + "mesh":32, + "name":"KB3D_NEC_BldgLG_A_Base", + "translation":[ + -4.9445953369140625, + 0.9075543880462646, + -22.051563262939453 + ] + }, + { + "extras":{ + "khr_physics_extra_props":{} + }, + "mesh":33, + "name":"KB3D_NEC_BldgLG_A_BuildingA", + "rotation":[ + 0, + 0.9999810457229614, + 0, + 0.006155973765999079 + ], + "translation":[ + 74.1677017211914, + 21.44287872314453, + -31.517953872680664 + ] + }, + { + "extras":{ + "khr_physics_extra_props":{} + }, + "mesh":34, + "name":"KB3D_NEC_BldgLG_A_BuildingA.001", + "rotation":[ + 0, + -0.006155930459499359, + 0, + 0.9999810457229614 + ], + "translation":[ + 72.06262969970703, + 21.44287872314453, + 19.139379501342773 + ] + }, + { + "extras":{ + "khr_physics_extra_props":{} + }, + "mesh":35, + "name":"KB3D_NEC_BldgLG_A_BuildingB", + "translation":[ + -2.4966506958007812, + 36.9152946472168, + -66.12930297851562 + ] + }, + { + "extras":{ + "khr_physics_extra_props":{} + }, + "mesh":36, + "name":"KB3D_NEC_BldgLG_A_BuildingB.001", + "translation":[ + -26.470733642578125, + 36.9152946472168, + -67.6161117553711 + ] + }, + { + "mesh":37, + "name":"KB3D_NEC_BldgLG_A_BuildingC", + "translation":[ + -46.69812774658203, + 12.356410026550293, + -14.997312545776367 + ] + }, + { + "extras":{ + "khr_physics_extra_props":{} + }, + "mesh":38, + "name":"KB3D_NEC_BldgLG_A_BuildingD", + "translation":[ + 9.037025451660156, + 10.492195129394531, + 17.584867477416992 + ] + }, + { + "extras":{ + "khr_physics_extra_props":{} + }, + "mesh":39, + "name":"KB3D_NEC_BldgLG_A_Main", + "rotation":[ + 0, + 0.5861668586730957, + 0, + 0.8101903796195984 + ], + "translation":[ + 32.07534408569336, + 34.47987365722656, + -61.038597106933594 + ] + }, + { + "extras":{ + "khr_physics_extra_props":{} + }, + "mesh":40, + "name":"KB3D_NEC_BldgLG_A_Main.001", + "rotation":[ + 0, + -0.40103113651275635, + 0, + 0.9160645604133606 + ], + "translation":[ + 57.98688888549805, + 34.036399841308594, + -58.49168395996094 + ] + }, + { + "mesh":41, + "name":"KB3D_NEC_BldgLG_A_Tree", + "rotation":[ + 0, + 0.33334246277809143, + 0, + 0.942805826663971 + ], + "translation":[ + 29.250808715820312, + 6.440288066864014, + 16.529645919799805 + ] + }, + { + "mesh":42, + "name":"KB3D_NEC_BldgLG_A_Tree.001", + "rotation":[ + 0, + 0.3726699650287628, + 0, + 0.9279639720916748 + ], + "scale":[ + 1.08777916431427, + 1.08777916431427, + 1.08777916431427 + ], + "translation":[ + 59.04873275756836, + 5.653892517089844, + 35.28704833984375 + ] + }, + { + "mesh":43, + "name":"KB3D_NEC_BldgLG_A_Tree.002", + "rotation":[ + 0, + -0.6005006432533264, + 0, + 0.7996242642402649 + ], + "scale":[ + 1.0877792835235596, + 1.08777916431427, + 1.0877792835235596 + ], + "translation":[ + 59.03942108154297, + 5.111728191375732, + 47.32423400878906 + ] + }, + { + "mesh":44, + "name":"KB3D_NEC_BldgLG_A_Tree.003", + "rotation":[ + 0, + -0.9997893571853638, + 0, + 0.020526114851236343 + ], + "translation":[ + 91.37116241455078, + 6.083184719085693, + -32.102561950683594 + ] + }, + { + "mesh":45, + "name":"KB3D_NEC_BldgLG_A_Tree.004", + "rotation":[ + 0, + 0.19104184210300446, + 0, + 0.98158198595047 + ], + "translation":[ + 41.23169708251953, + 6.379889965057373, + -44.171199798583984 + ] + }, + { + "mesh":46, + "name":"KB3D_NEC_BldgLG_A_Tree.005", + "rotation":[ + 0, + -0.8682994246482849, + 0, + 0.4960404336452484 + ], + "translation":[ + 57.621307373046875, + 6.220597267150879, + 22.188753128051758 + ] + }, + { + "mesh":47, + "name":"KB3D_NEC_BldgLG_A_Tree.006", + "rotation":[ + 0, + -0.3441605567932129, + 0, + 0.9389108419418335 + ], + "translation":[ + 14.573760986328125, + 6.327719211578369, + -68.34645080566406 + ] + }, + { + "children":[ + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51 + ], + "name":"KB3D_NEC_BldgLG_A_grp", + "translation":[ + -76.2094497680664, + 0, + 22.68596076965332 + ] + }, + { + "mesh":48, + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier", + "translation":[ + -0.3360595703125, + 0.5634288787841797, + -0.036808013916015625 + ] + }, + { + "mesh":49, + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.001", + "rotation":[ + 0, + 0.550541341304779, + 0, + 0.8348079323768616 + ], + "translation":[ + -7.0736470222473145, + 1.1841903924942017, + -7.034553527832031 + ] + }, + { + "mesh":50, + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.002", + "rotation":[ + 0, + 0.8130601644515991, + 0, + 0.5821797251701355 + ], + "translation":[ + -9.753787994384766, + 0.990119993686676, + -7.399955749511719 + ] + }, + { + "mesh":51, + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.003", + "rotation":[ + 0, + 0.9386891722679138, + 0, + 0.3447645902633667 + ], + "translation":[ + -12.02064323425293, + 0.990119993686676, + -6.520389556884766 + ] + }, + { + "mesh":52, + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.004", + "rotation":[ + 0, + 0.7985537648200989, + 0, + 0.6019234657287598 + ], + "translation":[ + -14.838422775268555, + 0.990119993686676, + -5.753963470458984 + ] + }, + { + "mesh":53, + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.005", + "rotation":[ + 0, + -0.6909744143486023, + 0, + 0.7228792309761047 + ], + "translation":[ + -17.7468318939209, + 0.9901195168495178, + -4.766963958740234 + ] + }, + { + "mesh":54, + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.006", + "rotation":[ + 0, + 0.8130601644515991, + 0, + 0.5821797251701355 + ], + "translation":[ + -20.793190002441406, + 0.9901201128959656, + -4.019142150878906 + ] + }, + { + "mesh":55, + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.007", + "rotation":[ + 0, + -0.3452845513820648, + 0, + 0.9384980797767639 + ], + "translation":[ + -22.998920440673828, + 1.2863107919692993, + -3.4464073181152344 + ] + }, + { + "mesh":56, + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.008", + "rotation":[ + 0, + 0.8130601644515991, + 0, + 0.5821797251701355 + ], + "translation":[ + -25.117496490478516, + 1.300484299659729, + -2.4399871826171875 + ] + }, + { + "mesh":57, + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.009", + "rotation":[ + 0, + -0.5847071409225464, + 0, + 0.8112444877624512 + ], + "translation":[ + -28.016048431396484, + 1.2863117456436157, + -1.3934593200683594 + ] + }, + { + "mesh":58, + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.010", + "rotation":[ + 0, + 0.8130601644515991, + 0, + 0.5821797251701355 + ], + "translation":[ + -30.924457550048828, + 1.2863112688064575, + -0.6184539794921875 + ] + }, + { + "mesh":59, + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.011", + "rotation":[ + 0, + 0.8501771092414856, + 0, + 0.5264968872070312 + ], + "translation":[ + -32.98428726196289, + 1.312206506729126, + 0.6821250915527344 + ] + }, + { + "mesh":60, + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.012", + "rotation":[ + 0, + 0.8312074542045593, + 0, + 0.5559624433517456 + ], + "translation":[ + -35.069236755371094, + 1.2914026975631714, + 1.5845375061035156 + ] + }, + { + "mesh":61, + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.013", + "rotation":[ + 0, + 0.9019586443901062, + 0, + 0.4318225085735321 + ], + "translation":[ + -37.290435791015625, + 1.2914026975631714, + 2.3718223571777344 + ] + }, + { + "mesh":62, + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.014", + "rotation":[ + 0, + 0.8312074542045593, + 0, + 0.5559624433517456 + ], + "translation":[ + -40.038639068603516, + 1.2914026975631714, + 3.5512237548828125 + ] + }, + { + "mesh":63, + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.015", + "rotation":[ + 0, + 0.8312074542045593, + 0, + 0.5559624433517456 + ], + "translation":[ + -42.87823486328125, + 1.2914022207260132, + 4.721569061279297 + ] + }, + { + "mesh":64, + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.016", + "rotation":[ + 0, + 0.7367383241653442, + 0, + 0.6761780381202698 + ], + "translation":[ + -45.56228256225586, + 0.9901201128959656, + 5.7154388427734375 + ] + }, + { + "mesh":65, + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.017", + "rotation":[ + 0, + 0.7367383241653442, + 0, + 0.6761780381202698 + ], + "translation":[ + -47.82225036621094, + 1.308497428894043, + 5.947654724121094 + ] + }, + { + "mesh":66, + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.018", + "rotation":[ + 0, + 0.7367383241653442, + 0, + 0.6761780381202698 + ], + "translation":[ + -50.17743682861328, + 1.308497428894043, + 6.0290374755859375 + ] + }, + { + "mesh":67, + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.019", + "rotation":[ + 0, + 0.7367383241653442, + 0, + 0.6761780381202698 + ], + "translation":[ + -53.15329360961914, + 1.308497428894043, + 6.325519561767578 + ] + }, + { + "mesh":68, + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.021", + "rotation":[ + 0, + -0.7822297215461731, + 0, + 0.6229901313781738 + ], + "translation":[ + 5.4482526779174805, + 1.3017380237579346, + -73.95068359375 + ] + }, + { + "mesh":69, + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.022", + "rotation":[ + 0, + 0.9425820112228394, + 0, + 0.3339747488498688 + ], + "translation":[ + 6.583763122558594, + 1.2914905548095703, + -60.162078857421875 + ] + }, + { + "mesh":70, + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.023", + "rotation":[ + 0, + 0.8523849844932556, + 0, + 0.5229147672653198 + ], + "translation":[ + 1.0876712799072266, + 1.3492501974105835, + -39.72257614135742 + ] + }, + { + "mesh":71, + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.024", + "rotation":[ + 0, + 0.5269057154655457, + 0, + 0.8499237895011902 + ], + "translation":[ + 1.0549001693725586, + 1.1664557456970215, + -40.94089126586914 + ] + }, + { + "mesh":72, + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.025", + "rotation":[ + 0.023125408217310905, + 0.9469444751739502, + -0.003055898705497384, + 0.3205496668815613 + ], + "translation":[ + 2.6141421794891357, + 1.168959379196167, + -40.920570373535156 + ] + }, + { + "mesh":73, + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.026", + "rotation":[ + 0, + -0.6596536636352539, + 0, + 0.7515697479248047 + ], + "translation":[ + 5.243594646453857, + 1.3293204307556152, + -59.9305419921875 + ] + }, + { + "mesh":74, + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.027", + "rotation":[ + 0, + 0.030861901119351387, + 0, + 0.9995236992835999 + ], + "translation":[ + 5.243594646453857, + 1.3293204307556152, + -61.77030563354492 + ] + }, + { + "mesh":75, + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.028", + "rotation":[ + 0, + -0.4529394805431366, + 0, + 0.8915413022041321 + ], + "translation":[ + -55.103782653808594, + 1.5356075763702393, + -76.51365661621094 + ] + }, + { + "mesh":76, + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.029", + "rotation":[ + 0, + 0.7391930818557739, + 0, + 0.6734936237335205 + ], + "translation":[ + -57.43787384033203, + 1.5497809648513794, + -76.2828369140625 + ] + }, + { + "mesh":77, + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.030", + "rotation":[ + 0, + -0.675790548324585, + 0, + 0.7370937466621399 + ], + "translation":[ + -60.519554138183594, + 1.5356085300445557, + -76.27796173095703 + ] + }, + { + "mesh":78, + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.031", + "rotation":[ + 0, + 0.7391930818557739, + 0, + 0.6734936237335205 + ], + "translation":[ + -63.51872253417969, + 1.5356080532073975, + -76.53199005126953 + ] + }, + { + "mesh":79, + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.032", + "rotation":[ + 0, + -0.4529394805431366, + 0, + 0.8915413022041321 + ], + "translation":[ + -50.59303665161133, + 1.5356075763702393, + -77.6968002319336 + ] + }, + { + "mesh":80, + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.033", + "rotation":[ + 0, + 0.7391930818557739, + 0, + 0.6734936237335205 + ], + "translation":[ + -52.927127838134766, + 1.5497809648513794, + -77.46598052978516 + ] + }, + { + "mesh":81, + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.034", + "rotation":[ + 0, + -0.675790548324585, + 0, + 0.7370937466621399 + ], + "translation":[ + -53.5069465637207, + 1.5356085300445557, + -76.38887786865234 + ] + }, + { + "mesh":82, + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.035", + "rotation":[ + 0, + 0.6178967356681824, + 0, + 0.7862592339515686 + ], + "translation":[ + -58.99565124511719, + 1.5356080532073975, + -76.98799133300781 + ] + }, + { + "mesh":83, + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.036", + "rotation":[ + 0, + 0.7391930818557739, + 0, + 0.6734936237335205 + ], + "translation":[ + -85.00764465332031, + 1.5153099298477173, + -78.67487335205078 + ] + }, + { + "mesh":84, + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.037", + "rotation":[ + 0, + -0.675790548324585, + 0, + 0.7370937466621399 + ], + "translation":[ + -88.08932495117188, + 1.5011374950408936, + -78.66999816894531 + ] + }, + { + "mesh":85, + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.038", + "rotation":[ + 0, + 0.6178967356681824, + 0, + 0.7862592339515686 + ], + "translation":[ + -86.5654296875, + 1.5011370182037354, + -79.3800277709961 + ] + }, + { + "mesh":86, + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.039", + "rotation":[ + 0, + 0.8567798137664795, + 0, + 0.5156824588775635 + ], + "translation":[ + -107.69963836669922, + 1.538125991821289, + -78.88812255859375 + ] + }, + { + "mesh":87, + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.040", + "rotation":[ + 0, + -0.5183459520339966, + 0, + 0.8551710247993469 + ], + "translation":[ + -109.81546783447266, + 1.5291447639465332, + -79.53994750976562 + ] + }, + { + "mesh":88, + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.041", + "rotation":[ + 0, + 0.7599172592163086, + 0, + 0.6500198841094971 + ], + "translation":[ + -109.40878295898438, + 1.529144287109375, + -78.94082641601562 + ] + }, + { + "mesh":89, + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.042", + "rotation":[ + 0, + -0.675790548324585, + 0, + 0.7370937466621399 + ], + "translation":[ + -49.090877532958984, + 1.5356085300445557, + -76.69554901123047 + ] + }, + { + "extensions":{ + "KHR_lights_punctual":{ + "light":0 + } + }, + "name":"Spot.004", + "rotation":[ + -0.7071068286895752, + 0, + 0, + 0.7071068286895752 + ], + "scale":[ + 0.03648883476853371, + 0.036488838493824005, + 0.03648883476853371 + ], + "translation":[ + -0.011385083198547363, + 2.869311809539795, + -0.007801711559295654 + ] + }, + { + "extensions":{ + "KHR_lights_punctual":{ + "light":1 + } + }, + "name":"Spot.010", + "rotation":[ + 0.6412690281867981, + -0.3578890562057495, + -0.3377930819988251, + 0.5887149572372437 + ], + "scale":[ + 0.036488838493824005, + 0.036488842219114304, + 0.03648883476853371 + ], + "translation":[ + 11.597661972045898, + 3.7170042991638184, + 3.486347198486328 + ] + }, + { + "children":[ + 95, + 96 + ], + "mesh":90, + "name":"KB3D_NEC_BldgSM_A_Main.001", + "rotation":[ + 0, + 0.06495584547519684, + 0, + 0.9978881478309631 + ], + "translation":[ + -16.999963760375977, + 3.7770984172821045, + -41.15966796875 + ] + }, + { + "extensions":{ + "KHR_lights_punctual":{ + "light":0 + } + }, + "name":"Spot.005", + "rotation":[ + -0.7071068286895752, + 0, + 0, + 0.7071068286895752 + ], + "scale":[ + 0.036488838493824005, + 0.036488842219114304, + 0.03648883476853371 + ], + "translation":[ + -0.011382579803466797, + 2.8693113327026367, + -0.007804393768310547 + ] + }, + { + "children":[ + 98 + ], + "mesh":91, + "name":"KB3D_NEC_BldgSM_A_Main.002", + "rotation":[ + 0, + 0.2071107178926468, + 0, + 0.9783176183700562 + ], + "translation":[ + -104.24923706054688, + 3.9684882164001465, + -48.306983947753906 + ] + }, + { + "extensions":{ + "KHR_lights_punctual":{ + "light":0 + } + }, + "name":"Spot.006", + "rotation":[ + -0.7071068286895752, + 0, + 0, + 0.7071068286895752 + ], + "scale":[ + 0.036488838493824005, + 0.036488842219114304, + 0.03648883476853371 + ], + "translation":[ + -0.011389732360839844, + 2.869311809539795, + -0.007794857025146484 + ] + }, + { + "children":[ + 100 + ], + "mesh":92, + "name":"KB3D_NEC_BldgSM_A_Main.003", + "rotation":[ + 0, + -0.525355339050293, + 0, + 0.8508829474449158 + ], + "translation":[ + -83.18574523925781, + 3.820565938949585, + -25.200119018554688 + ] + }, + { + "extensions":{ + "KHR_lights_punctual":{ + "light":0 + } + }, + "name":"Spot.007", + "rotation":[ + -0.7071068286895752, + 0, + 0, + 0.7071068286895752 + ], + "scale":[ + 0.036488838493824005, + 0.03648883476853371, + 0.03648883104324341 + ], + "translation":[ + -0.011387333273887634, + 2.8693110942840576, + -0.007800862193107605 + ] + }, + { + "children":[ + 102 + ], + "mesh":93, + "name":"KB3D_NEC_BldgSM_A_Main.004", + "rotation":[ + 0.007051130756735802, + -0.7128942012786865, + -0.013932871632277966, + 0.7010977268218994 + ], + "translation":[ + -16.40252685546875, + 3.7364931106567383, + -8.160037994384766 + ] + }, + { + "extensions":{ + "KHR_lights_punctual":{ + "light":0 + } + }, + "name":"Spot.008", + "rotation":[ + -0.7071068286895752, + 0, + 0, + 0.7071068286895752 + ], + "scale":[ + 0.036488838493824005, + 0.036488842219114304, + 0.03648883476853371 + ], + "translation":[ + -0.011386275291442871, + 2.8693113327026367, + -0.007799744606018066 + ] + }, + { + "children":[ + 104 + ], + "mesh":94, + "name":"KB3D_NEC_BldgSM_A_Main.005", + "rotation":[ + 0, + -0.9986899495124817, + 0, + 0.05117068439722061 + ], + "translation":[ + -6.44166898727417, + 3.7416186332702637, + -30.115169525146484 + ] + }, + { + "extensions":{ + "KHR_lights_punctual":{ + "light":0 + } + }, + "name":"Spot.009", + "rotation":[ + -0.7071068286895752, + 0, + 0, + 0.7071068286895752 + ], + "scale":[ + 0.036488838493824005, + 0.03648883476853371, + 0.03648883104324341 + ], + "translation":[ + -0.011384904384613037, + 2.869311571121216, + -0.007804602384567261 + ] + }, + { + "children":[ + 106 + ], + "mesh":95, + "name":"KB3D_NEC_BldgSM_A_Main.006", + "rotation":[ + 0.007051130756735802, + -0.7128942012786865, + -0.013932871632277966, + 0.7010977268218994 + ], + "translation":[ + -43.640357971191406, + 3.838766098022461, + -8.160037994384766 + ] + }, + { + "extensions":{ + "KHR_lights_punctual":{ + "light":0 + } + }, + "name":"Spot.012", + "rotation":[ + -0.7071068286895752, + 0, + 0, + 0.7071068286895752 + ], + "scale":[ + 0.036488842219114304, + 0.036488842219114304, + 0.03648883476853371 + ], + "translation":[ + -0.011386528611183167, + 2.8693108558654785, + -0.00780157744884491 + ] + }, + { + "children":[ + 108 + ], + "mesh":96, + "name":"KB3D_NEC_BldgSM_A_Main.007", + "rotation":[ + 0, + -0.23168011009693146, + 0, + 0.9727920293807983 + ], + "translation":[ + 4.641801834106445, + 3.726496934890747, + -68.14601135253906 + ] + }, + { + "extensions":{ + "KHR_lights_punctual":{ + "light":0 + } + }, + "name":"Spot.013", + "rotation":[ + -0.7071068286895752, + 0, + 0, + 0.7071068286895752 + ], + "scale":[ + 0.036488838493824005, + 0.036488842219114304, + 0.03648883476853371 + ], + "translation":[ + -0.01138179562985897, + 2.8693113327026367, + -0.0078033506870269775 + ] + }, + { + "children":[ + 110 + ], + "mesh":97, + "name":"KB3D_NEC_BldgSM_A_Main.008", + "rotation":[ + 0, + 0.9999990463256836, + 0, + 0.001390055287629366 + ], + "translation":[ + -36.95059585571289, + 3.846346139907837, + -31.428760528564453 + ] + }, + { + "extensions":{ + "KHR_lights_punctual":{ + "light":0 + } + }, + "name":"Spot.014", + "rotation":[ + -0.7071068286895752, + 0, + 0, + 0.7071068286895752 + ], + "scale":[ + 0.036488842219114304, + 0.0364888459444046, + 0.03648883476853371 + ], + "translation":[ + -0.011381149291992188, + 2.8693110942840576, + -0.007796287536621094 + ] + }, + { + "children":[ + 112 + ], + "mesh":98, + "name":"KB3D_NEC_BldgSM_A_Main.009", + "rotation":[ + 0, + -0.7949953079223633, + 0, + 0.6066156029701233 + ], + "translation":[ + -92.54663848876953, + 3.978684425354004, + -74.45624542236328 + ] + }, + { + "extensions":{ + "KHR_lights_punctual":{ + "light":0 + } + }, + "name":"Spot.017", + "rotation":[ + -0.7071068286895752, + 0, + 0, + 0.7071068286895752 + ], + "scale":[ + 0.036488842219114304, + 0.0364888459444046, + 0.03648883476853371 + ], + "translation":[ + -0.011384963989257812, + 2.8693113327026367, + -0.007803440093994141 + ] + }, + { + "children":[ + 114 + ], + "mesh":99, + "name":"KB3D_NEC_BldgSM_A_Main.010", + "rotation":[ + 0, + -0.7949953079223633, + 0, + 0.6066156029701233 + ], + "translation":[ + -49.08534240722656, + 3.9557416439056396, + -64.98391723632812 + ] + }, + { + "extensions":{ + "KHR_lights_punctual":{ + "light":0 + } + }, + "name":"Spot.016", + "rotation":[ + -0.7071068286895752, + 0, + 0, + 0.7071068286895752 + ], + "scale":[ + 0.036488838493824005, + 0.036488838493824005, + 0.03648883476853371 + ], + "translation":[ + -0.011388778686523438, + 2.869311809539795, + -0.007788419723510742 + ] + }, + { + "children":[ + 116 + ], + "mesh":100, + "name":"KB3D_NEC_BldgSM_A_Main.011", + "rotation":[ + 0, + 0.8174863457679749, + 0, + 0.5759480595588684 + ], + "translation":[ + -93.56513214111328, + 3.928640127182007, + -34.19023513793945 + ] + }, + { + "extensions":{ + "KHR_lights_punctual":{ + "light":0 + } + }, + "name":"Spot.018", + "rotation":[ + -0.7071068286895752, + 0, + 0, + 0.7071068286895752 + ], + "scale":[ + 0.036488842219114304, + 0.0364888459444046, + 0.03648883476853371 + ], + "translation":[ + -0.011385917663574219, + 2.8693110942840576, + -0.007803916931152344 + ] + }, + { + "children":[ + 118 + ], + "mesh":101, + "name":"KB3D_NEC_BldgSM_A_Main.012", + "rotation":[ + 0, + -0.7949953079223633, + 0, + 0.6066156029701233 + ], + "translation":[ + -27.46613311767578, + 3.4511635303497314, + -58.07468795776367 + ] + }, + { + "children":[ + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 97, + 99, + 101, + 103, + 105, + 107, + 109, + 111, + 113, + 115, + 117, + 119 + ], + "name":"KB3D_NEC_BldgSM_A_grp", + "translation":[ + -4.403480052947998, + 0, + 41.493350982666016 + ] + }, + { + "name":"KB3D_NEC_BldgLG_B_grp", + "translation":[ + -54.08367156982422, + 0, + -66.56867980957031 + ] + }, + { + "mesh":102, + "name":"KB3D_NEC_BldgLG_B_AntennaA.001", + "rotation":[ + 0, + -0.5005801916122437, + 0, + 0.8656901717185974 + ], + "translation":[ + 37.985042572021484, + 176.6616668701172, + -1.5443153381347656 + ] + }, + { + "mesh":103, + "name":"KB3D_NEC_BldgLG_B_Main.001", + "rotation":[ + 0, + -0.5005801916122437, + 0, + 0.8656901717185974 + ], + "translation":[ + 16.633365631103516, + 100.34644317626953, + 3.1488418579101562 + ] + }, + { + "children":[ + 122, + 123 + ], + "name":"KB3D_NEC_BldgLG_B_grp.001", + "rotation":[ + 0, + 0.1911706179380417, + 0, + 0.9815568327903748 + ], + "translation":[ + -93.989990234375, + 0, + 79.08940124511719 + ] + }, + { + "mesh":104, + "name":"KB3D_NEC_BldgLG_B_Main.005", + "rotation":[ + 0, + 0.542483389377594, + 0, + 0.8400665521621704 + ], + "translation":[ + -137.3184814453125, + 100.4762954711914, + 15.278658866882324 + ] + }, + { + "mesh":105, + "name":"KB3D_NEC_BldgLG_B_Main.006", + "rotation":[ + 0, + 0.8033279180526733, + 0, + 0.595537006855011 + ], + "translation":[ + 42.2158203125, + 100.4762954711914, + -54.18666076660156 + ] + }, + { + "mesh":106, + "name":"KB3D_NEC_BldgLG_B_Main.007", + "rotation":[ + 0, + 0.35255900025367737, + 0, + 0.9357895851135254 + ], + "translation":[ + -78.76304626464844, + 100.4762954711914, + -61.60002136230469 + ] + }, + { + "children":[ + 125, + 126, + 127 + ], + "name":"KB3D_NEC_BldgLG_B_grp.002", + "rotation":[ + 0, + -0.9700849056243896, + 0, + 0.24276596307754517 + ], + "translation":[ + -42.66167068481445, + 0, + 65.33953094482422 + ] + }, + { + "mesh":107, + "name":"KB3D_NEC_BldgLG_B_AntennaA.003", + "translation":[ + 6.41654109954834, + 176.6616668701172, + -7.966745376586914 + ] + }, + { + "extras":{ + "khr_physics_extra_props":{} + }, + "mesh":108, + "name":"KB3D_NEC_BldgLG_B_Main.003", + "translation":[ + -6.416542053222656, + 100.52928161621094, + 7.966744899749756 + ] + }, + { + "children":[ + 129, + 130 + ], + "name":"KB3D_NEC_BldgLG_B_grp.003", + "rotation":[ + 0, + -0.7357556819915771, + 0, + 0.6772470474243164 + ], + "translation":[ + -130.97959899902344, + 0, + -15.54619026184082 + ] + }, + { + "mesh":109, + "name":"KB3D_NEC_BldgLG_B_AntennaA.004", + "rotation":[ + 0, + 0.3243671953678131, + 0, + 0.9459313154220581 + ], + "translation":[ + -5.328226089477539, + 176.6616668701172, + -37.71941375732422 + ] + }, + { + "extras":{ + "khr_physics_extra_props":{} + }, + "mesh":110, + "name":"KB3D_NEC_BldgLG_B_Main.004", + "rotation":[ + 0, + 0.3243671953678131, + 0, + 0.9459313154220581 + ], + "translation":[ + -5.683162689208984, + 100.52928161621094, + -17.263648986816406 + ] + }, + { + "children":[ + 132, + 133 + ], + "name":"KB3D_NEC_BldgLG_B_grp.004", + "rotation":[ + 0, + -0.6338913440704346, + 0, + 0.773422122001648 + ], + "translation":[ + -125.26776123046875, + 0, + 40.19855499267578 + ] + }, + { + "mesh":111, + "name":"KB3D_NEC_BldgSM_B_Bbq.001", + "translation":[ + -1.296766996383667, + 0.27098119258880615, + -0.7084782123565674 + ] + }, + { + "mesh":112, + "name":"KB3D_NEC_BldgSM_B_Cart.001", + "translation":[ + 2.437269449234009, + 0.8677493333816528, + -0.5993194580078125 + ] + }, + { + "mesh":113, + "name":"KB3D_NEC_BldgSM_B_Computers.001", + "translation":[ + -0.33873021602630615, + 0.8714922666549683, + -2.376068353652954 + ] + }, + { + "mesh":114, + "name":"KB3D_NEC_BldgSM_B_FridgeB.002", + "translation":[ + 2.613309144973755, + 1.0310672521591187, + -1.8425912857055664 + ] + }, + { + "mesh":115, + "name":"KB3D_NEC_BldgSM_B_FridgeB.003", + "translation":[ + 2.613309144973755, + 1.0310672521591187, + -1.8425912857055664 + ] + }, + { + "name":"KB3D_NEC_BldgSM_B_grp.001", + "translation":[ + 0.624897837638855, + -0.5236392021179199, + -1.3868074417114258 + ] + }, + { + "mesh":116, + "name":"KB3D_NEC_BldgSM_B_Main.001", + "translation":[ + -0.00012302398681640625, + 1.0363093614578247, + -2.2001986503601074 + ] + }, + { + "mesh":117, + "name":"KB3D_NEC_BldgSM_B_Umbrella.001", + "translation":[ + 0.959320068359375, + 1.1993435621261597, + -1.9810059070587158 + ] + }, + { + "children":[ + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142 + ], + "mesh":118, + "name":"KB3D_NEC_BldgSM_B_FridgeA.001", + "rotation":[ + 0, + -0.8719320893287659, + 0, + 0.48962685465812683 + ], + "translation":[ + -4.680324077606201, + 1.233284592628479, + -24.09755516052246 + ] + }, + { + "extras":{ + "khr_physics_extra_props":{} + }, + "mesh":119, + "name":"KB3D_NEC_BldgMD_A_Base.008", + "translation":[ + -64.26608276367188, + 0.7497273087501526, + 18.408058166503906 + ] + }, + { + "extras":{ + "nostrads.adspace":"512x256" + }, + "mesh":120, + "name":"ad-horizontal-2:1.001", + "scale":[ + 0.08020836859941483, + 1.3122997283935547, + 0.253750741481781 + ], + "translation":[ + 82.49960327148438, + 3.5851566791534424, + 124.23027801513672 + ] + }, + { + "extras":{ + "nostrads.adspace":"256x256" + }, + "mesh":121, + "name":"ad-square-1:1-CORNER", + "translation":[ + -0.6495920419692993, + 24.9957332611084, + -10.2726411819458 + ] + }, + { + "extras":{ + "nostrads.adspace":"256x512" + }, + "mesh":122, + "name":"ad-vertical-1:2", + "translation":[ + -22.58594512939453, + 4.842442989349365, + 4.3180928230285645 + ] + }, + { + "extras":{ + "nostrads.adspace":"256x512" + }, + "mesh":123, + "name":"ad-vertical-1:2.001", + "scale":[ + 0.2244313508272171, + 2.092046022415161, + 1.0460231304168701 + ], + "translation":[ + 100.3182144165039, + -11.037616729736328, + 106.48420715332031 + ] + }, + { + "extras":{ + "nostrads.adspace":"256x512" + }, + "mesh":124, + "name":"ad-vertical-1:2.002", + "rotation":[ + -0.0029973876662552357, + 0, + 0, + 0.9999955296516418 + ], + "scale":[ + 0.07438478618860245, + 1.571457028388977, + 0.7857284545898438 + ], + "translation":[ + -11.655811309814453, + 1.573131799697876, + 29.281217575073242 + ] + }, + { + "extras":{ + "nostrads.adspace":"256x512" + }, + "mesh":125, + "name":"ad-vertical-1:2.003", + "rotation":[ + -0.002997388131916523, + 0, + 0, + 0.9999955296516418 + ], + "translation":[ + -10.813532829284668, + 2.4178690910339355, + 12.399518013000488 + ] + }, + { + "extras":{ + "nostrads.adspace":"128x512" + }, + "mesh":126, + "name":"ad-vertical-1:4", + "translation":[ + -6.47487735748291, + 26.043636322021484, + -2.4101057052612305 + ] + }, + { + "extras":{ + "nostrads.adspace":"128x512" + }, + "mesh":127, + "name":"ad-vertical-1:4.001", + "rotation":[ + -0.0029974128119647503, + 0, + 0, + 0.9999955296516418 + ], + "translation":[ + -8.144469261169434, + 4.223016262054443, + 28.176998138427734 + ] + }, + { + "extras":{ + "nostrads.adspace":"128x512" + }, + "mesh":128, + "name":"Cube.002", + "scale":[ + 0.30415648221969604, + 11.006918907165527, + 2.7517294883728027 + ], + "translation":[ + -3.2856385707855225, + 41.540000915527344, + -3.2087743282318115 + ] + }, + { + "mesh":129, + "name":"Cube.007", + "rotation":[ + 0, + 0.7071067094802856, + 0, + 0.7071068286895752 + ], + "scale":[ + 0.14558188617229462, + 4.2455668449401855, + 0.5306958556175232 + ], + "translation":[ + 4.799835205078125, + 24.873193740844727, + 2.657548427581787 + ] + }, + { + "mesh":129, + "name":"Cube.011", + "rotation":[ + 0, + 0.7071068286895752, + 0, + 0.7071068286895752 + ], + "scale":[ + 0.09387122094631195, + 2.737542152404785, + 0.34219279885292053 + ], + "translation":[ + -22.28680992126465, + 6.93889856338501, + -8.35302448272705 + ] + }, + { + "mesh":129, + "name":"Cube.012", + "rotation":[ + 0, + 0.7071068286895752, + 0, + 0.7071068286895752 + ], + "scale":[ + 0.09387122094631195, + 2.737542152404785, + 0.34219279885292053 + ], + "translation":[ + -22.28484344482422, + 6.920875072479248, + 8.477919578552246 + ] + }, + { + "mesh":130, + "name":"KB3D_NEC_BldgMD_C_AntennaA", + "translation":[ + -16.800029754638672, + 23.262380599975586, + -6.65806770324707 + ] + }, + { + "name":"KB3D_NEC_BldgMD_C_Banners", + "translation":[ + 30.16000747680664, + 4.417466163635254, + 0.21693989634513855 + ] + }, + { + "mesh":131, + "name":"KB3D_NEC_BldgMD_C_BuildingA", + "translation":[ + -29.441614151000977, + 7.939004421234131, + -7.25642204284668 + ] + }, + { + "name":"KB3D_NEC_BldgMD_C_grp", + "translation":[ + -2.9520599842071533, + -1.1460087299346924, + -2.4908313751220703 + ] + }, + { + "mesh":132, + "name":"KB3D_NEC_BldgMD_C_Main", + "translation":[ + 1.3213694095611572, + 29.109434127807617, + 1.2433886528015137 + ] + }, + { + "mesh":133, + "name":"KB3D_NEC_BldgMD_C_Main.005", + "translation":[ + 1.3213694095611572, + 29.109434127807617, + 1.2433886528015137 + ] + }, + { + "children":[ + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162 + ], + "mesh":134, + "name":"KB3D_NEC_BldgMD_C_Base", + "translation":[ + 2.0167236328125, + 1.1460087299346924, + 1.4849135875701904 + ] + }, + { + "extensions":{ + "KHR_lights_punctual":{ + "light":0 + } + }, + "name":"Spot", + "rotation":[ + -0.8329480290412903, + -0.11793193221092224, + -0.012149025686085224, + 0.5405016541481018 + ], + "scale":[ + 0.9849900603294373, + 0.9849898815155029, + 0.9849897623062134 + ], + "translation":[ + -69.47421264648438, + 38.201969146728516, + 2.2309834957122803 + ] + }, + { + "extensions":{ + "KHR_lights_punctual":{ + "light":0 + } + }, + "name":"Spot.001", + "rotation":[ + -0.6585838794708252, + 0.28285834193229675, + 0.5269050598144531, + 0.4567597508430481 + ], + "scale":[ + 0.9849899411201477, + 0.9849900603294373, + 0.9849898815155029 + ], + "translation":[ + -62.01778030395508, + 56.64187240600586, + -5.543141841888428 + ] + }, + { + "extensions":{ + "KHR_lights_punctual":{ + "light":0 + } + }, + "name":"Spot.003", + "rotation":[ + -0.6182053089141846, + -0.5447755455970764, + 0.3804803490638733, + 0.4198529124259949 + ], + "scale":[ + 0.9849898219108582, + 0.9849899411201477, + 0.9849898815155029 + ], + "translation":[ + -45.80729675292969, + 4.686117649078369, + -10.656914710998535 + ] + }, + { + "extensions":{ + "KHR_lights_punctual":{ + "light":0 + } + }, + "name":"Spot.011", + "rotation":[ + -0.30581870675086975, + 0.6443518996238708, + 0.037795539945364, + 0.6998978853225708 + ], + "scale":[ + 0.9849898815155029, + 0.9849899411201477, + 0.9849899411201477 + ], + "translation":[ + 1.7450013160705566, + 10.40025520324707, + 31.93206787109375 + ] + }, + { + "children":[ + 163, + 164, + 165, + 166, + 167 + ], + "name":"building1", + "rotation":[ + -0.00017575937090441585, + 0.9927507042884827, + 0.00011566369357751682, + 0.12019134312868118 + ], + "translation":[ + -66.32818603515625, + 0.4580608308315277, + -9.095222473144531 + ] + }, + { + "extensions":{ + "KHR_lights_punctual":{ + "light":0 + } + }, + "name":"Spot.002", + "rotation":[ + -0.1550506055355072, + 0.4920886158943176, + 0.8358222842216492, + 0.18764141201972961 + ], + "scale":[ + 0.1812320202589035, + 0.1812320202589035, + 0.1812320202589035 + ], + "translation":[ + -53.17839050292969, + 5.587972640991211, + 31.452985763549805 + ] + }, + { + "extensions":{ + "KHR_lights_punctual":{ + "light":2 + } + }, + "name":"Point", + "rotation":[ + -0.5535145401954651, + 0.4400246739387512, + 0.44002464413642883, + 0.5535145401954651 + ], + "translation":[ + -50.972225189208984, + 3.7526559829711914, + 33.42327880859375 + ] + }, + { + "extensions":{ + "KHR_lights_punctual":{ + "light":3 + } + }, + "name":"Point.002", + "rotation":[ + -0.11921872198581696, + -0.6969841718673706, + -0.6969841718673706, + 0.11921872198581696 + ], + "translation":[ + -35.39210891723633, + 2.020979404449463, + 36.24635696411133 + ] + }, + { + "extensions":{ + "KHR_lights_punctual":{ + "light":3 + } + }, + "name":"Point.001", + "rotation":[ + -0.3462184965610504, + -0.6165490746498108, + -0.6165491342544556, + 0.346218466758728 + ], + "translation":[ + -4.868515491485596, + 2.020979404449463, + -20.6192569732666 + ] + }, + { + "extras":{ + "nge.worldguard":1.0 + }, + "mesh":135, + "name":"Cube.001", + "rotation":[ + 0, + 1, + 0, + 0 + ], + "scale":[ + -39.06550216674805, + -23.438140869140625, + -1 + ], + "translation":[ + -40.6312255859375, + 24.005542755126953, + 31.342357635498047 + ] + }, + { + "extras":{ + "nge.worldguard":1.0 + }, + "mesh":135, + "name":"Cube.013", + "rotation":[ + 0, + 0.7071068286895752, + 0, + 0.7071068286895752 + ], + "scale":[ + -39.06550216674805, + -23.438140869140625, + -1 + ], + "translation":[ + -8.819954872131348, + 24.005542755126953, + -7.1360321044921875 + ] + }, + { + "extras":{ + "nge.worldguard":1.0 + }, + "mesh":135, + "name":"Cube.020", + "rotation":[ + 0, + -0.11274567246437073, + 0, + 0.9936239719390869 + ], + "scale":[ + -5.277557849884033, + -23.438140869140625, + -0.9747192859649658 + ], + "translation":[ + -14.164031028747559, + 24.005542755126953, + -13.615999221801758 + ] + }, + { + "extras":{ + "nge.worldguard":1.0 + }, + "mesh":135, + "name":"Cube.021", + "rotation":[ + 0, + -0.41863659024238586, + 0, + 0.9081538319587708 + ], + "scale":[ + -11.786422729492188, + -23.438140869140625, + -0.9747192859649658 + ], + "translation":[ + -25.708282470703125, + 24.005542755126953, + -23.088205337524414 + ] + }, + { + "extras":{ + "nge.worldguard":1.0 + }, + "mesh":135, + "name":"Cube.022", + "rotation":[ + 0, + 0.09429927170276642, + 0, + 0.995543897151947 + ], + "scale":[ + -10.99034309387207, + -23.438140869140625, + -0.9747191667556763 + ], + "translation":[ + -40.58260726928711, + 24.005542755126953, + -27.380298614501953 + ] + }, + { + "extras":{ + "nge.worldguard":1.0 + }, + "mesh":135, + "name":"Cube.023", + "rotation":[ + 0, + -0.6628784537315369, + 0, + 0.748727023601532 + ], + "scale":[ + -8.062198638916016, + -23.438140869140625, + -0.9747191667556763 + ], + "translation":[ + -51.42726135253906, + 24.005542755126953, + -32.74676513671875 + ] + }, + { + "extras":{ + "nge.worldguard":1.0 + }, + "mesh":135, + "name":"Cube.024", + "rotation":[ + 0, + -0.025248752906918526, + 0, + 0.999681293964386 + ], + "scale":[ + -34.415557861328125, + -23.438140869140625, + -0.9896469712257385 + ], + "translation":[ + -84.5498046875, + 24.005542755126953, + -36.88136291503906 + ] + }, + { + "extras":{ + "nge.worldguard":1.0 + }, + "mesh":135, + "name":"Cube.025", + "rotation":[ + 0, + -0.7335389256477356, + 0, + 0.6796474456787109 + ], + "scale":[ + -24.253263473510742, + -23.438140869140625, + -0.9896469712257385 + ], + "translation":[ + -117.58411407470703, + 24.005542755126953, + -17.522541046142578 + ] + }, + { + "extras":{ + "nge.worldguard":1.0 + }, + "mesh":135, + "name":"Cube.026", + "rotation":[ + 0, + 0.9479331374168396, + 0, + 0.31846943497657776 + ], + "scale":[ + -33.740684509277344, + -23.438140869140625, + -0.9896472096443176 + ], + "translation":[ + -96.21965026855469, + 24.005542755126953, + 13.495052337646484 + ] + }, + { + "extras":{ + "nge.worldguard":1.0 + }, + "mesh":135, + "name":"Cube.027", + "rotation":[ + 0.09534790366888046, + 0.6240152716636658, + -0.7719318270683289, + 0.07506653666496277 + ], + "scale":[ + -4.245939254760742, + -2.5207314491271973, + -0.13479794561862946 + ], + "translation":[ + -37.0944938659668, + 1.2372535467147827, + -14.180143356323242 + ] + }, + { + "extras":{ + "nge.worldguard":1.0 + }, + "mesh":135, + "name":"Cube.028", + "rotation":[ + 0, + 0.9923849701881409, + 0, + 0.1231750026345253 + ], + "scale":[ + -34.62065887451172, + -0.6358435750007629, + -10.780585289001465 + ], + "translation":[ + -68.7391586303711, + 1.2920312881469727, + -8.507768630981445 + ] + }, + { + "extras":{ + "nge.worldguard":1.0 + }, + "mesh":135, + "name":"Cube.029", + "rotation":[ + 0, + 0.9923849701881409, + 0, + 0.1231750100851059 + ], + "scale":[ + -30.038061141967773, + -0.6358435750007629, + -2.677978515625 + ], + "translation":[ + -70.08171081542969, + 1.2920312881469727, + -22.681720733642578 + ] + }, + { + "extras":{ + "nge.worldguard":1.0 + }, + "mesh":135, + "name":"Cube.030", + "rotation":[ + 0.1231750100851059, + 0, + -0.9923849701881409, + 0 + ], + "scale":[ + 0.6124448180198669, + 0.6358435750007629, + 2.677978277206421 + ], + "translation":[ + -32.477928161621094, + 1.2920312881469727, + -13.200884819030762 + ] + }, + { + "extras":{ + "nge.worldguard":1.0 + }, + "mesh":135, + "name":"Cube.031", + "rotation":[ + 0, + 0.9923850297927856, + 0, + 0.1231749951839447 + ], + "scale":[ + -25.299009323120117, + -17.272192001342773, + -10.855093002319336 + ], + "translation":[ + -69.81575012207031, + 18.640968322753906, + -12.328254699707031 + ] + }, + { + "extras":{ + "nge.worldguard":1.0 + }, + "mesh":135, + "name":"Cube.032", + "rotation":[ + 0, + 0.9923849701881409, + 0, + 0.1231750100851059 + ], + "scale":[ + -3.44742751121521, + -10.204642295837402, + -2.455735445022583 + ], + "translation":[ + -41.247657775878906, + 11.68050765991211, + 3.430664539337158 + ] + }, + { + "extras":{ + "nge.worldguard":1.0 + }, + "mesh":135, + "name":"Cube.033", + "rotation":[ + 0.9923849701881409, + 0, + 0.1231750026345253, + 0 + ], + "scale":[ + 71.65241241455078, + 0.2856121361255646, + 48.767879486083984 + ], + "translation":[ + -68.7391586303711, + 0.71437668800354, + -8.507768630981445 + ] + }, + { + "extras":{ + "nostrads.adspace":"256x512" + }, + "mesh":124, + "name":"ad-vertical-1:2.002", + "rotation":[ + -0.0029973878990858793, + 0, + 0, + 0.9999955296516418 + ], + "scale":[ + 0.07438479363918304, + 1.571457028388977, + 0.7857285141944885 + ], + "translation":[ + -9.639095306396484, + 2.7191405296325684, + 30.76613426208496 + ] + }, + { + "extras":{ + "nostrads.adspace":"256x512" + }, + "mesh":125, + "name":"ad-vertical-1:2.003", + "rotation":[ + -0.0029973878990858793, + 0, + 0, + 0.9999955296516418 + ], + "translation":[ + -8.796817779541016, + 3.563878297805786, + 13.884431838989258 + ] + }, + { + "extras":{ + "nostrads.adspace":"128x512" + }, + "mesh":127, + "name":"ad-vertical-1:4.001", + "rotation":[ + -0.0029974125791341066, + 0, + 0, + 0.9999955296516418 + ], + "translation":[ + -6.127750396728516, + 5.369025230407715, + 29.66191291809082 + ] + }, + { + "mesh":136, + "name":"KB3D_NEC_BldgLG_C_Main.017", + "rotation":[ + 0, + -0.6069969534873962, + 0, + 0.7947041988372803 + ], + "translation":[ + -0.0008544921875, + 71.90023803710938, + 141.85723876953125 + ] + }, + { + "mesh":137, + "name":"Cube" + } + ], + "materials":[ + { + "doubleSided":true, + "name":"ad512x256", + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":0 + }, + "metallicFactor":0.06818182021379471 + } + }, + { + "alphaMode":"BLEND", + "doubleSided":true, + "name":"KB3D_NEC_DecalSheet", + "normalTexture":{ + "index":1 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":2 + }, + "metallicRoughnessTexture":{ + "index":3 + } + } + }, + { + "doubleSided":true, + "emissiveFactor":[ + 1, + 1, + 1 + ], + "emissiveTexture":{ + "index":4 + }, + "name":"KB3D_NEC_LightBlue", + "normalTexture":{ + "index":5 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":6 + }, + "metallicRoughnessTexture":{ + "index":7 + } + } + }, + { + "doubleSided":true, + "name":"KB3D_NEC_PaintBlack", + "normalTexture":{ + "index":8 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":9 + }, + "metallicRoughnessTexture":{ + "index":10 + } + } + }, + { + "doubleSided":true, + "name":"KB3D_NEC_PaintBlue", + "normalTexture":{ + "index":11 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":12 + }, + "metallicRoughnessTexture":{ + "index":13 + } + } + }, + { + "doubleSided":true, + "name":"KB3D_NEC_PaintWhiteRusty", + "normalTexture":{ + "index":14 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":15 + }, + "metallicRoughnessTexture":{ + "index":16 + } + } + }, + { + "doubleSided":true, + "name":"KB3D_NEC_Rubber", + "normalTexture":{ + "index":17 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":18 + }, + "metallicRoughnessTexture":{ + "index":19 + } + } + }, + { + "doubleSided":true, + "name":"KB3D_NEC_SteelRaw", + "normalTexture":{ + "index":20 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":21 + }, + "metallicRoughnessTexture":{ + "index":22 + } + } + }, + { + "doubleSided":true, + "name":"KB3D_NEC_RedWhiteStripes", + "normalTexture":{ + "index":23 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":24 + }, + "metallicRoughnessTexture":{ + "index":25 + } + } + }, + { + "doubleSided":true, + "name":"KB3D_NEC_Cardboard", + "normalTexture":{ + "index":26 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":27 + }, + "metallicRoughnessTexture":{ + "index":28 + } + } + }, + { + "doubleSided":true, + "name":"KB3D_NEC_PaintRed", + "normalTexture":{ + "index":29 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":30 + }, + "metallicRoughnessTexture":{ + "index":31 + } + } + }, + { + "doubleSided":true, + "name":"KB3D_NEC_GlassBottle", + "normalTexture":{ + "index":32 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":33 + }, + "metallicRoughnessTexture":{ + "index":34 + } + } + }, + { + "doubleSided":true, + "name":"KB3D_NEC_Wood", + "normalTexture":{ + "index":35 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":36 + }, + "metallicRoughnessTexture":{ + "index":37 + } + } + }, + { + "doubleSided":true, + "name":"KB3D_NEC_PlasticWhite", + "normalTexture":{ + "index":38 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":39 + }, + "metallicRoughnessTexture":{ + "index":40 + } + } + }, + { + "alphaMode":"BLEND", + "doubleSided":true, + "emissiveFactor":[ + 1, + 1, + 1 + ], + "emissiveTexture":{ + "index":41 + }, + "name":"KB3D_NEC_Screens", + "normalTexture":{ + "index":42 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":43 + }, + "metallicRoughnessTexture":{ + "index":44 + } + } + }, + { + "doubleSided":true, + "emissiveFactor":[ + 1, + 1, + 1 + ], + "emissiveTexture":{ + "index":45 + }, + "name":"KB3D_NEC_LightRed", + "normalTexture":{ + "index":46 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":47 + }, + "metallicRoughnessTexture":{ + "index":48 + } + } + }, + { + "doubleSided":true, + "name":"KB3D_NEC_WoodLacquered", + "normalTexture":{ + "index":49 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":50 + }, + "metallicRoughnessTexture":{ + "index":51 + } + } + }, + { + "doubleSided":true, + "name":"KB3D_NEC_ConcreteTiles", + "normalTexture":{ + "index":52 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":53 + }, + "metallicRoughnessTexture":{ + "index":54 + } + } + }, + { + "doubleSided":true, + "name":"KB3D_NEC_LightWhite", + "normalTexture":{ + "index":55 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":56 + }, + "metallicRoughnessTexture":{ + "index":57 + } + } + }, + { + "doubleSided":true, + "name":"KB3D_NEC_PlasticBlack", + "normalTexture":{ + "index":58 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":59 + }, + "metallicRoughnessTexture":{ + "index":60 + } + } + }, + { + "doubleSided":true, + "name":"KB3D_NEC_Concrete", + "normalTexture":{ + "index":61 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":62 + }, + "metallicRoughnessTexture":{ + "index":63 + } + } + }, + { + "doubleSided":true, + "name":"KB3D_NEC_BlackCloth", + "normalTexture":{ + "index":64 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":65 + }, + "metallicRoughnessTexture":{ + "index":66 + } + } + }, + { + "doubleSided":true, + "name":"KB3D_NEC_Brass", + "normalTexture":{ + "index":67 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":68 + }, + "metallicRoughnessTexture":{ + "index":69 + } + } + }, + { + "doubleSided":true, + "name":"KB3D_NEC_PaperWhite", + "normalTexture":{ + "index":70 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":71 + }, + "metallicRoughnessTexture":{ + "index":72 + } + } + }, + { + "doubleSided":true, + "name":"KB3D_NEC_PlasticYellow", + "normalTexture":{ + "index":73 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":74 + }, + "metallicRoughnessTexture":{ + "index":75 + } + } + }, + { + "doubleSided":true, + "name":"KB3D_NEC_GlassBlack", + "normalTexture":{ + "index":76 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":77 + }, + "metallicRoughnessTexture":{ + "index":78 + } + } + }, + { + "doubleSided":true, + "name":"KB3D_NEC_LightYellow", + "normalTexture":{ + "index":79 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":80 + }, + "metallicRoughnessTexture":{ + "index":81 + } + } + }, + { + "doubleSided":true, + "name":"KB3D_NEC_AirCon", + "normalTexture":{ + "index":82 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":83 + }, + "metallicRoughnessTexture":{ + "index":84 + } + } + }, + { + "doubleSided":true, + "name":"KB3D_NEC_ConcreteWall", + "normalTexture":{ + "index":85 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":86 + }, + "metallicRoughnessTexture":{ + "index":87 + } + } + }, + { + "doubleSided":true, + "name":"KB3D_NEC_DecorConcreteCBeige", + "normalTexture":{ + "index":88 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":89 + }, + "metallicRoughnessTexture":{ + "index":90 + } + } + }, + { + "doubleSided":true, + "name":"KB3D_NEC_DecorConcreteCWhite", + "normalTexture":{ + "index":91 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":92 + }, + "metallicRoughnessTexture":{ + "index":93 + } + } + }, + { + "doubleSided":true, + "name":"KB3D_NEC_GalvanizedSteelDirt", + "normalTexture":{ + "index":94 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":95 + }, + "metallicRoughnessTexture":{ + "index":96 + } + } + }, + { + "doubleSided":true, + "name":"KB3D_NEC_GlassTinted", + "normalTexture":{ + "index":97 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":98 + }, + "metallicRoughnessTexture":{ + "index":99 + } + } + }, + { + "doubleSided":true, + "name":"KB3D_NEC_LeavesBush", + "normalTexture":{ + "index":100 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":101 + }, + "metallicRoughnessTexture":{ + "index":102 + } + } + }, + { + "doubleSided":true, + "name":"KB3D_NEC_MetalDarkWorn", + "normalTexture":{ + "index":103 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":104 + }, + "metallicRoughnessTexture":{ + "index":105 + } + } + }, + { + "doubleSided":true, + "name":"KB3D_NEC_MetalLightGreyWorn", + "normalTexture":{ + "index":106 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":107 + }, + "metallicRoughnessTexture":{ + "index":108 + } + } + }, + { + "doubleSided":true, + "name":"KB3D_NEC_MetalPaintWhiteWorn", + "normalTexture":{ + "index":109 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":110 + }, + "metallicRoughnessTexture":{ + "index":111 + } + } + }, + { + "doubleSided":true, + "name":"KB3D_NEC_MetalPaintWorn", + "normalTexture":{ + "index":112 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":113 + }, + "metallicRoughnessTexture":{ + "index":114 + } + } + }, + { + "doubleSided":true, + "name":"KB3D_NEC_TarpA", + "normalTexture":{ + "index":115 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":116 + }, + "metallicRoughnessTexture":{ + "index":117 + } + } + }, + { + "doubleSided":true, + "name":"KB3D_NEC_WhitePanels", + "normalTexture":{ + "index":118 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":119 + }, + "metallicRoughnessTexture":{ + "index":120 + } + } + }, + { + "doubleSided":true, + "name":"KB3D_NEC_WoodDarkGreyTower", + "normalTexture":{ + "index":121 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":122 + }, + "metallicRoughnessTexture":{ + "index":123 + } + } + }, + { + "doubleSided":true, + "name":"KB3D_NEC_GalvanizedSteel", + "normalTexture":{ + "index":124 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":125 + }, + "metallicRoughnessTexture":{ + "index":126 + } + } + }, + { + "doubleSided":true, + "name":"KB3D_NEC_BannerA", + "normalTexture":{ + "index":127 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":128 + }, + "metallicRoughnessTexture":{ + "index":129 + } + } + }, + { + "doubleSided":true, + "name":"KB3D_NEC_OxidizedSteel", + "normalTexture":{ + "index":130 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":131 + }, + "metallicRoughnessTexture":{ + "index":132 + } + } + }, + { + "doubleSided":true, + "name":"KB3D_NEC_PaintedMetal", + "normalTexture":{ + "index":133 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":134 + }, + "metallicRoughnessTexture":{ + "index":135 + } + } + }, + { + "doubleSided":true, + "name":"KB3D_NEC_SatinSteel", + "normalTexture":{ + "index":136 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":137 + }, + "metallicRoughnessTexture":{ + "index":138 + } + } + }, + { + "doubleSided":true, + "name":"KB3D_NEC_ConcreteA", + "normalTexture":{ + "index":139 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":140 + }, + "metallicRoughnessTexture":{ + "index":141 + } + } + }, + { + "doubleSided":true, + "name":"KB3D_NEC_AsphaltHexagonRoof", + "normalTexture":{ + "index":142 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":143 + }, + "metallicRoughnessTexture":{ + "index":144 + } + } + }, + { + "doubleSided":true, + "name":"KB3D_NEC_MetalAccent", + "normalTexture":{ + "index":145 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":146 + }, + "metallicRoughnessTexture":{ + "index":147 + } + } + }, + { + "alphaMode":"BLEND", + "doubleSided":true, + "name":"KB3D_NEC_MetalGrating", + "normalTexture":{ + "index":148 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":149 + }, + "metallicRoughnessTexture":{ + "index":150 + } + } + }, + { + "doubleSided":true, + "name":"KB3D_NEC_ConcreteB", + "normalTexture":{ + "index":151 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":152 + }, + "metallicRoughnessTexture":{ + "index":153 + } + } + }, + { + "doubleSided":true, + "emissiveFactor":[ + 1, + 1, + 1 + ], + "emissiveTexture":{ + "index":154 + }, + "name":"KB3D_NEC_LightsA", + "normalTexture":{ + "index":155 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":156 + }, + "metallicRoughnessTexture":{ + "index":157 + } + } + }, + { + "doubleSided":true, + "name":"KB3D_NEC_SpeedwayTiles", + "normalTexture":{ + "index":158 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":159 + }, + "metallicRoughnessTexture":{ + "index":160 + } + } + }, + { + "doubleSided":true, + "name":"KB3D_NEC_StreetTiles", + "normalTexture":{ + "index":161 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":162 + }, + "metallicRoughnessTexture":{ + "index":163 + } + } + }, + { + "doubleSided":true, + "name":"KB3D_NEC_DarkPanels", + "normalTexture":{ + "index":164 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":165 + }, + "metallicRoughnessTexture":{ + "index":166 + } + } + }, + { + "doubleSided":true, + "name":"KB3D_NEC_GlassLamps", + "normalTexture":{ + "index":167 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":168 + }, + "metallicRoughnessTexture":{ + "index":169 + } + } + }, + { + "doubleSided":true, + "name":"KB3D_NEC_MetalPaintRed", + "normalTexture":{ + "index":170 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":171 + }, + "metallicRoughnessTexture":{ + "index":172 + } + } + }, + { + "doubleSided":true, + "name":"KB3D_NEC_MetalPaintYellow", + "normalTexture":{ + "index":173 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":174 + }, + "metallicRoughnessTexture":{ + "index":175 + } + } + }, + { + "doubleSided":true, + "name":"KB3D_NEC_TreeWalnutBark", + "normalTexture":{ + "index":176 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":177 + }, + "metallicRoughnessTexture":{ + "index":178 + } + } + }, + { + "alphaMode":"BLEND", + "doubleSided":true, + "name":"KB3D_NEC_TreeWlnutLeaf", + "normalTexture":{ + "index":179 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":180 + }, + "metallicRoughnessTexture":{ + "index":181 + } + } + }, + { + "doubleSided":true, + "name":"KB3D_NEC_DecorConcreteB", + "normalTexture":{ + "index":182 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":183 + }, + "metallicRoughnessTexture":{ + "index":184 + } + } + }, + { + "doubleSided":true, + "name":"ad512x512", + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":185 + }, + "metallicFactor":0.06818182021379471 + } + }, + { + "doubleSided":true, + "name":"ad256x512", + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":186 + }, + "metallicFactor":0.06818182021379471 + } + }, + { + "doubleSided":true, + "name":"ad128x512", + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":187 + }, + "metallicFactor":0.06818182021379471 + } + }, + { + "doubleSided":true, + "name":"KB3D_NEC_Letters", + "normalTexture":{ + "index":188 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":189 + }, + "metallicRoughnessTexture":{ + "index":190 + } + } + }, + { + "alphaMode":"BLEND", + "doubleSided":true, + "name":"Material.001", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.8000937700271606, + 0.5112466216087341, + 0, + 0.7128205299377441 + ], + "metallicFactor":0, + "roughnessFactor":0.5 + } + }, + { + "doubleSided":true, + "name":"Material", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.800000011920929, + 0.800000011920929, + 0.800000011920929, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.4000000059604645 + } + } + ], + "meshes":[ + { + "name":"Cube.018", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2, + "TANGENT":3 + }, + "indices":4, + "material":0 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_C_AC", + "primitives":[ + { + "attributes":{ + "POSITION":5, + "NORMAL":6, + "TEXCOORD_0":7, + "TEXCOORD_1":8, + "TANGENT":9 + }, + "indices":10, + "material":1 + }, + { + "attributes":{ + "POSITION":11, + "NORMAL":12, + "TEXCOORD_0":13, + "TEXCOORD_1":14, + "TANGENT":15 + }, + "indices":16, + "material":2 + }, + { + "attributes":{ + "POSITION":17, + "NORMAL":18, + "TEXCOORD_0":19, + "TEXCOORD_1":20, + "TANGENT":21 + }, + "indices":22, + "material":3 + }, + { + "attributes":{ + "POSITION":23, + "NORMAL":24, + "TEXCOORD_0":25, + "TEXCOORD_1":26, + "TANGENT":27 + }, + "indices":28, + "material":4 + }, + { + "attributes":{ + "POSITION":29, + "NORMAL":30, + "TEXCOORD_0":31, + "TEXCOORD_1":32, + "TANGENT":33 + }, + "indices":34, + "material":5 + }, + { + "attributes":{ + "POSITION":35, + "NORMAL":36, + "TEXCOORD_0":37, + "TEXCOORD_1":38, + "TANGENT":39 + }, + "indices":40, + "material":6 + }, + { + "attributes":{ + "POSITION":41, + "NORMAL":42, + "TEXCOORD_0":43, + "TEXCOORD_1":44, + "TANGENT":45 + }, + "indices":46, + "material":7 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_C_Boxes", + "primitives":[ + { + "attributes":{ + "POSITION":47, + "NORMAL":48, + "TEXCOORD_0":49, + "TEXCOORD_1":50, + "TANGENT":51 + }, + "indices":52, + "material":1 + }, + { + "attributes":{ + "POSITION":53, + "NORMAL":54, + "TEXCOORD_0":55, + "TEXCOORD_1":56, + "TANGENT":57 + }, + "indices":58, + "material":8 + }, + { + "attributes":{ + "POSITION":59, + "NORMAL":60, + "TEXCOORD_0":61, + "TEXCOORD_1":62, + "TANGENT":63 + }, + "indices":64, + "material":9 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_C_Containers", + "primitives":[ + { + "attributes":{ + "POSITION":65, + "NORMAL":66, + "TEXCOORD_0":67, + "TEXCOORD_1":68, + "TANGENT":69 + }, + "indices":70, + "material":3 + }, + { + "attributes":{ + "POSITION":71, + "NORMAL":72, + "TEXCOORD_0":73, + "TEXCOORD_1":74, + "TANGENT":75 + }, + "indices":76, + "material":10 + }, + { + "attributes":{ + "POSITION":77, + "NORMAL":78, + "TEXCOORD_0":79, + "TEXCOORD_1":80, + "TANGENT":81 + }, + "indices":82, + "material":5 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_C_CratesA", + "primitives":[ + { + "attributes":{ + "POSITION":83, + "NORMAL":84, + "TEXCOORD_0":85, + "TEXCOORD_1":86, + "TANGENT":87 + }, + "indices":88, + "material":1 + }, + { + "attributes":{ + "POSITION":89, + "NORMAL":90, + "TEXCOORD_0":91, + "TEXCOORD_1":92, + "TANGENT":93 + }, + "indices":94, + "material":11 + }, + { + "attributes":{ + "POSITION":95, + "NORMAL":96, + "TEXCOORD_0":97, + "TEXCOORD_1":98, + "TANGENT":99 + }, + "indices":100, + "material":12 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_C_CratesB", + "primitives":[ + { + "attributes":{ + "POSITION":101, + "NORMAL":102, + "TEXCOORD_0":103, + "TEXCOORD_1":104, + "TANGENT":105 + }, + "indices":106, + "material":12 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_C_Fan", + "primitives":[ + { + "attributes":{ + "POSITION":107, + "NORMAL":108, + "TEXCOORD_0":109, + "TEXCOORD_1":110, + "TANGENT":111 + }, + "indices":112, + "material":3 + }, + { + "attributes":{ + "POSITION":113, + "NORMAL":114, + "TEXCOORD_0":115, + "TEXCOORD_1":116, + "TANGENT":117 + }, + "indices":118, + "material":13 + }, + { + "attributes":{ + "POSITION":119, + "NORMAL":120, + "TEXCOORD_0":121, + "TEXCOORD_1":122, + "TANGENT":123 + }, + "indices":124, + "material":6 + }, + { + "attributes":{ + "POSITION":125, + "NORMAL":126, + "TEXCOORD_0":127, + "TEXCOORD_1":128, + "TANGENT":129 + }, + "indices":130, + "material":7 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_C_NeonSignA", + "primitives":[ + { + "attributes":{ + "POSITION":131, + "NORMAL":132, + "TEXCOORD_0":133, + "TEXCOORD_1":134, + "TANGENT":135 + }, + "indices":136, + "material":3 + }, + { + "attributes":{ + "POSITION":137, + "NORMAL":138, + "TEXCOORD_0":139, + "TEXCOORD_1":140, + "TANGENT":141 + }, + "indices":142, + "material":4 + }, + { + "attributes":{ + "POSITION":143, + "NORMAL":144, + "TEXCOORD_0":145, + "TEXCOORD_1":146, + "TANGENT":147 + }, + "indices":148, + "material":6 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_C_NeonSignA.001", + "primitives":[ + { + "attributes":{ + "POSITION":149, + "NORMAL":150, + "TEXCOORD_0":151, + "TEXCOORD_1":152, + "TANGENT":153 + }, + "indices":154, + "material":1 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_C_NeonSignB", + "primitives":[ + { + "attributes":{ + "POSITION":155, + "NORMAL":156, + "TEXCOORD_0":157, + "TEXCOORD_1":158, + "TANGENT":159 + }, + "indices":160, + "material":4 + }, + { + "attributes":{ + "POSITION":161, + "NORMAL":162, + "TEXCOORD_0":163, + "TEXCOORD_1":164, + "TANGENT":165 + }, + "indices":166, + "material":14 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_C_NeonSignC", + "primitives":[ + { + "attributes":{ + "POSITION":167, + "NORMAL":168, + "TEXCOORD_0":169, + "TEXCOORD_1":170, + "TANGENT":171 + }, + "indices":172, + "material":1 + }, + { + "attributes":{ + "POSITION":173, + "NORMAL":174, + "TEXCOORD_0":175, + "TEXCOORD_1":176, + "TANGENT":177 + }, + "indices":178, + "material":15 + }, + { + "attributes":{ + "POSITION":179, + "NORMAL":180, + "TEXCOORD_0":181, + "TEXCOORD_1":182, + "TANGENT":183 + }, + "indices":184, + "material":3 + }, + { + "attributes":{ + "POSITION":185, + "NORMAL":186, + "TEXCOORD_0":187, + "TEXCOORD_1":188, + "TANGENT":189 + }, + "indices":190, + "material":4 + }, + { + "attributes":{ + "POSITION":191, + "NORMAL":192, + "TEXCOORD_0":193, + "TEXCOORD_1":194, + "TANGENT":195 + }, + "indices":196, + "material":10 + }, + { + "attributes":{ + "POSITION":197, + "NORMAL":198, + "TEXCOORD_0":199, + "TEXCOORD_1":200, + "TANGENT":201 + }, + "indices":202, + "material":6 + }, + { + "attributes":{ + "POSITION":203, + "NORMAL":204, + "TEXCOORD_0":205, + "TEXCOORD_1":206, + "TANGENT":207 + }, + "indices":208, + "material":14 + }, + { + "attributes":{ + "POSITION":209, + "NORMAL":210, + "TEXCOORD_0":211, + "TEXCOORD_1":212, + "TANGENT":213 + }, + "indices":214, + "material":7 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_C_Pipes", + "primitives":[ + { + "attributes":{ + "POSITION":215, + "NORMAL":216, + "TEXCOORD_0":217, + "TEXCOORD_1":218, + "TANGENT":219 + }, + "indices":220, + "material":1 + }, + { + "attributes":{ + "POSITION":221, + "NORMAL":222, + "TEXCOORD_0":223, + "TEXCOORD_1":224, + "TANGENT":225 + }, + "indices":226, + "material":4 + }, + { + "attributes":{ + "POSITION":227, + "NORMAL":228, + "TEXCOORD_0":229, + "TEXCOORD_1":230, + "TANGENT":231 + }, + "indices":232, + "material":7 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_C_Shelf", + "primitives":[ + { + "attributes":{ + "POSITION":233, + "NORMAL":234, + "TEXCOORD_0":235, + "TEXCOORD_1":236, + "TANGENT":237 + }, + "indices":238, + "material":1 + }, + { + "attributes":{ + "POSITION":239, + "NORMAL":240, + "TEXCOORD_0":241, + "TEXCOORD_1":242, + "TANGENT":243 + }, + "indices":244, + "material":11 + }, + { + "attributes":{ + "POSITION":245, + "NORMAL":246, + "TEXCOORD_0":247, + "TEXCOORD_1":248, + "TANGENT":249 + }, + "indices":250, + "material":12 + }, + { + "attributes":{ + "POSITION":251, + "NORMAL":252, + "TEXCOORD_0":253, + "TEXCOORD_1":254, + "TANGENT":255 + }, + "indices":256, + "material":16 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_C_Stool", + "primitives":[ + { + "attributes":{ + "POSITION":257, + "NORMAL":258, + "TEXCOORD_0":259, + "TEXCOORD_1":260, + "TANGENT":261 + }, + "indices":262, + "material":1 + }, + { + "attributes":{ + "POSITION":263, + "NORMAL":264, + "TEXCOORD_0":265, + "TEXCOORD_1":266, + "TANGENT":267 + }, + "indices":268, + "material":11 + }, + { + "attributes":{ + "POSITION":269, + "NORMAL":270, + "TEXCOORD_0":271, + "TEXCOORD_1":272, + "TANGENT":273 + }, + "indices":274, + "material":12 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_C_Main", + "primitives":[ + { + "attributes":{ + "POSITION":275, + "NORMAL":276, + "TEXCOORD_0":277, + "TEXCOORD_1":278, + "TANGENT":279 + }, + "indices":280, + "material":17 + }, + { + "attributes":{ + "POSITION":281, + "NORMAL":282, + "TEXCOORD_0":283, + "TEXCOORD_1":284, + "TANGENT":285 + }, + "indices":286, + "material":1 + }, + { + "attributes":{ + "POSITION":287, + "NORMAL":288, + "TEXCOORD_0":289, + "TEXCOORD_1":290, + "TANGENT":291 + }, + "indices":292, + "material":11 + }, + { + "attributes":{ + "POSITION":293, + "NORMAL":294, + "TEXCOORD_0":295, + "TEXCOORD_1":296, + "TANGENT":297 + }, + "indices":298, + "material":2 + }, + { + "attributes":{ + "POSITION":299, + "NORMAL":300, + "TEXCOORD_0":301, + "TEXCOORD_1":302, + "TANGENT":303 + }, + "indices":304, + "material":15 + }, + { + "attributes":{ + "POSITION":305, + "NORMAL":306, + "TEXCOORD_0":307, + "TEXCOORD_1":308, + "TANGENT":309 + }, + "indices":310, + "material":18 + }, + { + "attributes":{ + "POSITION":311, + "NORMAL":312, + "TEXCOORD_0":313, + "TEXCOORD_1":314, + "TANGENT":315 + }, + "indices":316, + "material":3 + }, + { + "attributes":{ + "POSITION":317, + "NORMAL":318, + "TEXCOORD_0":319, + "TEXCOORD_1":320, + "TANGENT":321 + }, + "indices":322, + "material":4 + }, + { + "attributes":{ + "POSITION":323, + "NORMAL":324, + "TEXCOORD_0":325, + "TEXCOORD_1":326, + "TANGENT":327 + }, + "indices":328, + "material":10 + }, + { + "attributes":{ + "POSITION":329, + "NORMAL":330, + "TEXCOORD_0":331, + "TEXCOORD_1":332, + "TANGENT":333 + }, + "indices":334, + "material":19 + }, + { + "attributes":{ + "POSITION":335, + "NORMAL":336, + "TEXCOORD_0":337, + "TEXCOORD_1":338, + "TANGENT":339 + }, + "indices":340, + "material":13 + }, + { + "attributes":{ + "POSITION":341, + "NORMAL":342, + "TEXCOORD_0":343, + "TEXCOORD_1":344, + "TANGENT":345 + }, + "indices":346, + "material":6 + }, + { + "attributes":{ + "POSITION":347, + "NORMAL":348, + "TEXCOORD_0":349, + "TEXCOORD_1":350, + "TANGENT":351 + }, + "indices":352, + "material":7 + }, + { + "attributes":{ + "POSITION":353, + "NORMAL":354, + "TEXCOORD_0":355, + "TEXCOORD_1":356, + "TANGENT":357 + }, + "indices":358, + "material":12 + }, + { + "attributes":{ + "POSITION":359, + "NORMAL":360, + "TEXCOORD_0":361, + "TEXCOORD_1":362, + "TANGENT":363 + }, + "indices":364, + "material":20 + }, + { + "attributes":{ + "POSITION":365, + "NORMAL":366, + "TEXCOORD_0":367, + "TEXCOORD_1":368, + "TANGENT":369 + }, + "indices":370, + "material":16 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_B_Bbq", + "primitives":[ + { + "attributes":{ + "POSITION":371, + "NORMAL":372, + "TEXCOORD_0":373, + "TEXCOORD_1":374, + "TANGENT":375 + }, + "indices":376, + "material":1 + }, + { + "attributes":{ + "POSITION":377, + "NORMAL":378, + "TEXCOORD_0":379, + "TEXCOORD_1":380, + "TANGENT":381 + }, + "indices":382, + "material":15 + }, + { + "attributes":{ + "POSITION":383, + "NORMAL":384, + "TEXCOORD_0":385, + "TEXCOORD_1":386, + "TANGENT":387 + }, + "indices":388, + "material":3 + }, + { + "attributes":{ + "POSITION":389, + "NORMAL":390, + "TEXCOORD_0":391, + "TEXCOORD_1":392, + "TANGENT":393 + }, + "indices":394, + "material":10 + }, + { + "attributes":{ + "POSITION":395, + "NORMAL":396, + "TEXCOORD_0":397, + "TEXCOORD_1":398, + "TANGENT":399 + }, + "indices":400, + "material":6 + }, + { + "attributes":{ + "POSITION":401, + "NORMAL":402, + "TEXCOORD_0":403, + "TEXCOORD_1":404, + "TANGENT":405 + }, + "indices":406, + "material":7 + }, + { + "attributes":{ + "POSITION":407, + "NORMAL":408, + "TEXCOORD_0":409, + "TEXCOORD_1":410, + "TANGENT":411 + }, + "indices":412, + "material":12 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_B_Cart", + "primitives":[ + { + "attributes":{ + "POSITION":413, + "NORMAL":414, + "TEXCOORD_0":415, + "TEXCOORD_1":416, + "TANGENT":417 + }, + "indices":418, + "material":1 + }, + { + "attributes":{ + "POSITION":419, + "NORMAL":420, + "TEXCOORD_0":421, + "TEXCOORD_1":422, + "TANGENT":423 + }, + "indices":424, + "material":21 + }, + { + "attributes":{ + "POSITION":425, + "NORMAL":426, + "TEXCOORD_0":427, + "TEXCOORD_1":428, + "TANGENT":429 + }, + "indices":430, + "material":22 + }, + { + "attributes":{ + "POSITION":431, + "NORMAL":432, + "TEXCOORD_0":433, + "TEXCOORD_1":434, + "TANGENT":435 + }, + "indices":436, + "material":19 + }, + { + "attributes":{ + "POSITION":437, + "NORMAL":438, + "TEXCOORD_0":439, + "TEXCOORD_1":440, + "TANGENT":441 + }, + "indices":442, + "material":6 + }, + { + "attributes":{ + "POSITION":443, + "NORMAL":444, + "TEXCOORD_0":445, + "TEXCOORD_1":446, + "TANGENT":447 + }, + "indices":448, + "material":7 + }, + { + "attributes":{ + "POSITION":449, + "NORMAL":450, + "TEXCOORD_0":451, + "TEXCOORD_1":452, + "TANGENT":453 + }, + "indices":454, + "material":12 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_B_Computers", + "primitives":[ + { + "attributes":{ + "POSITION":455, + "NORMAL":456, + "TEXCOORD_0":457, + "TEXCOORD_1":458, + "TANGENT":459 + }, + "indices":460, + "material":15 + }, + { + "attributes":{ + "POSITION":461, + "NORMAL":462, + "TEXCOORD_0":463, + "TEXCOORD_1":464, + "TANGENT":465 + }, + "indices":466, + "material":10 + }, + { + "attributes":{ + "POSITION":467, + "NORMAL":468, + "TEXCOORD_0":469, + "TEXCOORD_1":470, + "TANGENT":471 + }, + "indices":472, + "material":19 + }, + { + "attributes":{ + "POSITION":473, + "NORMAL":474, + "TEXCOORD_0":475, + "TEXCOORD_1":476, + "TANGENT":477 + }, + "indices":478, + "material":6 + }, + { + "attributes":{ + "POSITION":479, + "NORMAL":480, + "TEXCOORD_0":481, + "TEXCOORD_1":482, + "TANGENT":483 + }, + "indices":484, + "material":7 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_B_FridgeB", + "primitives":[ + { + "attributes":{ + "POSITION":485, + "NORMAL":486, + "TEXCOORD_0":487, + "TEXCOORD_1":488, + "TANGENT":489 + }, + "indices":490, + "material":1 + }, + { + "attributes":{ + "POSITION":491, + "NORMAL":492, + "TEXCOORD_0":493, + "TEXCOORD_1":494, + "TANGENT":495 + }, + "indices":496, + "material":15 + }, + { + "attributes":{ + "POSITION":497, + "NORMAL":498, + "TEXCOORD_0":499, + "TEXCOORD_1":500, + "TANGENT":501 + }, + "indices":502, + "material":3 + }, + { + "attributes":{ + "POSITION":503, + "NORMAL":504, + "TEXCOORD_0":505, + "TEXCOORD_1":506, + "TANGENT":507 + }, + "indices":508, + "material":10 + }, + { + "attributes":{ + "POSITION":509, + "NORMAL":510, + "TEXCOORD_0":511, + "TEXCOORD_1":512, + "TANGENT":513 + }, + "indices":514, + "material":23 + }, + { + "attributes":{ + "POSITION":515, + "NORMAL":516, + "TEXCOORD_0":517, + "TEXCOORD_1":518, + "TANGENT":519 + }, + "indices":520, + "material":19 + }, + { + "attributes":{ + "POSITION":521, + "NORMAL":522, + "TEXCOORD_0":523, + "TEXCOORD_1":524, + "TANGENT":525 + }, + "indices":526, + "material":13 + }, + { + "attributes":{ + "POSITION":527, + "NORMAL":528, + "TEXCOORD_0":529, + "TEXCOORD_1":530, + "TANGENT":531 + }, + "indices":532, + "material":24 + }, + { + "attributes":{ + "POSITION":533, + "NORMAL":534, + "TEXCOORD_0":535, + "TEXCOORD_1":536, + "TANGENT":537 + }, + "indices":538, + "material":6 + }, + { + "attributes":{ + "POSITION":539, + "NORMAL":540, + "TEXCOORD_0":541, + "TEXCOORD_1":542, + "TANGENT":543 + }, + "indices":544, + "material":7 + }, + { + "attributes":{ + "POSITION":545, + "NORMAL":546, + "TEXCOORD_0":547, + "TEXCOORD_1":548, + "TANGENT":549 + }, + "indices":550, + "material":12 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_B_FridgeB.001", + "primitives":[ + { + "attributes":{ + "POSITION":551, + "NORMAL":552, + "TEXCOORD_0":553, + "TEXCOORD_1":554, + "TANGENT":555 + }, + "indices":154, + "material":14 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_B_Main", + "primitives":[ + { + "attributes":{ + "POSITION":556, + "NORMAL":557, + "TEXCOORD_0":558, + "TEXCOORD_1":559, + "TANGENT":560 + }, + "indices":561, + "material":1 + }, + { + "attributes":{ + "POSITION":562, + "NORMAL":563, + "TEXCOORD_0":564, + "TEXCOORD_1":565, + "TANGENT":566 + }, + "indices":567, + "material":25 + }, + { + "attributes":{ + "POSITION":568, + "NORMAL":569, + "TEXCOORD_0":570, + "TEXCOORD_1":571, + "TANGENT":572 + }, + "indices":573, + "material":11 + }, + { + "attributes":{ + "POSITION":574, + "NORMAL":575, + "TEXCOORD_0":576, + "TEXCOORD_1":577, + "TANGENT":578 + }, + "indices":579, + "material":15 + }, + { + "attributes":{ + "POSITION":580, + "NORMAL":581, + "TEXCOORD_0":582, + "TEXCOORD_1":583, + "TANGENT":584 + }, + "indices":585, + "material":3 + }, + { + "attributes":{ + "POSITION":586, + "NORMAL":587, + "TEXCOORD_0":588, + "TEXCOORD_1":589, + "TANGENT":590 + }, + "indices":591, + "material":10 + }, + { + "attributes":{ + "POSITION":592, + "NORMAL":593, + "TEXCOORD_0":594, + "TEXCOORD_1":595, + "TANGENT":596 + }, + "indices":597, + "material":23 + }, + { + "attributes":{ + "POSITION":598, + "NORMAL":599, + "TEXCOORD_0":600, + "TEXCOORD_1":601, + "TANGENT":602 + }, + "indices":603, + "material":19 + }, + { + "attributes":{ + "POSITION":604, + "NORMAL":605, + "TEXCOORD_0":606, + "TEXCOORD_1":607, + "TANGENT":608 + }, + "indices":609, + "material":13 + }, + { + "attributes":{ + "POSITION":610, + "NORMAL":611, + "TEXCOORD_0":612, + "TEXCOORD_1":613, + "TANGENT":614 + }, + "indices":615, + "material":6 + }, + { + "attributes":{ + "POSITION":616, + "NORMAL":617, + "TEXCOORD_0":618, + "TEXCOORD_1":619, + "TANGENT":620 + }, + "indices":621, + "material":7 + }, + { + "attributes":{ + "POSITION":622, + "NORMAL":623, + "TEXCOORD_0":624, + "TEXCOORD_1":625, + "TANGENT":626 + }, + "indices":627, + "material":12 + }, + { + "attributes":{ + "POSITION":628, + "NORMAL":629, + "TEXCOORD_0":630, + "TEXCOORD_1":631, + "TANGENT":632 + }, + "indices":633, + "material":16 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_B_Umbrella", + "primitives":[ + { + "attributes":{ + "POSITION":634, + "NORMAL":635, + "TEXCOORD_0":636, + "TEXCOORD_1":637, + "TANGENT":638 + }, + "indices":639, + "material":18 + }, + { + "attributes":{ + "POSITION":640, + "NORMAL":641, + "TEXCOORD_0":642, + "TEXCOORD_1":643, + "TANGENT":644 + }, + "indices":645, + "material":26 + }, + { + "attributes":{ + "POSITION":646, + "NORMAL":647, + "TEXCOORD_0":648, + "TEXCOORD_1":649, + "TANGENT":650 + }, + "indices":651, + "material":21 + }, + { + "attributes":{ + "POSITION":652, + "NORMAL":653, + "TEXCOORD_0":654, + "TEXCOORD_1":655, + "TANGENT":656 + }, + "indices":657, + "material":3 + }, + { + "attributes":{ + "POSITION":658, + "NORMAL":659, + "TEXCOORD_0":660, + "TEXCOORD_1":661, + "TANGENT":662 + }, + "indices":663, + "material":22 + }, + { + "attributes":{ + "POSITION":664, + "NORMAL":665, + "TEXCOORD_0":666, + "TEXCOORD_1":667, + "TANGENT":668 + }, + "indices":669, + "material":19 + }, + { + "attributes":{ + "POSITION":670, + "NORMAL":671, + "TEXCOORD_0":672, + "TEXCOORD_1":673, + "TANGENT":674 + }, + "indices":675, + "material":13 + }, + { + "attributes":{ + "POSITION":676, + "NORMAL":677, + "TEXCOORD_0":678, + "TEXCOORD_1":679, + "TANGENT":680 + }, + "indices":681, + "material":6 + }, + { + "attributes":{ + "POSITION":682, + "NORMAL":683, + "TEXCOORD_0":684, + "TEXCOORD_1":685, + "TANGENT":686 + }, + "indices":687, + "material":7 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_B_FridgeA", + "primitives":[ + { + "attributes":{ + "POSITION":688, + "NORMAL":689, + "TEXCOORD_0":690, + "TEXCOORD_1":691, + "TANGENT":692 + }, + "indices":693, + "material":1 + }, + { + "attributes":{ + "POSITION":694, + "NORMAL":695, + "TEXCOORD_0":696, + "TEXCOORD_1":697, + "TANGENT":698 + }, + "indices":699, + "material":25 + }, + { + "attributes":{ + "POSITION":700, + "NORMAL":701, + "TEXCOORD_0":702, + "TEXCOORD_1":703, + "TANGENT":704 + }, + "indices":705, + "material":2 + }, + { + "attributes":{ + "POSITION":706, + "NORMAL":707, + "TEXCOORD_0":708, + "TEXCOORD_1":709, + "TANGENT":710 + }, + "indices":711, + "material":3 + }, + { + "attributes":{ + "POSITION":712, + "NORMAL":713, + "TEXCOORD_0":714, + "TEXCOORD_1":715, + "TANGENT":716 + }, + "indices":717, + "material":10 + }, + { + "attributes":{ + "POSITION":718, + "NORMAL":719, + "TEXCOORD_0":720, + "TEXCOORD_1":721, + "TANGENT":722 + }, + "indices":723, + "material":23 + }, + { + "attributes":{ + "POSITION":724, + "NORMAL":725, + "TEXCOORD_0":726, + "TEXCOORD_1":727, + "TANGENT":728 + }, + "indices":729, + "material":19 + }, + { + "attributes":{ + "POSITION":730, + "NORMAL":731, + "TEXCOORD_0":732, + "TEXCOORD_1":733, + "TANGENT":734 + }, + "indices":735, + "material":13 + }, + { + "attributes":{ + "POSITION":736, + "NORMAL":737, + "TEXCOORD_0":738, + "TEXCOORD_1":739, + "TANGENT":740 + }, + "indices":154, + "material":14 + }, + { + "attributes":{ + "POSITION":741, + "NORMAL":742, + "TEXCOORD_0":743, + "TEXCOORD_1":744, + "TANGENT":745 + }, + "indices":746, + "material":7 + }, + { + "attributes":{ + "POSITION":747, + "NORMAL":748, + "TEXCOORD_0":749, + "TEXCOORD_1":750, + "TANGENT":751 + }, + "indices":752, + "material":12 + } + ] + }, + { + "name":"KB3D_NEC_BldgMD_B_Main", + "primitives":[ + { + "attributes":{ + "POSITION":753, + "NORMAL":754, + "TEXCOORD_0":755, + "TEXCOORD_1":756, + "TANGENT":757, + "COLOR_0":758, + "COLOR_1":759, + "COLOR_2":760 + }, + "indices":761, + "material":27 + }, + { + "attributes":{ + "POSITION":762, + "NORMAL":763, + "TEXCOORD_0":764, + "TEXCOORD_1":765, + "TANGENT":766, + "COLOR_0":767, + "COLOR_1":768, + "COLOR_2":769 + }, + "indices":770, + "material":28 + }, + { + "attributes":{ + "POSITION":771, + "NORMAL":772, + "TEXCOORD_0":773, + "TEXCOORD_1":774, + "TANGENT":775, + "COLOR_0":776, + "COLOR_1":777, + "COLOR_2":778 + }, + "indices":779, + "material":29 + }, + { + "attributes":{ + "POSITION":780, + "NORMAL":781, + "TEXCOORD_0":782, + "TEXCOORD_1":783, + "TANGENT":784, + "COLOR_0":785, + "COLOR_1":786, + "COLOR_2":787 + }, + "indices":788, + "material":30 + }, + { + "attributes":{ + "POSITION":789, + "NORMAL":790, + "TEXCOORD_0":791, + "TEXCOORD_1":792, + "TANGENT":793, + "COLOR_0":794, + "COLOR_1":795, + "COLOR_2":796 + }, + "indices":797, + "material":31 + }, + { + "attributes":{ + "POSITION":798, + "NORMAL":799, + "TEXCOORD_0":800, + "TEXCOORD_1":801, + "TANGENT":802, + "COLOR_0":803, + "COLOR_1":804, + "COLOR_2":805 + }, + "indices":806, + "material":32 + }, + { + "attributes":{ + "POSITION":807, + "NORMAL":808, + "TEXCOORD_0":809, + "TEXCOORD_1":810, + "TANGENT":811, + "COLOR_0":812, + "COLOR_1":813, + "COLOR_2":814 + }, + "indices":815, + "material":33 + }, + { + "attributes":{ + "POSITION":816, + "NORMAL":817, + "TEXCOORD_0":818, + "TEXCOORD_1":819, + "TANGENT":820, + "COLOR_0":821, + "COLOR_1":822, + "COLOR_2":823 + }, + "indices":824, + "material":34 + }, + { + "attributes":{ + "POSITION":825, + "NORMAL":826, + "TEXCOORD_0":827, + "TEXCOORD_1":828, + "TANGENT":829, + "COLOR_0":830, + "COLOR_1":831, + "COLOR_2":832 + }, + "indices":833, + "material":35 + }, + { + "attributes":{ + "POSITION":834, + "NORMAL":835, + "TEXCOORD_0":836, + "TEXCOORD_1":837, + "TANGENT":838, + "COLOR_0":839, + "COLOR_1":840, + "COLOR_2":841 + }, + "indices":842, + "material":36 + }, + { + "attributes":{ + "POSITION":843, + "NORMAL":844, + "TEXCOORD_0":845, + "TEXCOORD_1":846, + "TANGENT":847, + "COLOR_0":848, + "COLOR_1":849, + "COLOR_2":850 + }, + "indices":851, + "material":37 + }, + { + "attributes":{ + "POSITION":852, + "NORMAL":853, + "TEXCOORD_0":854, + "TEXCOORD_1":855, + "TANGENT":856, + "COLOR_0":857, + "COLOR_1":858, + "COLOR_2":859 + }, + "indices":860, + "material":38 + }, + { + "attributes":{ + "POSITION":861, + "NORMAL":862, + "TEXCOORD_0":863, + "TEXCOORD_1":864, + "TANGENT":865, + "COLOR_0":866, + "COLOR_1":867, + "COLOR_2":868 + }, + "indices":869, + "material":39 + }, + { + "attributes":{ + "POSITION":870, + "NORMAL":871, + "TEXCOORD_0":872, + "TEXCOORD_1":873, + "TANGENT":874, + "COLOR_0":875, + "COLOR_1":876, + "COLOR_2":877 + }, + "indices":878, + "material":40 + } + ] + }, + { + "name":"KB3D_NEC_BldgMD_A_AntennaA", + "primitives":[ + { + "attributes":{ + "POSITION":879, + "NORMAL":880, + "TEXCOORD_0":881, + "TEXCOORD_1":882, + "TANGENT":883 + }, + "indices":884, + "material":41 + } + ] + }, + { + "name":"KB3D_NEC_BldgMD_A_Banners", + "primitives":[ + { + "attributes":{ + "POSITION":885, + "NORMAL":886, + "TEXCOORD_0":887, + "TEXCOORD_1":888, + "TANGENT":889 + }, + "indices":890, + "material":42 + }, + { + "attributes":{ + "POSITION":891, + "NORMAL":892, + "TEXCOORD_0":893, + "TEXCOORD_1":894, + "TANGENT":895 + }, + "indices":896, + "material":43 + }, + { + "attributes":{ + "POSITION":897, + "NORMAL":898, + "TEXCOORD_0":899, + "TEXCOORD_1":900, + "TANGENT":901 + }, + "indices":902, + "material":44 + }, + { + "attributes":{ + "POSITION":903, + "NORMAL":904, + "TEXCOORD_0":905, + "TEXCOORD_1":906, + "TANGENT":907 + }, + "indices":908, + "material":45 + }, + { + "attributes":{ + "POSITION":909, + "NORMAL":910, + "TEXCOORD_0":911, + "TEXCOORD_1":912, + "TANGENT":913 + }, + "indices":914, + "material":46 + } + ] + }, + { + "name":"KB3D_NEC_BldgMD_A_Banners.001", + "primitives":[ + { + "attributes":{ + "POSITION":915, + "NORMAL":916, + "TEXCOORD_0":917, + "TEXCOORD_1":918, + "TANGENT":919 + }, + "indices":920, + "material":42 + } + ] + }, + { + "name":"KB3D_NEC_BldgMD_A_Main", + "primitives":[ + { + "attributes":{ + "POSITION":921, + "NORMAL":922, + "TEXCOORD_0":923, + "TEXCOORD_1":924, + "TANGENT":925 + }, + "indices":926, + "material":47 + }, + { + "attributes":{ + "POSITION":927, + "NORMAL":928, + "TEXCOORD_0":929, + "TEXCOORD_1":930, + "TANGENT":931 + }, + "indices":932, + "material":41 + }, + { + "attributes":{ + "POSITION":933, + "NORMAL":934, + "TEXCOORD_0":935, + "TEXCOORD_1":936, + "TANGENT":937 + }, + "indices":938, + "material":25 + }, + { + "attributes":{ + "POSITION":939, + "NORMAL":940, + "TEXCOORD_0":941, + "TEXCOORD_1":942, + "TANGENT":943 + }, + "indices":944, + "material":42 + }, + { + "attributes":{ + "POSITION":945, + "NORMAL":946, + "TEXCOORD_0":947, + "TEXCOORD_1":948, + "TANGENT":949 + }, + "indices":950, + "material":48 + }, + { + "attributes":{ + "POSITION":951, + "NORMAL":952, + "TEXCOORD_0":953, + "TEXCOORD_1":954, + "TANGENT":955 + }, + "indices":956, + "material":49 + }, + { + "attributes":{ + "POSITION":957, + "NORMAL":958, + "TEXCOORD_0":959, + "TEXCOORD_1":960, + "TANGENT":961 + }, + "indices":962, + "material":43 + }, + { + "attributes":{ + "POSITION":963, + "NORMAL":964, + "TEXCOORD_0":965, + "TEXCOORD_1":966, + "TANGENT":967 + }, + "indices":968, + "material":44 + }, + { + "attributes":{ + "POSITION":969, + "NORMAL":970, + "TEXCOORD_0":971, + "TEXCOORD_1":972, + "TANGENT":973 + }, + "indices":974, + "material":45 + }, + { + "attributes":{ + "POSITION":975, + "NORMAL":976, + "TEXCOORD_0":977, + "TEXCOORD_1":978, + "TANGENT":979 + }, + "indices":980, + "material":46 + }, + { + "attributes":{ + "POSITION":981, + "NORMAL":982, + "TEXCOORD_0":983, + "TEXCOORD_1":984, + "TANGENT":985 + }, + "indices":986, + "material":50 + } + ] + }, + { + "name":"KB3D_NEC_BldgMD_A_Main.001", + "primitives":[ + { + "attributes":{ + "POSITION":987, + "NORMAL":988, + "TEXCOORD_0":989, + "TEXCOORD_1":990, + "TANGENT":991 + }, + "indices":992, + "material":42 + } + ] + }, + { + "name":"KB3D_NEC_BldgMD_A_Main.002", + "primitives":[ + { + "attributes":{ + "POSITION":993, + "NORMAL":994, + "TEXCOORD_0":995, + "TEXCOORD_1":996, + "TANGENT":997 + }, + "indices":998, + "material":42 + } + ] + }, + { + "name":"KB3D_NEC_BldgMD_A_Main.003", + "primitives":[ + { + "attributes":{ + "POSITION":999, + "NORMAL":1000, + "TEXCOORD_0":1001, + "TEXCOORD_1":1002, + "TANGENT":1003 + }, + "indices":1004, + "material":42 + } + ] + }, + { + "name":"KB3D_NEC_BldgMD_A_Base", + "primitives":[ + { + "attributes":{ + "POSITION":1005, + "NORMAL":1006, + "TEXCOORD_0":1007, + "TEXCOORD_1":1008, + "TANGENT":1009 + }, + "indices":1010, + "material":41 + }, + { + "attributes":{ + "POSITION":1011, + "NORMAL":1012, + "TEXCOORD_0":1013, + "TEXCOORD_1":1014, + "TANGENT":1015 + }, + "indices":1016, + "material":42 + }, + { + "attributes":{ + "POSITION":1017, + "NORMAL":1018, + "TEXCOORD_0":1019, + "TEXCOORD_1":1020, + "TANGENT":1021 + }, + "indices":1022, + "material":51 + }, + { + "attributes":{ + "POSITION":1023, + "NORMAL":1024, + "TEXCOORD_0":1025, + "TEXCOORD_1":1026, + "TANGENT":1027 + }, + "indices":1028, + "material":48 + }, + { + "attributes":{ + "POSITION":1029, + "NORMAL":1030, + "TEXCOORD_0":1031, + "TEXCOORD_1":1032, + "TANGENT":1033 + }, + "indices":1034, + "material":44 + }, + { + "attributes":{ + "POSITION":1035, + "NORMAL":1036, + "TEXCOORD_0":1037, + "TEXCOORD_1":1038, + "TANGENT":1039 + }, + "indices":1040, + "material":52 + }, + { + "attributes":{ + "POSITION":1041, + "NORMAL":1042, + "TEXCOORD_0":1043, + "TEXCOORD_1":1044, + "TANGENT":1045 + }, + "indices":1046, + "material":46 + } + ] + }, + { + "name":"KB3D_NEC_BldgLG_A_Base", + "primitives":[ + { + "attributes":{ + "POSITION":1047, + "NORMAL":1048, + "TEXCOORD_0":1049, + "TEXCOORD_1":1050, + "TANGENT":1051, + "COLOR_0":1052, + "COLOR_1":1053, + "COLOR_2":1054 + }, + "indices":1055, + "material":28 + }, + { + "attributes":{ + "POSITION":1056, + "NORMAL":1057, + "TEXCOORD_0":1058, + "TEXCOORD_1":1059, + "TANGENT":1060, + "COLOR_0":1061, + "COLOR_1":1062, + "COLOR_2":1063 + }, + "indices":1064, + "material":53 + } + ] + }, + { + "name":"KB3D_NEC_BldgLG_A_BuildingA", + "primitives":[ + { + "attributes":{ + "POSITION":1065, + "NORMAL":1066, + "TEXCOORD_0":1067, + "TEXCOORD_1":1068, + "TANGENT":1069, + "COLOR_0":1070, + "COLOR_1":1071, + "COLOR_2":1072 + }, + "indices":1073, + "material":27 + }, + { + "attributes":{ + "POSITION":1074, + "NORMAL":1075, + "TEXCOORD_0":1076, + "TEXCOORD_1":1077, + "TANGENT":1078, + "COLOR_0":1079, + "COLOR_1":1080, + "COLOR_2":1081 + }, + "indices":1082, + "material":28 + }, + { + "attributes":{ + "POSITION":1083, + "NORMAL":1084, + "TEXCOORD_0":1085, + "TEXCOORD_1":1086, + "TANGENT":1087, + "COLOR_0":1088, + "COLOR_1":1089, + "COLOR_2":1090 + }, + "indices":1091, + "material":54 + }, + { + "attributes":{ + "POSITION":1092, + "NORMAL":1093, + "TEXCOORD_0":1094, + "TEXCOORD_1":1095, + "TANGENT":1096, + "COLOR_0":1097, + "COLOR_1":1098, + "COLOR_2":1099 + }, + "indices":1100, + "material":31 + }, + { + "attributes":{ + "POSITION":1101, + "NORMAL":1102, + "TEXCOORD_0":1103, + "TEXCOORD_1":1104, + "TANGENT":1105, + "COLOR_0":1106, + "COLOR_1":1107, + "COLOR_2":1108 + }, + "indices":1109, + "material":25 + }, + { + "attributes":{ + "POSITION":1110, + "NORMAL":1111, + "TEXCOORD_0":1112, + "TEXCOORD_1":1113, + "TANGENT":1114, + "COLOR_0":1115, + "COLOR_1":1116, + "COLOR_2":1117 + }, + "indices":1118, + "material":55 + }, + { + "attributes":{ + "POSITION":1119, + "NORMAL":1120, + "TEXCOORD_0":1121, + "TEXCOORD_1":1122, + "TANGENT":1123, + "COLOR_0":1124, + "COLOR_1":1125, + "COLOR_2":1126 + }, + "indices":1127, + "material":32 + }, + { + "attributes":{ + "POSITION":1128, + "NORMAL":1129, + "TEXCOORD_0":1130, + "TEXCOORD_1":1131, + "TANGENT":1132, + "COLOR_0":1133, + "COLOR_1":1134, + "COLOR_2":1135 + }, + "indices":1136, + "material":35 + }, + { + "attributes":{ + "POSITION":1137, + "NORMAL":1138, + "TEXCOORD_0":1139, + "TEXCOORD_1":1140, + "TANGENT":1141, + "COLOR_0":1142, + "COLOR_1":1143, + "COLOR_2":1144 + }, + "indices":1145, + "material":36 + }, + { + "attributes":{ + "POSITION":1146, + "NORMAL":1147, + "TEXCOORD_0":1148, + "TEXCOORD_1":1149, + "TANGENT":1150, + "COLOR_0":1151, + "COLOR_1":1152, + "COLOR_2":1153 + }, + "indices":1154, + "material":37 + }, + { + "attributes":{ + "POSITION":1155, + "NORMAL":1156, + "TEXCOORD_0":1157, + "TEXCOORD_1":1158, + "TANGENT":1159, + "COLOR_0":1160, + "COLOR_1":1161, + "COLOR_2":1162 + }, + "indices":1163, + "material":38 + }, + { + "attributes":{ + "POSITION":1164, + "NORMAL":1165, + "TEXCOORD_0":1166, + "TEXCOORD_1":1167, + "TANGENT":1168, + "COLOR_0":1169, + "COLOR_1":1170, + "COLOR_2":1171 + }, + "indices":1172, + "material":39 + } + ] + }, + { + "name":"KB3D_NEC_BldgLG_A_BuildingA", + "primitives":[ + { + "attributes":{ + "POSITION":1173, + "NORMAL":1174, + "TEXCOORD_0":1175, + "TEXCOORD_1":1176, + "TANGENT":1177, + "COLOR_0":1178, + "COLOR_1":1179, + "COLOR_2":1180 + }, + "indices":1073, + "material":27 + }, + { + "attributes":{ + "POSITION":1181, + "NORMAL":1182, + "TEXCOORD_0":1183, + "TEXCOORD_1":1184, + "TANGENT":1185, + "COLOR_0":1186, + "COLOR_1":1187, + "COLOR_2":1188 + }, + "indices":1082, + "material":28 + }, + { + "attributes":{ + "POSITION":1189, + "NORMAL":1190, + "TEXCOORD_0":1191, + "TEXCOORD_1":1192, + "TANGENT":1193, + "COLOR_0":1194, + "COLOR_1":1195, + "COLOR_2":1196 + }, + "indices":1091, + "material":54 + }, + { + "attributes":{ + "POSITION":1197, + "NORMAL":1198, + "TEXCOORD_0":1199, + "TEXCOORD_1":1200, + "TANGENT":1201, + "COLOR_0":1202, + "COLOR_1":1203, + "COLOR_2":1204 + }, + "indices":1100, + "material":31 + }, + { + "attributes":{ + "POSITION":1205, + "NORMAL":1206, + "TEXCOORD_0":1207, + "TEXCOORD_1":1208, + "TANGENT":1209, + "COLOR_0":1210, + "COLOR_1":1211, + "COLOR_2":1212 + }, + "indices":1109, + "material":25 + }, + { + "attributes":{ + "POSITION":1213, + "NORMAL":1214, + "TEXCOORD_0":1215, + "TEXCOORD_1":1216, + "TANGENT":1217, + "COLOR_0":1218, + "COLOR_1":1219, + "COLOR_2":1220 + }, + "indices":1118, + "material":55 + }, + { + "attributes":{ + "POSITION":1221, + "NORMAL":1222, + "TEXCOORD_0":1223, + "TEXCOORD_1":1224, + "TANGENT":1225, + "COLOR_0":1226, + "COLOR_1":1227, + "COLOR_2":1228 + }, + "indices":1127, + "material":32 + }, + { + "attributes":{ + "POSITION":1229, + "NORMAL":1230, + "TEXCOORD_0":1231, + "TEXCOORD_1":1232, + "TANGENT":1233, + "COLOR_0":1234, + "COLOR_1":1235, + "COLOR_2":1236 + }, + "indices":1136, + "material":35 + }, + { + "attributes":{ + "POSITION":1237, + "NORMAL":1238, + "TEXCOORD_0":1239, + "TEXCOORD_1":1240, + "TANGENT":1241, + "COLOR_0":1242, + "COLOR_1":1243, + "COLOR_2":1244 + }, + "indices":1145, + "material":36 + }, + { + "attributes":{ + "POSITION":1245, + "NORMAL":1246, + "TEXCOORD_0":1247, + "TEXCOORD_1":1248, + "TANGENT":1249, + "COLOR_0":1250, + "COLOR_1":1251, + "COLOR_2":1252 + }, + "indices":1154, + "material":37 + }, + { + "attributes":{ + "POSITION":1253, + "NORMAL":1254, + "TEXCOORD_0":1255, + "TEXCOORD_1":1256, + "TANGENT":1257, + "COLOR_0":1258, + "COLOR_1":1259, + "COLOR_2":1260 + }, + "indices":1163, + "material":38 + }, + { + "attributes":{ + "POSITION":1261, + "NORMAL":1262, + "TEXCOORD_0":1263, + "TEXCOORD_1":1264, + "TANGENT":1265, + "COLOR_0":1266, + "COLOR_1":1267, + "COLOR_2":1268 + }, + "indices":1172, + "material":39 + } + ] + }, + { + "name":"KB3D_NEC_BldgLG_A_BuildingB.001", + "primitives":[ + { + "attributes":{ + "POSITION":1269, + "NORMAL":1270, + "TEXCOORD_0":1271, + "TEXCOORD_1":1272, + "TANGENT":1273, + "COLOR_0":1274, + "COLOR_1":1275, + "COLOR_2":1276 + }, + "indices":1277, + "material":27 + }, + { + "attributes":{ + "POSITION":1278, + "NORMAL":1279, + "TEXCOORD_0":1280, + "TEXCOORD_1":1281, + "TANGENT":1282, + "COLOR_0":1283, + "COLOR_1":1284, + "COLOR_2":1285 + }, + "indices":1286, + "material":28 + }, + { + "attributes":{ + "POSITION":1287, + "NORMAL":1288, + "TEXCOORD_0":1289, + "TEXCOORD_1":1290, + "TANGENT":1291, + "COLOR_0":1292, + "COLOR_1":1293, + "COLOR_2":1294 + }, + "indices":1295, + "material":54 + }, + { + "attributes":{ + "POSITION":1296, + "NORMAL":1297, + "TEXCOORD_0":1298, + "TEXCOORD_1":1299, + "TANGENT":1300, + "COLOR_0":1301, + "COLOR_1":1302, + "COLOR_2":1303 + }, + "indices":1304, + "material":31 + }, + { + "attributes":{ + "POSITION":1305, + "NORMAL":1306, + "TEXCOORD_0":1307, + "TEXCOORD_1":1308, + "TANGENT":1309, + "COLOR_0":1310, + "COLOR_1":1311, + "COLOR_2":1312 + }, + "indices":1313, + "material":32 + }, + { + "attributes":{ + "POSITION":1314, + "NORMAL":1315, + "TEXCOORD_0":1316, + "TEXCOORD_1":1317, + "TANGENT":1318, + "COLOR_0":1319, + "COLOR_1":1320, + "COLOR_2":1321 + }, + "indices":1322, + "material":34 + }, + { + "attributes":{ + "POSITION":1323, + "NORMAL":1324, + "TEXCOORD_0":1325, + "TEXCOORD_1":1326, + "TANGENT":1327, + "COLOR_0":1328, + "COLOR_1":1329, + "COLOR_2":1330 + }, + "indices":1331, + "material":35 + }, + { + "attributes":{ + "POSITION":1332, + "NORMAL":1333, + "TEXCOORD_0":1334, + "TEXCOORD_1":1335, + "TANGENT":1336, + "COLOR_0":1337, + "COLOR_1":1338, + "COLOR_2":1339 + }, + "indices":1340, + "material":56 + }, + { + "attributes":{ + "POSITION":1341, + "NORMAL":1342, + "TEXCOORD_0":1343, + "TEXCOORD_1":1344, + "TANGENT":1345, + "COLOR_0":1346, + "COLOR_1":1347, + "COLOR_2":1348 + }, + "indices":1349, + "material":36 + }, + { + "attributes":{ + "POSITION":1350, + "NORMAL":1351, + "TEXCOORD_0":1352, + "TEXCOORD_1":1353, + "TANGENT":1354, + "COLOR_0":1355, + "COLOR_1":1356, + "COLOR_2":1357 + }, + "indices":1358, + "material":37 + }, + { + "attributes":{ + "POSITION":1359, + "NORMAL":1360, + "TEXCOORD_0":1361, + "TEXCOORD_1":1362, + "TANGENT":1363, + "COLOR_0":1364, + "COLOR_1":1365, + "COLOR_2":1366 + }, + "indices":1367, + "material":38 + }, + { + "attributes":{ + "POSITION":1368, + "NORMAL":1369, + "TEXCOORD_0":1370, + "TEXCOORD_1":1371, + "TANGENT":1372, + "COLOR_0":1373, + "COLOR_1":1374, + "COLOR_2":1375 + }, + "indices":1376, + "material":39 + } + ] + }, + { + "name":"KB3D_NEC_BldgLG_A_BuildingB", + "primitives":[ + { + "attributes":{ + "POSITION":1377, + "NORMAL":1378, + "TEXCOORD_0":1379, + "TEXCOORD_1":1380, + "TANGENT":1381, + "COLOR_0":1382, + "COLOR_1":1383, + "COLOR_2":1384 + }, + "indices":1385, + "material":27 + }, + { + "attributes":{ + "POSITION":1386, + "NORMAL":1387, + "TEXCOORD_0":1388, + "TEXCOORD_1":1389, + "TANGENT":1390, + "COLOR_0":1391, + "COLOR_1":1392, + "COLOR_2":1393 + }, + "indices":1394, + "material":28 + }, + { + "attributes":{ + "POSITION":1395, + "NORMAL":1396, + "TEXCOORD_0":1397, + "TEXCOORD_1":1398, + "TANGENT":1399, + "COLOR_0":1400, + "COLOR_1":1401, + "COLOR_2":1402 + }, + "indices":1403, + "material":54 + }, + { + "attributes":{ + "POSITION":1404, + "NORMAL":1405, + "TEXCOORD_0":1406, + "TEXCOORD_1":1407, + "TANGENT":1408, + "COLOR_0":1409, + "COLOR_1":1410, + "COLOR_2":1411 + }, + "indices":1412, + "material":31 + }, + { + "attributes":{ + "POSITION":1413, + "NORMAL":1414, + "TEXCOORD_0":1415, + "TEXCOORD_1":1416, + "TANGENT":1417, + "COLOR_0":1418, + "COLOR_1":1419, + "COLOR_2":1420 + }, + "indices":1421, + "material":32 + }, + { + "attributes":{ + "POSITION":1422, + "NORMAL":1423, + "TEXCOORD_0":1424, + "TEXCOORD_1":1425, + "TANGENT":1426, + "COLOR_0":1427, + "COLOR_1":1428, + "COLOR_2":1429 + }, + "indices":1430, + "material":34 + }, + { + "attributes":{ + "POSITION":1431, + "NORMAL":1432, + "TEXCOORD_0":1433, + "TEXCOORD_1":1434, + "TANGENT":1435, + "COLOR_0":1436, + "COLOR_1":1437, + "COLOR_2":1438 + }, + "indices":1439, + "material":35 + }, + { + "attributes":{ + "POSITION":1440, + "NORMAL":1441, + "TEXCOORD_0":1442, + "TEXCOORD_1":1443, + "TANGENT":1444, + "COLOR_0":1445, + "COLOR_1":1446, + "COLOR_2":1447 + }, + "indices":1448, + "material":56 + }, + { + "attributes":{ + "POSITION":1449, + "NORMAL":1450, + "TEXCOORD_0":1451, + "TEXCOORD_1":1452, + "TANGENT":1453, + "COLOR_0":1454, + "COLOR_1":1455, + "COLOR_2":1456 + }, + "indices":1349, + "material":36 + }, + { + "attributes":{ + "POSITION":1457, + "NORMAL":1458, + "TEXCOORD_0":1459, + "TEXCOORD_1":1460, + "TANGENT":1461, + "COLOR_0":1462, + "COLOR_1":1463, + "COLOR_2":1464 + }, + "indices":1465, + "material":37 + }, + { + "attributes":{ + "POSITION":1466, + "NORMAL":1467, + "TEXCOORD_0":1468, + "TEXCOORD_1":1469, + "TANGENT":1470, + "COLOR_0":1471, + "COLOR_1":1472, + "COLOR_2":1473 + }, + "indices":1474, + "material":38 + }, + { + "attributes":{ + "POSITION":1475, + "NORMAL":1476, + "TEXCOORD_0":1477, + "TEXCOORD_1":1478, + "TANGENT":1479, + "COLOR_0":1480, + "COLOR_1":1481, + "COLOR_2":1482 + }, + "indices":1483, + "material":39 + } + ] + }, + { + "name":"KB3D_NEC_BldgLG_A_BuildingC", + "primitives":[ + { + "attributes":{ + "POSITION":1484, + "NORMAL":1485, + "TEXCOORD_0":1486, + "TEXCOORD_1":1487, + "TANGENT":1488, + "COLOR_0":1489, + "COLOR_1":1490, + "COLOR_2":1491 + }, + "indices":1492, + "material":27 + }, + { + "attributes":{ + "POSITION":1493, + "NORMAL":1494, + "TEXCOORD_0":1495, + "TEXCOORD_1":1496, + "TANGENT":1497, + "COLOR_0":1498, + "COLOR_1":1499, + "COLOR_2":1500 + }, + "indices":1501, + "material":28 + }, + { + "attributes":{ + "POSITION":1502, + "NORMAL":1503, + "TEXCOORD_0":1504, + "TEXCOORD_1":1505, + "TANGENT":1506, + "COLOR_0":1507, + "COLOR_1":1508, + "COLOR_2":1509 + }, + "indices":1510, + "material":54 + }, + { + "attributes":{ + "POSITION":1511, + "NORMAL":1512, + "TEXCOORD_0":1513, + "TEXCOORD_1":1514, + "TANGENT":1515, + "COLOR_0":1516, + "COLOR_1":1517, + "COLOR_2":1518 + }, + "indices":1519, + "material":55 + }, + { + "attributes":{ + "POSITION":1520, + "NORMAL":1521, + "TEXCOORD_0":1522, + "TEXCOORD_1":1523, + "TANGENT":1524, + "COLOR_0":1525, + "COLOR_1":1526, + "COLOR_2":1527 + }, + "indices":1528, + "material":32 + }, + { + "attributes":{ + "POSITION":1529, + "NORMAL":1530, + "TEXCOORD_0":1531, + "TEXCOORD_1":1532, + "TANGENT":1533, + "COLOR_0":1534, + "COLOR_1":1535, + "COLOR_2":1536 + }, + "indices":1537, + "material":35 + }, + { + "attributes":{ + "POSITION":1538, + "NORMAL":1539, + "TEXCOORD_0":1540, + "TEXCOORD_1":1541, + "TANGENT":1542, + "COLOR_0":1543, + "COLOR_1":1544, + "COLOR_2":1545 + }, + "indices":1546, + "material":36 + }, + { + "attributes":{ + "POSITION":1547, + "NORMAL":1548, + "TEXCOORD_0":1549, + "TEXCOORD_1":1550, + "TANGENT":1551, + "COLOR_0":1552, + "COLOR_1":1553, + "COLOR_2":1554 + }, + "indices":1555, + "material":37 + }, + { + "attributes":{ + "POSITION":1556, + "NORMAL":1557, + "TEXCOORD_0":1558, + "TEXCOORD_1":1559, + "TANGENT":1560, + "COLOR_0":1561, + "COLOR_1":1562, + "COLOR_2":1563 + }, + "indices":1564, + "material":38 + }, + { + "attributes":{ + "POSITION":1565, + "NORMAL":1566, + "TEXCOORD_0":1567, + "TEXCOORD_1":1568, + "TANGENT":1569, + "COLOR_0":1570, + "COLOR_1":1571, + "COLOR_2":1572 + }, + "indices":1573, + "material":39 + } + ] + }, + { + "name":"KB3D_NEC_BldgLG_A_BuildingD", + "primitives":[ + { + "attributes":{ + "POSITION":1574, + "NORMAL":1575, + "TEXCOORD_0":1576, + "TEXCOORD_1":1577, + "TANGENT":1578, + "COLOR_0":1579, + "COLOR_1":1580, + "COLOR_2":1581 + }, + "indices":1582, + "material":27 + }, + { + "attributes":{ + "POSITION":1583, + "NORMAL":1584, + "TEXCOORD_0":1585, + "TEXCOORD_1":1586, + "TANGENT":1587, + "COLOR_0":1588, + "COLOR_1":1589, + "COLOR_2":1590 + }, + "indices":1591, + "material":31 + }, + { + "attributes":{ + "POSITION":1592, + "NORMAL":1593, + "TEXCOORD_0":1594, + "TEXCOORD_1":1595, + "TANGENT":1596, + "COLOR_0":1597, + "COLOR_1":1598, + "COLOR_2":1599 + }, + "indices":1600, + "material":25 + }, + { + "attributes":{ + "POSITION":1601, + "NORMAL":1602, + "TEXCOORD_0":1603, + "TEXCOORD_1":1604, + "TANGENT":1605, + "COLOR_0":1606, + "COLOR_1":1607, + "COLOR_2":1608 + }, + "indices":1609, + "material":32 + }, + { + "attributes":{ + "POSITION":1610, + "NORMAL":1611, + "TEXCOORD_0":1612, + "TEXCOORD_1":1613, + "TANGENT":1614, + "COLOR_0":1615, + "COLOR_1":1616, + "COLOR_2":1617 + }, + "indices":1618, + "material":34 + }, + { + "attributes":{ + "POSITION":1619, + "NORMAL":1620, + "TEXCOORD_0":1621, + "TEXCOORD_1":1622, + "TANGENT":1623, + "COLOR_0":1624, + "COLOR_1":1625, + "COLOR_2":1626 + }, + "indices":1627, + "material":35 + }, + { + "attributes":{ + "POSITION":1628, + "NORMAL":1629, + "TEXCOORD_0":1630, + "TEXCOORD_1":1631, + "TANGENT":1632, + "COLOR_0":1633, + "COLOR_1":1634, + "COLOR_2":1635 + }, + "indices":1636, + "material":37 + }, + { + "attributes":{ + "POSITION":1637, + "NORMAL":1638, + "TEXCOORD_0":1639, + "TEXCOORD_1":1640, + "TANGENT":1641, + "COLOR_0":1642, + "COLOR_1":1643, + "COLOR_2":1644 + }, + "indices":154, + "material":38 + }, + { + "attributes":{ + "POSITION":1645, + "NORMAL":1646, + "TEXCOORD_0":1647, + "TEXCOORD_1":1648, + "TANGENT":1649, + "COLOR_0":1650, + "COLOR_1":1651, + "COLOR_2":1652 + }, + "indices":1653, + "material":39 + } + ] + }, + { + "name":"KB3D_NEC_BldgLG_A_Main", + "primitives":[ + { + "attributes":{ + "POSITION":1654, + "NORMAL":1655, + "TEXCOORD_0":1656, + "TEXCOORD_1":1657, + "TANGENT":1658, + "COLOR_0":1659, + "COLOR_1":1660, + "COLOR_2":1661 + }, + "indices":1662, + "material":27 + }, + { + "attributes":{ + "POSITION":1663, + "NORMAL":1664, + "TEXCOORD_0":1665, + "TEXCOORD_1":1666, + "TANGENT":1667, + "COLOR_0":1668, + "COLOR_1":1669, + "COLOR_2":1670 + }, + "indices":1671, + "material":54 + }, + { + "attributes":{ + "POSITION":1672, + "NORMAL":1673, + "TEXCOORD_0":1674, + "TEXCOORD_1":1675, + "TANGENT":1676, + "COLOR_0":1677, + "COLOR_1":1678, + "COLOR_2":1679 + }, + "indices":1680, + "material":31 + }, + { + "attributes":{ + "POSITION":1681, + "NORMAL":1682, + "TEXCOORD_0":1683, + "TEXCOORD_1":1684, + "TANGENT":1685, + "COLOR_0":1686, + "COLOR_1":1687, + "COLOR_2":1688 + }, + "indices":1519, + "material":55 + }, + { + "attributes":{ + "POSITION":1689, + "NORMAL":1690, + "TEXCOORD_0":1691, + "TEXCOORD_1":1692, + "TANGENT":1693, + "COLOR_0":1694, + "COLOR_1":1695, + "COLOR_2":1696 + }, + "indices":1697, + "material":32 + }, + { + "attributes":{ + "POSITION":1698, + "NORMAL":1699, + "TEXCOORD_0":1700, + "TEXCOORD_1":1701, + "TANGENT":1702, + "COLOR_0":1703, + "COLOR_1":1704, + "COLOR_2":1705 + }, + "indices":1706, + "material":34 + }, + { + "attributes":{ + "POSITION":1707, + "NORMAL":1708, + "TEXCOORD_0":1709, + "TEXCOORD_1":1710, + "TANGENT":1711, + "COLOR_0":1712, + "COLOR_1":1713, + "COLOR_2":1714 + }, + "indices":1715, + "material":35 + }, + { + "attributes":{ + "POSITION":1716, + "NORMAL":1717, + "TEXCOORD_0":1718, + "TEXCOORD_1":1719, + "TANGENT":1720, + "COLOR_0":1721, + "COLOR_1":1722, + "COLOR_2":1723 + }, + "indices":1724, + "material":56 + }, + { + "attributes":{ + "POSITION":1725, + "NORMAL":1726, + "TEXCOORD_0":1727, + "TEXCOORD_1":1728, + "TANGENT":1729, + "COLOR_0":1730, + "COLOR_1":1731, + "COLOR_2":1732 + }, + "indices":1733, + "material":36 + }, + { + "attributes":{ + "POSITION":1734, + "NORMAL":1735, + "TEXCOORD_0":1736, + "TEXCOORD_1":1737, + "TANGENT":1738, + "COLOR_0":1739, + "COLOR_1":1740, + "COLOR_2":1741 + }, + "indices":1742, + "material":37 + }, + { + "attributes":{ + "POSITION":1743, + "NORMAL":1744, + "TEXCOORD_0":1745, + "TEXCOORD_1":1746, + "TANGENT":1747, + "COLOR_0":1748, + "COLOR_1":1749, + "COLOR_2":1750 + }, + "indices":1751, + "material":57 + }, + { + "attributes":{ + "POSITION":1752, + "NORMAL":1753, + "TEXCOORD_0":1754, + "TEXCOORD_1":1755, + "TANGENT":1756, + "COLOR_0":1757, + "COLOR_1":1758, + "COLOR_2":1759 + }, + "indices":1760, + "material":38 + }, + { + "attributes":{ + "POSITION":1761, + "NORMAL":1762, + "TEXCOORD_0":1763, + "TEXCOORD_1":1764, + "TANGENT":1765, + "COLOR_0":1766, + "COLOR_1":1767, + "COLOR_2":1768 + }, + "indices":1769, + "material":39 + }, + { + "attributes":{ + "POSITION":1770, + "NORMAL":1771, + "TEXCOORD_0":1772, + "TEXCOORD_1":1773, + "TANGENT":1774, + "COLOR_0":1775, + "COLOR_1":1776, + "COLOR_2":1777 + }, + "indices":1778, + "material":40 + } + ] + }, + { + "name":"KB3D_NEC_BldgLG_A_Main", + "primitives":[ + { + "attributes":{ + "POSITION":1779, + "NORMAL":1780, + "TEXCOORD_0":1781, + "TEXCOORD_1":1782, + "TANGENT":1783, + "COLOR_0":1784, + "COLOR_1":1785, + "COLOR_2":1786 + }, + "indices":1662, + "material":27 + }, + { + "attributes":{ + "POSITION":1787, + "NORMAL":1788, + "TEXCOORD_0":1789, + "TEXCOORD_1":1790, + "TANGENT":1791, + "COLOR_0":1792, + "COLOR_1":1793, + "COLOR_2":1794 + }, + "indices":1671, + "material":54 + }, + { + "attributes":{ + "POSITION":1795, + "NORMAL":1796, + "TEXCOORD_0":1797, + "TEXCOORD_1":1798, + "TANGENT":1799, + "COLOR_0":1800, + "COLOR_1":1801, + "COLOR_2":1802 + }, + "indices":1680, + "material":31 + }, + { + "attributes":{ + "POSITION":1803, + "NORMAL":1804, + "TEXCOORD_0":1805, + "TEXCOORD_1":1806, + "TANGENT":1807, + "COLOR_0":1808, + "COLOR_1":1809, + "COLOR_2":1810 + }, + "indices":1519, + "material":55 + }, + { + "attributes":{ + "POSITION":1811, + "NORMAL":1812, + "TEXCOORD_0":1813, + "TEXCOORD_1":1814, + "TANGENT":1815, + "COLOR_0":1816, + "COLOR_1":1817, + "COLOR_2":1818 + }, + "indices":1697, + "material":32 + }, + { + "attributes":{ + "POSITION":1819, + "NORMAL":1820, + "TEXCOORD_0":1821, + "TEXCOORD_1":1822, + "TANGENT":1823, + "COLOR_0":1824, + "COLOR_1":1825, + "COLOR_2":1826 + }, + "indices":1706, + "material":34 + }, + { + "attributes":{ + "POSITION":1827, + "NORMAL":1828, + "TEXCOORD_0":1829, + "TEXCOORD_1":1830, + "TANGENT":1831, + "COLOR_0":1832, + "COLOR_1":1833, + "COLOR_2":1834 + }, + "indices":1715, + "material":35 + }, + { + "attributes":{ + "POSITION":1835, + "NORMAL":1836, + "TEXCOORD_0":1837, + "TEXCOORD_1":1838, + "TANGENT":1839, + "COLOR_0":1840, + "COLOR_1":1841, + "COLOR_2":1842 + }, + "indices":1724, + "material":56 + }, + { + "attributes":{ + "POSITION":1843, + "NORMAL":1844, + "TEXCOORD_0":1845, + "TEXCOORD_1":1846, + "TANGENT":1847, + "COLOR_0":1848, + "COLOR_1":1849, + "COLOR_2":1850 + }, + "indices":1733, + "material":36 + }, + { + "attributes":{ + "POSITION":1851, + "NORMAL":1852, + "TEXCOORD_0":1853, + "TEXCOORD_1":1854, + "TANGENT":1855, + "COLOR_0":1856, + "COLOR_1":1857, + "COLOR_2":1858 + }, + "indices":1742, + "material":37 + }, + { + "attributes":{ + "POSITION":1859, + "NORMAL":1860, + "TEXCOORD_0":1861, + "TEXCOORD_1":1862, + "TANGENT":1863, + "COLOR_0":1864, + "COLOR_1":1865, + "COLOR_2":1866 + }, + "indices":1751, + "material":57 + }, + { + "attributes":{ + "POSITION":1867, + "NORMAL":1868, + "TEXCOORD_0":1869, + "TEXCOORD_1":1870, + "TANGENT":1871, + "COLOR_0":1872, + "COLOR_1":1873, + "COLOR_2":1874 + }, + "indices":1760, + "material":38 + }, + { + "attributes":{ + "POSITION":1875, + "NORMAL":1876, + "TEXCOORD_0":1877, + "TEXCOORD_1":1878, + "TANGENT":1879, + "COLOR_0":1880, + "COLOR_1":1881, + "COLOR_2":1882 + }, + "indices":1769, + "material":39 + }, + { + "attributes":{ + "POSITION":1883, + "NORMAL":1884, + "TEXCOORD_0":1885, + "TEXCOORD_1":1886, + "TANGENT":1887, + "COLOR_0":1888, + "COLOR_1":1889, + "COLOR_2":1890 + }, + "indices":1778, + "material":40 + } + ] + }, + { + "name":"KB3D_NEC_BldgLG_A_Tree", + "primitives":[ + { + "attributes":{ + "POSITION":1891, + "NORMAL":1892, + "TEXCOORD_0":1893, + "TEXCOORD_1":1894, + "TANGENT":1895, + "COLOR_0":1896, + "COLOR_1":1897, + "COLOR_2":1898 + }, + "indices":1899, + "material":54 + }, + { + "attributes":{ + "POSITION":1900, + "NORMAL":1901, + "TEXCOORD_0":1902, + "TEXCOORD_1":1903, + "TANGENT":1904, + "COLOR_0":1905, + "COLOR_1":1906, + "COLOR_2":1907 + }, + "indices":1908, + "material":33 + }, + { + "attributes":{ + "POSITION":1909, + "NORMAL":1910, + "TEXCOORD_0":1911, + "TEXCOORD_1":1912, + "TANGENT":1913, + "COLOR_0":1914, + "COLOR_1":1915, + "COLOR_2":1916 + }, + "indices":1917, + "material":58 + }, + { + "attributes":{ + "POSITION":1918, + "NORMAL":1919, + "TEXCOORD_0":1920, + "TEXCOORD_1":1921, + "TANGENT":1922, + "COLOR_0":1923, + "COLOR_1":1924, + "COLOR_2":1925 + }, + "indices":1926, + "material":59 + } + ] + }, + { + "name":"KB3D_NEC_BldgLG_A_Tree", + "primitives":[ + { + "attributes":{ + "POSITION":1927, + "NORMAL":1928, + "TEXCOORD_0":1929, + "TEXCOORD_1":1930, + "TANGENT":1931, + "COLOR_0":1932, + "COLOR_1":1933, + "COLOR_2":1934 + }, + "indices":1899, + "material":54 + }, + { + "attributes":{ + "POSITION":1935, + "NORMAL":1936, + "TEXCOORD_0":1937, + "TEXCOORD_1":1938, + "TANGENT":1939, + "COLOR_0":1940, + "COLOR_1":1941, + "COLOR_2":1942 + }, + "indices":1908, + "material":33 + }, + { + "attributes":{ + "POSITION":1943, + "NORMAL":1944, + "TEXCOORD_0":1945, + "TEXCOORD_1":1946, + "TANGENT":1947, + "COLOR_0":1948, + "COLOR_1":1949, + "COLOR_2":1950 + }, + "indices":1917, + "material":58 + }, + { + "attributes":{ + "POSITION":1951, + "NORMAL":1952, + "TEXCOORD_0":1953, + "TEXCOORD_1":1954, + "TANGENT":1955, + "COLOR_0":1956, + "COLOR_1":1957, + "COLOR_2":1958 + }, + "indices":1926, + "material":59 + } + ] + }, + { + "name":"KB3D_NEC_BldgLG_A_Tree", + "primitives":[ + { + "attributes":{ + "POSITION":1959, + "NORMAL":1960, + "TEXCOORD_0":1961, + "TEXCOORD_1":1962, + "TANGENT":1963, + "COLOR_0":1964, + "COLOR_1":1965, + "COLOR_2":1966 + }, + "indices":1899, + "material":54 + }, + { + "attributes":{ + "POSITION":1967, + "NORMAL":1968, + "TEXCOORD_0":1969, + "TEXCOORD_1":1970, + "TANGENT":1971, + "COLOR_0":1972, + "COLOR_1":1973, + "COLOR_2":1974 + }, + "indices":1908, + "material":33 + }, + { + "attributes":{ + "POSITION":1975, + "NORMAL":1976, + "TEXCOORD_0":1977, + "TEXCOORD_1":1978, + "TANGENT":1979, + "COLOR_0":1980, + "COLOR_1":1981, + "COLOR_2":1982 + }, + "indices":1917, + "material":58 + }, + { + "attributes":{ + "POSITION":1983, + "NORMAL":1984, + "TEXCOORD_0":1985, + "TEXCOORD_1":1986, + "TANGENT":1987, + "COLOR_0":1988, + "COLOR_1":1989, + "COLOR_2":1990 + }, + "indices":1926, + "material":59 + } + ] + }, + { + "name":"KB3D_NEC_BldgLG_A_Tree", + "primitives":[ + { + "attributes":{ + "POSITION":1991, + "NORMAL":1992, + "TEXCOORD_0":1993, + "TEXCOORD_1":1994, + "TANGENT":1995, + "COLOR_0":1996, + "COLOR_1":1997, + "COLOR_2":1998 + }, + "indices":1899, + "material":54 + }, + { + "attributes":{ + "POSITION":1999, + "NORMAL":2000, + "TEXCOORD_0":2001, + "TEXCOORD_1":2002, + "TANGENT":2003, + "COLOR_0":2004, + "COLOR_1":2005, + "COLOR_2":2006 + }, + "indices":1908, + "material":33 + }, + { + "attributes":{ + "POSITION":2007, + "NORMAL":2008, + "TEXCOORD_0":2009, + "TEXCOORD_1":2010, + "TANGENT":2011, + "COLOR_0":2012, + "COLOR_1":2013, + "COLOR_2":2014 + }, + "indices":1917, + "material":58 + }, + { + "attributes":{ + "POSITION":2015, + "NORMAL":2016, + "TEXCOORD_0":2017, + "TEXCOORD_1":2018, + "TANGENT":2019, + "COLOR_0":2020, + "COLOR_1":2021, + "COLOR_2":2022 + }, + "indices":1926, + "material":59 + } + ] + }, + { + "name":"KB3D_NEC_BldgLG_A_Tree", + "primitives":[ + { + "attributes":{ + "POSITION":2023, + "NORMAL":2024, + "TEXCOORD_0":2025, + "TEXCOORD_1":2026, + "TANGENT":2027, + "COLOR_0":2028, + "COLOR_1":2029, + "COLOR_2":2030 + }, + "indices":1899, + "material":54 + }, + { + "attributes":{ + "POSITION":2031, + "NORMAL":2032, + "TEXCOORD_0":2033, + "TEXCOORD_1":2034, + "TANGENT":2035, + "COLOR_0":2036, + "COLOR_1":2037, + "COLOR_2":2038 + }, + "indices":1908, + "material":33 + }, + { + "attributes":{ + "POSITION":2039, + "NORMAL":2040, + "TEXCOORD_0":2041, + "TEXCOORD_1":2042, + "TANGENT":2043, + "COLOR_0":2044, + "COLOR_1":2045, + "COLOR_2":2046 + }, + "indices":1917, + "material":58 + }, + { + "attributes":{ + "POSITION":2047, + "NORMAL":2048, + "TEXCOORD_0":2049, + "TEXCOORD_1":2050, + "TANGENT":2051, + "COLOR_0":2052, + "COLOR_1":2053, + "COLOR_2":2054 + }, + "indices":1926, + "material":59 + } + ] + }, + { + "name":"KB3D_NEC_BldgLG_A_Tree", + "primitives":[ + { + "attributes":{ + "POSITION":2055, + "NORMAL":2056, + "TEXCOORD_0":2057, + "TEXCOORD_1":2058, + "TANGENT":2059, + "COLOR_0":2060, + "COLOR_1":2061, + "COLOR_2":2062 + }, + "indices":1899, + "material":54 + }, + { + "attributes":{ + "POSITION":2063, + "NORMAL":2064, + "TEXCOORD_0":2065, + "TEXCOORD_1":2066, + "TANGENT":2067, + "COLOR_0":2068, + "COLOR_1":2069, + "COLOR_2":2070 + }, + "indices":1908, + "material":33 + }, + { + "attributes":{ + "POSITION":2071, + "NORMAL":2072, + "TEXCOORD_0":2073, + "TEXCOORD_1":2074, + "TANGENT":2075, + "COLOR_0":2076, + "COLOR_1":2077, + "COLOR_2":2078 + }, + "indices":1917, + "material":58 + }, + { + "attributes":{ + "POSITION":2079, + "NORMAL":2080, + "TEXCOORD_0":2081, + "TEXCOORD_1":2082, + "TANGENT":2083, + "COLOR_0":2084, + "COLOR_1":2085, + "COLOR_2":2086 + }, + "indices":1926, + "material":59 + } + ] + }, + { + "name":"KB3D_NEC_BldgLG_A_Tree", + "primitives":[ + { + "attributes":{ + "POSITION":2087, + "NORMAL":2088, + "TEXCOORD_0":2089, + "TEXCOORD_1":2090, + "TANGENT":2091, + "COLOR_0":2092, + "COLOR_1":2093, + "COLOR_2":2094 + }, + "indices":1899, + "material":54 + }, + { + "attributes":{ + "POSITION":2095, + "NORMAL":2096, + "TEXCOORD_0":2097, + "TEXCOORD_1":2098, + "TANGENT":2099, + "COLOR_0":2100, + "COLOR_1":2101, + "COLOR_2":2102 + }, + "indices":1908, + "material":33 + }, + { + "attributes":{ + "POSITION":2103, + "NORMAL":2104, + "TEXCOORD_0":2105, + "TEXCOORD_1":2106, + "TANGENT":2107, + "COLOR_0":2108, + "COLOR_1":2109, + "COLOR_2":2110 + }, + "indices":1917, + "material":58 + }, + { + "attributes":{ + "POSITION":2111, + "NORMAL":2112, + "TEXCOORD_0":2113, + "TEXCOORD_1":2114, + "TANGENT":2115, + "COLOR_0":2116, + "COLOR_1":2117, + "COLOR_2":2118 + }, + "indices":1926, + "material":59 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier", + "primitives":[ + { + "attributes":{ + "POSITION":2119, + "NORMAL":2120, + "TEXCOORD_0":2121, + "TEXCOORD_1":2122, + "TANGENT":2123 + }, + "indices":2124, + "material":1 + }, + { + "attributes":{ + "POSITION":2125, + "NORMAL":2126, + "TEXCOORD_0":2127, + "TEXCOORD_1":2128, + "TANGENT":2129 + }, + "indices":2130, + "material":8 + }, + { + "attributes":{ + "POSITION":2131, + "NORMAL":2132, + "TEXCOORD_0":2133, + "TEXCOORD_1":2134, + "TANGENT":2135 + }, + "indices":2136, + "material":7 + }, + { + "attributes":{ + "POSITION":2137, + "NORMAL":2138, + "TEXCOORD_0":2139, + "TEXCOORD_1":2140, + "TANGENT":2141 + }, + "indices":2142, + "material":20 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.001", + "primitives":[ + { + "attributes":{ + "POSITION":2143, + "NORMAL":2144, + "TEXCOORD_0":2145, + "TEXCOORD_1":2146, + "TANGENT":2147 + }, + "indices":2124, + "material":1 + }, + { + "attributes":{ + "POSITION":2148, + "NORMAL":2149, + "TEXCOORD_0":2150, + "TEXCOORD_1":2151, + "TANGENT":2152 + }, + "indices":2130, + "material":8 + }, + { + "attributes":{ + "POSITION":2153, + "NORMAL":2154, + "TEXCOORD_0":2155, + "TEXCOORD_1":2156, + "TANGENT":2157 + }, + "indices":2136, + "material":7 + }, + { + "attributes":{ + "POSITION":2158, + "NORMAL":2159, + "TEXCOORD_0":2160, + "TEXCOORD_1":2161, + "TANGENT":2162 + }, + "indices":2142, + "material":20 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.002", + "primitives":[ + { + "attributes":{ + "POSITION":2163, + "NORMAL":2164, + "TEXCOORD_0":2165, + "TEXCOORD_1":2166, + "TANGENT":2167 + }, + "indices":2124, + "material":1 + }, + { + "attributes":{ + "POSITION":2168, + "NORMAL":2169, + "TEXCOORD_0":2170, + "TEXCOORD_1":2171, + "TANGENT":2172 + }, + "indices":2130, + "material":8 + }, + { + "attributes":{ + "POSITION":2173, + "NORMAL":2174, + "TEXCOORD_0":2175, + "TEXCOORD_1":2176, + "TANGENT":2177 + }, + "indices":2136, + "material":7 + }, + { + "attributes":{ + "POSITION":2178, + "NORMAL":2179, + "TEXCOORD_0":2180, + "TEXCOORD_1":2181, + "TANGENT":2182 + }, + "indices":2142, + "material":20 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.003", + "primitives":[ + { + "attributes":{ + "POSITION":2183, + "NORMAL":2184, + "TEXCOORD_0":2185, + "TEXCOORD_1":2186, + "TANGENT":2187 + }, + "indices":2124, + "material":1 + }, + { + "attributes":{ + "POSITION":2188, + "NORMAL":2189, + "TEXCOORD_0":2190, + "TEXCOORD_1":2191, + "TANGENT":2192 + }, + "indices":2130, + "material":8 + }, + { + "attributes":{ + "POSITION":2193, + "NORMAL":2194, + "TEXCOORD_0":2195, + "TEXCOORD_1":2196, + "TANGENT":2197 + }, + "indices":2136, + "material":7 + }, + { + "attributes":{ + "POSITION":2198, + "NORMAL":2199, + "TEXCOORD_0":2200, + "TEXCOORD_1":2201, + "TANGENT":2202 + }, + "indices":2142, + "material":20 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.004", + "primitives":[ + { + "attributes":{ + "POSITION":2203, + "NORMAL":2204, + "TEXCOORD_0":2205, + "TEXCOORD_1":2206, + "TANGENT":2207 + }, + "indices":2124, + "material":1 + }, + { + "attributes":{ + "POSITION":2208, + "NORMAL":2209, + "TEXCOORD_0":2210, + "TEXCOORD_1":2211, + "TANGENT":2212 + }, + "indices":2130, + "material":8 + }, + { + "attributes":{ + "POSITION":2213, + "NORMAL":2214, + "TEXCOORD_0":2215, + "TEXCOORD_1":2216, + "TANGENT":2217 + }, + "indices":2136, + "material":7 + }, + { + "attributes":{ + "POSITION":2218, + "NORMAL":2219, + "TEXCOORD_0":2220, + "TEXCOORD_1":2221, + "TANGENT":2222 + }, + "indices":2142, + "material":20 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.005", + "primitives":[ + { + "attributes":{ + "POSITION":2223, + "NORMAL":2224, + "TEXCOORD_0":2225, + "TEXCOORD_1":2226, + "TANGENT":2227 + }, + "indices":2124, + "material":1 + }, + { + "attributes":{ + "POSITION":2228, + "NORMAL":2229, + "TEXCOORD_0":2230, + "TEXCOORD_1":2231, + "TANGENT":2232 + }, + "indices":2130, + "material":8 + }, + { + "attributes":{ + "POSITION":2233, + "NORMAL":2234, + "TEXCOORD_0":2235, + "TEXCOORD_1":2236, + "TANGENT":2237 + }, + "indices":2136, + "material":7 + }, + { + "attributes":{ + "POSITION":2238, + "NORMAL":2239, + "TEXCOORD_0":2240, + "TEXCOORD_1":2241, + "TANGENT":2242 + }, + "indices":2142, + "material":20 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.001", + "primitives":[ + { + "attributes":{ + "POSITION":2243, + "NORMAL":2244, + "TEXCOORD_0":2245, + "TEXCOORD_1":2246, + "TANGENT":2247 + }, + "indices":2124, + "material":1 + }, + { + "attributes":{ + "POSITION":2248, + "NORMAL":2249, + "TEXCOORD_0":2250, + "TEXCOORD_1":2251, + "TANGENT":2252 + }, + "indices":2130, + "material":8 + }, + { + "attributes":{ + "POSITION":2253, + "NORMAL":2254, + "TEXCOORD_0":2255, + "TEXCOORD_1":2256, + "TANGENT":2257 + }, + "indices":2136, + "material":7 + }, + { + "attributes":{ + "POSITION":2258, + "NORMAL":2259, + "TEXCOORD_0":2260, + "TEXCOORD_1":2261, + "TANGENT":2262 + }, + "indices":2142, + "material":20 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.002", + "primitives":[ + { + "attributes":{ + "POSITION":2263, + "NORMAL":2264, + "TEXCOORD_0":2265, + "TEXCOORD_1":2266, + "TANGENT":2267 + }, + "indices":2124, + "material":1 + }, + { + "attributes":{ + "POSITION":2268, + "NORMAL":2269, + "TEXCOORD_0":2270, + "TEXCOORD_1":2271, + "TANGENT":2272 + }, + "indices":2130, + "material":8 + }, + { + "attributes":{ + "POSITION":2273, + "NORMAL":2274, + "TEXCOORD_0":2275, + "TEXCOORD_1":2276, + "TANGENT":2277 + }, + "indices":2136, + "material":7 + }, + { + "attributes":{ + "POSITION":2278, + "NORMAL":2279, + "TEXCOORD_0":2280, + "TEXCOORD_1":2281, + "TANGENT":2282 + }, + "indices":2142, + "material":20 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.003", + "primitives":[ + { + "attributes":{ + "POSITION":2283, + "NORMAL":2284, + "TEXCOORD_0":2285, + "TEXCOORD_1":2286, + "TANGENT":2287 + }, + "indices":2124, + "material":1 + }, + { + "attributes":{ + "POSITION":2288, + "NORMAL":2289, + "TEXCOORD_0":2290, + "TEXCOORD_1":2291, + "TANGENT":2292 + }, + "indices":2130, + "material":8 + }, + { + "attributes":{ + "POSITION":2293, + "NORMAL":2294, + "TEXCOORD_0":2295, + "TEXCOORD_1":2296, + "TANGENT":2297 + }, + "indices":2136, + "material":7 + }, + { + "attributes":{ + "POSITION":2298, + "NORMAL":2299, + "TEXCOORD_0":2300, + "TEXCOORD_1":2301, + "TANGENT":2302 + }, + "indices":2142, + "material":20 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.004", + "primitives":[ + { + "attributes":{ + "POSITION":2303, + "NORMAL":2304, + "TEXCOORD_0":2305, + "TEXCOORD_1":2306, + "TANGENT":2307 + }, + "indices":2124, + "material":1 + }, + { + "attributes":{ + "POSITION":2308, + "NORMAL":2309, + "TEXCOORD_0":2310, + "TEXCOORD_1":2311, + "TANGENT":2312 + }, + "indices":2130, + "material":8 + }, + { + "attributes":{ + "POSITION":2313, + "NORMAL":2314, + "TEXCOORD_0":2315, + "TEXCOORD_1":2316, + "TANGENT":2317 + }, + "indices":2136, + "material":7 + }, + { + "attributes":{ + "POSITION":2318, + "NORMAL":2319, + "TEXCOORD_0":2320, + "TEXCOORD_1":2321, + "TANGENT":2322 + }, + "indices":2142, + "material":20 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.005", + "primitives":[ + { + "attributes":{ + "POSITION":2323, + "NORMAL":2324, + "TEXCOORD_0":2325, + "TEXCOORD_1":2326, + "TANGENT":2327 + }, + "indices":2124, + "material":1 + }, + { + "attributes":{ + "POSITION":2328, + "NORMAL":2329, + "TEXCOORD_0":2330, + "TEXCOORD_1":2331, + "TANGENT":2332 + }, + "indices":2130, + "material":8 + }, + { + "attributes":{ + "POSITION":2333, + "NORMAL":2334, + "TEXCOORD_0":2335, + "TEXCOORD_1":2336, + "TANGENT":2337 + }, + "indices":2136, + "material":7 + }, + { + "attributes":{ + "POSITION":2338, + "NORMAL":2339, + "TEXCOORD_0":2340, + "TEXCOORD_1":2341, + "TANGENT":2342 + }, + "indices":2142, + "material":20 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.001", + "primitives":[ + { + "attributes":{ + "POSITION":2343, + "NORMAL":2344, + "TEXCOORD_0":2345, + "TEXCOORD_1":2346, + "TANGENT":2347 + }, + "indices":2124, + "material":1 + }, + { + "attributes":{ + "POSITION":2348, + "NORMAL":2349, + "TEXCOORD_0":2350, + "TEXCOORD_1":2351, + "TANGENT":2352 + }, + "indices":2130, + "material":8 + }, + { + "attributes":{ + "POSITION":2353, + "NORMAL":2354, + "TEXCOORD_0":2355, + "TEXCOORD_1":2356, + "TANGENT":2357 + }, + "indices":2136, + "material":7 + }, + { + "attributes":{ + "POSITION":2358, + "NORMAL":2359, + "TEXCOORD_0":2360, + "TEXCOORD_1":2361, + "TANGENT":2362 + }, + "indices":2142, + "material":20 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.002", + "primitives":[ + { + "attributes":{ + "POSITION":2363, + "NORMAL":2364, + "TEXCOORD_0":2365, + "TEXCOORD_1":2366, + "TANGENT":2367 + }, + "indices":2124, + "material":1 + }, + { + "attributes":{ + "POSITION":2368, + "NORMAL":2369, + "TEXCOORD_0":2370, + "TEXCOORD_1":2371, + "TANGENT":2372 + }, + "indices":2130, + "material":8 + }, + { + "attributes":{ + "POSITION":2373, + "NORMAL":2374, + "TEXCOORD_0":2375, + "TEXCOORD_1":2376, + "TANGENT":2377 + }, + "indices":2136, + "material":7 + }, + { + "attributes":{ + "POSITION":2378, + "NORMAL":2379, + "TEXCOORD_0":2380, + "TEXCOORD_1":2381, + "TANGENT":2382 + }, + "indices":2142, + "material":20 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.003", + "primitives":[ + { + "attributes":{ + "POSITION":2383, + "NORMAL":2384, + "TEXCOORD_0":2385, + "TEXCOORD_1":2386, + "TANGENT":2387 + }, + "indices":2124, + "material":1 + }, + { + "attributes":{ + "POSITION":2388, + "NORMAL":2389, + "TEXCOORD_0":2390, + "TEXCOORD_1":2391, + "TANGENT":2392 + }, + "indices":2130, + "material":8 + }, + { + "attributes":{ + "POSITION":2393, + "NORMAL":2394, + "TEXCOORD_0":2395, + "TEXCOORD_1":2396, + "TANGENT":2397 + }, + "indices":2136, + "material":7 + }, + { + "attributes":{ + "POSITION":2398, + "NORMAL":2399, + "TEXCOORD_0":2400, + "TEXCOORD_1":2401, + "TANGENT":2402 + }, + "indices":2142, + "material":20 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.004", + "primitives":[ + { + "attributes":{ + "POSITION":2403, + "NORMAL":2404, + "TEXCOORD_0":2405, + "TEXCOORD_1":2406, + "TANGENT":2407 + }, + "indices":2124, + "material":1 + }, + { + "attributes":{ + "POSITION":2408, + "NORMAL":2409, + "TEXCOORD_0":2410, + "TEXCOORD_1":2411, + "TANGENT":2412 + }, + "indices":2130, + "material":8 + }, + { + "attributes":{ + "POSITION":2413, + "NORMAL":2414, + "TEXCOORD_0":2415, + "TEXCOORD_1":2416, + "TANGENT":2417 + }, + "indices":2136, + "material":7 + }, + { + "attributes":{ + "POSITION":2418, + "NORMAL":2419, + "TEXCOORD_0":2420, + "TEXCOORD_1":2421, + "TANGENT":2422 + }, + "indices":2142, + "material":20 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.005", + "primitives":[ + { + "attributes":{ + "POSITION":2423, + "NORMAL":2424, + "TEXCOORD_0":2425, + "TEXCOORD_1":2426, + "TANGENT":2427 + }, + "indices":2124, + "material":1 + }, + { + "attributes":{ + "POSITION":2428, + "NORMAL":2429, + "TEXCOORD_0":2430, + "TEXCOORD_1":2431, + "TANGENT":2432 + }, + "indices":2130, + "material":8 + }, + { + "attributes":{ + "POSITION":2433, + "NORMAL":2434, + "TEXCOORD_0":2435, + "TEXCOORD_1":2436, + "TANGENT":2437 + }, + "indices":2136, + "material":7 + }, + { + "attributes":{ + "POSITION":2438, + "NORMAL":2439, + "TEXCOORD_0":2440, + "TEXCOORD_1":2441, + "TANGENT":2442 + }, + "indices":2142, + "material":20 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.001", + "primitives":[ + { + "attributes":{ + "POSITION":2443, + "NORMAL":2444, + "TEXCOORD_0":2445, + "TEXCOORD_1":2446, + "TANGENT":2447 + }, + "indices":2124, + "material":1 + }, + { + "attributes":{ + "POSITION":2448, + "NORMAL":2449, + "TEXCOORD_0":2450, + "TEXCOORD_1":2451, + "TANGENT":2452 + }, + "indices":2130, + "material":8 + }, + { + "attributes":{ + "POSITION":2453, + "NORMAL":2454, + "TEXCOORD_0":2455, + "TEXCOORD_1":2456, + "TANGENT":2457 + }, + "indices":2136, + "material":7 + }, + { + "attributes":{ + "POSITION":2458, + "NORMAL":2459, + "TEXCOORD_0":2460, + "TEXCOORD_1":2461, + "TANGENT":2462 + }, + "indices":2142, + "material":20 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.002", + "primitives":[ + { + "attributes":{ + "POSITION":2463, + "NORMAL":2464, + "TEXCOORD_0":2465, + "TEXCOORD_1":2466, + "TANGENT":2467 + }, + "indices":2124, + "material":1 + }, + { + "attributes":{ + "POSITION":2468, + "NORMAL":2469, + "TEXCOORD_0":2470, + "TEXCOORD_1":2471, + "TANGENT":2472 + }, + "indices":2130, + "material":8 + }, + { + "attributes":{ + "POSITION":2473, + "NORMAL":2474, + "TEXCOORD_0":2475, + "TEXCOORD_1":2476, + "TANGENT":2477 + }, + "indices":2136, + "material":7 + }, + { + "attributes":{ + "POSITION":2478, + "NORMAL":2479, + "TEXCOORD_0":2480, + "TEXCOORD_1":2481, + "TANGENT":2482 + }, + "indices":2142, + "material":20 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.003", + "primitives":[ + { + "attributes":{ + "POSITION":2483, + "NORMAL":2484, + "TEXCOORD_0":2485, + "TEXCOORD_1":2486, + "TANGENT":2487 + }, + "indices":2124, + "material":1 + }, + { + "attributes":{ + "POSITION":2488, + "NORMAL":2489, + "TEXCOORD_0":2490, + "TEXCOORD_1":2491, + "TANGENT":2492 + }, + "indices":2130, + "material":8 + }, + { + "attributes":{ + "POSITION":2493, + "NORMAL":2494, + "TEXCOORD_0":2495, + "TEXCOORD_1":2496, + "TANGENT":2497 + }, + "indices":2136, + "material":7 + }, + { + "attributes":{ + "POSITION":2498, + "NORMAL":2499, + "TEXCOORD_0":2500, + "TEXCOORD_1":2501, + "TANGENT":2502 + }, + "indices":2142, + "material":20 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.004", + "primitives":[ + { + "attributes":{ + "POSITION":2503, + "NORMAL":2504, + "TEXCOORD_0":2505, + "TEXCOORD_1":2506, + "TANGENT":2507 + }, + "indices":2124, + "material":1 + }, + { + "attributes":{ + "POSITION":2508, + "NORMAL":2509, + "TEXCOORD_0":2510, + "TEXCOORD_1":2511, + "TANGENT":2512 + }, + "indices":2130, + "material":8 + }, + { + "attributes":{ + "POSITION":2513, + "NORMAL":2514, + "TEXCOORD_0":2515, + "TEXCOORD_1":2516, + "TANGENT":2517 + }, + "indices":2136, + "material":7 + }, + { + "attributes":{ + "POSITION":2518, + "NORMAL":2519, + "TEXCOORD_0":2520, + "TEXCOORD_1":2521, + "TANGENT":2522 + }, + "indices":2142, + "material":20 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.004", + "primitives":[ + { + "attributes":{ + "POSITION":2523, + "NORMAL":2524, + "TEXCOORD_0":2525, + "TEXCOORD_1":2526, + "TANGENT":2527 + }, + "indices":2124, + "material":1 + }, + { + "attributes":{ + "POSITION":2528, + "NORMAL":2529, + "TEXCOORD_0":2530, + "TEXCOORD_1":2531, + "TANGENT":2532 + }, + "indices":2130, + "material":8 + }, + { + "attributes":{ + "POSITION":2533, + "NORMAL":2534, + "TEXCOORD_0":2535, + "TEXCOORD_1":2536, + "TANGENT":2537 + }, + "indices":2136, + "material":7 + }, + { + "attributes":{ + "POSITION":2538, + "NORMAL":2539, + "TEXCOORD_0":2540, + "TEXCOORD_1":2541, + "TANGENT":2542 + }, + "indices":2142, + "material":20 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.005", + "primitives":[ + { + "attributes":{ + "POSITION":2543, + "NORMAL":2544, + "TEXCOORD_0":2545, + "TEXCOORD_1":2546, + "TANGENT":2547 + }, + "indices":2124, + "material":1 + }, + { + "attributes":{ + "POSITION":2548, + "NORMAL":2549, + "TEXCOORD_0":2550, + "TEXCOORD_1":2551, + "TANGENT":2552 + }, + "indices":2130, + "material":8 + }, + { + "attributes":{ + "POSITION":2553, + "NORMAL":2554, + "TEXCOORD_0":2555, + "TEXCOORD_1":2556, + "TANGENT":2557 + }, + "indices":2136, + "material":7 + }, + { + "attributes":{ + "POSITION":2558, + "NORMAL":2559, + "TEXCOORD_0":2560, + "TEXCOORD_1":2561, + "TANGENT":2562 + }, + "indices":2142, + "material":20 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.004", + "primitives":[ + { + "attributes":{ + "POSITION":2563, + "NORMAL":2564, + "TEXCOORD_0":2565, + "TEXCOORD_1":2566, + "TANGENT":2567 + }, + "indices":2124, + "material":1 + }, + { + "attributes":{ + "POSITION":2568, + "NORMAL":2569, + "TEXCOORD_0":2570, + "TEXCOORD_1":2571, + "TANGENT":2572 + }, + "indices":2130, + "material":8 + }, + { + "attributes":{ + "POSITION":2573, + "NORMAL":2574, + "TEXCOORD_0":2575, + "TEXCOORD_1":2576, + "TANGENT":2577 + }, + "indices":2136, + "material":7 + }, + { + "attributes":{ + "POSITION":2578, + "NORMAL":2579, + "TEXCOORD_0":2580, + "TEXCOORD_1":2581, + "TANGENT":2582 + }, + "indices":2142, + "material":20 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.004", + "primitives":[ + { + "attributes":{ + "POSITION":2583, + "NORMAL":2584, + "TEXCOORD_0":2585, + "TEXCOORD_1":2586, + "TANGENT":2587 + }, + "indices":2124, + "material":1 + }, + { + "attributes":{ + "POSITION":2588, + "NORMAL":2589, + "TEXCOORD_0":2590, + "TEXCOORD_1":2591, + "TANGENT":2592 + }, + "indices":2130, + "material":8 + }, + { + "attributes":{ + "POSITION":2593, + "NORMAL":2594, + "TEXCOORD_0":2595, + "TEXCOORD_1":2596, + "TANGENT":2597 + }, + "indices":2136, + "material":7 + }, + { + "attributes":{ + "POSITION":2598, + "NORMAL":2599, + "TEXCOORD_0":2600, + "TEXCOORD_1":2601, + "TANGENT":2602 + }, + "indices":2142, + "material":20 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.004", + "primitives":[ + { + "attributes":{ + "POSITION":2603, + "NORMAL":2604, + "TEXCOORD_0":2605, + "TEXCOORD_1":2606, + "TANGENT":2607 + }, + "indices":2124, + "material":1 + }, + { + "attributes":{ + "POSITION":2608, + "NORMAL":2609, + "TEXCOORD_0":2610, + "TEXCOORD_1":2611, + "TANGENT":2612 + }, + "indices":2130, + "material":8 + }, + { + "attributes":{ + "POSITION":2613, + "NORMAL":2614, + "TEXCOORD_0":2615, + "TEXCOORD_1":2616, + "TANGENT":2617 + }, + "indices":2136, + "material":7 + }, + { + "attributes":{ + "POSITION":2618, + "NORMAL":2619, + "TEXCOORD_0":2620, + "TEXCOORD_1":2621, + "TANGENT":2622 + }, + "indices":2142, + "material":20 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.005", + "primitives":[ + { + "attributes":{ + "POSITION":2623, + "NORMAL":2624, + "TEXCOORD_0":2625, + "TEXCOORD_1":2626, + "TANGENT":2627 + }, + "indices":2124, + "material":1 + }, + { + "attributes":{ + "POSITION":2628, + "NORMAL":2629, + "TEXCOORD_0":2630, + "TEXCOORD_1":2631, + "TANGENT":2632 + }, + "indices":2130, + "material":8 + }, + { + "attributes":{ + "POSITION":2633, + "NORMAL":2634, + "TEXCOORD_0":2635, + "TEXCOORD_1":2636, + "TANGENT":2637 + }, + "indices":2136, + "material":7 + }, + { + "attributes":{ + "POSITION":2638, + "NORMAL":2639, + "TEXCOORD_0":2640, + "TEXCOORD_1":2641, + "TANGENT":2642 + }, + "indices":2142, + "material":20 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.005", + "primitives":[ + { + "attributes":{ + "POSITION":2643, + "NORMAL":2644, + "TEXCOORD_0":2645, + "TEXCOORD_1":2646, + "TANGENT":2647 + }, + "indices":2124, + "material":1 + }, + { + "attributes":{ + "POSITION":2648, + "NORMAL":2649, + "TEXCOORD_0":2650, + "TEXCOORD_1":2651, + "TANGENT":2652 + }, + "indices":2130, + "material":8 + }, + { + "attributes":{ + "POSITION":2653, + "NORMAL":2654, + "TEXCOORD_0":2655, + "TEXCOORD_1":2656, + "TANGENT":2657 + }, + "indices":2136, + "material":7 + }, + { + "attributes":{ + "POSITION":2658, + "NORMAL":2659, + "TEXCOORD_0":2660, + "TEXCOORD_1":2661, + "TANGENT":2662 + }, + "indices":2142, + "material":20 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.002", + "primitives":[ + { + "attributes":{ + "POSITION":2663, + "NORMAL":2664, + "TEXCOORD_0":2665, + "TEXCOORD_1":2666, + "TANGENT":2667 + }, + "indices":2124, + "material":1 + }, + { + "attributes":{ + "POSITION":2668, + "NORMAL":2669, + "TEXCOORD_0":2670, + "TEXCOORD_1":2671, + "TANGENT":2672 + }, + "indices":2130, + "material":8 + }, + { + "attributes":{ + "POSITION":2673, + "NORMAL":2674, + "TEXCOORD_0":2675, + "TEXCOORD_1":2676, + "TANGENT":2677 + }, + "indices":2136, + "material":7 + }, + { + "attributes":{ + "POSITION":2678, + "NORMAL":2679, + "TEXCOORD_0":2680, + "TEXCOORD_1":2681, + "TANGENT":2682 + }, + "indices":2142, + "material":20 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.003", + "primitives":[ + { + "attributes":{ + "POSITION":2683, + "NORMAL":2684, + "TEXCOORD_0":2685, + "TEXCOORD_1":2686, + "TANGENT":2687 + }, + "indices":2124, + "material":1 + }, + { + "attributes":{ + "POSITION":2688, + "NORMAL":2689, + "TEXCOORD_0":2690, + "TEXCOORD_1":2691, + "TANGENT":2692 + }, + "indices":2130, + "material":8 + }, + { + "attributes":{ + "POSITION":2693, + "NORMAL":2694, + "TEXCOORD_0":2695, + "TEXCOORD_1":2696, + "TANGENT":2697 + }, + "indices":2136, + "material":7 + }, + { + "attributes":{ + "POSITION":2698, + "NORMAL":2699, + "TEXCOORD_0":2700, + "TEXCOORD_1":2701, + "TANGENT":2702 + }, + "indices":2142, + "material":20 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.004", + "primitives":[ + { + "attributes":{ + "POSITION":2703, + "NORMAL":2704, + "TEXCOORD_0":2705, + "TEXCOORD_1":2706, + "TANGENT":2707 + }, + "indices":2124, + "material":1 + }, + { + "attributes":{ + "POSITION":2708, + "NORMAL":2709, + "TEXCOORD_0":2710, + "TEXCOORD_1":2711, + "TANGENT":2712 + }, + "indices":2130, + "material":8 + }, + { + "attributes":{ + "POSITION":2713, + "NORMAL":2714, + "TEXCOORD_0":2715, + "TEXCOORD_1":2716, + "TANGENT":2717 + }, + "indices":2136, + "material":7 + }, + { + "attributes":{ + "POSITION":2718, + "NORMAL":2719, + "TEXCOORD_0":2720, + "TEXCOORD_1":2721, + "TANGENT":2722 + }, + "indices":2142, + "material":20 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.005", + "primitives":[ + { + "attributes":{ + "POSITION":2723, + "NORMAL":2724, + "TEXCOORD_0":2725, + "TEXCOORD_1":2726, + "TANGENT":2727 + }, + "indices":2124, + "material":1 + }, + { + "attributes":{ + "POSITION":2728, + "NORMAL":2729, + "TEXCOORD_0":2730, + "TEXCOORD_1":2731, + "TANGENT":2732 + }, + "indices":2130, + "material":8 + }, + { + "attributes":{ + "POSITION":2733, + "NORMAL":2734, + "TEXCOORD_0":2735, + "TEXCOORD_1":2736, + "TANGENT":2737 + }, + "indices":2136, + "material":7 + }, + { + "attributes":{ + "POSITION":2738, + "NORMAL":2739, + "TEXCOORD_0":2740, + "TEXCOORD_1":2741, + "TANGENT":2742 + }, + "indices":2142, + "material":20 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.002", + "primitives":[ + { + "attributes":{ + "POSITION":2743, + "NORMAL":2744, + "TEXCOORD_0":2745, + "TEXCOORD_1":2746, + "TANGENT":2747 + }, + "indices":2124, + "material":1 + }, + { + "attributes":{ + "POSITION":2748, + "NORMAL":2749, + "TEXCOORD_0":2750, + "TEXCOORD_1":2751, + "TANGENT":2752 + }, + "indices":2130, + "material":8 + }, + { + "attributes":{ + "POSITION":2753, + "NORMAL":2754, + "TEXCOORD_0":2755, + "TEXCOORD_1":2756, + "TANGENT":2757 + }, + "indices":2136, + "material":7 + }, + { + "attributes":{ + "POSITION":2758, + "NORMAL":2759, + "TEXCOORD_0":2760, + "TEXCOORD_1":2761, + "TANGENT":2762 + }, + "indices":2142, + "material":20 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.003", + "primitives":[ + { + "attributes":{ + "POSITION":2763, + "NORMAL":2764, + "TEXCOORD_0":2765, + "TEXCOORD_1":2766, + "TANGENT":2767 + }, + "indices":2124, + "material":1 + }, + { + "attributes":{ + "POSITION":2768, + "NORMAL":2769, + "TEXCOORD_0":2770, + "TEXCOORD_1":2771, + "TANGENT":2772 + }, + "indices":2130, + "material":8 + }, + { + "attributes":{ + "POSITION":2773, + "NORMAL":2774, + "TEXCOORD_0":2775, + "TEXCOORD_1":2776, + "TANGENT":2777 + }, + "indices":2136, + "material":7 + }, + { + "attributes":{ + "POSITION":2778, + "NORMAL":2779, + "TEXCOORD_0":2780, + "TEXCOORD_1":2781, + "TANGENT":2782 + }, + "indices":2142, + "material":20 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.004", + "primitives":[ + { + "attributes":{ + "POSITION":2783, + "NORMAL":2784, + "TEXCOORD_0":2785, + "TEXCOORD_1":2786, + "TANGENT":2787 + }, + "indices":2124, + "material":1 + }, + { + "attributes":{ + "POSITION":2788, + "NORMAL":2789, + "TEXCOORD_0":2790, + "TEXCOORD_1":2791, + "TANGENT":2792 + }, + "indices":2130, + "material":8 + }, + { + "attributes":{ + "POSITION":2793, + "NORMAL":2794, + "TEXCOORD_0":2795, + "TEXCOORD_1":2796, + "TANGENT":2797 + }, + "indices":2136, + "material":7 + }, + { + "attributes":{ + "POSITION":2798, + "NORMAL":2799, + "TEXCOORD_0":2800, + "TEXCOORD_1":2801, + "TANGENT":2802 + }, + "indices":2142, + "material":20 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.005", + "primitives":[ + { + "attributes":{ + "POSITION":2803, + "NORMAL":2804, + "TEXCOORD_0":2805, + "TEXCOORD_1":2806, + "TANGENT":2807 + }, + "indices":2124, + "material":1 + }, + { + "attributes":{ + "POSITION":2808, + "NORMAL":2809, + "TEXCOORD_0":2810, + "TEXCOORD_1":2811, + "TANGENT":2812 + }, + "indices":2130, + "material":8 + }, + { + "attributes":{ + "POSITION":2813, + "NORMAL":2814, + "TEXCOORD_0":2815, + "TEXCOORD_1":2816, + "TANGENT":2817 + }, + "indices":2136, + "material":7 + }, + { + "attributes":{ + "POSITION":2818, + "NORMAL":2819, + "TEXCOORD_0":2820, + "TEXCOORD_1":2821, + "TANGENT":2822 + }, + "indices":2142, + "material":20 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.003", + "primitives":[ + { + "attributes":{ + "POSITION":2823, + "NORMAL":2824, + "TEXCOORD_0":2825, + "TEXCOORD_1":2826, + "TANGENT":2827 + }, + "indices":2124, + "material":1 + }, + { + "attributes":{ + "POSITION":2828, + "NORMAL":2829, + "TEXCOORD_0":2830, + "TEXCOORD_1":2831, + "TANGENT":2832 + }, + "indices":2130, + "material":8 + }, + { + "attributes":{ + "POSITION":2833, + "NORMAL":2834, + "TEXCOORD_0":2835, + "TEXCOORD_1":2836, + "TANGENT":2837 + }, + "indices":2136, + "material":7 + }, + { + "attributes":{ + "POSITION":2838, + "NORMAL":2839, + "TEXCOORD_0":2840, + "TEXCOORD_1":2841, + "TANGENT":2842 + }, + "indices":2142, + "material":20 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.004", + "primitives":[ + { + "attributes":{ + "POSITION":2843, + "NORMAL":2844, + "TEXCOORD_0":2845, + "TEXCOORD_1":2846, + "TANGENT":2847 + }, + "indices":2124, + "material":1 + }, + { + "attributes":{ + "POSITION":2848, + "NORMAL":2849, + "TEXCOORD_0":2850, + "TEXCOORD_1":2851, + "TANGENT":2852 + }, + "indices":2130, + "material":8 + }, + { + "attributes":{ + "POSITION":2853, + "NORMAL":2854, + "TEXCOORD_0":2855, + "TEXCOORD_1":2856, + "TANGENT":2857 + }, + "indices":2136, + "material":7 + }, + { + "attributes":{ + "POSITION":2858, + "NORMAL":2859, + "TEXCOORD_0":2860, + "TEXCOORD_1":2861, + "TANGENT":2862 + }, + "indices":2142, + "material":20 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.005", + "primitives":[ + { + "attributes":{ + "POSITION":2863, + "NORMAL":2864, + "TEXCOORD_0":2865, + "TEXCOORD_1":2866, + "TANGENT":2867 + }, + "indices":2124, + "material":1 + }, + { + "attributes":{ + "POSITION":2868, + "NORMAL":2869, + "TEXCOORD_0":2870, + "TEXCOORD_1":2871, + "TANGENT":2872 + }, + "indices":2130, + "material":8 + }, + { + "attributes":{ + "POSITION":2873, + "NORMAL":2874, + "TEXCOORD_0":2875, + "TEXCOORD_1":2876, + "TANGENT":2877 + }, + "indices":2136, + "material":7 + }, + { + "attributes":{ + "POSITION":2878, + "NORMAL":2879, + "TEXCOORD_0":2880, + "TEXCOORD_1":2881, + "TANGENT":2882 + }, + "indices":2142, + "material":20 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.003", + "primitives":[ + { + "attributes":{ + "POSITION":2883, + "NORMAL":2884, + "TEXCOORD_0":2885, + "TEXCOORD_1":2886, + "TANGENT":2887 + }, + "indices":2124, + "material":1 + }, + { + "attributes":{ + "POSITION":2888, + "NORMAL":2889, + "TEXCOORD_0":2890, + "TEXCOORD_1":2891, + "TANGENT":2892 + }, + "indices":2130, + "material":8 + }, + { + "attributes":{ + "POSITION":2893, + "NORMAL":2894, + "TEXCOORD_0":2895, + "TEXCOORD_1":2896, + "TANGENT":2897 + }, + "indices":2136, + "material":7 + }, + { + "attributes":{ + "POSITION":2898, + "NORMAL":2899, + "TEXCOORD_0":2900, + "TEXCOORD_1":2901, + "TANGENT":2902 + }, + "indices":2142, + "material":20 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.004", + "primitives":[ + { + "attributes":{ + "POSITION":2903, + "NORMAL":2904, + "TEXCOORD_0":2905, + "TEXCOORD_1":2906, + "TANGENT":2907 + }, + "indices":2124, + "material":1 + }, + { + "attributes":{ + "POSITION":2908, + "NORMAL":2909, + "TEXCOORD_0":2910, + "TEXCOORD_1":2911, + "TANGENT":2912 + }, + "indices":2130, + "material":8 + }, + { + "attributes":{ + "POSITION":2913, + "NORMAL":2914, + "TEXCOORD_0":2915, + "TEXCOORD_1":2916, + "TANGENT":2917 + }, + "indices":2136, + "material":7 + }, + { + "attributes":{ + "POSITION":2918, + "NORMAL":2919, + "TEXCOORD_0":2920, + "TEXCOORD_1":2921, + "TANGENT":2922 + }, + "indices":2142, + "material":20 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.005", + "primitives":[ + { + "attributes":{ + "POSITION":2923, + "NORMAL":2924, + "TEXCOORD_0":2925, + "TEXCOORD_1":2926, + "TANGENT":2927 + }, + "indices":2124, + "material":1 + }, + { + "attributes":{ + "POSITION":2928, + "NORMAL":2929, + "TEXCOORD_0":2930, + "TEXCOORD_1":2931, + "TANGENT":2932 + }, + "indices":2130, + "material":8 + }, + { + "attributes":{ + "POSITION":2933, + "NORMAL":2934, + "TEXCOORD_0":2935, + "TEXCOORD_1":2936, + "TANGENT":2937 + }, + "indices":2136, + "material":7 + }, + { + "attributes":{ + "POSITION":2938, + "NORMAL":2939, + "TEXCOORD_0":2940, + "TEXCOORD_1":2941, + "TANGENT":2942 + }, + "indices":2142, + "material":20 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_A_ConcreteBarrier.004", + "primitives":[ + { + "attributes":{ + "POSITION":2943, + "NORMAL":2944, + "TEXCOORD_0":2945, + "TEXCOORD_1":2946, + "TANGENT":2947 + }, + "indices":2124, + "material":1 + }, + { + "attributes":{ + "POSITION":2948, + "NORMAL":2949, + "TEXCOORD_0":2950, + "TEXCOORD_1":2951, + "TANGENT":2952 + }, + "indices":2130, + "material":8 + }, + { + "attributes":{ + "POSITION":2953, + "NORMAL":2954, + "TEXCOORD_0":2955, + "TEXCOORD_1":2956, + "TANGENT":2957 + }, + "indices":2136, + "material":7 + }, + { + "attributes":{ + "POSITION":2958, + "NORMAL":2959, + "TEXCOORD_0":2960, + "TEXCOORD_1":2961, + "TANGENT":2962 + }, + "indices":2142, + "material":20 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_A_Main", + "primitives":[ + { + "attributes":{ + "POSITION":2963, + "NORMAL":2964, + "TEXCOORD_0":2965, + "TEXCOORD_1":2966, + "TANGENT":2967 + }, + "indices":2968, + "material":1 + }, + { + "attributes":{ + "POSITION":2969, + "NORMAL":2970, + "TEXCOORD_0":2971, + "TEXCOORD_1":2972, + "TANGENT":2973 + }, + "indices":2974, + "material":2 + }, + { + "attributes":{ + "POSITION":2975, + "NORMAL":2976, + "TEXCOORD_0":2977, + "TEXCOORD_1":2978, + "TANGENT":2979 + }, + "indices":2980, + "material":15 + }, + { + "attributes":{ + "POSITION":2981, + "NORMAL":2982, + "TEXCOORD_0":2983, + "TEXCOORD_1":2984, + "TANGENT":2985 + }, + "indices":2986, + "material":18 + }, + { + "attributes":{ + "POSITION":2987, + "NORMAL":2988, + "TEXCOORD_0":2989, + "TEXCOORD_1":2990, + "TANGENT":2991 + }, + "indices":2992, + "material":3 + }, + { + "attributes":{ + "POSITION":2993, + "NORMAL":2994, + "TEXCOORD_0":2995, + "TEXCOORD_1":2996, + "TANGENT":2997 + }, + "indices":2998, + "material":4 + }, + { + "attributes":{ + "POSITION":2999, + "NORMAL":3000, + "TEXCOORD_0":3001, + "TEXCOORD_1":3002, + "TANGENT":3003 + }, + "indices":3004, + "material":10 + }, + { + "attributes":{ + "POSITION":3005, + "NORMAL":3006, + "TEXCOORD_0":3007, + "TEXCOORD_1":3008, + "TANGENT":3009 + }, + "indices":3010, + "material":19 + }, + { + "attributes":{ + "POSITION":3011, + "NORMAL":3012, + "TEXCOORD_0":3013, + "TEXCOORD_1":3014, + "TANGENT":3015 + }, + "indices":3016, + "material":13 + }, + { + "attributes":{ + "POSITION":3017, + "NORMAL":3018, + "TEXCOORD_0":3019, + "TEXCOORD_1":3020, + "TANGENT":3021 + }, + "indices":3022, + "material":24 + }, + { + "attributes":{ + "POSITION":3023, + "NORMAL":3024, + "TEXCOORD_0":3025, + "TEXCOORD_1":3026, + "TANGENT":3027 + }, + "indices":3028, + "material":8 + }, + { + "attributes":{ + "POSITION":3029, + "NORMAL":3030, + "TEXCOORD_0":3031, + "TEXCOORD_1":3032, + "TANGENT":3033 + }, + "indices":3034, + "material":6 + }, + { + "attributes":{ + "POSITION":3035, + "NORMAL":3036, + "TEXCOORD_0":3037, + "TEXCOORD_1":3038, + "TANGENT":3039 + }, + "indices":3040, + "material":7 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_A_Main", + "primitives":[ + { + "attributes":{ + "POSITION":3041, + "NORMAL":3042, + "TEXCOORD_0":3043, + "TEXCOORD_1":3044, + "TANGENT":3045 + }, + "indices":2968, + "material":1 + }, + { + "attributes":{ + "POSITION":3046, + "NORMAL":3047, + "TEXCOORD_0":3048, + "TEXCOORD_1":3049, + "TANGENT":3050 + }, + "indices":2974, + "material":2 + }, + { + "attributes":{ + "POSITION":3051, + "NORMAL":3052, + "TEXCOORD_0":3053, + "TEXCOORD_1":3054, + "TANGENT":3055 + }, + "indices":2980, + "material":15 + }, + { + "attributes":{ + "POSITION":3056, + "NORMAL":3057, + "TEXCOORD_0":3058, + "TEXCOORD_1":3059, + "TANGENT":3060 + }, + "indices":2986, + "material":18 + }, + { + "attributes":{ + "POSITION":3061, + "NORMAL":3062, + "TEXCOORD_0":3063, + "TEXCOORD_1":3064, + "TANGENT":3065 + }, + "indices":2992, + "material":3 + }, + { + "attributes":{ + "POSITION":3066, + "NORMAL":3067, + "TEXCOORD_0":3068, + "TEXCOORD_1":3069, + "TANGENT":3070 + }, + "indices":2998, + "material":4 + }, + { + "attributes":{ + "POSITION":3071, + "NORMAL":3072, + "TEXCOORD_0":3073, + "TEXCOORD_1":3074, + "TANGENT":3075 + }, + "indices":3004, + "material":10 + }, + { + "attributes":{ + "POSITION":3076, + "NORMAL":3077, + "TEXCOORD_0":3078, + "TEXCOORD_1":3079, + "TANGENT":3080 + }, + "indices":3010, + "material":19 + }, + { + "attributes":{ + "POSITION":3081, + "NORMAL":3082, + "TEXCOORD_0":3083, + "TEXCOORD_1":3084, + "TANGENT":3085 + }, + "indices":3016, + "material":13 + }, + { + "attributes":{ + "POSITION":3086, + "NORMAL":3087, + "TEXCOORD_0":3088, + "TEXCOORD_1":3089, + "TANGENT":3090 + }, + "indices":3022, + "material":24 + }, + { + "attributes":{ + "POSITION":3091, + "NORMAL":3092, + "TEXCOORD_0":3093, + "TEXCOORD_1":3094, + "TANGENT":3095 + }, + "indices":3028, + "material":8 + }, + { + "attributes":{ + "POSITION":3096, + "NORMAL":3097, + "TEXCOORD_0":3098, + "TEXCOORD_1":3099, + "TANGENT":3100 + }, + "indices":3034, + "material":6 + }, + { + "attributes":{ + "POSITION":3101, + "NORMAL":3102, + "TEXCOORD_0":3103, + "TEXCOORD_1":3104, + "TANGENT":3105 + }, + "indices":3040, + "material":7 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_A_Main", + "primitives":[ + { + "attributes":{ + "POSITION":3106, + "NORMAL":3107, + "TEXCOORD_0":3108, + "TEXCOORD_1":3109, + "TANGENT":3110 + }, + "indices":2968, + "material":1 + }, + { + "attributes":{ + "POSITION":3111, + "NORMAL":3112, + "TEXCOORD_0":3113, + "TEXCOORD_1":3114, + "TANGENT":3115 + }, + "indices":2974, + "material":2 + }, + { + "attributes":{ + "POSITION":3116, + "NORMAL":3117, + "TEXCOORD_0":3118, + "TEXCOORD_1":3119, + "TANGENT":3120 + }, + "indices":2980, + "material":15 + }, + { + "attributes":{ + "POSITION":3121, + "NORMAL":3122, + "TEXCOORD_0":3123, + "TEXCOORD_1":3124, + "TANGENT":3125 + }, + "indices":2986, + "material":18 + }, + { + "attributes":{ + "POSITION":3126, + "NORMAL":3127, + "TEXCOORD_0":3128, + "TEXCOORD_1":3129, + "TANGENT":3130 + }, + "indices":2992, + "material":3 + }, + { + "attributes":{ + "POSITION":3131, + "NORMAL":3132, + "TEXCOORD_0":3133, + "TEXCOORD_1":3134, + "TANGENT":3135 + }, + "indices":2998, + "material":4 + }, + { + "attributes":{ + "POSITION":3136, + "NORMAL":3137, + "TEXCOORD_0":3138, + "TEXCOORD_1":3139, + "TANGENT":3140 + }, + "indices":3004, + "material":10 + }, + { + "attributes":{ + "POSITION":3141, + "NORMAL":3142, + "TEXCOORD_0":3143, + "TEXCOORD_1":3144, + "TANGENT":3145 + }, + "indices":3010, + "material":19 + }, + { + "attributes":{ + "POSITION":3146, + "NORMAL":3147, + "TEXCOORD_0":3148, + "TEXCOORD_1":3149, + "TANGENT":3150 + }, + "indices":3016, + "material":13 + }, + { + "attributes":{ + "POSITION":3151, + "NORMAL":3152, + "TEXCOORD_0":3153, + "TEXCOORD_1":3154, + "TANGENT":3155 + }, + "indices":3022, + "material":24 + }, + { + "attributes":{ + "POSITION":3156, + "NORMAL":3157, + "TEXCOORD_0":3158, + "TEXCOORD_1":3159, + "TANGENT":3160 + }, + "indices":3028, + "material":8 + }, + { + "attributes":{ + "POSITION":3161, + "NORMAL":3162, + "TEXCOORD_0":3163, + "TEXCOORD_1":3164, + "TANGENT":3165 + }, + "indices":3034, + "material":6 + }, + { + "attributes":{ + "POSITION":3166, + "NORMAL":3167, + "TEXCOORD_0":3168, + "TEXCOORD_1":3169, + "TANGENT":3170 + }, + "indices":3040, + "material":7 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_A_Main", + "primitives":[ + { + "attributes":{ + "POSITION":3171, + "NORMAL":3172, + "TEXCOORD_0":3173, + "TEXCOORD_1":3174, + "TANGENT":3175 + }, + "indices":2968, + "material":1 + }, + { + "attributes":{ + "POSITION":3176, + "NORMAL":3177, + "TEXCOORD_0":3178, + "TEXCOORD_1":3179, + "TANGENT":3180 + }, + "indices":2974, + "material":2 + }, + { + "attributes":{ + "POSITION":3181, + "NORMAL":3182, + "TEXCOORD_0":3183, + "TEXCOORD_1":3184, + "TANGENT":3185 + }, + "indices":2980, + "material":15 + }, + { + "attributes":{ + "POSITION":3186, + "NORMAL":3187, + "TEXCOORD_0":3188, + "TEXCOORD_1":3189, + "TANGENT":3190 + }, + "indices":2986, + "material":18 + }, + { + "attributes":{ + "POSITION":3191, + "NORMAL":3192, + "TEXCOORD_0":3193, + "TEXCOORD_1":3194, + "TANGENT":3195 + }, + "indices":2992, + "material":3 + }, + { + "attributes":{ + "POSITION":3196, + "NORMAL":3197, + "TEXCOORD_0":3198, + "TEXCOORD_1":3199, + "TANGENT":3200 + }, + "indices":2998, + "material":4 + }, + { + "attributes":{ + "POSITION":3201, + "NORMAL":3202, + "TEXCOORD_0":3203, + "TEXCOORD_1":3204, + "TANGENT":3205 + }, + "indices":3004, + "material":10 + }, + { + "attributes":{ + "POSITION":3206, + "NORMAL":3207, + "TEXCOORD_0":3208, + "TEXCOORD_1":3209, + "TANGENT":3210 + }, + "indices":3010, + "material":19 + }, + { + "attributes":{ + "POSITION":3211, + "NORMAL":3212, + "TEXCOORD_0":3213, + "TEXCOORD_1":3214, + "TANGENT":3215 + }, + "indices":3016, + "material":13 + }, + { + "attributes":{ + "POSITION":3216, + "NORMAL":3217, + "TEXCOORD_0":3218, + "TEXCOORD_1":3219, + "TANGENT":3220 + }, + "indices":3022, + "material":24 + }, + { + "attributes":{ + "POSITION":3221, + "NORMAL":3222, + "TEXCOORD_0":3223, + "TEXCOORD_1":3224, + "TANGENT":3225 + }, + "indices":3028, + "material":8 + }, + { + "attributes":{ + "POSITION":3226, + "NORMAL":3227, + "TEXCOORD_0":3228, + "TEXCOORD_1":3229, + "TANGENT":3230 + }, + "indices":3034, + "material":6 + }, + { + "attributes":{ + "POSITION":3231, + "NORMAL":3232, + "TEXCOORD_0":3233, + "TEXCOORD_1":3234, + "TANGENT":3235 + }, + "indices":3040, + "material":7 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_A_Main", + "primitives":[ + { + "attributes":{ + "POSITION":3236, + "NORMAL":3237, + "TEXCOORD_0":3238, + "TEXCOORD_1":3239, + "TANGENT":3240 + }, + "indices":2968, + "material":1 + }, + { + "attributes":{ + "POSITION":3241, + "NORMAL":3242, + "TEXCOORD_0":3243, + "TEXCOORD_1":3244, + "TANGENT":3245 + }, + "indices":2974, + "material":2 + }, + { + "attributes":{ + "POSITION":3246, + "NORMAL":3247, + "TEXCOORD_0":3248, + "TEXCOORD_1":3249, + "TANGENT":3250 + }, + "indices":2980, + "material":15 + }, + { + "attributes":{ + "POSITION":3251, + "NORMAL":3252, + "TEXCOORD_0":3253, + "TEXCOORD_1":3254, + "TANGENT":3255 + }, + "indices":2986, + "material":18 + }, + { + "attributes":{ + "POSITION":3256, + "NORMAL":3257, + "TEXCOORD_0":3258, + "TEXCOORD_1":3259, + "TANGENT":3260 + }, + "indices":2992, + "material":3 + }, + { + "attributes":{ + "POSITION":3261, + "NORMAL":3262, + "TEXCOORD_0":3263, + "TEXCOORD_1":3264, + "TANGENT":3265 + }, + "indices":2998, + "material":4 + }, + { + "attributes":{ + "POSITION":3266, + "NORMAL":3267, + "TEXCOORD_0":3268, + "TEXCOORD_1":3269, + "TANGENT":3270 + }, + "indices":3004, + "material":10 + }, + { + "attributes":{ + "POSITION":3271, + "NORMAL":3272, + "TEXCOORD_0":3273, + "TEXCOORD_1":3274, + "TANGENT":3275 + }, + "indices":3010, + "material":19 + }, + { + "attributes":{ + "POSITION":3276, + "NORMAL":3277, + "TEXCOORD_0":3278, + "TEXCOORD_1":3279, + "TANGENT":3280 + }, + "indices":3016, + "material":13 + }, + { + "attributes":{ + "POSITION":3281, + "NORMAL":3282, + "TEXCOORD_0":3283, + "TEXCOORD_1":3284, + "TANGENT":3285 + }, + "indices":3022, + "material":24 + }, + { + "attributes":{ + "POSITION":3286, + "NORMAL":3287, + "TEXCOORD_0":3288, + "TEXCOORD_1":3289, + "TANGENT":3290 + }, + "indices":3028, + "material":8 + }, + { + "attributes":{ + "POSITION":3291, + "NORMAL":3292, + "TEXCOORD_0":3293, + "TEXCOORD_1":3294, + "TANGENT":3295 + }, + "indices":3034, + "material":6 + }, + { + "attributes":{ + "POSITION":3296, + "NORMAL":3297, + "TEXCOORD_0":3298, + "TEXCOORD_1":3299, + "TANGENT":3300 + }, + "indices":3040, + "material":7 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_A_Main", + "primitives":[ + { + "attributes":{ + "POSITION":3301, + "NORMAL":3302, + "TEXCOORD_0":3303, + "TEXCOORD_1":3304, + "TANGENT":3305 + }, + "indices":2968, + "material":1 + }, + { + "attributes":{ + "POSITION":3306, + "NORMAL":3307, + "TEXCOORD_0":3308, + "TEXCOORD_1":3309, + "TANGENT":3310 + }, + "indices":2974, + "material":2 + }, + { + "attributes":{ + "POSITION":3311, + "NORMAL":3312, + "TEXCOORD_0":3313, + "TEXCOORD_1":3314, + "TANGENT":3315 + }, + "indices":2980, + "material":15 + }, + { + "attributes":{ + "POSITION":3316, + "NORMAL":3317, + "TEXCOORD_0":3318, + "TEXCOORD_1":3319, + "TANGENT":3320 + }, + "indices":2986, + "material":18 + }, + { + "attributes":{ + "POSITION":3321, + "NORMAL":3322, + "TEXCOORD_0":3323, + "TEXCOORD_1":3324, + "TANGENT":3325 + }, + "indices":2992, + "material":3 + }, + { + "attributes":{ + "POSITION":3326, + "NORMAL":3327, + "TEXCOORD_0":3328, + "TEXCOORD_1":3329, + "TANGENT":3330 + }, + "indices":2998, + "material":4 + }, + { + "attributes":{ + "POSITION":3331, + "NORMAL":3332, + "TEXCOORD_0":3333, + "TEXCOORD_1":3334, + "TANGENT":3335 + }, + "indices":3004, + "material":10 + }, + { + "attributes":{ + "POSITION":3336, + "NORMAL":3337, + "TEXCOORD_0":3338, + "TEXCOORD_1":3339, + "TANGENT":3340 + }, + "indices":3010, + "material":19 + }, + { + "attributes":{ + "POSITION":3341, + "NORMAL":3342, + "TEXCOORD_0":3343, + "TEXCOORD_1":3344, + "TANGENT":3345 + }, + "indices":3016, + "material":13 + }, + { + "attributes":{ + "POSITION":3346, + "NORMAL":3347, + "TEXCOORD_0":3348, + "TEXCOORD_1":3349, + "TANGENT":3350 + }, + "indices":3022, + "material":24 + }, + { + "attributes":{ + "POSITION":3351, + "NORMAL":3352, + "TEXCOORD_0":3353, + "TEXCOORD_1":3354, + "TANGENT":3355 + }, + "indices":3028, + "material":8 + }, + { + "attributes":{ + "POSITION":3356, + "NORMAL":3357, + "TEXCOORD_0":3358, + "TEXCOORD_1":3359, + "TANGENT":3360 + }, + "indices":3034, + "material":6 + }, + { + "attributes":{ + "POSITION":3361, + "NORMAL":3362, + "TEXCOORD_0":3363, + "TEXCOORD_1":3364, + "TANGENT":3365 + }, + "indices":3040, + "material":7 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_A_Main", + "primitives":[ + { + "attributes":{ + "POSITION":3366, + "NORMAL":3367, + "TEXCOORD_0":3368, + "TEXCOORD_1":3369, + "TANGENT":3370 + }, + "indices":2968, + "material":1 + }, + { + "attributes":{ + "POSITION":3371, + "NORMAL":3372, + "TEXCOORD_0":3373, + "TEXCOORD_1":3374, + "TANGENT":3375 + }, + "indices":2974, + "material":2 + }, + { + "attributes":{ + "POSITION":3376, + "NORMAL":3377, + "TEXCOORD_0":3378, + "TEXCOORD_1":3379, + "TANGENT":3380 + }, + "indices":2980, + "material":15 + }, + { + "attributes":{ + "POSITION":3381, + "NORMAL":3382, + "TEXCOORD_0":3383, + "TEXCOORD_1":3384, + "TANGENT":3385 + }, + "indices":2986, + "material":18 + }, + { + "attributes":{ + "POSITION":3386, + "NORMAL":3387, + "TEXCOORD_0":3388, + "TEXCOORD_1":3389, + "TANGENT":3390 + }, + "indices":2992, + "material":3 + }, + { + "attributes":{ + "POSITION":3391, + "NORMAL":3392, + "TEXCOORD_0":3393, + "TEXCOORD_1":3394, + "TANGENT":3395 + }, + "indices":2998, + "material":4 + }, + { + "attributes":{ + "POSITION":3396, + "NORMAL":3397, + "TEXCOORD_0":3398, + "TEXCOORD_1":3399, + "TANGENT":3400 + }, + "indices":3004, + "material":10 + }, + { + "attributes":{ + "POSITION":3401, + "NORMAL":3402, + "TEXCOORD_0":3403, + "TEXCOORD_1":3404, + "TANGENT":3405 + }, + "indices":3010, + "material":19 + }, + { + "attributes":{ + "POSITION":3406, + "NORMAL":3407, + "TEXCOORD_0":3408, + "TEXCOORD_1":3409, + "TANGENT":3410 + }, + "indices":3016, + "material":13 + }, + { + "attributes":{ + "POSITION":3411, + "NORMAL":3412, + "TEXCOORD_0":3413, + "TEXCOORD_1":3414, + "TANGENT":3415 + }, + "indices":3022, + "material":24 + }, + { + "attributes":{ + "POSITION":3416, + "NORMAL":3417, + "TEXCOORD_0":3418, + "TEXCOORD_1":3419, + "TANGENT":3420 + }, + "indices":3028, + "material":8 + }, + { + "attributes":{ + "POSITION":3421, + "NORMAL":3422, + "TEXCOORD_0":3423, + "TEXCOORD_1":3424, + "TANGENT":3425 + }, + "indices":3034, + "material":6 + }, + { + "attributes":{ + "POSITION":3426, + "NORMAL":3427, + "TEXCOORD_0":3428, + "TEXCOORD_1":3429, + "TANGENT":3430 + }, + "indices":3040, + "material":7 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_A_Main", + "primitives":[ + { + "attributes":{ + "POSITION":3431, + "NORMAL":3432, + "TEXCOORD_0":3433, + "TEXCOORD_1":3434, + "TANGENT":3435 + }, + "indices":2968, + "material":1 + }, + { + "attributes":{ + "POSITION":3436, + "NORMAL":3437, + "TEXCOORD_0":3438, + "TEXCOORD_1":3439, + "TANGENT":3440 + }, + "indices":2974, + "material":2 + }, + { + "attributes":{ + "POSITION":3441, + "NORMAL":3442, + "TEXCOORD_0":3443, + "TEXCOORD_1":3444, + "TANGENT":3445 + }, + "indices":2980, + "material":15 + }, + { + "attributes":{ + "POSITION":3446, + "NORMAL":3447, + "TEXCOORD_0":3448, + "TEXCOORD_1":3449, + "TANGENT":3450 + }, + "indices":2986, + "material":18 + }, + { + "attributes":{ + "POSITION":3451, + "NORMAL":3452, + "TEXCOORD_0":3453, + "TEXCOORD_1":3454, + "TANGENT":3455 + }, + "indices":2992, + "material":3 + }, + { + "attributes":{ + "POSITION":3456, + "NORMAL":3457, + "TEXCOORD_0":3458, + "TEXCOORD_1":3459, + "TANGENT":3460 + }, + "indices":2998, + "material":4 + }, + { + "attributes":{ + "POSITION":3461, + "NORMAL":3462, + "TEXCOORD_0":3463, + "TEXCOORD_1":3464, + "TANGENT":3465 + }, + "indices":3004, + "material":10 + }, + { + "attributes":{ + "POSITION":3466, + "NORMAL":3467, + "TEXCOORD_0":3468, + "TEXCOORD_1":3469, + "TANGENT":3470 + }, + "indices":3010, + "material":19 + }, + { + "attributes":{ + "POSITION":3471, + "NORMAL":3472, + "TEXCOORD_0":3473, + "TEXCOORD_1":3474, + "TANGENT":3475 + }, + "indices":3016, + "material":13 + }, + { + "attributes":{ + "POSITION":3476, + "NORMAL":3477, + "TEXCOORD_0":3478, + "TEXCOORD_1":3479, + "TANGENT":3480 + }, + "indices":3022, + "material":24 + }, + { + "attributes":{ + "POSITION":3481, + "NORMAL":3482, + "TEXCOORD_0":3483, + "TEXCOORD_1":3484, + "TANGENT":3485 + }, + "indices":3028, + "material":8 + }, + { + "attributes":{ + "POSITION":3486, + "NORMAL":3487, + "TEXCOORD_0":3488, + "TEXCOORD_1":3489, + "TANGENT":3490 + }, + "indices":3034, + "material":6 + }, + { + "attributes":{ + "POSITION":3491, + "NORMAL":3492, + "TEXCOORD_0":3493, + "TEXCOORD_1":3494, + "TANGENT":3495 + }, + "indices":3040, + "material":7 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_A_Main", + "primitives":[ + { + "attributes":{ + "POSITION":3496, + "NORMAL":3497, + "TEXCOORD_0":3498, + "TEXCOORD_1":3499, + "TANGENT":3500 + }, + "indices":2968, + "material":1 + }, + { + "attributes":{ + "POSITION":3501, + "NORMAL":3502, + "TEXCOORD_0":3503, + "TEXCOORD_1":3504, + "TANGENT":3505 + }, + "indices":2974, + "material":2 + }, + { + "attributes":{ + "POSITION":3506, + "NORMAL":3507, + "TEXCOORD_0":3508, + "TEXCOORD_1":3509, + "TANGENT":3510 + }, + "indices":2980, + "material":15 + }, + { + "attributes":{ + "POSITION":3511, + "NORMAL":3512, + "TEXCOORD_0":3513, + "TEXCOORD_1":3514, + "TANGENT":3515 + }, + "indices":2986, + "material":18 + }, + { + "attributes":{ + "POSITION":3516, + "NORMAL":3517, + "TEXCOORD_0":3518, + "TEXCOORD_1":3519, + "TANGENT":3520 + }, + "indices":2992, + "material":3 + }, + { + "attributes":{ + "POSITION":3521, + "NORMAL":3522, + "TEXCOORD_0":3523, + "TEXCOORD_1":3524, + "TANGENT":3525 + }, + "indices":2998, + "material":4 + }, + { + "attributes":{ + "POSITION":3526, + "NORMAL":3527, + "TEXCOORD_0":3528, + "TEXCOORD_1":3529, + "TANGENT":3530 + }, + "indices":3004, + "material":10 + }, + { + "attributes":{ + "POSITION":3531, + "NORMAL":3532, + "TEXCOORD_0":3533, + "TEXCOORD_1":3534, + "TANGENT":3535 + }, + "indices":3010, + "material":19 + }, + { + "attributes":{ + "POSITION":3536, + "NORMAL":3537, + "TEXCOORD_0":3538, + "TEXCOORD_1":3539, + "TANGENT":3540 + }, + "indices":3016, + "material":13 + }, + { + "attributes":{ + "POSITION":3541, + "NORMAL":3542, + "TEXCOORD_0":3543, + "TEXCOORD_1":3544, + "TANGENT":3545 + }, + "indices":3022, + "material":24 + }, + { + "attributes":{ + "POSITION":3546, + "NORMAL":3547, + "TEXCOORD_0":3548, + "TEXCOORD_1":3549, + "TANGENT":3550 + }, + "indices":3028, + "material":8 + }, + { + "attributes":{ + "POSITION":3551, + "NORMAL":3552, + "TEXCOORD_0":3553, + "TEXCOORD_1":3554, + "TANGENT":3555 + }, + "indices":3034, + "material":6 + }, + { + "attributes":{ + "POSITION":3556, + "NORMAL":3557, + "TEXCOORD_0":3558, + "TEXCOORD_1":3559, + "TANGENT":3560 + }, + "indices":3040, + "material":7 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_A_Main", + "primitives":[ + { + "attributes":{ + "POSITION":3561, + "NORMAL":3562, + "TEXCOORD_0":3563, + "TEXCOORD_1":3564, + "TANGENT":3565 + }, + "indices":2968, + "material":1 + }, + { + "attributes":{ + "POSITION":3566, + "NORMAL":3567, + "TEXCOORD_0":3568, + "TEXCOORD_1":3569, + "TANGENT":3570 + }, + "indices":2974, + "material":2 + }, + { + "attributes":{ + "POSITION":3571, + "NORMAL":3572, + "TEXCOORD_0":3573, + "TEXCOORD_1":3574, + "TANGENT":3575 + }, + "indices":2980, + "material":15 + }, + { + "attributes":{ + "POSITION":3576, + "NORMAL":3577, + "TEXCOORD_0":3578, + "TEXCOORD_1":3579, + "TANGENT":3580 + }, + "indices":2986, + "material":18 + }, + { + "attributes":{ + "POSITION":3581, + "NORMAL":3582, + "TEXCOORD_0":3583, + "TEXCOORD_1":3584, + "TANGENT":3585 + }, + "indices":2992, + "material":3 + }, + { + "attributes":{ + "POSITION":3586, + "NORMAL":3587, + "TEXCOORD_0":3588, + "TEXCOORD_1":3589, + "TANGENT":3590 + }, + "indices":2998, + "material":4 + }, + { + "attributes":{ + "POSITION":3591, + "NORMAL":3592, + "TEXCOORD_0":3593, + "TEXCOORD_1":3594, + "TANGENT":3595 + }, + "indices":3004, + "material":10 + }, + { + "attributes":{ + "POSITION":3596, + "NORMAL":3597, + "TEXCOORD_0":3598, + "TEXCOORD_1":3599, + "TANGENT":3600 + }, + "indices":3010, + "material":19 + }, + { + "attributes":{ + "POSITION":3601, + "NORMAL":3602, + "TEXCOORD_0":3603, + "TEXCOORD_1":3604, + "TANGENT":3605 + }, + "indices":3016, + "material":13 + }, + { + "attributes":{ + "POSITION":3606, + "NORMAL":3607, + "TEXCOORD_0":3608, + "TEXCOORD_1":3609, + "TANGENT":3610 + }, + "indices":3022, + "material":24 + }, + { + "attributes":{ + "POSITION":3611, + "NORMAL":3612, + "TEXCOORD_0":3613, + "TEXCOORD_1":3614, + "TANGENT":3615 + }, + "indices":3028, + "material":8 + }, + { + "attributes":{ + "POSITION":3616, + "NORMAL":3617, + "TEXCOORD_0":3618, + "TEXCOORD_1":3619, + "TANGENT":3620 + }, + "indices":3034, + "material":6 + }, + { + "attributes":{ + "POSITION":3621, + "NORMAL":3622, + "TEXCOORD_0":3623, + "TEXCOORD_1":3624, + "TANGENT":3625 + }, + "indices":3040, + "material":7 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_A_Main", + "primitives":[ + { + "attributes":{ + "POSITION":3626, + "NORMAL":3627, + "TEXCOORD_0":3628, + "TEXCOORD_1":3629, + "TANGENT":3630 + }, + "indices":2968, + "material":1 + }, + { + "attributes":{ + "POSITION":3631, + "NORMAL":3632, + "TEXCOORD_0":3633, + "TEXCOORD_1":3634, + "TANGENT":3635 + }, + "indices":2974, + "material":2 + }, + { + "attributes":{ + "POSITION":3636, + "NORMAL":3637, + "TEXCOORD_0":3638, + "TEXCOORD_1":3639, + "TANGENT":3640 + }, + "indices":2980, + "material":15 + }, + { + "attributes":{ + "POSITION":3641, + "NORMAL":3642, + "TEXCOORD_0":3643, + "TEXCOORD_1":3644, + "TANGENT":3645 + }, + "indices":2986, + "material":18 + }, + { + "attributes":{ + "POSITION":3646, + "NORMAL":3647, + "TEXCOORD_0":3648, + "TEXCOORD_1":3649, + "TANGENT":3650 + }, + "indices":2992, + "material":3 + }, + { + "attributes":{ + "POSITION":3651, + "NORMAL":3652, + "TEXCOORD_0":3653, + "TEXCOORD_1":3654, + "TANGENT":3655 + }, + "indices":2998, + "material":4 + }, + { + "attributes":{ + "POSITION":3656, + "NORMAL":3657, + "TEXCOORD_0":3658, + "TEXCOORD_1":3659, + "TANGENT":3660 + }, + "indices":3004, + "material":10 + }, + { + "attributes":{ + "POSITION":3661, + "NORMAL":3662, + "TEXCOORD_0":3663, + "TEXCOORD_1":3664, + "TANGENT":3665 + }, + "indices":3010, + "material":19 + }, + { + "attributes":{ + "POSITION":3666, + "NORMAL":3667, + "TEXCOORD_0":3668, + "TEXCOORD_1":3669, + "TANGENT":3670 + }, + "indices":3016, + "material":13 + }, + { + "attributes":{ + "POSITION":3671, + "NORMAL":3672, + "TEXCOORD_0":3673, + "TEXCOORD_1":3674, + "TANGENT":3675 + }, + "indices":3022, + "material":24 + }, + { + "attributes":{ + "POSITION":3676, + "NORMAL":3677, + "TEXCOORD_0":3678, + "TEXCOORD_1":3679, + "TANGENT":3680 + }, + "indices":3028, + "material":8 + }, + { + "attributes":{ + "POSITION":3681, + "NORMAL":3682, + "TEXCOORD_0":3683, + "TEXCOORD_1":3684, + "TANGENT":3685 + }, + "indices":3034, + "material":6 + }, + { + "attributes":{ + "POSITION":3686, + "NORMAL":3687, + "TEXCOORD_0":3688, + "TEXCOORD_1":3689, + "TANGENT":3690 + }, + "indices":3040, + "material":7 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_A_Main", + "primitives":[ + { + "attributes":{ + "POSITION":3691, + "NORMAL":3692, + "TEXCOORD_0":3693, + "TEXCOORD_1":3694, + "TANGENT":3695 + }, + "indices":2968, + "material":1 + }, + { + "attributes":{ + "POSITION":3696, + "NORMAL":3697, + "TEXCOORD_0":3698, + "TEXCOORD_1":3699, + "TANGENT":3700 + }, + "indices":2974, + "material":2 + }, + { + "attributes":{ + "POSITION":3701, + "NORMAL":3702, + "TEXCOORD_0":3703, + "TEXCOORD_1":3704, + "TANGENT":3705 + }, + "indices":2980, + "material":15 + }, + { + "attributes":{ + "POSITION":3706, + "NORMAL":3707, + "TEXCOORD_0":3708, + "TEXCOORD_1":3709, + "TANGENT":3710 + }, + "indices":2986, + "material":18 + }, + { + "attributes":{ + "POSITION":3711, + "NORMAL":3712, + "TEXCOORD_0":3713, + "TEXCOORD_1":3714, + "TANGENT":3715 + }, + "indices":2992, + "material":3 + }, + { + "attributes":{ + "POSITION":3716, + "NORMAL":3717, + "TEXCOORD_0":3718, + "TEXCOORD_1":3719, + "TANGENT":3720 + }, + "indices":2998, + "material":4 + }, + { + "attributes":{ + "POSITION":3721, + "NORMAL":3722, + "TEXCOORD_0":3723, + "TEXCOORD_1":3724, + "TANGENT":3725 + }, + "indices":3004, + "material":10 + }, + { + "attributes":{ + "POSITION":3726, + "NORMAL":3727, + "TEXCOORD_0":3728, + "TEXCOORD_1":3729, + "TANGENT":3730 + }, + "indices":3010, + "material":19 + }, + { + "attributes":{ + "POSITION":3731, + "NORMAL":3732, + "TEXCOORD_0":3733, + "TEXCOORD_1":3734, + "TANGENT":3735 + }, + "indices":3016, + "material":13 + }, + { + "attributes":{ + "POSITION":3736, + "NORMAL":3737, + "TEXCOORD_0":3738, + "TEXCOORD_1":3739, + "TANGENT":3740 + }, + "indices":3022, + "material":24 + }, + { + "attributes":{ + "POSITION":3741, + "NORMAL":3742, + "TEXCOORD_0":3743, + "TEXCOORD_1":3744, + "TANGENT":3745 + }, + "indices":3028, + "material":8 + }, + { + "attributes":{ + "POSITION":3746, + "NORMAL":3747, + "TEXCOORD_0":3748, + "TEXCOORD_1":3749, + "TANGENT":3750 + }, + "indices":3034, + "material":6 + }, + { + "attributes":{ + "POSITION":3751, + "NORMAL":3752, + "TEXCOORD_0":3753, + "TEXCOORD_1":3754, + "TANGENT":3755 + }, + "indices":3040, + "material":7 + } + ] + }, + { + "name":"KB3D_NEC_BldgLG_B_AntennaA", + "primitives":[ + { + "attributes":{ + "POSITION":3756, + "NORMAL":3757, + "TEXCOORD_0":3758, + "TEXCOORD_1":3759, + "TANGENT":3760, + "COLOR_0":3761, + "COLOR_1":3762, + "COLOR_2":3763 + }, + "indices":3764, + "material":36 + } + ] + }, + { + "name":"KB3D_NEC_BldgLG_B_Main", + "primitives":[ + { + "attributes":{ + "POSITION":3765, + "NORMAL":3766, + "TEXCOORD_0":3767, + "TEXCOORD_1":3768, + "TANGENT":3769, + "COLOR_0":3770, + "COLOR_1":3771, + "COLOR_2":3772 + }, + "indices":3773, + "material":27 + }, + { + "attributes":{ + "POSITION":3774, + "NORMAL":3775, + "TEXCOORD_0":3776, + "TEXCOORD_1":3777, + "TANGENT":3778, + "COLOR_0":3779, + "COLOR_1":3780, + "COLOR_2":3781 + }, + "indices":3782, + "material":54 + }, + { + "attributes":{ + "POSITION":3783, + "NORMAL":3784, + "TEXCOORD_0":3785, + "TEXCOORD_1":3786, + "TANGENT":3787, + "COLOR_0":3788, + "COLOR_1":3789, + "COLOR_2":3790 + }, + "indices":3791, + "material":60 + }, + { + "attributes":{ + "POSITION":3792, + "NORMAL":3793, + "TEXCOORD_0":3794, + "TEXCOORD_1":3795, + "TANGENT":3796, + "COLOR_0":3797, + "COLOR_1":3798, + "COLOR_2":3799 + }, + "indices":3800, + "material":31 + }, + { + "attributes":{ + "POSITION":3801, + "NORMAL":3802, + "TEXCOORD_0":3803, + "TEXCOORD_1":3804, + "TANGENT":3805, + "COLOR_0":3806, + "COLOR_1":3807, + "COLOR_2":3808 + }, + "indices":3809, + "material":25 + }, + { + "attributes":{ + "POSITION":3810, + "NORMAL":3811, + "TEXCOORD_0":3812, + "TEXCOORD_1":3813, + "TANGENT":3814, + "COLOR_0":3815, + "COLOR_1":3816, + "COLOR_2":3817 + }, + "indices":3818, + "material":55 + }, + { + "attributes":{ + "POSITION":3819, + "NORMAL":3820, + "TEXCOORD_0":3821, + "TEXCOORD_1":3822, + "TANGENT":3823, + "COLOR_0":3824, + "COLOR_1":3825, + "COLOR_2":3826 + }, + "indices":3827, + "material":32 + }, + { + "attributes":{ + "POSITION":3828, + "NORMAL":3829, + "TEXCOORD_0":3830, + "TEXCOORD_1":3831, + "TANGENT":3832, + "COLOR_0":3833, + "COLOR_1":3834, + "COLOR_2":3835 + }, + "indices":3836, + "material":35 + }, + { + "attributes":{ + "POSITION":3837, + "NORMAL":3838, + "TEXCOORD_0":3839, + "TEXCOORD_1":3840, + "TANGENT":3841, + "COLOR_0":3842, + "COLOR_1":3843, + "COLOR_2":3844 + }, + "indices":3845, + "material":56 + }, + { + "attributes":{ + "POSITION":3846, + "NORMAL":3847, + "TEXCOORD_0":3848, + "TEXCOORD_1":3849, + "TANGENT":3850, + "COLOR_0":3851, + "COLOR_1":3852, + "COLOR_2":3853 + }, + "indices":3854, + "material":36 + }, + { + "attributes":{ + "POSITION":3855, + "NORMAL":3856, + "TEXCOORD_0":3857, + "TEXCOORD_1":3858, + "TANGENT":3859, + "COLOR_0":3860, + "COLOR_1":3861, + "COLOR_2":3862 + }, + "indices":3863, + "material":37 + }, + { + "attributes":{ + "POSITION":3864, + "NORMAL":3865, + "TEXCOORD_0":3866, + "TEXCOORD_1":3867, + "TANGENT":3868, + "COLOR_0":3869, + "COLOR_1":3870, + "COLOR_2":3871 + }, + "indices":3872, + "material":57 + }, + { + "attributes":{ + "POSITION":3873, + "NORMAL":3874, + "TEXCOORD_0":3875, + "TEXCOORD_1":3876, + "TANGENT":3877, + "COLOR_0":3878, + "COLOR_1":3879, + "COLOR_2":3880 + }, + "indices":3881, + "material":38 + } + ] + }, + { + "name":"KB3D_NEC_BldgLG_B_Main", + "primitives":[ + { + "attributes":{ + "POSITION":3882, + "NORMAL":3883, + "TEXCOORD_0":3884, + "TEXCOORD_1":3885, + "TANGENT":3886, + "COLOR_0":3887, + "COLOR_1":3888, + "COLOR_2":3889 + }, + "indices":3773, + "material":27 + }, + { + "attributes":{ + "POSITION":3890, + "NORMAL":3891, + "TEXCOORD_0":3892, + "TEXCOORD_1":3893, + "TANGENT":3894, + "COLOR_0":3895, + "COLOR_1":3896, + "COLOR_2":3897 + }, + "indices":3782, + "material":54 + }, + { + "attributes":{ + "POSITION":3898, + "NORMAL":3899, + "TEXCOORD_0":3900, + "TEXCOORD_1":3901, + "TANGENT":3902, + "COLOR_0":3903, + "COLOR_1":3904, + "COLOR_2":3905 + }, + "indices":3791, + "material":60 + }, + { + "attributes":{ + "POSITION":3906, + "NORMAL":3907, + "TEXCOORD_0":3908, + "TEXCOORD_1":3909, + "TANGENT":3910, + "COLOR_0":3911, + "COLOR_1":3912, + "COLOR_2":3913 + }, + "indices":3800, + "material":31 + }, + { + "attributes":{ + "POSITION":3914, + "NORMAL":3915, + "TEXCOORD_0":3916, + "TEXCOORD_1":3917, + "TANGENT":3918, + "COLOR_0":3919, + "COLOR_1":3920, + "COLOR_2":3921 + }, + "indices":3809, + "material":25 + }, + { + "attributes":{ + "POSITION":3922, + "NORMAL":3923, + "TEXCOORD_0":3924, + "TEXCOORD_1":3925, + "TANGENT":3926, + "COLOR_0":3927, + "COLOR_1":3928, + "COLOR_2":3929 + }, + "indices":3818, + "material":55 + }, + { + "attributes":{ + "POSITION":3930, + "NORMAL":3931, + "TEXCOORD_0":3932, + "TEXCOORD_1":3933, + "TANGENT":3934, + "COLOR_0":3935, + "COLOR_1":3936, + "COLOR_2":3937 + }, + "indices":3827, + "material":32 + }, + { + "attributes":{ + "POSITION":3938, + "NORMAL":3939, + "TEXCOORD_0":3940, + "TEXCOORD_1":3941, + "TANGENT":3942, + "COLOR_0":3943, + "COLOR_1":3944, + "COLOR_2":3945 + }, + "indices":3836, + "material":35 + }, + { + "attributes":{ + "POSITION":3946, + "NORMAL":3947, + "TEXCOORD_0":3948, + "TEXCOORD_1":3949, + "TANGENT":3950, + "COLOR_0":3951, + "COLOR_1":3952, + "COLOR_2":3953 + }, + "indices":3845, + "material":56 + }, + { + "attributes":{ + "POSITION":3954, + "NORMAL":3955, + "TEXCOORD_0":3956, + "TEXCOORD_1":3957, + "TANGENT":3958, + "COLOR_0":3959, + "COLOR_1":3960, + "COLOR_2":3961 + }, + "indices":3854, + "material":36 + }, + { + "attributes":{ + "POSITION":3962, + "NORMAL":3963, + "TEXCOORD_0":3964, + "TEXCOORD_1":3965, + "TANGENT":3966, + "COLOR_0":3967, + "COLOR_1":3968, + "COLOR_2":3969 + }, + "indices":3863, + "material":37 + }, + { + "attributes":{ + "POSITION":3970, + "NORMAL":3971, + "TEXCOORD_0":3972, + "TEXCOORD_1":3973, + "TANGENT":3974, + "COLOR_0":3975, + "COLOR_1":3976, + "COLOR_2":3977 + }, + "indices":3872, + "material":57 + }, + { + "attributes":{ + "POSITION":3978, + "NORMAL":3979, + "TEXCOORD_0":3980, + "TEXCOORD_1":3981, + "TANGENT":3982, + "COLOR_0":3983, + "COLOR_1":3984, + "COLOR_2":3985 + }, + "indices":3881, + "material":38 + } + ] + }, + { + "name":"KB3D_NEC_BldgLG_B_Main", + "primitives":[ + { + "attributes":{ + "POSITION":3986, + "NORMAL":3987, + "TEXCOORD_0":3988, + "TEXCOORD_1":3989, + "TANGENT":3990, + "COLOR_0":3991, + "COLOR_1":3992, + "COLOR_2":3993 + }, + "indices":3773, + "material":27 + }, + { + "attributes":{ + "POSITION":3994, + "NORMAL":3995, + "TEXCOORD_0":3996, + "TEXCOORD_1":3997, + "TANGENT":3998, + "COLOR_0":3999, + "COLOR_1":4000, + "COLOR_2":4001 + }, + "indices":3782, + "material":54 + }, + { + "attributes":{ + "POSITION":4002, + "NORMAL":4003, + "TEXCOORD_0":4004, + "TEXCOORD_1":4005, + "TANGENT":4006, + "COLOR_0":4007, + "COLOR_1":4008, + "COLOR_2":4009 + }, + "indices":3791, + "material":60 + }, + { + "attributes":{ + "POSITION":4010, + "NORMAL":4011, + "TEXCOORD_0":4012, + "TEXCOORD_1":4013, + "TANGENT":4014, + "COLOR_0":4015, + "COLOR_1":4016, + "COLOR_2":4017 + }, + "indices":3800, + "material":31 + }, + { + "attributes":{ + "POSITION":4018, + "NORMAL":4019, + "TEXCOORD_0":4020, + "TEXCOORD_1":4021, + "TANGENT":4022, + "COLOR_0":4023, + "COLOR_1":4024, + "COLOR_2":4025 + }, + "indices":3809, + "material":25 + }, + { + "attributes":{ + "POSITION":4026, + "NORMAL":4027, + "TEXCOORD_0":4028, + "TEXCOORD_1":4029, + "TANGENT":4030, + "COLOR_0":4031, + "COLOR_1":4032, + "COLOR_2":4033 + }, + "indices":3818, + "material":55 + }, + { + "attributes":{ + "POSITION":4034, + "NORMAL":4035, + "TEXCOORD_0":4036, + "TEXCOORD_1":4037, + "TANGENT":4038, + "COLOR_0":4039, + "COLOR_1":4040, + "COLOR_2":4041 + }, + "indices":3827, + "material":32 + }, + { + "attributes":{ + "POSITION":4042, + "NORMAL":4043, + "TEXCOORD_0":4044, + "TEXCOORD_1":4045, + "TANGENT":4046, + "COLOR_0":4047, + "COLOR_1":4048, + "COLOR_2":4049 + }, + "indices":3836, + "material":35 + }, + { + "attributes":{ + "POSITION":4050, + "NORMAL":4051, + "TEXCOORD_0":4052, + "TEXCOORD_1":4053, + "TANGENT":4054, + "COLOR_0":4055, + "COLOR_1":4056, + "COLOR_2":4057 + }, + "indices":3845, + "material":56 + }, + { + "attributes":{ + "POSITION":4058, + "NORMAL":4059, + "TEXCOORD_0":4060, + "TEXCOORD_1":4061, + "TANGENT":4062, + "COLOR_0":4063, + "COLOR_1":4064, + "COLOR_2":4065 + }, + "indices":3854, + "material":36 + }, + { + "attributes":{ + "POSITION":4066, + "NORMAL":4067, + "TEXCOORD_0":4068, + "TEXCOORD_1":4069, + "TANGENT":4070, + "COLOR_0":4071, + "COLOR_1":4072, + "COLOR_2":4073 + }, + "indices":3863, + "material":37 + }, + { + "attributes":{ + "POSITION":4074, + "NORMAL":4075, + "TEXCOORD_0":4076, + "TEXCOORD_1":4077, + "TANGENT":4078, + "COLOR_0":4079, + "COLOR_1":4080, + "COLOR_2":4081 + }, + "indices":3872, + "material":57 + }, + { + "attributes":{ + "POSITION":4082, + "NORMAL":4083, + "TEXCOORD_0":4084, + "TEXCOORD_1":4085, + "TANGENT":4086, + "COLOR_0":4087, + "COLOR_1":4088, + "COLOR_2":4089 + }, + "indices":3881, + "material":38 + } + ] + }, + { + "name":"KB3D_NEC_BldgLG_B_Main", + "primitives":[ + { + "attributes":{ + "POSITION":4090, + "NORMAL":4091, + "TEXCOORD_0":4092, + "TEXCOORD_1":4093, + "TANGENT":4094, + "COLOR_0":4095, + "COLOR_1":4096, + "COLOR_2":4097 + }, + "indices":3773, + "material":27 + }, + { + "attributes":{ + "POSITION":4098, + "NORMAL":4099, + "TEXCOORD_0":4100, + "TEXCOORD_1":4101, + "TANGENT":4102, + "COLOR_0":4103, + "COLOR_1":4104, + "COLOR_2":4105 + }, + "indices":3782, + "material":54 + }, + { + "attributes":{ + "POSITION":4106, + "NORMAL":4107, + "TEXCOORD_0":4108, + "TEXCOORD_1":4109, + "TANGENT":4110, + "COLOR_0":4111, + "COLOR_1":4112, + "COLOR_2":4113 + }, + "indices":3791, + "material":60 + }, + { + "attributes":{ + "POSITION":4114, + "NORMAL":4115, + "TEXCOORD_0":4116, + "TEXCOORD_1":4117, + "TANGENT":4118, + "COLOR_0":4119, + "COLOR_1":4120, + "COLOR_2":4121 + }, + "indices":3800, + "material":31 + }, + { + "attributes":{ + "POSITION":4122, + "NORMAL":4123, + "TEXCOORD_0":4124, + "TEXCOORD_1":4125, + "TANGENT":4126, + "COLOR_0":4127, + "COLOR_1":4128, + "COLOR_2":4129 + }, + "indices":3809, + "material":25 + }, + { + "attributes":{ + "POSITION":4130, + "NORMAL":4131, + "TEXCOORD_0":4132, + "TEXCOORD_1":4133, + "TANGENT":4134, + "COLOR_0":4135, + "COLOR_1":4136, + "COLOR_2":4137 + }, + "indices":3818, + "material":55 + }, + { + "attributes":{ + "POSITION":4138, + "NORMAL":4139, + "TEXCOORD_0":4140, + "TEXCOORD_1":4141, + "TANGENT":4142, + "COLOR_0":4143, + "COLOR_1":4144, + "COLOR_2":4145 + }, + "indices":3827, + "material":32 + }, + { + "attributes":{ + "POSITION":4146, + "NORMAL":4147, + "TEXCOORD_0":4148, + "TEXCOORD_1":4149, + "TANGENT":4150, + "COLOR_0":4151, + "COLOR_1":4152, + "COLOR_2":4153 + }, + "indices":3836, + "material":35 + }, + { + "attributes":{ + "POSITION":4154, + "NORMAL":4155, + "TEXCOORD_0":4156, + "TEXCOORD_1":4157, + "TANGENT":4158, + "COLOR_0":4159, + "COLOR_1":4160, + "COLOR_2":4161 + }, + "indices":3845, + "material":56 + }, + { + "attributes":{ + "POSITION":4162, + "NORMAL":4163, + "TEXCOORD_0":4164, + "TEXCOORD_1":4165, + "TANGENT":4166, + "COLOR_0":4167, + "COLOR_1":4168, + "COLOR_2":4169 + }, + "indices":3854, + "material":36 + }, + { + "attributes":{ + "POSITION":4170, + "NORMAL":4171, + "TEXCOORD_0":4172, + "TEXCOORD_1":4173, + "TANGENT":4174, + "COLOR_0":4175, + "COLOR_1":4176, + "COLOR_2":4177 + }, + "indices":3863, + "material":37 + }, + { + "attributes":{ + "POSITION":4178, + "NORMAL":4179, + "TEXCOORD_0":4180, + "TEXCOORD_1":4181, + "TANGENT":4182, + "COLOR_0":4183, + "COLOR_1":4184, + "COLOR_2":4185 + }, + "indices":3872, + "material":57 + }, + { + "attributes":{ + "POSITION":4186, + "NORMAL":4187, + "TEXCOORD_0":4188, + "TEXCOORD_1":4189, + "TANGENT":4190, + "COLOR_0":4191, + "COLOR_1":4192, + "COLOR_2":4193 + }, + "indices":3881, + "material":38 + } + ] + }, + { + "name":"KB3D_NEC_BldgLG_B_AntennaA", + "primitives":[ + { + "attributes":{ + "POSITION":4194, + "NORMAL":4195, + "TEXCOORD_0":4196, + "TEXCOORD_1":4197, + "TANGENT":4198, + "COLOR_0":4199, + "COLOR_1":4200, + "COLOR_2":4201 + }, + "indices":3764, + "material":36 + } + ] + }, + { + "name":"KB3D_NEC_BldgLG_B_Main", + "primitives":[ + { + "attributes":{ + "POSITION":4202, + "NORMAL":4203, + "TEXCOORD_0":4204, + "TEXCOORD_1":4205, + "TANGENT":4206, + "COLOR_0":4207, + "COLOR_1":4208, + "COLOR_2":4209 + }, + "indices":3773, + "material":27 + }, + { + "attributes":{ + "POSITION":4210, + "NORMAL":4211, + "TEXCOORD_0":4212, + "TEXCOORD_1":4213, + "TANGENT":4214, + "COLOR_0":4215, + "COLOR_1":4216, + "COLOR_2":4217 + }, + "indices":3782, + "material":54 + }, + { + "attributes":{ + "POSITION":4218, + "NORMAL":4219, + "TEXCOORD_0":4220, + "TEXCOORD_1":4221, + "TANGENT":4222, + "COLOR_0":4223, + "COLOR_1":4224, + "COLOR_2":4225 + }, + "indices":3791, + "material":60 + }, + { + "attributes":{ + "POSITION":4226, + "NORMAL":4227, + "TEXCOORD_0":4228, + "TEXCOORD_1":4229, + "TANGENT":4230, + "COLOR_0":4231, + "COLOR_1":4232, + "COLOR_2":4233 + }, + "indices":3800, + "material":31 + }, + { + "attributes":{ + "POSITION":4234, + "NORMAL":4235, + "TEXCOORD_0":4236, + "TEXCOORD_1":4237, + "TANGENT":4238, + "COLOR_0":4239, + "COLOR_1":4240, + "COLOR_2":4241 + }, + "indices":3809, + "material":25 + }, + { + "attributes":{ + "POSITION":4242, + "NORMAL":4243, + "TEXCOORD_0":4244, + "TEXCOORD_1":4245, + "TANGENT":4246, + "COLOR_0":4247, + "COLOR_1":4248, + "COLOR_2":4249 + }, + "indices":3818, + "material":55 + }, + { + "attributes":{ + "POSITION":4250, + "NORMAL":4251, + "TEXCOORD_0":4252, + "TEXCOORD_1":4253, + "TANGENT":4254, + "COLOR_0":4255, + "COLOR_1":4256, + "COLOR_2":4257 + }, + "indices":3827, + "material":32 + }, + { + "attributes":{ + "POSITION":4258, + "NORMAL":4259, + "TEXCOORD_0":4260, + "TEXCOORD_1":4261, + "TANGENT":4262, + "COLOR_0":4263, + "COLOR_1":4264, + "COLOR_2":4265 + }, + "indices":3836, + "material":35 + }, + { + "attributes":{ + "POSITION":4266, + "NORMAL":4267, + "TEXCOORD_0":4268, + "TEXCOORD_1":4269, + "TANGENT":4270, + "COLOR_0":4271, + "COLOR_1":4272, + "COLOR_2":4273 + }, + "indices":3845, + "material":56 + }, + { + "attributes":{ + "POSITION":4274, + "NORMAL":4275, + "TEXCOORD_0":4276, + "TEXCOORD_1":4277, + "TANGENT":4278, + "COLOR_0":4279, + "COLOR_1":4280, + "COLOR_2":4281 + }, + "indices":3854, + "material":36 + }, + { + "attributes":{ + "POSITION":4282, + "NORMAL":4283, + "TEXCOORD_0":4284, + "TEXCOORD_1":4285, + "TANGENT":4286, + "COLOR_0":4287, + "COLOR_1":4288, + "COLOR_2":4289 + }, + "indices":3863, + "material":37 + }, + { + "attributes":{ + "POSITION":4290, + "NORMAL":4291, + "TEXCOORD_0":4292, + "TEXCOORD_1":4293, + "TANGENT":4294, + "COLOR_0":4295, + "COLOR_1":4296, + "COLOR_2":4297 + }, + "indices":3872, + "material":57 + }, + { + "attributes":{ + "POSITION":4298, + "NORMAL":4299, + "TEXCOORD_0":4300, + "TEXCOORD_1":4301, + "TANGENT":4302, + "COLOR_0":4303, + "COLOR_1":4304, + "COLOR_2":4305 + }, + "indices":3881, + "material":38 + } + ] + }, + { + "name":"KB3D_NEC_BldgLG_B_AntennaA", + "primitives":[ + { + "attributes":{ + "POSITION":4306, + "NORMAL":4307, + "TEXCOORD_0":4308, + "TEXCOORD_1":4309, + "TANGENT":4310, + "COLOR_0":4311, + "COLOR_1":4312, + "COLOR_2":4313 + }, + "indices":3764, + "material":36 + } + ] + }, + { + "name":"KB3D_NEC_BldgLG_B_Main", + "primitives":[ + { + "attributes":{ + "POSITION":4314, + "NORMAL":4315, + "TEXCOORD_0":4316, + "TEXCOORD_1":4317, + "TANGENT":4318, + "COLOR_0":4319, + "COLOR_1":4320, + "COLOR_2":4321 + }, + "indices":3773, + "material":27 + }, + { + "attributes":{ + "POSITION":4322, + "NORMAL":4323, + "TEXCOORD_0":4324, + "TEXCOORD_1":4325, + "TANGENT":4326, + "COLOR_0":4327, + "COLOR_1":4328, + "COLOR_2":4329 + }, + "indices":3782, + "material":54 + }, + { + "attributes":{ + "POSITION":4330, + "NORMAL":4331, + "TEXCOORD_0":4332, + "TEXCOORD_1":4333, + "TANGENT":4334, + "COLOR_0":4335, + "COLOR_1":4336, + "COLOR_2":4337 + }, + "indices":3791, + "material":60 + }, + { + "attributes":{ + "POSITION":4338, + "NORMAL":4339, + "TEXCOORD_0":4340, + "TEXCOORD_1":4341, + "TANGENT":4342, + "COLOR_0":4343, + "COLOR_1":4344, + "COLOR_2":4345 + }, + "indices":3800, + "material":31 + }, + { + "attributes":{ + "POSITION":4346, + "NORMAL":4347, + "TEXCOORD_0":4348, + "TEXCOORD_1":4349, + "TANGENT":4350, + "COLOR_0":4351, + "COLOR_1":4352, + "COLOR_2":4353 + }, + "indices":3809, + "material":25 + }, + { + "attributes":{ + "POSITION":4354, + "NORMAL":4355, + "TEXCOORD_0":4356, + "TEXCOORD_1":4357, + "TANGENT":4358, + "COLOR_0":4359, + "COLOR_1":4360, + "COLOR_2":4361 + }, + "indices":3818, + "material":55 + }, + { + "attributes":{ + "POSITION":4362, + "NORMAL":4363, + "TEXCOORD_0":4364, + "TEXCOORD_1":4365, + "TANGENT":4366, + "COLOR_0":4367, + "COLOR_1":4368, + "COLOR_2":4369 + }, + "indices":3827, + "material":32 + }, + { + "attributes":{ + "POSITION":4370, + "NORMAL":4371, + "TEXCOORD_0":4372, + "TEXCOORD_1":4373, + "TANGENT":4374, + "COLOR_0":4375, + "COLOR_1":4376, + "COLOR_2":4377 + }, + "indices":3836, + "material":35 + }, + { + "attributes":{ + "POSITION":4378, + "NORMAL":4379, + "TEXCOORD_0":4380, + "TEXCOORD_1":4381, + "TANGENT":4382, + "COLOR_0":4383, + "COLOR_1":4384, + "COLOR_2":4385 + }, + "indices":3845, + "material":56 + }, + { + "attributes":{ + "POSITION":4386, + "NORMAL":4387, + "TEXCOORD_0":4388, + "TEXCOORD_1":4389, + "TANGENT":4390, + "COLOR_0":4391, + "COLOR_1":4392, + "COLOR_2":4393 + }, + "indices":3854, + "material":36 + }, + { + "attributes":{ + "POSITION":4394, + "NORMAL":4395, + "TEXCOORD_0":4396, + "TEXCOORD_1":4397, + "TANGENT":4398, + "COLOR_0":4399, + "COLOR_1":4400, + "COLOR_2":4401 + }, + "indices":3863, + "material":37 + }, + { + "attributes":{ + "POSITION":4402, + "NORMAL":4403, + "TEXCOORD_0":4404, + "TEXCOORD_1":4405, + "TANGENT":4406, + "COLOR_0":4407, + "COLOR_1":4408, + "COLOR_2":4409 + }, + "indices":3872, + "material":57 + }, + { + "attributes":{ + "POSITION":4410, + "NORMAL":4411, + "TEXCOORD_0":4412, + "TEXCOORD_1":4413, + "TANGENT":4414, + "COLOR_0":4415, + "COLOR_1":4416, + "COLOR_2":4417 + }, + "indices":3881, + "material":38 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_B_Bbq", + "primitives":[ + { + "attributes":{ + "POSITION":4418, + "NORMAL":4419, + "TEXCOORD_0":4420, + "TEXCOORD_1":4421, + "TANGENT":4422 + }, + "indices":376, + "material":1 + }, + { + "attributes":{ + "POSITION":4423, + "NORMAL":4424, + "TEXCOORD_0":4425, + "TEXCOORD_1":4426, + "TANGENT":4427 + }, + "indices":382, + "material":15 + }, + { + "attributes":{ + "POSITION":4428, + "NORMAL":4429, + "TEXCOORD_0":4430, + "TEXCOORD_1":4431, + "TANGENT":4432 + }, + "indices":388, + "material":3 + }, + { + "attributes":{ + "POSITION":4433, + "NORMAL":4434, + "TEXCOORD_0":4435, + "TEXCOORD_1":4436, + "TANGENT":4437 + }, + "indices":394, + "material":10 + }, + { + "attributes":{ + "POSITION":4438, + "NORMAL":4439, + "TEXCOORD_0":4440, + "TEXCOORD_1":4441, + "TANGENT":4442 + }, + "indices":400, + "material":6 + }, + { + "attributes":{ + "POSITION":4443, + "NORMAL":4444, + "TEXCOORD_0":4445, + "TEXCOORD_1":4446, + "TANGENT":4447 + }, + "indices":406, + "material":7 + }, + { + "attributes":{ + "POSITION":4448, + "NORMAL":4449, + "TEXCOORD_0":4450, + "TEXCOORD_1":4451, + "TANGENT":4452 + }, + "indices":412, + "material":12 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_B_Cart", + "primitives":[ + { + "attributes":{ + "POSITION":4453, + "NORMAL":4454, + "TEXCOORD_0":4455, + "TEXCOORD_1":4456, + "TANGENT":4457 + }, + "indices":418, + "material":1 + }, + { + "attributes":{ + "POSITION":4458, + "NORMAL":4459, + "TEXCOORD_0":4460, + "TEXCOORD_1":4461, + "TANGENT":4462 + }, + "indices":424, + "material":21 + }, + { + "attributes":{ + "POSITION":4463, + "NORMAL":4464, + "TEXCOORD_0":4465, + "TEXCOORD_1":4466, + "TANGENT":4467 + }, + "indices":430, + "material":22 + }, + { + "attributes":{ + "POSITION":4468, + "NORMAL":4469, + "TEXCOORD_0":4470, + "TEXCOORD_1":4471, + "TANGENT":4472 + }, + "indices":436, + "material":19 + }, + { + "attributes":{ + "POSITION":4473, + "NORMAL":4474, + "TEXCOORD_0":4475, + "TEXCOORD_1":4476, + "TANGENT":4477 + }, + "indices":442, + "material":6 + }, + { + "attributes":{ + "POSITION":4478, + "NORMAL":4479, + "TEXCOORD_0":4480, + "TEXCOORD_1":4481, + "TANGENT":4482 + }, + "indices":448, + "material":7 + }, + { + "attributes":{ + "POSITION":4483, + "NORMAL":4484, + "TEXCOORD_0":4485, + "TEXCOORD_1":4486, + "TANGENT":4487 + }, + "indices":454, + "material":12 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_B_Computers", + "primitives":[ + { + "attributes":{ + "POSITION":4488, + "NORMAL":4489, + "TEXCOORD_0":4490, + "TEXCOORD_1":4491, + "TANGENT":4492 + }, + "indices":460, + "material":15 + }, + { + "attributes":{ + "POSITION":4493, + "NORMAL":4494, + "TEXCOORD_0":4495, + "TEXCOORD_1":4496, + "TANGENT":4497 + }, + "indices":466, + "material":10 + }, + { + "attributes":{ + "POSITION":4498, + "NORMAL":4499, + "TEXCOORD_0":4500, + "TEXCOORD_1":4501, + "TANGENT":4502 + }, + "indices":472, + "material":19 + }, + { + "attributes":{ + "POSITION":4503, + "NORMAL":4504, + "TEXCOORD_0":4505, + "TEXCOORD_1":4506, + "TANGENT":4507 + }, + "indices":478, + "material":6 + }, + { + "attributes":{ + "POSITION":4508, + "NORMAL":4509, + "TEXCOORD_0":4510, + "TEXCOORD_1":4511, + "TANGENT":4512 + }, + "indices":484, + "material":7 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_B_FridgeB.001", + "primitives":[ + { + "attributes":{ + "POSITION":4513, + "NORMAL":4514, + "TEXCOORD_0":4515, + "TEXCOORD_1":4516, + "TANGENT":4517 + }, + "indices":154, + "material":14 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_B_FridgeB", + "primitives":[ + { + "attributes":{ + "POSITION":4518, + "NORMAL":4519, + "TEXCOORD_0":4520, + "TEXCOORD_1":4521, + "TANGENT":4522 + }, + "indices":490, + "material":1 + }, + { + "attributes":{ + "POSITION":4523, + "NORMAL":4524, + "TEXCOORD_0":4525, + "TEXCOORD_1":4526, + "TANGENT":4527 + }, + "indices":496, + "material":15 + }, + { + "attributes":{ + "POSITION":4528, + "NORMAL":4529, + "TEXCOORD_0":4530, + "TEXCOORD_1":4531, + "TANGENT":4532 + }, + "indices":502, + "material":3 + }, + { + "attributes":{ + "POSITION":4533, + "NORMAL":4534, + "TEXCOORD_0":4535, + "TEXCOORD_1":4536, + "TANGENT":4537 + }, + "indices":508, + "material":10 + }, + { + "attributes":{ + "POSITION":4538, + "NORMAL":4539, + "TEXCOORD_0":4540, + "TEXCOORD_1":4541, + "TANGENT":4542 + }, + "indices":514, + "material":23 + }, + { + "attributes":{ + "POSITION":4543, + "NORMAL":4544, + "TEXCOORD_0":4545, + "TEXCOORD_1":4546, + "TANGENT":4547 + }, + "indices":520, + "material":19 + }, + { + "attributes":{ + "POSITION":4548, + "NORMAL":4549, + "TEXCOORD_0":4550, + "TEXCOORD_1":4551, + "TANGENT":4552 + }, + "indices":526, + "material":13 + }, + { + "attributes":{ + "POSITION":4553, + "NORMAL":4554, + "TEXCOORD_0":4555, + "TEXCOORD_1":4556, + "TANGENT":4557 + }, + "indices":532, + "material":24 + }, + { + "attributes":{ + "POSITION":4558, + "NORMAL":4559, + "TEXCOORD_0":4560, + "TEXCOORD_1":4561, + "TANGENT":4562 + }, + "indices":538, + "material":6 + }, + { + "attributes":{ + "POSITION":4563, + "NORMAL":4564, + "TEXCOORD_0":4565, + "TEXCOORD_1":4566, + "TANGENT":4567 + }, + "indices":544, + "material":7 + }, + { + "attributes":{ + "POSITION":4568, + "NORMAL":4569, + "TEXCOORD_0":4570, + "TEXCOORD_1":4571, + "TANGENT":4572 + }, + "indices":550, + "material":12 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_B_Main", + "primitives":[ + { + "attributes":{ + "POSITION":4573, + "NORMAL":4574, + "TEXCOORD_0":4575, + "TEXCOORD_1":4576, + "TANGENT":4577 + }, + "indices":561, + "material":1 + }, + { + "attributes":{ + "POSITION":4578, + "NORMAL":4579, + "TEXCOORD_0":4580, + "TEXCOORD_1":4581, + "TANGENT":4582 + }, + "indices":567, + "material":25 + }, + { + "attributes":{ + "POSITION":4583, + "NORMAL":4584, + "TEXCOORD_0":4585, + "TEXCOORD_1":4586, + "TANGENT":4587 + }, + "indices":573, + "material":11 + }, + { + "attributes":{ + "POSITION":4588, + "NORMAL":4589, + "TEXCOORD_0":4590, + "TEXCOORD_1":4591, + "TANGENT":4592 + }, + "indices":579, + "material":15 + }, + { + "attributes":{ + "POSITION":4593, + "NORMAL":4594, + "TEXCOORD_0":4595, + "TEXCOORD_1":4596, + "TANGENT":4597 + }, + "indices":585, + "material":3 + }, + { + "attributes":{ + "POSITION":4598, + "NORMAL":4599, + "TEXCOORD_0":4600, + "TEXCOORD_1":4601, + "TANGENT":4602 + }, + "indices":591, + "material":10 + }, + { + "attributes":{ + "POSITION":4603, + "NORMAL":4604, + "TEXCOORD_0":4605, + "TEXCOORD_1":4606, + "TANGENT":4607 + }, + "indices":597, + "material":23 + }, + { + "attributes":{ + "POSITION":4608, + "NORMAL":4609, + "TEXCOORD_0":4610, + "TEXCOORD_1":4611, + "TANGENT":4612 + }, + "indices":603, + "material":19 + }, + { + "attributes":{ + "POSITION":4613, + "NORMAL":4614, + "TEXCOORD_0":4615, + "TEXCOORD_1":4616, + "TANGENT":4617 + }, + "indices":609, + "material":13 + }, + { + "attributes":{ + "POSITION":4618, + "NORMAL":4619, + "TEXCOORD_0":4620, + "TEXCOORD_1":4621, + "TANGENT":4622 + }, + "indices":615, + "material":6 + }, + { + "attributes":{ + "POSITION":4623, + "NORMAL":4624, + "TEXCOORD_0":4625, + "TEXCOORD_1":4626, + "TANGENT":4627 + }, + "indices":621, + "material":7 + }, + { + "attributes":{ + "POSITION":4628, + "NORMAL":4629, + "TEXCOORD_0":4630, + "TEXCOORD_1":4631, + "TANGENT":4632 + }, + "indices":627, + "material":12 + }, + { + "attributes":{ + "POSITION":4633, + "NORMAL":4634, + "TEXCOORD_0":4635, + "TEXCOORD_1":4636, + "TANGENT":4637 + }, + "indices":633, + "material":16 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_B_Umbrella", + "primitives":[ + { + "attributes":{ + "POSITION":4638, + "NORMAL":4639, + "TEXCOORD_0":4640, + "TEXCOORD_1":4641, + "TANGENT":4642 + }, + "indices":639, + "material":18 + }, + { + "attributes":{ + "POSITION":4643, + "NORMAL":4644, + "TEXCOORD_0":4645, + "TEXCOORD_1":4646, + "TANGENT":4647 + }, + "indices":645, + "material":26 + }, + { + "attributes":{ + "POSITION":4648, + "NORMAL":4649, + "TEXCOORD_0":4650, + "TEXCOORD_1":4651, + "TANGENT":4652 + }, + "indices":651, + "material":21 + }, + { + "attributes":{ + "POSITION":4653, + "NORMAL":4654, + "TEXCOORD_0":4655, + "TEXCOORD_1":4656, + "TANGENT":4657 + }, + "indices":657, + "material":3 + }, + { + "attributes":{ + "POSITION":4658, + "NORMAL":4659, + "TEXCOORD_0":4660, + "TEXCOORD_1":4661, + "TANGENT":4662 + }, + "indices":663, + "material":22 + }, + { + "attributes":{ + "POSITION":4663, + "NORMAL":4664, + "TEXCOORD_0":4665, + "TEXCOORD_1":4666, + "TANGENT":4667 + }, + "indices":669, + "material":19 + }, + { + "attributes":{ + "POSITION":4668, + "NORMAL":4669, + "TEXCOORD_0":4670, + "TEXCOORD_1":4671, + "TANGENT":4672 + }, + "indices":675, + "material":13 + }, + { + "attributes":{ + "POSITION":4673, + "NORMAL":4674, + "TEXCOORD_0":4675, + "TEXCOORD_1":4676, + "TANGENT":4677 + }, + "indices":681, + "material":6 + }, + { + "attributes":{ + "POSITION":4678, + "NORMAL":4679, + "TEXCOORD_0":4680, + "TEXCOORD_1":4681, + "TANGENT":4682 + }, + "indices":687, + "material":7 + } + ] + }, + { + "name":"KB3D_NEC_BldgSM_B_FridgeA", + "primitives":[ + { + "attributes":{ + "POSITION":4683, + "NORMAL":4684, + "TEXCOORD_0":4685, + "TEXCOORD_1":4686, + "TANGENT":4687 + }, + "indices":693, + "material":1 + }, + { + "attributes":{ + "POSITION":4688, + "NORMAL":4689, + "TEXCOORD_0":4690, + "TEXCOORD_1":4691, + "TANGENT":4692 + }, + "indices":699, + "material":25 + }, + { + "attributes":{ + "POSITION":4693, + "NORMAL":4694, + "TEXCOORD_0":4695, + "TEXCOORD_1":4696, + "TANGENT":4697 + }, + "indices":705, + "material":2 + }, + { + "attributes":{ + "POSITION":4698, + "NORMAL":4699, + "TEXCOORD_0":4700, + "TEXCOORD_1":4701, + "TANGENT":4702 + }, + "indices":711, + "material":3 + }, + { + "attributes":{ + "POSITION":4703, + "NORMAL":4704, + "TEXCOORD_0":4705, + "TEXCOORD_1":4706, + "TANGENT":4707 + }, + "indices":717, + "material":10 + }, + { + "attributes":{ + "POSITION":4708, + "NORMAL":4709, + "TEXCOORD_0":4710, + "TEXCOORD_1":4711, + "TANGENT":4712 + }, + "indices":723, + "material":23 + }, + { + "attributes":{ + "POSITION":4713, + "NORMAL":4714, + "TEXCOORD_0":4715, + "TEXCOORD_1":4716, + "TANGENT":4717 + }, + "indices":729, + "material":19 + }, + { + "attributes":{ + "POSITION":4718, + "NORMAL":4719, + "TEXCOORD_0":4720, + "TEXCOORD_1":4721, + "TANGENT":4722 + }, + "indices":735, + "material":13 + }, + { + "attributes":{ + "POSITION":4723, + "NORMAL":4724, + "TEXCOORD_0":4725, + "TEXCOORD_1":4726, + "TANGENT":4727 + }, + "indices":154, + "material":14 + }, + { + "attributes":{ + "POSITION":4728, + "NORMAL":4729, + "TEXCOORD_0":4730, + "TEXCOORD_1":4731, + "TANGENT":4732 + }, + "indices":746, + "material":7 + }, + { + "attributes":{ + "POSITION":4733, + "NORMAL":4734, + "TEXCOORD_0":4735, + "TEXCOORD_1":4736, + "TANGENT":4737 + }, + "indices":752, + "material":12 + } + ] + }, + { + "name":"KB3D_NEC_BldgMD_A_Base.001", + "primitives":[ + { + "attributes":{ + "POSITION":4738, + "NORMAL":4739, + "TEXCOORD_0":4740, + "TEXCOORD_1":4741, + "TANGENT":4742, + "COLOR_0":4743, + "COLOR_1":4744, + "COLOR_2":4745 + }, + "indices":4746, + "material":52 + }, + { + "attributes":{ + "POSITION":4747, + "NORMAL":4748, + "TEXCOORD_0":4749, + "TEXCOORD_1":4750, + "TANGENT":4751, + "COLOR_0":4752, + "COLOR_1":4753, + "COLOR_2":4754 + }, + "indices":4755, + "material":28 + }, + { + "attributes":{ + "POSITION":4756, + "NORMAL":4757, + "TEXCOORD_0":4758, + "TEXCOORD_1":4759, + "TANGENT":4760, + "COLOR_0":4761, + "COLOR_1":4762, + "COLOR_2":4763 + }, + "indices":4764, + "material":53 + } + ] + }, + { + "name":"Cube.019", + "primitives":[ + { + "attributes":{ + "POSITION":4765, + "NORMAL":4766, + "TEXCOORD_0":4767, + "TANGENT":4768 + }, + "indices":4, + "material":0 + } + ] + }, + { + "name":"Cube.002", + "primitives":[ + { + "attributes":{ + "POSITION":4769, + "NORMAL":4770, + "TEXCOORD_0":4771, + "TANGENT":4772 + }, + "indices":4773, + "material":61 + } + ] + }, + { + "name":"Cube.012", + "primitives":[ + { + "attributes":{ + "POSITION":4774, + "NORMAL":4775, + "TEXCOORD_0":4776, + "TANGENT":4777 + }, + "indices":4778, + "material":62 + } + ] + }, + { + "name":"Cube.016", + "primitives":[ + { + "attributes":{ + "POSITION":4779, + "NORMAL":4780, + "TEXCOORD_0":4781, + "TANGENT":4782 + }, + "indices":4778, + "material":62 + } + ] + }, + { + "name":"Cube.013", + "primitives":[ + { + "attributes":{ + "POSITION":4783, + "NORMAL":4784, + "TEXCOORD_0":4785, + "TANGENT":4786 + }, + "indices":4778, + "material":62 + } + ] + }, + { + "name":"Cube.014", + "primitives":[ + { + "attributes":{ + "POSITION":4787, + "NORMAL":4788, + "TEXCOORD_0":4789, + "TANGENT":4790 + }, + "indices":4778, + "material":62 + } + ] + }, + { + "name":"Cube.015", + "primitives":[ + { + "attributes":{ + "POSITION":4791, + "NORMAL":4792, + "TEXCOORD_0":4793, + "TANGENT":4794 + }, + "indices":4778, + "material":63 + } + ] + }, + { + "name":"Cube.004", + "primitives":[ + { + "attributes":{ + "POSITION":4795, + "NORMAL":4796, + "TEXCOORD_0":4797, + "TANGENT":4798 + }, + "indices":4778, + "material":63 + } + ] + }, + { + "name":"Cube.001", + "primitives":[ + { + "attributes":{ + "POSITION":4799, + "NORMAL":4800, + "TEXCOORD_0":4801, + "TANGENT":4802 + }, + "indices":4778, + "material":63 + } + ] + }, + { + "name":"Cube.005", + "primitives":[ + { + "attributes":{ + "POSITION":4803, + "NORMAL":4804, + "TEXCOORD_0":4805, + "TANGENT":4806 + }, + "indices":4778 + } + ] + }, + { + "name":"KB3D_NEC_BldgMD_C_AntennaA", + "primitives":[ + { + "attributes":{ + "POSITION":4807, + "NORMAL":4808, + "TEXCOORD_0":4809, + "TEXCOORD_1":4810, + "TANGENT":4811 + }, + "indices":4812, + "material":41 + } + ] + }, + { + "name":"KB3D_NEC_BldgMD_C_BuildingA", + "primitives":[ + { + "attributes":{ + "POSITION":4813, + "NORMAL":4814, + "TEXCOORD_0":4815, + "TEXCOORD_1":4816, + "TANGENT":4817 + }, + "indices":4818, + "material":47 + }, + { + "attributes":{ + "POSITION":4819, + "NORMAL":4820, + "TEXCOORD_0":4821, + "TEXCOORD_1":4822, + "TANGENT":4823 + }, + "indices":4824, + "material":46 + }, + { + "attributes":{ + "POSITION":4825, + "NORMAL":4826, + "TEXCOORD_0":4827, + "TEXCOORD_1":4828, + "TANGENT":4829 + }, + "indices":4830, + "material":50 + } + ] + }, + { + "name":"KB3D_NEC_BldgMD_C_Main", + "primitives":[ + { + "attributes":{ + "POSITION":4831, + "NORMAL":4832, + "TEXCOORD_0":4833, + "TEXCOORD_1":4834, + "TANGENT":4835 + }, + "indices":4836, + "material":47 + }, + { + "attributes":{ + "POSITION":4837, + "NORMAL":4838, + "TEXCOORD_0":4839, + "TEXCOORD_1":4840, + "TANGENT":4841 + }, + "indices":4842, + "material":41 + }, + { + "attributes":{ + "POSITION":4843, + "NORMAL":4844, + "TEXCOORD_0":4845, + "TEXCOORD_1":4846, + "TANGENT":4847 + }, + "indices":4848, + "material":25 + }, + { + "attributes":{ + "POSITION":4849, + "NORMAL":4850, + "TEXCOORD_0":4851, + "TEXCOORD_1":4852, + "TANGENT":4853 + }, + "indices":4854, + "material":42 + }, + { + "attributes":{ + "POSITION":4855, + "NORMAL":4856, + "TEXCOORD_0":4857, + "TEXCOORD_1":4858, + "TANGENT":4859 + }, + "indices":4860, + "material":64 + }, + { + "attributes":{ + "POSITION":4861, + "NORMAL":4862, + "TEXCOORD_0":4863, + "TEXCOORD_1":4864, + "TANGENT":4865 + }, + "indices":4866, + "material":51 + }, + { + "attributes":{ + "POSITION":4867, + "NORMAL":4868, + "TEXCOORD_0":4869, + "TEXCOORD_1":4870, + "TANGENT":4871 + }, + "indices":4872, + "material":48 + }, + { + "attributes":{ + "POSITION":4873, + "NORMAL":4874, + "TEXCOORD_0":4875, + "TEXCOORD_1":4876, + "TANGENT":4877 + }, + "indices":4878, + "material":49 + }, + { + "attributes":{ + "POSITION":4879, + "NORMAL":4880, + "TEXCOORD_0":4881, + "TEXCOORD_1":4882, + "TANGENT":4883 + }, + "indices":4884, + "material":43 + }, + { + "attributes":{ + "POSITION":4885, + "NORMAL":4886, + "TEXCOORD_0":4887, + "TEXCOORD_1":4888, + "TANGENT":4889 + }, + "indices":4890, + "material":44 + }, + { + "attributes":{ + "POSITION":4891, + "NORMAL":4892, + "TEXCOORD_0":4893, + "TEXCOORD_1":4894, + "TANGENT":4895 + }, + "indices":4896, + "material":45 + }, + { + "attributes":{ + "POSITION":4897, + "NORMAL":4898, + "TEXCOORD_0":4899, + "TEXCOORD_1":4900, + "TANGENT":4901 + }, + "indices":4902, + "material":46 + }, + { + "attributes":{ + "POSITION":4903, + "NORMAL":4904, + "TEXCOORD_0":4905, + "TEXCOORD_1":4906, + "TANGENT":4907 + }, + "indices":4908, + "material":50 + } + ] + }, + { + "name":"KB3D_NEC_BldgMD_C_Main.005", + "primitives":[ + { + "attributes":{ + "POSITION":4909, + "NORMAL":4910, + "TEXCOORD_0":4911, + "TEXCOORD_1":4912, + "TANGENT":4913 + }, + "indices":4914, + "material":42 + } + ] + }, + { + "name":"KB3D_NEC_BldgMD_C_Base", + "primitives":[ + { + "attributes":{ + "POSITION":4915, + "NORMAL":4916, + "TEXCOORD_0":4917, + "TEXCOORD_1":4918, + "TANGENT":4919 + }, + "indices":4920, + "material":52 + }, + { + "attributes":{ + "POSITION":4921, + "NORMAL":4922, + "TEXCOORD_0":4923, + "TEXCOORD_1":4924, + "TANGENT":4925 + }, + "indices":4926, + "material":46 + }, + { + "attributes":{ + "POSITION":4927, + "NORMAL":4928, + "TEXCOORD_0":4929, + "TEXCOORD_1":4930, + "TANGENT":4931 + }, + "indices":4932, + "material":50 + } + ] + }, + { + "name":"Cube.021", + "primitives":[ + { + "attributes":{ + "POSITION":4933, + "NORMAL":4934, + "TEXCOORD_0":4935, + "TANGENT":4936 + }, + "indices":4778, + "material":65 + } + ] + }, + { + "name":"KB3D_NEC_BldgLG_C_Main.017", + "primitives":[ + { + "attributes":{ + "POSITION":4937, + "NORMAL":4938, + "TEXCOORD_0":4939, + "TEXCOORD_1":4940, + "TANGENT":4941 + }, + "indices":4942, + "material":42 + } + ] + }, + { + "name":"Cube", + "primitives":[ + { + "attributes":{ + "POSITION":4943, + "NORMAL":4944, + "TEXCOORD_0":4945, + "TANGENT":4946 + }, + "indices":4947, + "material":66 + } + ] + } + ], + "textures":[ + { + "sampler":0, + "source":0 + }, + { + "sampler":0, + "source":1 + }, + { + "sampler":0, + "source":2 + }, + { + "sampler":0, + "source":3 + }, + { + "sampler":0, + "source":4 + }, + { + "sampler":0, + "source":5 + }, + { + "sampler":0, + "source":6 + }, + { + "sampler":0, + "source":7 + }, + { + "sampler":0, + "source":8 + }, + { + "sampler":0, + "source":9 + }, + { + "sampler":0, + "source":10 + }, + { + "sampler":0, + "source":11 + }, + { + "sampler":0, + "source":12 + }, + { + "sampler":0, + "source":13 + }, + { + "sampler":0, + "source":14 + }, + { + "sampler":0, + "source":15 + }, + { + "sampler":0, + "source":16 + }, + { + "sampler":0, + "source":17 + }, + { + "sampler":0, + "source":18 + }, + { + "sampler":0, + "source":19 + }, + { + "sampler":0, + "source":20 + }, + { + "sampler":0, + "source":21 + }, + { + "sampler":0, + "source":22 + }, + { + "sampler":0, + "source":23 + }, + { + "sampler":0, + "source":24 + }, + { + "sampler":0, + "source":25 + }, + { + "sampler":0, + "source":26 + }, + { + "sampler":0, + "source":27 + }, + { + "sampler":0, + "source":28 + }, + { + "sampler":0, + "source":29 + }, + { + "sampler":0, + "source":30 + }, + { + "sampler":0, + "source":31 + }, + { + "sampler":0, + "source":32 + }, + { + "sampler":0, + "source":33 + }, + { + "sampler":0, + "source":34 + }, + { + "sampler":0, + "source":35 + }, + { + "sampler":0, + "source":36 + }, + { + "sampler":0, + "source":37 + }, + { + "sampler":0, + "source":38 + }, + { + "sampler":0, + "source":39 + }, + { + "sampler":0, + "source":40 + }, + { + "sampler":0, + "source":41 + }, + { + "sampler":0, + "source":42 + }, + { + "sampler":0, + "source":43 + }, + { + "sampler":0, + "source":44 + }, + { + "sampler":0, + "source":45 + }, + { + "sampler":0, + "source":46 + }, + { + "sampler":0, + "source":47 + }, + { + "sampler":0, + "source":48 + }, + { + "sampler":0, + "source":49 + }, + { + "sampler":0, + "source":50 + }, + { + "sampler":0, + "source":51 + }, + { + "sampler":0, + "source":52 + }, + { + "sampler":0, + "source":53 + }, + { + "sampler":0, + "source":54 + }, + { + "sampler":0, + "source":55 + }, + { + "sampler":0, + "source":56 + }, + { + "sampler":0, + "source":57 + }, + { + "sampler":0, + "source":58 + }, + { + "sampler":0, + "source":59 + }, + { + "sampler":0, + "source":60 + }, + { + "sampler":0, + "source":61 + }, + { + "sampler":0, + "source":62 + }, + { + "sampler":0, + "source":63 + }, + { + "sampler":0, + "source":64 + }, + { + "sampler":0, + "source":65 + }, + { + "sampler":0, + "source":66 + }, + { + "sampler":0, + "source":67 + }, + { + "sampler":0, + "source":68 + }, + { + "sampler":0, + "source":69 + }, + { + "sampler":0, + "source":70 + }, + { + "sampler":0, + "source":71 + }, + { + "sampler":0, + "source":72 + }, + { + "sampler":0, + "source":73 + }, + { + "sampler":0, + "source":74 + }, + { + "sampler":0, + "source":75 + }, + { + "sampler":0, + "source":76 + }, + { + "sampler":0, + "source":77 + }, + { + "sampler":0, + "source":78 + }, + { + "sampler":0, + "source":79 + }, + { + "sampler":0, + "source":80 + }, + { + "sampler":0, + "source":81 + }, + { + "sampler":0, + "source":82 + }, + { + "sampler":0, + "source":83 + }, + { + "sampler":0, + "source":84 + }, + { + "sampler":0, + "source":85 + }, + { + "sampler":0, + "source":86 + }, + { + "sampler":0, + "source":87 + }, + { + "sampler":0, + "source":88 + }, + { + "sampler":0, + "source":89 + }, + { + "sampler":0, + "source":90 + }, + { + "sampler":0, + "source":91 + }, + { + "sampler":0, + "source":92 + }, + { + "sampler":0, + "source":93 + }, + { + "sampler":0, + "source":94 + }, + { + "sampler":0, + "source":95 + }, + { + "sampler":0, + "source":96 + }, + { + "sampler":0, + "source":97 + }, + { + "sampler":0, + "source":98 + }, + { + "sampler":0, + "source":99 + }, + { + "sampler":0, + "source":100 + }, + { + "sampler":0, + "source":101 + }, + { + "sampler":0, + "source":102 + }, + { + "sampler":0, + "source":103 + }, + { + "sampler":0, + "source":104 + }, + { + "sampler":0, + "source":105 + }, + { + "sampler":0, + "source":106 + }, + { + "sampler":0, + "source":107 + }, + { + "sampler":0, + "source":108 + }, + { + "sampler":0, + "source":109 + }, + { + "sampler":0, + "source":110 + }, + { + "sampler":0, + "source":111 + }, + { + "sampler":0, + "source":112 + }, + { + "sampler":0, + "source":113 + }, + { + "sampler":0, + "source":114 + }, + { + "sampler":0, + "source":115 + }, + { + "sampler":0, + "source":116 + }, + { + "sampler":0, + "source":117 + }, + { + "sampler":0, + "source":118 + }, + { + "sampler":0, + "source":119 + }, + { + "sampler":0, + "source":120 + }, + { + "sampler":0, + "source":121 + }, + { + "sampler":0, + "source":122 + }, + { + "sampler":0, + "source":123 + }, + { + "sampler":0, + "source":124 + }, + { + "sampler":0, + "source":125 + }, + { + "sampler":0, + "source":126 + }, + { + "sampler":0, + "source":127 + }, + { + "sampler":0, + "source":128 + }, + { + "sampler":0, + "source":129 + }, + { + "sampler":0, + "source":130 + }, + { + "sampler":0, + "source":131 + }, + { + "sampler":0, + "source":132 + }, + { + "sampler":0, + "source":133 + }, + { + "sampler":0, + "source":134 + }, + { + "sampler":0, + "source":135 + }, + { + "sampler":0, + "source":136 + }, + { + "sampler":0, + "source":137 + }, + { + "sampler":0, + "source":138 + }, + { + "sampler":0, + "source":139 + }, + { + "sampler":0, + "source":140 + }, + { + "sampler":0, + "source":141 + }, + { + "sampler":0, + "source":142 + }, + { + "sampler":0, + "source":143 + }, + { + "sampler":0, + "source":144 + }, + { + "sampler":0, + "source":145 + }, + { + "sampler":0, + "source":146 + }, + { + "sampler":0, + "source":147 + }, + { + "sampler":0, + "source":148 + }, + { + "sampler":0, + "source":149 + }, + { + "sampler":0, + "source":150 + }, + { + "sampler":0, + "source":151 + }, + { + "sampler":0, + "source":152 + }, + { + "sampler":0, + "source":153 + }, + { + "sampler":0, + "source":154 + }, + { + "sampler":0, + "source":155 + }, + { + "sampler":0, + "source":156 + }, + { + "sampler":0, + "source":157 + }, + { + "sampler":0, + "source":158 + }, + { + "sampler":0, + "source":159 + }, + { + "sampler":0, + "source":160 + }, + { + "sampler":0, + "source":161 + }, + { + "sampler":0, + "source":162 + }, + { + "sampler":0, + "source":163 + }, + { + "sampler":0, + "source":164 + }, + { + "sampler":0, + "source":165 + }, + { + "sampler":0, + "source":166 + }, + { + "sampler":0, + "source":167 + }, + { + "sampler":0, + "source":168 + }, + { + "sampler":0, + "source":169 + }, + { + "sampler":0, + "source":170 + }, + { + "sampler":0, + "source":171 + }, + { + "sampler":0, + "source":172 + }, + { + "sampler":0, + "source":173 + }, + { + "sampler":0, + "source":174 + }, + { + "sampler":0, + "source":175 + }, + { + "sampler":0, + "source":176 + }, + { + "sampler":0, + "source":177 + }, + { + "sampler":0, + "source":178 + }, + { + "sampler":0, + "source":179 + }, + { + "sampler":0, + "source":180 + }, + { + "sampler":0, + "source":181 + }, + { + "sampler":0, + "source":182 + }, + { + "sampler":0, + "source":183 + }, + { + "sampler":0, + "source":184 + }, + { + "sampler":0, + "source":185 + }, + { + "sampler":0, + "source":186 + }, + { + "sampler":0, + "source":187 + }, + { + "sampler":0, + "source":188 + }, + { + "sampler":0, + "source":189 + }, + { + "sampler":0, + "source":190 + } + ], + "images":[ + { + "mimeType":"image/jpeg", + "name":"missing-texture512x256", + "uri":"missing-texture512x256.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_DecalSheet_normal", + "uri":"KB3D_NEC_DecalSheet_normal.jpg" + }, + { + "mimeType":"image/png", + "name":"KB3D_NEC_DecalSheet_basecolor-KB3D_NEC_DecalSheet_opacity", + "uri":"KB3D_NEC_DecalSheet_basecolor-KB3D_NEC_DecalSheet_opacity.png" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_DecalSheet_metallic-KB3D_NEC_DecalSheet_roughness", + "uri":"KB3D_NEC_DecalSheet_metallic-KB3D_NEC_DecalSheet_roughness.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_LightBlue_emissive", + "uri":"KB3D_NEC_LightBlue_emissive.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_LightBlue_normal", + "uri":"KB3D_NEC_LightBlue_normal.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_LightBlue_basecolor", + "uri":"KB3D_NEC_LightBlue_basecolor.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_LightBlue_metallic-KB3D_NEC_LightBlue_roughness", + "uri":"KB3D_NEC_LightBlue_metallic-KB3D_NEC_LightBlue_roughness.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_PaintBlack_normal", + "uri":"KB3D_NEC_PaintBlack_normal.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_PaintBlack_basecolor", + "uri":"KB3D_NEC_PaintBlack_basecolor.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_PaintBlack_metallic-KB3D_NEC_PaintBlack_roughness", + "uri":"KB3D_NEC_PaintBlack_metallic-KB3D_NEC_PaintBlack_roughness.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_PaintBlue_normal", + "uri":"KB3D_NEC_PaintBlue_normal.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_PaintBlue_basecolor", + "uri":"KB3D_NEC_PaintBlue_basecolor.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_PaintBlue_metallic-KB3D_NEC_PaintBlue_roughness", + "uri":"KB3D_NEC_PaintBlue_metallic-KB3D_NEC_PaintBlue_roughness.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_PaintWhiteRusty_normal", + "uri":"KB3D_NEC_PaintWhiteRusty_normal.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_PaintWhiteRusty_basecolor", + "uri":"KB3D_NEC_PaintWhiteRusty_basecolor.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_PaintWhiteRusty_metallic-KB3D_NEC_PaintWhiteRusty_roughness", + "uri":"KB3D_NEC_PaintWhiteRusty_metallic-KB3D_NEC_PaintWhiteRusty_roughness.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_Rubber_normal", + "uri":"KB3D_NEC_Rubber_normal.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_Rubber_basecolor", + "uri":"KB3D_NEC_Rubber_basecolor.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_Rubber_metallic-KB3D_NEC_Rubber_roughness", + "uri":"KB3D_NEC_Rubber_metallic-KB3D_NEC_Rubber_roughness.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_SteelRaw_normal", + "uri":"KB3D_NEC_SteelRaw_normal.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_SteelRaw_basecolor", + "uri":"KB3D_NEC_SteelRaw_basecolor.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_SteelRaw_metallic-KB3D_NEC_SteelRaw_roughness", + "uri":"KB3D_NEC_SteelRaw_metallic-KB3D_NEC_SteelRaw_roughness.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_RedWhiteStripes_normal", + "uri":"KB3D_NEC_RedWhiteStripes_normal.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_RedWhiteStripes_basecolor", + "uri":"KB3D_NEC_RedWhiteStripes_basecolor.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_RedWhiteStripes_metallic-KB3D_NEC_RedWhiteStripes_roughness", + "uri":"KB3D_NEC_RedWhiteStripes_metallic-KB3D_NEC_RedWhiteStripes_roughness.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_Cardboard_normal", + "uri":"KB3D_NEC_Cardboard_normal.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_Cardboard_basecolor", + "uri":"KB3D_NEC_Cardboard_basecolor.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_Cardboard_metallic-KB3D_NEC_Cardboard_roughness", + "uri":"KB3D_NEC_Cardboard_metallic-KB3D_NEC_Cardboard_roughness.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_PaintRed_normal", + "uri":"KB3D_NEC_PaintRed_normal.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_PaintRed_basecolor", + "uri":"KB3D_NEC_PaintRed_basecolor.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_PaintRed_metallic-KB3D_NEC_PaintRed_roughness", + "uri":"KB3D_NEC_PaintRed_metallic-KB3D_NEC_PaintRed_roughness.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_GlassBottle_normal", + "uri":"KB3D_NEC_GlassBottle_normal.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_GlassBottle_basecolor", + "uri":"KB3D_NEC_GlassBottle_basecolor.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_GlassBottle_metallic-KB3D_NEC_GlassBottle_roughness", + "uri":"KB3D_NEC_GlassBottle_metallic-KB3D_NEC_GlassBottle_roughness.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_Wood_normal", + "uri":"KB3D_NEC_Wood_normal.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_Wood_basecolor", + "uri":"KB3D_NEC_Wood_basecolor.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_Wood_metallic-KB3D_NEC_Wood_roughness", + "uri":"KB3D_NEC_Wood_metallic-KB3D_NEC_Wood_roughness.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_PlasticWhite_normal", + "uri":"KB3D_NEC_PlasticWhite_normal.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_PlasticWhite_basecolor", + "uri":"KB3D_NEC_PlasticWhite_basecolor.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_PlasticWhite_metallic-KB3D_NEC_PlasticWhite_roughness", + "uri":"KB3D_NEC_PlasticWhite_metallic-KB3D_NEC_PlasticWhite_roughness.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_Screens_emissive", + "uri":"KB3D_NEC_Screens_emissive.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_Screens_normal", + "uri":"KB3D_NEC_Screens_normal.jpg" + }, + { + "mimeType":"image/png", + "name":"KB3D_NEC_Screens_basecolor-KB3D_NEC_Screens_opacity", + "uri":"KB3D_NEC_Screens_basecolor-KB3D_NEC_Screens_opacity.png" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_Screens_metallic-KB3D_NEC_Screens_roughness", + "uri":"KB3D_NEC_Screens_metallic-KB3D_NEC_Screens_roughness.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_LightRed_emissive", + "uri":"KB3D_NEC_LightRed_emissive.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_LightRed_normal", + "uri":"KB3D_NEC_LightRed_normal.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_LightRed_basecolor", + "uri":"KB3D_NEC_LightRed_basecolor.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_LightRed_metallic-KB3D_NEC_LightRed_roughness", + "uri":"KB3D_NEC_LightRed_metallic-KB3D_NEC_LightRed_roughness.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_WoodLacquered_normal", + "uri":"KB3D_NEC_WoodLacquered_normal.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_WoodLacquered_basecolor", + "uri":"KB3D_NEC_WoodLacquered_basecolor.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_WoodLacquered_metallic-KB3D_NEC_WoodLacquered_roughness", + "uri":"KB3D_NEC_WoodLacquered_metallic-KB3D_NEC_WoodLacquered_roughness.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_ConcreteTiles_normal", + "uri":"KB3D_NEC_ConcreteTiles_normal.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_ConcreteTiles_basecolor", + "uri":"KB3D_NEC_ConcreteTiles_basecolor.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_ConcreteTiles_metallic-KB3D_NEC_ConcreteTiles_roughness", + "uri":"KB3D_NEC_ConcreteTiles_metallic-KB3D_NEC_ConcreteTiles_roughness.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_LightWhite_normal", + "uri":"KB3D_NEC_LightWhite_normal.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_LightWhite_basecolor", + "uri":"KB3D_NEC_LightWhite_basecolor.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_LightWhite_metallic-KB3D_NEC_LightWhite_roughness", + "uri":"KB3D_NEC_LightWhite_metallic-KB3D_NEC_LightWhite_roughness.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_PlasticBlack_normal", + "uri":"KB3D_NEC_PlasticBlack_normal.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_PlasticBlack_basecolor", + "uri":"KB3D_NEC_PlasticBlack_basecolor.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_PlasticBlack_metallic-KB3D_NEC_PlasticBlack_roughness", + "uri":"KB3D_NEC_PlasticBlack_metallic-KB3D_NEC_PlasticBlack_roughness.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_Concrete_normal", + "uri":"KB3D_NEC_Concrete_normal.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_Concrete_basecolor", + "uri":"KB3D_NEC_Concrete_basecolor.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_Concrete_metallic-KB3D_NEC_Concrete_roughness", + "uri":"KB3D_NEC_Concrete_metallic-KB3D_NEC_Concrete_roughness.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_BlackCloth_normal", + "uri":"KB3D_NEC_BlackCloth_normal.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_BlackCloth_basecolor", + "uri":"KB3D_NEC_BlackCloth_basecolor.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_BlackCloth_metallic-KB3D_NEC_BlackCloth_roughness", + "uri":"KB3D_NEC_BlackCloth_metallic-KB3D_NEC_BlackCloth_roughness.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_Brass_normal", + "uri":"KB3D_NEC_Brass_normal.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_Brass_basecolor", + "uri":"KB3D_NEC_Brass_basecolor.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_Brass_metallic-KB3D_NEC_Brass_roughness", + "uri":"KB3D_NEC_Brass_metallic-KB3D_NEC_Brass_roughness.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_PaperWhite_normal", + "uri":"KB3D_NEC_PaperWhite_normal.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_PaperWhite_basecolor", + "uri":"KB3D_NEC_PaperWhite_basecolor.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_PaperWhite_metallic-KB3D_NEC_PaperWhite_roughness", + "uri":"KB3D_NEC_PaperWhite_metallic-KB3D_NEC_PaperWhite_roughness.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_PlasticYellow_normal", + "uri":"KB3D_NEC_PlasticYellow_normal.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_PlasticYellow_basecolor", + "uri":"KB3D_NEC_PlasticYellow_basecolor.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_PlasticYellow_metallic-KB3D_NEC_PlasticYellow_roughness", + "uri":"KB3D_NEC_PlasticYellow_metallic-KB3D_NEC_PlasticYellow_roughness.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_GlassBlack_normal", + "uri":"KB3D_NEC_GlassBlack_normal.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_GlassBlack_basecolor", + "uri":"KB3D_NEC_GlassBlack_basecolor.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_GlassBlack_metallic-KB3D_NEC_GlassBlack_roughness", + "uri":"KB3D_NEC_GlassBlack_metallic-KB3D_NEC_GlassBlack_roughness.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_LightYellow_normal", + "uri":"KB3D_NEC_LightYellow_normal.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_LightYellow_basecolor", + "uri":"KB3D_NEC_LightYellow_basecolor.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_LightYellow_metallic-KB3D_NEC_LightYellow_roughness", + "uri":"KB3D_NEC_LightYellow_metallic-KB3D_NEC_LightYellow_roughness.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_AirCon_normal", + "uri":"KB3D_NEC_AirCon_normal.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_AirCon_basecolor", + "uri":"KB3D_NEC_AirCon_basecolor.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_AirCon_metallic-KB3D_NEC_AirCon_roughness", + "uri":"KB3D_NEC_AirCon_metallic-KB3D_NEC_AirCon_roughness.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_ConcreteWall_normal", + "uri":"KB3D_NEC_ConcreteWall_normal.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_ConcreteWall_basecolor", + "uri":"KB3D_NEC_ConcreteWall_basecolor.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_ConcreteWall_metallic-KB3D_NEC_ConcreteWall_roughness", + "uri":"KB3D_NEC_ConcreteWall_metallic-KB3D_NEC_ConcreteWall_roughness.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_DecorConcreteCBeige_normal", + "uri":"KB3D_NEC_DecorConcreteCBeige_normal.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_DecorConcreteCBeige_basecolor", + "uri":"KB3D_NEC_DecorConcreteCBeige_basecolor.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_DecorConcreteCBeige_metallic-KB3D_NEC_DecorConcreteCBeige_roughness", + "uri":"KB3D_NEC_DecorConcreteCBeige_metallic-KB3D_NEC_DecorConcreteCBeige_roughness.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_DecorConcreteCWhite_normal", + "uri":"KB3D_NEC_DecorConcreteCWhite_normal.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_DecorConcreteCWhite_basecolor", + "uri":"KB3D_NEC_DecorConcreteCWhite_basecolor.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_DecorConcreteCWhite_metallic-KB3D_NEC_DecorConcreteCWhite_roughness", + "uri":"KB3D_NEC_DecorConcreteCWhite_metallic-KB3D_NEC_DecorConcreteCWhite_roughness.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_GalvanizedSteelDirt_normal", + "uri":"KB3D_NEC_GalvanizedSteelDirt_normal.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_GalvanizedSteelDirt_basecolor", + "uri":"KB3D_NEC_GalvanizedSteelDirt_basecolor.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_GalvanizedSteelDirt_metallic-KB3D_NEC_GalvanizedSteelDirt_roughness", + "uri":"KB3D_NEC_GalvanizedSteelDirt_metallic-KB3D_NEC_GalvanizedSteelDirt_roughness.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_GlassTinted_normal", + "uri":"KB3D_NEC_GlassTinted_normal.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_GlassTinted_basecolor", + "uri":"KB3D_NEC_GlassTinted_basecolor.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_GlassTinted_metallic-KB3D_NEC_GlassTinted_roughness", + "uri":"KB3D_NEC_GlassTinted_metallic-KB3D_NEC_GlassTinted_roughness.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_LeavesBush_normal", + "uri":"KB3D_NEC_LeavesBush_normal.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_LeavesBush_basecolor", + "uri":"KB3D_NEC_LeavesBush_basecolor.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_LeavesBush_metallic-KB3D_NEC_LeavesBush_roughness", + "uri":"KB3D_NEC_LeavesBush_metallic-KB3D_NEC_LeavesBush_roughness.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_MetalDarkWorn_normal", + "uri":"KB3D_NEC_MetalDarkWorn_normal.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_MetalDarkWorn_basecolor", + "uri":"KB3D_NEC_MetalDarkWorn_basecolor.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_MetalDarkWorn_metallic-KB3D_NEC_MetalDarkWorn_roughness", + "uri":"KB3D_NEC_MetalDarkWorn_metallic-KB3D_NEC_MetalDarkWorn_roughness.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_MetalLightGreyWorn_normal", + "uri":"KB3D_NEC_MetalLightGreyWorn_normal.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_MetalLightGreyWorn_basecolor", + "uri":"KB3D_NEC_MetalLightGreyWorn_basecolor.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_MetalLightGreyWorn_metallic-KB3D_NEC_MetalLightGreyWorn_roughness", + "uri":"KB3D_NEC_MetalLightGreyWorn_metallic-KB3D_NEC_MetalLightGreyWorn_roughness.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_MetalPaintWhiteWorn_normal", + "uri":"KB3D_NEC_MetalPaintWhiteWorn_normal.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_MetalPaintWhiteWorn_basecolor", + "uri":"KB3D_NEC_MetalPaintWhiteWorn_basecolor.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_MetalPaintWhiteWorn_metallic-KB3D_NEC_MetalPaintWhiteWorn_roughness", + "uri":"KB3D_NEC_MetalPaintWhiteWorn_metallic-KB3D_NEC_MetalPaintWhiteWorn_roughness.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_MetalPaintWorn_normal", + "uri":"KB3D_NEC_MetalPaintWorn_normal.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_MetalPaintWorn_basecolor", + "uri":"KB3D_NEC_MetalPaintWorn_basecolor.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_MetalPaintWorn_metallic-KB3D_NEC_MetalPaintWorn_roughness", + "uri":"KB3D_NEC_MetalPaintWorn_metallic-KB3D_NEC_MetalPaintWorn_roughness.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_TarpA_normal", + "uri":"KB3D_NEC_TarpA_normal.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_TarpA_basecolor", + "uri":"KB3D_NEC_TarpA_basecolor.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_TarpA_metallic-KB3D_NEC_TarpA_roughness", + "uri":"KB3D_NEC_TarpA_metallic-KB3D_NEC_TarpA_roughness.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_WhitePanels_normal", + "uri":"KB3D_NEC_WhitePanels_normal.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_WhitePanels_basecolor", + "uri":"KB3D_NEC_WhitePanels_basecolor.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_WhitePanels_metallic-KB3D_NEC_WhitePanels_roughness", + "uri":"KB3D_NEC_WhitePanels_metallic-KB3D_NEC_WhitePanels_roughness.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_WoodDarkGreyTower_normal", + "uri":"KB3D_NEC_WoodDarkGreyTower_normal.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_WoodDarkGreyTower_basecolor", + "uri":"KB3D_NEC_WoodDarkGreyTower_basecolor.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_WoodDarkGreyTower_metallic-KB3D_NEC_WoodDarkGreyTower_roughness", + "uri":"KB3D_NEC_WoodDarkGreyTower_metallic-KB3D_NEC_WoodDarkGreyTower_roughness.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_GalvanizedSteel_normal", + "uri":"KB3D_NEC_GalvanizedSteel_normal.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_GalvanizedSteel_basecolor", + "uri":"KB3D_NEC_GalvanizedSteel_basecolor.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_GalvanizedSteel_metallic-KB3D_NEC_GalvanizedSteel_roughness", + "uri":"KB3D_NEC_GalvanizedSteel_metallic-KB3D_NEC_GalvanizedSteel_roughness.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_BannerA_normal", + "uri":"KB3D_NEC_BannerA_normal.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_BannerA_basecolor", + "uri":"KB3D_NEC_BannerA_basecolor.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_BannerA_metallic-KB3D_NEC_BannerA_roughness", + "uri":"KB3D_NEC_BannerA_metallic-KB3D_NEC_BannerA_roughness.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_OxidizedSteel_normal", + "uri":"KB3D_NEC_OxidizedSteel_normal.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_OxidizedSteel_basecolor", + "uri":"KB3D_NEC_OxidizedSteel_basecolor.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_OxidizedSteel_metallic-KB3D_NEC_OxidizedSteel_roughness", + "uri":"KB3D_NEC_OxidizedSteel_metallic-KB3D_NEC_OxidizedSteel_roughness.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_PaintedMetal_normal", + "uri":"KB3D_NEC_PaintedMetal_normal.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_PaintedMetal_basecolor", + "uri":"KB3D_NEC_PaintedMetal_basecolor.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_PaintedMetal_metallic-KB3D_NEC_PaintedMetal_roughness", + "uri":"KB3D_NEC_PaintedMetal_metallic-KB3D_NEC_PaintedMetal_roughness.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_SatinSteel_normal", + "uri":"KB3D_NEC_SatinSteel_normal.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_SatinSteel_basecolor", + "uri":"KB3D_NEC_SatinSteel_basecolor.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_SatinSteel_metallic-KB3D_NEC_SatinSteel_roughness", + "uri":"KB3D_NEC_SatinSteel_metallic-KB3D_NEC_SatinSteel_roughness.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_ConcreteA_normal", + "uri":"KB3D_NEC_ConcreteA_normal.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_ConcreteA_basecolor", + "uri":"KB3D_NEC_ConcreteA_basecolor.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_ConcreteA_metallic-KB3D_NEC_ConcreteA_roughness", + "uri":"KB3D_NEC_ConcreteA_metallic-KB3D_NEC_ConcreteA_roughness.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_AsphaltHexagonRoof_normal", + "uri":"KB3D_NEC_AsphaltHexagonRoof_normal.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_AsphaltHexagonRoof_basecolor", + "uri":"KB3D_NEC_AsphaltHexagonRoof_basecolor.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_AsphaltHexagonRoof_metallic-KB3D_NEC_AsphaltHexagonRoof_roughness", + "uri":"KB3D_NEC_AsphaltHexagonRoof_metallic-KB3D_NEC_AsphaltHexagonRoof_roughness.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_MetalAccent_normal", + "uri":"KB3D_NEC_MetalAccent_normal.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_MetalAccent_basecolor", + "uri":"KB3D_NEC_MetalAccent_basecolor.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_MetalAccent_metallic-KB3D_NEC_MetalAccent_roughness", + "uri":"KB3D_NEC_MetalAccent_metallic-KB3D_NEC_MetalAccent_roughness.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_MetalGrating_normal", + "uri":"KB3D_NEC_MetalGrating_normal.jpg" + }, + { + "mimeType":"image/png", + "name":"KB3D_NEC_MetalGrating_basecolor-KB3D_NEC_MetalGrating_opacity", + "uri":"KB3D_NEC_MetalGrating_basecolor-KB3D_NEC_MetalGrating_opacity.png" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_MetalGrating_metallic-KB3D_NEC_MetalGrating_roughness", + "uri":"KB3D_NEC_MetalGrating_metallic-KB3D_NEC_MetalGrating_roughness.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_ConcreteB_normal", + "uri":"KB3D_NEC_ConcreteB_normal.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_ConcreteB_basecolor", + "uri":"KB3D_NEC_ConcreteB_basecolor.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_ConcreteB_metallic-KB3D_NEC_ConcreteB_roughness", + "uri":"KB3D_NEC_ConcreteB_metallic-KB3D_NEC_ConcreteB_roughness.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_LightsA_emissive", + "uri":"KB3D_NEC_LightsA_emissive.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_LightsA_normal", + "uri":"KB3D_NEC_LightsA_normal.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_LightsA_basecolor", + "uri":"KB3D_NEC_LightsA_basecolor.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_LightsA_metallic-KB3D_NEC_LightsA_roughness", + "uri":"KB3D_NEC_LightsA_metallic-KB3D_NEC_LightsA_roughness.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_SpeedwayTiles_normal", + "uri":"KB3D_NEC_SpeedwayTiles_normal.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_SpeedwayTiles_basecolor", + "uri":"KB3D_NEC_SpeedwayTiles_basecolor.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_SpeedwayTiles_metallic-KB3D_NEC_SpeedwayTiles_roughness", + "uri":"KB3D_NEC_SpeedwayTiles_metallic-KB3D_NEC_SpeedwayTiles_roughness.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_StreetTiles_normal", + "uri":"KB3D_NEC_StreetTiles_normal.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_StreetTiles_basecolor", + "uri":"KB3D_NEC_StreetTiles_basecolor.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_StreetTiles_metallic-KB3D_NEC_StreetTiles_roughness", + "uri":"KB3D_NEC_StreetTiles_metallic-KB3D_NEC_StreetTiles_roughness.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_DarkPanels_normal", + "uri":"KB3D_NEC_DarkPanels_normal.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_DarkPanels_basecolor", + "uri":"KB3D_NEC_DarkPanels_basecolor.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_DarkPanels_metallic-KB3D_NEC_DarkPanels_roughness", + "uri":"KB3D_NEC_DarkPanels_metallic-KB3D_NEC_DarkPanels_roughness.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_GlassLamps_normal", + "uri":"KB3D_NEC_GlassLamps_normal.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_GlassLamps_basecolor", + "uri":"KB3D_NEC_GlassLamps_basecolor.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_GlassLamps_metallic-KB3D_NEC_GlassLamps_roughness", + "uri":"KB3D_NEC_GlassLamps_metallic-KB3D_NEC_GlassLamps_roughness.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_MetalPaintRed_normal", + "uri":"KB3D_NEC_MetalPaintRed_normal.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_MetalPaintRed_basecolor", + "uri":"KB3D_NEC_MetalPaintRed_basecolor.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_MetalPaintRed_metallic-KB3D_NEC_MetalPaintRed_roughness", + "uri":"KB3D_NEC_MetalPaintRed_metallic-KB3D_NEC_MetalPaintRed_roughness.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_MetalPaintYellow_normal", + "uri":"KB3D_NEC_MetalPaintYellow_normal.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_MetalPaintYellow_basecolor", + "uri":"KB3D_NEC_MetalPaintYellow_basecolor.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_MetalPaintYellow_metallic-KB3D_NEC_MetalPaintYellow_roughness", + "uri":"KB3D_NEC_MetalPaintYellow_metallic-KB3D_NEC_MetalPaintYellow_roughness.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_TreeWalnutBark_normal", + "uri":"KB3D_NEC_TreeWalnutBark_normal.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_TreeWalnutBark_basecolor", + "uri":"KB3D_NEC_TreeWalnutBark_basecolor.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_TreeWalnutBark_metallic-KB3D_NEC_TreeWalnutBark_roughness", + "uri":"KB3D_NEC_TreeWalnutBark_metallic-KB3D_NEC_TreeWalnutBark_roughness.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_TreeWlnutLeaf_normal", + "uri":"KB3D_NEC_TreeWlnutLeaf_normal.jpg" + }, + { + "mimeType":"image/png", + "name":"KB3D_NEC_TreeWlnutLeaf_basecolor-KB3D_NEC_TreeWlnutLeaf_opacity", + "uri":"KB3D_NEC_TreeWlnutLeaf_basecolor-KB3D_NEC_TreeWlnutLeaf_opacity.png" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_TreeWlnutLeaf_metallic-KB3D_NEC_TreeWlnutLeaf_roughness", + "uri":"KB3D_NEC_TreeWlnutLeaf_metallic-KB3D_NEC_TreeWlnutLeaf_roughness.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_DecorConcreteB_normal", + "uri":"KB3D_NEC_DecorConcreteB_normal.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_DecorConcreteB_basecolor", + "uri":"KB3D_NEC_DecorConcreteB_basecolor.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_DecorConcreteB_metallic-KB3D_NEC_DecorConcreteB_roughness", + "uri":"KB3D_NEC_DecorConcreteB_metallic-KB3D_NEC_DecorConcreteB_roughness.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"missing-texture512x", + "uri":"missing-texture512x.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"missing-texture256x512", + "uri":"missing-texture256x512.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"missing-texture128x512", + "uri":"missing-texture128x512.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_Letters_normal", + "uri":"KB3D_NEC_Letters_normal.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_Letters_basecolor", + "uri":"KB3D_NEC_Letters_basecolor.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"KB3D_NEC_Letters_metallic-KB3D_NEC_Letters_roughness", + "uri":"KB3D_NEC_Letters_metallic-KB3D_NEC_Letters_roughness.jpg" + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":24, + "max":[ + 1.3122996091842651, + 0.6561499238014221, + 0.031018754467368126 + ], + "min":[ + -1.3122996091842651, + -0.6561499238014221, + -0.031018754467368126 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5126, + "count":24, + "type":"VEC4" + }, + { + "bufferView":4, + "componentType":5123, + "count":36, + "type":"SCALAR" + }, + { + "bufferView":5, + "componentType":5126, + "count":22, + "max":[ + -1.1442928314208984, + 0.5076229572296143, + -0.046134959906339645 + ], + "min":[ + -2.2718677520751953, + 0.014990556053817272, + -0.2706565856933594 + ], + "type":"VEC3" + }, + { + "bufferView":6, + "componentType":5126, + "count":22, + "type":"VEC3" + }, + { + "bufferView":7, + "componentType":5126, + "count":22, + "type":"VEC2" + }, + { + "bufferView":8, + "componentType":5126, + "count":22, + "type":"VEC2" + }, + { + "bufferView":9, + "componentType":5126, + "count":22, + "type":"VEC4" + }, + { + "bufferView":10, + "componentType":5123, + "count":48, + "type":"SCALAR" + }, + { + "bufferView":11, + "componentType":5126, + "count":36, + "max":[ + -2.178426742553711, + 0.17982959747314453, + -0.05217457190155983 + ], + "min":[ + -2.194753646850586, + 0.12002897262573242, + -0.05902291089296341 + ], + "type":"VEC3" + }, + { + "bufferView":12, + "componentType":5126, + "count":36, + "type":"VEC3" + }, + { + "bufferView":13, + "componentType":5126, + "count":36, + "type":"VEC2" + }, + { + "bufferView":14, + "componentType":5126, + "count":36, + "type":"VEC2" + }, + { + "bufferView":15, + "componentType":5126, + "count":36, + "type":"VEC4" + }, + { + "bufferView":16, + "componentType":5123, + "count":60, + "type":"SCALAR" + }, + { + "bufferView":17, + "componentType":5126, + "count":1882, + "max":[ + 2.344668388366699, + 0.505347490310669, + 0.1392049640417099 + ], + "min":[ + -2.07916259765625, + -0.1562039852142334, + -0.24019719660282135 + ], + "type":"VEC3" + }, + { + "bufferView":18, + "componentType":5126, + "count":1882, + "type":"VEC3" + }, + { + "bufferView":19, + "componentType":5126, + "count":1882, + "type":"VEC2" + }, + { + "bufferView":20, + "componentType":5126, + "count":1882, + "type":"VEC2" + }, + { + "bufferView":21, + "componentType":5126, + "count":1882, + "type":"VEC4" + }, + { + "bufferView":22, + "componentType":5123, + "count":7200, + "type":"SCALAR" + }, + { + "bufferView":23, + "componentType":5126, + "count":404, + "max":[ + -1.0706310272216797, + 0.4437081813812256, + 0.1684589684009552 + ], + "min":[ + -2.27093505859375, + -0.5899860858917236, + -0.27042675018310547 + ], + "type":"VEC3" + }, + { + "bufferView":24, + "componentType":5126, + "count":404, + "type":"VEC3" + }, + { + "bufferView":25, + "componentType":5126, + "count":404, + "type":"VEC2" + }, + { + "bufferView":26, + "componentType":5126, + "count":404, + "type":"VEC2" + }, + { + "bufferView":27, + "componentType":5126, + "count":404, + "type":"VEC4" + }, + { + "bufferView":28, + "componentType":5123, + "count":792, + "type":"SCALAR" + }, + { + "bufferView":29, + "componentType":5126, + "count":1569, + "max":[ + -1.0813674926757812, + 0.5625836849212646, + 0.15588855743408203 + ], + "min":[ + -2.181365966796875, + -0.13741613924503326, + -0.24424077570438385 + ], + "type":"VEC3" + }, + { + "bufferView":30, + "componentType":5126, + "count":1569, + "type":"VEC3" + }, + { + "bufferView":31, + "componentType":5126, + "count":1569, + "type":"VEC2" + }, + { + "bufferView":32, + "componentType":5126, + "count":1569, + "type":"VEC2" + }, + { + "bufferView":33, + "componentType":5126, + "count":1569, + "type":"VEC4" + }, + { + "bufferView":34, + "componentType":5123, + "count":5184, + "type":"SCALAR" + }, + { + "bufferView":35, + "componentType":5126, + "count":2410, + "max":[ + 2.3347702026367188, + 0.9144487380981445, + 0.2866544723510742 + ], + "min":[ + -2.3446693420410156, + -0.914448618888855, + -0.07500457763671875 + ], + "type":"VEC3" + }, + { + "bufferView":36, + "componentType":5126, + "count":2410, + "type":"VEC3" + }, + { + "bufferView":37, + "componentType":5126, + "count":2410, + "type":"VEC2" + }, + { + "bufferView":38, + "componentType":5126, + "count":2410, + "type":"VEC2" + }, + { + "bufferView":39, + "componentType":5126, + "count":2410, + "type":"VEC4" + }, + { + "bufferView":40, + "componentType":5123, + "count":11844, + "type":"SCALAR" + }, + { + "bufferView":41, + "componentType":5126, + "count":1295, + "max":[ + -1.0582122802734375, + 0.4466392993927002, + 0.15429973602294922 + ], + "min":[ + -2.205751419067383, + -0.506033182144165, + -0.2866544723510742 + ], + "type":"VEC3" + }, + { + "bufferView":42, + "componentType":5126, + "count":1295, + "type":"VEC3" + }, + { + "bufferView":43, + "componentType":5126, + "count":1295, + "type":"VEC2" + }, + { + "bufferView":44, + "componentType":5126, + "count":1295, + "type":"VEC2" + }, + { + "bufferView":45, + "componentType":5126, + "count":1295, + "type":"VEC4" + }, + { + "bufferView":46, + "componentType":5123, + "count":4440, + "type":"SCALAR" + }, + { + "bufferView":47, + "componentType":5126, + "count":34, + "max":[ + 0.27090930938720703, + 0.32154178619384766, + 0.6255970001220703 + ], + "min":[ + -0.5640172958374023, + -0.3498772084712982, + -0.9235353469848633 + ], + "type":"VEC3" + }, + { + "bufferView":48, + "componentType":5126, + "count":34, + "type":"VEC3" + }, + { + "bufferView":49, + "componentType":5126, + "count":34, + "type":"VEC2" + }, + { + "bufferView":50, + "componentType":5126, + "count":34, + "type":"VEC2" + }, + { + "bufferView":51, + "componentType":5126, + "count":34, + "type":"VEC4" + }, + { + "bufferView":52, + "componentType":5123, + "count":60, + "type":"SCALAR" + }, + { + "bufferView":53, + "componentType":5126, + "count":168, + "max":[ + 0.7894763946533203, + 0.3750832974910736, + 0.43038272857666016 + ], + "min":[ + -0.7727928161621094, + -0.37660709023475647, + -0.7567214965820312 + ], + "type":"VEC3" + }, + { + "bufferView":54, + "componentType":5126, + "count":168, + "type":"VEC3" + }, + { + "bufferView":55, + "componentType":5126, + "count":168, + "type":"VEC2" + }, + { + "bufferView":56, + "componentType":5126, + "count":168, + "type":"VEC2" + }, + { + "bufferView":57, + "componentType":5126, + "count":168, + "type":"VEC4" + }, + { + "bufferView":58, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":59, + "componentType":5126, + "count":564, + "max":[ + 0.7893552780151367, + 0.3766070604324341, + 0.9609107971191406 + ], + "min":[ + -0.7894773483276367, + -0.37643709778785706, + -0.960911750793457 + ], + "type":"VEC3" + }, + { + "bufferView":60, + "componentType":5126, + "count":564, + "type":"VEC3" + }, + { + "bufferView":61, + "componentType":5126, + "count":564, + "type":"VEC2" + }, + { + "bufferView":62, + "componentType":5126, + "count":564, + "type":"VEC2" + }, + { + "bufferView":63, + "componentType":5126, + "count":564, + "type":"VEC4" + }, + { + "bufferView":64, + "componentType":5123, + "count":1668, + "type":"SCALAR" + }, + { + "bufferView":65, + "componentType":5126, + "count":924, + "max":[ + 0.3286409378051758, + 0.14783354103565216, + 0.9323616027832031 + ], + "min":[ + -0.3286418914794922, + -0.2598508596420288, + -0.8799858093261719 + ], + "type":"VEC3" + }, + { + "bufferView":66, + "componentType":5126, + "count":924, + "type":"VEC3" + }, + { + "bufferView":67, + "componentType":5126, + "count":924, + "type":"VEC2" + }, + { + "bufferView":68, + "componentType":5126, + "count":924, + "type":"VEC2" + }, + { + "bufferView":69, + "componentType":5126, + "count":924, + "type":"VEC4" + }, + { + "bufferView":70, + "componentType":5123, + "count":2808, + "type":"SCALAR" + }, + { + "bufferView":71, + "componentType":5126, + "count":1896, + "max":[ + 0.2251110076904297, + 0.3138256072998047, + 0.8329401016235352 + ], + "min":[ + -0.2251110076904297, + 0.24728809297084808, + -0.8735713958740234 + ], + "type":"VEC3" + }, + { + "bufferView":72, + "componentType":5126, + "count":1896, + "type":"VEC3" + }, + { + "bufferView":73, + "componentType":5126, + "count":1896, + "type":"VEC2" + }, + { + "bufferView":74, + "componentType":5126, + "count":1896, + "type":"VEC2" + }, + { + "bufferView":75, + "componentType":5126, + "count":1896, + "type":"VEC4" + }, + { + "bufferView":76, + "componentType":5123, + "count":8748, + "type":"SCALAR" + }, + { + "bufferView":77, + "componentType":5126, + "count":3123, + "max":[ + 0.28412723541259766, + 0.25929510593414307, + 0.8919563293457031 + ], + "min":[ + -0.28412628173828125, + -0.3138256072998047, + -0.9323616027832031 + ], + "type":"VEC3" + }, + { + "bufferView":78, + "componentType":5126, + "count":3123, + "type":"VEC3" + }, + { + "bufferView":79, + "componentType":5126, + "count":3123, + "type":"VEC2" + }, + { + "bufferView":80, + "componentType":5126, + "count":3123, + "type":"VEC2" + }, + { + "bufferView":81, + "componentType":5126, + "count":3123, + "type":"VEC4" + }, + { + "bufferView":82, + "componentType":5123, + "count":12636, + "type":"SCALAR" + }, + { + "bufferView":83, + "componentType":5126, + "count":24, + "max":[ + 0.64556884765625, + 0.4677903652191162, + 0.20865343511104584 + ], + "min":[ + 0.2551441192626953, + 0.08912551403045654, + -0.013035790994763374 + ], + "type":"VEC3" + }, + { + "bufferView":84, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":85, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":86, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":87, + "componentType":5126, + "count":24, + "type":"VEC4" + }, + { + "bufferView":88, + "componentType":5123, + "count":60, + "type":"SCALAR" + }, + { + "bufferView":89, + "componentType":5126, + "count":1187, + "max":[ + 0.9414882659912109, + 0.8407949209213257, + 0.4883604049682617 + ], + "min":[ + 0.10125541687011719, + 0.02810513973236084, + -0.01550486870110035 + ], + "type":"VEC3" + }, + { + "bufferView":90, + "componentType":5126, + "count":1187, + "type":"VEC3" + }, + { + "bufferView":91, + "componentType":5126, + "count":1187, + "type":"VEC2" + }, + { + "bufferView":92, + "componentType":5126, + "count":1187, + "type":"VEC2" + }, + { + "bufferView":93, + "componentType":5126, + "count":1187, + "type":"VEC4" + }, + { + "bufferView":94, + "componentType":5123, + "count":4800, + "type":"SCALAR" + }, + { + "bufferView":95, + "componentType":5126, + "count":1888, + "max":[ + 1.8231267929077148, + 0.8839129209518433, + 0.7340660095214844 + ], + "min":[ + -1.8231277465820312, + -0.8839129209518433, + -0.7340660095214844 + ], + "type":"VEC3" + }, + { + "bufferView":96, + "componentType":5126, + "count":1888, + "type":"VEC3" + }, + { + "bufferView":97, + "componentType":5126, + "count":1888, + "type":"VEC2" + }, + { + "bufferView":98, + "componentType":5126, + "count":1888, + "type":"VEC2" + }, + { + "bufferView":99, + "componentType":5126, + "count":1888, + "type":"VEC4" + }, + { + "bufferView":100, + "componentType":5123, + "count":3000, + "type":"SCALAR" + }, + { + "bufferView":101, + "componentType":5126, + "count":960, + "max":[ + 1.418609619140625, + 0.5402355194091797, + 0.7475719451904297 + ], + "min":[ + -1.418609619140625, + -0.5402350425720215, + -0.7475719451904297 + ], + "type":"VEC3" + }, + { + "bufferView":102, + "componentType":5126, + "count":960, + "type":"VEC3" + }, + { + "bufferView":103, + "componentType":5126, + "count":960, + "type":"VEC2" + }, + { + "bufferView":104, + "componentType":5126, + "count":960, + "type":"VEC2" + }, + { + "bufferView":105, + "componentType":5126, + "count":960, + "type":"VEC4" + }, + { + "bufferView":106, + "componentType":5123, + "count":1440, + "type":"SCALAR" + }, + { + "bufferView":107, + "componentType":5126, + "count":312, + "max":[ + 0.12451553344726562, + 1.3652592897415161, + 0.0463905893266201 + ], + "min":[ + -0.35174083709716797, + -1.300047516822815, + -0.28424936532974243 + ], + "type":"VEC3" + }, + { + "bufferView":108, + "componentType":5126, + "count":312, + "type":"VEC3" + }, + { + "bufferView":109, + "componentType":5126, + "count":312, + "type":"VEC2" + }, + { + "bufferView":110, + "componentType":5126, + "count":312, + "type":"VEC2" + }, + { + "bufferView":111, + "componentType":5126, + "count":312, + "type":"VEC4" + }, + { + "bufferView":112, + "componentType":5123, + "count":1248, + "type":"SCALAR" + }, + { + "bufferView":113, + "componentType":5126, + "count":2548, + "max":[ + 0.3517417907714844, + -0.6289958953857422, + 0.3497925102710724 + ], + "min":[ + -0.1730785369873047, + -1.3765124082565308, + -0.1304444819688797 + ], + "type":"VEC3" + }, + { + "bufferView":114, + "componentType":5126, + "count":2548, + "type":"VEC3" + }, + { + "bufferView":115, + "componentType":5126, + "count":2548, + "type":"VEC2" + }, + { + "bufferView":116, + "componentType":5126, + "count":2548, + "type":"VEC2" + }, + { + "bufferView":117, + "componentType":5126, + "count":2548, + "type":"VEC4" + }, + { + "bufferView":118, + "componentType":5123, + "count":10500, + "type":"SCALAR" + }, + { + "bufferView":119, + "componentType":5126, + "count":340, + "max":[ + 0.12967681884765625, + 1.3765124082565308, + -0.0745505690574646 + ], + "min":[ + -0.34313011169433594, + -1.370158076286316, + -0.366513192653656 + ], + "type":"VEC3" + }, + { + "bufferView":120, + "componentType":5126, + "count":340, + "type":"VEC3" + }, + { + "bufferView":121, + "componentType":5126, + "count":340, + "type":"VEC2" + }, + { + "bufferView":122, + "componentType":5126, + "count":340, + "type":"VEC2" + }, + { + "bufferView":123, + "componentType":5126, + "count":340, + "type":"VEC4" + }, + { + "bufferView":124, + "componentType":5123, + "count":1716, + "type":"SCALAR" + }, + { + "bufferView":125, + "componentType":5126, + "count":2502, + "max":[ + 0.34992218017578125, + -0.6451187133789062, + 0.3665066063404083 + ], + "min":[ + -0.15765762329101562, + -1.1614882946014404, + 0.06637958437204361 + ], + "type":"VEC3" + }, + { + "bufferView":126, + "componentType":5126, + "count":2502, + "type":"VEC3" + }, + { + "bufferView":127, + "componentType":5126, + "count":2502, + "type":"VEC2" + }, + { + "bufferView":128, + "componentType":5126, + "count":2502, + "type":"VEC2" + }, + { + "bufferView":129, + "componentType":5126, + "count":2502, + "type":"VEC4" + }, + { + "bufferView":130, + "componentType":5123, + "count":7752, + "type":"SCALAR" + }, + { + "bufferView":131, + "componentType":5126, + "count":350, + "max":[ + 1.863901138305664, + -0.42449951171875, + 0.24060013890266418 + ], + "min":[ + 0.6967344284057617, + -0.5529260635375977, + -0.2580394446849823 + ], + "type":"VEC3" + }, + { + "bufferView":132, + "componentType":5126, + "count":350, + "type":"VEC3" + }, + { + "bufferView":133, + "componentType":5126, + "count":350, + "type":"VEC2" + }, + { + "bufferView":134, + "componentType":5126, + "count":350, + "type":"VEC2" + }, + { + "bufferView":135, + "componentType":5126, + "count":350, + "type":"VEC4" + }, + { + "bufferView":136, + "componentType":5123, + "count":1248, + "type":"SCALAR" + }, + { + "bufferView":137, + "componentType":5126, + "count":96, + "max":[ + 0.7755613327026367, + 0.47663164138793945, + 0.42763039469718933 + ], + "min":[ + -1.863901138305664, + -0.6579399108886719, + -0.06439971923828125 + ], + "type":"VEC3" + }, + { + "bufferView":138, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":139, + "componentType":5126, + "count":96, + "type":"VEC2" + }, + { + "bufferView":140, + "componentType":5126, + "count":96, + "type":"VEC2" + }, + { + "bufferView":141, + "componentType":5126, + "count":96, + "type":"VEC4" + }, + { + "bufferView":142, + "componentType":5123, + "count":156, + "type":"SCALAR" + }, + { + "bufferView":143, + "componentType":5126, + "count":847, + "max":[ + 1.852630615234375, + 0.9794869422912598, + 0.29349324107170105 + ], + "min":[ + -1.7792892456054688, + -0.9794869422912598, + -0.4276314079761505 + ], + "type":"VEC3" + }, + { + "bufferView":144, + "componentType":5126, + "count":847, + "type":"VEC3" + }, + { + "bufferView":145, + "componentType":5126, + "count":847, + "type":"VEC2" + }, + { + "bufferView":146, + "componentType":5126, + "count":847, + "type":"VEC2" + }, + { + "bufferView":147, + "componentType":5126, + "count":847, + "type":"VEC4" + }, + { + "bufferView":148, + "componentType":5123, + "count":4128, + "type":"SCALAR" + }, + { + "bufferView":149, + "componentType":5126, + "count":4, + "max":[ + 0.7327909469604492, + 0.4209175407886505, + 0.400081604719162 + ], + "min":[ + -1.8191051483154297, + -0.6137070655822754, + 0.2743730843067169 + ], + "type":"VEC3" + }, + { + "bufferView":150, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":151, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":152, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":153, + "componentType":5126, + "count":4, + "type":"VEC4" + }, + { + "bufferView":154, + "componentType":5123, + "count":6, + "type":"SCALAR" + }, + { + "bufferView":155, + "componentType":5126, + "count":526, + "max":[ + 0.4827709197998047, + 0.4827613830566406, + 0.01887514255940914 + ], + "min":[ + -0.4827709197998047, + -0.4827613830566406, + -0.07270528376102448 + ], + "type":"VEC3" + }, + { + "bufferView":156, + "componentType":5126, + "count":526, + "type":"VEC3" + }, + { + "bufferView":157, + "componentType":5126, + "count":526, + "type":"VEC2" + }, + { + "bufferView":158, + "componentType":5126, + "count":526, + "type":"VEC2" + }, + { + "bufferView":159, + "componentType":5126, + "count":526, + "type":"VEC4" + }, + { + "bufferView":160, + "componentType":5123, + "count":1680, + "type":"SCALAR" + }, + { + "bufferView":161, + "componentType":5126, + "count":345, + "max":[ + 0.46355247497558594, + 0.46355223655700684, + 0.07269860804080963 + ], + "min":[ + -0.4635486602783203, + -0.4635491371154785, + -0.004775067791342735 + ], + "type":"VEC3" + }, + { + "bufferView":162, + "componentType":5126, + "count":345, + "type":"VEC3" + }, + { + "bufferView":163, + "componentType":5126, + "count":345, + "type":"VEC2" + }, + { + "bufferView":164, + "componentType":5126, + "count":345, + "type":"VEC2" + }, + { + "bufferView":165, + "componentType":5126, + "count":345, + "type":"VEC4" + }, + { + "bufferView":166, + "componentType":5123, + "count":1920, + "type":"SCALAR" + }, + { + "bufferView":167, + "componentType":5126, + "count":8, + "max":[ + 0.21001625061035156, + 0.2790154218673706, + 0.18172936141490936 + ], + "min":[ + -0.20122718811035156, + -0.9098044633865356, + -0.1832876354455948 + ], + "type":"VEC3" + }, + { + "bufferView":168, + "componentType":5126, + "count":8, + "type":"VEC3" + }, + { + "bufferView":169, + "componentType":5126, + "count":8, + "type":"VEC2" + }, + { + "bufferView":170, + "componentType":5126, + "count":8, + "type":"VEC2" + }, + { + "bufferView":171, + "componentType":5126, + "count":8, + "type":"VEC4" + }, + { + "bufferView":172, + "componentType":5123, + "count":12, + "type":"SCALAR" + }, + { + "bufferView":173, + "componentType":5126, + "count":40, + "max":[ + 0.028682708740234375, + 0.30634307861328125, + 0.15982770919799805 + ], + "min":[ + -0.027297019958496094, + 0.06777406483888626, + 0.11853598058223724 + ], + "type":"VEC3" + }, + { + "bufferView":174, + "componentType":5126, + "count":40, + "type":"VEC3" + }, + { + "bufferView":175, + "componentType":5126, + "count":40, + "type":"VEC2" + }, + { + "bufferView":176, + "componentType":5126, + "count":40, + "type":"VEC2" + }, + { + "bufferView":177, + "componentType":5126, + "count":40, + "type":"VEC4" + }, + { + "bufferView":178, + "componentType":5123, + "count":60, + "type":"SCALAR" + }, + { + "bufferView":179, + "componentType":5126, + "count":433, + "max":[ + 0.25797557830810547, + 0.3977539539337158, + -0.09727908670902252 + ], + "min":[ + -0.2138214111328125, + -0.6388016939163208, + -0.1840810775756836 + ], + "type":"VEC3" + }, + { + "bufferView":180, + "componentType":5126, + "count":433, + "type":"VEC3" + }, + { + "bufferView":181, + "componentType":5126, + "count":433, + "type":"VEC2" + }, + { + "bufferView":182, + "componentType":5126, + "count":433, + "type":"VEC2" + }, + { + "bufferView":183, + "componentType":5126, + "count":433, + "type":"VEC4" + }, + { + "bufferView":184, + "componentType":5123, + "count":1560, + "type":"SCALAR" + }, + { + "bufferView":185, + "componentType":5126, + "count":652, + "max":[ + 0.2379894256591797, + -0.5334490537643433, + 0.18149761855602264 + ], + "min":[ + -0.2292022705078125, + -1.01954185962677, + -0.2663678824901581 + ], + "type":"VEC3" + }, + { + "bufferView":186, + "componentType":5126, + "count":652, + "type":"VEC3" + }, + { + "bufferView":187, + "componentType":5126, + "count":652, + "type":"VEC2" + }, + { + "bufferView":188, + "componentType":5126, + "count":652, + "type":"VEC2" + }, + { + "bufferView":189, + "componentType":5126, + "count":652, + "type":"VEC4" + }, + { + "bufferView":190, + "componentType":5123, + "count":2160, + "type":"SCALAR" + }, + { + "bufferView":191, + "componentType":5126, + "count":988, + "max":[ + 0.19479942321777344, + 0.4494199752807617, + 0.2214035987854004 + ], + "min":[ + -0.19341373443603516, + -0.20208872854709625, + -0.22758960723876953 + ], + "type":"VEC3" + }, + { + "bufferView":192, + "componentType":5126, + "count":988, + "type":"VEC3" + }, + { + "bufferView":193, + "componentType":5126, + "count":988, + "type":"VEC2" + }, + { + "bufferView":194, + "componentType":5126, + "count":988, + "type":"VEC2" + }, + { + "bufferView":195, + "componentType":5126, + "count":988, + "type":"VEC4" + }, + { + "bufferView":196, + "componentType":5123, + "count":2400, + "type":"SCALAR" + }, + { + "bufferView":197, + "componentType":5126, + "count":1166, + "max":[ + 0.3634309768676758, + 1.6351656913757324, + -0.10952521860599518 + ], + "min":[ + -0.3870201110839844, + -1.6351656913757324, + -0.4813833236694336 + ], + "type":"VEC3" + }, + { + "bufferView":198, + "componentType":5126, + "count":1166, + "type":"VEC3" + }, + { + "bufferView":199, + "componentType":5126, + "count":1166, + "type":"VEC2" + }, + { + "bufferView":200, + "componentType":5126, + "count":1166, + "type":"VEC2" + }, + { + "bufferView":201, + "componentType":5126, + "count":1166, + "type":"VEC4" + }, + { + "bufferView":202, + "componentType":5123, + "count":5268, + "type":"SCALAR" + }, + { + "bufferView":203, + "componentType":5126, + "count":12, + "max":[ + 0.1914386749267578, + 0.7594029903411865, + 0.5274691581726074 + ], + "min":[ + -0.1900501251220703, + -0.39877983927726746, + 0.14525505900382996 + ], + "type":"VEC3" + }, + { + "bufferView":204, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":205, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":206, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":207, + "componentType":5126, + "count":12, + "type":"VEC4" + }, + { + "bufferView":208, + "componentType":5123, + "count":18, + "type":"SCALAR" + }, + { + "bufferView":209, + "componentType":5126, + "count":2420, + "max":[ + 0.3870210647583008, + 0.373490571975708, + 0.1914978325366974 + ], + "min":[ + -0.24580860137939453, + -1.4725953340530396, + -0.5274696350097656 + ], + "type":"VEC3" + }, + { + "bufferView":210, + "componentType":5126, + "count":2420, + "type":"VEC3" + }, + { + "bufferView":211, + "componentType":5126, + "count":2420, + "type":"VEC2" + }, + { + "bufferView":212, + "componentType":5126, + "count":2420, + "type":"VEC2" + }, + { + "bufferView":213, + "componentType":5126, + "count":2420, + "type":"VEC4" + }, + { + "bufferView":214, + "componentType":5123, + "count":8388, + "type":"SCALAR" + }, + { + "bufferView":215, + "componentType":5126, + "count":14, + "max":[ + 0.3072977066040039, + 0.3319772481918335, + -0.18365859985351562 + ], + "min":[ + -0.042084693908691406, + 0.1054304763674736, + -0.30031681060791016 + ], + "type":"VEC3" + }, + { + "bufferView":216, + "componentType":5126, + "count":14, + "type":"VEC3" + }, + { + "bufferView":217, + "componentType":5126, + "count":14, + "type":"VEC2" + }, + { + "bufferView":218, + "componentType":5126, + "count":14, + "type":"VEC2" + }, + { + "bufferView":219, + "componentType":5126, + "count":14, + "type":"VEC4" + }, + { + "bufferView":220, + "componentType":5123, + "count":36, + "type":"SCALAR" + }, + { + "bufferView":221, + "componentType":5126, + "count":2831, + "max":[ + 0.40169525146484375, + 1.304629921913147, + 0.3802623450756073 + ], + "min":[ + -0.40169620513916016, + -1.304629921913147, + -0.3802623152732849 + ], + "type":"VEC3" + }, + { + "bufferView":222, + "componentType":5126, + "count":2831, + "type":"VEC3" + }, + { + "bufferView":223, + "componentType":5126, + "count":2831, + "type":"VEC2" + }, + { + "bufferView":224, + "componentType":5126, + "count":2831, + "type":"VEC2" + }, + { + "bufferView":225, + "componentType":5126, + "count":2831, + "type":"VEC4" + }, + { + "bufferView":226, + "componentType":5123, + "count":8880, + "type":"SCALAR" + }, + { + "bufferView":227, + "componentType":5126, + "count":2016, + "max":[ + 0.36741065979003906, + 1.2703458070755005, + 0.2707795798778534 + ], + "min":[ + -0.3812065124511719, + -1.256980538368225, + -0.3459777235984802 + ], + "type":"VEC3" + }, + { + "bufferView":228, + "componentType":5126, + "count":2016, + "type":"VEC3" + }, + { + "bufferView":229, + "componentType":5126, + "count":2016, + "type":"VEC2" + }, + { + "bufferView":230, + "componentType":5126, + "count":2016, + "type":"VEC2" + }, + { + "bufferView":231, + "componentType":5126, + "count":2016, + "type":"VEC4" + }, + { + "bufferView":232, + "componentType":5123, + "count":3360, + "type":"SCALAR" + }, + { + "bufferView":233, + "componentType":5126, + "count":585, + "max":[ + 1.0504779815673828, + 0.6223479509353638, + 0.4243583381175995 + ], + "min":[ + -1.0732192993164062, + -0.9782088994979858, + -0.17906951904296875 + ], + "type":"VEC3" + }, + { + "bufferView":234, + "componentType":5126, + "count":585, + "type":"VEC3" + }, + { + "bufferView":235, + "componentType":5126, + "count":585, + "type":"VEC2" + }, + { + "bufferView":236, + "componentType":5126, + "count":585, + "type":"VEC2" + }, + { + "bufferView":237, + "componentType":5126, + "count":585, + "type":"VEC4" + }, + { + "bufferView":238, + "componentType":5123, + "count":1530, + "type":"SCALAR" + }, + { + "bufferView":239, + "componentType":5126, + "count":31991, + "max":[ + 1.088242530822754, + 1.016845941543579, + 0.469638854265213 + ], + "min":[ + -1.094869613647461, + -0.9902336597442627, + -0.4696398079395294 + ], + "type":"VEC3" + }, + { + "bufferView":240, + "componentType":5126, + "count":31991, + "type":"VEC3" + }, + { + "bufferView":241, + "componentType":5126, + "count":31991, + "type":"VEC2" + }, + { + "bufferView":242, + "componentType":5126, + "count":31991, + "type":"VEC2" + }, + { + "bufferView":243, + "componentType":5126, + "count":31991, + "type":"VEC4" + }, + { + "bufferView":244, + "componentType":5123, + "count":137142, + "type":"SCALAR" + }, + { + "bufferView":245, + "componentType":5126, + "count":3692, + "max":[ + 1.0811357498168945, + 0.7945500612258911, + 0.44936850666999817 + ], + "min":[ + -1.0507545471191406, + -0.9557449817657471, + -0.14685538411140442 + ], + "type":"VEC3" + }, + { + "bufferView":246, + "componentType":5126, + "count":3692, + "type":"VEC3" + }, + { + "bufferView":247, + "componentType":5126, + "count":3692, + "type":"VEC2" + }, + { + "bufferView":248, + "componentType":5126, + "count":3692, + "type":"VEC2" + }, + { + "bufferView":249, + "componentType":5126, + "count":3692, + "type":"VEC4" + }, + { + "bufferView":250, + "componentType":5123, + "count":13728, + "type":"SCALAR" + }, + { + "bufferView":251, + "componentType":5126, + "count":196, + "max":[ + 1.1348752975463867, + -0.06018124520778656, + 0.32431796193122864 + ], + "min":[ + -1.1348762512207031, + -1.016845941543579, + -0.36565494537353516 + ], + "type":"VEC3" + }, + { + "bufferView":252, + "componentType":5126, + "count":196, + "type":"VEC3" + }, + { + "bufferView":253, + "componentType":5126, + "count":196, + "type":"VEC2" + }, + { + "bufferView":254, + "componentType":5126, + "count":196, + "type":"VEC2" + }, + { + "bufferView":255, + "componentType":5126, + "count":196, + "type":"VEC4" + }, + { + "bufferView":256, + "componentType":5123, + "count":420, + "type":"SCALAR" + }, + { + "bufferView":257, + "componentType":5126, + "count":28, + "max":[ + 0.084503173828125, + -0.01727675087749958, + 0.3006725311279297 + ], + "min":[ + -0.10184860229492188, + -0.08888016641139984, + 0.25898075103759766 + ], + "type":"VEC3" + }, + { + "bufferView":258, + "componentType":5126, + "count":28, + "type":"VEC3" + }, + { + "bufferView":259, + "componentType":5126, + "count":28, + "type":"VEC2" + }, + { + "bufferView":260, + "componentType":5126, + "count":28, + "type":"VEC2" + }, + { + "bufferView":261, + "componentType":5126, + "count":28, + "type":"VEC4" + }, + { + "bufferView":262, + "componentType":5123, + "count":72, + "type":"SCALAR" + }, + { + "bufferView":263, + "componentType":5126, + "count":982, + "max":[ + 0.08866691589355469, + 0.20287348330020905, + 0.3549346923828125 + ], + "min":[ + -0.10759925842285156, + -0.20801185071468353, + 0.20470809936523438 + ], + "type":"VEC3" + }, + { + "bufferView":264, + "componentType":5126, + "count":982, + "type":"VEC3" + }, + { + "bufferView":265, + "componentType":5126, + "count":982, + "type":"VEC2" + }, + { + "bufferView":266, + "componentType":5126, + "count":982, + "type":"VEC2" + }, + { + "bufferView":267, + "componentType":5126, + "count":982, + "type":"VEC4" + }, + { + "bufferView":268, + "componentType":5123, + "count":4320, + "type":"SCALAR" + }, + { + "bufferView":269, + "componentType":5126, + "count":362, + "max":[ + 0.35846900939941406, + 0.21817447245121002, + 0.31597232818603516 + ], + "min":[ + -0.35846710205078125, + -0.21817447245121002, + -0.3549346923828125 + ], + "type":"VEC3" + }, + { + "bufferView":270, + "componentType":5126, + "count":362, + "type":"VEC3" + }, + { + "bufferView":271, + "componentType":5126, + "count":362, + "type":"VEC2" + }, + { + "bufferView":272, + "componentType":5126, + "count":362, + "type":"VEC2" + }, + { + "bufferView":273, + "componentType":5126, + "count":362, + "type":"VEC4" + }, + { + "bufferView":274, + "componentType":5123, + "count":936, + "type":"SCALAR" + }, + { + "bufferView":275, + "componentType":5126, + "count":218, + "max":[ + 3.087082862854004, + -1.7519599199295044, + 2.0938119888305664 + ], + "min":[ + -3.0349960327148438, + -1.9135684967041016, + -1.9323900938034058 + ], + "type":"VEC3" + }, + { + "bufferView":276, + "componentType":5126, + "count":218, + "type":"VEC3" + }, + { + "bufferView":277, + "componentType":5126, + "count":218, + "type":"VEC2" + }, + { + "bufferView":278, + "componentType":5126, + "count":218, + "type":"VEC2" + }, + { + "bufferView":279, + "componentType":5126, + "count":218, + "type":"VEC4" + }, + { + "bufferView":280, + "componentType":5123, + "count":756, + "type":"SCALAR" + }, + { + "bufferView":281, + "componentType":5126, + "count":866, + "max":[ + 2.9068117141723633, + 1.7504101991653442, + 2.084355354309082 + ], + "min":[ + -2.8558387756347656, + -1.751958966255188, + -1.8389396667480469 + ], + "type":"VEC3" + }, + { + "bufferView":282, + "componentType":5126, + "count":866, + "type":"VEC3" + }, + { + "bufferView":283, + "componentType":5126, + "count":866, + "type":"VEC2" + }, + { + "bufferView":284, + "componentType":5126, + "count":866, + "type":"VEC2" + }, + { + "bufferView":285, + "componentType":5126, + "count":866, + "type":"VEC4" + }, + { + "bufferView":286, + "componentType":5123, + "count":2142, + "type":"SCALAR" + }, + { + "bufferView":287, + "componentType":5126, + "count":44690, + "max":[ + 2.7650070190429688, + 0.9815661311149597, + 1.742971420288086 + ], + "min":[ + -1.0963859558105469, + -0.6962064504623413, + -1.5021305084228516 + ], + "type":"VEC3" + }, + { + "bufferView":288, + "componentType":5126, + "count":44690, + "type":"VEC3" + }, + { + "bufferView":289, + "componentType":5126, + "count":44690, + "type":"VEC2" + }, + { + "bufferView":290, + "componentType":5126, + "count":44690, + "type":"VEC2" + }, + { + "bufferView":291, + "componentType":5126, + "count":44690, + "type":"VEC4" + }, + { + "bufferView":292, + "componentType":5123, + "count":194628, + "type":"SCALAR" + }, + { + "bufferView":293, + "componentType":5126, + "count":288, + "max":[ + 3.0714969635009766, + 1.4432637691497803, + -1.3901100158691406 + ], + "min":[ + -3.0272350311279297, + -0.8751514554023743, + -2.123565673828125 + ], + "type":"VEC3" + }, + { + "bufferView":294, + "componentType":5126, + "count":288, + "type":"VEC3" + }, + { + "bufferView":295, + "componentType":5126, + "count":288, + "type":"VEC2" + }, + { + "bufferView":296, + "componentType":5126, + "count":288, + "type":"VEC2" + }, + { + "bufferView":297, + "componentType":5126, + "count":288, + "type":"VEC4" + }, + { + "bufferView":298, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":299, + "componentType":5126, + "count":851, + "max":[ + 3.068429946899414, + 1.731685996055603, + 1.5745410919189453 + ], + "min":[ + -2.9746265411376953, + -0.7615482211112976, + -1.9103013277053833 + ], + "type":"VEC3" + }, + { + "bufferView":300, + "componentType":5126, + "count":851, + "type":"VEC3" + }, + { + "bufferView":301, + "componentType":5126, + "count":851, + "type":"VEC2" + }, + { + "bufferView":302, + "componentType":5126, + "count":851, + "type":"VEC2" + }, + { + "bufferView":303, + "componentType":5126, + "count":851, + "type":"VEC4" + }, + { + "bufferView":304, + "componentType":5123, + "count":2568, + "type":"SCALAR" + }, + { + "bufferView":305, + "componentType":5126, + "count":613, + "max":[ + 2.731142044067383, + 1.4884674549102783, + 0.9125747084617615 + ], + "min":[ + -0.1955718994140625, + 1.2180784940719604, + -2.1362552642822266 + ], + "type":"VEC3" + }, + { + "bufferView":306, + "componentType":5126, + "count":613, + "type":"VEC3" + }, + { + "bufferView":307, + "componentType":5126, + "count":613, + "type":"VEC2" + }, + { + "bufferView":308, + "componentType":5126, + "count":613, + "type":"VEC2" + }, + { + "bufferView":309, + "componentType":5126, + "count":613, + "type":"VEC4" + }, + { + "bufferView":310, + "componentType":5123, + "count":2592, + "type":"SCALAR" + }, + { + "bufferView":311, + "componentType":5126, + "count":3409, + "max":[ + 3.054205894470215, + 1.8367544412612915, + 2.040158271789551 + ], + "min":[ + -2.934938430786133, + -1.0398919582366943, + -2.159269332885742 + ], + "type":"VEC3" + }, + { + "bufferView":312, + "componentType":5126, + "count":3409, + "type":"VEC3" + }, + { + "bufferView":313, + "componentType":5126, + "count":3409, + "type":"VEC2" + }, + { + "bufferView":314, + "componentType":5126, + "count":3409, + "type":"VEC2" + }, + { + "bufferView":315, + "componentType":5126, + "count":3409, + "type":"VEC4" + }, + { + "bufferView":316, + "componentType":5123, + "count":10416, + "type":"SCALAR" + }, + { + "bufferView":317, + "componentType":5126, + "count":4287, + "max":[ + 3.159480094909668, + 1.9167680740356445, + 2.082686424255371 + ], + "min":[ + -3.0218048095703125, + -1.7560168504714966, + -2.162933349609375 + ], + "type":"VEC3" + }, + { + "bufferView":318, + "componentType":5126, + "count":4287, + "type":"VEC3" + }, + { + "bufferView":319, + "componentType":5126, + "count":4287, + "type":"VEC2" + }, + { + "bufferView":320, + "componentType":5126, + "count":4287, + "type":"VEC2" + }, + { + "bufferView":321, + "componentType":5126, + "count":4287, + "type":"VEC4" + }, + { + "bufferView":322, + "componentType":5123, + "count":9972, + "type":"SCALAR" + }, + { + "bufferView":323, + "componentType":5126, + "count":220, + "max":[ + -1.2316951751708984, + -0.4066225588321686, + 2.0389928817749023 + ], + "min":[ + -2.751445770263672, + -0.6719557046890259, + -0.02749154344201088 + ], + "type":"VEC3" + }, + { + "bufferView":324, + "componentType":5126, + "count":220, + "type":"VEC3" + }, + { + "bufferView":325, + "componentType":5126, + "count":220, + "type":"VEC2" + }, + { + "bufferView":326, + "componentType":5126, + "count":220, + "type":"VEC2" + }, + { + "bufferView":327, + "componentType":5126, + "count":220, + "type":"VEC4" + }, + { + "bufferView":328, + "componentType":5123, + "count":1104, + "type":"SCALAR" + }, + { + "bufferView":329, + "componentType":5126, + "count":4990, + "max":[ + 2.728565216064453, + 1.5693471431732178, + 1.0918291807174683 + ], + "min":[ + -0.26047706604003906, + 1.2146838903427124, + -1.9871455430984497 + ], + "type":"VEC3" + }, + { + "bufferView":330, + "componentType":5126, + "count":4990, + "type":"VEC3" + }, + { + "bufferView":331, + "componentType":5126, + "count":4990, + "type":"VEC2" + }, + { + "bufferView":332, + "componentType":5126, + "count":4990, + "type":"VEC2" + }, + { + "bufferView":333, + "componentType":5126, + "count":4990, + "type":"VEC4" + }, + { + "bufferView":334, + "componentType":5123, + "count":13356, + "type":"SCALAR" + }, + { + "bufferView":335, + "componentType":5126, + "count":2639, + "max":[ + 3.0550765991210938, + 1.739984393119812, + 2.0403356552124023 + ], + "min":[ + -3.0296154022216797, + -1.7519577741622925, + -2.0780210494995117 + ], + "type":"VEC3" + }, + { + "bufferView":336, + "componentType":5126, + "count":2639, + "type":"VEC3" + }, + { + "bufferView":337, + "componentType":5126, + "count":2639, + "type":"VEC2" + }, + { + "bufferView":338, + "componentType":5126, + "count":2639, + "type":"VEC2" + }, + { + "bufferView":339, + "componentType":5126, + "count":2639, + "type":"VEC4" + }, + { + "bufferView":340, + "componentType":5123, + "count":6102, + "type":"SCALAR" + }, + { + "bufferView":341, + "componentType":5126, + "count":4555, + "max":[ + 3.00637149810791, + 1.7594326734542847, + 2.0327157974243164 + ], + "min":[ + -3.051708221435547, + -1.7808023691177368, + -1.981329083442688 + ], + "type":"VEC3" + }, + { + "bufferView":342, + "componentType":5126, + "count":4555, + "type":"VEC3" + }, + { + "bufferView":343, + "componentType":5126, + "count":4555, + "type":"VEC2" + }, + { + "bufferView":344, + "componentType":5126, + "count":4555, + "type":"VEC2" + }, + { + "bufferView":345, + "componentType":5126, + "count":4555, + "type":"VEC4" + }, + { + "bufferView":346, + "componentType":5123, + "count":17160, + "type":"SCALAR" + }, + { + "bufferView":347, + "componentType":5126, + "count":6110, + "max":[ + 3.1518936157226562, + 1.8728185892105103, + 2.1629343032836914 + ], + "min":[ + -3.0998077392578125, + -1.9135682582855225, + -2.0474205017089844 + ], + "type":"VEC3" + }, + { + "bufferView":348, + "componentType":5126, + "count":6110, + "type":"VEC3" + }, + { + "bufferView":349, + "componentType":5126, + "count":6110, + "type":"VEC2" + }, + { + "bufferView":350, + "componentType":5126, + "count":6110, + "type":"VEC2" + }, + { + "bufferView":351, + "componentType":5126, + "count":6110, + "type":"VEC4" + }, + { + "bufferView":352, + "componentType":5123, + "count":21636, + "type":"SCALAR" + }, + { + "bufferView":353, + "componentType":5126, + "count":4252, + "max":[ + 3.3079681396484375, + 1.0165587663650513, + 1.6573877334594727 + ], + "min":[ + -3.3079662322998047, + -1.916768193244934, + -1.4604711532592773 + ], + "type":"VEC3" + }, + { + "bufferView":354, + "componentType":5126, + "count":4252, + "type":"VEC3" + }, + { + "bufferView":355, + "componentType":5126, + "count":4252, + "type":"VEC2" + }, + { + "bufferView":356, + "componentType":5126, + "count":4252, + "type":"VEC2" + }, + { + "bufferView":357, + "componentType":5126, + "count":4252, + "type":"VEC4" + }, + { + "bufferView":358, + "componentType":5123, + "count":14784, + "type":"SCALAR" + }, + { + "bufferView":359, + "componentType":5126, + "count":3757, + "max":[ + 2.904644012451172, + 1.7959085702896118, + 1.9761258363723755 + ], + "min":[ + -2.852558135986328, + -1.7519583702087402, + -1.8299990892410278 + ], + "type":"VEC3" + }, + { + "bufferView":360, + "componentType":5126, + "count":3757, + "type":"VEC3" + }, + { + "bufferView":361, + "componentType":5126, + "count":3757, + "type":"VEC2" + }, + { + "bufferView":362, + "componentType":5126, + "count":3757, + "type":"VEC2" + }, + { + "bufferView":363, + "componentType":5126, + "count":3757, + "type":"VEC4" + }, + { + "bufferView":364, + "componentType":5123, + "count":6528, + "type":"SCALAR" + }, + { + "bufferView":365, + "componentType":5126, + "count":5872, + "max":[ + 2.7382335662841797, + 1.4154026508331299, + 1.7793312072753906 + ], + "min":[ + -1.1413288116455078, + -1.0622845888137817, + -1.5244140625 + ], + "type":"VEC3" + }, + { + "bufferView":366, + "componentType":5126, + "count":5872, + "type":"VEC3" + }, + { + "bufferView":367, + "componentType":5126, + "count":5872, + "type":"VEC2" + }, + { + "bufferView":368, + "componentType":5126, + "count":5872, + "type":"VEC2" + }, + { + "bufferView":369, + "componentType":5126, + "count":5872, + "type":"VEC4" + }, + { + "bufferView":370, + "componentType":5123, + "count":17472, + "type":"SCALAR" + }, + { + "bufferView":371, + "componentType":5126, + "count":120, + "max":[ + 0.23160529136657715, + -0.3658508062362671, + 0.5441622734069824 + ], + "min":[ + -0.5704405307769775, + -0.7938875555992126, + -0.6271070837974548 + ], + "type":"VEC3" + }, + { + "bufferView":372, + "componentType":5126, + "count":120, + "type":"VEC3" + }, + { + "bufferView":373, + "componentType":5126, + "count":120, + "type":"VEC2" + }, + { + "bufferView":374, + "componentType":5126, + "count":120, + "type":"VEC2" + }, + { + "bufferView":375, + "componentType":5126, + "count":120, + "type":"VEC4" + }, + { + "bufferView":376, + "componentType":5123, + "count":318, + "type":"SCALAR" + }, + { + "bufferView":377, + "componentType":5126, + "count":1952, + "max":[ + 0.34226012229919434, + 0.7560444474220276, + 0.10787150263786316 + ], + "min":[ + -0.3850318193435669, + 0.4673810303211212, + -0.44465187191963196 + ], + "type":"VEC3" + }, + { + "bufferView":378, + "componentType":5126, + "count":1952, + "type":"VEC3" + }, + { + "bufferView":379, + "componentType":5126, + "count":1952, + "type":"VEC2" + }, + { + "bufferView":380, + "componentType":5126, + "count":1952, + "type":"VEC2" + }, + { + "bufferView":381, + "componentType":5126, + "count":1952, + "type":"VEC4" + }, + { + "bufferView":382, + "componentType":5123, + "count":5280, + "type":"SCALAR" + }, + { + "bufferView":383, + "componentType":5126, + "count":3287, + "max":[ + 0.37334728240966797, + 0.3932960629463196, + 0.31418558955192566 + ], + "min":[ + -0.34461450576782227, + -0.7946204543113708, + -0.4037761986255646 + ], + "type":"VEC3" + }, + { + "bufferView":384, + "componentType":5126, + "count":3287, + "type":"VEC3" + }, + { + "bufferView":385, + "componentType":5126, + "count":3287, + "type":"VEC2" + }, + { + "bufferView":386, + "componentType":5126, + "count":3287, + "type":"VEC2" + }, + { + "bufferView":387, + "componentType":5126, + "count":3287, + "type":"VEC4" + }, + { + "bufferView":388, + "componentType":5123, + "count":10380, + "type":"SCALAR" + }, + { + "bufferView":389, + "componentType":5126, + "count":24629, + "max":[ + 0.38585329055786133, + 0.7946204543113708, + 0.6271071434020996 + ], + "min":[ + -0.6624181270599365, + -0.7933070063591003, + -0.5583270788192749 + ], + "type":"VEC3" + }, + { + "bufferView":390, + "componentType":5126, + "count":24629, + "type":"VEC3" + }, + { + "bufferView":391, + "componentType":5126, + "count":24629, + "type":"VEC2" + }, + { + "bufferView":392, + "componentType":5126, + "count":24629, + "type":"VEC2" + }, + { + "bufferView":393, + "componentType":5126, + "count":24629, + "type":"VEC4" + }, + { + "bufferView":394, + "componentType":5123, + "count":102888, + "type":"SCALAR" + }, + { + "bufferView":395, + "componentType":5126, + "count":384, + "max":[ + 0.12329089641571045, + 0.12409037351608276, + 0.0448150672018528 + ], + "min":[ + -0.02162754535675049, + -0.12308138608932495, + -0.05420375242829323 + ], + "type":"VEC3" + }, + { + "bufferView":396, + "componentType":5126, + "count":384, + "type":"VEC3" + }, + { + "bufferView":397, + "componentType":5126, + "count":384, + "type":"VEC2" + }, + { + "bufferView":398, + "componentType":5126, + "count":384, + "type":"VEC2" + }, + { + "bufferView":399, + "componentType":5126, + "count":384, + "type":"VEC4" + }, + { + "bufferView":400, + "componentType":5123, + "count":1092, + "type":"SCALAR" + }, + { + "bufferView":401, + "componentType":5126, + "count":1612, + "max":[ + 0.3511878252029419, + 0.7159052491188049, + 0.0025005461648106575 + ], + "min":[ + -0.5741493701934814, + -0.3346409201622009, + -0.578795313835144 + ], + "type":"VEC3" + }, + { + "bufferView":402, + "componentType":5126, + "count":1612, + "type":"VEC3" + }, + { + "bufferView":403, + "componentType":5126, + "count":1612, + "type":"VEC2" + }, + { + "bufferView":404, + "componentType":5126, + "count":1612, + "type":"VEC2" + }, + { + "bufferView":405, + "componentType":5126, + "count":1612, + "type":"VEC4" + }, + { + "bufferView":406, + "componentType":5123, + "count":5064, + "type":"SCALAR" + }, + { + "bufferView":407, + "componentType":5126, + "count":96, + "max":[ + 0.6624182462692261, + -0.7673938274383545, + -0.21725556254386902 + ], + "min":[ + 0.40495526790618896, + -0.7937288880348206, + -0.4548287093639374 + ], + "type":"VEC3" + }, + { + "bufferView":408, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":409, + "componentType":5126, + "count":96, + "type":"VEC2" + }, + { + "bufferView":410, + "componentType":5126, + "count":96, + "type":"VEC2" + }, + { + "bufferView":411, + "componentType":5126, + "count":96, + "type":"VEC4" + }, + { + "bufferView":412, + "componentType":5123, + "count":168, + "type":"SCALAR" + }, + { + "bufferView":413, + "componentType":5126, + "count":27, + "max":[ + 0.35443544387817383, + -1.373825192451477, + 0.7364819645881653 + ], + "min":[ + -1.1172199249267578, + -1.390655279159546, + -0.1679479479789734 + ], + "type":"VEC3" + }, + { + "bufferView":414, + "componentType":5126, + "count":27, + "type":"VEC3" + }, + { + "bufferView":415, + "componentType":5126, + "count":27, + "type":"VEC2" + }, + { + "bufferView":416, + "componentType":5126, + "count":27, + "type":"VEC2" + }, + { + "bufferView":417, + "componentType":5126, + "count":27, + "type":"VEC4" + }, + { + "bufferView":418, + "componentType":5123, + "count":72, + "type":"SCALAR" + }, + { + "bufferView":419, + "componentType":5126, + "count":18288, + "max":[ + 0.6261382102966309, + 0.1740582138299942, + 1.1397252082824707 + ], + "min":[ + -1.359527587890625, + -0.9188821315765381, + -0.7777957916259766 + ], + "type":"VEC3" + }, + { + "bufferView":420, + "componentType":5126, + "count":18288, + "type":"VEC3" + }, + { + "bufferView":421, + "componentType":5126, + "count":18288, + "type":"VEC2" + }, + { + "bufferView":422, + "componentType":5126, + "count":18288, + "type":"VEC2" + }, + { + "bufferView":423, + "componentType":5126, + "count":18288, + "type":"VEC4" + }, + { + "bufferView":424, + "componentType":5123, + "count":107793, + "type":"SCALAR" + }, + { + "bufferView":425, + "componentType":5126, + "count":3392, + "max":[ + 1.5114781856536865, + -0.6360680460929871, + 1.4272384643554688 + ], + "min":[ + -0.7214691638946533, + -1.3928455114364624, + -0.517509400844574 + ], + "type":"VEC3" + }, + { + "bufferView":426, + "componentType":5126, + "count":3392, + "type":"VEC3" + }, + { + "bufferView":427, + "componentType":5126, + "count":3392, + "type":"VEC2" + }, + { + "bufferView":428, + "componentType":5126, + "count":3392, + "type":"VEC2" + }, + { + "bufferView":429, + "componentType":5126, + "count":3392, + "type":"VEC4" + }, + { + "bufferView":430, + "componentType":5123, + "count":10332, + "type":"SCALAR" + }, + { + "bufferView":431, + "componentType":5126, + "count":1644, + "max":[ + 0.0037467479705810547, + 0.18036486208438873, + 0.9381940960884094 + ], + "min":[ + -1.0133466720581055, + -1.0084404945373535, + -0.5719382166862488 + ], + "type":"VEC3" + }, + { + "bufferView":432, + "componentType":5126, + "count":1644, + "type":"VEC3" + }, + { + "bufferView":433, + "componentType":5126, + "count":1644, + "type":"VEC2" + }, + { + "bufferView":434, + "componentType":5126, + "count":1644, + "type":"VEC2" + }, + { + "bufferView":435, + "componentType":5126, + "count":1644, + "type":"VEC4" + }, + { + "bufferView":436, + "componentType":5123, + "count":4824, + "type":"SCALAR" + }, + { + "bufferView":437, + "componentType":5126, + "count":1466, + "max":[ + 0.44579625129699707, + 1.3928453922271729, + 0.8259274959564209 + ], + "min":[ + -1.5114784240722656, + -1.2875779867172241, + -1.4272387027740479 + ], + "type":"VEC3" + }, + { + "bufferView":438, + "componentType":5126, + "count":1466, + "type":"VEC3" + }, + { + "bufferView":439, + "componentType":5126, + "count":1466, + "type":"VEC2" + }, + { + "bufferView":440, + "componentType":5126, + "count":1466, + "type":"VEC2" + }, + { + "bufferView":441, + "componentType":5126, + "count":1466, + "type":"VEC4" + }, + { + "bufferView":442, + "componentType":5123, + "count":7332, + "type":"SCALAR" + }, + { + "bufferView":443, + "componentType":5126, + "count":640, + "max":[ + 0.14923405647277832, + -0.9970641732215881, + 0.8365922570228577 + ], + "min":[ + -0.39215409755706787, + -1.0563427209854126, + -0.3109395205974579 + ], + "type":"VEC3" + }, + { + "bufferView":444, + "componentType":5126, + "count":640, + "type":"VEC3" + }, + { + "bufferView":445, + "componentType":5126, + "count":640, + "type":"VEC2" + }, + { + "bufferView":446, + "componentType":5126, + "count":640, + "type":"VEC2" + }, + { + "bufferView":447, + "componentType":5126, + "count":640, + "type":"VEC4" + }, + { + "bufferView":448, + "componentType":5123, + "count":1464, + "type":"SCALAR" + }, + { + "bufferView":449, + "componentType":5126, + "count":4000, + "max":[ + 1.4707229137420654, + -0.5296312570571899, + 1.387791633605957 + ], + "min":[ + -1.2935259342193604, + -1.3913886547088623, + -0.6508868336677551 + ], + "type":"VEC3" + }, + { + "bufferView":450, + "componentType":5126, + "count":4000, + "type":"VEC3" + }, + { + "bufferView":451, + "componentType":5126, + "count":4000, + "type":"VEC2" + }, + { + "bufferView":452, + "componentType":5126, + "count":4000, + "type":"VEC2" + }, + { + "bufferView":453, + "componentType":5126, + "count":4000, + "type":"VEC4" + }, + { + "bufferView":454, + "componentType":5123, + "count":10260, + "type":"SCALAR" + }, + { + "bufferView":455, + "componentType":5126, + "count":428, + "max":[ + -0.011497139930725098, + -0.8265706896781921, + -0.420968621969223 + ], + "min":[ + -0.41714465618133545, + -0.8458201885223389, + -0.4673639237880707 + ], + "type":"VEC3" + }, + { + "bufferView":456, + "componentType":5126, + "count":428, + "type":"VEC3" + }, + { + "bufferView":457, + "componentType":5126, + "count":428, + "type":"VEC2" + }, + { + "bufferView":458, + "componentType":5126, + "count":428, + "type":"VEC2" + }, + { + "bufferView":459, + "componentType":5126, + "count":428, + "type":"VEC4" + }, + { + "bufferView":460, + "componentType":5123, + "count":1872, + "type":"SCALAR" + }, + { + "bufferView":461, + "componentType":5126, + "count":1620, + "max":[ + 0.037378787994384766, + -0.7284743785858154, + 0.006937683559954166 + ], + "min":[ + -0.5694129467010498, + -1.3892300128936768, + -0.4551607072353363 + ], + "type":"VEC3" + }, + { + "bufferView":462, + "componentType":5126, + "count":1620, + "type":"VEC3" + }, + { + "bufferView":463, + "componentType":5126, + "count":1620, + "type":"VEC2" + }, + { + "bufferView":464, + "componentType":5126, + "count":1620, + "type":"VEC2" + }, + { + "bufferView":465, + "componentType":5126, + "count":1620, + "type":"VEC4" + }, + { + "bufferView":466, + "componentType":5123, + "count":4272, + "type":"SCALAR" + }, + { + "bufferView":467, + "componentType":5126, + "count":727, + "max":[ + 0.004698514938354492, + 0.6933574676513672, + 0.4504874646663666 + ], + "min":[ + -1.2692844867706299, + -0.9119458198547363, + -0.4586854875087738 + ], + "type":"VEC3" + }, + { + "bufferView":468, + "componentType":5126, + "count":727, + "type":"VEC3" + }, + { + "bufferView":469, + "componentType":5126, + "count":727, + "type":"VEC2" + }, + { + "bufferView":470, + "componentType":5126, + "count":727, + "type":"VEC2" + }, + { + "bufferView":471, + "componentType":5126, + "count":727, + "type":"VEC4" + }, + { + "bufferView":472, + "componentType":5123, + "count":1992, + "type":"SCALAR" + }, + { + "bufferView":473, + "componentType":5126, + "count":3824, + "max":[ + 1.2692844867706299, + 1.3892300128936768, + 0.4673639237880707 + ], + "min":[ + -1.2665549516677856, + -1.3861899375915527, + -0.09685833752155304 + ], + "type":"VEC3" + }, + { + "bufferView":474, + "componentType":5126, + "count":3824, + "type":"VEC3" + }, + { + "bufferView":475, + "componentType":5126, + "count":3824, + "type":"VEC2" + }, + { + "bufferView":476, + "componentType":5126, + "count":3824, + "type":"VEC2" + }, + { + "bufferView":477, + "componentType":5126, + "count":3824, + "type":"VEC4" + }, + { + "bufferView":478, + "componentType":5123, + "count":19908, + "type":"SCALAR" + }, + { + "bufferView":479, + "componentType":5126, + "count":1192, + "max":[ + -0.0011413097381591797, + -0.7241132259368896, + 0.002949176589027047 + ], + "min":[ + -0.5285921096801758, + -1.3547840118408203, + -0.4536619782447815 + ], + "type":"VEC3" + }, + { + "bufferView":480, + "componentType":5126, + "count":1192, + "type":"VEC3" + }, + { + "bufferView":481, + "componentType":5126, + "count":1192, + "type":"VEC2" + }, + { + "bufferView":482, + "componentType":5126, + "count":1192, + "type":"VEC2" + }, + { + "bufferView":483, + "componentType":5126, + "count":1192, + "type":"VEC4" + }, + { + "bufferView":484, + "componentType":5123, + "count":1992, + "type":"SCALAR" + }, + { + "bufferView":485, + "componentType":5126, + "count":72, + "max":[ + 0.8257350921630859, + -1.052039384841919, + 0.6115540862083435 + ], + "min":[ + -0.3986802101135254, + -1.5539733171463013, + -0.5913179516792297 + ], + "type":"VEC3" + }, + { + "bufferView":486, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":487, + "componentType":5126, + "count":72, + "type":"VEC2" + }, + { + "bufferView":488, + "componentType":5126, + "count":72, + "type":"VEC2" + }, + { + "bufferView":489, + "componentType":5126, + "count":72, + "type":"VEC4" + }, + { + "bufferView":490, + "componentType":5123, + "count":150, + "type":"SCALAR" + }, + { + "bufferView":491, + "componentType":5126, + "count":286, + "max":[ + 0.21759295463562012, + -0.7478482723236084, + -0.17754122614860535 + ], + "min":[ + -0.5345180034637451, + -1.0053954124450684, + -0.774782121181488 + ], + "type":"VEC3" + }, + { + "bufferView":492, + "componentType":5126, + "count":286, + "type":"VEC3" + }, + { + "bufferView":493, + "componentType":5126, + "count":286, + "type":"VEC2" + }, + { + "bufferView":494, + "componentType":5126, + "count":286, + "type":"VEC2" + }, + { + "bufferView":495, + "componentType":5126, + "count":286, + "type":"VEC4" + }, + { + "bufferView":496, + "componentType":5123, + "count":1056, + "type":"SCALAR" + }, + { + "bufferView":497, + "componentType":5126, + "count":88, + "max":[ + 0.3092975616455078, + -0.11965285241603851, + 0.2605954706668854 + ], + "min":[ + 0.09031081199645996, + -0.4149138927459717, + -0.1472553014755249 + ], + "type":"VEC3" + }, + { + "bufferView":498, + "componentType":5126, + "count":88, + "type":"VEC3" + }, + { + "bufferView":499, + "componentType":5126, + "count":88, + "type":"VEC2" + }, + { + "bufferView":500, + "componentType":5126, + "count":88, + "type":"VEC2" + }, + { + "bufferView":501, + "componentType":5126, + "count":88, + "type":"VEC4" + }, + { + "bufferView":502, + "componentType":5123, + "count":180, + "type":"SCALAR" + }, + { + "bufferView":503, + "componentType":5126, + "count":1330, + "max":[ + 0.191542387008667, + 0.33750593662261963, + 0.14405512809753418 + ], + "min":[ + -0.5800135135650635, + -1.5488052368164062, + -0.8127241730690002 + ], + "type":"VEC3" + }, + { + "bufferView":504, + "componentType":5126, + "count":1330, + "type":"VEC3" + }, + { + "bufferView":505, + "componentType":5126, + "count":1330, + "type":"VEC2" + }, + { + "bufferView":506, + "componentType":5126, + "count":1330, + "type":"VEC2" + }, + { + "bufferView":507, + "componentType":5126, + "count":1330, + "type":"VEC4" + }, + { + "bufferView":508, + "componentType":5123, + "count":3348, + "type":"SCALAR" + }, + { + "bufferView":509, + "componentType":5126, + "count":120, + "max":[ + 0.16177654266357422, + -1.3433963060379028, + 0.656441867351532 + ], + "min":[ + -0.1191091537475586, + -1.554706335067749, + 0.36717814207077026 + ], + "type":"VEC3" + }, + { + "bufferView":510, + "componentType":5126, + "count":120, + "type":"VEC3" + }, + { + "bufferView":511, + "componentType":5126, + "count":120, + "type":"VEC2" + }, + { + "bufferView":512, + "componentType":5126, + "count":120, + "type":"VEC2" + }, + { + "bufferView":513, + "componentType":5126, + "count":120, + "type":"VEC4" + }, + { + "bufferView":514, + "componentType":5123, + "count":180, + "type":"SCALAR" + }, + { + "bufferView":515, + "componentType":5126, + "count":727, + "max":[ + 0.33252525329589844, + 0.03446732461452484, + -0.166562020778656 + ], + "min":[ + -0.5495047569274902, + -1.4832531213760376, + -0.7801247239112854 + ], + "type":"VEC3" + }, + { + "bufferView":516, + "componentType":5126, + "count":727, + "type":"VEC3" + }, + { + "bufferView":517, + "componentType":5126, + "count":727, + "type":"VEC2" + }, + { + "bufferView":518, + "componentType":5126, + "count":727, + "type":"VEC2" + }, + { + "bufferView":519, + "componentType":5126, + "count":727, + "type":"VEC4" + }, + { + "bufferView":520, + "componentType":5123, + "count":2304, + "type":"SCALAR" + }, + { + "bufferView":521, + "componentType":5126, + "count":526, + "max":[ + 0.8889334201812744, + -0.7869110107421875, + 0.605022132396698 + ], + "min":[ + 0.027121543884277344, + -1.5231831073760986, + -0.19428640604019165 + ], + "type":"VEC3" + }, + { + "bufferView":522, + "componentType":5126, + "count":526, + "type":"VEC3" + }, + { + "bufferView":523, + "componentType":5126, + "count":526, + "type":"VEC2" + }, + { + "bufferView":524, + "componentType":5126, + "count":526, + "type":"VEC2" + }, + { + "bufferView":525, + "componentType":5126, + "count":526, + "type":"VEC4" + }, + { + "bufferView":526, + "componentType":5123, + "count":1776, + "type":"SCALAR" + }, + { + "bufferView":527, + "componentType":5126, + "count":760, + "max":[ + 0.30727314949035645, + -0.04042469337582588, + 0.34636396169662476 + ], + "min":[ + -0.5291870832443237, + -1.554706335067749, + -0.4745665192604065 + ], + "type":"VEC3" + }, + { + "bufferView":528, + "componentType":5126, + "count":760, + "type":"VEC3" + }, + { + "bufferView":529, + "componentType":5126, + "count":760, + "type":"VEC2" + }, + { + "bufferView":530, + "componentType":5126, + "count":760, + "type":"VEC2" + }, + { + "bufferView":531, + "componentType":5126, + "count":760, + "type":"VEC4" + }, + { + "bufferView":532, + "componentType":5123, + "count":1248, + "type":"SCALAR" + }, + { + "bufferView":533, + "componentType":5126, + "count":1954, + "max":[ + 0.338789701461792, + 1.5672357082366943, + -0.12719471752643585 + ], + "min":[ + -0.888933539390564, + -1.5590672492980957, + -0.5477636456489563 + ], + "type":"VEC3" + }, + { + "bufferView":534, + "componentType":5126, + "count":1954, + "type":"VEC3" + }, + { + "bufferView":535, + "componentType":5126, + "count":1954, + "type":"VEC2" + }, + { + "bufferView":536, + "componentType":5126, + "count":1954, + "type":"VEC2" + }, + { + "bufferView":537, + "componentType":5126, + "count":1954, + "type":"VEC4" + }, + { + "bufferView":538, + "componentType":5123, + "count":10032, + "type":"SCALAR" + }, + { + "bufferView":539, + "componentType":5126, + "count":5188, + "max":[ + 0.8733539581298828, + 0.31215906143188477, + 0.5995181202888489 + ], + "min":[ + -0.569961667060852, + -1.5536830425262451, + -0.7818177342414856 + ], + "type":"VEC3" + }, + { + "bufferView":540, + "componentType":5126, + "count":5188, + "type":"VEC3" + }, + { + "bufferView":541, + "componentType":5126, + "count":5188, + "type":"VEC2" + }, + { + "bufferView":542, + "componentType":5126, + "count":5188, + "type":"VEC2" + }, + { + "bufferView":543, + "componentType":5126, + "count":5188, + "type":"VEC4" + }, + { + "bufferView":544, + "componentType":5123, + "count":17796, + "type":"SCALAR" + }, + { + "bufferView":545, + "componentType":5126, + "count":204, + "max":[ + 0.3943314552307129, + -1.3024535179138184, + 0.8127242922782898 + ], + "min":[ + -0.01796579360961914, + -1.5672357082366943, + 0.4334713816642761 + ], + "type":"VEC3" + }, + { + "bufferView":546, + "componentType":5126, + "count":204, + "type":"VEC3" + }, + { + "bufferView":547, + "componentType":5126, + "count":204, + "type":"VEC2" + }, + { + "bufferView":548, + "componentType":5126, + "count":204, + "type":"VEC2" + }, + { + "bufferView":549, + "componentType":5126, + "count":204, + "type":"VEC4" + }, + { + "bufferView":550, + "componentType":5123, + "count":504, + "type":"SCALAR" + }, + { + "bufferView":551, + "componentType":5126, + "count":4, + "max":[ + 0.3020937442779541, + -0.13339518010616302, + 0.24895812571048737 + ], + "min":[ + 0.130326509475708, + -0.4012417793273926, + -0.11939751356840134 + ], + "type":"VEC3" + }, + { + "bufferView":552, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":553, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":554, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":555, + "componentType":5126, + "count":4, + "type":"VEC4" + }, + { + "bufferView":556, + "componentType":5126, + "count":578, + "max":[ + -0.3732737898826599, + 0.623860776424408, + 0.7468646764755249 + ], + "min":[ + -1.7213859558105469, + -1.5592159032821655, + -0.7759101390838623 + ], + "type":"VEC3" + }, + { + "bufferView":557, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":558, + "componentType":5126, + "count":578, + "type":"VEC2" + }, + { + "bufferView":559, + "componentType":5126, + "count":578, + "type":"VEC2" + }, + { + "bufferView":560, + "componentType":5126, + "count":578, + "type":"VEC4" + }, + { + "bufferView":561, + "componentType":5123, + "count":1752, + "type":"SCALAR" + }, + { + "bufferView":562, + "componentType":5126, + "count":18966, + "max":[ + -0.6859142184257507, + -0.3539898097515106, + 0.6095659732818604 + ], + "min":[ + -1.4543683528900146, + -1.5028575658798218, + 0.25775644183158875 + ], + "type":"VEC3" + }, + { + "bufferView":563, + "componentType":5126, + "count":18966, + "type":"VEC3" + }, + { + "bufferView":564, + "componentType":5126, + "count":18966, + "type":"VEC2" + }, + { + "bufferView":565, + "componentType":5126, + "count":18966, + "type":"VEC2" + }, + { + "bufferView":566, + "componentType":5126, + "count":18966, + "type":"VEC4" + }, + { + "bufferView":567, + "componentType":5123, + "count":96480, + "type":"SCALAR" + }, + { + "bufferView":568, + "componentType":5126, + "count":6110, + "max":[ + -0.6619982719421387, + 0.41196706891059875, + 0.5833552479743958 + ], + "min":[ + -1.0684990882873535, + -1.0164575576782227, + 0.18119986355304718 + ], + "type":"VEC3" + }, + { + "bufferView":569, + "componentType":5126, + "count":6110, + "type":"VEC3" + }, + { + "bufferView":570, + "componentType":5126, + "count":6110, + "type":"VEC2" + }, + { + "bufferView":571, + "componentType":5126, + "count":6110, + "type":"VEC2" + }, + { + "bufferView":572, + "componentType":5126, + "count":6110, + "type":"VEC4" + }, + { + "bufferView":573, + "componentType":5123, + "count":27000, + "type":"SCALAR" + }, + { + "bufferView":574, + "componentType":5126, + "count":214, + "max":[ + -1.656390905380249, + 0.28235113620758057, + 0.3376607298851013 + ], + "min":[ + -1.7012839317321777, + 0.26838719844818115, + 0.32815390825271606 + ], + "type":"VEC3" + }, + { + "bufferView":575, + "componentType":5126, + "count":214, + "type":"VEC3" + }, + { + "bufferView":576, + "componentType":5126, + "count":214, + "type":"VEC2" + }, + { + "bufferView":577, + "componentType":5126, + "count":214, + "type":"VEC2" + }, + { + "bufferView":578, + "componentType":5126, + "count":214, + "type":"VEC4" + }, + { + "bufferView":579, + "componentType":5123, + "count":936, + "type":"SCALAR" + }, + { + "bufferView":580, + "componentType":5126, + "count":602, + "max":[ + -1.4865243434906006, + 0.32330241799354553, + 0.3906247019767761 + ], + "min":[ + -1.7668347358703613, + -0.13649523258209229, + -0.012347652576863766 + ], + "type":"VEC3" + }, + { + "bufferView":581, + "componentType":5126, + "count":602, + "type":"VEC3" + }, + { + "bufferView":582, + "componentType":5126, + "count":602, + "type":"VEC2" + }, + { + "bufferView":583, + "componentType":5126, + "count":602, + "type":"VEC2" + }, + { + "bufferView":584, + "componentType":5126, + "count":602, + "type":"VEC4" + }, + { + "bufferView":585, + "componentType":5123, + "count":2604, + "type":"SCALAR" + }, + { + "bufferView":586, + "componentType":5126, + "count":3786, + "max":[ + -0.721892774105072, + 0.5405274629592896, + 0.573586106300354 + ], + "min":[ + -1.7506914138793945, + -1.172602891921997, + -0.003755522659048438 + ], + "type":"VEC3" + }, + { + "bufferView":587, + "componentType":5126, + "count":3786, + "type":"VEC3" + }, + { + "bufferView":588, + "componentType":5126, + "count":3786, + "type":"VEC2" + }, + { + "bufferView":589, + "componentType":5126, + "count":3786, + "type":"VEC2" + }, + { + "bufferView":590, + "componentType":5126, + "count":3786, + "type":"VEC4" + }, + { + "bufferView":591, + "componentType":5123, + "count":16320, + "type":"SCALAR" + }, + { + "bufferView":592, + "componentType":5126, + "count":946, + "max":[ + -0.9419168829917908, + 0.31778302788734436, + 0.5576078295707703 + ], + "min":[ + -1.5681471824645996, + -1.5506666898727417, + -0.325270414352417 + ], + "type":"VEC3" + }, + { + "bufferView":593, + "componentType":5126, + "count":946, + "type":"VEC3" + }, + { + "bufferView":594, + "componentType":5126, + "count":946, + "type":"VEC2" + }, + { + "bufferView":595, + "componentType":5126, + "count":946, + "type":"VEC2" + }, + { + "bufferView":596, + "componentType":5126, + "count":946, + "type":"VEC4" + }, + { + "bufferView":597, + "componentType":5123, + "count":2376, + "type":"SCALAR" + }, + { + "bufferView":598, + "componentType":5126, + "count":2174, + "max":[ + -1.268293857574463, + 0.6411887407302856, + 0.7103692889213562 + ], + "min":[ + -1.7060961723327637, + 0.22915494441986084, + -0.017897438257932663 + ], + "type":"VEC3" + }, + { + "bufferView":599, + "componentType":5126, + "count":2174, + "type":"VEC3" + }, + { + "bufferView":600, + "componentType":5126, + "count":2174, + "type":"VEC2" + }, + { + "bufferView":601, + "componentType":5126, + "count":2174, + "type":"VEC2" + }, + { + "bufferView":602, + "componentType":5126, + "count":2174, + "type":"VEC4" + }, + { + "bufferView":603, + "componentType":5123, + "count":8052, + "type":"SCALAR" + }, + { + "bufferView":604, + "componentType":5126, + "count":13226, + "max":[ + -0.7860629558563232, + 1.0185528993606567, + 0.7759101390838623 + ], + "min":[ + -1.4826204776763916, + -1.020264983177185, + 0.19800814986228943 + ], + "type":"VEC3" + }, + { + "bufferView":605, + "componentType":5126, + "count":13226, + "type":"VEC3" + }, + { + "bufferView":606, + "componentType":5126, + "count":13226, + "type":"VEC2" + }, + { + "bufferView":607, + "componentType":5126, + "count":13226, + "type":"VEC2" + }, + { + "bufferView":608, + "componentType":5126, + "count":13226, + "type":"VEC4" + }, + { + "bufferView":609, + "componentType":5123, + "count":69732, + "type":"SCALAR" + }, + { + "bufferView":610, + "componentType":5126, + "count":1936, + "max":[ + 1.7668347358703613, + 1.5599483251571655, + 0.4292619526386261 + ], + "min":[ + -1.3148462772369385, + 0.11959851533174515, + 0.11967507749795914 + ], + "type":"VEC3" + }, + { + "bufferView":611, + "componentType":5126, + "count":1936, + "type":"VEC3" + }, + { + "bufferView":612, + "componentType":5126, + "count":1936, + "type":"VEC2" + }, + { + "bufferView":613, + "componentType":5126, + "count":1936, + "type":"VEC2" + }, + { + "bufferView":614, + "componentType":5126, + "count":1936, + "type":"VEC4" + }, + { + "bufferView":615, + "componentType":5123, + "count":5688, + "type":"SCALAR" + }, + { + "bufferView":616, + "componentType":5126, + "count":3299, + "max":[ + -0.4875231385231018, + 1.0028799772262573, + 0.7718628644943237 + ], + "min":[ + -1.6995368003845215, + -0.7440310716629028, + 0.0834326446056366 + ], + "type":"VEC3" + }, + { + "bufferView":617, + "componentType":5126, + "count":3299, + "type":"VEC3" + }, + { + "bufferView":618, + "componentType":5126, + "count":3299, + "type":"VEC2" + }, + { + "bufferView":619, + "componentType":5126, + "count":3299, + "type":"VEC2" + }, + { + "bufferView":620, + "componentType":5126, + "count":3299, + "type":"VEC4" + }, + { + "bufferView":621, + "componentType":5123, + "count":10224, + "type":"SCALAR" + }, + { + "bufferView":622, + "componentType":5126, + "count":1320, + "max":[ + -0.21579521894454956, + 0.4272672235965729, + 0.5480718612670898 + ], + "min":[ + -1.4553992748260498, + -1.557203769683838, + 0.05833766236901283 + ], + "type":"VEC3" + }, + { + "bufferView":623, + "componentType":5126, + "count":1320, + "type":"VEC3" + }, + { + "bufferView":624, + "componentType":5126, + "count":1320, + "type":"VEC2" + }, + { + "bufferView":625, + "componentType":5126, + "count":1320, + "type":"VEC2" + }, + { + "bufferView":626, + "componentType":5126, + "count":1320, + "type":"VEC4" + }, + { + "bufferView":627, + "componentType":5123, + "count":3228, + "type":"SCALAR" + }, + { + "bufferView":628, + "componentType":5126, + "count":296, + "max":[ + -0.6386333703994751, + 0.4726065695285797, + 0.6564880609512329 + ], + "min":[ + -1.5172743797302246, + -1.5599483251571655, + -0.062335096299648285 + ], + "type":"VEC3" + }, + { + "bufferView":629, + "componentType":5126, + "count":296, + "type":"VEC3" + }, + { + "bufferView":630, + "componentType":5126, + "count":296, + "type":"VEC2" + }, + { + "bufferView":631, + "componentType":5126, + "count":296, + "type":"VEC2" + }, + { + "bufferView":632, + "componentType":5126, + "count":296, + "type":"VEC4" + }, + { + "bufferView":633, + "componentType":5123, + "count":732, + "type":"SCALAR" + }, + { + "bufferView":634, + "componentType":5126, + "count":940, + "max":[ + 0.6333876252174377, + 1.2918869256973267, + 0.6333876252174377 + ], + "min":[ + -0.6333877444267273, + 1.0702811479568481, + -0.633388340473175 + ], + "type":"VEC3" + }, + { + "bufferView":635, + "componentType":5126, + "count":940, + "type":"VEC3" + }, + { + "bufferView":636, + "componentType":5126, + "count":940, + "type":"VEC2" + }, + { + "bufferView":637, + "componentType":5126, + "count":940, + "type":"VEC2" + }, + { + "bufferView":638, + "componentType":5126, + "count":940, + "type":"VEC4" + }, + { + "bufferView":639, + "componentType":5123, + "count":2592, + "type":"SCALAR" + }, + { + "bufferView":640, + "componentType":5126, + "count":644, + "max":[ + 1.6607956886291504, + 0.9342604279518127, + 1.6609114408493042 + ], + "min":[ + -1.660399317741394, + 0.8815250992774963, + -1.6618022918701172 + ], + "type":"VEC3" + }, + { + "bufferView":641, + "componentType":5126, + "count":644, + "type":"VEC3" + }, + { + "bufferView":642, + "componentType":5126, + "count":644, + "type":"VEC2" + }, + { + "bufferView":643, + "componentType":5126, + "count":644, + "type":"VEC2" + }, + { + "bufferView":644, + "componentType":5126, + "count":644, + "type":"VEC4" + }, + { + "bufferView":645, + "componentType":5123, + "count":1440, + "type":"SCALAR" + }, + { + "bufferView":646, + "componentType":5126, + "count":1520, + "max":[ + 1.6518287658691406, + 1.658157229423523, + 1.6518272161483765 + ], + "min":[ + -1.6518282890319824, + 0.6055172085762024, + -1.6518301963806152 + ], + "type":"VEC3" + }, + { + "bufferView":647, + "componentType":5126, + "count":1520, + "type":"VEC3" + }, + { + "bufferView":648, + "componentType":5126, + "count":1520, + "type":"VEC2" + }, + { + "bufferView":649, + "componentType":5126, + "count":1520, + "type":"VEC2" + }, + { + "bufferView":650, + "componentType":5126, + "count":1520, + "type":"VEC4" + }, + { + "bufferView":651, + "componentType":5123, + "count":5664, + "type":"SCALAR" + }, + { + "bufferView":652, + "componentType":5126, + "count":2598, + "max":[ + 1.6518254280090332, + 1.7229827642440796, + 1.6518243551254272 + ], + "min":[ + -1.651825189590454, + -1.7229827642440796, + -1.6518269777297974 + ], + "type":"VEC3" + }, + { + "bufferView":653, + "componentType":5126, + "count":2598, + "type":"VEC3" + }, + { + "bufferView":654, + "componentType":5126, + "count":2598, + "type":"VEC2" + }, + { + "bufferView":655, + "componentType":5126, + "count":2598, + "type":"VEC2" + }, + { + "bufferView":656, + "componentType":5126, + "count":2598, + "type":"VEC4" + }, + { + "bufferView":657, + "componentType":5123, + "count":9936, + "type":"SCALAR" + }, + { + "bufferView":658, + "componentType":5126, + "count":48, + "max":[ + -0.9576656222343445, + 1.1383317708969116, + -0.9576658606529236 + ], + "min":[ + -1.1640236377716064, + 0.8916035294532776, + -1.164023756980896 + ], + "type":"VEC3" + }, + { + "bufferView":659, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":660, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":661, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":662, + "componentType":5126, + "count":48, + "type":"VEC4" + }, + { + "bufferView":663, + "componentType":5123, + "count":108, + "type":"SCALAR" + }, + { + "bufferView":664, + "componentType":5126, + "count":682, + "max":[ + 0.14946991205215454, + -1.4255318641662598, + 0.03850394859910011 + ], + "min":[ + 0.12394803762435913, + -1.5002087354660034, + -0.04207056388258934 + ], + "type":"VEC3" + }, + { + "bufferView":665, + "componentType":5126, + "count":682, + "type":"VEC3" + }, + { + "bufferView":666, + "componentType":5126, + "count":682, + "type":"VEC2" + }, + { + "bufferView":667, + "componentType":5126, + "count":682, + "type":"VEC2" + }, + { + "bufferView":668, + "componentType":5126, + "count":682, + "type":"VEC4" + }, + { + "bufferView":669, + "componentType":5123, + "count":2880, + "type":"SCALAR" + }, + { + "bufferView":670, + "componentType":5126, + "count":1751, + "max":[ + 0.6579639315605164, + 1.3085752725601196, + 0.6579639315605164 + ], + "min":[ + -0.6579640507698059, + 1.0332008600234985, + -0.6579646468162537 + ], + "type":"VEC3" + }, + { + "bufferView":671, + "componentType":5126, + "count":1751, + "type":"VEC3" + }, + { + "bufferView":672, + "componentType":5126, + "count":1751, + "type":"VEC2" + }, + { + "bufferView":673, + "componentType":5126, + "count":1751, + "type":"VEC2" + }, + { + "bufferView":674, + "componentType":5126, + "count":1751, + "type":"VEC4" + }, + { + "bufferView":675, + "componentType":5123, + "count":4944, + "type":"SCALAR" + }, + { + "bufferView":676, + "componentType":5126, + "count":4976, + "max":[ + 0.19428813457489014, + 1.0802139043807983, + 0.19428880512714386 + ], + "min":[ + -0.1942884922027588, + -1.4479767084121704, + -0.19428841769695282 + ], + "type":"VEC3" + }, + { + "bufferView":677, + "componentType":5126, + "count":4976, + "type":"VEC3" + }, + { + "bufferView":678, + "componentType":5126, + "count":4976, + "type":"VEC2" + }, + { + "bufferView":679, + "componentType":5126, + "count":4976, + "type":"VEC2" + }, + { + "bufferView":680, + "componentType":5126, + "count":4976, + "type":"VEC4" + }, + { + "bufferView":681, + "componentType":5123, + "count":13908, + "type":"SCALAR" + }, + { + "bufferView":682, + "componentType":5126, + "count":8166, + "max":[ + 1.6735005378723145, + 1.6749612092971802, + 1.673500895500183 + ], + "min":[ + -1.6735005378723145, + -1.6180282831192017, + -1.673500895500183 + ], + "type":"VEC3" + }, + { + "bufferView":683, + "componentType":5126, + "count":8166, + "type":"VEC3" + }, + { + "bufferView":684, + "componentType":5126, + "count":8166, + "type":"VEC2" + }, + { + "bufferView":685, + "componentType":5126, + "count":8166, + "type":"VEC2" + }, + { + "bufferView":686, + "componentType":5126, + "count":8166, + "type":"VEC4" + }, + { + "bufferView":687, + "componentType":5123, + "count":19440, + "type":"SCALAR" + }, + { + "bufferView":688, + "componentType":5126, + "count":121, + "max":[ + 1.115980625152588, + -0.19253166019916534, + 0.5157656669616699 + ], + "min":[ + -1.1803719997406006, + -0.5229061841964722, + -0.44937369227409363 + ], + "type":"VEC3" + }, + { + "bufferView":689, + "componentType":5126, + "count":121, + "type":"VEC3" + }, + { + "bufferView":690, + "componentType":5126, + "count":121, + "type":"VEC2" + }, + { + "bufferView":691, + "componentType":5126, + "count":121, + "type":"VEC2" + }, + { + "bufferView":692, + "componentType":5126, + "count":121, + "type":"VEC4" + }, + { + "bufferView":693, + "componentType":5123, + "count":288, + "type":"SCALAR" + }, + { + "bufferView":694, + "componentType":5126, + "count":2692, + "max":[ + 0.6863064169883728, + 0.47974321246147156, + 0.25394153594970703 + ], + "min":[ + -1.1882760524749756, + -0.5208933353424072, + -0.45795825123786926 + ], + "type":"VEC3" + }, + { + "bufferView":695, + "componentType":5126, + "count":2692, + "type":"VEC3" + }, + { + "bufferView":696, + "componentType":5126, + "count":2692, + "type":"VEC2" + }, + { + "bufferView":697, + "componentType":5126, + "count":2692, + "type":"VEC2" + }, + { + "bufferView":698, + "componentType":5126, + "count":2692, + "type":"VEC4" + }, + { + "bufferView":699, + "componentType":5123, + "count":13272, + "type":"SCALAR" + }, + { + "bufferView":700, + "componentType":5126, + "count":72, + "max":[ + 0.7424513697624207, + -0.07517924159765244, + 0.2702929973602295 + ], + "min":[ + 0.7330308556556702, + -0.284456729888916, + 0.24783754348754883 + ], + "type":"VEC3" + }, + { + "bufferView":701, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":702, + "componentType":5126, + "count":72, + "type":"VEC2" + }, + { + "bufferView":703, + "componentType":5126, + "count":72, + "type":"VEC2" + }, + { + "bufferView":704, + "componentType":5126, + "count":72, + "type":"VEC4" + }, + { + "bufferView":705, + "componentType":5123, + "count":120, + "type":"SCALAR" + }, + { + "bufferView":706, + "componentType":5126, + "count":472, + "max":[ + 0.7628865242004395, + -0.005416021682322025, + 0.33214664459228516 + ], + "min":[ + -0.944782018661499, + -0.34355902671813965, + 0.1770801544189453 + ], + "type":"VEC3" + }, + { + "bufferView":707, + "componentType":5126, + "count":472, + "type":"VEC3" + }, + { + "bufferView":708, + "componentType":5126, + "count":472, + "type":"VEC2" + }, + { + "bufferView":709, + "componentType":5126, + "count":472, + "type":"VEC2" + }, + { + "bufferView":710, + "componentType":5126, + "count":472, + "type":"VEC4" + }, + { + "bufferView":711, + "componentType":5123, + "count":1860, + "type":"SCALAR" + }, + { + "bufferView":712, + "componentType":5126, + "count":586, + "max":[ + -1.101935863494873, + -0.16042552888393402, + 0.19235016405582428 + ], + "min":[ + -1.152296543121338, + -0.18111389875411987, + 0.012798793613910675 + ], + "type":"VEC3" + }, + { + "bufferView":713, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":714, + "componentType":5126, + "count":586, + "type":"VEC2" + }, + { + "bufferView":715, + "componentType":5126, + "count":586, + "type":"VEC2" + }, + { + "bufferView":716, + "componentType":5126, + "count":586, + "type":"VEC4" + }, + { + "bufferView":717, + "componentType":5123, + "count":2592, + "type":"SCALAR" + }, + { + "bufferView":718, + "componentType":5126, + "count":292, + "max":[ + 1.1186485290527344, + -0.17895092070102692, + 0.5026586055755615 + ], + "min":[ + 0.7614612579345703, + -0.5236389636993408, + -0.44368672370910645 + ], + "type":"VEC3" + }, + { + "bufferView":719, + "componentType":5126, + "count":292, + "type":"VEC3" + }, + { + "bufferView":720, + "componentType":5126, + "count":292, + "type":"VEC2" + }, + { + "bufferView":721, + "componentType":5126, + "count":292, + "type":"VEC2" + }, + { + "bufferView":722, + "componentType":5126, + "count":292, + "type":"VEC4" + }, + { + "bufferView":723, + "componentType":5123, + "count":612, + "type":"SCALAR" + }, + { + "bufferView":724, + "componentType":5126, + "count":368, + "max":[ + 0.7496533393859863, + 0.5361683368682861, + 0.31178927421569824 + ], + "min":[ + -1.0496931076049805, + 0.04450703784823418, + -0.5157654285430908 + ], + "type":"VEC3" + }, + { + "bufferView":725, + "componentType":5126, + "count":368, + "type":"VEC3" + }, + { + "bufferView":726, + "componentType":5126, + "count":368, + "type":"VEC2" + }, + { + "bufferView":727, + "componentType":5126, + "count":368, + "type":"VEC2" + }, + { + "bufferView":728, + "componentType":5126, + "count":368, + "type":"VEC4" + }, + { + "bufferView":729, + "componentType":5123, + "count":828, + "type":"SCALAR" + }, + { + "bufferView":730, + "componentType":5126, + "count":230, + "max":[ + 0.7241726517677307, + 0.3722796142101288, + 0.2957287132740021 + ], + "min":[ + -1.0242111682891846, + -0.5236389636993408, + -0.4940238296985626 + ], + "type":"VEC3" + }, + { + "bufferView":731, + "componentType":5126, + "count":230, + "type":"VEC3" + }, + { + "bufferView":732, + "componentType":5126, + "count":230, + "type":"VEC2" + }, + { + "bufferView":733, + "componentType":5126, + "count":230, + "type":"VEC2" + }, + { + "bufferView":734, + "componentType":5126, + "count":230, + "type":"VEC4" + }, + { + "bufferView":735, + "componentType":5123, + "count":432, + "type":"SCALAR" + }, + { + "bufferView":736, + "componentType":5126, + "count":4, + "max":[ + 0.06840264797210693, + -0.01617424190044403, + 0.3261423110961914 + ], + "min":[ + -0.9329508543014526, + -0.3358910083770752, + 0.3261420726776123 + ], + "type":"VEC3" + }, + { + "bufferView":737, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":738, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":739, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":740, + "componentType":5126, + "count":4, + "type":"VEC4" + }, + { + "bufferView":741, + "componentType":5126, + "count":2034, + "max":[ + 0.7498257160186768, + 0.11185361444950104, + 0.3239161968231201 + ], + "min":[ + -1.050951361656189, + -0.46976378560066223, + -0.5030736923217773 + ], + "type":"VEC3" + }, + { + "bufferView":742, + "componentType":5126, + "count":2034, + "type":"VEC3" + }, + { + "bufferView":743, + "componentType":5126, + "count":2034, + "type":"VEC2" + }, + { + "bufferView":744, + "componentType":5126, + "count":2034, + "type":"VEC2" + }, + { + "bufferView":745, + "componentType":5126, + "count":2034, + "type":"VEC4" + }, + { + "bufferView":746, + "componentType":5123, + "count":6024, + "type":"SCALAR" + }, + { + "bufferView":747, + "componentType":5126, + "count":192, + "max":[ + 1.1882760524749756, + -0.2713860869407654, + 0.4120955765247345 + ], + "min":[ + 0.8869026899337769, + -0.5361683368682861, + 0.11876442283391953 + ], + "type":"VEC3" + }, + { + "bufferView":748, + "componentType":5126, + "count":192, + "type":"VEC3" + }, + { + "bufferView":749, + "componentType":5126, + "count":192, + "type":"VEC2" + }, + { + "bufferView":750, + "componentType":5126, + "count":192, + "type":"VEC2" + }, + { + "bufferView":751, + "componentType":5126, + "count":192, + "type":"VEC4" + }, + { + "bufferView":752, + "componentType":5123, + "count":336, + "type":"SCALAR" + }, + { + "bufferView":753, + "componentType":5126, + "count":70196, + "max":[ + 13.390467643737793, + 24.340469360351562, + 10.391003608703613 + ], + "min":[ + -12.877734184265137, + -24.355987548828125, + -10.394295692443848 + ], + "type":"VEC3" + }, + { + "bufferView":754, + "componentType":5126, + "count":70196, + "type":"VEC3" + }, + { + "bufferView":755, + "componentType":5126, + "count":70196, + "type":"VEC2" + }, + { + "bufferView":756, + "componentType":5126, + "count":70196, + "type":"VEC2" + }, + { + "bufferView":757, + "componentType":5126, + "count":70196, + "type":"VEC4" + }, + { + "bufferView":758, + "componentType":5121, + "count":70196, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":759, + "componentType":5123, + "count":70196, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":760, + "componentType":5123, + "count":70196, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":761, + "componentType":5125, + "count":133800, + "type":"SCALAR" + }, + { + "bufferView":762, + "componentType":5126, + "count":344, + "max":[ + 12.51067066192627, + 25.716644287109375, + 9.06223201751709 + ], + "min":[ + -12.655192375183105, + 21.044288635253906, + -9.120190620422363 + ], + "type":"VEC3" + }, + { + "bufferView":763, + "componentType":5126, + "count":344, + "type":"VEC3" + }, + { + "bufferView":764, + "componentType":5126, + "count":344, + "type":"VEC2" + }, + { + "bufferView":765, + "componentType":5126, + "count":344, + "type":"VEC2" + }, + { + "bufferView":766, + "componentType":5126, + "count":344, + "type":"VEC4" + }, + { + "bufferView":767, + "componentType":5121, + "count":344, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":768, + "componentType":5123, + "count":344, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":769, + "componentType":5123, + "count":344, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":770, + "componentType":5123, + "count":600, + "type":"SCALAR" + }, + { + "bufferView":771, + "componentType":5126, + "count":1016, + "max":[ + 13.359269142150879, + 13.479618072509766, + 10.045398712158203 + ], + "min":[ + -13.359930992126465, + -22.19858169555664, + -10.045409202575684 + ], + "type":"VEC3" + }, + { + "bufferView":772, + "componentType":5126, + "count":1016, + "type":"VEC3" + }, + { + "bufferView":773, + "componentType":5126, + "count":1016, + "type":"VEC2" + }, + { + "bufferView":774, + "componentType":5126, + "count":1016, + "type":"VEC2" + }, + { + "bufferView":775, + "componentType":5126, + "count":1016, + "type":"VEC4" + }, + { + "bufferView":776, + "componentType":5121, + "count":1016, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":777, + "componentType":5123, + "count":1016, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":778, + "componentType":5123, + "count":1016, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":779, + "componentType":5123, + "count":1608, + "type":"SCALAR" + }, + { + "bufferView":780, + "componentType":5126, + "count":6476, + "max":[ + 13.359269142150879, + 21.524818420410156, + 10.04539966583252 + ], + "min":[ + -13.390467643737793, + -28.66778564453125, + -10.045409202575684 + ], + "type":"VEC3" + }, + { + "bufferView":781, + "componentType":5126, + "count":6476, + "type":"VEC3" + }, + { + "bufferView":782, + "componentType":5126, + "count":6476, + "type":"VEC2" + }, + { + "bufferView":783, + "componentType":5126, + "count":6476, + "type":"VEC2" + }, + { + "bufferView":784, + "componentType":5126, + "count":6476, + "type":"VEC4" + }, + { + "bufferView":785, + "componentType":5121, + "count":6476, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":786, + "componentType":5123, + "count":6476, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":787, + "componentType":5123, + "count":6476, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":788, + "componentType":5123, + "count":10368, + "type":"SCALAR" + }, + { + "bufferView":789, + "componentType":5126, + "count":4500, + "max":[ + 8.654864311218262, + 25.406173706054688, + 4.9167585372924805 + ], + "min":[ + -4.831603050231934, + 20.860382080078125, + -8.944680213928223 + ], + "type":"VEC3" + }, + { + "bufferView":790, + "componentType":5126, + "count":4500, + "type":"VEC3" + }, + { + "bufferView":791, + "componentType":5126, + "count":4500, + "type":"VEC2" + }, + { + "bufferView":792, + "componentType":5126, + "count":4500, + "type":"VEC2" + }, + { + "bufferView":793, + "componentType":5126, + "count":4500, + "type":"VEC4" + }, + { + "bufferView":794, + "componentType":5121, + "count":4500, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":795, + "componentType":5123, + "count":4500, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":796, + "componentType":5123, + "count":4500, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":797, + "componentType":5123, + "count":8370, + "type":"SCALAR" + }, + { + "bufferView":798, + "componentType":5126, + "count":26832, + "max":[ + 12.929062843322754, + 20.948715209960938, + 9.705304145812988 + ], + "min":[ + -13.128436088562012, + -26.35538673400879, + -9.705304145812988 + ], + "type":"VEC3" + }, + { + "bufferView":799, + "componentType":5126, + "count":26832, + "type":"VEC3" + }, + { + "bufferView":800, + "componentType":5126, + "count":26832, + "type":"VEC2" + }, + { + "bufferView":801, + "componentType":5126, + "count":26832, + "type":"VEC2" + }, + { + "bufferView":802, + "componentType":5126, + "count":26832, + "type":"VEC4" + }, + { + "bufferView":803, + "componentType":5121, + "count":26832, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":804, + "componentType":5123, + "count":26832, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":805, + "componentType":5123, + "count":26832, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":806, + "componentType":5123, + "count":40248, + "type":"SCALAR" + }, + { + "bufferView":807, + "componentType":5126, + "count":10, + "max":[ + 5.3128557205200195, + 25.405235290527344, + 5.582812309265137 + ], + "min":[ + -2.5851545333862305, + 23.422996520996094, + -2.347569704055786 + ], + "type":"VEC3" + }, + { + "bufferView":808, + "componentType":5126, + "count":10, + "type":"VEC3" + }, + { + "bufferView":809, + "componentType":5126, + "count":10, + "type":"VEC2" + }, + { + "bufferView":810, + "componentType":5126, + "count":10, + "type":"VEC2" + }, + { + "bufferView":811, + "componentType":5126, + "count":10, + "type":"VEC4" + }, + { + "bufferView":812, + "componentType":5121, + "count":10, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":813, + "componentType":5123, + "count":10, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":814, + "componentType":5123, + "count":10, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":815, + "componentType":5123, + "count":18, + "type":"SCALAR" + }, + { + "bufferView":816, + "componentType":5126, + "count":480, + "max":[ + 8.37438678741455, + 23.75464630126953, + 2.0918264389038086 + ], + "min":[ + 5.328503608703613, + 21.104896545410156, + -0.8257990479469299 + ], + "type":"VEC3" + }, + { + "bufferView":817, + "componentType":5126, + "count":480, + "type":"VEC3" + }, + { + "bufferView":818, + "componentType":5126, + "count":480, + "type":"VEC2" + }, + { + "bufferView":819, + "componentType":5126, + "count":480, + "type":"VEC2" + }, + { + "bufferView":820, + "componentType":5126, + "count":480, + "type":"VEC4" + }, + { + "bufferView":821, + "componentType":5121, + "count":480, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":822, + "componentType":5123, + "count":480, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":823, + "componentType":5123, + "count":480, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":824, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":825, + "componentType":5126, + "count":107494, + "max":[ + 13.060389518737793, + 26.089866638183594, + 9.874377250671387 + ], + "min":[ + -13.281786918640137, + -26.420551300048828, + -9.87437915802002 + ], + "type":"VEC3" + }, + { + "bufferView":826, + "componentType":5126, + "count":107494, + "type":"VEC3" + }, + { + "bufferView":827, + "componentType":5126, + "count":107494, + "type":"VEC2" + }, + { + "bufferView":828, + "componentType":5126, + "count":107494, + "type":"VEC2" + }, + { + "bufferView":829, + "componentType":5126, + "count":107494, + "type":"VEC4" + }, + { + "bufferView":830, + "componentType":5121, + "count":107494, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":831, + "componentType":5123, + "count":107494, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":832, + "componentType":5123, + "count":107494, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":833, + "componentType":5125, + "count":266352, + "type":"SCALAR" + }, + { + "bufferView":834, + "componentType":5126, + "count":24919, + "max":[ + 7.158877372741699, + 28.345420837402344, + 9.336859703063965 + ], + "min":[ + -6.226744651794434, + -28.663652420043945, + -9.481419563293457 + ], + "type":"VEC3" + }, + { + "bufferView":835, + "componentType":5126, + "count":24919, + "type":"VEC3" + }, + { + "bufferView":836, + "componentType":5126, + "count":24919, + "type":"VEC2" + }, + { + "bufferView":837, + "componentType":5126, + "count":24919, + "type":"VEC2" + }, + { + "bufferView":838, + "componentType":5126, + "count":24919, + "type":"VEC4" + }, + { + "bufferView":839, + "componentType":5121, + "count":24919, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":840, + "componentType":5123, + "count":24919, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":841, + "componentType":5123, + "count":24919, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":842, + "componentType":5123, + "count":52572, + "type":"SCALAR" + }, + { + "bufferView":843, + "componentType":5126, + "count":5454, + "max":[ + 5.871689796447754, + 28.66778564453125, + 7.1194868087768555 + ], + "min":[ + -5.8296918869018555, + 20.979034423828125, + -9.179314613342285 + ], + "type":"VEC3" + }, + { + "bufferView":844, + "componentType":5126, + "count":5454, + "type":"VEC3" + }, + { + "bufferView":845, + "componentType":5126, + "count":5454, + "type":"VEC2" + }, + { + "bufferView":846, + "componentType":5126, + "count":5454, + "type":"VEC2" + }, + { + "bufferView":847, + "componentType":5126, + "count":5454, + "type":"VEC4" + }, + { + "bufferView":848, + "componentType":5121, + "count":5454, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":849, + "componentType":5123, + "count":5454, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":850, + "componentType":5123, + "count":5454, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":851, + "componentType":5123, + "count":12828, + "type":"SCALAR" + }, + { + "bufferView":852, + "componentType":5126, + "count":299, + "max":[ + 13.073613166809082, + 27.594154357910156, + 9.75971508026123 + ], + "min":[ + -13.074213981628418, + 21.116294860839844, + -9.75975513458252 + ], + "type":"VEC3" + }, + { + "bufferView":853, + "componentType":5126, + "count":299, + "type":"VEC3" + }, + { + "bufferView":854, + "componentType":5126, + "count":299, + "type":"VEC2" + }, + { + "bufferView":855, + "componentType":5126, + "count":299, + "type":"VEC2" + }, + { + "bufferView":856, + "componentType":5126, + "count":299, + "type":"VEC4" + }, + { + "bufferView":857, + "componentType":5121, + "count":299, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":858, + "componentType":5123, + "count":299, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":859, + "componentType":5123, + "count":299, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":860, + "componentType":5123, + "count":888, + "type":"SCALAR" + }, + { + "bufferView":861, + "componentType":5126, + "count":6480, + "max":[ + 8.33626651763916, + 19.663612365722656, + 11.405800819396973 + ], + "min":[ + -4.187731742858887, + -26.405385971069336, + -11.405800819396973 + ], + "type":"VEC3" + }, + { + "bufferView":862, + "componentType":5126, + "count":6480, + "type":"VEC3" + }, + { + "bufferView":863, + "componentType":5126, + "count":6480, + "type":"VEC2" + }, + { + "bufferView":864, + "componentType":5126, + "count":6480, + "type":"VEC2" + }, + { + "bufferView":865, + "componentType":5126, + "count":6480, + "type":"VEC4" + }, + { + "bufferView":866, + "componentType":5121, + "count":6480, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":867, + "componentType":5123, + "count":6480, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":868, + "componentType":5123, + "count":6480, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":869, + "componentType":5123, + "count":10608, + "type":"SCALAR" + }, + { + "bufferView":870, + "componentType":5126, + "count":137, + "max":[ + 8.3120698928833, + 26.788253784179688, + 2.0867795944213867 + ], + "min":[ + 5.361279487609863, + 21.040679931640625, + -0.8640110492706299 + ], + "type":"VEC3" + }, + { + "bufferView":871, + "componentType":5126, + "count":137, + "type":"VEC3" + }, + { + "bufferView":872, + "componentType":5126, + "count":137, + "type":"VEC2" + }, + { + "bufferView":873, + "componentType":5126, + "count":137, + "type":"VEC2" + }, + { + "bufferView":874, + "componentType":5126, + "count":137, + "type":"VEC4" + }, + { + "bufferView":875, + "componentType":5121, + "count":137, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":876, + "componentType":5123, + "count":137, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":877, + "componentType":5123, + "count":137, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":878, + "componentType":5123, + "count":432, + "type":"SCALAR" + }, + { + "bufferView":879, + "componentType":5126, + "count":3976, + "max":[ + 0.636016845703125, + 13.523999214172363, + 0.5199896097183228 + ], + "min":[ + -0.636016845703125, + -13.523999214172363, + -0.5199885368347168 + ], + "type":"VEC3" + }, + { + "bufferView":880, + "componentType":5126, + "count":3976, + "type":"VEC3" + }, + { + "bufferView":881, + "componentType":5126, + "count":3976, + "type":"VEC2" + }, + { + "bufferView":882, + "componentType":5126, + "count":3976, + "type":"VEC2" + }, + { + "bufferView":883, + "componentType":5126, + "count":3976, + "type":"VEC4" + }, + { + "bufferView":884, + "componentType":5123, + "count":10512, + "type":"SCALAR" + }, + { + "bufferView":885, + "componentType":5126, + "count":36, + "max":[ + 0.13654708862304688, + 1.5638377666473389, + 0.11419684439897537 + ], + "min":[ + -0.15256881713867188, + -1.5196597576141357, + 0.05972283333539963 + ], + "type":"VEC3" + }, + { + "bufferView":886, + "componentType":5126, + "count":36, + "type":"VEC3" + }, + { + "bufferView":887, + "componentType":5126, + "count":36, + "type":"VEC2" + }, + { + "bufferView":888, + "componentType":5126, + "count":36, + "type":"VEC2" + }, + { + "bufferView":889, + "componentType":5126, + "count":36, + "type":"VEC4" + }, + { + "bufferView":890, + "componentType":5123, + "count":54, + "type":"SCALAR" + }, + { + "bufferView":891, + "componentType":5126, + "count":539, + "max":[ + 1.0932960510253906, + 1.888920545578003, + 0.16867057979106903 + ], + "min":[ + -1.0932960510253906, + -1.7477473020553589, + -0.10647590458393097 + ], + "type":"VEC3" + }, + { + "bufferView":892, + "componentType":5126, + "count":539, + "type":"VEC3" + }, + { + "bufferView":893, + "componentType":5126, + "count":539, + "type":"VEC2" + }, + { + "bufferView":894, + "componentType":5126, + "count":539, + "type":"VEC2" + }, + { + "bufferView":895, + "componentType":5126, + "count":539, + "type":"VEC4" + }, + { + "bufferView":896, + "componentType":5123, + "count":1020, + "type":"SCALAR" + }, + { + "bufferView":897, + "componentType":5126, + "count":146, + "max":[ + 0.5263252258300781, + 2.0766208171844482, + 0.07292167842388153 + ], + "min":[ + -0.5266151428222656, + 1.7368199825286865, + -0.12896737456321716 + ], + "type":"VEC3" + }, + { + "bufferView":898, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":899, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":900, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":901, + "componentType":5126, + "count":146, + "type":"VEC4" + }, + { + "bufferView":902, + "componentType":5123, + "count":276, + "type":"SCALAR" + }, + { + "bufferView":903, + "componentType":5126, + "count":584, + "max":[ + 1.0932960510253906, + 1.8142716884613037, + 0.16867074370384216 + ], + "min":[ + -1.0932960510253906, + -2.0766210556030273, + -0.16867057979106903 + ], + "type":"VEC3" + }, + { + "bufferView":904, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":905, + "componentType":5126, + "count":584, + "type":"VEC2" + }, + { + "bufferView":906, + "componentType":5126, + "count":584, + "type":"VEC2" + }, + { + "bufferView":907, + "componentType":5126, + "count":584, + "type":"VEC4" + }, + { + "bufferView":908, + "componentType":5123, + "count":1152, + "type":"SCALAR" + }, + { + "bufferView":909, + "componentType":5126, + "count":202, + "max":[ + 0.5604896545410156, + 1.888920545578003, + 0.16867057979106903 + ], + "min":[ + -0.5695075988769531, + -1.5365970134735107, + -0.16867072880268097 + ], + "type":"VEC3" + }, + { + "bufferView":910, + "componentType":5126, + "count":202, + "type":"VEC3" + }, + { + "bufferView":911, + "componentType":5126, + "count":202, + "type":"VEC2" + }, + { + "bufferView":912, + "componentType":5126, + "count":202, + "type":"VEC2" + }, + { + "bufferView":913, + "componentType":5126, + "count":202, + "type":"VEC4" + }, + { + "bufferView":914, + "componentType":5123, + "count":366, + "type":"SCALAR" + }, + { + "bufferView":915, + "componentType":5126, + "count":6, + "max":[ + 0.13654708862304688, + 1.5638377666473389, + 0.11419684439897537 + ], + "min":[ + -0.15256881713867188, + -1.5039126873016357, + 0.11419671028852463 + ], + "type":"VEC3" + }, + { + "bufferView":916, + "componentType":5126, + "count":6, + "type":"VEC3" + }, + { + "bufferView":917, + "componentType":5126, + "count":6, + "type":"VEC2" + }, + { + "bufferView":918, + "componentType":5126, + "count":6, + "type":"VEC2" + }, + { + "bufferView":919, + "componentType":5126, + "count":6, + "type":"VEC4" + }, + { + "bufferView":920, + "componentType":5123, + "count":12, + "type":"SCALAR" + }, + { + "bufferView":921, + "componentType":5126, + "count":1200, + "max":[ + 7.710792541503906, + 6.663498401641846, + 3.3551557064056396 + ], + "min":[ + 1.2270584106445312, + 5.633006572723389, + -3.3140642642974854 + ], + "type":"VEC3" + }, + { + "bufferView":922, + "componentType":5126, + "count":1200, + "type":"VEC3" + }, + { + "bufferView":923, + "componentType":5126, + "count":1200, + "type":"VEC2" + }, + { + "bufferView":924, + "componentType":5126, + "count":1200, + "type":"VEC2" + }, + { + "bufferView":925, + "componentType":5126, + "count":1200, + "type":"VEC4" + }, + { + "bufferView":926, + "componentType":5123, + "count":2622, + "type":"SCALAR" + }, + { + "bufferView":927, + "componentType":5126, + "count":128729, + "max":[ + 14.221824645996094, + 6.540162563323975, + 7.222572326660156 + ], + "min":[ + -14.221824645996094, + -6.6634979248046875, + -7.306526184082031 + ], + "type":"VEC3" + }, + { + "bufferView":928, + "componentType":5126, + "count":128729, + "type":"VEC3" + }, + { + "bufferView":929, + "componentType":5126, + "count":128729, + "type":"VEC2" + }, + { + "bufferView":930, + "componentType":5126, + "count":128729, + "type":"VEC2" + }, + { + "bufferView":931, + "componentType":5126, + "count":128729, + "type":"VEC4" + }, + { + "bufferView":932, + "componentType":5125, + "count":258006, + "type":"SCALAR" + }, + { + "bufferView":933, + "componentType":5126, + "count":4928, + "max":[ + 12.209266662597656, + 4.21762752532959, + 3.5889666080474854 + ], + "min":[ + -13.717071533203125, + -6.474306583404541, + -6.719627380371094 + ], + "type":"VEC3" + }, + { + "bufferView":934, + "componentType":5126, + "count":4928, + "type":"VEC3" + }, + { + "bufferView":935, + "componentType":5126, + "count":4928, + "type":"VEC2" + }, + { + "bufferView":936, + "componentType":5126, + "count":4928, + "type":"VEC2" + }, + { + "bufferView":937, + "componentType":5126, + "count":4928, + "type":"VEC4" + }, + { + "bufferView":938, + "componentType":5123, + "count":7440, + "type":"SCALAR" + }, + { + "bufferView":939, + "componentType":5126, + "count":17868, + "max":[ + 10.987571716308594, + 5.289388179779053, + 6.069450855255127 + ], + "min":[ + 2.9838333129882812, + -5.744389533996582, + -1.8814165592193604 + ], + "type":"VEC3" + }, + { + "bufferView":940, + "componentType":5126, + "count":17868, + "type":"VEC3" + }, + { + "bufferView":941, + "componentType":5126, + "count":17868, + "type":"VEC2" + }, + { + "bufferView":942, + "componentType":5126, + "count":17868, + "type":"VEC2" + }, + { + "bufferView":943, + "componentType":5126, + "count":17868, + "type":"VEC4" + }, + { + "bufferView":944, + "componentType":5123, + "count":27144, + "type":"SCALAR" + }, + { + "bufferView":945, + "componentType":5126, + "count":457, + "max":[ + 12.472450256347656, + 5.104012489318848, + 3.8280105590820312 + ], + "min":[ + -13.909751892089844, + -6.581155300140381, + -6.639610290527344 + ], + "type":"VEC3" + }, + { + "bufferView":946, + "componentType":5126, + "count":457, + "type":"VEC3" + }, + { + "bufferView":947, + "componentType":5126, + "count":457, + "type":"VEC2" + }, + { + "bufferView":948, + "componentType":5126, + "count":457, + "type":"VEC2" + }, + { + "bufferView":949, + "componentType":5126, + "count":457, + "type":"VEC4" + }, + { + "bufferView":950, + "componentType":5123, + "count":990, + "type":"SCALAR" + }, + { + "bufferView":951, + "componentType":5126, + "count":10, + "max":[ + -10.74737548828125, + 2.5990116596221924, + 2.960624933242798 + ], + "min":[ + -12.448638916015625, + -4.899175643920898, + -4.851661682128906 + ], + "type":"VEC3" + }, + { + "bufferView":952, + "componentType":5126, + "count":10, + "type":"VEC3" + }, + { + "bufferView":953, + "componentType":5126, + "count":10, + "type":"VEC2" + }, + { + "bufferView":954, + "componentType":5126, + "count":10, + "type":"VEC2" + }, + { + "bufferView":955, + "componentType":5126, + "count":10, + "type":"VEC4" + }, + { + "bufferView":956, + "componentType":5123, + "count":18, + "type":"SCALAR" + }, + { + "bufferView":957, + "componentType":5126, + "count":856, + "max":[ + 0.08971405029296875, + 1.4201912879943848, + -0.646644651889801 + ], + "min":[ + -9.771873474121094, + 1.0595992803573608, + -1.6823807954788208 + ], + "type":"VEC3" + }, + { + "bufferView":958, + "componentType":5126, + "count":856, + "type":"VEC3" + }, + { + "bufferView":959, + "componentType":5126, + "count":856, + "type":"VEC2" + }, + { + "bufferView":960, + "componentType":5126, + "count":856, + "type":"VEC2" + }, + { + "bufferView":961, + "componentType":5126, + "count":856, + "type":"VEC4" + }, + { + "bufferView":962, + "componentType":5123, + "count":1920, + "type":"SCALAR" + }, + { + "bufferView":963, + "componentType":5126, + "count":4373, + "max":[ + 13.587242126464844, + 1.4905678033828735, + 3.622764825820923 + ], + "min":[ + -8.374763488769531, + -5.866607666015625, + -1.0210038423538208 + ], + "type":"VEC3" + }, + { + "bufferView":964, + "componentType":5126, + "count":4373, + "type":"VEC3" + }, + { + "bufferView":965, + "componentType":5126, + "count":4373, + "type":"VEC2" + }, + { + "bufferView":966, + "componentType":5126, + "count":4373, + "type":"VEC2" + }, + { + "bufferView":967, + "componentType":5126, + "count":4373, + "type":"VEC4" + }, + { + "bufferView":968, + "componentType":5123, + "count":8076, + "type":"SCALAR" + }, + { + "bufferView":969, + "componentType":5126, + "count":6719, + "max":[ + 12.229286193847656, + 4.237567901611328, + 3.6290056705474854 + ], + "min":[ + -13.787063598632812, + -6.544344425201416, + -6.779640197753906 + ], + "type":"VEC3" + }, + { + "bufferView":970, + "componentType":5126, + "count":6719, + "type":"VEC3" + }, + { + "bufferView":971, + "componentType":5126, + "count":6719, + "type":"VEC2" + }, + { + "bufferView":972, + "componentType":5126, + "count":6719, + "type":"VEC2" + }, + { + "bufferView":973, + "componentType":5126, + "count":6719, + "type":"VEC4" + }, + { + "bufferView":974, + "componentType":5123, + "count":14394, + "type":"SCALAR" + }, + { + "bufferView":975, + "componentType":5126, + "count":8073, + "max":[ + 13.946418762207031, + 6.613509654998779, + 7.3064961433410645 + ], + "min":[ + -13.915115356445312, + -6.6634979248046875, + -7.279640197753906 + ], + "type":"VEC3" + }, + { + "bufferView":976, + "componentType":5126, + "count":8073, + "type":"VEC3" + }, + { + "bufferView":977, + "componentType":5126, + "count":8073, + "type":"VEC2" + }, + { + "bufferView":978, + "componentType":5126, + "count":8073, + "type":"VEC2" + }, + { + "bufferView":979, + "componentType":5126, + "count":8073, + "type":"VEC4" + }, + { + "bufferView":980, + "componentType":5123, + "count":20094, + "type":"SCALAR" + }, + { + "bufferView":981, + "componentType":5126, + "count":1929, + "max":[ + 12.592475891113281, + 5.1040520668029785, + 7.3065266609191895 + ], + "min":[ + -13.78704833984375, + -6.581116199493408, + -7.2584147453308105 + ], + "type":"VEC3" + }, + { + "bufferView":982, + "componentType":5126, + "count":1929, + "type":"VEC3" + }, + { + "bufferView":983, + "componentType":5126, + "count":1929, + "type":"VEC2" + }, + { + "bufferView":984, + "componentType":5126, + "count":1929, + "type":"VEC2" + }, + { + "bufferView":985, + "componentType":5126, + "count":1929, + "type":"VEC4" + }, + { + "bufferView":986, + "componentType":5123, + "count":5436, + "type":"SCALAR" + }, + { + "bufferView":987, + "componentType":5126, + "count":4, + "max":[ + 14.195640563964844, + -2.3429086208343506, + -5.159217834472656 + ], + "min":[ + 13.683357238769531, + -3.9889941215515137, + -5.159217834472656 + ], + "type":"VEC3" + }, + { + "bufferView":988, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":989, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":990, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":991, + "componentType":5126, + "count":4, + "type":"VEC4" + }, + { + "bufferView":992, + "componentType":5123, + "count":6, + "type":"SCALAR" + }, + { + "bufferView":993, + "componentType":5126, + "count":4, + "max":[ + 14.195640563964844, + -2.3429086208343506, + -5.203819274902344 + ], + "min":[ + 13.683357238769531, + -3.9889941215515137, + -5.203819274902344 + ], + "type":"VEC3" + }, + { + "bufferView":994, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":995, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":996, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":997, + "componentType":5126, + "count":4, + "type":"VEC4" + }, + { + "bufferView":998, + "componentType":5123, + "count":6, + "type":"SCALAR" + }, + { + "bufferView":999, + "componentType":5126, + "count":20, + "max":[ + 13.664375305175781, + 0.13844171166419983, + 3.4737627506256104 + ], + "min":[ + 13.103279113769531, + -4.683406829833984, + 3.4737625122070312 + ], + "type":"VEC3" + }, + { + "bufferView":1000, + "componentType":5126, + "count":20, + "type":"VEC3" + }, + { + "bufferView":1001, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":1002, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":1003, + "componentType":5126, + "count":20, + "type":"VEC4" + }, + { + "bufferView":1004, + "componentType":5123, + "count":30, + "type":"SCALAR" + }, + { + "bufferView":1005, + "componentType":5126, + "count":9089, + "max":[ + 15.49399185180664, + 3.5546252727508545, + 7.9807891845703125 + ], + "min":[ + -15.874431610107422, + -3.4857544898986816, + -7.60076904296875 + ], + "type":"VEC3" + }, + { + "bufferView":1006, + "componentType":5126, + "count":9089, + "type":"VEC3" + }, + { + "bufferView":1007, + "componentType":5126, + "count":9089, + "type":"VEC2" + }, + { + "bufferView":1008, + "componentType":5126, + "count":9089, + "type":"VEC2" + }, + { + "bufferView":1009, + "componentType":5126, + "count":9089, + "type":"VEC4" + }, + { + "bufferView":1010, + "componentType":5123, + "count":28410, + "type":"SCALAR" + }, + { + "bufferView":1011, + "componentType":5126, + "count":72, + "max":[ + -14.085796356201172, + -0.5045048594474792, + 7.7245635986328125 + ], + "min":[ + -14.191608428955078, + -1.0474048852920532, + 7.329376220703125 + ], + "type":"VEC3" + }, + { + "bufferView":1012, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":1013, + "componentType":5126, + "count":72, + "type":"VEC2" + }, + { + "bufferView":1014, + "componentType":5126, + "count":72, + "type":"VEC2" + }, + { + "bufferView":1015, + "componentType":5126, + "count":72, + "type":"VEC4" + }, + { + "bufferView":1016, + "componentType":5123, + "count":180, + "type":"SCALAR" + }, + { + "bufferView":1017, + "componentType":5126, + "count":4461, + "max":[ + -12.500377655029297, + 3.5445034503936768, + 7.6624755859375 + ], + "min":[ + -15.893192291259766, + 2.6254818439483643, + 6.663604736328125 + ], + "type":"VEC3" + }, + { + "bufferView":1018, + "componentType":5126, + "count":4461, + "type":"VEC3" + }, + { + "bufferView":1019, + "componentType":5126, + "count":4461, + "type":"VEC2" + }, + { + "bufferView":1020, + "componentType":5126, + "count":4461, + "type":"VEC2" + }, + { + "bufferView":1021, + "componentType":5126, + "count":4461, + "type":"VEC4" + }, + { + "bufferView":1022, + "componentType":5123, + "count":12576, + "type":"SCALAR" + }, + { + "bufferView":1023, + "componentType":5126, + "count":44, + "max":[ + 14.768268585205078, + -0.0681423470377922, + 7.2118377685546875 + ], + "min":[ + 13.740970611572266, + -3.0574212074279785, + 6.985076904296875 + ], + "type":"VEC3" + }, + { + "bufferView":1024, + "componentType":5126, + "count":44, + "type":"VEC3" + }, + { + "bufferView":1025, + "componentType":5126, + "count":44, + "type":"VEC2" + }, + { + "bufferView":1026, + "componentType":5126, + "count":44, + "type":"VEC2" + }, + { + "bufferView":1027, + "componentType":5126, + "count":44, + "type":"VEC4" + }, + { + "bufferView":1028, + "componentType":5123, + "count":72, + "type":"SCALAR" + }, + { + "bufferView":1029, + "componentType":5126, + "count":416, + "max":[ + 15.47305679321289, + -2.807260751724243, + 7.9598541259765625 + ], + "min":[ + -12.896610260009766, + -2.8913185596466064, + -7.579864501953125 + ], + "type":"VEC3" + }, + { + "bufferView":1030, + "componentType":5126, + "count":416, + "type":"VEC3" + }, + { + "bufferView":1031, + "componentType":5126, + "count":416, + "type":"VEC2" + }, + { + "bufferView":1032, + "componentType":5126, + "count":416, + "type":"VEC2" + }, + { + "bufferView":1033, + "componentType":5126, + "count":416, + "type":"VEC4" + }, + { + "bufferView":1034, + "componentType":5123, + "count":1152, + "type":"SCALAR" + }, + { + "bufferView":1035, + "componentType":5126, + "count":20, + "max":[ + 15.893192291259766, + -3.4846229553222656, + 8.225006103515625 + ], + "min":[ + -15.306819915771484, + -3.554624557495117, + -8.225006103515625 + ], + "type":"VEC3" + }, + { + "bufferView":1036, + "componentType":5126, + "count":20, + "type":"VEC3" + }, + { + "bufferView":1037, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":1038, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":1039, + "componentType":5126, + "count":20, + "type":"VEC4" + }, + { + "bufferView":1040, + "componentType":5123, + "count":30, + "type":"SCALAR" + }, + { + "bufferView":1041, + "componentType":5126, + "count":1174, + "max":[ + 15.49850845336914, + 0.5886748433113098, + 7.4413604736328125 + ], + "min":[ + 13.007923126220703, + -3.5278055667877197, + 6.7586822509765625 + ], + "type":"VEC3" + }, + { + "bufferView":1042, + "componentType":5126, + "count":1174, + "type":"VEC3" + }, + { + "bufferView":1043, + "componentType":5126, + "count":1174, + "type":"VEC2" + }, + { + "bufferView":1044, + "componentType":5126, + "count":1174, + "type":"VEC2" + }, + { + "bufferView":1045, + "componentType":5126, + "count":1174, + "type":"VEC4" + }, + { + "bufferView":1046, + "componentType":5123, + "count":2580, + "type":"SCALAR" + }, + { + "bufferView":1047, + "componentType":5126, + "count":296, + "max":[ + 40.19971466064453, + 0.08267346024513245, + 41.522865295410156 + ], + "min":[ + -40.3519172668457, + -0.658137321472168, + -41.884788513183594 + ], + "type":"VEC3" + }, + { + "bufferView":1048, + "componentType":5126, + "count":296, + "type":"VEC3" + }, + { + "bufferView":1049, + "componentType":5126, + "count":296, + "type":"VEC2" + }, + { + "bufferView":1050, + "componentType":5126, + "count":296, + "type":"VEC2" + }, + { + "bufferView":1051, + "componentType":5126, + "count":296, + "type":"VEC4" + }, + { + "bufferView":1052, + "componentType":5121, + "count":296, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1053, + "componentType":5123, + "count":296, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1054, + "componentType":5123, + "count":296, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1055, + "componentType":5123, + "count":864, + "type":"SCALAR" + }, + { + "bufferView":1056, + "componentType":5126, + "count":80, + "max":[ + 39.67840576171875, + 0.08267346024513245, + 41.001564025878906 + ], + "min":[ + -39.830135345458984, + -0.05800908803939819, + -41.363014221191406 + ], + "type":"VEC3" + }, + { + "bufferView":1057, + "componentType":5126, + "count":80, + "type":"VEC3" + }, + { + "bufferView":1058, + "componentType":5126, + "count":80, + "type":"VEC2" + }, + { + "bufferView":1059, + "componentType":5126, + "count":80, + "type":"VEC2" + }, + { + "bufferView":1060, + "componentType":5126, + "count":80, + "type":"VEC4" + }, + { + "bufferView":1061, + "componentType":5121, + "count":80, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1062, + "componentType":5123, + "count":80, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1063, + "componentType":5123, + "count":80, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1064, + "componentType":5123, + "count":252, + "type":"SCALAR" + }, + { + "bufferView":1065, + "componentType":5126, + "count":14962, + "max":[ + 5.157275676727295, + 12.458122253417969, + 6.993804454803467 + ], + "min":[ + -4.50618839263916, + 11.080080032348633, + -4.683014869689941 + ], + "type":"VEC3" + }, + { + "bufferView":1066, + "componentType":5126, + "count":14962, + "type":"VEC3" + }, + { + "bufferView":1067, + "componentType":5126, + "count":14962, + "type":"VEC2" + }, + { + "bufferView":1068, + "componentType":5126, + "count":14962, + "type":"VEC2" + }, + { + "bufferView":1069, + "componentType":5126, + "count":14962, + "type":"VEC4" + }, + { + "bufferView":1070, + "componentType":5121, + "count":14962, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1071, + "componentType":5123, + "count":14962, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1072, + "componentType":5123, + "count":14962, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1073, + "componentType":5123, + "count":39216, + "type":"SCALAR" + }, + { + "bufferView":1074, + "componentType":5126, + "count":64, + "max":[ + 5.738987445831299, + 13.520294189453125, + -3.447051763534546 + ], + "min":[ + 1.3861016035079956, + 11.339096069335938, + -7.752197265625 + ], + "type":"VEC3" + }, + { + "bufferView":1075, + "componentType":5126, + "count":64, + "type":"VEC3" + }, + { + "bufferView":1076, + "componentType":5126, + "count":64, + "type":"VEC2" + }, + { + "bufferView":1077, + "componentType":5126, + "count":64, + "type":"VEC2" + }, + { + "bufferView":1078, + "componentType":5126, + "count":64, + "type":"VEC4" + }, + { + "bufferView":1079, + "componentType":5121, + "count":64, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1080, + "componentType":5123, + "count":64, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1081, + "componentType":5123, + "count":64, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1082, + "componentType":5123, + "count":102, + "type":"SCALAR" + }, + { + "bufferView":1083, + "componentType":5126, + "count":8560, + "max":[ + 6.390784740447998, + 11.298393249511719, + 8.804749488830566 + ], + "min":[ + -6.390784740447998, + -16.275711059570312, + -8.804749488830566 + ], + "type":"VEC3" + }, + { + "bufferView":1084, + "componentType":5126, + "count":8560, + "type":"VEC3" + }, + { + "bufferView":1085, + "componentType":5126, + "count":8560, + "type":"VEC2" + }, + { + "bufferView":1086, + "componentType":5126, + "count":8560, + "type":"VEC2" + }, + { + "bufferView":1087, + "componentType":5126, + "count":8560, + "type":"VEC4" + }, + { + "bufferView":1088, + "componentType":5121, + "count":8560, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1089, + "componentType":5123, + "count":8560, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1090, + "componentType":5123, + "count":8560, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1091, + "componentType":5123, + "count":17760, + "type":"SCALAR" + }, + { + "bufferView":1092, + "componentType":5126, + "count":1739, + "max":[ + 5.628296375274658, + 13.107063293457031, + 8.188840866088867 + ], + "min":[ + -5.789669513702393, + 10.404273986816406, + -1.9985657930374146 + ], + "type":"VEC3" + }, + { + "bufferView":1093, + "componentType":5126, + "count":1739, + "type":"VEC3" + }, + { + "bufferView":1094, + "componentType":5126, + "count":1739, + "type":"VEC2" + }, + { + "bufferView":1095, + "componentType":5126, + "count":1739, + "type":"VEC2" + }, + { + "bufferView":1096, + "componentType":5126, + "count":1739, + "type":"VEC4" + }, + { + "bufferView":1097, + "componentType":5121, + "count":1739, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1098, + "componentType":5123, + "count":1739, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1099, + "componentType":5123, + "count":1739, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1100, + "componentType":5123, + "count":3108, + "type":"SCALAR" + }, + { + "bufferView":1101, + "componentType":5126, + "count":1104, + "max":[ + 6.386334419250488, + -17.84809112548828, + 8.800477027893066 + ], + "min":[ + -6.277720928192139, + -20.7928466796875, + -8.691588401794434 + ], + "type":"VEC3" + }, + { + "bufferView":1102, + "componentType":5126, + "count":1104, + "type":"VEC3" + }, + { + "bufferView":1103, + "componentType":5126, + "count":1104, + "type":"VEC2" + }, + { + "bufferView":1104, + "componentType":5126, + "count":1104, + "type":"VEC2" + }, + { + "bufferView":1105, + "componentType":5126, + "count":1104, + "type":"VEC4" + }, + { + "bufferView":1106, + "componentType":5121, + "count":1104, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1107, + "componentType":5123, + "count":1104, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1108, + "componentType":5123, + "count":1104, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1109, + "componentType":5123, + "count":1656, + "type":"SCALAR" + }, + { + "bufferView":1110, + "componentType":5126, + "count":42, + "max":[ + 4.477051258087158, + 13.228767395019531, + -3.37164306640625 + ], + "min":[ + 4.108845233917236, + 13.110649108886719, + -3.413421630859375 + ], + "type":"VEC3" + }, + { + "bufferView":1111, + "componentType":5126, + "count":42, + "type":"VEC3" + }, + { + "bufferView":1112, + "componentType":5126, + "count":42, + "type":"VEC2" + }, + { + "bufferView":1113, + "componentType":5126, + "count":42, + "type":"VEC2" + }, + { + "bufferView":1114, + "componentType":5126, + "count":42, + "type":"VEC4" + }, + { + "bufferView":1115, + "componentType":5121, + "count":42, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1116, + "componentType":5123, + "count":42, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1117, + "componentType":5123, + "count":42, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1118, + "componentType":5123, + "count":120, + "type":"SCALAR" + }, + { + "bufferView":1119, + "componentType":5126, + "count":5480, + "max":[ + 6.355622291564941, + 11.248382568359375, + 8.769623756408691 + ], + "min":[ + -6.355622291564941, + -16.225711822509766, + -8.769623756408691 + ], + "type":"VEC3" + }, + { + "bufferView":1120, + "componentType":5126, + "count":5480, + "type":"VEC3" + }, + { + "bufferView":1121, + "componentType":5126, + "count":5480, + "type":"VEC2" + }, + { + "bufferView":1122, + "componentType":5126, + "count":5480, + "type":"VEC2" + }, + { + "bufferView":1123, + "componentType":5126, + "count":5480, + "type":"VEC4" + }, + { + "bufferView":1124, + "componentType":5121, + "count":5480, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1125, + "componentType":5123, + "count":5480, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1126, + "componentType":5123, + "count":5480, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1127, + "componentType":5123, + "count":8520, + "type":"SCALAR" + }, + { + "bufferView":1128, + "componentType":5126, + "count":1853, + "max":[ + 6.409512519836426, + 20.842849731445312, + 8.824006080627441 + ], + "min":[ + -6.305537700653076, + -20.842849731445312, + -8.719511985778809 + ], + "type":"VEC3" + }, + { + "bufferView":1129, + "componentType":5126, + "count":1853, + "type":"VEC3" + }, + { + "bufferView":1130, + "componentType":5126, + "count":1853, + "type":"VEC2" + }, + { + "bufferView":1131, + "componentType":5126, + "count":1853, + "type":"VEC2" + }, + { + "bufferView":1132, + "componentType":5126, + "count":1853, + "type":"VEC4" + }, + { + "bufferView":1133, + "componentType":5121, + "count":1853, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1134, + "componentType":5123, + "count":1853, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1135, + "componentType":5123, + "count":1853, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1136, + "componentType":5123, + "count":4452, + "type":"SCALAR" + }, + { + "bufferView":1137, + "componentType":5126, + "count":172, + "max":[ + 5.456364154815674, + 20.52033233642578, + -3.56982421875 + ], + "min":[ + 3.8166277408599854, + 11.338874816894531, + -7.505096435546875 + ], + "type":"VEC3" + }, + { + "bufferView":1138, + "componentType":5126, + "count":172, + "type":"VEC3" + }, + { + "bufferView":1139, + "componentType":5126, + "count":172, + "type":"VEC2" + }, + { + "bufferView":1140, + "componentType":5126, + "count":172, + "type":"VEC2" + }, + { + "bufferView":1141, + "componentType":5126, + "count":172, + "type":"VEC4" + }, + { + "bufferView":1142, + "componentType":5121, + "count":172, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1143, + "componentType":5123, + "count":172, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1144, + "componentType":5123, + "count":172, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1145, + "componentType":5123, + "count":270, + "type":"SCALAR" + }, + { + "bufferView":1146, + "componentType":5126, + "count":516, + "max":[ + 5.867355823516846, + 20.103134155273438, + -3.318694829940796 + ], + "min":[ + 1.2577329874038696, + 13.520286560058594, + -7.880584716796875 + ], + "type":"VEC3" + }, + { + "bufferView":1147, + "componentType":5126, + "count":516, + "type":"VEC3" + }, + { + "bufferView":1148, + "componentType":5126, + "count":516, + "type":"VEC2" + }, + { + "bufferView":1149, + "componentType":5126, + "count":516, + "type":"VEC2" + }, + { + "bufferView":1150, + "componentType":5126, + "count":516, + "type":"VEC4" + }, + { + "bufferView":1151, + "componentType":5121, + "count":516, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1152, + "componentType":5123, + "count":516, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1153, + "componentType":5123, + "count":516, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1154, + "componentType":5123, + "count":900, + "type":"SCALAR" + }, + { + "bufferView":1155, + "componentType":5126, + "count":34, + "max":[ + 6.254162788391113, + 13.285392761230469, + 8.671751976013184 + ], + "min":[ + -6.275326728820801, + 11.352638244628906, + -8.650025367736816 + ], + "type":"VEC3" + }, + { + "bufferView":1156, + "componentType":5126, + "count":34, + "type":"VEC3" + }, + { + "bufferView":1157, + "componentType":5126, + "count":34, + "type":"VEC2" + }, + { + "bufferView":1158, + "componentType":5126, + "count":34, + "type":"VEC2" + }, + { + "bufferView":1159, + "componentType":5126, + "count":34, + "type":"VEC4" + }, + { + "bufferView":1160, + "componentType":5121, + "count":34, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1161, + "componentType":5123, + "count":34, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1162, + "componentType":5123, + "count":34, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1163, + "componentType":5123, + "count":102, + "type":"SCALAR" + }, + { + "bufferView":1164, + "componentType":5126, + "count":4615, + "max":[ + 6.529923439025879, + 13.24169921875, + 8.943909645080566 + ], + "min":[ + -6.529923439025879, + -20.842849731445312, + -8.943909645080566 + ], + "type":"VEC3" + }, + { + "bufferView":1165, + "componentType":5126, + "count":4615, + "type":"VEC3" + }, + { + "bufferView":1166, + "componentType":5126, + "count":4615, + "type":"VEC2" + }, + { + "bufferView":1167, + "componentType":5126, + "count":4615, + "type":"VEC2" + }, + { + "bufferView":1168, + "componentType":5126, + "count":4615, + "type":"VEC4" + }, + { + "bufferView":1169, + "componentType":5121, + "count":4615, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1170, + "componentType":5123, + "count":4615, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1171, + "componentType":5123, + "count":4615, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1172, + "componentType":5123, + "count":11178, + "type":"SCALAR" + }, + { + "bufferView":1173, + "componentType":5126, + "count":14962, + "max":[ + 5.157275676727295, + 12.458122253417969, + 6.993804454803467 + ], + "min":[ + -4.50618839263916, + 11.080080032348633, + -4.683014869689941 + ], + "type":"VEC3" + }, + { + "bufferView":1174, + "componentType":5126, + "count":14962, + "type":"VEC3" + }, + { + "bufferView":1175, + "componentType":5126, + "count":14962, + "type":"VEC2" + }, + { + "bufferView":1176, + "componentType":5126, + "count":14962, + "type":"VEC2" + }, + { + "bufferView":1177, + "componentType":5126, + "count":14962, + "type":"VEC4" + }, + { + "bufferView":1178, + "componentType":5121, + "count":14962, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1179, + "componentType":5123, + "count":14962, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1180, + "componentType":5123, + "count":14962, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1181, + "componentType":5126, + "count":64, + "max":[ + 5.738987445831299, + 13.520294189453125, + -3.447051763534546 + ], + "min":[ + 1.3861016035079956, + 11.339096069335938, + -7.752197265625 + ], + "type":"VEC3" + }, + { + "bufferView":1182, + "componentType":5126, + "count":64, + "type":"VEC3" + }, + { + "bufferView":1183, + "componentType":5126, + "count":64, + "type":"VEC2" + }, + { + "bufferView":1184, + "componentType":5126, + "count":64, + "type":"VEC2" + }, + { + "bufferView":1185, + "componentType":5126, + "count":64, + "type":"VEC4" + }, + { + "bufferView":1186, + "componentType":5121, + "count":64, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1187, + "componentType":5123, + "count":64, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1188, + "componentType":5123, + "count":64, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1189, + "componentType":5126, + "count":8560, + "max":[ + 6.390784740447998, + 11.298393249511719, + 8.804749488830566 + ], + "min":[ + -6.390784740447998, + -16.275711059570312, + -8.804749488830566 + ], + "type":"VEC3" + }, + { + "bufferView":1190, + "componentType":5126, + "count":8560, + "type":"VEC3" + }, + { + "bufferView":1191, + "componentType":5126, + "count":8560, + "type":"VEC2" + }, + { + "bufferView":1192, + "componentType":5126, + "count":8560, + "type":"VEC2" + }, + { + "bufferView":1193, + "componentType":5126, + "count":8560, + "type":"VEC4" + }, + { + "bufferView":1194, + "componentType":5121, + "count":8560, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1195, + "componentType":5123, + "count":8560, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1196, + "componentType":5123, + "count":8560, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1197, + "componentType":5126, + "count":1739, + "max":[ + 5.628296375274658, + 13.107063293457031, + 8.188840866088867 + ], + "min":[ + -5.789669513702393, + 10.404273986816406, + -1.9985657930374146 + ], + "type":"VEC3" + }, + { + "bufferView":1198, + "componentType":5126, + "count":1739, + "type":"VEC3" + }, + { + "bufferView":1199, + "componentType":5126, + "count":1739, + "type":"VEC2" + }, + { + "bufferView":1200, + "componentType":5126, + "count":1739, + "type":"VEC2" + }, + { + "bufferView":1201, + "componentType":5126, + "count":1739, + "type":"VEC4" + }, + { + "bufferView":1202, + "componentType":5121, + "count":1739, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1203, + "componentType":5123, + "count":1739, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1204, + "componentType":5123, + "count":1739, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1205, + "componentType":5126, + "count":1104, + "max":[ + 6.386334419250488, + -17.84809112548828, + 8.800477027893066 + ], + "min":[ + -6.277720928192139, + -20.7928466796875, + -8.691588401794434 + ], + "type":"VEC3" + }, + { + "bufferView":1206, + "componentType":5126, + "count":1104, + "type":"VEC3" + }, + { + "bufferView":1207, + "componentType":5126, + "count":1104, + "type":"VEC2" + }, + { + "bufferView":1208, + "componentType":5126, + "count":1104, + "type":"VEC2" + }, + { + "bufferView":1209, + "componentType":5126, + "count":1104, + "type":"VEC4" + }, + { + "bufferView":1210, + "componentType":5121, + "count":1104, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1211, + "componentType":5123, + "count":1104, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1212, + "componentType":5123, + "count":1104, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1213, + "componentType":5126, + "count":42, + "max":[ + 4.477051258087158, + 13.228767395019531, + -3.37164306640625 + ], + "min":[ + 4.108845233917236, + 13.110649108886719, + -3.413421630859375 + ], + "type":"VEC3" + }, + { + "bufferView":1214, + "componentType":5126, + "count":42, + "type":"VEC3" + }, + { + "bufferView":1215, + "componentType":5126, + "count":42, + "type":"VEC2" + }, + { + "bufferView":1216, + "componentType":5126, + "count":42, + "type":"VEC2" + }, + { + "bufferView":1217, + "componentType":5126, + "count":42, + "type":"VEC4" + }, + { + "bufferView":1218, + "componentType":5121, + "count":42, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1219, + "componentType":5123, + "count":42, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1220, + "componentType":5123, + "count":42, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1221, + "componentType":5126, + "count":5480, + "max":[ + 6.355622291564941, + 11.248382568359375, + 8.769623756408691 + ], + "min":[ + -6.355622291564941, + -16.225711822509766, + -8.769623756408691 + ], + "type":"VEC3" + }, + { + "bufferView":1222, + "componentType":5126, + "count":5480, + "type":"VEC3" + }, + { + "bufferView":1223, + "componentType":5126, + "count":5480, + "type":"VEC2" + }, + { + "bufferView":1224, + "componentType":5126, + "count":5480, + "type":"VEC2" + }, + { + "bufferView":1225, + "componentType":5126, + "count":5480, + "type":"VEC4" + }, + { + "bufferView":1226, + "componentType":5121, + "count":5480, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1227, + "componentType":5123, + "count":5480, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1228, + "componentType":5123, + "count":5480, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1229, + "componentType":5126, + "count":1853, + "max":[ + 6.409512519836426, + 20.842849731445312, + 8.824006080627441 + ], + "min":[ + -6.305537700653076, + -20.842849731445312, + -8.719511985778809 + ], + "type":"VEC3" + }, + { + "bufferView":1230, + "componentType":5126, + "count":1853, + "type":"VEC3" + }, + { + "bufferView":1231, + "componentType":5126, + "count":1853, + "type":"VEC2" + }, + { + "bufferView":1232, + "componentType":5126, + "count":1853, + "type":"VEC2" + }, + { + "bufferView":1233, + "componentType":5126, + "count":1853, + "type":"VEC4" + }, + { + "bufferView":1234, + "componentType":5121, + "count":1853, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1235, + "componentType":5123, + "count":1853, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1236, + "componentType":5123, + "count":1853, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1237, + "componentType":5126, + "count":172, + "max":[ + 5.456364154815674, + 20.52033233642578, + -3.56982421875 + ], + "min":[ + 3.8166277408599854, + 11.338874816894531, + -7.505096435546875 + ], + "type":"VEC3" + }, + { + "bufferView":1238, + "componentType":5126, + "count":172, + "type":"VEC3" + }, + { + "bufferView":1239, + "componentType":5126, + "count":172, + "type":"VEC2" + }, + { + "bufferView":1240, + "componentType":5126, + "count":172, + "type":"VEC2" + }, + { + "bufferView":1241, + "componentType":5126, + "count":172, + "type":"VEC4" + }, + { + "bufferView":1242, + "componentType":5121, + "count":172, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1243, + "componentType":5123, + "count":172, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1244, + "componentType":5123, + "count":172, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1245, + "componentType":5126, + "count":516, + "max":[ + 5.867355823516846, + 20.103134155273438, + -3.318694829940796 + ], + "min":[ + 1.2577329874038696, + 13.520286560058594, + -7.880584716796875 + ], + "type":"VEC3" + }, + { + "bufferView":1246, + "componentType":5126, + "count":516, + "type":"VEC3" + }, + { + "bufferView":1247, + "componentType":5126, + "count":516, + "type":"VEC2" + }, + { + "bufferView":1248, + "componentType":5126, + "count":516, + "type":"VEC2" + }, + { + "bufferView":1249, + "componentType":5126, + "count":516, + "type":"VEC4" + }, + { + "bufferView":1250, + "componentType":5121, + "count":516, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1251, + "componentType":5123, + "count":516, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1252, + "componentType":5123, + "count":516, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1253, + "componentType":5126, + "count":34, + "max":[ + 6.254162788391113, + 13.285392761230469, + 8.671751976013184 + ], + "min":[ + -6.275326728820801, + 11.352638244628906, + -8.650025367736816 + ], + "type":"VEC3" + }, + { + "bufferView":1254, + "componentType":5126, + "count":34, + "type":"VEC3" + }, + { + "bufferView":1255, + "componentType":5126, + "count":34, + "type":"VEC2" + }, + { + "bufferView":1256, + "componentType":5126, + "count":34, + "type":"VEC2" + }, + { + "bufferView":1257, + "componentType":5126, + "count":34, + "type":"VEC4" + }, + { + "bufferView":1258, + "componentType":5121, + "count":34, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1259, + "componentType":5123, + "count":34, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1260, + "componentType":5123, + "count":34, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1261, + "componentType":5126, + "count":4615, + "max":[ + 6.529923439025879, + 13.24169921875, + 8.943909645080566 + ], + "min":[ + -6.529923439025879, + -20.842849731445312, + -8.943909645080566 + ], + "type":"VEC3" + }, + { + "bufferView":1262, + "componentType":5126, + "count":4615, + "type":"VEC3" + }, + { + "bufferView":1263, + "componentType":5126, + "count":4615, + "type":"VEC2" + }, + { + "bufferView":1264, + "componentType":5126, + "count":4615, + "type":"VEC2" + }, + { + "bufferView":1265, + "componentType":5126, + "count":4615, + "type":"VEC4" + }, + { + "bufferView":1266, + "componentType":5121, + "count":4615, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1267, + "componentType":5123, + "count":4615, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1268, + "componentType":5123, + "count":4615, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1269, + "componentType":5126, + "count":18984, + "max":[ + -0.7803761959075928, + 17.517578125, + 5.082446098327637 + ], + "min":[ + -11.2380952835083, + -31.239282608032227, + -7.09901762008667 + ], + "type":"VEC3" + }, + { + "bufferView":1270, + "componentType":5126, + "count":18984, + "type":"VEC3" + }, + { + "bufferView":1271, + "componentType":5126, + "count":18984, + "type":"VEC2" + }, + { + "bufferView":1272, + "componentType":5126, + "count":18984, + "type":"VEC2" + }, + { + "bufferView":1273, + "componentType":5126, + "count":18984, + "type":"VEC4" + }, + { + "bufferView":1274, + "componentType":5121, + "count":18984, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1275, + "componentType":5123, + "count":18984, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1276, + "componentType":5123, + "count":18984, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1277, + "componentType":5123, + "count":43752, + "type":"SCALAR" + }, + { + "bufferView":1278, + "componentType":5126, + "count":20, + "max":[ + 0.3954956531524658, + 16.135265350341797, + 1.5806554555892944 + ], + "min":[ + -4.292919635772705, + 15.201908111572266, + -6.454212188720703 + ], + "type":"VEC3" + }, + { + "bufferView":1279, + "componentType":5126, + "count":20, + "type":"VEC3" + }, + { + "bufferView":1280, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":1281, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":1282, + "componentType":5126, + "count":20, + "type":"VEC4" + }, + { + "bufferView":1283, + "componentType":5121, + "count":20, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1284, + "componentType":5123, + "count":20, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1285, + "componentType":5123, + "count":20, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1286, + "componentType":5123, + "count":30, + "type":"SCALAR" + }, + { + "bufferView":1287, + "componentType":5126, + "count":6898, + "max":[ + 10.79582405090332, + 15.96157455444336, + 6.853089809417725 + ], + "min":[ + -10.771799087524414, + -36.31507110595703, + -7.62270450592041 + ], + "type":"VEC3" + }, + { + "bufferView":1288, + "componentType":5126, + "count":6898, + "type":"VEC3" + }, + { + "bufferView":1289, + "componentType":5126, + "count":6898, + "type":"VEC2" + }, + { + "bufferView":1290, + "componentType":5126, + "count":6898, + "type":"VEC2" + }, + { + "bufferView":1291, + "componentType":5126, + "count":6898, + "type":"VEC4" + }, + { + "bufferView":1292, + "componentType":5121, + "count":6898, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1293, + "componentType":5123, + "count":6898, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1294, + "componentType":5123, + "count":6898, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1295, + "componentType":5123, + "count":14400, + "type":"SCALAR" + }, + { + "bufferView":1296, + "componentType":5126, + "count":900, + "max":[ + 7.49476432800293, + 17.875823974609375, + 2.7695119380950928 + ], + "min":[ + 4.41295051574707, + 15.457225799560547, + 1.0881685018539429 + ], + "type":"VEC3" + }, + { + "bufferView":1297, + "componentType":5126, + "count":900, + "type":"VEC3" + }, + { + "bufferView":1298, + "componentType":5126, + "count":900, + "type":"VEC2" + }, + { + "bufferView":1299, + "componentType":5126, + "count":900, + "type":"VEC2" + }, + { + "bufferView":1300, + "componentType":5126, + "count":900, + "type":"VEC4" + }, + { + "bufferView":1301, + "componentType":5121, + "count":900, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1302, + "componentType":5123, + "count":900, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1303, + "componentType":5123, + "count":900, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1304, + "componentType":5123, + "count":1674, + "type":"SCALAR" + }, + { + "bufferView":1305, + "componentType":5126, + "count":7200, + "max":[ + 10.749269485473633, + 15.907909393310547, + 6.794793605804443 + ], + "min":[ + -10.725166320800781, + -36.26106262207031, + -7.564356803894043 + ], + "type":"VEC3" + }, + { + "bufferView":1306, + "componentType":5126, + "count":7200, + "type":"VEC3" + }, + { + "bufferView":1307, + "componentType":5126, + "count":7200, + "type":"VEC2" + }, + { + "bufferView":1308, + "componentType":5126, + "count":7200, + "type":"VEC2" + }, + { + "bufferView":1309, + "componentType":5126, + "count":7200, + "type":"VEC4" + }, + { + "bufferView":1310, + "componentType":5121, + "count":7200, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1311, + "componentType":5123, + "count":7200, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1312, + "componentType":5123, + "count":7200, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1313, + "componentType":5123, + "count":10800, + "type":"SCALAR" + }, + { + "bufferView":1314, + "componentType":5126, + "count":596, + "max":[ + 3.0601561069488525, + -31.35489273071289, + 8.62151050567627 + ], + "min":[ + -0.7970030307769775, + -32.12885284423828, + 7.039088249206543 + ], + "type":"VEC3" + }, + { + "bufferView":1315, + "componentType":5126, + "count":596, + "type":"VEC3" + }, + { + "bufferView":1316, + "componentType":5126, + "count":596, + "type":"VEC2" + }, + { + "bufferView":1317, + "componentType":5126, + "count":596, + "type":"VEC2" + }, + { + "bufferView":1318, + "componentType":5126, + "count":596, + "type":"VEC4" + }, + { + "bufferView":1319, + "componentType":5121, + "count":596, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1320, + "componentType":5123, + "count":596, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1321, + "componentType":5123, + "count":596, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1322, + "componentType":5123, + "count":1374, + "type":"SCALAR" + }, + { + "bufferView":1323, + "componentType":5126, + "count":991, + "max":[ + 8.736908912658691, + 36.31527328491211, + 6.162102699279785 + ], + "min":[ + 4.359254360198975, + -36.31512451171875, + -6.7497758865356445 + ], + "type":"VEC3" + }, + { + "bufferView":1324, + "componentType":5126, + "count":991, + "type":"VEC3" + }, + { + "bufferView":1325, + "componentType":5126, + "count":991, + "type":"VEC2" + }, + { + "bufferView":1326, + "componentType":5126, + "count":991, + "type":"VEC2" + }, + { + "bufferView":1327, + "componentType":5126, + "count":991, + "type":"VEC4" + }, + { + "bufferView":1328, + "componentType":5121, + "count":991, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1329, + "componentType":5123, + "count":991, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1330, + "componentType":5123, + "count":991, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1331, + "componentType":5123, + "count":3738, + "type":"SCALAR" + }, + { + "bufferView":1332, + "componentType":5126, + "count":114, + "max":[ + 8.699288368225098, + 36.31527328491211, + -0.730818510055542 + ], + "min":[ + 4.418735504150391, + 22.230846405029297, + -5.272156715393066 + ], + "type":"VEC3" + }, + { + "bufferView":1333, + "componentType":5126, + "count":114, + "type":"VEC3" + }, + { + "bufferView":1334, + "componentType":5126, + "count":114, + "type":"VEC2" + }, + { + "bufferView":1335, + "componentType":5126, + "count":114, + "type":"VEC2" + }, + { + "bufferView":1336, + "componentType":5126, + "count":114, + "type":"VEC4" + }, + { + "bufferView":1337, + "componentType":5121, + "count":114, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1338, + "componentType":5123, + "count":114, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1339, + "componentType":5123, + "count":114, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1340, + "componentType":5123, + "count":192, + "type":"SCALAR" + }, + { + "bufferView":1341, + "componentType":5126, + "count":468, + "max":[ + 1.0065994262695312, + 17.143783569335938, + -1.2548255920410156 + ], + "min":[ + -10.645352363586426, + -36.31527328491211, + -7.475958824157715 + ], + "type":"VEC3" + }, + { + "bufferView":1342, + "componentType":5126, + "count":468, + "type":"VEC3" + }, + { + "bufferView":1343, + "componentType":5126, + "count":468, + "type":"VEC2" + }, + { + "bufferView":1344, + "componentType":5126, + "count":468, + "type":"VEC2" + }, + { + "bufferView":1345, + "componentType":5126, + "count":468, + "type":"VEC4" + }, + { + "bufferView":1346, + "componentType":5121, + "count":468, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1347, + "componentType":5123, + "count":468, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1348, + "componentType":5123, + "count":468, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1349, + "componentType":5123, + "count":2448, + "type":"SCALAR" + }, + { + "bufferView":1350, + "componentType":5126, + "count":19894, + "max":[ + 8.328972816467285, + 24.618885040283203, + 8.621485710144043 + ], + "min":[ + -4.167819499969482, + -36.31513977050781, + -5.486464977264404 + ], + "type":"VEC3" + }, + { + "bufferView":1351, + "componentType":5126, + "count":19894, + "type":"VEC3" + }, + { + "bufferView":1352, + "componentType":5126, + "count":19894, + "type":"VEC2" + }, + { + "bufferView":1353, + "componentType":5126, + "count":19894, + "type":"VEC2" + }, + { + "bufferView":1354, + "componentType":5126, + "count":19894, + "type":"VEC4" + }, + { + "bufferView":1355, + "componentType":5121, + "count":19894, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1356, + "componentType":5123, + "count":19894, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1357, + "componentType":5123, + "count":19894, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1358, + "componentType":5123, + "count":44490, + "type":"SCALAR" + }, + { + "bufferView":1359, + "componentType":5126, + "count":34, + "max":[ + 10.521036148071289, + 22.074813842773438, + 7.576419353485107 + ], + "min":[ + -10.521023750305176, + -0.13535742461681366, + -7.576523780822754 + ], + "type":"VEC3" + }, + { + "bufferView":1360, + "componentType":5126, + "count":34, + "type":"VEC3" + }, + { + "bufferView":1361, + "componentType":5126, + "count":34, + "type":"VEC2" + }, + { + "bufferView":1362, + "componentType":5126, + "count":34, + "type":"VEC2" + }, + { + "bufferView":1363, + "componentType":5126, + "count":34, + "type":"VEC4" + }, + { + "bufferView":1364, + "componentType":5121, + "count":34, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1365, + "componentType":5123, + "count":34, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1366, + "componentType":5123, + "count":34, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1367, + "componentType":5123, + "count":54, + "type":"SCALAR" + }, + { + "bufferView":1368, + "componentType":5126, + "count":3708, + "max":[ + 11.130661964416504, + 23.20635223388672, + 8.186100959777832 + ], + "min":[ + -11.130685806274414, + -36.315128326416016, + -8.18610668182373 + ], + "type":"VEC3" + }, + { + "bufferView":1369, + "componentType":5126, + "count":3708, + "type":"VEC3" + }, + { + "bufferView":1370, + "componentType":5126, + "count":3708, + "type":"VEC2" + }, + { + "bufferView":1371, + "componentType":5126, + "count":3708, + "type":"VEC2" + }, + { + "bufferView":1372, + "componentType":5126, + "count":3708, + "type":"VEC4" + }, + { + "bufferView":1373, + "componentType":5121, + "count":3708, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1374, + "componentType":5123, + "count":3708, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1375, + "componentType":5123, + "count":3708, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1376, + "componentType":5123, + "count":8862, + "type":"SCALAR" + }, + { + "bufferView":1377, + "componentType":5126, + "count":18984, + "max":[ + 10.968578338623047, + 17.517578125, + 6.468914031982422 + ], + "min":[ + 1.104292392730713, + -31.239282608032227, + -5.563689708709717 + ], + "type":"VEC3" + }, + { + "bufferView":1378, + "componentType":5126, + "count":18984, + "type":"VEC3" + }, + { + "bufferView":1379, + "componentType":5126, + "count":18984, + "type":"VEC2" + }, + { + "bufferView":1380, + "componentType":5126, + "count":18984, + "type":"VEC2" + }, + { + "bufferView":1381, + "componentType":5126, + "count":18984, + "type":"VEC4" + }, + { + "bufferView":1382, + "componentType":5121, + "count":18984, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1383, + "componentType":5123, + "count":18984, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1384, + "componentType":5123, + "count":18984, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1385, + "componentType":5123, + "count":43752, + "type":"SCALAR" + }, + { + "bufferView":1386, + "componentType":5126, + "count":20, + "max":[ + 4.206519603729248, + 16.135265350341797, + 6.210163116455078 + ], + "min":[ + 0.007063865661621094, + 15.201908111572266, + -1.6072089672088623 + ], + "type":"VEC3" + }, + { + "bufferView":1387, + "componentType":5126, + "count":20, + "type":"VEC3" + }, + { + "bufferView":1388, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":1389, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":1390, + "componentType":5126, + "count":20, + "type":"VEC4" + }, + { + "bufferView":1391, + "componentType":5121, + "count":20, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1392, + "componentType":5123, + "count":20, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1393, + "componentType":5123, + "count":20, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1394, + "componentType":5123, + "count":30, + "type":"SCALAR" + }, + { + "bufferView":1395, + "componentType":5126, + "count":6898, + "max":[ + 10.441431045532227, + 15.96157455444336, + 7.005100250244141 + ], + "min":[ + -10.45097827911377, + -36.31507110595703, + -6.20490026473999 + ], + "type":"VEC3" + }, + { + "bufferView":1396, + "componentType":5126, + "count":6898, + "type":"VEC3" + }, + { + "bufferView":1397, + "componentType":5126, + "count":6898, + "type":"VEC2" + }, + { + "bufferView":1398, + "componentType":5126, + "count":6898, + "type":"VEC2" + }, + { + "bufferView":1399, + "componentType":5126, + "count":6898, + "type":"VEC4" + }, + { + "bufferView":1400, + "componentType":5121, + "count":6898, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1401, + "componentType":5123, + "count":6898, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1402, + "componentType":5123, + "count":6898, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1403, + "componentType":5123, + "count":14400, + "type":"SCALAR" + }, + { + "bufferView":1404, + "componentType":5126, + "count":900, + "max":[ + -4.550796031951904, + 17.875823974609375, + -0.7833757400512695 + ], + "min":[ + -7.572625637054443, + 15.457225799560547, + -2.2758588790893555 + ], + "type":"VEC3" + }, + { + "bufferView":1405, + "componentType":5126, + "count":900, + "type":"VEC3" + }, + { + "bufferView":1406, + "componentType":5126, + "count":900, + "type":"VEC2" + }, + { + "bufferView":1407, + "componentType":5126, + "count":900, + "type":"VEC2" + }, + { + "bufferView":1408, + "componentType":5126, + "count":900, + "type":"VEC4" + }, + { + "bufferView":1409, + "componentType":5121, + "count":900, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1410, + "componentType":5123, + "count":900, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1411, + "componentType":5123, + "count":900, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1412, + "componentType":5123, + "count":1674, + "type":"SCALAR" + }, + { + "bufferView":1413, + "componentType":5126, + "count":7200, + "max":[ + 10.398191452026367, + 15.907909393310547, + 6.94920539855957 + ], + "min":[ + -10.407814025878906, + -36.26106262207031, + -6.148982524871826 + ], + "type":"VEC3" + }, + { + "bufferView":1414, + "componentType":5126, + "count":7200, + "type":"VEC3" + }, + { + "bufferView":1415, + "componentType":5126, + "count":7200, + "type":"VEC2" + }, + { + "bufferView":1416, + "componentType":5126, + "count":7200, + "type":"VEC2" + }, + { + "bufferView":1417, + "componentType":5126, + "count":7200, + "type":"VEC4" + }, + { + "bufferView":1418, + "componentType":5121, + "count":7200, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1419, + "componentType":5123, + "count":7200, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1420, + "componentType":5123, + "count":7200, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1421, + "componentType":5123, + "count":10800, + "type":"SCALAR" + }, + { + "bufferView":1422, + "componentType":5126, + "count":596, + "max":[ + 0.24823307991027832, + -31.35489273071289, + -7.067893028259277 + ], + "min":[ + -3.550143003463745, + -32.12885284423828, + -8.407041549682617 + ], + "type":"VEC3" + }, + { + "bufferView":1423, + "componentType":5126, + "count":596, + "type":"VEC3" + }, + { + "bufferView":1424, + "componentType":5126, + "count":596, + "type":"VEC2" + }, + { + "bufferView":1425, + "componentType":5126, + "count":596, + "type":"VEC2" + }, + { + "bufferView":1426, + "componentType":5126, + "count":596, + "type":"VEC4" + }, + { + "bufferView":1427, + "componentType":5121, + "count":596, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1428, + "componentType":5123, + "count":596, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1429, + "componentType":5123, + "count":596, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1430, + "componentType":5123, + "count":1374, + "type":"SCALAR" + }, + { + "bufferView":1431, + "componentType":5126, + "count":991, + "max":[ + -4.18721866607666, + 36.31527328491211, + 7.2312798500061035 + ], + "min":[ + -8.66889762878418, + -36.31512451171875, + -5.6945295333862305 + ], + "type":"VEC3" + }, + { + "bufferView":1432, + "componentType":5126, + "count":991, + "type":"VEC3" + }, + { + "bufferView":1433, + "componentType":5126, + "count":991, + "type":"VEC2" + }, + { + "bufferView":1434, + "componentType":5126, + "count":991, + "type":"VEC2" + }, + { + "bufferView":1435, + "componentType":5126, + "count":991, + "type":"VEC4" + }, + { + "bufferView":1436, + "componentType":5121, + "count":991, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1437, + "componentType":5123, + "count":991, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1438, + "componentType":5123, + "count":991, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1439, + "componentType":5123, + "count":3738, + "type":"SCALAR" + }, + { + "bufferView":1440, + "componentType":5126, + "count":114, + "max":[ + -4.245960712432861, + 36.31527328491211, + 5.790151596069336 + ], + "min":[ + -8.628231048583984, + 22.230846405029297, + 1.3052551746368408 + ], + "type":"VEC3" + }, + { + "bufferView":1441, + "componentType":5126, + "count":114, + "type":"VEC3" + }, + { + "bufferView":1442, + "componentType":5126, + "count":114, + "type":"VEC2" + }, + { + "bufferView":1443, + "componentType":5126, + "count":114, + "type":"VEC2" + }, + { + "bufferView":1444, + "componentType":5126, + "count":114, + "type":"VEC4" + }, + { + "bufferView":1445, + "componentType":5121, + "count":114, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1446, + "componentType":5123, + "count":114, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1447, + "componentType":5123, + "count":114, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1448, + "componentType":5123, + "count":192, + "type":"SCALAR" + }, + { + "bufferView":1449, + "componentType":5126, + "count":468, + "max":[ + 10.719862937927246, + 17.143783569335938, + 7.521031856536865 + ], + "min":[ + -0.5128376483917236, + -36.31527328491211, + 0.6180543899536133 + ], + "type":"VEC3" + }, + { + "bufferView":1450, + "componentType":5126, + "count":468, + "type":"VEC3" + }, + { + "bufferView":1451, + "componentType":5126, + "count":468, + "type":"VEC2" + }, + { + "bufferView":1452, + "componentType":5126, + "count":468, + "type":"VEC2" + }, + { + "bufferView":1453, + "componentType":5126, + "count":468, + "type":"VEC4" + }, + { + "bufferView":1454, + "componentType":5121, + "count":468, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1455, + "componentType":5123, + "count":468, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1456, + "componentType":5123, + "count":468, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1457, + "componentType":5126, + "count":19894, + "max":[ + 3.695622444152832, + 24.618885040283203, + 5.812704086303711 + ], + "min":[ + -7.999860763549805, + -36.31513977050781, + -8.407017707824707 + ], + "type":"VEC3" + }, + { + "bufferView":1458, + "componentType":5126, + "count":19894, + "type":"VEC3" + }, + { + "bufferView":1459, + "componentType":5126, + "count":19894, + "type":"VEC2" + }, + { + "bufferView":1460, + "componentType":5126, + "count":19894, + "type":"VEC2" + }, + { + "bufferView":1461, + "componentType":5126, + "count":19894, + "type":"VEC4" + }, + { + "bufferView":1462, + "componentType":5121, + "count":19894, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1463, + "componentType":5123, + "count":19894, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1464, + "componentType":5123, + "count":19894, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1465, + "componentType":5123, + "count":44490, + "type":"SCALAR" + }, + { + "bufferView":1466, + "componentType":5126, + "count":34, + "max":[ + 10.138032913208008, + 22.074813842773438, + 6.9546661376953125 + ], + "min":[ + -10.138038635253906, + -0.13535742461681366, + -6.954559326171875 + ], + "type":"VEC3" + }, + { + "bufferView":1467, + "componentType":5126, + "count":34, + "type":"VEC3" + }, + { + "bufferView":1468, + "componentType":5126, + "count":34, + "type":"VEC2" + }, + { + "bufferView":1469, + "componentType":5126, + "count":34, + "type":"VEC2" + }, + { + "bufferView":1470, + "componentType":5126, + "count":34, + "type":"VEC4" + }, + { + "bufferView":1471, + "componentType":5121, + "count":34, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1472, + "componentType":5123, + "count":34, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1473, + "componentType":5123, + "count":34, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1474, + "componentType":5123, + "count":54, + "type":"SCALAR" + }, + { + "bufferView":1475, + "componentType":5126, + "count":3708, + "max":[ + 10.713842391967773, + 23.20635223388672, + 7.530399322509766 + ], + "min":[ + -10.713817596435547, + -36.315128326416016, + -7.530394077301025 + ], + "type":"VEC3" + }, + { + "bufferView":1476, + "componentType":5126, + "count":3708, + "type":"VEC3" + }, + { + "bufferView":1477, + "componentType":5126, + "count":3708, + "type":"VEC2" + }, + { + "bufferView":1478, + "componentType":5126, + "count":3708, + "type":"VEC2" + }, + { + "bufferView":1479, + "componentType":5126, + "count":3708, + "type":"VEC4" + }, + { + "bufferView":1480, + "componentType":5121, + "count":3708, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1481, + "componentType":5123, + "count":3708, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1482, + "componentType":5123, + "count":3708, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1483, + "componentType":5123, + "count":8862, + "type":"SCALAR" + }, + { + "bufferView":1484, + "componentType":5126, + "count":15944, + "max":[ + 4.7921223640441895, + 7.189826011657715, + -0.4230353534221649 + ], + "min":[ + -4.8457794189453125, + 5.811781883239746, + -4.971528053283691 + ], + "type":"VEC3" + }, + { + "bufferView":1485, + "componentType":5126, + "count":15944, + "type":"VEC3" + }, + { + "bufferView":1486, + "componentType":5126, + "count":15944, + "type":"VEC2" + }, + { + "bufferView":1487, + "componentType":5126, + "count":15944, + "type":"VEC2" + }, + { + "bufferView":1488, + "componentType":5126, + "count":15944, + "type":"VEC4" + }, + { + "bufferView":1489, + "componentType":5121, + "count":15944, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1490, + "componentType":5123, + "count":15944, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1491, + "componentType":5123, + "count":15944, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1492, + "componentType":5123, + "count":41100, + "type":"SCALAR" + }, + { + "bufferView":1493, + "componentType":5126, + "count":148, + "max":[ + 5.096641540527344, + 8.359915733337402, + 4.841293811798096 + ], + "min":[ + 0.5348124504089355, + 6.04074764251709, + 0.23168936371803284 + ], + "type":"VEC3" + }, + { + "bufferView":1494, + "componentType":5126, + "count":148, + "type":"VEC3" + }, + { + "bufferView":1495, + "componentType":5126, + "count":148, + "type":"VEC2" + }, + { + "bufferView":1496, + "componentType":5126, + "count":148, + "type":"VEC2" + }, + { + "bufferView":1497, + "componentType":5126, + "count":148, + "type":"VEC4" + }, + { + "bufferView":1498, + "componentType":5121, + "count":148, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1499, + "componentType":5123, + "count":148, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1500, + "componentType":5123, + "count":148, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1501, + "componentType":5123, + "count":282, + "type":"SCALAR" + }, + { + "bufferView":1502, + "componentType":5126, + "count":760, + "max":[ + 5.633553504943848, + 6.9976115226745605, + 5.6938796043396 + ], + "min":[ + -5.633553504943848, + -11.756381034851074, + -5.6938796043396 + ], + "type":"VEC3" + }, + { + "bufferView":1503, + "componentType":5126, + "count":760, + "type":"VEC3" + }, + { + "bufferView":1504, + "componentType":5126, + "count":760, + "type":"VEC2" + }, + { + "bufferView":1505, + "componentType":5126, + "count":760, + "type":"VEC2" + }, + { + "bufferView":1506, + "componentType":5126, + "count":760, + "type":"VEC4" + }, + { + "bufferView":1507, + "componentType":5121, + "count":760, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1508, + "componentType":5123, + "count":760, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1509, + "componentType":5123, + "count":760, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1510, + "componentType":5123, + "count":1728, + "type":"SCALAR" + }, + { + "bufferView":1511, + "componentType":5126, + "count":42, + "max":[ + 0.6294552087783813, + 7.9304304122924805, + 3.450958013534546 + ], + "min":[ + 0.5877071619033813, + 7.812315940856934, + 3.082732915878296 + ], + "type":"VEC3" + }, + { + "bufferView":1512, + "componentType":5126, + "count":42, + "type":"VEC3" + }, + { + "bufferView":1513, + "componentType":5126, + "count":42, + "type":"VEC2" + }, + { + "bufferView":1514, + "componentType":5126, + "count":42, + "type":"VEC2" + }, + { + "bufferView":1515, + "componentType":5126, + "count":42, + "type":"VEC4" + }, + { + "bufferView":1516, + "componentType":5121, + "count":42, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1517, + "componentType":5123, + "count":42, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1518, + "componentType":5123, + "count":42, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1519, + "componentType":5123, + "count":120, + "type":"SCALAR" + }, + { + "bufferView":1520, + "componentType":5126, + "count":92736, + "max":[ + 5.377102851867676, + 6.482600688934326, + 5.4603590965271 + ], + "min":[ + -5.37709903717041, + -10.22359561920166, + -5.4603590965271 + ], + "type":"VEC3" + }, + { + "bufferView":1521, + "componentType":5126, + "count":92736, + "type":"VEC3" + }, + { + "bufferView":1522, + "componentType":5126, + "count":92736, + "type":"VEC2" + }, + { + "bufferView":1523, + "componentType":5126, + "count":92736, + "type":"VEC2" + }, + { + "bufferView":1524, + "componentType":5126, + "count":92736, + "type":"VEC4" + }, + { + "bufferView":1525, + "componentType":5121, + "count":92736, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1526, + "componentType":5123, + "count":92736, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1527, + "componentType":5123, + "count":92736, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1528, + "componentType":5125, + "count":139104, + "type":"SCALAR" + }, + { + "bufferView":1529, + "componentType":5126, + "count":118304, + "max":[ + 5.427102088928223, + 11.756381034851074, + 5.51034688949585 + ], + "min":[ + -5.427102088928223, + -10.253595352172852, + -5.51034688949585 + ], + "type":"VEC3" + }, + { + "bufferView":1530, + "componentType":5126, + "count":118304, + "type":"VEC3" + }, + { + "bufferView":1531, + "componentType":5126, + "count":118304, + "type":"VEC2" + }, + { + "bufferView":1532, + "componentType":5126, + "count":118304, + "type":"VEC2" + }, + { + "bufferView":1533, + "componentType":5126, + "count":118304, + "type":"VEC4" + }, + { + "bufferView":1534, + "componentType":5121, + "count":118304, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1535, + "componentType":5123, + "count":118304, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1536, + "componentType":5123, + "count":118304, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1537, + "componentType":5125, + "count":187932, + "type":"SCALAR" + }, + { + "bufferView":1538, + "componentType":5126, + "count":28, + "max":[ + 0.7978588938713074, + 7.6630048751831055, + 3.7424161434173584 + ], + "min":[ + 0.7858806848526001, + 6.040534019470215, + 2.790527105331421 + ], + "type":"VEC3" + }, + { + "bufferView":1539, + "componentType":5126, + "count":28, + "type":"VEC3" + }, + { + "bufferView":1540, + "componentType":5126, + "count":28, + "type":"VEC2" + }, + { + "bufferView":1541, + "componentType":5126, + "count":28, + "type":"VEC2" + }, + { + "bufferView":1542, + "componentType":5126, + "count":28, + "type":"VEC4" + }, + { + "bufferView":1543, + "componentType":5121, + "count":28, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1544, + "componentType":5123, + "count":28, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1545, + "componentType":5123, + "count":28, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1546, + "componentType":5123, + "count":54, + "type":"SCALAR" + }, + { + "bufferView":1547, + "componentType":5126, + "count":496, + "max":[ + 4.087157726287842, + 9.262129783630371, + 3.990997314453125 + ], + "min":[ + 3.1909406185150146, + 8.220351219177246, + 2.966277837753296 + ], + "type":"VEC3" + }, + { + "bufferView":1548, + "componentType":5126, + "count":496, + "type":"VEC3" + }, + { + "bufferView":1549, + "componentType":5126, + "count":496, + "type":"VEC2" + }, + { + "bufferView":1550, + "componentType":5126, + "count":496, + "type":"VEC2" + }, + { + "bufferView":1551, + "componentType":5126, + "count":496, + "type":"VEC4" + }, + { + "bufferView":1552, + "componentType":5121, + "count":496, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1553, + "componentType":5123, + "count":496, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1554, + "componentType":5123, + "count":496, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1555, + "componentType":5123, + "count":1998, + "type":"SCALAR" + }, + { + "bufferView":1556, + "componentType":5126, + "count":10, + "max":[ + 5.2840166091918945, + 7.987044334411621, + 5.344421863555908 + ], + "min":[ + -5.284028053283691, + 6.067505836486816, + -5.344300746917725 + ], + "type":"VEC3" + }, + { + "bufferView":1557, + "componentType":5126, + "count":10, + "type":"VEC3" + }, + { + "bufferView":1558, + "componentType":5126, + "count":10, + "type":"VEC2" + }, + { + "bufferView":1559, + "componentType":5126, + "count":10, + "type":"VEC2" + }, + { + "bufferView":1560, + "componentType":5126, + "count":10, + "type":"VEC4" + }, + { + "bufferView":1561, + "componentType":5121, + "count":10, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1562, + "componentType":5123, + "count":10, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1563, + "componentType":5123, + "count":10, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1564, + "componentType":5123, + "count":18, + "type":"SCALAR" + }, + { + "bufferView":1565, + "componentType":5126, + "count":24, + "max":[ + 0.6632000207901001, + 7.943346977233887, + 3.463866949081421 + ], + "min":[ + 0.6294628381729126, + 7.7993974685668945, + 3.069823980331421 + ], + "type":"VEC3" + }, + { + "bufferView":1566, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":1567, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":1568, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":1569, + "componentType":5126, + "count":24, + "type":"VEC4" + }, + { + "bufferView":1570, + "componentType":5121, + "count":24, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1571, + "componentType":5123, + "count":24, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1572, + "componentType":5123, + "count":24, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1573, + "componentType":5123, + "count":48, + "type":"SCALAR" + }, + { + "bufferView":1574, + "componentType":5126, + "count":6260, + "max":[ + 1.5382838249206543, + 9.276710510253906, + 5.745223045349121 + ], + "min":[ + -8.80263614654541, + 7.8986663818359375, + 2.7687060832977295 + ], + "type":"VEC3" + }, + { + "bufferView":1575, + "componentType":5126, + "count":6260, + "type":"VEC3" + }, + { + "bufferView":1576, + "componentType":5126, + "count":6260, + "type":"VEC2" + }, + { + "bufferView":1577, + "componentType":5126, + "count":6260, + "type":"VEC2" + }, + { + "bufferView":1578, + "componentType":5126, + "count":6260, + "type":"VEC4" + }, + { + "bufferView":1579, + "componentType":5121, + "count":6260, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1580, + "componentType":5123, + "count":6260, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1581, + "componentType":5123, + "count":6260, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1582, + "componentType":5123, + "count":16452, + "type":"SCALAR" + }, + { + "bufferView":1583, + "componentType":5126, + "count":4934, + "max":[ + 8.702706336975098, + 9.892189025878906, + 6.5885329246521 + ], + "min":[ + -9.668313026428223, + -9.892173767089844, + -6.588409900665283 + ], + "type":"VEC3" + }, + { + "bufferView":1584, + "componentType":5126, + "count":4934, + "type":"VEC3" + }, + { + "bufferView":1585, + "componentType":5126, + "count":4934, + "type":"VEC2" + }, + { + "bufferView":1586, + "componentType":5126, + "count":4934, + "type":"VEC2" + }, + { + "bufferView":1587, + "componentType":5126, + "count":4934, + "type":"VEC4" + }, + { + "bufferView":1588, + "componentType":5121, + "count":4934, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1589, + "componentType":5123, + "count":4934, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1590, + "componentType":5123, + "count":4934, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1591, + "componentType":5123, + "count":9804, + "type":"SCALAR" + }, + { + "bufferView":1592, + "componentType":5126, + "count":2112, + "max":[ + 8.674691200256348, + -6.473510265350342, + 6.56051778793335 + ], + "min":[ + -9.640328407287598, + -9.842170715332031, + -6.560394763946533 + ], + "type":"VEC3" + }, + { + "bufferView":1593, + "componentType":5126, + "count":2112, + "type":"VEC3" + }, + { + "bufferView":1594, + "componentType":5126, + "count":2112, + "type":"VEC2" + }, + { + "bufferView":1595, + "componentType":5126, + "count":2112, + "type":"VEC2" + }, + { + "bufferView":1596, + "componentType":5126, + "count":2112, + "type":"VEC4" + }, + { + "bufferView":1597, + "componentType":5121, + "count":2112, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1598, + "componentType":5123, + "count":2112, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1599, + "componentType":5123, + "count":2112, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1600, + "componentType":5123, + "count":3168, + "type":"SCALAR" + }, + { + "bufferView":1601, + "componentType":5126, + "count":3360, + "max":[ + 6.3966593742370605, + 7.633436679840088, + 6.560577392578125 + ], + "min":[ + -9.640381813049316, + -4.738763809204102, + -6.5604567527771 + ], + "type":"VEC3" + }, + { + "bufferView":1602, + "componentType":5126, + "count":3360, + "type":"VEC3" + }, + { + "bufferView":1603, + "componentType":5126, + "count":3360, + "type":"VEC2" + }, + { + "bufferView":1604, + "componentType":5126, + "count":3360, + "type":"VEC2" + }, + { + "bufferView":1605, + "componentType":5126, + "count":3360, + "type":"VEC4" + }, + { + "bufferView":1606, + "componentType":5121, + "count":3360, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1607, + "componentType":5123, + "count":3360, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1608, + "componentType":5123, + "count":3360, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1609, + "componentType":5123, + "count":5040, + "type":"SCALAR" + }, + { + "bufferView":1610, + "componentType":5126, + "count":596, + "max":[ + 10.010871887207031, + -5.740030765533447, + -2.5732715129852295 + ], + "min":[ + 9.037735939025879, + -6.380939960479736, + -5.678770542144775 + ], + "type":"VEC3" + }, + { + "bufferView":1611, + "componentType":5126, + "count":596, + "type":"VEC3" + }, + { + "bufferView":1612, + "componentType":5126, + "count":596, + "type":"VEC2" + }, + { + "bufferView":1613, + "componentType":5126, + "count":596, + "type":"VEC2" + }, + { + "bufferView":1614, + "componentType":5126, + "count":596, + "type":"VEC4" + }, + { + "bufferView":1615, + "componentType":5121, + "count":596, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1616, + "componentType":5123, + "count":596, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1617, + "componentType":5123, + "count":596, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1618, + "componentType":5123, + "count":1374, + "type":"SCALAR" + }, + { + "bufferView":1619, + "componentType":5126, + "count":3220, + "max":[ + 6.446670055389404, + 7.683441638946533, + 6.591583251953125 + ], + "min":[ + -9.671380043029785, + -4.788764953613281, + -6.5914626121521 + ], + "type":"VEC3" + }, + { + "bufferView":1620, + "componentType":5126, + "count":3220, + "type":"VEC3" + }, + { + "bufferView":1621, + "componentType":5126, + "count":3220, + "type":"VEC2" + }, + { + "bufferView":1622, + "componentType":5126, + "count":3220, + "type":"VEC2" + }, + { + "bufferView":1623, + "componentType":5126, + "count":3220, + "type":"VEC4" + }, + { + "bufferView":1624, + "componentType":5121, + "count":3220, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1625, + "componentType":5123, + "count":3220, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1626, + "componentType":5123, + "count":3220, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1627, + "componentType":5123, + "count":6720, + "type":"SCALAR" + }, + { + "bufferView":1628, + "componentType":5126, + "count":11032, + "max":[ + 10.010834693908691, + 9.757194519042969, + 6.598541259765625 + ], + "min":[ + -9.764198303222656, + -6.362242698669434, + -6.647706031799316 + ], + "type":"VEC3" + }, + { + "bufferView":1629, + "componentType":5126, + "count":11032, + "type":"VEC3" + }, + { + "bufferView":1630, + "componentType":5126, + "count":11032, + "type":"VEC2" + }, + { + "bufferView":1631, + "componentType":5126, + "count":11032, + "type":"VEC2" + }, + { + "bufferView":1632, + "componentType":5126, + "count":11032, + "type":"VEC4" + }, + { + "bufferView":1633, + "componentType":5121, + "count":11032, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1634, + "componentType":5123, + "count":11032, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1635, + "componentType":5123, + "count":11032, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1636, + "componentType":5123, + "count":27078, + "type":"SCALAR" + }, + { + "bufferView":1637, + "componentType":5126, + "count":4, + "max":[ + 8.536660194396973, + 8.150413513183594, + 6.561018466949463 + ], + "min":[ + -9.502335548400879, + 8.150413513183594, + -6.561065196990967 + ], + "type":"VEC3" + }, + { + "bufferView":1638, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":1639, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":1640, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":1641, + "componentType":5126, + "count":4, + "type":"VEC4" + }, + { + "bufferView":1642, + "componentType":5121, + "count":4, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1643, + "componentType":5123, + "count":4, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1644, + "componentType":5123, + "count":4, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1645, + "componentType":5126, + "count":2080, + "max":[ + 9.045205116271973, + 9.163887023925781, + 6.931031703948975 + ], + "min":[ + -10.010872840881348, + -9.892189025878906, + -6.931031703948975 + ], + "type":"VEC3" + }, + { + "bufferView":1646, + "componentType":5126, + "count":2080, + "type":"VEC3" + }, + { + "bufferView":1647, + "componentType":5126, + "count":2080, + "type":"VEC2" + }, + { + "bufferView":1648, + "componentType":5126, + "count":2080, + "type":"VEC2" + }, + { + "bufferView":1649, + "componentType":5126, + "count":2080, + "type":"VEC4" + }, + { + "bufferView":1650, + "componentType":5121, + "count":2080, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1651, + "componentType":5123, + "count":2080, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1652, + "componentType":5123, + "count":2080, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1653, + "componentType":5123, + "count":5028, + "type":"SCALAR" + }, + { + "bufferView":1654, + "componentType":5126, + "count":49856, + "max":[ + 13.510247230529785, + 26.430431365966797, + 11.372681617736816 + ], + "min":[ + -10.261066436767578, + 21.721099853515625, + -10.958006858825684 + ], + "type":"VEC3" + }, + { + "bufferView":1655, + "componentType":5126, + "count":49856, + "type":"VEC3" + }, + { + "bufferView":1656, + "componentType":5126, + "count":49856, + "type":"VEC2" + }, + { + "bufferView":1657, + "componentType":5126, + "count":49856, + "type":"VEC2" + }, + { + "bufferView":1658, + "componentType":5126, + "count":49856, + "type":"VEC4" + }, + { + "bufferView":1659, + "componentType":5121, + "count":49856, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1660, + "componentType":5123, + "count":49856, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1661, + "componentType":5123, + "count":49856, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1662, + "componentType":5123, + "count":105840, + "type":"SCALAR" + }, + { + "bufferView":1663, + "componentType":5126, + "count":678, + "max":[ + 14.931988716125488, + 25.64873504638672, + 14.49707317352295 + ], + "min":[ + -14.931987762451172, + -32.055145263671875, + -14.497069358825684 + ], + "type":"VEC3" + }, + { + "bufferView":1664, + "componentType":5126, + "count":678, + "type":"VEC3" + }, + { + "bufferView":1665, + "componentType":5126, + "count":678, + "type":"VEC2" + }, + { + "bufferView":1666, + "componentType":5126, + "count":678, + "type":"VEC2" + }, + { + "bufferView":1667, + "componentType":5126, + "count":678, + "type":"VEC4" + }, + { + "bufferView":1668, + "componentType":5121, + "count":678, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1669, + "componentType":5123, + "count":678, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1670, + "componentType":5123, + "count":678, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1671, + "componentType":5123, + "count":1296, + "type":"SCALAR" + }, + { + "bufferView":1672, + "componentType":5126, + "count":1800, + "max":[ + 4.401515007019043, + 27.077945709228516, + 12.255372047424316 + ], + "min":[ + 0.7414576411247253, + 24.84259796142578, + 2.517822265625 + ], + "type":"VEC3" + }, + { + "bufferView":1673, + "componentType":5126, + "count":1800, + "type":"VEC3" + }, + { + "bufferView":1674, + "componentType":5126, + "count":1800, + "type":"VEC2" + }, + { + "bufferView":1675, + "componentType":5126, + "count":1800, + "type":"VEC2" + }, + { + "bufferView":1676, + "componentType":5126, + "count":1800, + "type":"VEC4" + }, + { + "bufferView":1677, + "componentType":5121, + "count":1800, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1678, + "componentType":5123, + "count":1800, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1679, + "componentType":5123, + "count":1800, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1680, + "componentType":5123, + "count":3348, + "type":"SCALAR" + }, + { + "bufferView":1681, + "componentType":5126, + "count":42, + "max":[ + -0.25523871183395386, + 24.086036682128906, + 10.890411376953125 + ], + "min":[ + -0.30304452776908875, + 23.95079803466797, + 10.46875 + ], + "type":"VEC3" + }, + { + "bufferView":1682, + "componentType":5126, + "count":42, + "type":"VEC3" + }, + { + "bufferView":1683, + "componentType":5126, + "count":42, + "type":"VEC2" + }, + { + "bufferView":1684, + "componentType":5126, + "count":42, + "type":"VEC2" + }, + { + "bufferView":1685, + "componentType":5126, + "count":42, + "type":"VEC4" + }, + { + "bufferView":1686, + "componentType":5121, + "count":42, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1687, + "componentType":5123, + "count":42, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1688, + "componentType":5123, + "count":42, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1689, + "componentType":5126, + "count":56880, + "max":[ + 14.766000747680664, + 21.270523071289062, + 14.3308744430542 + ], + "min":[ + -14.686931610107422, + -30.459230422973633, + -14.283751487731934 + ], + "type":"VEC3" + }, + { + "bufferView":1690, + "componentType":5126, + "count":56880, + "type":"VEC3" + }, + { + "bufferView":1691, + "componentType":5126, + "count":56880, + "type":"VEC2" + }, + { + "bufferView":1692, + "componentType":5126, + "count":56880, + "type":"VEC2" + }, + { + "bufferView":1693, + "componentType":5126, + "count":56880, + "type":"VEC4" + }, + { + "bufferView":1694, + "componentType":5121, + "count":56880, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1695, + "componentType":5123, + "count":56880, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1696, + "componentType":5123, + "count":56880, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1697, + "componentType":5123, + "count":85320, + "type":"SCALAR" + }, + { + "bufferView":1698, + "componentType":5126, + "count":480, + "max":[ + 8.033271789550781, + 24.579452514648438, + 1.0462044477462769 + ], + "min":[ + 4.987392425537109, + 21.92969512939453, + -1.8713985681533813 + ], + "type":"VEC3" + }, + { + "bufferView":1699, + "componentType":5126, + "count":480, + "type":"VEC3" + }, + { + "bufferView":1700, + "componentType":5126, + "count":480, + "type":"VEC2" + }, + { + "bufferView":1701, + "componentType":5126, + "count":480, + "type":"VEC2" + }, + { + "bufferView":1702, + "componentType":5126, + "count":480, + "type":"VEC4" + }, + { + "bufferView":1703, + "componentType":5121, + "count":480, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1704, + "componentType":5123, + "count":480, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1705, + "componentType":5123, + "count":480, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1706, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":1707, + "componentType":5126, + "count":53730, + "max":[ + 14.791006088256836, + 25.257877349853516, + 14.355929374694824 + ], + "min":[ + -14.733478546142578, + -30.50922393798828, + -14.327605247497559 + ], + "type":"VEC3" + }, + { + "bufferView":1708, + "componentType":5126, + "count":53730, + "type":"VEC3" + }, + { + "bufferView":1709, + "componentType":5126, + "count":53730, + "type":"VEC2" + }, + { + "bufferView":1710, + "componentType":5126, + "count":53730, + "type":"VEC2" + }, + { + "bufferView":1711, + "componentType":5126, + "count":53730, + "type":"VEC4" + }, + { + "bufferView":1712, + "componentType":5121, + "count":53730, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1713, + "componentType":5123, + "count":53730, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1714, + "componentType":5123, + "count":53730, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1715, + "componentType":5123, + "count":114960, + "type":"SCALAR" + }, + { + "bufferView":1716, + "componentType":5126, + "count":104, + "max":[ + 12.255023002624512, + 33.60105895996094, + 12.887360572814941 + ], + "min":[ + 12.0275297164917, + 24.459590911865234, + 11.894623756408691 + ], + "type":"VEC3" + }, + { + "bufferView":1717, + "componentType":5126, + "count":104, + "type":"VEC3" + }, + { + "bufferView":1718, + "componentType":5126, + "count":104, + "type":"VEC2" + }, + { + "bufferView":1719, + "componentType":5126, + "count":104, + "type":"VEC2" + }, + { + "bufferView":1720, + "componentType":5126, + "count":104, + "type":"VEC4" + }, + { + "bufferView":1721, + "componentType":5121, + "count":104, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1722, + "componentType":5123, + "count":104, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1723, + "componentType":5123, + "count":104, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1724, + "componentType":5123, + "count":288, + "type":"SCALAR" + }, + { + "bufferView":1725, + "componentType":5126, + "count":2448, + "max":[ + 12.406805992126465, + 33.60105895996094, + 13.039155006408691 + ], + "min":[ + -2.2847607135772705, + 20.489303588867188, + -2.298980236053467 + ], + "type":"VEC3" + }, + { + "bufferView":1726, + "componentType":5126, + "count":2448, + "type":"VEC3" + }, + { + "bufferView":1727, + "componentType":5126, + "count":2448, + "type":"VEC2" + }, + { + "bufferView":1728, + "componentType":5126, + "count":2448, + "type":"VEC2" + }, + { + "bufferView":1729, + "componentType":5126, + "count":2448, + "type":"VEC4" + }, + { + "bufferView":1730, + "componentType":5121, + "count":2448, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1731, + "componentType":5123, + "count":2448, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1732, + "componentType":5123, + "count":2448, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1733, + "componentType":5123, + "count":6288, + "type":"SCALAR" + }, + { + "bufferView":1734, + "componentType":5126, + "count":594, + "max":[ + 6.575267791748047, + 28.906314849853516, + 1.5710453987121582 + ], + "min":[ + -4.249858379364014, + 21.81037139892578, + -5.397186756134033 + ], + "type":"VEC3" + }, + { + "bufferView":1735, + "componentType":5126, + "count":594, + "type":"VEC3" + }, + { + "bufferView":1736, + "componentType":5126, + "count":594, + "type":"VEC2" + }, + { + "bufferView":1737, + "componentType":5126, + "count":594, + "type":"VEC2" + }, + { + "bufferView":1738, + "componentType":5126, + "count":594, + "type":"VEC4" + }, + { + "bufferView":1739, + "componentType":5121, + "count":594, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1740, + "componentType":5123, + "count":594, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1741, + "componentType":5123, + "count":594, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1742, + "componentType":5123, + "count":2268, + "type":"SCALAR" + }, + { + "bufferView":1743, + "componentType":5126, + "count":2210, + "max":[ + 8.602375030517578, + 25.073463439941406, + 11.796418190002441 + ], + "min":[ + 0.3013608157634735, + 21.821128845214844, + 2.530791997909546 + ], + "type":"VEC3" + }, + { + "bufferView":1744, + "componentType":5126, + "count":2210, + "type":"VEC3" + }, + { + "bufferView":1745, + "componentType":5126, + "count":2210, + "type":"VEC2" + }, + { + "bufferView":1746, + "componentType":5126, + "count":2210, + "type":"VEC2" + }, + { + "bufferView":1747, + "componentType":5126, + "count":2210, + "type":"VEC4" + }, + { + "bufferView":1748, + "componentType":5121, + "count":2210, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1749, + "componentType":5123, + "count":2210, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1750, + "componentType":5123, + "count":2210, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1751, + "componentType":5123, + "count":8556, + "type":"SCALAR" + }, + { + "bufferView":1752, + "componentType":5126, + "count":249, + "max":[ + 14.269112586975098, + 28.418968200683594, + 13.834015846252441 + ], + "min":[ + -13.71523666381836, + 21.93634796142578, + -13.526152610778809 + ], + "type":"VEC3" + }, + { + "bufferView":1753, + "componentType":5126, + "count":249, + "type":"VEC3" + }, + { + "bufferView":1754, + "componentType":5126, + "count":249, + "type":"VEC2" + }, + { + "bufferView":1755, + "componentType":5126, + "count":249, + "type":"VEC2" + }, + { + "bufferView":1756, + "componentType":5126, + "count":249, + "type":"VEC4" + }, + { + "bufferView":1757, + "componentType":5121, + "count":249, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1758, + "componentType":5123, + "count":249, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1759, + "componentType":5123, + "count":249, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1760, + "componentType":5123, + "count":768, + "type":"SCALAR" + }, + { + "bufferView":1761, + "componentType":5126, + "count":730, + "max":[ + 14.931988716125488, + 25.490737915039062, + 14.49707317352295 + ], + "min":[ + -14.93197250366211, + -33.60105895996094, + -14.497069358825684 + ], + "type":"VEC3" + }, + { + "bufferView":1762, + "componentType":5126, + "count":730, + "type":"VEC3" + }, + { + "bufferView":1763, + "componentType":5126, + "count":730, + "type":"VEC2" + }, + { + "bufferView":1764, + "componentType":5126, + "count":730, + "type":"VEC2" + }, + { + "bufferView":1765, + "componentType":5126, + "count":730, + "type":"VEC4" + }, + { + "bufferView":1766, + "componentType":5121, + "count":730, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1767, + "componentType":5123, + "count":730, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1768, + "componentType":5123, + "count":730, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1769, + "componentType":5123, + "count":1338, + "type":"SCALAR" + }, + { + "bufferView":1770, + "componentType":5126, + "count":137, + "max":[ + 8.000507354736328, + 27.613059997558594, + 1.0844427347183228 + ], + "min":[ + 5.049716949462891, + 21.86548614501953, + -1.8663325309753418 + ], + "type":"VEC3" + }, + { + "bufferView":1771, + "componentType":5126, + "count":137, + "type":"VEC3" + }, + { + "bufferView":1772, + "componentType":5126, + "count":137, + "type":"VEC2" + }, + { + "bufferView":1773, + "componentType":5126, + "count":137, + "type":"VEC2" + }, + { + "bufferView":1774, + "componentType":5126, + "count":137, + "type":"VEC4" + }, + { + "bufferView":1775, + "componentType":5121, + "count":137, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1776, + "componentType":5123, + "count":137, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1777, + "componentType":5123, + "count":137, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1778, + "componentType":5123, + "count":432, + "type":"SCALAR" + }, + { + "bufferView":1779, + "componentType":5126, + "count":49856, + "max":[ + 13.510247230529785, + 26.430431365966797, + 11.372681617736816 + ], + "min":[ + -10.261066436767578, + 21.721099853515625, + -10.958006858825684 + ], + "type":"VEC3" + }, + { + "bufferView":1780, + "componentType":5126, + "count":49856, + "type":"VEC3" + }, + { + "bufferView":1781, + "componentType":5126, + "count":49856, + "type":"VEC2" + }, + { + "bufferView":1782, + "componentType":5126, + "count":49856, + "type":"VEC2" + }, + { + "bufferView":1783, + "componentType":5126, + "count":49856, + "type":"VEC4" + }, + { + "bufferView":1784, + "componentType":5121, + "count":49856, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1785, + "componentType":5123, + "count":49856, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1786, + "componentType":5123, + "count":49856, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1787, + "componentType":5126, + "count":678, + "max":[ + 14.931988716125488, + 25.64873504638672, + 14.49707317352295 + ], + "min":[ + -14.931987762451172, + -32.055145263671875, + -14.497069358825684 + ], + "type":"VEC3" + }, + { + "bufferView":1788, + "componentType":5126, + "count":678, + "type":"VEC3" + }, + { + "bufferView":1789, + "componentType":5126, + "count":678, + "type":"VEC2" + }, + { + "bufferView":1790, + "componentType":5126, + "count":678, + "type":"VEC2" + }, + { + "bufferView":1791, + "componentType":5126, + "count":678, + "type":"VEC4" + }, + { + "bufferView":1792, + "componentType":5121, + "count":678, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1793, + "componentType":5123, + "count":678, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1794, + "componentType":5123, + "count":678, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1795, + "componentType":5126, + "count":1800, + "max":[ + 4.401515007019043, + 27.077945709228516, + 12.255372047424316 + ], + "min":[ + 0.7414576411247253, + 24.84259796142578, + 2.517822265625 + ], + "type":"VEC3" + }, + { + "bufferView":1796, + "componentType":5126, + "count":1800, + "type":"VEC3" + }, + { + "bufferView":1797, + "componentType":5126, + "count":1800, + "type":"VEC2" + }, + { + "bufferView":1798, + "componentType":5126, + "count":1800, + "type":"VEC2" + }, + { + "bufferView":1799, + "componentType":5126, + "count":1800, + "type":"VEC4" + }, + { + "bufferView":1800, + "componentType":5121, + "count":1800, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1801, + "componentType":5123, + "count":1800, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1802, + "componentType":5123, + "count":1800, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1803, + "componentType":5126, + "count":42, + "max":[ + -0.25523871183395386, + 24.086036682128906, + 10.890411376953125 + ], + "min":[ + -0.30304452776908875, + 23.95079803466797, + 10.46875 + ], + "type":"VEC3" + }, + { + "bufferView":1804, + "componentType":5126, + "count":42, + "type":"VEC3" + }, + { + "bufferView":1805, + "componentType":5126, + "count":42, + "type":"VEC2" + }, + { + "bufferView":1806, + "componentType":5126, + "count":42, + "type":"VEC2" + }, + { + "bufferView":1807, + "componentType":5126, + "count":42, + "type":"VEC4" + }, + { + "bufferView":1808, + "componentType":5121, + "count":42, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1809, + "componentType":5123, + "count":42, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1810, + "componentType":5123, + "count":42, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1811, + "componentType":5126, + "count":56880, + "max":[ + 14.766000747680664, + 21.270523071289062, + 14.3308744430542 + ], + "min":[ + -14.686931610107422, + -30.459230422973633, + -14.283751487731934 + ], + "type":"VEC3" + }, + { + "bufferView":1812, + "componentType":5126, + "count":56880, + "type":"VEC3" + }, + { + "bufferView":1813, + "componentType":5126, + "count":56880, + "type":"VEC2" + }, + { + "bufferView":1814, + "componentType":5126, + "count":56880, + "type":"VEC2" + }, + { + "bufferView":1815, + "componentType":5126, + "count":56880, + "type":"VEC4" + }, + { + "bufferView":1816, + "componentType":5121, + "count":56880, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1817, + "componentType":5123, + "count":56880, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1818, + "componentType":5123, + "count":56880, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1819, + "componentType":5126, + "count":480, + "max":[ + 8.033271789550781, + 24.579452514648438, + 1.0462044477462769 + ], + "min":[ + 4.987392425537109, + 21.92969512939453, + -1.8713985681533813 + ], + "type":"VEC3" + }, + { + "bufferView":1820, + "componentType":5126, + "count":480, + "type":"VEC3" + }, + { + "bufferView":1821, + "componentType":5126, + "count":480, + "type":"VEC2" + }, + { + "bufferView":1822, + "componentType":5126, + "count":480, + "type":"VEC2" + }, + { + "bufferView":1823, + "componentType":5126, + "count":480, + "type":"VEC4" + }, + { + "bufferView":1824, + "componentType":5121, + "count":480, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1825, + "componentType":5123, + "count":480, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1826, + "componentType":5123, + "count":480, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1827, + "componentType":5126, + "count":53730, + "max":[ + 14.791006088256836, + 25.257877349853516, + 14.355929374694824 + ], + "min":[ + -14.733478546142578, + -30.50922393798828, + -14.327605247497559 + ], + "type":"VEC3" + }, + { + "bufferView":1828, + "componentType":5126, + "count":53730, + "type":"VEC3" + }, + { + "bufferView":1829, + "componentType":5126, + "count":53730, + "type":"VEC2" + }, + { + "bufferView":1830, + "componentType":5126, + "count":53730, + "type":"VEC2" + }, + { + "bufferView":1831, + "componentType":5126, + "count":53730, + "type":"VEC4" + }, + { + "bufferView":1832, + "componentType":5121, + "count":53730, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1833, + "componentType":5123, + "count":53730, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1834, + "componentType":5123, + "count":53730, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1835, + "componentType":5126, + "count":104, + "max":[ + 12.255023002624512, + 33.60105895996094, + 12.887360572814941 + ], + "min":[ + 12.0275297164917, + 24.459590911865234, + 11.894623756408691 + ], + "type":"VEC3" + }, + { + "bufferView":1836, + "componentType":5126, + "count":104, + "type":"VEC3" + }, + { + "bufferView":1837, + "componentType":5126, + "count":104, + "type":"VEC2" + }, + { + "bufferView":1838, + "componentType":5126, + "count":104, + "type":"VEC2" + }, + { + "bufferView":1839, + "componentType":5126, + "count":104, + "type":"VEC4" + }, + { + "bufferView":1840, + "componentType":5121, + "count":104, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1841, + "componentType":5123, + "count":104, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1842, + "componentType":5123, + "count":104, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1843, + "componentType":5126, + "count":2448, + "max":[ + 12.406805992126465, + 33.60105895996094, + 13.039155006408691 + ], + "min":[ + -2.2847607135772705, + 20.489303588867188, + -2.298980236053467 + ], + "type":"VEC3" + }, + { + "bufferView":1844, + "componentType":5126, + "count":2448, + "type":"VEC3" + }, + { + "bufferView":1845, + "componentType":5126, + "count":2448, + "type":"VEC2" + }, + { + "bufferView":1846, + "componentType":5126, + "count":2448, + "type":"VEC2" + }, + { + "bufferView":1847, + "componentType":5126, + "count":2448, + "type":"VEC4" + }, + { + "bufferView":1848, + "componentType":5121, + "count":2448, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1849, + "componentType":5123, + "count":2448, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1850, + "componentType":5123, + "count":2448, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1851, + "componentType":5126, + "count":594, + "max":[ + 6.575267791748047, + 28.906314849853516, + 1.5710453987121582 + ], + "min":[ + -4.249858379364014, + 21.81037139892578, + -5.397186756134033 + ], + "type":"VEC3" + }, + { + "bufferView":1852, + "componentType":5126, + "count":594, + "type":"VEC3" + }, + { + "bufferView":1853, + "componentType":5126, + "count":594, + "type":"VEC2" + }, + { + "bufferView":1854, + "componentType":5126, + "count":594, + "type":"VEC2" + }, + { + "bufferView":1855, + "componentType":5126, + "count":594, + "type":"VEC4" + }, + { + "bufferView":1856, + "componentType":5121, + "count":594, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1857, + "componentType":5123, + "count":594, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1858, + "componentType":5123, + "count":594, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1859, + "componentType":5126, + "count":2210, + "max":[ + 8.602375030517578, + 25.073463439941406, + 11.796418190002441 + ], + "min":[ + 0.3013608157634735, + 21.821128845214844, + 2.530791997909546 + ], + "type":"VEC3" + }, + { + "bufferView":1860, + "componentType":5126, + "count":2210, + "type":"VEC3" + }, + { + "bufferView":1861, + "componentType":5126, + "count":2210, + "type":"VEC2" + }, + { + "bufferView":1862, + "componentType":5126, + "count":2210, + "type":"VEC2" + }, + { + "bufferView":1863, + "componentType":5126, + "count":2210, + "type":"VEC4" + }, + { + "bufferView":1864, + "componentType":5121, + "count":2210, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1865, + "componentType":5123, + "count":2210, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1866, + "componentType":5123, + "count":2210, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1867, + "componentType":5126, + "count":249, + "max":[ + 14.269112586975098, + 28.418968200683594, + 13.834015846252441 + ], + "min":[ + -13.71523666381836, + 21.93634796142578, + -13.526152610778809 + ], + "type":"VEC3" + }, + { + "bufferView":1868, + "componentType":5126, + "count":249, + "type":"VEC3" + }, + { + "bufferView":1869, + "componentType":5126, + "count":249, + "type":"VEC2" + }, + { + "bufferView":1870, + "componentType":5126, + "count":249, + "type":"VEC2" + }, + { + "bufferView":1871, + "componentType":5126, + "count":249, + "type":"VEC4" + }, + { + "bufferView":1872, + "componentType":5121, + "count":249, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1873, + "componentType":5123, + "count":249, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1874, + "componentType":5123, + "count":249, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1875, + "componentType":5126, + "count":730, + "max":[ + 14.931988716125488, + 25.490737915039062, + 14.49707317352295 + ], + "min":[ + -14.93197250366211, + -33.60105895996094, + -14.497069358825684 + ], + "type":"VEC3" + }, + { + "bufferView":1876, + "componentType":5126, + "count":730, + "type":"VEC3" + }, + { + "bufferView":1877, + "componentType":5126, + "count":730, + "type":"VEC2" + }, + { + "bufferView":1878, + "componentType":5126, + "count":730, + "type":"VEC2" + }, + { + "bufferView":1879, + "componentType":5126, + "count":730, + "type":"VEC4" + }, + { + "bufferView":1880, + "componentType":5121, + "count":730, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1881, + "componentType":5123, + "count":730, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1882, + "componentType":5123, + "count":730, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1883, + "componentType":5126, + "count":137, + "max":[ + 8.000507354736328, + 27.613059997558594, + 1.0844427347183228 + ], + "min":[ + 5.049716949462891, + 21.86548614501953, + -1.8663325309753418 + ], + "type":"VEC3" + }, + { + "bufferView":1884, + "componentType":5126, + "count":137, + "type":"VEC3" + }, + { + "bufferView":1885, + "componentType":5126, + "count":137, + "type":"VEC2" + }, + { + "bufferView":1886, + "componentType":5126, + "count":137, + "type":"VEC2" + }, + { + "bufferView":1887, + "componentType":5126, + "count":137, + "type":"VEC4" + }, + { + "bufferView":1888, + "componentType":5121, + "count":137, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1889, + "componentType":5123, + "count":137, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1890, + "componentType":5123, + "count":137, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1891, + "componentType":5126, + "count":412, + "max":[ + 3.584502935409546, + -5.339991092681885, + 2.2164998054504395 + ], + "min":[ + -6.327300548553467, + -5.63999080657959, + -3.042564630508423 + ], + "type":"VEC3" + }, + { + "bufferView":1892, + "componentType":5126, + "count":412, + "type":"VEC3" + }, + { + "bufferView":1893, + "componentType":5126, + "count":412, + "type":"VEC2" + }, + { + "bufferView":1894, + "componentType":5126, + "count":412, + "type":"VEC2" + }, + { + "bufferView":1895, + "componentType":5126, + "count":412, + "type":"VEC4" + }, + { + "bufferView":1896, + "componentType":5121, + "count":412, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1897, + "componentType":5123, + "count":412, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1898, + "componentType":5123, + "count":412, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1899, + "componentType":5123, + "count":1152, + "type":"SCALAR" + }, + { + "bufferView":1900, + "componentType":5126, + "count":98, + "max":[ + 3.448646306991577, + -5.49106502532959, + 2.0806355476379395 + ], + "min":[ + -6.191443920135498, + -5.49106502532959, + -2.906700372695923 + ], + "type":"VEC3" + }, + { + "bufferView":1901, + "componentType":5126, + "count":98, + "type":"VEC3" + }, + { + "bufferView":1902, + "componentType":5126, + "count":98, + "type":"VEC2" + }, + { + "bufferView":1903, + "componentType":5126, + "count":98, + "type":"VEC2" + }, + { + "bufferView":1904, + "componentType":5126, + "count":98, + "type":"VEC4" + }, + { + "bufferView":1905, + "componentType":5121, + "count":98, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1906, + "componentType":5123, + "count":98, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1907, + "componentType":5123, + "count":98, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1908, + "componentType":5123, + "count":432, + "type":"SCALAR" + }, + { + "bufferView":1909, + "componentType":5126, + "count":81535, + "max":[ + 9.716804504394531, + 5.722339630126953, + 7.543175220489502 + ], + "min":[ + -9.768119812011719, + -5.7310380935668945, + -7.648827075958252 + ], + "type":"VEC3" + }, + { + "bufferView":1910, + "componentType":5126, + "count":81535, + "type":"VEC3" + }, + { + "bufferView":1911, + "componentType":5126, + "count":81535, + "type":"VEC2" + }, + { + "bufferView":1912, + "componentType":5126, + "count":81535, + "type":"VEC2" + }, + { + "bufferView":1913, + "componentType":5126, + "count":81535, + "type":"VEC4" + }, + { + "bufferView":1914, + "componentType":5121, + "count":81535, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1915, + "componentType":5123, + "count":81535, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1916, + "componentType":5123, + "count":81535, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1917, + "componentType":5125, + "count":262917, + "type":"SCALAR" + }, + { + "bufferView":1918, + "componentType":5126, + "count":47755, + "max":[ + 10.082344055175781, + 5.7310380935668945, + 7.981132984161377 + ], + "min":[ + -10.08233642578125, + -3.9112954139709473, + -7.981132984161377 + ], + "type":"VEC3" + }, + { + "bufferView":1919, + "componentType":5126, + "count":47755, + "type":"VEC3" + }, + { + "bufferView":1920, + "componentType":5126, + "count":47755, + "type":"VEC2" + }, + { + "bufferView":1921, + "componentType":5126, + "count":47755, + "type":"VEC2" + }, + { + "bufferView":1922, + "componentType":5126, + "count":47755, + "type":"VEC4" + }, + { + "bufferView":1923, + "componentType":5121, + "count":47755, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1924, + "componentType":5123, + "count":47755, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1925, + "componentType":5123, + "count":47755, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1926, + "componentType":5123, + "count":85959, + "type":"SCALAR" + }, + { + "bufferView":1927, + "componentType":5126, + "count":412, + "max":[ + 3.584502935409546, + -5.339991092681885, + 2.2164998054504395 + ], + "min":[ + -6.327300548553467, + -5.63999080657959, + -3.042564630508423 + ], + "type":"VEC3" + }, + { + "bufferView":1928, + "componentType":5126, + "count":412, + "type":"VEC3" + }, + { + "bufferView":1929, + "componentType":5126, + "count":412, + "type":"VEC2" + }, + { + "bufferView":1930, + "componentType":5126, + "count":412, + "type":"VEC2" + }, + { + "bufferView":1931, + "componentType":5126, + "count":412, + "type":"VEC4" + }, + { + "bufferView":1932, + "componentType":5121, + "count":412, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1933, + "componentType":5123, + "count":412, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1934, + "componentType":5123, + "count":412, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1935, + "componentType":5126, + "count":98, + "max":[ + 3.448646306991577, + -5.49106502532959, + 2.0806355476379395 + ], + "min":[ + -6.191443920135498, + -5.49106502532959, + -2.906700372695923 + ], + "type":"VEC3" + }, + { + "bufferView":1936, + "componentType":5126, + "count":98, + "type":"VEC3" + }, + { + "bufferView":1937, + "componentType":5126, + "count":98, + "type":"VEC2" + }, + { + "bufferView":1938, + "componentType":5126, + "count":98, + "type":"VEC2" + }, + { + "bufferView":1939, + "componentType":5126, + "count":98, + "type":"VEC4" + }, + { + "bufferView":1940, + "componentType":5121, + "count":98, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1941, + "componentType":5123, + "count":98, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1942, + "componentType":5123, + "count":98, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1943, + "componentType":5126, + "count":81535, + "max":[ + 9.716804504394531, + 5.722339630126953, + 7.543175220489502 + ], + "min":[ + -9.768119812011719, + -5.7310380935668945, + -7.648827075958252 + ], + "type":"VEC3" + }, + { + "bufferView":1944, + "componentType":5126, + "count":81535, + "type":"VEC3" + }, + { + "bufferView":1945, + "componentType":5126, + "count":81535, + "type":"VEC2" + }, + { + "bufferView":1946, + "componentType":5126, + "count":81535, + "type":"VEC2" + }, + { + "bufferView":1947, + "componentType":5126, + "count":81535, + "type":"VEC4" + }, + { + "bufferView":1948, + "componentType":5121, + "count":81535, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1949, + "componentType":5123, + "count":81535, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1950, + "componentType":5123, + "count":81535, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1951, + "componentType":5126, + "count":47755, + "max":[ + 10.082344055175781, + 5.7310380935668945, + 7.981132984161377 + ], + "min":[ + -10.08233642578125, + -3.9112954139709473, + -7.981132984161377 + ], + "type":"VEC3" + }, + { + "bufferView":1952, + "componentType":5126, + "count":47755, + "type":"VEC3" + }, + { + "bufferView":1953, + "componentType":5126, + "count":47755, + "type":"VEC2" + }, + { + "bufferView":1954, + "componentType":5126, + "count":47755, + "type":"VEC2" + }, + { + "bufferView":1955, + "componentType":5126, + "count":47755, + "type":"VEC4" + }, + { + "bufferView":1956, + "componentType":5121, + "count":47755, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1957, + "componentType":5123, + "count":47755, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1958, + "componentType":5123, + "count":47755, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1959, + "componentType":5126, + "count":412, + "max":[ + 3.584502935409546, + -5.339991092681885, + 2.2164998054504395 + ], + "min":[ + -6.327300548553467, + -5.63999080657959, + -3.042564630508423 + ], + "type":"VEC3" + }, + { + "bufferView":1960, + "componentType":5126, + "count":412, + "type":"VEC3" + }, + { + "bufferView":1961, + "componentType":5126, + "count":412, + "type":"VEC2" + }, + { + "bufferView":1962, + "componentType":5126, + "count":412, + "type":"VEC2" + }, + { + "bufferView":1963, + "componentType":5126, + "count":412, + "type":"VEC4" + }, + { + "bufferView":1964, + "componentType":5121, + "count":412, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1965, + "componentType":5123, + "count":412, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1966, + "componentType":5123, + "count":412, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1967, + "componentType":5126, + "count":98, + "max":[ + 3.448646306991577, + -5.49106502532959, + 2.0806355476379395 + ], + "min":[ + -6.191443920135498, + -5.49106502532959, + -2.906700372695923 + ], + "type":"VEC3" + }, + { + "bufferView":1968, + "componentType":5126, + "count":98, + "type":"VEC3" + }, + { + "bufferView":1969, + "componentType":5126, + "count":98, + "type":"VEC2" + }, + { + "bufferView":1970, + "componentType":5126, + "count":98, + "type":"VEC2" + }, + { + "bufferView":1971, + "componentType":5126, + "count":98, + "type":"VEC4" + }, + { + "bufferView":1972, + "componentType":5121, + "count":98, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1973, + "componentType":5123, + "count":98, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1974, + "componentType":5123, + "count":98, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1975, + "componentType":5126, + "count":81535, + "max":[ + 9.716804504394531, + 5.722339630126953, + 7.543175220489502 + ], + "min":[ + -9.768119812011719, + -5.7310380935668945, + -7.648827075958252 + ], + "type":"VEC3" + }, + { + "bufferView":1976, + "componentType":5126, + "count":81535, + "type":"VEC3" + }, + { + "bufferView":1977, + "componentType":5126, + "count":81535, + "type":"VEC2" + }, + { + "bufferView":1978, + "componentType":5126, + "count":81535, + "type":"VEC2" + }, + { + "bufferView":1979, + "componentType":5126, + "count":81535, + "type":"VEC4" + }, + { + "bufferView":1980, + "componentType":5121, + "count":81535, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1981, + "componentType":5123, + "count":81535, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1982, + "componentType":5123, + "count":81535, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1983, + "componentType":5126, + "count":47755, + "max":[ + 10.082344055175781, + 5.7310380935668945, + 7.981132984161377 + ], + "min":[ + -10.08233642578125, + -3.9112954139709473, + -7.981132984161377 + ], + "type":"VEC3" + }, + { + "bufferView":1984, + "componentType":5126, + "count":47755, + "type":"VEC3" + }, + { + "bufferView":1985, + "componentType":5126, + "count":47755, + "type":"VEC2" + }, + { + "bufferView":1986, + "componentType":5126, + "count":47755, + "type":"VEC2" + }, + { + "bufferView":1987, + "componentType":5126, + "count":47755, + "type":"VEC4" + }, + { + "bufferView":1988, + "componentType":5121, + "count":47755, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1989, + "componentType":5123, + "count":47755, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1990, + "componentType":5123, + "count":47755, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1991, + "componentType":5126, + "count":412, + "max":[ + 3.584502935409546, + -5.339991092681885, + 2.2164998054504395 + ], + "min":[ + -6.327300548553467, + -5.63999080657959, + -3.042564630508423 + ], + "type":"VEC3" + }, + { + "bufferView":1992, + "componentType":5126, + "count":412, + "type":"VEC3" + }, + { + "bufferView":1993, + "componentType":5126, + "count":412, + "type":"VEC2" + }, + { + "bufferView":1994, + "componentType":5126, + "count":412, + "type":"VEC2" + }, + { + "bufferView":1995, + "componentType":5126, + "count":412, + "type":"VEC4" + }, + { + "bufferView":1996, + "componentType":5121, + "count":412, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1997, + "componentType":5123, + "count":412, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1998, + "componentType":5123, + "count":412, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":1999, + "componentType":5126, + "count":98, + "max":[ + 3.448646306991577, + -5.49106502532959, + 2.0806355476379395 + ], + "min":[ + -6.191443920135498, + -5.49106502532959, + -2.906700372695923 + ], + "type":"VEC3" + }, + { + "bufferView":2000, + "componentType":5126, + "count":98, + "type":"VEC3" + }, + { + "bufferView":2001, + "componentType":5126, + "count":98, + "type":"VEC2" + }, + { + "bufferView":2002, + "componentType":5126, + "count":98, + "type":"VEC2" + }, + { + "bufferView":2003, + "componentType":5126, + "count":98, + "type":"VEC4" + }, + { + "bufferView":2004, + "componentType":5121, + "count":98, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":2005, + "componentType":5123, + "count":98, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":2006, + "componentType":5123, + "count":98, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":2007, + "componentType":5126, + "count":81535, + "max":[ + 9.716804504394531, + 5.722339630126953, + 7.543175220489502 + ], + "min":[ + -9.768119812011719, + -5.7310380935668945, + -7.648827075958252 + ], + "type":"VEC3" + }, + { + "bufferView":2008, + "componentType":5126, + "count":81535, + "type":"VEC3" + }, + { + "bufferView":2009, + "componentType":5126, + "count":81535, + "type":"VEC2" + }, + { + "bufferView":2010, + "componentType":5126, + "count":81535, + "type":"VEC2" + }, + { + "bufferView":2011, + "componentType":5126, + "count":81535, + "type":"VEC4" + }, + { + "bufferView":2012, + "componentType":5121, + "count":81535, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":2013, + "componentType":5123, + "count":81535, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":2014, + "componentType":5123, + "count":81535, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":2015, + "componentType":5126, + "count":47755, + "max":[ + 10.082344055175781, + 5.7310380935668945, + 7.981132984161377 + ], + "min":[ + -10.08233642578125, + -3.9112954139709473, + -7.981132984161377 + ], + "type":"VEC3" + }, + { + "bufferView":2016, + "componentType":5126, + "count":47755, + "type":"VEC3" + }, + { + "bufferView":2017, + "componentType":5126, + "count":47755, + "type":"VEC2" + }, + { + "bufferView":2018, + "componentType":5126, + "count":47755, + "type":"VEC2" + }, + { + "bufferView":2019, + "componentType":5126, + "count":47755, + "type":"VEC4" + }, + { + "bufferView":2020, + "componentType":5121, + "count":47755, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":2021, + "componentType":5123, + "count":47755, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":2022, + "componentType":5123, + "count":47755, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":2023, + "componentType":5126, + "count":412, + "max":[ + 3.584502935409546, + -5.339991092681885, + 2.2164998054504395 + ], + "min":[ + -6.327300548553467, + -5.63999080657959, + -3.042564630508423 + ], + "type":"VEC3" + }, + { + "bufferView":2024, + "componentType":5126, + "count":412, + "type":"VEC3" + }, + { + "bufferView":2025, + "componentType":5126, + "count":412, + "type":"VEC2" + }, + { + "bufferView":2026, + "componentType":5126, + "count":412, + "type":"VEC2" + }, + { + "bufferView":2027, + "componentType":5126, + "count":412, + "type":"VEC4" + }, + { + "bufferView":2028, + "componentType":5121, + "count":412, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":2029, + "componentType":5123, + "count":412, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":2030, + "componentType":5123, + "count":412, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":2031, + "componentType":5126, + "count":98, + "max":[ + 3.448646306991577, + -5.49106502532959, + 2.0806355476379395 + ], + "min":[ + -6.191443920135498, + -5.49106502532959, + -2.906700372695923 + ], + "type":"VEC3" + }, + { + "bufferView":2032, + "componentType":5126, + "count":98, + "type":"VEC3" + }, + { + "bufferView":2033, + "componentType":5126, + "count":98, + "type":"VEC2" + }, + { + "bufferView":2034, + "componentType":5126, + "count":98, + "type":"VEC2" + }, + { + "bufferView":2035, + "componentType":5126, + "count":98, + "type":"VEC4" + }, + { + "bufferView":2036, + "componentType":5121, + "count":98, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":2037, + "componentType":5123, + "count":98, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":2038, + "componentType":5123, + "count":98, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":2039, + "componentType":5126, + "count":81535, + "max":[ + 9.716804504394531, + 5.722339630126953, + 7.543175220489502 + ], + "min":[ + -9.768119812011719, + -5.7310380935668945, + -7.648827075958252 + ], + "type":"VEC3" + }, + { + "bufferView":2040, + "componentType":5126, + "count":81535, + "type":"VEC3" + }, + { + "bufferView":2041, + "componentType":5126, + "count":81535, + "type":"VEC2" + }, + { + "bufferView":2042, + "componentType":5126, + "count":81535, + "type":"VEC2" + }, + { + "bufferView":2043, + "componentType":5126, + "count":81535, + "type":"VEC4" + }, + { + "bufferView":2044, + "componentType":5121, + "count":81535, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":2045, + "componentType":5123, + "count":81535, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":2046, + "componentType":5123, + "count":81535, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":2047, + "componentType":5126, + "count":47755, + "max":[ + 10.082344055175781, + 5.7310380935668945, + 7.981132984161377 + ], + "min":[ + -10.08233642578125, + -3.9112954139709473, + -7.981132984161377 + ], + "type":"VEC3" + }, + { + "bufferView":2048, + "componentType":5126, + "count":47755, + "type":"VEC3" + }, + { + "bufferView":2049, + "componentType":5126, + "count":47755, + "type":"VEC2" + }, + { + "bufferView":2050, + "componentType":5126, + "count":47755, + "type":"VEC2" + }, + { + "bufferView":2051, + "componentType":5126, + "count":47755, + "type":"VEC4" + }, + { + "bufferView":2052, + "componentType":5121, + "count":47755, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":2053, + "componentType":5123, + "count":47755, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":2054, + "componentType":5123, + "count":47755, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":2055, + "componentType":5126, + "count":412, + "max":[ + 3.584502935409546, + -5.339991092681885, + 2.2164998054504395 + ], + "min":[ + -6.327300548553467, + -5.63999080657959, + -3.042564630508423 + ], + "type":"VEC3" + }, + { + "bufferView":2056, + "componentType":5126, + "count":412, + "type":"VEC3" + }, + { + "bufferView":2057, + "componentType":5126, + "count":412, + "type":"VEC2" + }, + { + "bufferView":2058, + "componentType":5126, + "count":412, + "type":"VEC2" + }, + { + "bufferView":2059, + "componentType":5126, + "count":412, + "type":"VEC4" + }, + { + "bufferView":2060, + "componentType":5121, + "count":412, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":2061, + "componentType":5123, + "count":412, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":2062, + "componentType":5123, + "count":412, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":2063, + "componentType":5126, + "count":98, + "max":[ + 3.448646306991577, + -5.49106502532959, + 2.0806355476379395 + ], + "min":[ + -6.191443920135498, + -5.49106502532959, + -2.906700372695923 + ], + "type":"VEC3" + }, + { + "bufferView":2064, + "componentType":5126, + "count":98, + "type":"VEC3" + }, + { + "bufferView":2065, + "componentType":5126, + "count":98, + "type":"VEC2" + }, + { + "bufferView":2066, + "componentType":5126, + "count":98, + "type":"VEC2" + }, + { + "bufferView":2067, + "componentType":5126, + "count":98, + "type":"VEC4" + }, + { + "bufferView":2068, + "componentType":5121, + "count":98, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":2069, + "componentType":5123, + "count":98, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":2070, + "componentType":5123, + "count":98, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":2071, + "componentType":5126, + "count":81535, + "max":[ + 9.716804504394531, + 5.722339630126953, + 7.543175220489502 + ], + "min":[ + -9.768119812011719, + -5.7310380935668945, + -7.648827075958252 + ], + "type":"VEC3" + }, + { + "bufferView":2072, + "componentType":5126, + "count":81535, + "type":"VEC3" + }, + { + "bufferView":2073, + "componentType":5126, + "count":81535, + "type":"VEC2" + }, + { + "bufferView":2074, + "componentType":5126, + "count":81535, + "type":"VEC2" + }, + { + "bufferView":2075, + "componentType":5126, + "count":81535, + "type":"VEC4" + }, + { + "bufferView":2076, + "componentType":5121, + "count":81535, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":2077, + "componentType":5123, + "count":81535, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":2078, + "componentType":5123, + "count":81535, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":2079, + "componentType":5126, + "count":47755, + "max":[ + 10.082344055175781, + 5.7310380935668945, + 7.981132984161377 + ], + "min":[ + -10.08233642578125, + -3.9112954139709473, + -7.981132984161377 + ], + "type":"VEC3" + }, + { + "bufferView":2080, + "componentType":5126, + "count":47755, + "type":"VEC3" + }, + { + "bufferView":2081, + "componentType":5126, + "count":47755, + "type":"VEC2" + }, + { + "bufferView":2082, + "componentType":5126, + "count":47755, + "type":"VEC2" + }, + { + "bufferView":2083, + "componentType":5126, + "count":47755, + "type":"VEC4" + }, + { + "bufferView":2084, + "componentType":5121, + "count":47755, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":2085, + "componentType":5123, + "count":47755, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":2086, + "componentType":5123, + "count":47755, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":2087, + "componentType":5126, + "count":412, + "max":[ + 3.584502935409546, + -5.339991092681885, + 2.2164998054504395 + ], + "min":[ + -6.327300548553467, + -5.63999080657959, + -3.042564630508423 + ], + "type":"VEC3" + }, + { + "bufferView":2088, + "componentType":5126, + "count":412, + "type":"VEC3" + }, + { + "bufferView":2089, + "componentType":5126, + "count":412, + "type":"VEC2" + }, + { + "bufferView":2090, + "componentType":5126, + "count":412, + "type":"VEC2" + }, + { + "bufferView":2091, + "componentType":5126, + "count":412, + "type":"VEC4" + }, + { + "bufferView":2092, + "componentType":5121, + "count":412, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":2093, + "componentType":5123, + "count":412, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":2094, + "componentType":5123, + "count":412, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":2095, + "componentType":5126, + "count":98, + "max":[ + 3.448646306991577, + -5.49106502532959, + 2.0806355476379395 + ], + "min":[ + -6.191443920135498, + -5.49106502532959, + -2.906700372695923 + ], + "type":"VEC3" + }, + { + "bufferView":2096, + "componentType":5126, + "count":98, + "type":"VEC3" + }, + { + "bufferView":2097, + "componentType":5126, + "count":98, + "type":"VEC2" + }, + { + "bufferView":2098, + "componentType":5126, + "count":98, + "type":"VEC2" + }, + { + "bufferView":2099, + "componentType":5126, + "count":98, + "type":"VEC4" + }, + { + "bufferView":2100, + "componentType":5121, + "count":98, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":2101, + "componentType":5123, + "count":98, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":2102, + "componentType":5123, + "count":98, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":2103, + "componentType":5126, + "count":81535, + "max":[ + 9.716804504394531, + 5.722339630126953, + 7.543175220489502 + ], + "min":[ + -9.768119812011719, + -5.7310380935668945, + -7.648827075958252 + ], + "type":"VEC3" + }, + { + "bufferView":2104, + "componentType":5126, + "count":81535, + "type":"VEC3" + }, + { + "bufferView":2105, + "componentType":5126, + "count":81535, + "type":"VEC2" + }, + { + "bufferView":2106, + "componentType":5126, + "count":81535, + "type":"VEC2" + }, + { + "bufferView":2107, + "componentType":5126, + "count":81535, + "type":"VEC4" + }, + { + "bufferView":2108, + "componentType":5121, + "count":81535, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":2109, + "componentType":5123, + "count":81535, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":2110, + "componentType":5123, + "count":81535, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":2111, + "componentType":5126, + "count":47755, + "max":[ + 10.082344055175781, + 5.7310380935668945, + 7.981132984161377 + ], + "min":[ + -10.08233642578125, + -3.9112954139709473, + -7.981132984161377 + ], + "type":"VEC3" + }, + { + "bufferView":2112, + "componentType":5126, + "count":47755, + "type":"VEC3" + }, + { + "bufferView":2113, + "componentType":5126, + "count":47755, + "type":"VEC2" + }, + { + "bufferView":2114, + "componentType":5126, + "count":47755, + "type":"VEC2" + }, + { + "bufferView":2115, + "componentType":5126, + "count":47755, + "type":"VEC4" + }, + { + "bufferView":2116, + "componentType":5121, + "count":47755, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":2117, + "componentType":5123, + "count":47755, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":2118, + "componentType":5123, + "count":47755, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":2119, + "componentType":5126, + "count":20, + "max":[ + 0.1784958839416504, + 0.3607751429080963, + 0.7400312423706055 + ], + "min":[ + -0.18242406845092773, + -0.4491453468799591, + -0.6324949264526367 + ], + "type":"VEC3" + }, + { + "bufferView":2120, + "componentType":5126, + "count":20, + "type":"VEC3" + }, + { + "bufferView":2121, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2122, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2123, + "componentType":5126, + "count":20, + "type":"VEC4" + }, + { + "bufferView":2124, + "componentType":5123, + "count":30, + "type":"SCALAR" + }, + { + "bufferView":2125, + "componentType":5126, + "count":12, + "max":[ + 0.13641119003295898, + 0.39668139815330505, + 0.8075838088989258 + ], + "min":[ + -0.13641119003295898, + 0.08890751004219055, + -0.6824979782104492 + ], + "type":"VEC3" + }, + { + "bufferView":2126, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":2127, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2128, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2129, + "componentType":5126, + "count":12, + "type":"VEC4" + }, + { + "bufferView":2130, + "componentType":5123, + "count":24, + "type":"SCALAR" + }, + { + "bufferView":2131, + "componentType":5126, + "count":2673, + "max":[ + 0.1385817527770996, + 0.5634288787841797, + 0.9818954467773438 + ], + "min":[ + -0.13892889022827148, + -0.5107336640357971, + -0.9818954467773438 + ], + "type":"VEC3" + }, + { + "bufferView":2132, + "componentType":5126, + "count":2673, + "type":"VEC3" + }, + { + "bufferView":2133, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2134, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2135, + "componentType":5126, + "count":2673, + "type":"VEC4" + }, + { + "bufferView":2136, + "componentType":5123, + "count":11640, + "type":"SCALAR" + }, + { + "bufferView":2137, + "componentType":5126, + "count":772, + "max":[ + 0.18532037734985352, + 0.43319180607795715, + 0.8225021362304688 + ], + "min":[ + -0.18532037734985352, + -0.5634289383888245, + -0.6974172592163086 + ], + "type":"VEC3" + }, + { + "bufferView":2138, + "componentType":5126, + "count":772, + "type":"VEC3" + }, + { + "bufferView":2139, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2140, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2141, + "componentType":5126, + "count":772, + "type":"VEC4" + }, + { + "bufferView":2142, + "componentType":5123, + "count":3768, + "type":"SCALAR" + }, + { + "bufferView":2143, + "componentType":5126, + "count":20, + "max":[ + 0.1784958839416504, + 0.3607751429080963, + 0.7400312423706055 + ], + "min":[ + -0.18242406845092773, + -0.4491453468799591, + -0.6324949264526367 + ], + "type":"VEC3" + }, + { + "bufferView":2144, + "componentType":5126, + "count":20, + "type":"VEC3" + }, + { + "bufferView":2145, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2146, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2147, + "componentType":5126, + "count":20, + "type":"VEC4" + }, + { + "bufferView":2148, + "componentType":5126, + "count":12, + "max":[ + 0.13641119003295898, + 0.39668139815330505, + 0.8075838088989258 + ], + "min":[ + -0.13641119003295898, + 0.08890751004219055, + -0.6824979782104492 + ], + "type":"VEC3" + }, + { + "bufferView":2149, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":2150, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2151, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2152, + "componentType":5126, + "count":12, + "type":"VEC4" + }, + { + "bufferView":2153, + "componentType":5126, + "count":2673, + "max":[ + 0.1385817527770996, + 0.5634288787841797, + 0.9818954467773438 + ], + "min":[ + -0.13892889022827148, + -0.5107336640357971, + -0.9818954467773438 + ], + "type":"VEC3" + }, + { + "bufferView":2154, + "componentType":5126, + "count":2673, + "type":"VEC3" + }, + { + "bufferView":2155, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2156, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2157, + "componentType":5126, + "count":2673, + "type":"VEC4" + }, + { + "bufferView":2158, + "componentType":5126, + "count":772, + "max":[ + 0.18532037734985352, + 0.43319180607795715, + 0.8225021362304688 + ], + "min":[ + -0.18532037734985352, + -0.5634289383888245, + -0.6974172592163086 + ], + "type":"VEC3" + }, + { + "bufferView":2159, + "componentType":5126, + "count":772, + "type":"VEC3" + }, + { + "bufferView":2160, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2161, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2162, + "componentType":5126, + "count":772, + "type":"VEC4" + }, + { + "bufferView":2163, + "componentType":5126, + "count":20, + "max":[ + 0.1784958839416504, + 0.3607751429080963, + 0.7400312423706055 + ], + "min":[ + -0.18242406845092773, + -0.4491453468799591, + -0.6324949264526367 + ], + "type":"VEC3" + }, + { + "bufferView":2164, + "componentType":5126, + "count":20, + "type":"VEC3" + }, + { + "bufferView":2165, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2166, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2167, + "componentType":5126, + "count":20, + "type":"VEC4" + }, + { + "bufferView":2168, + "componentType":5126, + "count":12, + "max":[ + 0.13641119003295898, + 0.39668139815330505, + 0.8075838088989258 + ], + "min":[ + -0.13641119003295898, + 0.08890751004219055, + -0.6824979782104492 + ], + "type":"VEC3" + }, + { + "bufferView":2169, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":2170, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2171, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2172, + "componentType":5126, + "count":12, + "type":"VEC4" + }, + { + "bufferView":2173, + "componentType":5126, + "count":2673, + "max":[ + 0.1385817527770996, + 0.5634288787841797, + 0.9818954467773438 + ], + "min":[ + -0.13892889022827148, + -0.5107336640357971, + -0.9818954467773438 + ], + "type":"VEC3" + }, + { + "bufferView":2174, + "componentType":5126, + "count":2673, + "type":"VEC3" + }, + { + "bufferView":2175, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2176, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2177, + "componentType":5126, + "count":2673, + "type":"VEC4" + }, + { + "bufferView":2178, + "componentType":5126, + "count":772, + "max":[ + 0.18532037734985352, + 0.43319180607795715, + 0.8225021362304688 + ], + "min":[ + -0.18532037734985352, + -0.5634289383888245, + -0.6974172592163086 + ], + "type":"VEC3" + }, + { + "bufferView":2179, + "componentType":5126, + "count":772, + "type":"VEC3" + }, + { + "bufferView":2180, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2181, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2182, + "componentType":5126, + "count":772, + "type":"VEC4" + }, + { + "bufferView":2183, + "componentType":5126, + "count":20, + "max":[ + 0.1784958839416504, + 0.3607751429080963, + 0.7400312423706055 + ], + "min":[ + -0.18242406845092773, + -0.4491453468799591, + -0.6324949264526367 + ], + "type":"VEC3" + }, + { + "bufferView":2184, + "componentType":5126, + "count":20, + "type":"VEC3" + }, + { + "bufferView":2185, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2186, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2187, + "componentType":5126, + "count":20, + "type":"VEC4" + }, + { + "bufferView":2188, + "componentType":5126, + "count":12, + "max":[ + 0.13641119003295898, + 0.39668139815330505, + 0.8075838088989258 + ], + "min":[ + -0.13641119003295898, + 0.08890751004219055, + -0.6824979782104492 + ], + "type":"VEC3" + }, + { + "bufferView":2189, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":2190, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2191, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2192, + "componentType":5126, + "count":12, + "type":"VEC4" + }, + { + "bufferView":2193, + "componentType":5126, + "count":2673, + "max":[ + 0.1385817527770996, + 0.5634288787841797, + 0.9818954467773438 + ], + "min":[ + -0.13892889022827148, + -0.5107336640357971, + -0.9818954467773438 + ], + "type":"VEC3" + }, + { + "bufferView":2194, + "componentType":5126, + "count":2673, + "type":"VEC3" + }, + { + "bufferView":2195, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2196, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2197, + "componentType":5126, + "count":2673, + "type":"VEC4" + }, + { + "bufferView":2198, + "componentType":5126, + "count":772, + "max":[ + 0.18532037734985352, + 0.43319180607795715, + 0.8225021362304688 + ], + "min":[ + -0.18532037734985352, + -0.5634289383888245, + -0.6974172592163086 + ], + "type":"VEC3" + }, + { + "bufferView":2199, + "componentType":5126, + "count":772, + "type":"VEC3" + }, + { + "bufferView":2200, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2201, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2202, + "componentType":5126, + "count":772, + "type":"VEC4" + }, + { + "bufferView":2203, + "componentType":5126, + "count":20, + "max":[ + 0.1784958839416504, + 0.3607751429080963, + 0.7400312423706055 + ], + "min":[ + -0.18242406845092773, + -0.4491453468799591, + -0.6324949264526367 + ], + "type":"VEC3" + }, + { + "bufferView":2204, + "componentType":5126, + "count":20, + "type":"VEC3" + }, + { + "bufferView":2205, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2206, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2207, + "componentType":5126, + "count":20, + "type":"VEC4" + }, + { + "bufferView":2208, + "componentType":5126, + "count":12, + "max":[ + 0.13641119003295898, + 0.39668139815330505, + 0.8075838088989258 + ], + "min":[ + -0.13641119003295898, + 0.08890751004219055, + -0.6824979782104492 + ], + "type":"VEC3" + }, + { + "bufferView":2209, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":2210, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2211, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2212, + "componentType":5126, + "count":12, + "type":"VEC4" + }, + { + "bufferView":2213, + "componentType":5126, + "count":2673, + "max":[ + 0.1385817527770996, + 0.5634288787841797, + 0.9818954467773438 + ], + "min":[ + -0.13892889022827148, + -0.5107336640357971, + -0.9818954467773438 + ], + "type":"VEC3" + }, + { + "bufferView":2214, + "componentType":5126, + "count":2673, + "type":"VEC3" + }, + { + "bufferView":2215, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2216, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2217, + "componentType":5126, + "count":2673, + "type":"VEC4" + }, + { + "bufferView":2218, + "componentType":5126, + "count":772, + "max":[ + 0.18532037734985352, + 0.43319180607795715, + 0.8225021362304688 + ], + "min":[ + -0.18532037734985352, + -0.5634289383888245, + -0.6974172592163086 + ], + "type":"VEC3" + }, + { + "bufferView":2219, + "componentType":5126, + "count":772, + "type":"VEC3" + }, + { + "bufferView":2220, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2221, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2222, + "componentType":5126, + "count":772, + "type":"VEC4" + }, + { + "bufferView":2223, + "componentType":5126, + "count":20, + "max":[ + 0.1784958839416504, + 0.3607751429080963, + 0.7400312423706055 + ], + "min":[ + -0.18242406845092773, + -0.4491453468799591, + -0.6324949264526367 + ], + "type":"VEC3" + }, + { + "bufferView":2224, + "componentType":5126, + "count":20, + "type":"VEC3" + }, + { + "bufferView":2225, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2226, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2227, + "componentType":5126, + "count":20, + "type":"VEC4" + }, + { + "bufferView":2228, + "componentType":5126, + "count":12, + "max":[ + 0.13641119003295898, + 0.39668139815330505, + 0.8075838088989258 + ], + "min":[ + -0.13641119003295898, + 0.08890751004219055, + -0.6824979782104492 + ], + "type":"VEC3" + }, + { + "bufferView":2229, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":2230, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2231, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2232, + "componentType":5126, + "count":12, + "type":"VEC4" + }, + { + "bufferView":2233, + "componentType":5126, + "count":2673, + "max":[ + 0.1385817527770996, + 0.5634288787841797, + 0.9818954467773438 + ], + "min":[ + -0.13892889022827148, + -0.5107336640357971, + -0.9818954467773438 + ], + "type":"VEC3" + }, + { + "bufferView":2234, + "componentType":5126, + "count":2673, + "type":"VEC3" + }, + { + "bufferView":2235, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2236, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2237, + "componentType":5126, + "count":2673, + "type":"VEC4" + }, + { + "bufferView":2238, + "componentType":5126, + "count":772, + "max":[ + 0.18532037734985352, + 0.43319180607795715, + 0.8225021362304688 + ], + "min":[ + -0.18532037734985352, + -0.5634289383888245, + -0.6974172592163086 + ], + "type":"VEC3" + }, + { + "bufferView":2239, + "componentType":5126, + "count":772, + "type":"VEC3" + }, + { + "bufferView":2240, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2241, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2242, + "componentType":5126, + "count":772, + "type":"VEC4" + }, + { + "bufferView":2243, + "componentType":5126, + "count":20, + "max":[ + 0.1784958839416504, + 0.3607751429080963, + 0.7400312423706055 + ], + "min":[ + -0.18242406845092773, + -0.4491453468799591, + -0.6324949264526367 + ], + "type":"VEC3" + }, + { + "bufferView":2244, + "componentType":5126, + "count":20, + "type":"VEC3" + }, + { + "bufferView":2245, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2246, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2247, + "componentType":5126, + "count":20, + "type":"VEC4" + }, + { + "bufferView":2248, + "componentType":5126, + "count":12, + "max":[ + 0.13641119003295898, + 0.39668139815330505, + 0.8075838088989258 + ], + "min":[ + -0.13641119003295898, + 0.08890751004219055, + -0.6824979782104492 + ], + "type":"VEC3" + }, + { + "bufferView":2249, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":2250, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2251, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2252, + "componentType":5126, + "count":12, + "type":"VEC4" + }, + { + "bufferView":2253, + "componentType":5126, + "count":2673, + "max":[ + 0.1385817527770996, + 0.5634288787841797, + 0.9818954467773438 + ], + "min":[ + -0.13892889022827148, + -0.5107336640357971, + -0.9818954467773438 + ], + "type":"VEC3" + }, + { + "bufferView":2254, + "componentType":5126, + "count":2673, + "type":"VEC3" + }, + { + "bufferView":2255, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2256, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2257, + "componentType":5126, + "count":2673, + "type":"VEC4" + }, + { + "bufferView":2258, + "componentType":5126, + "count":772, + "max":[ + 0.18532037734985352, + 0.43319180607795715, + 0.8225021362304688 + ], + "min":[ + -0.18532037734985352, + -0.5634289383888245, + -0.6974172592163086 + ], + "type":"VEC3" + }, + { + "bufferView":2259, + "componentType":5126, + "count":772, + "type":"VEC3" + }, + { + "bufferView":2260, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2261, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2262, + "componentType":5126, + "count":772, + "type":"VEC4" + }, + { + "bufferView":2263, + "componentType":5126, + "count":20, + "max":[ + 0.1784958839416504, + 0.3607751429080963, + 0.7400312423706055 + ], + "min":[ + -0.18242406845092773, + -0.4491453468799591, + -0.6324949264526367 + ], + "type":"VEC3" + }, + { + "bufferView":2264, + "componentType":5126, + "count":20, + "type":"VEC3" + }, + { + "bufferView":2265, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2266, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2267, + "componentType":5126, + "count":20, + "type":"VEC4" + }, + { + "bufferView":2268, + "componentType":5126, + "count":12, + "max":[ + 0.13641119003295898, + 0.39668139815330505, + 0.8075838088989258 + ], + "min":[ + -0.13641119003295898, + 0.08890751004219055, + -0.6824979782104492 + ], + "type":"VEC3" + }, + { + "bufferView":2269, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":2270, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2271, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2272, + "componentType":5126, + "count":12, + "type":"VEC4" + }, + { + "bufferView":2273, + "componentType":5126, + "count":2673, + "max":[ + 0.1385817527770996, + 0.5634288787841797, + 0.9818954467773438 + ], + "min":[ + -0.13892889022827148, + -0.5107336640357971, + -0.9818954467773438 + ], + "type":"VEC3" + }, + { + "bufferView":2274, + "componentType":5126, + "count":2673, + "type":"VEC3" + }, + { + "bufferView":2275, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2276, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2277, + "componentType":5126, + "count":2673, + "type":"VEC4" + }, + { + "bufferView":2278, + "componentType":5126, + "count":772, + "max":[ + 0.18532037734985352, + 0.43319180607795715, + 0.8225021362304688 + ], + "min":[ + -0.18532037734985352, + -0.5634289383888245, + -0.6974172592163086 + ], + "type":"VEC3" + }, + { + "bufferView":2279, + "componentType":5126, + "count":772, + "type":"VEC3" + }, + { + "bufferView":2280, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2281, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2282, + "componentType":5126, + "count":772, + "type":"VEC4" + }, + { + "bufferView":2283, + "componentType":5126, + "count":20, + "max":[ + 0.1784958839416504, + 0.3607751429080963, + 0.7400312423706055 + ], + "min":[ + -0.18242406845092773, + -0.4491453468799591, + -0.6324949264526367 + ], + "type":"VEC3" + }, + { + "bufferView":2284, + "componentType":5126, + "count":20, + "type":"VEC3" + }, + { + "bufferView":2285, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2286, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2287, + "componentType":5126, + "count":20, + "type":"VEC4" + }, + { + "bufferView":2288, + "componentType":5126, + "count":12, + "max":[ + 0.13641119003295898, + 0.39668139815330505, + 0.8075838088989258 + ], + "min":[ + -0.13641119003295898, + 0.08890751004219055, + -0.6824979782104492 + ], + "type":"VEC3" + }, + { + "bufferView":2289, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":2290, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2291, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2292, + "componentType":5126, + "count":12, + "type":"VEC4" + }, + { + "bufferView":2293, + "componentType":5126, + "count":2673, + "max":[ + 0.1385817527770996, + 0.5634288787841797, + 0.9818954467773438 + ], + "min":[ + -0.13892889022827148, + -0.5107336640357971, + -0.9818954467773438 + ], + "type":"VEC3" + }, + { + "bufferView":2294, + "componentType":5126, + "count":2673, + "type":"VEC3" + }, + { + "bufferView":2295, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2296, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2297, + "componentType":5126, + "count":2673, + "type":"VEC4" + }, + { + "bufferView":2298, + "componentType":5126, + "count":772, + "max":[ + 0.18532037734985352, + 0.43319180607795715, + 0.8225021362304688 + ], + "min":[ + -0.18532037734985352, + -0.5634289383888245, + -0.6974172592163086 + ], + "type":"VEC3" + }, + { + "bufferView":2299, + "componentType":5126, + "count":772, + "type":"VEC3" + }, + { + "bufferView":2300, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2301, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2302, + "componentType":5126, + "count":772, + "type":"VEC4" + }, + { + "bufferView":2303, + "componentType":5126, + "count":20, + "max":[ + 0.1784958839416504, + 0.3607751429080963, + 0.7400312423706055 + ], + "min":[ + -0.18242406845092773, + -0.4491453468799591, + -0.6324949264526367 + ], + "type":"VEC3" + }, + { + "bufferView":2304, + "componentType":5126, + "count":20, + "type":"VEC3" + }, + { + "bufferView":2305, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2306, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2307, + "componentType":5126, + "count":20, + "type":"VEC4" + }, + { + "bufferView":2308, + "componentType":5126, + "count":12, + "max":[ + 0.13641119003295898, + 0.39668139815330505, + 0.8075838088989258 + ], + "min":[ + -0.13641119003295898, + 0.08890751004219055, + -0.6824979782104492 + ], + "type":"VEC3" + }, + { + "bufferView":2309, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":2310, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2311, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2312, + "componentType":5126, + "count":12, + "type":"VEC4" + }, + { + "bufferView":2313, + "componentType":5126, + "count":2673, + "max":[ + 0.1385817527770996, + 0.5634288787841797, + 0.9818954467773438 + ], + "min":[ + -0.13892889022827148, + -0.5107336640357971, + -0.9818954467773438 + ], + "type":"VEC3" + }, + { + "bufferView":2314, + "componentType":5126, + "count":2673, + "type":"VEC3" + }, + { + "bufferView":2315, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2316, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2317, + "componentType":5126, + "count":2673, + "type":"VEC4" + }, + { + "bufferView":2318, + "componentType":5126, + "count":772, + "max":[ + 0.18532037734985352, + 0.43319180607795715, + 0.8225021362304688 + ], + "min":[ + -0.18532037734985352, + -0.5634289383888245, + -0.6974172592163086 + ], + "type":"VEC3" + }, + { + "bufferView":2319, + "componentType":5126, + "count":772, + "type":"VEC3" + }, + { + "bufferView":2320, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2321, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2322, + "componentType":5126, + "count":772, + "type":"VEC4" + }, + { + "bufferView":2323, + "componentType":5126, + "count":20, + "max":[ + 0.1784958839416504, + 0.3607751429080963, + 0.7400312423706055 + ], + "min":[ + -0.18242406845092773, + -0.4491453468799591, + -0.6324949264526367 + ], + "type":"VEC3" + }, + { + "bufferView":2324, + "componentType":5126, + "count":20, + "type":"VEC3" + }, + { + "bufferView":2325, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2326, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2327, + "componentType":5126, + "count":20, + "type":"VEC4" + }, + { + "bufferView":2328, + "componentType":5126, + "count":12, + "max":[ + 0.13641119003295898, + 0.39668139815330505, + 0.8075838088989258 + ], + "min":[ + -0.13641119003295898, + 0.08890751004219055, + -0.6824979782104492 + ], + "type":"VEC3" + }, + { + "bufferView":2329, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":2330, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2331, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2332, + "componentType":5126, + "count":12, + "type":"VEC4" + }, + { + "bufferView":2333, + "componentType":5126, + "count":2673, + "max":[ + 0.1385817527770996, + 0.5634288787841797, + 0.9818954467773438 + ], + "min":[ + -0.13892889022827148, + -0.5107336640357971, + -0.9818954467773438 + ], + "type":"VEC3" + }, + { + "bufferView":2334, + "componentType":5126, + "count":2673, + "type":"VEC3" + }, + { + "bufferView":2335, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2336, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2337, + "componentType":5126, + "count":2673, + "type":"VEC4" + }, + { + "bufferView":2338, + "componentType":5126, + "count":772, + "max":[ + 0.18532037734985352, + 0.43319180607795715, + 0.8225021362304688 + ], + "min":[ + -0.18532037734985352, + -0.5634289383888245, + -0.6974172592163086 + ], + "type":"VEC3" + }, + { + "bufferView":2339, + "componentType":5126, + "count":772, + "type":"VEC3" + }, + { + "bufferView":2340, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2341, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2342, + "componentType":5126, + "count":772, + "type":"VEC4" + }, + { + "bufferView":2343, + "componentType":5126, + "count":20, + "max":[ + 0.1784958839416504, + 0.3607751429080963, + 0.7400312423706055 + ], + "min":[ + -0.18242406845092773, + -0.4491453468799591, + -0.6324949264526367 + ], + "type":"VEC3" + }, + { + "bufferView":2344, + "componentType":5126, + "count":20, + "type":"VEC3" + }, + { + "bufferView":2345, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2346, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2347, + "componentType":5126, + "count":20, + "type":"VEC4" + }, + { + "bufferView":2348, + "componentType":5126, + "count":12, + "max":[ + 0.13641119003295898, + 0.39668139815330505, + 0.8075838088989258 + ], + "min":[ + -0.13641119003295898, + 0.08890751004219055, + -0.6824979782104492 + ], + "type":"VEC3" + }, + { + "bufferView":2349, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":2350, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2351, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2352, + "componentType":5126, + "count":12, + "type":"VEC4" + }, + { + "bufferView":2353, + "componentType":5126, + "count":2673, + "max":[ + 0.1385817527770996, + 0.5634288787841797, + 0.9818954467773438 + ], + "min":[ + -0.13892889022827148, + -0.5107336640357971, + -0.9818954467773438 + ], + "type":"VEC3" + }, + { + "bufferView":2354, + "componentType":5126, + "count":2673, + "type":"VEC3" + }, + { + "bufferView":2355, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2356, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2357, + "componentType":5126, + "count":2673, + "type":"VEC4" + }, + { + "bufferView":2358, + "componentType":5126, + "count":772, + "max":[ + 0.18532037734985352, + 0.43319180607795715, + 0.8225021362304688 + ], + "min":[ + -0.18532037734985352, + -0.5634289383888245, + -0.6974172592163086 + ], + "type":"VEC3" + }, + { + "bufferView":2359, + "componentType":5126, + "count":772, + "type":"VEC3" + }, + { + "bufferView":2360, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2361, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2362, + "componentType":5126, + "count":772, + "type":"VEC4" + }, + { + "bufferView":2363, + "componentType":5126, + "count":20, + "max":[ + 0.1784958839416504, + 0.3607751429080963, + 0.7400312423706055 + ], + "min":[ + -0.18242406845092773, + -0.4491453468799591, + -0.6324949264526367 + ], + "type":"VEC3" + }, + { + "bufferView":2364, + "componentType":5126, + "count":20, + "type":"VEC3" + }, + { + "bufferView":2365, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2366, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2367, + "componentType":5126, + "count":20, + "type":"VEC4" + }, + { + "bufferView":2368, + "componentType":5126, + "count":12, + "max":[ + 0.13641119003295898, + 0.39668139815330505, + 0.8075838088989258 + ], + "min":[ + -0.13641119003295898, + 0.08890751004219055, + -0.6824979782104492 + ], + "type":"VEC3" + }, + { + "bufferView":2369, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":2370, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2371, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2372, + "componentType":5126, + "count":12, + "type":"VEC4" + }, + { + "bufferView":2373, + "componentType":5126, + "count":2673, + "max":[ + 0.1385817527770996, + 0.5634288787841797, + 0.9818954467773438 + ], + "min":[ + -0.13892889022827148, + -0.5107336640357971, + -0.9818954467773438 + ], + "type":"VEC3" + }, + { + "bufferView":2374, + "componentType":5126, + "count":2673, + "type":"VEC3" + }, + { + "bufferView":2375, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2376, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2377, + "componentType":5126, + "count":2673, + "type":"VEC4" + }, + { + "bufferView":2378, + "componentType":5126, + "count":772, + "max":[ + 0.18532037734985352, + 0.43319180607795715, + 0.8225021362304688 + ], + "min":[ + -0.18532037734985352, + -0.5634289383888245, + -0.6974172592163086 + ], + "type":"VEC3" + }, + { + "bufferView":2379, + "componentType":5126, + "count":772, + "type":"VEC3" + }, + { + "bufferView":2380, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2381, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2382, + "componentType":5126, + "count":772, + "type":"VEC4" + }, + { + "bufferView":2383, + "componentType":5126, + "count":20, + "max":[ + 0.1784958839416504, + 0.3607751429080963, + 0.7400312423706055 + ], + "min":[ + -0.18242406845092773, + -0.4491453468799591, + -0.6324949264526367 + ], + "type":"VEC3" + }, + { + "bufferView":2384, + "componentType":5126, + "count":20, + "type":"VEC3" + }, + { + "bufferView":2385, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2386, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2387, + "componentType":5126, + "count":20, + "type":"VEC4" + }, + { + "bufferView":2388, + "componentType":5126, + "count":12, + "max":[ + 0.13641119003295898, + 0.39668139815330505, + 0.8075838088989258 + ], + "min":[ + -0.13641119003295898, + 0.08890751004219055, + -0.6824979782104492 + ], + "type":"VEC3" + }, + { + "bufferView":2389, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":2390, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2391, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2392, + "componentType":5126, + "count":12, + "type":"VEC4" + }, + { + "bufferView":2393, + "componentType":5126, + "count":2673, + "max":[ + 0.1385817527770996, + 0.5634288787841797, + 0.9818954467773438 + ], + "min":[ + -0.13892889022827148, + -0.5107336640357971, + -0.9818954467773438 + ], + "type":"VEC3" + }, + { + "bufferView":2394, + "componentType":5126, + "count":2673, + "type":"VEC3" + }, + { + "bufferView":2395, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2396, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2397, + "componentType":5126, + "count":2673, + "type":"VEC4" + }, + { + "bufferView":2398, + "componentType":5126, + "count":772, + "max":[ + 0.18532037734985352, + 0.43319180607795715, + 0.8225021362304688 + ], + "min":[ + -0.18532037734985352, + -0.5634289383888245, + -0.6974172592163086 + ], + "type":"VEC3" + }, + { + "bufferView":2399, + "componentType":5126, + "count":772, + "type":"VEC3" + }, + { + "bufferView":2400, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2401, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2402, + "componentType":5126, + "count":772, + "type":"VEC4" + }, + { + "bufferView":2403, + "componentType":5126, + "count":20, + "max":[ + 0.1784958839416504, + 0.3607751429080963, + 0.7400312423706055 + ], + "min":[ + -0.18242406845092773, + -0.4491453468799591, + -0.6324949264526367 + ], + "type":"VEC3" + }, + { + "bufferView":2404, + "componentType":5126, + "count":20, + "type":"VEC3" + }, + { + "bufferView":2405, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2406, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2407, + "componentType":5126, + "count":20, + "type":"VEC4" + }, + { + "bufferView":2408, + "componentType":5126, + "count":12, + "max":[ + 0.13641119003295898, + 0.39668139815330505, + 0.8075838088989258 + ], + "min":[ + -0.13641119003295898, + 0.08890751004219055, + -0.6824979782104492 + ], + "type":"VEC3" + }, + { + "bufferView":2409, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":2410, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2411, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2412, + "componentType":5126, + "count":12, + "type":"VEC4" + }, + { + "bufferView":2413, + "componentType":5126, + "count":2673, + "max":[ + 0.1385817527770996, + 0.5634288787841797, + 0.9818954467773438 + ], + "min":[ + -0.13892889022827148, + -0.5107336640357971, + -0.9818954467773438 + ], + "type":"VEC3" + }, + { + "bufferView":2414, + "componentType":5126, + "count":2673, + "type":"VEC3" + }, + { + "bufferView":2415, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2416, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2417, + "componentType":5126, + "count":2673, + "type":"VEC4" + }, + { + "bufferView":2418, + "componentType":5126, + "count":772, + "max":[ + 0.18532037734985352, + 0.43319180607795715, + 0.8225021362304688 + ], + "min":[ + -0.18532037734985352, + -0.5634289383888245, + -0.6974172592163086 + ], + "type":"VEC3" + }, + { + "bufferView":2419, + "componentType":5126, + "count":772, + "type":"VEC3" + }, + { + "bufferView":2420, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2421, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2422, + "componentType":5126, + "count":772, + "type":"VEC4" + }, + { + "bufferView":2423, + "componentType":5126, + "count":20, + "max":[ + 0.1784958839416504, + 0.3607751429080963, + 0.7400312423706055 + ], + "min":[ + -0.18242406845092773, + -0.4491453468799591, + -0.6324949264526367 + ], + "type":"VEC3" + }, + { + "bufferView":2424, + "componentType":5126, + "count":20, + "type":"VEC3" + }, + { + "bufferView":2425, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2426, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2427, + "componentType":5126, + "count":20, + "type":"VEC4" + }, + { + "bufferView":2428, + "componentType":5126, + "count":12, + "max":[ + 0.13641119003295898, + 0.39668139815330505, + 0.8075838088989258 + ], + "min":[ + -0.13641119003295898, + 0.08890751004219055, + -0.6824979782104492 + ], + "type":"VEC3" + }, + { + "bufferView":2429, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":2430, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2431, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2432, + "componentType":5126, + "count":12, + "type":"VEC4" + }, + { + "bufferView":2433, + "componentType":5126, + "count":2673, + "max":[ + 0.1385817527770996, + 0.5634288787841797, + 0.9818954467773438 + ], + "min":[ + -0.13892889022827148, + -0.5107336640357971, + -0.9818954467773438 + ], + "type":"VEC3" + }, + { + "bufferView":2434, + "componentType":5126, + "count":2673, + "type":"VEC3" + }, + { + "bufferView":2435, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2436, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2437, + "componentType":5126, + "count":2673, + "type":"VEC4" + }, + { + "bufferView":2438, + "componentType":5126, + "count":772, + "max":[ + 0.18532037734985352, + 0.43319180607795715, + 0.8225021362304688 + ], + "min":[ + -0.18532037734985352, + -0.5634289383888245, + -0.6974172592163086 + ], + "type":"VEC3" + }, + { + "bufferView":2439, + "componentType":5126, + "count":772, + "type":"VEC3" + }, + { + "bufferView":2440, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2441, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2442, + "componentType":5126, + "count":772, + "type":"VEC4" + }, + { + "bufferView":2443, + "componentType":5126, + "count":20, + "max":[ + 0.1784958839416504, + 0.3607751429080963, + 0.7400312423706055 + ], + "min":[ + -0.18242406845092773, + -0.4491453468799591, + -0.6324949264526367 + ], + "type":"VEC3" + }, + { + "bufferView":2444, + "componentType":5126, + "count":20, + "type":"VEC3" + }, + { + "bufferView":2445, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2446, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2447, + "componentType":5126, + "count":20, + "type":"VEC4" + }, + { + "bufferView":2448, + "componentType":5126, + "count":12, + "max":[ + 0.13641119003295898, + 0.39668139815330505, + 0.8075838088989258 + ], + "min":[ + -0.13641119003295898, + 0.08890751004219055, + -0.6824979782104492 + ], + "type":"VEC3" + }, + { + "bufferView":2449, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":2450, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2451, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2452, + "componentType":5126, + "count":12, + "type":"VEC4" + }, + { + "bufferView":2453, + "componentType":5126, + "count":2673, + "max":[ + 0.1385817527770996, + 0.5634288787841797, + 0.9818954467773438 + ], + "min":[ + -0.13892889022827148, + -0.5107336640357971, + -0.9818954467773438 + ], + "type":"VEC3" + }, + { + "bufferView":2454, + "componentType":5126, + "count":2673, + "type":"VEC3" + }, + { + "bufferView":2455, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2456, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2457, + "componentType":5126, + "count":2673, + "type":"VEC4" + }, + { + "bufferView":2458, + "componentType":5126, + "count":772, + "max":[ + 0.18532037734985352, + 0.43319180607795715, + 0.8225021362304688 + ], + "min":[ + -0.18532037734985352, + -0.5634289383888245, + -0.6974172592163086 + ], + "type":"VEC3" + }, + { + "bufferView":2459, + "componentType":5126, + "count":772, + "type":"VEC3" + }, + { + "bufferView":2460, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2461, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2462, + "componentType":5126, + "count":772, + "type":"VEC4" + }, + { + "bufferView":2463, + "componentType":5126, + "count":20, + "max":[ + 0.1784958839416504, + 0.3607751429080963, + 0.7400312423706055 + ], + "min":[ + -0.18242406845092773, + -0.4491453468799591, + -0.6324949264526367 + ], + "type":"VEC3" + }, + { + "bufferView":2464, + "componentType":5126, + "count":20, + "type":"VEC3" + }, + { + "bufferView":2465, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2466, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2467, + "componentType":5126, + "count":20, + "type":"VEC4" + }, + { + "bufferView":2468, + "componentType":5126, + "count":12, + "max":[ + 0.13641119003295898, + 0.39668139815330505, + 0.8075838088989258 + ], + "min":[ + -0.13641119003295898, + 0.08890751004219055, + -0.6824979782104492 + ], + "type":"VEC3" + }, + { + "bufferView":2469, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":2470, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2471, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2472, + "componentType":5126, + "count":12, + "type":"VEC4" + }, + { + "bufferView":2473, + "componentType":5126, + "count":2673, + "max":[ + 0.1385817527770996, + 0.5634288787841797, + 0.9818954467773438 + ], + "min":[ + -0.13892889022827148, + -0.5107336640357971, + -0.9818954467773438 + ], + "type":"VEC3" + }, + { + "bufferView":2474, + "componentType":5126, + "count":2673, + "type":"VEC3" + }, + { + "bufferView":2475, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2476, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2477, + "componentType":5126, + "count":2673, + "type":"VEC4" + }, + { + "bufferView":2478, + "componentType":5126, + "count":772, + "max":[ + 0.18532037734985352, + 0.43319180607795715, + 0.8225021362304688 + ], + "min":[ + -0.18532037734985352, + -0.5634289383888245, + -0.6974172592163086 + ], + "type":"VEC3" + }, + { + "bufferView":2479, + "componentType":5126, + "count":772, + "type":"VEC3" + }, + { + "bufferView":2480, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2481, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2482, + "componentType":5126, + "count":772, + "type":"VEC4" + }, + { + "bufferView":2483, + "componentType":5126, + "count":20, + "max":[ + 0.1784958839416504, + 0.3607751429080963, + 0.7400312423706055 + ], + "min":[ + -0.18242406845092773, + -0.4491453468799591, + -0.6324949264526367 + ], + "type":"VEC3" + }, + { + "bufferView":2484, + "componentType":5126, + "count":20, + "type":"VEC3" + }, + { + "bufferView":2485, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2486, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2487, + "componentType":5126, + "count":20, + "type":"VEC4" + }, + { + "bufferView":2488, + "componentType":5126, + "count":12, + "max":[ + 0.13641119003295898, + 0.39668139815330505, + 0.8075838088989258 + ], + "min":[ + -0.13641119003295898, + 0.08890751004219055, + -0.6824979782104492 + ], + "type":"VEC3" + }, + { + "bufferView":2489, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":2490, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2491, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2492, + "componentType":5126, + "count":12, + "type":"VEC4" + }, + { + "bufferView":2493, + "componentType":5126, + "count":2673, + "max":[ + 0.1385817527770996, + 0.5634288787841797, + 0.9818954467773438 + ], + "min":[ + -0.13892889022827148, + -0.5107336640357971, + -0.9818954467773438 + ], + "type":"VEC3" + }, + { + "bufferView":2494, + "componentType":5126, + "count":2673, + "type":"VEC3" + }, + { + "bufferView":2495, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2496, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2497, + "componentType":5126, + "count":2673, + "type":"VEC4" + }, + { + "bufferView":2498, + "componentType":5126, + "count":772, + "max":[ + 0.18532037734985352, + 0.43319180607795715, + 0.8225021362304688 + ], + "min":[ + -0.18532037734985352, + -0.5634289383888245, + -0.6974172592163086 + ], + "type":"VEC3" + }, + { + "bufferView":2499, + "componentType":5126, + "count":772, + "type":"VEC3" + }, + { + "bufferView":2500, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2501, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2502, + "componentType":5126, + "count":772, + "type":"VEC4" + }, + { + "bufferView":2503, + "componentType":5126, + "count":20, + "max":[ + 0.1784958839416504, + 0.3607751429080963, + 0.7400312423706055 + ], + "min":[ + -0.18242406845092773, + -0.4491453468799591, + -0.6324949264526367 + ], + "type":"VEC3" + }, + { + "bufferView":2504, + "componentType":5126, + "count":20, + "type":"VEC3" + }, + { + "bufferView":2505, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2506, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2507, + "componentType":5126, + "count":20, + "type":"VEC4" + }, + { + "bufferView":2508, + "componentType":5126, + "count":12, + "max":[ + 0.13641119003295898, + 0.39668139815330505, + 0.8075838088989258 + ], + "min":[ + -0.13641119003295898, + 0.08890751004219055, + -0.6824979782104492 + ], + "type":"VEC3" + }, + { + "bufferView":2509, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":2510, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2511, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2512, + "componentType":5126, + "count":12, + "type":"VEC4" + }, + { + "bufferView":2513, + "componentType":5126, + "count":2673, + "max":[ + 0.1385817527770996, + 0.5634288787841797, + 0.9818954467773438 + ], + "min":[ + -0.13892889022827148, + -0.5107336640357971, + -0.9818954467773438 + ], + "type":"VEC3" + }, + { + "bufferView":2514, + "componentType":5126, + "count":2673, + "type":"VEC3" + }, + { + "bufferView":2515, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2516, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2517, + "componentType":5126, + "count":2673, + "type":"VEC4" + }, + { + "bufferView":2518, + "componentType":5126, + "count":772, + "max":[ + 0.18532037734985352, + 0.43319180607795715, + 0.8225021362304688 + ], + "min":[ + -0.18532037734985352, + -0.5634289383888245, + -0.6974172592163086 + ], + "type":"VEC3" + }, + { + "bufferView":2519, + "componentType":5126, + "count":772, + "type":"VEC3" + }, + { + "bufferView":2520, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2521, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2522, + "componentType":5126, + "count":772, + "type":"VEC4" + }, + { + "bufferView":2523, + "componentType":5126, + "count":20, + "max":[ + 0.1784958839416504, + 0.3607751429080963, + 0.7400312423706055 + ], + "min":[ + -0.18242406845092773, + -0.4491453468799591, + -0.6324949264526367 + ], + "type":"VEC3" + }, + { + "bufferView":2524, + "componentType":5126, + "count":20, + "type":"VEC3" + }, + { + "bufferView":2525, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2526, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2527, + "componentType":5126, + "count":20, + "type":"VEC4" + }, + { + "bufferView":2528, + "componentType":5126, + "count":12, + "max":[ + 0.13641119003295898, + 0.39668139815330505, + 0.8075838088989258 + ], + "min":[ + -0.13641119003295898, + 0.08890751004219055, + -0.6824979782104492 + ], + "type":"VEC3" + }, + { + "bufferView":2529, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":2530, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2531, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2532, + "componentType":5126, + "count":12, + "type":"VEC4" + }, + { + "bufferView":2533, + "componentType":5126, + "count":2673, + "max":[ + 0.1385817527770996, + 0.5634288787841797, + 0.9818954467773438 + ], + "min":[ + -0.13892889022827148, + -0.5107336640357971, + -0.9818954467773438 + ], + "type":"VEC3" + }, + { + "bufferView":2534, + "componentType":5126, + "count":2673, + "type":"VEC3" + }, + { + "bufferView":2535, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2536, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2537, + "componentType":5126, + "count":2673, + "type":"VEC4" + }, + { + "bufferView":2538, + "componentType":5126, + "count":772, + "max":[ + 0.18532037734985352, + 0.43319180607795715, + 0.8225021362304688 + ], + "min":[ + -0.18532037734985352, + -0.5634289383888245, + -0.6974172592163086 + ], + "type":"VEC3" + }, + { + "bufferView":2539, + "componentType":5126, + "count":772, + "type":"VEC3" + }, + { + "bufferView":2540, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2541, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2542, + "componentType":5126, + "count":772, + "type":"VEC4" + }, + { + "bufferView":2543, + "componentType":5126, + "count":20, + "max":[ + 0.1784958839416504, + 0.3607751429080963, + 0.7400312423706055 + ], + "min":[ + -0.18242406845092773, + -0.4491453468799591, + -0.6324949264526367 + ], + "type":"VEC3" + }, + { + "bufferView":2544, + "componentType":5126, + "count":20, + "type":"VEC3" + }, + { + "bufferView":2545, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2546, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2547, + "componentType":5126, + "count":20, + "type":"VEC4" + }, + { + "bufferView":2548, + "componentType":5126, + "count":12, + "max":[ + 0.13641119003295898, + 0.39668139815330505, + 0.8075838088989258 + ], + "min":[ + -0.13641119003295898, + 0.08890751004219055, + -0.6824979782104492 + ], + "type":"VEC3" + }, + { + "bufferView":2549, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":2550, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2551, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2552, + "componentType":5126, + "count":12, + "type":"VEC4" + }, + { + "bufferView":2553, + "componentType":5126, + "count":2673, + "max":[ + 0.1385817527770996, + 0.5634288787841797, + 0.9818954467773438 + ], + "min":[ + -0.13892889022827148, + -0.5107336640357971, + -0.9818954467773438 + ], + "type":"VEC3" + }, + { + "bufferView":2554, + "componentType":5126, + "count":2673, + "type":"VEC3" + }, + { + "bufferView":2555, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2556, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2557, + "componentType":5126, + "count":2673, + "type":"VEC4" + }, + { + "bufferView":2558, + "componentType":5126, + "count":772, + "max":[ + 0.18532037734985352, + 0.43319180607795715, + 0.8225021362304688 + ], + "min":[ + -0.18532037734985352, + -0.5634289383888245, + -0.6974172592163086 + ], + "type":"VEC3" + }, + { + "bufferView":2559, + "componentType":5126, + "count":772, + "type":"VEC3" + }, + { + "bufferView":2560, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2561, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2562, + "componentType":5126, + "count":772, + "type":"VEC4" + }, + { + "bufferView":2563, + "componentType":5126, + "count":20, + "max":[ + 0.1784958839416504, + 0.3607751429080963, + 0.7400312423706055 + ], + "min":[ + -0.18242406845092773, + -0.4491453468799591, + -0.6324949264526367 + ], + "type":"VEC3" + }, + { + "bufferView":2564, + "componentType":5126, + "count":20, + "type":"VEC3" + }, + { + "bufferView":2565, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2566, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2567, + "componentType":5126, + "count":20, + "type":"VEC4" + }, + { + "bufferView":2568, + "componentType":5126, + "count":12, + "max":[ + 0.13641119003295898, + 0.39668139815330505, + 0.8075838088989258 + ], + "min":[ + -0.13641119003295898, + 0.08890751004219055, + -0.6824979782104492 + ], + "type":"VEC3" + }, + { + "bufferView":2569, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":2570, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2571, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2572, + "componentType":5126, + "count":12, + "type":"VEC4" + }, + { + "bufferView":2573, + "componentType":5126, + "count":2673, + "max":[ + 0.1385817527770996, + 0.5634288787841797, + 0.9818954467773438 + ], + "min":[ + -0.13892889022827148, + -0.5107336640357971, + -0.9818954467773438 + ], + "type":"VEC3" + }, + { + "bufferView":2574, + "componentType":5126, + "count":2673, + "type":"VEC3" + }, + { + "bufferView":2575, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2576, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2577, + "componentType":5126, + "count":2673, + "type":"VEC4" + }, + { + "bufferView":2578, + "componentType":5126, + "count":772, + "max":[ + 0.18532037734985352, + 0.43319180607795715, + 0.8225021362304688 + ], + "min":[ + -0.18532037734985352, + -0.5634289383888245, + -0.6974172592163086 + ], + "type":"VEC3" + }, + { + "bufferView":2579, + "componentType":5126, + "count":772, + "type":"VEC3" + }, + { + "bufferView":2580, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2581, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2582, + "componentType":5126, + "count":772, + "type":"VEC4" + }, + { + "bufferView":2583, + "componentType":5126, + "count":20, + "max":[ + 0.1784958839416504, + 0.3607751429080963, + 0.7400312423706055 + ], + "min":[ + -0.18242406845092773, + -0.4491453468799591, + -0.6324949264526367 + ], + "type":"VEC3" + }, + { + "bufferView":2584, + "componentType":5126, + "count":20, + "type":"VEC3" + }, + { + "bufferView":2585, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2586, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2587, + "componentType":5126, + "count":20, + "type":"VEC4" + }, + { + "bufferView":2588, + "componentType":5126, + "count":12, + "max":[ + 0.13641119003295898, + 0.39668139815330505, + 0.8075838088989258 + ], + "min":[ + -0.13641119003295898, + 0.08890751004219055, + -0.6824979782104492 + ], + "type":"VEC3" + }, + { + "bufferView":2589, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":2590, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2591, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2592, + "componentType":5126, + "count":12, + "type":"VEC4" + }, + { + "bufferView":2593, + "componentType":5126, + "count":2673, + "max":[ + 0.1385817527770996, + 0.5634288787841797, + 0.9818954467773438 + ], + "min":[ + -0.13892889022827148, + -0.5107336640357971, + -0.9818954467773438 + ], + "type":"VEC3" + }, + { + "bufferView":2594, + "componentType":5126, + "count":2673, + "type":"VEC3" + }, + { + "bufferView":2595, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2596, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2597, + "componentType":5126, + "count":2673, + "type":"VEC4" + }, + { + "bufferView":2598, + "componentType":5126, + "count":772, + "max":[ + 0.18532037734985352, + 0.43319180607795715, + 0.8225021362304688 + ], + "min":[ + -0.18532037734985352, + -0.5634289383888245, + -0.6974172592163086 + ], + "type":"VEC3" + }, + { + "bufferView":2599, + "componentType":5126, + "count":772, + "type":"VEC3" + }, + { + "bufferView":2600, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2601, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2602, + "componentType":5126, + "count":772, + "type":"VEC4" + }, + { + "bufferView":2603, + "componentType":5126, + "count":20, + "max":[ + 0.1784958839416504, + 0.3607751429080963, + 0.7400312423706055 + ], + "min":[ + -0.18242406845092773, + -0.4491453468799591, + -0.6324949264526367 + ], + "type":"VEC3" + }, + { + "bufferView":2604, + "componentType":5126, + "count":20, + "type":"VEC3" + }, + { + "bufferView":2605, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2606, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2607, + "componentType":5126, + "count":20, + "type":"VEC4" + }, + { + "bufferView":2608, + "componentType":5126, + "count":12, + "max":[ + 0.13641119003295898, + 0.39668139815330505, + 0.8075838088989258 + ], + "min":[ + -0.13641119003295898, + 0.08890751004219055, + -0.6824979782104492 + ], + "type":"VEC3" + }, + { + "bufferView":2609, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":2610, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2611, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2612, + "componentType":5126, + "count":12, + "type":"VEC4" + }, + { + "bufferView":2613, + "componentType":5126, + "count":2673, + "max":[ + 0.1385817527770996, + 0.5634288787841797, + 0.9818954467773438 + ], + "min":[ + -0.13892889022827148, + -0.5107336640357971, + -0.9818954467773438 + ], + "type":"VEC3" + }, + { + "bufferView":2614, + "componentType":5126, + "count":2673, + "type":"VEC3" + }, + { + "bufferView":2615, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2616, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2617, + "componentType":5126, + "count":2673, + "type":"VEC4" + }, + { + "bufferView":2618, + "componentType":5126, + "count":772, + "max":[ + 0.18532037734985352, + 0.43319180607795715, + 0.8225021362304688 + ], + "min":[ + -0.18532037734985352, + -0.5634289383888245, + -0.6974172592163086 + ], + "type":"VEC3" + }, + { + "bufferView":2619, + "componentType":5126, + "count":772, + "type":"VEC3" + }, + { + "bufferView":2620, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2621, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2622, + "componentType":5126, + "count":772, + "type":"VEC4" + }, + { + "bufferView":2623, + "componentType":5126, + "count":20, + "max":[ + 0.1784958839416504, + 0.3607751429080963, + 0.7400312423706055 + ], + "min":[ + -0.18242406845092773, + -0.4491453468799591, + -0.6324949264526367 + ], + "type":"VEC3" + }, + { + "bufferView":2624, + "componentType":5126, + "count":20, + "type":"VEC3" + }, + { + "bufferView":2625, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2626, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2627, + "componentType":5126, + "count":20, + "type":"VEC4" + }, + { + "bufferView":2628, + "componentType":5126, + "count":12, + "max":[ + 0.13641119003295898, + 0.39668139815330505, + 0.8075838088989258 + ], + "min":[ + -0.13641119003295898, + 0.08890751004219055, + -0.6824979782104492 + ], + "type":"VEC3" + }, + { + "bufferView":2629, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":2630, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2631, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2632, + "componentType":5126, + "count":12, + "type":"VEC4" + }, + { + "bufferView":2633, + "componentType":5126, + "count":2673, + "max":[ + 0.1385817527770996, + 0.5634288787841797, + 0.9818954467773438 + ], + "min":[ + -0.13892889022827148, + -0.5107336640357971, + -0.9818954467773438 + ], + "type":"VEC3" + }, + { + "bufferView":2634, + "componentType":5126, + "count":2673, + "type":"VEC3" + }, + { + "bufferView":2635, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2636, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2637, + "componentType":5126, + "count":2673, + "type":"VEC4" + }, + { + "bufferView":2638, + "componentType":5126, + "count":772, + "max":[ + 0.18532037734985352, + 0.43319180607795715, + 0.8225021362304688 + ], + "min":[ + -0.18532037734985352, + -0.5634289383888245, + -0.6974172592163086 + ], + "type":"VEC3" + }, + { + "bufferView":2639, + "componentType":5126, + "count":772, + "type":"VEC3" + }, + { + "bufferView":2640, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2641, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2642, + "componentType":5126, + "count":772, + "type":"VEC4" + }, + { + "bufferView":2643, + "componentType":5126, + "count":20, + "max":[ + 0.1784958839416504, + 0.3607751429080963, + 0.7400312423706055 + ], + "min":[ + -0.18242406845092773, + -0.4491453468799591, + -0.6324949264526367 + ], + "type":"VEC3" + }, + { + "bufferView":2644, + "componentType":5126, + "count":20, + "type":"VEC3" + }, + { + "bufferView":2645, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2646, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2647, + "componentType":5126, + "count":20, + "type":"VEC4" + }, + { + "bufferView":2648, + "componentType":5126, + "count":12, + "max":[ + 0.13641119003295898, + 0.39668139815330505, + 0.8075838088989258 + ], + "min":[ + -0.13641119003295898, + 0.08890751004219055, + -0.6824979782104492 + ], + "type":"VEC3" + }, + { + "bufferView":2649, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":2650, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2651, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2652, + "componentType":5126, + "count":12, + "type":"VEC4" + }, + { + "bufferView":2653, + "componentType":5126, + "count":2673, + "max":[ + 0.1385817527770996, + 0.5634288787841797, + 0.9818954467773438 + ], + "min":[ + -0.13892889022827148, + -0.5107336640357971, + -0.9818954467773438 + ], + "type":"VEC3" + }, + { + "bufferView":2654, + "componentType":5126, + "count":2673, + "type":"VEC3" + }, + { + "bufferView":2655, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2656, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2657, + "componentType":5126, + "count":2673, + "type":"VEC4" + }, + { + "bufferView":2658, + "componentType":5126, + "count":772, + "max":[ + 0.18532037734985352, + 0.43319180607795715, + 0.8225021362304688 + ], + "min":[ + -0.18532037734985352, + -0.5634289383888245, + -0.6974172592163086 + ], + "type":"VEC3" + }, + { + "bufferView":2659, + "componentType":5126, + "count":772, + "type":"VEC3" + }, + { + "bufferView":2660, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2661, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2662, + "componentType":5126, + "count":772, + "type":"VEC4" + }, + { + "bufferView":2663, + "componentType":5126, + "count":20, + "max":[ + 0.1784958839416504, + 0.3607751429080963, + 0.7400312423706055 + ], + "min":[ + -0.18242406845092773, + -0.4491453468799591, + -0.6324949264526367 + ], + "type":"VEC3" + }, + { + "bufferView":2664, + "componentType":5126, + "count":20, + "type":"VEC3" + }, + { + "bufferView":2665, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2666, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2667, + "componentType":5126, + "count":20, + "type":"VEC4" + }, + { + "bufferView":2668, + "componentType":5126, + "count":12, + "max":[ + 0.13641119003295898, + 0.39668139815330505, + 0.8075838088989258 + ], + "min":[ + -0.13641119003295898, + 0.08890751004219055, + -0.6824979782104492 + ], + "type":"VEC3" + }, + { + "bufferView":2669, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":2670, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2671, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2672, + "componentType":5126, + "count":12, + "type":"VEC4" + }, + { + "bufferView":2673, + "componentType":5126, + "count":2673, + "max":[ + 0.1385817527770996, + 0.5634288787841797, + 0.9818954467773438 + ], + "min":[ + -0.13892889022827148, + -0.5107336640357971, + -0.9818954467773438 + ], + "type":"VEC3" + }, + { + "bufferView":2674, + "componentType":5126, + "count":2673, + "type":"VEC3" + }, + { + "bufferView":2675, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2676, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2677, + "componentType":5126, + "count":2673, + "type":"VEC4" + }, + { + "bufferView":2678, + "componentType":5126, + "count":772, + "max":[ + 0.18532037734985352, + 0.43319180607795715, + 0.8225021362304688 + ], + "min":[ + -0.18532037734985352, + -0.5634289383888245, + -0.6974172592163086 + ], + "type":"VEC3" + }, + { + "bufferView":2679, + "componentType":5126, + "count":772, + "type":"VEC3" + }, + { + "bufferView":2680, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2681, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2682, + "componentType":5126, + "count":772, + "type":"VEC4" + }, + { + "bufferView":2683, + "componentType":5126, + "count":20, + "max":[ + 0.1784958839416504, + 0.3607751429080963, + 0.7400312423706055 + ], + "min":[ + -0.18242406845092773, + -0.4491453468799591, + -0.6324949264526367 + ], + "type":"VEC3" + }, + { + "bufferView":2684, + "componentType":5126, + "count":20, + "type":"VEC3" + }, + { + "bufferView":2685, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2686, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2687, + "componentType":5126, + "count":20, + "type":"VEC4" + }, + { + "bufferView":2688, + "componentType":5126, + "count":12, + "max":[ + 0.13641119003295898, + 0.39668139815330505, + 0.8075838088989258 + ], + "min":[ + -0.13641119003295898, + 0.08890751004219055, + -0.6824979782104492 + ], + "type":"VEC3" + }, + { + "bufferView":2689, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":2690, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2691, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2692, + "componentType":5126, + "count":12, + "type":"VEC4" + }, + { + "bufferView":2693, + "componentType":5126, + "count":2673, + "max":[ + 0.1385817527770996, + 0.5634288787841797, + 0.9818954467773438 + ], + "min":[ + -0.13892889022827148, + -0.5107336640357971, + -0.9818954467773438 + ], + "type":"VEC3" + }, + { + "bufferView":2694, + "componentType":5126, + "count":2673, + "type":"VEC3" + }, + { + "bufferView":2695, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2696, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2697, + "componentType":5126, + "count":2673, + "type":"VEC4" + }, + { + "bufferView":2698, + "componentType":5126, + "count":772, + "max":[ + 0.18532037734985352, + 0.43319180607795715, + 0.8225021362304688 + ], + "min":[ + -0.18532037734985352, + -0.5634289383888245, + -0.6974172592163086 + ], + "type":"VEC3" + }, + { + "bufferView":2699, + "componentType":5126, + "count":772, + "type":"VEC3" + }, + { + "bufferView":2700, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2701, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2702, + "componentType":5126, + "count":772, + "type":"VEC4" + }, + { + "bufferView":2703, + "componentType":5126, + "count":20, + "max":[ + 0.1784958839416504, + 0.3607751429080963, + 0.7400312423706055 + ], + "min":[ + -0.18242406845092773, + -0.4491453468799591, + -0.6324949264526367 + ], + "type":"VEC3" + }, + { + "bufferView":2704, + "componentType":5126, + "count":20, + "type":"VEC3" + }, + { + "bufferView":2705, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2706, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2707, + "componentType":5126, + "count":20, + "type":"VEC4" + }, + { + "bufferView":2708, + "componentType":5126, + "count":12, + "max":[ + 0.13641119003295898, + 0.39668139815330505, + 0.8075838088989258 + ], + "min":[ + -0.13641119003295898, + 0.08890751004219055, + -0.6824979782104492 + ], + "type":"VEC3" + }, + { + "bufferView":2709, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":2710, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2711, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2712, + "componentType":5126, + "count":12, + "type":"VEC4" + }, + { + "bufferView":2713, + "componentType":5126, + "count":2673, + "max":[ + 0.1385817527770996, + 0.5634288787841797, + 0.9818954467773438 + ], + "min":[ + -0.13892889022827148, + -0.5107336640357971, + -0.9818954467773438 + ], + "type":"VEC3" + }, + { + "bufferView":2714, + "componentType":5126, + "count":2673, + "type":"VEC3" + }, + { + "bufferView":2715, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2716, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2717, + "componentType":5126, + "count":2673, + "type":"VEC4" + }, + { + "bufferView":2718, + "componentType":5126, + "count":772, + "max":[ + 0.18532037734985352, + 0.43319180607795715, + 0.8225021362304688 + ], + "min":[ + -0.18532037734985352, + -0.5634289383888245, + -0.6974172592163086 + ], + "type":"VEC3" + }, + { + "bufferView":2719, + "componentType":5126, + "count":772, + "type":"VEC3" + }, + { + "bufferView":2720, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2721, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2722, + "componentType":5126, + "count":772, + "type":"VEC4" + }, + { + "bufferView":2723, + "componentType":5126, + "count":20, + "max":[ + 0.1784958839416504, + 0.3607751429080963, + 0.7400312423706055 + ], + "min":[ + -0.18242406845092773, + -0.4491453468799591, + -0.6324949264526367 + ], + "type":"VEC3" + }, + { + "bufferView":2724, + "componentType":5126, + "count":20, + "type":"VEC3" + }, + { + "bufferView":2725, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2726, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2727, + "componentType":5126, + "count":20, + "type":"VEC4" + }, + { + "bufferView":2728, + "componentType":5126, + "count":12, + "max":[ + 0.13641119003295898, + 0.39668139815330505, + 0.8075838088989258 + ], + "min":[ + -0.13641119003295898, + 0.08890751004219055, + -0.6824979782104492 + ], + "type":"VEC3" + }, + { + "bufferView":2729, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":2730, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2731, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2732, + "componentType":5126, + "count":12, + "type":"VEC4" + }, + { + "bufferView":2733, + "componentType":5126, + "count":2673, + "max":[ + 0.1385817527770996, + 0.5634288787841797, + 0.9818954467773438 + ], + "min":[ + -0.13892889022827148, + -0.5107336640357971, + -0.9818954467773438 + ], + "type":"VEC3" + }, + { + "bufferView":2734, + "componentType":5126, + "count":2673, + "type":"VEC3" + }, + { + "bufferView":2735, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2736, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2737, + "componentType":5126, + "count":2673, + "type":"VEC4" + }, + { + "bufferView":2738, + "componentType":5126, + "count":772, + "max":[ + 0.18532037734985352, + 0.43319180607795715, + 0.8225021362304688 + ], + "min":[ + -0.18532037734985352, + -0.5634289383888245, + -0.6974172592163086 + ], + "type":"VEC3" + }, + { + "bufferView":2739, + "componentType":5126, + "count":772, + "type":"VEC3" + }, + { + "bufferView":2740, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2741, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2742, + "componentType":5126, + "count":772, + "type":"VEC4" + }, + { + "bufferView":2743, + "componentType":5126, + "count":20, + "max":[ + 0.1784958839416504, + 0.3607751429080963, + 0.7400312423706055 + ], + "min":[ + -0.18242406845092773, + -0.4491453468799591, + -0.6324949264526367 + ], + "type":"VEC3" + }, + { + "bufferView":2744, + "componentType":5126, + "count":20, + "type":"VEC3" + }, + { + "bufferView":2745, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2746, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2747, + "componentType":5126, + "count":20, + "type":"VEC4" + }, + { + "bufferView":2748, + "componentType":5126, + "count":12, + "max":[ + 0.13641119003295898, + 0.39668139815330505, + 0.8075838088989258 + ], + "min":[ + -0.13641119003295898, + 0.08890751004219055, + -0.6824979782104492 + ], + "type":"VEC3" + }, + { + "bufferView":2749, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":2750, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2751, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2752, + "componentType":5126, + "count":12, + "type":"VEC4" + }, + { + "bufferView":2753, + "componentType":5126, + "count":2673, + "max":[ + 0.1385817527770996, + 0.5634288787841797, + 0.9818954467773438 + ], + "min":[ + -0.13892889022827148, + -0.5107336640357971, + -0.9818954467773438 + ], + "type":"VEC3" + }, + { + "bufferView":2754, + "componentType":5126, + "count":2673, + "type":"VEC3" + }, + { + "bufferView":2755, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2756, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2757, + "componentType":5126, + "count":2673, + "type":"VEC4" + }, + { + "bufferView":2758, + "componentType":5126, + "count":772, + "max":[ + 0.18532037734985352, + 0.43319180607795715, + 0.8225021362304688 + ], + "min":[ + -0.18532037734985352, + -0.5634289383888245, + -0.6974172592163086 + ], + "type":"VEC3" + }, + { + "bufferView":2759, + "componentType":5126, + "count":772, + "type":"VEC3" + }, + { + "bufferView":2760, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2761, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2762, + "componentType":5126, + "count":772, + "type":"VEC4" + }, + { + "bufferView":2763, + "componentType":5126, + "count":20, + "max":[ + 0.1784958839416504, + 0.3607751429080963, + 0.7400312423706055 + ], + "min":[ + -0.18242406845092773, + -0.4491453468799591, + -0.6324949264526367 + ], + "type":"VEC3" + }, + { + "bufferView":2764, + "componentType":5126, + "count":20, + "type":"VEC3" + }, + { + "bufferView":2765, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2766, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2767, + "componentType":5126, + "count":20, + "type":"VEC4" + }, + { + "bufferView":2768, + "componentType":5126, + "count":12, + "max":[ + 0.13641119003295898, + 0.39668139815330505, + 0.8075838088989258 + ], + "min":[ + -0.13641119003295898, + 0.08890751004219055, + -0.6824979782104492 + ], + "type":"VEC3" + }, + { + "bufferView":2769, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":2770, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2771, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2772, + "componentType":5126, + "count":12, + "type":"VEC4" + }, + { + "bufferView":2773, + "componentType":5126, + "count":2673, + "max":[ + 0.1385817527770996, + 0.5634288787841797, + 0.9818954467773438 + ], + "min":[ + -0.13892889022827148, + -0.5107336640357971, + -0.9818954467773438 + ], + "type":"VEC3" + }, + { + "bufferView":2774, + "componentType":5126, + "count":2673, + "type":"VEC3" + }, + { + "bufferView":2775, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2776, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2777, + "componentType":5126, + "count":2673, + "type":"VEC4" + }, + { + "bufferView":2778, + "componentType":5126, + "count":772, + "max":[ + 0.18532037734985352, + 0.43319180607795715, + 0.8225021362304688 + ], + "min":[ + -0.18532037734985352, + -0.5634289383888245, + -0.6974172592163086 + ], + "type":"VEC3" + }, + { + "bufferView":2779, + "componentType":5126, + "count":772, + "type":"VEC3" + }, + { + "bufferView":2780, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2781, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2782, + "componentType":5126, + "count":772, + "type":"VEC4" + }, + { + "bufferView":2783, + "componentType":5126, + "count":20, + "max":[ + 0.1784958839416504, + 0.3607751429080963, + 0.7400312423706055 + ], + "min":[ + -0.18242406845092773, + -0.4491453468799591, + -0.6324949264526367 + ], + "type":"VEC3" + }, + { + "bufferView":2784, + "componentType":5126, + "count":20, + "type":"VEC3" + }, + { + "bufferView":2785, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2786, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2787, + "componentType":5126, + "count":20, + "type":"VEC4" + }, + { + "bufferView":2788, + "componentType":5126, + "count":12, + "max":[ + 0.13641119003295898, + 0.39668139815330505, + 0.8075838088989258 + ], + "min":[ + -0.13641119003295898, + 0.08890751004219055, + -0.6824979782104492 + ], + "type":"VEC3" + }, + { + "bufferView":2789, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":2790, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2791, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2792, + "componentType":5126, + "count":12, + "type":"VEC4" + }, + { + "bufferView":2793, + "componentType":5126, + "count":2673, + "max":[ + 0.1385817527770996, + 0.5634288787841797, + 0.9818954467773438 + ], + "min":[ + -0.13892889022827148, + -0.5107336640357971, + -0.9818954467773438 + ], + "type":"VEC3" + }, + { + "bufferView":2794, + "componentType":5126, + "count":2673, + "type":"VEC3" + }, + { + "bufferView":2795, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2796, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2797, + "componentType":5126, + "count":2673, + "type":"VEC4" + }, + { + "bufferView":2798, + "componentType":5126, + "count":772, + "max":[ + 0.18532037734985352, + 0.43319180607795715, + 0.8225021362304688 + ], + "min":[ + -0.18532037734985352, + -0.5634289383888245, + -0.6974172592163086 + ], + "type":"VEC3" + }, + { + "bufferView":2799, + "componentType":5126, + "count":772, + "type":"VEC3" + }, + { + "bufferView":2800, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2801, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2802, + "componentType":5126, + "count":772, + "type":"VEC4" + }, + { + "bufferView":2803, + "componentType":5126, + "count":20, + "max":[ + 0.1784958839416504, + 0.3607751429080963, + 0.7400312423706055 + ], + "min":[ + -0.18242406845092773, + -0.4491453468799591, + -0.6324949264526367 + ], + "type":"VEC3" + }, + { + "bufferView":2804, + "componentType":5126, + "count":20, + "type":"VEC3" + }, + { + "bufferView":2805, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2806, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2807, + "componentType":5126, + "count":20, + "type":"VEC4" + }, + { + "bufferView":2808, + "componentType":5126, + "count":12, + "max":[ + 0.13641119003295898, + 0.39668139815330505, + 0.8075838088989258 + ], + "min":[ + -0.13641119003295898, + 0.08890751004219055, + -0.6824979782104492 + ], + "type":"VEC3" + }, + { + "bufferView":2809, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":2810, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2811, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2812, + "componentType":5126, + "count":12, + "type":"VEC4" + }, + { + "bufferView":2813, + "componentType":5126, + "count":2673, + "max":[ + 0.1385817527770996, + 0.5634288787841797, + 0.9818954467773438 + ], + "min":[ + -0.13892889022827148, + -0.5107336640357971, + -0.9818954467773438 + ], + "type":"VEC3" + }, + { + "bufferView":2814, + "componentType":5126, + "count":2673, + "type":"VEC3" + }, + { + "bufferView":2815, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2816, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2817, + "componentType":5126, + "count":2673, + "type":"VEC4" + }, + { + "bufferView":2818, + "componentType":5126, + "count":772, + "max":[ + 0.18532037734985352, + 0.43319180607795715, + 0.8225021362304688 + ], + "min":[ + -0.18532037734985352, + -0.5634289383888245, + -0.6974172592163086 + ], + "type":"VEC3" + }, + { + "bufferView":2819, + "componentType":5126, + "count":772, + "type":"VEC3" + }, + { + "bufferView":2820, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2821, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2822, + "componentType":5126, + "count":772, + "type":"VEC4" + }, + { + "bufferView":2823, + "componentType":5126, + "count":20, + "max":[ + 0.1784958839416504, + 0.3607751429080963, + 0.7400312423706055 + ], + "min":[ + -0.18242406845092773, + -0.4491453468799591, + -0.6324949264526367 + ], + "type":"VEC3" + }, + { + "bufferView":2824, + "componentType":5126, + "count":20, + "type":"VEC3" + }, + { + "bufferView":2825, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2826, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2827, + "componentType":5126, + "count":20, + "type":"VEC4" + }, + { + "bufferView":2828, + "componentType":5126, + "count":12, + "max":[ + 0.13641119003295898, + 0.39668139815330505, + 0.8075838088989258 + ], + "min":[ + -0.13641119003295898, + 0.08890751004219055, + -0.6824979782104492 + ], + "type":"VEC3" + }, + { + "bufferView":2829, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":2830, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2831, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2832, + "componentType":5126, + "count":12, + "type":"VEC4" + }, + { + "bufferView":2833, + "componentType":5126, + "count":2673, + "max":[ + 0.1385817527770996, + 0.5634288787841797, + 0.9818954467773438 + ], + "min":[ + -0.13892889022827148, + -0.5107336640357971, + -0.9818954467773438 + ], + "type":"VEC3" + }, + { + "bufferView":2834, + "componentType":5126, + "count":2673, + "type":"VEC3" + }, + { + "bufferView":2835, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2836, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2837, + "componentType":5126, + "count":2673, + "type":"VEC4" + }, + { + "bufferView":2838, + "componentType":5126, + "count":772, + "max":[ + 0.18532037734985352, + 0.43319180607795715, + 0.8225021362304688 + ], + "min":[ + -0.18532037734985352, + -0.5634289383888245, + -0.6974172592163086 + ], + "type":"VEC3" + }, + { + "bufferView":2839, + "componentType":5126, + "count":772, + "type":"VEC3" + }, + { + "bufferView":2840, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2841, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2842, + "componentType":5126, + "count":772, + "type":"VEC4" + }, + { + "bufferView":2843, + "componentType":5126, + "count":20, + "max":[ + 0.1784958839416504, + 0.3607751429080963, + 0.7400312423706055 + ], + "min":[ + -0.18242406845092773, + -0.4491453468799591, + -0.6324949264526367 + ], + "type":"VEC3" + }, + { + "bufferView":2844, + "componentType":5126, + "count":20, + "type":"VEC3" + }, + { + "bufferView":2845, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2846, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2847, + "componentType":5126, + "count":20, + "type":"VEC4" + }, + { + "bufferView":2848, + "componentType":5126, + "count":12, + "max":[ + 0.13641119003295898, + 0.39668139815330505, + 0.8075838088989258 + ], + "min":[ + -0.13641119003295898, + 0.08890751004219055, + -0.6824979782104492 + ], + "type":"VEC3" + }, + { + "bufferView":2849, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":2850, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2851, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2852, + "componentType":5126, + "count":12, + "type":"VEC4" + }, + { + "bufferView":2853, + "componentType":5126, + "count":2673, + "max":[ + 0.1385817527770996, + 0.5634288787841797, + 0.9818954467773438 + ], + "min":[ + -0.13892889022827148, + -0.5107336640357971, + -0.9818954467773438 + ], + "type":"VEC3" + }, + { + "bufferView":2854, + "componentType":5126, + "count":2673, + "type":"VEC3" + }, + { + "bufferView":2855, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2856, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2857, + "componentType":5126, + "count":2673, + "type":"VEC4" + }, + { + "bufferView":2858, + "componentType":5126, + "count":772, + "max":[ + 0.18532037734985352, + 0.43319180607795715, + 0.8225021362304688 + ], + "min":[ + -0.18532037734985352, + -0.5634289383888245, + -0.6974172592163086 + ], + "type":"VEC3" + }, + { + "bufferView":2859, + "componentType":5126, + "count":772, + "type":"VEC3" + }, + { + "bufferView":2860, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2861, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2862, + "componentType":5126, + "count":772, + "type":"VEC4" + }, + { + "bufferView":2863, + "componentType":5126, + "count":20, + "max":[ + 0.1784958839416504, + 0.3607751429080963, + 0.7400312423706055 + ], + "min":[ + -0.18242406845092773, + -0.4491453468799591, + -0.6324949264526367 + ], + "type":"VEC3" + }, + { + "bufferView":2864, + "componentType":5126, + "count":20, + "type":"VEC3" + }, + { + "bufferView":2865, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2866, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2867, + "componentType":5126, + "count":20, + "type":"VEC4" + }, + { + "bufferView":2868, + "componentType":5126, + "count":12, + "max":[ + 0.13641119003295898, + 0.39668139815330505, + 0.8075838088989258 + ], + "min":[ + -0.13641119003295898, + 0.08890751004219055, + -0.6824979782104492 + ], + "type":"VEC3" + }, + { + "bufferView":2869, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":2870, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2871, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2872, + "componentType":5126, + "count":12, + "type":"VEC4" + }, + { + "bufferView":2873, + "componentType":5126, + "count":2673, + "max":[ + 0.1385817527770996, + 0.5634288787841797, + 0.9818954467773438 + ], + "min":[ + -0.13892889022827148, + -0.5107336640357971, + -0.9818954467773438 + ], + "type":"VEC3" + }, + { + "bufferView":2874, + "componentType":5126, + "count":2673, + "type":"VEC3" + }, + { + "bufferView":2875, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2876, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2877, + "componentType":5126, + "count":2673, + "type":"VEC4" + }, + { + "bufferView":2878, + "componentType":5126, + "count":772, + "max":[ + 0.18532037734985352, + 0.43319180607795715, + 0.8225021362304688 + ], + "min":[ + -0.18532037734985352, + -0.5634289383888245, + -0.6974172592163086 + ], + "type":"VEC3" + }, + { + "bufferView":2879, + "componentType":5126, + "count":772, + "type":"VEC3" + }, + { + "bufferView":2880, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2881, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2882, + "componentType":5126, + "count":772, + "type":"VEC4" + }, + { + "bufferView":2883, + "componentType":5126, + "count":20, + "max":[ + 0.1784958839416504, + 0.3607751429080963, + 0.7400312423706055 + ], + "min":[ + -0.18242406845092773, + -0.4491453468799591, + -0.6324949264526367 + ], + "type":"VEC3" + }, + { + "bufferView":2884, + "componentType":5126, + "count":20, + "type":"VEC3" + }, + { + "bufferView":2885, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2886, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2887, + "componentType":5126, + "count":20, + "type":"VEC4" + }, + { + "bufferView":2888, + "componentType":5126, + "count":12, + "max":[ + 0.13641119003295898, + 0.39668139815330505, + 0.8075838088989258 + ], + "min":[ + -0.13641119003295898, + 0.08890751004219055, + -0.6824979782104492 + ], + "type":"VEC3" + }, + { + "bufferView":2889, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":2890, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2891, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2892, + "componentType":5126, + "count":12, + "type":"VEC4" + }, + { + "bufferView":2893, + "componentType":5126, + "count":2673, + "max":[ + 0.1385817527770996, + 0.5634288787841797, + 0.9818954467773438 + ], + "min":[ + -0.13892889022827148, + -0.5107336640357971, + -0.9818954467773438 + ], + "type":"VEC3" + }, + { + "bufferView":2894, + "componentType":5126, + "count":2673, + "type":"VEC3" + }, + { + "bufferView":2895, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2896, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2897, + "componentType":5126, + "count":2673, + "type":"VEC4" + }, + { + "bufferView":2898, + "componentType":5126, + "count":772, + "max":[ + 0.18532037734985352, + 0.43319180607795715, + 0.8225021362304688 + ], + "min":[ + -0.18532037734985352, + -0.5634289383888245, + -0.6974172592163086 + ], + "type":"VEC3" + }, + { + "bufferView":2899, + "componentType":5126, + "count":772, + "type":"VEC3" + }, + { + "bufferView":2900, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2901, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2902, + "componentType":5126, + "count":772, + "type":"VEC4" + }, + { + "bufferView":2903, + "componentType":5126, + "count":20, + "max":[ + 0.1784958839416504, + 0.3607751429080963, + 0.7400312423706055 + ], + "min":[ + -0.18242406845092773, + -0.4491453468799591, + -0.6324949264526367 + ], + "type":"VEC3" + }, + { + "bufferView":2904, + "componentType":5126, + "count":20, + "type":"VEC3" + }, + { + "bufferView":2905, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2906, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2907, + "componentType":5126, + "count":20, + "type":"VEC4" + }, + { + "bufferView":2908, + "componentType":5126, + "count":12, + "max":[ + 0.13641119003295898, + 0.39668139815330505, + 0.8075838088989258 + ], + "min":[ + -0.13641119003295898, + 0.08890751004219055, + -0.6824979782104492 + ], + "type":"VEC3" + }, + { + "bufferView":2909, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":2910, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2911, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2912, + "componentType":5126, + "count":12, + "type":"VEC4" + }, + { + "bufferView":2913, + "componentType":5126, + "count":2673, + "max":[ + 0.1385817527770996, + 0.5634288787841797, + 0.9818954467773438 + ], + "min":[ + -0.13892889022827148, + -0.5107336640357971, + -0.9818954467773438 + ], + "type":"VEC3" + }, + { + "bufferView":2914, + "componentType":5126, + "count":2673, + "type":"VEC3" + }, + { + "bufferView":2915, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2916, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2917, + "componentType":5126, + "count":2673, + "type":"VEC4" + }, + { + "bufferView":2918, + "componentType":5126, + "count":772, + "max":[ + 0.18532037734985352, + 0.43319180607795715, + 0.8225021362304688 + ], + "min":[ + -0.18532037734985352, + -0.5634289383888245, + -0.6974172592163086 + ], + "type":"VEC3" + }, + { + "bufferView":2919, + "componentType":5126, + "count":772, + "type":"VEC3" + }, + { + "bufferView":2920, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2921, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2922, + "componentType":5126, + "count":772, + "type":"VEC4" + }, + { + "bufferView":2923, + "componentType":5126, + "count":20, + "max":[ + 0.1784958839416504, + 0.3607751429080963, + 0.7400312423706055 + ], + "min":[ + -0.18242406845092773, + -0.4491453468799591, + -0.6324949264526367 + ], + "type":"VEC3" + }, + { + "bufferView":2924, + "componentType":5126, + "count":20, + "type":"VEC3" + }, + { + "bufferView":2925, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2926, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2927, + "componentType":5126, + "count":20, + "type":"VEC4" + }, + { + "bufferView":2928, + "componentType":5126, + "count":12, + "max":[ + 0.13641119003295898, + 0.39668139815330505, + 0.8075838088989258 + ], + "min":[ + -0.13641119003295898, + 0.08890751004219055, + -0.6824979782104492 + ], + "type":"VEC3" + }, + { + "bufferView":2929, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":2930, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2931, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2932, + "componentType":5126, + "count":12, + "type":"VEC4" + }, + { + "bufferView":2933, + "componentType":5126, + "count":2673, + "max":[ + 0.1385817527770996, + 0.5634288787841797, + 0.9818954467773438 + ], + "min":[ + -0.13892889022827148, + -0.5107336640357971, + -0.9818954467773438 + ], + "type":"VEC3" + }, + { + "bufferView":2934, + "componentType":5126, + "count":2673, + "type":"VEC3" + }, + { + "bufferView":2935, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2936, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2937, + "componentType":5126, + "count":2673, + "type":"VEC4" + }, + { + "bufferView":2938, + "componentType":5126, + "count":772, + "max":[ + 0.18532037734985352, + 0.43319180607795715, + 0.8225021362304688 + ], + "min":[ + -0.18532037734985352, + -0.5634289383888245, + -0.6974172592163086 + ], + "type":"VEC3" + }, + { + "bufferView":2939, + "componentType":5126, + "count":772, + "type":"VEC3" + }, + { + "bufferView":2940, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2941, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2942, + "componentType":5126, + "count":772, + "type":"VEC4" + }, + { + "bufferView":2943, + "componentType":5126, + "count":20, + "max":[ + 0.1784958839416504, + 0.3607751429080963, + 0.7400312423706055 + ], + "min":[ + -0.18242406845092773, + -0.4491453468799591, + -0.6324949264526367 + ], + "type":"VEC3" + }, + { + "bufferView":2944, + "componentType":5126, + "count":20, + "type":"VEC3" + }, + { + "bufferView":2945, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2946, + "componentType":5126, + "count":20, + "type":"VEC2" + }, + { + "bufferView":2947, + "componentType":5126, + "count":20, + "type":"VEC4" + }, + { + "bufferView":2948, + "componentType":5126, + "count":12, + "max":[ + 0.13641119003295898, + 0.39668139815330505, + 0.8075838088989258 + ], + "min":[ + -0.13641119003295898, + 0.08890751004219055, + -0.6824979782104492 + ], + "type":"VEC3" + }, + { + "bufferView":2949, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":2950, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2951, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2952, + "componentType":5126, + "count":12, + "type":"VEC4" + }, + { + "bufferView":2953, + "componentType":5126, + "count":2673, + "max":[ + 0.1385817527770996, + 0.5634288787841797, + 0.9818954467773438 + ], + "min":[ + -0.13892889022827148, + -0.5107336640357971, + -0.9818954467773438 + ], + "type":"VEC3" + }, + { + "bufferView":2954, + "componentType":5126, + "count":2673, + "type":"VEC3" + }, + { + "bufferView":2955, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2956, + "componentType":5126, + "count":2673, + "type":"VEC2" + }, + { + "bufferView":2957, + "componentType":5126, + "count":2673, + "type":"VEC4" + }, + { + "bufferView":2958, + "componentType":5126, + "count":772, + "max":[ + 0.18532037734985352, + 0.43319180607795715, + 0.8225021362304688 + ], + "min":[ + -0.18532037734985352, + -0.5634289383888245, + -0.6974172592163086 + ], + "type":"VEC3" + }, + { + "bufferView":2959, + "componentType":5126, + "count":772, + "type":"VEC3" + }, + { + "bufferView":2960, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2961, + "componentType":5126, + "count":772, + "type":"VEC2" + }, + { + "bufferView":2962, + "componentType":5126, + "count":772, + "type":"VEC4" + }, + { + "bufferView":2963, + "componentType":5126, + "count":132, + "max":[ + 0.5604453086853027, + 1.65812349319458, + 0.19024956226348877 + ], + "min":[ + -0.23853158950805664, + -2.703916549682617, + -0.2654638886451721 + ], + "type":"VEC3" + }, + { + "bufferView":2964, + "componentType":5126, + "count":132, + "type":"VEC3" + }, + { + "bufferView":2965, + "componentType":5126, + "count":132, + "type":"VEC2" + }, + { + "bufferView":2966, + "componentType":5126, + "count":132, + "type":"VEC2" + }, + { + "bufferView":2967, + "componentType":5126, + "count":132, + "type":"VEC4" + }, + { + "bufferView":2968, + "componentType":5123, + "count":324, + "type":"SCALAR" + }, + { + "bufferView":2969, + "componentType":5126, + "count":72, + "max":[ + -0.016660213470458984, + 1.3775787353515625, + 0.15579505264759064 + ], + "min":[ + -0.257601261138916, + 1.1236238479614258, + -0.0908403992652893 + ], + "type":"VEC3" + }, + { + "bufferView":2970, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":2971, + "componentType":5126, + "count":72, + "type":"VEC2" + }, + { + "bufferView":2972, + "componentType":5126, + "count":72, + "type":"VEC2" + }, + { + "bufferView":2973, + "componentType":5126, + "count":72, + "type":"VEC4" + }, + { + "bufferView":2974, + "componentType":5123, + "count":120, + "type":"SCALAR" + }, + { + "bufferView":2975, + "componentType":5126, + "count":670, + "max":[ + 1.2910523414611816, + 2.363870143890381, + 0.3395671248435974 + ], + "min":[ + -1.2910523414611816, + 0.2457118034362793, + -0.28544431924819946 + ], + "type":"VEC3" + }, + { + "bufferView":2976, + "componentType":5126, + "count":670, + "type":"VEC3" + }, + { + "bufferView":2977, + "componentType":5126, + "count":670, + "type":"VEC2" + }, + { + "bufferView":2978, + "componentType":5126, + "count":670, + "type":"VEC2" + }, + { + "bufferView":2979, + "componentType":5126, + "count":670, + "type":"VEC4" + }, + { + "bufferView":2980, + "componentType":5123, + "count":2436, + "type":"SCALAR" + }, + { + "bufferView":2981, + "componentType":5126, + "count":1632, + "max":[ + 1.7518658638000488, + 2.3912434577941895, + 0.0657586008310318 + ], + "min":[ + -1.7518658638000488, + 2.347207546234131, + -0.14792929589748383 + ], + "type":"VEC3" + }, + { + "bufferView":2982, + "componentType":5126, + "count":1632, + "type":"VEC3" + }, + { + "bufferView":2983, + "componentType":5126, + "count":1632, + "type":"VEC2" + }, + { + "bufferView":2984, + "componentType":5126, + "count":1632, + "type":"VEC2" + }, + { + "bufferView":2985, + "componentType":5126, + "count":1632, + "type":"VEC4" + }, + { + "bufferView":2986, + "componentType":5123, + "count":4776, + "type":"SCALAR" + }, + { + "bufferView":2987, + "componentType":5126, + "count":1048, + "max":[ + 1.8103547096252441, + 2.9038238525390625, + 0.13123025000095367 + ], + "min":[ + -1.8103547096252441, + 1.7449841499328613, + -0.2134028524160385 + ], + "type":"VEC3" + }, + { + "bufferView":2988, + "componentType":5126, + "count":1048, + "type":"VEC3" + }, + { + "bufferView":2989, + "componentType":5126, + "count":1048, + "type":"VEC2" + }, + { + "bufferView":2990, + "componentType":5126, + "count":1048, + "type":"VEC2" + }, + { + "bufferView":2991, + "componentType":5126, + "count":1048, + "type":"VEC4" + }, + { + "bufferView":2992, + "componentType":5123, + "count":3456, + "type":"SCALAR" + }, + { + "bufferView":2993, + "componentType":5126, + "count":1797, + "max":[ + 0.3045687675476074, + 1.3926243782043457, + 0.2630053758621216 + ], + "min":[ + -0.3045687675476074, + -3.006359577178955, + -0.3451775312423706 + ], + "type":"VEC3" + }, + { + "bufferView":2994, + "componentType":5126, + "count":1797, + "type":"VEC3" + }, + { + "bufferView":2995, + "componentType":5126, + "count":1797, + "type":"VEC2" + }, + { + "bufferView":2996, + "componentType":5126, + "count":1797, + "type":"VEC2" + }, + { + "bufferView":2997, + "componentType":5126, + "count":1797, + "type":"VEC4" + }, + { + "bufferView":2998, + "componentType":5123, + "count":7296, + "type":"SCALAR" + }, + { + "bufferView":2999, + "componentType":5126, + "count":236, + "max":[ + 0.13026857376098633, + 1.6586637496948242, + 0.3451775908470154 + ], + "min":[ + 0.011486530303955078, + 1.5398821830749512, + 0.31335538625717163 + ], + "type":"VEC3" + }, + { + "bufferView":3000, + "componentType":5126, + "count":236, + "type":"VEC3" + }, + { + "bufferView":3001, + "componentType":5126, + "count":236, + "type":"VEC2" + }, + { + "bufferView":3002, + "componentType":5126, + "count":236, + "type":"VEC2" + }, + { + "bufferView":3003, + "componentType":5126, + "count":236, + "type":"VEC4" + }, + { + "bufferView":3004, + "componentType":5123, + "count":912, + "type":"SCALAR" + }, + { + "bufferView":3005, + "componentType":5126, + "count":4386, + "max":[ + 1.1977295875549316, + 3.006359577178955, + 0.33282750844955444 + ], + "min":[ + -1.1977295875549316, + -1.8562841415405273, + -0.2786598801612854 + ], + "type":"VEC3" + }, + { + "bufferView":3006, + "componentType":5126, + "count":4386, + "type":"VEC3" + }, + { + "bufferView":3007, + "componentType":5126, + "count":4386, + "type":"VEC2" + }, + { + "bufferView":3008, + "componentType":5126, + "count":4386, + "type":"VEC2" + }, + { + "bufferView":3009, + "componentType":5126, + "count":4386, + "type":"VEC4" + }, + { + "bufferView":3010, + "componentType":5123, + "count":14916, + "type":"SCALAR" + }, + { + "bufferView":3011, + "componentType":5126, + "count":1919, + "max":[ + 0.5737900733947754, + 0.9596045017242432, + 0.18018625676631927 + ], + "min":[ + -0.17112207412719727, + 0.05765485018491745, + -0.22657780349254608 + ], + "type":"VEC3" + }, + { + "bufferView":3012, + "componentType":5126, + "count":1919, + "type":"VEC3" + }, + { + "bufferView":3013, + "componentType":5126, + "count":1919, + "type":"VEC2" + }, + { + "bufferView":3014, + "componentType":5126, + "count":1919, + "type":"VEC2" + }, + { + "bufferView":3015, + "componentType":5126, + "count":1919, + "type":"VEC4" + }, + { + "bufferView":3016, + "componentType":5123, + "count":6852, + "type":"SCALAR" + }, + { + "bufferView":3017, + "componentType":5126, + "count":202, + "max":[ + 0.07299089431762695, + 1.2415342330932617, + 0.13782592117786407 + ], + "min":[ + -0.05732297897338867, + 1.0071754455566406, + 0.06434912234544754 + ], + "type":"VEC3" + }, + { + "bufferView":3018, + "componentType":5126, + "count":202, + "type":"VEC3" + }, + { + "bufferView":3019, + "componentType":5126, + "count":202, + "type":"VEC2" + }, + { + "bufferView":3020, + "componentType":5126, + "count":202, + "type":"VEC2" + }, + { + "bufferView":3021, + "componentType":5126, + "count":202, + "type":"VEC4" + }, + { + "bufferView":3022, + "componentType":5123, + "count":348, + "type":"SCALAR" + }, + { + "bufferView":3023, + "componentType":5126, + "count":66, + "max":[ + 0.24745988845825195, + -2.286198616027832, + 0.20637430250644684 + ], + "min":[ + -0.24746084213256836, + -2.919868230819702, + -0.28854644298553467 + ], + "type":"VEC3" + }, + { + "bufferView":3024, + "componentType":5126, + "count":66, + "type":"VEC3" + }, + { + "bufferView":3025, + "componentType":5126, + "count":66, + "type":"VEC2" + }, + { + "bufferView":3026, + "componentType":5126, + "count":66, + "type":"VEC2" + }, + { + "bufferView":3027, + "componentType":5126, + "count":66, + "type":"VEC4" + }, + { + "bufferView":3028, + "componentType":5123, + "count":192, + "type":"SCALAR" + }, + { + "bufferView":3029, + "componentType":5126, + "count":5557, + "max":[ + 1.235231876373291, + 2.906926155090332, + 0.29042237997055054 + ], + "min":[ + -1.235231876373291, + -1.8435611724853516, + -0.2011137455701828 + ], + "type":"VEC3" + }, + { + "bufferView":3030, + "componentType":5126, + "count":5557, + "type":"VEC3" + }, + { + "bufferView":3031, + "componentType":5126, + "count":5557, + "type":"VEC2" + }, + { + "bufferView":3032, + "componentType":5126, + "count":5557, + "type":"VEC2" + }, + { + "bufferView":3033, + "componentType":5126, + "count":5557, + "type":"VEC4" + }, + { + "bufferView":3034, + "componentType":5123, + "count":26064, + "type":"SCALAR" + }, + { + "bufferView":3035, + "componentType":5126, + "count":8110, + "max":[ + 1.3933987617492676, + 2.465147018432617, + 0.3241404891014099 + ], + "min":[ + -1.3933987617492676, + -2.123387336730957, + -0.2648240029811859 + ], + "type":"VEC3" + }, + { + "bufferView":3036, + "componentType":5126, + "count":8110, + "type":"VEC3" + }, + { + "bufferView":3037, + "componentType":5126, + "count":8110, + "type":"VEC2" + }, + { + "bufferView":3038, + "componentType":5126, + "count":8110, + "type":"VEC2" + }, + { + "bufferView":3039, + "componentType":5126, + "count":8110, + "type":"VEC4" + }, + { + "bufferView":3040, + "componentType":5123, + "count":25152, + "type":"SCALAR" + }, + { + "bufferView":3041, + "componentType":5126, + "count":132, + "max":[ + 0.5604453086853027, + 1.65812349319458, + 0.19024956226348877 + ], + "min":[ + -0.23853158950805664, + -2.703916549682617, + -0.2654638886451721 + ], + "type":"VEC3" + }, + { + "bufferView":3042, + "componentType":5126, + "count":132, + "type":"VEC3" + }, + { + "bufferView":3043, + "componentType":5126, + "count":132, + "type":"VEC2" + }, + { + "bufferView":3044, + "componentType":5126, + "count":132, + "type":"VEC2" + }, + { + "bufferView":3045, + "componentType":5126, + "count":132, + "type":"VEC4" + }, + { + "bufferView":3046, + "componentType":5126, + "count":72, + "max":[ + -0.016660213470458984, + 1.3775787353515625, + 0.15579505264759064 + ], + "min":[ + -0.257601261138916, + 1.1236238479614258, + -0.0908403992652893 + ], + "type":"VEC3" + }, + { + "bufferView":3047, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":3048, + "componentType":5126, + "count":72, + "type":"VEC2" + }, + { + "bufferView":3049, + "componentType":5126, + "count":72, + "type":"VEC2" + }, + { + "bufferView":3050, + "componentType":5126, + "count":72, + "type":"VEC4" + }, + { + "bufferView":3051, + "componentType":5126, + "count":670, + "max":[ + 1.2910523414611816, + 2.363870143890381, + 0.3395671248435974 + ], + "min":[ + -1.2910523414611816, + 0.2457118034362793, + -0.28544431924819946 + ], + "type":"VEC3" + }, + { + "bufferView":3052, + "componentType":5126, + "count":670, + "type":"VEC3" + }, + { + "bufferView":3053, + "componentType":5126, + "count":670, + "type":"VEC2" + }, + { + "bufferView":3054, + "componentType":5126, + "count":670, + "type":"VEC2" + }, + { + "bufferView":3055, + "componentType":5126, + "count":670, + "type":"VEC4" + }, + { + "bufferView":3056, + "componentType":5126, + "count":1632, + "max":[ + 1.7518658638000488, + 2.3912434577941895, + 0.0657586008310318 + ], + "min":[ + -1.7518658638000488, + 2.347207546234131, + -0.14792929589748383 + ], + "type":"VEC3" + }, + { + "bufferView":3057, + "componentType":5126, + "count":1632, + "type":"VEC3" + }, + { + "bufferView":3058, + "componentType":5126, + "count":1632, + "type":"VEC2" + }, + { + "bufferView":3059, + "componentType":5126, + "count":1632, + "type":"VEC2" + }, + { + "bufferView":3060, + "componentType":5126, + "count":1632, + "type":"VEC4" + }, + { + "bufferView":3061, + "componentType":5126, + "count":1048, + "max":[ + 1.8103547096252441, + 2.9038238525390625, + 0.13123025000095367 + ], + "min":[ + -1.8103547096252441, + 1.7449841499328613, + -0.2134028524160385 + ], + "type":"VEC3" + }, + { + "bufferView":3062, + "componentType":5126, + "count":1048, + "type":"VEC3" + }, + { + "bufferView":3063, + "componentType":5126, + "count":1048, + "type":"VEC2" + }, + { + "bufferView":3064, + "componentType":5126, + "count":1048, + "type":"VEC2" + }, + { + "bufferView":3065, + "componentType":5126, + "count":1048, + "type":"VEC4" + }, + { + "bufferView":3066, + "componentType":5126, + "count":1797, + "max":[ + 0.3045687675476074, + 1.3926243782043457, + 0.2630053758621216 + ], + "min":[ + -0.3045687675476074, + -3.006359577178955, + -0.3451775312423706 + ], + "type":"VEC3" + }, + { + "bufferView":3067, + "componentType":5126, + "count":1797, + "type":"VEC3" + }, + { + "bufferView":3068, + "componentType":5126, + "count":1797, + "type":"VEC2" + }, + { + "bufferView":3069, + "componentType":5126, + "count":1797, + "type":"VEC2" + }, + { + "bufferView":3070, + "componentType":5126, + "count":1797, + "type":"VEC4" + }, + { + "bufferView":3071, + "componentType":5126, + "count":236, + "max":[ + 0.13026857376098633, + 1.6586637496948242, + 0.3451775908470154 + ], + "min":[ + 0.011486530303955078, + 1.5398821830749512, + 0.31335538625717163 + ], + "type":"VEC3" + }, + { + "bufferView":3072, + "componentType":5126, + "count":236, + "type":"VEC3" + }, + { + "bufferView":3073, + "componentType":5126, + "count":236, + "type":"VEC2" + }, + { + "bufferView":3074, + "componentType":5126, + "count":236, + "type":"VEC2" + }, + { + "bufferView":3075, + "componentType":5126, + "count":236, + "type":"VEC4" + }, + { + "bufferView":3076, + "componentType":5126, + "count":4386, + "max":[ + 1.1977295875549316, + 3.006359577178955, + 0.33282750844955444 + ], + "min":[ + -1.1977295875549316, + -1.8562841415405273, + -0.2786598801612854 + ], + "type":"VEC3" + }, + { + "bufferView":3077, + "componentType":5126, + "count":4386, + "type":"VEC3" + }, + { + "bufferView":3078, + "componentType":5126, + "count":4386, + "type":"VEC2" + }, + { + "bufferView":3079, + "componentType":5126, + "count":4386, + "type":"VEC2" + }, + { + "bufferView":3080, + "componentType":5126, + "count":4386, + "type":"VEC4" + }, + { + "bufferView":3081, + "componentType":5126, + "count":1919, + "max":[ + 0.5737900733947754, + 0.9596045017242432, + 0.18018625676631927 + ], + "min":[ + -0.17112207412719727, + 0.05765485018491745, + -0.22657780349254608 + ], + "type":"VEC3" + }, + { + "bufferView":3082, + "componentType":5126, + "count":1919, + "type":"VEC3" + }, + { + "bufferView":3083, + "componentType":5126, + "count":1919, + "type":"VEC2" + }, + { + "bufferView":3084, + "componentType":5126, + "count":1919, + "type":"VEC2" + }, + { + "bufferView":3085, + "componentType":5126, + "count":1919, + "type":"VEC4" + }, + { + "bufferView":3086, + "componentType":5126, + "count":202, + "max":[ + 0.07299089431762695, + 1.2415342330932617, + 0.13782592117786407 + ], + "min":[ + -0.05732297897338867, + 1.0071754455566406, + 0.06434912234544754 + ], + "type":"VEC3" + }, + { + "bufferView":3087, + "componentType":5126, + "count":202, + "type":"VEC3" + }, + { + "bufferView":3088, + "componentType":5126, + "count":202, + "type":"VEC2" + }, + { + "bufferView":3089, + "componentType":5126, + "count":202, + "type":"VEC2" + }, + { + "bufferView":3090, + "componentType":5126, + "count":202, + "type":"VEC4" + }, + { + "bufferView":3091, + "componentType":5126, + "count":66, + "max":[ + 0.24745988845825195, + -2.286198616027832, + 0.20637430250644684 + ], + "min":[ + -0.24746084213256836, + -2.919868230819702, + -0.28854644298553467 + ], + "type":"VEC3" + }, + { + "bufferView":3092, + "componentType":5126, + "count":66, + "type":"VEC3" + }, + { + "bufferView":3093, + "componentType":5126, + "count":66, + "type":"VEC2" + }, + { + "bufferView":3094, + "componentType":5126, + "count":66, + "type":"VEC2" + }, + { + "bufferView":3095, + "componentType":5126, + "count":66, + "type":"VEC4" + }, + { + "bufferView":3096, + "componentType":5126, + "count":5557, + "max":[ + 1.235231876373291, + 2.906926155090332, + 0.29042237997055054 + ], + "min":[ + -1.235231876373291, + -1.8435611724853516, + -0.2011137455701828 + ], + "type":"VEC3" + }, + { + "bufferView":3097, + "componentType":5126, + "count":5557, + "type":"VEC3" + }, + { + "bufferView":3098, + "componentType":5126, + "count":5557, + "type":"VEC2" + }, + { + "bufferView":3099, + "componentType":5126, + "count":5557, + "type":"VEC2" + }, + { + "bufferView":3100, + "componentType":5126, + "count":5557, + "type":"VEC4" + }, + { + "bufferView":3101, + "componentType":5126, + "count":8110, + "max":[ + 1.3933987617492676, + 2.465147018432617, + 0.3241404891014099 + ], + "min":[ + -1.3933987617492676, + -2.123387336730957, + -0.2648240029811859 + ], + "type":"VEC3" + }, + { + "bufferView":3102, + "componentType":5126, + "count":8110, + "type":"VEC3" + }, + { + "bufferView":3103, + "componentType":5126, + "count":8110, + "type":"VEC2" + }, + { + "bufferView":3104, + "componentType":5126, + "count":8110, + "type":"VEC2" + }, + { + "bufferView":3105, + "componentType":5126, + "count":8110, + "type":"VEC4" + }, + { + "bufferView":3106, + "componentType":5126, + "count":132, + "max":[ + 0.5604453086853027, + 1.65812349319458, + 0.19024956226348877 + ], + "min":[ + -0.23853158950805664, + -2.703916549682617, + -0.2654638886451721 + ], + "type":"VEC3" + }, + { + "bufferView":3107, + "componentType":5126, + "count":132, + "type":"VEC3" + }, + { + "bufferView":3108, + "componentType":5126, + "count":132, + "type":"VEC2" + }, + { + "bufferView":3109, + "componentType":5126, + "count":132, + "type":"VEC2" + }, + { + "bufferView":3110, + "componentType":5126, + "count":132, + "type":"VEC4" + }, + { + "bufferView":3111, + "componentType":5126, + "count":72, + "max":[ + -0.016660213470458984, + 1.3775787353515625, + 0.15579505264759064 + ], + "min":[ + -0.257601261138916, + 1.1236238479614258, + -0.0908403992652893 + ], + "type":"VEC3" + }, + { + "bufferView":3112, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":3113, + "componentType":5126, + "count":72, + "type":"VEC2" + }, + { + "bufferView":3114, + "componentType":5126, + "count":72, + "type":"VEC2" + }, + { + "bufferView":3115, + "componentType":5126, + "count":72, + "type":"VEC4" + }, + { + "bufferView":3116, + "componentType":5126, + "count":670, + "max":[ + 1.2910523414611816, + 2.363870143890381, + 0.3395671248435974 + ], + "min":[ + -1.2910523414611816, + 0.2457118034362793, + -0.28544431924819946 + ], + "type":"VEC3" + }, + { + "bufferView":3117, + "componentType":5126, + "count":670, + "type":"VEC3" + }, + { + "bufferView":3118, + "componentType":5126, + "count":670, + "type":"VEC2" + }, + { + "bufferView":3119, + "componentType":5126, + "count":670, + "type":"VEC2" + }, + { + "bufferView":3120, + "componentType":5126, + "count":670, + "type":"VEC4" + }, + { + "bufferView":3121, + "componentType":5126, + "count":1632, + "max":[ + 1.7518658638000488, + 2.3912434577941895, + 0.0657586008310318 + ], + "min":[ + -1.7518658638000488, + 2.347207546234131, + -0.14792929589748383 + ], + "type":"VEC3" + }, + { + "bufferView":3122, + "componentType":5126, + "count":1632, + "type":"VEC3" + }, + { + "bufferView":3123, + "componentType":5126, + "count":1632, + "type":"VEC2" + }, + { + "bufferView":3124, + "componentType":5126, + "count":1632, + "type":"VEC2" + }, + { + "bufferView":3125, + "componentType":5126, + "count":1632, + "type":"VEC4" + }, + { + "bufferView":3126, + "componentType":5126, + "count":1048, + "max":[ + 1.8103547096252441, + 2.9038238525390625, + 0.13123025000095367 + ], + "min":[ + -1.8103547096252441, + 1.7449841499328613, + -0.2134028524160385 + ], + "type":"VEC3" + }, + { + "bufferView":3127, + "componentType":5126, + "count":1048, + "type":"VEC3" + }, + { + "bufferView":3128, + "componentType":5126, + "count":1048, + "type":"VEC2" + }, + { + "bufferView":3129, + "componentType":5126, + "count":1048, + "type":"VEC2" + }, + { + "bufferView":3130, + "componentType":5126, + "count":1048, + "type":"VEC4" + }, + { + "bufferView":3131, + "componentType":5126, + "count":1797, + "max":[ + 0.3045687675476074, + 1.3926243782043457, + 0.2630053758621216 + ], + "min":[ + -0.3045687675476074, + -3.006359577178955, + -0.3451775312423706 + ], + "type":"VEC3" + }, + { + "bufferView":3132, + "componentType":5126, + "count":1797, + "type":"VEC3" + }, + { + "bufferView":3133, + "componentType":5126, + "count":1797, + "type":"VEC2" + }, + { + "bufferView":3134, + "componentType":5126, + "count":1797, + "type":"VEC2" + }, + { + "bufferView":3135, + "componentType":5126, + "count":1797, + "type":"VEC4" + }, + { + "bufferView":3136, + "componentType":5126, + "count":236, + "max":[ + 0.13026857376098633, + 1.6586637496948242, + 0.3451775908470154 + ], + "min":[ + 0.011486530303955078, + 1.5398821830749512, + 0.31335538625717163 + ], + "type":"VEC3" + }, + { + "bufferView":3137, + "componentType":5126, + "count":236, + "type":"VEC3" + }, + { + "bufferView":3138, + "componentType":5126, + "count":236, + "type":"VEC2" + }, + { + "bufferView":3139, + "componentType":5126, + "count":236, + "type":"VEC2" + }, + { + "bufferView":3140, + "componentType":5126, + "count":236, + "type":"VEC4" + }, + { + "bufferView":3141, + "componentType":5126, + "count":4386, + "max":[ + 1.1977295875549316, + 3.006359577178955, + 0.33282750844955444 + ], + "min":[ + -1.1977295875549316, + -1.8562841415405273, + -0.2786598801612854 + ], + "type":"VEC3" + }, + { + "bufferView":3142, + "componentType":5126, + "count":4386, + "type":"VEC3" + }, + { + "bufferView":3143, + "componentType":5126, + "count":4386, + "type":"VEC2" + }, + { + "bufferView":3144, + "componentType":5126, + "count":4386, + "type":"VEC2" + }, + { + "bufferView":3145, + "componentType":5126, + "count":4386, + "type":"VEC4" + }, + { + "bufferView":3146, + "componentType":5126, + "count":1919, + "max":[ + 0.5737900733947754, + 0.9596045017242432, + 0.18018625676631927 + ], + "min":[ + -0.17112207412719727, + 0.05765485018491745, + -0.22657780349254608 + ], + "type":"VEC3" + }, + { + "bufferView":3147, + "componentType":5126, + "count":1919, + "type":"VEC3" + }, + { + "bufferView":3148, + "componentType":5126, + "count":1919, + "type":"VEC2" + }, + { + "bufferView":3149, + "componentType":5126, + "count":1919, + "type":"VEC2" + }, + { + "bufferView":3150, + "componentType":5126, + "count":1919, + "type":"VEC4" + }, + { + "bufferView":3151, + "componentType":5126, + "count":202, + "max":[ + 0.07299089431762695, + 1.2415342330932617, + 0.13782592117786407 + ], + "min":[ + -0.05732297897338867, + 1.0071754455566406, + 0.06434912234544754 + ], + "type":"VEC3" + }, + { + "bufferView":3152, + "componentType":5126, + "count":202, + "type":"VEC3" + }, + { + "bufferView":3153, + "componentType":5126, + "count":202, + "type":"VEC2" + }, + { + "bufferView":3154, + "componentType":5126, + "count":202, + "type":"VEC2" + }, + { + "bufferView":3155, + "componentType":5126, + "count":202, + "type":"VEC4" + }, + { + "bufferView":3156, + "componentType":5126, + "count":66, + "max":[ + 0.24745988845825195, + -2.286198616027832, + 0.20637430250644684 + ], + "min":[ + -0.24746084213256836, + -2.919868230819702, + -0.28854644298553467 + ], + "type":"VEC3" + }, + { + "bufferView":3157, + "componentType":5126, + "count":66, + "type":"VEC3" + }, + { + "bufferView":3158, + "componentType":5126, + "count":66, + "type":"VEC2" + }, + { + "bufferView":3159, + "componentType":5126, + "count":66, + "type":"VEC2" + }, + { + "bufferView":3160, + "componentType":5126, + "count":66, + "type":"VEC4" + }, + { + "bufferView":3161, + "componentType":5126, + "count":5557, + "max":[ + 1.235231876373291, + 2.906926155090332, + 0.29042237997055054 + ], + "min":[ + -1.235231876373291, + -1.8435611724853516, + -0.2011137455701828 + ], + "type":"VEC3" + }, + { + "bufferView":3162, + "componentType":5126, + "count":5557, + "type":"VEC3" + }, + { + "bufferView":3163, + "componentType":5126, + "count":5557, + "type":"VEC2" + }, + { + "bufferView":3164, + "componentType":5126, + "count":5557, + "type":"VEC2" + }, + { + "bufferView":3165, + "componentType":5126, + "count":5557, + "type":"VEC4" + }, + { + "bufferView":3166, + "componentType":5126, + "count":8110, + "max":[ + 1.3933987617492676, + 2.465147018432617, + 0.3241404891014099 + ], + "min":[ + -1.3933987617492676, + -2.123387336730957, + -0.2648240029811859 + ], + "type":"VEC3" + }, + { + "bufferView":3167, + "componentType":5126, + "count":8110, + "type":"VEC3" + }, + { + "bufferView":3168, + "componentType":5126, + "count":8110, + "type":"VEC2" + }, + { + "bufferView":3169, + "componentType":5126, + "count":8110, + "type":"VEC2" + }, + { + "bufferView":3170, + "componentType":5126, + "count":8110, + "type":"VEC4" + }, + { + "bufferView":3171, + "componentType":5126, + "count":132, + "max":[ + 0.5604453086853027, + 1.65812349319458, + 0.19024956226348877 + ], + "min":[ + -0.23853158950805664, + -2.703916549682617, + -0.2654638886451721 + ], + "type":"VEC3" + }, + { + "bufferView":3172, + "componentType":5126, + "count":132, + "type":"VEC3" + }, + { + "bufferView":3173, + "componentType":5126, + "count":132, + "type":"VEC2" + }, + { + "bufferView":3174, + "componentType":5126, + "count":132, + "type":"VEC2" + }, + { + "bufferView":3175, + "componentType":5126, + "count":132, + "type":"VEC4" + }, + { + "bufferView":3176, + "componentType":5126, + "count":72, + "max":[ + -0.016660213470458984, + 1.3775787353515625, + 0.15579505264759064 + ], + "min":[ + -0.257601261138916, + 1.1236238479614258, + -0.0908403992652893 + ], + "type":"VEC3" + }, + { + "bufferView":3177, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":3178, + "componentType":5126, + "count":72, + "type":"VEC2" + }, + { + "bufferView":3179, + "componentType":5126, + "count":72, + "type":"VEC2" + }, + { + "bufferView":3180, + "componentType":5126, + "count":72, + "type":"VEC4" + }, + { + "bufferView":3181, + "componentType":5126, + "count":670, + "max":[ + 1.2910523414611816, + 2.363870143890381, + 0.3395671248435974 + ], + "min":[ + -1.2910523414611816, + 0.2457118034362793, + -0.28544431924819946 + ], + "type":"VEC3" + }, + { + "bufferView":3182, + "componentType":5126, + "count":670, + "type":"VEC3" + }, + { + "bufferView":3183, + "componentType":5126, + "count":670, + "type":"VEC2" + }, + { + "bufferView":3184, + "componentType":5126, + "count":670, + "type":"VEC2" + }, + { + "bufferView":3185, + "componentType":5126, + "count":670, + "type":"VEC4" + }, + { + "bufferView":3186, + "componentType":5126, + "count":1632, + "max":[ + 1.7518658638000488, + 2.3912434577941895, + 0.0657586008310318 + ], + "min":[ + -1.7518658638000488, + 2.347207546234131, + -0.14792929589748383 + ], + "type":"VEC3" + }, + { + "bufferView":3187, + "componentType":5126, + "count":1632, + "type":"VEC3" + }, + { + "bufferView":3188, + "componentType":5126, + "count":1632, + "type":"VEC2" + }, + { + "bufferView":3189, + "componentType":5126, + "count":1632, + "type":"VEC2" + }, + { + "bufferView":3190, + "componentType":5126, + "count":1632, + "type":"VEC4" + }, + { + "bufferView":3191, + "componentType":5126, + "count":1048, + "max":[ + 1.8103547096252441, + 2.9038238525390625, + 0.13123025000095367 + ], + "min":[ + -1.8103547096252441, + 1.7449841499328613, + -0.2134028524160385 + ], + "type":"VEC3" + }, + { + "bufferView":3192, + "componentType":5126, + "count":1048, + "type":"VEC3" + }, + { + "bufferView":3193, + "componentType":5126, + "count":1048, + "type":"VEC2" + }, + { + "bufferView":3194, + "componentType":5126, + "count":1048, + "type":"VEC2" + }, + { + "bufferView":3195, + "componentType":5126, + "count":1048, + "type":"VEC4" + }, + { + "bufferView":3196, + "componentType":5126, + "count":1797, + "max":[ + 0.3045687675476074, + 1.3926243782043457, + 0.2630053758621216 + ], + "min":[ + -0.3045687675476074, + -3.006359577178955, + -0.3451775312423706 + ], + "type":"VEC3" + }, + { + "bufferView":3197, + "componentType":5126, + "count":1797, + "type":"VEC3" + }, + { + "bufferView":3198, + "componentType":5126, + "count":1797, + "type":"VEC2" + }, + { + "bufferView":3199, + "componentType":5126, + "count":1797, + "type":"VEC2" + }, + { + "bufferView":3200, + "componentType":5126, + "count":1797, + "type":"VEC4" + }, + { + "bufferView":3201, + "componentType":5126, + "count":236, + "max":[ + 0.13026857376098633, + 1.6586637496948242, + 0.3451775908470154 + ], + "min":[ + 0.011486530303955078, + 1.5398821830749512, + 0.31335538625717163 + ], + "type":"VEC3" + }, + { + "bufferView":3202, + "componentType":5126, + "count":236, + "type":"VEC3" + }, + { + "bufferView":3203, + "componentType":5126, + "count":236, + "type":"VEC2" + }, + { + "bufferView":3204, + "componentType":5126, + "count":236, + "type":"VEC2" + }, + { + "bufferView":3205, + "componentType":5126, + "count":236, + "type":"VEC4" + }, + { + "bufferView":3206, + "componentType":5126, + "count":4386, + "max":[ + 1.1977295875549316, + 3.006359577178955, + 0.33282750844955444 + ], + "min":[ + -1.1977295875549316, + -1.8562841415405273, + -0.2786598801612854 + ], + "type":"VEC3" + }, + { + "bufferView":3207, + "componentType":5126, + "count":4386, + "type":"VEC3" + }, + { + "bufferView":3208, + "componentType":5126, + "count":4386, + "type":"VEC2" + }, + { + "bufferView":3209, + "componentType":5126, + "count":4386, + "type":"VEC2" + }, + { + "bufferView":3210, + "componentType":5126, + "count":4386, + "type":"VEC4" + }, + { + "bufferView":3211, + "componentType":5126, + "count":1919, + "max":[ + 0.5737900733947754, + 0.9596045017242432, + 0.18018625676631927 + ], + "min":[ + -0.17112207412719727, + 0.05765485018491745, + -0.22657780349254608 + ], + "type":"VEC3" + }, + { + "bufferView":3212, + "componentType":5126, + "count":1919, + "type":"VEC3" + }, + { + "bufferView":3213, + "componentType":5126, + "count":1919, + "type":"VEC2" + }, + { + "bufferView":3214, + "componentType":5126, + "count":1919, + "type":"VEC2" + }, + { + "bufferView":3215, + "componentType":5126, + "count":1919, + "type":"VEC4" + }, + { + "bufferView":3216, + "componentType":5126, + "count":202, + "max":[ + 0.07299089431762695, + 1.2415342330932617, + 0.13782592117786407 + ], + "min":[ + -0.05732297897338867, + 1.0071754455566406, + 0.06434912234544754 + ], + "type":"VEC3" + }, + { + "bufferView":3217, + "componentType":5126, + "count":202, + "type":"VEC3" + }, + { + "bufferView":3218, + "componentType":5126, + "count":202, + "type":"VEC2" + }, + { + "bufferView":3219, + "componentType":5126, + "count":202, + "type":"VEC2" + }, + { + "bufferView":3220, + "componentType":5126, + "count":202, + "type":"VEC4" + }, + { + "bufferView":3221, + "componentType":5126, + "count":66, + "max":[ + 0.24745988845825195, + -2.286198616027832, + 0.20637430250644684 + ], + "min":[ + -0.24746084213256836, + -2.919868230819702, + -0.28854644298553467 + ], + "type":"VEC3" + }, + { + "bufferView":3222, + "componentType":5126, + "count":66, + "type":"VEC3" + }, + { + "bufferView":3223, + "componentType":5126, + "count":66, + "type":"VEC2" + }, + { + "bufferView":3224, + "componentType":5126, + "count":66, + "type":"VEC2" + }, + { + "bufferView":3225, + "componentType":5126, + "count":66, + "type":"VEC4" + }, + { + "bufferView":3226, + "componentType":5126, + "count":5557, + "max":[ + 1.235231876373291, + 2.906926155090332, + 0.29042237997055054 + ], + "min":[ + -1.235231876373291, + -1.8435611724853516, + -0.2011137455701828 + ], + "type":"VEC3" + }, + { + "bufferView":3227, + "componentType":5126, + "count":5557, + "type":"VEC3" + }, + { + "bufferView":3228, + "componentType":5126, + "count":5557, + "type":"VEC2" + }, + { + "bufferView":3229, + "componentType":5126, + "count":5557, + "type":"VEC2" + }, + { + "bufferView":3230, + "componentType":5126, + "count":5557, + "type":"VEC4" + }, + { + "bufferView":3231, + "componentType":5126, + "count":8110, + "max":[ + 1.3933987617492676, + 2.465147018432617, + 0.3241404891014099 + ], + "min":[ + -1.3933987617492676, + -2.123387336730957, + -0.2648240029811859 + ], + "type":"VEC3" + }, + { + "bufferView":3232, + "componentType":5126, + "count":8110, + "type":"VEC3" + }, + { + "bufferView":3233, + "componentType":5126, + "count":8110, + "type":"VEC2" + }, + { + "bufferView":3234, + "componentType":5126, + "count":8110, + "type":"VEC2" + }, + { + "bufferView":3235, + "componentType":5126, + "count":8110, + "type":"VEC4" + }, + { + "bufferView":3236, + "componentType":5126, + "count":132, + "max":[ + 0.5604453086853027, + 1.65812349319458, + 0.19024956226348877 + ], + "min":[ + -0.23853158950805664, + -2.703916549682617, + -0.2654638886451721 + ], + "type":"VEC3" + }, + { + "bufferView":3237, + "componentType":5126, + "count":132, + "type":"VEC3" + }, + { + "bufferView":3238, + "componentType":5126, + "count":132, + "type":"VEC2" + }, + { + "bufferView":3239, + "componentType":5126, + "count":132, + "type":"VEC2" + }, + { + "bufferView":3240, + "componentType":5126, + "count":132, + "type":"VEC4" + }, + { + "bufferView":3241, + "componentType":5126, + "count":72, + "max":[ + -0.016660213470458984, + 1.3775787353515625, + 0.15579505264759064 + ], + "min":[ + -0.257601261138916, + 1.1236238479614258, + -0.0908403992652893 + ], + "type":"VEC3" + }, + { + "bufferView":3242, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":3243, + "componentType":5126, + "count":72, + "type":"VEC2" + }, + { + "bufferView":3244, + "componentType":5126, + "count":72, + "type":"VEC2" + }, + { + "bufferView":3245, + "componentType":5126, + "count":72, + "type":"VEC4" + }, + { + "bufferView":3246, + "componentType":5126, + "count":670, + "max":[ + 1.2910523414611816, + 2.363870143890381, + 0.3395671248435974 + ], + "min":[ + -1.2910523414611816, + 0.2457118034362793, + -0.28544431924819946 + ], + "type":"VEC3" + }, + { + "bufferView":3247, + "componentType":5126, + "count":670, + "type":"VEC3" + }, + { + "bufferView":3248, + "componentType":5126, + "count":670, + "type":"VEC2" + }, + { + "bufferView":3249, + "componentType":5126, + "count":670, + "type":"VEC2" + }, + { + "bufferView":3250, + "componentType":5126, + "count":670, + "type":"VEC4" + }, + { + "bufferView":3251, + "componentType":5126, + "count":1632, + "max":[ + 1.7518658638000488, + 2.3912434577941895, + 0.0657586008310318 + ], + "min":[ + -1.7518658638000488, + 2.347207546234131, + -0.14792929589748383 + ], + "type":"VEC3" + }, + { + "bufferView":3252, + "componentType":5126, + "count":1632, + "type":"VEC3" + }, + { + "bufferView":3253, + "componentType":5126, + "count":1632, + "type":"VEC2" + }, + { + "bufferView":3254, + "componentType":5126, + "count":1632, + "type":"VEC2" + }, + { + "bufferView":3255, + "componentType":5126, + "count":1632, + "type":"VEC4" + }, + { + "bufferView":3256, + "componentType":5126, + "count":1048, + "max":[ + 1.8103547096252441, + 2.9038238525390625, + 0.13123025000095367 + ], + "min":[ + -1.8103547096252441, + 1.7449841499328613, + -0.2134028524160385 + ], + "type":"VEC3" + }, + { + "bufferView":3257, + "componentType":5126, + "count":1048, + "type":"VEC3" + }, + { + "bufferView":3258, + "componentType":5126, + "count":1048, + "type":"VEC2" + }, + { + "bufferView":3259, + "componentType":5126, + "count":1048, + "type":"VEC2" + }, + { + "bufferView":3260, + "componentType":5126, + "count":1048, + "type":"VEC4" + }, + { + "bufferView":3261, + "componentType":5126, + "count":1797, + "max":[ + 0.3045687675476074, + 1.3926243782043457, + 0.2630053758621216 + ], + "min":[ + -0.3045687675476074, + -3.006359577178955, + -0.3451775312423706 + ], + "type":"VEC3" + }, + { + "bufferView":3262, + "componentType":5126, + "count":1797, + "type":"VEC3" + }, + { + "bufferView":3263, + "componentType":5126, + "count":1797, + "type":"VEC2" + }, + { + "bufferView":3264, + "componentType":5126, + "count":1797, + "type":"VEC2" + }, + { + "bufferView":3265, + "componentType":5126, + "count":1797, + "type":"VEC4" + }, + { + "bufferView":3266, + "componentType":5126, + "count":236, + "max":[ + 0.13026857376098633, + 1.6586637496948242, + 0.3451775908470154 + ], + "min":[ + 0.011486530303955078, + 1.5398821830749512, + 0.31335538625717163 + ], + "type":"VEC3" + }, + { + "bufferView":3267, + "componentType":5126, + "count":236, + "type":"VEC3" + }, + { + "bufferView":3268, + "componentType":5126, + "count":236, + "type":"VEC2" + }, + { + "bufferView":3269, + "componentType":5126, + "count":236, + "type":"VEC2" + }, + { + "bufferView":3270, + "componentType":5126, + "count":236, + "type":"VEC4" + }, + { + "bufferView":3271, + "componentType":5126, + "count":4386, + "max":[ + 1.1977295875549316, + 3.006359577178955, + 0.33282750844955444 + ], + "min":[ + -1.1977295875549316, + -1.8562841415405273, + -0.2786598801612854 + ], + "type":"VEC3" + }, + { + "bufferView":3272, + "componentType":5126, + "count":4386, + "type":"VEC3" + }, + { + "bufferView":3273, + "componentType":5126, + "count":4386, + "type":"VEC2" + }, + { + "bufferView":3274, + "componentType":5126, + "count":4386, + "type":"VEC2" + }, + { + "bufferView":3275, + "componentType":5126, + "count":4386, + "type":"VEC4" + }, + { + "bufferView":3276, + "componentType":5126, + "count":1919, + "max":[ + 0.5737900733947754, + 0.9596045017242432, + 0.18018625676631927 + ], + "min":[ + -0.17112207412719727, + 0.05765485018491745, + -0.22657780349254608 + ], + "type":"VEC3" + }, + { + "bufferView":3277, + "componentType":5126, + "count":1919, + "type":"VEC3" + }, + { + "bufferView":3278, + "componentType":5126, + "count":1919, + "type":"VEC2" + }, + { + "bufferView":3279, + "componentType":5126, + "count":1919, + "type":"VEC2" + }, + { + "bufferView":3280, + "componentType":5126, + "count":1919, + "type":"VEC4" + }, + { + "bufferView":3281, + "componentType":5126, + "count":202, + "max":[ + 0.07299089431762695, + 1.2415342330932617, + 0.13782592117786407 + ], + "min":[ + -0.05732297897338867, + 1.0071754455566406, + 0.06434912234544754 + ], + "type":"VEC3" + }, + { + "bufferView":3282, + "componentType":5126, + "count":202, + "type":"VEC3" + }, + { + "bufferView":3283, + "componentType":5126, + "count":202, + "type":"VEC2" + }, + { + "bufferView":3284, + "componentType":5126, + "count":202, + "type":"VEC2" + }, + { + "bufferView":3285, + "componentType":5126, + "count":202, + "type":"VEC4" + }, + { + "bufferView":3286, + "componentType":5126, + "count":66, + "max":[ + 0.24745988845825195, + -2.286198616027832, + 0.20637430250644684 + ], + "min":[ + -0.24746084213256836, + -2.919868230819702, + -0.28854644298553467 + ], + "type":"VEC3" + }, + { + "bufferView":3287, + "componentType":5126, + "count":66, + "type":"VEC3" + }, + { + "bufferView":3288, + "componentType":5126, + "count":66, + "type":"VEC2" + }, + { + "bufferView":3289, + "componentType":5126, + "count":66, + "type":"VEC2" + }, + { + "bufferView":3290, + "componentType":5126, + "count":66, + "type":"VEC4" + }, + { + "bufferView":3291, + "componentType":5126, + "count":5557, + "max":[ + 1.235231876373291, + 2.906926155090332, + 0.29042237997055054 + ], + "min":[ + -1.235231876373291, + -1.8435611724853516, + -0.2011137455701828 + ], + "type":"VEC3" + }, + { + "bufferView":3292, + "componentType":5126, + "count":5557, + "type":"VEC3" + }, + { + "bufferView":3293, + "componentType":5126, + "count":5557, + "type":"VEC2" + }, + { + "bufferView":3294, + "componentType":5126, + "count":5557, + "type":"VEC2" + }, + { + "bufferView":3295, + "componentType":5126, + "count":5557, + "type":"VEC4" + }, + { + "bufferView":3296, + "componentType":5126, + "count":8110, + "max":[ + 1.3933987617492676, + 2.465147018432617, + 0.3241404891014099 + ], + "min":[ + -1.3933987617492676, + -2.123387336730957, + -0.2648240029811859 + ], + "type":"VEC3" + }, + { + "bufferView":3297, + "componentType":5126, + "count":8110, + "type":"VEC3" + }, + { + "bufferView":3298, + "componentType":5126, + "count":8110, + "type":"VEC2" + }, + { + "bufferView":3299, + "componentType":5126, + "count":8110, + "type":"VEC2" + }, + { + "bufferView":3300, + "componentType":5126, + "count":8110, + "type":"VEC4" + }, + { + "bufferView":3301, + "componentType":5126, + "count":132, + "max":[ + 0.5604453086853027, + 1.65812349319458, + 0.19024956226348877 + ], + "min":[ + -0.23853158950805664, + -2.703916549682617, + -0.2654638886451721 + ], + "type":"VEC3" + }, + { + "bufferView":3302, + "componentType":5126, + "count":132, + "type":"VEC3" + }, + { + "bufferView":3303, + "componentType":5126, + "count":132, + "type":"VEC2" + }, + { + "bufferView":3304, + "componentType":5126, + "count":132, + "type":"VEC2" + }, + { + "bufferView":3305, + "componentType":5126, + "count":132, + "type":"VEC4" + }, + { + "bufferView":3306, + "componentType":5126, + "count":72, + "max":[ + -0.016660213470458984, + 1.3775787353515625, + 0.15579505264759064 + ], + "min":[ + -0.257601261138916, + 1.1236238479614258, + -0.0908403992652893 + ], + "type":"VEC3" + }, + { + "bufferView":3307, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":3308, + "componentType":5126, + "count":72, + "type":"VEC2" + }, + { + "bufferView":3309, + "componentType":5126, + "count":72, + "type":"VEC2" + }, + { + "bufferView":3310, + "componentType":5126, + "count":72, + "type":"VEC4" + }, + { + "bufferView":3311, + "componentType":5126, + "count":670, + "max":[ + 1.2910523414611816, + 2.363870143890381, + 0.3395671248435974 + ], + "min":[ + -1.2910523414611816, + 0.2457118034362793, + -0.28544431924819946 + ], + "type":"VEC3" + }, + { + "bufferView":3312, + "componentType":5126, + "count":670, + "type":"VEC3" + }, + { + "bufferView":3313, + "componentType":5126, + "count":670, + "type":"VEC2" + }, + { + "bufferView":3314, + "componentType":5126, + "count":670, + "type":"VEC2" + }, + { + "bufferView":3315, + "componentType":5126, + "count":670, + "type":"VEC4" + }, + { + "bufferView":3316, + "componentType":5126, + "count":1632, + "max":[ + 1.7518658638000488, + 2.3912434577941895, + 0.0657586008310318 + ], + "min":[ + -1.7518658638000488, + 2.347207546234131, + -0.14792929589748383 + ], + "type":"VEC3" + }, + { + "bufferView":3317, + "componentType":5126, + "count":1632, + "type":"VEC3" + }, + { + "bufferView":3318, + "componentType":5126, + "count":1632, + "type":"VEC2" + }, + { + "bufferView":3319, + "componentType":5126, + "count":1632, + "type":"VEC2" + }, + { + "bufferView":3320, + "componentType":5126, + "count":1632, + "type":"VEC4" + }, + { + "bufferView":3321, + "componentType":5126, + "count":1048, + "max":[ + 1.8103547096252441, + 2.9038238525390625, + 0.13123025000095367 + ], + "min":[ + -1.8103547096252441, + 1.7449841499328613, + -0.2134028524160385 + ], + "type":"VEC3" + }, + { + "bufferView":3322, + "componentType":5126, + "count":1048, + "type":"VEC3" + }, + { + "bufferView":3323, + "componentType":5126, + "count":1048, + "type":"VEC2" + }, + { + "bufferView":3324, + "componentType":5126, + "count":1048, + "type":"VEC2" + }, + { + "bufferView":3325, + "componentType":5126, + "count":1048, + "type":"VEC4" + }, + { + "bufferView":3326, + "componentType":5126, + "count":1797, + "max":[ + 0.3045687675476074, + 1.3926243782043457, + 0.2630053758621216 + ], + "min":[ + -0.3045687675476074, + -3.006359577178955, + -0.3451775312423706 + ], + "type":"VEC3" + }, + { + "bufferView":3327, + "componentType":5126, + "count":1797, + "type":"VEC3" + }, + { + "bufferView":3328, + "componentType":5126, + "count":1797, + "type":"VEC2" + }, + { + "bufferView":3329, + "componentType":5126, + "count":1797, + "type":"VEC2" + }, + { + "bufferView":3330, + "componentType":5126, + "count":1797, + "type":"VEC4" + }, + { + "bufferView":3331, + "componentType":5126, + "count":236, + "max":[ + 0.13026857376098633, + 1.6586637496948242, + 0.3451775908470154 + ], + "min":[ + 0.011486530303955078, + 1.5398821830749512, + 0.31335538625717163 + ], + "type":"VEC3" + }, + { + "bufferView":3332, + "componentType":5126, + "count":236, + "type":"VEC3" + }, + { + "bufferView":3333, + "componentType":5126, + "count":236, + "type":"VEC2" + }, + { + "bufferView":3334, + "componentType":5126, + "count":236, + "type":"VEC2" + }, + { + "bufferView":3335, + "componentType":5126, + "count":236, + "type":"VEC4" + }, + { + "bufferView":3336, + "componentType":5126, + "count":4386, + "max":[ + 1.1977295875549316, + 3.006359577178955, + 0.33282750844955444 + ], + "min":[ + -1.1977295875549316, + -1.8562841415405273, + -0.2786598801612854 + ], + "type":"VEC3" + }, + { + "bufferView":3337, + "componentType":5126, + "count":4386, + "type":"VEC3" + }, + { + "bufferView":3338, + "componentType":5126, + "count":4386, + "type":"VEC2" + }, + { + "bufferView":3339, + "componentType":5126, + "count":4386, + "type":"VEC2" + }, + { + "bufferView":3340, + "componentType":5126, + "count":4386, + "type":"VEC4" + }, + { + "bufferView":3341, + "componentType":5126, + "count":1919, + "max":[ + 0.5737900733947754, + 0.9596045017242432, + 0.18018625676631927 + ], + "min":[ + -0.17112207412719727, + 0.05765485018491745, + -0.22657780349254608 + ], + "type":"VEC3" + }, + { + "bufferView":3342, + "componentType":5126, + "count":1919, + "type":"VEC3" + }, + { + "bufferView":3343, + "componentType":5126, + "count":1919, + "type":"VEC2" + }, + { + "bufferView":3344, + "componentType":5126, + "count":1919, + "type":"VEC2" + }, + { + "bufferView":3345, + "componentType":5126, + "count":1919, + "type":"VEC4" + }, + { + "bufferView":3346, + "componentType":5126, + "count":202, + "max":[ + 0.07299089431762695, + 1.2415342330932617, + 0.13782592117786407 + ], + "min":[ + -0.05732297897338867, + 1.0071754455566406, + 0.06434912234544754 + ], + "type":"VEC3" + }, + { + "bufferView":3347, + "componentType":5126, + "count":202, + "type":"VEC3" + }, + { + "bufferView":3348, + "componentType":5126, + "count":202, + "type":"VEC2" + }, + { + "bufferView":3349, + "componentType":5126, + "count":202, + "type":"VEC2" + }, + { + "bufferView":3350, + "componentType":5126, + "count":202, + "type":"VEC4" + }, + { + "bufferView":3351, + "componentType":5126, + "count":66, + "max":[ + 0.24745988845825195, + -2.286198616027832, + 0.20637430250644684 + ], + "min":[ + -0.24746084213256836, + -2.919868230819702, + -0.28854644298553467 + ], + "type":"VEC3" + }, + { + "bufferView":3352, + "componentType":5126, + "count":66, + "type":"VEC3" + }, + { + "bufferView":3353, + "componentType":5126, + "count":66, + "type":"VEC2" + }, + { + "bufferView":3354, + "componentType":5126, + "count":66, + "type":"VEC2" + }, + { + "bufferView":3355, + "componentType":5126, + "count":66, + "type":"VEC4" + }, + { + "bufferView":3356, + "componentType":5126, + "count":5557, + "max":[ + 1.235231876373291, + 2.906926155090332, + 0.29042237997055054 + ], + "min":[ + -1.235231876373291, + -1.8435611724853516, + -0.2011137455701828 + ], + "type":"VEC3" + }, + { + "bufferView":3357, + "componentType":5126, + "count":5557, + "type":"VEC3" + }, + { + "bufferView":3358, + "componentType":5126, + "count":5557, + "type":"VEC2" + }, + { + "bufferView":3359, + "componentType":5126, + "count":5557, + "type":"VEC2" + }, + { + "bufferView":3360, + "componentType":5126, + "count":5557, + "type":"VEC4" + }, + { + "bufferView":3361, + "componentType":5126, + "count":8110, + "max":[ + 1.3933987617492676, + 2.465147018432617, + 0.3241404891014099 + ], + "min":[ + -1.3933987617492676, + -2.123387336730957, + -0.2648240029811859 + ], + "type":"VEC3" + }, + { + "bufferView":3362, + "componentType":5126, + "count":8110, + "type":"VEC3" + }, + { + "bufferView":3363, + "componentType":5126, + "count":8110, + "type":"VEC2" + }, + { + "bufferView":3364, + "componentType":5126, + "count":8110, + "type":"VEC2" + }, + { + "bufferView":3365, + "componentType":5126, + "count":8110, + "type":"VEC4" + }, + { + "bufferView":3366, + "componentType":5126, + "count":132, + "max":[ + 0.5604453086853027, + 1.65812349319458, + 0.19024956226348877 + ], + "min":[ + -0.23853158950805664, + -2.703916549682617, + -0.2654638886451721 + ], + "type":"VEC3" + }, + { + "bufferView":3367, + "componentType":5126, + "count":132, + "type":"VEC3" + }, + { + "bufferView":3368, + "componentType":5126, + "count":132, + "type":"VEC2" + }, + { + "bufferView":3369, + "componentType":5126, + "count":132, + "type":"VEC2" + }, + { + "bufferView":3370, + "componentType":5126, + "count":132, + "type":"VEC4" + }, + { + "bufferView":3371, + "componentType":5126, + "count":72, + "max":[ + -0.016660213470458984, + 1.3775787353515625, + 0.15579505264759064 + ], + "min":[ + -0.257601261138916, + 1.1236238479614258, + -0.0908403992652893 + ], + "type":"VEC3" + }, + { + "bufferView":3372, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":3373, + "componentType":5126, + "count":72, + "type":"VEC2" + }, + { + "bufferView":3374, + "componentType":5126, + "count":72, + "type":"VEC2" + }, + { + "bufferView":3375, + "componentType":5126, + "count":72, + "type":"VEC4" + }, + { + "bufferView":3376, + "componentType":5126, + "count":670, + "max":[ + 1.2910523414611816, + 2.363870143890381, + 0.3395671248435974 + ], + "min":[ + -1.2910523414611816, + 0.2457118034362793, + -0.28544431924819946 + ], + "type":"VEC3" + }, + { + "bufferView":3377, + "componentType":5126, + "count":670, + "type":"VEC3" + }, + { + "bufferView":3378, + "componentType":5126, + "count":670, + "type":"VEC2" + }, + { + "bufferView":3379, + "componentType":5126, + "count":670, + "type":"VEC2" + }, + { + "bufferView":3380, + "componentType":5126, + "count":670, + "type":"VEC4" + }, + { + "bufferView":3381, + "componentType":5126, + "count":1632, + "max":[ + 1.7518658638000488, + 2.3912434577941895, + 0.0657586008310318 + ], + "min":[ + -1.7518658638000488, + 2.347207546234131, + -0.14792929589748383 + ], + "type":"VEC3" + }, + { + "bufferView":3382, + "componentType":5126, + "count":1632, + "type":"VEC3" + }, + { + "bufferView":3383, + "componentType":5126, + "count":1632, + "type":"VEC2" + }, + { + "bufferView":3384, + "componentType":5126, + "count":1632, + "type":"VEC2" + }, + { + "bufferView":3385, + "componentType":5126, + "count":1632, + "type":"VEC4" + }, + { + "bufferView":3386, + "componentType":5126, + "count":1048, + "max":[ + 1.8103547096252441, + 2.9038238525390625, + 0.13123025000095367 + ], + "min":[ + -1.8103547096252441, + 1.7449841499328613, + -0.2134028524160385 + ], + "type":"VEC3" + }, + { + "bufferView":3387, + "componentType":5126, + "count":1048, + "type":"VEC3" + }, + { + "bufferView":3388, + "componentType":5126, + "count":1048, + "type":"VEC2" + }, + { + "bufferView":3389, + "componentType":5126, + "count":1048, + "type":"VEC2" + }, + { + "bufferView":3390, + "componentType":5126, + "count":1048, + "type":"VEC4" + }, + { + "bufferView":3391, + "componentType":5126, + "count":1797, + "max":[ + 0.3045687675476074, + 1.3926243782043457, + 0.2630053758621216 + ], + "min":[ + -0.3045687675476074, + -3.006359577178955, + -0.3451775312423706 + ], + "type":"VEC3" + }, + { + "bufferView":3392, + "componentType":5126, + "count":1797, + "type":"VEC3" + }, + { + "bufferView":3393, + "componentType":5126, + "count":1797, + "type":"VEC2" + }, + { + "bufferView":3394, + "componentType":5126, + "count":1797, + "type":"VEC2" + }, + { + "bufferView":3395, + "componentType":5126, + "count":1797, + "type":"VEC4" + }, + { + "bufferView":3396, + "componentType":5126, + "count":236, + "max":[ + 0.13026857376098633, + 1.6586637496948242, + 0.3451775908470154 + ], + "min":[ + 0.011486530303955078, + 1.5398821830749512, + 0.31335538625717163 + ], + "type":"VEC3" + }, + { + "bufferView":3397, + "componentType":5126, + "count":236, + "type":"VEC3" + }, + { + "bufferView":3398, + "componentType":5126, + "count":236, + "type":"VEC2" + }, + { + "bufferView":3399, + "componentType":5126, + "count":236, + "type":"VEC2" + }, + { + "bufferView":3400, + "componentType":5126, + "count":236, + "type":"VEC4" + }, + { + "bufferView":3401, + "componentType":5126, + "count":4386, + "max":[ + 1.1977295875549316, + 3.006359577178955, + 0.33282750844955444 + ], + "min":[ + -1.1977295875549316, + -1.8562841415405273, + -0.2786598801612854 + ], + "type":"VEC3" + }, + { + "bufferView":3402, + "componentType":5126, + "count":4386, + "type":"VEC3" + }, + { + "bufferView":3403, + "componentType":5126, + "count":4386, + "type":"VEC2" + }, + { + "bufferView":3404, + "componentType":5126, + "count":4386, + "type":"VEC2" + }, + { + "bufferView":3405, + "componentType":5126, + "count":4386, + "type":"VEC4" + }, + { + "bufferView":3406, + "componentType":5126, + "count":1919, + "max":[ + 0.5737900733947754, + 0.9596045017242432, + 0.18018625676631927 + ], + "min":[ + -0.17112207412719727, + 0.05765485018491745, + -0.22657780349254608 + ], + "type":"VEC3" + }, + { + "bufferView":3407, + "componentType":5126, + "count":1919, + "type":"VEC3" + }, + { + "bufferView":3408, + "componentType":5126, + "count":1919, + "type":"VEC2" + }, + { + "bufferView":3409, + "componentType":5126, + "count":1919, + "type":"VEC2" + }, + { + "bufferView":3410, + "componentType":5126, + "count":1919, + "type":"VEC4" + }, + { + "bufferView":3411, + "componentType":5126, + "count":202, + "max":[ + 0.07299089431762695, + 1.2415342330932617, + 0.13782592117786407 + ], + "min":[ + -0.05732297897338867, + 1.0071754455566406, + 0.06434912234544754 + ], + "type":"VEC3" + }, + { + "bufferView":3412, + "componentType":5126, + "count":202, + "type":"VEC3" + }, + { + "bufferView":3413, + "componentType":5126, + "count":202, + "type":"VEC2" + }, + { + "bufferView":3414, + "componentType":5126, + "count":202, + "type":"VEC2" + }, + { + "bufferView":3415, + "componentType":5126, + "count":202, + "type":"VEC4" + }, + { + "bufferView":3416, + "componentType":5126, + "count":66, + "max":[ + 0.24745988845825195, + -2.286198616027832, + 0.20637430250644684 + ], + "min":[ + -0.24746084213256836, + -2.919868230819702, + -0.28854644298553467 + ], + "type":"VEC3" + }, + { + "bufferView":3417, + "componentType":5126, + "count":66, + "type":"VEC3" + }, + { + "bufferView":3418, + "componentType":5126, + "count":66, + "type":"VEC2" + }, + { + "bufferView":3419, + "componentType":5126, + "count":66, + "type":"VEC2" + }, + { + "bufferView":3420, + "componentType":5126, + "count":66, + "type":"VEC4" + }, + { + "bufferView":3421, + "componentType":5126, + "count":5557, + "max":[ + 1.235231876373291, + 2.906926155090332, + 0.29042237997055054 + ], + "min":[ + -1.235231876373291, + -1.8435611724853516, + -0.2011137455701828 + ], + "type":"VEC3" + }, + { + "bufferView":3422, + "componentType":5126, + "count":5557, + "type":"VEC3" + }, + { + "bufferView":3423, + "componentType":5126, + "count":5557, + "type":"VEC2" + }, + { + "bufferView":3424, + "componentType":5126, + "count":5557, + "type":"VEC2" + }, + { + "bufferView":3425, + "componentType":5126, + "count":5557, + "type":"VEC4" + }, + { + "bufferView":3426, + "componentType":5126, + "count":8110, + "max":[ + 1.3933987617492676, + 2.465147018432617, + 0.3241404891014099 + ], + "min":[ + -1.3933987617492676, + -2.123387336730957, + -0.2648240029811859 + ], + "type":"VEC3" + }, + { + "bufferView":3427, + "componentType":5126, + "count":8110, + "type":"VEC3" + }, + { + "bufferView":3428, + "componentType":5126, + "count":8110, + "type":"VEC2" + }, + { + "bufferView":3429, + "componentType":5126, + "count":8110, + "type":"VEC2" + }, + { + "bufferView":3430, + "componentType":5126, + "count":8110, + "type":"VEC4" + }, + { + "bufferView":3431, + "componentType":5126, + "count":132, + "max":[ + 0.5604453086853027, + 1.65812349319458, + 0.19024956226348877 + ], + "min":[ + -0.23853158950805664, + -2.703916549682617, + -0.2654638886451721 + ], + "type":"VEC3" + }, + { + "bufferView":3432, + "componentType":5126, + "count":132, + "type":"VEC3" + }, + { + "bufferView":3433, + "componentType":5126, + "count":132, + "type":"VEC2" + }, + { + "bufferView":3434, + "componentType":5126, + "count":132, + "type":"VEC2" + }, + { + "bufferView":3435, + "componentType":5126, + "count":132, + "type":"VEC4" + }, + { + "bufferView":3436, + "componentType":5126, + "count":72, + "max":[ + -0.016660213470458984, + 1.3775787353515625, + 0.15579505264759064 + ], + "min":[ + -0.257601261138916, + 1.1236238479614258, + -0.0908403992652893 + ], + "type":"VEC3" + }, + { + "bufferView":3437, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":3438, + "componentType":5126, + "count":72, + "type":"VEC2" + }, + { + "bufferView":3439, + "componentType":5126, + "count":72, + "type":"VEC2" + }, + { + "bufferView":3440, + "componentType":5126, + "count":72, + "type":"VEC4" + }, + { + "bufferView":3441, + "componentType":5126, + "count":670, + "max":[ + 1.2910523414611816, + 2.363870143890381, + 0.3395671248435974 + ], + "min":[ + -1.2910523414611816, + 0.2457118034362793, + -0.28544431924819946 + ], + "type":"VEC3" + }, + { + "bufferView":3442, + "componentType":5126, + "count":670, + "type":"VEC3" + }, + { + "bufferView":3443, + "componentType":5126, + "count":670, + "type":"VEC2" + }, + { + "bufferView":3444, + "componentType":5126, + "count":670, + "type":"VEC2" + }, + { + "bufferView":3445, + "componentType":5126, + "count":670, + "type":"VEC4" + }, + { + "bufferView":3446, + "componentType":5126, + "count":1632, + "max":[ + 1.7518658638000488, + 2.3912434577941895, + 0.0657586008310318 + ], + "min":[ + -1.7518658638000488, + 2.347207546234131, + -0.14792929589748383 + ], + "type":"VEC3" + }, + { + "bufferView":3447, + "componentType":5126, + "count":1632, + "type":"VEC3" + }, + { + "bufferView":3448, + "componentType":5126, + "count":1632, + "type":"VEC2" + }, + { + "bufferView":3449, + "componentType":5126, + "count":1632, + "type":"VEC2" + }, + { + "bufferView":3450, + "componentType":5126, + "count":1632, + "type":"VEC4" + }, + { + "bufferView":3451, + "componentType":5126, + "count":1048, + "max":[ + 1.8103547096252441, + 2.9038238525390625, + 0.13123025000095367 + ], + "min":[ + -1.8103547096252441, + 1.7449841499328613, + -0.2134028524160385 + ], + "type":"VEC3" + }, + { + "bufferView":3452, + "componentType":5126, + "count":1048, + "type":"VEC3" + }, + { + "bufferView":3453, + "componentType":5126, + "count":1048, + "type":"VEC2" + }, + { + "bufferView":3454, + "componentType":5126, + "count":1048, + "type":"VEC2" + }, + { + "bufferView":3455, + "componentType":5126, + "count":1048, + "type":"VEC4" + }, + { + "bufferView":3456, + "componentType":5126, + "count":1797, + "max":[ + 0.3045687675476074, + 1.3926243782043457, + 0.2630053758621216 + ], + "min":[ + -0.3045687675476074, + -3.006359577178955, + -0.3451775312423706 + ], + "type":"VEC3" + }, + { + "bufferView":3457, + "componentType":5126, + "count":1797, + "type":"VEC3" + }, + { + "bufferView":3458, + "componentType":5126, + "count":1797, + "type":"VEC2" + }, + { + "bufferView":3459, + "componentType":5126, + "count":1797, + "type":"VEC2" + }, + { + "bufferView":3460, + "componentType":5126, + "count":1797, + "type":"VEC4" + }, + { + "bufferView":3461, + "componentType":5126, + "count":236, + "max":[ + 0.13026857376098633, + 1.6586637496948242, + 0.3451775908470154 + ], + "min":[ + 0.011486530303955078, + 1.5398821830749512, + 0.31335538625717163 + ], + "type":"VEC3" + }, + { + "bufferView":3462, + "componentType":5126, + "count":236, + "type":"VEC3" + }, + { + "bufferView":3463, + "componentType":5126, + "count":236, + "type":"VEC2" + }, + { + "bufferView":3464, + "componentType":5126, + "count":236, + "type":"VEC2" + }, + { + "bufferView":3465, + "componentType":5126, + "count":236, + "type":"VEC4" + }, + { + "bufferView":3466, + "componentType":5126, + "count":4386, + "max":[ + 1.1977295875549316, + 3.006359577178955, + 0.33282750844955444 + ], + "min":[ + -1.1977295875549316, + -1.8562841415405273, + -0.2786598801612854 + ], + "type":"VEC3" + }, + { + "bufferView":3467, + "componentType":5126, + "count":4386, + "type":"VEC3" + }, + { + "bufferView":3468, + "componentType":5126, + "count":4386, + "type":"VEC2" + }, + { + "bufferView":3469, + "componentType":5126, + "count":4386, + "type":"VEC2" + }, + { + "bufferView":3470, + "componentType":5126, + "count":4386, + "type":"VEC4" + }, + { + "bufferView":3471, + "componentType":5126, + "count":1919, + "max":[ + 0.5737900733947754, + 0.9596045017242432, + 0.18018625676631927 + ], + "min":[ + -0.17112207412719727, + 0.05765485018491745, + -0.22657780349254608 + ], + "type":"VEC3" + }, + { + "bufferView":3472, + "componentType":5126, + "count":1919, + "type":"VEC3" + }, + { + "bufferView":3473, + "componentType":5126, + "count":1919, + "type":"VEC2" + }, + { + "bufferView":3474, + "componentType":5126, + "count":1919, + "type":"VEC2" + }, + { + "bufferView":3475, + "componentType":5126, + "count":1919, + "type":"VEC4" + }, + { + "bufferView":3476, + "componentType":5126, + "count":202, + "max":[ + 0.07299089431762695, + 1.2415342330932617, + 0.13782592117786407 + ], + "min":[ + -0.05732297897338867, + 1.0071754455566406, + 0.06434912234544754 + ], + "type":"VEC3" + }, + { + "bufferView":3477, + "componentType":5126, + "count":202, + "type":"VEC3" + }, + { + "bufferView":3478, + "componentType":5126, + "count":202, + "type":"VEC2" + }, + { + "bufferView":3479, + "componentType":5126, + "count":202, + "type":"VEC2" + }, + { + "bufferView":3480, + "componentType":5126, + "count":202, + "type":"VEC4" + }, + { + "bufferView":3481, + "componentType":5126, + "count":66, + "max":[ + 0.24745988845825195, + -2.286198616027832, + 0.20637430250644684 + ], + "min":[ + -0.24746084213256836, + -2.919868230819702, + -0.28854644298553467 + ], + "type":"VEC3" + }, + { + "bufferView":3482, + "componentType":5126, + "count":66, + "type":"VEC3" + }, + { + "bufferView":3483, + "componentType":5126, + "count":66, + "type":"VEC2" + }, + { + "bufferView":3484, + "componentType":5126, + "count":66, + "type":"VEC2" + }, + { + "bufferView":3485, + "componentType":5126, + "count":66, + "type":"VEC4" + }, + { + "bufferView":3486, + "componentType":5126, + "count":5557, + "max":[ + 1.235231876373291, + 2.906926155090332, + 0.29042237997055054 + ], + "min":[ + -1.235231876373291, + -1.8435611724853516, + -0.2011137455701828 + ], + "type":"VEC3" + }, + { + "bufferView":3487, + "componentType":5126, + "count":5557, + "type":"VEC3" + }, + { + "bufferView":3488, + "componentType":5126, + "count":5557, + "type":"VEC2" + }, + { + "bufferView":3489, + "componentType":5126, + "count":5557, + "type":"VEC2" + }, + { + "bufferView":3490, + "componentType":5126, + "count":5557, + "type":"VEC4" + }, + { + "bufferView":3491, + "componentType":5126, + "count":8110, + "max":[ + 1.3933987617492676, + 2.465147018432617, + 0.3241404891014099 + ], + "min":[ + -1.3933987617492676, + -2.123387336730957, + -0.2648240029811859 + ], + "type":"VEC3" + }, + { + "bufferView":3492, + "componentType":5126, + "count":8110, + "type":"VEC3" + }, + { + "bufferView":3493, + "componentType":5126, + "count":8110, + "type":"VEC2" + }, + { + "bufferView":3494, + "componentType":5126, + "count":8110, + "type":"VEC2" + }, + { + "bufferView":3495, + "componentType":5126, + "count":8110, + "type":"VEC4" + }, + { + "bufferView":3496, + "componentType":5126, + "count":132, + "max":[ + 0.5604453086853027, + 1.65812349319458, + 0.19024956226348877 + ], + "min":[ + -0.23853158950805664, + -2.703916549682617, + -0.2654638886451721 + ], + "type":"VEC3" + }, + { + "bufferView":3497, + "componentType":5126, + "count":132, + "type":"VEC3" + }, + { + "bufferView":3498, + "componentType":5126, + "count":132, + "type":"VEC2" + }, + { + "bufferView":3499, + "componentType":5126, + "count":132, + "type":"VEC2" + }, + { + "bufferView":3500, + "componentType":5126, + "count":132, + "type":"VEC4" + }, + { + "bufferView":3501, + "componentType":5126, + "count":72, + "max":[ + -0.016660213470458984, + 1.3775787353515625, + 0.15579505264759064 + ], + "min":[ + -0.257601261138916, + 1.1236238479614258, + -0.0908403992652893 + ], + "type":"VEC3" + }, + { + "bufferView":3502, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":3503, + "componentType":5126, + "count":72, + "type":"VEC2" + }, + { + "bufferView":3504, + "componentType":5126, + "count":72, + "type":"VEC2" + }, + { + "bufferView":3505, + "componentType":5126, + "count":72, + "type":"VEC4" + }, + { + "bufferView":3506, + "componentType":5126, + "count":670, + "max":[ + 1.2910523414611816, + 2.363870143890381, + 0.3395671248435974 + ], + "min":[ + -1.2910523414611816, + 0.2457118034362793, + -0.28544431924819946 + ], + "type":"VEC3" + }, + { + "bufferView":3507, + "componentType":5126, + "count":670, + "type":"VEC3" + }, + { + "bufferView":3508, + "componentType":5126, + "count":670, + "type":"VEC2" + }, + { + "bufferView":3509, + "componentType":5126, + "count":670, + "type":"VEC2" + }, + { + "bufferView":3510, + "componentType":5126, + "count":670, + "type":"VEC4" + }, + { + "bufferView":3511, + "componentType":5126, + "count":1632, + "max":[ + 1.7518658638000488, + 2.3912434577941895, + 0.0657586008310318 + ], + "min":[ + -1.7518658638000488, + 2.347207546234131, + -0.14792929589748383 + ], + "type":"VEC3" + }, + { + "bufferView":3512, + "componentType":5126, + "count":1632, + "type":"VEC3" + }, + { + "bufferView":3513, + "componentType":5126, + "count":1632, + "type":"VEC2" + }, + { + "bufferView":3514, + "componentType":5126, + "count":1632, + "type":"VEC2" + }, + { + "bufferView":3515, + "componentType":5126, + "count":1632, + "type":"VEC4" + }, + { + "bufferView":3516, + "componentType":5126, + "count":1048, + "max":[ + 1.8103547096252441, + 2.9038238525390625, + 0.13123025000095367 + ], + "min":[ + -1.8103547096252441, + 1.7449841499328613, + -0.2134028524160385 + ], + "type":"VEC3" + }, + { + "bufferView":3517, + "componentType":5126, + "count":1048, + "type":"VEC3" + }, + { + "bufferView":3518, + "componentType":5126, + "count":1048, + "type":"VEC2" + }, + { + "bufferView":3519, + "componentType":5126, + "count":1048, + "type":"VEC2" + }, + { + "bufferView":3520, + "componentType":5126, + "count":1048, + "type":"VEC4" + }, + { + "bufferView":3521, + "componentType":5126, + "count":1797, + "max":[ + 0.3045687675476074, + 1.3926243782043457, + 0.2630053758621216 + ], + "min":[ + -0.3045687675476074, + -3.006359577178955, + -0.3451775312423706 + ], + "type":"VEC3" + }, + { + "bufferView":3522, + "componentType":5126, + "count":1797, + "type":"VEC3" + }, + { + "bufferView":3523, + "componentType":5126, + "count":1797, + "type":"VEC2" + }, + { + "bufferView":3524, + "componentType":5126, + "count":1797, + "type":"VEC2" + }, + { + "bufferView":3525, + "componentType":5126, + "count":1797, + "type":"VEC4" + }, + { + "bufferView":3526, + "componentType":5126, + "count":236, + "max":[ + 0.13026857376098633, + 1.6586637496948242, + 0.3451775908470154 + ], + "min":[ + 0.011486530303955078, + 1.5398821830749512, + 0.31335538625717163 + ], + "type":"VEC3" + }, + { + "bufferView":3527, + "componentType":5126, + "count":236, + "type":"VEC3" + }, + { + "bufferView":3528, + "componentType":5126, + "count":236, + "type":"VEC2" + }, + { + "bufferView":3529, + "componentType":5126, + "count":236, + "type":"VEC2" + }, + { + "bufferView":3530, + "componentType":5126, + "count":236, + "type":"VEC4" + }, + { + "bufferView":3531, + "componentType":5126, + "count":4386, + "max":[ + 1.1977295875549316, + 3.006359577178955, + 0.33282750844955444 + ], + "min":[ + -1.1977295875549316, + -1.8562841415405273, + -0.2786598801612854 + ], + "type":"VEC3" + }, + { + "bufferView":3532, + "componentType":5126, + "count":4386, + "type":"VEC3" + }, + { + "bufferView":3533, + "componentType":5126, + "count":4386, + "type":"VEC2" + }, + { + "bufferView":3534, + "componentType":5126, + "count":4386, + "type":"VEC2" + }, + { + "bufferView":3535, + "componentType":5126, + "count":4386, + "type":"VEC4" + }, + { + "bufferView":3536, + "componentType":5126, + "count":1919, + "max":[ + 0.5737900733947754, + 0.9596045017242432, + 0.18018625676631927 + ], + "min":[ + -0.17112207412719727, + 0.05765485018491745, + -0.22657780349254608 + ], + "type":"VEC3" + }, + { + "bufferView":3537, + "componentType":5126, + "count":1919, + "type":"VEC3" + }, + { + "bufferView":3538, + "componentType":5126, + "count":1919, + "type":"VEC2" + }, + { + "bufferView":3539, + "componentType":5126, + "count":1919, + "type":"VEC2" + }, + { + "bufferView":3540, + "componentType":5126, + "count":1919, + "type":"VEC4" + }, + { + "bufferView":3541, + "componentType":5126, + "count":202, + "max":[ + 0.07299089431762695, + 1.2415342330932617, + 0.13782592117786407 + ], + "min":[ + -0.05732297897338867, + 1.0071754455566406, + 0.06434912234544754 + ], + "type":"VEC3" + }, + { + "bufferView":3542, + "componentType":5126, + "count":202, + "type":"VEC3" + }, + { + "bufferView":3543, + "componentType":5126, + "count":202, + "type":"VEC2" + }, + { + "bufferView":3544, + "componentType":5126, + "count":202, + "type":"VEC2" + }, + { + "bufferView":3545, + "componentType":5126, + "count":202, + "type":"VEC4" + }, + { + "bufferView":3546, + "componentType":5126, + "count":66, + "max":[ + 0.24745988845825195, + -2.286198616027832, + 0.20637430250644684 + ], + "min":[ + -0.24746084213256836, + -2.919868230819702, + -0.28854644298553467 + ], + "type":"VEC3" + }, + { + "bufferView":3547, + "componentType":5126, + "count":66, + "type":"VEC3" + }, + { + "bufferView":3548, + "componentType":5126, + "count":66, + "type":"VEC2" + }, + { + "bufferView":3549, + "componentType":5126, + "count":66, + "type":"VEC2" + }, + { + "bufferView":3550, + "componentType":5126, + "count":66, + "type":"VEC4" + }, + { + "bufferView":3551, + "componentType":5126, + "count":5557, + "max":[ + 1.235231876373291, + 2.906926155090332, + 0.29042237997055054 + ], + "min":[ + -1.235231876373291, + -1.8435611724853516, + -0.2011137455701828 + ], + "type":"VEC3" + }, + { + "bufferView":3552, + "componentType":5126, + "count":5557, + "type":"VEC3" + }, + { + "bufferView":3553, + "componentType":5126, + "count":5557, + "type":"VEC2" + }, + { + "bufferView":3554, + "componentType":5126, + "count":5557, + "type":"VEC2" + }, + { + "bufferView":3555, + "componentType":5126, + "count":5557, + "type":"VEC4" + }, + { + "bufferView":3556, + "componentType":5126, + "count":8110, + "max":[ + 1.3933987617492676, + 2.465147018432617, + 0.3241404891014099 + ], + "min":[ + -1.3933987617492676, + -2.123387336730957, + -0.2648240029811859 + ], + "type":"VEC3" + }, + { + "bufferView":3557, + "componentType":5126, + "count":8110, + "type":"VEC3" + }, + { + "bufferView":3558, + "componentType":5126, + "count":8110, + "type":"VEC2" + }, + { + "bufferView":3559, + "componentType":5126, + "count":8110, + "type":"VEC2" + }, + { + "bufferView":3560, + "componentType":5126, + "count":8110, + "type":"VEC4" + }, + { + "bufferView":3561, + "componentType":5126, + "count":132, + "max":[ + 0.5604453086853027, + 1.65812349319458, + 0.19024956226348877 + ], + "min":[ + -0.23853158950805664, + -2.703916549682617, + -0.2654638886451721 + ], + "type":"VEC3" + }, + { + "bufferView":3562, + "componentType":5126, + "count":132, + "type":"VEC3" + }, + { + "bufferView":3563, + "componentType":5126, + "count":132, + "type":"VEC2" + }, + { + "bufferView":3564, + "componentType":5126, + "count":132, + "type":"VEC2" + }, + { + "bufferView":3565, + "componentType":5126, + "count":132, + "type":"VEC4" + }, + { + "bufferView":3566, + "componentType":5126, + "count":72, + "max":[ + -0.016660213470458984, + 1.3775787353515625, + 0.15579505264759064 + ], + "min":[ + -0.257601261138916, + 1.1236238479614258, + -0.0908403992652893 + ], + "type":"VEC3" + }, + { + "bufferView":3567, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":3568, + "componentType":5126, + "count":72, + "type":"VEC2" + }, + { + "bufferView":3569, + "componentType":5126, + "count":72, + "type":"VEC2" + }, + { + "bufferView":3570, + "componentType":5126, + "count":72, + "type":"VEC4" + }, + { + "bufferView":3571, + "componentType":5126, + "count":670, + "max":[ + 1.2910523414611816, + 2.363870143890381, + 0.3395671248435974 + ], + "min":[ + -1.2910523414611816, + 0.2457118034362793, + -0.28544431924819946 + ], + "type":"VEC3" + }, + { + "bufferView":3572, + "componentType":5126, + "count":670, + "type":"VEC3" + }, + { + "bufferView":3573, + "componentType":5126, + "count":670, + "type":"VEC2" + }, + { + "bufferView":3574, + "componentType":5126, + "count":670, + "type":"VEC2" + }, + { + "bufferView":3575, + "componentType":5126, + "count":670, + "type":"VEC4" + }, + { + "bufferView":3576, + "componentType":5126, + "count":1632, + "max":[ + 1.7518658638000488, + 2.3912434577941895, + 0.0657586008310318 + ], + "min":[ + -1.7518658638000488, + 2.347207546234131, + -0.14792929589748383 + ], + "type":"VEC3" + }, + { + "bufferView":3577, + "componentType":5126, + "count":1632, + "type":"VEC3" + }, + { + "bufferView":3578, + "componentType":5126, + "count":1632, + "type":"VEC2" + }, + { + "bufferView":3579, + "componentType":5126, + "count":1632, + "type":"VEC2" + }, + { + "bufferView":3580, + "componentType":5126, + "count":1632, + "type":"VEC4" + }, + { + "bufferView":3581, + "componentType":5126, + "count":1048, + "max":[ + 1.8103547096252441, + 2.9038238525390625, + 0.13123025000095367 + ], + "min":[ + -1.8103547096252441, + 1.7449841499328613, + -0.2134028524160385 + ], + "type":"VEC3" + }, + { + "bufferView":3582, + "componentType":5126, + "count":1048, + "type":"VEC3" + }, + { + "bufferView":3583, + "componentType":5126, + "count":1048, + "type":"VEC2" + }, + { + "bufferView":3584, + "componentType":5126, + "count":1048, + "type":"VEC2" + }, + { + "bufferView":3585, + "componentType":5126, + "count":1048, + "type":"VEC4" + }, + { + "bufferView":3586, + "componentType":5126, + "count":1797, + "max":[ + 0.3045687675476074, + 1.3926243782043457, + 0.2630053758621216 + ], + "min":[ + -0.3045687675476074, + -3.006359577178955, + -0.3451775312423706 + ], + "type":"VEC3" + }, + { + "bufferView":3587, + "componentType":5126, + "count":1797, + "type":"VEC3" + }, + { + "bufferView":3588, + "componentType":5126, + "count":1797, + "type":"VEC2" + }, + { + "bufferView":3589, + "componentType":5126, + "count":1797, + "type":"VEC2" + }, + { + "bufferView":3590, + "componentType":5126, + "count":1797, + "type":"VEC4" + }, + { + "bufferView":3591, + "componentType":5126, + "count":236, + "max":[ + 0.13026857376098633, + 1.6586637496948242, + 0.3451775908470154 + ], + "min":[ + 0.011486530303955078, + 1.5398821830749512, + 0.31335538625717163 + ], + "type":"VEC3" + }, + { + "bufferView":3592, + "componentType":5126, + "count":236, + "type":"VEC3" + }, + { + "bufferView":3593, + "componentType":5126, + "count":236, + "type":"VEC2" + }, + { + "bufferView":3594, + "componentType":5126, + "count":236, + "type":"VEC2" + }, + { + "bufferView":3595, + "componentType":5126, + "count":236, + "type":"VEC4" + }, + { + "bufferView":3596, + "componentType":5126, + "count":4386, + "max":[ + 1.1977295875549316, + 3.006359577178955, + 0.33282750844955444 + ], + "min":[ + -1.1977295875549316, + -1.8562841415405273, + -0.2786598801612854 + ], + "type":"VEC3" + }, + { + "bufferView":3597, + "componentType":5126, + "count":4386, + "type":"VEC3" + }, + { + "bufferView":3598, + "componentType":5126, + "count":4386, + "type":"VEC2" + }, + { + "bufferView":3599, + "componentType":5126, + "count":4386, + "type":"VEC2" + }, + { + "bufferView":3600, + "componentType":5126, + "count":4386, + "type":"VEC4" + }, + { + "bufferView":3601, + "componentType":5126, + "count":1919, + "max":[ + 0.5737900733947754, + 0.9596045017242432, + 0.18018625676631927 + ], + "min":[ + -0.17112207412719727, + 0.05765485018491745, + -0.22657780349254608 + ], + "type":"VEC3" + }, + { + "bufferView":3602, + "componentType":5126, + "count":1919, + "type":"VEC3" + }, + { + "bufferView":3603, + "componentType":5126, + "count":1919, + "type":"VEC2" + }, + { + "bufferView":3604, + "componentType":5126, + "count":1919, + "type":"VEC2" + }, + { + "bufferView":3605, + "componentType":5126, + "count":1919, + "type":"VEC4" + }, + { + "bufferView":3606, + "componentType":5126, + "count":202, + "max":[ + 0.07299089431762695, + 1.2415342330932617, + 0.13782592117786407 + ], + "min":[ + -0.05732297897338867, + 1.0071754455566406, + 0.06434912234544754 + ], + "type":"VEC3" + }, + { + "bufferView":3607, + "componentType":5126, + "count":202, + "type":"VEC3" + }, + { + "bufferView":3608, + "componentType":5126, + "count":202, + "type":"VEC2" + }, + { + "bufferView":3609, + "componentType":5126, + "count":202, + "type":"VEC2" + }, + { + "bufferView":3610, + "componentType":5126, + "count":202, + "type":"VEC4" + }, + { + "bufferView":3611, + "componentType":5126, + "count":66, + "max":[ + 0.24745988845825195, + -2.286198616027832, + 0.20637430250644684 + ], + "min":[ + -0.24746084213256836, + -2.919868230819702, + -0.28854644298553467 + ], + "type":"VEC3" + }, + { + "bufferView":3612, + "componentType":5126, + "count":66, + "type":"VEC3" + }, + { + "bufferView":3613, + "componentType":5126, + "count":66, + "type":"VEC2" + }, + { + "bufferView":3614, + "componentType":5126, + "count":66, + "type":"VEC2" + }, + { + "bufferView":3615, + "componentType":5126, + "count":66, + "type":"VEC4" + }, + { + "bufferView":3616, + "componentType":5126, + "count":5557, + "max":[ + 1.235231876373291, + 2.906926155090332, + 0.29042237997055054 + ], + "min":[ + -1.235231876373291, + -1.8435611724853516, + -0.2011137455701828 + ], + "type":"VEC3" + }, + { + "bufferView":3617, + "componentType":5126, + "count":5557, + "type":"VEC3" + }, + { + "bufferView":3618, + "componentType":5126, + "count":5557, + "type":"VEC2" + }, + { + "bufferView":3619, + "componentType":5126, + "count":5557, + "type":"VEC2" + }, + { + "bufferView":3620, + "componentType":5126, + "count":5557, + "type":"VEC4" + }, + { + "bufferView":3621, + "componentType":5126, + "count":8110, + "max":[ + 1.3933987617492676, + 2.465147018432617, + 0.3241404891014099 + ], + "min":[ + -1.3933987617492676, + -2.123387336730957, + -0.2648240029811859 + ], + "type":"VEC3" + }, + { + "bufferView":3622, + "componentType":5126, + "count":8110, + "type":"VEC3" + }, + { + "bufferView":3623, + "componentType":5126, + "count":8110, + "type":"VEC2" + }, + { + "bufferView":3624, + "componentType":5126, + "count":8110, + "type":"VEC2" + }, + { + "bufferView":3625, + "componentType":5126, + "count":8110, + "type":"VEC4" + }, + { + "bufferView":3626, + "componentType":5126, + "count":132, + "max":[ + 0.5604453086853027, + 1.65812349319458, + 0.19024956226348877 + ], + "min":[ + -0.23853158950805664, + -2.703916549682617, + -0.2654638886451721 + ], + "type":"VEC3" + }, + { + "bufferView":3627, + "componentType":5126, + "count":132, + "type":"VEC3" + }, + { + "bufferView":3628, + "componentType":5126, + "count":132, + "type":"VEC2" + }, + { + "bufferView":3629, + "componentType":5126, + "count":132, + "type":"VEC2" + }, + { + "bufferView":3630, + "componentType":5126, + "count":132, + "type":"VEC4" + }, + { + "bufferView":3631, + "componentType":5126, + "count":72, + "max":[ + -0.016660213470458984, + 1.3775787353515625, + 0.15579505264759064 + ], + "min":[ + -0.257601261138916, + 1.1236238479614258, + -0.0908403992652893 + ], + "type":"VEC3" + }, + { + "bufferView":3632, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":3633, + "componentType":5126, + "count":72, + "type":"VEC2" + }, + { + "bufferView":3634, + "componentType":5126, + "count":72, + "type":"VEC2" + }, + { + "bufferView":3635, + "componentType":5126, + "count":72, + "type":"VEC4" + }, + { + "bufferView":3636, + "componentType":5126, + "count":670, + "max":[ + 1.2910523414611816, + 2.363870143890381, + 0.3395671248435974 + ], + "min":[ + -1.2910523414611816, + 0.2457118034362793, + -0.28544431924819946 + ], + "type":"VEC3" + }, + { + "bufferView":3637, + "componentType":5126, + "count":670, + "type":"VEC3" + }, + { + "bufferView":3638, + "componentType":5126, + "count":670, + "type":"VEC2" + }, + { + "bufferView":3639, + "componentType":5126, + "count":670, + "type":"VEC2" + }, + { + "bufferView":3640, + "componentType":5126, + "count":670, + "type":"VEC4" + }, + { + "bufferView":3641, + "componentType":5126, + "count":1632, + "max":[ + 1.7518658638000488, + 2.3912434577941895, + 0.0657586008310318 + ], + "min":[ + -1.7518658638000488, + 2.347207546234131, + -0.14792929589748383 + ], + "type":"VEC3" + }, + { + "bufferView":3642, + "componentType":5126, + "count":1632, + "type":"VEC3" + }, + { + "bufferView":3643, + "componentType":5126, + "count":1632, + "type":"VEC2" + }, + { + "bufferView":3644, + "componentType":5126, + "count":1632, + "type":"VEC2" + }, + { + "bufferView":3645, + "componentType":5126, + "count":1632, + "type":"VEC4" + }, + { + "bufferView":3646, + "componentType":5126, + "count":1048, + "max":[ + 1.8103547096252441, + 2.9038238525390625, + 0.13123025000095367 + ], + "min":[ + -1.8103547096252441, + 1.7449841499328613, + -0.2134028524160385 + ], + "type":"VEC3" + }, + { + "bufferView":3647, + "componentType":5126, + "count":1048, + "type":"VEC3" + }, + { + "bufferView":3648, + "componentType":5126, + "count":1048, + "type":"VEC2" + }, + { + "bufferView":3649, + "componentType":5126, + "count":1048, + "type":"VEC2" + }, + { + "bufferView":3650, + "componentType":5126, + "count":1048, + "type":"VEC4" + }, + { + "bufferView":3651, + "componentType":5126, + "count":1797, + "max":[ + 0.3045687675476074, + 1.3926243782043457, + 0.2630053758621216 + ], + "min":[ + -0.3045687675476074, + -3.006359577178955, + -0.3451775312423706 + ], + "type":"VEC3" + }, + { + "bufferView":3652, + "componentType":5126, + "count":1797, + "type":"VEC3" + }, + { + "bufferView":3653, + "componentType":5126, + "count":1797, + "type":"VEC2" + }, + { + "bufferView":3654, + "componentType":5126, + "count":1797, + "type":"VEC2" + }, + { + "bufferView":3655, + "componentType":5126, + "count":1797, + "type":"VEC4" + }, + { + "bufferView":3656, + "componentType":5126, + "count":236, + "max":[ + 0.13026857376098633, + 1.6586637496948242, + 0.3451775908470154 + ], + "min":[ + 0.011486530303955078, + 1.5398821830749512, + 0.31335538625717163 + ], + "type":"VEC3" + }, + { + "bufferView":3657, + "componentType":5126, + "count":236, + "type":"VEC3" + }, + { + "bufferView":3658, + "componentType":5126, + "count":236, + "type":"VEC2" + }, + { + "bufferView":3659, + "componentType":5126, + "count":236, + "type":"VEC2" + }, + { + "bufferView":3660, + "componentType":5126, + "count":236, + "type":"VEC4" + }, + { + "bufferView":3661, + "componentType":5126, + "count":4386, + "max":[ + 1.1977295875549316, + 3.006359577178955, + 0.33282750844955444 + ], + "min":[ + -1.1977295875549316, + -1.8562841415405273, + -0.2786598801612854 + ], + "type":"VEC3" + }, + { + "bufferView":3662, + "componentType":5126, + "count":4386, + "type":"VEC3" + }, + { + "bufferView":3663, + "componentType":5126, + "count":4386, + "type":"VEC2" + }, + { + "bufferView":3664, + "componentType":5126, + "count":4386, + "type":"VEC2" + }, + { + "bufferView":3665, + "componentType":5126, + "count":4386, + "type":"VEC4" + }, + { + "bufferView":3666, + "componentType":5126, + "count":1919, + "max":[ + 0.5737900733947754, + 0.9596045017242432, + 0.18018625676631927 + ], + "min":[ + -0.17112207412719727, + 0.05765485018491745, + -0.22657780349254608 + ], + "type":"VEC3" + }, + { + "bufferView":3667, + "componentType":5126, + "count":1919, + "type":"VEC3" + }, + { + "bufferView":3668, + "componentType":5126, + "count":1919, + "type":"VEC2" + }, + { + "bufferView":3669, + "componentType":5126, + "count":1919, + "type":"VEC2" + }, + { + "bufferView":3670, + "componentType":5126, + "count":1919, + "type":"VEC4" + }, + { + "bufferView":3671, + "componentType":5126, + "count":202, + "max":[ + 0.07299089431762695, + 1.2415342330932617, + 0.13782592117786407 + ], + "min":[ + -0.05732297897338867, + 1.0071754455566406, + 0.06434912234544754 + ], + "type":"VEC3" + }, + { + "bufferView":3672, + "componentType":5126, + "count":202, + "type":"VEC3" + }, + { + "bufferView":3673, + "componentType":5126, + "count":202, + "type":"VEC2" + }, + { + "bufferView":3674, + "componentType":5126, + "count":202, + "type":"VEC2" + }, + { + "bufferView":3675, + "componentType":5126, + "count":202, + "type":"VEC4" + }, + { + "bufferView":3676, + "componentType":5126, + "count":66, + "max":[ + 0.24745988845825195, + -2.286198616027832, + 0.20637430250644684 + ], + "min":[ + -0.24746084213256836, + -2.919868230819702, + -0.28854644298553467 + ], + "type":"VEC3" + }, + { + "bufferView":3677, + "componentType":5126, + "count":66, + "type":"VEC3" + }, + { + "bufferView":3678, + "componentType":5126, + "count":66, + "type":"VEC2" + }, + { + "bufferView":3679, + "componentType":5126, + "count":66, + "type":"VEC2" + }, + { + "bufferView":3680, + "componentType":5126, + "count":66, + "type":"VEC4" + }, + { + "bufferView":3681, + "componentType":5126, + "count":5557, + "max":[ + 1.235231876373291, + 2.906926155090332, + 0.29042237997055054 + ], + "min":[ + -1.235231876373291, + -1.8435611724853516, + -0.2011137455701828 + ], + "type":"VEC3" + }, + { + "bufferView":3682, + "componentType":5126, + "count":5557, + "type":"VEC3" + }, + { + "bufferView":3683, + "componentType":5126, + "count":5557, + "type":"VEC2" + }, + { + "bufferView":3684, + "componentType":5126, + "count":5557, + "type":"VEC2" + }, + { + "bufferView":3685, + "componentType":5126, + "count":5557, + "type":"VEC4" + }, + { + "bufferView":3686, + "componentType":5126, + "count":8110, + "max":[ + 1.3933987617492676, + 2.465147018432617, + 0.3241404891014099 + ], + "min":[ + -1.3933987617492676, + -2.123387336730957, + -0.2648240029811859 + ], + "type":"VEC3" + }, + { + "bufferView":3687, + "componentType":5126, + "count":8110, + "type":"VEC3" + }, + { + "bufferView":3688, + "componentType":5126, + "count":8110, + "type":"VEC2" + }, + { + "bufferView":3689, + "componentType":5126, + "count":8110, + "type":"VEC2" + }, + { + "bufferView":3690, + "componentType":5126, + "count":8110, + "type":"VEC4" + }, + { + "bufferView":3691, + "componentType":5126, + "count":132, + "max":[ + 0.5604453086853027, + 1.65812349319458, + 0.19024956226348877 + ], + "min":[ + -0.23853158950805664, + -2.703916549682617, + -0.2654638886451721 + ], + "type":"VEC3" + }, + { + "bufferView":3692, + "componentType":5126, + "count":132, + "type":"VEC3" + }, + { + "bufferView":3693, + "componentType":5126, + "count":132, + "type":"VEC2" + }, + { + "bufferView":3694, + "componentType":5126, + "count":132, + "type":"VEC2" + }, + { + "bufferView":3695, + "componentType":5126, + "count":132, + "type":"VEC4" + }, + { + "bufferView":3696, + "componentType":5126, + "count":72, + "max":[ + -0.016660213470458984, + 1.3775787353515625, + 0.15579505264759064 + ], + "min":[ + -0.257601261138916, + 1.1236238479614258, + -0.0908403992652893 + ], + "type":"VEC3" + }, + { + "bufferView":3697, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":3698, + "componentType":5126, + "count":72, + "type":"VEC2" + }, + { + "bufferView":3699, + "componentType":5126, + "count":72, + "type":"VEC2" + }, + { + "bufferView":3700, + "componentType":5126, + "count":72, + "type":"VEC4" + }, + { + "bufferView":3701, + "componentType":5126, + "count":670, + "max":[ + 1.2910523414611816, + 2.363870143890381, + 0.3395671248435974 + ], + "min":[ + -1.2910523414611816, + 0.2457118034362793, + -0.28544431924819946 + ], + "type":"VEC3" + }, + { + "bufferView":3702, + "componentType":5126, + "count":670, + "type":"VEC3" + }, + { + "bufferView":3703, + "componentType":5126, + "count":670, + "type":"VEC2" + }, + { + "bufferView":3704, + "componentType":5126, + "count":670, + "type":"VEC2" + }, + { + "bufferView":3705, + "componentType":5126, + "count":670, + "type":"VEC4" + }, + { + "bufferView":3706, + "componentType":5126, + "count":1632, + "max":[ + 1.7518658638000488, + 2.3912434577941895, + 0.0657586008310318 + ], + "min":[ + -1.7518658638000488, + 2.347207546234131, + -0.14792929589748383 + ], + "type":"VEC3" + }, + { + "bufferView":3707, + "componentType":5126, + "count":1632, + "type":"VEC3" + }, + { + "bufferView":3708, + "componentType":5126, + "count":1632, + "type":"VEC2" + }, + { + "bufferView":3709, + "componentType":5126, + "count":1632, + "type":"VEC2" + }, + { + "bufferView":3710, + "componentType":5126, + "count":1632, + "type":"VEC4" + }, + { + "bufferView":3711, + "componentType":5126, + "count":1048, + "max":[ + 1.8103547096252441, + 2.9038238525390625, + 0.13123025000095367 + ], + "min":[ + -1.8103547096252441, + 1.7449841499328613, + -0.2134028524160385 + ], + "type":"VEC3" + }, + { + "bufferView":3712, + "componentType":5126, + "count":1048, + "type":"VEC3" + }, + { + "bufferView":3713, + "componentType":5126, + "count":1048, + "type":"VEC2" + }, + { + "bufferView":3714, + "componentType":5126, + "count":1048, + "type":"VEC2" + }, + { + "bufferView":3715, + "componentType":5126, + "count":1048, + "type":"VEC4" + }, + { + "bufferView":3716, + "componentType":5126, + "count":1797, + "max":[ + 0.3045687675476074, + 1.3926243782043457, + 0.2630053758621216 + ], + "min":[ + -0.3045687675476074, + -3.006359577178955, + -0.3451775312423706 + ], + "type":"VEC3" + }, + { + "bufferView":3717, + "componentType":5126, + "count":1797, + "type":"VEC3" + }, + { + "bufferView":3718, + "componentType":5126, + "count":1797, + "type":"VEC2" + }, + { + "bufferView":3719, + "componentType":5126, + "count":1797, + "type":"VEC2" + }, + { + "bufferView":3720, + "componentType":5126, + "count":1797, + "type":"VEC4" + }, + { + "bufferView":3721, + "componentType":5126, + "count":236, + "max":[ + 0.13026857376098633, + 1.6586637496948242, + 0.3451775908470154 + ], + "min":[ + 0.011486530303955078, + 1.5398821830749512, + 0.31335538625717163 + ], + "type":"VEC3" + }, + { + "bufferView":3722, + "componentType":5126, + "count":236, + "type":"VEC3" + }, + { + "bufferView":3723, + "componentType":5126, + "count":236, + "type":"VEC2" + }, + { + "bufferView":3724, + "componentType":5126, + "count":236, + "type":"VEC2" + }, + { + "bufferView":3725, + "componentType":5126, + "count":236, + "type":"VEC4" + }, + { + "bufferView":3726, + "componentType":5126, + "count":4386, + "max":[ + 1.1977295875549316, + 3.006359577178955, + 0.33282750844955444 + ], + "min":[ + -1.1977295875549316, + -1.8562841415405273, + -0.2786598801612854 + ], + "type":"VEC3" + }, + { + "bufferView":3727, + "componentType":5126, + "count":4386, + "type":"VEC3" + }, + { + "bufferView":3728, + "componentType":5126, + "count":4386, + "type":"VEC2" + }, + { + "bufferView":3729, + "componentType":5126, + "count":4386, + "type":"VEC2" + }, + { + "bufferView":3730, + "componentType":5126, + "count":4386, + "type":"VEC4" + }, + { + "bufferView":3731, + "componentType":5126, + "count":1919, + "max":[ + 0.5737900733947754, + 0.9596045017242432, + 0.18018625676631927 + ], + "min":[ + -0.17112207412719727, + 0.05765485018491745, + -0.22657780349254608 + ], + "type":"VEC3" + }, + { + "bufferView":3732, + "componentType":5126, + "count":1919, + "type":"VEC3" + }, + { + "bufferView":3733, + "componentType":5126, + "count":1919, + "type":"VEC2" + }, + { + "bufferView":3734, + "componentType":5126, + "count":1919, + "type":"VEC2" + }, + { + "bufferView":3735, + "componentType":5126, + "count":1919, + "type":"VEC4" + }, + { + "bufferView":3736, + "componentType":5126, + "count":202, + "max":[ + 0.07299089431762695, + 1.2415342330932617, + 0.13782592117786407 + ], + "min":[ + -0.05732297897338867, + 1.0071754455566406, + 0.06434912234544754 + ], + "type":"VEC3" + }, + { + "bufferView":3737, + "componentType":5126, + "count":202, + "type":"VEC3" + }, + { + "bufferView":3738, + "componentType":5126, + "count":202, + "type":"VEC2" + }, + { + "bufferView":3739, + "componentType":5126, + "count":202, + "type":"VEC2" + }, + { + "bufferView":3740, + "componentType":5126, + "count":202, + "type":"VEC4" + }, + { + "bufferView":3741, + "componentType":5126, + "count":66, + "max":[ + 0.24745988845825195, + -2.286198616027832, + 0.20637430250644684 + ], + "min":[ + -0.24746084213256836, + -2.919868230819702, + -0.28854644298553467 + ], + "type":"VEC3" + }, + { + "bufferView":3742, + "componentType":5126, + "count":66, + "type":"VEC3" + }, + { + "bufferView":3743, + "componentType":5126, + "count":66, + "type":"VEC2" + }, + { + "bufferView":3744, + "componentType":5126, + "count":66, + "type":"VEC2" + }, + { + "bufferView":3745, + "componentType":5126, + "count":66, + "type":"VEC4" + }, + { + "bufferView":3746, + "componentType":5126, + "count":5557, + "max":[ + 1.235231876373291, + 2.906926155090332, + 0.29042237997055054 + ], + "min":[ + -1.235231876373291, + -1.8435611724853516, + -0.2011137455701828 + ], + "type":"VEC3" + }, + { + "bufferView":3747, + "componentType":5126, + "count":5557, + "type":"VEC3" + }, + { + "bufferView":3748, + "componentType":5126, + "count":5557, + "type":"VEC2" + }, + { + "bufferView":3749, + "componentType":5126, + "count":5557, + "type":"VEC2" + }, + { + "bufferView":3750, + "componentType":5126, + "count":5557, + "type":"VEC4" + }, + { + "bufferView":3751, + "componentType":5126, + "count":8110, + "max":[ + 1.3933987617492676, + 2.465147018432617, + 0.3241404891014099 + ], + "min":[ + -1.3933987617492676, + -2.123387336730957, + -0.2648240029811859 + ], + "type":"VEC3" + }, + { + "bufferView":3752, + "componentType":5126, + "count":8110, + "type":"VEC3" + }, + { + "bufferView":3753, + "componentType":5126, + "count":8110, + "type":"VEC2" + }, + { + "bufferView":3754, + "componentType":5126, + "count":8110, + "type":"VEC2" + }, + { + "bufferView":3755, + "componentType":5126, + "count":8110, + "type":"VEC4" + }, + { + "bufferView":3756, + "componentType":5126, + "count":2205, + "max":[ + 2.961395263671875, + 20.6231689453125, + 3.5956034660339355 + ], + "min":[ + -2.961395263671875, + -20.6231689453125, + -3.595604658126831 + ], + "type":"VEC3" + }, + { + "bufferView":3757, + "componentType":5126, + "count":2205, + "type":"VEC3" + }, + { + "bufferView":3758, + "componentType":5126, + "count":2205, + "type":"VEC2" + }, + { + "bufferView":3759, + "componentType":5126, + "count":2205, + "type":"VEC2" + }, + { + "bufferView":3760, + "componentType":5126, + "count":2205, + "type":"VEC4" + }, + { + "bufferView":3761, + "componentType":5121, + "count":2205, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3762, + "componentType":5123, + "count":2205, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3763, + "componentType":5123, + "count":2205, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3764, + "componentType":5123, + "count":7536, + "type":"SCALAR" + }, + { + "bufferView":3765, + "componentType":5126, + "count":23302, + "max":[ + 23.853782653808594, + 64.08094024658203, + 16.79445457458496 + ], + "min":[ + -13.503654479980469, + 60.032081604003906, + -17.11626625061035 + ], + "type":"VEC3" + }, + { + "bufferView":3766, + "componentType":5126, + "count":23302, + "type":"VEC3" + }, + { + "bufferView":3767, + "componentType":5126, + "count":23302, + "type":"VEC2" + }, + { + "bufferView":3768, + "componentType":5126, + "count":23302, + "type":"VEC2" + }, + { + "bufferView":3769, + "componentType":5126, + "count":23302, + "type":"VEC4" + }, + { + "bufferView":3770, + "componentType":5121, + "count":23302, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3771, + "componentType":5123, + "count":23302, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3772, + "componentType":5123, + "count":23302, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3773, + "componentType":5123, + "count":59856, + "type":"SCALAR" + }, + { + "bufferView":3774, + "componentType":5126, + "count":32944, + "max":[ + 22.309608459472656, + 68.31970977783203, + 21.38612174987793 + ], + "min":[ + -22.05101776123047, + -100.52925872802734, + -21.386178970336914 + ], + "type":"VEC3" + }, + { + "bufferView":3775, + "componentType":5126, + "count":32944, + "type":"VEC3" + }, + { + "bufferView":3776, + "componentType":5126, + "count":32944, + "type":"VEC2" + }, + { + "bufferView":3777, + "componentType":5126, + "count":32944, + "type":"VEC2" + }, + { + "bufferView":3778, + "componentType":5126, + "count":32944, + "type":"VEC4" + }, + { + "bufferView":3779, + "componentType":5121, + "count":32944, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3780, + "componentType":5123, + "count":32944, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3781, + "componentType":5123, + "count":32944, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3782, + "componentType":5123, + "count":73380, + "type":"SCALAR" + }, + { + "bufferView":3783, + "componentType":5126, + "count":4612, + "max":[ + 26.56256103515625, + 70.29889678955078, + 13.125576972961426 + ], + "min":[ + -26.309616088867188, + -100.52924346923828, + -13.12562084197998 + ], + "type":"VEC3" + }, + { + "bufferView":3784, + "componentType":5126, + "count":4612, + "type":"VEC3" + }, + { + "bufferView":3785, + "componentType":5126, + "count":4612, + "type":"VEC2" + }, + { + "bufferView":3786, + "componentType":5126, + "count":4612, + "type":"VEC2" + }, + { + "bufferView":3787, + "componentType":5126, + "count":4612, + "type":"VEC4" + }, + { + "bufferView":3788, + "componentType":5121, + "count":4612, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3789, + "componentType":5123, + "count":4612, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3790, + "componentType":5123, + "count":4612, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3791, + "componentType":5123, + "count":10170, + "type":"SCALAR" + }, + { + "bufferView":3792, + "componentType":5126, + "count":66780, + "max":[ + 27.286590576171875, + 71.3508071899414, + 21.666906356811523 + ], + "min":[ + -27.286592483520508, + 51.766273498535156, + -21.659128189086914 + ], + "type":"VEC3" + }, + { + "bufferView":3793, + "componentType":5126, + "count":66780, + "type":"VEC3" + }, + { + "bufferView":3794, + "componentType":5126, + "count":66780, + "type":"VEC2" + }, + { + "bufferView":3795, + "componentType":5126, + "count":66780, + "type":"VEC2" + }, + { + "bufferView":3796, + "componentType":5126, + "count":66780, + "type":"VEC4" + }, + { + "bufferView":3797, + "componentType":5121, + "count":66780, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3798, + "componentType":5123, + "count":66780, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3799, + "componentType":5123, + "count":66780, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3800, + "componentType":5125, + "count":188568, + "type":"SCALAR" + }, + { + "bufferView":3801, + "componentType":5126, + "count":12096, + "max":[ + 21.76410675048828, + 59.76081085205078, + 18.63558578491211 + ], + "min":[ + -21.505821228027344, + -97.0052261352539, + -18.635629653930664 + ], + "type":"VEC3" + }, + { + "bufferView":3802, + "componentType":5126, + "count":12096, + "type":"VEC3" + }, + { + "bufferView":3803, + "componentType":5126, + "count":12096, + "type":"VEC2" + }, + { + "bufferView":3804, + "componentType":5126, + "count":12096, + "type":"VEC2" + }, + { + "bufferView":3805, + "componentType":5126, + "count":12096, + "type":"VEC4" + }, + { + "bufferView":3806, + "componentType":5121, + "count":12096, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3807, + "componentType":5123, + "count":12096, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3808, + "componentType":5123, + "count":12096, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3809, + "componentType":5123, + "count":18144, + "type":"SCALAR" + }, + { + "bufferView":3810, + "componentType":5126, + "count":42, + "max":[ + 6.870948791503906, + 63.08966827392578, + 5.986271858215332 + ], + "min":[ + 6.823143005371094, + 62.954444885253906, + 5.564633369445801 + ], + "type":"VEC3" + }, + { + "bufferView":3811, + "componentType":5126, + "count":42, + "type":"VEC3" + }, + { + "bufferView":3812, + "componentType":5126, + "count":42, + "type":"VEC2" + }, + { + "bufferView":3813, + "componentType":5126, + "count":42, + "type":"VEC2" + }, + { + "bufferView":3814, + "componentType":5126, + "count":42, + "type":"VEC4" + }, + { + "bufferView":3815, + "componentType":5121, + "count":42, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3816, + "componentType":5123, + "count":42, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3817, + "componentType":5123, + "count":42, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3818, + "componentType":5123, + "count":120, + "type":"SCALAR" + }, + { + "bufferView":3819, + "componentType":5126, + "count":36480, + "max":[ + 26.22955322265625, + 59.76087188720703, + 21.05202865600586 + ], + "min":[ + -25.976608276367188, + -97.0052261352539, + -21.052072525024414 + ], + "type":"VEC3" + }, + { + "bufferView":3820, + "componentType":5126, + "count":36480, + "type":"VEC3" + }, + { + "bufferView":3821, + "componentType":5126, + "count":36480, + "type":"VEC2" + }, + { + "bufferView":3822, + "componentType":5126, + "count":36480, + "type":"VEC2" + }, + { + "bufferView":3823, + "componentType":5126, + "count":36480, + "type":"VEC4" + }, + { + "bufferView":3824, + "componentType":5121, + "count":36480, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3825, + "componentType":5123, + "count":36480, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3826, + "componentType":5123, + "count":36480, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3827, + "componentType":5123, + "count":54720, + "type":"SCALAR" + }, + { + "bufferView":3828, + "componentType":5126, + "count":3640, + "max":[ + 21.88384246826172, + 69.40995025634766, + 21.830821990966797 + ], + "min":[ + -21.116804122924805, + -100.52923583984375, + -21.83084487915039 + ], + "type":"VEC3" + }, + { + "bufferView":3829, + "componentType":5126, + "count":3640, + "type":"VEC3" + }, + { + "bufferView":3830, + "componentType":5126, + "count":3640, + "type":"VEC2" + }, + { + "bufferView":3831, + "componentType":5126, + "count":3640, + "type":"VEC2" + }, + { + "bufferView":3832, + "componentType":5126, + "count":3640, + "type":"VEC4" + }, + { + "bufferView":3833, + "componentType":5121, + "count":3640, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3834, + "componentType":5123, + "count":3640, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3835, + "componentType":5123, + "count":3640, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3836, + "componentType":5123, + "count":14214, + "type":"SCALAR" + }, + { + "bufferView":3837, + "componentType":5126, + "count":126, + "max":[ + -22.672882080078125, + 100.52933502197266, + -12.259563446044922 + ], + "min":[ + -24.388076782226562, + 78.19062042236328, + -12.476177215576172 + ], + "type":"VEC3" + }, + { + "bufferView":3838, + "componentType":5126, + "count":126, + "type":"VEC3" + }, + { + "bufferView":3839, + "componentType":5126, + "count":126, + "type":"VEC2" + }, + { + "bufferView":3840, + "componentType":5126, + "count":126, + "type":"VEC2" + }, + { + "bufferView":3841, + "componentType":5126, + "count":126, + "type":"VEC4" + }, + { + "bufferView":3842, + "componentType":5121, + "count":126, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3843, + "componentType":5123, + "count":126, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3844, + "componentType":5123, + "count":126, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3845, + "componentType":5123, + "count":288, + "type":"SCALAR" + }, + { + "bufferView":3846, + "componentType":5126, + "count":2951, + "max":[ + 16.60470962524414, + 100.52933502197266, + 18.009265899658203 + ], + "min":[ + -24.579769134521484, + 59.30908966064453, + -12.667872428894043 + ], + "type":"VEC3" + }, + { + "bufferView":3847, + "componentType":5126, + "count":2951, + "type":"VEC3" + }, + { + "bufferView":3848, + "componentType":5126, + "count":2951, + "type":"VEC2" + }, + { + "bufferView":3849, + "componentType":5126, + "count":2951, + "type":"VEC2" + }, + { + "bufferView":3850, + "componentType":5126, + "count":2951, + "type":"VEC4" + }, + { + "bufferView":3851, + "componentType":5121, + "count":2951, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3852, + "componentType":5123, + "count":2951, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3853, + "componentType":5123, + "count":2951, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3854, + "componentType":5123, + "count":9480, + "type":"SCALAR" + }, + { + "bufferView":3855, + "componentType":5126, + "count":71702, + "max":[ + 26.83185577392578, + 70.9264907836914, + 22.688838958740234 + ], + "min":[ + -26.578866958618164, + -100.52935028076172, + -22.6888370513916 + ], + "type":"VEC3" + }, + { + "bufferView":3856, + "componentType":5126, + "count":71702, + "type":"VEC3" + }, + { + "bufferView":3857, + "componentType":5126, + "count":71702, + "type":"VEC2" + }, + { + "bufferView":3858, + "componentType":5126, + "count":71702, + "type":"VEC2" + }, + { + "bufferView":3859, + "componentType":5126, + "count":71702, + "type":"VEC4" + }, + { + "bufferView":3860, + "componentType":5121, + "count":71702, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3861, + "componentType":5123, + "count":71702, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3862, + "componentType":5123, + "count":71702, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3863, + "componentType":5125, + "count":173580, + "type":"SCALAR" + }, + { + "bufferView":3864, + "componentType":5126, + "count":4, + "max":[ + -13.37161636352539, + 57.56195831298828, + 21.666868209838867 + ], + "min":[ + -14.155853271484375, + 56.439552307128906, + 21.666868209838867 + ], + "type":"VEC3" + }, + { + "bufferView":3865, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":3866, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":3867, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":3868, + "componentType":5126, + "count":4, + "type":"VEC4" + }, + { + "bufferView":3869, + "componentType":5121, + "count":4, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3870, + "componentType":5123, + "count":4, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3871, + "componentType":5123, + "count":4, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3872, + "componentType":5123, + "count":6, + "type":"SCALAR" + }, + { + "bufferView":3873, + "componentType":5126, + "count":18, + "max":[ + 25.347518920898438, + 63.824684143066406, + 18.01973533630371 + ], + "min":[ + -25.094512939453125, + 60.937294006347656, + -18.01981544494629 + ], + "type":"VEC3" + }, + { + "bufferView":3874, + "componentType":5126, + "count":18, + "type":"VEC3" + }, + { + "bufferView":3875, + "componentType":5126, + "count":18, + "type":"VEC2" + }, + { + "bufferView":3876, + "componentType":5126, + "count":18, + "type":"VEC2" + }, + { + "bufferView":3877, + "componentType":5126, + "count":18, + "type":"VEC4" + }, + { + "bufferView":3878, + "componentType":5121, + "count":18, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3879, + "componentType":5123, + "count":18, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3880, + "componentType":5123, + "count":18, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3881, + "componentType":5123, + "count":30, + "type":"SCALAR" + }, + { + "bufferView":3882, + "componentType":5126, + "count":23302, + "max":[ + 23.853782653808594, + 64.08094024658203, + 16.79445457458496 + ], + "min":[ + -13.503654479980469, + 60.032081604003906, + -17.11626625061035 + ], + "type":"VEC3" + }, + { + "bufferView":3883, + "componentType":5126, + "count":23302, + "type":"VEC3" + }, + { + "bufferView":3884, + "componentType":5126, + "count":23302, + "type":"VEC2" + }, + { + "bufferView":3885, + "componentType":5126, + "count":23302, + "type":"VEC2" + }, + { + "bufferView":3886, + "componentType":5126, + "count":23302, + "type":"VEC4" + }, + { + "bufferView":3887, + "componentType":5121, + "count":23302, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3888, + "componentType":5123, + "count":23302, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3889, + "componentType":5123, + "count":23302, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3890, + "componentType":5126, + "count":32944, + "max":[ + 22.309608459472656, + 68.31970977783203, + 21.38612174987793 + ], + "min":[ + -22.05101776123047, + -100.52925872802734, + -21.386178970336914 + ], + "type":"VEC3" + }, + { + "bufferView":3891, + "componentType":5126, + "count":32944, + "type":"VEC3" + }, + { + "bufferView":3892, + "componentType":5126, + "count":32944, + "type":"VEC2" + }, + { + "bufferView":3893, + "componentType":5126, + "count":32944, + "type":"VEC2" + }, + { + "bufferView":3894, + "componentType":5126, + "count":32944, + "type":"VEC4" + }, + { + "bufferView":3895, + "componentType":5121, + "count":32944, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3896, + "componentType":5123, + "count":32944, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3897, + "componentType":5123, + "count":32944, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3898, + "componentType":5126, + "count":4612, + "max":[ + 26.56256103515625, + 70.29889678955078, + 13.125576972961426 + ], + "min":[ + -26.309616088867188, + -100.52924346923828, + -13.12562084197998 + ], + "type":"VEC3" + }, + { + "bufferView":3899, + "componentType":5126, + "count":4612, + "type":"VEC3" + }, + { + "bufferView":3900, + "componentType":5126, + "count":4612, + "type":"VEC2" + }, + { + "bufferView":3901, + "componentType":5126, + "count":4612, + "type":"VEC2" + }, + { + "bufferView":3902, + "componentType":5126, + "count":4612, + "type":"VEC4" + }, + { + "bufferView":3903, + "componentType":5121, + "count":4612, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3904, + "componentType":5123, + "count":4612, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3905, + "componentType":5123, + "count":4612, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3906, + "componentType":5126, + "count":66780, + "max":[ + 27.286590576171875, + 71.3508071899414, + 21.666906356811523 + ], + "min":[ + -27.286592483520508, + 51.766273498535156, + -21.659128189086914 + ], + "type":"VEC3" + }, + { + "bufferView":3907, + "componentType":5126, + "count":66780, + "type":"VEC3" + }, + { + "bufferView":3908, + "componentType":5126, + "count":66780, + "type":"VEC2" + }, + { + "bufferView":3909, + "componentType":5126, + "count":66780, + "type":"VEC2" + }, + { + "bufferView":3910, + "componentType":5126, + "count":66780, + "type":"VEC4" + }, + { + "bufferView":3911, + "componentType":5121, + "count":66780, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3912, + "componentType":5123, + "count":66780, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3913, + "componentType":5123, + "count":66780, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3914, + "componentType":5126, + "count":12096, + "max":[ + 21.76410675048828, + 59.76081085205078, + 18.63558578491211 + ], + "min":[ + -21.505821228027344, + -97.0052261352539, + -18.635629653930664 + ], + "type":"VEC3" + }, + { + "bufferView":3915, + "componentType":5126, + "count":12096, + "type":"VEC3" + }, + { + "bufferView":3916, + "componentType":5126, + "count":12096, + "type":"VEC2" + }, + { + "bufferView":3917, + "componentType":5126, + "count":12096, + "type":"VEC2" + }, + { + "bufferView":3918, + "componentType":5126, + "count":12096, + "type":"VEC4" + }, + { + "bufferView":3919, + "componentType":5121, + "count":12096, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3920, + "componentType":5123, + "count":12096, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3921, + "componentType":5123, + "count":12096, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3922, + "componentType":5126, + "count":42, + "max":[ + 6.870948791503906, + 63.08966827392578, + 5.986271858215332 + ], + "min":[ + 6.823143005371094, + 62.954444885253906, + 5.564633369445801 + ], + "type":"VEC3" + }, + { + "bufferView":3923, + "componentType":5126, + "count":42, + "type":"VEC3" + }, + { + "bufferView":3924, + "componentType":5126, + "count":42, + "type":"VEC2" + }, + { + "bufferView":3925, + "componentType":5126, + "count":42, + "type":"VEC2" + }, + { + "bufferView":3926, + "componentType":5126, + "count":42, + "type":"VEC4" + }, + { + "bufferView":3927, + "componentType":5121, + "count":42, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3928, + "componentType":5123, + "count":42, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3929, + "componentType":5123, + "count":42, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3930, + "componentType":5126, + "count":36480, + "max":[ + 26.22955322265625, + 59.76087188720703, + 21.05202865600586 + ], + "min":[ + -25.976608276367188, + -97.0052261352539, + -21.052072525024414 + ], + "type":"VEC3" + }, + { + "bufferView":3931, + "componentType":5126, + "count":36480, + "type":"VEC3" + }, + { + "bufferView":3932, + "componentType":5126, + "count":36480, + "type":"VEC2" + }, + { + "bufferView":3933, + "componentType":5126, + "count":36480, + "type":"VEC2" + }, + { + "bufferView":3934, + "componentType":5126, + "count":36480, + "type":"VEC4" + }, + { + "bufferView":3935, + "componentType":5121, + "count":36480, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3936, + "componentType":5123, + "count":36480, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3937, + "componentType":5123, + "count":36480, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3938, + "componentType":5126, + "count":3640, + "max":[ + 21.88384246826172, + 69.40995025634766, + 21.830821990966797 + ], + "min":[ + -21.116804122924805, + -100.52923583984375, + -21.83084487915039 + ], + "type":"VEC3" + }, + { + "bufferView":3939, + "componentType":5126, + "count":3640, + "type":"VEC3" + }, + { + "bufferView":3940, + "componentType":5126, + "count":3640, + "type":"VEC2" + }, + { + "bufferView":3941, + "componentType":5126, + "count":3640, + "type":"VEC2" + }, + { + "bufferView":3942, + "componentType":5126, + "count":3640, + "type":"VEC4" + }, + { + "bufferView":3943, + "componentType":5121, + "count":3640, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3944, + "componentType":5123, + "count":3640, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3945, + "componentType":5123, + "count":3640, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3946, + "componentType":5126, + "count":126, + "max":[ + -22.672882080078125, + 100.52933502197266, + -12.259563446044922 + ], + "min":[ + -24.388076782226562, + 78.19062042236328, + -12.476177215576172 + ], + "type":"VEC3" + }, + { + "bufferView":3947, + "componentType":5126, + "count":126, + "type":"VEC3" + }, + { + "bufferView":3948, + "componentType":5126, + "count":126, + "type":"VEC2" + }, + { + "bufferView":3949, + "componentType":5126, + "count":126, + "type":"VEC2" + }, + { + "bufferView":3950, + "componentType":5126, + "count":126, + "type":"VEC4" + }, + { + "bufferView":3951, + "componentType":5121, + "count":126, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3952, + "componentType":5123, + "count":126, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3953, + "componentType":5123, + "count":126, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3954, + "componentType":5126, + "count":2951, + "max":[ + 16.60470962524414, + 100.52933502197266, + 18.009265899658203 + ], + "min":[ + -24.579769134521484, + 59.30908966064453, + -12.667872428894043 + ], + "type":"VEC3" + }, + { + "bufferView":3955, + "componentType":5126, + "count":2951, + "type":"VEC3" + }, + { + "bufferView":3956, + "componentType":5126, + "count":2951, + "type":"VEC2" + }, + { + "bufferView":3957, + "componentType":5126, + "count":2951, + "type":"VEC2" + }, + { + "bufferView":3958, + "componentType":5126, + "count":2951, + "type":"VEC4" + }, + { + "bufferView":3959, + "componentType":5121, + "count":2951, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3960, + "componentType":5123, + "count":2951, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3961, + "componentType":5123, + "count":2951, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3962, + "componentType":5126, + "count":71702, + "max":[ + 26.83185577392578, + 70.9264907836914, + 22.688838958740234 + ], + "min":[ + -26.578866958618164, + -100.52935028076172, + -22.6888370513916 + ], + "type":"VEC3" + }, + { + "bufferView":3963, + "componentType":5126, + "count":71702, + "type":"VEC3" + }, + { + "bufferView":3964, + "componentType":5126, + "count":71702, + "type":"VEC2" + }, + { + "bufferView":3965, + "componentType":5126, + "count":71702, + "type":"VEC2" + }, + { + "bufferView":3966, + "componentType":5126, + "count":71702, + "type":"VEC4" + }, + { + "bufferView":3967, + "componentType":5121, + "count":71702, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3968, + "componentType":5123, + "count":71702, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3969, + "componentType":5123, + "count":71702, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3970, + "componentType":5126, + "count":4, + "max":[ + -13.37161636352539, + 57.56195831298828, + 21.666868209838867 + ], + "min":[ + -14.155853271484375, + 56.439552307128906, + 21.666868209838867 + ], + "type":"VEC3" + }, + { + "bufferView":3971, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":3972, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":3973, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":3974, + "componentType":5126, + "count":4, + "type":"VEC4" + }, + { + "bufferView":3975, + "componentType":5121, + "count":4, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3976, + "componentType":5123, + "count":4, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3977, + "componentType":5123, + "count":4, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3978, + "componentType":5126, + "count":18, + "max":[ + 25.347518920898438, + 63.824684143066406, + 18.01973533630371 + ], + "min":[ + -25.094512939453125, + 60.937294006347656, + -18.01981544494629 + ], + "type":"VEC3" + }, + { + "bufferView":3979, + "componentType":5126, + "count":18, + "type":"VEC3" + }, + { + "bufferView":3980, + "componentType":5126, + "count":18, + "type":"VEC2" + }, + { + "bufferView":3981, + "componentType":5126, + "count":18, + "type":"VEC2" + }, + { + "bufferView":3982, + "componentType":5126, + "count":18, + "type":"VEC4" + }, + { + "bufferView":3983, + "componentType":5121, + "count":18, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3984, + "componentType":5123, + "count":18, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3985, + "componentType":5123, + "count":18, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3986, + "componentType":5126, + "count":23302, + "max":[ + 23.853782653808594, + 64.08094024658203, + 16.79445457458496 + ], + "min":[ + -13.503654479980469, + 60.032081604003906, + -17.11626625061035 + ], + "type":"VEC3" + }, + { + "bufferView":3987, + "componentType":5126, + "count":23302, + "type":"VEC3" + }, + { + "bufferView":3988, + "componentType":5126, + "count":23302, + "type":"VEC2" + }, + { + "bufferView":3989, + "componentType":5126, + "count":23302, + "type":"VEC2" + }, + { + "bufferView":3990, + "componentType":5126, + "count":23302, + "type":"VEC4" + }, + { + "bufferView":3991, + "componentType":5121, + "count":23302, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3992, + "componentType":5123, + "count":23302, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3993, + "componentType":5123, + "count":23302, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3994, + "componentType":5126, + "count":32944, + "max":[ + 22.309608459472656, + 68.31970977783203, + 21.38612174987793 + ], + "min":[ + -22.05101776123047, + -100.52925872802734, + -21.386178970336914 + ], + "type":"VEC3" + }, + { + "bufferView":3995, + "componentType":5126, + "count":32944, + "type":"VEC3" + }, + { + "bufferView":3996, + "componentType":5126, + "count":32944, + "type":"VEC2" + }, + { + "bufferView":3997, + "componentType":5126, + "count":32944, + "type":"VEC2" + }, + { + "bufferView":3998, + "componentType":5126, + "count":32944, + "type":"VEC4" + }, + { + "bufferView":3999, + "componentType":5121, + "count":32944, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4000, + "componentType":5123, + "count":32944, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4001, + "componentType":5123, + "count":32944, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4002, + "componentType":5126, + "count":4612, + "max":[ + 26.56256103515625, + 70.29889678955078, + 13.125576972961426 + ], + "min":[ + -26.309616088867188, + -100.52924346923828, + -13.12562084197998 + ], + "type":"VEC3" + }, + { + "bufferView":4003, + "componentType":5126, + "count":4612, + "type":"VEC3" + }, + { + "bufferView":4004, + "componentType":5126, + "count":4612, + "type":"VEC2" + }, + { + "bufferView":4005, + "componentType":5126, + "count":4612, + "type":"VEC2" + }, + { + "bufferView":4006, + "componentType":5126, + "count":4612, + "type":"VEC4" + }, + { + "bufferView":4007, + "componentType":5121, + "count":4612, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4008, + "componentType":5123, + "count":4612, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4009, + "componentType":5123, + "count":4612, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4010, + "componentType":5126, + "count":66780, + "max":[ + 27.286590576171875, + 71.3508071899414, + 21.666906356811523 + ], + "min":[ + -27.286592483520508, + 51.766273498535156, + -21.659128189086914 + ], + "type":"VEC3" + }, + { + "bufferView":4011, + "componentType":5126, + "count":66780, + "type":"VEC3" + }, + { + "bufferView":4012, + "componentType":5126, + "count":66780, + "type":"VEC2" + }, + { + "bufferView":4013, + "componentType":5126, + "count":66780, + "type":"VEC2" + }, + { + "bufferView":4014, + "componentType":5126, + "count":66780, + "type":"VEC4" + }, + { + "bufferView":4015, + "componentType":5121, + "count":66780, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4016, + "componentType":5123, + "count":66780, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4017, + "componentType":5123, + "count":66780, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4018, + "componentType":5126, + "count":12096, + "max":[ + 21.76410675048828, + 59.76081085205078, + 18.63558578491211 + ], + "min":[ + -21.505821228027344, + -97.0052261352539, + -18.635629653930664 + ], + "type":"VEC3" + }, + { + "bufferView":4019, + "componentType":5126, + "count":12096, + "type":"VEC3" + }, + { + "bufferView":4020, + "componentType":5126, + "count":12096, + "type":"VEC2" + }, + { + "bufferView":4021, + "componentType":5126, + "count":12096, + "type":"VEC2" + }, + { + "bufferView":4022, + "componentType":5126, + "count":12096, + "type":"VEC4" + }, + { + "bufferView":4023, + "componentType":5121, + "count":12096, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4024, + "componentType":5123, + "count":12096, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4025, + "componentType":5123, + "count":12096, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4026, + "componentType":5126, + "count":42, + "max":[ + 6.870948791503906, + 63.08966827392578, + 5.986271858215332 + ], + "min":[ + 6.823143005371094, + 62.954444885253906, + 5.564633369445801 + ], + "type":"VEC3" + }, + { + "bufferView":4027, + "componentType":5126, + "count":42, + "type":"VEC3" + }, + { + "bufferView":4028, + "componentType":5126, + "count":42, + "type":"VEC2" + }, + { + "bufferView":4029, + "componentType":5126, + "count":42, + "type":"VEC2" + }, + { + "bufferView":4030, + "componentType":5126, + "count":42, + "type":"VEC4" + }, + { + "bufferView":4031, + "componentType":5121, + "count":42, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4032, + "componentType":5123, + "count":42, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4033, + "componentType":5123, + "count":42, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4034, + "componentType":5126, + "count":36480, + "max":[ + 26.22955322265625, + 59.76087188720703, + 21.05202865600586 + ], + "min":[ + -25.976608276367188, + -97.0052261352539, + -21.052072525024414 + ], + "type":"VEC3" + }, + { + "bufferView":4035, + "componentType":5126, + "count":36480, + "type":"VEC3" + }, + { + "bufferView":4036, + "componentType":5126, + "count":36480, + "type":"VEC2" + }, + { + "bufferView":4037, + "componentType":5126, + "count":36480, + "type":"VEC2" + }, + { + "bufferView":4038, + "componentType":5126, + "count":36480, + "type":"VEC4" + }, + { + "bufferView":4039, + "componentType":5121, + "count":36480, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4040, + "componentType":5123, + "count":36480, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4041, + "componentType":5123, + "count":36480, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4042, + "componentType":5126, + "count":3640, + "max":[ + 21.88384246826172, + 69.40995025634766, + 21.830821990966797 + ], + "min":[ + -21.116804122924805, + -100.52923583984375, + -21.83084487915039 + ], + "type":"VEC3" + }, + { + "bufferView":4043, + "componentType":5126, + "count":3640, + "type":"VEC3" + }, + { + "bufferView":4044, + "componentType":5126, + "count":3640, + "type":"VEC2" + }, + { + "bufferView":4045, + "componentType":5126, + "count":3640, + "type":"VEC2" + }, + { + "bufferView":4046, + "componentType":5126, + "count":3640, + "type":"VEC4" + }, + { + "bufferView":4047, + "componentType":5121, + "count":3640, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4048, + "componentType":5123, + "count":3640, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4049, + "componentType":5123, + "count":3640, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4050, + "componentType":5126, + "count":126, + "max":[ + -22.672882080078125, + 100.52933502197266, + -12.259563446044922 + ], + "min":[ + -24.388076782226562, + 78.19062042236328, + -12.476177215576172 + ], + "type":"VEC3" + }, + { + "bufferView":4051, + "componentType":5126, + "count":126, + "type":"VEC3" + }, + { + "bufferView":4052, + "componentType":5126, + "count":126, + "type":"VEC2" + }, + { + "bufferView":4053, + "componentType":5126, + "count":126, + "type":"VEC2" + }, + { + "bufferView":4054, + "componentType":5126, + "count":126, + "type":"VEC4" + }, + { + "bufferView":4055, + "componentType":5121, + "count":126, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4056, + "componentType":5123, + "count":126, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4057, + "componentType":5123, + "count":126, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4058, + "componentType":5126, + "count":2951, + "max":[ + 16.60470962524414, + 100.52933502197266, + 18.009265899658203 + ], + "min":[ + -24.579769134521484, + 59.30908966064453, + -12.667872428894043 + ], + "type":"VEC3" + }, + { + "bufferView":4059, + "componentType":5126, + "count":2951, + "type":"VEC3" + }, + { + "bufferView":4060, + "componentType":5126, + "count":2951, + "type":"VEC2" + }, + { + "bufferView":4061, + "componentType":5126, + "count":2951, + "type":"VEC2" + }, + { + "bufferView":4062, + "componentType":5126, + "count":2951, + "type":"VEC4" + }, + { + "bufferView":4063, + "componentType":5121, + "count":2951, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4064, + "componentType":5123, + "count":2951, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4065, + "componentType":5123, + "count":2951, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4066, + "componentType":5126, + "count":71702, + "max":[ + 26.83185577392578, + 70.9264907836914, + 22.688838958740234 + ], + "min":[ + -26.578866958618164, + -100.52935028076172, + -22.6888370513916 + ], + "type":"VEC3" + }, + { + "bufferView":4067, + "componentType":5126, + "count":71702, + "type":"VEC3" + }, + { + "bufferView":4068, + "componentType":5126, + "count":71702, + "type":"VEC2" + }, + { + "bufferView":4069, + "componentType":5126, + "count":71702, + "type":"VEC2" + }, + { + "bufferView":4070, + "componentType":5126, + "count":71702, + "type":"VEC4" + }, + { + "bufferView":4071, + "componentType":5121, + "count":71702, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4072, + "componentType":5123, + "count":71702, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4073, + "componentType":5123, + "count":71702, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4074, + "componentType":5126, + "count":4, + "max":[ + -13.37161636352539, + 57.56195831298828, + 21.666868209838867 + ], + "min":[ + -14.155853271484375, + 56.439552307128906, + 21.666868209838867 + ], + "type":"VEC3" + }, + { + "bufferView":4075, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":4076, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":4077, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":4078, + "componentType":5126, + "count":4, + "type":"VEC4" + }, + { + "bufferView":4079, + "componentType":5121, + "count":4, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4080, + "componentType":5123, + "count":4, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4081, + "componentType":5123, + "count":4, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4082, + "componentType":5126, + "count":18, + "max":[ + 25.347518920898438, + 63.824684143066406, + 18.01973533630371 + ], + "min":[ + -25.094512939453125, + 60.937294006347656, + -18.01981544494629 + ], + "type":"VEC3" + }, + { + "bufferView":4083, + "componentType":5126, + "count":18, + "type":"VEC3" + }, + { + "bufferView":4084, + "componentType":5126, + "count":18, + "type":"VEC2" + }, + { + "bufferView":4085, + "componentType":5126, + "count":18, + "type":"VEC2" + }, + { + "bufferView":4086, + "componentType":5126, + "count":18, + "type":"VEC4" + }, + { + "bufferView":4087, + "componentType":5121, + "count":18, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4088, + "componentType":5123, + "count":18, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4089, + "componentType":5123, + "count":18, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4090, + "componentType":5126, + "count":23302, + "max":[ + 23.853782653808594, + 64.08094024658203, + 16.79445457458496 + ], + "min":[ + -13.503654479980469, + 60.032081604003906, + -17.11626625061035 + ], + "type":"VEC3" + }, + { + "bufferView":4091, + "componentType":5126, + "count":23302, + "type":"VEC3" + }, + { + "bufferView":4092, + "componentType":5126, + "count":23302, + "type":"VEC2" + }, + { + "bufferView":4093, + "componentType":5126, + "count":23302, + "type":"VEC2" + }, + { + "bufferView":4094, + "componentType":5126, + "count":23302, + "type":"VEC4" + }, + { + "bufferView":4095, + "componentType":5121, + "count":23302, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4096, + "componentType":5123, + "count":23302, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4097, + "componentType":5123, + "count":23302, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4098, + "componentType":5126, + "count":32944, + "max":[ + 22.309608459472656, + 68.31970977783203, + 21.38612174987793 + ], + "min":[ + -22.05101776123047, + -100.52925872802734, + -21.386178970336914 + ], + "type":"VEC3" + }, + { + "bufferView":4099, + "componentType":5126, + "count":32944, + "type":"VEC3" + }, + { + "bufferView":4100, + "componentType":5126, + "count":32944, + "type":"VEC2" + }, + { + "bufferView":4101, + "componentType":5126, + "count":32944, + "type":"VEC2" + }, + { + "bufferView":4102, + "componentType":5126, + "count":32944, + "type":"VEC4" + }, + { + "bufferView":4103, + "componentType":5121, + "count":32944, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4104, + "componentType":5123, + "count":32944, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4105, + "componentType":5123, + "count":32944, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4106, + "componentType":5126, + "count":4612, + "max":[ + 26.56256103515625, + 70.29889678955078, + 13.125576972961426 + ], + "min":[ + -26.309616088867188, + -100.52924346923828, + -13.12562084197998 + ], + "type":"VEC3" + }, + { + "bufferView":4107, + "componentType":5126, + "count":4612, + "type":"VEC3" + }, + { + "bufferView":4108, + "componentType":5126, + "count":4612, + "type":"VEC2" + }, + { + "bufferView":4109, + "componentType":5126, + "count":4612, + "type":"VEC2" + }, + { + "bufferView":4110, + "componentType":5126, + "count":4612, + "type":"VEC4" + }, + { + "bufferView":4111, + "componentType":5121, + "count":4612, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4112, + "componentType":5123, + "count":4612, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4113, + "componentType":5123, + "count":4612, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4114, + "componentType":5126, + "count":66780, + "max":[ + 27.286590576171875, + 71.3508071899414, + 21.666906356811523 + ], + "min":[ + -27.286592483520508, + 51.766273498535156, + -21.659128189086914 + ], + "type":"VEC3" + }, + { + "bufferView":4115, + "componentType":5126, + "count":66780, + "type":"VEC3" + }, + { + "bufferView":4116, + "componentType":5126, + "count":66780, + "type":"VEC2" + }, + { + "bufferView":4117, + "componentType":5126, + "count":66780, + "type":"VEC2" + }, + { + "bufferView":4118, + "componentType":5126, + "count":66780, + "type":"VEC4" + }, + { + "bufferView":4119, + "componentType":5121, + "count":66780, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4120, + "componentType":5123, + "count":66780, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4121, + "componentType":5123, + "count":66780, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4122, + "componentType":5126, + "count":12096, + "max":[ + 21.76410675048828, + 59.76081085205078, + 18.63558578491211 + ], + "min":[ + -21.505821228027344, + -97.0052261352539, + -18.635629653930664 + ], + "type":"VEC3" + }, + { + "bufferView":4123, + "componentType":5126, + "count":12096, + "type":"VEC3" + }, + { + "bufferView":4124, + "componentType":5126, + "count":12096, + "type":"VEC2" + }, + { + "bufferView":4125, + "componentType":5126, + "count":12096, + "type":"VEC2" + }, + { + "bufferView":4126, + "componentType":5126, + "count":12096, + "type":"VEC4" + }, + { + "bufferView":4127, + "componentType":5121, + "count":12096, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4128, + "componentType":5123, + "count":12096, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4129, + "componentType":5123, + "count":12096, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4130, + "componentType":5126, + "count":42, + "max":[ + 6.870948791503906, + 63.08966827392578, + 5.986271858215332 + ], + "min":[ + 6.823143005371094, + 62.954444885253906, + 5.564633369445801 + ], + "type":"VEC3" + }, + { + "bufferView":4131, + "componentType":5126, + "count":42, + "type":"VEC3" + }, + { + "bufferView":4132, + "componentType":5126, + "count":42, + "type":"VEC2" + }, + { + "bufferView":4133, + "componentType":5126, + "count":42, + "type":"VEC2" + }, + { + "bufferView":4134, + "componentType":5126, + "count":42, + "type":"VEC4" + }, + { + "bufferView":4135, + "componentType":5121, + "count":42, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4136, + "componentType":5123, + "count":42, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4137, + "componentType":5123, + "count":42, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4138, + "componentType":5126, + "count":36480, + "max":[ + 26.22955322265625, + 59.76087188720703, + 21.05202865600586 + ], + "min":[ + -25.976608276367188, + -97.0052261352539, + -21.052072525024414 + ], + "type":"VEC3" + }, + { + "bufferView":4139, + "componentType":5126, + "count":36480, + "type":"VEC3" + }, + { + "bufferView":4140, + "componentType":5126, + "count":36480, + "type":"VEC2" + }, + { + "bufferView":4141, + "componentType":5126, + "count":36480, + "type":"VEC2" + }, + { + "bufferView":4142, + "componentType":5126, + "count":36480, + "type":"VEC4" + }, + { + "bufferView":4143, + "componentType":5121, + "count":36480, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4144, + "componentType":5123, + "count":36480, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4145, + "componentType":5123, + "count":36480, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4146, + "componentType":5126, + "count":3640, + "max":[ + 21.88384246826172, + 69.40995025634766, + 21.830821990966797 + ], + "min":[ + -21.116804122924805, + -100.52923583984375, + -21.83084487915039 + ], + "type":"VEC3" + }, + { + "bufferView":4147, + "componentType":5126, + "count":3640, + "type":"VEC3" + }, + { + "bufferView":4148, + "componentType":5126, + "count":3640, + "type":"VEC2" + }, + { + "bufferView":4149, + "componentType":5126, + "count":3640, + "type":"VEC2" + }, + { + "bufferView":4150, + "componentType":5126, + "count":3640, + "type":"VEC4" + }, + { + "bufferView":4151, + "componentType":5121, + "count":3640, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4152, + "componentType":5123, + "count":3640, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4153, + "componentType":5123, + "count":3640, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4154, + "componentType":5126, + "count":126, + "max":[ + -22.672882080078125, + 100.52933502197266, + -12.259563446044922 + ], + "min":[ + -24.388076782226562, + 78.19062042236328, + -12.476177215576172 + ], + "type":"VEC3" + }, + { + "bufferView":4155, + "componentType":5126, + "count":126, + "type":"VEC3" + }, + { + "bufferView":4156, + "componentType":5126, + "count":126, + "type":"VEC2" + }, + { + "bufferView":4157, + "componentType":5126, + "count":126, + "type":"VEC2" + }, + { + "bufferView":4158, + "componentType":5126, + "count":126, + "type":"VEC4" + }, + { + "bufferView":4159, + "componentType":5121, + "count":126, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4160, + "componentType":5123, + "count":126, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4161, + "componentType":5123, + "count":126, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4162, + "componentType":5126, + "count":2951, + "max":[ + 16.60470962524414, + 100.52933502197266, + 18.009265899658203 + ], + "min":[ + -24.579769134521484, + 59.30908966064453, + -12.667872428894043 + ], + "type":"VEC3" + }, + { + "bufferView":4163, + "componentType":5126, + "count":2951, + "type":"VEC3" + }, + { + "bufferView":4164, + "componentType":5126, + "count":2951, + "type":"VEC2" + }, + { + "bufferView":4165, + "componentType":5126, + "count":2951, + "type":"VEC2" + }, + { + "bufferView":4166, + "componentType":5126, + "count":2951, + "type":"VEC4" + }, + { + "bufferView":4167, + "componentType":5121, + "count":2951, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4168, + "componentType":5123, + "count":2951, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4169, + "componentType":5123, + "count":2951, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4170, + "componentType":5126, + "count":71702, + "max":[ + 26.83185577392578, + 70.9264907836914, + 22.688838958740234 + ], + "min":[ + -26.578866958618164, + -100.52935028076172, + -22.6888370513916 + ], + "type":"VEC3" + }, + { + "bufferView":4171, + "componentType":5126, + "count":71702, + "type":"VEC3" + }, + { + "bufferView":4172, + "componentType":5126, + "count":71702, + "type":"VEC2" + }, + { + "bufferView":4173, + "componentType":5126, + "count":71702, + "type":"VEC2" + }, + { + "bufferView":4174, + "componentType":5126, + "count":71702, + "type":"VEC4" + }, + { + "bufferView":4175, + "componentType":5121, + "count":71702, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4176, + "componentType":5123, + "count":71702, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4177, + "componentType":5123, + "count":71702, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4178, + "componentType":5126, + "count":4, + "max":[ + -13.37161636352539, + 57.56195831298828, + 21.666868209838867 + ], + "min":[ + -14.155853271484375, + 56.439552307128906, + 21.666868209838867 + ], + "type":"VEC3" + }, + { + "bufferView":4179, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":4180, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":4181, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":4182, + "componentType":5126, + "count":4, + "type":"VEC4" + }, + { + "bufferView":4183, + "componentType":5121, + "count":4, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4184, + "componentType":5123, + "count":4, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4185, + "componentType":5123, + "count":4, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4186, + "componentType":5126, + "count":18, + "max":[ + 25.347518920898438, + 63.824684143066406, + 18.01973533630371 + ], + "min":[ + -25.094512939453125, + 60.937294006347656, + -18.01981544494629 + ], + "type":"VEC3" + }, + { + "bufferView":4187, + "componentType":5126, + "count":18, + "type":"VEC3" + }, + { + "bufferView":4188, + "componentType":5126, + "count":18, + "type":"VEC2" + }, + { + "bufferView":4189, + "componentType":5126, + "count":18, + "type":"VEC2" + }, + { + "bufferView":4190, + "componentType":5126, + "count":18, + "type":"VEC4" + }, + { + "bufferView":4191, + "componentType":5121, + "count":18, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4192, + "componentType":5123, + "count":18, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4193, + "componentType":5123, + "count":18, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4194, + "componentType":5126, + "count":2205, + "max":[ + 2.961395263671875, + 20.6231689453125, + 3.5956034660339355 + ], + "min":[ + -2.961395263671875, + -20.6231689453125, + -3.595604658126831 + ], + "type":"VEC3" + }, + { + "bufferView":4195, + "componentType":5126, + "count":2205, + "type":"VEC3" + }, + { + "bufferView":4196, + "componentType":5126, + "count":2205, + "type":"VEC2" + }, + { + "bufferView":4197, + "componentType":5126, + "count":2205, + "type":"VEC2" + }, + { + "bufferView":4198, + "componentType":5126, + "count":2205, + "type":"VEC4" + }, + { + "bufferView":4199, + "componentType":5121, + "count":2205, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4200, + "componentType":5123, + "count":2205, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4201, + "componentType":5123, + "count":2205, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4202, + "componentType":5126, + "count":23302, + "max":[ + 23.853782653808594, + 64.08094024658203, + 16.79445457458496 + ], + "min":[ + -13.503654479980469, + 60.032081604003906, + -17.11626625061035 + ], + "type":"VEC3" + }, + { + "bufferView":4203, + "componentType":5126, + "count":23302, + "type":"VEC3" + }, + { + "bufferView":4204, + "componentType":5126, + "count":23302, + "type":"VEC2" + }, + { + "bufferView":4205, + "componentType":5126, + "count":23302, + "type":"VEC2" + }, + { + "bufferView":4206, + "componentType":5126, + "count":23302, + "type":"VEC4" + }, + { + "bufferView":4207, + "componentType":5121, + "count":23302, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4208, + "componentType":5123, + "count":23302, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4209, + "componentType":5123, + "count":23302, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4210, + "componentType":5126, + "count":32944, + "max":[ + 22.309608459472656, + 68.31970977783203, + 21.38612174987793 + ], + "min":[ + -22.05101776123047, + -100.52925872802734, + -21.386178970336914 + ], + "type":"VEC3" + }, + { + "bufferView":4211, + "componentType":5126, + "count":32944, + "type":"VEC3" + }, + { + "bufferView":4212, + "componentType":5126, + "count":32944, + "type":"VEC2" + }, + { + "bufferView":4213, + "componentType":5126, + "count":32944, + "type":"VEC2" + }, + { + "bufferView":4214, + "componentType":5126, + "count":32944, + "type":"VEC4" + }, + { + "bufferView":4215, + "componentType":5121, + "count":32944, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4216, + "componentType":5123, + "count":32944, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4217, + "componentType":5123, + "count":32944, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4218, + "componentType":5126, + "count":4612, + "max":[ + 26.56256103515625, + 70.29889678955078, + 13.125576972961426 + ], + "min":[ + -26.309616088867188, + -100.52924346923828, + -13.12562084197998 + ], + "type":"VEC3" + }, + { + "bufferView":4219, + "componentType":5126, + "count":4612, + "type":"VEC3" + }, + { + "bufferView":4220, + "componentType":5126, + "count":4612, + "type":"VEC2" + }, + { + "bufferView":4221, + "componentType":5126, + "count":4612, + "type":"VEC2" + }, + { + "bufferView":4222, + "componentType":5126, + "count":4612, + "type":"VEC4" + }, + { + "bufferView":4223, + "componentType":5121, + "count":4612, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4224, + "componentType":5123, + "count":4612, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4225, + "componentType":5123, + "count":4612, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4226, + "componentType":5126, + "count":66780, + "max":[ + 27.286590576171875, + 71.3508071899414, + 21.666906356811523 + ], + "min":[ + -27.286592483520508, + 51.766273498535156, + -21.659128189086914 + ], + "type":"VEC3" + }, + { + "bufferView":4227, + "componentType":5126, + "count":66780, + "type":"VEC3" + }, + { + "bufferView":4228, + "componentType":5126, + "count":66780, + "type":"VEC2" + }, + { + "bufferView":4229, + "componentType":5126, + "count":66780, + "type":"VEC2" + }, + { + "bufferView":4230, + "componentType":5126, + "count":66780, + "type":"VEC4" + }, + { + "bufferView":4231, + "componentType":5121, + "count":66780, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4232, + "componentType":5123, + "count":66780, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4233, + "componentType":5123, + "count":66780, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4234, + "componentType":5126, + "count":12096, + "max":[ + 21.76410675048828, + 59.76081085205078, + 18.63558578491211 + ], + "min":[ + -21.505821228027344, + -97.0052261352539, + -18.635629653930664 + ], + "type":"VEC3" + }, + { + "bufferView":4235, + "componentType":5126, + "count":12096, + "type":"VEC3" + }, + { + "bufferView":4236, + "componentType":5126, + "count":12096, + "type":"VEC2" + }, + { + "bufferView":4237, + "componentType":5126, + "count":12096, + "type":"VEC2" + }, + { + "bufferView":4238, + "componentType":5126, + "count":12096, + "type":"VEC4" + }, + { + "bufferView":4239, + "componentType":5121, + "count":12096, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4240, + "componentType":5123, + "count":12096, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4241, + "componentType":5123, + "count":12096, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4242, + "componentType":5126, + "count":42, + "max":[ + 6.870948791503906, + 63.08966827392578, + 5.986271858215332 + ], + "min":[ + 6.823143005371094, + 62.954444885253906, + 5.564633369445801 + ], + "type":"VEC3" + }, + { + "bufferView":4243, + "componentType":5126, + "count":42, + "type":"VEC3" + }, + { + "bufferView":4244, + "componentType":5126, + "count":42, + "type":"VEC2" + }, + { + "bufferView":4245, + "componentType":5126, + "count":42, + "type":"VEC2" + }, + { + "bufferView":4246, + "componentType":5126, + "count":42, + "type":"VEC4" + }, + { + "bufferView":4247, + "componentType":5121, + "count":42, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4248, + "componentType":5123, + "count":42, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4249, + "componentType":5123, + "count":42, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4250, + "componentType":5126, + "count":36480, + "max":[ + 26.22955322265625, + 59.76087188720703, + 21.05202865600586 + ], + "min":[ + -25.976608276367188, + -97.0052261352539, + -21.052072525024414 + ], + "type":"VEC3" + }, + { + "bufferView":4251, + "componentType":5126, + "count":36480, + "type":"VEC3" + }, + { + "bufferView":4252, + "componentType":5126, + "count":36480, + "type":"VEC2" + }, + { + "bufferView":4253, + "componentType":5126, + "count":36480, + "type":"VEC2" + }, + { + "bufferView":4254, + "componentType":5126, + "count":36480, + "type":"VEC4" + }, + { + "bufferView":4255, + "componentType":5121, + "count":36480, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4256, + "componentType":5123, + "count":36480, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4257, + "componentType":5123, + "count":36480, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4258, + "componentType":5126, + "count":3640, + "max":[ + 21.88384246826172, + 69.40995025634766, + 21.830821990966797 + ], + "min":[ + -21.116804122924805, + -100.52923583984375, + -21.83084487915039 + ], + "type":"VEC3" + }, + { + "bufferView":4259, + "componentType":5126, + "count":3640, + "type":"VEC3" + }, + { + "bufferView":4260, + "componentType":5126, + "count":3640, + "type":"VEC2" + }, + { + "bufferView":4261, + "componentType":5126, + "count":3640, + "type":"VEC2" + }, + { + "bufferView":4262, + "componentType":5126, + "count":3640, + "type":"VEC4" + }, + { + "bufferView":4263, + "componentType":5121, + "count":3640, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4264, + "componentType":5123, + "count":3640, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4265, + "componentType":5123, + "count":3640, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4266, + "componentType":5126, + "count":126, + "max":[ + -22.672882080078125, + 100.52933502197266, + -12.259563446044922 + ], + "min":[ + -24.388076782226562, + 78.19062042236328, + -12.476177215576172 + ], + "type":"VEC3" + }, + { + "bufferView":4267, + "componentType":5126, + "count":126, + "type":"VEC3" + }, + { + "bufferView":4268, + "componentType":5126, + "count":126, + "type":"VEC2" + }, + { + "bufferView":4269, + "componentType":5126, + "count":126, + "type":"VEC2" + }, + { + "bufferView":4270, + "componentType":5126, + "count":126, + "type":"VEC4" + }, + { + "bufferView":4271, + "componentType":5121, + "count":126, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4272, + "componentType":5123, + "count":126, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4273, + "componentType":5123, + "count":126, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4274, + "componentType":5126, + "count":2951, + "max":[ + 16.60470962524414, + 100.52933502197266, + 18.009265899658203 + ], + "min":[ + -24.579769134521484, + 59.30908966064453, + -12.667872428894043 + ], + "type":"VEC3" + }, + { + "bufferView":4275, + "componentType":5126, + "count":2951, + "type":"VEC3" + }, + { + "bufferView":4276, + "componentType":5126, + "count":2951, + "type":"VEC2" + }, + { + "bufferView":4277, + "componentType":5126, + "count":2951, + "type":"VEC2" + }, + { + "bufferView":4278, + "componentType":5126, + "count":2951, + "type":"VEC4" + }, + { + "bufferView":4279, + "componentType":5121, + "count":2951, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4280, + "componentType":5123, + "count":2951, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4281, + "componentType":5123, + "count":2951, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4282, + "componentType":5126, + "count":71702, + "max":[ + 26.83185577392578, + 70.9264907836914, + 22.688838958740234 + ], + "min":[ + -26.578866958618164, + -100.52935028076172, + -22.6888370513916 + ], + "type":"VEC3" + }, + { + "bufferView":4283, + "componentType":5126, + "count":71702, + "type":"VEC3" + }, + { + "bufferView":4284, + "componentType":5126, + "count":71702, + "type":"VEC2" + }, + { + "bufferView":4285, + "componentType":5126, + "count":71702, + "type":"VEC2" + }, + { + "bufferView":4286, + "componentType":5126, + "count":71702, + "type":"VEC4" + }, + { + "bufferView":4287, + "componentType":5121, + "count":71702, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4288, + "componentType":5123, + "count":71702, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4289, + "componentType":5123, + "count":71702, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4290, + "componentType":5126, + "count":4, + "max":[ + -13.37161636352539, + 57.56195831298828, + 21.666868209838867 + ], + "min":[ + -14.155853271484375, + 56.439552307128906, + 21.666868209838867 + ], + "type":"VEC3" + }, + { + "bufferView":4291, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":4292, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":4293, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":4294, + "componentType":5126, + "count":4, + "type":"VEC4" + }, + { + "bufferView":4295, + "componentType":5121, + "count":4, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4296, + "componentType":5123, + "count":4, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4297, + "componentType":5123, + "count":4, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4298, + "componentType":5126, + "count":18, + "max":[ + 25.347518920898438, + 63.824684143066406, + 18.01973533630371 + ], + "min":[ + -25.094512939453125, + 60.937294006347656, + -18.01981544494629 + ], + "type":"VEC3" + }, + { + "bufferView":4299, + "componentType":5126, + "count":18, + "type":"VEC3" + }, + { + "bufferView":4300, + "componentType":5126, + "count":18, + "type":"VEC2" + }, + { + "bufferView":4301, + "componentType":5126, + "count":18, + "type":"VEC2" + }, + { + "bufferView":4302, + "componentType":5126, + "count":18, + "type":"VEC4" + }, + { + "bufferView":4303, + "componentType":5121, + "count":18, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4304, + "componentType":5123, + "count":18, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4305, + "componentType":5123, + "count":18, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4306, + "componentType":5126, + "count":2205, + "max":[ + 2.961395263671875, + 20.6231689453125, + 3.5956034660339355 + ], + "min":[ + -2.961395263671875, + -20.6231689453125, + -3.595604658126831 + ], + "type":"VEC3" + }, + { + "bufferView":4307, + "componentType":5126, + "count":2205, + "type":"VEC3" + }, + { + "bufferView":4308, + "componentType":5126, + "count":2205, + "type":"VEC2" + }, + { + "bufferView":4309, + "componentType":5126, + "count":2205, + "type":"VEC2" + }, + { + "bufferView":4310, + "componentType":5126, + "count":2205, + "type":"VEC4" + }, + { + "bufferView":4311, + "componentType":5121, + "count":2205, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4312, + "componentType":5123, + "count":2205, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4313, + "componentType":5123, + "count":2205, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4314, + "componentType":5126, + "count":23302, + "max":[ + 23.853782653808594, + 64.08094024658203, + 16.79445457458496 + ], + "min":[ + -13.503654479980469, + 60.032081604003906, + -17.11626625061035 + ], + "type":"VEC3" + }, + { + "bufferView":4315, + "componentType":5126, + "count":23302, + "type":"VEC3" + }, + { + "bufferView":4316, + "componentType":5126, + "count":23302, + "type":"VEC2" + }, + { + "bufferView":4317, + "componentType":5126, + "count":23302, + "type":"VEC2" + }, + { + "bufferView":4318, + "componentType":5126, + "count":23302, + "type":"VEC4" + }, + { + "bufferView":4319, + "componentType":5121, + "count":23302, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4320, + "componentType":5123, + "count":23302, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4321, + "componentType":5123, + "count":23302, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4322, + "componentType":5126, + "count":32944, + "max":[ + 22.309608459472656, + 68.31970977783203, + 21.38612174987793 + ], + "min":[ + -22.05101776123047, + -100.52925872802734, + -21.386178970336914 + ], + "type":"VEC3" + }, + { + "bufferView":4323, + "componentType":5126, + "count":32944, + "type":"VEC3" + }, + { + "bufferView":4324, + "componentType":5126, + "count":32944, + "type":"VEC2" + }, + { + "bufferView":4325, + "componentType":5126, + "count":32944, + "type":"VEC2" + }, + { + "bufferView":4326, + "componentType":5126, + "count":32944, + "type":"VEC4" + }, + { + "bufferView":4327, + "componentType":5121, + "count":32944, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4328, + "componentType":5123, + "count":32944, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4329, + "componentType":5123, + "count":32944, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4330, + "componentType":5126, + "count":4612, + "max":[ + 26.56256103515625, + 70.29889678955078, + 13.125576972961426 + ], + "min":[ + -26.309616088867188, + -100.52924346923828, + -13.12562084197998 + ], + "type":"VEC3" + }, + { + "bufferView":4331, + "componentType":5126, + "count":4612, + "type":"VEC3" + }, + { + "bufferView":4332, + "componentType":5126, + "count":4612, + "type":"VEC2" + }, + { + "bufferView":4333, + "componentType":5126, + "count":4612, + "type":"VEC2" + }, + { + "bufferView":4334, + "componentType":5126, + "count":4612, + "type":"VEC4" + }, + { + "bufferView":4335, + "componentType":5121, + "count":4612, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4336, + "componentType":5123, + "count":4612, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4337, + "componentType":5123, + "count":4612, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4338, + "componentType":5126, + "count":66780, + "max":[ + 27.286590576171875, + 71.3508071899414, + 21.666906356811523 + ], + "min":[ + -27.286592483520508, + 51.766273498535156, + -21.659128189086914 + ], + "type":"VEC3" + }, + { + "bufferView":4339, + "componentType":5126, + "count":66780, + "type":"VEC3" + }, + { + "bufferView":4340, + "componentType":5126, + "count":66780, + "type":"VEC2" + }, + { + "bufferView":4341, + "componentType":5126, + "count":66780, + "type":"VEC2" + }, + { + "bufferView":4342, + "componentType":5126, + "count":66780, + "type":"VEC4" + }, + { + "bufferView":4343, + "componentType":5121, + "count":66780, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4344, + "componentType":5123, + "count":66780, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4345, + "componentType":5123, + "count":66780, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4346, + "componentType":5126, + "count":12096, + "max":[ + 21.76410675048828, + 59.76081085205078, + 18.63558578491211 + ], + "min":[ + -21.505821228027344, + -97.0052261352539, + -18.635629653930664 + ], + "type":"VEC3" + }, + { + "bufferView":4347, + "componentType":5126, + "count":12096, + "type":"VEC3" + }, + { + "bufferView":4348, + "componentType":5126, + "count":12096, + "type":"VEC2" + }, + { + "bufferView":4349, + "componentType":5126, + "count":12096, + "type":"VEC2" + }, + { + "bufferView":4350, + "componentType":5126, + "count":12096, + "type":"VEC4" + }, + { + "bufferView":4351, + "componentType":5121, + "count":12096, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4352, + "componentType":5123, + "count":12096, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4353, + "componentType":5123, + "count":12096, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4354, + "componentType":5126, + "count":42, + "max":[ + 6.870948791503906, + 63.08966827392578, + 5.986271858215332 + ], + "min":[ + 6.823143005371094, + 62.954444885253906, + 5.564633369445801 + ], + "type":"VEC3" + }, + { + "bufferView":4355, + "componentType":5126, + "count":42, + "type":"VEC3" + }, + { + "bufferView":4356, + "componentType":5126, + "count":42, + "type":"VEC2" + }, + { + "bufferView":4357, + "componentType":5126, + "count":42, + "type":"VEC2" + }, + { + "bufferView":4358, + "componentType":5126, + "count":42, + "type":"VEC4" + }, + { + "bufferView":4359, + "componentType":5121, + "count":42, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4360, + "componentType":5123, + "count":42, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4361, + "componentType":5123, + "count":42, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4362, + "componentType":5126, + "count":36480, + "max":[ + 26.22955322265625, + 59.76087188720703, + 21.05202865600586 + ], + "min":[ + -25.976608276367188, + -97.0052261352539, + -21.052072525024414 + ], + "type":"VEC3" + }, + { + "bufferView":4363, + "componentType":5126, + "count":36480, + "type":"VEC3" + }, + { + "bufferView":4364, + "componentType":5126, + "count":36480, + "type":"VEC2" + }, + { + "bufferView":4365, + "componentType":5126, + "count":36480, + "type":"VEC2" + }, + { + "bufferView":4366, + "componentType":5126, + "count":36480, + "type":"VEC4" + }, + { + "bufferView":4367, + "componentType":5121, + "count":36480, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4368, + "componentType":5123, + "count":36480, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4369, + "componentType":5123, + "count":36480, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4370, + "componentType":5126, + "count":3640, + "max":[ + 21.88384246826172, + 69.40995025634766, + 21.830821990966797 + ], + "min":[ + -21.116804122924805, + -100.52923583984375, + -21.83084487915039 + ], + "type":"VEC3" + }, + { + "bufferView":4371, + "componentType":5126, + "count":3640, + "type":"VEC3" + }, + { + "bufferView":4372, + "componentType":5126, + "count":3640, + "type":"VEC2" + }, + { + "bufferView":4373, + "componentType":5126, + "count":3640, + "type":"VEC2" + }, + { + "bufferView":4374, + "componentType":5126, + "count":3640, + "type":"VEC4" + }, + { + "bufferView":4375, + "componentType":5121, + "count":3640, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4376, + "componentType":5123, + "count":3640, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4377, + "componentType":5123, + "count":3640, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4378, + "componentType":5126, + "count":126, + "max":[ + -22.672882080078125, + 100.52933502197266, + -12.259563446044922 + ], + "min":[ + -24.388076782226562, + 78.19062042236328, + -12.476177215576172 + ], + "type":"VEC3" + }, + { + "bufferView":4379, + "componentType":5126, + "count":126, + "type":"VEC3" + }, + { + "bufferView":4380, + "componentType":5126, + "count":126, + "type":"VEC2" + }, + { + "bufferView":4381, + "componentType":5126, + "count":126, + "type":"VEC2" + }, + { + "bufferView":4382, + "componentType":5126, + "count":126, + "type":"VEC4" + }, + { + "bufferView":4383, + "componentType":5121, + "count":126, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4384, + "componentType":5123, + "count":126, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4385, + "componentType":5123, + "count":126, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4386, + "componentType":5126, + "count":2951, + "max":[ + 16.60470962524414, + 100.52933502197266, + 18.009265899658203 + ], + "min":[ + -24.579769134521484, + 59.30908966064453, + -12.667872428894043 + ], + "type":"VEC3" + }, + { + "bufferView":4387, + "componentType":5126, + "count":2951, + "type":"VEC3" + }, + { + "bufferView":4388, + "componentType":5126, + "count":2951, + "type":"VEC2" + }, + { + "bufferView":4389, + "componentType":5126, + "count":2951, + "type":"VEC2" + }, + { + "bufferView":4390, + "componentType":5126, + "count":2951, + "type":"VEC4" + }, + { + "bufferView":4391, + "componentType":5121, + "count":2951, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4392, + "componentType":5123, + "count":2951, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4393, + "componentType":5123, + "count":2951, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4394, + "componentType":5126, + "count":71702, + "max":[ + 26.83185577392578, + 70.9264907836914, + 22.688838958740234 + ], + "min":[ + -26.578866958618164, + -100.52935028076172, + -22.6888370513916 + ], + "type":"VEC3" + }, + { + "bufferView":4395, + "componentType":5126, + "count":71702, + "type":"VEC3" + }, + { + "bufferView":4396, + "componentType":5126, + "count":71702, + "type":"VEC2" + }, + { + "bufferView":4397, + "componentType":5126, + "count":71702, + "type":"VEC2" + }, + { + "bufferView":4398, + "componentType":5126, + "count":71702, + "type":"VEC4" + }, + { + "bufferView":4399, + "componentType":5121, + "count":71702, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4400, + "componentType":5123, + "count":71702, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4401, + "componentType":5123, + "count":71702, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4402, + "componentType":5126, + "count":4, + "max":[ + -13.37161636352539, + 57.56195831298828, + 21.666868209838867 + ], + "min":[ + -14.155853271484375, + 56.439552307128906, + 21.666868209838867 + ], + "type":"VEC3" + }, + { + "bufferView":4403, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":4404, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":4405, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":4406, + "componentType":5126, + "count":4, + "type":"VEC4" + }, + { + "bufferView":4407, + "componentType":5121, + "count":4, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4408, + "componentType":5123, + "count":4, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4409, + "componentType":5123, + "count":4, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4410, + "componentType":5126, + "count":18, + "max":[ + 25.347518920898438, + 63.824684143066406, + 18.01973533630371 + ], + "min":[ + -25.094512939453125, + 60.937294006347656, + -18.01981544494629 + ], + "type":"VEC3" + }, + { + "bufferView":4411, + "componentType":5126, + "count":18, + "type":"VEC3" + }, + { + "bufferView":4412, + "componentType":5126, + "count":18, + "type":"VEC2" + }, + { + "bufferView":4413, + "componentType":5126, + "count":18, + "type":"VEC2" + }, + { + "bufferView":4414, + "componentType":5126, + "count":18, + "type":"VEC4" + }, + { + "bufferView":4415, + "componentType":5121, + "count":18, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4416, + "componentType":5123, + "count":18, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4417, + "componentType":5123, + "count":18, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4418, + "componentType":5126, + "count":120, + "max":[ + 0.23160529136657715, + -0.3658508062362671, + 0.5441622734069824 + ], + "min":[ + -0.5704405307769775, + -0.7938875555992126, + -0.6271070837974548 + ], + "type":"VEC3" + }, + { + "bufferView":4419, + "componentType":5126, + "count":120, + "type":"VEC3" + }, + { + "bufferView":4420, + "componentType":5126, + "count":120, + "type":"VEC2" + }, + { + "bufferView":4421, + "componentType":5126, + "count":120, + "type":"VEC2" + }, + { + "bufferView":4422, + "componentType":5126, + "count":120, + "type":"VEC4" + }, + { + "bufferView":4423, + "componentType":5126, + "count":1952, + "max":[ + 0.34226012229919434, + 0.7560444474220276, + 0.10787150263786316 + ], + "min":[ + -0.3850318193435669, + 0.4673810303211212, + -0.44465187191963196 + ], + "type":"VEC3" + }, + { + "bufferView":4424, + "componentType":5126, + "count":1952, + "type":"VEC3" + }, + { + "bufferView":4425, + "componentType":5126, + "count":1952, + "type":"VEC2" + }, + { + "bufferView":4426, + "componentType":5126, + "count":1952, + "type":"VEC2" + }, + { + "bufferView":4427, + "componentType":5126, + "count":1952, + "type":"VEC4" + }, + { + "bufferView":4428, + "componentType":5126, + "count":3287, + "max":[ + 0.37334728240966797, + 0.3932960629463196, + 0.31418558955192566 + ], + "min":[ + -0.34461450576782227, + -0.7946204543113708, + -0.4037761986255646 + ], + "type":"VEC3" + }, + { + "bufferView":4429, + "componentType":5126, + "count":3287, + "type":"VEC3" + }, + { + "bufferView":4430, + "componentType":5126, + "count":3287, + "type":"VEC2" + }, + { + "bufferView":4431, + "componentType":5126, + "count":3287, + "type":"VEC2" + }, + { + "bufferView":4432, + "componentType":5126, + "count":3287, + "type":"VEC4" + }, + { + "bufferView":4433, + "componentType":5126, + "count":24629, + "max":[ + 0.38585329055786133, + 0.7946204543113708, + 0.6271071434020996 + ], + "min":[ + -0.6624181270599365, + -0.7933070063591003, + -0.5583270788192749 + ], + "type":"VEC3" + }, + { + "bufferView":4434, + "componentType":5126, + "count":24629, + "type":"VEC3" + }, + { + "bufferView":4435, + "componentType":5126, + "count":24629, + "type":"VEC2" + }, + { + "bufferView":4436, + "componentType":5126, + "count":24629, + "type":"VEC2" + }, + { + "bufferView":4437, + "componentType":5126, + "count":24629, + "type":"VEC4" + }, + { + "bufferView":4438, + "componentType":5126, + "count":384, + "max":[ + 0.12329089641571045, + 0.12409037351608276, + 0.0448150672018528 + ], + "min":[ + -0.02162754535675049, + -0.12308138608932495, + -0.05420375242829323 + ], + "type":"VEC3" + }, + { + "bufferView":4439, + "componentType":5126, + "count":384, + "type":"VEC3" + }, + { + "bufferView":4440, + "componentType":5126, + "count":384, + "type":"VEC2" + }, + { + "bufferView":4441, + "componentType":5126, + "count":384, + "type":"VEC2" + }, + { + "bufferView":4442, + "componentType":5126, + "count":384, + "type":"VEC4" + }, + { + "bufferView":4443, + "componentType":5126, + "count":1612, + "max":[ + 0.3511878252029419, + 0.7159052491188049, + 0.0025005461648106575 + ], + "min":[ + -0.5741493701934814, + -0.3346409201622009, + -0.578795313835144 + ], + "type":"VEC3" + }, + { + "bufferView":4444, + "componentType":5126, + "count":1612, + "type":"VEC3" + }, + { + "bufferView":4445, + "componentType":5126, + "count":1612, + "type":"VEC2" + }, + { + "bufferView":4446, + "componentType":5126, + "count":1612, + "type":"VEC2" + }, + { + "bufferView":4447, + "componentType":5126, + "count":1612, + "type":"VEC4" + }, + { + "bufferView":4448, + "componentType":5126, + "count":96, + "max":[ + 0.6624182462692261, + -0.7673938274383545, + -0.21725556254386902 + ], + "min":[ + 0.40495526790618896, + -0.7937288880348206, + -0.4548287093639374 + ], + "type":"VEC3" + }, + { + "bufferView":4449, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":4450, + "componentType":5126, + "count":96, + "type":"VEC2" + }, + { + "bufferView":4451, + "componentType":5126, + "count":96, + "type":"VEC2" + }, + { + "bufferView":4452, + "componentType":5126, + "count":96, + "type":"VEC4" + }, + { + "bufferView":4453, + "componentType":5126, + "count":27, + "max":[ + 0.35443544387817383, + -1.373825192451477, + 0.7364819645881653 + ], + "min":[ + -1.1172199249267578, + -1.390655279159546, + -0.1679479479789734 + ], + "type":"VEC3" + }, + { + "bufferView":4454, + "componentType":5126, + "count":27, + "type":"VEC3" + }, + { + "bufferView":4455, + "componentType":5126, + "count":27, + "type":"VEC2" + }, + { + "bufferView":4456, + "componentType":5126, + "count":27, + "type":"VEC2" + }, + { + "bufferView":4457, + "componentType":5126, + "count":27, + "type":"VEC4" + }, + { + "bufferView":4458, + "componentType":5126, + "count":18288, + "max":[ + 0.6261382102966309, + 0.1740582138299942, + 1.1397252082824707 + ], + "min":[ + -1.359527587890625, + -0.9188821315765381, + -0.7777957916259766 + ], + "type":"VEC3" + }, + { + "bufferView":4459, + "componentType":5126, + "count":18288, + "type":"VEC3" + }, + { + "bufferView":4460, + "componentType":5126, + "count":18288, + "type":"VEC2" + }, + { + "bufferView":4461, + "componentType":5126, + "count":18288, + "type":"VEC2" + }, + { + "bufferView":4462, + "componentType":5126, + "count":18288, + "type":"VEC4" + }, + { + "bufferView":4463, + "componentType":5126, + "count":3392, + "max":[ + 1.5114781856536865, + -0.6360680460929871, + 1.4272384643554688 + ], + "min":[ + -0.7214691638946533, + -1.3928455114364624, + -0.517509400844574 + ], + "type":"VEC3" + }, + { + "bufferView":4464, + "componentType":5126, + "count":3392, + "type":"VEC3" + }, + { + "bufferView":4465, + "componentType":5126, + "count":3392, + "type":"VEC2" + }, + { + "bufferView":4466, + "componentType":5126, + "count":3392, + "type":"VEC2" + }, + { + "bufferView":4467, + "componentType":5126, + "count":3392, + "type":"VEC4" + }, + { + "bufferView":4468, + "componentType":5126, + "count":1644, + "max":[ + 0.0037467479705810547, + 0.18036486208438873, + 0.9381940960884094 + ], + "min":[ + -1.0133466720581055, + -1.0084404945373535, + -0.5719382166862488 + ], + "type":"VEC3" + }, + { + "bufferView":4469, + "componentType":5126, + "count":1644, + "type":"VEC3" + }, + { + "bufferView":4470, + "componentType":5126, + "count":1644, + "type":"VEC2" + }, + { + "bufferView":4471, + "componentType":5126, + "count":1644, + "type":"VEC2" + }, + { + "bufferView":4472, + "componentType":5126, + "count":1644, + "type":"VEC4" + }, + { + "bufferView":4473, + "componentType":5126, + "count":1466, + "max":[ + 0.44579625129699707, + 1.3928453922271729, + 0.8259274959564209 + ], + "min":[ + -1.5114784240722656, + -1.2875779867172241, + -1.4272387027740479 + ], + "type":"VEC3" + }, + { + "bufferView":4474, + "componentType":5126, + "count":1466, + "type":"VEC3" + }, + { + "bufferView":4475, + "componentType":5126, + "count":1466, + "type":"VEC2" + }, + { + "bufferView":4476, + "componentType":5126, + "count":1466, + "type":"VEC2" + }, + { + "bufferView":4477, + "componentType":5126, + "count":1466, + "type":"VEC4" + }, + { + "bufferView":4478, + "componentType":5126, + "count":640, + "max":[ + 0.14923405647277832, + -0.9970641732215881, + 0.8365922570228577 + ], + "min":[ + -0.39215409755706787, + -1.0563427209854126, + -0.3109395205974579 + ], + "type":"VEC3" + }, + { + "bufferView":4479, + "componentType":5126, + "count":640, + "type":"VEC3" + }, + { + "bufferView":4480, + "componentType":5126, + "count":640, + "type":"VEC2" + }, + { + "bufferView":4481, + "componentType":5126, + "count":640, + "type":"VEC2" + }, + { + "bufferView":4482, + "componentType":5126, + "count":640, + "type":"VEC4" + }, + { + "bufferView":4483, + "componentType":5126, + "count":4000, + "max":[ + 1.4707229137420654, + -0.5296312570571899, + 1.387791633605957 + ], + "min":[ + -1.2935259342193604, + -1.3913886547088623, + -0.6508868336677551 + ], + "type":"VEC3" + }, + { + "bufferView":4484, + "componentType":5126, + "count":4000, + "type":"VEC3" + }, + { + "bufferView":4485, + "componentType":5126, + "count":4000, + "type":"VEC2" + }, + { + "bufferView":4486, + "componentType":5126, + "count":4000, + "type":"VEC2" + }, + { + "bufferView":4487, + "componentType":5126, + "count":4000, + "type":"VEC4" + }, + { + "bufferView":4488, + "componentType":5126, + "count":428, + "max":[ + -0.011497139930725098, + -0.8265706896781921, + -0.420968621969223 + ], + "min":[ + -0.41714465618133545, + -0.8458201885223389, + -0.4673639237880707 + ], + "type":"VEC3" + }, + { + "bufferView":4489, + "componentType":5126, + "count":428, + "type":"VEC3" + }, + { + "bufferView":4490, + "componentType":5126, + "count":428, + "type":"VEC2" + }, + { + "bufferView":4491, + "componentType":5126, + "count":428, + "type":"VEC2" + }, + { + "bufferView":4492, + "componentType":5126, + "count":428, + "type":"VEC4" + }, + { + "bufferView":4493, + "componentType":5126, + "count":1620, + "max":[ + 0.037378787994384766, + -0.7284743785858154, + 0.006937683559954166 + ], + "min":[ + -0.5694129467010498, + -1.3892300128936768, + -0.4551607072353363 + ], + "type":"VEC3" + }, + { + "bufferView":4494, + "componentType":5126, + "count":1620, + "type":"VEC3" + }, + { + "bufferView":4495, + "componentType":5126, + "count":1620, + "type":"VEC2" + }, + { + "bufferView":4496, + "componentType":5126, + "count":1620, + "type":"VEC2" + }, + { + "bufferView":4497, + "componentType":5126, + "count":1620, + "type":"VEC4" + }, + { + "bufferView":4498, + "componentType":5126, + "count":727, + "max":[ + 0.004698514938354492, + 0.6933574676513672, + 0.4504874646663666 + ], + "min":[ + -1.2692844867706299, + -0.9119458198547363, + -0.4586854875087738 + ], + "type":"VEC3" + }, + { + "bufferView":4499, + "componentType":5126, + "count":727, + "type":"VEC3" + }, + { + "bufferView":4500, + "componentType":5126, + "count":727, + "type":"VEC2" + }, + { + "bufferView":4501, + "componentType":5126, + "count":727, + "type":"VEC2" + }, + { + "bufferView":4502, + "componentType":5126, + "count":727, + "type":"VEC4" + }, + { + "bufferView":4503, + "componentType":5126, + "count":3824, + "max":[ + 1.2692844867706299, + 1.3892300128936768, + 0.4673639237880707 + ], + "min":[ + -1.2665549516677856, + -1.3861899375915527, + -0.09685833752155304 + ], + "type":"VEC3" + }, + { + "bufferView":4504, + "componentType":5126, + "count":3824, + "type":"VEC3" + }, + { + "bufferView":4505, + "componentType":5126, + "count":3824, + "type":"VEC2" + }, + { + "bufferView":4506, + "componentType":5126, + "count":3824, + "type":"VEC2" + }, + { + "bufferView":4507, + "componentType":5126, + "count":3824, + "type":"VEC4" + }, + { + "bufferView":4508, + "componentType":5126, + "count":1192, + "max":[ + -0.0011413097381591797, + -0.7241132259368896, + 0.002949176589027047 + ], + "min":[ + -0.5285921096801758, + -1.3547840118408203, + -0.4536619782447815 + ], + "type":"VEC3" + }, + { + "bufferView":4509, + "componentType":5126, + "count":1192, + "type":"VEC3" + }, + { + "bufferView":4510, + "componentType":5126, + "count":1192, + "type":"VEC2" + }, + { + "bufferView":4511, + "componentType":5126, + "count":1192, + "type":"VEC2" + }, + { + "bufferView":4512, + "componentType":5126, + "count":1192, + "type":"VEC4" + }, + { + "bufferView":4513, + "componentType":5126, + "count":4, + "max":[ + 0.3020937442779541, + -0.13339518010616302, + 0.24895812571048737 + ], + "min":[ + 0.130326509475708, + -0.4012417793273926, + -0.11939751356840134 + ], + "type":"VEC3" + }, + { + "bufferView":4514, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":4515, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":4516, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":4517, + "componentType":5126, + "count":4, + "type":"VEC4" + }, + { + "bufferView":4518, + "componentType":5126, + "count":72, + "max":[ + 0.8257350921630859, + -1.052039384841919, + 0.6115540862083435 + ], + "min":[ + -0.3986802101135254, + -1.5539733171463013, + -0.5913179516792297 + ], + "type":"VEC3" + }, + { + "bufferView":4519, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":4520, + "componentType":5126, + "count":72, + "type":"VEC2" + }, + { + "bufferView":4521, + "componentType":5126, + "count":72, + "type":"VEC2" + }, + { + "bufferView":4522, + "componentType":5126, + "count":72, + "type":"VEC4" + }, + { + "bufferView":4523, + "componentType":5126, + "count":286, + "max":[ + 0.21759295463562012, + -0.7478482723236084, + -0.17754122614860535 + ], + "min":[ + -0.5345180034637451, + -1.0053954124450684, + -0.774782121181488 + ], + "type":"VEC3" + }, + { + "bufferView":4524, + "componentType":5126, + "count":286, + "type":"VEC3" + }, + { + "bufferView":4525, + "componentType":5126, + "count":286, + "type":"VEC2" + }, + { + "bufferView":4526, + "componentType":5126, + "count":286, + "type":"VEC2" + }, + { + "bufferView":4527, + "componentType":5126, + "count":286, + "type":"VEC4" + }, + { + "bufferView":4528, + "componentType":5126, + "count":88, + "max":[ + 0.3092975616455078, + -0.11965285241603851, + 0.2605954706668854 + ], + "min":[ + 0.09031081199645996, + -0.4149138927459717, + -0.1472553014755249 + ], + "type":"VEC3" + }, + { + "bufferView":4529, + "componentType":5126, + "count":88, + "type":"VEC3" + }, + { + "bufferView":4530, + "componentType":5126, + "count":88, + "type":"VEC2" + }, + { + "bufferView":4531, + "componentType":5126, + "count":88, + "type":"VEC2" + }, + { + "bufferView":4532, + "componentType":5126, + "count":88, + "type":"VEC4" + }, + { + "bufferView":4533, + "componentType":5126, + "count":1330, + "max":[ + 0.191542387008667, + 0.33750593662261963, + 0.14405512809753418 + ], + "min":[ + -0.5800135135650635, + -1.5488052368164062, + -0.8127241730690002 + ], + "type":"VEC3" + }, + { + "bufferView":4534, + "componentType":5126, + "count":1330, + "type":"VEC3" + }, + { + "bufferView":4535, + "componentType":5126, + "count":1330, + "type":"VEC2" + }, + { + "bufferView":4536, + "componentType":5126, + "count":1330, + "type":"VEC2" + }, + { + "bufferView":4537, + "componentType":5126, + "count":1330, + "type":"VEC4" + }, + { + "bufferView":4538, + "componentType":5126, + "count":120, + "max":[ + 0.16177654266357422, + -1.3433963060379028, + 0.656441867351532 + ], + "min":[ + -0.1191091537475586, + -1.554706335067749, + 0.36717814207077026 + ], + "type":"VEC3" + }, + { + "bufferView":4539, + "componentType":5126, + "count":120, + "type":"VEC3" + }, + { + "bufferView":4540, + "componentType":5126, + "count":120, + "type":"VEC2" + }, + { + "bufferView":4541, + "componentType":5126, + "count":120, + "type":"VEC2" + }, + { + "bufferView":4542, + "componentType":5126, + "count":120, + "type":"VEC4" + }, + { + "bufferView":4543, + "componentType":5126, + "count":727, + "max":[ + 0.33252525329589844, + 0.03446732461452484, + -0.166562020778656 + ], + "min":[ + -0.5495047569274902, + -1.4832531213760376, + -0.7801247239112854 + ], + "type":"VEC3" + }, + { + "bufferView":4544, + "componentType":5126, + "count":727, + "type":"VEC3" + }, + { + "bufferView":4545, + "componentType":5126, + "count":727, + "type":"VEC2" + }, + { + "bufferView":4546, + "componentType":5126, + "count":727, + "type":"VEC2" + }, + { + "bufferView":4547, + "componentType":5126, + "count":727, + "type":"VEC4" + }, + { + "bufferView":4548, + "componentType":5126, + "count":526, + "max":[ + 0.8889334201812744, + -0.7869110107421875, + 0.605022132396698 + ], + "min":[ + 0.027121543884277344, + -1.5231831073760986, + -0.19428640604019165 + ], + "type":"VEC3" + }, + { + "bufferView":4549, + "componentType":5126, + "count":526, + "type":"VEC3" + }, + { + "bufferView":4550, + "componentType":5126, + "count":526, + "type":"VEC2" + }, + { + "bufferView":4551, + "componentType":5126, + "count":526, + "type":"VEC2" + }, + { + "bufferView":4552, + "componentType":5126, + "count":526, + "type":"VEC4" + }, + { + "bufferView":4553, + "componentType":5126, + "count":760, + "max":[ + 0.30727314949035645, + -0.04042469337582588, + 0.34636396169662476 + ], + "min":[ + -0.5291870832443237, + -1.554706335067749, + -0.4745665192604065 + ], + "type":"VEC3" + }, + { + "bufferView":4554, + "componentType":5126, + "count":760, + "type":"VEC3" + }, + { + "bufferView":4555, + "componentType":5126, + "count":760, + "type":"VEC2" + }, + { + "bufferView":4556, + "componentType":5126, + "count":760, + "type":"VEC2" + }, + { + "bufferView":4557, + "componentType":5126, + "count":760, + "type":"VEC4" + }, + { + "bufferView":4558, + "componentType":5126, + "count":1954, + "max":[ + 0.338789701461792, + 1.5672357082366943, + -0.12719471752643585 + ], + "min":[ + -0.888933539390564, + -1.5590672492980957, + -0.5477636456489563 + ], + "type":"VEC3" + }, + { + "bufferView":4559, + "componentType":5126, + "count":1954, + "type":"VEC3" + }, + { + "bufferView":4560, + "componentType":5126, + "count":1954, + "type":"VEC2" + }, + { + "bufferView":4561, + "componentType":5126, + "count":1954, + "type":"VEC2" + }, + { + "bufferView":4562, + "componentType":5126, + "count":1954, + "type":"VEC4" + }, + { + "bufferView":4563, + "componentType":5126, + "count":5188, + "max":[ + 0.8733539581298828, + 0.31215906143188477, + 0.5995181202888489 + ], + "min":[ + -0.569961667060852, + -1.5536830425262451, + -0.7818177342414856 + ], + "type":"VEC3" + }, + { + "bufferView":4564, + "componentType":5126, + "count":5188, + "type":"VEC3" + }, + { + "bufferView":4565, + "componentType":5126, + "count":5188, + "type":"VEC2" + }, + { + "bufferView":4566, + "componentType":5126, + "count":5188, + "type":"VEC2" + }, + { + "bufferView":4567, + "componentType":5126, + "count":5188, + "type":"VEC4" + }, + { + "bufferView":4568, + "componentType":5126, + "count":204, + "max":[ + 0.3943314552307129, + -1.3024535179138184, + 0.8127242922782898 + ], + "min":[ + -0.01796579360961914, + -1.5672357082366943, + 0.4334713816642761 + ], + "type":"VEC3" + }, + { + "bufferView":4569, + "componentType":5126, + "count":204, + "type":"VEC3" + }, + { + "bufferView":4570, + "componentType":5126, + "count":204, + "type":"VEC2" + }, + { + "bufferView":4571, + "componentType":5126, + "count":204, + "type":"VEC2" + }, + { + "bufferView":4572, + "componentType":5126, + "count":204, + "type":"VEC4" + }, + { + "bufferView":4573, + "componentType":5126, + "count":578, + "max":[ + -0.3732737898826599, + 0.623860776424408, + 0.7468646764755249 + ], + "min":[ + -1.7213859558105469, + -1.5592159032821655, + -0.7759101390838623 + ], + "type":"VEC3" + }, + { + "bufferView":4574, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":4575, + "componentType":5126, + "count":578, + "type":"VEC2" + }, + { + "bufferView":4576, + "componentType":5126, + "count":578, + "type":"VEC2" + }, + { + "bufferView":4577, + "componentType":5126, + "count":578, + "type":"VEC4" + }, + { + "bufferView":4578, + "componentType":5126, + "count":18966, + "max":[ + -0.6859142184257507, + -0.3539898097515106, + 0.6095659732818604 + ], + "min":[ + -1.4543683528900146, + -1.5028575658798218, + 0.25775644183158875 + ], + "type":"VEC3" + }, + { + "bufferView":4579, + "componentType":5126, + "count":18966, + "type":"VEC3" + }, + { + "bufferView":4580, + "componentType":5126, + "count":18966, + "type":"VEC2" + }, + { + "bufferView":4581, + "componentType":5126, + "count":18966, + "type":"VEC2" + }, + { + "bufferView":4582, + "componentType":5126, + "count":18966, + "type":"VEC4" + }, + { + "bufferView":4583, + "componentType":5126, + "count":6110, + "max":[ + -0.6619982719421387, + 0.41196706891059875, + 0.5833552479743958 + ], + "min":[ + -1.0684990882873535, + -1.0164575576782227, + 0.18119986355304718 + ], + "type":"VEC3" + }, + { + "bufferView":4584, + "componentType":5126, + "count":6110, + "type":"VEC3" + }, + { + "bufferView":4585, + "componentType":5126, + "count":6110, + "type":"VEC2" + }, + { + "bufferView":4586, + "componentType":5126, + "count":6110, + "type":"VEC2" + }, + { + "bufferView":4587, + "componentType":5126, + "count":6110, + "type":"VEC4" + }, + { + "bufferView":4588, + "componentType":5126, + "count":214, + "max":[ + -1.656390905380249, + 0.28235113620758057, + 0.3376607298851013 + ], + "min":[ + -1.7012839317321777, + 0.26838719844818115, + 0.32815390825271606 + ], + "type":"VEC3" + }, + { + "bufferView":4589, + "componentType":5126, + "count":214, + "type":"VEC3" + }, + { + "bufferView":4590, + "componentType":5126, + "count":214, + "type":"VEC2" + }, + { + "bufferView":4591, + "componentType":5126, + "count":214, + "type":"VEC2" + }, + { + "bufferView":4592, + "componentType":5126, + "count":214, + "type":"VEC4" + }, + { + "bufferView":4593, + "componentType":5126, + "count":602, + "max":[ + -1.4865243434906006, + 0.32330241799354553, + 0.3906247019767761 + ], + "min":[ + -1.7668347358703613, + -0.13649523258209229, + -0.012347652576863766 + ], + "type":"VEC3" + }, + { + "bufferView":4594, + "componentType":5126, + "count":602, + "type":"VEC3" + }, + { + "bufferView":4595, + "componentType":5126, + "count":602, + "type":"VEC2" + }, + { + "bufferView":4596, + "componentType":5126, + "count":602, + "type":"VEC2" + }, + { + "bufferView":4597, + "componentType":5126, + "count":602, + "type":"VEC4" + }, + { + "bufferView":4598, + "componentType":5126, + "count":3786, + "max":[ + -0.721892774105072, + 0.5405274629592896, + 0.573586106300354 + ], + "min":[ + -1.7506914138793945, + -1.172602891921997, + -0.003755522659048438 + ], + "type":"VEC3" + }, + { + "bufferView":4599, + "componentType":5126, + "count":3786, + "type":"VEC3" + }, + { + "bufferView":4600, + "componentType":5126, + "count":3786, + "type":"VEC2" + }, + { + "bufferView":4601, + "componentType":5126, + "count":3786, + "type":"VEC2" + }, + { + "bufferView":4602, + "componentType":5126, + "count":3786, + "type":"VEC4" + }, + { + "bufferView":4603, + "componentType":5126, + "count":946, + "max":[ + -0.9419168829917908, + 0.31778302788734436, + 0.5576078295707703 + ], + "min":[ + -1.5681471824645996, + -1.5506666898727417, + -0.325270414352417 + ], + "type":"VEC3" + }, + { + "bufferView":4604, + "componentType":5126, + "count":946, + "type":"VEC3" + }, + { + "bufferView":4605, + "componentType":5126, + "count":946, + "type":"VEC2" + }, + { + "bufferView":4606, + "componentType":5126, + "count":946, + "type":"VEC2" + }, + { + "bufferView":4607, + "componentType":5126, + "count":946, + "type":"VEC4" + }, + { + "bufferView":4608, + "componentType":5126, + "count":2174, + "max":[ + -1.268293857574463, + 0.6411887407302856, + 0.7103692889213562 + ], + "min":[ + -1.7060961723327637, + 0.22915494441986084, + -0.017897438257932663 + ], + "type":"VEC3" + }, + { + "bufferView":4609, + "componentType":5126, + "count":2174, + "type":"VEC3" + }, + { + "bufferView":4610, + "componentType":5126, + "count":2174, + "type":"VEC2" + }, + { + "bufferView":4611, + "componentType":5126, + "count":2174, + "type":"VEC2" + }, + { + "bufferView":4612, + "componentType":5126, + "count":2174, + "type":"VEC4" + }, + { + "bufferView":4613, + "componentType":5126, + "count":13226, + "max":[ + -0.7860629558563232, + 1.0185528993606567, + 0.7759101390838623 + ], + "min":[ + -1.4826204776763916, + -1.020264983177185, + 0.19800814986228943 + ], + "type":"VEC3" + }, + { + "bufferView":4614, + "componentType":5126, + "count":13226, + "type":"VEC3" + }, + { + "bufferView":4615, + "componentType":5126, + "count":13226, + "type":"VEC2" + }, + { + "bufferView":4616, + "componentType":5126, + "count":13226, + "type":"VEC2" + }, + { + "bufferView":4617, + "componentType":5126, + "count":13226, + "type":"VEC4" + }, + { + "bufferView":4618, + "componentType":5126, + "count":1936, + "max":[ + 1.7668347358703613, + 1.5599483251571655, + 0.4292619526386261 + ], + "min":[ + -1.3148462772369385, + 0.11959851533174515, + 0.11967507749795914 + ], + "type":"VEC3" + }, + { + "bufferView":4619, + "componentType":5126, + "count":1936, + "type":"VEC3" + }, + { + "bufferView":4620, + "componentType":5126, + "count":1936, + "type":"VEC2" + }, + { + "bufferView":4621, + "componentType":5126, + "count":1936, + "type":"VEC2" + }, + { + "bufferView":4622, + "componentType":5126, + "count":1936, + "type":"VEC4" + }, + { + "bufferView":4623, + "componentType":5126, + "count":3299, + "max":[ + -0.4875231385231018, + 1.0028799772262573, + 0.7718628644943237 + ], + "min":[ + -1.6995368003845215, + -0.7440310716629028, + 0.0834326446056366 + ], + "type":"VEC3" + }, + { + "bufferView":4624, + "componentType":5126, + "count":3299, + "type":"VEC3" + }, + { + "bufferView":4625, + "componentType":5126, + "count":3299, + "type":"VEC2" + }, + { + "bufferView":4626, + "componentType":5126, + "count":3299, + "type":"VEC2" + }, + { + "bufferView":4627, + "componentType":5126, + "count":3299, + "type":"VEC4" + }, + { + "bufferView":4628, + "componentType":5126, + "count":1320, + "max":[ + -0.21579521894454956, + 0.4272672235965729, + 0.5480718612670898 + ], + "min":[ + -1.4553992748260498, + -1.557203769683838, + 0.05833766236901283 + ], + "type":"VEC3" + }, + { + "bufferView":4629, + "componentType":5126, + "count":1320, + "type":"VEC3" + }, + { + "bufferView":4630, + "componentType":5126, + "count":1320, + "type":"VEC2" + }, + { + "bufferView":4631, + "componentType":5126, + "count":1320, + "type":"VEC2" + }, + { + "bufferView":4632, + "componentType":5126, + "count":1320, + "type":"VEC4" + }, + { + "bufferView":4633, + "componentType":5126, + "count":296, + "max":[ + -0.6386333703994751, + 0.4726065695285797, + 0.6564880609512329 + ], + "min":[ + -1.5172743797302246, + -1.5599483251571655, + -0.062335096299648285 + ], + "type":"VEC3" + }, + { + "bufferView":4634, + "componentType":5126, + "count":296, + "type":"VEC3" + }, + { + "bufferView":4635, + "componentType":5126, + "count":296, + "type":"VEC2" + }, + { + "bufferView":4636, + "componentType":5126, + "count":296, + "type":"VEC2" + }, + { + "bufferView":4637, + "componentType":5126, + "count":296, + "type":"VEC4" + }, + { + "bufferView":4638, + "componentType":5126, + "count":940, + "max":[ + 0.6333876252174377, + 1.2918869256973267, + 0.6333876252174377 + ], + "min":[ + -0.6333877444267273, + 1.0702811479568481, + -0.633388340473175 + ], + "type":"VEC3" + }, + { + "bufferView":4639, + "componentType":5126, + "count":940, + "type":"VEC3" + }, + { + "bufferView":4640, + "componentType":5126, + "count":940, + "type":"VEC2" + }, + { + "bufferView":4641, + "componentType":5126, + "count":940, + "type":"VEC2" + }, + { + "bufferView":4642, + "componentType":5126, + "count":940, + "type":"VEC4" + }, + { + "bufferView":4643, + "componentType":5126, + "count":644, + "max":[ + 1.6607956886291504, + 0.9342604279518127, + 1.6609114408493042 + ], + "min":[ + -1.660399317741394, + 0.8815250992774963, + -1.6618022918701172 + ], + "type":"VEC3" + }, + { + "bufferView":4644, + "componentType":5126, + "count":644, + "type":"VEC3" + }, + { + "bufferView":4645, + "componentType":5126, + "count":644, + "type":"VEC2" + }, + { + "bufferView":4646, + "componentType":5126, + "count":644, + "type":"VEC2" + }, + { + "bufferView":4647, + "componentType":5126, + "count":644, + "type":"VEC4" + }, + { + "bufferView":4648, + "componentType":5126, + "count":1520, + "max":[ + 1.6518287658691406, + 1.658157229423523, + 1.6518272161483765 + ], + "min":[ + -1.6518282890319824, + 0.6055172085762024, + -1.6518301963806152 + ], + "type":"VEC3" + }, + { + "bufferView":4649, + "componentType":5126, + "count":1520, + "type":"VEC3" + }, + { + "bufferView":4650, + "componentType":5126, + "count":1520, + "type":"VEC2" + }, + { + "bufferView":4651, + "componentType":5126, + "count":1520, + "type":"VEC2" + }, + { + "bufferView":4652, + "componentType":5126, + "count":1520, + "type":"VEC4" + }, + { + "bufferView":4653, + "componentType":5126, + "count":2598, + "max":[ + 1.6518254280090332, + 1.7229827642440796, + 1.6518243551254272 + ], + "min":[ + -1.651825189590454, + -1.7229827642440796, + -1.6518269777297974 + ], + "type":"VEC3" + }, + { + "bufferView":4654, + "componentType":5126, + "count":2598, + "type":"VEC3" + }, + { + "bufferView":4655, + "componentType":5126, + "count":2598, + "type":"VEC2" + }, + { + "bufferView":4656, + "componentType":5126, + "count":2598, + "type":"VEC2" + }, + { + "bufferView":4657, + "componentType":5126, + "count":2598, + "type":"VEC4" + }, + { + "bufferView":4658, + "componentType":5126, + "count":48, + "max":[ + -0.9576656222343445, + 1.1383317708969116, + -0.9576658606529236 + ], + "min":[ + -1.1640236377716064, + 0.8916035294532776, + -1.164023756980896 + ], + "type":"VEC3" + }, + { + "bufferView":4659, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":4660, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":4661, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":4662, + "componentType":5126, + "count":48, + "type":"VEC4" + }, + { + "bufferView":4663, + "componentType":5126, + "count":682, + "max":[ + 0.14946991205215454, + -1.4255318641662598, + 0.03850394859910011 + ], + "min":[ + 0.12394803762435913, + -1.5002087354660034, + -0.04207056388258934 + ], + "type":"VEC3" + }, + { + "bufferView":4664, + "componentType":5126, + "count":682, + "type":"VEC3" + }, + { + "bufferView":4665, + "componentType":5126, + "count":682, + "type":"VEC2" + }, + { + "bufferView":4666, + "componentType":5126, + "count":682, + "type":"VEC2" + }, + { + "bufferView":4667, + "componentType":5126, + "count":682, + "type":"VEC4" + }, + { + "bufferView":4668, + "componentType":5126, + "count":1751, + "max":[ + 0.6579639315605164, + 1.3085752725601196, + 0.6579639315605164 + ], + "min":[ + -0.6579640507698059, + 1.0332008600234985, + -0.6579646468162537 + ], + "type":"VEC3" + }, + { + "bufferView":4669, + "componentType":5126, + "count":1751, + "type":"VEC3" + }, + { + "bufferView":4670, + "componentType":5126, + "count":1751, + "type":"VEC2" + }, + { + "bufferView":4671, + "componentType":5126, + "count":1751, + "type":"VEC2" + }, + { + "bufferView":4672, + "componentType":5126, + "count":1751, + "type":"VEC4" + }, + { + "bufferView":4673, + "componentType":5126, + "count":4976, + "max":[ + 0.19428813457489014, + 1.0802139043807983, + 0.19428880512714386 + ], + "min":[ + -0.1942884922027588, + -1.4479767084121704, + -0.19428841769695282 + ], + "type":"VEC3" + }, + { + "bufferView":4674, + "componentType":5126, + "count":4976, + "type":"VEC3" + }, + { + "bufferView":4675, + "componentType":5126, + "count":4976, + "type":"VEC2" + }, + { + "bufferView":4676, + "componentType":5126, + "count":4976, + "type":"VEC2" + }, + { + "bufferView":4677, + "componentType":5126, + "count":4976, + "type":"VEC4" + }, + { + "bufferView":4678, + "componentType":5126, + "count":8166, + "max":[ + 1.6735005378723145, + 1.6749612092971802, + 1.673500895500183 + ], + "min":[ + -1.6735005378723145, + -1.6180282831192017, + -1.673500895500183 + ], + "type":"VEC3" + }, + { + "bufferView":4679, + "componentType":5126, + "count":8166, + "type":"VEC3" + }, + { + "bufferView":4680, + "componentType":5126, + "count":8166, + "type":"VEC2" + }, + { + "bufferView":4681, + "componentType":5126, + "count":8166, + "type":"VEC2" + }, + { + "bufferView":4682, + "componentType":5126, + "count":8166, + "type":"VEC4" + }, + { + "bufferView":4683, + "componentType":5126, + "count":121, + "max":[ + 1.115980625152588, + -0.19253166019916534, + 0.5157656669616699 + ], + "min":[ + -1.1803719997406006, + -0.5229061841964722, + -0.44937369227409363 + ], + "type":"VEC3" + }, + { + "bufferView":4684, + "componentType":5126, + "count":121, + "type":"VEC3" + }, + { + "bufferView":4685, + "componentType":5126, + "count":121, + "type":"VEC2" + }, + { + "bufferView":4686, + "componentType":5126, + "count":121, + "type":"VEC2" + }, + { + "bufferView":4687, + "componentType":5126, + "count":121, + "type":"VEC4" + }, + { + "bufferView":4688, + "componentType":5126, + "count":2692, + "max":[ + 0.6863064169883728, + 0.47974321246147156, + 0.25394153594970703 + ], + "min":[ + -1.1882760524749756, + -0.5208933353424072, + -0.45795825123786926 + ], + "type":"VEC3" + }, + { + "bufferView":4689, + "componentType":5126, + "count":2692, + "type":"VEC3" + }, + { + "bufferView":4690, + "componentType":5126, + "count":2692, + "type":"VEC2" + }, + { + "bufferView":4691, + "componentType":5126, + "count":2692, + "type":"VEC2" + }, + { + "bufferView":4692, + "componentType":5126, + "count":2692, + "type":"VEC4" + }, + { + "bufferView":4693, + "componentType":5126, + "count":72, + "max":[ + 0.7424513697624207, + -0.07517924159765244, + 0.2702929973602295 + ], + "min":[ + 0.7330308556556702, + -0.284456729888916, + 0.24783754348754883 + ], + "type":"VEC3" + }, + { + "bufferView":4694, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":4695, + "componentType":5126, + "count":72, + "type":"VEC2" + }, + { + "bufferView":4696, + "componentType":5126, + "count":72, + "type":"VEC2" + }, + { + "bufferView":4697, + "componentType":5126, + "count":72, + "type":"VEC4" + }, + { + "bufferView":4698, + "componentType":5126, + "count":472, + "max":[ + 0.7628865242004395, + -0.005416021682322025, + 0.33214664459228516 + ], + "min":[ + -0.944782018661499, + -0.34355902671813965, + 0.1770801544189453 + ], + "type":"VEC3" + }, + { + "bufferView":4699, + "componentType":5126, + "count":472, + "type":"VEC3" + }, + { + "bufferView":4700, + "componentType":5126, + "count":472, + "type":"VEC2" + }, + { + "bufferView":4701, + "componentType":5126, + "count":472, + "type":"VEC2" + }, + { + "bufferView":4702, + "componentType":5126, + "count":472, + "type":"VEC4" + }, + { + "bufferView":4703, + "componentType":5126, + "count":586, + "max":[ + -1.101935863494873, + -0.16042552888393402, + 0.19235016405582428 + ], + "min":[ + -1.152296543121338, + -0.18111389875411987, + 0.012798793613910675 + ], + "type":"VEC3" + }, + { + "bufferView":4704, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":4705, + "componentType":5126, + "count":586, + "type":"VEC2" + }, + { + "bufferView":4706, + "componentType":5126, + "count":586, + "type":"VEC2" + }, + { + "bufferView":4707, + "componentType":5126, + "count":586, + "type":"VEC4" + }, + { + "bufferView":4708, + "componentType":5126, + "count":292, + "max":[ + 1.1186485290527344, + -0.17895092070102692, + 0.5026586055755615 + ], + "min":[ + 0.7614612579345703, + -0.5236389636993408, + -0.44368672370910645 + ], + "type":"VEC3" + }, + { + "bufferView":4709, + "componentType":5126, + "count":292, + "type":"VEC3" + }, + { + "bufferView":4710, + "componentType":5126, + "count":292, + "type":"VEC2" + }, + { + "bufferView":4711, + "componentType":5126, + "count":292, + "type":"VEC2" + }, + { + "bufferView":4712, + "componentType":5126, + "count":292, + "type":"VEC4" + }, + { + "bufferView":4713, + "componentType":5126, + "count":368, + "max":[ + 0.7496533393859863, + 0.5361683368682861, + 0.31178927421569824 + ], + "min":[ + -1.0496931076049805, + 0.04450703784823418, + -0.5157654285430908 + ], + "type":"VEC3" + }, + { + "bufferView":4714, + "componentType":5126, + "count":368, + "type":"VEC3" + }, + { + "bufferView":4715, + "componentType":5126, + "count":368, + "type":"VEC2" + }, + { + "bufferView":4716, + "componentType":5126, + "count":368, + "type":"VEC2" + }, + { + "bufferView":4717, + "componentType":5126, + "count":368, + "type":"VEC4" + }, + { + "bufferView":4718, + "componentType":5126, + "count":230, + "max":[ + 0.7241726517677307, + 0.3722796142101288, + 0.2957287132740021 + ], + "min":[ + -1.0242111682891846, + -0.5236389636993408, + -0.4940238296985626 + ], + "type":"VEC3" + }, + { + "bufferView":4719, + "componentType":5126, + "count":230, + "type":"VEC3" + }, + { + "bufferView":4720, + "componentType":5126, + "count":230, + "type":"VEC2" + }, + { + "bufferView":4721, + "componentType":5126, + "count":230, + "type":"VEC2" + }, + { + "bufferView":4722, + "componentType":5126, + "count":230, + "type":"VEC4" + }, + { + "bufferView":4723, + "componentType":5126, + "count":4, + "max":[ + 0.06840264797210693, + -0.01617424190044403, + 0.3261423110961914 + ], + "min":[ + -0.9329508543014526, + -0.3358910083770752, + 0.3261420726776123 + ], + "type":"VEC3" + }, + { + "bufferView":4724, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":4725, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":4726, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":4727, + "componentType":5126, + "count":4, + "type":"VEC4" + }, + { + "bufferView":4728, + "componentType":5126, + "count":2034, + "max":[ + 0.7498257160186768, + 0.11185361444950104, + 0.3239161968231201 + ], + "min":[ + -1.050951361656189, + -0.46976378560066223, + -0.5030736923217773 + ], + "type":"VEC3" + }, + { + "bufferView":4729, + "componentType":5126, + "count":2034, + "type":"VEC3" + }, + { + "bufferView":4730, + "componentType":5126, + "count":2034, + "type":"VEC2" + }, + { + "bufferView":4731, + "componentType":5126, + "count":2034, + "type":"VEC2" + }, + { + "bufferView":4732, + "componentType":5126, + "count":2034, + "type":"VEC4" + }, + { + "bufferView":4733, + "componentType":5126, + "count":192, + "max":[ + 1.1882760524749756, + -0.2713860869407654, + 0.4120955765247345 + ], + "min":[ + 0.8869026899337769, + -0.5361683368682861, + 0.11876442283391953 + ], + "type":"VEC3" + }, + { + "bufferView":4734, + "componentType":5126, + "count":192, + "type":"VEC3" + }, + { + "bufferView":4735, + "componentType":5126, + "count":192, + "type":"VEC2" + }, + { + "bufferView":4736, + "componentType":5126, + "count":192, + "type":"VEC2" + }, + { + "bufferView":4737, + "componentType":5126, + "count":192, + "type":"VEC4" + }, + { + "bufferView":4738, + "componentType":5126, + "count":240, + "max":[ + 70.49359893798828, + 0.04551213979721069, + 45.26792907714844 + ], + "min":[ + -11.820381164550781, + -0.029377996921539307, + -79.25382232666016 + ], + "type":"VEC3" + }, + { + "bufferView":4739, + "componentType":5126, + "count":240, + "type":"VEC3" + }, + { + "bufferView":4740, + "componentType":5126, + "count":240, + "type":"VEC2" + }, + { + "bufferView":4741, + "componentType":5126, + "count":240, + "type":"VEC2" + }, + { + "bufferView":4742, + "componentType":5126, + "count":240, + "type":"VEC4" + }, + { + "bufferView":4743, + "componentType":5121, + "count":240, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4744, + "componentType":5123, + "count":240, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4745, + "componentType":5123, + "count":240, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4746, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":4747, + "componentType":5126, + "count":148, + "max":[ + 280.8583068847656, + 8.52346420288086e-06, + 232.95755004882812 + ], + "min":[ + -213.65219116210938, + -0.6001225113868713, + -148.05252075195312 + ], + "type":"VEC3" + }, + { + "bufferView":4748, + "componentType":5126, + "count":148, + "type":"VEC3" + }, + { + "bufferView":4749, + "componentType":5126, + "count":148, + "type":"VEC2" + }, + { + "bufferView":4750, + "componentType":5126, + "count":148, + "type":"VEC2" + }, + { + "bufferView":4751, + "componentType":5126, + "count":148, + "type":"VEC4" + }, + { + "bufferView":4752, + "componentType":5121, + "count":148, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4753, + "componentType":5123, + "count":148, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4754, + "componentType":5123, + "count":148, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4755, + "componentType":5123, + "count":432, + "type":"SCALAR" + }, + { + "bufferView":4756, + "componentType":5126, + "count":40, + "max":[ + 277.55865478515625, + 8.52346420288086e-06, + 229.55038452148438 + ], + "min":[ + -210.3519287109375, + 5.662441253662109e-06, + -144.75234985351562 + ], + "type":"VEC3" + }, + { + "bufferView":4757, + "componentType":5126, + "count":40, + "type":"VEC3" + }, + { + "bufferView":4758, + "componentType":5126, + "count":40, + "type":"VEC2" + }, + { + "bufferView":4759, + "componentType":5126, + "count":40, + "type":"VEC2" + }, + { + "bufferView":4760, + "componentType":5126, + "count":40, + "type":"VEC4" + }, + { + "bufferView":4761, + "componentType":5121, + "count":40, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4762, + "componentType":5123, + "count":40, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4763, + "componentType":5123, + "count":40, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4764, + "componentType":5123, + "count":126, + "type":"SCALAR" + }, + { + "bufferView":4765, + "componentType":5126, + "count":24, + "max":[ + 16.361129760742188, + 0.5000000596046448, + 0.12224102765321732 + ], + "min":[ + -16.361129760742188, + -0.5000000596046448, + -0.12224102765321732 + ], + "type":"VEC3" + }, + { + "bufferView":4766, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":4767, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":4768, + "componentType":5126, + "count":24, + "type":"VEC4" + }, + { + "bufferView":4769, + "componentType":5126, + "count":58, + "max":[ + 6.3015360832214355, + 6.301537036895752, + 3.510394811630249 + ], + "min":[ + -3.1297695636749268, + -6.301537036895752, + -0.3115765154361725 + ], + "type":"VEC3" + }, + { + "bufferView":4770, + "componentType":5126, + "count":58, + "type":"VEC3" + }, + { + "bufferView":4771, + "componentType":5126, + "count":58, + "type":"VEC2" + }, + { + "bufferView":4772, + "componentType":5126, + "count":58, + "type":"VEC4" + }, + { + "bufferView":4773, + "componentType":5123, + "count":90, + "type":"SCALAR" + }, + { + "bufferView":4774, + "componentType":5126, + "count":24, + "max":[ + 0.2244313657283783, + 2.0920462608337402, + 1.0460231304168701 + ], + "min":[ + -0.2244313657283783, + -2.0920462608337402, + -1.0460231304168701 + ], + "type":"VEC3" + }, + { + "bufferView":4775, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":4776, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":4777, + "componentType":5126, + "count":24, + "type":"VEC4" + }, + { + "bufferView":4778, + "componentType":5123, + "count":36, + "type":"SCALAR" + }, + { + "bufferView":4779, + "componentType":5126, + "count":24, + "max":[ + 1, + 1, + 1 + ], + "min":[ + -1, + -1, + -1 + ], + "type":"VEC3" + }, + { + "bufferView":4780, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":4781, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":4782, + "componentType":5126, + "count":24, + "type":"VEC4" + }, + { + "bufferView":4783, + "componentType":5126, + "count":24, + "max":[ + 1, + 1, + 1 + ], + "min":[ + -1, + -1, + -1 + ], + "type":"VEC3" + }, + { + "bufferView":4784, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":4785, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":4786, + "componentType":5126, + "count":24, + "type":"VEC4" + }, + { + "bufferView":4787, + "componentType":5126, + "count":24, + "max":[ + 0.08289436995983124, + 1.7512308359146118, + 0.8756154179573059 + ], + "min":[ + -0.08289436995983124, + -1.7512308359146118, + -0.8756154179573059 + ], + "type":"VEC3" + }, + { + "bufferView":4788, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":4789, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":4790, + "componentType":5126, + "count":24, + "type":"VEC4" + }, + { + "bufferView":4791, + "componentType":5126, + "count":24, + "max":[ + 0.30415651202201843, + 11.006919860839844, + 2.751729726791382 + ], + "min":[ + -0.30415651202201843, + -11.006919860839844, + -2.751729726791382 + ], + "type":"VEC3" + }, + { + "bufferView":4792, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":4793, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":4794, + "componentType":5126, + "count":24, + "type":"VEC4" + }, + { + "bufferView":4795, + "componentType":5126, + "count":24, + "max":[ + 0.08193770051002502, + 2.9651896953582764, + 0.7412973642349243 + ], + "min":[ + -0.08193770051002502, + -2.9651896953582764, + -0.7412973642349243 + ], + "type":"VEC3" + }, + { + "bufferView":4796, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":4797, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":4798, + "componentType":5126, + "count":24, + "type":"VEC4" + }, + { + "bufferView":4799, + "componentType":5126, + "count":24, + "max":[ + 1, + 1, + 1 + ], + "min":[ + -1, + -1, + -1 + ], + "type":"VEC3" + }, + { + "bufferView":4800, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":4801, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":4802, + "componentType":5126, + "count":24, + "type":"VEC4" + }, + { + "bufferView":4803, + "componentType":5126, + "count":24, + "max":[ + 1, + 1, + 1 + ], + "min":[ + -1, + -1, + -1 + ], + "type":"VEC3" + }, + { + "bufferView":4804, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":4805, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":4806, + "componentType":5126, + "count":24, + "type":"VEC4" + }, + { + "bufferView":4807, + "componentType":5126, + "count":3974, + "max":[ + 0.636016845703125, + 13.524002075195312, + 0.5200086832046509 + ], + "min":[ + -0.636016845703125, + -13.524002075195312, + -0.5200076103210449 + ], + "type":"VEC3" + }, + { + "bufferView":4808, + "componentType":5126, + "count":3974, + "type":"VEC3" + }, + { + "bufferView":4809, + "componentType":5126, + "count":3974, + "type":"VEC2" + }, + { + "bufferView":4810, + "componentType":5126, + "count":3974, + "type":"VEC2" + }, + { + "bufferView":4811, + "componentType":5126, + "count":3974, + "type":"VEC4" + }, + { + "bufferView":4812, + "componentType":5123, + "count":10512, + "type":"SCALAR" + }, + { + "bufferView":4813, + "componentType":5126, + "count":2368, + "max":[ + 2.9412689208984375, + 7.689670562744141, + 1.7773128747940063 + ], + "min":[ + -2.9412689208984375, + 6.032757759094238, + -1.777313470840454 + ], + "type":"VEC3" + }, + { + "bufferView":4814, + "componentType":5126, + "count":2368, + "type":"VEC3" + }, + { + "bufferView":4815, + "componentType":5126, + "count":2368, + "type":"VEC2" + }, + { + "bufferView":4816, + "componentType":5126, + "count":2368, + "type":"VEC2" + }, + { + "bufferView":4817, + "componentType":5126, + "count":2368, + "type":"VEC4" + }, + { + "bufferView":4818, + "componentType":5123, + "count":5244, + "type":"SCALAR" + }, + { + "bufferView":4819, + "componentType":5126, + "count":1274, + "max":[ + 2.5941619873046875, + 7.658281326293945, + 1.4621120691299438 + ], + "min":[ + -2.5941925048828125, + -6.269670486450195, + -1.462036371231079 + ], + "type":"VEC3" + }, + { + "bufferView":4820, + "componentType":5126, + "count":1274, + "type":"VEC3" + }, + { + "bufferView":4821, + "componentType":5126, + "count":1274, + "type":"VEC2" + }, + { + "bufferView":4822, + "componentType":5126, + "count":1274, + "type":"VEC2" + }, + { + "bufferView":4823, + "componentType":5126, + "count":1274, + "type":"VEC4" + }, + { + "bufferView":4824, + "componentType":5123, + "count":3954, + "type":"SCALAR" + }, + { + "bufferView":4825, + "componentType":5126, + "count":48, + "max":[ + 2.1273651123046875, + 5.179827690124512, + 1.233764886856079 + ], + "min":[ + -2.1441192626953125, + -7.689670562744141, + -1.2370836734771729 + ], + "type":"VEC3" + }, + { + "bufferView":4826, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":4827, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":4828, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":4829, + "componentType":5126, + "count":48, + "type":"VEC4" + }, + { + "bufferView":4830, + "componentType":5123, + "count":96, + "type":"SCALAR" + }, + { + "bufferView":4831, + "componentType":5126, + "count":1988, + "max":[ + 0.140472412109375, + -21.180755615234375, + 8.957844734191895 + ], + "min":[ + -24.55426025390625, + -26.627059936523438, + -3.030695676803589 + ], + "type":"VEC3" + }, + { + "bufferView":4832, + "componentType":5126, + "count":1988, + "type":"VEC3" + }, + { + "bufferView":4833, + "componentType":5126, + "count":1988, + "type":"VEC2" + }, + { + "bufferView":4834, + "componentType":5126, + "count":1988, + "type":"VEC2" + }, + { + "bufferView":4835, + "componentType":5126, + "count":1988, + "type":"VEC4" + }, + { + "bufferView":4836, + "componentType":5123, + "count":4662, + "type":"SCALAR" + }, + { + "bufferView":4837, + "componentType":5126, + "count":161565, + "max":[ + 20.003814697265625, + 28.271629333496094, + 10.011067390441895 + ], + "min":[ + -23.99822998046875, + -28.92983055114746, + -11.59936809539795 + ], + "type":"VEC3" + }, + { + "bufferView":4838, + "componentType":5126, + "count":161565, + "type":"VEC3" + }, + { + "bufferView":4839, + "componentType":5126, + "count":161565, + "type":"VEC2" + }, + { + "bufferView":4840, + "componentType":5126, + "count":161565, + "type":"VEC2" + }, + { + "bufferView":4841, + "componentType":5126, + "count":161565, + "type":"VEC4" + }, + { + "bufferView":4842, + "componentType":5125, + "count":308352, + "type":"SCALAR" + }, + { + "bufferView":4843, + "componentType":5126, + "count":13440, + "max":[ + 23.519775390625, + 28.08271026611328, + 8.625325202941895 + ], + "min":[ + -21.977447509765625, + -28.8359317779541, + -10.17343521118164 + ], + "type":"VEC3" + }, + { + "bufferView":4844, + "componentType":5126, + "count":13440, + "type":"VEC3" + }, + { + "bufferView":4845, + "componentType":5126, + "count":13440, + "type":"VEC2" + }, + { + "bufferView":4846, + "componentType":5126, + "count":13440, + "type":"VEC2" + }, + { + "bufferView":4847, + "componentType":5126, + "count":13440, + "type":"VEC4" + }, + { + "bufferView":4848, + "componentType":5123, + "count":20484, + "type":"SCALAR" + }, + { + "bufferView":4849, + "componentType":5126, + "count":34334, + "max":[ + -22.430572509765625, + -27.71476936340332, + -5.696238040924072 + ], + "min":[ + -22.9454345703125, + -28.061506271362305, + -7.146921634674072 + ], + "type":"VEC3" + }, + { + "bufferView":4850, + "componentType":5126, + "count":34334, + "type":"VEC3" + }, + { + "bufferView":4851, + "componentType":5126, + "count":34334, + "type":"VEC2" + }, + { + "bufferView":4852, + "componentType":5126, + "count":34334, + "type":"VEC2" + }, + { + "bufferView":4853, + "componentType":5126, + "count":34334, + "type":"VEC4" + }, + { + "bufferView":4854, + "componentType":5123, + "count":51840, + "type":"SCALAR" + }, + { + "bufferView":4855, + "componentType":5126, + "count":9125, + "max":[ + 13.264739990234375, + 27.700660705566406, + -9.946911811828613 + ], + "min":[ + 7.692352294921875, + 25.788516998291016, + -10.235913276672363 + ], + "type":"VEC3" + }, + { + "bufferView":4856, + "componentType":5126, + "count":9125, + "type":"VEC3" + }, + { + "bufferView":4857, + "componentType":5126, + "count":9125, + "type":"VEC2" + }, + { + "bufferView":4858, + "componentType":5126, + "count":9125, + "type":"VEC2" + }, + { + "bufferView":4859, + "componentType":5126, + "count":9125, + "type":"VEC4" + }, + { + "bufferView":4860, + "componentType":5123, + "count":19326, + "type":"SCALAR" + }, + { + "bufferView":4861, + "componentType":5126, + "count":288, + "max":[ + -0.190673828125, + -26.92755126953125, + 8.29625415802002 + ], + "min":[ + -23.112335205078125, + -27.27884864807129, + -2.359034299850464 + ], + "type":"VEC3" + }, + { + "bufferView":4862, + "componentType":5126, + "count":288, + "type":"VEC3" + }, + { + "bufferView":4863, + "componentType":5126, + "count":288, + "type":"VEC2" + }, + { + "bufferView":4864, + "componentType":5126, + "count":288, + "type":"VEC2" + }, + { + "bufferView":4865, + "componentType":5126, + "count":288, + "type":"VEC4" + }, + { + "bufferView":4866, + "componentType":5123, + "count":432, + "type":"SCALAR" + }, + { + "bufferView":4867, + "componentType":5126, + "count":1490, + "max":[ + 24.552947998046875, + 28.929828643798828, + 11.310383796691895 + ], + "min":[ + -4.0390625, + -27.26992416381836, + -10.313434600830078 + ], + "type":"VEC3" + }, + { + "bufferView":4868, + "componentType":5126, + "count":1490, + "type":"VEC3" + }, + { + "bufferView":4869, + "componentType":5126, + "count":1490, + "type":"VEC2" + }, + { + "bufferView":4870, + "componentType":5126, + "count":1490, + "type":"VEC2" + }, + { + "bufferView":4871, + "componentType":5126, + "count":1490, + "type":"VEC4" + }, + { + "bufferView":4872, + "componentType":5123, + "count":3552, + "type":"SCALAR" + }, + { + "bufferView":4873, + "componentType":5126, + "count":22, + "max":[ + 20.5238037109375, + -19.267616271972656, + 10.677693367004395 + ], + "min":[ + 1.43206787109375, + -26.298137664794922, + 6.243748664855957 + ], + "type":"VEC3" + }, + { + "bufferView":4874, + "componentType":5126, + "count":22, + "type":"VEC3" + }, + { + "bufferView":4875, + "componentType":5126, + "count":22, + "type":"VEC2" + }, + { + "bufferView":4876, + "componentType":5126, + "count":22, + "type":"VEC2" + }, + { + "bufferView":4877, + "componentType":5126, + "count":22, + "type":"VEC4" + }, + { + "bufferView":4878, + "componentType":5123, + "count":42, + "type":"SCALAR" + }, + { + "bufferView":4879, + "componentType":5126, + "count":13866, + "max":[ + 4.5777587890625, + 24.956958770751953, + 6.648351192474365 + ], + "min":[ + -23.001007080078125, + -28.278175354003906, + -11.05887222290039 + ], + "type":"VEC3" + }, + { + "bufferView":4880, + "componentType":5126, + "count":13866, + "type":"VEC3" + }, + { + "bufferView":4881, + "componentType":5126, + "count":13866, + "type":"VEC2" + }, + { + "bufferView":4882, + "componentType":5126, + "count":13866, + "type":"VEC2" + }, + { + "bufferView":4883, + "componentType":5126, + "count":13866, + "type":"VEC4" + }, + { + "bufferView":4884, + "componentType":5123, + "count":28596, + "type":"SCALAR" + }, + { + "bufferView":4885, + "componentType":5126, + "count":3239, + "max":[ + -22.14910888671875, + -27.62925910949707, + -5.763590335845947 + ], + "min":[ + -22.855377197265625, + -28.837411880493164, + -7.186609745025635 + ], + "type":"VEC3" + }, + { + "bufferView":4886, + "componentType":5126, + "count":3239, + "type":"VEC3" + }, + { + "bufferView":4887, + "componentType":5126, + "count":3239, + "type":"VEC2" + }, + { + "bufferView":4888, + "componentType":5126, + "count":3239, + "type":"VEC2" + }, + { + "bufferView":4889, + "componentType":5126, + "count":3239, + "type":"VEC4" + }, + { + "bufferView":4890, + "componentType":5123, + "count":7344, + "type":"SCALAR" + }, + { + "bufferView":4891, + "componentType":5126, + "count":89769, + "max":[ + 23.539825439453125, + 28.10271453857422, + 8.64531421661377 + ], + "min":[ + -23.160675048828125, + -28.855932235717773, + -11.435999870300293 + ], + "type":"VEC3" + }, + { + "bufferView":4892, + "componentType":5126, + "count":89769, + "type":"VEC3" + }, + { + "bufferView":4893, + "componentType":5126, + "count":89769, + "type":"VEC2" + }, + { + "bufferView":4894, + "componentType":5126, + "count":89769, + "type":"VEC2" + }, + { + "bufferView":4895, + "componentType":5126, + "count":89769, + "type":"VEC4" + }, + { + "bufferView":4896, + "componentType":5125, + "count":210822, + "type":"SCALAR" + }, + { + "bufferView":4897, + "componentType":5126, + "count":12940, + "max":[ + 20.807403564453125, + 28.575347900390625, + 11.599370002746582 + ], + "min":[ + -24.207183837890625, + -28.92983055114746, + -10.349185943603516 + ], + "type":"VEC3" + }, + { + "bufferView":4898, + "componentType":5126, + "count":12940, + "type":"VEC3" + }, + { + "bufferView":4899, + "componentType":5126, + "count":12940, + "type":"VEC2" + }, + { + "bufferView":4900, + "componentType":5126, + "count":12940, + "type":"VEC2" + }, + { + "bufferView":4901, + "componentType":5126, + "count":12940, + "type":"VEC4" + }, + { + "bufferView":4902, + "componentType":5123, + "count":30426, + "type":"SCALAR" + }, + { + "bufferView":4903, + "componentType":5126, + "count":2871, + "max":[ + 24.55426025390625, + 28.575347900390625, + 9.649724006652832 + ], + "min":[ + -22.7674560546875, + -28.855941772460938, + -10.288966178894043 + ], + "type":"VEC3" + }, + { + "bufferView":4904, + "componentType":5126, + "count":2871, + "type":"VEC3" + }, + { + "bufferView":4905, + "componentType":5126, + "count":2871, + "type":"VEC2" + }, + { + "bufferView":4906, + "componentType":5126, + "count":2871, + "type":"VEC2" + }, + { + "bufferView":4907, + "componentType":5126, + "count":2871, + "type":"VEC4" + }, + { + "bufferView":4908, + "componentType":5123, + "count":8736, + "type":"SCALAR" + }, + { + "bufferView":4909, + "componentType":5126, + "count":6, + "max":[ + -24.003875732421875, + -22.147483825683594, + 4.135899543762207 + ], + "min":[ + -24.003875732421875, + -26.417682647705078, + 2.100316047668457 + ], + "type":"VEC3" + }, + { + "bufferView":4910, + "componentType":5126, + "count":6, + "type":"VEC3" + }, + { + "bufferView":4911, + "componentType":5126, + "count":6, + "type":"VEC2" + }, + { + "bufferView":4912, + "componentType":5126, + "count":6, + "type":"VEC2" + }, + { + "bufferView":4913, + "componentType":5126, + "count":6, + "type":"VEC4" + }, + { + "bufferView":4914, + "componentType":5123, + "count":12, + "type":"SCALAR" + }, + { + "bufferView":4915, + "componentType":5126, + "count":12, + "max":[ + 34.32545471191406, + 0.2698923349380493, + 13.32379150390625 + ], + "min":[ + -34.32548522949219, + 0.26988911628723145, + -13.32379150390625 + ], + "type":"VEC3" + }, + { + "bufferView":4916, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":4917, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":4918, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":4919, + "componentType":5126, + "count":12, + "type":"VEC4" + }, + { + "bufferView":4920, + "componentType":5123, + "count":30, + "type":"SCALAR" + }, + { + "bufferView":4921, + "componentType":5126, + "count":20550, + "max":[ + 33.75578308105469, + 1.0204477310180664, + 13.32379150390625 + ], + "min":[ + -33.94581604003906, + -1.020447015762329, + -12.528839111328125 + ], + "type":"VEC3" + }, + { + "bufferView":4922, + "componentType":5126, + "count":20550, + "type":"VEC3" + }, + { + "bufferView":4923, + "componentType":5126, + "count":20550, + "type":"VEC2" + }, + { + "bufferView":4924, + "componentType":5126, + "count":20550, + "type":"VEC2" + }, + { + "bufferView":4925, + "componentType":5126, + "count":20550, + "type":"VEC4" + }, + { + "bufferView":4926, + "componentType":5123, + "count":57186, + "type":"SCALAR" + }, + { + "bufferView":4927, + "componentType":5126, + "count":36, + "max":[ + 34.32548522949219, + 0.2698678970336914, + 13.32379150390625 + ], + "min":[ + -34.32542419433594, + -1.020447015762329, + -13.32379150390625 + ], + "type":"VEC3" + }, + { + "bufferView":4928, + "componentType":5126, + "count":36, + "type":"VEC3" + }, + { + "bufferView":4929, + "componentType":5126, + "count":36, + "type":"VEC2" + }, + { + "bufferView":4930, + "componentType":5126, + "count":36, + "type":"VEC2" + }, + { + "bufferView":4931, + "componentType":5126, + "count":36, + "type":"VEC4" + }, + { + "bufferView":4932, + "componentType":5123, + "count":66, + "type":"SCALAR" + }, + { + "bufferView":4933, + "componentType":5126, + "count":24, + "max":[ + 1, + 1, + 1 + ], + "min":[ + -1, + -1, + -1 + ], + "type":"VEC3" + }, + { + "bufferView":4934, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":4935, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":4936, + "componentType":5126, + "count":24, + "type":"VEC4" + }, + { + "bufferView":4937, + "componentType":5126, + "count":8, + "max":[ + 15.979467391967773, + -68.32513427734375, + -9.893810272216797 + ], + "min":[ + 14.498250961303711, + -68.60002899169922, + -9.9633150100708 + ], + "type":"VEC3" + }, + { + "bufferView":4938, + "componentType":5126, + "count":8, + "type":"VEC3" + }, + { + "bufferView":4939, + "componentType":5126, + "count":8, + "type":"VEC2" + }, + { + "bufferView":4940, + "componentType":5126, + "count":8, + "type":"VEC2" + }, + { + "bufferView":4941, + "componentType":5126, + "count":8, + "type":"VEC4" + }, + { + "bufferView":4942, + "componentType":5123, + "count":12, + "type":"SCALAR" + }, + { + "bufferView":4943, + "componentType":5126, + "count":24, + "max":[ + 1, + 1, + 1 + ], + "min":[ + -1, + -1, + -1 + ], + "type":"VEC3" + }, + { + "bufferView":4944, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":4945, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":4946, + "componentType":5126, + "count":24, + "type":"VEC4" + }, + { + "bufferView":4947, + "componentType":5123, + "count":36, + "type":"SCALAR" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":288, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":288, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":576, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":768, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":1152, + "target":34963 + }, + { + "buffer":0, + "byteLength":264, + "byteOffset":1224, + "target":34962 + }, + { + "buffer":0, + "byteLength":264, + "byteOffset":1488, + "target":34962 + }, + { + "buffer":0, + "byteLength":176, + "byteOffset":1752, + "target":34962 + }, + { + "buffer":0, + "byteLength":176, + "byteOffset":1928, + "target":34962 + }, + { + "buffer":0, + "byteLength":352, + "byteOffset":2104, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":2456, + "target":34963 + }, + { + "buffer":0, + "byteLength":432, + "byteOffset":2552, + "target":34962 + }, + { + "buffer":0, + "byteLength":432, + "byteOffset":2984, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":3416, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":3704, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":3992, + "target":34962 + }, + { + "buffer":0, + "byteLength":120, + "byteOffset":4568, + "target":34963 + }, + { + "buffer":0, + "byteLength":22584, + "byteOffset":4688, + "target":34962 + }, + { + "buffer":0, + "byteLength":22584, + "byteOffset":27272, + "target":34962 + }, + { + "buffer":0, + "byteLength":15056, + "byteOffset":49856, + "target":34962 + }, + { + "buffer":0, + "byteLength":15056, + "byteOffset":64912, + "target":34962 + }, + { + "buffer":0, + "byteLength":30112, + "byteOffset":79968, + "target":34962 + }, + { + "buffer":0, + "byteLength":14400, + "byteOffset":110080, + "target":34963 + }, + { + "buffer":0, + "byteLength":4848, + "byteOffset":124480, + "target":34962 + }, + { + "buffer":0, + "byteLength":4848, + "byteOffset":129328, + "target":34962 + }, + { + "buffer":0, + "byteLength":3232, + "byteOffset":134176, + "target":34962 + }, + { + "buffer":0, + "byteLength":3232, + "byteOffset":137408, + "target":34962 + }, + { + "buffer":0, + "byteLength":6464, + "byteOffset":140640, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":147104, + "target":34963 + }, + { + "buffer":0, + "byteLength":18828, + "byteOffset":148688, + "target":34962 + }, + { + "buffer":0, + "byteLength":18828, + "byteOffset":167516, + "target":34962 + }, + { + "buffer":0, + "byteLength":12552, + "byteOffset":186344, + "target":34962 + }, + { + "buffer":0, + "byteLength":12552, + "byteOffset":198896, + "target":34962 + }, + { + "buffer":0, + "byteLength":25104, + "byteOffset":211448, + "target":34962 + }, + { + "buffer":0, + "byteLength":10368, + "byteOffset":236552, + "target":34963 + }, + { + "buffer":0, + "byteLength":28920, + "byteOffset":246920, + "target":34962 + }, + { + "buffer":0, + "byteLength":28920, + "byteOffset":275840, + "target":34962 + }, + { + "buffer":0, + "byteLength":19280, + "byteOffset":304760, + "target":34962 + }, + { + "buffer":0, + "byteLength":19280, + "byteOffset":324040, + "target":34962 + }, + { + "buffer":0, + "byteLength":38560, + "byteOffset":343320, + "target":34962 + }, + { + "buffer":0, + "byteLength":23688, + "byteOffset":381880, + "target":34963 + }, + { + "buffer":0, + "byteLength":15540, + "byteOffset":405568, + "target":34962 + }, + { + "buffer":0, + "byteLength":15540, + "byteOffset":421108, + "target":34962 + }, + { + "buffer":0, + "byteLength":10360, + "byteOffset":436648, + "target":34962 + }, + { + "buffer":0, + "byteLength":10360, + "byteOffset":447008, + "target":34962 + }, + { + "buffer":0, + "byteLength":20720, + "byteOffset":457368, + "target":34962 + }, + { + "buffer":0, + "byteLength":8880, + "byteOffset":478088, + "target":34963 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":486968, + "target":34962 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":487376, + "target":34962 + }, + { + "buffer":0, + "byteLength":272, + "byteOffset":487784, + "target":34962 + }, + { + "buffer":0, + "byteLength":272, + "byteOffset":488056, + "target":34962 + }, + { + "buffer":0, + "byteLength":544, + "byteOffset":488328, + "target":34962 + }, + { + "buffer":0, + "byteLength":120, + "byteOffset":488872, + "target":34963 + }, + { + "buffer":0, + "byteLength":2016, + "byteOffset":488992, + "target":34962 + }, + { + "buffer":0, + "byteLength":2016, + "byteOffset":491008, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":493024, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":494368, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":495712, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":498400, + "target":34963 + }, + { + "buffer":0, + "byteLength":6768, + "byteOffset":499360, + "target":34962 + }, + { + "buffer":0, + "byteLength":6768, + "byteOffset":506128, + "target":34962 + }, + { + "buffer":0, + "byteLength":4512, + "byteOffset":512896, + "target":34962 + }, + { + "buffer":0, + "byteLength":4512, + "byteOffset":517408, + "target":34962 + }, + { + "buffer":0, + "byteLength":9024, + "byteOffset":521920, + "target":34962 + }, + { + "buffer":0, + "byteLength":3336, + "byteOffset":530944, + "target":34963 + }, + { + "buffer":0, + "byteLength":11088, + "byteOffset":534280, + "target":34962 + }, + { + "buffer":0, + "byteLength":11088, + "byteOffset":545368, + "target":34962 + }, + { + "buffer":0, + "byteLength":7392, + "byteOffset":556456, + "target":34962 + }, + { + "buffer":0, + "byteLength":7392, + "byteOffset":563848, + "target":34962 + }, + { + "buffer":0, + "byteLength":14784, + "byteOffset":571240, + "target":34962 + }, + { + "buffer":0, + "byteLength":5616, + "byteOffset":586024, + "target":34963 + }, + { + "buffer":0, + "byteLength":22752, + "byteOffset":591640, + "target":34962 + }, + { + "buffer":0, + "byteLength":22752, + "byteOffset":614392, + "target":34962 + }, + { + "buffer":0, + "byteLength":15168, + "byteOffset":637144, + "target":34962 + }, + { + "buffer":0, + "byteLength":15168, + "byteOffset":652312, + "target":34962 + }, + { + "buffer":0, + "byteLength":30336, + "byteOffset":667480, + "target":34962 + }, + { + "buffer":0, + "byteLength":17496, + "byteOffset":697816, + "target":34963 + }, + { + "buffer":0, + "byteLength":37476, + "byteOffset":715312, + "target":34962 + }, + { + "buffer":0, + "byteLength":37476, + "byteOffset":752788, + "target":34962 + }, + { + "buffer":0, + "byteLength":24984, + "byteOffset":790264, + "target":34962 + }, + { + "buffer":0, + "byteLength":24984, + "byteOffset":815248, + "target":34962 + }, + { + "buffer":0, + "byteLength":49968, + "byteOffset":840232, + "target":34962 + }, + { + "buffer":0, + "byteLength":25272, + "byteOffset":890200, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":915472, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":915760, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":916048, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":916240, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":916432, + "target":34962 + }, + { + "buffer":0, + "byteLength":120, + "byteOffset":916816, + "target":34963 + }, + { + "buffer":0, + "byteLength":14244, + "byteOffset":916936, + "target":34962 + }, + { + "buffer":0, + "byteLength":14244, + "byteOffset":931180, + "target":34962 + }, + { + "buffer":0, + "byteLength":9496, + "byteOffset":945424, + "target":34962 + }, + { + "buffer":0, + "byteLength":9496, + "byteOffset":954920, + "target":34962 + }, + { + "buffer":0, + "byteLength":18992, + "byteOffset":964416, + "target":34962 + }, + { + "buffer":0, + "byteLength":9600, + "byteOffset":983408, + "target":34963 + }, + { + "buffer":0, + "byteLength":22656, + "byteOffset":993008, + "target":34962 + }, + { + "buffer":0, + "byteLength":22656, + "byteOffset":1015664, + "target":34962 + }, + { + "buffer":0, + "byteLength":15104, + "byteOffset":1038320, + "target":34962 + }, + { + "buffer":0, + "byteLength":15104, + "byteOffset":1053424, + "target":34962 + }, + { + "buffer":0, + "byteLength":30208, + "byteOffset":1068528, + "target":34962 + }, + { + "buffer":0, + "byteLength":6000, + "byteOffset":1098736, + "target":34963 + }, + { + "buffer":0, + "byteLength":11520, + "byteOffset":1104736, + "target":34962 + }, + { + "buffer":0, + "byteLength":11520, + "byteOffset":1116256, + "target":34962 + }, + { + "buffer":0, + "byteLength":7680, + "byteOffset":1127776, + "target":34962 + }, + { + "buffer":0, + "byteLength":7680, + "byteOffset":1135456, + "target":34962 + }, + { + "buffer":0, + "byteLength":15360, + "byteOffset":1143136, + "target":34962 + }, + { + "buffer":0, + "byteLength":2880, + "byteOffset":1158496, + "target":34963 + }, + { + "buffer":0, + "byteLength":3744, + "byteOffset":1161376, + "target":34962 + }, + { + "buffer":0, + "byteLength":3744, + "byteOffset":1165120, + "target":34962 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":1168864, + "target":34962 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":1171360, + "target":34962 + }, + { + "buffer":0, + "byteLength":4992, + "byteOffset":1173856, + "target":34962 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":1178848, + "target":34963 + }, + { + "buffer":0, + "byteLength":30576, + "byteOffset":1181344, + "target":34962 + }, + { + "buffer":0, + "byteLength":30576, + "byteOffset":1211920, + "target":34962 + }, + { + "buffer":0, + "byteLength":20384, + "byteOffset":1242496, + "target":34962 + }, + { + "buffer":0, + "byteLength":20384, + "byteOffset":1262880, + "target":34962 + }, + { + "buffer":0, + "byteLength":40768, + "byteOffset":1283264, + "target":34962 + }, + { + "buffer":0, + "byteLength":21000, + "byteOffset":1324032, + "target":34963 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":1345032, + "target":34962 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":1349112, + "target":34962 + }, + { + "buffer":0, + "byteLength":2720, + "byteOffset":1353192, + "target":34962 + }, + { + "buffer":0, + "byteLength":2720, + "byteOffset":1355912, + "target":34962 + }, + { + "buffer":0, + "byteLength":5440, + "byteOffset":1358632, + "target":34962 + }, + { + "buffer":0, + "byteLength":3432, + "byteOffset":1364072, + "target":34963 + }, + { + "buffer":0, + "byteLength":30024, + "byteOffset":1367504, + "target":34962 + }, + { + "buffer":0, + "byteLength":30024, + "byteOffset":1397528, + "target":34962 + }, + { + "buffer":0, + "byteLength":20016, + "byteOffset":1427552, + "target":34962 + }, + { + "buffer":0, + "byteLength":20016, + "byteOffset":1447568, + "target":34962 + }, + { + "buffer":0, + "byteLength":40032, + "byteOffset":1467584, + "target":34962 + }, + { + "buffer":0, + "byteLength":15504, + "byteOffset":1507616, + "target":34963 + }, + { + "buffer":0, + "byteLength":4200, + "byteOffset":1523120, + "target":34962 + }, + { + "buffer":0, + "byteLength":4200, + "byteOffset":1527320, + "target":34962 + }, + { + "buffer":0, + "byteLength":2800, + "byteOffset":1531520, + "target":34962 + }, + { + "buffer":0, + "byteLength":2800, + "byteOffset":1534320, + "target":34962 + }, + { + "buffer":0, + "byteLength":5600, + "byteOffset":1537120, + "target":34962 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":1542720, + "target":34963 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":1545216, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":1546368, + "target":34962 + }, + { + "buffer":0, + "byteLength":768, + "byteOffset":1547520, + "target":34962 + }, + { + "buffer":0, + "byteLength":768, + "byteOffset":1548288, + "target":34962 + }, + { + "buffer":0, + "byteLength":1536, + "byteOffset":1549056, + "target":34962 + }, + { + "buffer":0, + "byteLength":312, + "byteOffset":1550592, + "target":34963 + }, + { + "buffer":0, + "byteLength":10164, + "byteOffset":1550904, + "target":34962 + }, + { + "buffer":0, + "byteLength":10164, + "byteOffset":1561068, + "target":34962 + }, + { + "buffer":0, + "byteLength":6776, + "byteOffset":1571232, + "target":34962 + }, + { + "buffer":0, + "byteLength":6776, + "byteOffset":1578008, + "target":34962 + }, + { + "buffer":0, + "byteLength":13552, + "byteOffset":1584784, + "target":34962 + }, + { + "buffer":0, + "byteLength":8256, + "byteOffset":1598336, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":1606592, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":1606640, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":1606688, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":1606720, + "target":34962 + }, + { + "buffer":0, + "byteLength":64, + "byteOffset":1606752, + "target":34962 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":1606816, + "target":34963 + }, + { + "buffer":0, + "byteLength":6312, + "byteOffset":1606828, + "target":34962 + }, + { + "buffer":0, + "byteLength":6312, + "byteOffset":1613140, + "target":34962 + }, + { + "buffer":0, + "byteLength":4208, + "byteOffset":1619452, + "target":34962 + }, + { + "buffer":0, + "byteLength":4208, + "byteOffset":1623660, + "target":34962 + }, + { + "buffer":0, + "byteLength":8416, + "byteOffset":1627868, + "target":34962 + }, + { + "buffer":0, + "byteLength":3360, + "byteOffset":1636284, + "target":34963 + }, + { + "buffer":0, + "byteLength":4140, + "byteOffset":1639644, + "target":34962 + }, + { + "buffer":0, + "byteLength":4140, + "byteOffset":1643784, + "target":34962 + }, + { + "buffer":0, + "byteLength":2760, + "byteOffset":1647924, + "target":34962 + }, + { + "buffer":0, + "byteLength":2760, + "byteOffset":1650684, + "target":34962 + }, + { + "buffer":0, + "byteLength":5520, + "byteOffset":1653444, + "target":34962 + }, + { + "buffer":0, + "byteLength":3840, + "byteOffset":1658964, + "target":34963 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":1662804, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":1662900, + "target":34962 + }, + { + "buffer":0, + "byteLength":64, + "byteOffset":1662996, + "target":34962 + }, + { + "buffer":0, + "byteLength":64, + "byteOffset":1663060, + "target":34962 + }, + { + "buffer":0, + "byteLength":128, + "byteOffset":1663124, + "target":34962 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":1663252, + "target":34963 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":1663276, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":1663756, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":1664236, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":1664556, + "target":34962 + }, + { + "buffer":0, + "byteLength":640, + "byteOffset":1664876, + "target":34962 + }, + { + "buffer":0, + "byteLength":120, + "byteOffset":1665516, + "target":34963 + }, + { + "buffer":0, + "byteLength":5196, + "byteOffset":1665636, + "target":34962 + }, + { + "buffer":0, + "byteLength":5196, + "byteOffset":1670832, + "target":34962 + }, + { + "buffer":0, + "byteLength":3464, + "byteOffset":1676028, + "target":34962 + }, + { + "buffer":0, + "byteLength":3464, + "byteOffset":1679492, + "target":34962 + }, + { + "buffer":0, + "byteLength":6928, + "byteOffset":1682956, + "target":34962 + }, + { + "buffer":0, + "byteLength":3120, + "byteOffset":1689884, + "target":34963 + }, + { + "buffer":0, + "byteLength":7824, + "byteOffset":1693004, + "target":34962 + }, + { + "buffer":0, + "byteLength":7824, + "byteOffset":1700828, + "target":34962 + }, + { + "buffer":0, + "byteLength":5216, + "byteOffset":1708652, + "target":34962 + }, + { + "buffer":0, + "byteLength":5216, + "byteOffset":1713868, + "target":34962 + }, + { + "buffer":0, + "byteLength":10432, + "byteOffset":1719084, + "target":34962 + }, + { + "buffer":0, + "byteLength":4320, + "byteOffset":1729516, + "target":34963 + }, + { + "buffer":0, + "byteLength":11856, + "byteOffset":1733836, + "target":34962 + }, + { + "buffer":0, + "byteLength":11856, + "byteOffset":1745692, + "target":34962 + }, + { + "buffer":0, + "byteLength":7904, + "byteOffset":1757548, + "target":34962 + }, + { + "buffer":0, + "byteLength":7904, + "byteOffset":1765452, + "target":34962 + }, + { + "buffer":0, + "byteLength":15808, + "byteOffset":1773356, + "target":34962 + }, + { + "buffer":0, + "byteLength":4800, + "byteOffset":1789164, + "target":34963 + }, + { + "buffer":0, + "byteLength":13992, + "byteOffset":1793964, + "target":34962 + }, + { + "buffer":0, + "byteLength":13992, + "byteOffset":1807956, + "target":34962 + }, + { + "buffer":0, + "byteLength":9328, + "byteOffset":1821948, + "target":34962 + }, + { + "buffer":0, + "byteLength":9328, + "byteOffset":1831276, + "target":34962 + }, + { + "buffer":0, + "byteLength":18656, + "byteOffset":1840604, + "target":34962 + }, + { + "buffer":0, + "byteLength":10536, + "byteOffset":1859260, + "target":34963 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":1869796, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":1869940, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":1870084, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":1870180, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":1870276, + "target":34962 + }, + { + "buffer":0, + "byteLength":36, + "byteOffset":1870468, + "target":34963 + }, + { + "buffer":0, + "byteLength":29040, + "byteOffset":1870504, + "target":34962 + }, + { + "buffer":0, + "byteLength":29040, + "byteOffset":1899544, + "target":34962 + }, + { + "buffer":0, + "byteLength":19360, + "byteOffset":1928584, + "target":34962 + }, + { + "buffer":0, + "byteLength":19360, + "byteOffset":1947944, + "target":34962 + }, + { + "buffer":0, + "byteLength":38720, + "byteOffset":1967304, + "target":34962 + }, + { + "buffer":0, + "byteLength":16776, + "byteOffset":2006024, + "target":34963 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":2022800, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":2022968, + "target":34962 + }, + { + "buffer":0, + "byteLength":112, + "byteOffset":2023136, + "target":34962 + }, + { + "buffer":0, + "byteLength":112, + "byteOffset":2023248, + "target":34962 + }, + { + "buffer":0, + "byteLength":224, + "byteOffset":2023360, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":2023584, + "target":34963 + }, + { + "buffer":0, + "byteLength":33972, + "byteOffset":2023656, + "target":34962 + }, + { + "buffer":0, + "byteLength":33972, + "byteOffset":2057628, + "target":34962 + }, + { + "buffer":0, + "byteLength":22648, + "byteOffset":2091600, + "target":34962 + }, + { + "buffer":0, + "byteLength":22648, + "byteOffset":2114248, + "target":34962 + }, + { + "buffer":0, + "byteLength":45296, + "byteOffset":2136896, + "target":34962 + }, + { + "buffer":0, + "byteLength":17760, + "byteOffset":2182192, + "target":34963 + }, + { + "buffer":0, + "byteLength":24192, + "byteOffset":2199952, + "target":34962 + }, + { + "buffer":0, + "byteLength":24192, + "byteOffset":2224144, + "target":34962 + }, + { + "buffer":0, + "byteLength":16128, + "byteOffset":2248336, + "target":34962 + }, + { + "buffer":0, + "byteLength":16128, + "byteOffset":2264464, + "target":34962 + }, + { + "buffer":0, + "byteLength":32256, + "byteOffset":2280592, + "target":34962 + }, + { + "buffer":0, + "byteLength":6720, + "byteOffset":2312848, + "target":34963 + }, + { + "buffer":0, + "byteLength":7020, + "byteOffset":2319568, + "target":34962 + }, + { + "buffer":0, + "byteLength":7020, + "byteOffset":2326588, + "target":34962 + }, + { + "buffer":0, + "byteLength":4680, + "byteOffset":2333608, + "target":34962 + }, + { + "buffer":0, + "byteLength":4680, + "byteOffset":2338288, + "target":34962 + }, + { + "buffer":0, + "byteLength":9360, + "byteOffset":2342968, + "target":34962 + }, + { + "buffer":0, + "byteLength":3060, + "byteOffset":2352328, + "target":34963 + }, + { + "buffer":0, + "byteLength":383892, + "byteOffset":2355388, + "target":34962 + }, + { + "buffer":0, + "byteLength":383892, + "byteOffset":2739280, + "target":34962 + }, + { + "buffer":0, + "byteLength":255928, + "byteOffset":3123172, + "target":34962 + }, + { + "buffer":0, + "byteLength":255928, + "byteOffset":3379100, + "target":34962 + }, + { + "buffer":0, + "byteLength":511856, + "byteOffset":3635028, + "target":34962 + }, + { + "buffer":0, + "byteLength":274284, + "byteOffset":4146884, + "target":34963 + }, + { + "buffer":0, + "byteLength":44304, + "byteOffset":4421168, + "target":34962 + }, + { + "buffer":0, + "byteLength":44304, + "byteOffset":4465472, + "target":34962 + }, + { + "buffer":0, + "byteLength":29536, + "byteOffset":4509776, + "target":34962 + }, + { + "buffer":0, + "byteLength":29536, + "byteOffset":4539312, + "target":34962 + }, + { + "buffer":0, + "byteLength":59072, + "byteOffset":4568848, + "target":34962 + }, + { + "buffer":0, + "byteLength":27456, + "byteOffset":4627920, + "target":34963 + }, + { + "buffer":0, + "byteLength":2352, + "byteOffset":4655376, + "target":34962 + }, + { + "buffer":0, + "byteLength":2352, + "byteOffset":4657728, + "target":34962 + }, + { + "buffer":0, + "byteLength":1568, + "byteOffset":4660080, + "target":34962 + }, + { + "buffer":0, + "byteLength":1568, + "byteOffset":4661648, + "target":34962 + }, + { + "buffer":0, + "byteLength":3136, + "byteOffset":4663216, + "target":34962 + }, + { + "buffer":0, + "byteLength":840, + "byteOffset":4666352, + "target":34963 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":4667192, + "target":34962 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":4667528, + "target":34962 + }, + { + "buffer":0, + "byteLength":224, + "byteOffset":4667864, + "target":34962 + }, + { + "buffer":0, + "byteLength":224, + "byteOffset":4668088, + "target":34962 + }, + { + "buffer":0, + "byteLength":448, + "byteOffset":4668312, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":4668760, + "target":34963 + }, + { + "buffer":0, + "byteLength":11784, + "byteOffset":4668904, + "target":34962 + }, + { + "buffer":0, + "byteLength":11784, + "byteOffset":4680688, + "target":34962 + }, + { + "buffer":0, + "byteLength":7856, + "byteOffset":4692472, + "target":34962 + }, + { + "buffer":0, + "byteLength":7856, + "byteOffset":4700328, + "target":34962 + }, + { + "buffer":0, + "byteLength":15712, + "byteOffset":4708184, + "target":34962 + }, + { + "buffer":0, + "byteLength":8640, + "byteOffset":4723896, + "target":34963 + }, + { + "buffer":0, + "byteLength":4344, + "byteOffset":4732536, + "target":34962 + }, + { + "buffer":0, + "byteLength":4344, + "byteOffset":4736880, + "target":34962 + }, + { + "buffer":0, + "byteLength":2896, + "byteOffset":4741224, + "target":34962 + }, + { + "buffer":0, + "byteLength":2896, + "byteOffset":4744120, + "target":34962 + }, + { + "buffer":0, + "byteLength":5792, + "byteOffset":4747016, + "target":34962 + }, + { + "buffer":0, + "byteLength":1872, + "byteOffset":4752808, + "target":34963 + }, + { + "buffer":0, + "byteLength":2616, + "byteOffset":4754680, + "target":34962 + }, + { + "buffer":0, + "byteLength":2616, + "byteOffset":4757296, + "target":34962 + }, + { + "buffer":0, + "byteLength":1744, + "byteOffset":4759912, + "target":34962 + }, + { + "buffer":0, + "byteLength":1744, + "byteOffset":4761656, + "target":34962 + }, + { + "buffer":0, + "byteLength":3488, + "byteOffset":4763400, + "target":34962 + }, + { + "buffer":0, + "byteLength":1512, + "byteOffset":4766888, + "target":34963 + }, + { + "buffer":0, + "byteLength":10392, + "byteOffset":4768400, + "target":34962 + }, + { + "buffer":0, + "byteLength":10392, + "byteOffset":4778792, + "target":34962 + }, + { + "buffer":0, + "byteLength":6928, + "byteOffset":4789184, + "target":34962 + }, + { + "buffer":0, + "byteLength":6928, + "byteOffset":4796112, + "target":34962 + }, + { + "buffer":0, + "byteLength":13856, + "byteOffset":4803040, + "target":34962 + }, + { + "buffer":0, + "byteLength":4284, + "byteOffset":4816896, + "target":34963 + }, + { + "buffer":0, + "byteLength":536280, + "byteOffset":4821180, + "target":34962 + }, + { + "buffer":0, + "byteLength":536280, + "byteOffset":5357460, + "target":34962 + }, + { + "buffer":0, + "byteLength":357520, + "byteOffset":5893740, + "target":34962 + }, + { + "buffer":0, + "byteLength":357520, + "byteOffset":6251260, + "target":34962 + }, + { + "buffer":0, + "byteLength":715040, + "byteOffset":6608780, + "target":34962 + }, + { + "buffer":0, + "byteLength":389256, + "byteOffset":7323820, + "target":34963 + }, + { + "buffer":0, + "byteLength":3456, + "byteOffset":7713076, + "target":34962 + }, + { + "buffer":0, + "byteLength":3456, + "byteOffset":7716532, + "target":34962 + }, + { + "buffer":0, + "byteLength":2304, + "byteOffset":7719988, + "target":34962 + }, + { + "buffer":0, + "byteLength":2304, + "byteOffset":7722292, + "target":34962 + }, + { + "buffer":0, + "byteLength":4608, + "byteOffset":7724596, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":7729204, + "target":34963 + }, + { + "buffer":0, + "byteLength":10212, + "byteOffset":7730164, + "target":34962 + }, + { + "buffer":0, + "byteLength":10212, + "byteOffset":7740376, + "target":34962 + }, + { + "buffer":0, + "byteLength":6808, + "byteOffset":7750588, + "target":34962 + }, + { + "buffer":0, + "byteLength":6808, + "byteOffset":7757396, + "target":34962 + }, + { + "buffer":0, + "byteLength":13616, + "byteOffset":7764204, + "target":34962 + }, + { + "buffer":0, + "byteLength":5136, + "byteOffset":7777820, + "target":34963 + }, + { + "buffer":0, + "byteLength":7356, + "byteOffset":7782956, + "target":34962 + }, + { + "buffer":0, + "byteLength":7356, + "byteOffset":7790312, + "target":34962 + }, + { + "buffer":0, + "byteLength":4904, + "byteOffset":7797668, + "target":34962 + }, + { + "buffer":0, + "byteLength":4904, + "byteOffset":7802572, + "target":34962 + }, + { + "buffer":0, + "byteLength":9808, + "byteOffset":7807476, + "target":34962 + }, + { + "buffer":0, + "byteLength":5184, + "byteOffset":7817284, + "target":34963 + }, + { + "buffer":0, + "byteLength":40908, + "byteOffset":7822468, + "target":34962 + }, + { + "buffer":0, + "byteLength":40908, + "byteOffset":7863376, + "target":34962 + }, + { + "buffer":0, + "byteLength":27272, + "byteOffset":7904284, + "target":34962 + }, + { + "buffer":0, + "byteLength":27272, + "byteOffset":7931556, + "target":34962 + }, + { + "buffer":0, + "byteLength":54544, + "byteOffset":7958828, + "target":34962 + }, + { + "buffer":0, + "byteLength":20832, + "byteOffset":8013372, + "target":34963 + }, + { + "buffer":0, + "byteLength":51444, + "byteOffset":8034204, + "target":34962 + }, + { + "buffer":0, + "byteLength":51444, + "byteOffset":8085648, + "target":34962 + }, + { + "buffer":0, + "byteLength":34296, + "byteOffset":8137092, + "target":34962 + }, + { + "buffer":0, + "byteLength":34296, + "byteOffset":8171388, + "target":34962 + }, + { + "buffer":0, + "byteLength":68592, + "byteOffset":8205684, + "target":34962 + }, + { + "buffer":0, + "byteLength":19944, + "byteOffset":8274276, + "target":34963 + }, + { + "buffer":0, + "byteLength":2640, + "byteOffset":8294220, + "target":34962 + }, + { + "buffer":0, + "byteLength":2640, + "byteOffset":8296860, + "target":34962 + }, + { + "buffer":0, + "byteLength":1760, + "byteOffset":8299500, + "target":34962 + }, + { + "buffer":0, + "byteLength":1760, + "byteOffset":8301260, + "target":34962 + }, + { + "buffer":0, + "byteLength":3520, + "byteOffset":8303020, + "target":34962 + }, + { + "buffer":0, + "byteLength":2208, + "byteOffset":8306540, + "target":34963 + }, + { + "buffer":0, + "byteLength":59880, + "byteOffset":8308748, + "target":34962 + }, + { + "buffer":0, + "byteLength":59880, + "byteOffset":8368628, + "target":34962 + }, + { + "buffer":0, + "byteLength":39920, + "byteOffset":8428508, + "target":34962 + }, + { + "buffer":0, + "byteLength":39920, + "byteOffset":8468428, + "target":34962 + }, + { + "buffer":0, + "byteLength":79840, + "byteOffset":8508348, + "target":34962 + }, + { + "buffer":0, + "byteLength":26712, + "byteOffset":8588188, + "target":34963 + }, + { + "buffer":0, + "byteLength":31668, + "byteOffset":8614900, + "target":34962 + }, + { + "buffer":0, + "byteLength":31668, + "byteOffset":8646568, + "target":34962 + }, + { + "buffer":0, + "byteLength":21112, + "byteOffset":8678236, + "target":34962 + }, + { + "buffer":0, + "byteLength":21112, + "byteOffset":8699348, + "target":34962 + }, + { + "buffer":0, + "byteLength":42224, + "byteOffset":8720460, + "target":34962 + }, + { + "buffer":0, + "byteLength":12204, + "byteOffset":8762684, + "target":34963 + }, + { + "buffer":0, + "byteLength":54660, + "byteOffset":8774888, + "target":34962 + }, + { + "buffer":0, + "byteLength":54660, + "byteOffset":8829548, + "target":34962 + }, + { + "buffer":0, + "byteLength":36440, + "byteOffset":8884208, + "target":34962 + }, + { + "buffer":0, + "byteLength":36440, + "byteOffset":8920648, + "target":34962 + }, + { + "buffer":0, + "byteLength":72880, + "byteOffset":8957088, + "target":34962 + }, + { + "buffer":0, + "byteLength":34320, + "byteOffset":9029968, + "target":34963 + }, + { + "buffer":0, + "byteLength":73320, + "byteOffset":9064288, + "target":34962 + }, + { + "buffer":0, + "byteLength":73320, + "byteOffset":9137608, + "target":34962 + }, + { + "buffer":0, + "byteLength":48880, + "byteOffset":9210928, + "target":34962 + }, + { + "buffer":0, + "byteLength":48880, + "byteOffset":9259808, + "target":34962 + }, + { + "buffer":0, + "byteLength":97760, + "byteOffset":9308688, + "target":34962 + }, + { + "buffer":0, + "byteLength":43272, + "byteOffset":9406448, + "target":34963 + }, + { + "buffer":0, + "byteLength":51024, + "byteOffset":9449720, + "target":34962 + }, + { + "buffer":0, + "byteLength":51024, + "byteOffset":9500744, + "target":34962 + }, + { + "buffer":0, + "byteLength":34016, + "byteOffset":9551768, + "target":34962 + }, + { + "buffer":0, + "byteLength":34016, + "byteOffset":9585784, + "target":34962 + }, + { + "buffer":0, + "byteLength":68032, + "byteOffset":9619800, + "target":34962 + }, + { + "buffer":0, + "byteLength":29568, + "byteOffset":9687832, + "target":34963 + }, + { + "buffer":0, + "byteLength":45084, + "byteOffset":9717400, + "target":34962 + }, + { + "buffer":0, + "byteLength":45084, + "byteOffset":9762484, + "target":34962 + }, + { + "buffer":0, + "byteLength":30056, + "byteOffset":9807568, + "target":34962 + }, + { + "buffer":0, + "byteLength":30056, + "byteOffset":9837624, + "target":34962 + }, + { + "buffer":0, + "byteLength":60112, + "byteOffset":9867680, + "target":34962 + }, + { + "buffer":0, + "byteLength":13056, + "byteOffset":9927792, + "target":34963 + }, + { + "buffer":0, + "byteLength":70464, + "byteOffset":9940848, + "target":34962 + }, + { + "buffer":0, + "byteLength":70464, + "byteOffset":10011312, + "target":34962 + }, + { + "buffer":0, + "byteLength":46976, + "byteOffset":10081776, + "target":34962 + }, + { + "buffer":0, + "byteLength":46976, + "byteOffset":10128752, + "target":34962 + }, + { + "buffer":0, + "byteLength":93952, + "byteOffset":10175728, + "target":34962 + }, + { + "buffer":0, + "byteLength":34944, + "byteOffset":10269680, + "target":34963 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":10304624, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":10306064, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":10307504, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":10308464, + "target":34962 + }, + { + "buffer":0, + "byteLength":1920, + "byteOffset":10309424, + "target":34962 + }, + { + "buffer":0, + "byteLength":636, + "byteOffset":10311344, + "target":34963 + }, + { + "buffer":0, + "byteLength":23424, + "byteOffset":10311980, + "target":34962 + }, + { + "buffer":0, + "byteLength":23424, + "byteOffset":10335404, + "target":34962 + }, + { + "buffer":0, + "byteLength":15616, + "byteOffset":10358828, + "target":34962 + }, + { + "buffer":0, + "byteLength":15616, + "byteOffset":10374444, + "target":34962 + }, + { + "buffer":0, + "byteLength":31232, + "byteOffset":10390060, + "target":34962 + }, + { + "buffer":0, + "byteLength":10560, + "byteOffset":10421292, + "target":34963 + }, + { + "buffer":0, + "byteLength":39444, + "byteOffset":10431852, + "target":34962 + }, + { + "buffer":0, + "byteLength":39444, + "byteOffset":10471296, + "target":34962 + }, + { + "buffer":0, + "byteLength":26296, + "byteOffset":10510740, + "target":34962 + }, + { + "buffer":0, + "byteLength":26296, + "byteOffset":10537036, + "target":34962 + }, + { + "buffer":0, + "byteLength":52592, + "byteOffset":10563332, + "target":34962 + }, + { + "buffer":0, + "byteLength":20760, + "byteOffset":10615924, + "target":34963 + }, + { + "buffer":0, + "byteLength":295548, + "byteOffset":10636684, + "target":34962 + }, + { + "buffer":0, + "byteLength":295548, + "byteOffset":10932232, + "target":34962 + }, + { + "buffer":0, + "byteLength":197032, + "byteOffset":11227780, + "target":34962 + }, + { + "buffer":0, + "byteLength":197032, + "byteOffset":11424812, + "target":34962 + }, + { + "buffer":0, + "byteLength":394064, + "byteOffset":11621844, + "target":34962 + }, + { + "buffer":0, + "byteLength":205776, + "byteOffset":12015908, + "target":34963 + }, + { + "buffer":0, + "byteLength":4608, + "byteOffset":12221684, + "target":34962 + }, + { + "buffer":0, + "byteLength":4608, + "byteOffset":12226292, + "target":34962 + }, + { + "buffer":0, + "byteLength":3072, + "byteOffset":12230900, + "target":34962 + }, + { + "buffer":0, + "byteLength":3072, + "byteOffset":12233972, + "target":34962 + }, + { + "buffer":0, + "byteLength":6144, + "byteOffset":12237044, + "target":34962 + }, + { + "buffer":0, + "byteLength":2184, + "byteOffset":12243188, + "target":34963 + }, + { + "buffer":0, + "byteLength":19344, + "byteOffset":12245372, + "target":34962 + }, + { + "buffer":0, + "byteLength":19344, + "byteOffset":12264716, + "target":34962 + }, + { + "buffer":0, + "byteLength":12896, + "byteOffset":12284060, + "target":34962 + }, + { + "buffer":0, + "byteLength":12896, + "byteOffset":12296956, + "target":34962 + }, + { + "buffer":0, + "byteLength":25792, + "byteOffset":12309852, + "target":34962 + }, + { + "buffer":0, + "byteLength":10128, + "byteOffset":12335644, + "target":34963 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":12345772, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":12346924, + "target":34962 + }, + { + "buffer":0, + "byteLength":768, + "byteOffset":12348076, + "target":34962 + }, + { + "buffer":0, + "byteLength":768, + "byteOffset":12348844, + "target":34962 + }, + { + "buffer":0, + "byteLength":1536, + "byteOffset":12349612, + "target":34962 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":12351148, + "target":34963 + }, + { + "buffer":0, + "byteLength":324, + "byteOffset":12351484, + "target":34962 + }, + { + "buffer":0, + "byteLength":324, + "byteOffset":12351808, + "target":34962 + }, + { + "buffer":0, + "byteLength":216, + "byteOffset":12352132, + "target":34962 + }, + { + "buffer":0, + "byteLength":216, + "byteOffset":12352348, + "target":34962 + }, + { + "buffer":0, + "byteLength":432, + "byteOffset":12352564, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":12352996, + "target":34963 + }, + { + "buffer":0, + "byteLength":219456, + "byteOffset":12353140, + "target":34962 + }, + { + "buffer":0, + "byteLength":219456, + "byteOffset":12572596, + "target":34962 + }, + { + "buffer":0, + "byteLength":146304, + "byteOffset":12792052, + "target":34962 + }, + { + "buffer":0, + "byteLength":146304, + "byteOffset":12938356, + "target":34962 + }, + { + "buffer":0, + "byteLength":292608, + "byteOffset":13084660, + "target":34962 + }, + { + "buffer":0, + "byteLength":215586, + "byteOffset":13377268, + "target":34963 + }, + { + "buffer":0, + "byteLength":40704, + "byteOffset":13592856, + "target":34962 + }, + { + "buffer":0, + "byteLength":40704, + "byteOffset":13633560, + "target":34962 + }, + { + "buffer":0, + "byteLength":27136, + "byteOffset":13674264, + "target":34962 + }, + { + "buffer":0, + "byteLength":27136, + "byteOffset":13701400, + "target":34962 + }, + { + "buffer":0, + "byteLength":54272, + "byteOffset":13728536, + "target":34962 + }, + { + "buffer":0, + "byteLength":20664, + "byteOffset":13782808, + "target":34963 + }, + { + "buffer":0, + "byteLength":19728, + "byteOffset":13803472, + "target":34962 + }, + { + "buffer":0, + "byteLength":19728, + "byteOffset":13823200, + "target":34962 + }, + { + "buffer":0, + "byteLength":13152, + "byteOffset":13842928, + "target":34962 + }, + { + "buffer":0, + "byteLength":13152, + "byteOffset":13856080, + "target":34962 + }, + { + "buffer":0, + "byteLength":26304, + "byteOffset":13869232, + "target":34962 + }, + { + "buffer":0, + "byteLength":9648, + "byteOffset":13895536, + "target":34963 + }, + { + "buffer":0, + "byteLength":17592, + "byteOffset":13905184, + "target":34962 + }, + { + "buffer":0, + "byteLength":17592, + "byteOffset":13922776, + "target":34962 + }, + { + "buffer":0, + "byteLength":11728, + "byteOffset":13940368, + "target":34962 + }, + { + "buffer":0, + "byteLength":11728, + "byteOffset":13952096, + "target":34962 + }, + { + "buffer":0, + "byteLength":23456, + "byteOffset":13963824, + "target":34962 + }, + { + "buffer":0, + "byteLength":14664, + "byteOffset":13987280, + "target":34963 + }, + { + "buffer":0, + "byteLength":7680, + "byteOffset":14001944, + "target":34962 + }, + { + "buffer":0, + "byteLength":7680, + "byteOffset":14009624, + "target":34962 + }, + { + "buffer":0, + "byteLength":5120, + "byteOffset":14017304, + "target":34962 + }, + { + "buffer":0, + "byteLength":5120, + "byteOffset":14022424, + "target":34962 + }, + { + "buffer":0, + "byteLength":10240, + "byteOffset":14027544, + "target":34962 + }, + { + "buffer":0, + "byteLength":2928, + "byteOffset":14037784, + "target":34963 + }, + { + "buffer":0, + "byteLength":48000, + "byteOffset":14040712, + "target":34962 + }, + { + "buffer":0, + "byteLength":48000, + "byteOffset":14088712, + "target":34962 + }, + { + "buffer":0, + "byteLength":32000, + "byteOffset":14136712, + "target":34962 + }, + { + "buffer":0, + "byteLength":32000, + "byteOffset":14168712, + "target":34962 + }, + { + "buffer":0, + "byteLength":64000, + "byteOffset":14200712, + "target":34962 + }, + { + "buffer":0, + "byteLength":20520, + "byteOffset":14264712, + "target":34963 + }, + { + "buffer":0, + "byteLength":5136, + "byteOffset":14285232, + "target":34962 + }, + { + "buffer":0, + "byteLength":5136, + "byteOffset":14290368, + "target":34962 + }, + { + "buffer":0, + "byteLength":3424, + "byteOffset":14295504, + "target":34962 + }, + { + "buffer":0, + "byteLength":3424, + "byteOffset":14298928, + "target":34962 + }, + { + "buffer":0, + "byteLength":6848, + "byteOffset":14302352, + "target":34962 + }, + { + "buffer":0, + "byteLength":3744, + "byteOffset":14309200, + "target":34963 + }, + { + "buffer":0, + "byteLength":19440, + "byteOffset":14312944, + "target":34962 + }, + { + "buffer":0, + "byteLength":19440, + "byteOffset":14332384, + "target":34962 + }, + { + "buffer":0, + "byteLength":12960, + "byteOffset":14351824, + "target":34962 + }, + { + "buffer":0, + "byteLength":12960, + "byteOffset":14364784, + "target":34962 + }, + { + "buffer":0, + "byteLength":25920, + "byteOffset":14377744, + "target":34962 + }, + { + "buffer":0, + "byteLength":8544, + "byteOffset":14403664, + "target":34963 + }, + { + "buffer":0, + "byteLength":8724, + "byteOffset":14412208, + "target":34962 + }, + { + "buffer":0, + "byteLength":8724, + "byteOffset":14420932, + "target":34962 + }, + { + "buffer":0, + "byteLength":5816, + "byteOffset":14429656, + "target":34962 + }, + { + "buffer":0, + "byteLength":5816, + "byteOffset":14435472, + "target":34962 + }, + { + "buffer":0, + "byteLength":11632, + "byteOffset":14441288, + "target":34962 + }, + { + "buffer":0, + "byteLength":3984, + "byteOffset":14452920, + "target":34963 + }, + { + "buffer":0, + "byteLength":45888, + "byteOffset":14456904, + "target":34962 + }, + { + "buffer":0, + "byteLength":45888, + "byteOffset":14502792, + "target":34962 + }, + { + "buffer":0, + "byteLength":30592, + "byteOffset":14548680, + "target":34962 + }, + { + "buffer":0, + "byteLength":30592, + "byteOffset":14579272, + "target":34962 + }, + { + "buffer":0, + "byteLength":61184, + "byteOffset":14609864, + "target":34962 + }, + { + "buffer":0, + "byteLength":39816, + "byteOffset":14671048, + "target":34963 + }, + { + "buffer":0, + "byteLength":14304, + "byteOffset":14710864, + "target":34962 + }, + { + "buffer":0, + "byteLength":14304, + "byteOffset":14725168, + "target":34962 + }, + { + "buffer":0, + "byteLength":9536, + "byteOffset":14739472, + "target":34962 + }, + { + "buffer":0, + "byteLength":9536, + "byteOffset":14749008, + "target":34962 + }, + { + "buffer":0, + "byteLength":19072, + "byteOffset":14758544, + "target":34962 + }, + { + "buffer":0, + "byteLength":3984, + "byteOffset":14777616, + "target":34963 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":14781600, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":14782464, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":14783328, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":14783904, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":14784480, + "target":34962 + }, + { + "buffer":0, + "byteLength":300, + "byteOffset":14785632, + "target":34963 + }, + { + "buffer":0, + "byteLength":3432, + "byteOffset":14785932, + "target":34962 + }, + { + "buffer":0, + "byteLength":3432, + "byteOffset":14789364, + "target":34962 + }, + { + "buffer":0, + "byteLength":2288, + "byteOffset":14792796, + "target":34962 + }, + { + "buffer":0, + "byteLength":2288, + "byteOffset":14795084, + "target":34962 + }, + { + "buffer":0, + "byteLength":4576, + "byteOffset":14797372, + "target":34962 + }, + { + "buffer":0, + "byteLength":2112, + "byteOffset":14801948, + "target":34963 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":14804060, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":14805116, + "target":34962 + }, + { + "buffer":0, + "byteLength":704, + "byteOffset":14806172, + "target":34962 + }, + { + "buffer":0, + "byteLength":704, + "byteOffset":14806876, + "target":34962 + }, + { + "buffer":0, + "byteLength":1408, + "byteOffset":14807580, + "target":34962 + }, + { + "buffer":0, + "byteLength":360, + "byteOffset":14808988, + "target":34963 + }, + { + "buffer":0, + "byteLength":15960, + "byteOffset":14809348, + "target":34962 + }, + { + "buffer":0, + "byteLength":15960, + "byteOffset":14825308, + "target":34962 + }, + { + "buffer":0, + "byteLength":10640, + "byteOffset":14841268, + "target":34962 + }, + { + "buffer":0, + "byteLength":10640, + "byteOffset":14851908, + "target":34962 + }, + { + "buffer":0, + "byteLength":21280, + "byteOffset":14862548, + "target":34962 + }, + { + "buffer":0, + "byteLength":6696, + "byteOffset":14883828, + "target":34963 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":14890524, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":14891964, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":14893404, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":14894364, + "target":34962 + }, + { + "buffer":0, + "byteLength":1920, + "byteOffset":14895324, + "target":34962 + }, + { + "buffer":0, + "byteLength":360, + "byteOffset":14897244, + "target":34963 + }, + { + "buffer":0, + "byteLength":8724, + "byteOffset":14897604, + "target":34962 + }, + { + "buffer":0, + "byteLength":8724, + "byteOffset":14906328, + "target":34962 + }, + { + "buffer":0, + "byteLength":5816, + "byteOffset":14915052, + "target":34962 + }, + { + "buffer":0, + "byteLength":5816, + "byteOffset":14920868, + "target":34962 + }, + { + "buffer":0, + "byteLength":11632, + "byteOffset":14926684, + "target":34962 + }, + { + "buffer":0, + "byteLength":4608, + "byteOffset":14938316, + "target":34963 + }, + { + "buffer":0, + "byteLength":6312, + "byteOffset":14942924, + "target":34962 + }, + { + "buffer":0, + "byteLength":6312, + "byteOffset":14949236, + "target":34962 + }, + { + "buffer":0, + "byteLength":4208, + "byteOffset":14955548, + "target":34962 + }, + { + "buffer":0, + "byteLength":4208, + "byteOffset":14959756, + "target":34962 + }, + { + "buffer":0, + "byteLength":8416, + "byteOffset":14963964, + "target":34962 + }, + { + "buffer":0, + "byteLength":3552, + "byteOffset":14972380, + "target":34963 + }, + { + "buffer":0, + "byteLength":9120, + "byteOffset":14975932, + "target":34962 + }, + { + "buffer":0, + "byteLength":9120, + "byteOffset":14985052, + "target":34962 + }, + { + "buffer":0, + "byteLength":6080, + "byteOffset":14994172, + "target":34962 + }, + { + "buffer":0, + "byteLength":6080, + "byteOffset":15000252, + "target":34962 + }, + { + "buffer":0, + "byteLength":12160, + "byteOffset":15006332, + "target":34962 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":15018492, + "target":34963 + }, + { + "buffer":0, + "byteLength":23448, + "byteOffset":15020988, + "target":34962 + }, + { + "buffer":0, + "byteLength":23448, + "byteOffset":15044436, + "target":34962 + }, + { + "buffer":0, + "byteLength":15632, + "byteOffset":15067884, + "target":34962 + }, + { + "buffer":0, + "byteLength":15632, + "byteOffset":15083516, + "target":34962 + }, + { + "buffer":0, + "byteLength":31264, + "byteOffset":15099148, + "target":34962 + }, + { + "buffer":0, + "byteLength":20064, + "byteOffset":15130412, + "target":34963 + }, + { + "buffer":0, + "byteLength":62256, + "byteOffset":15150476, + "target":34962 + }, + { + "buffer":0, + "byteLength":62256, + "byteOffset":15212732, + "target":34962 + }, + { + "buffer":0, + "byteLength":41504, + "byteOffset":15274988, + "target":34962 + }, + { + "buffer":0, + "byteLength":41504, + "byteOffset":15316492, + "target":34962 + }, + { + "buffer":0, + "byteLength":83008, + "byteOffset":15357996, + "target":34962 + }, + { + "buffer":0, + "byteLength":35592, + "byteOffset":15441004, + "target":34963 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":15476596, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":15479044, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":15481492, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":15483124, + "target":34962 + }, + { + "buffer":0, + "byteLength":3264, + "byteOffset":15484756, + "target":34962 + }, + { + "buffer":0, + "byteLength":1008, + "byteOffset":15488020, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":15489028, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":15489076, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":15489124, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":15489156, + "target":34962 + }, + { + "buffer":0, + "byteLength":64, + "byteOffset":15489188, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":15489252, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":15496188, + "target":34962 + }, + { + "buffer":0, + "byteLength":4624, + "byteOffset":15503124, + "target":34962 + }, + { + "buffer":0, + "byteLength":4624, + "byteOffset":15507748, + "target":34962 + }, + { + "buffer":0, + "byteLength":9248, + "byteOffset":15512372, + "target":34962 + }, + { + "buffer":0, + "byteLength":3504, + "byteOffset":15521620, + "target":34963 + }, + { + "buffer":0, + "byteLength":227592, + "byteOffset":15525124, + "target":34962 + }, + { + "buffer":0, + "byteLength":227592, + "byteOffset":15752716, + "target":34962 + }, + { + "buffer":0, + "byteLength":151728, + "byteOffset":15980308, + "target":34962 + }, + { + "buffer":0, + "byteLength":151728, + "byteOffset":16132036, + "target":34962 + }, + { + "buffer":0, + "byteLength":303456, + "byteOffset":16283764, + "target":34962 + }, + { + "buffer":0, + "byteLength":192960, + "byteOffset":16587220, + "target":34963 + }, + { + "buffer":0, + "byteLength":73320, + "byteOffset":16780180, + "target":34962 + }, + { + "buffer":0, + "byteLength":73320, + "byteOffset":16853500, + "target":34962 + }, + { + "buffer":0, + "byteLength":48880, + "byteOffset":16926820, + "target":34962 + }, + { + "buffer":0, + "byteLength":48880, + "byteOffset":16975700, + "target":34962 + }, + { + "buffer":0, + "byteLength":97760, + "byteOffset":17024580, + "target":34962 + }, + { + "buffer":0, + "byteLength":54000, + "byteOffset":17122340, + "target":34963 + }, + { + "buffer":0, + "byteLength":2568, + "byteOffset":17176340, + "target":34962 + }, + { + "buffer":0, + "byteLength":2568, + "byteOffset":17178908, + "target":34962 + }, + { + "buffer":0, + "byteLength":1712, + "byteOffset":17181476, + "target":34962 + }, + { + "buffer":0, + "byteLength":1712, + "byteOffset":17183188, + "target":34962 + }, + { + "buffer":0, + "byteLength":3424, + "byteOffset":17184900, + "target":34962 + }, + { + "buffer":0, + "byteLength":1872, + "byteOffset":17188324, + "target":34963 + }, + { + "buffer":0, + "byteLength":7224, + "byteOffset":17190196, + "target":34962 + }, + { + "buffer":0, + "byteLength":7224, + "byteOffset":17197420, + "target":34962 + }, + { + "buffer":0, + "byteLength":4816, + "byteOffset":17204644, + "target":34962 + }, + { + "buffer":0, + "byteLength":4816, + "byteOffset":17209460, + "target":34962 + }, + { + "buffer":0, + "byteLength":9632, + "byteOffset":17214276, + "target":34962 + }, + { + "buffer":0, + "byteLength":5208, + "byteOffset":17223908, + "target":34963 + }, + { + "buffer":0, + "byteLength":45432, + "byteOffset":17229116, + "target":34962 + }, + { + "buffer":0, + "byteLength":45432, + "byteOffset":17274548, + "target":34962 + }, + { + "buffer":0, + "byteLength":30288, + "byteOffset":17319980, + "target":34962 + }, + { + "buffer":0, + "byteLength":30288, + "byteOffset":17350268, + "target":34962 + }, + { + "buffer":0, + "byteLength":60576, + "byteOffset":17380556, + "target":34962 + }, + { + "buffer":0, + "byteLength":32640, + "byteOffset":17441132, + "target":34963 + }, + { + "buffer":0, + "byteLength":11352, + "byteOffset":17473772, + "target":34962 + }, + { + "buffer":0, + "byteLength":11352, + "byteOffset":17485124, + "target":34962 + }, + { + "buffer":0, + "byteLength":7568, + "byteOffset":17496476, + "target":34962 + }, + { + "buffer":0, + "byteLength":7568, + "byteOffset":17504044, + "target":34962 + }, + { + "buffer":0, + "byteLength":15136, + "byteOffset":17511612, + "target":34962 + }, + { + "buffer":0, + "byteLength":4752, + "byteOffset":17526748, + "target":34963 + }, + { + "buffer":0, + "byteLength":26088, + "byteOffset":17531500, + "target":34962 + }, + { + "buffer":0, + "byteLength":26088, + "byteOffset":17557588, + "target":34962 + }, + { + "buffer":0, + "byteLength":17392, + "byteOffset":17583676, + "target":34962 + }, + { + "buffer":0, + "byteLength":17392, + "byteOffset":17601068, + "target":34962 + }, + { + "buffer":0, + "byteLength":34784, + "byteOffset":17618460, + "target":34962 + }, + { + "buffer":0, + "byteLength":16104, + "byteOffset":17653244, + "target":34963 + }, + { + "buffer":0, + "byteLength":158712, + "byteOffset":17669348, + "target":34962 + }, + { + "buffer":0, + "byteLength":158712, + "byteOffset":17828060, + "target":34962 + }, + { + "buffer":0, + "byteLength":105808, + "byteOffset":17986772, + "target":34962 + }, + { + "buffer":0, + "byteLength":105808, + "byteOffset":18092580, + "target":34962 + }, + { + "buffer":0, + "byteLength":211616, + "byteOffset":18198388, + "target":34962 + }, + { + "buffer":0, + "byteLength":139464, + "byteOffset":18410004, + "target":34963 + }, + { + "buffer":0, + "byteLength":23232, + "byteOffset":18549468, + "target":34962 + }, + { + "buffer":0, + "byteLength":23232, + "byteOffset":18572700, + "target":34962 + }, + { + "buffer":0, + "byteLength":15488, + "byteOffset":18595932, + "target":34962 + }, + { + "buffer":0, + "byteLength":15488, + "byteOffset":18611420, + "target":34962 + }, + { + "buffer":0, + "byteLength":30976, + "byteOffset":18626908, + "target":34962 + }, + { + "buffer":0, + "byteLength":11376, + "byteOffset":18657884, + "target":34963 + }, + { + "buffer":0, + "byteLength":39588, + "byteOffset":18669260, + "target":34962 + }, + { + "buffer":0, + "byteLength":39588, + "byteOffset":18708848, + "target":34962 + }, + { + "buffer":0, + "byteLength":26392, + "byteOffset":18748436, + "target":34962 + }, + { + "buffer":0, + "byteLength":26392, + "byteOffset":18774828, + "target":34962 + }, + { + "buffer":0, + "byteLength":52784, + "byteOffset":18801220, + "target":34962 + }, + { + "buffer":0, + "byteLength":20448, + "byteOffset":18854004, + "target":34963 + }, + { + "buffer":0, + "byteLength":15840, + "byteOffset":18874452, + "target":34962 + }, + { + "buffer":0, + "byteLength":15840, + "byteOffset":18890292, + "target":34962 + }, + { + "buffer":0, + "byteLength":10560, + "byteOffset":18906132, + "target":34962 + }, + { + "buffer":0, + "byteLength":10560, + "byteOffset":18916692, + "target":34962 + }, + { + "buffer":0, + "byteLength":21120, + "byteOffset":18927252, + "target":34962 + }, + { + "buffer":0, + "byteLength":6456, + "byteOffset":18948372, + "target":34963 + }, + { + "buffer":0, + "byteLength":3552, + "byteOffset":18954828, + "target":34962 + }, + { + "buffer":0, + "byteLength":3552, + "byteOffset":18958380, + "target":34962 + }, + { + "buffer":0, + "byteLength":2368, + "byteOffset":18961932, + "target":34962 + }, + { + "buffer":0, + "byteLength":2368, + "byteOffset":18964300, + "target":34962 + }, + { + "buffer":0, + "byteLength":4736, + "byteOffset":18966668, + "target":34962 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":18971404, + "target":34963 + }, + { + "buffer":0, + "byteLength":11280, + "byteOffset":18972868, + "target":34962 + }, + { + "buffer":0, + "byteLength":11280, + "byteOffset":18984148, + "target":34962 + }, + { + "buffer":0, + "byteLength":7520, + "byteOffset":18995428, + "target":34962 + }, + { + "buffer":0, + "byteLength":7520, + "byteOffset":19002948, + "target":34962 + }, + { + "buffer":0, + "byteLength":15040, + "byteOffset":19010468, + "target":34962 + }, + { + "buffer":0, + "byteLength":5184, + "byteOffset":19025508, + "target":34963 + }, + { + "buffer":0, + "byteLength":7728, + "byteOffset":19030692, + "target":34962 + }, + { + "buffer":0, + "byteLength":7728, + "byteOffset":19038420, + "target":34962 + }, + { + "buffer":0, + "byteLength":5152, + "byteOffset":19046148, + "target":34962 + }, + { + "buffer":0, + "byteLength":5152, + "byteOffset":19051300, + "target":34962 + }, + { + "buffer":0, + "byteLength":10304, + "byteOffset":19056452, + "target":34962 + }, + { + "buffer":0, + "byteLength":2880, + "byteOffset":19066756, + "target":34963 + }, + { + "buffer":0, + "byteLength":18240, + "byteOffset":19069636, + "target":34962 + }, + { + "buffer":0, + "byteLength":18240, + "byteOffset":19087876, + "target":34962 + }, + { + "buffer":0, + "byteLength":12160, + "byteOffset":19106116, + "target":34962 + }, + { + "buffer":0, + "byteLength":12160, + "byteOffset":19118276, + "target":34962 + }, + { + "buffer":0, + "byteLength":24320, + "byteOffset":19130436, + "target":34962 + }, + { + "buffer":0, + "byteLength":11328, + "byteOffset":19154756, + "target":34963 + }, + { + "buffer":0, + "byteLength":31176, + "byteOffset":19166084, + "target":34962 + }, + { + "buffer":0, + "byteLength":31176, + "byteOffset":19197260, + "target":34962 + }, + { + "buffer":0, + "byteLength":20784, + "byteOffset":19228436, + "target":34962 + }, + { + "buffer":0, + "byteLength":20784, + "byteOffset":19249220, + "target":34962 + }, + { + "buffer":0, + "byteLength":41568, + "byteOffset":19270004, + "target":34962 + }, + { + "buffer":0, + "byteLength":19872, + "byteOffset":19311572, + "target":34963 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":19331444, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":19332020, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":19332596, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":19332980, + "target":34962 + }, + { + "buffer":0, + "byteLength":768, + "byteOffset":19333364, + "target":34962 + }, + { + "buffer":0, + "byteLength":216, + "byteOffset":19334132, + "target":34963 + }, + { + "buffer":0, + "byteLength":8184, + "byteOffset":19334348, + "target":34962 + }, + { + "buffer":0, + "byteLength":8184, + "byteOffset":19342532, + "target":34962 + }, + { + "buffer":0, + "byteLength":5456, + "byteOffset":19350716, + "target":34962 + }, + { + "buffer":0, + "byteLength":5456, + "byteOffset":19356172, + "target":34962 + }, + { + "buffer":0, + "byteLength":10912, + "byteOffset":19361628, + "target":34962 + }, + { + "buffer":0, + "byteLength":5760, + "byteOffset":19372540, + "target":34963 + }, + { + "buffer":0, + "byteLength":21012, + "byteOffset":19378300, + "target":34962 + }, + { + "buffer":0, + "byteLength":21012, + "byteOffset":19399312, + "target":34962 + }, + { + "buffer":0, + "byteLength":14008, + "byteOffset":19420324, + "target":34962 + }, + { + "buffer":0, + "byteLength":14008, + "byteOffset":19434332, + "target":34962 + }, + { + "buffer":0, + "byteLength":28016, + "byteOffset":19448340, + "target":34962 + }, + { + "buffer":0, + "byteLength":9888, + "byteOffset":19476356, + "target":34963 + }, + { + "buffer":0, + "byteLength":59712, + "byteOffset":19486244, + "target":34962 + }, + { + "buffer":0, + "byteLength":59712, + "byteOffset":19545956, + "target":34962 + }, + { + "buffer":0, + "byteLength":39808, + "byteOffset":19605668, + "target":34962 + }, + { + "buffer":0, + "byteLength":39808, + "byteOffset":19645476, + "target":34962 + }, + { + "buffer":0, + "byteLength":79616, + "byteOffset":19685284, + "target":34962 + }, + { + "buffer":0, + "byteLength":27816, + "byteOffset":19764900, + "target":34963 + }, + { + "buffer":0, + "byteLength":97992, + "byteOffset":19792716, + "target":34962 + }, + { + "buffer":0, + "byteLength":97992, + "byteOffset":19890708, + "target":34962 + }, + { + "buffer":0, + "byteLength":65328, + "byteOffset":19988700, + "target":34962 + }, + { + "buffer":0, + "byteLength":65328, + "byteOffset":20054028, + "target":34962 + }, + { + "buffer":0, + "byteLength":130656, + "byteOffset":20119356, + "target":34962 + }, + { + "buffer":0, + "byteLength":38880, + "byteOffset":20250012, + "target":34963 + }, + { + "buffer":0, + "byteLength":1452, + "byteOffset":20288892, + "target":34962 + }, + { + "buffer":0, + "byteLength":1452, + "byteOffset":20290344, + "target":34962 + }, + { + "buffer":0, + "byteLength":968, + "byteOffset":20291796, + "target":34962 + }, + { + "buffer":0, + "byteLength":968, + "byteOffset":20292764, + "target":34962 + }, + { + "buffer":0, + "byteLength":1936, + "byteOffset":20293732, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":20295668, + "target":34963 + }, + { + "buffer":0, + "byteLength":32304, + "byteOffset":20296244, + "target":34962 + }, + { + "buffer":0, + "byteLength":32304, + "byteOffset":20328548, + "target":34962 + }, + { + "buffer":0, + "byteLength":21536, + "byteOffset":20360852, + "target":34962 + }, + { + "buffer":0, + "byteLength":21536, + "byteOffset":20382388, + "target":34962 + }, + { + "buffer":0, + "byteLength":43072, + "byteOffset":20403924, + "target":34962 + }, + { + "buffer":0, + "byteLength":26544, + "byteOffset":20446996, + "target":34963 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":20473540, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":20474404, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":20475268, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":20475844, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":20476420, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":20477572, + "target":34963 + }, + { + "buffer":0, + "byteLength":5664, + "byteOffset":20477812, + "target":34962 + }, + { + "buffer":0, + "byteLength":5664, + "byteOffset":20483476, + "target":34962 + }, + { + "buffer":0, + "byteLength":3776, + "byteOffset":20489140, + "target":34962 + }, + { + "buffer":0, + "byteLength":3776, + "byteOffset":20492916, + "target":34962 + }, + { + "buffer":0, + "byteLength":7552, + "byteOffset":20496692, + "target":34962 + }, + { + "buffer":0, + "byteLength":3720, + "byteOffset":20504244, + "target":34963 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":20507964, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":20514996, + "target":34962 + }, + { + "buffer":0, + "byteLength":4688, + "byteOffset":20522028, + "target":34962 + }, + { + "buffer":0, + "byteLength":4688, + "byteOffset":20526716, + "target":34962 + }, + { + "buffer":0, + "byteLength":9376, + "byteOffset":20531404, + "target":34962 + }, + { + "buffer":0, + "byteLength":5184, + "byteOffset":20540780, + "target":34963 + }, + { + "buffer":0, + "byteLength":3504, + "byteOffset":20545964, + "target":34962 + }, + { + "buffer":0, + "byteLength":3504, + "byteOffset":20549468, + "target":34962 + }, + { + "buffer":0, + "byteLength":2336, + "byteOffset":20552972, + "target":34962 + }, + { + "buffer":0, + "byteLength":2336, + "byteOffset":20555308, + "target":34962 + }, + { + "buffer":0, + "byteLength":4672, + "byteOffset":20557644, + "target":34962 + }, + { + "buffer":0, + "byteLength":1224, + "byteOffset":20562316, + "target":34963 + }, + { + "buffer":0, + "byteLength":4416, + "byteOffset":20563540, + "target":34962 + }, + { + "buffer":0, + "byteLength":4416, + "byteOffset":20567956, + "target":34962 + }, + { + "buffer":0, + "byteLength":2944, + "byteOffset":20572372, + "target":34962 + }, + { + "buffer":0, + "byteLength":2944, + "byteOffset":20575316, + "target":34962 + }, + { + "buffer":0, + "byteLength":5888, + "byteOffset":20578260, + "target":34962 + }, + { + "buffer":0, + "byteLength":1656, + "byteOffset":20584148, + "target":34963 + }, + { + "buffer":0, + "byteLength":2760, + "byteOffset":20585804, + "target":34962 + }, + { + "buffer":0, + "byteLength":2760, + "byteOffset":20588564, + "target":34962 + }, + { + "buffer":0, + "byteLength":1840, + "byteOffset":20591324, + "target":34962 + }, + { + "buffer":0, + "byteLength":1840, + "byteOffset":20593164, + "target":34962 + }, + { + "buffer":0, + "byteLength":3680, + "byteOffset":20595004, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":20598684, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":20599548, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":20599596, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":20599644, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":20599676, + "target":34962 + }, + { + "buffer":0, + "byteLength":64, + "byteOffset":20599708, + "target":34962 + }, + { + "buffer":0, + "byteLength":24408, + "byteOffset":20599772, + "target":34962 + }, + { + "buffer":0, + "byteLength":24408, + "byteOffset":20624180, + "target":34962 + }, + { + "buffer":0, + "byteLength":16272, + "byteOffset":20648588, + "target":34962 + }, + { + "buffer":0, + "byteLength":16272, + "byteOffset":20664860, + "target":34962 + }, + { + "buffer":0, + "byteLength":32544, + "byteOffset":20681132, + "target":34962 + }, + { + "buffer":0, + "byteLength":12048, + "byteOffset":20713676, + "target":34963 + }, + { + "buffer":0, + "byteLength":2304, + "byteOffset":20725724, + "target":34962 + }, + { + "buffer":0, + "byteLength":2304, + "byteOffset":20728028, + "target":34962 + }, + { + "buffer":0, + "byteLength":1536, + "byteOffset":20730332, + "target":34962 + }, + { + "buffer":0, + "byteLength":1536, + "byteOffset":20731868, + "target":34962 + }, + { + "buffer":0, + "byteLength":3072, + "byteOffset":20733404, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":20736476, + "target":34963 + }, + { + "buffer":0, + "byteLength":842352, + "byteOffset":20737148, + "target":34962 + }, + { + "buffer":0, + "byteLength":842352, + "byteOffset":21579500, + "target":34962 + }, + { + "buffer":0, + "byteLength":561568, + "byteOffset":22421852, + "target":34962 + }, + { + "buffer":0, + "byteLength":561568, + "byteOffset":22983420, + "target":34962 + }, + { + "buffer":0, + "byteLength":1123136, + "byteOffset":23544988, + "target":34962 + }, + { + "buffer":0, + "byteLength":280784, + "byteOffset":24668124, + "target":34962 + }, + { + "buffer":0, + "byteLength":561568, + "byteOffset":24948908, + "target":34962 + }, + { + "buffer":0, + "byteLength":561568, + "byteOffset":25510476, + "target":34962 + }, + { + "buffer":0, + "byteLength":535200, + "byteOffset":26072044, + "target":34963 + }, + { + "buffer":0, + "byteLength":4128, + "byteOffset":26607244, + "target":34962 + }, + { + "buffer":0, + "byteLength":4128, + "byteOffset":26611372, + "target":34962 + }, + { + "buffer":0, + "byteLength":2752, + "byteOffset":26615500, + "target":34962 + }, + { + "buffer":0, + "byteLength":2752, + "byteOffset":26618252, + "target":34962 + }, + { + "buffer":0, + "byteLength":5504, + "byteOffset":26621004, + "target":34962 + }, + { + "buffer":0, + "byteLength":1376, + "byteOffset":26626508, + "target":34962 + }, + { + "buffer":0, + "byteLength":2752, + "byteOffset":26627884, + "target":34962 + }, + { + "buffer":0, + "byteLength":2752, + "byteOffset":26630636, + "target":34962 + }, + { + "buffer":0, + "byteLength":1200, + "byteOffset":26633388, + "target":34963 + }, + { + "buffer":0, + "byteLength":12192, + "byteOffset":26634588, + "target":34962 + }, + { + "buffer":0, + "byteLength":12192, + "byteOffset":26646780, + "target":34962 + }, + { + "buffer":0, + "byteLength":8128, + "byteOffset":26658972, + "target":34962 + }, + { + "buffer":0, + "byteLength":8128, + "byteOffset":26667100, + "target":34962 + }, + { + "buffer":0, + "byteLength":16256, + "byteOffset":26675228, + "target":34962 + }, + { + "buffer":0, + "byteLength":4064, + "byteOffset":26691484, + "target":34962 + }, + { + "buffer":0, + "byteLength":8128, + "byteOffset":26695548, + "target":34962 + }, + { + "buffer":0, + "byteLength":8128, + "byteOffset":26703676, + "target":34962 + }, + { + "buffer":0, + "byteLength":3216, + "byteOffset":26711804, + "target":34963 + }, + { + "buffer":0, + "byteLength":77712, + "byteOffset":26715020, + "target":34962 + }, + { + "buffer":0, + "byteLength":77712, + "byteOffset":26792732, + "target":34962 + }, + { + "buffer":0, + "byteLength":51808, + "byteOffset":26870444, + "target":34962 + }, + { + "buffer":0, + "byteLength":51808, + "byteOffset":26922252, + "target":34962 + }, + { + "buffer":0, + "byteLength":103616, + "byteOffset":26974060, + "target":34962 + }, + { + "buffer":0, + "byteLength":25904, + "byteOffset":27077676, + "target":34962 + }, + { + "buffer":0, + "byteLength":51808, + "byteOffset":27103580, + "target":34962 + }, + { + "buffer":0, + "byteLength":51808, + "byteOffset":27155388, + "target":34962 + }, + { + "buffer":0, + "byteLength":20736, + "byteOffset":27207196, + "target":34963 + }, + { + "buffer":0, + "byteLength":54000, + "byteOffset":27227932, + "target":34962 + }, + { + "buffer":0, + "byteLength":54000, + "byteOffset":27281932, + "target":34962 + }, + { + "buffer":0, + "byteLength":36000, + "byteOffset":27335932, + "target":34962 + }, + { + "buffer":0, + "byteLength":36000, + "byteOffset":27371932, + "target":34962 + }, + { + "buffer":0, + "byteLength":72000, + "byteOffset":27407932, + "target":34962 + }, + { + "buffer":0, + "byteLength":18000, + "byteOffset":27479932, + "target":34962 + }, + { + "buffer":0, + "byteLength":36000, + "byteOffset":27497932, + "target":34962 + }, + { + "buffer":0, + "byteLength":36000, + "byteOffset":27533932, + "target":34962 + }, + { + "buffer":0, + "byteLength":16740, + "byteOffset":27569932, + "target":34963 + }, + { + "buffer":0, + "byteLength":321984, + "byteOffset":27586672, + "target":34962 + }, + { + "buffer":0, + "byteLength":321984, + "byteOffset":27908656, + "target":34962 + }, + { + "buffer":0, + "byteLength":214656, + "byteOffset":28230640, + "target":34962 + }, + { + "buffer":0, + "byteLength":214656, + "byteOffset":28445296, + "target":34962 + }, + { + "buffer":0, + "byteLength":429312, + "byteOffset":28659952, + "target":34962 + }, + { + "buffer":0, + "byteLength":107328, + "byteOffset":29089264, + "target":34962 + }, + { + "buffer":0, + "byteLength":214656, + "byteOffset":29196592, + "target":34962 + }, + { + "buffer":0, + "byteLength":214656, + "byteOffset":29411248, + "target":34962 + }, + { + "buffer":0, + "byteLength":80496, + "byteOffset":29625904, + "target":34963 + }, + { + "buffer":0, + "byteLength":120, + "byteOffset":29706400, + "target":34962 + }, + { + "buffer":0, + "byteLength":120, + "byteOffset":29706520, + "target":34962 + }, + { + "buffer":0, + "byteLength":80, + "byteOffset":29706640, + "target":34962 + }, + { + "buffer":0, + "byteLength":80, + "byteOffset":29706720, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":29706800, + "target":34962 + }, + { + "buffer":0, + "byteLength":40, + "byteOffset":29706960, + "target":34962 + }, + { + "buffer":0, + "byteLength":80, + "byteOffset":29707000, + "target":34962 + }, + { + "buffer":0, + "byteLength":80, + "byteOffset":29707080, + "target":34962 + }, + { + "buffer":0, + "byteLength":36, + "byteOffset":29707160, + "target":34963 + }, + { + "buffer":0, + "byteLength":5760, + "byteOffset":29707196, + "target":34962 + }, + { + "buffer":0, + "byteLength":5760, + "byteOffset":29712956, + "target":34962 + }, + { + "buffer":0, + "byteLength":3840, + "byteOffset":29718716, + "target":34962 + }, + { + "buffer":0, + "byteLength":3840, + "byteOffset":29722556, + "target":34962 + }, + { + "buffer":0, + "byteLength":7680, + "byteOffset":29726396, + "target":34962 + }, + { + "buffer":0, + "byteLength":1920, + "byteOffset":29734076, + "target":34962 + }, + { + "buffer":0, + "byteLength":3840, + "byteOffset":29735996, + "target":34962 + }, + { + "buffer":0, + "byteLength":3840, + "byteOffset":29739836, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":29743676, + "target":34963 + }, + { + "buffer":0, + "byteLength":1289928, + "byteOffset":29745116, + "target":34962 + }, + { + "buffer":0, + "byteLength":1289928, + "byteOffset":31035044, + "target":34962 + }, + { + "buffer":0, + "byteLength":859952, + "byteOffset":32324972, + "target":34962 + }, + { + "buffer":0, + "byteLength":859952, + "byteOffset":33184924, + "target":34962 + }, + { + "buffer":0, + "byteLength":1719904, + "byteOffset":34044876, + "target":34962 + }, + { + "buffer":0, + "byteLength":429976, + "byteOffset":35764780, + "target":34962 + }, + { + "buffer":0, + "byteLength":859952, + "byteOffset":36194756, + "target":34962 + }, + { + "buffer":0, + "byteLength":859952, + "byteOffset":37054708, + "target":34962 + }, + { + "buffer":0, + "byteLength":1065408, + "byteOffset":37914660, + "target":34963 + }, + { + "buffer":0, + "byteLength":299028, + "byteOffset":38980068, + "target":34962 + }, + { + "buffer":0, + "byteLength":299028, + "byteOffset":39279096, + "target":34962 + }, + { + "buffer":0, + "byteLength":199352, + "byteOffset":39578124, + "target":34962 + }, + { + "buffer":0, + "byteLength":199352, + "byteOffset":39777476, + "target":34962 + }, + { + "buffer":0, + "byteLength":398704, + "byteOffset":39976828, + "target":34962 + }, + { + "buffer":0, + "byteLength":99676, + "byteOffset":40375532, + "target":34962 + }, + { + "buffer":0, + "byteLength":199352, + "byteOffset":40475208, + "target":34962 + }, + { + "buffer":0, + "byteLength":199352, + "byteOffset":40674560, + "target":34962 + }, + { + "buffer":0, + "byteLength":105144, + "byteOffset":40873912, + "target":34963 + }, + { + "buffer":0, + "byteLength":65448, + "byteOffset":40979056, + "target":34962 + }, + { + "buffer":0, + "byteLength":65448, + "byteOffset":41044504, + "target":34962 + }, + { + "buffer":0, + "byteLength":43632, + "byteOffset":41109952, + "target":34962 + }, + { + "buffer":0, + "byteLength":43632, + "byteOffset":41153584, + "target":34962 + }, + { + "buffer":0, + "byteLength":87264, + "byteOffset":41197216, + "target":34962 + }, + { + "buffer":0, + "byteLength":21816, + "byteOffset":41284480, + "target":34962 + }, + { + "buffer":0, + "byteLength":43632, + "byteOffset":41306296, + "target":34962 + }, + { + "buffer":0, + "byteLength":43632, + "byteOffset":41349928, + "target":34962 + }, + { + "buffer":0, + "byteLength":25656, + "byteOffset":41393560, + "target":34963 + }, + { + "buffer":0, + "byteLength":3588, + "byteOffset":41419216, + "target":34962 + }, + { + "buffer":0, + "byteLength":3588, + "byteOffset":41422804, + "target":34962 + }, + { + "buffer":0, + "byteLength":2392, + "byteOffset":41426392, + "target":34962 + }, + { + "buffer":0, + "byteLength":2392, + "byteOffset":41428784, + "target":34962 + }, + { + "buffer":0, + "byteLength":4784, + "byteOffset":41431176, + "target":34962 + }, + { + "buffer":0, + "byteLength":1196, + "byteOffset":41435960, + "target":34962 + }, + { + "buffer":0, + "byteLength":2392, + "byteOffset":41437156, + "target":34962 + }, + { + "buffer":0, + "byteLength":2392, + "byteOffset":41439548, + "target":34962 + }, + { + "buffer":0, + "byteLength":1776, + "byteOffset":41441940, + "target":34963 + }, + { + "buffer":0, + "byteLength":77760, + "byteOffset":41443716, + "target":34962 + }, + { + "buffer":0, + "byteLength":77760, + "byteOffset":41521476, + "target":34962 + }, + { + "buffer":0, + "byteLength":51840, + "byteOffset":41599236, + "target":34962 + }, + { + "buffer":0, + "byteLength":51840, + "byteOffset":41651076, + "target":34962 + }, + { + "buffer":0, + "byteLength":103680, + "byteOffset":41702916, + "target":34962 + }, + { + "buffer":0, + "byteLength":25920, + "byteOffset":41806596, + "target":34962 + }, + { + "buffer":0, + "byteLength":51840, + "byteOffset":41832516, + "target":34962 + }, + { + "buffer":0, + "byteLength":51840, + "byteOffset":41884356, + "target":34962 + }, + { + "buffer":0, + "byteLength":21216, + "byteOffset":41936196, + "target":34963 + }, + { + "buffer":0, + "byteLength":1644, + "byteOffset":41957412, + "target":34962 + }, + { + "buffer":0, + "byteLength":1644, + "byteOffset":41959056, + "target":34962 + }, + { + "buffer":0, + "byteLength":1096, + "byteOffset":41960700, + "target":34962 + }, + { + "buffer":0, + "byteLength":1096, + "byteOffset":41961796, + "target":34962 + }, + { + "buffer":0, + "byteLength":2192, + "byteOffset":41962892, + "target":34962 + }, + { + "buffer":0, + "byteLength":548, + "byteOffset":41965084, + "target":34962 + }, + { + "buffer":0, + "byteLength":1096, + "byteOffset":41965632, + "target":34962 + }, + { + "buffer":0, + "byteLength":1096, + "byteOffset":41966728, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":41967824, + "target":34963 + }, + { + "buffer":0, + "byteLength":47712, + "byteOffset":41968688, + "target":34962 + }, + { + "buffer":0, + "byteLength":47712, + "byteOffset":42016400, + "target":34962 + }, + { + "buffer":0, + "byteLength":31808, + "byteOffset":42064112, + "target":34962 + }, + { + "buffer":0, + "byteLength":31808, + "byteOffset":42095920, + "target":34962 + }, + { + "buffer":0, + "byteLength":63616, + "byteOffset":42127728, + "target":34962 + }, + { + "buffer":0, + "byteLength":21024, + "byteOffset":42191344, + "target":34963 + }, + { + "buffer":0, + "byteLength":432, + "byteOffset":42212368, + "target":34962 + }, + { + "buffer":0, + "byteLength":432, + "byteOffset":42212800, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":42213232, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":42213520, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":42213808, + "target":34962 + }, + { + "buffer":0, + "byteLength":108, + "byteOffset":42214384, + "target":34963 + }, + { + "buffer":0, + "byteLength":6468, + "byteOffset":42214492, + "target":34962 + }, + { + "buffer":0, + "byteLength":6468, + "byteOffset":42220960, + "target":34962 + }, + { + "buffer":0, + "byteLength":4312, + "byteOffset":42227428, + "target":34962 + }, + { + "buffer":0, + "byteLength":4312, + "byteOffset":42231740, + "target":34962 + }, + { + "buffer":0, + "byteLength":8624, + "byteOffset":42236052, + "target":34962 + }, + { + "buffer":0, + "byteLength":2040, + "byteOffset":42244676, + "target":34963 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":42246716, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":42248468, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":42250220, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":42251388, + "target":34962 + }, + { + "buffer":0, + "byteLength":2336, + "byteOffset":42252556, + "target":34962 + }, + { + "buffer":0, + "byteLength":552, + "byteOffset":42254892, + "target":34963 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":42255444, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":42262452, + "target":34962 + }, + { + "buffer":0, + "byteLength":4672, + "byteOffset":42269460, + "target":34962 + }, + { + "buffer":0, + "byteLength":4672, + "byteOffset":42274132, + "target":34962 + }, + { + "buffer":0, + "byteLength":9344, + "byteOffset":42278804, + "target":34962 + }, + { + "buffer":0, + "byteLength":2304, + "byteOffset":42288148, + "target":34963 + }, + { + "buffer":0, + "byteLength":2424, + "byteOffset":42290452, + "target":34962 + }, + { + "buffer":0, + "byteLength":2424, + "byteOffset":42292876, + "target":34962 + }, + { + "buffer":0, + "byteLength":1616, + "byteOffset":42295300, + "target":34962 + }, + { + "buffer":0, + "byteLength":1616, + "byteOffset":42296916, + "target":34962 + }, + { + "buffer":0, + "byteLength":3232, + "byteOffset":42298532, + "target":34962 + }, + { + "buffer":0, + "byteLength":732, + "byteOffset":42301764, + "target":34963 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":42302496, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":42302568, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":42302640, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":42302688, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":42302736, + "target":34962 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":42302832, + "target":34963 + }, + { + "buffer":0, + "byteLength":14400, + "byteOffset":42302856, + "target":34962 + }, + { + "buffer":0, + "byteLength":14400, + "byteOffset":42317256, + "target":34962 + }, + { + "buffer":0, + "byteLength":9600, + "byteOffset":42331656, + "target":34962 + }, + { + "buffer":0, + "byteLength":9600, + "byteOffset":42341256, + "target":34962 + }, + { + "buffer":0, + "byteLength":19200, + "byteOffset":42350856, + "target":34962 + }, + { + "buffer":0, + "byteLength":5244, + "byteOffset":42370056, + "target":34963 + }, + { + "buffer":0, + "byteLength":1544748, + "byteOffset":42375300, + "target":34962 + }, + { + "buffer":0, + "byteLength":1544748, + "byteOffset":43920048, + "target":34962 + }, + { + "buffer":0, + "byteLength":1029832, + "byteOffset":45464796, + "target":34962 + }, + { + "buffer":0, + "byteLength":1029832, + "byteOffset":46494628, + "target":34962 + }, + { + "buffer":0, + "byteLength":2059664, + "byteOffset":47524460, + "target":34962 + }, + { + "buffer":0, + "byteLength":1032024, + "byteOffset":49584124, + "target":34963 + }, + { + "buffer":0, + "byteLength":59136, + "byteOffset":50616148, + "target":34962 + }, + { + "buffer":0, + "byteLength":59136, + "byteOffset":50675284, + "target":34962 + }, + { + "buffer":0, + "byteLength":39424, + "byteOffset":50734420, + "target":34962 + }, + { + "buffer":0, + "byteLength":39424, + "byteOffset":50773844, + "target":34962 + }, + { + "buffer":0, + "byteLength":78848, + "byteOffset":50813268, + "target":34962 + }, + { + "buffer":0, + "byteLength":14880, + "byteOffset":50892116, + "target":34963 + }, + { + "buffer":0, + "byteLength":214416, + "byteOffset":50906996, + "target":34962 + }, + { + "buffer":0, + "byteLength":214416, + "byteOffset":51121412, + "target":34962 + }, + { + "buffer":0, + "byteLength":142944, + "byteOffset":51335828, + "target":34962 + }, + { + "buffer":0, + "byteLength":142944, + "byteOffset":51478772, + "target":34962 + }, + { + "buffer":0, + "byteLength":285888, + "byteOffset":51621716, + "target":34962 + }, + { + "buffer":0, + "byteLength":54288, + "byteOffset":51907604, + "target":34963 + }, + { + "buffer":0, + "byteLength":5484, + "byteOffset":51961892, + "target":34962 + }, + { + "buffer":0, + "byteLength":5484, + "byteOffset":51967376, + "target":34962 + }, + { + "buffer":0, + "byteLength":3656, + "byteOffset":51972860, + "target":34962 + }, + { + "buffer":0, + "byteLength":3656, + "byteOffset":51976516, + "target":34962 + }, + { + "buffer":0, + "byteLength":7312, + "byteOffset":51980172, + "target":34962 + }, + { + "buffer":0, + "byteLength":1980, + "byteOffset":51987484, + "target":34963 + }, + { + "buffer":0, + "byteLength":120, + "byteOffset":51989464, + "target":34962 + }, + { + "buffer":0, + "byteLength":120, + "byteOffset":51989584, + "target":34962 + }, + { + "buffer":0, + "byteLength":80, + "byteOffset":51989704, + "target":34962 + }, + { + "buffer":0, + "byteLength":80, + "byteOffset":51989784, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":51989864, + "target":34962 + }, + { + "buffer":0, + "byteLength":36, + "byteOffset":51990024, + "target":34963 + }, + { + "buffer":0, + "byteLength":10272, + "byteOffset":51990060, + "target":34962 + }, + { + "buffer":0, + "byteLength":10272, + "byteOffset":52000332, + "target":34962 + }, + { + "buffer":0, + "byteLength":6848, + "byteOffset":52010604, + "target":34962 + }, + { + "buffer":0, + "byteLength":6848, + "byteOffset":52017452, + "target":34962 + }, + { + "buffer":0, + "byteLength":13696, + "byteOffset":52024300, + "target":34962 + }, + { + "buffer":0, + "byteLength":3840, + "byteOffset":52037996, + "target":34963 + }, + { + "buffer":0, + "byteLength":52476, + "byteOffset":52041836, + "target":34962 + }, + { + "buffer":0, + "byteLength":52476, + "byteOffset":52094312, + "target":34962 + }, + { + "buffer":0, + "byteLength":34984, + "byteOffset":52146788, + "target":34962 + }, + { + "buffer":0, + "byteLength":34984, + "byteOffset":52181772, + "target":34962 + }, + { + "buffer":0, + "byteLength":69968, + "byteOffset":52216756, + "target":34962 + }, + { + "buffer":0, + "byteLength":16152, + "byteOffset":52286724, + "target":34963 + }, + { + "buffer":0, + "byteLength":80628, + "byteOffset":52302876, + "target":34962 + }, + { + "buffer":0, + "byteLength":80628, + "byteOffset":52383504, + "target":34962 + }, + { + "buffer":0, + "byteLength":53752, + "byteOffset":52464132, + "target":34962 + }, + { + "buffer":0, + "byteLength":53752, + "byteOffset":52517884, + "target":34962 + }, + { + "buffer":0, + "byteLength":107504, + "byteOffset":52571636, + "target":34962 + }, + { + "buffer":0, + "byteLength":28788, + "byteOffset":52679140, + "target":34963 + }, + { + "buffer":0, + "byteLength":96876, + "byteOffset":52707928, + "target":34962 + }, + { + "buffer":0, + "byteLength":96876, + "byteOffset":52804804, + "target":34962 + }, + { + "buffer":0, + "byteLength":64584, + "byteOffset":52901680, + "target":34962 + }, + { + "buffer":0, + "byteLength":64584, + "byteOffset":52966264, + "target":34962 + }, + { + "buffer":0, + "byteLength":129168, + "byteOffset":53030848, + "target":34962 + }, + { + "buffer":0, + "byteLength":40188, + "byteOffset":53160016, + "target":34963 + }, + { + "buffer":0, + "byteLength":23148, + "byteOffset":53200204, + "target":34962 + }, + { + "buffer":0, + "byteLength":23148, + "byteOffset":53223352, + "target":34962 + }, + { + "buffer":0, + "byteLength":15432, + "byteOffset":53246500, + "target":34962 + }, + { + "buffer":0, + "byteLength":15432, + "byteOffset":53261932, + "target":34962 + }, + { + "buffer":0, + "byteLength":30864, + "byteOffset":53277364, + "target":34962 + }, + { + "buffer":0, + "byteLength":10872, + "byteOffset":53308228, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":53319100, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":53319148, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":53319196, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":53319228, + "target":34962 + }, + { + "buffer":0, + "byteLength":64, + "byteOffset":53319260, + "target":34962 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":53319324, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":53319336, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":53319384, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":53319432, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":53319464, + "target":34962 + }, + { + "buffer":0, + "byteLength":64, + "byteOffset":53319496, + "target":34962 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":53319560, + "target":34963 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":53319572, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":53319812, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":53320052, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":53320212, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":53320372, + "target":34962 + }, + { + "buffer":0, + "byteLength":60, + "byteOffset":53320692, + "target":34963 + }, + { + "buffer":0, + "byteLength":109068, + "byteOffset":53320752, + "target":34962 + }, + { + "buffer":0, + "byteLength":109068, + "byteOffset":53429820, + "target":34962 + }, + { + "buffer":0, + "byteLength":72712, + "byteOffset":53538888, + "target":34962 + }, + { + "buffer":0, + "byteLength":72712, + "byteOffset":53611600, + "target":34962 + }, + { + "buffer":0, + "byteLength":145424, + "byteOffset":53684312, + "target":34962 + }, + { + "buffer":0, + "byteLength":56820, + "byteOffset":53829736, + "target":34963 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":53886556, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":53887420, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":53888284, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":53888860, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":53889436, + "target":34962 + }, + { + "buffer":0, + "byteLength":360, + "byteOffset":53890588, + "target":34963 + }, + { + "buffer":0, + "byteLength":53532, + "byteOffset":53890948, + "target":34962 + }, + { + "buffer":0, + "byteLength":53532, + "byteOffset":53944480, + "target":34962 + }, + { + "buffer":0, + "byteLength":35688, + "byteOffset":53998012, + "target":34962 + }, + { + "buffer":0, + "byteLength":35688, + "byteOffset":54033700, + "target":34962 + }, + { + "buffer":0, + "byteLength":71376, + "byteOffset":54069388, + "target":34962 + }, + { + "buffer":0, + "byteLength":25152, + "byteOffset":54140764, + "target":34963 + }, + { + "buffer":0, + "byteLength":528, + "byteOffset":54165916, + "target":34962 + }, + { + "buffer":0, + "byteLength":528, + "byteOffset":54166444, + "target":34962 + }, + { + "buffer":0, + "byteLength":352, + "byteOffset":54166972, + "target":34962 + }, + { + "buffer":0, + "byteLength":352, + "byteOffset":54167324, + "target":34962 + }, + { + "buffer":0, + "byteLength":704, + "byteOffset":54167676, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":54168380, + "target":34963 + }, + { + "buffer":0, + "byteLength":4992, + "byteOffset":54168524, + "target":34962 + }, + { + "buffer":0, + "byteLength":4992, + "byteOffset":54173516, + "target":34962 + }, + { + "buffer":0, + "byteLength":3328, + "byteOffset":54178508, + "target":34962 + }, + { + "buffer":0, + "byteLength":3328, + "byteOffset":54181836, + "target":34962 + }, + { + "buffer":0, + "byteLength":6656, + "byteOffset":54185164, + "target":34962 + }, + { + "buffer":0, + "byteLength":2304, + "byteOffset":54191820, + "target":34963 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":54194124, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":54194364, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":54194604, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":54194764, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":54194924, + "target":34962 + }, + { + "buffer":0, + "byteLength":60, + "byteOffset":54195244, + "target":34963 + }, + { + "buffer":0, + "byteLength":14088, + "byteOffset":54195304, + "target":34962 + }, + { + "buffer":0, + "byteLength":14088, + "byteOffset":54209392, + "target":34962 + }, + { + "buffer":0, + "byteLength":9392, + "byteOffset":54223480, + "target":34962 + }, + { + "buffer":0, + "byteLength":9392, + "byteOffset":54232872, + "target":34962 + }, + { + "buffer":0, + "byteLength":18784, + "byteOffset":54242264, + "target":34962 + }, + { + "buffer":0, + "byteLength":5160, + "byteOffset":54261048, + "target":34963 + }, + { + "buffer":0, + "byteLength":3552, + "byteOffset":54266208, + "target":34962 + }, + { + "buffer":0, + "byteLength":3552, + "byteOffset":54269760, + "target":34962 + }, + { + "buffer":0, + "byteLength":2368, + "byteOffset":54273312, + "target":34962 + }, + { + "buffer":0, + "byteLength":2368, + "byteOffset":54275680, + "target":34962 + }, + { + "buffer":0, + "byteLength":4736, + "byteOffset":54278048, + "target":34962 + }, + { + "buffer":0, + "byteLength":1184, + "byteOffset":54282784, + "target":34962 + }, + { + "buffer":0, + "byteLength":2368, + "byteOffset":54283968, + "target":34962 + }, + { + "buffer":0, + "byteLength":2368, + "byteOffset":54286336, + "target":34962 + }, + { + "buffer":0, + "byteLength":1728, + "byteOffset":54288704, + "target":34963 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":54290432, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":54291392, + "target":34962 + }, + { + "buffer":0, + "byteLength":640, + "byteOffset":54292352, + "target":34962 + }, + { + "buffer":0, + "byteLength":640, + "byteOffset":54292992, + "target":34962 + }, + { + "buffer":0, + "byteLength":1280, + "byteOffset":54293632, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":54294912, + "target":34962 + }, + { + "buffer":0, + "byteLength":640, + "byteOffset":54295232, + "target":34962 + }, + { + "buffer":0, + "byteLength":640, + "byteOffset":54295872, + "target":34962 + }, + { + "buffer":0, + "byteLength":504, + "byteOffset":54296512, + "target":34963 + }, + { + "buffer":0, + "byteLength":179544, + "byteOffset":54297016, + "target":34962 + }, + { + "buffer":0, + "byteLength":179544, + "byteOffset":54476560, + "target":34962 + }, + { + "buffer":0, + "byteLength":119696, + "byteOffset":54656104, + "target":34962 + }, + { + "buffer":0, + "byteLength":119696, + "byteOffset":54775800, + "target":34962 + }, + { + "buffer":0, + "byteLength":239392, + "byteOffset":54895496, + "target":34962 + }, + { + "buffer":0, + "byteLength":59848, + "byteOffset":55134888, + "target":34962 + }, + { + "buffer":0, + "byteLength":119696, + "byteOffset":55194736, + "target":34962 + }, + { + "buffer":0, + "byteLength":119696, + "byteOffset":55314432, + "target":34962 + }, + { + "buffer":0, + "byteLength":78432, + "byteOffset":55434128, + "target":34963 + }, + { + "buffer":0, + "byteLength":768, + "byteOffset":55512560, + "target":34962 + }, + { + "buffer":0, + "byteLength":768, + "byteOffset":55513328, + "target":34962 + }, + { + "buffer":0, + "byteLength":512, + "byteOffset":55514096, + "target":34962 + }, + { + "buffer":0, + "byteLength":512, + "byteOffset":55514608, + "target":34962 + }, + { + "buffer":0, + "byteLength":1024, + "byteOffset":55515120, + "target":34962 + }, + { + "buffer":0, + "byteLength":256, + "byteOffset":55516144, + "target":34962 + }, + { + "buffer":0, + "byteLength":512, + "byteOffset":55516400, + "target":34962 + }, + { + "buffer":0, + "byteLength":512, + "byteOffset":55516912, + "target":34962 + }, + { + "buffer":0, + "byteLength":204, + "byteOffset":55517424, + "target":34963 + }, + { + "buffer":0, + "byteLength":102720, + "byteOffset":55517628, + "target":34962 + }, + { + "buffer":0, + "byteLength":102720, + "byteOffset":55620348, + "target":34962 + }, + { + "buffer":0, + "byteLength":68480, + "byteOffset":55723068, + "target":34962 + }, + { + "buffer":0, + "byteLength":68480, + "byteOffset":55791548, + "target":34962 + }, + { + "buffer":0, + "byteLength":136960, + "byteOffset":55860028, + "target":34962 + }, + { + "buffer":0, + "byteLength":34240, + "byteOffset":55996988, + "target":34962 + }, + { + "buffer":0, + "byteLength":68480, + "byteOffset":56031228, + "target":34962 + }, + { + "buffer":0, + "byteLength":68480, + "byteOffset":56099708, + "target":34962 + }, + { + "buffer":0, + "byteLength":35520, + "byteOffset":56168188, + "target":34963 + }, + { + "buffer":0, + "byteLength":20868, + "byteOffset":56203708, + "target":34962 + }, + { + "buffer":0, + "byteLength":20868, + "byteOffset":56224576, + "target":34962 + }, + { + "buffer":0, + "byteLength":13912, + "byteOffset":56245444, + "target":34962 + }, + { + "buffer":0, + "byteLength":13912, + "byteOffset":56259356, + "target":34962 + }, + { + "buffer":0, + "byteLength":27824, + "byteOffset":56273268, + "target":34962 + }, + { + "buffer":0, + "byteLength":6956, + "byteOffset":56301092, + "target":34962 + }, + { + "buffer":0, + "byteLength":13912, + "byteOffset":56308048, + "target":34962 + }, + { + "buffer":0, + "byteLength":13912, + "byteOffset":56321960, + "target":34962 + }, + { + "buffer":0, + "byteLength":6216, + "byteOffset":56335872, + "target":34963 + }, + { + "buffer":0, + "byteLength":13248, + "byteOffset":56342088, + "target":34962 + }, + { + "buffer":0, + "byteLength":13248, + "byteOffset":56355336, + "target":34962 + }, + { + "buffer":0, + "byteLength":8832, + "byteOffset":56368584, + "target":34962 + }, + { + "buffer":0, + "byteLength":8832, + "byteOffset":56377416, + "target":34962 + }, + { + "buffer":0, + "byteLength":17664, + "byteOffset":56386248, + "target":34962 + }, + { + "buffer":0, + "byteLength":4416, + "byteOffset":56403912, + "target":34962 + }, + { + "buffer":0, + "byteLength":8832, + "byteOffset":56408328, + "target":34962 + }, + { + "buffer":0, + "byteLength":8832, + "byteOffset":56417160, + "target":34962 + }, + { + "buffer":0, + "byteLength":3312, + "byteOffset":56425992, + "target":34963 + }, + { + "buffer":0, + "byteLength":504, + "byteOffset":56429304, + "target":34962 + }, + { + "buffer":0, + "byteLength":504, + "byteOffset":56429808, + "target":34962 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":56430312, + "target":34962 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":56430648, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":56430984, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":56431656, + "target":34962 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":56431824, + "target":34962 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":56432160, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":56432496, + "target":34963 + }, + { + "buffer":0, + "byteLength":65760, + "byteOffset":56432736, + "target":34962 + }, + { + "buffer":0, + "byteLength":65760, + "byteOffset":56498496, + "target":34962 + }, + { + "buffer":0, + "byteLength":43840, + "byteOffset":56564256, + "target":34962 + }, + { + "buffer":0, + "byteLength":43840, + "byteOffset":56608096, + "target":34962 + }, + { + "buffer":0, + "byteLength":87680, + "byteOffset":56651936, + "target":34962 + }, + { + "buffer":0, + "byteLength":21920, + "byteOffset":56739616, + "target":34962 + }, + { + "buffer":0, + "byteLength":43840, + "byteOffset":56761536, + "target":34962 + }, + { + "buffer":0, + "byteLength":43840, + "byteOffset":56805376, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":56849216, + "target":34963 + }, + { + "buffer":0, + "byteLength":22236, + "byteOffset":56866256, + "target":34962 + }, + { + "buffer":0, + "byteLength":22236, + "byteOffset":56888492, + "target":34962 + }, + { + "buffer":0, + "byteLength":14824, + "byteOffset":56910728, + "target":34962 + }, + { + "buffer":0, + "byteLength":14824, + "byteOffset":56925552, + "target":34962 + }, + { + "buffer":0, + "byteLength":29648, + "byteOffset":56940376, + "target":34962 + }, + { + "buffer":0, + "byteLength":7412, + "byteOffset":56970024, + "target":34962 + }, + { + "buffer":0, + "byteLength":14824, + "byteOffset":56977436, + "target":34962 + }, + { + "buffer":0, + "byteLength":14824, + "byteOffset":56992260, + "target":34962 + }, + { + "buffer":0, + "byteLength":8904, + "byteOffset":57007084, + "target":34963 + }, + { + "buffer":0, + "byteLength":2064, + "byteOffset":57015988, + "target":34962 + }, + { + "buffer":0, + "byteLength":2064, + "byteOffset":57018052, + "target":34962 + }, + { + "buffer":0, + "byteLength":1376, + "byteOffset":57020116, + "target":34962 + }, + { + "buffer":0, + "byteLength":1376, + "byteOffset":57021492, + "target":34962 + }, + { + "buffer":0, + "byteLength":2752, + "byteOffset":57022868, + "target":34962 + }, + { + "buffer":0, + "byteLength":688, + "byteOffset":57025620, + "target":34962 + }, + { + "buffer":0, + "byteLength":1376, + "byteOffset":57026308, + "target":34962 + }, + { + "buffer":0, + "byteLength":1376, + "byteOffset":57027684, + "target":34962 + }, + { + "buffer":0, + "byteLength":540, + "byteOffset":57029060, + "target":34963 + }, + { + "buffer":0, + "byteLength":6192, + "byteOffset":57029600, + "target":34962 + }, + { + "buffer":0, + "byteLength":6192, + "byteOffset":57035792, + "target":34962 + }, + { + "buffer":0, + "byteLength":4128, + "byteOffset":57041984, + "target":34962 + }, + { + "buffer":0, + "byteLength":4128, + "byteOffset":57046112, + "target":34962 + }, + { + "buffer":0, + "byteLength":8256, + "byteOffset":57050240, + "target":34962 + }, + { + "buffer":0, + "byteLength":2064, + "byteOffset":57058496, + "target":34962 + }, + { + "buffer":0, + "byteLength":4128, + "byteOffset":57060560, + "target":34962 + }, + { + "buffer":0, + "byteLength":4128, + "byteOffset":57064688, + "target":34962 + }, + { + "buffer":0, + "byteLength":1800, + "byteOffset":57068816, + "target":34963 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":57070616, + "target":34962 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":57071024, + "target":34962 + }, + { + "buffer":0, + "byteLength":272, + "byteOffset":57071432, + "target":34962 + }, + { + "buffer":0, + "byteLength":272, + "byteOffset":57071704, + "target":34962 + }, + { + "buffer":0, + "byteLength":544, + "byteOffset":57071976, + "target":34962 + }, + { + "buffer":0, + "byteLength":136, + "byteOffset":57072520, + "target":34962 + }, + { + "buffer":0, + "byteLength":272, + "byteOffset":57072656, + "target":34962 + }, + { + "buffer":0, + "byteLength":272, + "byteOffset":57072928, + "target":34962 + }, + { + "buffer":0, + "byteLength":204, + "byteOffset":57073200, + "target":34963 + }, + { + "buffer":0, + "byteLength":55380, + "byteOffset":57073404, + "target":34962 + }, + { + "buffer":0, + "byteLength":55380, + "byteOffset":57128784, + "target":34962 + }, + { + "buffer":0, + "byteLength":36920, + "byteOffset":57184164, + "target":34962 + }, + { + "buffer":0, + "byteLength":36920, + "byteOffset":57221084, + "target":34962 + }, + { + "buffer":0, + "byteLength":73840, + "byteOffset":57258004, + "target":34962 + }, + { + "buffer":0, + "byteLength":18460, + "byteOffset":57331844, + "target":34962 + }, + { + "buffer":0, + "byteLength":36920, + "byteOffset":57350304, + "target":34962 + }, + { + "buffer":0, + "byteLength":36920, + "byteOffset":57387224, + "target":34962 + }, + { + "buffer":0, + "byteLength":22356, + "byteOffset":57424144, + "target":34963 + }, + { + "buffer":0, + "byteLength":179544, + "byteOffset":57446500, + "target":34962 + }, + { + "buffer":0, + "byteLength":179544, + "byteOffset":57626044, + "target":34962 + }, + { + "buffer":0, + "byteLength":119696, + "byteOffset":57805588, + "target":34962 + }, + { + "buffer":0, + "byteLength":119696, + "byteOffset":57925284, + "target":34962 + }, + { + "buffer":0, + "byteLength":239392, + "byteOffset":58044980, + "target":34962 + }, + { + "buffer":0, + "byteLength":59848, + "byteOffset":58284372, + "target":34962 + }, + { + "buffer":0, + "byteLength":119696, + "byteOffset":58344220, + "target":34962 + }, + { + "buffer":0, + "byteLength":119696, + "byteOffset":58463916, + "target":34962 + }, + { + "buffer":0, + "byteLength":768, + "byteOffset":58583612, + "target":34962 + }, + { + "buffer":0, + "byteLength":768, + "byteOffset":58584380, + "target":34962 + }, + { + "buffer":0, + "byteLength":512, + "byteOffset":58585148, + "target":34962 + }, + { + "buffer":0, + "byteLength":512, + "byteOffset":58585660, + "target":34962 + }, + { + "buffer":0, + "byteLength":1024, + "byteOffset":58586172, + "target":34962 + }, + { + "buffer":0, + "byteLength":256, + "byteOffset":58587196, + "target":34962 + }, + { + "buffer":0, + "byteLength":512, + "byteOffset":58587452, + "target":34962 + }, + { + "buffer":0, + "byteLength":512, + "byteOffset":58587964, + "target":34962 + }, + { + "buffer":0, + "byteLength":102720, + "byteOffset":58588476, + "target":34962 + }, + { + "buffer":0, + "byteLength":102720, + "byteOffset":58691196, + "target":34962 + }, + { + "buffer":0, + "byteLength":68480, + "byteOffset":58793916, + "target":34962 + }, + { + "buffer":0, + "byteLength":68480, + "byteOffset":58862396, + "target":34962 + }, + { + "buffer":0, + "byteLength":136960, + "byteOffset":58930876, + "target":34962 + }, + { + "buffer":0, + "byteLength":34240, + "byteOffset":59067836, + "target":34962 + }, + { + "buffer":0, + "byteLength":68480, + "byteOffset":59102076, + "target":34962 + }, + { + "buffer":0, + "byteLength":68480, + "byteOffset":59170556, + "target":34962 + }, + { + "buffer":0, + "byteLength":20868, + "byteOffset":59239036, + "target":34962 + }, + { + "buffer":0, + "byteLength":20868, + "byteOffset":59259904, + "target":34962 + }, + { + "buffer":0, + "byteLength":13912, + "byteOffset":59280772, + "target":34962 + }, + { + "buffer":0, + "byteLength":13912, + "byteOffset":59294684, + "target":34962 + }, + { + "buffer":0, + "byteLength":27824, + "byteOffset":59308596, + "target":34962 + }, + { + "buffer":0, + "byteLength":6956, + "byteOffset":59336420, + "target":34962 + }, + { + "buffer":0, + "byteLength":13912, + "byteOffset":59343376, + "target":34962 + }, + { + "buffer":0, + "byteLength":13912, + "byteOffset":59357288, + "target":34962 + }, + { + "buffer":0, + "byteLength":13248, + "byteOffset":59371200, + "target":34962 + }, + { + "buffer":0, + "byteLength":13248, + "byteOffset":59384448, + "target":34962 + }, + { + "buffer":0, + "byteLength":8832, + "byteOffset":59397696, + "target":34962 + }, + { + "buffer":0, + "byteLength":8832, + "byteOffset":59406528, + "target":34962 + }, + { + "buffer":0, + "byteLength":17664, + "byteOffset":59415360, + "target":34962 + }, + { + "buffer":0, + "byteLength":4416, + "byteOffset":59433024, + "target":34962 + }, + { + "buffer":0, + "byteLength":8832, + "byteOffset":59437440, + "target":34962 + }, + { + "buffer":0, + "byteLength":8832, + "byteOffset":59446272, + "target":34962 + }, + { + "buffer":0, + "byteLength":504, + "byteOffset":59455104, + "target":34962 + }, + { + "buffer":0, + "byteLength":504, + "byteOffset":59455608, + "target":34962 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":59456112, + "target":34962 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":59456448, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":59456784, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":59457456, + "target":34962 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":59457624, + "target":34962 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":59457960, + "target":34962 + }, + { + "buffer":0, + "byteLength":65760, + "byteOffset":59458296, + "target":34962 + }, + { + "buffer":0, + "byteLength":65760, + "byteOffset":59524056, + "target":34962 + }, + { + "buffer":0, + "byteLength":43840, + "byteOffset":59589816, + "target":34962 + }, + { + "buffer":0, + "byteLength":43840, + "byteOffset":59633656, + "target":34962 + }, + { + "buffer":0, + "byteLength":87680, + "byteOffset":59677496, + "target":34962 + }, + { + "buffer":0, + "byteLength":21920, + "byteOffset":59765176, + "target":34962 + }, + { + "buffer":0, + "byteLength":43840, + "byteOffset":59787096, + "target":34962 + }, + { + "buffer":0, + "byteLength":43840, + "byteOffset":59830936, + "target":34962 + }, + { + "buffer":0, + "byteLength":22236, + "byteOffset":59874776, + "target":34962 + }, + { + "buffer":0, + "byteLength":22236, + "byteOffset":59897012, + "target":34962 + }, + { + "buffer":0, + "byteLength":14824, + "byteOffset":59919248, + "target":34962 + }, + { + "buffer":0, + "byteLength":14824, + "byteOffset":59934072, + "target":34962 + }, + { + "buffer":0, + "byteLength":29648, + "byteOffset":59948896, + "target":34962 + }, + { + "buffer":0, + "byteLength":7412, + "byteOffset":59978544, + "target":34962 + }, + { + "buffer":0, + "byteLength":14824, + "byteOffset":59985956, + "target":34962 + }, + { + "buffer":0, + "byteLength":14824, + "byteOffset":60000780, + "target":34962 + }, + { + "buffer":0, + "byteLength":2064, + "byteOffset":60015604, + "target":34962 + }, + { + "buffer":0, + "byteLength":2064, + "byteOffset":60017668, + "target":34962 + }, + { + "buffer":0, + "byteLength":1376, + "byteOffset":60019732, + "target":34962 + }, + { + "buffer":0, + "byteLength":1376, + "byteOffset":60021108, + "target":34962 + }, + { + "buffer":0, + "byteLength":2752, + "byteOffset":60022484, + "target":34962 + }, + { + "buffer":0, + "byteLength":688, + "byteOffset":60025236, + "target":34962 + }, + { + "buffer":0, + "byteLength":1376, + "byteOffset":60025924, + "target":34962 + }, + { + "buffer":0, + "byteLength":1376, + "byteOffset":60027300, + "target":34962 + }, + { + "buffer":0, + "byteLength":6192, + "byteOffset":60028676, + "target":34962 + }, + { + "buffer":0, + "byteLength":6192, + "byteOffset":60034868, + "target":34962 + }, + { + "buffer":0, + "byteLength":4128, + "byteOffset":60041060, + "target":34962 + }, + { + "buffer":0, + "byteLength":4128, + "byteOffset":60045188, + "target":34962 + }, + { + "buffer":0, + "byteLength":8256, + "byteOffset":60049316, + "target":34962 + }, + { + "buffer":0, + "byteLength":2064, + "byteOffset":60057572, + "target":34962 + }, + { + "buffer":0, + "byteLength":4128, + "byteOffset":60059636, + "target":34962 + }, + { + "buffer":0, + "byteLength":4128, + "byteOffset":60063764, + "target":34962 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":60067892, + "target":34962 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":60068300, + "target":34962 + }, + { + "buffer":0, + "byteLength":272, + "byteOffset":60068708, + "target":34962 + }, + { + "buffer":0, + "byteLength":272, + "byteOffset":60068980, + "target":34962 + }, + { + "buffer":0, + "byteLength":544, + "byteOffset":60069252, + "target":34962 + }, + { + "buffer":0, + "byteLength":136, + "byteOffset":60069796, + "target":34962 + }, + { + "buffer":0, + "byteLength":272, + "byteOffset":60069932, + "target":34962 + }, + { + "buffer":0, + "byteLength":272, + "byteOffset":60070204, + "target":34962 + }, + { + "buffer":0, + "byteLength":55380, + "byteOffset":60070476, + "target":34962 + }, + { + "buffer":0, + "byteLength":55380, + "byteOffset":60125856, + "target":34962 + }, + { + "buffer":0, + "byteLength":36920, + "byteOffset":60181236, + "target":34962 + }, + { + "buffer":0, + "byteLength":36920, + "byteOffset":60218156, + "target":34962 + }, + { + "buffer":0, + "byteLength":73840, + "byteOffset":60255076, + "target":34962 + }, + { + "buffer":0, + "byteLength":18460, + "byteOffset":60328916, + "target":34962 + }, + { + "buffer":0, + "byteLength":36920, + "byteOffset":60347376, + "target":34962 + }, + { + "buffer":0, + "byteLength":36920, + "byteOffset":60384296, + "target":34962 + }, + { + "buffer":0, + "byteLength":227808, + "byteOffset":60421216, + "target":34962 + }, + { + "buffer":0, + "byteLength":227808, + "byteOffset":60649024, + "target":34962 + }, + { + "buffer":0, + "byteLength":151872, + "byteOffset":60876832, + "target":34962 + }, + { + "buffer":0, + "byteLength":151872, + "byteOffset":61028704, + "target":34962 + }, + { + "buffer":0, + "byteLength":303744, + "byteOffset":61180576, + "target":34962 + }, + { + "buffer":0, + "byteLength":75936, + "byteOffset":61484320, + "target":34962 + }, + { + "buffer":0, + "byteLength":151872, + "byteOffset":61560256, + "target":34962 + }, + { + "buffer":0, + "byteLength":151872, + "byteOffset":61712128, + "target":34962 + }, + { + "buffer":0, + "byteLength":87504, + "byteOffset":61864000, + "target":34963 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":61951504, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":61951744, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":61951984, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":61952144, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":61952304, + "target":34962 + }, + { + "buffer":0, + "byteLength":80, + "byteOffset":61952624, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":61952704, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":61952864, + "target":34962 + }, + { + "buffer":0, + "byteLength":60, + "byteOffset":61953024, + "target":34963 + }, + { + "buffer":0, + "byteLength":82776, + "byteOffset":61953084, + "target":34962 + }, + { + "buffer":0, + "byteLength":82776, + "byteOffset":62035860, + "target":34962 + }, + { + "buffer":0, + "byteLength":55184, + "byteOffset":62118636, + "target":34962 + }, + { + "buffer":0, + "byteLength":55184, + "byteOffset":62173820, + "target":34962 + }, + { + "buffer":0, + "byteLength":110368, + "byteOffset":62229004, + "target":34962 + }, + { + "buffer":0, + "byteLength":27592, + "byteOffset":62339372, + "target":34962 + }, + { + "buffer":0, + "byteLength":55184, + "byteOffset":62366964, + "target":34962 + }, + { + "buffer":0, + "byteLength":55184, + "byteOffset":62422148, + "target":34962 + }, + { + "buffer":0, + "byteLength":28800, + "byteOffset":62477332, + "target":34963 + }, + { + "buffer":0, + "byteLength":10800, + "byteOffset":62506132, + "target":34962 + }, + { + "buffer":0, + "byteLength":10800, + "byteOffset":62516932, + "target":34962 + }, + { + "buffer":0, + "byteLength":7200, + "byteOffset":62527732, + "target":34962 + }, + { + "buffer":0, + "byteLength":7200, + "byteOffset":62534932, + "target":34962 + }, + { + "buffer":0, + "byteLength":14400, + "byteOffset":62542132, + "target":34962 + }, + { + "buffer":0, + "byteLength":3600, + "byteOffset":62556532, + "target":34962 + }, + { + "buffer":0, + "byteLength":7200, + "byteOffset":62560132, + "target":34962 + }, + { + "buffer":0, + "byteLength":7200, + "byteOffset":62567332, + "target":34962 + }, + { + "buffer":0, + "byteLength":3348, + "byteOffset":62574532, + "target":34963 + }, + { + "buffer":0, + "byteLength":86400, + "byteOffset":62577880, + "target":34962 + }, + { + "buffer":0, + "byteLength":86400, + "byteOffset":62664280, + "target":34962 + }, + { + "buffer":0, + "byteLength":57600, + "byteOffset":62750680, + "target":34962 + }, + { + "buffer":0, + "byteLength":57600, + "byteOffset":62808280, + "target":34962 + }, + { + "buffer":0, + "byteLength":115200, + "byteOffset":62865880, + "target":34962 + }, + { + "buffer":0, + "byteLength":28800, + "byteOffset":62981080, + "target":34962 + }, + { + "buffer":0, + "byteLength":57600, + "byteOffset":63009880, + "target":34962 + }, + { + "buffer":0, + "byteLength":57600, + "byteOffset":63067480, + "target":34962 + }, + { + "buffer":0, + "byteLength":21600, + "byteOffset":63125080, + "target":34963 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":63146680, + "target":34962 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":63153832, + "target":34962 + }, + { + "buffer":0, + "byteLength":4768, + "byteOffset":63160984, + "target":34962 + }, + { + "buffer":0, + "byteLength":4768, + "byteOffset":63165752, + "target":34962 + }, + { + "buffer":0, + "byteLength":9536, + "byteOffset":63170520, + "target":34962 + }, + { + "buffer":0, + "byteLength":2384, + "byteOffset":63180056, + "target":34962 + }, + { + "buffer":0, + "byteLength":4768, + "byteOffset":63182440, + "target":34962 + }, + { + "buffer":0, + "byteLength":4768, + "byteOffset":63187208, + "target":34962 + }, + { + "buffer":0, + "byteLength":2748, + "byteOffset":63191976, + "target":34963 + }, + { + "buffer":0, + "byteLength":11892, + "byteOffset":63194724, + "target":34962 + }, + { + "buffer":0, + "byteLength":11892, + "byteOffset":63206616, + "target":34962 + }, + { + "buffer":0, + "byteLength":7928, + "byteOffset":63218508, + "target":34962 + }, + { + "buffer":0, + "byteLength":7928, + "byteOffset":63226436, + "target":34962 + }, + { + "buffer":0, + "byteLength":15856, + "byteOffset":63234364, + "target":34962 + }, + { + "buffer":0, + "byteLength":3964, + "byteOffset":63250220, + "target":34962 + }, + { + "buffer":0, + "byteLength":7928, + "byteOffset":63254184, + "target":34962 + }, + { + "buffer":0, + "byteLength":7928, + "byteOffset":63262112, + "target":34962 + }, + { + "buffer":0, + "byteLength":7476, + "byteOffset":63270040, + "target":34963 + }, + { + "buffer":0, + "byteLength":1368, + "byteOffset":63277516, + "target":34962 + }, + { + "buffer":0, + "byteLength":1368, + "byteOffset":63278884, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":63280252, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":63281164, + "target":34962 + }, + { + "buffer":0, + "byteLength":1824, + "byteOffset":63282076, + "target":34962 + }, + { + "buffer":0, + "byteLength":456, + "byteOffset":63283900, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":63284356, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":63285268, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":63286180, + "target":34963 + }, + { + "buffer":0, + "byteLength":5616, + "byteOffset":63286564, + "target":34962 + }, + { + "buffer":0, + "byteLength":5616, + "byteOffset":63292180, + "target":34962 + }, + { + "buffer":0, + "byteLength":3744, + "byteOffset":63297796, + "target":34962 + }, + { + "buffer":0, + "byteLength":3744, + "byteOffset":63301540, + "target":34962 + }, + { + "buffer":0, + "byteLength":7488, + "byteOffset":63305284, + "target":34962 + }, + { + "buffer":0, + "byteLength":1872, + "byteOffset":63312772, + "target":34962 + }, + { + "buffer":0, + "byteLength":3744, + "byteOffset":63314644, + "target":34962 + }, + { + "buffer":0, + "byteLength":3744, + "byteOffset":63318388, + "target":34962 + }, + { + "buffer":0, + "byteLength":4896, + "byteOffset":63322132, + "target":34963 + }, + { + "buffer":0, + "byteLength":238728, + "byteOffset":63327028, + "target":34962 + }, + { + "buffer":0, + "byteLength":238728, + "byteOffset":63565756, + "target":34962 + }, + { + "buffer":0, + "byteLength":159152, + "byteOffset":63804484, + "target":34962 + }, + { + "buffer":0, + "byteLength":159152, + "byteOffset":63963636, + "target":34962 + }, + { + "buffer":0, + "byteLength":318304, + "byteOffset":64122788, + "target":34962 + }, + { + "buffer":0, + "byteLength":79576, + "byteOffset":64441092, + "target":34962 + }, + { + "buffer":0, + "byteLength":159152, + "byteOffset":64520668, + "target":34962 + }, + { + "buffer":0, + "byteLength":159152, + "byteOffset":64679820, + "target":34962 + }, + { + "buffer":0, + "byteLength":88980, + "byteOffset":64838972, + "target":34963 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":64927952, + "target":34962 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":64928360, + "target":34962 + }, + { + "buffer":0, + "byteLength":272, + "byteOffset":64928768, + "target":34962 + }, + { + "buffer":0, + "byteLength":272, + "byteOffset":64929040, + "target":34962 + }, + { + "buffer":0, + "byteLength":544, + "byteOffset":64929312, + "target":34962 + }, + { + "buffer":0, + "byteLength":136, + "byteOffset":64929856, + "target":34962 + }, + { + "buffer":0, + "byteLength":272, + "byteOffset":64929992, + "target":34962 + }, + { + "buffer":0, + "byteLength":272, + "byteOffset":64930264, + "target":34962 + }, + { + "buffer":0, + "byteLength":108, + "byteOffset":64930536, + "target":34963 + }, + { + "buffer":0, + "byteLength":44496, + "byteOffset":64930644, + "target":34962 + }, + { + "buffer":0, + "byteLength":44496, + "byteOffset":64975140, + "target":34962 + }, + { + "buffer":0, + "byteLength":29664, + "byteOffset":65019636, + "target":34962 + }, + { + "buffer":0, + "byteLength":29664, + "byteOffset":65049300, + "target":34962 + }, + { + "buffer":0, + "byteLength":59328, + "byteOffset":65078964, + "target":34962 + }, + { + "buffer":0, + "byteLength":14832, + "byteOffset":65138292, + "target":34962 + }, + { + "buffer":0, + "byteLength":29664, + "byteOffset":65153124, + "target":34962 + }, + { + "buffer":0, + "byteLength":29664, + "byteOffset":65182788, + "target":34962 + }, + { + "buffer":0, + "byteLength":17724, + "byteOffset":65212452, + "target":34963 + }, + { + "buffer":0, + "byteLength":227808, + "byteOffset":65230176, + "target":34962 + }, + { + "buffer":0, + "byteLength":227808, + "byteOffset":65457984, + "target":34962 + }, + { + "buffer":0, + "byteLength":151872, + "byteOffset":65685792, + "target":34962 + }, + { + "buffer":0, + "byteLength":151872, + "byteOffset":65837664, + "target":34962 + }, + { + "buffer":0, + "byteLength":303744, + "byteOffset":65989536, + "target":34962 + }, + { + "buffer":0, + "byteLength":75936, + "byteOffset":66293280, + "target":34962 + }, + { + "buffer":0, + "byteLength":151872, + "byteOffset":66369216, + "target":34962 + }, + { + "buffer":0, + "byteLength":151872, + "byteOffset":66521088, + "target":34962 + }, + { + "buffer":0, + "byteLength":87504, + "byteOffset":66672960, + "target":34963 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":66760464, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":66760704, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":66760944, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":66761104, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":66761264, + "target":34962 + }, + { + "buffer":0, + "byteLength":80, + "byteOffset":66761584, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":66761664, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":66761824, + "target":34962 + }, + { + "buffer":0, + "byteLength":60, + "byteOffset":66761984, + "target":34963 + }, + { + "buffer":0, + "byteLength":82776, + "byteOffset":66762044, + "target":34962 + }, + { + "buffer":0, + "byteLength":82776, + "byteOffset":66844820, + "target":34962 + }, + { + "buffer":0, + "byteLength":55184, + "byteOffset":66927596, + "target":34962 + }, + { + "buffer":0, + "byteLength":55184, + "byteOffset":66982780, + "target":34962 + }, + { + "buffer":0, + "byteLength":110368, + "byteOffset":67037964, + "target":34962 + }, + { + "buffer":0, + "byteLength":27592, + "byteOffset":67148332, + "target":34962 + }, + { + "buffer":0, + "byteLength":55184, + "byteOffset":67175924, + "target":34962 + }, + { + "buffer":0, + "byteLength":55184, + "byteOffset":67231108, + "target":34962 + }, + { + "buffer":0, + "byteLength":28800, + "byteOffset":67286292, + "target":34963 + }, + { + "buffer":0, + "byteLength":10800, + "byteOffset":67315092, + "target":34962 + }, + { + "buffer":0, + "byteLength":10800, + "byteOffset":67325892, + "target":34962 + }, + { + "buffer":0, + "byteLength":7200, + "byteOffset":67336692, + "target":34962 + }, + { + "buffer":0, + "byteLength":7200, + "byteOffset":67343892, + "target":34962 + }, + { + "buffer":0, + "byteLength":14400, + "byteOffset":67351092, + "target":34962 + }, + { + "buffer":0, + "byteLength":3600, + "byteOffset":67365492, + "target":34962 + }, + { + "buffer":0, + "byteLength":7200, + "byteOffset":67369092, + "target":34962 + }, + { + "buffer":0, + "byteLength":7200, + "byteOffset":67376292, + "target":34962 + }, + { + "buffer":0, + "byteLength":3348, + "byteOffset":67383492, + "target":34963 + }, + { + "buffer":0, + "byteLength":86400, + "byteOffset":67386840, + "target":34962 + }, + { + "buffer":0, + "byteLength":86400, + "byteOffset":67473240, + "target":34962 + }, + { + "buffer":0, + "byteLength":57600, + "byteOffset":67559640, + "target":34962 + }, + { + "buffer":0, + "byteLength":57600, + "byteOffset":67617240, + "target":34962 + }, + { + "buffer":0, + "byteLength":115200, + "byteOffset":67674840, + "target":34962 + }, + { + "buffer":0, + "byteLength":28800, + "byteOffset":67790040, + "target":34962 + }, + { + "buffer":0, + "byteLength":57600, + "byteOffset":67818840, + "target":34962 + }, + { + "buffer":0, + "byteLength":57600, + "byteOffset":67876440, + "target":34962 + }, + { + "buffer":0, + "byteLength":21600, + "byteOffset":67934040, + "target":34963 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":67955640, + "target":34962 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":67962792, + "target":34962 + }, + { + "buffer":0, + "byteLength":4768, + "byteOffset":67969944, + "target":34962 + }, + { + "buffer":0, + "byteLength":4768, + "byteOffset":67974712, + "target":34962 + }, + { + "buffer":0, + "byteLength":9536, + "byteOffset":67979480, + "target":34962 + }, + { + "buffer":0, + "byteLength":2384, + "byteOffset":67989016, + "target":34962 + }, + { + "buffer":0, + "byteLength":4768, + "byteOffset":67991400, + "target":34962 + }, + { + "buffer":0, + "byteLength":4768, + "byteOffset":67996168, + "target":34962 + }, + { + "buffer":0, + "byteLength":2748, + "byteOffset":68000936, + "target":34963 + }, + { + "buffer":0, + "byteLength":11892, + "byteOffset":68003684, + "target":34962 + }, + { + "buffer":0, + "byteLength":11892, + "byteOffset":68015576, + "target":34962 + }, + { + "buffer":0, + "byteLength":7928, + "byteOffset":68027468, + "target":34962 + }, + { + "buffer":0, + "byteLength":7928, + "byteOffset":68035396, + "target":34962 + }, + { + "buffer":0, + "byteLength":15856, + "byteOffset":68043324, + "target":34962 + }, + { + "buffer":0, + "byteLength":3964, + "byteOffset":68059180, + "target":34962 + }, + { + "buffer":0, + "byteLength":7928, + "byteOffset":68063144, + "target":34962 + }, + { + "buffer":0, + "byteLength":7928, + "byteOffset":68071072, + "target":34962 + }, + { + "buffer":0, + "byteLength":7476, + "byteOffset":68079000, + "target":34963 + }, + { + "buffer":0, + "byteLength":1368, + "byteOffset":68086476, + "target":34962 + }, + { + "buffer":0, + "byteLength":1368, + "byteOffset":68087844, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":68089212, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":68090124, + "target":34962 + }, + { + "buffer":0, + "byteLength":1824, + "byteOffset":68091036, + "target":34962 + }, + { + "buffer":0, + "byteLength":456, + "byteOffset":68092860, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":68093316, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":68094228, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":68095140, + "target":34963 + }, + { + "buffer":0, + "byteLength":5616, + "byteOffset":68095524, + "target":34962 + }, + { + "buffer":0, + "byteLength":5616, + "byteOffset":68101140, + "target":34962 + }, + { + "buffer":0, + "byteLength":3744, + "byteOffset":68106756, + "target":34962 + }, + { + "buffer":0, + "byteLength":3744, + "byteOffset":68110500, + "target":34962 + }, + { + "buffer":0, + "byteLength":7488, + "byteOffset":68114244, + "target":34962 + }, + { + "buffer":0, + "byteLength":1872, + "byteOffset":68121732, + "target":34962 + }, + { + "buffer":0, + "byteLength":3744, + "byteOffset":68123604, + "target":34962 + }, + { + "buffer":0, + "byteLength":3744, + "byteOffset":68127348, + "target":34962 + }, + { + "buffer":0, + "byteLength":238728, + "byteOffset":68131092, + "target":34962 + }, + { + "buffer":0, + "byteLength":238728, + "byteOffset":68369820, + "target":34962 + }, + { + "buffer":0, + "byteLength":159152, + "byteOffset":68608548, + "target":34962 + }, + { + "buffer":0, + "byteLength":159152, + "byteOffset":68767700, + "target":34962 + }, + { + "buffer":0, + "byteLength":318304, + "byteOffset":68926852, + "target":34962 + }, + { + "buffer":0, + "byteLength":79576, + "byteOffset":69245156, + "target":34962 + }, + { + "buffer":0, + "byteLength":159152, + "byteOffset":69324732, + "target":34962 + }, + { + "buffer":0, + "byteLength":159152, + "byteOffset":69483884, + "target":34962 + }, + { + "buffer":0, + "byteLength":88980, + "byteOffset":69643036, + "target":34963 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":69732016, + "target":34962 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":69732424, + "target":34962 + }, + { + "buffer":0, + "byteLength":272, + "byteOffset":69732832, + "target":34962 + }, + { + "buffer":0, + "byteLength":272, + "byteOffset":69733104, + "target":34962 + }, + { + "buffer":0, + "byteLength":544, + "byteOffset":69733376, + "target":34962 + }, + { + "buffer":0, + "byteLength":136, + "byteOffset":69733920, + "target":34962 + }, + { + "buffer":0, + "byteLength":272, + "byteOffset":69734056, + "target":34962 + }, + { + "buffer":0, + "byteLength":272, + "byteOffset":69734328, + "target":34962 + }, + { + "buffer":0, + "byteLength":108, + "byteOffset":69734600, + "target":34963 + }, + { + "buffer":0, + "byteLength":44496, + "byteOffset":69734708, + "target":34962 + }, + { + "buffer":0, + "byteLength":44496, + "byteOffset":69779204, + "target":34962 + }, + { + "buffer":0, + "byteLength":29664, + "byteOffset":69823700, + "target":34962 + }, + { + "buffer":0, + "byteLength":29664, + "byteOffset":69853364, + "target":34962 + }, + { + "buffer":0, + "byteLength":59328, + "byteOffset":69883028, + "target":34962 + }, + { + "buffer":0, + "byteLength":14832, + "byteOffset":69942356, + "target":34962 + }, + { + "buffer":0, + "byteLength":29664, + "byteOffset":69957188, + "target":34962 + }, + { + "buffer":0, + "byteLength":29664, + "byteOffset":69986852, + "target":34962 + }, + { + "buffer":0, + "byteLength":17724, + "byteOffset":70016516, + "target":34963 + }, + { + "buffer":0, + "byteLength":191328, + "byteOffset":70034240, + "target":34962 + }, + { + "buffer":0, + "byteLength":191328, + "byteOffset":70225568, + "target":34962 + }, + { + "buffer":0, + "byteLength":127552, + "byteOffset":70416896, + "target":34962 + }, + { + "buffer":0, + "byteLength":127552, + "byteOffset":70544448, + "target":34962 + }, + { + "buffer":0, + "byteLength":255104, + "byteOffset":70672000, + "target":34962 + }, + { + "buffer":0, + "byteLength":63776, + "byteOffset":70927104, + "target":34962 + }, + { + "buffer":0, + "byteLength":127552, + "byteOffset":70990880, + "target":34962 + }, + { + "buffer":0, + "byteLength":127552, + "byteOffset":71118432, + "target":34962 + }, + { + "buffer":0, + "byteLength":82200, + "byteOffset":71245984, + "target":34963 + }, + { + "buffer":0, + "byteLength":1776, + "byteOffset":71328184, + "target":34962 + }, + { + "buffer":0, + "byteLength":1776, + "byteOffset":71329960, + "target":34962 + }, + { + "buffer":0, + "byteLength":1184, + "byteOffset":71331736, + "target":34962 + }, + { + "buffer":0, + "byteLength":1184, + "byteOffset":71332920, + "target":34962 + }, + { + "buffer":0, + "byteLength":2368, + "byteOffset":71334104, + "target":34962 + }, + { + "buffer":0, + "byteLength":592, + "byteOffset":71336472, + "target":34962 + }, + { + "buffer":0, + "byteLength":1184, + "byteOffset":71337064, + "target":34962 + }, + { + "buffer":0, + "byteLength":1184, + "byteOffset":71338248, + "target":34962 + }, + { + "buffer":0, + "byteLength":564, + "byteOffset":71339432, + "target":34963 + }, + { + "buffer":0, + "byteLength":9120, + "byteOffset":71339996, + "target":34962 + }, + { + "buffer":0, + "byteLength":9120, + "byteOffset":71349116, + "target":34962 + }, + { + "buffer":0, + "byteLength":6080, + "byteOffset":71358236, + "target":34962 + }, + { + "buffer":0, + "byteLength":6080, + "byteOffset":71364316, + "target":34962 + }, + { + "buffer":0, + "byteLength":12160, + "byteOffset":71370396, + "target":34962 + }, + { + "buffer":0, + "byteLength":3040, + "byteOffset":71382556, + "target":34962 + }, + { + "buffer":0, + "byteLength":6080, + "byteOffset":71385596, + "target":34962 + }, + { + "buffer":0, + "byteLength":6080, + "byteOffset":71391676, + "target":34962 + }, + { + "buffer":0, + "byteLength":3456, + "byteOffset":71397756, + "target":34963 + }, + { + "buffer":0, + "byteLength":504, + "byteOffset":71401212, + "target":34962 + }, + { + "buffer":0, + "byteLength":504, + "byteOffset":71401716, + "target":34962 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":71402220, + "target":34962 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":71402556, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":71402892, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":71403564, + "target":34962 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":71403732, + "target":34962 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":71404068, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":71404404, + "target":34963 + }, + { + "buffer":0, + "byteLength":1112832, + "byteOffset":71404644, + "target":34962 + }, + { + "buffer":0, + "byteLength":1112832, + "byteOffset":72517476, + "target":34962 + }, + { + "buffer":0, + "byteLength":741888, + "byteOffset":73630308, + "target":34962 + }, + { + "buffer":0, + "byteLength":741888, + "byteOffset":74372196, + "target":34962 + }, + { + "buffer":0, + "byteLength":1483776, + "byteOffset":75114084, + "target":34962 + }, + { + "buffer":0, + "byteLength":370944, + "byteOffset":76597860, + "target":34962 + }, + { + "buffer":0, + "byteLength":741888, + "byteOffset":76968804, + "target":34962 + }, + { + "buffer":0, + "byteLength":741888, + "byteOffset":77710692, + "target":34962 + }, + { + "buffer":0, + "byteLength":556416, + "byteOffset":78452580, + "target":34963 + }, + { + "buffer":0, + "byteLength":1419648, + "byteOffset":79008996, + "target":34962 + }, + { + "buffer":0, + "byteLength":1419648, + "byteOffset":80428644, + "target":34962 + }, + { + "buffer":0, + "byteLength":946432, + "byteOffset":81848292, + "target":34962 + }, + { + "buffer":0, + "byteLength":946432, + "byteOffset":82794724, + "target":34962 + }, + { + "buffer":0, + "byteLength":1892864, + "byteOffset":83741156, + "target":34962 + }, + { + "buffer":0, + "byteLength":473216, + "byteOffset":85634020, + "target":34962 + }, + { + "buffer":0, + "byteLength":946432, + "byteOffset":86107236, + "target":34962 + }, + { + "buffer":0, + "byteLength":946432, + "byteOffset":87053668, + "target":34962 + }, + { + "buffer":0, + "byteLength":751728, + "byteOffset":88000100, + "target":34963 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":88751828, + "target":34962 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":88752164, + "target":34962 + }, + { + "buffer":0, + "byteLength":224, + "byteOffset":88752500, + "target":34962 + }, + { + "buffer":0, + "byteLength":224, + "byteOffset":88752724, + "target":34962 + }, + { + "buffer":0, + "byteLength":448, + "byteOffset":88752948, + "target":34962 + }, + { + "buffer":0, + "byteLength":112, + "byteOffset":88753396, + "target":34962 + }, + { + "buffer":0, + "byteLength":224, + "byteOffset":88753508, + "target":34962 + }, + { + "buffer":0, + "byteLength":224, + "byteOffset":88753732, + "target":34962 + }, + { + "buffer":0, + "byteLength":108, + "byteOffset":88753956, + "target":34963 + }, + { + "buffer":0, + "byteLength":5952, + "byteOffset":88754064, + "target":34962 + }, + { + "buffer":0, + "byteLength":5952, + "byteOffset":88760016, + "target":34962 + }, + { + "buffer":0, + "byteLength":3968, + "byteOffset":88765968, + "target":34962 + }, + { + "buffer":0, + "byteLength":3968, + "byteOffset":88769936, + "target":34962 + }, + { + "buffer":0, + "byteLength":7936, + "byteOffset":88773904, + "target":34962 + }, + { + "buffer":0, + "byteLength":1984, + "byteOffset":88781840, + "target":34962 + }, + { + "buffer":0, + "byteLength":3968, + "byteOffset":88783824, + "target":34962 + }, + { + "buffer":0, + "byteLength":3968, + "byteOffset":88787792, + "target":34962 + }, + { + "buffer":0, + "byteLength":3996, + "byteOffset":88791760, + "target":34963 + }, + { + "buffer":0, + "byteLength":120, + "byteOffset":88795756, + "target":34962 + }, + { + "buffer":0, + "byteLength":120, + "byteOffset":88795876, + "target":34962 + }, + { + "buffer":0, + "byteLength":80, + "byteOffset":88795996, + "target":34962 + }, + { + "buffer":0, + "byteLength":80, + "byteOffset":88796076, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":88796156, + "target":34962 + }, + { + "buffer":0, + "byteLength":40, + "byteOffset":88796316, + "target":34962 + }, + { + "buffer":0, + "byteLength":80, + "byteOffset":88796356, + "target":34962 + }, + { + "buffer":0, + "byteLength":80, + "byteOffset":88796436, + "target":34962 + }, + { + "buffer":0, + "byteLength":36, + "byteOffset":88796516, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":88796552, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":88796840, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":88797128, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":88797320, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":88797512, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":88797896, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":88797992, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":88798184, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":88798376, + "target":34963 + }, + { + "buffer":0, + "byteLength":75120, + "byteOffset":88798472, + "target":34962 + }, + { + "buffer":0, + "byteLength":75120, + "byteOffset":88873592, + "target":34962 + }, + { + "buffer":0, + "byteLength":50080, + "byteOffset":88948712, + "target":34962 + }, + { + "buffer":0, + "byteLength":50080, + "byteOffset":88998792, + "target":34962 + }, + { + "buffer":0, + "byteLength":100160, + "byteOffset":89048872, + "target":34962 + }, + { + "buffer":0, + "byteLength":25040, + "byteOffset":89149032, + "target":34962 + }, + { + "buffer":0, + "byteLength":50080, + "byteOffset":89174072, + "target":34962 + }, + { + "buffer":0, + "byteLength":50080, + "byteOffset":89224152, + "target":34962 + }, + { + "buffer":0, + "byteLength":32904, + "byteOffset":89274232, + "target":34963 + }, + { + "buffer":0, + "byteLength":59208, + "byteOffset":89307136, + "target":34962 + }, + { + "buffer":0, + "byteLength":59208, + "byteOffset":89366344, + "target":34962 + }, + { + "buffer":0, + "byteLength":39472, + "byteOffset":89425552, + "target":34962 + }, + { + "buffer":0, + "byteLength":39472, + "byteOffset":89465024, + "target":34962 + }, + { + "buffer":0, + "byteLength":78944, + "byteOffset":89504496, + "target":34962 + }, + { + "buffer":0, + "byteLength":19736, + "byteOffset":89583440, + "target":34962 + }, + { + "buffer":0, + "byteLength":39472, + "byteOffset":89603176, + "target":34962 + }, + { + "buffer":0, + "byteLength":39472, + "byteOffset":89642648, + "target":34962 + }, + { + "buffer":0, + "byteLength":19608, + "byteOffset":89682120, + "target":34963 + }, + { + "buffer":0, + "byteLength":25344, + "byteOffset":89701728, + "target":34962 + }, + { + "buffer":0, + "byteLength":25344, + "byteOffset":89727072, + "target":34962 + }, + { + "buffer":0, + "byteLength":16896, + "byteOffset":89752416, + "target":34962 + }, + { + "buffer":0, + "byteLength":16896, + "byteOffset":89769312, + "target":34962 + }, + { + "buffer":0, + "byteLength":33792, + "byteOffset":89786208, + "target":34962 + }, + { + "buffer":0, + "byteLength":8448, + "byteOffset":89820000, + "target":34962 + }, + { + "buffer":0, + "byteLength":16896, + "byteOffset":89828448, + "target":34962 + }, + { + "buffer":0, + "byteLength":16896, + "byteOffset":89845344, + "target":34962 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":89862240, + "target":34963 + }, + { + "buffer":0, + "byteLength":40320, + "byteOffset":89868576, + "target":34962 + }, + { + "buffer":0, + "byteLength":40320, + "byteOffset":89908896, + "target":34962 + }, + { + "buffer":0, + "byteLength":26880, + "byteOffset":89949216, + "target":34962 + }, + { + "buffer":0, + "byteLength":26880, + "byteOffset":89976096, + "target":34962 + }, + { + "buffer":0, + "byteLength":53760, + "byteOffset":90002976, + "target":34962 + }, + { + "buffer":0, + "byteLength":13440, + "byteOffset":90056736, + "target":34962 + }, + { + "buffer":0, + "byteLength":26880, + "byteOffset":90070176, + "target":34962 + }, + { + "buffer":0, + "byteLength":26880, + "byteOffset":90097056, + "target":34962 + }, + { + "buffer":0, + "byteLength":10080, + "byteOffset":90123936, + "target":34963 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":90134016, + "target":34962 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":90141168, + "target":34962 + }, + { + "buffer":0, + "byteLength":4768, + "byteOffset":90148320, + "target":34962 + }, + { + "buffer":0, + "byteLength":4768, + "byteOffset":90153088, + "target":34962 + }, + { + "buffer":0, + "byteLength":9536, + "byteOffset":90157856, + "target":34962 + }, + { + "buffer":0, + "byteLength":2384, + "byteOffset":90167392, + "target":34962 + }, + { + "buffer":0, + "byteLength":4768, + "byteOffset":90169776, + "target":34962 + }, + { + "buffer":0, + "byteLength":4768, + "byteOffset":90174544, + "target":34962 + }, + { + "buffer":0, + "byteLength":2748, + "byteOffset":90179312, + "target":34963 + }, + { + "buffer":0, + "byteLength":38640, + "byteOffset":90182060, + "target":34962 + }, + { + "buffer":0, + "byteLength":38640, + "byteOffset":90220700, + "target":34962 + }, + { + "buffer":0, + "byteLength":25760, + "byteOffset":90259340, + "target":34962 + }, + { + "buffer":0, + "byteLength":25760, + "byteOffset":90285100, + "target":34962 + }, + { + "buffer":0, + "byteLength":51520, + "byteOffset":90310860, + "target":34962 + }, + { + "buffer":0, + "byteLength":12880, + "byteOffset":90362380, + "target":34962 + }, + { + "buffer":0, + "byteLength":25760, + "byteOffset":90375260, + "target":34962 + }, + { + "buffer":0, + "byteLength":25760, + "byteOffset":90401020, + "target":34962 + }, + { + "buffer":0, + "byteLength":13440, + "byteOffset":90426780, + "target":34963 + }, + { + "buffer":0, + "byteLength":132384, + "byteOffset":90440220, + "target":34962 + }, + { + "buffer":0, + "byteLength":132384, + "byteOffset":90572604, + "target":34962 + }, + { + "buffer":0, + "byteLength":88256, + "byteOffset":90704988, + "target":34962 + }, + { + "buffer":0, + "byteLength":88256, + "byteOffset":90793244, + "target":34962 + }, + { + "buffer":0, + "byteLength":176512, + "byteOffset":90881500, + "target":34962 + }, + { + "buffer":0, + "byteLength":44128, + "byteOffset":91058012, + "target":34962 + }, + { + "buffer":0, + "byteLength":88256, + "byteOffset":91102140, + "target":34962 + }, + { + "buffer":0, + "byteLength":88256, + "byteOffset":91190396, + "target":34962 + }, + { + "buffer":0, + "byteLength":54156, + "byteOffset":91278652, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":91332808, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":91332856, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":91332904, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":91332936, + "target":34962 + }, + { + "buffer":0, + "byteLength":64, + "byteOffset":91332968, + "target":34962 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":91333032, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":91333048, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":91333080, + "target":34962 + }, + { + "buffer":0, + "byteLength":24960, + "byteOffset":91333112, + "target":34962 + }, + { + "buffer":0, + "byteLength":24960, + "byteOffset":91358072, + "target":34962 + }, + { + "buffer":0, + "byteLength":16640, + "byteOffset":91383032, + "target":34962 + }, + { + "buffer":0, + "byteLength":16640, + "byteOffset":91399672, + "target":34962 + }, + { + "buffer":0, + "byteLength":33280, + "byteOffset":91416312, + "target":34962 + }, + { + "buffer":0, + "byteLength":8320, + "byteOffset":91449592, + "target":34962 + }, + { + "buffer":0, + "byteLength":16640, + "byteOffset":91457912, + "target":34962 + }, + { + "buffer":0, + "byteLength":16640, + "byteOffset":91474552, + "target":34962 + }, + { + "buffer":0, + "byteLength":10056, + "byteOffset":91491192, + "target":34963 + }, + { + "buffer":0, + "byteLength":598272, + "byteOffset":91501248, + "target":34962 + }, + { + "buffer":0, + "byteLength":598272, + "byteOffset":92099520, + "target":34962 + }, + { + "buffer":0, + "byteLength":398848, + "byteOffset":92697792, + "target":34962 + }, + { + "buffer":0, + "byteLength":398848, + "byteOffset":93096640, + "target":34962 + }, + { + "buffer":0, + "byteLength":797696, + "byteOffset":93495488, + "target":34962 + }, + { + "buffer":0, + "byteLength":199424, + "byteOffset":94293184, + "target":34962 + }, + { + "buffer":0, + "byteLength":398848, + "byteOffset":94492608, + "target":34962 + }, + { + "buffer":0, + "byteLength":398848, + "byteOffset":94891456, + "target":34962 + }, + { + "buffer":0, + "byteLength":211680, + "byteOffset":95290304, + "target":34963 + }, + { + "buffer":0, + "byteLength":8136, + "byteOffset":95501984, + "target":34962 + }, + { + "buffer":0, + "byteLength":8136, + "byteOffset":95510120, + "target":34962 + }, + { + "buffer":0, + "byteLength":5424, + "byteOffset":95518256, + "target":34962 + }, + { + "buffer":0, + "byteLength":5424, + "byteOffset":95523680, + "target":34962 + }, + { + "buffer":0, + "byteLength":10848, + "byteOffset":95529104, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":95539952, + "target":34962 + }, + { + "buffer":0, + "byteLength":5424, + "byteOffset":95542664, + "target":34962 + }, + { + "buffer":0, + "byteLength":5424, + "byteOffset":95548088, + "target":34962 + }, + { + "buffer":0, + "byteLength":2592, + "byteOffset":95553512, + "target":34963 + }, + { + "buffer":0, + "byteLength":21600, + "byteOffset":95556104, + "target":34962 + }, + { + "buffer":0, + "byteLength":21600, + "byteOffset":95577704, + "target":34962 + }, + { + "buffer":0, + "byteLength":14400, + "byteOffset":95599304, + "target":34962 + }, + { + "buffer":0, + "byteLength":14400, + "byteOffset":95613704, + "target":34962 + }, + { + "buffer":0, + "byteLength":28800, + "byteOffset":95628104, + "target":34962 + }, + { + "buffer":0, + "byteLength":7200, + "byteOffset":95656904, + "target":34962 + }, + { + "buffer":0, + "byteLength":14400, + "byteOffset":95664104, + "target":34962 + }, + { + "buffer":0, + "byteLength":14400, + "byteOffset":95678504, + "target":34962 + }, + { + "buffer":0, + "byteLength":6696, + "byteOffset":95692904, + "target":34963 + }, + { + "buffer":0, + "byteLength":504, + "byteOffset":95699600, + "target":34962 + }, + { + "buffer":0, + "byteLength":504, + "byteOffset":95700104, + "target":34962 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":95700608, + "target":34962 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":95700944, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":95701280, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":95701952, + "target":34962 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":95702120, + "target":34962 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":95702456, + "target":34962 + }, + { + "buffer":0, + "byteLength":682560, + "byteOffset":95702792, + "target":34962 + }, + { + "buffer":0, + "byteLength":682560, + "byteOffset":96385352, + "target":34962 + }, + { + "buffer":0, + "byteLength":455040, + "byteOffset":97067912, + "target":34962 + }, + { + "buffer":0, + "byteLength":455040, + "byteOffset":97522952, + "target":34962 + }, + { + "buffer":0, + "byteLength":910080, + "byteOffset":97977992, + "target":34962 + }, + { + "buffer":0, + "byteLength":227520, + "byteOffset":98888072, + "target":34962 + }, + { + "buffer":0, + "byteLength":455040, + "byteOffset":99115592, + "target":34962 + }, + { + "buffer":0, + "byteLength":455040, + "byteOffset":99570632, + "target":34962 + }, + { + "buffer":0, + "byteLength":170640, + "byteOffset":100025672, + "target":34963 + }, + { + "buffer":0, + "byteLength":5760, + "byteOffset":100196312, + "target":34962 + }, + { + "buffer":0, + "byteLength":5760, + "byteOffset":100202072, + "target":34962 + }, + { + "buffer":0, + "byteLength":3840, + "byteOffset":100207832, + "target":34962 + }, + { + "buffer":0, + "byteLength":3840, + "byteOffset":100211672, + "target":34962 + }, + { + "buffer":0, + "byteLength":7680, + "byteOffset":100215512, + "target":34962 + }, + { + "buffer":0, + "byteLength":1920, + "byteOffset":100223192, + "target":34962 + }, + { + "buffer":0, + "byteLength":3840, + "byteOffset":100225112, + "target":34962 + }, + { + "buffer":0, + "byteLength":3840, + "byteOffset":100228952, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":100232792, + "target":34963 + }, + { + "buffer":0, + "byteLength":644760, + "byteOffset":100234232, + "target":34962 + }, + { + "buffer":0, + "byteLength":644760, + "byteOffset":100878992, + "target":34962 + }, + { + "buffer":0, + "byteLength":429840, + "byteOffset":101523752, + "target":34962 + }, + { + "buffer":0, + "byteLength":429840, + "byteOffset":101953592, + "target":34962 + }, + { + "buffer":0, + "byteLength":859680, + "byteOffset":102383432, + "target":34962 + }, + { + "buffer":0, + "byteLength":214920, + "byteOffset":103243112, + "target":34962 + }, + { + "buffer":0, + "byteLength":429840, + "byteOffset":103458032, + "target":34962 + }, + { + "buffer":0, + "byteLength":429840, + "byteOffset":103887872, + "target":34962 + }, + { + "buffer":0, + "byteLength":229920, + "byteOffset":104317712, + "target":34963 + }, + { + "buffer":0, + "byteLength":1248, + "byteOffset":104547632, + "target":34962 + }, + { + "buffer":0, + "byteLength":1248, + "byteOffset":104548880, + "target":34962 + }, + { + "buffer":0, + "byteLength":832, + "byteOffset":104550128, + "target":34962 + }, + { + "buffer":0, + "byteLength":832, + "byteOffset":104550960, + "target":34962 + }, + { + "buffer":0, + "byteLength":1664, + "byteOffset":104551792, + "target":34962 + }, + { + "buffer":0, + "byteLength":416, + "byteOffset":104553456, + "target":34962 + }, + { + "buffer":0, + "byteLength":832, + "byteOffset":104553872, + "target":34962 + }, + { + "buffer":0, + "byteLength":832, + "byteOffset":104554704, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":104555536, + "target":34963 + }, + { + "buffer":0, + "byteLength":29376, + "byteOffset":104556112, + "target":34962 + }, + { + "buffer":0, + "byteLength":29376, + "byteOffset":104585488, + "target":34962 + }, + { + "buffer":0, + "byteLength":19584, + "byteOffset":104614864, + "target":34962 + }, + { + "buffer":0, + "byteLength":19584, + "byteOffset":104634448, + "target":34962 + }, + { + "buffer":0, + "byteLength":39168, + "byteOffset":104654032, + "target":34962 + }, + { + "buffer":0, + "byteLength":9792, + "byteOffset":104693200, + "target":34962 + }, + { + "buffer":0, + "byteLength":19584, + "byteOffset":104702992, + "target":34962 + }, + { + "buffer":0, + "byteLength":19584, + "byteOffset":104722576, + "target":34962 + }, + { + "buffer":0, + "byteLength":12576, + "byteOffset":104742160, + "target":34963 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":104754736, + "target":34962 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":104761864, + "target":34962 + }, + { + "buffer":0, + "byteLength":4752, + "byteOffset":104768992, + "target":34962 + }, + { + "buffer":0, + "byteLength":4752, + "byteOffset":104773744, + "target":34962 + }, + { + "buffer":0, + "byteLength":9504, + "byteOffset":104778496, + "target":34962 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":104788000, + "target":34962 + }, + { + "buffer":0, + "byteLength":4752, + "byteOffset":104790376, + "target":34962 + }, + { + "buffer":0, + "byteLength":4752, + "byteOffset":104795128, + "target":34962 + }, + { + "buffer":0, + "byteLength":4536, + "byteOffset":104799880, + "target":34963 + }, + { + "buffer":0, + "byteLength":26520, + "byteOffset":104804416, + "target":34962 + }, + { + "buffer":0, + "byteLength":26520, + "byteOffset":104830936, + "target":34962 + }, + { + "buffer":0, + "byteLength":17680, + "byteOffset":104857456, + "target":34962 + }, + { + "buffer":0, + "byteLength":17680, + "byteOffset":104875136, + "target":34962 + }, + { + "buffer":0, + "byteLength":35360, + "byteOffset":104892816, + "target":34962 + }, + { + "buffer":0, + "byteLength":8840, + "byteOffset":104928176, + "target":34962 + }, + { + "buffer":0, + "byteLength":17680, + "byteOffset":104937016, + "target":34962 + }, + { + "buffer":0, + "byteLength":17680, + "byteOffset":104954696, + "target":34962 + }, + { + "buffer":0, + "byteLength":17112, + "byteOffset":104972376, + "target":34963 + }, + { + "buffer":0, + "byteLength":2988, + "byteOffset":104989488, + "target":34962 + }, + { + "buffer":0, + "byteLength":2988, + "byteOffset":104992476, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":104995464, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":104997456, + "target":34962 + }, + { + "buffer":0, + "byteLength":3984, + "byteOffset":104999448, + "target":34962 + }, + { + "buffer":0, + "byteLength":996, + "byteOffset":105003432, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":105004428, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":105006420, + "target":34962 + }, + { + "buffer":0, + "byteLength":1536, + "byteOffset":105008412, + "target":34963 + }, + { + "buffer":0, + "byteLength":8760, + "byteOffset":105009948, + "target":34962 + }, + { + "buffer":0, + "byteLength":8760, + "byteOffset":105018708, + "target":34962 + }, + { + "buffer":0, + "byteLength":5840, + "byteOffset":105027468, + "target":34962 + }, + { + "buffer":0, + "byteLength":5840, + "byteOffset":105033308, + "target":34962 + }, + { + "buffer":0, + "byteLength":11680, + "byteOffset":105039148, + "target":34962 + }, + { + "buffer":0, + "byteLength":2920, + "byteOffset":105050828, + "target":34962 + }, + { + "buffer":0, + "byteLength":5840, + "byteOffset":105053748, + "target":34962 + }, + { + "buffer":0, + "byteLength":5840, + "byteOffset":105059588, + "target":34962 + }, + { + "buffer":0, + "byteLength":2676, + "byteOffset":105065428, + "target":34963 + }, + { + "buffer":0, + "byteLength":1644, + "byteOffset":105068104, + "target":34962 + }, + { + "buffer":0, + "byteLength":1644, + "byteOffset":105069748, + "target":34962 + }, + { + "buffer":0, + "byteLength":1096, + "byteOffset":105071392, + "target":34962 + }, + { + "buffer":0, + "byteLength":1096, + "byteOffset":105072488, + "target":34962 + }, + { + "buffer":0, + "byteLength":2192, + "byteOffset":105073584, + "target":34962 + }, + { + "buffer":0, + "byteLength":548, + "byteOffset":105075776, + "target":34962 + }, + { + "buffer":0, + "byteLength":1096, + "byteOffset":105076324, + "target":34962 + }, + { + "buffer":0, + "byteLength":1096, + "byteOffset":105077420, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":105078516, + "target":34963 + }, + { + "buffer":0, + "byteLength":598272, + "byteOffset":105079380, + "target":34962 + }, + { + "buffer":0, + "byteLength":598272, + "byteOffset":105677652, + "target":34962 + }, + { + "buffer":0, + "byteLength":398848, + "byteOffset":106275924, + "target":34962 + }, + { + "buffer":0, + "byteLength":398848, + "byteOffset":106674772, + "target":34962 + }, + { + "buffer":0, + "byteLength":797696, + "byteOffset":107073620, + "target":34962 + }, + { + "buffer":0, + "byteLength":199424, + "byteOffset":107871316, + "target":34962 + }, + { + "buffer":0, + "byteLength":398848, + "byteOffset":108070740, + "target":34962 + }, + { + "buffer":0, + "byteLength":398848, + "byteOffset":108469588, + "target":34962 + }, + { + "buffer":0, + "byteLength":8136, + "byteOffset":108868436, + "target":34962 + }, + { + "buffer":0, + "byteLength":8136, + "byteOffset":108876572, + "target":34962 + }, + { + "buffer":0, + "byteLength":5424, + "byteOffset":108884708, + "target":34962 + }, + { + "buffer":0, + "byteLength":5424, + "byteOffset":108890132, + "target":34962 + }, + { + "buffer":0, + "byteLength":10848, + "byteOffset":108895556, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":108906404, + "target":34962 + }, + { + "buffer":0, + "byteLength":5424, + "byteOffset":108909116, + "target":34962 + }, + { + "buffer":0, + "byteLength":5424, + "byteOffset":108914540, + "target":34962 + }, + { + "buffer":0, + "byteLength":21600, + "byteOffset":108919964, + "target":34962 + }, + { + "buffer":0, + "byteLength":21600, + "byteOffset":108941564, + "target":34962 + }, + { + "buffer":0, + "byteLength":14400, + "byteOffset":108963164, + "target":34962 + }, + { + "buffer":0, + "byteLength":14400, + "byteOffset":108977564, + "target":34962 + }, + { + "buffer":0, + "byteLength":28800, + "byteOffset":108991964, + "target":34962 + }, + { + "buffer":0, + "byteLength":7200, + "byteOffset":109020764, + "target":34962 + }, + { + "buffer":0, + "byteLength":14400, + "byteOffset":109027964, + "target":34962 + }, + { + "buffer":0, + "byteLength":14400, + "byteOffset":109042364, + "target":34962 + }, + { + "buffer":0, + "byteLength":504, + "byteOffset":109056764, + "target":34962 + }, + { + "buffer":0, + "byteLength":504, + "byteOffset":109057268, + "target":34962 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":109057772, + "target":34962 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":109058108, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":109058444, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":109059116, + "target":34962 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":109059284, + "target":34962 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":109059620, + "target":34962 + }, + { + "buffer":0, + "byteLength":682560, + "byteOffset":109059956, + "target":34962 + }, + { + "buffer":0, + "byteLength":682560, + "byteOffset":109742516, + "target":34962 + }, + { + "buffer":0, + "byteLength":455040, + "byteOffset":110425076, + "target":34962 + }, + { + "buffer":0, + "byteLength":455040, + "byteOffset":110880116, + "target":34962 + }, + { + "buffer":0, + "byteLength":910080, + "byteOffset":111335156, + "target":34962 + }, + { + "buffer":0, + "byteLength":227520, + "byteOffset":112245236, + "target":34962 + }, + { + "buffer":0, + "byteLength":455040, + "byteOffset":112472756, + "target":34962 + }, + { + "buffer":0, + "byteLength":455040, + "byteOffset":112927796, + "target":34962 + }, + { + "buffer":0, + "byteLength":5760, + "byteOffset":113382836, + "target":34962 + }, + { + "buffer":0, + "byteLength":5760, + "byteOffset":113388596, + "target":34962 + }, + { + "buffer":0, + "byteLength":3840, + "byteOffset":113394356, + "target":34962 + }, + { + "buffer":0, + "byteLength":3840, + "byteOffset":113398196, + "target":34962 + }, + { + "buffer":0, + "byteLength":7680, + "byteOffset":113402036, + "target":34962 + }, + { + "buffer":0, + "byteLength":1920, + "byteOffset":113409716, + "target":34962 + }, + { + "buffer":0, + "byteLength":3840, + "byteOffset":113411636, + "target":34962 + }, + { + "buffer":0, + "byteLength":3840, + "byteOffset":113415476, + "target":34962 + }, + { + "buffer":0, + "byteLength":644760, + "byteOffset":113419316, + "target":34962 + }, + { + "buffer":0, + "byteLength":644760, + "byteOffset":114064076, + "target":34962 + }, + { + "buffer":0, + "byteLength":429840, + "byteOffset":114708836, + "target":34962 + }, + { + "buffer":0, + "byteLength":429840, + "byteOffset":115138676, + "target":34962 + }, + { + "buffer":0, + "byteLength":859680, + "byteOffset":115568516, + "target":34962 + }, + { + "buffer":0, + "byteLength":214920, + "byteOffset":116428196, + "target":34962 + }, + { + "buffer":0, + "byteLength":429840, + "byteOffset":116643116, + "target":34962 + }, + { + "buffer":0, + "byteLength":429840, + "byteOffset":117072956, + "target":34962 + }, + { + "buffer":0, + "byteLength":1248, + "byteOffset":117502796, + "target":34962 + }, + { + "buffer":0, + "byteLength":1248, + "byteOffset":117504044, + "target":34962 + }, + { + "buffer":0, + "byteLength":832, + "byteOffset":117505292, + "target":34962 + }, + { + "buffer":0, + "byteLength":832, + "byteOffset":117506124, + "target":34962 + }, + { + "buffer":0, + "byteLength":1664, + "byteOffset":117506956, + "target":34962 + }, + { + "buffer":0, + "byteLength":416, + "byteOffset":117508620, + "target":34962 + }, + { + "buffer":0, + "byteLength":832, + "byteOffset":117509036, + "target":34962 + }, + { + "buffer":0, + "byteLength":832, + "byteOffset":117509868, + "target":34962 + }, + { + "buffer":0, + "byteLength":29376, + "byteOffset":117510700, + "target":34962 + }, + { + "buffer":0, + "byteLength":29376, + "byteOffset":117540076, + "target":34962 + }, + { + "buffer":0, + "byteLength":19584, + "byteOffset":117569452, + "target":34962 + }, + { + "buffer":0, + "byteLength":19584, + "byteOffset":117589036, + "target":34962 + }, + { + "buffer":0, + "byteLength":39168, + "byteOffset":117608620, + "target":34962 + }, + { + "buffer":0, + "byteLength":9792, + "byteOffset":117647788, + "target":34962 + }, + { + "buffer":0, + "byteLength":19584, + "byteOffset":117657580, + "target":34962 + }, + { + "buffer":0, + "byteLength":19584, + "byteOffset":117677164, + "target":34962 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":117696748, + "target":34962 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":117703876, + "target":34962 + }, + { + "buffer":0, + "byteLength":4752, + "byteOffset":117711004, + "target":34962 + }, + { + "buffer":0, + "byteLength":4752, + "byteOffset":117715756, + "target":34962 + }, + { + "buffer":0, + "byteLength":9504, + "byteOffset":117720508, + "target":34962 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":117730012, + "target":34962 + }, + { + "buffer":0, + "byteLength":4752, + "byteOffset":117732388, + "target":34962 + }, + { + "buffer":0, + "byteLength":4752, + "byteOffset":117737140, + "target":34962 + }, + { + "buffer":0, + "byteLength":26520, + "byteOffset":117741892, + "target":34962 + }, + { + "buffer":0, + "byteLength":26520, + "byteOffset":117768412, + "target":34962 + }, + { + "buffer":0, + "byteLength":17680, + "byteOffset":117794932, + "target":34962 + }, + { + "buffer":0, + "byteLength":17680, + "byteOffset":117812612, + "target":34962 + }, + { + "buffer":0, + "byteLength":35360, + "byteOffset":117830292, + "target":34962 + }, + { + "buffer":0, + "byteLength":8840, + "byteOffset":117865652, + "target":34962 + }, + { + "buffer":0, + "byteLength":17680, + "byteOffset":117874492, + "target":34962 + }, + { + "buffer":0, + "byteLength":17680, + "byteOffset":117892172, + "target":34962 + }, + { + "buffer":0, + "byteLength":2988, + "byteOffset":117909852, + "target":34962 + }, + { + "buffer":0, + "byteLength":2988, + "byteOffset":117912840, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":117915828, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":117917820, + "target":34962 + }, + { + "buffer":0, + "byteLength":3984, + "byteOffset":117919812, + "target":34962 + }, + { + "buffer":0, + "byteLength":996, + "byteOffset":117923796, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":117924792, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":117926784, + "target":34962 + }, + { + "buffer":0, + "byteLength":8760, + "byteOffset":117928776, + "target":34962 + }, + { + "buffer":0, + "byteLength":8760, + "byteOffset":117937536, + "target":34962 + }, + { + "buffer":0, + "byteLength":5840, + "byteOffset":117946296, + "target":34962 + }, + { + "buffer":0, + "byteLength":5840, + "byteOffset":117952136, + "target":34962 + }, + { + "buffer":0, + "byteLength":11680, + "byteOffset":117957976, + "target":34962 + }, + { + "buffer":0, + "byteLength":2920, + "byteOffset":117969656, + "target":34962 + }, + { + "buffer":0, + "byteLength":5840, + "byteOffset":117972576, + "target":34962 + }, + { + "buffer":0, + "byteLength":5840, + "byteOffset":117978416, + "target":34962 + }, + { + "buffer":0, + "byteLength":1644, + "byteOffset":117984256, + "target":34962 + }, + { + "buffer":0, + "byteLength":1644, + "byteOffset":117985900, + "target":34962 + }, + { + "buffer":0, + "byteLength":1096, + "byteOffset":117987544, + "target":34962 + }, + { + "buffer":0, + "byteLength":1096, + "byteOffset":117988640, + "target":34962 + }, + { + "buffer":0, + "byteLength":2192, + "byteOffset":117989736, + "target":34962 + }, + { + "buffer":0, + "byteLength":548, + "byteOffset":117991928, + "target":34962 + }, + { + "buffer":0, + "byteLength":1096, + "byteOffset":117992476, + "target":34962 + }, + { + "buffer":0, + "byteLength":1096, + "byteOffset":117993572, + "target":34962 + }, + { + "buffer":0, + "byteLength":4944, + "byteOffset":117994668, + "target":34962 + }, + { + "buffer":0, + "byteLength":4944, + "byteOffset":117999612, + "target":34962 + }, + { + "buffer":0, + "byteLength":3296, + "byteOffset":118004556, + "target":34962 + }, + { + "buffer":0, + "byteLength":3296, + "byteOffset":118007852, + "target":34962 + }, + { + "buffer":0, + "byteLength":6592, + "byteOffset":118011148, + "target":34962 + }, + { + "buffer":0, + "byteLength":1648, + "byteOffset":118017740, + "target":34962 + }, + { + "buffer":0, + "byteLength":3296, + "byteOffset":118019388, + "target":34962 + }, + { + "buffer":0, + "byteLength":3296, + "byteOffset":118022684, + "target":34962 + }, + { + "buffer":0, + "byteLength":2304, + "byteOffset":118025980, + "target":34963 + }, + { + "buffer":0, + "byteLength":1176, + "byteOffset":118028284, + "target":34962 + }, + { + "buffer":0, + "byteLength":1176, + "byteOffset":118029460, + "target":34962 + }, + { + "buffer":0, + "byteLength":784, + "byteOffset":118030636, + "target":34962 + }, + { + "buffer":0, + "byteLength":784, + "byteOffset":118031420, + "target":34962 + }, + { + "buffer":0, + "byteLength":1568, + "byteOffset":118032204, + "target":34962 + }, + { + "buffer":0, + "byteLength":392, + "byteOffset":118033772, + "target":34962 + }, + { + "buffer":0, + "byteLength":784, + "byteOffset":118034164, + "target":34962 + }, + { + "buffer":0, + "byteLength":784, + "byteOffset":118034948, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":118035732, + "target":34963 + }, + { + "buffer":0, + "byteLength":978420, + "byteOffset":118036596, + "target":34962 + }, + { + "buffer":0, + "byteLength":978420, + "byteOffset":119015016, + "target":34962 + }, + { + "buffer":0, + "byteLength":652280, + "byteOffset":119993436, + "target":34962 + }, + { + "buffer":0, + "byteLength":652280, + "byteOffset":120645716, + "target":34962 + }, + { + "buffer":0, + "byteLength":1304560, + "byteOffset":121297996, + "target":34962 + }, + { + "buffer":0, + "byteLength":326140, + "byteOffset":122602556, + "target":34962 + }, + { + "buffer":0, + "byteLength":652280, + "byteOffset":122928696, + "target":34962 + }, + { + "buffer":0, + "byteLength":652280, + "byteOffset":123580976, + "target":34962 + }, + { + "buffer":0, + "byteLength":1051668, + "byteOffset":124233256, + "target":34963 + }, + { + "buffer":0, + "byteLength":573060, + "byteOffset":125284924, + "target":34962 + }, + { + "buffer":0, + "byteLength":573060, + "byteOffset":125857984, + "target":34962 + }, + { + "buffer":0, + "byteLength":382040, + "byteOffset":126431044, + "target":34962 + }, + { + "buffer":0, + "byteLength":382040, + "byteOffset":126813084, + "target":34962 + }, + { + "buffer":0, + "byteLength":764080, + "byteOffset":127195124, + "target":34962 + }, + { + "buffer":0, + "byteLength":191020, + "byteOffset":127959204, + "target":34962 + }, + { + "buffer":0, + "byteLength":382040, + "byteOffset":128150224, + "target":34962 + }, + { + "buffer":0, + "byteLength":382040, + "byteOffset":128532264, + "target":34962 + }, + { + "buffer":0, + "byteLength":171918, + "byteOffset":128914304, + "target":34963 + }, + { + "buffer":0, + "byteLength":4944, + "byteOffset":129086224, + "target":34962 + }, + { + "buffer":0, + "byteLength":4944, + "byteOffset":129091168, + "target":34962 + }, + { + "buffer":0, + "byteLength":3296, + "byteOffset":129096112, + "target":34962 + }, + { + "buffer":0, + "byteLength":3296, + "byteOffset":129099408, + "target":34962 + }, + { + "buffer":0, + "byteLength":6592, + "byteOffset":129102704, + "target":34962 + }, + { + "buffer":0, + "byteLength":1648, + "byteOffset":129109296, + "target":34962 + }, + { + "buffer":0, + "byteLength":3296, + "byteOffset":129110944, + "target":34962 + }, + { + "buffer":0, + "byteLength":3296, + "byteOffset":129114240, + "target":34962 + }, + { + "buffer":0, + "byteLength":1176, + "byteOffset":129117536, + "target":34962 + }, + { + "buffer":0, + "byteLength":1176, + "byteOffset":129118712, + "target":34962 + }, + { + "buffer":0, + "byteLength":784, + "byteOffset":129119888, + "target":34962 + }, + { + "buffer":0, + "byteLength":784, + "byteOffset":129120672, + "target":34962 + }, + { + "buffer":0, + "byteLength":1568, + "byteOffset":129121456, + "target":34962 + }, + { + "buffer":0, + "byteLength":392, + "byteOffset":129123024, + "target":34962 + }, + { + "buffer":0, + "byteLength":784, + "byteOffset":129123416, + "target":34962 + }, + { + "buffer":0, + "byteLength":784, + "byteOffset":129124200, + "target":34962 + }, + { + "buffer":0, + "byteLength":978420, + "byteOffset":129124984, + "target":34962 + }, + { + "buffer":0, + "byteLength":978420, + "byteOffset":130103404, + "target":34962 + }, + { + "buffer":0, + "byteLength":652280, + "byteOffset":131081824, + "target":34962 + }, + { + "buffer":0, + "byteLength":652280, + "byteOffset":131734104, + "target":34962 + }, + { + "buffer":0, + "byteLength":1304560, + "byteOffset":132386384, + "target":34962 + }, + { + "buffer":0, + "byteLength":326140, + "byteOffset":133690944, + "target":34962 + }, + { + "buffer":0, + "byteLength":652280, + "byteOffset":134017084, + "target":34962 + }, + { + "buffer":0, + "byteLength":652280, + "byteOffset":134669364, + "target":34962 + }, + { + "buffer":0, + "byteLength":573060, + "byteOffset":135321644, + "target":34962 + }, + { + "buffer":0, + "byteLength":573060, + "byteOffset":135894704, + "target":34962 + }, + { + "buffer":0, + "byteLength":382040, + "byteOffset":136467764, + "target":34962 + }, + { + "buffer":0, + "byteLength":382040, + "byteOffset":136849804, + "target":34962 + }, + { + "buffer":0, + "byteLength":764080, + "byteOffset":137231844, + "target":34962 + }, + { + "buffer":0, + "byteLength":191020, + "byteOffset":137995924, + "target":34962 + }, + { + "buffer":0, + "byteLength":382040, + "byteOffset":138186944, + "target":34962 + }, + { + "buffer":0, + "byteLength":382040, + "byteOffset":138568984, + "target":34962 + }, + { + "buffer":0, + "byteLength":4944, + "byteOffset":138951024, + "target":34962 + }, + { + "buffer":0, + "byteLength":4944, + "byteOffset":138955968, + "target":34962 + }, + { + "buffer":0, + "byteLength":3296, + "byteOffset":138960912, + "target":34962 + }, + { + "buffer":0, + "byteLength":3296, + "byteOffset":138964208, + "target":34962 + }, + { + "buffer":0, + "byteLength":6592, + "byteOffset":138967504, + "target":34962 + }, + { + "buffer":0, + "byteLength":1648, + "byteOffset":138974096, + "target":34962 + }, + { + "buffer":0, + "byteLength":3296, + "byteOffset":138975744, + "target":34962 + }, + { + "buffer":0, + "byteLength":3296, + "byteOffset":138979040, + "target":34962 + }, + { + "buffer":0, + "byteLength":1176, + "byteOffset":138982336, + "target":34962 + }, + { + "buffer":0, + "byteLength":1176, + "byteOffset":138983512, + "target":34962 + }, + { + "buffer":0, + "byteLength":784, + "byteOffset":138984688, + "target":34962 + }, + { + "buffer":0, + "byteLength":784, + "byteOffset":138985472, + "target":34962 + }, + { + "buffer":0, + "byteLength":1568, + "byteOffset":138986256, + "target":34962 + }, + { + "buffer":0, + "byteLength":392, + "byteOffset":138987824, + "target":34962 + }, + { + "buffer":0, + "byteLength":784, + "byteOffset":138988216, + "target":34962 + }, + { + "buffer":0, + "byteLength":784, + "byteOffset":138989000, + "target":34962 + }, + { + "buffer":0, + "byteLength":978420, + "byteOffset":138989784, + "target":34962 + }, + { + "buffer":0, + "byteLength":978420, + "byteOffset":139968204, + "target":34962 + }, + { + "buffer":0, + "byteLength":652280, + "byteOffset":140946624, + "target":34962 + }, + { + "buffer":0, + "byteLength":652280, + "byteOffset":141598904, + "target":34962 + }, + { + "buffer":0, + "byteLength":1304560, + "byteOffset":142251184, + "target":34962 + }, + { + "buffer":0, + "byteLength":326140, + "byteOffset":143555744, + "target":34962 + }, + { + "buffer":0, + "byteLength":652280, + "byteOffset":143881884, + "target":34962 + }, + { + "buffer":0, + "byteLength":652280, + "byteOffset":144534164, + "target":34962 + }, + { + "buffer":0, + "byteLength":573060, + "byteOffset":145186444, + "target":34962 + }, + { + "buffer":0, + "byteLength":573060, + "byteOffset":145759504, + "target":34962 + }, + { + "buffer":0, + "byteLength":382040, + "byteOffset":146332564, + "target":34962 + }, + { + "buffer":0, + "byteLength":382040, + "byteOffset":146714604, + "target":34962 + }, + { + "buffer":0, + "byteLength":764080, + "byteOffset":147096644, + "target":34962 + }, + { + "buffer":0, + "byteLength":191020, + "byteOffset":147860724, + "target":34962 + }, + { + "buffer":0, + "byteLength":382040, + "byteOffset":148051744, + "target":34962 + }, + { + "buffer":0, + "byteLength":382040, + "byteOffset":148433784, + "target":34962 + }, + { + "buffer":0, + "byteLength":4944, + "byteOffset":148815824, + "target":34962 + }, + { + "buffer":0, + "byteLength":4944, + "byteOffset":148820768, + "target":34962 + }, + { + "buffer":0, + "byteLength":3296, + "byteOffset":148825712, + "target":34962 + }, + { + "buffer":0, + "byteLength":3296, + "byteOffset":148829008, + "target":34962 + }, + { + "buffer":0, + "byteLength":6592, + "byteOffset":148832304, + "target":34962 + }, + { + "buffer":0, + "byteLength":1648, + "byteOffset":148838896, + "target":34962 + }, + { + "buffer":0, + "byteLength":3296, + "byteOffset":148840544, + "target":34962 + }, + { + "buffer":0, + "byteLength":3296, + "byteOffset":148843840, + "target":34962 + }, + { + "buffer":0, + "byteLength":1176, + "byteOffset":148847136, + "target":34962 + }, + { + "buffer":0, + "byteLength":1176, + "byteOffset":148848312, + "target":34962 + }, + { + "buffer":0, + "byteLength":784, + "byteOffset":148849488, + "target":34962 + }, + { + "buffer":0, + "byteLength":784, + "byteOffset":148850272, + "target":34962 + }, + { + "buffer":0, + "byteLength":1568, + "byteOffset":148851056, + "target":34962 + }, + { + "buffer":0, + "byteLength":392, + "byteOffset":148852624, + "target":34962 + }, + { + "buffer":0, + "byteLength":784, + "byteOffset":148853016, + "target":34962 + }, + { + "buffer":0, + "byteLength":784, + "byteOffset":148853800, + "target":34962 + }, + { + "buffer":0, + "byteLength":978420, + "byteOffset":148854584, + "target":34962 + }, + { + "buffer":0, + "byteLength":978420, + "byteOffset":149833004, + "target":34962 + }, + { + "buffer":0, + "byteLength":652280, + "byteOffset":150811424, + "target":34962 + }, + { + "buffer":0, + "byteLength":652280, + "byteOffset":151463704, + "target":34962 + }, + { + "buffer":0, + "byteLength":1304560, + "byteOffset":152115984, + "target":34962 + }, + { + "buffer":0, + "byteLength":326140, + "byteOffset":153420544, + "target":34962 + }, + { + "buffer":0, + "byteLength":652280, + "byteOffset":153746684, + "target":34962 + }, + { + "buffer":0, + "byteLength":652280, + "byteOffset":154398964, + "target":34962 + }, + { + "buffer":0, + "byteLength":573060, + "byteOffset":155051244, + "target":34962 + }, + { + "buffer":0, + "byteLength":573060, + "byteOffset":155624304, + "target":34962 + }, + { + "buffer":0, + "byteLength":382040, + "byteOffset":156197364, + "target":34962 + }, + { + "buffer":0, + "byteLength":382040, + "byteOffset":156579404, + "target":34962 + }, + { + "buffer":0, + "byteLength":764080, + "byteOffset":156961444, + "target":34962 + }, + { + "buffer":0, + "byteLength":191020, + "byteOffset":157725524, + "target":34962 + }, + { + "buffer":0, + "byteLength":382040, + "byteOffset":157916544, + "target":34962 + }, + { + "buffer":0, + "byteLength":382040, + "byteOffset":158298584, + "target":34962 + }, + { + "buffer":0, + "byteLength":4944, + "byteOffset":158680624, + "target":34962 + }, + { + "buffer":0, + "byteLength":4944, + "byteOffset":158685568, + "target":34962 + }, + { + "buffer":0, + "byteLength":3296, + "byteOffset":158690512, + "target":34962 + }, + { + "buffer":0, + "byteLength":3296, + "byteOffset":158693808, + "target":34962 + }, + { + "buffer":0, + "byteLength":6592, + "byteOffset":158697104, + "target":34962 + }, + { + "buffer":0, + "byteLength":1648, + "byteOffset":158703696, + "target":34962 + }, + { + "buffer":0, + "byteLength":3296, + "byteOffset":158705344, + "target":34962 + }, + { + "buffer":0, + "byteLength":3296, + "byteOffset":158708640, + "target":34962 + }, + { + "buffer":0, + "byteLength":1176, + "byteOffset":158711936, + "target":34962 + }, + { + "buffer":0, + "byteLength":1176, + "byteOffset":158713112, + "target":34962 + }, + { + "buffer":0, + "byteLength":784, + "byteOffset":158714288, + "target":34962 + }, + { + "buffer":0, + "byteLength":784, + "byteOffset":158715072, + "target":34962 + }, + { + "buffer":0, + "byteLength":1568, + "byteOffset":158715856, + "target":34962 + }, + { + "buffer":0, + "byteLength":392, + "byteOffset":158717424, + "target":34962 + }, + { + "buffer":0, + "byteLength":784, + "byteOffset":158717816, + "target":34962 + }, + { + "buffer":0, + "byteLength":784, + "byteOffset":158718600, + "target":34962 + }, + { + "buffer":0, + "byteLength":978420, + "byteOffset":158719384, + "target":34962 + }, + { + "buffer":0, + "byteLength":978420, + "byteOffset":159697804, + "target":34962 + }, + { + "buffer":0, + "byteLength":652280, + "byteOffset":160676224, + "target":34962 + }, + { + "buffer":0, + "byteLength":652280, + "byteOffset":161328504, + "target":34962 + }, + { + "buffer":0, + "byteLength":1304560, + "byteOffset":161980784, + "target":34962 + }, + { + "buffer":0, + "byteLength":326140, + "byteOffset":163285344, + "target":34962 + }, + { + "buffer":0, + "byteLength":652280, + "byteOffset":163611484, + "target":34962 + }, + { + "buffer":0, + "byteLength":652280, + "byteOffset":164263764, + "target":34962 + }, + { + "buffer":0, + "byteLength":573060, + "byteOffset":164916044, + "target":34962 + }, + { + "buffer":0, + "byteLength":573060, + "byteOffset":165489104, + "target":34962 + }, + { + "buffer":0, + "byteLength":382040, + "byteOffset":166062164, + "target":34962 + }, + { + "buffer":0, + "byteLength":382040, + "byteOffset":166444204, + "target":34962 + }, + { + "buffer":0, + "byteLength":764080, + "byteOffset":166826244, + "target":34962 + }, + { + "buffer":0, + "byteLength":191020, + "byteOffset":167590324, + "target":34962 + }, + { + "buffer":0, + "byteLength":382040, + "byteOffset":167781344, + "target":34962 + }, + { + "buffer":0, + "byteLength":382040, + "byteOffset":168163384, + "target":34962 + }, + { + "buffer":0, + "byteLength":4944, + "byteOffset":168545424, + "target":34962 + }, + { + "buffer":0, + "byteLength":4944, + "byteOffset":168550368, + "target":34962 + }, + { + "buffer":0, + "byteLength":3296, + "byteOffset":168555312, + "target":34962 + }, + { + "buffer":0, + "byteLength":3296, + "byteOffset":168558608, + "target":34962 + }, + { + "buffer":0, + "byteLength":6592, + "byteOffset":168561904, + "target":34962 + }, + { + "buffer":0, + "byteLength":1648, + "byteOffset":168568496, + "target":34962 + }, + { + "buffer":0, + "byteLength":3296, + "byteOffset":168570144, + "target":34962 + }, + { + "buffer":0, + "byteLength":3296, + "byteOffset":168573440, + "target":34962 + }, + { + "buffer":0, + "byteLength":1176, + "byteOffset":168576736, + "target":34962 + }, + { + "buffer":0, + "byteLength":1176, + "byteOffset":168577912, + "target":34962 + }, + { + "buffer":0, + "byteLength":784, + "byteOffset":168579088, + "target":34962 + }, + { + "buffer":0, + "byteLength":784, + "byteOffset":168579872, + "target":34962 + }, + { + "buffer":0, + "byteLength":1568, + "byteOffset":168580656, + "target":34962 + }, + { + "buffer":0, + "byteLength":392, + "byteOffset":168582224, + "target":34962 + }, + { + "buffer":0, + "byteLength":784, + "byteOffset":168582616, + "target":34962 + }, + { + "buffer":0, + "byteLength":784, + "byteOffset":168583400, + "target":34962 + }, + { + "buffer":0, + "byteLength":978420, + "byteOffset":168584184, + "target":34962 + }, + { + "buffer":0, + "byteLength":978420, + "byteOffset":169562604, + "target":34962 + }, + { + "buffer":0, + "byteLength":652280, + "byteOffset":170541024, + "target":34962 + }, + { + "buffer":0, + "byteLength":652280, + "byteOffset":171193304, + "target":34962 + }, + { + "buffer":0, + "byteLength":1304560, + "byteOffset":171845584, + "target":34962 + }, + { + "buffer":0, + "byteLength":326140, + "byteOffset":173150144, + "target":34962 + }, + { + "buffer":0, + "byteLength":652280, + "byteOffset":173476284, + "target":34962 + }, + { + "buffer":0, + "byteLength":652280, + "byteOffset":174128564, + "target":34962 + }, + { + "buffer":0, + "byteLength":573060, + "byteOffset":174780844, + "target":34962 + }, + { + "buffer":0, + "byteLength":573060, + "byteOffset":175353904, + "target":34962 + }, + { + "buffer":0, + "byteLength":382040, + "byteOffset":175926964, + "target":34962 + }, + { + "buffer":0, + "byteLength":382040, + "byteOffset":176309004, + "target":34962 + }, + { + "buffer":0, + "byteLength":764080, + "byteOffset":176691044, + "target":34962 + }, + { + "buffer":0, + "byteLength":191020, + "byteOffset":177455124, + "target":34962 + }, + { + "buffer":0, + "byteLength":382040, + "byteOffset":177646144, + "target":34962 + }, + { + "buffer":0, + "byteLength":382040, + "byteOffset":178028184, + "target":34962 + }, + { + "buffer":0, + "byteLength":4944, + "byteOffset":178410224, + "target":34962 + }, + { + "buffer":0, + "byteLength":4944, + "byteOffset":178415168, + "target":34962 + }, + { + "buffer":0, + "byteLength":3296, + "byteOffset":178420112, + "target":34962 + }, + { + "buffer":0, + "byteLength":3296, + "byteOffset":178423408, + "target":34962 + }, + { + "buffer":0, + "byteLength":6592, + "byteOffset":178426704, + "target":34962 + }, + { + "buffer":0, + "byteLength":1648, + "byteOffset":178433296, + "target":34962 + }, + { + "buffer":0, + "byteLength":3296, + "byteOffset":178434944, + "target":34962 + }, + { + "buffer":0, + "byteLength":3296, + "byteOffset":178438240, + "target":34962 + }, + { + "buffer":0, + "byteLength":1176, + "byteOffset":178441536, + "target":34962 + }, + { + "buffer":0, + "byteLength":1176, + "byteOffset":178442712, + "target":34962 + }, + { + "buffer":0, + "byteLength":784, + "byteOffset":178443888, + "target":34962 + }, + { + "buffer":0, + "byteLength":784, + "byteOffset":178444672, + "target":34962 + }, + { + "buffer":0, + "byteLength":1568, + "byteOffset":178445456, + "target":34962 + }, + { + "buffer":0, + "byteLength":392, + "byteOffset":178447024, + "target":34962 + }, + { + "buffer":0, + "byteLength":784, + "byteOffset":178447416, + "target":34962 + }, + { + "buffer":0, + "byteLength":784, + "byteOffset":178448200, + "target":34962 + }, + { + "buffer":0, + "byteLength":978420, + "byteOffset":178448984, + "target":34962 + }, + { + "buffer":0, + "byteLength":978420, + "byteOffset":179427404, + "target":34962 + }, + { + "buffer":0, + "byteLength":652280, + "byteOffset":180405824, + "target":34962 + }, + { + "buffer":0, + "byteLength":652280, + "byteOffset":181058104, + "target":34962 + }, + { + "buffer":0, + "byteLength":1304560, + "byteOffset":181710384, + "target":34962 + }, + { + "buffer":0, + "byteLength":326140, + "byteOffset":183014944, + "target":34962 + }, + { + "buffer":0, + "byteLength":652280, + "byteOffset":183341084, + "target":34962 + }, + { + "buffer":0, + "byteLength":652280, + "byteOffset":183993364, + "target":34962 + }, + { + "buffer":0, + "byteLength":573060, + "byteOffset":184645644, + "target":34962 + }, + { + "buffer":0, + "byteLength":573060, + "byteOffset":185218704, + "target":34962 + }, + { + "buffer":0, + "byteLength":382040, + "byteOffset":185791764, + "target":34962 + }, + { + "buffer":0, + "byteLength":382040, + "byteOffset":186173804, + "target":34962 + }, + { + "buffer":0, + "byteLength":764080, + "byteOffset":186555844, + "target":34962 + }, + { + "buffer":0, + "byteLength":191020, + "byteOffset":187319924, + "target":34962 + }, + { + "buffer":0, + "byteLength":382040, + "byteOffset":187510944, + "target":34962 + }, + { + "buffer":0, + "byteLength":382040, + "byteOffset":187892984, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":188275024, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":188275264, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":188275504, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":188275664, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":188275824, + "target":34962 + }, + { + "buffer":0, + "byteLength":60, + "byteOffset":188276144, + "target":34963 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":188276204, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":188276348, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":188276492, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":188276588, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":188276684, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":188276876, + "target":34963 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":188276924, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":188309000, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":188341076, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":188362460, + "target":34962 + }, + { + "buffer":0, + "byteLength":42768, + "byteOffset":188383844, + "target":34962 + }, + { + "buffer":0, + "byteLength":23280, + "byteOffset":188426612, + "target":34963 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":188449892, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":188459156, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":188468420, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":188474596, + "target":34962 + }, + { + "buffer":0, + "byteLength":12352, + "byteOffset":188480772, + "target":34962 + }, + { + "buffer":0, + "byteLength":7536, + "byteOffset":188493124, + "target":34963 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":188500660, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":188500900, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":188501140, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":188501300, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":188501460, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":188501780, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":188501924, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":188502068, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":188502164, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":188502260, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":188502452, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":188534528, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":188566604, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":188587988, + "target":34962 + }, + { + "buffer":0, + "byteLength":42768, + "byteOffset":188609372, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":188652140, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":188661404, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":188670668, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":188676844, + "target":34962 + }, + { + "buffer":0, + "byteLength":12352, + "byteOffset":188683020, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":188695372, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":188695612, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":188695852, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":188696012, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":188696172, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":188696492, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":188696636, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":188696780, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":188696876, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":188696972, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":188697164, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":188729240, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":188761316, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":188782700, + "target":34962 + }, + { + "buffer":0, + "byteLength":42768, + "byteOffset":188804084, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":188846852, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":188856116, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":188865380, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":188871556, + "target":34962 + }, + { + "buffer":0, + "byteLength":12352, + "byteOffset":188877732, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":188890084, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":188890324, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":188890564, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":188890724, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":188890884, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":188891204, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":188891348, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":188891492, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":188891588, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":188891684, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":188891876, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":188923952, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":188956028, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":188977412, + "target":34962 + }, + { + "buffer":0, + "byteLength":42768, + "byteOffset":188998796, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":189041564, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":189050828, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":189060092, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":189066268, + "target":34962 + }, + { + "buffer":0, + "byteLength":12352, + "byteOffset":189072444, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":189084796, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":189085036, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":189085276, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":189085436, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":189085596, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":189085916, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":189086060, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":189086204, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":189086300, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":189086396, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":189086588, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":189118664, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":189150740, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":189172124, + "target":34962 + }, + { + "buffer":0, + "byteLength":42768, + "byteOffset":189193508, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":189236276, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":189245540, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":189254804, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":189260980, + "target":34962 + }, + { + "buffer":0, + "byteLength":12352, + "byteOffset":189267156, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":189279508, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":189279748, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":189279988, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":189280148, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":189280308, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":189280628, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":189280772, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":189280916, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":189281012, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":189281108, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":189281300, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":189313376, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":189345452, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":189366836, + "target":34962 + }, + { + "buffer":0, + "byteLength":42768, + "byteOffset":189388220, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":189430988, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":189440252, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":189449516, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":189455692, + "target":34962 + }, + { + "buffer":0, + "byteLength":12352, + "byteOffset":189461868, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":189474220, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":189474460, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":189474700, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":189474860, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":189475020, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":189475340, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":189475484, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":189475628, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":189475724, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":189475820, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":189476012, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":189508088, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":189540164, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":189561548, + "target":34962 + }, + { + "buffer":0, + "byteLength":42768, + "byteOffset":189582932, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":189625700, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":189634964, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":189644228, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":189650404, + "target":34962 + }, + { + "buffer":0, + "byteLength":12352, + "byteOffset":189656580, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":189668932, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":189669172, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":189669412, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":189669572, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":189669732, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":189670052, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":189670196, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":189670340, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":189670436, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":189670532, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":189670724, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":189702800, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":189734876, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":189756260, + "target":34962 + }, + { + "buffer":0, + "byteLength":42768, + "byteOffset":189777644, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":189820412, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":189829676, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":189838940, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":189845116, + "target":34962 + }, + { + "buffer":0, + "byteLength":12352, + "byteOffset":189851292, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":189863644, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":189863884, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":189864124, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":189864284, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":189864444, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":189864764, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":189864908, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":189865052, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":189865148, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":189865244, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":189865436, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":189897512, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":189929588, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":189950972, + "target":34962 + }, + { + "buffer":0, + "byteLength":42768, + "byteOffset":189972356, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":190015124, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":190024388, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":190033652, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":190039828, + "target":34962 + }, + { + "buffer":0, + "byteLength":12352, + "byteOffset":190046004, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":190058356, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":190058596, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":190058836, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":190058996, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":190059156, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":190059476, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":190059620, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":190059764, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":190059860, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":190059956, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":190060148, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":190092224, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":190124300, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":190145684, + "target":34962 + }, + { + "buffer":0, + "byteLength":42768, + "byteOffset":190167068, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":190209836, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":190219100, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":190228364, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":190234540, + "target":34962 + }, + { + "buffer":0, + "byteLength":12352, + "byteOffset":190240716, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":190253068, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":190253308, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":190253548, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":190253708, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":190253868, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":190254188, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":190254332, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":190254476, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":190254572, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":190254668, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":190254860, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":190286936, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":190319012, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":190340396, + "target":34962 + }, + { + "buffer":0, + "byteLength":42768, + "byteOffset":190361780, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":190404548, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":190413812, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":190423076, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":190429252, + "target":34962 + }, + { + "buffer":0, + "byteLength":12352, + "byteOffset":190435428, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":190447780, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":190448020, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":190448260, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":190448420, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":190448580, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":190448900, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":190449044, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":190449188, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":190449284, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":190449380, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":190449572, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":190481648, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":190513724, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":190535108, + "target":34962 + }, + { + "buffer":0, + "byteLength":42768, + "byteOffset":190556492, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":190599260, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":190608524, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":190617788, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":190623964, + "target":34962 + }, + { + "buffer":0, + "byteLength":12352, + "byteOffset":190630140, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":190642492, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":190642732, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":190642972, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":190643132, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":190643292, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":190643612, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":190643756, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":190643900, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":190643996, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":190644092, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":190644284, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":190676360, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":190708436, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":190729820, + "target":34962 + }, + { + "buffer":0, + "byteLength":42768, + "byteOffset":190751204, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":190793972, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":190803236, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":190812500, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":190818676, + "target":34962 + }, + { + "buffer":0, + "byteLength":12352, + "byteOffset":190824852, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":190837204, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":190837444, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":190837684, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":190837844, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":190838004, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":190838324, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":190838468, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":190838612, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":190838708, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":190838804, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":190838996, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":190871072, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":190903148, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":190924532, + "target":34962 + }, + { + "buffer":0, + "byteLength":42768, + "byteOffset":190945916, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":190988684, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":190997948, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":191007212, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":191013388, + "target":34962 + }, + { + "buffer":0, + "byteLength":12352, + "byteOffset":191019564, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":191031916, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":191032156, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":191032396, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":191032556, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":191032716, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":191033036, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":191033180, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":191033324, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":191033420, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":191033516, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":191033708, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":191065784, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":191097860, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":191119244, + "target":34962 + }, + { + "buffer":0, + "byteLength":42768, + "byteOffset":191140628, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":191183396, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":191192660, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":191201924, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":191208100, + "target":34962 + }, + { + "buffer":0, + "byteLength":12352, + "byteOffset":191214276, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":191226628, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":191226868, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":191227108, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":191227268, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":191227428, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":191227748, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":191227892, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":191228036, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":191228132, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":191228228, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":191228420, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":191260496, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":191292572, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":191313956, + "target":34962 + }, + { + "buffer":0, + "byteLength":42768, + "byteOffset":191335340, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":191378108, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":191387372, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":191396636, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":191402812, + "target":34962 + }, + { + "buffer":0, + "byteLength":12352, + "byteOffset":191408988, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":191421340, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":191421580, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":191421820, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":191421980, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":191422140, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":191422460, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":191422604, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":191422748, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":191422844, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":191422940, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":191423132, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":191455208, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":191487284, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":191508668, + "target":34962 + }, + { + "buffer":0, + "byteLength":42768, + "byteOffset":191530052, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":191572820, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":191582084, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":191591348, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":191597524, + "target":34962 + }, + { + "buffer":0, + "byteLength":12352, + "byteOffset":191603700, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":191616052, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":191616292, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":191616532, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":191616692, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":191616852, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":191617172, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":191617316, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":191617460, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":191617556, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":191617652, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":191617844, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":191649920, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":191681996, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":191703380, + "target":34962 + }, + { + "buffer":0, + "byteLength":42768, + "byteOffset":191724764, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":191767532, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":191776796, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":191786060, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":191792236, + "target":34962 + }, + { + "buffer":0, + "byteLength":12352, + "byteOffset":191798412, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":191810764, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":191811004, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":191811244, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":191811404, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":191811564, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":191811884, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":191812028, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":191812172, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":191812268, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":191812364, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":191812556, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":191844632, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":191876708, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":191898092, + "target":34962 + }, + { + "buffer":0, + "byteLength":42768, + "byteOffset":191919476, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":191962244, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":191971508, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":191980772, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":191986948, + "target":34962 + }, + { + "buffer":0, + "byteLength":12352, + "byteOffset":191993124, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":192005476, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":192005716, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":192005956, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":192006116, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":192006276, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":192006596, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":192006740, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":192006884, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":192006980, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":192007076, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":192007268, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":192039344, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":192071420, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":192092804, + "target":34962 + }, + { + "buffer":0, + "byteLength":42768, + "byteOffset":192114188, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":192156956, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":192166220, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":192175484, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":192181660, + "target":34962 + }, + { + "buffer":0, + "byteLength":12352, + "byteOffset":192187836, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":192200188, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":192200428, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":192200668, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":192200828, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":192200988, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":192201308, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":192201452, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":192201596, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":192201692, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":192201788, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":192201980, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":192234056, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":192266132, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":192287516, + "target":34962 + }, + { + "buffer":0, + "byteLength":42768, + "byteOffset":192308900, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":192351668, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":192360932, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":192370196, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":192376372, + "target":34962 + }, + { + "buffer":0, + "byteLength":12352, + "byteOffset":192382548, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":192394900, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":192395140, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":192395380, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":192395540, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":192395700, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":192396020, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":192396164, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":192396308, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":192396404, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":192396500, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":192396692, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":192428768, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":192460844, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":192482228, + "target":34962 + }, + { + "buffer":0, + "byteLength":42768, + "byteOffset":192503612, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":192546380, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":192555644, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":192564908, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":192571084, + "target":34962 + }, + { + "buffer":0, + "byteLength":12352, + "byteOffset":192577260, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":192589612, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":192589852, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":192590092, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":192590252, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":192590412, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":192590732, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":192590876, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":192591020, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":192591116, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":192591212, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":192591404, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":192623480, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":192655556, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":192676940, + "target":34962 + }, + { + "buffer":0, + "byteLength":42768, + "byteOffset":192698324, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":192741092, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":192750356, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":192759620, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":192765796, + "target":34962 + }, + { + "buffer":0, + "byteLength":12352, + "byteOffset":192771972, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":192784324, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":192784564, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":192784804, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":192784964, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":192785124, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":192785444, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":192785588, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":192785732, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":192785828, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":192785924, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":192786116, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":192818192, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":192850268, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":192871652, + "target":34962 + }, + { + "buffer":0, + "byteLength":42768, + "byteOffset":192893036, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":192935804, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":192945068, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":192954332, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":192960508, + "target":34962 + }, + { + "buffer":0, + "byteLength":12352, + "byteOffset":192966684, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":192979036, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":192979276, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":192979516, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":192979676, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":192979836, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":192980156, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":192980300, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":192980444, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":192980540, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":192980636, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":192980828, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":193012904, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":193044980, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":193066364, + "target":34962 + }, + { + "buffer":0, + "byteLength":42768, + "byteOffset":193087748, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":193130516, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":193139780, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":193149044, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":193155220, + "target":34962 + }, + { + "buffer":0, + "byteLength":12352, + "byteOffset":193161396, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":193173748, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":193173988, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":193174228, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":193174388, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":193174548, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":193174868, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":193175012, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":193175156, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":193175252, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":193175348, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":193175540, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":193207616, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":193239692, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":193261076, + "target":34962 + }, + { + "buffer":0, + "byteLength":42768, + "byteOffset":193282460, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":193325228, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":193334492, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":193343756, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":193349932, + "target":34962 + }, + { + "buffer":0, + "byteLength":12352, + "byteOffset":193356108, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":193368460, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":193368700, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":193368940, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":193369100, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":193369260, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":193369580, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":193369724, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":193369868, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":193369964, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":193370060, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":193370252, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":193402328, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":193434404, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":193455788, + "target":34962 + }, + { + "buffer":0, + "byteLength":42768, + "byteOffset":193477172, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":193519940, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":193529204, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":193538468, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":193544644, + "target":34962 + }, + { + "buffer":0, + "byteLength":12352, + "byteOffset":193550820, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":193563172, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":193563412, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":193563652, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":193563812, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":193563972, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":193564292, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":193564436, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":193564580, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":193564676, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":193564772, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":193564964, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":193597040, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":193629116, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":193650500, + "target":34962 + }, + { + "buffer":0, + "byteLength":42768, + "byteOffset":193671884, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":193714652, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":193723916, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":193733180, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":193739356, + "target":34962 + }, + { + "buffer":0, + "byteLength":12352, + "byteOffset":193745532, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":193757884, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":193758124, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":193758364, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":193758524, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":193758684, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":193759004, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":193759148, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":193759292, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":193759388, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":193759484, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":193759676, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":193791752, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":193823828, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":193845212, + "target":34962 + }, + { + "buffer":0, + "byteLength":42768, + "byteOffset":193866596, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":193909364, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":193918628, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":193927892, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":193934068, + "target":34962 + }, + { + "buffer":0, + "byteLength":12352, + "byteOffset":193940244, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":193952596, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":193952836, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":193953076, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":193953236, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":193953396, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":193953716, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":193953860, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":193954004, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":193954100, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":193954196, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":193954388, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":193986464, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":194018540, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":194039924, + "target":34962 + }, + { + "buffer":0, + "byteLength":42768, + "byteOffset":194061308, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":194104076, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":194113340, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":194122604, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":194128780, + "target":34962 + }, + { + "buffer":0, + "byteLength":12352, + "byteOffset":194134956, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":194147308, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":194147548, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":194147788, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":194147948, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":194148108, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":194148428, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":194148572, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":194148716, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":194148812, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":194148908, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":194149100, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":194181176, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":194213252, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":194234636, + "target":34962 + }, + { + "buffer":0, + "byteLength":42768, + "byteOffset":194256020, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":194298788, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":194308052, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":194317316, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":194323492, + "target":34962 + }, + { + "buffer":0, + "byteLength":12352, + "byteOffset":194329668, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":194342020, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":194342260, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":194342500, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":194342660, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":194342820, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":194343140, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":194343284, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":194343428, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":194343524, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":194343620, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":194343812, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":194375888, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":194407964, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":194429348, + "target":34962 + }, + { + "buffer":0, + "byteLength":42768, + "byteOffset":194450732, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":194493500, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":194502764, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":194512028, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":194518204, + "target":34962 + }, + { + "buffer":0, + "byteLength":12352, + "byteOffset":194524380, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":194536732, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":194536972, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":194537212, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":194537372, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":194537532, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":194537852, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":194537996, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":194538140, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":194538236, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":194538332, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":194538524, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":194570600, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":194602676, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":194624060, + "target":34962 + }, + { + "buffer":0, + "byteLength":42768, + "byteOffset":194645444, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":194688212, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":194697476, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":194706740, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":194712916, + "target":34962 + }, + { + "buffer":0, + "byteLength":12352, + "byteOffset":194719092, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":194731444, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":194731684, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":194731924, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":194732084, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":194732244, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":194732564, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":194732708, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":194732852, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":194732948, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":194733044, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":194733236, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":194765312, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":194797388, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":194818772, + "target":34962 + }, + { + "buffer":0, + "byteLength":42768, + "byteOffset":194840156, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":194882924, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":194892188, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":194901452, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":194907628, + "target":34962 + }, + { + "buffer":0, + "byteLength":12352, + "byteOffset":194913804, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":194926156, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":194926396, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":194926636, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":194926796, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":194926956, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":194927276, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":194927420, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":194927564, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":194927660, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":194927756, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":194927948, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":194960024, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":194992100, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":195013484, + "target":34962 + }, + { + "buffer":0, + "byteLength":42768, + "byteOffset":195034868, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":195077636, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":195086900, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":195096164, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":195102340, + "target":34962 + }, + { + "buffer":0, + "byteLength":12352, + "byteOffset":195108516, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":195120868, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":195121108, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":195121348, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":195121508, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":195121668, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":195121988, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":195122132, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":195122276, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":195122372, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":195122468, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":195122660, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":195154736, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":195186812, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":195208196, + "target":34962 + }, + { + "buffer":0, + "byteLength":42768, + "byteOffset":195229580, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":195272348, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":195281612, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":195290876, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":195297052, + "target":34962 + }, + { + "buffer":0, + "byteLength":12352, + "byteOffset":195303228, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":195315580, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":195315820, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":195316060, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":195316220, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":195316380, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":195316700, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":195316844, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":195316988, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":195317084, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":195317180, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":195317372, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":195349448, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":195381524, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":195402908, + "target":34962 + }, + { + "buffer":0, + "byteLength":42768, + "byteOffset":195424292, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":195467060, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":195476324, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":195485588, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":195491764, + "target":34962 + }, + { + "buffer":0, + "byteLength":12352, + "byteOffset":195497940, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":195510292, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":195510532, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":195510772, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":195510932, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":195511092, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":195511412, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":195511556, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":195511700, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":195511796, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":195511892, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":195512084, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":195544160, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":195576236, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":195597620, + "target":34962 + }, + { + "buffer":0, + "byteLength":42768, + "byteOffset":195619004, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":195661772, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":195671036, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":195680300, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":195686476, + "target":34962 + }, + { + "buffer":0, + "byteLength":12352, + "byteOffset":195692652, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":195705004, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":195705244, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":195705484, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":195705644, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":195705804, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":195706124, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":195706268, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":195706412, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":195706508, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":195706604, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":195706796, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":195738872, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":195770948, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":195792332, + "target":34962 + }, + { + "buffer":0, + "byteLength":42768, + "byteOffset":195813716, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":195856484, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":195865748, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":195875012, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":195881188, + "target":34962 + }, + { + "buffer":0, + "byteLength":12352, + "byteOffset":195887364, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":195899716, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":195899956, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":195900196, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":195900356, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":195900516, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":195900836, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":195900980, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":195901124, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":195901220, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":195901316, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":195901508, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":195933584, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":195965660, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":195987044, + "target":34962 + }, + { + "buffer":0, + "byteLength":42768, + "byteOffset":196008428, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":196051196, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":196060460, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":196069724, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":196075900, + "target":34962 + }, + { + "buffer":0, + "byteLength":12352, + "byteOffset":196082076, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":196094428, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":196094668, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":196094908, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":196095068, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":196095228, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":196095548, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":196095692, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":196095836, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":196095932, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":196096028, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":196096220, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":196128296, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":196160372, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":196181756, + "target":34962 + }, + { + "buffer":0, + "byteLength":42768, + "byteOffset":196203140, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":196245908, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":196255172, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":196264436, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":196270612, + "target":34962 + }, + { + "buffer":0, + "byteLength":12352, + "byteOffset":196276788, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":196289140, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":196289380, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":196289620, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":196289780, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":196289940, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":196290260, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":196290404, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":196290548, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":196290644, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":196290740, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":196290932, + "target":34962 + }, + { + "buffer":0, + "byteLength":32076, + "byteOffset":196323008, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":196355084, + "target":34962 + }, + { + "buffer":0, + "byteLength":21384, + "byteOffset":196376468, + "target":34962 + }, + { + "buffer":0, + "byteLength":42768, + "byteOffset":196397852, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":196440620, + "target":34962 + }, + { + "buffer":0, + "byteLength":9264, + "byteOffset":196449884, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":196459148, + "target":34962 + }, + { + "buffer":0, + "byteLength":6176, + "byteOffset":196465324, + "target":34962 + }, + { + "buffer":0, + "byteLength":12352, + "byteOffset":196471500, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":196483852, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":196485436, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":196487020, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":196488076, + "target":34962 + }, + { + "buffer":0, + "byteLength":2112, + "byteOffset":196489132, + "target":34962 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":196491244, + "target":34963 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":196491892, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":196492756, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":196493620, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":196494196, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":196494772, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":196495924, + "target":34963 + }, + { + "buffer":0, + "byteLength":8040, + "byteOffset":196496164, + "target":34962 + }, + { + "buffer":0, + "byteLength":8040, + "byteOffset":196504204, + "target":34962 + }, + { + "buffer":0, + "byteLength":5360, + "byteOffset":196512244, + "target":34962 + }, + { + "buffer":0, + "byteLength":5360, + "byteOffset":196517604, + "target":34962 + }, + { + "buffer":0, + "byteLength":10720, + "byteOffset":196522964, + "target":34962 + }, + { + "buffer":0, + "byteLength":4872, + "byteOffset":196533684, + "target":34963 + }, + { + "buffer":0, + "byteLength":19584, + "byteOffset":196538556, + "target":34962 + }, + { + "buffer":0, + "byteLength":19584, + "byteOffset":196558140, + "target":34962 + }, + { + "buffer":0, + "byteLength":13056, + "byteOffset":196577724, + "target":34962 + }, + { + "buffer":0, + "byteLength":13056, + "byteOffset":196590780, + "target":34962 + }, + { + "buffer":0, + "byteLength":26112, + "byteOffset":196603836, + "target":34962 + }, + { + "buffer":0, + "byteLength":9552, + "byteOffset":196629948, + "target":34963 + }, + { + "buffer":0, + "byteLength":12576, + "byteOffset":196639500, + "target":34962 + }, + { + "buffer":0, + "byteLength":12576, + "byteOffset":196652076, + "target":34962 + }, + { + "buffer":0, + "byteLength":8384, + "byteOffset":196664652, + "target":34962 + }, + { + "buffer":0, + "byteLength":8384, + "byteOffset":196673036, + "target":34962 + }, + { + "buffer":0, + "byteLength":16768, + "byteOffset":196681420, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":196698188, + "target":34963 + }, + { + "buffer":0, + "byteLength":21564, + "byteOffset":196705100, + "target":34962 + }, + { + "buffer":0, + "byteLength":21564, + "byteOffset":196726664, + "target":34962 + }, + { + "buffer":0, + "byteLength":14376, + "byteOffset":196748228, + "target":34962 + }, + { + "buffer":0, + "byteLength":14376, + "byteOffset":196762604, + "target":34962 + }, + { + "buffer":0, + "byteLength":28752, + "byteOffset":196776980, + "target":34962 + }, + { + "buffer":0, + "byteLength":14592, + "byteOffset":196805732, + "target":34963 + }, + { + "buffer":0, + "byteLength":2832, + "byteOffset":196820324, + "target":34962 + }, + { + "buffer":0, + "byteLength":2832, + "byteOffset":196823156, + "target":34962 + }, + { + "buffer":0, + "byteLength":1888, + "byteOffset":196825988, + "target":34962 + }, + { + "buffer":0, + "byteLength":1888, + "byteOffset":196827876, + "target":34962 + }, + { + "buffer":0, + "byteLength":3776, + "byteOffset":196829764, + "target":34962 + }, + { + "buffer":0, + "byteLength":1824, + "byteOffset":196833540, + "target":34963 + }, + { + "buffer":0, + "byteLength":52632, + "byteOffset":196835364, + "target":34962 + }, + { + "buffer":0, + "byteLength":52632, + "byteOffset":196887996, + "target":34962 + }, + { + "buffer":0, + "byteLength":35088, + "byteOffset":196940628, + "target":34962 + }, + { + "buffer":0, + "byteLength":35088, + "byteOffset":196975716, + "target":34962 + }, + { + "buffer":0, + "byteLength":70176, + "byteOffset":197010804, + "target":34962 + }, + { + "buffer":0, + "byteLength":29832, + "byteOffset":197080980, + "target":34963 + }, + { + "buffer":0, + "byteLength":23028, + "byteOffset":197110812, + "target":34962 + }, + { + "buffer":0, + "byteLength":23028, + "byteOffset":197133840, + "target":34962 + }, + { + "buffer":0, + "byteLength":15352, + "byteOffset":197156868, + "target":34962 + }, + { + "buffer":0, + "byteLength":15352, + "byteOffset":197172220, + "target":34962 + }, + { + "buffer":0, + "byteLength":30704, + "byteOffset":197187572, + "target":34962 + }, + { + "buffer":0, + "byteLength":13704, + "byteOffset":197218276, + "target":34963 + }, + { + "buffer":0, + "byteLength":2424, + "byteOffset":197231980, + "target":34962 + }, + { + "buffer":0, + "byteLength":2424, + "byteOffset":197234404, + "target":34962 + }, + { + "buffer":0, + "byteLength":1616, + "byteOffset":197236828, + "target":34962 + }, + { + "buffer":0, + "byteLength":1616, + "byteOffset":197238444, + "target":34962 + }, + { + "buffer":0, + "byteLength":3232, + "byteOffset":197240060, + "target":34962 + }, + { + "buffer":0, + "byteLength":696, + "byteOffset":197243292, + "target":34963 + }, + { + "buffer":0, + "byteLength":792, + "byteOffset":197243988, + "target":34962 + }, + { + "buffer":0, + "byteLength":792, + "byteOffset":197244780, + "target":34962 + }, + { + "buffer":0, + "byteLength":528, + "byteOffset":197245572, + "target":34962 + }, + { + "buffer":0, + "byteLength":528, + "byteOffset":197246100, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":197246628, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":197247684, + "target":34963 + }, + { + "buffer":0, + "byteLength":66684, + "byteOffset":197248068, + "target":34962 + }, + { + "buffer":0, + "byteLength":66684, + "byteOffset":197314752, + "target":34962 + }, + { + "buffer":0, + "byteLength":44456, + "byteOffset":197381436, + "target":34962 + }, + { + "buffer":0, + "byteLength":44456, + "byteOffset":197425892, + "target":34962 + }, + { + "buffer":0, + "byteLength":88912, + "byteOffset":197470348, + "target":34962 + }, + { + "buffer":0, + "byteLength":52128, + "byteOffset":197559260, + "target":34963 + }, + { + "buffer":0, + "byteLength":97320, + "byteOffset":197611388, + "target":34962 + }, + { + "buffer":0, + "byteLength":97320, + "byteOffset":197708708, + "target":34962 + }, + { + "buffer":0, + "byteLength":64880, + "byteOffset":197806028, + "target":34962 + }, + { + "buffer":0, + "byteLength":64880, + "byteOffset":197870908, + "target":34962 + }, + { + "buffer":0, + "byteLength":129760, + "byteOffset":197935788, + "target":34962 + }, + { + "buffer":0, + "byteLength":50304, + "byteOffset":198065548, + "target":34963 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":198115852, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":198117436, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":198119020, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":198120076, + "target":34962 + }, + { + "buffer":0, + "byteLength":2112, + "byteOffset":198121132, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":198123244, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":198124108, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":198124972, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":198125548, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":198126124, + "target":34962 + }, + { + "buffer":0, + "byteLength":8040, + "byteOffset":198127276, + "target":34962 + }, + { + "buffer":0, + "byteLength":8040, + "byteOffset":198135316, + "target":34962 + }, + { + "buffer":0, + "byteLength":5360, + "byteOffset":198143356, + "target":34962 + }, + { + "buffer":0, + "byteLength":5360, + "byteOffset":198148716, + "target":34962 + }, + { + "buffer":0, + "byteLength":10720, + "byteOffset":198154076, + "target":34962 + }, + { + "buffer":0, + "byteLength":19584, + "byteOffset":198164796, + "target":34962 + }, + { + "buffer":0, + "byteLength":19584, + "byteOffset":198184380, + "target":34962 + }, + { + "buffer":0, + "byteLength":13056, + "byteOffset":198203964, + "target":34962 + }, + { + "buffer":0, + "byteLength":13056, + "byteOffset":198217020, + "target":34962 + }, + { + "buffer":0, + "byteLength":26112, + "byteOffset":198230076, + "target":34962 + }, + { + "buffer":0, + "byteLength":12576, + "byteOffset":198256188, + "target":34962 + }, + { + "buffer":0, + "byteLength":12576, + "byteOffset":198268764, + "target":34962 + }, + { + "buffer":0, + "byteLength":8384, + "byteOffset":198281340, + "target":34962 + }, + { + "buffer":0, + "byteLength":8384, + "byteOffset":198289724, + "target":34962 + }, + { + "buffer":0, + "byteLength":16768, + "byteOffset":198298108, + "target":34962 + }, + { + "buffer":0, + "byteLength":21564, + "byteOffset":198314876, + "target":34962 + }, + { + "buffer":0, + "byteLength":21564, + "byteOffset":198336440, + "target":34962 + }, + { + "buffer":0, + "byteLength":14376, + "byteOffset":198358004, + "target":34962 + }, + { + "buffer":0, + "byteLength":14376, + "byteOffset":198372380, + "target":34962 + }, + { + "buffer":0, + "byteLength":28752, + "byteOffset":198386756, + "target":34962 + }, + { + "buffer":0, + "byteLength":2832, + "byteOffset":198415508, + "target":34962 + }, + { + "buffer":0, + "byteLength":2832, + "byteOffset":198418340, + "target":34962 + }, + { + "buffer":0, + "byteLength":1888, + "byteOffset":198421172, + "target":34962 + }, + { + "buffer":0, + "byteLength":1888, + "byteOffset":198423060, + "target":34962 + }, + { + "buffer":0, + "byteLength":3776, + "byteOffset":198424948, + "target":34962 + }, + { + "buffer":0, + "byteLength":52632, + "byteOffset":198428724, + "target":34962 + }, + { + "buffer":0, + "byteLength":52632, + "byteOffset":198481356, + "target":34962 + }, + { + "buffer":0, + "byteLength":35088, + "byteOffset":198533988, + "target":34962 + }, + { + "buffer":0, + "byteLength":35088, + "byteOffset":198569076, + "target":34962 + }, + { + "buffer":0, + "byteLength":70176, + "byteOffset":198604164, + "target":34962 + }, + { + "buffer":0, + "byteLength":23028, + "byteOffset":198674340, + "target":34962 + }, + { + "buffer":0, + "byteLength":23028, + "byteOffset":198697368, + "target":34962 + }, + { + "buffer":0, + "byteLength":15352, + "byteOffset":198720396, + "target":34962 + }, + { + "buffer":0, + "byteLength":15352, + "byteOffset":198735748, + "target":34962 + }, + { + "buffer":0, + "byteLength":30704, + "byteOffset":198751100, + "target":34962 + }, + { + "buffer":0, + "byteLength":2424, + "byteOffset":198781804, + "target":34962 + }, + { + "buffer":0, + "byteLength":2424, + "byteOffset":198784228, + "target":34962 + }, + { + "buffer":0, + "byteLength":1616, + "byteOffset":198786652, + "target":34962 + }, + { + "buffer":0, + "byteLength":1616, + "byteOffset":198788268, + "target":34962 + }, + { + "buffer":0, + "byteLength":3232, + "byteOffset":198789884, + "target":34962 + }, + { + "buffer":0, + "byteLength":792, + "byteOffset":198793116, + "target":34962 + }, + { + "buffer":0, + "byteLength":792, + "byteOffset":198793908, + "target":34962 + }, + { + "buffer":0, + "byteLength":528, + "byteOffset":198794700, + "target":34962 + }, + { + "buffer":0, + "byteLength":528, + "byteOffset":198795228, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":198795756, + "target":34962 + }, + { + "buffer":0, + "byteLength":66684, + "byteOffset":198796812, + "target":34962 + }, + { + "buffer":0, + "byteLength":66684, + "byteOffset":198863496, + "target":34962 + }, + { + "buffer":0, + "byteLength":44456, + "byteOffset":198930180, + "target":34962 + }, + { + "buffer":0, + "byteLength":44456, + "byteOffset":198974636, + "target":34962 + }, + { + "buffer":0, + "byteLength":88912, + "byteOffset":199019092, + "target":34962 + }, + { + "buffer":0, + "byteLength":97320, + "byteOffset":199108004, + "target":34962 + }, + { + "buffer":0, + "byteLength":97320, + "byteOffset":199205324, + "target":34962 + }, + { + "buffer":0, + "byteLength":64880, + "byteOffset":199302644, + "target":34962 + }, + { + "buffer":0, + "byteLength":64880, + "byteOffset":199367524, + "target":34962 + }, + { + "buffer":0, + "byteLength":129760, + "byteOffset":199432404, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":199562164, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":199563748, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":199565332, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":199566388, + "target":34962 + }, + { + "buffer":0, + "byteLength":2112, + "byteOffset":199567444, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":199569556, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":199570420, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":199571284, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":199571860, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":199572436, + "target":34962 + }, + { + "buffer":0, + "byteLength":8040, + "byteOffset":199573588, + "target":34962 + }, + { + "buffer":0, + "byteLength":8040, + "byteOffset":199581628, + "target":34962 + }, + { + "buffer":0, + "byteLength":5360, + "byteOffset":199589668, + "target":34962 + }, + { + "buffer":0, + "byteLength":5360, + "byteOffset":199595028, + "target":34962 + }, + { + "buffer":0, + "byteLength":10720, + "byteOffset":199600388, + "target":34962 + }, + { + "buffer":0, + "byteLength":19584, + "byteOffset":199611108, + "target":34962 + }, + { + "buffer":0, + "byteLength":19584, + "byteOffset":199630692, + "target":34962 + }, + { + "buffer":0, + "byteLength":13056, + "byteOffset":199650276, + "target":34962 + }, + { + "buffer":0, + "byteLength":13056, + "byteOffset":199663332, + "target":34962 + }, + { + "buffer":0, + "byteLength":26112, + "byteOffset":199676388, + "target":34962 + }, + { + "buffer":0, + "byteLength":12576, + "byteOffset":199702500, + "target":34962 + }, + { + "buffer":0, + "byteLength":12576, + "byteOffset":199715076, + "target":34962 + }, + { + "buffer":0, + "byteLength":8384, + "byteOffset":199727652, + "target":34962 + }, + { + "buffer":0, + "byteLength":8384, + "byteOffset":199736036, + "target":34962 + }, + { + "buffer":0, + "byteLength":16768, + "byteOffset":199744420, + "target":34962 + }, + { + "buffer":0, + "byteLength":21564, + "byteOffset":199761188, + "target":34962 + }, + { + "buffer":0, + "byteLength":21564, + "byteOffset":199782752, + "target":34962 + }, + { + "buffer":0, + "byteLength":14376, + "byteOffset":199804316, + "target":34962 + }, + { + "buffer":0, + "byteLength":14376, + "byteOffset":199818692, + "target":34962 + }, + { + "buffer":0, + "byteLength":28752, + "byteOffset":199833068, + "target":34962 + }, + { + "buffer":0, + "byteLength":2832, + "byteOffset":199861820, + "target":34962 + }, + { + "buffer":0, + "byteLength":2832, + "byteOffset":199864652, + "target":34962 + }, + { + "buffer":0, + "byteLength":1888, + "byteOffset":199867484, + "target":34962 + }, + { + "buffer":0, + "byteLength":1888, + "byteOffset":199869372, + "target":34962 + }, + { + "buffer":0, + "byteLength":3776, + "byteOffset":199871260, + "target":34962 + }, + { + "buffer":0, + "byteLength":52632, + "byteOffset":199875036, + "target":34962 + }, + { + "buffer":0, + "byteLength":52632, + "byteOffset":199927668, + "target":34962 + }, + { + "buffer":0, + "byteLength":35088, + "byteOffset":199980300, + "target":34962 + }, + { + "buffer":0, + "byteLength":35088, + "byteOffset":200015388, + "target":34962 + }, + { + "buffer":0, + "byteLength":70176, + "byteOffset":200050476, + "target":34962 + }, + { + "buffer":0, + "byteLength":23028, + "byteOffset":200120652, + "target":34962 + }, + { + "buffer":0, + "byteLength":23028, + "byteOffset":200143680, + "target":34962 + }, + { + "buffer":0, + "byteLength":15352, + "byteOffset":200166708, + "target":34962 + }, + { + "buffer":0, + "byteLength":15352, + "byteOffset":200182060, + "target":34962 + }, + { + "buffer":0, + "byteLength":30704, + "byteOffset":200197412, + "target":34962 + }, + { + "buffer":0, + "byteLength":2424, + "byteOffset":200228116, + "target":34962 + }, + { + "buffer":0, + "byteLength":2424, + "byteOffset":200230540, + "target":34962 + }, + { + "buffer":0, + "byteLength":1616, + "byteOffset":200232964, + "target":34962 + }, + { + "buffer":0, + "byteLength":1616, + "byteOffset":200234580, + "target":34962 + }, + { + "buffer":0, + "byteLength":3232, + "byteOffset":200236196, + "target":34962 + }, + { + "buffer":0, + "byteLength":792, + "byteOffset":200239428, + "target":34962 + }, + { + "buffer":0, + "byteLength":792, + "byteOffset":200240220, + "target":34962 + }, + { + "buffer":0, + "byteLength":528, + "byteOffset":200241012, + "target":34962 + }, + { + "buffer":0, + "byteLength":528, + "byteOffset":200241540, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":200242068, + "target":34962 + }, + { + "buffer":0, + "byteLength":66684, + "byteOffset":200243124, + "target":34962 + }, + { + "buffer":0, + "byteLength":66684, + "byteOffset":200309808, + "target":34962 + }, + { + "buffer":0, + "byteLength":44456, + "byteOffset":200376492, + "target":34962 + }, + { + "buffer":0, + "byteLength":44456, + "byteOffset":200420948, + "target":34962 + }, + { + "buffer":0, + "byteLength":88912, + "byteOffset":200465404, + "target":34962 + }, + { + "buffer":0, + "byteLength":97320, + "byteOffset":200554316, + "target":34962 + }, + { + "buffer":0, + "byteLength":97320, + "byteOffset":200651636, + "target":34962 + }, + { + "buffer":0, + "byteLength":64880, + "byteOffset":200748956, + "target":34962 + }, + { + "buffer":0, + "byteLength":64880, + "byteOffset":200813836, + "target":34962 + }, + { + "buffer":0, + "byteLength":129760, + "byteOffset":200878716, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":201008476, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":201010060, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":201011644, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":201012700, + "target":34962 + }, + { + "buffer":0, + "byteLength":2112, + "byteOffset":201013756, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":201015868, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":201016732, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":201017596, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":201018172, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":201018748, + "target":34962 + }, + { + "buffer":0, + "byteLength":8040, + "byteOffset":201019900, + "target":34962 + }, + { + "buffer":0, + "byteLength":8040, + "byteOffset":201027940, + "target":34962 + }, + { + "buffer":0, + "byteLength":5360, + "byteOffset":201035980, + "target":34962 + }, + { + "buffer":0, + "byteLength":5360, + "byteOffset":201041340, + "target":34962 + }, + { + "buffer":0, + "byteLength":10720, + "byteOffset":201046700, + "target":34962 + }, + { + "buffer":0, + "byteLength":19584, + "byteOffset":201057420, + "target":34962 + }, + { + "buffer":0, + "byteLength":19584, + "byteOffset":201077004, + "target":34962 + }, + { + "buffer":0, + "byteLength":13056, + "byteOffset":201096588, + "target":34962 + }, + { + "buffer":0, + "byteLength":13056, + "byteOffset":201109644, + "target":34962 + }, + { + "buffer":0, + "byteLength":26112, + "byteOffset":201122700, + "target":34962 + }, + { + "buffer":0, + "byteLength":12576, + "byteOffset":201148812, + "target":34962 + }, + { + "buffer":0, + "byteLength":12576, + "byteOffset":201161388, + "target":34962 + }, + { + "buffer":0, + "byteLength":8384, + "byteOffset":201173964, + "target":34962 + }, + { + "buffer":0, + "byteLength":8384, + "byteOffset":201182348, + "target":34962 + }, + { + "buffer":0, + "byteLength":16768, + "byteOffset":201190732, + "target":34962 + }, + { + "buffer":0, + "byteLength":21564, + "byteOffset":201207500, + "target":34962 + }, + { + "buffer":0, + "byteLength":21564, + "byteOffset":201229064, + "target":34962 + }, + { + "buffer":0, + "byteLength":14376, + "byteOffset":201250628, + "target":34962 + }, + { + "buffer":0, + "byteLength":14376, + "byteOffset":201265004, + "target":34962 + }, + { + "buffer":0, + "byteLength":28752, + "byteOffset":201279380, + "target":34962 + }, + { + "buffer":0, + "byteLength":2832, + "byteOffset":201308132, + "target":34962 + }, + { + "buffer":0, + "byteLength":2832, + "byteOffset":201310964, + "target":34962 + }, + { + "buffer":0, + "byteLength":1888, + "byteOffset":201313796, + "target":34962 + }, + { + "buffer":0, + "byteLength":1888, + "byteOffset":201315684, + "target":34962 + }, + { + "buffer":0, + "byteLength":3776, + "byteOffset":201317572, + "target":34962 + }, + { + "buffer":0, + "byteLength":52632, + "byteOffset":201321348, + "target":34962 + }, + { + "buffer":0, + "byteLength":52632, + "byteOffset":201373980, + "target":34962 + }, + { + "buffer":0, + "byteLength":35088, + "byteOffset":201426612, + "target":34962 + }, + { + "buffer":0, + "byteLength":35088, + "byteOffset":201461700, + "target":34962 + }, + { + "buffer":0, + "byteLength":70176, + "byteOffset":201496788, + "target":34962 + }, + { + "buffer":0, + "byteLength":23028, + "byteOffset":201566964, + "target":34962 + }, + { + "buffer":0, + "byteLength":23028, + "byteOffset":201589992, + "target":34962 + }, + { + "buffer":0, + "byteLength":15352, + "byteOffset":201613020, + "target":34962 + }, + { + "buffer":0, + "byteLength":15352, + "byteOffset":201628372, + "target":34962 + }, + { + "buffer":0, + "byteLength":30704, + "byteOffset":201643724, + "target":34962 + }, + { + "buffer":0, + "byteLength":2424, + "byteOffset":201674428, + "target":34962 + }, + { + "buffer":0, + "byteLength":2424, + "byteOffset":201676852, + "target":34962 + }, + { + "buffer":0, + "byteLength":1616, + "byteOffset":201679276, + "target":34962 + }, + { + "buffer":0, + "byteLength":1616, + "byteOffset":201680892, + "target":34962 + }, + { + "buffer":0, + "byteLength":3232, + "byteOffset":201682508, + "target":34962 + }, + { + "buffer":0, + "byteLength":792, + "byteOffset":201685740, + "target":34962 + }, + { + "buffer":0, + "byteLength":792, + "byteOffset":201686532, + "target":34962 + }, + { + "buffer":0, + "byteLength":528, + "byteOffset":201687324, + "target":34962 + }, + { + "buffer":0, + "byteLength":528, + "byteOffset":201687852, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":201688380, + "target":34962 + }, + { + "buffer":0, + "byteLength":66684, + "byteOffset":201689436, + "target":34962 + }, + { + "buffer":0, + "byteLength":66684, + "byteOffset":201756120, + "target":34962 + }, + { + "buffer":0, + "byteLength":44456, + "byteOffset":201822804, + "target":34962 + }, + { + "buffer":0, + "byteLength":44456, + "byteOffset":201867260, + "target":34962 + }, + { + "buffer":0, + "byteLength":88912, + "byteOffset":201911716, + "target":34962 + }, + { + "buffer":0, + "byteLength":97320, + "byteOffset":202000628, + "target":34962 + }, + { + "buffer":0, + "byteLength":97320, + "byteOffset":202097948, + "target":34962 + }, + { + "buffer":0, + "byteLength":64880, + "byteOffset":202195268, + "target":34962 + }, + { + "buffer":0, + "byteLength":64880, + "byteOffset":202260148, + "target":34962 + }, + { + "buffer":0, + "byteLength":129760, + "byteOffset":202325028, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":202454788, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":202456372, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":202457956, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":202459012, + "target":34962 + }, + { + "buffer":0, + "byteLength":2112, + "byteOffset":202460068, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":202462180, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":202463044, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":202463908, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":202464484, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":202465060, + "target":34962 + }, + { + "buffer":0, + "byteLength":8040, + "byteOffset":202466212, + "target":34962 + }, + { + "buffer":0, + "byteLength":8040, + "byteOffset":202474252, + "target":34962 + }, + { + "buffer":0, + "byteLength":5360, + "byteOffset":202482292, + "target":34962 + }, + { + "buffer":0, + "byteLength":5360, + "byteOffset":202487652, + "target":34962 + }, + { + "buffer":0, + "byteLength":10720, + "byteOffset":202493012, + "target":34962 + }, + { + "buffer":0, + "byteLength":19584, + "byteOffset":202503732, + "target":34962 + }, + { + "buffer":0, + "byteLength":19584, + "byteOffset":202523316, + "target":34962 + }, + { + "buffer":0, + "byteLength":13056, + "byteOffset":202542900, + "target":34962 + }, + { + "buffer":0, + "byteLength":13056, + "byteOffset":202555956, + "target":34962 + }, + { + "buffer":0, + "byteLength":26112, + "byteOffset":202569012, + "target":34962 + }, + { + "buffer":0, + "byteLength":12576, + "byteOffset":202595124, + "target":34962 + }, + { + "buffer":0, + "byteLength":12576, + "byteOffset":202607700, + "target":34962 + }, + { + "buffer":0, + "byteLength":8384, + "byteOffset":202620276, + "target":34962 + }, + { + "buffer":0, + "byteLength":8384, + "byteOffset":202628660, + "target":34962 + }, + { + "buffer":0, + "byteLength":16768, + "byteOffset":202637044, + "target":34962 + }, + { + "buffer":0, + "byteLength":21564, + "byteOffset":202653812, + "target":34962 + }, + { + "buffer":0, + "byteLength":21564, + "byteOffset":202675376, + "target":34962 + }, + { + "buffer":0, + "byteLength":14376, + "byteOffset":202696940, + "target":34962 + }, + { + "buffer":0, + "byteLength":14376, + "byteOffset":202711316, + "target":34962 + }, + { + "buffer":0, + "byteLength":28752, + "byteOffset":202725692, + "target":34962 + }, + { + "buffer":0, + "byteLength":2832, + "byteOffset":202754444, + "target":34962 + }, + { + "buffer":0, + "byteLength":2832, + "byteOffset":202757276, + "target":34962 + }, + { + "buffer":0, + "byteLength":1888, + "byteOffset":202760108, + "target":34962 + }, + { + "buffer":0, + "byteLength":1888, + "byteOffset":202761996, + "target":34962 + }, + { + "buffer":0, + "byteLength":3776, + "byteOffset":202763884, + "target":34962 + }, + { + "buffer":0, + "byteLength":52632, + "byteOffset":202767660, + "target":34962 + }, + { + "buffer":0, + "byteLength":52632, + "byteOffset":202820292, + "target":34962 + }, + { + "buffer":0, + "byteLength":35088, + "byteOffset":202872924, + "target":34962 + }, + { + "buffer":0, + "byteLength":35088, + "byteOffset":202908012, + "target":34962 + }, + { + "buffer":0, + "byteLength":70176, + "byteOffset":202943100, + "target":34962 + }, + { + "buffer":0, + "byteLength":23028, + "byteOffset":203013276, + "target":34962 + }, + { + "buffer":0, + "byteLength":23028, + "byteOffset":203036304, + "target":34962 + }, + { + "buffer":0, + "byteLength":15352, + "byteOffset":203059332, + "target":34962 + }, + { + "buffer":0, + "byteLength":15352, + "byteOffset":203074684, + "target":34962 + }, + { + "buffer":0, + "byteLength":30704, + "byteOffset":203090036, + "target":34962 + }, + { + "buffer":0, + "byteLength":2424, + "byteOffset":203120740, + "target":34962 + }, + { + "buffer":0, + "byteLength":2424, + "byteOffset":203123164, + "target":34962 + }, + { + "buffer":0, + "byteLength":1616, + "byteOffset":203125588, + "target":34962 + }, + { + "buffer":0, + "byteLength":1616, + "byteOffset":203127204, + "target":34962 + }, + { + "buffer":0, + "byteLength":3232, + "byteOffset":203128820, + "target":34962 + }, + { + "buffer":0, + "byteLength":792, + "byteOffset":203132052, + "target":34962 + }, + { + "buffer":0, + "byteLength":792, + "byteOffset":203132844, + "target":34962 + }, + { + "buffer":0, + "byteLength":528, + "byteOffset":203133636, + "target":34962 + }, + { + "buffer":0, + "byteLength":528, + "byteOffset":203134164, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":203134692, + "target":34962 + }, + { + "buffer":0, + "byteLength":66684, + "byteOffset":203135748, + "target":34962 + }, + { + "buffer":0, + "byteLength":66684, + "byteOffset":203202432, + "target":34962 + }, + { + "buffer":0, + "byteLength":44456, + "byteOffset":203269116, + "target":34962 + }, + { + "buffer":0, + "byteLength":44456, + "byteOffset":203313572, + "target":34962 + }, + { + "buffer":0, + "byteLength":88912, + "byteOffset":203358028, + "target":34962 + }, + { + "buffer":0, + "byteLength":97320, + "byteOffset":203446940, + "target":34962 + }, + { + "buffer":0, + "byteLength":97320, + "byteOffset":203544260, + "target":34962 + }, + { + "buffer":0, + "byteLength":64880, + "byteOffset":203641580, + "target":34962 + }, + { + "buffer":0, + "byteLength":64880, + "byteOffset":203706460, + "target":34962 + }, + { + "buffer":0, + "byteLength":129760, + "byteOffset":203771340, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":203901100, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":203902684, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":203904268, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":203905324, + "target":34962 + }, + { + "buffer":0, + "byteLength":2112, + "byteOffset":203906380, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":203908492, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":203909356, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":203910220, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":203910796, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":203911372, + "target":34962 + }, + { + "buffer":0, + "byteLength":8040, + "byteOffset":203912524, + "target":34962 + }, + { + "buffer":0, + "byteLength":8040, + "byteOffset":203920564, + "target":34962 + }, + { + "buffer":0, + "byteLength":5360, + "byteOffset":203928604, + "target":34962 + }, + { + "buffer":0, + "byteLength":5360, + "byteOffset":203933964, + "target":34962 + }, + { + "buffer":0, + "byteLength":10720, + "byteOffset":203939324, + "target":34962 + }, + { + "buffer":0, + "byteLength":19584, + "byteOffset":203950044, + "target":34962 + }, + { + "buffer":0, + "byteLength":19584, + "byteOffset":203969628, + "target":34962 + }, + { + "buffer":0, + "byteLength":13056, + "byteOffset":203989212, + "target":34962 + }, + { + "buffer":0, + "byteLength":13056, + "byteOffset":204002268, + "target":34962 + }, + { + "buffer":0, + "byteLength":26112, + "byteOffset":204015324, + "target":34962 + }, + { + "buffer":0, + "byteLength":12576, + "byteOffset":204041436, + "target":34962 + }, + { + "buffer":0, + "byteLength":12576, + "byteOffset":204054012, + "target":34962 + }, + { + "buffer":0, + "byteLength":8384, + "byteOffset":204066588, + "target":34962 + }, + { + "buffer":0, + "byteLength":8384, + "byteOffset":204074972, + "target":34962 + }, + { + "buffer":0, + "byteLength":16768, + "byteOffset":204083356, + "target":34962 + }, + { + "buffer":0, + "byteLength":21564, + "byteOffset":204100124, + "target":34962 + }, + { + "buffer":0, + "byteLength":21564, + "byteOffset":204121688, + "target":34962 + }, + { + "buffer":0, + "byteLength":14376, + "byteOffset":204143252, + "target":34962 + }, + { + "buffer":0, + "byteLength":14376, + "byteOffset":204157628, + "target":34962 + }, + { + "buffer":0, + "byteLength":28752, + "byteOffset":204172004, + "target":34962 + }, + { + "buffer":0, + "byteLength":2832, + "byteOffset":204200756, + "target":34962 + }, + { + "buffer":0, + "byteLength":2832, + "byteOffset":204203588, + "target":34962 + }, + { + "buffer":0, + "byteLength":1888, + "byteOffset":204206420, + "target":34962 + }, + { + "buffer":0, + "byteLength":1888, + "byteOffset":204208308, + "target":34962 + }, + { + "buffer":0, + "byteLength":3776, + "byteOffset":204210196, + "target":34962 + }, + { + "buffer":0, + "byteLength":52632, + "byteOffset":204213972, + "target":34962 + }, + { + "buffer":0, + "byteLength":52632, + "byteOffset":204266604, + "target":34962 + }, + { + "buffer":0, + "byteLength":35088, + "byteOffset":204319236, + "target":34962 + }, + { + "buffer":0, + "byteLength":35088, + "byteOffset":204354324, + "target":34962 + }, + { + "buffer":0, + "byteLength":70176, + "byteOffset":204389412, + "target":34962 + }, + { + "buffer":0, + "byteLength":23028, + "byteOffset":204459588, + "target":34962 + }, + { + "buffer":0, + "byteLength":23028, + "byteOffset":204482616, + "target":34962 + }, + { + "buffer":0, + "byteLength":15352, + "byteOffset":204505644, + "target":34962 + }, + { + "buffer":0, + "byteLength":15352, + "byteOffset":204520996, + "target":34962 + }, + { + "buffer":0, + "byteLength":30704, + "byteOffset":204536348, + "target":34962 + }, + { + "buffer":0, + "byteLength":2424, + "byteOffset":204567052, + "target":34962 + }, + { + "buffer":0, + "byteLength":2424, + "byteOffset":204569476, + "target":34962 + }, + { + "buffer":0, + "byteLength":1616, + "byteOffset":204571900, + "target":34962 + }, + { + "buffer":0, + "byteLength":1616, + "byteOffset":204573516, + "target":34962 + }, + { + "buffer":0, + "byteLength":3232, + "byteOffset":204575132, + "target":34962 + }, + { + "buffer":0, + "byteLength":792, + "byteOffset":204578364, + "target":34962 + }, + { + "buffer":0, + "byteLength":792, + "byteOffset":204579156, + "target":34962 + }, + { + "buffer":0, + "byteLength":528, + "byteOffset":204579948, + "target":34962 + }, + { + "buffer":0, + "byteLength":528, + "byteOffset":204580476, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":204581004, + "target":34962 + }, + { + "buffer":0, + "byteLength":66684, + "byteOffset":204582060, + "target":34962 + }, + { + "buffer":0, + "byteLength":66684, + "byteOffset":204648744, + "target":34962 + }, + { + "buffer":0, + "byteLength":44456, + "byteOffset":204715428, + "target":34962 + }, + { + "buffer":0, + "byteLength":44456, + "byteOffset":204759884, + "target":34962 + }, + { + "buffer":0, + "byteLength":88912, + "byteOffset":204804340, + "target":34962 + }, + { + "buffer":0, + "byteLength":97320, + "byteOffset":204893252, + "target":34962 + }, + { + "buffer":0, + "byteLength":97320, + "byteOffset":204990572, + "target":34962 + }, + { + "buffer":0, + "byteLength":64880, + "byteOffset":205087892, + "target":34962 + }, + { + "buffer":0, + "byteLength":64880, + "byteOffset":205152772, + "target":34962 + }, + { + "buffer":0, + "byteLength":129760, + "byteOffset":205217652, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":205347412, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":205348996, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":205350580, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":205351636, + "target":34962 + }, + { + "buffer":0, + "byteLength":2112, + "byteOffset":205352692, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":205354804, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":205355668, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":205356532, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":205357108, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":205357684, + "target":34962 + }, + { + "buffer":0, + "byteLength":8040, + "byteOffset":205358836, + "target":34962 + }, + { + "buffer":0, + "byteLength":8040, + "byteOffset":205366876, + "target":34962 + }, + { + "buffer":0, + "byteLength":5360, + "byteOffset":205374916, + "target":34962 + }, + { + "buffer":0, + "byteLength":5360, + "byteOffset":205380276, + "target":34962 + }, + { + "buffer":0, + "byteLength":10720, + "byteOffset":205385636, + "target":34962 + }, + { + "buffer":0, + "byteLength":19584, + "byteOffset":205396356, + "target":34962 + }, + { + "buffer":0, + "byteLength":19584, + "byteOffset":205415940, + "target":34962 + }, + { + "buffer":0, + "byteLength":13056, + "byteOffset":205435524, + "target":34962 + }, + { + "buffer":0, + "byteLength":13056, + "byteOffset":205448580, + "target":34962 + }, + { + "buffer":0, + "byteLength":26112, + "byteOffset":205461636, + "target":34962 + }, + { + "buffer":0, + "byteLength":12576, + "byteOffset":205487748, + "target":34962 + }, + { + "buffer":0, + "byteLength":12576, + "byteOffset":205500324, + "target":34962 + }, + { + "buffer":0, + "byteLength":8384, + "byteOffset":205512900, + "target":34962 + }, + { + "buffer":0, + "byteLength":8384, + "byteOffset":205521284, + "target":34962 + }, + { + "buffer":0, + "byteLength":16768, + "byteOffset":205529668, + "target":34962 + }, + { + "buffer":0, + "byteLength":21564, + "byteOffset":205546436, + "target":34962 + }, + { + "buffer":0, + "byteLength":21564, + "byteOffset":205568000, + "target":34962 + }, + { + "buffer":0, + "byteLength":14376, + "byteOffset":205589564, + "target":34962 + }, + { + "buffer":0, + "byteLength":14376, + "byteOffset":205603940, + "target":34962 + }, + { + "buffer":0, + "byteLength":28752, + "byteOffset":205618316, + "target":34962 + }, + { + "buffer":0, + "byteLength":2832, + "byteOffset":205647068, + "target":34962 + }, + { + "buffer":0, + "byteLength":2832, + "byteOffset":205649900, + "target":34962 + }, + { + "buffer":0, + "byteLength":1888, + "byteOffset":205652732, + "target":34962 + }, + { + "buffer":0, + "byteLength":1888, + "byteOffset":205654620, + "target":34962 + }, + { + "buffer":0, + "byteLength":3776, + "byteOffset":205656508, + "target":34962 + }, + { + "buffer":0, + "byteLength":52632, + "byteOffset":205660284, + "target":34962 + }, + { + "buffer":0, + "byteLength":52632, + "byteOffset":205712916, + "target":34962 + }, + { + "buffer":0, + "byteLength":35088, + "byteOffset":205765548, + "target":34962 + }, + { + "buffer":0, + "byteLength":35088, + "byteOffset":205800636, + "target":34962 + }, + { + "buffer":0, + "byteLength":70176, + "byteOffset":205835724, + "target":34962 + }, + { + "buffer":0, + "byteLength":23028, + "byteOffset":205905900, + "target":34962 + }, + { + "buffer":0, + "byteLength":23028, + "byteOffset":205928928, + "target":34962 + }, + { + "buffer":0, + "byteLength":15352, + "byteOffset":205951956, + "target":34962 + }, + { + "buffer":0, + "byteLength":15352, + "byteOffset":205967308, + "target":34962 + }, + { + "buffer":0, + "byteLength":30704, + "byteOffset":205982660, + "target":34962 + }, + { + "buffer":0, + "byteLength":2424, + "byteOffset":206013364, + "target":34962 + }, + { + "buffer":0, + "byteLength":2424, + "byteOffset":206015788, + "target":34962 + }, + { + "buffer":0, + "byteLength":1616, + "byteOffset":206018212, + "target":34962 + }, + { + "buffer":0, + "byteLength":1616, + "byteOffset":206019828, + "target":34962 + }, + { + "buffer":0, + "byteLength":3232, + "byteOffset":206021444, + "target":34962 + }, + { + "buffer":0, + "byteLength":792, + "byteOffset":206024676, + "target":34962 + }, + { + "buffer":0, + "byteLength":792, + "byteOffset":206025468, + "target":34962 + }, + { + "buffer":0, + "byteLength":528, + "byteOffset":206026260, + "target":34962 + }, + { + "buffer":0, + "byteLength":528, + "byteOffset":206026788, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":206027316, + "target":34962 + }, + { + "buffer":0, + "byteLength":66684, + "byteOffset":206028372, + "target":34962 + }, + { + "buffer":0, + "byteLength":66684, + "byteOffset":206095056, + "target":34962 + }, + { + "buffer":0, + "byteLength":44456, + "byteOffset":206161740, + "target":34962 + }, + { + "buffer":0, + "byteLength":44456, + "byteOffset":206206196, + "target":34962 + }, + { + "buffer":0, + "byteLength":88912, + "byteOffset":206250652, + "target":34962 + }, + { + "buffer":0, + "byteLength":97320, + "byteOffset":206339564, + "target":34962 + }, + { + "buffer":0, + "byteLength":97320, + "byteOffset":206436884, + "target":34962 + }, + { + "buffer":0, + "byteLength":64880, + "byteOffset":206534204, + "target":34962 + }, + { + "buffer":0, + "byteLength":64880, + "byteOffset":206599084, + "target":34962 + }, + { + "buffer":0, + "byteLength":129760, + "byteOffset":206663964, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":206793724, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":206795308, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":206796892, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":206797948, + "target":34962 + }, + { + "buffer":0, + "byteLength":2112, + "byteOffset":206799004, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":206801116, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":206801980, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":206802844, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":206803420, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":206803996, + "target":34962 + }, + { + "buffer":0, + "byteLength":8040, + "byteOffset":206805148, + "target":34962 + }, + { + "buffer":0, + "byteLength":8040, + "byteOffset":206813188, + "target":34962 + }, + { + "buffer":0, + "byteLength":5360, + "byteOffset":206821228, + "target":34962 + }, + { + "buffer":0, + "byteLength":5360, + "byteOffset":206826588, + "target":34962 + }, + { + "buffer":0, + "byteLength":10720, + "byteOffset":206831948, + "target":34962 + }, + { + "buffer":0, + "byteLength":19584, + "byteOffset":206842668, + "target":34962 + }, + { + "buffer":0, + "byteLength":19584, + "byteOffset":206862252, + "target":34962 + }, + { + "buffer":0, + "byteLength":13056, + "byteOffset":206881836, + "target":34962 + }, + { + "buffer":0, + "byteLength":13056, + "byteOffset":206894892, + "target":34962 + }, + { + "buffer":0, + "byteLength":26112, + "byteOffset":206907948, + "target":34962 + }, + { + "buffer":0, + "byteLength":12576, + "byteOffset":206934060, + "target":34962 + }, + { + "buffer":0, + "byteLength":12576, + "byteOffset":206946636, + "target":34962 + }, + { + "buffer":0, + "byteLength":8384, + "byteOffset":206959212, + "target":34962 + }, + { + "buffer":0, + "byteLength":8384, + "byteOffset":206967596, + "target":34962 + }, + { + "buffer":0, + "byteLength":16768, + "byteOffset":206975980, + "target":34962 + }, + { + "buffer":0, + "byteLength":21564, + "byteOffset":206992748, + "target":34962 + }, + { + "buffer":0, + "byteLength":21564, + "byteOffset":207014312, + "target":34962 + }, + { + "buffer":0, + "byteLength":14376, + "byteOffset":207035876, + "target":34962 + }, + { + "buffer":0, + "byteLength":14376, + "byteOffset":207050252, + "target":34962 + }, + { + "buffer":0, + "byteLength":28752, + "byteOffset":207064628, + "target":34962 + }, + { + "buffer":0, + "byteLength":2832, + "byteOffset":207093380, + "target":34962 + }, + { + "buffer":0, + "byteLength":2832, + "byteOffset":207096212, + "target":34962 + }, + { + "buffer":0, + "byteLength":1888, + "byteOffset":207099044, + "target":34962 + }, + { + "buffer":0, + "byteLength":1888, + "byteOffset":207100932, + "target":34962 + }, + { + "buffer":0, + "byteLength":3776, + "byteOffset":207102820, + "target":34962 + }, + { + "buffer":0, + "byteLength":52632, + "byteOffset":207106596, + "target":34962 + }, + { + "buffer":0, + "byteLength":52632, + "byteOffset":207159228, + "target":34962 + }, + { + "buffer":0, + "byteLength":35088, + "byteOffset":207211860, + "target":34962 + }, + { + "buffer":0, + "byteLength":35088, + "byteOffset":207246948, + "target":34962 + }, + { + "buffer":0, + "byteLength":70176, + "byteOffset":207282036, + "target":34962 + }, + { + "buffer":0, + "byteLength":23028, + "byteOffset":207352212, + "target":34962 + }, + { + "buffer":0, + "byteLength":23028, + "byteOffset":207375240, + "target":34962 + }, + { + "buffer":0, + "byteLength":15352, + "byteOffset":207398268, + "target":34962 + }, + { + "buffer":0, + "byteLength":15352, + "byteOffset":207413620, + "target":34962 + }, + { + "buffer":0, + "byteLength":30704, + "byteOffset":207428972, + "target":34962 + }, + { + "buffer":0, + "byteLength":2424, + "byteOffset":207459676, + "target":34962 + }, + { + "buffer":0, + "byteLength":2424, + "byteOffset":207462100, + "target":34962 + }, + { + "buffer":0, + "byteLength":1616, + "byteOffset":207464524, + "target":34962 + }, + { + "buffer":0, + "byteLength":1616, + "byteOffset":207466140, + "target":34962 + }, + { + "buffer":0, + "byteLength":3232, + "byteOffset":207467756, + "target":34962 + }, + { + "buffer":0, + "byteLength":792, + "byteOffset":207470988, + "target":34962 + }, + { + "buffer":0, + "byteLength":792, + "byteOffset":207471780, + "target":34962 + }, + { + "buffer":0, + "byteLength":528, + "byteOffset":207472572, + "target":34962 + }, + { + "buffer":0, + "byteLength":528, + "byteOffset":207473100, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":207473628, + "target":34962 + }, + { + "buffer":0, + "byteLength":66684, + "byteOffset":207474684, + "target":34962 + }, + { + "buffer":0, + "byteLength":66684, + "byteOffset":207541368, + "target":34962 + }, + { + "buffer":0, + "byteLength":44456, + "byteOffset":207608052, + "target":34962 + }, + { + "buffer":0, + "byteLength":44456, + "byteOffset":207652508, + "target":34962 + }, + { + "buffer":0, + "byteLength":88912, + "byteOffset":207696964, + "target":34962 + }, + { + "buffer":0, + "byteLength":97320, + "byteOffset":207785876, + "target":34962 + }, + { + "buffer":0, + "byteLength":97320, + "byteOffset":207883196, + "target":34962 + }, + { + "buffer":0, + "byteLength":64880, + "byteOffset":207980516, + "target":34962 + }, + { + "buffer":0, + "byteLength":64880, + "byteOffset":208045396, + "target":34962 + }, + { + "buffer":0, + "byteLength":129760, + "byteOffset":208110276, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":208240036, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":208241620, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":208243204, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":208244260, + "target":34962 + }, + { + "buffer":0, + "byteLength":2112, + "byteOffset":208245316, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":208247428, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":208248292, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":208249156, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":208249732, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":208250308, + "target":34962 + }, + { + "buffer":0, + "byteLength":8040, + "byteOffset":208251460, + "target":34962 + }, + { + "buffer":0, + "byteLength":8040, + "byteOffset":208259500, + "target":34962 + }, + { + "buffer":0, + "byteLength":5360, + "byteOffset":208267540, + "target":34962 + }, + { + "buffer":0, + "byteLength":5360, + "byteOffset":208272900, + "target":34962 + }, + { + "buffer":0, + "byteLength":10720, + "byteOffset":208278260, + "target":34962 + }, + { + "buffer":0, + "byteLength":19584, + "byteOffset":208288980, + "target":34962 + }, + { + "buffer":0, + "byteLength":19584, + "byteOffset":208308564, + "target":34962 + }, + { + "buffer":0, + "byteLength":13056, + "byteOffset":208328148, + "target":34962 + }, + { + "buffer":0, + "byteLength":13056, + "byteOffset":208341204, + "target":34962 + }, + { + "buffer":0, + "byteLength":26112, + "byteOffset":208354260, + "target":34962 + }, + { + "buffer":0, + "byteLength":12576, + "byteOffset":208380372, + "target":34962 + }, + { + "buffer":0, + "byteLength":12576, + "byteOffset":208392948, + "target":34962 + }, + { + "buffer":0, + "byteLength":8384, + "byteOffset":208405524, + "target":34962 + }, + { + "buffer":0, + "byteLength":8384, + "byteOffset":208413908, + "target":34962 + }, + { + "buffer":0, + "byteLength":16768, + "byteOffset":208422292, + "target":34962 + }, + { + "buffer":0, + "byteLength":21564, + "byteOffset":208439060, + "target":34962 + }, + { + "buffer":0, + "byteLength":21564, + "byteOffset":208460624, + "target":34962 + }, + { + "buffer":0, + "byteLength":14376, + "byteOffset":208482188, + "target":34962 + }, + { + "buffer":0, + "byteLength":14376, + "byteOffset":208496564, + "target":34962 + }, + { + "buffer":0, + "byteLength":28752, + "byteOffset":208510940, + "target":34962 + }, + { + "buffer":0, + "byteLength":2832, + "byteOffset":208539692, + "target":34962 + }, + { + "buffer":0, + "byteLength":2832, + "byteOffset":208542524, + "target":34962 + }, + { + "buffer":0, + "byteLength":1888, + "byteOffset":208545356, + "target":34962 + }, + { + "buffer":0, + "byteLength":1888, + "byteOffset":208547244, + "target":34962 + }, + { + "buffer":0, + "byteLength":3776, + "byteOffset":208549132, + "target":34962 + }, + { + "buffer":0, + "byteLength":52632, + "byteOffset":208552908, + "target":34962 + }, + { + "buffer":0, + "byteLength":52632, + "byteOffset":208605540, + "target":34962 + }, + { + "buffer":0, + "byteLength":35088, + "byteOffset":208658172, + "target":34962 + }, + { + "buffer":0, + "byteLength":35088, + "byteOffset":208693260, + "target":34962 + }, + { + "buffer":0, + "byteLength":70176, + "byteOffset":208728348, + "target":34962 + }, + { + "buffer":0, + "byteLength":23028, + "byteOffset":208798524, + "target":34962 + }, + { + "buffer":0, + "byteLength":23028, + "byteOffset":208821552, + "target":34962 + }, + { + "buffer":0, + "byteLength":15352, + "byteOffset":208844580, + "target":34962 + }, + { + "buffer":0, + "byteLength":15352, + "byteOffset":208859932, + "target":34962 + }, + { + "buffer":0, + "byteLength":30704, + "byteOffset":208875284, + "target":34962 + }, + { + "buffer":0, + "byteLength":2424, + "byteOffset":208905988, + "target":34962 + }, + { + "buffer":0, + "byteLength":2424, + "byteOffset":208908412, + "target":34962 + }, + { + "buffer":0, + "byteLength":1616, + "byteOffset":208910836, + "target":34962 + }, + { + "buffer":0, + "byteLength":1616, + "byteOffset":208912452, + "target":34962 + }, + { + "buffer":0, + "byteLength":3232, + "byteOffset":208914068, + "target":34962 + }, + { + "buffer":0, + "byteLength":792, + "byteOffset":208917300, + "target":34962 + }, + { + "buffer":0, + "byteLength":792, + "byteOffset":208918092, + "target":34962 + }, + { + "buffer":0, + "byteLength":528, + "byteOffset":208918884, + "target":34962 + }, + { + "buffer":0, + "byteLength":528, + "byteOffset":208919412, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":208919940, + "target":34962 + }, + { + "buffer":0, + "byteLength":66684, + "byteOffset":208920996, + "target":34962 + }, + { + "buffer":0, + "byteLength":66684, + "byteOffset":208987680, + "target":34962 + }, + { + "buffer":0, + "byteLength":44456, + "byteOffset":209054364, + "target":34962 + }, + { + "buffer":0, + "byteLength":44456, + "byteOffset":209098820, + "target":34962 + }, + { + "buffer":0, + "byteLength":88912, + "byteOffset":209143276, + "target":34962 + }, + { + "buffer":0, + "byteLength":97320, + "byteOffset":209232188, + "target":34962 + }, + { + "buffer":0, + "byteLength":97320, + "byteOffset":209329508, + "target":34962 + }, + { + "buffer":0, + "byteLength":64880, + "byteOffset":209426828, + "target":34962 + }, + { + "buffer":0, + "byteLength":64880, + "byteOffset":209491708, + "target":34962 + }, + { + "buffer":0, + "byteLength":129760, + "byteOffset":209556588, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":209686348, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":209687932, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":209689516, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":209690572, + "target":34962 + }, + { + "buffer":0, + "byteLength":2112, + "byteOffset":209691628, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":209693740, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":209694604, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":209695468, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":209696044, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":209696620, + "target":34962 + }, + { + "buffer":0, + "byteLength":8040, + "byteOffset":209697772, + "target":34962 + }, + { + "buffer":0, + "byteLength":8040, + "byteOffset":209705812, + "target":34962 + }, + { + "buffer":0, + "byteLength":5360, + "byteOffset":209713852, + "target":34962 + }, + { + "buffer":0, + "byteLength":5360, + "byteOffset":209719212, + "target":34962 + }, + { + "buffer":0, + "byteLength":10720, + "byteOffset":209724572, + "target":34962 + }, + { + "buffer":0, + "byteLength":19584, + "byteOffset":209735292, + "target":34962 + }, + { + "buffer":0, + "byteLength":19584, + "byteOffset":209754876, + "target":34962 + }, + { + "buffer":0, + "byteLength":13056, + "byteOffset":209774460, + "target":34962 + }, + { + "buffer":0, + "byteLength":13056, + "byteOffset":209787516, + "target":34962 + }, + { + "buffer":0, + "byteLength":26112, + "byteOffset":209800572, + "target":34962 + }, + { + "buffer":0, + "byteLength":12576, + "byteOffset":209826684, + "target":34962 + }, + { + "buffer":0, + "byteLength":12576, + "byteOffset":209839260, + "target":34962 + }, + { + "buffer":0, + "byteLength":8384, + "byteOffset":209851836, + "target":34962 + }, + { + "buffer":0, + "byteLength":8384, + "byteOffset":209860220, + "target":34962 + }, + { + "buffer":0, + "byteLength":16768, + "byteOffset":209868604, + "target":34962 + }, + { + "buffer":0, + "byteLength":21564, + "byteOffset":209885372, + "target":34962 + }, + { + "buffer":0, + "byteLength":21564, + "byteOffset":209906936, + "target":34962 + }, + { + "buffer":0, + "byteLength":14376, + "byteOffset":209928500, + "target":34962 + }, + { + "buffer":0, + "byteLength":14376, + "byteOffset":209942876, + "target":34962 + }, + { + "buffer":0, + "byteLength":28752, + "byteOffset":209957252, + "target":34962 + }, + { + "buffer":0, + "byteLength":2832, + "byteOffset":209986004, + "target":34962 + }, + { + "buffer":0, + "byteLength":2832, + "byteOffset":209988836, + "target":34962 + }, + { + "buffer":0, + "byteLength":1888, + "byteOffset":209991668, + "target":34962 + }, + { + "buffer":0, + "byteLength":1888, + "byteOffset":209993556, + "target":34962 + }, + { + "buffer":0, + "byteLength":3776, + "byteOffset":209995444, + "target":34962 + }, + { + "buffer":0, + "byteLength":52632, + "byteOffset":209999220, + "target":34962 + }, + { + "buffer":0, + "byteLength":52632, + "byteOffset":210051852, + "target":34962 + }, + { + "buffer":0, + "byteLength":35088, + "byteOffset":210104484, + "target":34962 + }, + { + "buffer":0, + "byteLength":35088, + "byteOffset":210139572, + "target":34962 + }, + { + "buffer":0, + "byteLength":70176, + "byteOffset":210174660, + "target":34962 + }, + { + "buffer":0, + "byteLength":23028, + "byteOffset":210244836, + "target":34962 + }, + { + "buffer":0, + "byteLength":23028, + "byteOffset":210267864, + "target":34962 + }, + { + "buffer":0, + "byteLength":15352, + "byteOffset":210290892, + "target":34962 + }, + { + "buffer":0, + "byteLength":15352, + "byteOffset":210306244, + "target":34962 + }, + { + "buffer":0, + "byteLength":30704, + "byteOffset":210321596, + "target":34962 + }, + { + "buffer":0, + "byteLength":2424, + "byteOffset":210352300, + "target":34962 + }, + { + "buffer":0, + "byteLength":2424, + "byteOffset":210354724, + "target":34962 + }, + { + "buffer":0, + "byteLength":1616, + "byteOffset":210357148, + "target":34962 + }, + { + "buffer":0, + "byteLength":1616, + "byteOffset":210358764, + "target":34962 + }, + { + "buffer":0, + "byteLength":3232, + "byteOffset":210360380, + "target":34962 + }, + { + "buffer":0, + "byteLength":792, + "byteOffset":210363612, + "target":34962 + }, + { + "buffer":0, + "byteLength":792, + "byteOffset":210364404, + "target":34962 + }, + { + "buffer":0, + "byteLength":528, + "byteOffset":210365196, + "target":34962 + }, + { + "buffer":0, + "byteLength":528, + "byteOffset":210365724, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":210366252, + "target":34962 + }, + { + "buffer":0, + "byteLength":66684, + "byteOffset":210367308, + "target":34962 + }, + { + "buffer":0, + "byteLength":66684, + "byteOffset":210433992, + "target":34962 + }, + { + "buffer":0, + "byteLength":44456, + "byteOffset":210500676, + "target":34962 + }, + { + "buffer":0, + "byteLength":44456, + "byteOffset":210545132, + "target":34962 + }, + { + "buffer":0, + "byteLength":88912, + "byteOffset":210589588, + "target":34962 + }, + { + "buffer":0, + "byteLength":97320, + "byteOffset":210678500, + "target":34962 + }, + { + "buffer":0, + "byteLength":97320, + "byteOffset":210775820, + "target":34962 + }, + { + "buffer":0, + "byteLength":64880, + "byteOffset":210873140, + "target":34962 + }, + { + "buffer":0, + "byteLength":64880, + "byteOffset":210938020, + "target":34962 + }, + { + "buffer":0, + "byteLength":129760, + "byteOffset":211002900, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":211132660, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":211134244, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":211135828, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":211136884, + "target":34962 + }, + { + "buffer":0, + "byteLength":2112, + "byteOffset":211137940, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":211140052, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":211140916, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":211141780, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":211142356, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":211142932, + "target":34962 + }, + { + "buffer":0, + "byteLength":8040, + "byteOffset":211144084, + "target":34962 + }, + { + "buffer":0, + "byteLength":8040, + "byteOffset":211152124, + "target":34962 + }, + { + "buffer":0, + "byteLength":5360, + "byteOffset":211160164, + "target":34962 + }, + { + "buffer":0, + "byteLength":5360, + "byteOffset":211165524, + "target":34962 + }, + { + "buffer":0, + "byteLength":10720, + "byteOffset":211170884, + "target":34962 + }, + { + "buffer":0, + "byteLength":19584, + "byteOffset":211181604, + "target":34962 + }, + { + "buffer":0, + "byteLength":19584, + "byteOffset":211201188, + "target":34962 + }, + { + "buffer":0, + "byteLength":13056, + "byteOffset":211220772, + "target":34962 + }, + { + "buffer":0, + "byteLength":13056, + "byteOffset":211233828, + "target":34962 + }, + { + "buffer":0, + "byteLength":26112, + "byteOffset":211246884, + "target":34962 + }, + { + "buffer":0, + "byteLength":12576, + "byteOffset":211272996, + "target":34962 + }, + { + "buffer":0, + "byteLength":12576, + "byteOffset":211285572, + "target":34962 + }, + { + "buffer":0, + "byteLength":8384, + "byteOffset":211298148, + "target":34962 + }, + { + "buffer":0, + "byteLength":8384, + "byteOffset":211306532, + "target":34962 + }, + { + "buffer":0, + "byteLength":16768, + "byteOffset":211314916, + "target":34962 + }, + { + "buffer":0, + "byteLength":21564, + "byteOffset":211331684, + "target":34962 + }, + { + "buffer":0, + "byteLength":21564, + "byteOffset":211353248, + "target":34962 + }, + { + "buffer":0, + "byteLength":14376, + "byteOffset":211374812, + "target":34962 + }, + { + "buffer":0, + "byteLength":14376, + "byteOffset":211389188, + "target":34962 + }, + { + "buffer":0, + "byteLength":28752, + "byteOffset":211403564, + "target":34962 + }, + { + "buffer":0, + "byteLength":2832, + "byteOffset":211432316, + "target":34962 + }, + { + "buffer":0, + "byteLength":2832, + "byteOffset":211435148, + "target":34962 + }, + { + "buffer":0, + "byteLength":1888, + "byteOffset":211437980, + "target":34962 + }, + { + "buffer":0, + "byteLength":1888, + "byteOffset":211439868, + "target":34962 + }, + { + "buffer":0, + "byteLength":3776, + "byteOffset":211441756, + "target":34962 + }, + { + "buffer":0, + "byteLength":52632, + "byteOffset":211445532, + "target":34962 + }, + { + "buffer":0, + "byteLength":52632, + "byteOffset":211498164, + "target":34962 + }, + { + "buffer":0, + "byteLength":35088, + "byteOffset":211550796, + "target":34962 + }, + { + "buffer":0, + "byteLength":35088, + "byteOffset":211585884, + "target":34962 + }, + { + "buffer":0, + "byteLength":70176, + "byteOffset":211620972, + "target":34962 + }, + { + "buffer":0, + "byteLength":23028, + "byteOffset":211691148, + "target":34962 + }, + { + "buffer":0, + "byteLength":23028, + "byteOffset":211714176, + "target":34962 + }, + { + "buffer":0, + "byteLength":15352, + "byteOffset":211737204, + "target":34962 + }, + { + "buffer":0, + "byteLength":15352, + "byteOffset":211752556, + "target":34962 + }, + { + "buffer":0, + "byteLength":30704, + "byteOffset":211767908, + "target":34962 + }, + { + "buffer":0, + "byteLength":2424, + "byteOffset":211798612, + "target":34962 + }, + { + "buffer":0, + "byteLength":2424, + "byteOffset":211801036, + "target":34962 + }, + { + "buffer":0, + "byteLength":1616, + "byteOffset":211803460, + "target":34962 + }, + { + "buffer":0, + "byteLength":1616, + "byteOffset":211805076, + "target":34962 + }, + { + "buffer":0, + "byteLength":3232, + "byteOffset":211806692, + "target":34962 + }, + { + "buffer":0, + "byteLength":792, + "byteOffset":211809924, + "target":34962 + }, + { + "buffer":0, + "byteLength":792, + "byteOffset":211810716, + "target":34962 + }, + { + "buffer":0, + "byteLength":528, + "byteOffset":211811508, + "target":34962 + }, + { + "buffer":0, + "byteLength":528, + "byteOffset":211812036, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":211812564, + "target":34962 + }, + { + "buffer":0, + "byteLength":66684, + "byteOffset":211813620, + "target":34962 + }, + { + "buffer":0, + "byteLength":66684, + "byteOffset":211880304, + "target":34962 + }, + { + "buffer":0, + "byteLength":44456, + "byteOffset":211946988, + "target":34962 + }, + { + "buffer":0, + "byteLength":44456, + "byteOffset":211991444, + "target":34962 + }, + { + "buffer":0, + "byteLength":88912, + "byteOffset":212035900, + "target":34962 + }, + { + "buffer":0, + "byteLength":97320, + "byteOffset":212124812, + "target":34962 + }, + { + "buffer":0, + "byteLength":97320, + "byteOffset":212222132, + "target":34962 + }, + { + "buffer":0, + "byteLength":64880, + "byteOffset":212319452, + "target":34962 + }, + { + "buffer":0, + "byteLength":64880, + "byteOffset":212384332, + "target":34962 + }, + { + "buffer":0, + "byteLength":129760, + "byteOffset":212449212, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":212578972, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":212580556, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":212582140, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":212583196, + "target":34962 + }, + { + "buffer":0, + "byteLength":2112, + "byteOffset":212584252, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":212586364, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":212587228, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":212588092, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":212588668, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":212589244, + "target":34962 + }, + { + "buffer":0, + "byteLength":8040, + "byteOffset":212590396, + "target":34962 + }, + { + "buffer":0, + "byteLength":8040, + "byteOffset":212598436, + "target":34962 + }, + { + "buffer":0, + "byteLength":5360, + "byteOffset":212606476, + "target":34962 + }, + { + "buffer":0, + "byteLength":5360, + "byteOffset":212611836, + "target":34962 + }, + { + "buffer":0, + "byteLength":10720, + "byteOffset":212617196, + "target":34962 + }, + { + "buffer":0, + "byteLength":19584, + "byteOffset":212627916, + "target":34962 + }, + { + "buffer":0, + "byteLength":19584, + "byteOffset":212647500, + "target":34962 + }, + { + "buffer":0, + "byteLength":13056, + "byteOffset":212667084, + "target":34962 + }, + { + "buffer":0, + "byteLength":13056, + "byteOffset":212680140, + "target":34962 + }, + { + "buffer":0, + "byteLength":26112, + "byteOffset":212693196, + "target":34962 + }, + { + "buffer":0, + "byteLength":12576, + "byteOffset":212719308, + "target":34962 + }, + { + "buffer":0, + "byteLength":12576, + "byteOffset":212731884, + "target":34962 + }, + { + "buffer":0, + "byteLength":8384, + "byteOffset":212744460, + "target":34962 + }, + { + "buffer":0, + "byteLength":8384, + "byteOffset":212752844, + "target":34962 + }, + { + "buffer":0, + "byteLength":16768, + "byteOffset":212761228, + "target":34962 + }, + { + "buffer":0, + "byteLength":21564, + "byteOffset":212777996, + "target":34962 + }, + { + "buffer":0, + "byteLength":21564, + "byteOffset":212799560, + "target":34962 + }, + { + "buffer":0, + "byteLength":14376, + "byteOffset":212821124, + "target":34962 + }, + { + "buffer":0, + "byteLength":14376, + "byteOffset":212835500, + "target":34962 + }, + { + "buffer":0, + "byteLength":28752, + "byteOffset":212849876, + "target":34962 + }, + { + "buffer":0, + "byteLength":2832, + "byteOffset":212878628, + "target":34962 + }, + { + "buffer":0, + "byteLength":2832, + "byteOffset":212881460, + "target":34962 + }, + { + "buffer":0, + "byteLength":1888, + "byteOffset":212884292, + "target":34962 + }, + { + "buffer":0, + "byteLength":1888, + "byteOffset":212886180, + "target":34962 + }, + { + "buffer":0, + "byteLength":3776, + "byteOffset":212888068, + "target":34962 + }, + { + "buffer":0, + "byteLength":52632, + "byteOffset":212891844, + "target":34962 + }, + { + "buffer":0, + "byteLength":52632, + "byteOffset":212944476, + "target":34962 + }, + { + "buffer":0, + "byteLength":35088, + "byteOffset":212997108, + "target":34962 + }, + { + "buffer":0, + "byteLength":35088, + "byteOffset":213032196, + "target":34962 + }, + { + "buffer":0, + "byteLength":70176, + "byteOffset":213067284, + "target":34962 + }, + { + "buffer":0, + "byteLength":23028, + "byteOffset":213137460, + "target":34962 + }, + { + "buffer":0, + "byteLength":23028, + "byteOffset":213160488, + "target":34962 + }, + { + "buffer":0, + "byteLength":15352, + "byteOffset":213183516, + "target":34962 + }, + { + "buffer":0, + "byteLength":15352, + "byteOffset":213198868, + "target":34962 + }, + { + "buffer":0, + "byteLength":30704, + "byteOffset":213214220, + "target":34962 + }, + { + "buffer":0, + "byteLength":2424, + "byteOffset":213244924, + "target":34962 + }, + { + "buffer":0, + "byteLength":2424, + "byteOffset":213247348, + "target":34962 + }, + { + "buffer":0, + "byteLength":1616, + "byteOffset":213249772, + "target":34962 + }, + { + "buffer":0, + "byteLength":1616, + "byteOffset":213251388, + "target":34962 + }, + { + "buffer":0, + "byteLength":3232, + "byteOffset":213253004, + "target":34962 + }, + { + "buffer":0, + "byteLength":792, + "byteOffset":213256236, + "target":34962 + }, + { + "buffer":0, + "byteLength":792, + "byteOffset":213257028, + "target":34962 + }, + { + "buffer":0, + "byteLength":528, + "byteOffset":213257820, + "target":34962 + }, + { + "buffer":0, + "byteLength":528, + "byteOffset":213258348, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":213258876, + "target":34962 + }, + { + "buffer":0, + "byteLength":66684, + "byteOffset":213259932, + "target":34962 + }, + { + "buffer":0, + "byteLength":66684, + "byteOffset":213326616, + "target":34962 + }, + { + "buffer":0, + "byteLength":44456, + "byteOffset":213393300, + "target":34962 + }, + { + "buffer":0, + "byteLength":44456, + "byteOffset":213437756, + "target":34962 + }, + { + "buffer":0, + "byteLength":88912, + "byteOffset":213482212, + "target":34962 + }, + { + "buffer":0, + "byteLength":97320, + "byteOffset":213571124, + "target":34962 + }, + { + "buffer":0, + "byteLength":97320, + "byteOffset":213668444, + "target":34962 + }, + { + "buffer":0, + "byteLength":64880, + "byteOffset":213765764, + "target":34962 + }, + { + "buffer":0, + "byteLength":64880, + "byteOffset":213830644, + "target":34962 + }, + { + "buffer":0, + "byteLength":129760, + "byteOffset":213895524, + "target":34962 + }, + { + "buffer":0, + "byteLength":26460, + "byteOffset":214025284, + "target":34962 + }, + { + "buffer":0, + "byteLength":26460, + "byteOffset":214051744, + "target":34962 + }, + { + "buffer":0, + "byteLength":17640, + "byteOffset":214078204, + "target":34962 + }, + { + "buffer":0, + "byteLength":17640, + "byteOffset":214095844, + "target":34962 + }, + { + "buffer":0, + "byteLength":35280, + "byteOffset":214113484, + "target":34962 + }, + { + "buffer":0, + "byteLength":8820, + "byteOffset":214148764, + "target":34962 + }, + { + "buffer":0, + "byteLength":17640, + "byteOffset":214157584, + "target":34962 + }, + { + "buffer":0, + "byteLength":17640, + "byteOffset":214175224, + "target":34962 + }, + { + "buffer":0, + "byteLength":15072, + "byteOffset":214192864, + "target":34963 + }, + { + "buffer":0, + "byteLength":279624, + "byteOffset":214207936, + "target":34962 + }, + { + "buffer":0, + "byteLength":279624, + "byteOffset":214487560, + "target":34962 + }, + { + "buffer":0, + "byteLength":186416, + "byteOffset":214767184, + "target":34962 + }, + { + "buffer":0, + "byteLength":186416, + "byteOffset":214953600, + "target":34962 + }, + { + "buffer":0, + "byteLength":372832, + "byteOffset":215140016, + "target":34962 + }, + { + "buffer":0, + "byteLength":93208, + "byteOffset":215512848, + "target":34962 + }, + { + "buffer":0, + "byteLength":186416, + "byteOffset":215606056, + "target":34962 + }, + { + "buffer":0, + "byteLength":186416, + "byteOffset":215792472, + "target":34962 + }, + { + "buffer":0, + "byteLength":119712, + "byteOffset":215978888, + "target":34963 + }, + { + "buffer":0, + "byteLength":395328, + "byteOffset":216098600, + "target":34962 + }, + { + "buffer":0, + "byteLength":395328, + "byteOffset":216493928, + "target":34962 + }, + { + "buffer":0, + "byteLength":263552, + "byteOffset":216889256, + "target":34962 + }, + { + "buffer":0, + "byteLength":263552, + "byteOffset":217152808, + "target":34962 + }, + { + "buffer":0, + "byteLength":527104, + "byteOffset":217416360, + "target":34962 + }, + { + "buffer":0, + "byteLength":131776, + "byteOffset":217943464, + "target":34962 + }, + { + "buffer":0, + "byteLength":263552, + "byteOffset":218075240, + "target":34962 + }, + { + "buffer":0, + "byteLength":263552, + "byteOffset":218338792, + "target":34962 + }, + { + "buffer":0, + "byteLength":146760, + "byteOffset":218602344, + "target":34963 + }, + { + "buffer":0, + "byteLength":55344, + "byteOffset":218749104, + "target":34962 + }, + { + "buffer":0, + "byteLength":55344, + "byteOffset":218804448, + "target":34962 + }, + { + "buffer":0, + "byteLength":36896, + "byteOffset":218859792, + "target":34962 + }, + { + "buffer":0, + "byteLength":36896, + "byteOffset":218896688, + "target":34962 + }, + { + "buffer":0, + "byteLength":73792, + "byteOffset":218933584, + "target":34962 + }, + { + "buffer":0, + "byteLength":18448, + "byteOffset":219007376, + "target":34962 + }, + { + "buffer":0, + "byteLength":36896, + "byteOffset":219025824, + "target":34962 + }, + { + "buffer":0, + "byteLength":36896, + "byteOffset":219062720, + "target":34962 + }, + { + "buffer":0, + "byteLength":20340, + "byteOffset":219099616, + "target":34963 + }, + { + "buffer":0, + "byteLength":801360, + "byteOffset":219119956, + "target":34962 + }, + { + "buffer":0, + "byteLength":801360, + "byteOffset":219921316, + "target":34962 + }, + { + "buffer":0, + "byteLength":534240, + "byteOffset":220722676, + "target":34962 + }, + { + "buffer":0, + "byteLength":534240, + "byteOffset":221256916, + "target":34962 + }, + { + "buffer":0, + "byteLength":1068480, + "byteOffset":221791156, + "target":34962 + }, + { + "buffer":0, + "byteLength":267120, + "byteOffset":222859636, + "target":34962 + }, + { + "buffer":0, + "byteLength":534240, + "byteOffset":223126756, + "target":34962 + }, + { + "buffer":0, + "byteLength":534240, + "byteOffset":223660996, + "target":34962 + }, + { + "buffer":0, + "byteLength":754272, + "byteOffset":224195236, + "target":34963 + }, + { + "buffer":0, + "byteLength":145152, + "byteOffset":224949508, + "target":34962 + }, + { + "buffer":0, + "byteLength":145152, + "byteOffset":225094660, + "target":34962 + }, + { + "buffer":0, + "byteLength":96768, + "byteOffset":225239812, + "target":34962 + }, + { + "buffer":0, + "byteLength":96768, + "byteOffset":225336580, + "target":34962 + }, + { + "buffer":0, + "byteLength":193536, + "byteOffset":225433348, + "target":34962 + }, + { + "buffer":0, + "byteLength":48384, + "byteOffset":225626884, + "target":34962 + }, + { + "buffer":0, + "byteLength":96768, + "byteOffset":225675268, + "target":34962 + }, + { + "buffer":0, + "byteLength":96768, + "byteOffset":225772036, + "target":34962 + }, + { + "buffer":0, + "byteLength":36288, + "byteOffset":225868804, + "target":34963 + }, + { + "buffer":0, + "byteLength":504, + "byteOffset":225905092, + "target":34962 + }, + { + "buffer":0, + "byteLength":504, + "byteOffset":225905596, + "target":34962 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":225906100, + "target":34962 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":225906436, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":225906772, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":225907444, + "target":34962 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":225907612, + "target":34962 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":225907948, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":225908284, + "target":34963 + }, + { + "buffer":0, + "byteLength":437760, + "byteOffset":225908524, + "target":34962 + }, + { + "buffer":0, + "byteLength":437760, + "byteOffset":226346284, + "target":34962 + }, + { + "buffer":0, + "byteLength":291840, + "byteOffset":226784044, + "target":34962 + }, + { + "buffer":0, + "byteLength":291840, + "byteOffset":227075884, + "target":34962 + }, + { + "buffer":0, + "byteLength":583680, + "byteOffset":227367724, + "target":34962 + }, + { + "buffer":0, + "byteLength":145920, + "byteOffset":227951404, + "target":34962 + }, + { + "buffer":0, + "byteLength":291840, + "byteOffset":228097324, + "target":34962 + }, + { + "buffer":0, + "byteLength":291840, + "byteOffset":228389164, + "target":34962 + }, + { + "buffer":0, + "byteLength":109440, + "byteOffset":228681004, + "target":34963 + }, + { + "buffer":0, + "byteLength":43680, + "byteOffset":228790444, + "target":34962 + }, + { + "buffer":0, + "byteLength":43680, + "byteOffset":228834124, + "target":34962 + }, + { + "buffer":0, + "byteLength":29120, + "byteOffset":228877804, + "target":34962 + }, + { + "buffer":0, + "byteLength":29120, + "byteOffset":228906924, + "target":34962 + }, + { + "buffer":0, + "byteLength":58240, + "byteOffset":228936044, + "target":34962 + }, + { + "buffer":0, + "byteLength":14560, + "byteOffset":228994284, + "target":34962 + }, + { + "buffer":0, + "byteLength":29120, + "byteOffset":229008844, + "target":34962 + }, + { + "buffer":0, + "byteLength":29120, + "byteOffset":229037964, + "target":34962 + }, + { + "buffer":0, + "byteLength":28428, + "byteOffset":229067084, + "target":34963 + }, + { + "buffer":0, + "byteLength":1512, + "byteOffset":229095512, + "target":34962 + }, + { + "buffer":0, + "byteLength":1512, + "byteOffset":229097024, + "target":34962 + }, + { + "buffer":0, + "byteLength":1008, + "byteOffset":229098536, + "target":34962 + }, + { + "buffer":0, + "byteLength":1008, + "byteOffset":229099544, + "target":34962 + }, + { + "buffer":0, + "byteLength":2016, + "byteOffset":229100552, + "target":34962 + }, + { + "buffer":0, + "byteLength":504, + "byteOffset":229102568, + "target":34962 + }, + { + "buffer":0, + "byteLength":1008, + "byteOffset":229103072, + "target":34962 + }, + { + "buffer":0, + "byteLength":1008, + "byteOffset":229104080, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":229105088, + "target":34963 + }, + { + "buffer":0, + "byteLength":35412, + "byteOffset":229105664, + "target":34962 + }, + { + "buffer":0, + "byteLength":35412, + "byteOffset":229141076, + "target":34962 + }, + { + "buffer":0, + "byteLength":23608, + "byteOffset":229176488, + "target":34962 + }, + { + "buffer":0, + "byteLength":23608, + "byteOffset":229200096, + "target":34962 + }, + { + "buffer":0, + "byteLength":47216, + "byteOffset":229223704, + "target":34962 + }, + { + "buffer":0, + "byteLength":11804, + "byteOffset":229270920, + "target":34962 + }, + { + "buffer":0, + "byteLength":23608, + "byteOffset":229282724, + "target":34962 + }, + { + "buffer":0, + "byteLength":23608, + "byteOffset":229306332, + "target":34962 + }, + { + "buffer":0, + "byteLength":18960, + "byteOffset":229329940, + "target":34963 + }, + { + "buffer":0, + "byteLength":860424, + "byteOffset":229348900, + "target":34962 + }, + { + "buffer":0, + "byteLength":860424, + "byteOffset":230209324, + "target":34962 + }, + { + "buffer":0, + "byteLength":573616, + "byteOffset":231069748, + "target":34962 + }, + { + "buffer":0, + "byteLength":573616, + "byteOffset":231643364, + "target":34962 + }, + { + "buffer":0, + "byteLength":1147232, + "byteOffset":232216980, + "target":34962 + }, + { + "buffer":0, + "byteLength":286808, + "byteOffset":233364212, + "target":34962 + }, + { + "buffer":0, + "byteLength":573616, + "byteOffset":233651020, + "target":34962 + }, + { + "buffer":0, + "byteLength":573616, + "byteOffset":234224636, + "target":34962 + }, + { + "buffer":0, + "byteLength":694320, + "byteOffset":234798252, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":235492572, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":235492620, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":235492668, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":235492700, + "target":34962 + }, + { + "buffer":0, + "byteLength":64, + "byteOffset":235492732, + "target":34962 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":235492796, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":235492812, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":235492844, + "target":34962 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":235492876, + "target":34963 + }, + { + "buffer":0, + "byteLength":216, + "byteOffset":235492888, + "target":34962 + }, + { + "buffer":0, + "byteLength":216, + "byteOffset":235493104, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":235493320, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":235493464, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":235493608, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":235493896, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":235493968, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":235494112, + "target":34962 + }, + { + "buffer":0, + "byteLength":60, + "byteOffset":235494256, + "target":34963 + }, + { + "buffer":0, + "byteLength":279624, + "byteOffset":235494316, + "target":34962 + }, + { + "buffer":0, + "byteLength":279624, + "byteOffset":235773940, + "target":34962 + }, + { + "buffer":0, + "byteLength":186416, + "byteOffset":236053564, + "target":34962 + }, + { + "buffer":0, + "byteLength":186416, + "byteOffset":236239980, + "target":34962 + }, + { + "buffer":0, + "byteLength":372832, + "byteOffset":236426396, + "target":34962 + }, + { + "buffer":0, + "byteLength":93208, + "byteOffset":236799228, + "target":34962 + }, + { + "buffer":0, + "byteLength":186416, + "byteOffset":236892436, + "target":34962 + }, + { + "buffer":0, + "byteLength":186416, + "byteOffset":237078852, + "target":34962 + }, + { + "buffer":0, + "byteLength":395328, + "byteOffset":237265268, + "target":34962 + }, + { + "buffer":0, + "byteLength":395328, + "byteOffset":237660596, + "target":34962 + }, + { + "buffer":0, + "byteLength":263552, + "byteOffset":238055924, + "target":34962 + }, + { + "buffer":0, + "byteLength":263552, + "byteOffset":238319476, + "target":34962 + }, + { + "buffer":0, + "byteLength":527104, + "byteOffset":238583028, + "target":34962 + }, + { + "buffer":0, + "byteLength":131776, + "byteOffset":239110132, + "target":34962 + }, + { + "buffer":0, + "byteLength":263552, + "byteOffset":239241908, + "target":34962 + }, + { + "buffer":0, + "byteLength":263552, + "byteOffset":239505460, + "target":34962 + }, + { + "buffer":0, + "byteLength":55344, + "byteOffset":239769012, + "target":34962 + }, + { + "buffer":0, + "byteLength":55344, + "byteOffset":239824356, + "target":34962 + }, + { + "buffer":0, + "byteLength":36896, + "byteOffset":239879700, + "target":34962 + }, + { + "buffer":0, + "byteLength":36896, + "byteOffset":239916596, + "target":34962 + }, + { + "buffer":0, + "byteLength":73792, + "byteOffset":239953492, + "target":34962 + }, + { + "buffer":0, + "byteLength":18448, + "byteOffset":240027284, + "target":34962 + }, + { + "buffer":0, + "byteLength":36896, + "byteOffset":240045732, + "target":34962 + }, + { + "buffer":0, + "byteLength":36896, + "byteOffset":240082628, + "target":34962 + }, + { + "buffer":0, + "byteLength":801360, + "byteOffset":240119524, + "target":34962 + }, + { + "buffer":0, + "byteLength":801360, + "byteOffset":240920884, + "target":34962 + }, + { + "buffer":0, + "byteLength":534240, + "byteOffset":241722244, + "target":34962 + }, + { + "buffer":0, + "byteLength":534240, + "byteOffset":242256484, + "target":34962 + }, + { + "buffer":0, + "byteLength":1068480, + "byteOffset":242790724, + "target":34962 + }, + { + "buffer":0, + "byteLength":267120, + "byteOffset":243859204, + "target":34962 + }, + { + "buffer":0, + "byteLength":534240, + "byteOffset":244126324, + "target":34962 + }, + { + "buffer":0, + "byteLength":534240, + "byteOffset":244660564, + "target":34962 + }, + { + "buffer":0, + "byteLength":145152, + "byteOffset":245194804, + "target":34962 + }, + { + "buffer":0, + "byteLength":145152, + "byteOffset":245339956, + "target":34962 + }, + { + "buffer":0, + "byteLength":96768, + "byteOffset":245485108, + "target":34962 + }, + { + "buffer":0, + "byteLength":96768, + "byteOffset":245581876, + "target":34962 + }, + { + "buffer":0, + "byteLength":193536, + "byteOffset":245678644, + "target":34962 + }, + { + "buffer":0, + "byteLength":48384, + "byteOffset":245872180, + "target":34962 + }, + { + "buffer":0, + "byteLength":96768, + "byteOffset":245920564, + "target":34962 + }, + { + "buffer":0, + "byteLength":96768, + "byteOffset":246017332, + "target":34962 + }, + { + "buffer":0, + "byteLength":504, + "byteOffset":246114100, + "target":34962 + }, + { + "buffer":0, + "byteLength":504, + "byteOffset":246114604, + "target":34962 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":246115108, + "target":34962 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":246115444, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":246115780, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":246116452, + "target":34962 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":246116620, + "target":34962 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":246116956, + "target":34962 + }, + { + "buffer":0, + "byteLength":437760, + "byteOffset":246117292, + "target":34962 + }, + { + "buffer":0, + "byteLength":437760, + "byteOffset":246555052, + "target":34962 + }, + { + "buffer":0, + "byteLength":291840, + "byteOffset":246992812, + "target":34962 + }, + { + "buffer":0, + "byteLength":291840, + "byteOffset":247284652, + "target":34962 + }, + { + "buffer":0, + "byteLength":583680, + "byteOffset":247576492, + "target":34962 + }, + { + "buffer":0, + "byteLength":145920, + "byteOffset":248160172, + "target":34962 + }, + { + "buffer":0, + "byteLength":291840, + "byteOffset":248306092, + "target":34962 + }, + { + "buffer":0, + "byteLength":291840, + "byteOffset":248597932, + "target":34962 + }, + { + "buffer":0, + "byteLength":43680, + "byteOffset":248889772, + "target":34962 + }, + { + "buffer":0, + "byteLength":43680, + "byteOffset":248933452, + "target":34962 + }, + { + "buffer":0, + "byteLength":29120, + "byteOffset":248977132, + "target":34962 + }, + { + "buffer":0, + "byteLength":29120, + "byteOffset":249006252, + "target":34962 + }, + { + "buffer":0, + "byteLength":58240, + "byteOffset":249035372, + "target":34962 + }, + { + "buffer":0, + "byteLength":14560, + "byteOffset":249093612, + "target":34962 + }, + { + "buffer":0, + "byteLength":29120, + "byteOffset":249108172, + "target":34962 + }, + { + "buffer":0, + "byteLength":29120, + "byteOffset":249137292, + "target":34962 + }, + { + "buffer":0, + "byteLength":1512, + "byteOffset":249166412, + "target":34962 + }, + { + "buffer":0, + "byteLength":1512, + "byteOffset":249167924, + "target":34962 + }, + { + "buffer":0, + "byteLength":1008, + "byteOffset":249169436, + "target":34962 + }, + { + "buffer":0, + "byteLength":1008, + "byteOffset":249170444, + "target":34962 + }, + { + "buffer":0, + "byteLength":2016, + "byteOffset":249171452, + "target":34962 + }, + { + "buffer":0, + "byteLength":504, + "byteOffset":249173468, + "target":34962 + }, + { + "buffer":0, + "byteLength":1008, + "byteOffset":249173972, + "target":34962 + }, + { + "buffer":0, + "byteLength":1008, + "byteOffset":249174980, + "target":34962 + }, + { + "buffer":0, + "byteLength":35412, + "byteOffset":249175988, + "target":34962 + }, + { + "buffer":0, + "byteLength":35412, + "byteOffset":249211400, + "target":34962 + }, + { + "buffer":0, + "byteLength":23608, + "byteOffset":249246812, + "target":34962 + }, + { + "buffer":0, + "byteLength":23608, + "byteOffset":249270420, + "target":34962 + }, + { + "buffer":0, + "byteLength":47216, + "byteOffset":249294028, + "target":34962 + }, + { + "buffer":0, + "byteLength":11804, + "byteOffset":249341244, + "target":34962 + }, + { + "buffer":0, + "byteLength":23608, + "byteOffset":249353048, + "target":34962 + }, + { + "buffer":0, + "byteLength":23608, + "byteOffset":249376656, + "target":34962 + }, + { + "buffer":0, + "byteLength":860424, + "byteOffset":249400264, + "target":34962 + }, + { + "buffer":0, + "byteLength":860424, + "byteOffset":250260688, + "target":34962 + }, + { + "buffer":0, + "byteLength":573616, + "byteOffset":251121112, + "target":34962 + }, + { + "buffer":0, + "byteLength":573616, + "byteOffset":251694728, + "target":34962 + }, + { + "buffer":0, + "byteLength":1147232, + "byteOffset":252268344, + "target":34962 + }, + { + "buffer":0, + "byteLength":286808, + "byteOffset":253415576, + "target":34962 + }, + { + "buffer":0, + "byteLength":573616, + "byteOffset":253702384, + "target":34962 + }, + { + "buffer":0, + "byteLength":573616, + "byteOffset":254276000, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":254849616, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":254849664, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":254849712, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":254849744, + "target":34962 + }, + { + "buffer":0, + "byteLength":64, + "byteOffset":254849776, + "target":34962 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":254849840, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":254849856, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":254849888, + "target":34962 + }, + { + "buffer":0, + "byteLength":216, + "byteOffset":254849920, + "target":34962 + }, + { + "buffer":0, + "byteLength":216, + "byteOffset":254850136, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":254850352, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":254850496, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":254850640, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":254850928, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":254851000, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":254851144, + "target":34962 + }, + { + "buffer":0, + "byteLength":279624, + "byteOffset":254851288, + "target":34962 + }, + { + "buffer":0, + "byteLength":279624, + "byteOffset":255130912, + "target":34962 + }, + { + "buffer":0, + "byteLength":186416, + "byteOffset":255410536, + "target":34962 + }, + { + "buffer":0, + "byteLength":186416, + "byteOffset":255596952, + "target":34962 + }, + { + "buffer":0, + "byteLength":372832, + "byteOffset":255783368, + "target":34962 + }, + { + "buffer":0, + "byteLength":93208, + "byteOffset":256156200, + "target":34962 + }, + { + "buffer":0, + "byteLength":186416, + "byteOffset":256249408, + "target":34962 + }, + { + "buffer":0, + "byteLength":186416, + "byteOffset":256435824, + "target":34962 + }, + { + "buffer":0, + "byteLength":395328, + "byteOffset":256622240, + "target":34962 + }, + { + "buffer":0, + "byteLength":395328, + "byteOffset":257017568, + "target":34962 + }, + { + "buffer":0, + "byteLength":263552, + "byteOffset":257412896, + "target":34962 + }, + { + "buffer":0, + "byteLength":263552, + "byteOffset":257676448, + "target":34962 + }, + { + "buffer":0, + "byteLength":527104, + "byteOffset":257940000, + "target":34962 + }, + { + "buffer":0, + "byteLength":131776, + "byteOffset":258467104, + "target":34962 + }, + { + "buffer":0, + "byteLength":263552, + "byteOffset":258598880, + "target":34962 + }, + { + "buffer":0, + "byteLength":263552, + "byteOffset":258862432, + "target":34962 + }, + { + "buffer":0, + "byteLength":55344, + "byteOffset":259125984, + "target":34962 + }, + { + "buffer":0, + "byteLength":55344, + "byteOffset":259181328, + "target":34962 + }, + { + "buffer":0, + "byteLength":36896, + "byteOffset":259236672, + "target":34962 + }, + { + "buffer":0, + "byteLength":36896, + "byteOffset":259273568, + "target":34962 + }, + { + "buffer":0, + "byteLength":73792, + "byteOffset":259310464, + "target":34962 + }, + { + "buffer":0, + "byteLength":18448, + "byteOffset":259384256, + "target":34962 + }, + { + "buffer":0, + "byteLength":36896, + "byteOffset":259402704, + "target":34962 + }, + { + "buffer":0, + "byteLength":36896, + "byteOffset":259439600, + "target":34962 + }, + { + "buffer":0, + "byteLength":801360, + "byteOffset":259476496, + "target":34962 + }, + { + "buffer":0, + "byteLength":801360, + "byteOffset":260277856, + "target":34962 + }, + { + "buffer":0, + "byteLength":534240, + "byteOffset":261079216, + "target":34962 + }, + { + "buffer":0, + "byteLength":534240, + "byteOffset":261613456, + "target":34962 + }, + { + "buffer":0, + "byteLength":1068480, + "byteOffset":262147696, + "target":34962 + }, + { + "buffer":0, + "byteLength":267120, + "byteOffset":263216176, + "target":34962 + }, + { + "buffer":0, + "byteLength":534240, + "byteOffset":263483296, + "target":34962 + }, + { + "buffer":0, + "byteLength":534240, + "byteOffset":264017536, + "target":34962 + }, + { + "buffer":0, + "byteLength":145152, + "byteOffset":264551776, + "target":34962 + }, + { + "buffer":0, + "byteLength":145152, + "byteOffset":264696928, + "target":34962 + }, + { + "buffer":0, + "byteLength":96768, + "byteOffset":264842080, + "target":34962 + }, + { + "buffer":0, + "byteLength":96768, + "byteOffset":264938848, + "target":34962 + }, + { + "buffer":0, + "byteLength":193536, + "byteOffset":265035616, + "target":34962 + }, + { + "buffer":0, + "byteLength":48384, + "byteOffset":265229152, + "target":34962 + }, + { + "buffer":0, + "byteLength":96768, + "byteOffset":265277536, + "target":34962 + }, + { + "buffer":0, + "byteLength":96768, + "byteOffset":265374304, + "target":34962 + }, + { + "buffer":0, + "byteLength":504, + "byteOffset":265471072, + "target":34962 + }, + { + "buffer":0, + "byteLength":504, + "byteOffset":265471576, + "target":34962 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":265472080, + "target":34962 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":265472416, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":265472752, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":265473424, + "target":34962 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":265473592, + "target":34962 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":265473928, + "target":34962 + }, + { + "buffer":0, + "byteLength":437760, + "byteOffset":265474264, + "target":34962 + }, + { + "buffer":0, + "byteLength":437760, + "byteOffset":265912024, + "target":34962 + }, + { + "buffer":0, + "byteLength":291840, + "byteOffset":266349784, + "target":34962 + }, + { + "buffer":0, + "byteLength":291840, + "byteOffset":266641624, + "target":34962 + }, + { + "buffer":0, + "byteLength":583680, + "byteOffset":266933464, + "target":34962 + }, + { + "buffer":0, + "byteLength":145920, + "byteOffset":267517144, + "target":34962 + }, + { + "buffer":0, + "byteLength":291840, + "byteOffset":267663064, + "target":34962 + }, + { + "buffer":0, + "byteLength":291840, + "byteOffset":267954904, + "target":34962 + }, + { + "buffer":0, + "byteLength":43680, + "byteOffset":268246744, + "target":34962 + }, + { + "buffer":0, + "byteLength":43680, + "byteOffset":268290424, + "target":34962 + }, + { + "buffer":0, + "byteLength":29120, + "byteOffset":268334104, + "target":34962 + }, + { + "buffer":0, + "byteLength":29120, + "byteOffset":268363224, + "target":34962 + }, + { + "buffer":0, + "byteLength":58240, + "byteOffset":268392344, + "target":34962 + }, + { + "buffer":0, + "byteLength":14560, + "byteOffset":268450584, + "target":34962 + }, + { + "buffer":0, + "byteLength":29120, + "byteOffset":268465144, + "target":34962 + }, + { + "buffer":0, + "byteLength":29120, + "byteOffset":268494264, + "target":34962 + }, + { + "buffer":0, + "byteLength":1512, + "byteOffset":268523384, + "target":34962 + }, + { + "buffer":0, + "byteLength":1512, + "byteOffset":268524896, + "target":34962 + }, + { + "buffer":0, + "byteLength":1008, + "byteOffset":268526408, + "target":34962 + }, + { + "buffer":0, + "byteLength":1008, + "byteOffset":268527416, + "target":34962 + }, + { + "buffer":0, + "byteLength":2016, + "byteOffset":268528424, + "target":34962 + }, + { + "buffer":0, + "byteLength":504, + "byteOffset":268530440, + "target":34962 + }, + { + "buffer":0, + "byteLength":1008, + "byteOffset":268530944, + "target":34962 + }, + { + "buffer":0, + "byteLength":1008, + "byteOffset":268531952, + "target":34962 + }, + { + "buffer":0, + "byteLength":35412, + "byteOffset":268532960, + "target":34962 + }, + { + "buffer":0, + "byteLength":35412, + "byteOffset":268568372, + "target":34962 + }, + { + "buffer":0, + "byteLength":23608, + "byteOffset":268603784, + "target":34962 + }, + { + "buffer":0, + "byteLength":23608, + "byteOffset":268627392, + "target":34962 + }, + { + "buffer":0, + "byteLength":47216, + "byteOffset":268651000, + "target":34962 + }, + { + "buffer":0, + "byteLength":11804, + "byteOffset":268698216, + "target":34962 + }, + { + "buffer":0, + "byteLength":23608, + "byteOffset":268710020, + "target":34962 + }, + { + "buffer":0, + "byteLength":23608, + "byteOffset":268733628, + "target":34962 + }, + { + "buffer":0, + "byteLength":860424, + "byteOffset":268757236, + "target":34962 + }, + { + "buffer":0, + "byteLength":860424, + "byteOffset":269617660, + "target":34962 + }, + { + "buffer":0, + "byteLength":573616, + "byteOffset":270478084, + "target":34962 + }, + { + "buffer":0, + "byteLength":573616, + "byteOffset":271051700, + "target":34962 + }, + { + "buffer":0, + "byteLength":1147232, + "byteOffset":271625316, + "target":34962 + }, + { + "buffer":0, + "byteLength":286808, + "byteOffset":272772548, + "target":34962 + }, + { + "buffer":0, + "byteLength":573616, + "byteOffset":273059356, + "target":34962 + }, + { + "buffer":0, + "byteLength":573616, + "byteOffset":273632972, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":274206588, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":274206636, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":274206684, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":274206716, + "target":34962 + }, + { + "buffer":0, + "byteLength":64, + "byteOffset":274206748, + "target":34962 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":274206812, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":274206828, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":274206860, + "target":34962 + }, + { + "buffer":0, + "byteLength":216, + "byteOffset":274206892, + "target":34962 + }, + { + "buffer":0, + "byteLength":216, + "byteOffset":274207108, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":274207324, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":274207468, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":274207612, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":274207900, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":274207972, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":274208116, + "target":34962 + }, + { + "buffer":0, + "byteLength":279624, + "byteOffset":274208260, + "target":34962 + }, + { + "buffer":0, + "byteLength":279624, + "byteOffset":274487884, + "target":34962 + }, + { + "buffer":0, + "byteLength":186416, + "byteOffset":274767508, + "target":34962 + }, + { + "buffer":0, + "byteLength":186416, + "byteOffset":274953924, + "target":34962 + }, + { + "buffer":0, + "byteLength":372832, + "byteOffset":275140340, + "target":34962 + }, + { + "buffer":0, + "byteLength":93208, + "byteOffset":275513172, + "target":34962 + }, + { + "buffer":0, + "byteLength":186416, + "byteOffset":275606380, + "target":34962 + }, + { + "buffer":0, + "byteLength":186416, + "byteOffset":275792796, + "target":34962 + }, + { + "buffer":0, + "byteLength":395328, + "byteOffset":275979212, + "target":34962 + }, + { + "buffer":0, + "byteLength":395328, + "byteOffset":276374540, + "target":34962 + }, + { + "buffer":0, + "byteLength":263552, + "byteOffset":276769868, + "target":34962 + }, + { + "buffer":0, + "byteLength":263552, + "byteOffset":277033420, + "target":34962 + }, + { + "buffer":0, + "byteLength":527104, + "byteOffset":277296972, + "target":34962 + }, + { + "buffer":0, + "byteLength":131776, + "byteOffset":277824076, + "target":34962 + }, + { + "buffer":0, + "byteLength":263552, + "byteOffset":277955852, + "target":34962 + }, + { + "buffer":0, + "byteLength":263552, + "byteOffset":278219404, + "target":34962 + }, + { + "buffer":0, + "byteLength":55344, + "byteOffset":278482956, + "target":34962 + }, + { + "buffer":0, + "byteLength":55344, + "byteOffset":278538300, + "target":34962 + }, + { + "buffer":0, + "byteLength":36896, + "byteOffset":278593644, + "target":34962 + }, + { + "buffer":0, + "byteLength":36896, + "byteOffset":278630540, + "target":34962 + }, + { + "buffer":0, + "byteLength":73792, + "byteOffset":278667436, + "target":34962 + }, + { + "buffer":0, + "byteLength":18448, + "byteOffset":278741228, + "target":34962 + }, + { + "buffer":0, + "byteLength":36896, + "byteOffset":278759676, + "target":34962 + }, + { + "buffer":0, + "byteLength":36896, + "byteOffset":278796572, + "target":34962 + }, + { + "buffer":0, + "byteLength":801360, + "byteOffset":278833468, + "target":34962 + }, + { + "buffer":0, + "byteLength":801360, + "byteOffset":279634828, + "target":34962 + }, + { + "buffer":0, + "byteLength":534240, + "byteOffset":280436188, + "target":34962 + }, + { + "buffer":0, + "byteLength":534240, + "byteOffset":280970428, + "target":34962 + }, + { + "buffer":0, + "byteLength":1068480, + "byteOffset":281504668, + "target":34962 + }, + { + "buffer":0, + "byteLength":267120, + "byteOffset":282573148, + "target":34962 + }, + { + "buffer":0, + "byteLength":534240, + "byteOffset":282840268, + "target":34962 + }, + { + "buffer":0, + "byteLength":534240, + "byteOffset":283374508, + "target":34962 + }, + { + "buffer":0, + "byteLength":145152, + "byteOffset":283908748, + "target":34962 + }, + { + "buffer":0, + "byteLength":145152, + "byteOffset":284053900, + "target":34962 + }, + { + "buffer":0, + "byteLength":96768, + "byteOffset":284199052, + "target":34962 + }, + { + "buffer":0, + "byteLength":96768, + "byteOffset":284295820, + "target":34962 + }, + { + "buffer":0, + "byteLength":193536, + "byteOffset":284392588, + "target":34962 + }, + { + "buffer":0, + "byteLength":48384, + "byteOffset":284586124, + "target":34962 + }, + { + "buffer":0, + "byteLength":96768, + "byteOffset":284634508, + "target":34962 + }, + { + "buffer":0, + "byteLength":96768, + "byteOffset":284731276, + "target":34962 + }, + { + "buffer":0, + "byteLength":504, + "byteOffset":284828044, + "target":34962 + }, + { + "buffer":0, + "byteLength":504, + "byteOffset":284828548, + "target":34962 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":284829052, + "target":34962 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":284829388, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":284829724, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":284830396, + "target":34962 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":284830564, + "target":34962 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":284830900, + "target":34962 + }, + { + "buffer":0, + "byteLength":437760, + "byteOffset":284831236, + "target":34962 + }, + { + "buffer":0, + "byteLength":437760, + "byteOffset":285268996, + "target":34962 + }, + { + "buffer":0, + "byteLength":291840, + "byteOffset":285706756, + "target":34962 + }, + { + "buffer":0, + "byteLength":291840, + "byteOffset":285998596, + "target":34962 + }, + { + "buffer":0, + "byteLength":583680, + "byteOffset":286290436, + "target":34962 + }, + { + "buffer":0, + "byteLength":145920, + "byteOffset":286874116, + "target":34962 + }, + { + "buffer":0, + "byteLength":291840, + "byteOffset":287020036, + "target":34962 + }, + { + "buffer":0, + "byteLength":291840, + "byteOffset":287311876, + "target":34962 + }, + { + "buffer":0, + "byteLength":43680, + "byteOffset":287603716, + "target":34962 + }, + { + "buffer":0, + "byteLength":43680, + "byteOffset":287647396, + "target":34962 + }, + { + "buffer":0, + "byteLength":29120, + "byteOffset":287691076, + "target":34962 + }, + { + "buffer":0, + "byteLength":29120, + "byteOffset":287720196, + "target":34962 + }, + { + "buffer":0, + "byteLength":58240, + "byteOffset":287749316, + "target":34962 + }, + { + "buffer":0, + "byteLength":14560, + "byteOffset":287807556, + "target":34962 + }, + { + "buffer":0, + "byteLength":29120, + "byteOffset":287822116, + "target":34962 + }, + { + "buffer":0, + "byteLength":29120, + "byteOffset":287851236, + "target":34962 + }, + { + "buffer":0, + "byteLength":1512, + "byteOffset":287880356, + "target":34962 + }, + { + "buffer":0, + "byteLength":1512, + "byteOffset":287881868, + "target":34962 + }, + { + "buffer":0, + "byteLength":1008, + "byteOffset":287883380, + "target":34962 + }, + { + "buffer":0, + "byteLength":1008, + "byteOffset":287884388, + "target":34962 + }, + { + "buffer":0, + "byteLength":2016, + "byteOffset":287885396, + "target":34962 + }, + { + "buffer":0, + "byteLength":504, + "byteOffset":287887412, + "target":34962 + }, + { + "buffer":0, + "byteLength":1008, + "byteOffset":287887916, + "target":34962 + }, + { + "buffer":0, + "byteLength":1008, + "byteOffset":287888924, + "target":34962 + }, + { + "buffer":0, + "byteLength":35412, + "byteOffset":287889932, + "target":34962 + }, + { + "buffer":0, + "byteLength":35412, + "byteOffset":287925344, + "target":34962 + }, + { + "buffer":0, + "byteLength":23608, + "byteOffset":287960756, + "target":34962 + }, + { + "buffer":0, + "byteLength":23608, + "byteOffset":287984364, + "target":34962 + }, + { + "buffer":0, + "byteLength":47216, + "byteOffset":288007972, + "target":34962 + }, + { + "buffer":0, + "byteLength":11804, + "byteOffset":288055188, + "target":34962 + }, + { + "buffer":0, + "byteLength":23608, + "byteOffset":288066992, + "target":34962 + }, + { + "buffer":0, + "byteLength":23608, + "byteOffset":288090600, + "target":34962 + }, + { + "buffer":0, + "byteLength":860424, + "byteOffset":288114208, + "target":34962 + }, + { + "buffer":0, + "byteLength":860424, + "byteOffset":288974632, + "target":34962 + }, + { + "buffer":0, + "byteLength":573616, + "byteOffset":289835056, + "target":34962 + }, + { + "buffer":0, + "byteLength":573616, + "byteOffset":290408672, + "target":34962 + }, + { + "buffer":0, + "byteLength":1147232, + "byteOffset":290982288, + "target":34962 + }, + { + "buffer":0, + "byteLength":286808, + "byteOffset":292129520, + "target":34962 + }, + { + "buffer":0, + "byteLength":573616, + "byteOffset":292416328, + "target":34962 + }, + { + "buffer":0, + "byteLength":573616, + "byteOffset":292989944, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":293563560, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":293563608, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":293563656, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":293563688, + "target":34962 + }, + { + "buffer":0, + "byteLength":64, + "byteOffset":293563720, + "target":34962 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":293563784, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":293563800, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":293563832, + "target":34962 + }, + { + "buffer":0, + "byteLength":216, + "byteOffset":293563864, + "target":34962 + }, + { + "buffer":0, + "byteLength":216, + "byteOffset":293564080, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":293564296, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":293564440, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":293564584, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":293564872, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":293564944, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":293565088, + "target":34962 + }, + { + "buffer":0, + "byteLength":26460, + "byteOffset":293565232, + "target":34962 + }, + { + "buffer":0, + "byteLength":26460, + "byteOffset":293591692, + "target":34962 + }, + { + "buffer":0, + "byteLength":17640, + "byteOffset":293618152, + "target":34962 + }, + { + "buffer":0, + "byteLength":17640, + "byteOffset":293635792, + "target":34962 + }, + { + "buffer":0, + "byteLength":35280, + "byteOffset":293653432, + "target":34962 + }, + { + "buffer":0, + "byteLength":8820, + "byteOffset":293688712, + "target":34962 + }, + { + "buffer":0, + "byteLength":17640, + "byteOffset":293697532, + "target":34962 + }, + { + "buffer":0, + "byteLength":17640, + "byteOffset":293715172, + "target":34962 + }, + { + "buffer":0, + "byteLength":279624, + "byteOffset":293732812, + "target":34962 + }, + { + "buffer":0, + "byteLength":279624, + "byteOffset":294012436, + "target":34962 + }, + { + "buffer":0, + "byteLength":186416, + "byteOffset":294292060, + "target":34962 + }, + { + "buffer":0, + "byteLength":186416, + "byteOffset":294478476, + "target":34962 + }, + { + "buffer":0, + "byteLength":372832, + "byteOffset":294664892, + "target":34962 + }, + { + "buffer":0, + "byteLength":93208, + "byteOffset":295037724, + "target":34962 + }, + { + "buffer":0, + "byteLength":186416, + "byteOffset":295130932, + "target":34962 + }, + { + "buffer":0, + "byteLength":186416, + "byteOffset":295317348, + "target":34962 + }, + { + "buffer":0, + "byteLength":395328, + "byteOffset":295503764, + "target":34962 + }, + { + "buffer":0, + "byteLength":395328, + "byteOffset":295899092, + "target":34962 + }, + { + "buffer":0, + "byteLength":263552, + "byteOffset":296294420, + "target":34962 + }, + { + "buffer":0, + "byteLength":263552, + "byteOffset":296557972, + "target":34962 + }, + { + "buffer":0, + "byteLength":527104, + "byteOffset":296821524, + "target":34962 + }, + { + "buffer":0, + "byteLength":131776, + "byteOffset":297348628, + "target":34962 + }, + { + "buffer":0, + "byteLength":263552, + "byteOffset":297480404, + "target":34962 + }, + { + "buffer":0, + "byteLength":263552, + "byteOffset":297743956, + "target":34962 + }, + { + "buffer":0, + "byteLength":55344, + "byteOffset":298007508, + "target":34962 + }, + { + "buffer":0, + "byteLength":55344, + "byteOffset":298062852, + "target":34962 + }, + { + "buffer":0, + "byteLength":36896, + "byteOffset":298118196, + "target":34962 + }, + { + "buffer":0, + "byteLength":36896, + "byteOffset":298155092, + "target":34962 + }, + { + "buffer":0, + "byteLength":73792, + "byteOffset":298191988, + "target":34962 + }, + { + "buffer":0, + "byteLength":18448, + "byteOffset":298265780, + "target":34962 + }, + { + "buffer":0, + "byteLength":36896, + "byteOffset":298284228, + "target":34962 + }, + { + "buffer":0, + "byteLength":36896, + "byteOffset":298321124, + "target":34962 + }, + { + "buffer":0, + "byteLength":801360, + "byteOffset":298358020, + "target":34962 + }, + { + "buffer":0, + "byteLength":801360, + "byteOffset":299159380, + "target":34962 + }, + { + "buffer":0, + "byteLength":534240, + "byteOffset":299960740, + "target":34962 + }, + { + "buffer":0, + "byteLength":534240, + "byteOffset":300494980, + "target":34962 + }, + { + "buffer":0, + "byteLength":1068480, + "byteOffset":301029220, + "target":34962 + }, + { + "buffer":0, + "byteLength":267120, + "byteOffset":302097700, + "target":34962 + }, + { + "buffer":0, + "byteLength":534240, + "byteOffset":302364820, + "target":34962 + }, + { + "buffer":0, + "byteLength":534240, + "byteOffset":302899060, + "target":34962 + }, + { + "buffer":0, + "byteLength":145152, + "byteOffset":303433300, + "target":34962 + }, + { + "buffer":0, + "byteLength":145152, + "byteOffset":303578452, + "target":34962 + }, + { + "buffer":0, + "byteLength":96768, + "byteOffset":303723604, + "target":34962 + }, + { + "buffer":0, + "byteLength":96768, + "byteOffset":303820372, + "target":34962 + }, + { + "buffer":0, + "byteLength":193536, + "byteOffset":303917140, + "target":34962 + }, + { + "buffer":0, + "byteLength":48384, + "byteOffset":304110676, + "target":34962 + }, + { + "buffer":0, + "byteLength":96768, + "byteOffset":304159060, + "target":34962 + }, + { + "buffer":0, + "byteLength":96768, + "byteOffset":304255828, + "target":34962 + }, + { + "buffer":0, + "byteLength":504, + "byteOffset":304352596, + "target":34962 + }, + { + "buffer":0, + "byteLength":504, + "byteOffset":304353100, + "target":34962 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":304353604, + "target":34962 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":304353940, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":304354276, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":304354948, + "target":34962 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":304355116, + "target":34962 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":304355452, + "target":34962 + }, + { + "buffer":0, + "byteLength":437760, + "byteOffset":304355788, + "target":34962 + }, + { + "buffer":0, + "byteLength":437760, + "byteOffset":304793548, + "target":34962 + }, + { + "buffer":0, + "byteLength":291840, + "byteOffset":305231308, + "target":34962 + }, + { + "buffer":0, + "byteLength":291840, + "byteOffset":305523148, + "target":34962 + }, + { + "buffer":0, + "byteLength":583680, + "byteOffset":305814988, + "target":34962 + }, + { + "buffer":0, + "byteLength":145920, + "byteOffset":306398668, + "target":34962 + }, + { + "buffer":0, + "byteLength":291840, + "byteOffset":306544588, + "target":34962 + }, + { + "buffer":0, + "byteLength":291840, + "byteOffset":306836428, + "target":34962 + }, + { + "buffer":0, + "byteLength":43680, + "byteOffset":307128268, + "target":34962 + }, + { + "buffer":0, + "byteLength":43680, + "byteOffset":307171948, + "target":34962 + }, + { + "buffer":0, + "byteLength":29120, + "byteOffset":307215628, + "target":34962 + }, + { + "buffer":0, + "byteLength":29120, + "byteOffset":307244748, + "target":34962 + }, + { + "buffer":0, + "byteLength":58240, + "byteOffset":307273868, + "target":34962 + }, + { + "buffer":0, + "byteLength":14560, + "byteOffset":307332108, + "target":34962 + }, + { + "buffer":0, + "byteLength":29120, + "byteOffset":307346668, + "target":34962 + }, + { + "buffer":0, + "byteLength":29120, + "byteOffset":307375788, + "target":34962 + }, + { + "buffer":0, + "byteLength":1512, + "byteOffset":307404908, + "target":34962 + }, + { + "buffer":0, + "byteLength":1512, + "byteOffset":307406420, + "target":34962 + }, + { + "buffer":0, + "byteLength":1008, + "byteOffset":307407932, + "target":34962 + }, + { + "buffer":0, + "byteLength":1008, + "byteOffset":307408940, + "target":34962 + }, + { + "buffer":0, + "byteLength":2016, + "byteOffset":307409948, + "target":34962 + }, + { + "buffer":0, + "byteLength":504, + "byteOffset":307411964, + "target":34962 + }, + { + "buffer":0, + "byteLength":1008, + "byteOffset":307412468, + "target":34962 + }, + { + "buffer":0, + "byteLength":1008, + "byteOffset":307413476, + "target":34962 + }, + { + "buffer":0, + "byteLength":35412, + "byteOffset":307414484, + "target":34962 + }, + { + "buffer":0, + "byteLength":35412, + "byteOffset":307449896, + "target":34962 + }, + { + "buffer":0, + "byteLength":23608, + "byteOffset":307485308, + "target":34962 + }, + { + "buffer":0, + "byteLength":23608, + "byteOffset":307508916, + "target":34962 + }, + { + "buffer":0, + "byteLength":47216, + "byteOffset":307532524, + "target":34962 + }, + { + "buffer":0, + "byteLength":11804, + "byteOffset":307579740, + "target":34962 + }, + { + "buffer":0, + "byteLength":23608, + "byteOffset":307591544, + "target":34962 + }, + { + "buffer":0, + "byteLength":23608, + "byteOffset":307615152, + "target":34962 + }, + { + "buffer":0, + "byteLength":860424, + "byteOffset":307638760, + "target":34962 + }, + { + "buffer":0, + "byteLength":860424, + "byteOffset":308499184, + "target":34962 + }, + { + "buffer":0, + "byteLength":573616, + "byteOffset":309359608, + "target":34962 + }, + { + "buffer":0, + "byteLength":573616, + "byteOffset":309933224, + "target":34962 + }, + { + "buffer":0, + "byteLength":1147232, + "byteOffset":310506840, + "target":34962 + }, + { + "buffer":0, + "byteLength":286808, + "byteOffset":311654072, + "target":34962 + }, + { + "buffer":0, + "byteLength":573616, + "byteOffset":311940880, + "target":34962 + }, + { + "buffer":0, + "byteLength":573616, + "byteOffset":312514496, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":313088112, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":313088160, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":313088208, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":313088240, + "target":34962 + }, + { + "buffer":0, + "byteLength":64, + "byteOffset":313088272, + "target":34962 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":313088336, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":313088352, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":313088384, + "target":34962 + }, + { + "buffer":0, + "byteLength":216, + "byteOffset":313088416, + "target":34962 + }, + { + "buffer":0, + "byteLength":216, + "byteOffset":313088632, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":313088848, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":313088992, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":313089136, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":313089424, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":313089496, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":313089640, + "target":34962 + }, + { + "buffer":0, + "byteLength":26460, + "byteOffset":313089784, + "target":34962 + }, + { + "buffer":0, + "byteLength":26460, + "byteOffset":313116244, + "target":34962 + }, + { + "buffer":0, + "byteLength":17640, + "byteOffset":313142704, + "target":34962 + }, + { + "buffer":0, + "byteLength":17640, + "byteOffset":313160344, + "target":34962 + }, + { + "buffer":0, + "byteLength":35280, + "byteOffset":313177984, + "target":34962 + }, + { + "buffer":0, + "byteLength":8820, + "byteOffset":313213264, + "target":34962 + }, + { + "buffer":0, + "byteLength":17640, + "byteOffset":313222084, + "target":34962 + }, + { + "buffer":0, + "byteLength":17640, + "byteOffset":313239724, + "target":34962 + }, + { + "buffer":0, + "byteLength":279624, + "byteOffset":313257364, + "target":34962 + }, + { + "buffer":0, + "byteLength":279624, + "byteOffset":313536988, + "target":34962 + }, + { + "buffer":0, + "byteLength":186416, + "byteOffset":313816612, + "target":34962 + }, + { + "buffer":0, + "byteLength":186416, + "byteOffset":314003028, + "target":34962 + }, + { + "buffer":0, + "byteLength":372832, + "byteOffset":314189444, + "target":34962 + }, + { + "buffer":0, + "byteLength":93208, + "byteOffset":314562276, + "target":34962 + }, + { + "buffer":0, + "byteLength":186416, + "byteOffset":314655484, + "target":34962 + }, + { + "buffer":0, + "byteLength":186416, + "byteOffset":314841900, + "target":34962 + }, + { + "buffer":0, + "byteLength":395328, + "byteOffset":315028316, + "target":34962 + }, + { + "buffer":0, + "byteLength":395328, + "byteOffset":315423644, + "target":34962 + }, + { + "buffer":0, + "byteLength":263552, + "byteOffset":315818972, + "target":34962 + }, + { + "buffer":0, + "byteLength":263552, + "byteOffset":316082524, + "target":34962 + }, + { + "buffer":0, + "byteLength":527104, + "byteOffset":316346076, + "target":34962 + }, + { + "buffer":0, + "byteLength":131776, + "byteOffset":316873180, + "target":34962 + }, + { + "buffer":0, + "byteLength":263552, + "byteOffset":317004956, + "target":34962 + }, + { + "buffer":0, + "byteLength":263552, + "byteOffset":317268508, + "target":34962 + }, + { + "buffer":0, + "byteLength":55344, + "byteOffset":317532060, + "target":34962 + }, + { + "buffer":0, + "byteLength":55344, + "byteOffset":317587404, + "target":34962 + }, + { + "buffer":0, + "byteLength":36896, + "byteOffset":317642748, + "target":34962 + }, + { + "buffer":0, + "byteLength":36896, + "byteOffset":317679644, + "target":34962 + }, + { + "buffer":0, + "byteLength":73792, + "byteOffset":317716540, + "target":34962 + }, + { + "buffer":0, + "byteLength":18448, + "byteOffset":317790332, + "target":34962 + }, + { + "buffer":0, + "byteLength":36896, + "byteOffset":317808780, + "target":34962 + }, + { + "buffer":0, + "byteLength":36896, + "byteOffset":317845676, + "target":34962 + }, + { + "buffer":0, + "byteLength":801360, + "byteOffset":317882572, + "target":34962 + }, + { + "buffer":0, + "byteLength":801360, + "byteOffset":318683932, + "target":34962 + }, + { + "buffer":0, + "byteLength":534240, + "byteOffset":319485292, + "target":34962 + }, + { + "buffer":0, + "byteLength":534240, + "byteOffset":320019532, + "target":34962 + }, + { + "buffer":0, + "byteLength":1068480, + "byteOffset":320553772, + "target":34962 + }, + { + "buffer":0, + "byteLength":267120, + "byteOffset":321622252, + "target":34962 + }, + { + "buffer":0, + "byteLength":534240, + "byteOffset":321889372, + "target":34962 + }, + { + "buffer":0, + "byteLength":534240, + "byteOffset":322423612, + "target":34962 + }, + { + "buffer":0, + "byteLength":145152, + "byteOffset":322957852, + "target":34962 + }, + { + "buffer":0, + "byteLength":145152, + "byteOffset":323103004, + "target":34962 + }, + { + "buffer":0, + "byteLength":96768, + "byteOffset":323248156, + "target":34962 + }, + { + "buffer":0, + "byteLength":96768, + "byteOffset":323344924, + "target":34962 + }, + { + "buffer":0, + "byteLength":193536, + "byteOffset":323441692, + "target":34962 + }, + { + "buffer":0, + "byteLength":48384, + "byteOffset":323635228, + "target":34962 + }, + { + "buffer":0, + "byteLength":96768, + "byteOffset":323683612, + "target":34962 + }, + { + "buffer":0, + "byteLength":96768, + "byteOffset":323780380, + "target":34962 + }, + { + "buffer":0, + "byteLength":504, + "byteOffset":323877148, + "target":34962 + }, + { + "buffer":0, + "byteLength":504, + "byteOffset":323877652, + "target":34962 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":323878156, + "target":34962 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":323878492, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":323878828, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":323879500, + "target":34962 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":323879668, + "target":34962 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":323880004, + "target":34962 + }, + { + "buffer":0, + "byteLength":437760, + "byteOffset":323880340, + "target":34962 + }, + { + "buffer":0, + "byteLength":437760, + "byteOffset":324318100, + "target":34962 + }, + { + "buffer":0, + "byteLength":291840, + "byteOffset":324755860, + "target":34962 + }, + { + "buffer":0, + "byteLength":291840, + "byteOffset":325047700, + "target":34962 + }, + { + "buffer":0, + "byteLength":583680, + "byteOffset":325339540, + "target":34962 + }, + { + "buffer":0, + "byteLength":145920, + "byteOffset":325923220, + "target":34962 + }, + { + "buffer":0, + "byteLength":291840, + "byteOffset":326069140, + "target":34962 + }, + { + "buffer":0, + "byteLength":291840, + "byteOffset":326360980, + "target":34962 + }, + { + "buffer":0, + "byteLength":43680, + "byteOffset":326652820, + "target":34962 + }, + { + "buffer":0, + "byteLength":43680, + "byteOffset":326696500, + "target":34962 + }, + { + "buffer":0, + "byteLength":29120, + "byteOffset":326740180, + "target":34962 + }, + { + "buffer":0, + "byteLength":29120, + "byteOffset":326769300, + "target":34962 + }, + { + "buffer":0, + "byteLength":58240, + "byteOffset":326798420, + "target":34962 + }, + { + "buffer":0, + "byteLength":14560, + "byteOffset":326856660, + "target":34962 + }, + { + "buffer":0, + "byteLength":29120, + "byteOffset":326871220, + "target":34962 + }, + { + "buffer":0, + "byteLength":29120, + "byteOffset":326900340, + "target":34962 + }, + { + "buffer":0, + "byteLength":1512, + "byteOffset":326929460, + "target":34962 + }, + { + "buffer":0, + "byteLength":1512, + "byteOffset":326930972, + "target":34962 + }, + { + "buffer":0, + "byteLength":1008, + "byteOffset":326932484, + "target":34962 + }, + { + "buffer":0, + "byteLength":1008, + "byteOffset":326933492, + "target":34962 + }, + { + "buffer":0, + "byteLength":2016, + "byteOffset":326934500, + "target":34962 + }, + { + "buffer":0, + "byteLength":504, + "byteOffset":326936516, + "target":34962 + }, + { + "buffer":0, + "byteLength":1008, + "byteOffset":326937020, + "target":34962 + }, + { + "buffer":0, + "byteLength":1008, + "byteOffset":326938028, + "target":34962 + }, + { + "buffer":0, + "byteLength":35412, + "byteOffset":326939036, + "target":34962 + }, + { + "buffer":0, + "byteLength":35412, + "byteOffset":326974448, + "target":34962 + }, + { + "buffer":0, + "byteLength":23608, + "byteOffset":327009860, + "target":34962 + }, + { + "buffer":0, + "byteLength":23608, + "byteOffset":327033468, + "target":34962 + }, + { + "buffer":0, + "byteLength":47216, + "byteOffset":327057076, + "target":34962 + }, + { + "buffer":0, + "byteLength":11804, + "byteOffset":327104292, + "target":34962 + }, + { + "buffer":0, + "byteLength":23608, + "byteOffset":327116096, + "target":34962 + }, + { + "buffer":0, + "byteLength":23608, + "byteOffset":327139704, + "target":34962 + }, + { + "buffer":0, + "byteLength":860424, + "byteOffset":327163312, + "target":34962 + }, + { + "buffer":0, + "byteLength":860424, + "byteOffset":328023736, + "target":34962 + }, + { + "buffer":0, + "byteLength":573616, + "byteOffset":328884160, + "target":34962 + }, + { + "buffer":0, + "byteLength":573616, + "byteOffset":329457776, + "target":34962 + }, + { + "buffer":0, + "byteLength":1147232, + "byteOffset":330031392, + "target":34962 + }, + { + "buffer":0, + "byteLength":286808, + "byteOffset":331178624, + "target":34962 + }, + { + "buffer":0, + "byteLength":573616, + "byteOffset":331465432, + "target":34962 + }, + { + "buffer":0, + "byteLength":573616, + "byteOffset":332039048, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":332612664, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":332612712, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":332612760, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":332612792, + "target":34962 + }, + { + "buffer":0, + "byteLength":64, + "byteOffset":332612824, + "target":34962 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":332612888, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":332612904, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":332612936, + "target":34962 + }, + { + "buffer":0, + "byteLength":216, + "byteOffset":332612968, + "target":34962 + }, + { + "buffer":0, + "byteLength":216, + "byteOffset":332613184, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":332613400, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":332613544, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":332613688, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":332613976, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":332614048, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":332614192, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":332614336, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":332615776, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":332617216, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":332618176, + "target":34962 + }, + { + "buffer":0, + "byteLength":1920, + "byteOffset":332619136, + "target":34962 + }, + { + "buffer":0, + "byteLength":23424, + "byteOffset":332621056, + "target":34962 + }, + { + "buffer":0, + "byteLength":23424, + "byteOffset":332644480, + "target":34962 + }, + { + "buffer":0, + "byteLength":15616, + "byteOffset":332667904, + "target":34962 + }, + { + "buffer":0, + "byteLength":15616, + "byteOffset":332683520, + "target":34962 + }, + { + "buffer":0, + "byteLength":31232, + "byteOffset":332699136, + "target":34962 + }, + { + "buffer":0, + "byteLength":39444, + "byteOffset":332730368, + "target":34962 + }, + { + "buffer":0, + "byteLength":39444, + "byteOffset":332769812, + "target":34962 + }, + { + "buffer":0, + "byteLength":26296, + "byteOffset":332809256, + "target":34962 + }, + { + "buffer":0, + "byteLength":26296, + "byteOffset":332835552, + "target":34962 + }, + { + "buffer":0, + "byteLength":52592, + "byteOffset":332861848, + "target":34962 + }, + { + "buffer":0, + "byteLength":295548, + "byteOffset":332914440, + "target":34962 + }, + { + "buffer":0, + "byteLength":295548, + "byteOffset":333209988, + "target":34962 + }, + { + "buffer":0, + "byteLength":197032, + "byteOffset":333505536, + "target":34962 + }, + { + "buffer":0, + "byteLength":197032, + "byteOffset":333702568, + "target":34962 + }, + { + "buffer":0, + "byteLength":394064, + "byteOffset":333899600, + "target":34962 + }, + { + "buffer":0, + "byteLength":4608, + "byteOffset":334293664, + "target":34962 + }, + { + "buffer":0, + "byteLength":4608, + "byteOffset":334298272, + "target":34962 + }, + { + "buffer":0, + "byteLength":3072, + "byteOffset":334302880, + "target":34962 + }, + { + "buffer":0, + "byteLength":3072, + "byteOffset":334305952, + "target":34962 + }, + { + "buffer":0, + "byteLength":6144, + "byteOffset":334309024, + "target":34962 + }, + { + "buffer":0, + "byteLength":19344, + "byteOffset":334315168, + "target":34962 + }, + { + "buffer":0, + "byteLength":19344, + "byteOffset":334334512, + "target":34962 + }, + { + "buffer":0, + "byteLength":12896, + "byteOffset":334353856, + "target":34962 + }, + { + "buffer":0, + "byteLength":12896, + "byteOffset":334366752, + "target":34962 + }, + { + "buffer":0, + "byteLength":25792, + "byteOffset":334379648, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":334405440, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":334406592, + "target":34962 + }, + { + "buffer":0, + "byteLength":768, + "byteOffset":334407744, + "target":34962 + }, + { + "buffer":0, + "byteLength":768, + "byteOffset":334408512, + "target":34962 + }, + { + "buffer":0, + "byteLength":1536, + "byteOffset":334409280, + "target":34962 + }, + { + "buffer":0, + "byteLength":324, + "byteOffset":334410816, + "target":34962 + }, + { + "buffer":0, + "byteLength":324, + "byteOffset":334411140, + "target":34962 + }, + { + "buffer":0, + "byteLength":216, + "byteOffset":334411464, + "target":34962 + }, + { + "buffer":0, + "byteLength":216, + "byteOffset":334411680, + "target":34962 + }, + { + "buffer":0, + "byteLength":432, + "byteOffset":334411896, + "target":34962 + }, + { + "buffer":0, + "byteLength":219456, + "byteOffset":334412328, + "target":34962 + }, + { + "buffer":0, + "byteLength":219456, + "byteOffset":334631784, + "target":34962 + }, + { + "buffer":0, + "byteLength":146304, + "byteOffset":334851240, + "target":34962 + }, + { + "buffer":0, + "byteLength":146304, + "byteOffset":334997544, + "target":34962 + }, + { + "buffer":0, + "byteLength":292608, + "byteOffset":335143848, + "target":34962 + }, + { + "buffer":0, + "byteLength":40704, + "byteOffset":335436456, + "target":34962 + }, + { + "buffer":0, + "byteLength":40704, + "byteOffset":335477160, + "target":34962 + }, + { + "buffer":0, + "byteLength":27136, + "byteOffset":335517864, + "target":34962 + }, + { + "buffer":0, + "byteLength":27136, + "byteOffset":335545000, + "target":34962 + }, + { + "buffer":0, + "byteLength":54272, + "byteOffset":335572136, + "target":34962 + }, + { + "buffer":0, + "byteLength":19728, + "byteOffset":335626408, + "target":34962 + }, + { + "buffer":0, + "byteLength":19728, + "byteOffset":335646136, + "target":34962 + }, + { + "buffer":0, + "byteLength":13152, + "byteOffset":335665864, + "target":34962 + }, + { + "buffer":0, + "byteLength":13152, + "byteOffset":335679016, + "target":34962 + }, + { + "buffer":0, + "byteLength":26304, + "byteOffset":335692168, + "target":34962 + }, + { + "buffer":0, + "byteLength":17592, + "byteOffset":335718472, + "target":34962 + }, + { + "buffer":0, + "byteLength":17592, + "byteOffset":335736064, + "target":34962 + }, + { + "buffer":0, + "byteLength":11728, + "byteOffset":335753656, + "target":34962 + }, + { + "buffer":0, + "byteLength":11728, + "byteOffset":335765384, + "target":34962 + }, + { + "buffer":0, + "byteLength":23456, + "byteOffset":335777112, + "target":34962 + }, + { + "buffer":0, + "byteLength":7680, + "byteOffset":335800568, + "target":34962 + }, + { + "buffer":0, + "byteLength":7680, + "byteOffset":335808248, + "target":34962 + }, + { + "buffer":0, + "byteLength":5120, + "byteOffset":335815928, + "target":34962 + }, + { + "buffer":0, + "byteLength":5120, + "byteOffset":335821048, + "target":34962 + }, + { + "buffer":0, + "byteLength":10240, + "byteOffset":335826168, + "target":34962 + }, + { + "buffer":0, + "byteLength":48000, + "byteOffset":335836408, + "target":34962 + }, + { + "buffer":0, + "byteLength":48000, + "byteOffset":335884408, + "target":34962 + }, + { + "buffer":0, + "byteLength":32000, + "byteOffset":335932408, + "target":34962 + }, + { + "buffer":0, + "byteLength":32000, + "byteOffset":335964408, + "target":34962 + }, + { + "buffer":0, + "byteLength":64000, + "byteOffset":335996408, + "target":34962 + }, + { + "buffer":0, + "byteLength":5136, + "byteOffset":336060408, + "target":34962 + }, + { + "buffer":0, + "byteLength":5136, + "byteOffset":336065544, + "target":34962 + }, + { + "buffer":0, + "byteLength":3424, + "byteOffset":336070680, + "target":34962 + }, + { + "buffer":0, + "byteLength":3424, + "byteOffset":336074104, + "target":34962 + }, + { + "buffer":0, + "byteLength":6848, + "byteOffset":336077528, + "target":34962 + }, + { + "buffer":0, + "byteLength":19440, + "byteOffset":336084376, + "target":34962 + }, + { + "buffer":0, + "byteLength":19440, + "byteOffset":336103816, + "target":34962 + }, + { + "buffer":0, + "byteLength":12960, + "byteOffset":336123256, + "target":34962 + }, + { + "buffer":0, + "byteLength":12960, + "byteOffset":336136216, + "target":34962 + }, + { + "buffer":0, + "byteLength":25920, + "byteOffset":336149176, + "target":34962 + }, + { + "buffer":0, + "byteLength":8724, + "byteOffset":336175096, + "target":34962 + }, + { + "buffer":0, + "byteLength":8724, + "byteOffset":336183820, + "target":34962 + }, + { + "buffer":0, + "byteLength":5816, + "byteOffset":336192544, + "target":34962 + }, + { + "buffer":0, + "byteLength":5816, + "byteOffset":336198360, + "target":34962 + }, + { + "buffer":0, + "byteLength":11632, + "byteOffset":336204176, + "target":34962 + }, + { + "buffer":0, + "byteLength":45888, + "byteOffset":336215808, + "target":34962 + }, + { + "buffer":0, + "byteLength":45888, + "byteOffset":336261696, + "target":34962 + }, + { + "buffer":0, + "byteLength":30592, + "byteOffset":336307584, + "target":34962 + }, + { + "buffer":0, + "byteLength":30592, + "byteOffset":336338176, + "target":34962 + }, + { + "buffer":0, + "byteLength":61184, + "byteOffset":336368768, + "target":34962 + }, + { + "buffer":0, + "byteLength":14304, + "byteOffset":336429952, + "target":34962 + }, + { + "buffer":0, + "byteLength":14304, + "byteOffset":336444256, + "target":34962 + }, + { + "buffer":0, + "byteLength":9536, + "byteOffset":336458560, + "target":34962 + }, + { + "buffer":0, + "byteLength":9536, + "byteOffset":336468096, + "target":34962 + }, + { + "buffer":0, + "byteLength":19072, + "byteOffset":336477632, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":336496704, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":336496752, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":336496800, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":336496832, + "target":34962 + }, + { + "buffer":0, + "byteLength":64, + "byteOffset":336496864, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":336496928, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":336497792, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":336498656, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":336499232, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":336499808, + "target":34962 + }, + { + "buffer":0, + "byteLength":3432, + "byteOffset":336500960, + "target":34962 + }, + { + "buffer":0, + "byteLength":3432, + "byteOffset":336504392, + "target":34962 + }, + { + "buffer":0, + "byteLength":2288, + "byteOffset":336507824, + "target":34962 + }, + { + "buffer":0, + "byteLength":2288, + "byteOffset":336510112, + "target":34962 + }, + { + "buffer":0, + "byteLength":4576, + "byteOffset":336512400, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":336516976, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":336518032, + "target":34962 + }, + { + "buffer":0, + "byteLength":704, + "byteOffset":336519088, + "target":34962 + }, + { + "buffer":0, + "byteLength":704, + "byteOffset":336519792, + "target":34962 + }, + { + "buffer":0, + "byteLength":1408, + "byteOffset":336520496, + "target":34962 + }, + { + "buffer":0, + "byteLength":15960, + "byteOffset":336521904, + "target":34962 + }, + { + "buffer":0, + "byteLength":15960, + "byteOffset":336537864, + "target":34962 + }, + { + "buffer":0, + "byteLength":10640, + "byteOffset":336553824, + "target":34962 + }, + { + "buffer":0, + "byteLength":10640, + "byteOffset":336564464, + "target":34962 + }, + { + "buffer":0, + "byteLength":21280, + "byteOffset":336575104, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":336596384, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":336597824, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":336599264, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":336600224, + "target":34962 + }, + { + "buffer":0, + "byteLength":1920, + "byteOffset":336601184, + "target":34962 + }, + { + "buffer":0, + "byteLength":8724, + "byteOffset":336603104, + "target":34962 + }, + { + "buffer":0, + "byteLength":8724, + "byteOffset":336611828, + "target":34962 + }, + { + "buffer":0, + "byteLength":5816, + "byteOffset":336620552, + "target":34962 + }, + { + "buffer":0, + "byteLength":5816, + "byteOffset":336626368, + "target":34962 + }, + { + "buffer":0, + "byteLength":11632, + "byteOffset":336632184, + "target":34962 + }, + { + "buffer":0, + "byteLength":6312, + "byteOffset":336643816, + "target":34962 + }, + { + "buffer":0, + "byteLength":6312, + "byteOffset":336650128, + "target":34962 + }, + { + "buffer":0, + "byteLength":4208, + "byteOffset":336656440, + "target":34962 + }, + { + "buffer":0, + "byteLength":4208, + "byteOffset":336660648, + "target":34962 + }, + { + "buffer":0, + "byteLength":8416, + "byteOffset":336664856, + "target":34962 + }, + { + "buffer":0, + "byteLength":9120, + "byteOffset":336673272, + "target":34962 + }, + { + "buffer":0, + "byteLength":9120, + "byteOffset":336682392, + "target":34962 + }, + { + "buffer":0, + "byteLength":6080, + "byteOffset":336691512, + "target":34962 + }, + { + "buffer":0, + "byteLength":6080, + "byteOffset":336697592, + "target":34962 + }, + { + "buffer":0, + "byteLength":12160, + "byteOffset":336703672, + "target":34962 + }, + { + "buffer":0, + "byteLength":23448, + "byteOffset":336715832, + "target":34962 + }, + { + "buffer":0, + "byteLength":23448, + "byteOffset":336739280, + "target":34962 + }, + { + "buffer":0, + "byteLength":15632, + "byteOffset":336762728, + "target":34962 + }, + { + "buffer":0, + "byteLength":15632, + "byteOffset":336778360, + "target":34962 + }, + { + "buffer":0, + "byteLength":31264, + "byteOffset":336793992, + "target":34962 + }, + { + "buffer":0, + "byteLength":62256, + "byteOffset":336825256, + "target":34962 + }, + { + "buffer":0, + "byteLength":62256, + "byteOffset":336887512, + "target":34962 + }, + { + "buffer":0, + "byteLength":41504, + "byteOffset":336949768, + "target":34962 + }, + { + "buffer":0, + "byteLength":41504, + "byteOffset":336991272, + "target":34962 + }, + { + "buffer":0, + "byteLength":83008, + "byteOffset":337032776, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":337115784, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":337118232, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":337120680, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":337122312, + "target":34962 + }, + { + "buffer":0, + "byteLength":3264, + "byteOffset":337123944, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":337127208, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":337134144, + "target":34962 + }, + { + "buffer":0, + "byteLength":4624, + "byteOffset":337141080, + "target":34962 + }, + { + "buffer":0, + "byteLength":4624, + "byteOffset":337145704, + "target":34962 + }, + { + "buffer":0, + "byteLength":9248, + "byteOffset":337150328, + "target":34962 + }, + { + "buffer":0, + "byteLength":227592, + "byteOffset":337159576, + "target":34962 + }, + { + "buffer":0, + "byteLength":227592, + "byteOffset":337387168, + "target":34962 + }, + { + "buffer":0, + "byteLength":151728, + "byteOffset":337614760, + "target":34962 + }, + { + "buffer":0, + "byteLength":151728, + "byteOffset":337766488, + "target":34962 + }, + { + "buffer":0, + "byteLength":303456, + "byteOffset":337918216, + "target":34962 + }, + { + "buffer":0, + "byteLength":73320, + "byteOffset":338221672, + "target":34962 + }, + { + "buffer":0, + "byteLength":73320, + "byteOffset":338294992, + "target":34962 + }, + { + "buffer":0, + "byteLength":48880, + "byteOffset":338368312, + "target":34962 + }, + { + "buffer":0, + "byteLength":48880, + "byteOffset":338417192, + "target":34962 + }, + { + "buffer":0, + "byteLength":97760, + "byteOffset":338466072, + "target":34962 + }, + { + "buffer":0, + "byteLength":2568, + "byteOffset":338563832, + "target":34962 + }, + { + "buffer":0, + "byteLength":2568, + "byteOffset":338566400, + "target":34962 + }, + { + "buffer":0, + "byteLength":1712, + "byteOffset":338568968, + "target":34962 + }, + { + "buffer":0, + "byteLength":1712, + "byteOffset":338570680, + "target":34962 + }, + { + "buffer":0, + "byteLength":3424, + "byteOffset":338572392, + "target":34962 + }, + { + "buffer":0, + "byteLength":7224, + "byteOffset":338575816, + "target":34962 + }, + { + "buffer":0, + "byteLength":7224, + "byteOffset":338583040, + "target":34962 + }, + { + "buffer":0, + "byteLength":4816, + "byteOffset":338590264, + "target":34962 + }, + { + "buffer":0, + "byteLength":4816, + "byteOffset":338595080, + "target":34962 + }, + { + "buffer":0, + "byteLength":9632, + "byteOffset":338599896, + "target":34962 + }, + { + "buffer":0, + "byteLength":45432, + "byteOffset":338609528, + "target":34962 + }, + { + "buffer":0, + "byteLength":45432, + "byteOffset":338654960, + "target":34962 + }, + { + "buffer":0, + "byteLength":30288, + "byteOffset":338700392, + "target":34962 + }, + { + "buffer":0, + "byteLength":30288, + "byteOffset":338730680, + "target":34962 + }, + { + "buffer":0, + "byteLength":60576, + "byteOffset":338760968, + "target":34962 + }, + { + "buffer":0, + "byteLength":11352, + "byteOffset":338821544, + "target":34962 + }, + { + "buffer":0, + "byteLength":11352, + "byteOffset":338832896, + "target":34962 + }, + { + "buffer":0, + "byteLength":7568, + "byteOffset":338844248, + "target":34962 + }, + { + "buffer":0, + "byteLength":7568, + "byteOffset":338851816, + "target":34962 + }, + { + "buffer":0, + "byteLength":15136, + "byteOffset":338859384, + "target":34962 + }, + { + "buffer":0, + "byteLength":26088, + "byteOffset":338874520, + "target":34962 + }, + { + "buffer":0, + "byteLength":26088, + "byteOffset":338900608, + "target":34962 + }, + { + "buffer":0, + "byteLength":17392, + "byteOffset":338926696, + "target":34962 + }, + { + "buffer":0, + "byteLength":17392, + "byteOffset":338944088, + "target":34962 + }, + { + "buffer":0, + "byteLength":34784, + "byteOffset":338961480, + "target":34962 + }, + { + "buffer":0, + "byteLength":158712, + "byteOffset":338996264, + "target":34962 + }, + { + "buffer":0, + "byteLength":158712, + "byteOffset":339154976, + "target":34962 + }, + { + "buffer":0, + "byteLength":105808, + "byteOffset":339313688, + "target":34962 + }, + { + "buffer":0, + "byteLength":105808, + "byteOffset":339419496, + "target":34962 + }, + { + "buffer":0, + "byteLength":211616, + "byteOffset":339525304, + "target":34962 + }, + { + "buffer":0, + "byteLength":23232, + "byteOffset":339736920, + "target":34962 + }, + { + "buffer":0, + "byteLength":23232, + "byteOffset":339760152, + "target":34962 + }, + { + "buffer":0, + "byteLength":15488, + "byteOffset":339783384, + "target":34962 + }, + { + "buffer":0, + "byteLength":15488, + "byteOffset":339798872, + "target":34962 + }, + { + "buffer":0, + "byteLength":30976, + "byteOffset":339814360, + "target":34962 + }, + { + "buffer":0, + "byteLength":39588, + "byteOffset":339845336, + "target":34962 + }, + { + "buffer":0, + "byteLength":39588, + "byteOffset":339884924, + "target":34962 + }, + { + "buffer":0, + "byteLength":26392, + "byteOffset":339924512, + "target":34962 + }, + { + "buffer":0, + "byteLength":26392, + "byteOffset":339950904, + "target":34962 + }, + { + "buffer":0, + "byteLength":52784, + "byteOffset":339977296, + "target":34962 + }, + { + "buffer":0, + "byteLength":15840, + "byteOffset":340030080, + "target":34962 + }, + { + "buffer":0, + "byteLength":15840, + "byteOffset":340045920, + "target":34962 + }, + { + "buffer":0, + "byteLength":10560, + "byteOffset":340061760, + "target":34962 + }, + { + "buffer":0, + "byteLength":10560, + "byteOffset":340072320, + "target":34962 + }, + { + "buffer":0, + "byteLength":21120, + "byteOffset":340082880, + "target":34962 + }, + { + "buffer":0, + "byteLength":3552, + "byteOffset":340104000, + "target":34962 + }, + { + "buffer":0, + "byteLength":3552, + "byteOffset":340107552, + "target":34962 + }, + { + "buffer":0, + "byteLength":2368, + "byteOffset":340111104, + "target":34962 + }, + { + "buffer":0, + "byteLength":2368, + "byteOffset":340113472, + "target":34962 + }, + { + "buffer":0, + "byteLength":4736, + "byteOffset":340115840, + "target":34962 + }, + { + "buffer":0, + "byteLength":11280, + "byteOffset":340120576, + "target":34962 + }, + { + "buffer":0, + "byteLength":11280, + "byteOffset":340131856, + "target":34962 + }, + { + "buffer":0, + "byteLength":7520, + "byteOffset":340143136, + "target":34962 + }, + { + "buffer":0, + "byteLength":7520, + "byteOffset":340150656, + "target":34962 + }, + { + "buffer":0, + "byteLength":15040, + "byteOffset":340158176, + "target":34962 + }, + { + "buffer":0, + "byteLength":7728, + "byteOffset":340173216, + "target":34962 + }, + { + "buffer":0, + "byteLength":7728, + "byteOffset":340180944, + "target":34962 + }, + { + "buffer":0, + "byteLength":5152, + "byteOffset":340188672, + "target":34962 + }, + { + "buffer":0, + "byteLength":5152, + "byteOffset":340193824, + "target":34962 + }, + { + "buffer":0, + "byteLength":10304, + "byteOffset":340198976, + "target":34962 + }, + { + "buffer":0, + "byteLength":18240, + "byteOffset":340209280, + "target":34962 + }, + { + "buffer":0, + "byteLength":18240, + "byteOffset":340227520, + "target":34962 + }, + { + "buffer":0, + "byteLength":12160, + "byteOffset":340245760, + "target":34962 + }, + { + "buffer":0, + "byteLength":12160, + "byteOffset":340257920, + "target":34962 + }, + { + "buffer":0, + "byteLength":24320, + "byteOffset":340270080, + "target":34962 + }, + { + "buffer":0, + "byteLength":31176, + "byteOffset":340294400, + "target":34962 + }, + { + "buffer":0, + "byteLength":31176, + "byteOffset":340325576, + "target":34962 + }, + { + "buffer":0, + "byteLength":20784, + "byteOffset":340356752, + "target":34962 + }, + { + "buffer":0, + "byteLength":20784, + "byteOffset":340377536, + "target":34962 + }, + { + "buffer":0, + "byteLength":41568, + "byteOffset":340398320, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":340439888, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":340440464, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":340441040, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":340441424, + "target":34962 + }, + { + "buffer":0, + "byteLength":768, + "byteOffset":340441808, + "target":34962 + }, + { + "buffer":0, + "byteLength":8184, + "byteOffset":340442576, + "target":34962 + }, + { + "buffer":0, + "byteLength":8184, + "byteOffset":340450760, + "target":34962 + }, + { + "buffer":0, + "byteLength":5456, + "byteOffset":340458944, + "target":34962 + }, + { + "buffer":0, + "byteLength":5456, + "byteOffset":340464400, + "target":34962 + }, + { + "buffer":0, + "byteLength":10912, + "byteOffset":340469856, + "target":34962 + }, + { + "buffer":0, + "byteLength":21012, + "byteOffset":340480768, + "target":34962 + }, + { + "buffer":0, + "byteLength":21012, + "byteOffset":340501780, + "target":34962 + }, + { + "buffer":0, + "byteLength":14008, + "byteOffset":340522792, + "target":34962 + }, + { + "buffer":0, + "byteLength":14008, + "byteOffset":340536800, + "target":34962 + }, + { + "buffer":0, + "byteLength":28016, + "byteOffset":340550808, + "target":34962 + }, + { + "buffer":0, + "byteLength":59712, + "byteOffset":340578824, + "target":34962 + }, + { + "buffer":0, + "byteLength":59712, + "byteOffset":340638536, + "target":34962 + }, + { + "buffer":0, + "byteLength":39808, + "byteOffset":340698248, + "target":34962 + }, + { + "buffer":0, + "byteLength":39808, + "byteOffset":340738056, + "target":34962 + }, + { + "buffer":0, + "byteLength":79616, + "byteOffset":340777864, + "target":34962 + }, + { + "buffer":0, + "byteLength":97992, + "byteOffset":340857480, + "target":34962 + }, + { + "buffer":0, + "byteLength":97992, + "byteOffset":340955472, + "target":34962 + }, + { + "buffer":0, + "byteLength":65328, + "byteOffset":341053464, + "target":34962 + }, + { + "buffer":0, + "byteLength":65328, + "byteOffset":341118792, + "target":34962 + }, + { + "buffer":0, + "byteLength":130656, + "byteOffset":341184120, + "target":34962 + }, + { + "buffer":0, + "byteLength":1452, + "byteOffset":341314776, + "target":34962 + }, + { + "buffer":0, + "byteLength":1452, + "byteOffset":341316228, + "target":34962 + }, + { + "buffer":0, + "byteLength":968, + "byteOffset":341317680, + "target":34962 + }, + { + "buffer":0, + "byteLength":968, + "byteOffset":341318648, + "target":34962 + }, + { + "buffer":0, + "byteLength":1936, + "byteOffset":341319616, + "target":34962 + }, + { + "buffer":0, + "byteLength":32304, + "byteOffset":341321552, + "target":34962 + }, + { + "buffer":0, + "byteLength":32304, + "byteOffset":341353856, + "target":34962 + }, + { + "buffer":0, + "byteLength":21536, + "byteOffset":341386160, + "target":34962 + }, + { + "buffer":0, + "byteLength":21536, + "byteOffset":341407696, + "target":34962 + }, + { + "buffer":0, + "byteLength":43072, + "byteOffset":341429232, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":341472304, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":341473168, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":341474032, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":341474608, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":341475184, + "target":34962 + }, + { + "buffer":0, + "byteLength":5664, + "byteOffset":341476336, + "target":34962 + }, + { + "buffer":0, + "byteLength":5664, + "byteOffset":341482000, + "target":34962 + }, + { + "buffer":0, + "byteLength":3776, + "byteOffset":341487664, + "target":34962 + }, + { + "buffer":0, + "byteLength":3776, + "byteOffset":341491440, + "target":34962 + }, + { + "buffer":0, + "byteLength":7552, + "byteOffset":341495216, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":341502768, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":341509800, + "target":34962 + }, + { + "buffer":0, + "byteLength":4688, + "byteOffset":341516832, + "target":34962 + }, + { + "buffer":0, + "byteLength":4688, + "byteOffset":341521520, + "target":34962 + }, + { + "buffer":0, + "byteLength":9376, + "byteOffset":341526208, + "target":34962 + }, + { + "buffer":0, + "byteLength":3504, + "byteOffset":341535584, + "target":34962 + }, + { + "buffer":0, + "byteLength":3504, + "byteOffset":341539088, + "target":34962 + }, + { + "buffer":0, + "byteLength":2336, + "byteOffset":341542592, + "target":34962 + }, + { + "buffer":0, + "byteLength":2336, + "byteOffset":341544928, + "target":34962 + }, + { + "buffer":0, + "byteLength":4672, + "byteOffset":341547264, + "target":34962 + }, + { + "buffer":0, + "byteLength":4416, + "byteOffset":341551936, + "target":34962 + }, + { + "buffer":0, + "byteLength":4416, + "byteOffset":341556352, + "target":34962 + }, + { + "buffer":0, + "byteLength":2944, + "byteOffset":341560768, + "target":34962 + }, + { + "buffer":0, + "byteLength":2944, + "byteOffset":341563712, + "target":34962 + }, + { + "buffer":0, + "byteLength":5888, + "byteOffset":341566656, + "target":34962 + }, + { + "buffer":0, + "byteLength":2760, + "byteOffset":341572544, + "target":34962 + }, + { + "buffer":0, + "byteLength":2760, + "byteOffset":341575304, + "target":34962 + }, + { + "buffer":0, + "byteLength":1840, + "byteOffset":341578064, + "target":34962 + }, + { + "buffer":0, + "byteLength":1840, + "byteOffset":341579904, + "target":34962 + }, + { + "buffer":0, + "byteLength":3680, + "byteOffset":341581744, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":341585424, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":341585472, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":341585520, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":341585552, + "target":34962 + }, + { + "buffer":0, + "byteLength":64, + "byteOffset":341585584, + "target":34962 + }, + { + "buffer":0, + "byteLength":24408, + "byteOffset":341585648, + "target":34962 + }, + { + "buffer":0, + "byteLength":24408, + "byteOffset":341610056, + "target":34962 + }, + { + "buffer":0, + "byteLength":16272, + "byteOffset":341634464, + "target":34962 + }, + { + "buffer":0, + "byteLength":16272, + "byteOffset":341650736, + "target":34962 + }, + { + "buffer":0, + "byteLength":32544, + "byteOffset":341667008, + "target":34962 + }, + { + "buffer":0, + "byteLength":2304, + "byteOffset":341699552, + "target":34962 + }, + { + "buffer":0, + "byteLength":2304, + "byteOffset":341701856, + "target":34962 + }, + { + "buffer":0, + "byteLength":1536, + "byteOffset":341704160, + "target":34962 + }, + { + "buffer":0, + "byteLength":1536, + "byteOffset":341705696, + "target":34962 + }, + { + "buffer":0, + "byteLength":3072, + "byteOffset":341707232, + "target":34962 + }, + { + "buffer":0, + "byteLength":2880, + "byteOffset":341710304, + "target":34962 + }, + { + "buffer":0, + "byteLength":2880, + "byteOffset":341713184, + "target":34962 + }, + { + "buffer":0, + "byteLength":1920, + "byteOffset":341716064, + "target":34962 + }, + { + "buffer":0, + "byteLength":1920, + "byteOffset":341717984, + "target":34962 + }, + { + "buffer":0, + "byteLength":3840, + "byteOffset":341719904, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":341723744, + "target":34962 + }, + { + "buffer":0, + "byteLength":1920, + "byteOffset":341724704, + "target":34962 + }, + { + "buffer":0, + "byteLength":1920, + "byteOffset":341726624, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":341728544, + "target":34963 + }, + { + "buffer":0, + "byteLength":1776, + "byteOffset":341729264, + "target":34962 + }, + { + "buffer":0, + "byteLength":1776, + "byteOffset":341731040, + "target":34962 + }, + { + "buffer":0, + "byteLength":1184, + "byteOffset":341732816, + "target":34962 + }, + { + "buffer":0, + "byteLength":1184, + "byteOffset":341734000, + "target":34962 + }, + { + "buffer":0, + "byteLength":2368, + "byteOffset":341735184, + "target":34962 + }, + { + "buffer":0, + "byteLength":592, + "byteOffset":341737552, + "target":34962 + }, + { + "buffer":0, + "byteLength":1184, + "byteOffset":341738144, + "target":34962 + }, + { + "buffer":0, + "byteLength":1184, + "byteOffset":341739328, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":341740512, + "target":34963 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":341741376, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":341741856, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":341742336, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":341742656, + "target":34962 + }, + { + "buffer":0, + "byteLength":640, + "byteOffset":341742976, + "target":34962 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":341743616, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":341743776, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":341744096, + "target":34962 + }, + { + "buffer":0, + "byteLength":252, + "byteOffset":341744416, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":341744668, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":341744956, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":341745244, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":341745436, + "target":34962 + }, + { + "buffer":0, + "byteLength":696, + "byteOffset":341745820, + "target":34962 + }, + { + "buffer":0, + "byteLength":696, + "byteOffset":341746516, + "target":34962 + }, + { + "buffer":0, + "byteLength":464, + "byteOffset":341747212, + "target":34962 + }, + { + "buffer":0, + "byteLength":928, + "byteOffset":341747676, + "target":34962 + }, + { + "buffer":0, + "byteLength":180, + "byteOffset":341748604, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":341748784, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":341749072, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":341749360, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":341749552, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":341749936, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":341750008, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":341750296, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":341750584, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":341750776, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":341751160, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":341751448, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":341751736, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":341751928, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":341752312, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":341752600, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":341752888, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":341753080, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":341753464, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":341753752, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":341754040, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":341754232, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":341754616, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":341754904, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":341755192, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":341755384, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":341755768, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":341756056, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":341756344, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":341756536, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":341756920, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":341757208, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":341757496, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":341757688, + "target":34962 + }, + { + "buffer":0, + "byteLength":47688, + "byteOffset":341758072, + "target":34962 + }, + { + "buffer":0, + "byteLength":47688, + "byteOffset":341805760, + "target":34962 + }, + { + "buffer":0, + "byteLength":31792, + "byteOffset":341853448, + "target":34962 + }, + { + "buffer":0, + "byteLength":31792, + "byteOffset":341885240, + "target":34962 + }, + { + "buffer":0, + "byteLength":63584, + "byteOffset":341917032, + "target":34962 + }, + { + "buffer":0, + "byteLength":21024, + "byteOffset":341980616, + "target":34963 + }, + { + "buffer":0, + "byteLength":28416, + "byteOffset":342001640, + "target":34962 + }, + { + "buffer":0, + "byteLength":28416, + "byteOffset":342030056, + "target":34962 + }, + { + "buffer":0, + "byteLength":18944, + "byteOffset":342058472, + "target":34962 + }, + { + "buffer":0, + "byteLength":18944, + "byteOffset":342077416, + "target":34962 + }, + { + "buffer":0, + "byteLength":37888, + "byteOffset":342096360, + "target":34962 + }, + { + "buffer":0, + "byteLength":10488, + "byteOffset":342134248, + "target":34963 + }, + { + "buffer":0, + "byteLength":15288, + "byteOffset":342144736, + "target":34962 + }, + { + "buffer":0, + "byteLength":15288, + "byteOffset":342160024, + "target":34962 + }, + { + "buffer":0, + "byteLength":10192, + "byteOffset":342175312, + "target":34962 + }, + { + "buffer":0, + "byteLength":10192, + "byteOffset":342185504, + "target":34962 + }, + { + "buffer":0, + "byteLength":20384, + "byteOffset":342195696, + "target":34962 + }, + { + "buffer":0, + "byteLength":7908, + "byteOffset":342216080, + "target":34963 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":342223988, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":342224564, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":342225140, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":342225524, + "target":34962 + }, + { + "buffer":0, + "byteLength":768, + "byteOffset":342225908, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":342226676, + "target":34963 + }, + { + "buffer":0, + "byteLength":23856, + "byteOffset":342226868, + "target":34962 + }, + { + "buffer":0, + "byteLength":23856, + "byteOffset":342250724, + "target":34962 + }, + { + "buffer":0, + "byteLength":15904, + "byteOffset":342274580, + "target":34962 + }, + { + "buffer":0, + "byteLength":15904, + "byteOffset":342290484, + "target":34962 + }, + { + "buffer":0, + "byteLength":31808, + "byteOffset":342306388, + "target":34962 + }, + { + "buffer":0, + "byteLength":9324, + "byteOffset":342338196, + "target":34963 + }, + { + "buffer":0, + "byteLength":1938780, + "byteOffset":342347520, + "target":34962 + }, + { + "buffer":0, + "byteLength":1938780, + "byteOffset":344286300, + "target":34962 + }, + { + "buffer":0, + "byteLength":1292520, + "byteOffset":346225080, + "target":34962 + }, + { + "buffer":0, + "byteLength":1292520, + "byteOffset":347517600, + "target":34962 + }, + { + "buffer":0, + "byteLength":2585040, + "byteOffset":348810120, + "target":34962 + }, + { + "buffer":0, + "byteLength":1233408, + "byteOffset":351395160, + "target":34963 + }, + { + "buffer":0, + "byteLength":161280, + "byteOffset":352628568, + "target":34962 + }, + { + "buffer":0, + "byteLength":161280, + "byteOffset":352789848, + "target":34962 + }, + { + "buffer":0, + "byteLength":107520, + "byteOffset":352951128, + "target":34962 + }, + { + "buffer":0, + "byteLength":107520, + "byteOffset":353058648, + "target":34962 + }, + { + "buffer":0, + "byteLength":215040, + "byteOffset":353166168, + "target":34962 + }, + { + "buffer":0, + "byteLength":40968, + "byteOffset":353381208, + "target":34963 + }, + { + "buffer":0, + "byteLength":412008, + "byteOffset":353422176, + "target":34962 + }, + { + "buffer":0, + "byteLength":412008, + "byteOffset":353834184, + "target":34962 + }, + { + "buffer":0, + "byteLength":274672, + "byteOffset":354246192, + "target":34962 + }, + { + "buffer":0, + "byteLength":274672, + "byteOffset":354520864, + "target":34962 + }, + { + "buffer":0, + "byteLength":549344, + "byteOffset":354795536, + "target":34962 + }, + { + "buffer":0, + "byteLength":103680, + "byteOffset":355344880, + "target":34963 + }, + { + "buffer":0, + "byteLength":109500, + "byteOffset":355448560, + "target":34962 + }, + { + "buffer":0, + "byteLength":109500, + "byteOffset":355558060, + "target":34962 + }, + { + "buffer":0, + "byteLength":73000, + "byteOffset":355667560, + "target":34962 + }, + { + "buffer":0, + "byteLength":73000, + "byteOffset":355740560, + "target":34962 + }, + { + "buffer":0, + "byteLength":146000, + "byteOffset":355813560, + "target":34962 + }, + { + "buffer":0, + "byteLength":38652, + "byteOffset":355959560, + "target":34963 + }, + { + "buffer":0, + "byteLength":3456, + "byteOffset":355998212, + "target":34962 + }, + { + "buffer":0, + "byteLength":3456, + "byteOffset":356001668, + "target":34962 + }, + { + "buffer":0, + "byteLength":2304, + "byteOffset":356005124, + "target":34962 + }, + { + "buffer":0, + "byteLength":2304, + "byteOffset":356007428, + "target":34962 + }, + { + "buffer":0, + "byteLength":4608, + "byteOffset":356009732, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":356014340, + "target":34963 + }, + { + "buffer":0, + "byteLength":17880, + "byteOffset":356015204, + "target":34962 + }, + { + "buffer":0, + "byteLength":17880, + "byteOffset":356033084, + "target":34962 + }, + { + "buffer":0, + "byteLength":11920, + "byteOffset":356050964, + "target":34962 + }, + { + "buffer":0, + "byteLength":11920, + "byteOffset":356062884, + "target":34962 + }, + { + "buffer":0, + "byteLength":23840, + "byteOffset":356074804, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":356098644, + "target":34963 + }, + { + "buffer":0, + "byteLength":264, + "byteOffset":356105748, + "target":34962 + }, + { + "buffer":0, + "byteLength":264, + "byteOffset":356106012, + "target":34962 + }, + { + "buffer":0, + "byteLength":176, + "byteOffset":356106276, + "target":34962 + }, + { + "buffer":0, + "byteLength":176, + "byteOffset":356106452, + "target":34962 + }, + { + "buffer":0, + "byteLength":352, + "byteOffset":356106628, + "target":34962 + }, + { + "buffer":0, + "byteLength":84, + "byteOffset":356106980, + "target":34963 + }, + { + "buffer":0, + "byteLength":166392, + "byteOffset":356107064, + "target":34962 + }, + { + "buffer":0, + "byteLength":166392, + "byteOffset":356273456, + "target":34962 + }, + { + "buffer":0, + "byteLength":110928, + "byteOffset":356439848, + "target":34962 + }, + { + "buffer":0, + "byteLength":110928, + "byteOffset":356550776, + "target":34962 + }, + { + "buffer":0, + "byteLength":221856, + "byteOffset":356661704, + "target":34962 + }, + { + "buffer":0, + "byteLength":57192, + "byteOffset":356883560, + "target":34963 + }, + { + "buffer":0, + "byteLength":38868, + "byteOffset":356940752, + "target":34962 + }, + { + "buffer":0, + "byteLength":38868, + "byteOffset":356979620, + "target":34962 + }, + { + "buffer":0, + "byteLength":25912, + "byteOffset":357018488, + "target":34962 + }, + { + "buffer":0, + "byteLength":25912, + "byteOffset":357044400, + "target":34962 + }, + { + "buffer":0, + "byteLength":51824, + "byteOffset":357070312, + "target":34962 + }, + { + "buffer":0, + "byteLength":14688, + "byteOffset":357122136, + "target":34963 + }, + { + "buffer":0, + "byteLength":1077228, + "byteOffset":357136824, + "target":34962 + }, + { + "buffer":0, + "byteLength":1077228, + "byteOffset":358214052, + "target":34962 + }, + { + "buffer":0, + "byteLength":718152, + "byteOffset":359291280, + "target":34962 + }, + { + "buffer":0, + "byteLength":718152, + "byteOffset":360009432, + "target":34962 + }, + { + "buffer":0, + "byteLength":1436304, + "byteOffset":360727584, + "target":34962 + }, + { + "buffer":0, + "byteLength":843288, + "byteOffset":362163888, + "target":34963 + }, + { + "buffer":0, + "byteLength":155280, + "byteOffset":363007176, + "target":34962 + }, + { + "buffer":0, + "byteLength":155280, + "byteOffset":363162456, + "target":34962 + }, + { + "buffer":0, + "byteLength":103520, + "byteOffset":363317736, + "target":34962 + }, + { + "buffer":0, + "byteLength":103520, + "byteOffset":363421256, + "target":34962 + }, + { + "buffer":0, + "byteLength":207040, + "byteOffset":363524776, + "target":34962 + }, + { + "buffer":0, + "byteLength":60852, + "byteOffset":363731816, + "target":34963 + }, + { + "buffer":0, + "byteLength":34452, + "byteOffset":363792668, + "target":34962 + }, + { + "buffer":0, + "byteLength":34452, + "byteOffset":363827120, + "target":34962 + }, + { + "buffer":0, + "byteLength":22968, + "byteOffset":363861572, + "target":34962 + }, + { + "buffer":0, + "byteLength":22968, + "byteOffset":363884540, + "target":34962 + }, + { + "buffer":0, + "byteLength":45936, + "byteOffset":363907508, + "target":34962 + }, + { + "buffer":0, + "byteLength":17472, + "byteOffset":363953444, + "target":34963 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":363970916, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":363970988, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":363971060, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":363971108, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":363971156, + "target":34962 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":363971252, + "target":34963 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":363971276, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":363971420, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":363971564, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":363971660, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":363971756, + "target":34962 + }, + { + "buffer":0, + "byteLength":60, + "byteOffset":363971948, + "target":34963 + }, + { + "buffer":0, + "byteLength":246600, + "byteOffset":363972008, + "target":34962 + }, + { + "buffer":0, + "byteLength":246600, + "byteOffset":364218608, + "target":34962 + }, + { + "buffer":0, + "byteLength":164400, + "byteOffset":364465208, + "target":34962 + }, + { + "buffer":0, + "byteLength":164400, + "byteOffset":364629608, + "target":34962 + }, + { + "buffer":0, + "byteLength":328800, + "byteOffset":364794008, + "target":34962 + }, + { + "buffer":0, + "byteLength":114372, + "byteOffset":365122808, + "target":34963 + }, + { + "buffer":0, + "byteLength":432, + "byteOffset":365237180, + "target":34962 + }, + { + "buffer":0, + "byteLength":432, + "byteOffset":365237612, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":365238044, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":365238332, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":365238620, + "target":34962 + }, + { + "buffer":0, + "byteLength":132, + "byteOffset":365239196, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":365239328, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":365239616, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":365239904, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":365240096, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":365240480, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":365240576, + "target":34962 + }, + { + "buffer":0, + "byteLength":64, + "byteOffset":365240672, + "target":34962 + }, + { + "buffer":0, + "byteLength":64, + "byteOffset":365240736, + "target":34962 + }, + { + "buffer":0, + "byteLength":128, + "byteOffset":365240800, + "target":34962 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":365240928, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":365240952, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":365241240, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":365241528, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":365241720, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":365242104, + "target":34963 + } + ], + "samplers":[ + { + "magFilter":9729, + "minFilter":9987 + } + ], + "buffers":[ + { + "byteLength":365242176, + "uri":"city.bin" + } + ] +} diff --git a/app/src/main/resources/adc/city/missing-texture128x512.jpg b/app/src/main/resources/adc/city/missing-texture128x512.jpg new file mode 100644 index 0000000..c67c402 Binary files /dev/null and b/app/src/main/resources/adc/city/missing-texture128x512.jpg differ diff --git a/app/src/main/resources/adc/city/missing-texture256x512.jpg b/app/src/main/resources/adc/city/missing-texture256x512.jpg new file mode 100644 index 0000000..0341f74 Binary files /dev/null and b/app/src/main/resources/adc/city/missing-texture256x512.jpg differ diff --git a/app/src/main/resources/adc/city/missing-texture512x.jpg b/app/src/main/resources/adc/city/missing-texture512x.jpg new file mode 100644 index 0000000..d9db459 Binary files /dev/null and b/app/src/main/resources/adc/city/missing-texture512x.jpg differ diff --git a/app/src/main/resources/adc/city/missing-texture512x256.jpg b/app/src/main/resources/adc/city/missing-texture512x256.jpg new file mode 100644 index 0000000..b384855 Binary files /dev/null and b/app/src/main/resources/adc/city/missing-texture512x256.jpg differ diff --git a/app/src/main/resources/adc/e.q._city.ogg b/app/src/main/resources/adc/e.q._city.ogg new file mode 100644 index 0000000..552d821 Binary files /dev/null and b/app/src/main/resources/adc/e.q._city.ogg differ diff --git a/app/src/main/resources/adc/footstep.ogg b/app/src/main/resources/adc/footstep.ogg new file mode 100644 index 0000000..317cf02 Binary files /dev/null and b/app/src/main/resources/adc/footstep.ogg differ diff --git a/app/src/main/resources/adc/jump.ogg b/app/src/main/resources/adc/jump.ogg new file mode 100644 index 0000000..8f0f7ef Binary files /dev/null and b/app/src/main/resources/adc/jump.ogg differ diff --git a/app/src/main/resources/adc/night-sky.png b/app/src/main/resources/adc/night-sky.png new file mode 100644 index 0000000..8243f00 Binary files /dev/null and b/app/src/main/resources/adc/night-sky.png differ diff --git a/app/src/test/java/org/example/TestNGEAppMain.java b/app/src/test/java/org/example/TestNGEAppMain.java deleted file mode 100644 index 0aa3b17..0000000 --- a/app/src/test/java/org/example/TestNGEAppMain.java +++ /dev/null @@ -1,13 +0,0 @@ -/* - * This source file was generated by the Gradle 'init' task - */ -package org.example; - -import org.junit.Test; -import static org.junit.Assert.*; - -public class TestNGEAppMain { - @Test public void okTest() { - assertTrue("This test should always pass", true); - } -} diff --git a/app/trace/reachability-metadata.json b/app/trace/reachability-metadata.json index 76bef42..2098de5 100644 --- a/app/trace/reachability-metadata.json +++ b/app/trace/reachability-metadata.json @@ -57,6 +57,9 @@ { "type": "[Lcom.simsilica.lemur.focus.FocusChangeListener;" }, + { + "type": "[Lcom.simsilica.lemur.input.StateFunctionListener;" + }, { "type": "[Ljava.awt.event.MouseMotionListener;" }, @@ -69,6 +72,24 @@ } ] }, + { + "type": "com.bulletphysics.collision.dispatch.CompoundCollisionAlgorithm", + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ] + }, + { + "type": "com.bulletphysics.collision.dispatch.ConvexConvexAlgorithm", + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ] + }, { "type": "com.bulletphysics.collision.dispatch.UnionFind$Element", "methods": [ @@ -78,6 +99,87 @@ } ] }, + { + "type": "com.bulletphysics.collision.narrowphase.DiscreteCollisionDetectorInterface$ClosestPointInput", + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ] + }, + { + "type": "com.bulletphysics.collision.narrowphase.GjkEpaSolver$Face", + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ] + }, + { + "type": "com.bulletphysics.collision.narrowphase.GjkEpaSolver$He", + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ] + }, + { + "type": "com.bulletphysics.collision.narrowphase.GjkEpaSolver$Mkv", + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ] + }, + { + "type": "com.bulletphysics.collision.narrowphase.ManifoldPoint", + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ] + }, + { + "type": "com.bulletphysics.collision.narrowphase.PersistentManifold", + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ] + }, + { + "type": "com.bulletphysics.collision.narrowphase.VoronoiSimplexSolver$SubSimplexClosestResult", + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ] + }, + { + "type": "com.bulletphysics.dynamics.constraintsolver.SolverBody", + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ] + }, + { + "type": "com.bulletphysics.dynamics.constraintsolver.SolverConstraint", + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ] + }, { "type": "com.jme3.asset.CloneableAssetProcessor", "methods": [ @@ -168,6 +270,15 @@ { "type": "com.jme3.cursors.plugins.CursorLoader" }, + { + "type": "com.jme3.export.SavableWrapSerializable", + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ] + }, { "type": "com.jme3.export.binary.BinaryLoader" }, @@ -180,6 +291,24 @@ } ] }, + { + "type": "com.jme3.light.PointLight", + "methods": [ + { + "name": "clone", + "parameterTypes": [] + } + ] + }, + { + "type": "com.jme3.light.SpotLight", + "methods": [ + { + "name": "clone", + "parameterTypes": [] + } + ] + }, { "type": "com.jme3.material.Material", "methods": [ @@ -350,6 +479,15 @@ } ] }, + { + "type": "com.jme3.scene.plugins.gltf.LightsPunctualExtensionLoader", + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ] + }, { "type": "com.jme3.scene.plugins.gltf.UserDataLoader", "methods": [ @@ -1086,7 +1224,8 @@ }, { "type": "java.nio.DirectFloatBufferU", - "allDeclaredFields": true + "allDeclaredFields": true, + "unsafeAllocated": true }, { "type": "java.nio.DirectIntBufferU", @@ -3007,6 +3146,9 @@ }, { "type": "org.ngengine.nostr4j.signer.NostrNIP46Signer" + }, + { + "type": "org.ngengine.store.DataStore$SerializableEntry" } ], "jni": [ diff --git a/app/trace/resource-config.json b/app/trace/resource-config.json index c7d2e81..d2c391c 100644 --- a/app/trace/resource-config.json +++ b/app/trace/resource-config.json @@ -1 +1 @@ -{"resources":{"includes":[]},"bundles":[{"name":"com.jme3.app/SettingsDialog","locales":["und"]},{"name":"com.sun.org.apache.xml.internal.serializer.XMLEntities","locales":["und"]},{"name":"com.sun.swing.internal.plaf.basic.resources.basic","classNames":["com.sun.swing.internal.plaf.basic.resources.basic"]},{"name":"com.sun.swing.internal.plaf.metal.resources.metal","classNames":["com.sun.swing.internal.plaf.metal.resources.metal"]},{"name":"sun.awt.resources.awt","locales":["en-US"],"classNames":["sun.awt.resources.awt"]}],"globs":[{"glob":"Common/IBL/IBLKernels.frag"},{"glob":"Common/IBL/IBLKernels.j3md"},{"glob":"Common/IBL/IBLKernels.vert"},{"glob":"Common/IBL/Math.glsl"},{"glob":"Common/IBLSphH/IBLSphH.frag"},{"glob":"Common/IBLSphH/IBLSphH.j3md"},{"glob":"Common/IBLSphH/IBLSphH.vert"},{"glob":"Common/MatDefs/Light/PBRLighting.frag"},{"glob":"Common/MatDefs/Light/PBRLighting.j3md"},{"glob":"Common/MatDefs/Light/PBRLighting.vert"},{"glob":"Common/MatDefs/Misc/Particle.frag"},{"glob":"Common/MatDefs/Misc/Particle.j3md"},{"glob":"Common/MatDefs/Misc/Particle.vert"},{"glob":"Common/MatDefs/Misc/Sky.frag"},{"glob":"Common/MatDefs/Misc/Sky.vert"},{"glob":"Common/MatDefs/Misc/SkyNonCube.j3md"},{"glob":"Common/MatDefs/Misc/Unshaded.frag"},{"glob":"Common/MatDefs/Misc/Unshaded.j3md"},{"glob":"Common/MatDefs/Misc/Unshaded.vert"},{"glob":"Common/MatDefs/Post/Fog.frag"},{"glob":"Common/MatDefs/Post/Fog.j3md"},{"glob":"Common/MatDefs/Post/LightScattering.frag"},{"glob":"Common/MatDefs/Post/LightScattering.j3md"},{"glob":"Common/MatDefs/Post/Post.vert"},{"glob":"Common/MatDefs/Post/ToneMap.frag"},{"glob":"Common/MatDefs/Post/ToneMap.j3md"},{"glob":"Common/MatDefs/Water/Textures/foam2.jpg"},{"glob":"Common/ShaderLib/ColorUtils.glsl"},{"glob":"Common/ShaderLib/GLSLCompat.glsllib"},{"glob":"Common/ShaderLib/Instancing.glsllib"},{"glob":"Common/ShaderLib/MaterialFog.glsllib"},{"glob":"Common/ShaderLib/Math.glsllib"},{"glob":"Common/ShaderLib/MorphAnim.glsllib"},{"glob":"Common/ShaderLib/MultiSample.glsllib"},{"glob":"Common/ShaderLib/Optics.glsllib"},{"glob":"Common/ShaderLib/PBR.glsllib"},{"glob":"Common/ShaderLib/Parallax.glsllib"},{"glob":"Common/ShaderLib/Skinning.glsllib"},{"glob":"Common/ShaderLib/module/Light.glsl"},{"glob":"Common/ShaderLib/module/PBRSurface.glsl"},{"glob":"Common/ShaderLib/module/pbrlighting/PBRLightingUtils.glsllib"},{"glob":"Interface/Fonts/Console.fnt"},{"glob":"Interface/Fonts/Console.png"},{"glob":"Interface/Fonts/Default.fnt"},{"glob":"Interface/Fonts/Default.png"},{"glob":"META-INF/linux/x64/org/lwjgl/glfw/libglfw.so.sha1"},{"glob":"META-INF/linux/x64/org/lwjgl/jemalloc/libjemalloc.so.sha1"},{"glob":"META-INF/linux/x64/org/lwjgl/liblwjgl.so.sha1"},{"glob":"META-INF/linux/x64/org/lwjgl/openal/libopenal.so.sha1"},{"glob":"META-INF/linux/x64/org/lwjgl/opengl/liblwjgl_opengl.so.sha1"},{"glob":"META-INF/macos/arm64/org/lwjgl/glfw/libglfw.dylib.sha1"},{"glob":"META-INF/macos/arm64/org/lwjgl/jemalloc/libjemalloc.dylib.sha1"},{"glob":"META-INF/macos/arm64/org/lwjgl/liblwjgl.dylib.sha1"},{"glob":"META-INF/macos/arm64/org/lwjgl/nanovg/liblwjgl_nanovg.dylib.sha1"},{"glob":"META-INF/macos/arm64/org/lwjgl/openal/libopenal.dylib.sha1"},{"glob":"META-INF/macos/arm64/org/lwjgl/opengl/liblwjgl_opengl.dylib.sha1"},{"glob":"META-INF/macos/arm64/org/lwjgl/stb/liblwjgl_stb.dylib.sha1"},{"glob":"META-INF/services/java.lang.System$LoggerFinder"},{"glob":"META-INF/services/java.net.spi.InetAddressResolverProvider"},{"glob":"META-INF/services/java.net.spi.URLStreamHandlerProvider"},{"glob":"META-INF/services/java.nio.channels.spi.SelectorProvider"},{"glob":"META-INF/services/java.time.zone.ZoneRulesProvider"},{"glob":"META-INF/services/javax.imageio.spi.ImageInputStreamSpi"},{"glob":"META-INF/services/javax.imageio.spi.ImageOutputStreamSpi"},{"glob":"META-INF/services/javax.imageio.spi.ImageReaderSpi"},{"glob":"META-INF/services/javax.imageio.spi.ImageTranscoderSpi"},{"glob":"META-INF/services/javax.imageio.spi.ImageWriterSpi"},{"glob":"META-INF/services/javax.xml.parsers.SAXParserFactory"},{"glob":"Materials/PBR.frag"},{"glob":"Materials/PBR.j3md"},{"glob":"Models/boat/boat.bin"},{"glob":"Models/boat/boat.gltf"},{"glob":"Models/boat/boat_BaseColor.jpg"},{"glob":"Models/boat/boat_Metallic-boat_Roughness.jpg"},{"glob":"Models/boat/boat_Normal.jpg"},{"glob":"Models/boat/flag_Normal.jpg"},{"glob":"Models/boat/sail_Metallic-flag_Roughness.jpg"},{"glob":"Models/boat/smallSail_BaseColor.jpg"},{"glob":"Models/boat/smallSail_Metallic-smallSail_Roughness.jpg"},{"glob":"Models/boat/smallSail_Normal.jpg"},{"glob":"Sky/citrus_orchard_puresky_4k.hdr"},{"glob":"Sounds/Beach_Ocean_Waves_Fienup_001_mono.ogg"},{"glob":"Sounds/fato_shadow_-_lunar_strings.ogg"},{"glob":"Sounds/watersplash.ogg"},{"glob":"Textures/waterNoise.png"},{"glob":"com/jme3/app/Monkey.png"},{"glob":"com/jme3/asset/Desktop.cfg"},{"glob":"com/jme3/asset/General.cfg"},{"glob":"com/jme3/system/version.properties"},{"glob":"com/simsilica/lemur/icons/Check.png"},{"glob":"com/simsilica/lemur/icons/border.png"},{"glob":"data/ocean/iboceandata.j3o"},{"glob":"defaultPlayerImages/0.png"},{"glob":"defaultPlayerImages/1.png"},{"glob":"ibocean/FlipbookTexture.glsl"},{"glob":"ibocean/Ocean.frag"},{"glob":"ibocean/Ocean.glsl"},{"glob":"ibocean/Ocean.j3md"},{"glob":"ibocean/Ocean.vert"},{"glob":"ibocean/OceanRef.glsl"},{"glob":"icons/outline/activity.svg"},{"glob":"icons/outline/chevron-left.svg"},{"glob":"icons/outline/chevron-right.svg"},{"glob":"icons/outline/clipboard.svg"},{"glob":"icons/outline/copy.svg"},{"glob":"icons/outline/dice.svg"},{"glob":"icons/outline/eye-off.svg"},{"glob":"icons/outline/eye.svg"},{"glob":"icons/outline/info-square-rounded.svg"},{"glob":"icons/outline/loader-2.svg"},{"glob":"icons/outline/search.svg"},{"glob":"icons/outline/square-check.svg"},{"glob":"icons/outline/square.svg"},{"glob":"icons/outline/x.svg"},{"glob":"libGLX.so.0"},{"glob":"libSystem.dylib"},{"glob":"libobjc.dylib"},{"glob":"linux/x64/org/lwjgl/glfw/libglfw.so"},{"glob":"linux/x64/org/lwjgl/jemalloc/libjemalloc.so"},{"glob":"linux/x64/org/lwjgl/liblwjgl.so"},{"glob":"linux/x64/org/lwjgl/openal/libopenal.so"},{"glob":"linux/x64/org/lwjgl/opengl/liblwjgl_opengl.so"},{"glob":"macos/arm64/org/lwjgl/glfw/libglfw.dylib"},{"glob":"macos/arm64/org/lwjgl/jemalloc/libjemalloc.dylib"},{"glob":"macos/arm64/org/lwjgl/liblwjgl.dylib"},{"glob":"macos/arm64/org/lwjgl/nanovg/liblwjgl_nanovg.dylib"},{"glob":"macos/arm64/org/lwjgl/openal/libopenal.dylib"},{"glob":"macos/arm64/org/lwjgl/opengl/liblwjgl_opengl.dylib"},{"glob":"macos/arm64/org/lwjgl/stb/liblwjgl_stb.dylib"},{"glob":"native/linux/64/libwebp-imageio.so"},{"glob":"org/ngengine/NGE.cfg"},{"glob":"skies/alienSkyLOWEXP.png"},{"glob":"ui/blurred-qr.png"},{"glob":"ui/frame.png"},{"module":"java.base","glob":"jdk/internal/icu/impl/data/icudt76b/nfc.nrm"},{"module":"java.base","glob":"jdk/internal/icu/impl/data/icudt76b/nfkc.nrm"},{"module":"java.base","glob":"jdk/internal/icu/impl/data/icudt76b/uprops.icu"},{"module":"java.base","glob":"sun/net/idn/uidna.spp"},{"module":"java.datatransfer","glob":"sun/datatransfer/resources/flavormap.properties"},{"module":"java.desktop","glob":"sun/awt/resources/awt_en.properties"},{"module":"java.desktop","glob":"sun/awt/resources/awt_en_US.properties"},{"module":"java.logging","glob":"sun/util/logging/resources/logging_en.properties"},{"module":"java.logging","glob":"sun/util/logging/resources/logging_en_FR.properties"},{"module":"java.logging","glob":"sun/util/logging/resources/logging_en_US.properties"},{"module":"java.xml","glob":"jdk/xml/internal/jdkcatalog/JDKCatalog.xml"}]} +{"resources":{"includes":[]},"bundles":[{"name":"com.jme3.app/SettingsDialog","locales":["und"]},{"name":"com.sun.org.apache.xml.internal.serializer.XMLEntities","locales":["und"]},{"name":"com.sun.swing.internal.plaf.basic.resources.basic","classNames":["com.sun.swing.internal.plaf.basic.resources.basic"]},{"name":"com.sun.swing.internal.plaf.metal.resources.metal","classNames":["com.sun.swing.internal.plaf.metal.resources.metal"]},{"name":"sun.awt.resources.awt","locales":["en-US"],"classNames":["sun.awt.resources.awt"]}],"globs":[{"glob":"Common/IBL/IBLKernels.frag"},{"glob":"Common/IBL/IBLKernels.j3md"},{"glob":"Common/IBL/IBLKernels.vert"},{"glob":"Common/IBL/Math.glsl"},{"glob":"Common/IBLSphH/IBLSphH.frag"},{"glob":"Common/IBLSphH/IBLSphH.j3md"},{"glob":"Common/IBLSphH/IBLSphH.vert"},{"glob":"Common/MatDefs/Blur/HGaussianBlur.frag"},{"glob":"Common/MatDefs/Blur/HGaussianBlur.j3md"},{"glob":"Common/MatDefs/Blur/VGaussianBlur.frag"},{"glob":"Common/MatDefs/Blur/VGaussianBlur.j3md"},{"glob":"Common/MatDefs/Light/PBRLighting.frag"},{"glob":"Common/MatDefs/Light/PBRLighting.j3md"},{"glob":"Common/MatDefs/Light/PBRLighting.vert"},{"glob":"Common/MatDefs/Misc/Particle.frag"},{"glob":"Common/MatDefs/Misc/Particle.j3md"},{"glob":"Common/MatDefs/Misc/Particle.vert"},{"glob":"Common/MatDefs/Misc/Sky.frag"},{"glob":"Common/MatDefs/Misc/Sky.vert"},{"glob":"Common/MatDefs/Misc/SkyNonCube.j3md"},{"glob":"Common/MatDefs/Misc/Unshaded.frag"},{"glob":"Common/MatDefs/Misc/Unshaded.j3md"},{"glob":"Common/MatDefs/Misc/Unshaded.vert"},{"glob":"Common/MatDefs/Post/BloomExtract.j3md"},{"glob":"Common/MatDefs/Post/BloomFinal.j3md"},{"glob":"Common/MatDefs/Post/Fog.frag"},{"glob":"Common/MatDefs/Post/Fog.j3md"},{"glob":"Common/MatDefs/Post/KHRToneMap.frag"},{"glob":"Common/MatDefs/Post/KHRToneMap.j3md"},{"glob":"Common/MatDefs/Post/LightScattering.frag"},{"glob":"Common/MatDefs/Post/LightScattering.j3md"},{"glob":"Common/MatDefs/Post/Post.vert"},{"glob":"Common/MatDefs/Post/ToneMap.frag"},{"glob":"Common/MatDefs/Post/ToneMap.j3md"},{"glob":"Common/MatDefs/Post/bloomExtract.frag"},{"glob":"Common/MatDefs/Post/bloomFinal.frag"},{"glob":"Common/MatDefs/SSAO/Textures/random.png"},{"glob":"Common/MatDefs/SSAO/normal.frag"},{"glob":"Common/MatDefs/SSAO/normal.vert"},{"glob":"Common/MatDefs/SSAO/ssao.frag"},{"glob":"Common/MatDefs/SSAO/ssao.j3md"},{"glob":"Common/MatDefs/SSAO/ssaoBlur.frag"},{"glob":"Common/MatDefs/SSAO/ssaoBlur.j3md"},{"glob":"Common/MatDefs/Water/Textures/foam2.jpg"},{"glob":"Common/ShaderLib/ColorUtils.glsl"},{"glob":"Common/ShaderLib/GLSLCompat.glsllib"},{"glob":"Common/ShaderLib/Hdr.glsllib"},{"glob":"Common/ShaderLib/Instancing.glsllib"},{"glob":"Common/ShaderLib/MaterialFog.glsllib"},{"glob":"Common/ShaderLib/Math.glsllib"},{"glob":"Common/ShaderLib/MorphAnim.glsllib"},{"glob":"Common/ShaderLib/MultiSample.glsllib"},{"glob":"Common/ShaderLib/Optics.glsllib"},{"glob":"Common/ShaderLib/PBR.glsllib"},{"glob":"Common/ShaderLib/Parallax.glsllib"},{"glob":"Common/ShaderLib/Skinning.glsllib"},{"glob":"Common/ShaderLib/module/Light.glsl"},{"glob":"Common/ShaderLib/module/PBRSurface.glsl"},{"glob":"Common/ShaderLib/module/pbrlighting/PBRLightingUtils.glsllib"},{"glob":"Interface/Fonts/Console.fnt"},{"glob":"Interface/Fonts/Console.png"},{"glob":"Interface/Fonts/Default.fnt"},{"glob":"Interface/Fonts/Default.png"},{"glob":"META-INF/linux/x64/org/lwjgl/glfw/libglfw.so.sha1"},{"glob":"META-INF/linux/x64/org/lwjgl/jemalloc/libjemalloc.so.sha1"},{"glob":"META-INF/linux/x64/org/lwjgl/liblwjgl.so.sha1"},{"glob":"META-INF/linux/x64/org/lwjgl/nanovg/liblwjgl_nanovg.so.sha1"},{"glob":"META-INF/linux/x64/org/lwjgl/openal/libopenal.so.sha1"},{"glob":"META-INF/linux/x64/org/lwjgl/opengl/liblwjgl_opengl.so.sha1"},{"glob":"META-INF/linux/x64/org/lwjgl/stb/liblwjgl_stb.so.sha1"},{"glob":"META-INF/macos/arm64/org/lwjgl/glfw/libglfw.dylib.sha1"},{"glob":"META-INF/macos/arm64/org/lwjgl/jemalloc/libjemalloc.dylib.sha1"},{"glob":"META-INF/macos/arm64/org/lwjgl/liblwjgl.dylib.sha1"},{"glob":"META-INF/macos/arm64/org/lwjgl/nanovg/liblwjgl_nanovg.dylib.sha1"},{"glob":"META-INF/macos/arm64/org/lwjgl/openal/libopenal.dylib.sha1"},{"glob":"META-INF/macos/arm64/org/lwjgl/opengl/liblwjgl_opengl.dylib.sha1"},{"glob":"META-INF/macos/arm64/org/lwjgl/stb/liblwjgl_stb.dylib.sha1"},{"glob":"META-INF/services/java.lang.System$LoggerFinder"},{"glob":"META-INF/services/java.net.spi.InetAddressResolverProvider"},{"glob":"META-INF/services/java.net.spi.URLStreamHandlerProvider"},{"glob":"META-INF/services/java.nio.channels.spi.SelectorProvider"},{"glob":"META-INF/services/java.time.zone.ZoneRulesProvider"},{"glob":"META-INF/services/javax.imageio.spi.ImageInputStreamSpi"},{"glob":"META-INF/services/javax.imageio.spi.ImageOutputStreamSpi"},{"glob":"META-INF/services/javax.imageio.spi.ImageReaderSpi"},{"glob":"META-INF/services/javax.imageio.spi.ImageTranscoderSpi"},{"glob":"META-INF/services/javax.imageio.spi.ImageWriterSpi"},{"glob":"META-INF/services/javax.xml.parsers.SAXParserFactory"},{"glob":"Materials/PBR.frag"},{"glob":"Materials/PBR.j3md"},{"glob":"Models/boat/boat.bin"},{"glob":"Models/boat/boat.gltf"},{"glob":"Models/boat/boat_BaseColor.jpg"},{"glob":"Models/boat/boat_Metallic-boat_Roughness.jpg"},{"glob":"Models/boat/boat_Normal.jpg"},{"glob":"Models/boat/flag_Normal.jpg"},{"glob":"Models/boat/sail_Metallic-flag_Roughness.jpg"},{"glob":"Models/boat/smallSail_BaseColor.jpg"},{"glob":"Models/boat/smallSail_Metallic-smallSail_Roughness.jpg"},{"glob":"Models/boat/smallSail_Normal.jpg"},{"glob":"Sky/citrus_orchard_puresky_4k.hdr"},{"glob":"Sounds/Beach_Ocean_Waves_Fienup_001_mono.ogg"},{"glob":"Sounds/fato_shadow_-_lunar_strings.ogg"},{"glob":"Sounds/watersplash.ogg"},{"glob":"Textures/waterNoise.png"},{"glob":"adc/city/KB3D_NEC_AirCon_basecolor.jpg"},{"glob":"adc/city/KB3D_NEC_AirCon_metallic-KB3D_NEC_AirCon_roughness.jpg"},{"glob":"adc/city/KB3D_NEC_AirCon_normal.jpg"},{"glob":"adc/city/KB3D_NEC_AsphaltHexagonRoof_basecolor.jpg"},{"glob":"adc/city/KB3D_NEC_AsphaltHexagonRoof_metallic-KB3D_NEC_AsphaltHexagonRoof_roughness.jpg"},{"glob":"adc/city/KB3D_NEC_AsphaltHexagonRoof_normal.jpg"},{"glob":"adc/city/KB3D_NEC_BannerA_basecolor.jpg"},{"glob":"adc/city/KB3D_NEC_BannerA_metallic-KB3D_NEC_BannerA_roughness.jpg"},{"glob":"adc/city/KB3D_NEC_BannerA_normal.jpg"},{"glob":"adc/city/KB3D_NEC_BlackCloth_basecolor.jpg"},{"glob":"adc/city/KB3D_NEC_BlackCloth_metallic-KB3D_NEC_BlackCloth_roughness.jpg"},{"glob":"adc/city/KB3D_NEC_BlackCloth_normal.jpg"},{"glob":"adc/city/KB3D_NEC_Brass_basecolor.jpg"},{"glob":"adc/city/KB3D_NEC_Brass_metallic-KB3D_NEC_Brass_roughness.jpg"},{"glob":"adc/city/KB3D_NEC_Brass_normal.jpg"},{"glob":"adc/city/KB3D_NEC_Cardboard_basecolor.jpg"},{"glob":"adc/city/KB3D_NEC_Cardboard_metallic-KB3D_NEC_Cardboard_roughness.jpg"},{"glob":"adc/city/KB3D_NEC_Cardboard_normal.jpg"},{"glob":"adc/city/KB3D_NEC_ConcreteA_basecolor.jpg"},{"glob":"adc/city/KB3D_NEC_ConcreteA_metallic-KB3D_NEC_ConcreteA_roughness.jpg"},{"glob":"adc/city/KB3D_NEC_ConcreteA_normal.jpg"},{"glob":"adc/city/KB3D_NEC_ConcreteB_basecolor.jpg"},{"glob":"adc/city/KB3D_NEC_ConcreteB_metallic-KB3D_NEC_ConcreteB_roughness.jpg"},{"glob":"adc/city/KB3D_NEC_ConcreteB_normal.jpg"},{"glob":"adc/city/KB3D_NEC_ConcreteTiles_basecolor.jpg"},{"glob":"adc/city/KB3D_NEC_ConcreteTiles_metallic-KB3D_NEC_ConcreteTiles_roughness.jpg"},{"glob":"adc/city/KB3D_NEC_ConcreteTiles_normal.jpg"},{"glob":"adc/city/KB3D_NEC_ConcreteWall_basecolor.jpg"},{"glob":"adc/city/KB3D_NEC_ConcreteWall_metallic-KB3D_NEC_ConcreteWall_roughness.jpg"},{"glob":"adc/city/KB3D_NEC_ConcreteWall_normal.jpg"},{"glob":"adc/city/KB3D_NEC_Concrete_basecolor.jpg"},{"glob":"adc/city/KB3D_NEC_Concrete_metallic-KB3D_NEC_Concrete_roughness.jpg"},{"glob":"adc/city/KB3D_NEC_Concrete_normal.jpg"},{"glob":"adc/city/KB3D_NEC_DarkPanels_basecolor.jpg"},{"glob":"adc/city/KB3D_NEC_DarkPanels_metallic-KB3D_NEC_DarkPanels_roughness.jpg"},{"glob":"adc/city/KB3D_NEC_DarkPanels_normal.jpg"},{"glob":"adc/city/KB3D_NEC_DecalSheet_basecolor-KB3D_NEC_DecalSheet_opacity.png"},{"glob":"adc/city/KB3D_NEC_DecalSheet_metallic-KB3D_NEC_DecalSheet_roughness.jpg"},{"glob":"adc/city/KB3D_NEC_DecalSheet_normal.jpg"},{"glob":"adc/city/KB3D_NEC_DecorConcreteB_basecolor.jpg"},{"glob":"adc/city/KB3D_NEC_DecorConcreteB_metallic-KB3D_NEC_DecorConcreteB_roughness.jpg"},{"glob":"adc/city/KB3D_NEC_DecorConcreteB_normal.jpg"},{"glob":"adc/city/KB3D_NEC_DecorConcreteCBeige_basecolor.jpg"},{"glob":"adc/city/KB3D_NEC_DecorConcreteCBeige_metallic-KB3D_NEC_DecorConcreteCBeige_roughness.jpg"},{"glob":"adc/city/KB3D_NEC_DecorConcreteCBeige_normal.jpg"},{"glob":"adc/city/KB3D_NEC_DecorConcreteCWhite_basecolor.jpg"},{"glob":"adc/city/KB3D_NEC_DecorConcreteCWhite_metallic-KB3D_NEC_DecorConcreteCWhite_roughness.jpg"},{"glob":"adc/city/KB3D_NEC_DecorConcreteCWhite_normal.jpg"},{"glob":"adc/city/KB3D_NEC_GalvanizedSteelDirt_basecolor.jpg"},{"glob":"adc/city/KB3D_NEC_GalvanizedSteelDirt_metallic-KB3D_NEC_GalvanizedSteelDirt_roughness.jpg"},{"glob":"adc/city/KB3D_NEC_GalvanizedSteelDirt_normal.jpg"},{"glob":"adc/city/KB3D_NEC_GalvanizedSteel_basecolor.jpg"},{"glob":"adc/city/KB3D_NEC_GalvanizedSteel_metallic-KB3D_NEC_GalvanizedSteel_roughness.jpg"},{"glob":"adc/city/KB3D_NEC_GalvanizedSteel_normal.jpg"},{"glob":"adc/city/KB3D_NEC_GlassBlack_basecolor.jpg"},{"glob":"adc/city/KB3D_NEC_GlassBlack_metallic-KB3D_NEC_GlassBlack_roughness.jpg"},{"glob":"adc/city/KB3D_NEC_GlassBlack_normal.jpg"},{"glob":"adc/city/KB3D_NEC_GlassBottle_basecolor.jpg"},{"glob":"adc/city/KB3D_NEC_GlassBottle_metallic-KB3D_NEC_GlassBottle_roughness.jpg"},{"glob":"adc/city/KB3D_NEC_GlassBottle_normal.jpg"},{"glob":"adc/city/KB3D_NEC_GlassLamps_basecolor.jpg"},{"glob":"adc/city/KB3D_NEC_GlassLamps_metallic-KB3D_NEC_GlassLamps_roughness.jpg"},{"glob":"adc/city/KB3D_NEC_GlassLamps_normal.jpg"},{"glob":"adc/city/KB3D_NEC_GlassTinted_basecolor.jpg"},{"glob":"adc/city/KB3D_NEC_GlassTinted_metallic-KB3D_NEC_GlassTinted_roughness.jpg"},{"glob":"adc/city/KB3D_NEC_GlassTinted_normal.jpg"},{"glob":"adc/city/KB3D_NEC_LeavesBush_basecolor.jpg"},{"glob":"adc/city/KB3D_NEC_LeavesBush_metallic-KB3D_NEC_LeavesBush_roughness.jpg"},{"glob":"adc/city/KB3D_NEC_LeavesBush_normal.jpg"},{"glob":"adc/city/KB3D_NEC_Letters_basecolor.jpg"},{"glob":"adc/city/KB3D_NEC_Letters_metallic-KB3D_NEC_Letters_roughness.jpg"},{"glob":"adc/city/KB3D_NEC_Letters_normal.jpg"},{"glob":"adc/city/KB3D_NEC_LightBlue_basecolor.jpg"},{"glob":"adc/city/KB3D_NEC_LightBlue_emissive.jpg"},{"glob":"adc/city/KB3D_NEC_LightBlue_metallic-KB3D_NEC_LightBlue_roughness.jpg"},{"glob":"adc/city/KB3D_NEC_LightBlue_normal.jpg"},{"glob":"adc/city/KB3D_NEC_LightRed_basecolor.jpg"},{"glob":"adc/city/KB3D_NEC_LightRed_emissive.jpg"},{"glob":"adc/city/KB3D_NEC_LightRed_metallic-KB3D_NEC_LightRed_roughness.jpg"},{"glob":"adc/city/KB3D_NEC_LightRed_normal.jpg"},{"glob":"adc/city/KB3D_NEC_LightWhite_basecolor.jpg"},{"glob":"adc/city/KB3D_NEC_LightWhite_metallic-KB3D_NEC_LightWhite_roughness.jpg"},{"glob":"adc/city/KB3D_NEC_LightWhite_normal.jpg"},{"glob":"adc/city/KB3D_NEC_LightYellow_basecolor.jpg"},{"glob":"adc/city/KB3D_NEC_LightYellow_metallic-KB3D_NEC_LightYellow_roughness.jpg"},{"glob":"adc/city/KB3D_NEC_LightYellow_normal.jpg"},{"glob":"adc/city/KB3D_NEC_LightsA_basecolor.jpg"},{"glob":"adc/city/KB3D_NEC_LightsA_emissive.jpg"},{"glob":"adc/city/KB3D_NEC_LightsA_metallic-KB3D_NEC_LightsA_roughness.jpg"},{"glob":"adc/city/KB3D_NEC_LightsA_normal.jpg"},{"glob":"adc/city/KB3D_NEC_MetalAccent_basecolor.jpg"},{"glob":"adc/city/KB3D_NEC_MetalAccent_metallic-KB3D_NEC_MetalAccent_roughness.jpg"},{"glob":"adc/city/KB3D_NEC_MetalAccent_normal.jpg"},{"glob":"adc/city/KB3D_NEC_MetalDarkWorn_basecolor.jpg"},{"glob":"adc/city/KB3D_NEC_MetalDarkWorn_metallic-KB3D_NEC_MetalDarkWorn_roughness.jpg"},{"glob":"adc/city/KB3D_NEC_MetalDarkWorn_normal.jpg"},{"glob":"adc/city/KB3D_NEC_MetalGrating_basecolor-KB3D_NEC_MetalGrating_opacity.png"},{"glob":"adc/city/KB3D_NEC_MetalGrating_metallic-KB3D_NEC_MetalGrating_roughness.jpg"},{"glob":"adc/city/KB3D_NEC_MetalGrating_normal.jpg"},{"glob":"adc/city/KB3D_NEC_MetalLightGreyWorn_basecolor.jpg"},{"glob":"adc/city/KB3D_NEC_MetalLightGreyWorn_metallic-KB3D_NEC_MetalLightGreyWorn_roughness.jpg"},{"glob":"adc/city/KB3D_NEC_MetalLightGreyWorn_normal.jpg"},{"glob":"adc/city/KB3D_NEC_MetalPaintRed_basecolor.jpg"},{"glob":"adc/city/KB3D_NEC_MetalPaintRed_metallic-KB3D_NEC_MetalPaintRed_roughness.jpg"},{"glob":"adc/city/KB3D_NEC_MetalPaintRed_normal.jpg"},{"glob":"adc/city/KB3D_NEC_MetalPaintWhiteWorn_basecolor.jpg"},{"glob":"adc/city/KB3D_NEC_MetalPaintWhiteWorn_metallic-KB3D_NEC_MetalPaintWhiteWorn_roughness.jpg"},{"glob":"adc/city/KB3D_NEC_MetalPaintWhiteWorn_normal.jpg"},{"glob":"adc/city/KB3D_NEC_MetalPaintWorn_basecolor.jpg"},{"glob":"adc/city/KB3D_NEC_MetalPaintWorn_metallic-KB3D_NEC_MetalPaintWorn_roughness.jpg"},{"glob":"adc/city/KB3D_NEC_MetalPaintWorn_normal.jpg"},{"glob":"adc/city/KB3D_NEC_MetalPaintYellow_basecolor.jpg"},{"glob":"adc/city/KB3D_NEC_MetalPaintYellow_metallic-KB3D_NEC_MetalPaintYellow_roughness.jpg"},{"glob":"adc/city/KB3D_NEC_MetalPaintYellow_normal.jpg"},{"glob":"adc/city/KB3D_NEC_OxidizedSteel_basecolor.jpg"},{"glob":"adc/city/KB3D_NEC_OxidizedSteel_metallic-KB3D_NEC_OxidizedSteel_roughness.jpg"},{"glob":"adc/city/KB3D_NEC_OxidizedSteel_normal.jpg"},{"glob":"adc/city/KB3D_NEC_PaintBlack_basecolor.jpg"},{"glob":"adc/city/KB3D_NEC_PaintBlack_metallic-KB3D_NEC_PaintBlack_roughness.jpg"},{"glob":"adc/city/KB3D_NEC_PaintBlack_normal.jpg"},{"glob":"adc/city/KB3D_NEC_PaintBlue_basecolor.jpg"},{"glob":"adc/city/KB3D_NEC_PaintBlue_metallic-KB3D_NEC_PaintBlue_roughness.jpg"},{"glob":"adc/city/KB3D_NEC_PaintBlue_normal.jpg"},{"glob":"adc/city/KB3D_NEC_PaintRed_basecolor.jpg"},{"glob":"adc/city/KB3D_NEC_PaintRed_metallic-KB3D_NEC_PaintRed_roughness.jpg"},{"glob":"adc/city/KB3D_NEC_PaintRed_normal.jpg"},{"glob":"adc/city/KB3D_NEC_PaintWhiteRusty_basecolor.jpg"},{"glob":"adc/city/KB3D_NEC_PaintWhiteRusty_metallic-KB3D_NEC_PaintWhiteRusty_roughness.jpg"},{"glob":"adc/city/KB3D_NEC_PaintWhiteRusty_normal.jpg"},{"glob":"adc/city/KB3D_NEC_PaintedMetal_basecolor.jpg"},{"glob":"adc/city/KB3D_NEC_PaintedMetal_metallic-KB3D_NEC_PaintedMetal_roughness.jpg"},{"glob":"adc/city/KB3D_NEC_PaintedMetal_normal.jpg"},{"glob":"adc/city/KB3D_NEC_PaperWhite_basecolor.jpg"},{"glob":"adc/city/KB3D_NEC_PaperWhite_metallic-KB3D_NEC_PaperWhite_roughness.jpg"},{"glob":"adc/city/KB3D_NEC_PaperWhite_normal.jpg"},{"glob":"adc/city/KB3D_NEC_PlasticBlack_basecolor.jpg"},{"glob":"adc/city/KB3D_NEC_PlasticBlack_metallic-KB3D_NEC_PlasticBlack_roughness.jpg"},{"glob":"adc/city/KB3D_NEC_PlasticBlack_normal.jpg"},{"glob":"adc/city/KB3D_NEC_PlasticWhite_basecolor.jpg"},{"glob":"adc/city/KB3D_NEC_PlasticWhite_metallic-KB3D_NEC_PlasticWhite_roughness.jpg"},{"glob":"adc/city/KB3D_NEC_PlasticWhite_normal.jpg"},{"glob":"adc/city/KB3D_NEC_PlasticYellow_basecolor.jpg"},{"glob":"adc/city/KB3D_NEC_PlasticYellow_metallic-KB3D_NEC_PlasticYellow_roughness.jpg"},{"glob":"adc/city/KB3D_NEC_PlasticYellow_normal.jpg"},{"glob":"adc/city/KB3D_NEC_RedWhiteStripes_basecolor.jpg"},{"glob":"adc/city/KB3D_NEC_RedWhiteStripes_metallic-KB3D_NEC_RedWhiteStripes_roughness.jpg"},{"glob":"adc/city/KB3D_NEC_RedWhiteStripes_normal.jpg"},{"glob":"adc/city/KB3D_NEC_Rubber_basecolor.jpg"},{"glob":"adc/city/KB3D_NEC_Rubber_metallic-KB3D_NEC_Rubber_roughness.jpg"},{"glob":"adc/city/KB3D_NEC_Rubber_normal.jpg"},{"glob":"adc/city/KB3D_NEC_SatinSteel_basecolor.jpg"},{"glob":"adc/city/KB3D_NEC_SatinSteel_metallic-KB3D_NEC_SatinSteel_roughness.jpg"},{"glob":"adc/city/KB3D_NEC_SatinSteel_normal.jpg"},{"glob":"adc/city/KB3D_NEC_Screens_basecolor-KB3D_NEC_Screens_opacity.png"},{"glob":"adc/city/KB3D_NEC_Screens_emissive.jpg"},{"glob":"adc/city/KB3D_NEC_Screens_metallic-KB3D_NEC_Screens_roughness.jpg"},{"glob":"adc/city/KB3D_NEC_Screens_normal.jpg"},{"glob":"adc/city/KB3D_NEC_SpeedwayTiles_basecolor.jpg"},{"glob":"adc/city/KB3D_NEC_SpeedwayTiles_metallic-KB3D_NEC_SpeedwayTiles_roughness.jpg"},{"glob":"adc/city/KB3D_NEC_SpeedwayTiles_normal.jpg"},{"glob":"adc/city/KB3D_NEC_SteelRaw_basecolor.jpg"},{"glob":"adc/city/KB3D_NEC_SteelRaw_metallic-KB3D_NEC_SteelRaw_roughness.jpg"},{"glob":"adc/city/KB3D_NEC_SteelRaw_normal.jpg"},{"glob":"adc/city/KB3D_NEC_StreetTiles_basecolor.jpg"},{"glob":"adc/city/KB3D_NEC_StreetTiles_metallic-KB3D_NEC_StreetTiles_roughness.jpg"},{"glob":"adc/city/KB3D_NEC_StreetTiles_normal.jpg"},{"glob":"adc/city/KB3D_NEC_TarpA_basecolor.jpg"},{"glob":"adc/city/KB3D_NEC_TarpA_metallic-KB3D_NEC_TarpA_roughness.jpg"},{"glob":"adc/city/KB3D_NEC_TarpA_normal.jpg"},{"glob":"adc/city/KB3D_NEC_TreeWalnutBark_basecolor.jpg"},{"glob":"adc/city/KB3D_NEC_TreeWalnutBark_metallic-KB3D_NEC_TreeWalnutBark_roughness.jpg"},{"glob":"adc/city/KB3D_NEC_TreeWalnutBark_normal.jpg"},{"glob":"adc/city/KB3D_NEC_TreeWlnutLeaf_basecolor-KB3D_NEC_TreeWlnutLeaf_opacity.png"},{"glob":"adc/city/KB3D_NEC_TreeWlnutLeaf_metallic-KB3D_NEC_TreeWlnutLeaf_roughness.jpg"},{"glob":"adc/city/KB3D_NEC_TreeWlnutLeaf_normal.jpg"},{"glob":"adc/city/KB3D_NEC_WhitePanels_basecolor.jpg"},{"glob":"adc/city/KB3D_NEC_WhitePanels_metallic-KB3D_NEC_WhitePanels_roughness.jpg"},{"glob":"adc/city/KB3D_NEC_WhitePanels_normal.jpg"},{"glob":"adc/city/KB3D_NEC_WoodDarkGreyTower_basecolor.jpg"},{"glob":"adc/city/KB3D_NEC_WoodDarkGreyTower_metallic-KB3D_NEC_WoodDarkGreyTower_roughness.jpg"},{"glob":"adc/city/KB3D_NEC_WoodDarkGreyTower_normal.jpg"},{"glob":"adc/city/KB3D_NEC_WoodLacquered_basecolor.jpg"},{"glob":"adc/city/KB3D_NEC_WoodLacquered_metallic-KB3D_NEC_WoodLacquered_roughness.jpg"},{"glob":"adc/city/KB3D_NEC_WoodLacquered_normal.jpg"},{"glob":"adc/city/KB3D_NEC_Wood_basecolor.jpg"},{"glob":"adc/city/KB3D_NEC_Wood_metallic-KB3D_NEC_Wood_roughness.jpg"},{"glob":"adc/city/KB3D_NEC_Wood_normal.jpg"},{"glob":"adc/city/city.bin"},{"glob":"adc/city/city.gltf"},{"glob":"adc/city/missing-texture128x512.jpg"},{"glob":"adc/city/missing-texture256x512.jpg"},{"glob":"adc/city/missing-texture512x.jpg"},{"glob":"adc/city/missing-texture512x256.jpg"},{"glob":"adc/e.q._city.ogg"},{"glob":"adc/footstep.ogg"},{"glob":"adc/jump.ogg"},{"glob":"adc/night-sky.png"},{"glob":"com/jme3/app/Monkey.png"},{"glob":"com/jme3/asset/Desktop.cfg"},{"glob":"com/jme3/asset/General.cfg"},{"glob":"com/jme3/system/version.properties"},{"glob":"com/simsilica/lemur/icons/Check.png"},{"glob":"com/simsilica/lemur/icons/border.png"},{"glob":"data/nostrads/adkey.j3o"},{"glob":"data/ocean/iboceandata.j3o"},{"glob":"defaultPlayerImages/0.png"},{"glob":"defaultPlayerImages/1.png"},{"glob":"ibocean/FlipbookTexture.glsl"},{"glob":"ibocean/Ocean.frag"},{"glob":"ibocean/Ocean.glsl"},{"glob":"ibocean/Ocean.j3md"},{"glob":"ibocean/Ocean.vert"},{"glob":"ibocean/OceanRef.glsl"},{"glob":"icons/outline/activity.svg"},{"glob":"icons/outline/chevron-left.svg"},{"glob":"icons/outline/chevron-right.svg"},{"glob":"icons/outline/clipboard.svg"},{"glob":"icons/outline/copy.svg"},{"glob":"icons/outline/dice.svg"},{"glob":"icons/outline/eye-off.svg"},{"glob":"icons/outline/eye.svg"},{"glob":"icons/outline/info-square-rounded.svg"},{"glob":"icons/outline/loader-2.svg"},{"glob":"icons/outline/search.svg"},{"glob":"icons/outline/square-check.svg"},{"glob":"icons/outline/square.svg"},{"glob":"icons/outline/x.svg"},{"glob":"libEGL.so.1"},{"glob":"libGLX.so.0"},{"glob":"libSystem.dylib"},{"glob":"libobjc.dylib"},{"glob":"linux/x64/org/lwjgl/glfw/libglfw.so"},{"glob":"linux/x64/org/lwjgl/jemalloc/libjemalloc.so"},{"glob":"linux/x64/org/lwjgl/liblwjgl.so"},{"glob":"linux/x64/org/lwjgl/nanovg/liblwjgl_nanovg.so"},{"glob":"linux/x64/org/lwjgl/openal/libopenal.so"},{"glob":"linux/x64/org/lwjgl/opengl/liblwjgl_opengl.so"},{"glob":"linux/x64/org/lwjgl/stb/liblwjgl_stb.so"},{"glob":"macos/arm64/org/lwjgl/glfw/libglfw.dylib"},{"glob":"macos/arm64/org/lwjgl/jemalloc/libjemalloc.dylib"},{"glob":"macos/arm64/org/lwjgl/liblwjgl.dylib"},{"glob":"macos/arm64/org/lwjgl/nanovg/liblwjgl_nanovg.dylib"},{"glob":"macos/arm64/org/lwjgl/openal/libopenal.dylib"},{"glob":"macos/arm64/org/lwjgl/opengl/liblwjgl_opengl.dylib"},{"glob":"macos/arm64/org/lwjgl/stb/liblwjgl_stb.dylib"},{"glob":"native/linux/64/libwebp-imageio.so"},{"glob":"org/ngengine/NGE.cfg"},{"glob":"org/ngengine/nostrads/taxonomy/nostr-content-taxonomy.csv"},{"glob":"skies/alienSkyLOWEXP.png"},{"glob":"ui/blurred-qr.png"},{"glob":"ui/frame.png"},{"module":"java.base","glob":"jdk/internal/icu/impl/data/icudt76b/nfc.nrm"},{"module":"java.base","glob":"jdk/internal/icu/impl/data/icudt76b/nfkc.nrm"},{"module":"java.base","glob":"jdk/internal/icu/impl/data/icudt76b/uprops.icu"},{"module":"java.base","glob":"sun/net/idn/uidna.spp"},{"module":"java.datatransfer","glob":"sun/datatransfer/resources/flavormap.properties"},{"module":"java.desktop","glob":"sun/awt/resources/awt_en.properties"},{"module":"java.desktop","glob":"sun/awt/resources/awt_en_US.properties"},{"module":"java.logging","glob":"sun/util/logging/resources/logging_en.properties"},{"module":"java.logging","glob":"sun/util/logging/resources/logging_en_FR.properties"},{"module":"java.logging","glob":"sun/util/logging/resources/logging_en_US.properties"},{"module":"java.xml","glob":"jdk/xml/internal/jdkcatalog/JDKCatalog.xml"}]} diff --git a/gradle.properties b/gradle.properties index 0db0e07..1442e20 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,8 +1,8 @@ org.gradle.configuration-cache=false -ngeVersion=0.0.5 +ngeVersion=0.1.0-SNAPSHOT version=1.0.0 -projectName=ngeapp -mainClass=org.example.NGEAppMain +projectName=adcity +mainClass=org.ngengine.demo.adc.AdcDemo copyright=Copyright (c) 2025 javaOptions= \ No newline at end of file